diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..0740e7b Binary files /dev/null and b/.DS_Store differ diff --git a/.gitignore b/.gitignore index bde3b26..8f7c708 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw. Validation/get_just_results.py Validation/interval_run.py Validation/macro-pos5DescrNegDocVecdistractorTest.py +.DS_Store diff --git a/GroundedLanguageLearning.py b/GroundedLanguageLearning.py new file mode 100644 index 0000000..1474586 --- /dev/null +++ b/GroundedLanguageLearning.py @@ -0,0 +1,106 @@ +# Created by: Luke Richards +# Purpose: This file outlines a general framework for a more modular GLS. This code as of now will not run as it is pseudo-code written by Frank Ferraro + +import torch +import torch.nn as nn +import torch.nn.functional as F +import torch.optim +import pandas as pd + +class GroundedLanguageClassifier(nn.Module): + def __init__(self, text_encoder, percept_encoder, corr_scorer): + + super(GroundedLanguageClassifier, self).__init__() + + self.text_encoder = text_encoder + self.percept_encoder = percept_encoder + self.scoring = corr_scorer + def forward(self, text, percepts): + #changing rep with representation + text_rep = self.text_encoder(text) + percept_rep = self.percept_encoder(percepts) + correspond_score = self.scoring(text_rep, percept_rep) + return correspond_score + +class EmptyExtractor(nn.Module): #Semantic parsing: Luke's research + def __init__(self): + super(EmptyExtractor, self).__init__() + pass + def forward(self, *args): + return torch.empty(0) + +# Extract features from Luke RSS 2019 dataset +# from a csv file, read in file, forward a single vector for given image name +class CNNFeatureExtractor(nn.Module): + def __init__(self, filePath,num_features): + super(CNNFeatureExtractor, self).__init__() + + self.data = pd.read_csv(filePath) + self.data.set_index('image_name', inplace=True) + + def forward(self, image_name,*args): + return self.data.loc[image_name, :].values + +class MultiLabelBinaryMLPScorer(nn.Module): + def __init__(self, input_size, num_classifiers, + num_layers=0, layer_size=[], + activation=nn.functional.tanh): + + layer_size_list = self._get_layer_dims(num_layers, layer_size) + self.layers, prev_size = [], input_size + self.activation_fns = [] + for l in layer_size_list: + self.activation_fns.append(activation) + self.layers.append(nn.Linear(prev_size, l)) + prev_size = l + self.layers.append(nn.Linear(prev_size, num_classifiers)) + self.activation_fns.append(nn.Sequential()) + + def _get_layer_dims(self, num_layers, layer_size): + if type(layer_size) == type([]): + if len(layer_size) == num_layers: + layer_size_list = layer_size + else: + raise Exception("bad") + elif type(layer_size) == type(0): + layer_size_list = [layer_size for _ in range(num_layers)] + return layer_size_list + + def forward(self, text_feats, vis_feats): + logits = concat(text_feats, vis_feats) + for act_fn, layer in zip(self.activation_fns, self.layers): + logits = act_fn(layer(logits)) + return nn.functional.logsigmoid(logits) + +class GLSLearner: + def __init__(self, model, loss = nn.NLLLoss(), optim_factory = torch.optim.Adam): + self.model = model + self.loss = loss + self.optimizer = optim_factory(self.model.parameters()) + + def train(self, train_dataset, val_dataset, train_params): + iter_index = 0 + ## assume train_params has a function that allows us to train + ## for a max number of iterations, or has some criteria based + ## on the loss and/or its gradient + while train_params.continue_training(loss_val, iter_index): + train_batch = get_next_batch(train_dataset, iter_index) + predicted_values = self.model(train_batch.text, train_batch.percepts) + loss_score = self.loss(y_true=train_batch.labels, + y_pred=predicted_values) + loss_score.backward() + self.optimizer.step() + if train_params.do_val(iter_index): + val_batch = get_next_batch(val_dataset, iter_index) + predictions = self.predictions(val_batch) + self.evaluate(val_batch.labels, predictions) + iter_index += 1 + + def predict(self, dataset): + # did you mean test phase? + ## get predictions + return predictions + + def evaluate(self, y_true, y_pred): + ## perform whatever evaluations + print("eval") diff --git a/OLD GLS/.DS_Store b/OLD GLS/.DS_Store new file mode 100644 index 0000000..e186810 Binary files /dev/null and b/OLD GLS/.DS_Store differ diff --git a/OLD GLS/NegativeExampleDataGenerator.py b/OLD GLS/NegativeExampleDataGenerator.py new file mode 100644 index 0000000..8187c42 --- /dev/null +++ b/OLD GLS/NegativeExampleDataGenerator.py @@ -0,0 +1,107 @@ +import numpy as np +import math +import os +import sys +import collections +import pickle +from gensim.models.doc2vec import LabeledSentence +from gensim.models import Doc2Vec + + +######## Negative Example Generation########## +class LabeledLineSentence(object): + def __init__(self,docLists,docLabels): + self.docLists = docLists + self.docLabels = docLabels + + def __iter__(self): + for index, arDoc in enumerate(self.docLists): + yield LabeledSentence(arDoc, [self.docLabels[index]]) + + def to_array(self): + self.sentences = [] + for index, arDoc in enumerate(self.docLists): + self.sentences.append(LabeledSentence(arDoc, [self.docLabels[index]])) + return self.sentences + + def sentences_perm(self): + from random import shuffle + shuffle(self.sentences) + return self.sentences + + +class NegSampleSelection: + # using __slots__ to not to use a dict for the sake of space and speed + __slots__ = ['docs'] + docs = {} + + def __init__(self, docs): + docs = collections.OrderedDict(sorted(docs.items())) + self.docs = docs + + def sentenceToWordLists(self): + docLists = [] + docs = self.docs + for key in docs.keys(): + sent = docs[key] + wLists = sent.split(" ") + docLists.append(wLists) + return docLists + + def square_rooted(self,x): + return round(math.sqrt(sum([a*a for a in x])),3) + + def cosine_similarity(self,x,y): + numerator = sum(a*b for a,b in zip(x,y)) + denominator = self.square_rooted(x)*self.square_rooted(y) + return round(numerator/float(denominator),3) + + def generateNegatives(self): + docs = self.docs + docNames = docs.keys() + docLists = self.sentenceToWordLists() + docLabels = [] + for key in docNames: + ar = key.split("/") + docLabels.append(ar[1]) + sentences = LabeledLineSentence(docLists,docLabels) + model = Doc2Vec(min_count=1, window=10, size=2000, sample=1e-4, negative=5, workers=8) + model.build_vocab(sentences.to_array()) + token_count = sum([len(sentence) for sentence in sentences]) + for epoch in range(10): + model.train(sentences.sentences_perm(),total_examples = token_count,epochs=model.iter) + model.alpha -= 0.002 # decrease the learning rate + model.min_alpha = model.alpha # fix the learning rate, no deca + model.train(sentences.sentences_perm(),total_examples = token_count,epochs=model.iter) + + degreeMap = {} + for i , item1 in enumerate(docLabels): + fDoc = model.docvecs[docLabels[i]] + cInstMap = {} + cInstance = docNames[i] + for j,item2 in enumerate(docLabels): + tDoc = model.docvecs[docLabels[j]] + cosineVal = max(-1.0,min(self.cosine_similarity(fDoc,tDoc),1.0)) + try: + cValue = math.degrees(math.acos(cosineVal)) + except: + print("ERROR: invalid cosine value") + print cosineVal + print fDoc + print tDoc + exit() + tInstance = docNames[j] + cInstMap[tInstance] = cValue + degreeMap[cInstance] = cInstMap + negInstances = {} + for k in np.sort(degreeMap.keys()): + v = degreeMap[k] + ss = sorted(v.items(), key=lambda x: x[1]) + sentAngles = "" + for item in ss: + if item[0] != k: + sentAngles += item[0]+"-"+str(item[1])+"," + sentAngles = sentAngles[:-1] + negInstances[k] = sentAngles + return negInstances +############Negative Example Generation --- END ######## diff --git a/OLD GLS/README.md b/OLD GLS/README.md new file mode 100644 index 0000000..8ff3f39 --- /dev/null +++ b/OLD GLS/README.md @@ -0,0 +1,33 @@ +# Grounded language Learning System + +General system framework for learning word-as-classifer groundings + +### Prerequisites + +- python 2.7 +- pandas +- genism + +## Running the tests + +Visual features should be stored in a folder one diectory above GLS + + +#### Preprocessing language input + +``` +python2 preprocess_descriptions.py <"stop", "lemm", or "stemm"> +``` + +#### Learning + +``` +python2 cLL-ML.py --resDir --cat --pre --cutoff --seed --visfeat --listof --negexmpl +``` + +#### Testing / Validation + +``` +python2 macro-pos5DescrNegDocVecdistractorTest.py /NoOfDataPoints/ + +``` diff --git a/UW_list_of_instances.conf b/OLD GLS/UW_list_of_instances.conf similarity index 100% rename from UW_list_of_instances.conf rename to OLD GLS/UW_list_of_instances.conf diff --git a/Validation/OG/Untitled b/OLD GLS/Validation/OG/Untitled similarity index 100% rename from Validation/OG/Untitled rename to OLD GLS/Validation/OG/Untitled diff --git a/Validation/get_just_results.py b/OLD GLS/Validation/get_just_results.py similarity index 100% rename from Validation/get_just_results.py rename to OLD GLS/Validation/get_just_results.py diff --git a/Validation/interval_run.py b/OLD GLS/Validation/interval_run.py similarity index 100% rename from Validation/interval_run.py rename to OLD GLS/Validation/interval_run.py diff --git a/Validation/macro-pos5DescrNegDocVecdistractorTest.py b/OLD GLS/Validation/macro-pos5DescrNegDocVecdistractorTest.py similarity index 100% rename from Validation/macro-pos5DescrNegDocVecdistractorTest.py rename to OLD GLS/Validation/macro-pos5DescrNegDocVecdistractorTest.py diff --git a/Validation/process_output.py b/OLD GLS/Validation/process_output.py similarity index 100% rename from Validation/process_output.py rename to OLD GLS/Validation/process_output.py diff --git a/Validation/python2 b/OLD GLS/Validation/python2 similarity index 100% rename from Validation/python2 rename to OLD GLS/Validation/python2 diff --git a/Validation/read_in_results.py b/OLD GLS/Validation/read_in_results.py similarity index 100% rename from Validation/read_in_results.py rename to OLD GLS/Validation/read_in_results.py diff --git a/Validation/util.py b/OLD GLS/Validation/util.py similarity index 100% rename from Validation/util.py rename to OLD GLS/Validation/util.py diff --git a/Validation/util.pyc b/OLD GLS/Validation/util.pyc similarity index 100% rename from Validation/util.pyc rename to OLD GLS/Validation/util.pyc diff --git a/cLL-ML.py b/OLD GLS/cLL-ML.py similarity index 87% rename from cLL-ML.py rename to OLD GLS/cLL-ML.py index 9f96a62..c5db351 100755 --- a/cLL-ML.py +++ b/OLD GLS/cLL-ML.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- #!/usr/bin/env python +from NegativeExampleDataGenerator import * import numpy as np import codecs from sklearn import preprocessing @@ -111,128 +112,7 @@ def fileAppend(fName, sentence): myfile.write(sentence) myfile.write("\n") -######## Negative Example Generation########## -class LabeledLineSentence(object): - def __init__(self,docLists,docLabels): - self.docLists = docLists - self.docLabels = docLabels - - def __iter__(self): - for index, arDoc in enumerate(self.docLists): - yield LabeledSentence(arDoc, [self.docLabels[index]]) - - def to_array(self): - self.sentences = [] - for index, arDoc in enumerate(self.docLists): - self.sentences.append(LabeledSentence(arDoc, [self.docLabels[index]])) - return self.sentences - - def sentences_perm(self): - from random import shuffle - shuffle(self.sentences) - return self.sentences - -class NegSampleSelection: - """ Class to bundle negative example generation functions and variables. """ - __slots__ = ['docs'] - docs = {} - def __init__(self,docs): - """"""""""""""""""""""""""""""""""""""""" - Initialization function for NegSampleSelection class - Args: Documents dictionary where key is object instance and value - is object annotation - Returns: Nothing - """"""""""""""""""""""""""""""""""""""""" - docs = collections.OrderedDict(sorted(docs.items())) - self.docs = docs - - def sentenceToWordLists(self): - docLists = [] - docs = self.docs - for key in docs.keys(): - sent = docs[key] - wLists = sent.split(" ") - docLists.append(wLists) - return docLists - - def sentenceToWordDicts(self): - docs = self.docs - docDicts = {} - for key in docs.keys(): - sent = docs[key] - wLists = sent.split(" ") - docDicts[key] = wLists - return docDicts - - def square_rooted(self,x): - return round(math.sqrt(sum([a*a for a in x])),3) - - def cosine_similarity(self,x,y): - numerator = sum(a*b for a,b in zip(x,y)) - denominator = self.square_rooted(x)*self.square_rooted(y) - return round(numerator/float(denominator),3) - - def generateNegatives(self): - docs = self.docs - docNames = docs.keys() - docLists = self.sentenceToWordLists() - docDicts = self.sentenceToWordDicts() - docLabels = [] - for key in docNames: - ar = key.split("/") - docLabels.append(ar[1]) - sentences = LabeledLineSentence(docLists,docLabels) - model = Doc2Vec(min_count=1, window=10, size=2000, sample=1e-4, negative=5, workers=8) - - model.build_vocab(sentences.to_array()) - token_count = sum([len(sentence) for sentence in sentences]) - for epoch in range(10): - model.train(sentences.sentences_perm(),total_examples = token_count,epochs=model.iter) - model.alpha -= 0.002 # decrease the learning rate - model.min_alpha = model.alpha # fix the learning rate, no deca - model.train(sentences.sentences_perm(),total_examples = token_count,epochs=model.iter) - - degreeMap = {} - for i , item1 in enumerate(docLabels): - fDoc = model.docvecs[docLabels[i]] - cInstMap = {} - cInstance = docNames[i] - for j,item2 in enumerate(docLabels): - - tDoc = model.docvecs[docLabels[j]] - cosineVal = max(-1.0,min(self.cosine_similarity(fDoc,tDoc),1.0)) - - - try: - cValue = math.degrees(math.acos(cosineVal)) - except: - print("ERROR: invalid cosine value") - print cosineVal - print fDoc - print tDoc - exit() - tInstance = docNames[j] - cInstMap[tInstance] = cValue - degreeMap[cInstance] = cInstMap - negInstances = {} - for k in np.sort(degreeMap.keys()): - v = degreeMap[k] - ss = sorted(v.items(), key=lambda x: x[1]) - sentAngles = "" - for item in ss: - if item[0] != k: - sentAngles += item[0]+"-"+str(item[1])+"," - sentAngles = sentAngles[:-1] - negInstances[k] = sentAngles - - # pickle negative examples for later use - - with open('NegExamples_'+ resultDir + '.pickle', 'wb') as handle: - pickle.dump(negInstances, handle, protocol=pickle.HIGHEST_PROTOCOL) - - return negInstances - -############Negative Example Generation --- END ######## + class Category: """ Class to bundle our dataset functions and variables category wise. """ @@ -610,6 +490,8 @@ def getDataSet(self,cDf,nDf,tests,fName): negExamples = pickle.load(handle) else: negExamples = negSelection.generateNegatives() + with open('NegExamples_RECENT.pickle', 'wb') as handle: + pickle.dump(negExamples, handle, protocol=pickle.HIGHEST_PROTOCOL) """ find negative instances for all tokens. """ diff --git a/OLD GLS/conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc.conf b/OLD GLS/conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc.conf new file mode 100644 index 0000000..24a5008 --- /dev/null +++ b/OLD GLS/conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc.conf @@ -0,0 +1,1492 @@ +water_bottle/water_bottle_10_2_203,This is a hard plastic transparent pink water bottle with a built in straw. This is a water bottle. A plastic water bottle. It's a clear red water bottle with a opaque red top. A pink plastic water bottle. It has a built in straw. +notebook/notebook_4_1_244,A spiral notebook This is a blue notebook. This is a blue spiral bound notebook. It's a blue spiral bound notebook. A writing notebook. +tomato/tomato_1_4_131,A red roma tomato This is a red tomato. It's a roma tomato. This looks like a red tomato. This is a tomato. +bowl/bowl_6_1_178,This is bowl. This is a bowl with a blue outside and a floral inside design. The bowl is painted on the inside. It's a sky blue bowl with a white inside. The inside has multicolored floral designs on it. This is a bowl. +plate/plate_1_4_168,A cup filled with a drink. This is a shiny yellow gelatinous product. +hand_towel/hand_towel_5_2_250,This is a black or dark blue washcloth. It is folded into a square. A folded towel. This is a black towel placed on a plate. This is a black towe. This is a soft, absorbent cloth called a towel. Towels are used to dry water from people's hands and other items. +bell_pepper/bell_pepper_4_4_39,It's a red bell pepper. A red pepper. This is a red bell pepper. A fresh red bell pepper with stem. This is a red bell pepper. +bell_pepper/bell_pepper_6_2_155,a green bell pepper This is a green pepper. A green pepper. This is a green bell pepper. A fresh green bell pepper. This green bellpepper is upright This is a green pepper. +keyboard/keyboard_1_1_176,This is a computer keyboard. It's a silver computer keyboard with white buttons. This is a keyboard. This is a silver wireless Apple keyboard sitting on a white platform. It is a flat grey object with various sized white square and rectangular shapes. It is a keyboard. +greens/greens_1_4_68,This is lettuce. Green leaf lettuce on a plate. This is a bunch of green lettuce used for salads and sandwiches. A bundle of romaine lettuce with a red plastic tie around it. This is green lettuce. This is leaf lettuce. It is lettuce ,and it is a variety of lettuce that grows in a tall head of sturdy dark green leaves .It usually used to make dish or it used for garnish any dish that we prepared. This is a bundle of greens used for cooking +stapler/stapler_7_4_250,This is a blue mini stapler. This is a small blue stapler. A blue stapler. This is a small blue stapler The object is a blue stapler. It is used to group paper together with a small piece of metal. A blue mini stapler This is a blue stapler. +food_jar/food_jar_1_2_177,This is a jar of jam. This is a jar of grape jelly. It's a jar of Smuckers grape jelly. This is a jar of grape jelly. A jar of grape jelly. +hand_towel/hand_towel_1_2_162,This looks like some sort of white towel or wash cloth. a white hand towel. A dinner napkin. This is a napkin or towel placed on a plate. +shampoo/shampoo_3_4_17,This is a bottle of shampoo. This is a container of body cleanser or hair products. It's a bottle of shampoo. The liquid inside is light purple. This is a bottle of shampoo. A bottle of shampoo. +comb/comb_1_2_178,A hair brush. This is a black hairbrush. This is a hairbrush. This is a hair brush. A soft bristle hair comb +instant_noodles/instant_noodles_6_4_185,This is a pack of ramen that is chicken flavored. The object is a yellow package of food and says something about chicken. This is a package of food. A package of noodles. A small yellow bag of cookies. +water_bottle/water_bottle_7_1_216,This object is a water bottle. This is a bottle of water, I can't read the brand name. This is a bottle of water. This is a bottle of drinking water. A plastic water bottle. +rubber_eraser/rubber_eraser_4_4_21,This is an eraser. It's a hard rubber gum used to remove pencil markings on paper. A pencil eraser. This is an eraser. This is an eraser. +cell_phone/cell_phone_3_1_103,It's a silver and black flip phone. A cell phone. This is a cell phone. This is a cellphone. This is a silver flip cellular phone. +food_jar/food_jar_1_1_6,This looks like a jar of grape jelly, I can't see the brand but the lid is hatched, so I think it's Smucker's. It's a jar of grape jelly. The brand is Smuckers. A jar of grape jelly. This is a jar of jam or jelly. It is a jar with a dark substance on the inside. The label is mostly purple with a plaid lid. +water_bottle/water_bottle_10_1_138,This is a water container. A plastic water bottle. It's a clear plastic water bottle with a red cap. This is an empty water bottle. This is a water bottle. +water_bottle/water_bottle_7_1_97,A small bottle of mineral water This is a bottle of water. This is a bottle of water. This is a water bottle. This is a clear plastic water bottle. It has a label on it. This is a plastic water bottle. A water bottle is a container that is used to hold water, liquids or other beverages for consumption. This is a bottle of water. +food_can/food_can_5_1_179,This is a can of baked beans. This is a metal can, used to hold food. It is a cylinder with a paper wrapper. This is a can of soup. Red and white can with picture of food on front It's a can of food with a red and white label. The brand is Market Pantry. +soda_can/soda_can_4_2_115,This is a can of Coca-Cola. This is a can of Coke Zero. This is an opened can of soda, looks like Dr. Pepper. It is a Coca Cola can. It is black with red and yellow lettering. A can of Coke. +rubber_eraser/rubber_eraser_1_1_104,It's a white eraser in a blue and white cardboard holder. +comb/comb_5_4_33,A black hair brush. This object is used to untangle hair. This is a hairbrush. This is a hairbrush. This is a hair brush. +orange/orange_4_1_184,This is a lemon. This is a lemon. This is an orange. This is an orange. This orange is a sweet fruit. It is usually peeled and eaten raw, but there are many ways to use this food. +sponge/sponge_5_4_261,This is a sponge. It is usually used to clean, and has one rough side to scrub items clean. This is a kitchen sponge. This is a red and blue sponge. This is a blue and red sponge. A kitchen sponge. +cereal_box/cereal_box_1_4_132,A box of cereal. Box of bran flakes. This is a box of Bran Flakes cereal. This is a box of Bran Flakes. A box of cereal. This is a box of bran flakes. +tomato/tomato_5_4_139,This is a tomato. A red tomato. This is a red ball that is shiny and has a white circle in the middle. This is a red Christmas ball decoration. It is used decorate a Christmas tree or other things for the holidays. +garlic/garlic_5_1_57,Garlic is a species in the onion genus. This is a shallot. +apple/apple_2_1_139,A red delicious apple. Super market sticker on apple. It is a red apple. A red apple. This is an apple. This is an apple. +potato/potato_4_2_66,A potato. This is a potato. This is a potato. This looks like a potato. It is small and brown. +calculator/calculator_4_2_124,this is a calculator, can be used for math problems and even when grocery shopping to make sure you are not going over the budget. Has all numbers and all math characters. A light green calculator This is a calculator. This is a calculator. This is a green calculator. This is good for math. That is a green and white calculator. This is a calculator used for maths This is a calculator that people use to do simple math. It has white buttons and it is lime green. +tomato/tomato_5_2_181,A red apple or a red ball. Could be a tomato. Red tomatoes are used in marinara sauce. This is a tomato. A red tomato. It is a red tomato. It is circular and red. There is a sticker on it. The tomato is the edible Vegitable +garlic/garlic_1_4_140,A clove of garlic. This is a bulb of garlic. This is a bulb of garlic used for cooking Garlic is an herb that is grown around the world. It is related to onion, leeks, and chives. That is garlic. +coffee_mug/coffee_mug_4_4_11,A coffee mug. This is a mug. This is a white and blue coffee mug. We're looking down at the inside of a mug. The outside is white, the inside rim is blue and it looks like there's some red on the handle. It's an empty white mug with a blue stripe around the inside rim. +water_bottle/water_bottle_3_1_147,It is a plastic bottle of water. There is a blue label across the middle with some white text on it. This is a bottle of Aquafina water. It's a bottle of Aquafina bottled water. It has a blue label. A plastic water bottle. This is a bottle of water. +pitcher/pitcher_3_2_45,This is a pitcher. This is a coffee pitcher. A green vase. A green glazed ceramic pitcher with a handle. This is a ceramic pitcher. +food_bag/food_bag_8_2_154,It's a bag of Sun Chips. It's green with white text on it. This is a bag of sun chips. This is a bag of sunchips. A green bag of Sun Chips. This is a bag of Sun Chips. +food_can/food_can_5_1_57,This is a can of soup. Looks to be a can of soup. Here is a can of soup. It looks like it might be noodle soup. It's a can of something, probably food. This is a canned good. +camera/camera_3_2_38,This is a camera. This is a digital camera. This is a digital camera. Metallic square box, black trim, with our LED screen. Buttons to the right of the LED screen. A digital camera. +soda_can/soda_can_5_4_17,This is a can of diet Dr. Pepper. The object is a can of Dr. Pepper and is white and red. A can of Diet Dr. Pepper. This is an unopened can of Dr. Pepper. a can of dr.pepper drink +food_can/food_can_10_4_167,It is a metal silver can. The paper label is mostly yellow with some blue and red. This is a can of food. A can of fruit. This is a can. +pear/pear_8_2_1,This is a green apple. This is an apple. A yellow apple. This is a yellow delicious apple. a golden delicious apple +ball/ball_1_2_118,This is a football. A nerf football. This is a toy football. This is an inflatable toy football. It is brown with white stripes. A football +food_can/food_can_8_4_51,This is a canned good. Food is preserved in an aluminum can. The object is a tin can with a tomato on the outside. This looks like the side of a can of Ro-tel tomatoes. A can of Rotel tomatoes. Here is an unopened can of food. +water_bottle/water_bottle_1_4_43,A plastic water bottle. A small bottle of mineral drinking water A plastic bottle of water. Drinking water. This is a bottle of water. This is a bottle of water. +instant_noodles/instant_noodles_5_1_116,It's an orange packet of instant noodles. It is a plastic packaged product. It is mostly orange with some white shapes and blue text. A package of Ramen noodles. +food_cup/food_cup_3_4_148,This is a container of yogurt. A container of yogurt. This is a container of yogurt. This is a container for yogurt. It's a container of yogurt. +soda_can/soda_can_5_1_13,This is a can of Dr. Pepper. An aluminum can of Diet Dr. Pepper. a can of diet dr.pepper drink This is a can of Dr. Pepper soda. The object is a white and red Diet Dr. Pepper can. +plate/plate_4_4_81,An empty paper plate. It's a plate. This is a plate. This is a bowl. Normally used for soups or deserts, it is part of a table setting. This is a white paper plate. That is a paper plate. This is a paper bowl with a tan trim. This is a disposable paper bowl +food_bag/food_bag_1_1_161,It's a bag of snacks with a light blue and white package. This looks like a bag of chips. this is a bag of healthy potatoe chips This is a bag of chips. This is a package of food. +scissors/scissors_1_4_173,This is a pair of scissors. A pair of metal scissors with orange and gray handles/ This is a pair of scissors. This is a pair of scissors. Scissors with a black and orange handle. +scissors/scissors_3_4_54,This is a pair of scissors with a blue handle This is a pair of scissors. It's a pair of scissors with a blue handle. This is a pair of scissors. These are scissors used for cutting paper. +dry_battery/dry_battery_1_1_65,This is a 9 volt battery. A battery. It's a yellow battery. This is a battery. +food_jar/food_jar_3_4_81,This is a jar of a food product. This is a jar of gravy. A jar of something like jam A glass jar with a gold metal lid. There is some dark red on the lid and label. This is a can. That is a jar of food. The above is a jar of brown gravy used for cooking. This is an opened jar. +hand_towel/hand_towel_5_2_21,This is a soft, absorbent cloth called a towel. Towels are used to dry water from people's hands and other items. This is a black towel placed on a plate. A folded towel. +soda_can/soda_can_6_1_195,A can of Welch's soda. This is a can of soda. Soft Drink Can is a metal container designed to hold a fixed portion of liquid such as carbonated soft drinks. This is a can of juice or soda. This is a can that contains juice. It's commonly called a tin can, and can be easily opened pulling the ring on the pop top. +kleenex/kleenex_5_4_106,This is a box of facial tissues. A box of kleenex. This is a box of tissues. This is a box of tissues. It's a box of Kleenex with a red pattern on it. This is paper tissues. This is a box of tissues. This is a box of tissues. +sponge/sponge_6_1_152,This is a yellow and pink sponge. This sponge is good to wash dishes with. This is a yellow and pink sponge. A kitchen sponge. This is a note pad used to take notes. +mushroom/mushroom_1_1_170,This is a mushroom. A clove of garlic. This is a mushroom, used for coooking +potato/potato_1_4_1,A small red potato. It's a red potato. This is a red potato. +hand_towel/hand_towel_2_4_146,This is a napkin on a plate. A dinner napkin. A wash towel This is a red towel. +coffee_mug/coffee_mug_5_4_147,This is a mug. This is a white coffee mug. a coffee mug A white ceramic mug. A coffee mug. A coffee mug. +instant_noodles/instant_noodles_4_1_152,This is a package of food. Some preparation is required before this food can be eaten. A package of Ramen noodles. This is a package of Ramen noodles. This is a package of food. A bag of instant ramen This a package of dried noodles that you cook in water. It is a small rectangular package. this is a bag of ramen. +lime/lime_4_1_63,It is a lime with a sticker on it. This is a lime. A green lime. This is a lime. It has a sticker on it. It is a lime. The lime is green. +apple/apple_2_4_130,A red apple. ROUND AND RED This is a red delicious apple. This is a red apple. This is an apple. +garlic/garlic_6_2_196,It's a head of garlic. This is bulb of garlic. Fresh unpeeled garlic. This is a bulb of garlic. +comb/comb_3_4_95,This is a hair brush. This is a hair brush. This is a black and teal paddle hairbrush. This is a hair brush. It is used to de-tangle a person's hair. A hair brush. +stapler/stapler_1_1_111,This is a stapler. This is a stapler. This is a black stapler. It's a black and grey stapler. This is a black stapler. You use this to help keep your papers together. +shampoo/shampoo_3_2_160,It's a bottle of VO5 shampoo. The liquid inside is light purple. This is a bottle of VO5 shampoo. A bottle of VO5 shampoo. This is a bottle of shampoo. This appears to be a body cleanser or body soap. +greens/greens_2_4_178,A bundle of romaine lettuce. Green leaf lettuce on a plate. This is some sort of leafy green vegetable, some sort of lettuce. This is green leaf lettuce. This is lettuce. +kleenex/kleenex_3_4_214,This is a box of facial tissues. This looks like a box of klenix to me. This is a box of tissues. A box of kleenex. It's a box of kleenex with grey designs on it. +bowl/bowl_2_4_203,An empty dinner bowl. It's a light green bowl with a design on the rim. This is a bowl. It's a bowl. This is a bowl. +pear/pear_1_2_217,A pear. This is a green pear with some brown coloring on it. This is a pear. This is a pear. This is a pear. +potato/potato_5_1_27,This is a potato. Usually cooked before being eaten, it's a starchy vegetable. This is a brown potato. It's a brown russet potato. This is a potato. A large baking potato. That is a potato. This is a russet potato used for cooking This is a potato. +comb/comb_2_4_6,This is a hair brush. This is a hair brush. Plastic hairbrushes are affordable and durable. This is a hair brush. A black hair brush. +toothpaste/toothpaste_3_1_133,It's a tube of toothpaste. It's blue and white. The object is a tube of toothpaste. The tube is blue and white. A tube of Ultra Brite toothpaste. This is a tube of Ultrabrite toothpaste. This is a tube of toothpaste. +greens/greens_4_2_62,It's some baby bok choy. This is bok choi. This is baby bok choy. Kale on a plate. +marker/marker_4_4_3,A green pen A green dry erase marker. This is a green marker. A magic marker. It's a green marker. +food_can/food_can_2_2_125,a can of something A can of soup. This is a can of soup. This is an unopened can with a flip top. +plate/plate_4_1_194,It is a plate that is mostly flat, with a raised outer area that goes around. This is a plate. It's a paper plate with beige designs around the edge. The object appears to be a paper plate. The color is tan and brown. An empty paper plate. +coffee_mug/coffee_mug_6_4_163,A tan coffee mug with a handle. A round object that holds liquid. It is white and has ridges. This is a yellow ceramic mug. A mug holding some sort of liquied that is not identifiable. This is a coffee cup. +flashlight/flashlight_2_4_169,This is a red and black flashlight. A red flash light. This is a flashlight, the casing is red plastic and the button and top are black. This is a red and black flashlight. This is a flashlight. This is a flashlight. +food_box/food_box_1_4_60,This is a box of food. A box of some food This is a box of sweetner. A box of crackers. +banana/banana_3_4_81,This is a yellow banana. A banana on a plate. This is a large yellow banana. It has a strong fragrance. It is a mushy texture. This is a sweet fruit called a banana. It can be eaten raw or cooked, and can be made into banana bread! This is a banana. This here is a banana. That is a banana. +food_can/food_can_4_1_74,This is a can. This item is a can of food. It's a can of food with a white label. A can of soup. This is a can with a product inside it. This is a metal can of food. It has a label to describe ingredients and possibly directions to use the product. It appears to be either a can of soup or milk. +camera/camera_1_4_76,A small film camera. +bell_pepper/bell_pepper_3_2_109,The pepper is red. This is a red bell pepper. It is a red bell pepper with a green thick stem. A red pepper. This is a red bell pepper. That is a red pepper. This is a red bell pepper. +shampoo/shampoo_3_2_13,This is a bottle of shampoo. It's a bottle of conditioner. The liquid inside is lavender and it has a silver cap. This is a bottle of blue colored shampoo. This is a bottle of shampoo. This is a bottle of either shampoo, conditioner, or maybe even body wash. It is blue in color. +garlic/garlic_4_2_221,A purple onion. A medium size red onion +stapler/stapler_5_4_190,This is a black stapler. This is a stapler. It's a black stapler. This is a stapler. This is a black stapler. +cap/cap_1_2_45,It's a white baseball hat with black stripes. This is a white baseball cap with black stripes and a W logo. A baseball cap. a white cap This is a white hat. +peach/peach_1_1_30,This is a peach. This object is round with a dark mink and yellow skin. It is a soft, sweet fruit with a pit. This is a peach. A reddish peach. The object is a red colored peach. +marker/marker_2_4_61,This is a green dry erase marker. A marker pen A magic marker. This is a green marker. It is a green marker. +toothpaste/toothpaste_4_2_202,This object is a tube of toothpaste. The object is plastic, has a cap and its contents is gel like. A tube of toothpaste A tube of Close-Up toothpaste used to clean teeth. A tube of toothpaste. +tomato/tomato_8_1_50,This is a tomato. A round, red tomato. This is a red tomato. A peach standing upright. A tomato +food_can/food_can_6_1_203,This is a can of soup. This is a can of soup. This is a can of food. Some preparation may be required before this food can be eaten. A can of soup. a can of tomatoes This is a can of tomato sauce. That is canned food. +keyboard/keyboard_5_2_91,It's a white and black computer keyboard. This is a computer keyboard. This is a keyboard. This is a computer keyboard. A computer keyboard. +food_box/food_box_5_2_3,This is a box containing a food product. The object is a box of soup with a white bottom and red topped box. A box of crackers. They are crackers like the ones you service with cheese. +notebook/notebook_5_1_209,This is a notebook. This is a notebook. It's a black spiral bound notebook. This is a spiral bound notebook. A number of pages of paper are bound together by the spiral of wire. This is a black spiral bound notebook. +toothbrush/toothbrush_3_4_47,This a white and teal colored toothbrush. This is a tooth brush. It's a blue and white toothbrush. This is a toothbrush for cleaning your teeth. A toothbrush. +garlic/garlic_5_2_6,An onion. It's a brown onion. This is an onion. This tasty vegetable has a sharp flavor, and us usually cooked. This is an onion. This is a red onion. The first layer is peeling off. A vegetable that is used in cooking +glue_stick/glue_stick_6_1_244,This looks like a can of vegtable oil spray. This is a can with a red cap. This is a glue stick. This is a can of spray. A tube of glue. This is a glue stick. +lemon/lemon_2_4_188,A lemon with sticker on it This is a tart fruit called a lemon. It can be eaten raw or cooked. This is a lemon. A yellow lemon. This is a lemon. +cell_phone/cell_phone_3_2_140,This is a mobile phone. It's a flip phone. It is grey and blue. A cell phone. an old model flip mobile phone This is a phone it is used to call people +kleenex/kleenex_4_1_5,This is a box of facial tissues. This is a box of tissues. A box of napkins This is a Kleenex box. It is blue. A box of kleenex. +glue_stick/glue_stick_3_4_215,A glue stick with a red top This is a container of glue. Blue glue stick with a red top. This is a glue stick. A glue stick with an orange cap. That is a glue stick. It is symmetry shaped object refers to a sense of harmonious and beautiful proportion and balance. This is a gluestick, used to glue to things together +marker/marker_4_4_258,A magic marker. This is an ink pen. This is a marker. This looks like a green highlighter or marker. +water_bottle/water_bottle_9_4_51,This is a water bottle. This is a water bottle with a blue lid. This is a plastic drinking bottle. It is clear with a blue lid. This is a blue water bottle. It is empty. A plastic water bottle. +potato/potato_2_2_42,A small red potato. This is a small potato. It's a red potato. This is a red potato. This is a red potato used for cooking The potato is a starchy, tuberous crop from the perennial nightshade Solanum tuberosum. +food_jar/food_jar_2_1_242,This is a jar of caramel topping. This is a jar of marmalade. This is a jar of food. This appears to be jelly, a fruity food that's ready to eat. A jar of jelly. This is a jar of jelly. +food_jar/food_jar_6_1_16,This is a jar of fudge topping. A jar of chocolate fudge. This is a jar of fudge. This is a jar of jam or jelly. +food_can/food_can_1_1_219,This is a can. A can of something unidentifiable It is a short can of some kind of food with a white table. A can of condensed milk. This is a can of food. +sponge/sponge_8_1_154,This is a kitchen sponge. The sponge has two colors. The top is blue and the bottom is yellow. This is a sponge. A kitchen sponge. Rectangular shaped object that is roughly 2/3 yellow in color and 1/3 blue. +hand_towel/hand_towel_1_2_254,This is a white towel. This is a towel. This is a white towel. This is a white blanket used to keep warm. A folded towel. +pitcher/pitcher_3_2_142,This is a green vase. This is a pitcher for beverages. A green vase. Pitcher is a container with a spout used for storing and pouring contents which are liquid in form. This is a green ceramic pitcher. This is a tall green ceramic pitcher. This ceramic pitcher is green, with an elongated oval handle. This is a pitcher for holding liquid. It is brown. +comb/comb_5_4_14,This is a hairbrush. This is a hair brush. A black hair brush. An oval head balck hair comb This is a black hairbrush. +orange/orange_3_1_56,This is a round, orange fruit. This is a sweet fruit called an orange. It can be eaten raw or cooked. This is an orange. An orange. This is an orange. +rubber_eraser/rubber_eraser_3_4_3,This is a rectangular shaped pink eraser. A rectangular pink eraser. This is an eraser. This is a pink eraser, used to remove pencil writing That is a pink eraser. +hand_towel/hand_towel_5_2_245,This is a cloth napkin. This is a small black towel. A folded towel. This is a soft, absorbent cloth called a towel. Towels are used to dry water from people's hands and other items. +onion/onion_3_4_203,A white onion. This is a yellow onion. This is an onion. It's a yellow onion. This is a white onion. +cell_phone/cell_phone_2_2_12,This is a phone. This is a silver and black phone. A cell phone. It is a silver and black cell phone. This is a mobile phone. +pitcher/pitcher_2_1_44,The tea kettle is silver. This is a pitcher for hot liquid or possibly an electric kettle. This is a coffee pot. A coffee pot. This is a stainless steel coffee carafe. +calculator/calculator_5_4_122,It's a silver and black calculator with white and grey buttons. This is a silver calculator. THIS IS A CALCULATOR WITH WHITE KEYPADS A calculator. This is a calculator. +garlic/garlic_6_2_241,This is a clove of frest garlic. This is a bulb of garlic. A clove of garlic. On clove or garlic. Garlic is a species in the onion genus. +tomato/tomato_1_2_166,A red tomato. This is a tomato. a tomato A ripened plum tomato This is a tomato. This is red tomato. This is a red tomato. +plate/plate_6_2_27,An empty dinner plate. This pie is circular in shape, yellow in color, and appears to have plastic wrap on top of it. The brown crust is apparent around its edges. This is a ceramic dish. It is dark yellow. This is a plate. This is a brown plate. +tomato/tomato_4_2_61,This is a tomato. It's a yellow and red tomato. A red tomato. This is a tomato. This is a tomato. +instant_noodles/instant_noodles_3_4_65,This is a package of food. A package of frozen vegetables. This is a package of Ramen soup mix. The object is a green and white package of food, probably noodles. +plate/plate_4_1_175,this is a plate This is a plate. An empty paper plate. This looks like a bowl with some kind of liquid in it like soup on a plate. A white and tan paper plate. +orange/orange_1_2_84,This is an orange. An orange. This is a piece of fruit, probably a blood orange. An orange that is not yet peeled. This is an orange. +greens/greens_3_4_46,This is bok choi. Bok Choy on a plate. This is baby bok choy. It's a plate with some uncooked baby bok choy on it. The bok choy has white stems and green leaves. This is a head of bokchoy. +toothbrush/toothbrush_5_4_127,This is a toothbrush. A red and white toothbrush. This is a red toothbrush. This is a toothbrush. The object is long, has a grip and bristles. +stapler/stapler_5_4_154,This is a tube. A black stappler This is a stapler. A black stapler. +flashlight/flashlight_5_2_32,A yellow flashlight. A duracell flash light. It was yellow in color This is a large black and yellow Duracell flashlight. This is a yellow and black flashlight on a white and red plate. It's a yellow and black Duracell flashlight. It is a large yellow flashlight. This is a yellow Duracell flashlight on a table. +food_cup/food_cup_2_1_237,A container of yogurt. This is a container of yogurt. This is a cup of yogurt that has not yet been opened. This is a red and white yogurt cup. It's a container of Yoplait yogurt. +water_bottle/water_bottle_5_4_45,This is a bottle of water This is a bottle of water. This is a bottle of water. It's a bottle of water. It's a bottle of water with a blue label. +water_bottle/water_bottle_6_2_55,A plastic water bottle. This is a bottle of water. This is a clear bottle of water. This is a bottle of water. This is a bottle of water. +food_box/food_box_10_1_194,This is a box of multi-grain crackers. This is a box of food, possible pancake mix. It's a box of multigrain crackers. It is green and white with a purple label and a picture of crackers on it. This is a box of crackers. Small cardboard box of crackers. Green and purple labels with a picture of a bowl of crackers. +food_jar/food_jar_5_2_188,This is a jar of peppers. This is a pickle jar. A jar of peppers. A glass jar with a blue lid with some type of food inside. That is a jar of yellow ring peppers. This is a jar of pickled pepper slices This is a jar. The contents are yellow. +food_bag/food_bag_1_2_138,This is a bag of chips or a similar kind of food product. A bag of chips. A bag of frozen fruit. Chips are a delicious after dinner treat. This is a bag of dog food. It looks healthy. +marker/marker_9_1_56,A yellow magic marker. This is a yellow highlighter. This is a marker. It's a yellow highlighter marker. +sponge/sponge_3_4_33,A blue colored sponge This is a cleaning sponge. Most often used in the kitchen, a sponge can be used many places. It's a blue sponge. This is a sponge. A kitchen sponge. +lime/lime_3_4_114,A green lime. The lemon is a species of small evergreen tree in the flowering plant. This is a green lime. This is a lime. This is a lime. +ball/ball_1_4_124,This is a football. a football A football. This is a toy football. +dry_battery/dry_battery_6_1_56,This is a battery. This is a battery. This is a battery. This is a battery. A battery from its postive side +potato/potato_1_4_134,A red potato. This is a red potato. It's a red potato. +cap/cap_1_1_9,It is a baseball cap that is mostly white with thin stripes all over. This is a hat. It's commonly called a ball cap because of all the ball players that wear them. A baseball cap. This is a white baseball cap with black stripes and a W logo. This is a white baseball cap. This is a baseball hat That is a striped baseball cap. This is a pinstriped baseball hat that is mostly white. +lightbulb/lightbulb_2_4_91,This is an old lightbulb. A light bulb. This is an incandescent light bulb. A standard white lightbulb. This is a light bulb. +scissors/scissors_4_2_119,A pair of scissors with a blue and yellow handle. This is a pair of scissors. Scissors with a yellow handle. This is a pair of grey and yellow scissors. It's a pair of scissors with blue and yellow handles. +food_box/food_box_1_1_47,This is a box of cereal. This is a box of food. This is a box of food. Here is the nutrition fact side of a box of food. A box of crackers. One small box that will make a nice snack later in the day. Here is a box of food. The nutrition label on a box of food. +stapler/stapler_6_1_156,A stapler is a mechanical device that joins pages of paper or similar material by driving a thin metal staple through the sheets and folding the ends. A black stapler. This is a stapler. It joins two or more pieces of paper together. This is a stapler. This is a stapler. +garlic/garlic_5_2_121,Garlic is a species in the onion genus. A clove of garlic. +flashlight/flashlight_4_4_75,This is a flashlight. This is a flashlight it is used to see your way in the dark. This is a flashlight. A black flashlight. This is a flashlight. +potato/potato_4_2_26,A large baking potato. This is a potato. This is a potato. +stapler/stapler_7_1_272,A blue stapler. This is a small blue stapler. This a mini blue stapler. +cereal_box/cereal_box_1_1_156,This is a box of Bran Flakes cereal. This is a box of cereal. This is a box of Bran Flakes cereal. A box of Bran Flakes. This is a box of bran flakes. +apple/apple_4_2_31,A yellow apple. This is a golden delicious apple. This is an apple. Greenish/Yellowish Apple, like a cross between granny smith and a golden apple. This is a yellow or light green apple used for a healthy snack. +plate/plate_3_4_47,This is a plate. An empty paper plate. this is a blue and white bowl an empty plate. It was white with blue design This is a plate. +scissors/scissors_3_2_68,This is a pair of scissors with a blue, plastic handle. a blue colored craft scissors This is a pair of scissors. This is a pair of blue handle scissors used for cutting. It is a pair of scissors with a blue handle. Here are scissors +food_can/food_can_14_4_50,This is a can filled with a product. This is a can. A can of soup. This is a can with a pull tab. I can't read the label, it's most likely some sort of soup. This is a can of soup. +keyboard/keyboard_1_2_68,a computer keyboard This is a wireless computer keyboard. This is a computer keyboard. A computer keyboard. This is a keyboard. This is a computer keyboard. This is a keyboard, which is used to enter data into a computer. This is a grey keyboard and color its grey +coffee_mug/coffee_mug_3_2_134,This is a mug. This is a brown coffee mug. A black pitcher This is a coffee mug. A coffee mug. +food_box/food_box_4_2_149,A box of Oreo cookies. This is a box of snack food. Humans eat snack foods as part of their diet. This is a yellow box of golden Oreo Funstix. It's a box of Golden Oreo Funstix. The box is yellow. This is a box of Golden Oreo Funstix. +food_box/food_box_3_4_112,This is a box of Fiber One. This is a small sized box of Fiber One products. A box of Fiber One pastries. A box of fiber pop tarts This is a box of Fiber One snack bars. +food_box/food_box_12_2_229,This is a box of crackers. This is a box of crackers. This is a box of pasta. It looks tasty. A package of crackers. It's a box of crackers. The box is green and blue with a photo of crackers on it. This is a box of round crackers. The box is a long rectangle. This is a box of salted crackers This is a box of crackers. +stapler/stapler_1_4_56,It's a black and grey stapler. This is a stapler. A black colored stapler This is a stapler. +bell_pepper/bell_pepper_2_1_147,This is an orange pepper. This is a yellow pepper. An orange pepper. It's a yellow bell pepper with a sticker on it. This is a yellow bell pepper. +tomato/tomato_1_4_111,The object is soft, red and oval shaped. This is a red fruit or vegetable of some sort, it's blurry but it is probably a tomato. This is a grape tomato. A ripe plum tomato +cap/cap_4_4_80,This is a red baseball cap. It is the top view of a red baseball cap. It has a black button on the top. A red baseball cap. This is a red ball cap. +rubber_eraser/rubber_eraser_2_4_168,This is an eraser. It is partially used. +food_box/food_box_2_1_59,This is Zatarain's rice. It is a dinner in a box. This is a box of Zatarrain's rice. A box of yellow rice. This is a box of Zatarains yellow rice mix. This is a box of yellow rice. +food_box/food_box_9_2_226,A box of crackers. There is a box of bleaching tablets for toilets to clean with. This is a box of food. This is a box of bagel chips. +glue_stick/glue_stick_5_2_21,A tube of glue. This container of toothpaste holds cleaning material. Humans use that cleaning material to clean their teeth. This is a glue stick. +tomato/tomato_5_1_41,This is a small red ball that is used in billards. This is a tomato. This is a red tomato. A ripened tomato A red tomato. +kleenex/kleenex_2_1_66,This is a box of tissues. This is a box of facial tissues. This is a box of tissues. A box of kleenex. tissue paper is commonly used for facial tissue. +coffee_mug/coffee_mug_3_2_160,This is a ceramic mug. This is either a vase or a cup. This is a coffee mug. It's a brown mug with a white inside. A coffee mug. +pitcher/pitcher_1_1_108,This is a cream floral pitcher. A tea serving pitcher This is a pitcher. This is a ceramic pitcher. A gravy boat. This is a ceramic container. This is a small ceramic pitcher with a leaf drawing on it. +stapler/stapler_4_4_64,This is a stapler. I think we're looking at the top of a black stapler. This is a stapler. A black stapler. This is a stapler. +notebook/notebook_2_4_204,A writing notebook. This is a yellow-spiraled notebook. This is a spiral bound notebook. This pad of paper is held together by the wire spiral at one side. This is a yellow notebook. This is a yellow spiral bound notebook. +marker/marker_8_1_209,A magic marker. This is a marker. This is a red marker with a black lid. +food_bag/food_bag_3_2_18,This is a bag of Snyder's pretzles. A bag of pretzels. This is a bag of pretzels or chips. The bag is mainly brown with a predominant red label. This is a bag of Snyder's pretzel snaps. These are little square pretzels. They have a salty taste to them. +pitcher/pitcher_1_1_156,A small ceramic pitcher with a yellow and green leaf design. This is a ceramic pitcher. This is a ceramic pitcher. This is a ceramic teapot. A gravy boat. +glue_stick/glue_stick_6_2_118,This is a glue stick. A glue stick with an orange cap. This is a stick of Elmers glue. This is a glue stick. This is a can of spray. +tomato/tomato_8_2_208,This is a tomato. This is a tomato. This is a tomato. A red tomato. This is a red tomoato. +food_cup/food_cup_3_2_255,Food Cup is used to store food items. This is a container of yogurt. This is a container of yogurt. This is a white container of yogurt. A container of yogurt. +kleenex/kleenex_2_1_82,It is a box of tissues. The box is pink and white. This is a box of facial tissues. A box of soft tissues used to blow your nose. A box of kleenex. This is a smal pink box of tissues. +peach/peach_2_4_94,It's a white peach. It is cream and pink colored. This is a yellow and red apple. This is a fruit, possibly an apple. An apple. This is a ripe apple. +pliers/pliers_6_1_129,It's a pair of pliers with black grips. This is a pair of pliers. A pair of pliers. Multi functional Handled Pliers With A Small Tip. This is a set of pliers. They are a grabber tool. +dry_battery/dry_battery_2_1_124,A battery. A battery, black on the bottom and colored yellow on the top. This is a battery. This is a battery. +marker/marker_3_2_41,A marker pen This is a black marker. This is a black expo marker. This is a black dry erase marker. A sharpie magic marker. That is an expo marker. closed scroll fastened with a removable white band +shampoo/shampoo_5_2_207,This is a bottle of soap. Shampoo is a hair care product. A bottle of shampoo. This is a bottle of shampoo. +greens/greens_1_2_89,This is head of green leaf lettuce. Green leaf lettuce on a plate. This is a bundle of lettuce. A leafy salad vegetable. It could be lettuce This is a bunch of loose leaf lettuces +food_bag/food_bag_2_1_131,This is a bag of chips. Chips are a delicious after dinner treat. This is a bag of chips. A bag of chips. This is a bag of chips. +sponge/sponge_4_4_80,This is a purple sponge. This is a sponge. A kitchen sponge. This is a purple sponge. It's a light purple sponge. +coffee_mug/coffee_mug_7_1_217,The coffee mug is blue. This is a coffee cup. This is a mug. A coffee mug. This is a blue coffee mug. +marker/marker_5_1_237,This is a marker. Blue pen with black comfort grip A magic marker. The marker is blue. +lemon/lemon_3_1_108,This is a yellow lemon. A yellow lemon. This is a lemon. This is a lemon. The lemon is a species of small evergreen tree in the flowering plant. +sponge/sponge_4_2_28,This is a sponge. This is a purple sponge. There looks to abe a dish sponge that has critters on it. A kitchen sponge. This is a purple sponge. +apple/apple_5_1_134,A green apple. This is a green apple. This sweet fruit can be eaten raw or cooked. Best food is called apple pie. This is an apple. There's many types of these. This is a green apple. This is a green apple. This green apple is upright An apple is a sweet, edible fruit produced by an apple tree. This is an apple green apple with no stem. The apple also has a sticker. +pear/pear_1_4_59,This is a pear, most people eat alone or mix with smoothies, a sweet fruit. This is a pear. This is a green pear. A pear. This is a pear. +cap/cap_4_2_163,This is a red baseball cap. This is a red baseball cap with no identifying graphics. This is an all-red ballcap This is a red baseball cap. A red cap. +onion/onion_6_4_36,A purple onion. This is a red potato. +cap/cap_4_2_124,It's a brand new red baseball cap. This is a ball cap. A red baseball cap. It is a red baseball cap. The button on the top is black. The object is a red baseball cap, with black lace. +coffee_mug/coffee_mug_7_1_50,This is a mug. This is a coffee cup. A coffee mug. It is a blue mug with a white interior. This is a cup, and it is blue. +lightbulb/lightbulb_4_4_48,A light bulb. a light bulb. It looks like soft white This is a light bulb. This is a lightbulb. You have to replace them every so often. This is a light bulb. +stapler/stapler_2_2_49,A black desk stapler. This is a black stapler. A black colored stapler A black stapler. This is a stapler. +glue_stick/glue_stick_1_4_239,This is a glue stick. A tube of glue. Some type of plastic tube. A tube of super glue. This is a glue stick. This is a glue stick with the lid off. +lime/lime_2_2_71,This is a lime. A green lime. This is a lime. It's a lime with a sticker on it. It's mostly green and slightly yellow. +dry_battery/dry_battery_4_1_153,A Duracell battery. This is a battery. This is a Duracell battery. small duracell battery A round object shaped like a Dura Cell battery. +dry_battery/dry_battery_3_2_125,This is a single battery. This is a battery. A battery. +food_can/food_can_7_2_99,This is a can of soup. This is a red and white can of soup. A can of soup. This is an unopened canned good with a flip top. This is a can of soup. +glue_stick/glue_stick_5_4_238,A tube of glue. +cell_phone/cell_phone_4_4_154,This is a cell phone. It's a white flip phone with a black top. Looks like a small flip phone, based is white and the top is black This is a mobile phone. +orange/orange_3_1_77,An orange. There is a round fruit object called an orange. This is an orange. This is an orange. This is an orange. +toothbrush/toothbrush_4_2_39,a toothbrush which was purple in color This is a purple toothbrush. This is a toothbrush. A toothbrush. It's a white and purple toothbrush. +soda_can/soda_can_1_1_80,A can of Pepsi. This is a can of Pepsi. This is a can of soda. This is a can of pepsi soda. a blue can of carbonated drink. +cell_phone/cell_phone_5_4_22,This is a smart phone. This is a smartphone. A smartphone. This is a cell phone. A silver colored smartphone. +rubber_eraser/rubber_eraser_1_2_161,This looks like a battery charger. Used to recharge rechargeable batteries, this device is electrical in nature. +food_cup/food_cup_1_2_216,This is a container of yogurt. This is a white container of yogurt. This object is a thing of yogurt. Yogurt is a delicious breakfast treat. This is a small plastic container holding a food called yogurt. Yogurt is a dairy product made using active bacteria. +plate/plate_4_2_124,This is a plate. A disposable paper plate It's a white paper plate with brown designs around the edge. An empty dinner plate. This is a plate. +marker/marker_5_1_154,This is a pen. +sponge/sponge_7_2_209,A kitchen sponge. This is a squeegee. This is a sponge. It is usually used to clean, and has one rough side to scrub items clean. This is a sponge. This is a green and white sponge. This is a sponge used to wash dishes A sponge is a tool or cleaning aid made of soft, porous material. This is a green and yellow sponge. The scrubbing part is green; the soft part is yellow. +apple/apple_1_1_110,This is a red apple. This red apple is food for humans and others. It is a sweet fruit that can be eaten raw or cooked. This is an apple. A red apple. This looks like an apple but it is very dark, purple or black. It might be an apple-shaped plum or one of those new hybrid fruits. This red apple is upright This is a dark red apple. That is a red apple. +coffee_mug/coffee_mug_5_2_9,A white ceramic cup, perhaps a coffee cup. It's an empty white mug. This is a coffee cup. A coffee mug. This is a mug. +food_jar/food_jar_3_1_26,It's a jar of gravy with a red cap and a red label. This is a jar of food. This is a jar of gravy. This is a jar of gravy. This is a jar That is a jar of food. +apple/apple_3_2_40,A yellow apple. a golden delicious apple This is a golden apple. This is an apple. This is a golden delicious apple. +bell_pepper/bell_pepper_2_1_115,This is a yellow pepper. It is an orange vegetable that can also come in red or green and gives flavor to your meals. A fresh orange bell pepper. This is a yellow bell pepper. A yellow pepper. +soda_can/soda_can_2_4_128,This is a can of 7 Up. A can of 7up soda. It's a can of 7 UP. The can is green with white and yellow text. This is a can of 7up. A can of 7-Up. This is a can of 7up soda. This is a can of UP soda It is a green individual unopened soda can. +calculator/calculator_5_1_80,SQUARE SHAPE WITH WHITE KEYPAD GREY IN COLOR WITH BLACK SCREEN DISPLAY A calculator. This is a silver calculator. This is a calculator. This is a calculator. +scissors/scissors_2_2_170,This is an orange scissors. This is a pair of scissors. Scissors with an orange handle. This is a pair of scissors. Scissors are used for cutting paper. This is a pair of scissors with orange handles. These are scissors with an orange handle. This is a pair of orange scissors. +shampoo/shampoo_1_4_131,A bottle of shampoo. This is a bottle of lotion. The object is a bottle of soup or liquid that can be squirted out. The bottle is white and blue. A white shampoo bottle with a blue cap standing up right. This is a bottle of shampoo or conditioner. +lime/lime_1_2_85,A green lime. this is a green lime. this lime has a code sticker on it. This is a piece of fruit, probably a lime. It's a green lime with a sticker on it. +camera/camera_1_2_138,A disposable camera. This is a disposable camera. It's a disposable film camera. A black disposable camera. This is a camera. +cap/cap_4_2_26,This is a red baseball cap. This is a red baseball cap. It's a red baseball hat. A red baseball cap. This is a picture of a hat. +lightbulb/lightbulb_2_2_31,This is a lightbulb. A light bulb. This is a lightbulb. This is a light bulb. This is a light bulb. +food_can/food_can_11_2_42,This is a can. A can of soup. This is a can of soup. The object is a tin can of soup. The label is white and red. This is a can of soup. +flashlight/flashlight_1_4_69,This is a black flashlight. This is a flashlight. This is a black flashlight. This is a black flashlight with a black cord attached to the bottom. A black flashlight. +food_cup/food_cup_1_1_147,This is a container of yogurt. This is a container of yogurt. This is a small plastic container holding a food called yogurt. Yogurt is a dairy product made using active bacteria. A container of yogurt. This is a container of Yoplait yogurt. +bell_pepper/bell_pepper_5_4_92,It's a green bell pepper. A green pepper. This is a green pepper. A fresh green bell pepper. This is a green bell pepper. +plate/plate_3_1_89,An empty dinner plate. A plate with nothing on it This is a plate. This is a single dinner plate. The plate is white with a blue rim. This is a plate with blue stripes. +pear/pear_3_2_89,This is a pear. Brown, red, orange, black pear shaped object with a white label or sticker on it. It's a red pear with a sticker on it. This is a red pear. +stapler/stapler_1_2_79,This is a small black and gray stapler This is a stapler. This is a stapler. This is a stapler. It is used to stick papers together. A black stapler. +lightbulb/lightbulb_4_1_36,It's a light bulb. This is a light bulb. This is an LED bulb. They're good for your home. A light bulb. A white light bulb +food_can/food_can_6_4_54,This is a can of food. It looks like it might be Campbell's soup. a can of some food This is a can of soup. A can of soup. It's a red and white can of food. +lemon/lemon_4_4_215,It's a yellow lemon. A fresh lemon. This is a lemon. A yellow lemon. This looks like a yellow lemon. It is a lemon! This is a yellow lemon. +onion/onion_6_4_159,This is a red onion. a rotten onoin peeling off by itself A purple onion. This is an onion. A purple onion. +onion/onion_1_4_268,A white, round onion This is a white onion. On clove or garlic. This is a white onion. A clove of garlic. +dry_battery/dry_battery_4_2_151,It's a large alkaline battery. It is black and copper colored. A Duracell battery. a battery This is a battery. I would guess either AA or AAA in size. This is a battery. This is a C battery. It is Duracell brand. +marker/marker_1_2_13,This is a red marker. This is a red marker. A magic marker. Markers are used to wrighting on the board. This is a red dry erase marker. +food_bag/food_bag_6_2_111,A bag of chips. This is a bag of pop chips. The chips are barbecue flavored. This is a bag of chips. This is a bag of potato chips. This is a bag of snack food. Humans eat snack foods as part of their diet. +lightbulb/lightbulb_4_4_43,This is a light bulb. This is a light bulb. This is a light bulb. Light bulbs are used in residential fixtures. A light bulb. This is a LED lighbulb This is a light bulb. This is a bulb, flat on top, with a brass bottom. +orange/orange_4_1_40,A yellow lemon. This is an orange. This is an orange. This is a round fruit that is orange and citrusy. +sponge/sponge_3_1_135,This is a blue sponge. A kitchen sponge. This is a sponge. This is a sponge. This is a sponge. It is usually used to clean as it holds water in its little holes. +toothbrush/toothbrush_5_1_17,A red and white toothbrush. This is a red toothbrush. This is a red and white toothbrush. This is a toothbrush. This is a toothbrush. +instant_noodles/instant_noodles_8_2_57,This is a pack of instant noodles It's a bag of ICHIBAN. It's a package of ramen noodles. It's Ichiban brand and the package is brown and white. This is a package of food. A package of ramen noodles. +notebook/notebook_3_2_16,A writing notebook. This is a green and white spiraled notebook. This is a white and green spiral bound notebook. It's a spiral bound notebook with a green and white design on it. This is a spiral bound notebook. This pad of paper is held together by the wire spiral at one side. +water_bottle/water_bottle_3_2_66,One bottle of water. Brands looks to be, Aquafina. This is a water bottle. A plastic water bottle. This is a bottle of water. This is a bottle of filtered water. +peach/peach_3_4_91,This looks like a peach or a nectarine. One ripe peach. This is a juicy fruit called a peach. It is grown from a deciduous tree. This is a peach. A peach. +food_box/food_box_6_2_187,These are Pretzel Thins snack pretzels made by Pepperedige Farms. This is a box of pretzels. They are classic 'knot' shaped, but thin. A good snack. It's a box of Pretzel Thins. The box is white with a picture of pretzel thins on it. This is a box of Pretzel Thins. This is a box of pretzel thins. I can't read the label but by the shape and color I think it's Pepperidge Farms. +notebook/notebook_5_2_257,The object is used for writing in. It is black with a cover and filled with lined paper. This is a notebook. A writing notebook. This is a black spiral bound notebook. +bell_pepper/bell_pepper_1_2_99,This is a red pepper. This vegetable has a sharp flavor, and is usually cooked. This is an orange pepper. This is a red pepper. This is a red bell pepper. An orange pepper. +sponge/sponge_12_1_94,This is a blue scrubber. It's a blue dish scrubber. +pear/pear_1_2_108,A pear. This is a pear. This is a green pear. This is a pear. A green pear +dry_battery/dry_battery_2_1_148,An electric battery provided to power electrical devices. This is a battery. +soda_can/soda_can_6_2_181,This is a yellow can of Welch's. This is a canned beverage. This is a can of soda. This is a can of Welch's juice. A can of Welch's soda. This is a can of Welch's juice This is a can of Welch's drink. It is the glass bottle offers the highest quality glass bottle at the best prices. +food_can/food_can_12_2_268,This is a can with chicken broth in it. A can of soup. can good that could be used to cook and eat alone or make with something else. This is a can. +bell_pepper/bell_pepper_5_4_121,This is a green bell pepper. It is wider on top than at the bottom, and it is indented near the top surrounding its stem. This is a green pepper. This is a green bell pepper. This looks like a green bell pepper. A green pepper. +onion/onion_6_1_4,This is a purple onion that has not been peeled yet. A purple onion. This is an onion. It's a red onion. This is a red potato. This a reddish-purple food item. It is round and has a papery outer layer. +banana/banana_3_2_192,This is one banana The yellow banana is ripe. This is a banana. A banana on a plate. This is a banana. This is a fruit called Banana This is a banana. This banana is yellow. It seems to be ripe. +pear/pear_4_4_59,This a pear. It's a pear with a sticker on it. This is a pear. This is a pear. A yellow and red pear with sticker on it +coffee_mug/coffee_mug_2_2_148,A coffee mug. This is a brown mug. This is a mug. This is a mug, or a cup. You can hold coffee in it. A brown coffee mug +water_bottle/water_bottle_1_2_171,This is a bottle of vinegar. a bottle of water. This is a bottle of water. This is a clear bottle of fluid with a green & blue label across the middle & lower part of the bottle. +ball/ball_4_1_171,This is a toy basketball. +instant_noodles/instant_noodles_8_1_19,This is a package of soup. This is a pack of Ichiban Ramen imported from Japan. This is a package of food. A package of Ramen noodles. +cereal_box/cereal_box_5_2_89,This is a box of cereal. This is a box of a product. This is a box. A box of crackers. +lemon/lemon_2_1_24,This is a yellow lemon. A yellow whole lemon. This is a lemon. It's a bright yellow lemon. A yellow lemon. +soda_can/soda_can_1_2_110,a can of pepsi soda. This is a can of Pepsi. This is a can of soda. It's a can of Pepsi. The can is blue with a Pepsi logo on it. This is a pepsi can. +cell_phone/cell_phone_5_2_26,This is a smart phone. Communication with other phones is its primary function. This is a cellphone. A smartphone. This is a smart phone case. This is a smartphone. +cell_phone/cell_phone_1_4_38,A cell phone. CELLULAR PHONE DEVICE LOOKS LIKE THOSE ANCIENT ONES This is an older cellphone. This is a silver flashlight. This is a mobile phone. +dry_battery/dry_battery_5_1_9,A battery It's a battery. This is a battery. An Energizer battery. This is an Energizer battery. +onion/onion_5_2_211,This is a red onion. This is a pomegranate. It is a messy fruit. A purple onion. This is a red onion. This is an onion. +food_cup/food_cup_5_2_251,A container of yogurt. This is a container of yogurt. This is a container of yogurt. This is a cup of yogurt. Yogurt has probiotics and makes a quick and delivious snack. This is a container of yogurt. +marker/marker_8_4_119,This is a marker. A magic marker. A dry erase marker with a red body and a black cap. This is a red permanent marker. +water_bottle/water_bottle_4_1_141,This is a plastic bottle. It looks to be holding water, but can be re-purposed many times. This is a bottle of drinking water. This is a bottle of water. A plastic water bottle. This is a water bottle. +coffee_mug/coffee_mug_7_1_207,This is a blue coffee mug. This is a blue mug. Shown is a blue coffee mug with white interior. It's a cup. A coffee mug. +food_can/food_can_13_1_228,A can of soup. A can of progresso light soup. This is a can of soup. A can of some food This is a can of soup. +calculator/calculator_1_1_124,A basic calculator This is a calculator. It's a calculator. This is a calculator used for math problems. This is a calculator. This is a calculator This is a calculator used for maths This is a calculator. +food_can/food_can_8_1_179,this is a can of diced tomatoes. This is a can of diced tomatoes. A can with a label with bowl of diced tomatoes pictured on it named Ro tel. A can of something. It could be tomato sauce or beans This is a can which possibly contains soup. +cereal_box/cereal_box_5_1_149,This is a box of Honey Graham Crunch cereal. A box of crackers. This is a box of food. Some preparation may be required before this food can be eaten. This is a box of cereal. This is a box of cereal. +comb/comb_3_4_79,This is a hair brush. The hair brush is black. A black hair brush. This is a hairbrush. a hair comb with oval head and soft bristles +water_bottle/water_bottle_5_4_37,This is a bottle of water. A plastic water bottle. This is a plastic bottle. It looks to be holding water, but can be re-purposed. It's a bottle of water with a blue label. This is a bottle of water. This is a bottle of water with a blue label. This is a water bottle with a blue label. +food_can/food_can_6_1_137,This is a can. The can's label is mainly white on the bottom and red on the top. A can of soup. This is a can of soup. It's a can of food. The label is red and white. This is a can of soup. +food_bag/food_bag_3_4_136,This is a bag of Snyder's Pretzels. They are a salty snack. This is a bag of pretzels. This is a bag of Snyder's pretzel snaps. A package of Snyder's pretzels. This is a bag of Snyder's Pretzels. The bag is red, gold and black. +comb/comb_2_2_11,An oval head hair comb A black hair brush. This is a brush. This is a hair brush. It's a hair brush with stiff bristles. It's black and green. +stapler/stapler_2_1_37,It is a black hand stapler. This is a stapler. A stapler. It's a black and grey stapler. A black stapler. A desk stapler. +sponge/sponge_9_2_75,It's a red dish scrubber. A kitchen scrubbing sponge. +greens/greens_2_2_172,A dark green piece of lettuce. This is a bunch of lettuce. It's a bunch of lettuce. The lettuce is green. This is a bundle of lettuce. +food_box/food_box_7_4_235,This is a box of wheat crackers. This is a box of wheat thin crackers. This box is yellow. It's a box of Wheat Thins. The box is mostly yellow. This is a box of Wheat Thins. +greens/greens_3_1_233,Bok Choy on a plate. This is a head of bokchoy. It's a green vegetable. This is green lettuce. This is bok choi. +dry_battery/dry_battery_2_4_117,A yellow flashlight. This is a battery. This is a AA battery. This is a device called a flashlight. Powered by batteries, it produced visible light. +kleenex/kleenex_5_4_74,It's a box of Kleenex with a red pattern on it. A box of kleenex. This is a box of tissues. A pink patterned box of tissue. The box is made of cardboard. This is a box of facial tissues. +sponge/sponge_5_1_169,a red and blue sponge This is a sponge. This is a blue and red sponge. That is a red and blue sponge. +glue_stick/glue_stick_2_2_104,This is a glue stick. It's a container of lip balm. This is a can of spray. +sponge/sponge_6_1_116,This is a sponge. A kitchen scrubbing sponge. This is a yellow and pink sponge used to clean your house. A pink and yellow kitchen sponge. This is a pink and yellow sponge. This is a pink and yellow sponge. It is a scrubber used to clean plates . +cap/cap_1_2_100,This is a black and white striped ball cap. This is a white baseball cap with black pin stripes and a W logo. This is a white hat. A baseball cap. This is a baseball hat. This is a baseball hat. It is white with black stripes and a small logo. A fashion baseball cap This is a striped baseball cap on a table. +cereal_box/cereal_box_4_1_14,This is a box of cereal. This is a box containing a food product, most likely cereal. It's a box of cereal. It's mostly blue. This is a box of cereal with the ingredients listed on it. A box of crackers. +rubber_eraser/rubber_eraser_4_2_219,This looks like a pink eraser, the rectangular type that's tapered on either end. A red eraser A pencil eraser. This is a pink eraser. This is an eraser. +garlic/garlic_7_1_74,This is a clove of garlic. This is a clove of garlic. It's a head of garlic. A clove of garlic. +onion/onion_5_4_78,A purple onion. This is a red onion. This is a red onion. a red onion +bowl/bowl_1_1_130,This is red jello. This is a green and yellow bowl. The object is a brown and red bowl with a lead pattern inside. This is a bowl. An empty dinner bowl. This is a ceramic bowl that is red inside and green and gold outside. A bowl of red jello. +tomato/tomato_6_1_129,This object is a tomato used to eat. This is a small red tomato, with the vine still attached. This is a cherry tomato. This is a vine ripe tomato. A red tomato. +keyboard/keyboard_2_1_131,This is a black computer keyboard. This is a computer keyboard. Used as an input device, it is part of a desktop computer. A computer keyboard. This is a computer keyboard. This is a keyboard. +toothpaste/toothpaste_4_4_11,It's a tube of Close up toothpaste. The tube is red, white, and blue. A tube of toothpaste. This is a tube of toothpaste. This is a tube of toothpaste. This is a red tube of toothpaste. +food_can/food_can_9_1_198,This is a can of Campbell's Spaghetti-O's, with Disney Princesses on the label. It's a can of SpaghettiOs. It has cartoon characters on the label. A can of Spaghetti O's. This is a can of Spaghetti-O's. It is a metal can of spaghettios. The label has 3 Disney princes on it: Cinderella, Ariel, and Bell. +notebook/notebook_1_2_201,This is a notebook with paper. A writing notebook. It's a red spiral bound notebook. This is a red notebook of college ruled paper. This is a spiral bound notebook. +lightbulb/lightbulb_3_4_196,A round soft light white bulb This is a light bulb. This is a lightbulb. This is a lightbulb. This is a light bulb. This is a light bulb. An electric light is a device that produces visible light from electric current. That is a light bulb. +food_box/food_box_4_1_205,This is a box of Oreo cookie snacks. This is a box containing cookies. These cookies are cylindical and are hollow. This is a box of Golden Oreo Funstix. yellow box golden oreo funstix It's a box of Golden Oreo Funstix. The box is yellow with a picture on the front. +glue_stick/glue_stick_1_1_148,This is a glue stick. This looks like it is a tube of chapstick or something similar. A tube of glue. +sponge/sponge_2_4_39,A sponge which is light green in color This is a sponge. A kitchen scrubbing sponge. It's a lime green sponge. This is a lime-green sponge. +stapler/stapler_4_4_193,A black stapler. This object is used to put papers together. This is a black stapler. This is a stapler. This is a stapler. +greens/greens_3_2_68,This is a head of bokchoy. This is a leafy vegetable. This is baby bok choy. This is bok choi. This might be broccoli or celery. As a vegetable it is eaten raw, but is most often cooked as a side dish. +food_jar/food_jar_4_1_182,This is a jar of food. Some preparation is required before this food can be eaten. This is a jar of alfredo sauce. This is a can of Alfredo sauce. This is a jar of white pasta sauce. A jar of alfredo sauce. +marker/marker_3_1_236,A black marker. A magic marker. This is a black marker. This is a black dry erase marker. A magic marker. This is a black expo marker. +orange/orange_2_2_118,This is a piece of fruit. An orange. This is a sweet fruit called an orange. It can be eaten raw or cooked. This is a yellow sphere-shaped object that almost looks like a lemon. Nothing like pealing and eating a juicy, sweet orange to get lots of vitamin C. Oranges make good juice to drink when you roll them around on a hard surface until it is very squishy, stick a drinking straw into the top and squeeze it as you suck out the juice. +toothpaste/toothpaste_4_1_247,This is a tube of toothpaste. It cleans your teeth. Toothpaste is a paste or gel dentifrice used with a toothbrush to clean and maintain the aesthetics and health of teeth. This is a tube of toothpaste. This is a tube of toothpaste. This is a tube of toothpaste. +lemon/lemon_2_4_7,A yellow lemon. A super market sticker on lemon. It is a yellow lemon with a sticker label on it. The label is to blurry to describe. A yellow lemon. This is a lemon. This is a lemon. +plate/plate_2_2_164,An empty dinner plate. This is a plate. This is a plate This is a blue and white plate. +banana/banana_2_1_58,This is a banana, one of the most popular fruits, some people are allergic to it. You can eat this as is, or use to make lots of things . A ripe banana This is a banana. This is a banana. This is a large yellow banana. It has a small bruise on it. This is a banana. This is the fruit, banana This fruit is called a banana, and is eaten for nutrients. It is long, yellow, has a peel on the outside, and soft edible fruit flesh. +toothbrush/toothbrush_5_1_3,A toothbrush, red and white handle with matching brushes. A red & white toothbrush. A manual toothbrush. Toothbrushes are used to promote good oral hygiene. This is a toothbrush. A red and white toothbrush. It is a toothbrush with red and white bristles. The item is a toothbrush that is red and white. A toothbrush is a small brush that you use for cleaning your teeth. +sponge/sponge_3_2_197,It is a blue sponge. A kitchen scrubbing sponge. This is a squeegee. This is a blue sponge. A blue sponge for cleaning. This is a dish sponge A sponge is a tool or cleaning aid made of soft, porous material. This is a blue sponge. +marker/marker_3_4_265,A magic marker. This is a black dry erase marker. This is a black marker. This looks like a black Expo brand dry erase marker. It's a black Expo brand whiteboard marker. +hand_towel/hand_towel_4_4_38,It is a towel that looks faded green or possibly grey. It is folded into a smaller square. This looks like grey wash cloth. It's a folded green washcloth. A dinner napkin. This is a gray towel placed on a white and red plate. +cereal_box/cereal_box_4_1_9,This is a box of food. This is a box of cereal. A box of cereal. A blue box of cold cereal. This is a box of breakfast cereal. +water_bottle/water_bottle_5_1_162,It's a bottle of water with a blue label. This is bottled water. This is a bottle of a clear liquid. This is a bottle of water. +ball/ball_6_4_27,This is a candy shaped like a basketball. A soft, small, toy basketball. Here is a squishy ball that could easily fit into someone's hand. It is made to look like a basketball. It's a basketball stress ball or something similar. This is a small ball that looks like a basketball. +pliers/pliers_3_2_139,This is a pair of pliers. These are vice grip pliers. This is green pliars. metel, roughly "x" shaped with green accents on one end. A pair of pliers. +tomato/tomato_1_4_56,The object is a small red tomato. A red tomato. This is a red tomato. A ripe plum tomato +cereal_box/cereal_box_3_2_39,This is a box of Special K cereal. It is a cardboard box of cereal. It has six sides and a picture of a spoon on the back. This is a box of cereal. A box of cereal. This is a box of cereal. +stapler/stapler_5_4_107,This is a black stapler. A black stapler. This is a stapler. +ball/ball_1_2_185,This is a football. A nerf football. This is a toy football. It's an inflatable toy football. It's brown with white stripes. A football +garlic/garlic_6_4_71,Garlic is primarily used in Italian fare. The object looks like a full piece of garlic. This looks like a head of garlic. Here is a full clove of garlic. +coffee_mug/coffee_mug_3_1_156,A coffee mug. a brown pitcher A large mug. Brown exterior beige interior coffee mug. This is a mug. This is a coffee mug. +potato/potato_4_2_1,This is a potato. It is an object that is shaped like an oval. It looks to be yellow with some brown or red. This is a mango. A large baking potato. +lemon/lemon_6_2_42,This is a lemon. A yellow lemon. This is a lemon. This is a lemon. It's a lemon. +water_bottle/water_bottle_10_1_21,This is an empty water bottle. A pink portable water bottle with a pink straw top. a pink colored sippy bottle drink This is a drink container. The object is a red and pink reusable water bottle with a straw. +bowl/bowl_4_4_18,A coffee mug. It's a bowl. This is a bowl. This is a bowl. Normally used for soups or deserts, it is part of a table setting. This is an all-white bowl. This is a white bowl. This is a white ceramic bowl This is a plain white bowl +rubber_eraser/rubber_eraser_1_1_31,It's a white pencil eraser with a white and blue cardboard wrapper. This looks to be an earaser. used to erase pencil. this is a pill organizer +garlic/garlic_5_1_169,A small red potato. A red potato. +stapler/stapler_3_4_195,This is a stapler. This is a stapler. It's a black Swingline stapler. This is a stapler. This stapler is used in a business setting, for attaching papers. +toothpaste/toothpaste_3_1_211,This is a tube of toothpaste. A tube of toothpaste. It's a tube of toothpaste. This is a tube of toothpaste. It is a plastic tube. It is mostly white with various hues of blue along the label. +food_bag/food_bag_2_4_278,A package of cookies. a bag of cookies This is a package of cake mix. This is a package of food. +food_box/food_box_12_4_71,This is a box of a food product. This is a box of crackers. A box of cookies It is a long rectangular cardboard box with some blue. There is a picture of some food on it, which I think is crackers. This is a box of crackers. This is a box of crackers. The above is a box of crackers. This is a box of crackers. +binder/binder_1_1_81,This is a three-ring binder. This holds paper together by the rings between the covers. This is a red binder. This is a red folder. A school folder. +food_jar/food_jar_2_4_31,A jar of jelly. This is a jar of jelly. Food Jar is used to keep food items. This is a jar of marmalade. This is a jar of food. This appears to be jelly, a fruity food that's ready to eat. +instant_noodles/instant_noodles_4_4_141,This is a package of food. A package of Ramen noodles. This is a package of Ramen soup mix. This is a pack of ramen. It's a packet of instant noodles. The package is mostly red. Instant Noodles are a staple food in many cultures. This is a package of food. It has Japanese writing on it. That is a bag of soup mix. +food_cup/food_cup_5_4_70,This is either a container of yogurt or a small container of half and half. Food is inside of this. This is a container of yogurt. A container of yogurt. This is a thing of creamer for coffee. +garlic/garlic_1_4_168,This is a clove of garlic. This is a bulb of garlic. A clove of garlic. This is a bulb of garlic, used for cooking This is a broken garlic head. +shampoo/shampoo_2_4_267,A plastic bottle that may be shampoo. It's a bottle of conditioner. The liquid inside is white. This is a bottle of shampoo. This is a bottle of shampoo or conditioner. +tomato/tomato_3_1_24,This is a tomato. This is a tomato. A red tomato. a ripened roma tomato This is a tomato. +food_box/food_box_2_2_176,This is a box of Zatarrain's rice. This is a box of Zatarain's yellow rice. a box of rice A box of rice. Looks like Zatarrans brand of rice pilaf. A box of yellow rice. +flashlight/flashlight_1_2_23,This is a device called a flashlight. Powered by batteries, it produced visible light. A black flashlight. This is a black flashlight. This is a flashlight. This is a flashlight. A black flashlight. This is used in the dark to light up a small area when you aim it and turn on the switch. This particular one is black. this is a black flashlight +food_can/food_can_2_1_251,It is a can of Campbell's Chicken Noodle Soup. It is red and white. This is a can of soup. A can of soup. This is an unopened can of Campbell's chicken noddle soup. It has a flip tab. The soup is in a can. The brand of the chicken noodle soup is Campbell's. +tomato/tomato_1_4_101,A red tomato. RED AND ROUND TOMATOE This is a plum tomato. This is a red tomato. This is a tomato. +potato/potato_3_1_188,It's a yellow potato. This is a potato. It is a good size for a baked potato. A medium sized potato. A potato. This is a potato. +notebook/notebook_3_2_221,This is a spiral bound notebook. This is a notebook with paper. This is a notebook or drawing pad with neon green tie dye on the cover. This is a spiral bound notebook. This pad of paper is held together by the wire spiral at one side. A writing notebook. +lemon/lemon_3_4_60,This is a lemon. This is a lemon. This is a yellow lemon. It's a lemon. This is a yellow lemon. They are sour. +food_box/food_box_1_2_4,It's a box of sugar substitute. It's red and white with a green stripe. This is a box of sugar sweetner. A package of sugar substitute. This is a box containing a food product, possibly a tea mix. This is a box of white fine granulated sugar. +garlic/garlic_2_2_152,Fresh unpeeled garlic. A clove of garlic. This looks like a head of garlic. This is a bulb of garlic. This is a bulb of garlic. +marker/marker_4_2_85,This is a green marker. This is a flashlight used to se in the dark. This is a pen. A magic marker. It's a green marker. +tomato/tomato_2_2_82,A red tomato. It's a red tomato. It's a fruit. This is a cherry tomato. +marker/marker_1_2_192,A magic marker. This is a dry erase marker that is used on white boards. This is a red dry erase marker. This is a red marker. This is a glue pen. +instant_noodles/instant_noodles_4_4_160,This is a package of snack food. Humans eat snack foods as part of their diet. It's a packet of instant noodles. It's mostly red. This is a package of food. A package of noodles. That is ramen soup mix. This is a package of instant ramen This is a plastic package of food. There is Japanese writing on it. +lightbulb/lightbulb_2_2_61,This is a light bulb. This is a light bulb. Light bulbs are used in residential fixtures. This is a lightbulb. A light bulb. +notebook/notebook_4_2_21,It's a blue spiral bound notebook. The object is a blue notebook with a 70 in the bottom right. A writing notebook. This is a blue spiral bound notebook. This is a spiral bound notebook. +cap/cap_2_1_50,It's a woodland camouflage baseball hat. It's green, tan, brown, and black. This is a camouflage hat. This is a baseball cap in camo print. This is a camouflage hat. An army hat. +garlic/garlic_2_2_120,a bulb of garlic This is garlic. This is a bulb of garlic. A clove of garlic. It's a head of garlic. +coffee_mug/coffee_mug_7_1_1,a blue coffee mug This is a blue coffee mug. A coffee mug. This is a mug. This is a ceramic cup. It is blue on the outside and white inside. +keyboard/keyboard_3_2_136,It is a black plastic keyboard. It is rectangular with details painted white. This is a computer keyboard. It's an extended black computer keyboard. The object is a long black keyboard. A computer keyboard. +glue_stick/glue_stick_2_1_148,a thing of lip bulm. A sphere canister that has a white top. This is a glue stick. +glue_stick/glue_stick_5_1_49,A tube of glue. This is a glue stick. +food_box/food_box_10_1_130,This is a box of food, maybe pancake mix. A box of some food. It could be cereal or cookies This is a box of crackers. A box of crackers. +notebook/notebook_2_4_217,This is a notepad with lined blank paper. A writing notebook. This is a spiral notebook. It has 70 pages of blank paper. A student would use a notebook like this. This is a spiral bound notebook. This pad of paper is held together by the wire spiral at one side. This is a spiral bound notebook. A yellow notebook sits here. This is a 70 page yellow notebook. +cap/cap_1_4_131,This is a white baseball cap with black pin stripes and a W logo. This item is a hat. It is white with vertical black stripes. It has a logo embossed on it. It's a white baseball hat with black stripes. A baseball cap. This is a white cap with black lines runnig down it. This is a baseball type cap. The cap is white with blue stripes. +food_bag/food_bag_7_1_88,This is a bag of chips. This is a bag of chips. A bag of chips. A pack of chips like snack +rubber_eraser/rubber_eraser_3_4_105,This is a pink eraser. This is an eraser. It is a pink rectangular rubber eraser. A pencil eraser. This is a big pink eraser. That is a pink eraser. This is a pink eraser +water_bottle/water_bottle_9_2_156,This is a water bottle. It's a clear purple water bottle with a opaque purple lid. It says BPA Free oni t. This is a blue reusable water bottle. This is a drinking container. This is a reusable cup. It is BPA free. +mushroom/mushroom_1_4_155,A clove of garlic. A mushroom that might have some green mold on the backside Something that looks like ginger +marker/marker_6_1_51,This is a pen. It's a black pen with blue grips. This is an ink pen. This is a pen. +toothbrush/toothbrush_2_2_185,It's a white and lime green toothbrush. This is a toothbrush. A toothbrush. a light green toothbrush This is a toothbrush. +mushroom/mushroom_3_1_12,The object is a large white bone. +water_bottle/water_bottle_9_2_218,This is a purple water bottle. A plastic sipping water bottle with a blue cap A plastic water bottle. This is a purple clear water bottle. The object is a purple drink container with a lid. +bowl/bowl_2_2_10,This object is a bowl that you use to eat food out of. The object can be eaten out of and has a large hole in ints center. a bowl This is a glass bowl used to hold liquid foods. An empty dinner bowl. +cap/cap_3_2_182,This is a black baseball cap with an image of a bulldog on the front. A black hat with a picture of a bulldog on the front of it. This is a black baseball cap. It says Bulldog and has a picture of a bulldog on it. A hat with a bulldog graphic design, sitting atop a stool. A bulldogs baseball cap +marker/marker_9_1_85,This is a marker. This is a yellow highlighter. This is a felt tip marker. A piece of felt under the black cap makes a mark on paper by spreading the ink that is in the tube. A magic marker. a yellow highlighter +pear/pear_4_1_156,It's a brown pear. This is a pear. This is a pear. This is a pear. A pear. +marker/marker_6_1_209,This is a marker. A magic marker. +flashlight/flashlight_2_1_40,This is a flashlight. This is a flash light. It's a red and black flashlight. This electrical battery powered device is called a flashlight. When powered on, it produces light which humans need to see when it's dark. This is a red flashlight. +water_bottle/water_bottle_6_1_191,This is a clear water bottle. This is a bottle of water. It's a bottle of water with a blue cap. This is a bottle of drinking water. A plastic water bottle. +plate/plate_7_2_56,An empty dinner plate. It's a plain white plate. This is a bowl. Normally used for soups or deserts, it is part of a table setting. This is an all-white plate. This is a white plate. That is a paper plate. This is a white plate. a kitchen bowl to hold food +banana/banana_2_1_142,This is a fruit known as bananna. This is a banana that is mostly yellow. This is a banana. This is a banana. A banana on a plate. This is a banana. Here is a banana. +instant_noodles/instant_noodles_5_1_134,A Pack of some asian food This is a package of food. Some preparation is required before this food can be eaten. This is a package of Ramen soup. A package of Ramen noodles. This is a package of food. +soda_can/soda_can_1_2_174,This is a can of Pepsi. It's a can of Pepsi. It is mostly blue with a Pepsi logo. A can of Pepsi. a can of pepsi this is a can of Pepsi it is a carbonated drink. +tomato/tomato_5_4_15,This is a tomato. This is a red ball or a tomato. A cherry tomato This is a red tomato.; It is used in many foods. A red tomato. +food_box/food_box_12_4_139,A box of some snacks which looks like cookies This is a box of crackers. Pack of cookies. This is a box of crackers. A box of crackers. This is a box of wheat crackers. This shows one packet of junk food and it is a pejorative term for food containing a large number of calories from sugar or fat with little. This is a box of salted crackers +scissors/scissors_4_1_185,Scissors with a yellow handle. This is a pair of scissors. This is a pair of scissors. This is a pair of scissors. This is a pair of scissors, the handle is grey with yellow accents. +garlic/garlic_7_4_238,This looks like a couple bars of soap. +dry_battery/dry_battery_4_2_79,A size C or D battery. The battery is black and copper. This is a battery. It's a large alkaline battery. It's copper and black. This is a battery. This is a D-sized battery An electric battery is a device consisting of one or more electrochemical cells with external connections provided to power electrical devices such as flashlights, smartphones, and electric cars. It's a battery +stapler/stapler_8_1_216,This is a mini stapler. This is a small red stapler. A red stapler. This is a small red stapler. +soda_can/soda_can_3_4_5,This is a can of soda. A can of 7-Up. This is a can of Mountain Dew. This is a can of soda. This is a can of soda. +food_box/food_box_10_1_47,This is a green box that probably contains food. A box of something It is a box of some kind of food. The box is light green with a white panel where the UPC is. A box of crackers. This is a box of snacks. +shampoo/shampoo_2_4_181,This is a bottle of shampoo. This is a white bottle. A bottle of shampoo. +toothpaste/toothpaste_2_4_160,This is a tube of toothpaste. This is a tube of Crest toothpaste. This is a tube of Crest toothpaste. This is a tube of Crest toothpaste used to clean your teeth. A tube of toothpaste. +toothbrush/toothbrush_1_4_25,This is a red and white toothbrush. This is a toothbrush. A red and white toothbrush. The toothbrush is an oral hygiene instrument used to clean the teeth. This is a toothbrush. This is a red and white toothbrush. This toothbrush is red and white. This is a red and white toothbrush. +pear/pear_4_4_85,This is a bosc pear. This is a pear. A pear. a yellow pear with sticker on it This is a brown pear. +lightbulb/lightbulb_1_1_55,This is a energy efficient light bulb. This is a light bulb. When screwed into a powered an electrical light socket, it produces visible light. This is an led light bulb. A light bulb. This is a light bulb. +lightbulb/lightbulb_1_4_176,This is a compact fluorescent lightbulb. A white LED light bulb. This is a light bulb. This is a smart lightbulb. This is a led lightbulb. A florescent light bulb. This is a lightbulb used to light an area That is a light bulb. +coffee_mug/coffee_mug_2_4_80,This is a coffee cup. This is a mug. This is a brown coffee mug. A coffee mug. This is called a cup or a mug. It is commonly used to hold a drink of tea or coffee. +cell_phone/cell_phone_5_1_134,A smartphone. This is a cellphone. This is a cell phone. It's a smartphone. It's silver and black. This is a cell phone. +instant_noodles/instant_noodles_8_2_62,This is a package of Ramen. A package of noodles. It is a packet of Ichiban brand instant ramen noodles. The package is white and brown. This is a package of food. +stapler/stapler_4_1_53,The stapler is black. This is a stapler. This is a stapler. A black stapler. This is a black manual stapler. +toothbrush/toothbrush_5_4_82,It's a red and white toothbrush. This is a white and red toothbrush. THIS IS A RED AND WHITE TOOTHBRUSH A red and white toothbrush. This is a tooth brush. +toothpaste/toothpaste_2_1_87,This is a tube of Crest toothpaste. This is a tube of toothpaste. A tube of Crest toothpaste. One tube of Crest toothpaste. Toothpaste is a paste or gel dentifrice used with a toothbrush to clean and maintain the aesthetics and health of teeth. +food_can/food_can_11_4_5,A can of soup. This is a can of soup. a can of food A can of food This is a can of soup. This is a can of food. This is an unopened can with a flip top. The label is red and white. +hand_towel/hand_towel_2_1_24,A folded towel. This is a red towel folded twice into a rectangular shape. Its white tag is visible on one of its edges. This is a red cloth. This is a wash cloth. This is a red towel placed on a white and red plate. +coffee_mug/coffee_mug_7_1_10,This is a cup. It's a blue and white mug. A coffee mug. This is a coffee cup. This is a blue and white mug. +scissors/scissors_3_4_107,This is blue scissors. This is a pair of scissors. Scissors with a blue handle. ` This is a pair of scissors. The object is a pair of blue scissors. +calculator/calculator_2_1_168,this is a calculator This is a calculator. A calculator. This is a calculator used for solving math problems. A black desk calculator with a small flip-up screen. +food_can/food_can_3_1_30,This is a can of a product. A can of soup. This is a can of soup. An aluminum can of some brand of soup. It might be campbell's brand. This is a can of soup. +bell_pepper/bell_pepper_5_2_56,This is a green bell pepper. A green pepper. This is a green pepper. It's a green bell pepper. This is a green pepper. +sponge/sponge_5_2_170,This is a sponge. A kitchen scrubbing sponge. This is a red and blue sponge. This is a sponge. The object is square shaped and soft. +cell_phone/cell_phone_1_1_21,This is a cell phone. This is a gray and black cell phone This is a cell phone. A slim mobile phone This is a cellphone. A smartphone. +toothpaste/toothpaste_2_4_47,A tube of toothpaste. a small tube of crest toothpaste This is a tube of Crest toothpaste. This is a tube of toothpaste. It's a tube of Crest toothpaste with a white and blue label. It is a tube of Crest toothpaste. This is a tube of Crest toothpaste. +pliers/pliers_6_2_25,A pair of pliers. This is a pair of pliers. Here are some pliers with black handles and a metal tip. This is a pair of pliers with blue hand grips. It's a pair of pliers with blue handles. +keyboard/keyboard_1_2_176,This is a keyboard. This is a wireless keyboard. keyboards are used with computers. This is a computer keyboard. It's a flat keyboard. It's a silver computer keyboard with white keys. +pear/pear_3_2_84,A pear. This is a pear. This is a brown pear. +ball/ball_5_2_232,This is a toy football. This is a football. It's an inflatable toy football. It's brown with white stripes. This is a toy football. Toy football with two white lines on the side and orange-brown textures around the ball. +soda_can/soda_can_6_1_138,This is a canned beverage. This is a can of orange soda. A can of soda. A yellow aluminum can of some type of soda drink. That is a can of soda. This is a can of Fanta soda This is an aluminum beverage can. It is yellow. +rubber_eraser/rubber_eraser_2_1_68,Image is too blurry to make out object. This is a blurry image. +apple/apple_5_4_21,A green apple. This is a green apple. This is a green apple. This is a green apple. It's a green apple. +coffee_mug/coffee_mug_8_4_244,An empty coffee mug This is a cup or mug. Most often it is used to hold coffee or tea, a drink humans ingest. It's a white mug with blue stripes on the outside. This is a mug. A coffee mug. +pliers/pliers_2_2_43,A pair of pliers. Pliers are made in various shapes and sizes and for many uses. Some are used for gripping something round like a pipe or rod. This is black pliars. These are a pair of pliers. This is a pair of pliers. +scissors/scissors_2_1_88,This is a pair of scissors. an orange colored scissorsa Scissors with an orange handle. A pair of adult scissors with a bright orange handle. This is a pair of scissors. +dry_battery/dry_battery_6_4_208,This is a battery. These are two batteries. This is a battery. This is a battery. +food_can/food_can_2_2_207,A can of soup. This is a can of Cambell's soup. This is a can of soup. This is a can of soup. It's a can of Campbell's soup. It's red and white. +bell_pepper/bell_pepper_4_1_3,It is a bell pepper that is all red with a thick green stem. It is laying on its side. This is a vegetable called a red pepper. It can be eaten raw or cooked. A red pepper. This is a red bell pepper. This is a red bell pepper. This red bell pepper is on it's side That is a red pepper. This is a red bell pepper laying on its side. +pliers/pliers_1_4_211,These are a pair of pliers. A pair of pliers. This is a pair of pliers. A pair of metal pliers with a dark blue handle. This is a pair of scissors. +instant_noodles/instant_noodles_6_4_2,A package of food. This is a package of food. A package of Ramen noodles. This is a package of food. It's a package of instant ramen noodles. It's mostly yellow. +binder/binder_1_2_113,This is a red cloth. Here is a red binder sitting on top of a white object. A school folder. A large red square that is used to block something else This is a red folder. A red sheet of paper on top of a toilet. +cell_phone/cell_phone_4_2_98,Cellphone is used to communicate other persons. A cell phone. This is a digital camera. It can record pictures for later display or editing on a computer. This is a cellphone. +toothpaste/toothpaste_5_1_142,Toothpaste is a paste or gel dentifrice used with a toothbrush to clean and maintain the aesthetics and health of teeth. This is a tube of Crest toothpaste. A tube of toothpaste. This is a tube of toothpaste. This is a tube of toothpaste. +food_jar/food_jar_2_4_166,This is a jar of jam. This is jelly the best uses is putting it on toast for breakfast. This is a jar of jelly. A jar of jelly. This is a jar of jam or jelly. +stapler/stapler_1_2_162,A black stapler. This is a stapler. This is a black stapler. The stapler is black. This is a stapler. +keyboard/keyboard_4_4_6,A computer keyboard. This is a computer keyboard. This is a black keyboard A black computer keyboard. A keyboard of unknown brand +instant_noodles/instant_noodles_3_2_128,This is ramon noodle soup. This is a package of food. A package of frozen vegetables. This is a bag of frozen vegetables. +scissors/scissors_3_2_192,Scissors with a blue handle. This is a pair of scissors . This is a pair of scissors. This is a pair of scissors with a bright blue handle. This is a pair of scissors with a blud handle used to cut things. +glue_stick/glue_stick_3_1_60,This is a glue stick. A tube of glue. this is a glue stick A gluestick This is a can of spray. +instant_noodles/instant_noodles_8_2_9,This is a package of dry ramen that will need to be prepared before being eaten. The packaging is plastic. A packet of something. It looks like noodles This is a package of food. A plastic bag of processed food of some sort. It is a packet of Ichiban instant ramen noodles. The package is brown and white. Here is a package of food +shampoo/shampoo_1_2_111,This is a body cleanser or hair product. This is a bottle of shampoo or conditioner. A bottle of shampoo. This looks like the back of a bottle of conditioner. I can't read the label but it's shaped like V05. This is a bottle of body wash. +bowl/bowl_4_1_42,a coffee cup This is a white ceramic cereal bowl. This is a white bowl. An empty dinner bowl. This is a ceramic cup. This is a white ceramic bowl. This is a white bowl. It could be used to hold food like cereal, soup, ice cream, for a few examples. This is a white cup of soup or custard +plate/plate_5_1_121,This is a white plate. This is an all-white plate. an empty plate This is a plate. An empty dinner plate. +marker/marker_8_4_55,A magic marker. This is a felt tip marker. A piece of felt under the black cap makes a mark on paper by spreading the ink that is in the tube. It's a red highlighter pen. This is a marker. +coffee_mug/coffee_mug_2_4_105,This is a mug. This is an empty coffee cup that is colored black on the inside. A coffee mug. a dark brown coffee mug. This is a brown mug. +toothpaste/toothpaste_5_1_244,This is a tube of toothpaste. This is a tube of toothpaste. This is toothpaste. It has a minty flavor. A tube of toothpaste. It's a tube of Crest toothpaste. It's green and blue. This tube of toothpaste is mostly blue and green. This is a tube of toothpaste This is a tube of Crest toothpaste. +lemon/lemon_3_4_137,This is a lemon. A yellow lemon. This is a lemon. This is a yellow lemon. The skin is sometimes grated, and the juice inside is extracted for juice or cooking. It is very tart. This is a yellow lemon. It is still showing a bit of green on one end. This is a lemon, and it is a fruit. The lemon is yellow. This is the citrus fruit, lemon This is a yellow lemon. +food_box/food_box_6_2_82,It's a box of Pretzel Thins. It's white and brown with a photo of the pretzels on the front. This is a white box of pretzel thins. This is a box of Pretzel Thins. A box of pretzel thins This is a box of pretzel thins. +stapler/stapler_7_2_1,This is mini blue stapler. This is a small blue stapler. A blue stapler. It's a small blue stapler. +food_jar/food_jar_4_2_175,The object has a top, contains a liquid substance and is made by Ragu. This looks like a jar of Ragu alfredo sauce. This is a jar of Ragu white pasta sauce. A bottle of ragu white pasta sauce This is a sealed 16 ounce glass jar of Original Ragu Alfredo Sauce. +toothpaste/toothpaste_2_2_61,This is a tube of toothpaste. It is a plastic tube of Crest toothpaste. It has a white cap with a blue label. This is a tube of toothpaste. With a small brush, this paste is used to clean a human's teeth. A tube of toothpaste. This is a tube of crest toothpaste. +mushroom/mushroom_3_2_118,A folded towel. +camera/camera_2_2_196,This is a camera. A digital camera. This is a camera. This is a camera. +toothpaste/toothpaste_5_1_189,A tube of toothpaste. There is a tube of toothpaste, Crest brand toothpaste. This is a tube of toothpaste. This is a tube of toothpaste. This is a tube of crest toothpaste. +food_bag/food_bag_6_1_176,This is an unopened bag of baked chips. The bag is red and black. A bag of chips. This is a bag of chips. This package contains snack food. Humans eat snack food as part of their diet. This is a bag of pop chips. +soda_can/soda_can_3_4_130,A can of mountain dew diet drink. This is a can of Mountain Dew. This is a can of Mountain Dew. A can of mountain dew drink A can of Diet Mountain Dew. +plate/plate_5_4_58,This is a saucer. This is a plate. This is a plate. An empty dinner plate. Plate a broad, mainly flat vessel commonly used to serve food. +tomato/tomato_2_2_167,This is a cherry tomato. This is a tomato. This is a tomato. It's a roma tomato. A red tomato. +dry_battery/dry_battery_5_2_131,This is a small battery. a battery This is a battery. This is a battery. An Energizer battery. That is a battery. This is a battery. +binder/binder_2_2_10,This is a binder. This looks like a purple 3 ring binder, I can't read the label, looks like maybe a 1" wide binder for 8.5x11 paper. This is a purple binder. A school folder. This is a binder. +kleenex/kleenex_2_2_205,A box of kleenex. This is a box of tissues. This is a box of tissues. Tissues are thin, absorbent paper cloths used to clean up after nasal malfunctions. This is a box of soft tissues. This is a box of facial tissues. +food_can/food_can_14_2_63,A can of soup. This is a red can of soup. This is a can. This is a can of a food product. This is a can of soup. This is a can of soup or chilli This is a can of food. This is an unopened can with a flip top. +soda_can/soda_can_2_4_122,This looks like a can of 7-Up. A can of 7-Up. This is a 7up Can. It is mainly green. This is a can of 7 Up. This is a clear drink. It is a soda pop. +comb/comb_5_4_30,A black handled hairbrush. This is a hairbrush. This is a hair brush. This is a hair brush. A hair brush. +toothpaste/toothpaste_3_2_179,This is a tube of toothpaste. A tube of ultra bite toothpaste. This is a tube of Ultra brite toothpaste. This is a tube of toothpaste. This is a tube of whitening toothpaste. +water_bottle/water_bottle_7_4_164,This is a water bottle. This is a water bottle with a red label. This is a bottle of water. A plastic water bottle. This is a bottle of water. +comb/comb_3_1_68,Combs are used to teasing the hair. This is a hair brush. This is a hair brush. This is a black hairbrush. A hair brush. +flashlight/flashlight_5_4_48,It is a yellow Duracell flashlight. This is a flashlight. This is a yellow and black colored flashlight used to see in the dark. A yellow flashlight. This is a yellow and black flashlight. +shampoo/shampoo_5_4_248,It's a bottle of shampoo. The liquid inside is pink. This is a Suave shampoo bottle. This is a container of hand soap. A bottle of shampoo. This is liquid soap. +food_bag/food_bag_7_1_189,It's a bag of tortilla chips. It's green with a photo of chips on it. This is a bag of chips. A bag of chips. A Sealed Plastic Bag That Contains Baked Slivered Potato Products This is a bag of tortilla chips. It goes good with salsa. +coffee_mug/coffee_mug_1_1_118,This is a white and red coffee mug. A coffee mug. A mug that has red graphic design. This is a mug. This is a coffee mug. +peach/peach_3_2_234,a peach This is a red apple. This is a piece of fruit. A red apple. This is an apple. one whole red tomato +ball/ball_6_2_66,This is a toy basketball. Balls are used to play ball games. A nerf basketball. This is a basketball. +garlic/garlic_3_4_234,A clove of garlic. This is a bulb of garlic. A whole garlic bulb +peach/peach_3_1_20,This is a piece of fruit. Apples are a fruit. This is a peach. A peach. This is a peach. +ball/ball_7_1_146,This is a soccer ball. This object is a soccer ball. A soccer ball. This is a black and white soccer ball. It's an inflatable toy soccer ball. It's black and white. +food_bag/food_bag_8_4_12,The chip bag is green. They are Sun Chips. This is a bag of chips. This is a bag of Sun Chips. A bag of chips. This is a small bag of French Onion Sun Chips. +lemon/lemon_1_4_103,This is a lemon. Yellow lemon with sticker A yellow lemon. This is a yellow lemon. This is a lemon. It has a sticker on it. +bowl/bowl_3_2_82,This is an all-white bowl. An empty dinner bowl. This is a white bowl. This is a white bowl. Bowls used for storing non-food items. +greens/greens_4_4_80,This is bok choi. This is baby bok choy. There is a green vegetable, perhaps it is artichoke? Kale on a plate. This is green lettuce. +lime/lime_4_1_174,A large lime. This avocado is a green fruit. Some people eat this raw, but it is most often mixed with other foods. This is a lime. This fruit is very sour. This is a lime. This is a green lemon. This is the citrus fruit, lime A lime is a hybrid citrus fruit. This is a dark green lime in front of a red object that the lime is mostly obscuring. The lime is shiny and two toned. +hand_towel/hand_towel_4_2_71,This is a face towel, it is the smallest of towels, mostly use to wash face and some cases clean things. This is a cloth towel. This is a small grey towel. A folded towel. This is a brown towel sitting on a white and red plate. +keyboard/keyboard_2_2_4,This is a black computer keyboard. This is a black computer keyboard. This is a black computer keyboard. This is a computer keyboard. A computer keyboard. +scissors/scissors_4_2_69,It is a picture of a pair of scissors. The handle of the scissors are blue and yellow. Scissors with a blue and yellow handle. This is silver and yellow scissors. This is a pair of scissors. This is a pair of scissors. +calculator/calculator_3_4_169,A nice little pocket calculator with basic functions. This is a calculator. A calculator. It is a calculator. It is flat and rectangular; with many black buttons. The object is a white and black small calculator. +keyboard/keyboard_4_4_56,This is a computer keyboard. This is a computer keyboard. A computer keyboard. It is a black keyboard. It is not connected to a computer. This is a keyboard and it is black +lightbulb/lightbulb_3_1_44,A light bulb. a round white bulb This is a light bulb. This is a non-LED lightbulb. They give off a different kind of light. This is a light bulb. +cereal_box/cereal_box_5_4_35,A white and red rectangular food package. A packet of something A box of crackers. This is a box of food. +soda_can/soda_can_5_4_145,This is a can of soda. A can of Diet Dr. Pepper. Aluminum can of Dr. Pepper which is a type of soda. A can of Diet Dr. Pepper. This is a can of soda. This is a can of Diet Dr. Pepper soda This is a diet dr. pepper. That is a can of Diet Dr. Pepper. +cap/cap_2_4_97,This is a black baseball cap. An army hat. This is a camoflauge baseball cap. This is a baseball cap. It's a camouflage baseball hat. It's green, brown, tan, and black. +food_bag/food_bag_6_2_164,A package of chips. This is a bag of chips. These are pop chips. bag of bbq pop chips A bag of pop chips flavored barbeque. +lemon/lemon_4_4_145,This is a lemon. This is a yellow lemon. This is a lemon. A yellow lemon. It is a yellow lemon that is on its side. +instant_noodles/instant_noodles_1_1_81,This is a package of food. This is a colorful bag of candy. A package of noodles. This is a bag of chips. +food_can/food_can_9_1_87,This is a can. A can of soup. It's a can with a white label and a pink image on it above the nutrition facts. This is a can of soup. This is a tin of paint. +cell_phone/cell_phone_4_1_98,This is a cell phone. It's a white and black flip phone. A flip phone with a white base and a black top This is a mobile phone. +banana/banana_1_4_9,A banana on a plate. A yellow banana laying on a white object This is a banana. This is a yellow banana. This is a yellow banana. +soda_can/soda_can_4_1_104,A can of some soda This is a can of soda. This is a can of soda. A can of Coke. +cap/cap_3_2_82,a black cap This is a black ball cap. This is a black baseball cap. A baseball cap. It's a black baseball cap. +sponge/sponge_3_2_188,This is a sponge. This is a kitchen sponge. A kitchen scrubbing sponge. This is a sponge. A blue cleaning sponge. +tomato/tomato_6_4_93,A red tomato. This is a tomatoe. They are tasty. This is a sweet fruit called a tomato. It can be eaten raw or cooked. This is a tomato. This is a tomato. +cereal_box/cereal_box_2_4_33,This is a box of food, probably cereal. This is a picture of a box of cereal. Cereal is a delicious breakfast treat. This is a box holding food. Some preparation is required before this food can be eaten. +toothbrush/toothbrush_1_1_114,This is a toothbrush. A red and white toothbrush It's a red and white toothbrush. A red and white toothbrush. This is a red and white toothbrush. +pliers/pliers_5_4_49,This is a pair of pliers. This is a plier. This is a tool that is used to hold wires together. This is a pair of pliers. This is a pair of pliers. +lime/lime_4_1_15,A green lime. This is a lime. This is a fruit called a lime. It can be eaten raw or cooked. This is a lime. This is a green lemon. This is the citrus fruit, lime Lime is a hybrid citrus fruit. This is a green lime. +food_box/food_box_11_4_106,This is a red box of cheez-it's. This snack food is cheese flavored. Humans eat snack food as part of their diet. This is a box of Cheez-Its. A box of Cheez-It. This looks like the side of a box of Cheez-Its. This is a box of Cheez-It snacks This is a box of cheez-its. That is a box of Cheez-It crackers. +soda_can/soda_can_6_4_163,One can of Welchs juice. Orange flavor. It's a can of Welch's lemonade. The can is yellow. This is a can of soda. A can of Welch's soda. This is a can of juice. +tomato/tomato_7_1_9,It's a red tomato. A small red tomato. This is a tomato. This is a tomato. This is a tomato. This is a tomato That is a red tomato. +dry_battery/dry_battery_1_4_126,a battery This is a 9 volt battery. This is a battery. This is a 9 volt battery. +food_can/food_can_11_2_192,This is a can of Campbell's soup. This is a can filled with food you would eat if you had a cold. A metal can of soup. This is a can of soup. A can of soup. +orange/orange_4_4_53,This is an orange. this is a orange. It's an orange which is mostly orange in color but slightly green. This is a lemon. An orange. This is an orange. This is the citrus fruit orange It is an unpeeled orange. +food_can/food_can_7_4_267,AN ALUMINUM CAN WITH EASY OPEN TOP WHITE LABEL A can of soup. This is a can of soup. This is a can of food. +food_bag/food_bag_7_1_128,This is a green bag of chips. This is a bag of chips. A bag of chips. This is a bag of chips. Potato chips are a delicious after dinner snack. this is a bag of potato chips. This is a bag of potato chips. The bag is green. This is a bag of chips. It looks like they are kettle chips. +onion/onion_5_4_180,A purple onion. +food_can/food_can_9_4_4,A can of soup. This is a can. this looks like a can of food.this could be liquid or solid food in a can. This is a can of soup. It's a can of Spaghettios with a red and white label. +tomato/tomato_2_1_141,A red tomato. This is a plum tomato. It's a roma tomato. A ripe cherry tomato. This is a cherry tomato. +peach/peach_3_2_198,This is a peach. This is a piece of fruit. It's a peach. It's mostly pink. A peach. this is a fruit. known as a peach. +food_cup/food_cup_4_2_164,This is a container of Chobani yogurt. A container of yogurt. This is a container of greek yogurt. This is a container of Chobani yogurt. This is a container of food, probably yogurt. +food_bag/food_bag_8_1_169,This is a bag of chips. A bag of Sun chips. This is a bag of chips. The object is a green bag of sun chips. This is a bag of Sun Chips. +sponge/sponge_4_2_11,This is a blue sponge. This is a sponge. This is a purple sponge. This is a purple sponge. A kitchen scrubbing sponge. +pitcher/pitcher_3_4_122,This is a pitcher. This is a green ceramic pitcher. This is a pitcher for liquid pouring. A hand holds the handle, then tips the fluid out. A green vase. This is a green water vase. +marker/marker_2_1_201,It's a green Expo dry erase marker. A magic marker. This is a green expo marker. A green Expo dry erase marker. This is a green dry erase marker. +food_bag/food_bag_7_4_122,A bag of chips. A packet of some snacks This is a bag of chips. A bag of chips. This bag of chips is Target's house brand, Archer Farms. This is a bag of potato chips. +marker/marker_2_4_64,This is a green dry erase marker. Green colored marker with green cap and green label with a white base. It's a green Expo dry erase marker. This is a glue pen. +bowl/bowl_1_2_170,This is a red decorative bowl, with green and yellow markings. This is a bowl. This is a red and brown ceramic bowl. This is a bowl. It holds soups and liquid foods. An empty dinner bowl. +hand_towel/hand_towel_2_2_106,It's a red washcloth. This is a red towel placed on a white and red plate. This is a red napkin. It's folded. A folded towel. a maroon colored wash towel +plate/plate_4_1_218,This is a paper plate. The colors of this plate are beige and cream. An empty plate This is a plate. An empty dinner plate. It's a plate. +instant_noodles/instant_noodles_8_4_112,It's a packet of instant ramen noodles. The brand is Ichiban and the package is white and brown. A rectangular plastic package of food. This is a package of food. A package of noodles. This looks like a package of ramen or some similar dried food. This is Ichiban soup mix. +orange/orange_1_4_232,This is an orange. An orange slightly rotten on the left side an old orange This is a piece of fruit. An orange. +plate/plate_5_4_6,A white, ceramic saucer. This is a bowl of water. White ceramic plate. This is a white plate. An empty dinner plate. +food_box/food_box_5_2_134,It is a box of Market Pantry crackers. It has a red and white design with a green stripe. A box of crackers. A box of classic crackers These are store brand crackers that resemble club crackers. This is a box of crackers. This is a box of classic crackers. This is a box of crackers. +lemon/lemon_4_1_177,This is a lemon. This is a yellow lemon. A yellow lemon. The lemon is a species of small evergreen tree in the flowering plant. This is a lemon. +garlic/garlic_1_2_30,A clove of garlic. This is a bunch of garlic. This is a bulb of garlic. This is a bulb of garlic. +bell_pepper/bell_pepper_3_1_26,This is a red bell pepper. This is a red pepper. This is a red bell pepper. It has a green stem. Red bell peppers have multiple culinary uses. A red pepper. This red bell pepper is upright This is a red bell pepper. This is a red vegetable with a green stem. It stands up on its own. +tomato/tomato_6_1_138,A red tomato. This is a tomato. It's a tomato still on the vine with a produce sticker. This is a ripe tomato. This is a fruit that still is on the vine and is red and round and can be used in salads and on sandwiches. +instant_noodles/instant_noodles_2_2_17,A package of noodles. This is a package of food. This is a package of soup. This is a package of food. Some preparation is required before this food can be eaten. +scissors/scissors_1_2_50,Scissors with a black handle. This is a pair of scissors. This is grey and orange scissors. This is a pair of scissors. These are a pair of scissors. +onion/onion_2_4_70,This is an onion before it gets cut. It's a white onion. This is an onion. A large white onion. +plate/plate_3_4_10,An empty dinner plate. This is a white and blue plate. This is a blue and white plate with a white powder on it. It's a white plate with blue stripes around the edge. This is a bowl. Normally used for soups or deserts, it is part of a table setting. +flashlight/flashlight_3_2_106,A blue flashlight with a black button. This is a plastic flashlight. A blue flashlight. This is a blue flashlight. This is a flashlight for seeing in the dark. +food_can/food_can_13_2_254,This looks like a can of Progresso soup, I can't tell what kind. A can of Progresso soup. This is a food container, commonly called a tin can. It can be easily opened by removing its pop-top lid. This is a can of soup. A can of soup. +scissors/scissors_2_2_150,These are heavy duty scissors with an orange handle. A pair of scissors. The handles are orange. The blades are angled. It's a pair of scissors with an orange handle. This is a pair of scissors. This is a pair of scissors, the kind that have the handles bent upwards a bit to make it easier to cut against a surface (so possibly sewing scissors). The handles are orange. +hand_towel/hand_towel_1_1_160,The object above is very fluffy. The object is a white, comfy pillow. This is a white towel. A folded towel. This is a towel. +toothbrush/toothbrush_5_4_152,This is a tooth brush. When used with toothpaste, it cleans a human's teeth. This is a toothbrush. This is a red and white toothbrush. This is a toothbrush. A white and red toothbrush. +tomato/tomato_2_4_16,This is a grape tomato. This is a plum tomato. This is a grape or plum tomato. This is a grape tomato. It's a roma tomato. +cereal_box/cereal_box_5_4_94,A box of crackers. This is a box containing a food product, most likely cereal. This is a box of cereal. A top view of a box of food +shampoo/shampoo_1_4_263,shampoo bottle is a container that is used to hold shampoo. This is a plastic container. It may dispense shampoo, conditioner, hand lotion, or many other substances. This is a bottle of shampoo or conditioner. This is a bottle of body wash. A bottle of shampoo. +instant_noodles/instant_noodles_6_4_134,This is a package of food. This is a package of soup. This is a package of food. A package of noodles. This is a package of instant ramen This is a bag of food. It is inflatable is an object that can be inflated with a gas. +keyboard/keyboard_3_2_89,This is a mechanical keyboard. This is a black computer keyboard. A computer keyboard. A keyboard that could be used for connecting to any laptop, tablet or monitor, type up all work that needs to be done. This is a computer keyboard. +soda_can/soda_can_1_1_58,A can of Pepsi that is cylindrical and primarily blue in color. The top is silver and the Pepsi name and logo are on the side. This is a can of Pepsi. This is a can of Pepsi. This looks like a can of regular Pepsi cola. A can of Pepsi. +potato/potato_6_1_96,This is possibly a lumpy, deformed potato. A large baking potato. This is a potato. It's a brown russet potato. This is a baking potato. This tuber is a light brown color and it is somewhat lumpy but basically oval in shape. It's a potato of some sort. This is a potato. +hand_towel/hand_towel_2_4_158,This looks like a brown wash cloth. This is a towel placed on a white and red plate. A dinner napkin. This is a cloth napkin. This is a dishcloth Here, a red napkin lies on a plate. It is brown. It is a square shape. +sponge/sponge_4_1_192,This is a purple dish sponge. It's a purple sponge. This is a sponge. This is a sponge. A violet colored sponge +pear/pear_2_1_128,A pear. This is a pear. This is a piece of fruit. This is a fruit called a guava. They are not very popular. a yellow pear +food_box/food_box_8_1_18,This is a box with a product inside. This is a side of a blue box. The box has a nutrition label. This is a box of crackers. This is a blue box of non perishable food, with the nutritional facts label displayed. +lemon/lemon_5_2_106,This is a lemon. A yellow lemon This is a lemon. This is a lemon. The object is a medium sized lemon. +camera/camera_2_4_164,This is an older style camera. This is a black camera. This is a camera. This is a camera. A digital camera. +apple/apple_5_4_116,This is a green apple. This is a granny smith apple. This is a green apple. This is a green apple. A green apple. +lightbulb/lightbulb_1_2_155,This is an lcd lightbulb. A coiled energy efficient light bulb. This is a light bulb. It's a compact fluorescent light bulb. A fluorescent light bulb. +shampoo/shampoo_4_1_331,this is a blue bottle of suave shampoo This is a bottle of shampoo or conditioner. This is a bottle of body wash. It's a bottle of Suave hair conditoner. It's white with a silver cap. This is a body cleanser. +cereal_box/cereal_box_3_2_4,This is a crispy, dry breakfast cereal. It is usually eaten with some amount of milk and with a spoon. This is a box of cereal. A box of cereal. This is a box of Kellogg's cereal. This is a box of special K cereal. +stapler/stapler_5_4_171,A black stapler. THIS IS A BLACK STAPLER This is a stapler. This is a black stapler. This is a stapler. +food_jar/food_jar_3_4_80,A jar of some jam It's a jar filled with something. This is a can. A jar of jelly. This is a jar of gravy. +ball/ball_4_4_146,This is a fake orange and black basketball. This is ball. It looks a little deflated. A nerf basketball. This is a toy basketball. +ball/ball_7_1_178,A soccer ball. This is a soccer ball. This is a soccer ball. In the US this is a soccer ball but the rest of the world calls it a football. Children and adults kick the ball into the net to make a goal. This is a black and white soccer ball. +food_cup/food_cup_4_2_92,This is a container of Chobani yogurt. This is a container of yogurt. A container of yogurt. An unopened Chobani Greek yogurt. It is peach flavored. This is Chobani peach yogurt. +potato/potato_3_2_77,This is a potato. A potato. This is a baked dinner roll. +ball/ball_5_4_31,This is a brown football. This is a football. Shown is a toy football. It's a small football. An inflatable football. +pear/pear_7_4_14,A yellow apple. A golden yellow round piece of fruit. This is an apple. A yellow apple This is a fruit, probably an apple. +pear/pear_7_2_241,It looks like a yellow apple. It could probably be a mango too This is a piece of fruit. It's a fruit. This is an apple which is a type of frit. This is an apple. That is an Asian pear. +mushroom/mushroom_2_2_183,A shitake mushroom This is a mushroom. +kleenex/kleenex_3_1_258,This is a thin box of tissues. A box of kleenex. This is a box of tissues. Tissues are thin, absorbent paper cloths used to clean up after nasal malfunctions. This is a box of facial tissues. This is a box of tissues. +binder/binder_3_1_93,A school folder. +calculator/calculator_4_4_115,This is a calculator. A green calculator. This is a simple digital calculator. Basic math problems can be solved using this electronic device. It's a bright green calculator. This is a calculator. This is a green calculator with white and green buttons. This is a neon green calculator. +potato/potato_5_1_190,This is an unpeeled potato. It has a brown skin. A large baking potato. This is a potato. It is a brown russet potato. This is a potato. +toothpaste/toothpaste_1_4_172,This is Colgate toothpaste. It is a minty flavor. This is a tube of toothpaste. This is a tube of toothpaste. A tube of Colgate toothpaste. This is a tube of Colgate toothpaste. The tube is red, blue, and white. +food_box/food_box_12_1_91,A box of some snacks which looks like cookies A box of crackers. This is a box of cookies or crackers. This is a box of crackers. It's a box of crackers. It's blue and green and has a picture of the crackers on it. +bowl/bowl_5_2_145,This is a white cereal bowl with multiple stripes around the top. This is a bowl. A ceramic bowl. It's an empty bowl. The bowl is white with blue stripes inside. A ceramic bowl. It has stripes. Good for cereal. +pliers/pliers_1_4_137,a pair of pliers These are a pair of pliers. This is a pair of pliers. It's a pair of pliers with a blue handle. A pair of pliers. +glue_stick/glue_stick_2_2_147,A white cylinder shaped glue stick This is a glue stick. It's a tube of lip balm. The glue stick is white. +flashlight/flashlight_4_4_26,This is a flashlight. This is a black flashlight. The object is black. It's a black flashlight. This is a flashlight. +instant_noodles/instant_noodles_5_1_255,A package of Ramen noodles. It's an orange bag of something. This is a package of food. +ball/ball_3_1_8,This is a baseball with red seams. It is round and white. A baseball. This is a baseball. This is a baseball. +ball/ball_2_4_235,It's an inflatable pillow that looks like a soccer ball. A soccer ball. This is a toy soccer ball. A small bean bag toy designed like a soccer ball. This is a soccer ball. +sponge/sponge_9_4_5,A red colored something A small red fabric ball. That is a pink pom pom. +stapler/stapler_2_4_20,This is a stapler. It's a black and grey stapler. This is a stapler. This is a black stapler with a rubber grip. +food_cup/food_cup_2_4_178,This is a container of yogurt. A container of yogurt. A plastic cup of yogurt with a foil lid. This is a white container of yogurt. This is a container of yogurt. It is a bottle with a narrow necked container made of an impermeable shapes and sizes to store liquids like beer . This is a container of flavored yogurt +instant_noodles/instant_noodles_4_1_217,This is a bag of instant asian noodles in a red bag. This is a package of food. This is a package of Ramen noodles. A package of noodles. The object is a bag of cheetos. It is a type of chips. A instant ramen pack That is a bag of ramen soup mix. +food_box/food_box_5_2_242,This is a box of food. This is a box containing a food product. It's a box of crackers. It is red and white with a green stripe. This is a box of crackers. A box of crackers. +cap/cap_1_1_52,This is a baseball cap, it's got well spaced blue or grey pin-stripes on a white background. A white and black striped baseball cap A baseball cap. This is a white and green pinstriped ballcap. This is a white striped baseball cap. +ball/ball_2_1_5,This is a soccor ball. This is a soccer ball. It's an inflatable toy soccer ball. This is a soccer ball. A nerf soccer ball. +camera/camera_3_1_96,A digital camera. This is a black camera. This is a camera. This is a camera. a pocket digital camera +food_bag/food_bag_2_4_135,This is a bag of teddy bear shaped cookies. This is a bag of Teddy Bear cookies. The object is a package of cookies. The package is white with a red top. This is a bag of cookies. A package of cookies. This is a bag of cookies. This is a bag of teddy bear cookies A medium sized bag of cookies. +apple/apple_4_1_185,This is a piece of fruit known as an apple. This is a yellow apple. This is an apple. This is a golden delicious apple. A yellow apple. +cell_phone/cell_phone_3_2_98,A cell phone. This is a mobile phone. This is a cellphone. +shampoo/shampoo_6_4_30,It's a bottle of conditioner. The bottle is yellow with a green top. A bottle of shampoo. This is a bottle that likely contains shampoo or another personal grooming product. This is a bottle of soap. +lemon/lemon_6_1_101,This is a yellow lemon. It's a lemon. A yellow lemon. This is a lemon. It is a yellow lemon. +food_bag/food_bag_4_4_217,This is a bag of mini oreos. A package of Mini Oreos. It's a blue bag of Mini Oreos with yellow and white text. This is a snack size bag of mini oreo cookies. This is a bag of Mini Oreo cookies. +toothbrush/toothbrush_3_4_106,a light blue colored tooth brush This is a tooth brush. This is a toothbrush. This is a toothbrush. This is a light green and white toothbrush. This is a light green toothbrush. The toothbrush is an oral hygiene instrument used to clean the teeth, gums, and tongue. That is a blue and white toothbrush. +orange/orange_1_1_175,This is a sweet orange. This is a fruit with an orange skin. When broken open, the inside is gooey and there are many seeds. This is an orange. spherical orange fruit It's an orange. +food_box/food_box_6_4_122,This is a box of food. Thiis a box of Pretzel Thins. This is an unopened box of Pretzel thins. It is a box of Pretzel Thins. It is a small white box. A box of pretzels. +sponge/sponge_12_1_140,a blue colored something in round shape A kitchen sponge. It's a blue dish scrubber. +kleenex/kleenex_1_2_146,A box of kleenex. This is a box filled with soft tissues that are used when you have a cold. This is a square box of tissues This is a box of tissues. This is a box of facial tissue. +garlic/garlic_7_4_87,This is a clove of garlic. This is a garlic clove. This is a bulb of fresh garlic. This is a bulb of garlic. +camera/camera_3_4_128,This is a digital camera. It can record pictures for later display or editing on a computer. This is a digital camera. This is a black camera. This is a camera. A digital camera. +food_jar/food_jar_2_1_133,Jar of jelly. Jar of orange marmalade. This is jar of jelly. This is a jar of jam or jelly. A jar of jelly. This is a jar of jam. +calculator/calculator_2_1_48,This is a calculator. A calculator. This is a simple digital calculator. Basic math problems can be solved using this electronic device. The calculator is black with gray and yellow buttons. This 10-key calculator is solar powered. It is used to calculate numeric equations for example your check book. +food_can/food_can_4_2_252,This is a can of condensed milk. It's used for baking. Food Can is used to store or keep food items. This is a can of milk. This is a can of soup. +food_can/food_can_12_2_119,A can of vegetables. A can of food. It is a can white a predominantly white label. There is some green on it and a lot of text. A can of soup. This is a can. This is a can of soup. +greens/greens_2_2_12,Green leaf lettuce on a plate. This is lettuce. This is fresh kale. This is green lettuce. +ball/ball_2_2_75,This is a soccer ball, it is not as hard as a basketball although has the same shape, just different color and is used with feet and not hands. A shrunken lack and white football This is a soccer ball. This is a mini soccer ball. This looks like a soccer ball. It almost looks like a blow up soccer ball. That is a squishy toy soccer ball. This is a hackesack that looks like a soccerball +pear/pear_2_4_64,A green ripe pear. A green pear. A bartlett pear. Pears are a delicious fruit. This is a pear. A yellow pear. It is a green pear. It is green and has some yellow bruises on it. Pear is a tree. Pears, the fruit, are used to make medicine. +sponge/sponge_7_2_150,It is a yellow sponge with a green scrubbing surface. A kitchen sponge. This is a squeegee. This is a green and yellow sponge. A yellow sponge with a green top layer that is rougher and more abrasive for scrubbing. This is a sponge used for cleaning dishes A sponge is a tool or cleaning aid made of soft, porous material. This is a yellow and green sponge. +keyboard/keyboard_4_2_51,A computer keyboard. This is a computer keyboard. This is a black computer keyboard. This is a black keyboard, facing backwards, on some sort of pedastal. It's a black computer keyboard with a special key row and a numeric pad. +sponge/sponge_2_4_103,It is a green object that is rectangular. It looks like a sponge. This looks like a lime green colored rectangular sponge. It's a light green sponge. A kitchen sponge. This is a sponge. +instant_noodles/instant_noodles_2_4_197,This is a package of food. This is a package of soup A package of noodles. A package of ramen noodles. This is a packet of ramen noodles. +potato/potato_1_4_101,It's a red potato. This is a red potato. This is a brown ball. +greens/greens_4_2_247,This is baby bok choy. Looks like a corn husk of a leek? Here is a picture of some green vegetables. The vegetables are in an interesting shape like a cross. It's a green vegetable. +bell_pepper/bell_pepper_3_4_10,This is a red bell pepper. This is a red bell pepper. This is a red pepper. Bright red vegetable spherical in shape. Vibrant green stem protruding from the center. A red pepper. +flashlight/flashlight_4_4_167,This is a long, thin, black flashlight. The object is a medium sized black flashlight. A black flashlight. This is a black flashlight. A black colored flash light +pear/pear_7_2_168,It is an apple, that I think is a darker yellow. It is round. This is an asian pear. An apple. This is a piece of fruit. +food_jar/food_jar_6_1_135,This a small glass jar of food. This is a jar of food. A jar of jelly. This is a jar of jelly. a jar of some jam like thing +marker/marker_5_2_167,This is a pen. A magic marker. This is a pen. It's a blue marker. A blue colored pen +cereal_box/cereal_box_1_2_45,Cereal is a delicious breakfast offering. The object is a box of cereal. The box is yellow and orange. This looks like the back of a cereal box. I can't see the brand but it looks like some sort of flake cereal like corn flakes. A package of fiber rich cereal. Here is an unopened box of crunchy cereal. +bowl/bowl_1_4_62,An empty dinner bowl. a red bowl This is a red and black ceramic bowl. This is a pottery bowl. +bowl/bowl_6_1_116,This is a blue plastic serving bowl with flowered printed on the inside It's a bowl which is blue outside and mostly white inside, with some blue, yellow, and green floral patterns inside. There is also a sticker on the bowl. It is a round bowl bowl with blue on the outside. The inside is white with a blue, yellow and green shapes painted along the rim. This is a blue bowl. An empty dinner bowl. +instant_noodles/instant_noodles_2_1_194,This is a package of food, possibly ramen. A package of Ramen noodles. This is a package of Ramen noodles. This is a pack of ramen. It's a package of instant ramen noodles. It has a white and pink package. +soda_can/soda_can_4_4_113,This is an open can of soda. An black aluminum beverage can. some brand of carbonated drink in a black can This is an open can of soda. The object is a black and red can of soda. It looks like a coke zero. +greens/greens_1_1_175,Green leaf lettuce on a plate. It's some green vegetables. This is a bundle of lettuce. This green leafy mass looks to be a vegetable. It's either celery or broccoli. This is green lettuce. This is lettuce. This is some green lettuce This is a bundle of greens used for cooking +coffee_mug/coffee_mug_8_4_234,It's an empty mug. The mug is white with blue stripes. This is a coffee cup used to drink coffee. this is coffe mug This is a coffee mug. This is a white and black mug. +notebook/notebook_3_1_177,This is a notebook. A spiral bound notebook with a white and green cover. This is a spiral bound notebook. This is a notebook. A writing notebook. +dry_battery/dry_battery_6_2_150,This is a battery. This is a battery. It's a large alkaline battery. It's silver, black, and red. This is a battery. This is a battery used for powering small personal electonics. +lightbulb/lightbulb_3_2_164,This is a lightbulb. A light bulb. It's a lightbulb. This is a light bulb. It is a very round lightbulb. The glass part is white, while the part that screws in is gold. +ball/ball_1_1_282,A football. a football This is a toy football. This is a football. +pliers/pliers_1_1_142,This is a plier. This is a pair of pliers. A cutting player It is a set of pliers. The handles are blue and the rest is made of metal. This is a pair of pliers. These are pliers. The above are plyers used as a tool. These are pliers with a blue handle. +toothbrush/toothbrush_2_4_5,This is a tooth brush. When used with toothpaste, it cleans a human's teeth. This is a toothbrush. This is a green and white toothbrush. A toothbrush. This is a toothbrush used for brushing your teeth. +flashlight/flashlight_2_1_111,A red flashlight. This is a red flashlight. A torch is a stick with combustible material at one end, which is ignited and used as a light source. This is a red flashlight. This is a device called a flashlight. Powered by batteries, it produced visible light. +soda_can/soda_can_3_2_155,This is a can of Mountain Dew. A can of 7-Up This is a cold can of soda. This is a can of soda. It's a can of soda with a green label. soda can is a metal container designed to hold a fixed portion of liquid such as carbonated soft drinks, alcoholic drinks, fruit juices, teas, herbal teas, energy drinks, etc. This is an aluminum drink can that is unopened. That is a can of soda. +calculator/calculator_5_4_43,This is a calculator. It is a desk calculator. The buttons on it are large. This is a calculator. This is a grey calculator. A calculator. This is a calculator sued to solve math problems. +pliers/pliers_4_2_15,This is a pair of pliers. The object is a pair of pliers with a brown handle. This is a pair of pliers. A pair of pliers. This is a black handled pliars. This is a pair of pliars, used to grip small things This is a pair of pliers with brown handles. These are pliers. +garlic/garlic_6_4_237,White unpeeled garlic. It's a head of garlic. This is a clove of garlic. This is a bulb of garlic. +apple/apple_4_2_218,This is an apple. This is an apple. A yellow apple. a golden delicious apple This is a yellow apple. +ball/ball_6_2_7,This is a basketball. This is a pretend orange and black basketball. a basketball shaped toy This looks like a basketball. A deflatable basketball. A nerf basketball. +garlic/garlic_7_2_217,A clove of garlic. This is a clove of garlic. This is a bulb of garlic. A clove of garlic. This is a garlic clove. You peel off the papery white covering before you cut it up and cook it. +pliers/pliers_2_1_120,It is a pair of pliers with blue grips. This is a pair of pliers. A pair of pliers. This is a pair of pliers. These are pliers. The handles are black. +toothbrush/toothbrush_4_2_156,A white and purple toothbrush. PURPLE AND WHITE IT IS LONG WITH BRISTLES This is a purple and white toothbrush. This is a white and purple toothbrush. This is a toothbrush. +kleenex/kleenex_4_2_242,It's a box of Kleenex with a blue design on it. This is an open box of facial tissues. A gray rectangular cardboard box of tissue. A box of kleenex. This is a box of facial tissue. +pliers/pliers_6_1_14,This is a pair of pliers. These are scissors. This is black pliars. It's a pair of pliers with black handles. This is a set of pliers. They are a common tool +stapler/stapler_5_4_106,It's a black stapler. This is a stapler. This is a stapler. This is a stapler. +ball/ball_3_4_202,A small bean bag toy designed like a baseball. A baseball. This looks kind of like a baseball, it is white and has the red stitch markings, but it's squished and not really spherical, and it's shiny like it's covered in plastic. This is a toy baseball. This is a baseball. +food_can/food_can_3_2_179,This is a can of soup. This is a can of soup. This is a can of soup. A can of soup. It's a can of evaporated milk. It's red and white with a picture of pie on it. +coffee_mug/coffee_mug_6_2_136,A coffee mug. It's a yellow mug. This is a coffee cup. It's a teacup. This is a mug. +food_can/food_can_8_4_142,A can of Rotel tomatoes. This is canned food of some kind. This is a can. This is a canned good. This is a can of food. +bowl/bowl_2_1_114,This is a bowl. Normally used for soups or deserts, it is part of a table setting. This is a green bowl. It's a light blue bowl with a design around the rim. This is a ceramic bowl. An empty dinner bowl. That is a bowl. This is an ornate bowl This is a light green ceramic bowl with brown edging around the top. +pear/pear_8_4_138,This is an apple. This is an apple. Pears are a delicious fruit. This is a apple. A yellow apple. +food_bag/food_bag_1_1_221,It's a bag of snacks. It's light blue and white. The object is a bag of chips. The bag is white with brown and orange labels. A bag of chips. This is an unopened bag of True Delights crisps. This is a bag of chips. +bowl/bowl_5_4_204,It's a white bowl with black stripes around the edge. This is a white ceramic bowl with stripes at the top. This is a bowl. This is a bowl. An empty dinner bowl. +pear/pear_2_2_16,a fruit which looks like pear The object is a green and red apple. The apple has a sticker on it. This is an apple. An apple. It's a brown and green pear with a sticker on it. +glue_stick/glue_stick_4_2_151,a gluestick with red top A tube of glue. This is a glue stick. +marker/marker_3_2_110,It is a dry erase marker. It is shaped like a long tube, with white and black. This is a black dry erase marker. It's a black Expo dry erase marker. The object is a black Expo marker. A magic marker. +kleenex/kleenex_5_2_201,A pink and white box of kleenez A paper box that has a plastic lid opening, similar to a tissue papper. This is a box of facial tissue. A box of tissue paper that is soft used to blow your nose. This is a box of Kleenex. +dry_battery/dry_battery_3_4_71,This is a battery. This is a battery. +onion/onion_4_2_44,This is an onion. A yellow onion This is an onion. A white onion. This is a white onion. +onion/onion_6_4_12,This is a red onion. A purple onion. This appears to be a red apple. It looks over ripe. It is dark red. This is an onion. Here lies a red onion. +coffee_mug/coffee_mug_5_4_123,This is a white mug. This object is a white coffee cup. It has a curved handle. It's an empty white mug. A coffee mug. This is a white mug This is a white ceramic mug. This mug has a thin rim to drink from and has a very smooth surface. +food_cup/food_cup_2_2_74,This is a cup of yogurt. This is a container of yogurt. This is a container of yogurt. A container of yogurt. A can of flavored yogurt. It looks like yoplait and strawberry flavor +water_bottle/water_bottle_4_4_159,This water is flavored. This is a bottle of water. It is a plastic bottle with water inside. It has a blue cap and label. A plastic water bottle. This is a bottle of water. That is a bottle of water. This is a clear bottle of water. +scissors/scissors_2_2_105,This is a pair of scissors. It's a pair of scissors with an orange handle. This is a pair of orange scissors. This is a pair of scissors. These are generic use scissors with orange handles. +soda_can/soda_can_3_2_131,This is a can of Mountain Dew. This is a can filled with a type of lemon/lime soda. A can of Mt. Dew A Mountain Dew green soda that has not been opened A can of soda which looks like dew +lime/lime_4_1_181,This is a lime. This is a lime. It's a green lime. This is a lime. This is a lime. +coffee_mug/coffee_mug_6_4_143,It's a yellow mug with a textured design around the edge. This is a yellow ceramic mug. A coffee mug. an cup with some leftover a green limedeep inside This is a coffee cup. +instant_noodles/instant_noodles_5_4_30,This is a package of food. This is a package of Ramen soup. A package of Ramen noodles. The object is an orange package of noodles. +lightbulb/lightbulb_4_1_19,This is a light bulb. A light bulb removed from its socket A light bulb. This is a lightbulb. The object is a light bulb. +pitcher/pitcher_1_4_17,This object is a little tea kettle for when you make tea. The object has a handle, a hole in its center and a short mouth outlet. A pitcher This is glass pitcher used to pour liquids. A gravy boat. +stapler/stapler_7_2_44,This is a small blue stapler. A small blue stapler. A baby blue stapler, that is half the size of a regular stapler. A stapler +onion/onion_3_2_223,This is a yellow onion. This is an onion. This is an onion. This tasty vegetable has a sharp flavor, and us usually cooked. A white onion. an onion Here is an onion. That is a yellow onion. +camera/camera_2_1_72,It's a black digital camera. This is a camera. This is an electric pencil sharpener. A digital camera. +water_bottle/water_bottle_2_4_127,This is a bottle of water. This is a clear bottle of water. The object is a bottle of water with a blue label and white cap. A plastic water bottle. It is a bottle of water, maybe flavored. +orange/orange_2_2_236,This is an orange. This is a yellow ball. This yellow fruit is a lemon. Usually cooked into other foods, lemon adds a sharp, sour flavor. +keyboard/keyboard_4_2_163,This is a black computer keyboard. This is a computer keyboard. It's a black IBM extended computer keyboard. This is a computer keyboard. A computer keyboard. +pliers/pliers_5_4_196,A pair of pliers. It's a pair of needlenose pilers with a blue handle. This is a tool called needle nose pliers. It is used to grip or manipulate smaller parts. This is blue pliars. This is a pair of pliers. That is hardware. This is a pair of pliers with blue handles. A tool that grabs small wires +instant_noodles/instant_noodles_7_2_113,This is a generic brand of top roman. This is a package of food. It has writing on it. This is a package of food. This is a package of soup. A package of noodles. This is a bag of soup mix. Here is a package of ramen. +plate/plate_6_1_100,Something that looks like a plate or pie crust This is a pie. Baked in an oven, pies are made of many different foods. This is a plate. An empty dinner plate. This is a brown ceramic plate. +binder/binder_3_1_40,This is a black binder. It's a black plastic three ring binder. A school folder. a black folder this is a folder that can be used to put paper in. +soda_can/soda_can_2_4_190,This is a can of 7 Up. This is a can of 7up. A can of soda. It looks like seven up This is a can of 7 UP soda. It's green and yellow with a lemon lime flavor. A can of 7-Up +sponge/sponge_2_1_63,A light green colored sponge This is a green sponge. Green rectangular dish sponge. This is a sponge. A bright green kitchen sponge. This is a green sponge. It is green color scrubber. This is a dish sponge +cap/cap_3_4_33,A baseball cap. This is a black baseball cap. This is a black hat. This is a black baseball cap. This looks like a black baseball cap. I think it says "Bulldog" on the bill. +hand_towel/hand_towel_4_2_170,This is a towel. This is a folded wash cloth. This is a brown cloth. This is a folded wash rag. A folded towel. +greens/greens_1_4_51,A bundle of romaine lettuce with a red twist tie around it. The bunch of lettuce is green. This is lettuce. It's a bunch of salad greens. This is green leaf lettuce. This is a bundle of greens, used in cooking Greens Leaves and leaf-like parts of edible plants when eaten as vegetables or in salads. It's a green vegetable +onion/onion_3_2_59,This is an onion. This is an onion. This is an onion. This tasty vegetable has a sharp flavor, and us usually cooked. A white onion. +coffee_mug/coffee_mug_4_2_11,This is a coffee mug. A coffee mug. This is a white coffee mug. This is a cup. This is a white and blue mug. +ball/ball_5_1_91,This is a football. A football It is an inflatable toy football. It is brown and white. A nerf football. This is a fake football. +glue_stick/glue_stick_4_4_104,This is a can of spray. This is a gluestick. The glue has a red cap. This is a glue stick. A tube of glue. Small cylinder shaped object that is mostly orangey red with a yellow and blue tag in the center +hand_towel/hand_towel_5_2_89,This is a black towel. This is a black towel. This is a black towel. This looks like a black folded blanket. A folded towel. +banana/banana_2_4_195,This is a yellow banana. This is a banana. A banana on a plate. A banana is an edible fruit. This is a banana. This is a banana that is mostly yellow. The banana is yellow but still has some green. This is a yellow banana. +greens/greens_3_2_167,This is baby bok choy. This is bok choi. Lettuce on a plate. A green leafy vegetable +kleenex/kleenex_1_1_86,This is a small square box of tissues. This is a box of tissues. Tissues are thin, absorbent paper cloths used to clean up after nasal malfunctions. This is a box of tissues. A box of kleenex. This is a box of facial tissue. +potato/potato_5_4_120,This is a narrow potato. A brown baking potato. This is a potato. This is a potato. This is a russet baking potato. A potato This is a russet potato, used for cooking That is a potato. +food_can/food_can_12_1_66,This is a can of soup. This is a can. This is a can of soup. A can of soup. This is a can that may contain food. It's commonly called a tin can. +peach/peach_2_2_117,An apple. This is a peach. This is a piece of fruit. It's a white donut peach. It is cream and pink colored. This is a peach donut. +food_can/food_can_3_2_209,The can has pumpkin pie on it. This is a can of pumpkin puree. A can of pumpkin pie mix. It is a can of evaporated milk. It has a picture of pumpkin pie on it. This is a can of soup. +ball/ball_7_2_176,The soccer ball is black and white. This is a soccer ball. This is a soccer ball. A nerf soccer ball. This is a small soccer ball toy. +food_box/food_box_2_1_8,It's a box of Zatarain's Yellow Rice mix. It's red and white. This is a box of Zatarain's yellow rice. A BOX OF ZATARAIN'S YELLOW RICE A box of yellow rice. This is a box of Zatarrain's rice. +ball/ball_3_1_15,This is a plastic toy baseball. This is a baseball. A baseball. Not certain? A plush baseball perhaps? Ball s used in ball games. +garlic/garlic_3_1_39,A clove of garlic. This is a bulb of fresh garlic. A bulb of garlic This is a bulb of garlic. This is garlic. This is a white onion. +food_bag/food_bag_6_2_153,A bag of chips. A bag of Popchips is lying face up on a plate. It is mostly black with white lettering and a picture of the chips on its front. This is a bag of Pop Chips. These are a bag of chips. This is a bag of chips. +dry_battery/dry_battery_1_2_82,This is a battery. It's a nine volt battery. It's gold and black. A battery. This is a battery. This is a battery. +apple/apple_5_4_215,This is a green apple. This is a green apple. A green apple. This is a granny smith apple. The object is a green apple with the sticker still on. +food_cup/food_cup_3_4_252,this is yogurt This is a container of yogurt. A container of yogurt. This looks like a tub of yogurt in an individual size with aluminum foil on top. A plastic packaged cup of yogurt with a peel-off foil lid. +comb/comb_5_2_146,This is a hairbrush. A black hair brush. This is a hair brush. A hair brush with rubber tips. This is a hairbrush. +stapler/stapler_4_2_69,This is a stapler. A black stapler. This is a stapler. It's a black stapler. This is a stapler. +pear/pear_7_4_80,This is an apple. A pear. This is an apple. The object is round, has a stem and is yellow with a hint of red. +dry_battery/dry_battery_6_4_193,This is a battery. This is a D sized battery. A battery This is a battery. A battery. +water_bottle/water_bottle_4_2_34,A plastic water bottle. A bottle of mineral water This is a bottle of flavored water. This is a bottle of water. It's a bottle of water. It has a blue label with a purple stripe on it. It is a bottle of water. It appears to be a flavored variety. This is a bottle of flavored berry water. +lightbulb/lightbulb_2_1_215,A light bulb. This is a light bulb. This is a light bulb that is not plugged into any light. This is a light bulb. It's a light bulb. +lime/lime_2_1_100,This is a lime This appears to be a lime fruit. This is a lime. It's a lime or lemon. It's a lime with a sticker on it. It is mostly green but slightly yellow. +stapler/stapler_6_1_88,A black stapler. This is a stapler. This is a black stapler. This is a black stapler. This is a black stapler. +banana/banana_4_4_11,This is a green banana that is not ready to eat. This is a banana. It's a very green, underripe banana. This is a underripe banana. It is too green still. Green and yellow colored banana or plantain. Curved shape, maybe not ripe yet. +food_bag/food_bag_7_4_163,This is a bag of chips. These are a bag potato chips. A bag of chips. A green bag of chips used for snacking. That is a bag of food. This is a bag of kettle chips This is a bag of snack food. +soda_can/soda_can_2_2_98,This is a can of 7 Up. A can of 7-Up A can of 7up. 7UP is a citrus soda that is popular in the midwest. This is 7 UP soda. It has a lemon lime flavor. +coffee_mug/coffee_mug_1_1_109,A coffee mug. This is a red and white mug. This is a coffee cup. This is a red and white coffee mug. It's a mug with a red and grey label. +food_bag/food_bag_5_1_81,A pack of some chips like snack This bag holds potato chips, a snack food. Humans eat snack foods as part of their diet. It's a bag of Market Pantry potato chips. This is a bag of chips. A bag of chips. +toothpaste/toothpaste_1_2_2,A tube of toothpaste. Toothpaste is a paste or gel dentifrice used with a toothbrush to clean and maintain the aesthetics and health of teeth. This is a tube of Colgate toothpaste. This is toothpaste . This is a tube of Colgate tooth paste. +lime/lime_4_2_249,This is a lime. a green lime A green lime. This is a lime. +banana/banana_2_4_50,This is a banana that is mostly yellow. This is a yellow banana. This is a banana. This is a long banana. a single ripe banana +comb/comb_5_4_150,A hair brush. This is a black hair brush This is a hairbrush. This is a hair brush. It's a black and silver hairbrush with stiff bristles. +bell_pepper/bell_pepper_3_2_80,It is a bell pepper that is all red with a thick green stem. This is a vegetable called a red pepper. It can be eaten raw or cooked. A red pepper. This is a red bell pepper. This is a red bell pepper. This red bell pepper is upright This is a red pepper. This is a red bell pepper sitting upright. +flashlight/flashlight_1_2_136,This is a flashlight. A black flashlight. This is a flashlight. A black flashlight with a handle strap. This is a flashlight. +binder/binder_2_4_91,A purple plastic folder. A school folder. This is a purple folder. It's a purple three ring binder. +cell_phone/cell_phone_3_2_45,This is a cell phone. It features a flip design. This is a closed blue and silver flip phone. Here is a picture of an old cell phone. It is a flip phone. An old flip phone that is small and compact. A flip phone cellphone. +greens/greens_1_2_144,Greens is a leaf vegetable. Green leaf lettuce on a plate. This green leafy mass looks to be a vegetable. It's either celery or a broccoli. This is green leaf lettuce. This is lettuce. +plate/plate_2_4_204,Plate a broad, mainly flat vessel commonly used to serve food. This is a blue and white-colored plate. An empty dinner plate. This is a plate. This is a plate. +sponge/sponge_11_1_79,This is a scrubber used to clean pans and dishes. A kitchen sponge. +peach/peach_2_4_116,An apple. This is a doughnut peach. This is a piece of fruit. This is a piece of fruit. +food_cup/food_cup_2_1_89,A container of yogurt. This is a container of yogurt. This is a single serve yogurt container. A plastic cup of yogurt with a silver foil lid. a single serving cup of frozen yogurt. It looks like yoplait brand +lemon/lemon_5_1_51,This is a yellow lemon. This is a lemon. This is a lemon. A yellow lemon. This is a fresh lemon. +onion/onion_5_4_62,A purple onion. This is a red onion. This is an onion. +pear/pear_4_1_114,This is a pear. A pear. this is a pear a golden pear This is a pear. +cell_phone/cell_phone_1_1_100,This is a silver mobile phone. An old slim style mobile phone This is a mobile phone. A old cell phone used to make calls and text. It is a silver cell phone with a black border around the screen. +onion/onion_6_2_215,This is a red onion. This is an onion. A purple onion. This is a red onion. +food_cup/food_cup_4_2_173,a cup of yogart This is a Chobani peach flavored yogurt. This is a container of food. A container of yogurt. This is a container of Chobani greek yogurt. This is a package of Chobani yogurt. This is a carton of, most likely, yogurt. It appears to be an individual serving. This is a small-sized container of yogurt. It is unopened.`````````````````````````````````````````````````` +peach/peach_1_1_177,This is a peach. This is a red peach. a peach This is a white peach. A peach. +comb/comb_3_4_218,A hair brush. This is a hair brush. It is used to de-tangle a person's hair. This a black hairbrush. It's a black hairbrush with a green stripe. This is a hair brush. +banana/banana_1_1_3,This is a banana. This is a yellow, ripe banana about 6 inches long. A banana on a plate. A very yellow banana. This is a yellow banana. +flashlight/flashlight_4_1_85,This is a flashlight. This is a flashlight. This is black flashlight. It looks strong. A black flashlight. It's a black flashlight with a yellow switch. This object has a handle to fit comfortably in one hand, an on-off switch, and it is black. This is a battery operated flashlight This is a black flashlight with a yellow switch. +binder/binder_1_4_217,This is a red binder. A school folder. This is a binder. This is a red binder used to protect paper. There are metal rings on the inside that when separated, that you put through the holes on notebook paper in order to secure. This is a one inch red binder. It is used to keep loose papers bound together. This is a binder. The binder is red. This is a plastic binder, used to keep paper organized This is a red three ring binder +food_box/food_box_5_4_125,It's a box of crackers. It's red and white with a green stripe. This is a box of food. a box of something This is a box of sugar substitute. +pear/pear_3_4_84,This is a pear. This is a brown pear. A pear. It's a brown and green pear with a produce sticker. This is a pear. +onion/onion_3_2_209,The object is hard, white and round with a point at the top. This looks like an onion, it has a tan skin. This is an onion. a white or yellow onion This is a yellow & brown medium sized onion. +pear/pear_8_4_105,This is an apple. It is a yellow apple. It is round. This is a sweet fruit called a green apple. It can be eaten raw or cooked, or made into apple pie! A yellow apple. This is a yellow apple. +calculator/calculator_4_2_50,This is a simple digital calculator. Basic math problems can be solved using this electronic device. This is a calculator. This is a green calculator. It has small buttons. This is a lime-green calculator. A calculator. +mushroom/mushroom_1_2_145,A clove of garlic. This is a mushroom. This is a mushroom. +sponge/sponge_6_1_156,A kitchen sponge. There is a dish sponge that is yellow on top and pink on the bottom. This is a sponge. This is a sponge. This is a dish sponge. +stapler/stapler_7_4_189,A mini blue stapler. A blue stapler. This is a small blue stapler. +ball/ball_6_1_119,This is an orange and black small squishy ball. This is a basketball. This is a fake orange and black basketball. A ball A children's play-ball. +peach/peach_2_1_187,This is a peach. This is a piece of fruit. This is a doughnut peach. An apple. A peach is a soft, juicy and fleshy stone fruit. +orange/orange_2_4_83,This is a piece of fruit. This is an apple. This is an orange. An orange. +plate/plate_5_2_97,This is an all-white plate. a white plate This is a plate. This is a ceramic plate. An empty dinner plate. That is a white ceramic plate. This is a small ceramic plate. It is white. +tomato/tomato_7_2_147,This is a tomato. This looks like a tomato. It is red. This is a tomato. A red tomato. This is a tomato. +food_can/food_can_6_2_215,A can of soup. This is a red and white can of Campbell's soup. This is a can of food. Some preparation is required before this food can be eaten. This is a can of soup. This is a can of soup. +instant_noodles/instant_noodles_1_2_123,A package of noodles. This is a package of food. This is a pack of ramen. This is a package of Ramen soup. This is a bag of candy. This is soup mix. This is a plastic package of food. There is Japanese writing on it. +flashlight/flashlight_3_1_75,This is a flashlight, it's made of blue plastic with black accents. A blue flash light. This is a blue flashlight. It is a black rim and a black button accenting the blue. This is a flashlight. This is a flashlight that provides light to anything you need to shine light on. +food_can/food_can_12_1_179,A tin can of food. This is a can of soup. This is a can of food. This is a can of food. A can of soup. +greens/greens_2_1_132,This is lettuce. A bundle of fresh parsley. This is a bunch of parsley. This is fresh kale. +food_can/food_can_4_4_52,This is a can of soup. This is a can of food. This is a can of soup. A can of condensed milk. This is a can. +scissors/scissors_1_1_88,Scissors are used for cutting various thin materials, such as paper, cardboard, metal foil, cloth, rope, and wire. This is a pair of scissors. This is a pair of scissors. This is silver and orange scissors. Scissors with a gray handle. +notebook/notebook_1_2_29,It's a spiral bound notebook with a red cover. This is a red single subject notebook. This is a notebook. A writing notebook. This is a notebook with blank paper. +food_can/food_can_9_2_11,It's a can of Spaghettios. It is white and red with cartoon characters on the front. This is a can of soup. A can of Spaghetti O's. A Sealed Tin Cylinder That Is Used To Package Food Products. This is a can of SpaghettiO's. They are a children's pasta in a can. +comb/comb_1_2_32,This is a black brush. A hair brush. A hair brush with a black head and silver handle. The bristles are covered with colored tops. This is a hair brush. This is a hairbrush. +keyboard/keyboard_5_1_113,a computer keypad This is a black computer keyboard. This is a black keyboard. This is a computer keyboard. A computer keyboard. This is a computer keyboard. NAwhole yellow onion with most of outer wrapping removed +rubber_eraser/rubber_eraser_3_4_143,This is an eraser. Eraser is used for removing writing from paper or skin. A pencil eraser. This is an eraser. +kleenex/kleenex_3_4_172,This is a box of tissues. A box of kleenex. This is a box of facial tissue. This is a rectangular box of tissues. +bowl/bowl_3_2_111,This is a white bowl. Plastic bowls are easy to clean. This is a white ceramic bowl. An empty dinner bowl. This is a bowl. +mushroom/mushroom_1_1_17,The object is a old ball. +water_bottle/water_bottle_9_2_233,The water bottle is purple. This is a water container. This is a water bottle. A plastic water bottle. This is a purple reusable water bottle. +marker/marker_9_1_96,This is a yellow highlighter. Marker with yellow body and black cap A magic marker. This is a yellow highlighter. This is a yellow marker with a black cap. +notebook/notebook_2_1_170,This is a yellow-spiraled notebook. A writing notebook. This is a yellow notebook. This is a spiral bound notebook. Note Book is used to wright or drawing purposes. +kleenex/kleenex_4_4_138,This is a box of facial tissue. This is a box of tissues. there is an open box of kleenex brand tissue. A box of kleenex. This is a box of tissues. +lemon/lemon_2_2_201,A yellow lemon. This is a lemon. It is a sour fruit that is used to flavor foods, but is rarely eaten alone. This is a lemon. It's a sour fruit. This is a lemon. This is a yellow lemon. This is the citrus fruit, lemon The lemon is a species of small evergreen tree in the flowering plant family Rutaceae. This is a bright yellow lemon. It is mostly oblong with a nipple on one end. +notebook/notebook_1_2_97,This is a 70 page notebook, college rule, although you can get it in wide rule as well, most people use it for school This is a notebook. This is a red-spiraled notebook. A writing notebook. This is a red spiral bound notebook. +cap/cap_2_2_17,This is a camouflage baseball cap. This is a green and olive camouflage baseball cap. This is a camoflauge ballcap. This is a baseball cap in camo print. An army cap. +mushroom/mushroom_3_4_171,A chicken drumstick. +onion/onion_2_1_237,It's a medium size white onion. This is an onion. A white onion. It is a white onion. It is round. The object is a white onion. +food_can/food_can_1_4_37,This is a can. This is a can of food. A can of condensed milk. This is a can. The can is shiny. +sponge/sponge_7_2_114,A kitchen sponge. a cleaning scrub sponge. This is a sponge. This is a sponge, it's green and yellow. It is used to clean dishes. This is a sponge. +bell_pepper/bell_pepper_6_4_144,A fresh green bell pepper. This is a green pepper. A green bell pepper A green pepper. This is a green bell pepper. +peach/peach_2_4_185,This is a doughnut peach. A peach. A peach that is past ripe. An apple that is part yellow and part light red. This is a piece of fruit. This apple is sitting upright This is an apple. +stapler/stapler_1_4_19,This is a stapler. A black stapler. This is a stapler. It's a black and grey stapler. +shampoo/shampoo_6_1_230,A bottle of shampoo. This is a bottle of shampoo. This is body wash. bottle of lotion This is a bottle with a green lid and yellow bottom that could have lotion in it. +food_box/food_box_7_2_71,This is an unopened box of Wheat Thins. This is a yellow box of Wheat Thins. This is a box of Wheat Thins. A box of Wheat Thins. It is a box of wheat thins. The box has 6 sides and is mostly yellow with some green. +food_box/food_box_2_4_99,This is a box of Zatarrain's rice. This is a box of instant rice. A box of yellow rice. This is a box of rice +pitcher/pitcher_3_1_93,This is a green vase. A green vase. It's a clay vase with a brown green glaze. This is a pitcher. +marker/marker_7_4_54,This is a pink marker with a black cap. This is a highlighter. It's a pink highlighter marker. A purple marker with a black cap This is a pink highlighter. +food_box/food_box_8_2_223,A package of crackers. a blue box and it looks like it may contain cracker snacks This is a box of crackers. This is a box of snack crackers. +lemon/lemon_6_1_90,A lemon This is a lemon. This is a lemon. This is a yellow lemon. A yellow lemon. +marker/marker_1_4_29,a red colored sharpie This is a red expo marker. This is a red dry erase marker. A magic marker. It's a red Expo brand dry erase marker. +coffee_mug/coffee_mug_4_4_165,A coffee mug. This is a mug. This is a coffee cup. This is a white coffee mug that has a blue rim. A white empty cup +banana/banana_1_2_146,This is a banana. This is a yellow banana. A banana on a plate. This is a banana. A small ripe banana. +toothpaste/toothpaste_5_2_187,A tube of toothpaste. This a tube of Crest toothpaste. This is a tube of toothpaste. With a small brush, this paste is used to clean a human's teeth. This is a tube of Crest tooth paste. This is a tube of toothpaste. +pear/pear_3_2_1,This is a pear. This is a brown pear. This is a piece of fruit known as a pear. This red pear is a tasty variety. This is a sweet fruit called a pear. It can be eaten raw or cooked. +shampoo/shampoo_3_1_257,This is a bottle of shampoo. A bottle of something which looks like shampoo It's a bottle of shampoo. The liquid inside is lavender. A bottle of shampoo. This os a bottle of shampoo. +food_bag/food_bag_8_1_67,This is a bag of Sun Chips. It is green. This is a bag of sunchips. A bag full of crunchy food that is flavored. This is a bag of Sun Chips. This is a bag of Sun Chips. +toothbrush/toothbrush_4_1_120,A white and purple toothbrush. This is a tooth brush. This is a tooth brush. When used with toothpaste, it cleans a human's teeth. This is a purple toothbrush. This is a purple and white toothbrush. This is a tooth brush to clean you rteeth The toothbrush is an oral hygiene instrument used to clean the teeth, gums, and tongue. This is a purple and white toothbrush. +kleenex/kleenex_4_2_46,This is a box of tissues. This box holds thin paper tissues. Tissue is used to clean up after sneezes or other nasal malfunctions. This is a box of facial tissue. A box of kleenex. This looks like a box of Kleenex tissues; the box pattern is a sort of grey feathered background. This is a box of tissue used for blowing your nose This is a full box of tissues. That is a box of tissues. +onion/onion_1_1_3,Looks to be one clove of garlic. It's a white onion. This is a mushroom. A white onion. +cereal_box/cereal_box_4_4_176,It's a box of Raisin Bran Crunch. It's mostly blue and purple. A blue cereal box. The cereal is Raisin Bran Crunch. This is a box of Raisin Bran Crunch cereal. This is a box of cereal. This is a box of raisin bran crunch. This is a box of cereal That is a box of Raisin Bran Crunch cereal. +peach/peach_1_2_51,A peach. a peach This is a nectarine. This is a piece of fruit. This is a peach +onion/onion_1_4_191,A small white unpeeled onion. This is an onion. A white onion. +calculator/calculator_3_1_170,This is a calculator. A white caculator with black keys It's a white calculator with black keys. This is a calculator. A calculator. That is a calculator. This is a calculator used for math It is a large white calculator with big button. +toothbrush/toothbrush_4_1_160,LONG AND WITH PURPLE AND WHITE BRISTLES. HANDLE IS LILAC AND WHITE A purple toothbrush. This is a purple and white toothbrush. This is a toothbrush. This is a toothbrush. +kleenex/kleenex_3_1_116,This is a box of tissues. This is a box of tissues. A box of kleenex. This is a box of facial tissue. Tissues can be used to dry tears, or blow your nose. This is a slightly crushed box of tissues This is a box of tissues. This is a box of tissues. It looks like the brand is Kleenex. +toothbrush/toothbrush_2_2_154,A toothbrush. This is a toothbrush The object is a small white and green toothbrush. A white and lime green toothbrush laying face up on a table. This is a toothbrush. +marker/marker_9_4_97,A magic marker. This is a marker for a dry-erase board. this is a green marker. this looks like a hi lighter This is a yellow highlighter. It's a yellow highlighter marker. +lemon/lemon_2_4_50,A yellow lemon. This is a lemon. It's a lemon with a sticker on it. A ripe, yellow lemon. This is a lemon. +lightbulb/lightbulb_3_4_145,This is a light bulb. This is a light bulb. It's a light bulb. A light bulb. This is a lightbulb used to see. +tomato/tomato_3_4_51,This is a tomato. A red tomato. This is a tomato. This is a red tomato with a green stem. This is a tomato. +tomato/tomato_8_2_174,This is a tomato. The tomato is missing its stem. A red tomato. This is a red tomato. The object is large red tomato. This is a tomato. +coffee_mug/coffee_mug_2_4_1,This is a coffee mug. This is a coffee mug. This is a mug. This is a gold colored coffee mug. A coffee mug. +garlic/garlic_4_4_27,A clove of garlic. +kleenex/kleenex_4_4_27,It's a box of Kleenex with grey designs on it. A box of kleenex. This is a box of tissues. A gray rectangular box of tissue. This is a box of facial tissue. +food_bag/food_bag_4_4_105,A package of Mini Oreos. A bag of mini oreos This is a bag of Mini Oreo cookies. A bag or Oreo mini's. The bag is laying flat. This is a bag of mini Oreo cookies. +keyboard/keyboard_5_4_130,This is a black computer keyboard. This is a computer keyboard. Black Dell Keyboard on a white surface. Black keys with white letters and a white base. It's a black and white computer keyboard. The brand is Dell. This is a computer keyboard. +cereal_box/cereal_box_3_4_98,This is a box of Special K breakfast cereal This is a box of cereal. This is a box of Kellogg's cereal. This is Special K cereal. It's healthy for you. A box of cereal. +calculator/calculator_5_4_8,It's a silver calculator with white and grey buttons. This is a calculator. This is a calculator. It helps with math. A calculator. A calculator +sponge/sponge_8_2_99,This is a dish sponge. One side of this dish sponge is blue, and the other is yellow. a blue sponge This is a sponge. A kitchen sponge. It's a sponge. +shampoo/shampoo_4_2_191,It's a white bottle of conditioner with a silver cap. A white plastic bottle with a gray lid. This is a bottle of shampoo or conditioner. A bottle of shampoo. This looks like the back of a shampoo bottle. That is a bottle of shampoo. This is a bottle of shampoo. It is blue with a darker blue lid. +bowl/bowl_3_4_192,This is a white bowl. a bowl of milk served at the table a bowl with water in it This is a bowl. An empty dinner bowl. +marker/marker_4_4_178,A green and black marker. This is an ink pen. A green marker. The marker is green. A magic marker. +onion/onion_1_2_130,It's a white onion. A white onion. a bulb of garlic This is a white onion. This is an onion. This is a white onion. This is a full white onion. +flashlight/flashlight_1_2_5,This is a flashlight. This is a black flashlight with a black cord attached to the bottom. A black flashlight. A torch is a stick with combustible material at one end, which is ignited and used as a light source. This is a black flash light. +hand_towel/hand_towel_1_2_129,A folded towel. This is a white towel. This is a towel. This is a white towel placed on a plate. This is a soft, absorbent cloth called a towel. Towels are used to dry water from people's hands and other items. +notebook/notebook_1_1_168,This is a spiral bound notebook. This is a red-spiraled notebook. This is a red notebook. This notebook contains 70 pages of lined paper. A writing notebook. This is paper notebook used for taking notes in class. This is a red notebook. This is a seventy-page notebook. It is spiral bound and red. +food_bag/food_bag_3_4_103,A bag of Snyder's pretzels. This is a bag of pretzel snaps. It's a bag of Synder's Pretzel Snaps. It's brown and red. This is a bag of pretzels. This is a bag filled with food that is crunchy and salty. +water_bottle/water_bottle_6_1_184,this is a clear water bottle with a blue cap. A plastic water bottle. This is a bottle of water. This is a plastic bottle of water. This is a plastic bottle. It looks to be holding water, but can be re-purposed many times. +food_box/food_box_5_2_41,A box of crackers. This is a box of food ready to be made. This is a box of food. This is a box of crackers. +kleenex/kleenex_2_2_19,This is a box of tissues. It's a box of tissues. It's a box of Kleenex. It has pink designs on it. This is a box of facial tissue. A box of facial tissue or kleenex. +plate/plate_1_4_109,An empty dinner plate. This is a green plate with white paste on it. It's a light yellow plate. +bowl/bowl_6_2_231,A blue and white ceramic bowl with floral designs on inside of bowl. This is a ceramic bowl. The bowl has a floral design. An empty dinner bowl. This is a bowl. This is a kitchen bowl for eating food. +bell_pepper/bell_pepper_2_1_65,This is some sort of yellow fruit or vegetable, it's hard to tell but it might be a lemon. Seems to be some sort of fruit, perhaps a deformed orange? A yellow pepper. +garlic/garlic_6_4_136,This is an onion. This is a head of garlic. +shampoo/shampoo_6_2_205,A bottle of some toiletry. it looks like suave brand The object is a shampoo bottle. It is tropical and the bran is Suave. This is a bottle of body wash. A bottle of shampoo. This is a bottle of shampoo or other hair product. +food_bag/food_bag_3_4_182,This is a bag of snack food. Humans eat snack foods as part of their diet. This is a bag of pretzels. This is a bag of pretzels. This is a bag of Snyder's pretzel snaps. A bag of Snyder's pretzels. +calculator/calculator_3_2_124,This is a calculator. This is a calculator. This is a calculator. This is a black and white calculator. It's a white calculator with black buttons. +garlic/garlic_4_4_130,A clove of garlic. looks like a twin onion +lemon/lemon_1_1_188,The lemon is a species of small evergreen tree in the flowering plant. This is a tart fruit called a lemon. It can be eaten raw or cooked. This is a lemon. This is a lemon. A yellow lemon. +orange/orange_4_1_164,This is an orange. This is an orange. This is an orange. An orange. This is the citrus fruit, Orange This is an orange. It is the Rangpur fruit ,is one of the major fruit which is available in the city of Bangladesh. +marker/marker_5_4_27,A magic marker. this could be in exercise tool This is a pen or marker. +potato/potato_6_1_116,A russet potato lying on its side, it is roughly tubular in shape and brown in color. This is a potato. This is a potato. This looks like a rather large, regular potato. A large baking potato. +bell_pepper/bell_pepper_1_1_55,This is a red bell pepper with a green stem. An orange pepper. This is a red bell pepper. It's a red bell pepper. This is a red bell pepper. This is a red somewhat oval vegetable, with a green stem. It has several knobs around the top and it can stand up on its own. It's a tomato This is a red bell pepper. +food_can/food_can_9_2_230,This is a can of food. This can of soup has Belle on it. This is a can of soup. A can of Spaghetti O's. This is a can of pasta. This is a can of Spaghettios Here we see a can of soup. This is a can. The can is metal and very shiny. +sponge/sponge_8_1_145,This is a dish sponge. It's a yellow sponge with a blue scrubbing surface. This is a sponge. This is a sponge. A sponge with blue on top +cell_phone/cell_phone_2_1_3,A cell phone. This is a phone. This is a mobile or cordless phone. This is a Nokia cell phone. People used to joke about how these were unbreakable. an old mobile phone +pliers/pliers_5_1_161,This is a plier. A pair of pliers with dark blue hand grips. a pair of needle nose pilars This is a pair of pliers. These are silver pliers with dark grips on the handles. +soda_can/soda_can_4_1_10,This is a can of Coca-Cola. A can of coca cola. It is labelled Vanilla zero This is a can of soda. This is a can of Vanilla Coca Cola. The object is a black Vanilla coke zero can. +pitcher/pitcher_3_2_114,This is a pitcher of water. This is a green vase. This is a vase. This is a green ceramic pitcher. A green vase. +plate/plate_2_2_93,This is a blue and cream colored plate. This is a plate. This is a plate. This is a plate. An empty dinner plate. +coffee_mug/coffee_mug_1_1_113,This is a coffee mug. A red, white and green coffee mug. This is a red and white mug. It's a white mug with a red and grey design on it. A coffee mug. +shampoo/shampoo_4_2_6,a bottle of lotion This is a bottle of shampoo. This is a bottle of shampoo. It's a bottle of hair conditioner. It's white with a silver cap. This is the backside of a shampoo or a body cleanser. +marker/marker_1_2_186,This glue stick holds paper glue. Applied to one page of paper, and it can stick to another surface for a while. This is a glue pen. A magic marker. This is a red marker to be used on a dry erase board. This is a red expo marker. +tomato/tomato_4_1_110,A red tomato. IT IS A RED VINE TOMATOE This is a tomato. This is a yellow and red tomato. This is a tomato. +stapler/stapler_3_1_165,A black stapler It's a stapler. This is a stapler. A black stapler. This is a stapler. +comb/comb_2_4_203,This is a black hair brush. This is a hairbrush. It keeps your hair from getting tangled. A black hair brush. This is a hairbrush. This is a hair brush. +marker/marker_7_1_90,A magic marker. This is a pink highlighter. This is a marker. This is a purple marker. +soda_can/soda_can_5_1_17,This is a can of Diet Dr. Pepper. This is a can of Diet Dr. Pepper. A can of Diet Dr. Pepper. A white aluminum can of diet Dr Pepper. This is an unopened can of Diet Dr. Pepper. +kleenex/kleenex_1_4_127,This is a box of tissues. Tissues are thin, absorbent paper cloths used to clean up after nasal malfunctions. This is a box of Kleenex. This is a box of facial tissue. A box of kleenex. This is a blue floral tissue box. +plate/plate_1_2_203,This is a yellow plate. This is a yellow plate. An empty dinner plate. +camera/camera_1_4_106,A black stapler. A black rectangular object. +garlic/garlic_5_4_182,An onion which looks like twin This is a peach which is a type of fruit. +glue_stick/glue_stick_3_1_133,This is a spray can. A stick with a orange lid and blue base that looks like a glue stick. A glue stick with red top This is a glue stick. +apple/apple_3_2_194,A yellow apple. This is a sweet fruit called a green apple. It can be eaten raw or cooked into apple pie! This is an apple. This is a yellow apple. +food_jar/food_jar_1_1_93,This is a jar of jam or jelly. This jar has a brown and white lid. A jar of jelly. This is a jar of fruit preserves. a jar of jam. It could be blue berry +calculator/calculator_2_4_19,This is a calculator. A black calculator. This is a simple digital calculator. Basic math problems can be solved using this electronic device. It's a black calculator with grey, yellow, and black keys. This is a calculator. This is a black calculator with orange and grey buttons. This is a calculator. It is black. +plate/plate_2_4_173,An empty dinner plate. This is a blue and white plate. It is a white plate with a blue stripe around the rim. This is a white plate. +orange/orange_1_2_205,This is an orange, a type of fruit. They are used to make juice. This is an orange. This is an orange. An orange. This is a small orange fruit. +bowl/bowl_6_1_193,A blue bowl An empty dinner bowl. This is a bowl. This is a blue, white, green and yellow bowl. It's a blue and white bowl with green, blue, and white designs inside of it. +apple/apple_2_1_45,This is a red apple with the stem removed. This is an apple. A red apple. It's a Red Delicious apple. A red apple. A red delicious varietal. +pliers/pliers_6_4_108,a pair of pliers These are a pair of pliers. This is a pair of pliers. It's a pair of needlenose pliers with black grips. A pair of pliers. +pear/pear_4_1_162,A brown pear laying on its side. This is a brown pear. It's a brown pear. The pear is ripe. This is a pear. +marker/marker_6_1_247,This is an ink pen. This is a black pen. This is a pen. +keyboard/keyboard_3_1_9,A computer keyboard. This is a keyboard. It's a black keyboard. This is a black computer keyboard. This is a computer keyboard. +hand_towel/hand_towel_4_2_48,This is a folded grey washcloth. It can be used dry or wet. A folded towel. This is a brown towel sitting on a white and red plate. This is a beige towel. This is a soft, absorbent cloth called a towel. Towels are used to dry water from people's hands and other items. +coffee_mug/coffee_mug_1_1_168,It's a mug with a red and grey design with white outlines of people and text on it. A coffee mug. This is a coffee mug. A white ceramic coffee mug with a red and green design. This is a mug. +shampoo/shampoo_2_1_188,a bottle some bathroom essential This is a bottle of shampoo. A bottle of shampoo. This is a bottle of shampoo or conditioner. A white plastic bottle similar to a shampoo bottle. This is a bottle of hair conditioner That is a plastic bottle. +lemon/lemon_1_1_155,This is a lemon. It's a lemon with a produce sticker on it. This is a lemon. This is a dull orange colored orange with a sticker on the side. It is a lemon that is yellow. It also has a sticker label. +food_box/food_box_7_2_230,This is a box of Wheat Thins. A box of crackers. This is a box of Wheat Thins in a yellow box used for snacking. A yellow cardboard box of Wheat Thins. This is a yellow box of Wheat Thins. This is a box of Wheat Thins crackers. It is a box contains wheat food items . This is a box of Wheat Thins snacks +potato/potato_6_2_8,This is a large potato. This is a potato. This is a baking potato. A large baking potato. This is a potato. This is a potato. It is brown. A brown potato This is a potato +toothbrush/toothbrush_4_4_24,This is a toothbrush. This is a toothbrush. It's a white and purple toothbrush. This is a toothbrush. A toothbrush. +food_bag/food_bag_5_4_203,This is a bag of chips of some sort, I can't read the label. a bag of chips. A package of potato chips. This is a bag of food. +food_box/food_box_1_1_111,This is a box of sugar substitute. This is a box of sugar. It's a box of sugar subtitute. The box is red and white with a green stripe. This is a box of food. A package of sweetener. +banana/banana_1_4_26,A banana on a plate. This is a yellow banana. This is a banana. This is a banana. a ripened banana +keyboard/keyboard_5_4_16,This is a keyboard that appears to be mechanical. This is a black computer keyboard. The object is a long black keyboard. This is a computer keyboard. A computer keyboard. This is a computer keyboard. It is black. This is a PC keyboard A remote. +water_bottle/water_bottle_5_4_97,This is a bottled water. This is a bottle of water with a blue label, but we're looking at the side so I can't see the brand. This is a bottle of water. This is a bottle of water. A plastic water bottle. +potato/potato_4_2_194,This is a potato. Usually cooked before being eaten, it's a starchy vegetable. A large baking potato. This is a potato. This is a potato. +keyboard/keyboard_4_4_41,It's a black computer keyboard. A computer keyboard. This is a computer keyboard. This is a computer keyboard. This is a black computer keyboard. +calculator/calculator_1_1_41,This is a calculator, it's the type with the display raised a bit so it's easier to read. It's a calculator with brown, black, and yellow keys. A calculator. This is a calculator. It is a calculator. It is mostly flat, with some black, grey, and yellow buttons. +potato/potato_3_1_199,This is a potato. A large baking potato. It's a yellow potato. This is a potato. This is a potato. +glue_stick/glue_stick_4_2_175,a red glue stick This is a glue stick. This is a can of spray. This is a can of spray cheese. Glue sticks are solid adhesives in twist or push-up tubes. That is a glue stick. +food_box/food_box_6_2_7,This is a box of pretzel thins. This is a cardboard box containing a snack food. This is a box of Pretzel Thins. white box pretzel thins with food pictured on front It's a box of Pretzel Thins. The box is mostly white with a picture of the pretzels on it. +water_bottle/water_bottle_1_4_55,This is a bottle of water. This is a clear bottle of water. This is a bottle of water with a white cap. The object is a bottle of water with green and blue on the label. A plastic water bottle. +food_bag/food_bag_5_1_103,A pack of some snack This is a bag of chips. A bag of chips. It's a bag of Market Pantry potato chips. It's white and red. +tomato/tomato_8_2_186,A red tomato. A fruit that is round and red and best with salads and sandwiches. This is a tomato with a small blemish. This is a tomato. This is a tomato. +potato/potato_2_1_133,This is a brown ball. This is a red potato. This is a red potato. This red fruit looks like a tomato. It can be eaten raw or cooked, sliced or mashed. +food_jar/food_jar_1_2_130,This is a jar of food. This appears to be jelly, a fruity food that's ready to eat. This is a jar of grape jelly. This is a jar of jelly. This is a jar of jam or jelly. A jar of jelly. +tomato/tomato_3_4_76,A tomato. A red ripe tomato. This is a red tomato. This is a tomato. A red tomato. This is a tomato. +dry_battery/dry_battery_5_4_144,This is a battery. A battery. This is a small battery. Electrical charge is stored in this, and is called a D-Cell. This is a battery. It is cylinder-shaped and is perhaps a size C. My flash light uses two "C" cell batteries for power. These batteries have a positive end where the nipple is and the negative end is flat. +toothpaste/toothpaste_1_4_71,This is a tube of Colgate toothpaste. It's minty. Toothpaste is a paste or gel dentifrice used with a toothbrush to clean and maintain the aesthetics and health of teeth. This is a tube of toothpaste. This is a tube of toothpaste. This is a tube of Colgate Toothpaste. +bell_pepper/bell_pepper_1_4_71,A red bell pepper. A mild crunchy pepper. It is a red bell pepper with a thick green stem. An orange pepper. This is a bell pepper. This is an orange pepper. +pear/pear_3_2_43,A pear. This is a pear. This is a bosc pear. This is a brown pear. This is a pear. It is brown with a stem. +scissors/scissors_3_1_89,These are scissors, the have been known to be for cooking as well as arts and crafts. A small blue scissor which could be used for crafts This is a pair of scissors. These are a pair of scissors. Here is a pair of scissors. The handles are blue. Ideal for cutting paper. Those are blue scissors. This is a pair of scissors, used for cutting things This is a pair of scissors, and they are used to cut things like paper. It is blue and very sharp. +kleenex/kleenex_3_4_134,A blue box of Klennex tissue. A box of facial tissue. Looks like Kleenex brand. Tissues are used for clearing a stuffed nose. This is a box of facial tissue. A box of kleenex. It is a grey box of Kleenex. The tissue box is blue. A Kleenex is a piece of thin soft paper that is used as a handkerchief. +food_jar/food_jar_3_2_145,It is a jar of Heinz gravy. A jar of Heinz gravy. This is a jar of food. A jar of food with a mostly red label. This is a jar of gravy. Food Jar is container for the storage of Foods. This is a glass container of food. +sponge/sponge_11_2_165,A kitchen sponge. This is a teal-colored sponge. +lemon/lemon_1_1_106,It is a yellow lemon. There is a sticker label on it. This is a lemon. It's got a dimple on it's side. It's a yellow lemon with a sticker on it. A yellow lemon. This is a lemon. +lime/lime_1_4_98,This is a lime. This is a lime. A green lime. A lime with a product sticker on it. This is a lime. +hand_towel/hand_towel_3_4_165,It's a green washcloth. This is a dish cloth. This is a green towel. A green towel that is folded into a small square. This is a towel placed on a plate. +camera/camera_2_2_152,This is a camera. A DSL camera. Here is a picture of a digital camera with the memory card popping out of the top. It also has a key chain hanging off of it. It's a camera. This is a black camera. +food_box/food_box_4_2_78,This is a box of Golden Oreo Funstix. This is a box of Oreo cookies. This is a box of Oreo sticks. Rectangular shaped box, with writing on one side and nutritional facts on the other. A box of Oreo cookies. +soda_can/soda_can_3_2_159,This is a can of soda. The object is a can of soda that is silver and green. A can of soda. This is an unopened can of soda. A green can of soft drink. It could be sprite or seven up +water_bottle/water_bottle_1_2_90,This is a clear bottle of water. It is a plastic bottle with liquid. The cap is white and the label is mostly green. This is a bottle of water. A plastic water bottle. This is a bottle of water. +garlic/garlic_2_4_1,This is a bulb of garlic. A clove of garlic. This is a bulb of fresh garlic. a bulb of garlic +sponge/sponge_10_4_233,A kitchen scrubbing sponge. It's a yellow dish scrubber. A yellow something +water_bottle/water_bottle_6_1_1,Bottled water is a convenient way to stay refreshed. The object is a bottle of Fiji water. This is a bottle of water, I can't see the label, but judging by the shape I'd guess it's Fiji brand. A bottle of purified water. This is a full bottle of Figi water that has yet to be opened. +pliers/pliers_4_4_8,A pair of pliers. a cutting player A pair of pliers. Metal pliers with brown rubber grips. This is a pair of pliers. This is a pair of pliers. +food_can/food_can_6_2_152,This is a can of tomatoes. It's a can of Market Pantry tomatoes. The label is red and white. It is a metal can, with half of the label being red and the rest white. There is a picture of tomatoes and a bowl of soup on it. This is a can of food. The food is a tomato product. A can of tomatoes. +food_box/food_box_12_1_219,This is a box of crackers. A box of crackers. This is a box of crackers. This is a box of crackers. It's a green box of crackers with a blue stripe. +toothbrush/toothbrush_1_1_33,This is a toothbrush. A red and white toothbrush. A red colored tooth brush This iz a red and white toothbrush. The object is a white and red toothbrush. +food_box/food_box_10_1_264,A box of crackers. It's a box of something. This is a box of cereal. This is a box of food. Some preparation is required before this food can be eaten. This is a box of mashed potato mix. This is a box of pancake mix +sponge/sponge_8_1_177,It's a yellow sponge with a blue scrubbing pad. This is a sponged used to clean dishes. This is a sponge. This is a blue and yellow sponge. +food_can/food_can_5_2_17,This is a can of food. A can of food with a white and red label. This is a can of soup. This is a can of beans. A can of soup. +toothbrush/toothbrush_3_1_41,This is a toothbrush. This is a toothbrush. It's a white and light blue toothbrush. This is a light blue toothbrush. A tooth brush is used for oral hygiene. +bowl/bowl_4_2_147,This is a soup cup. An empty dinner bowl. It's a white bowl. This is a bowl. It is a white bowl. It is round and deep. +instant_noodles/instant_noodles_7_2_242,A package of Ramen noodles. This is a package of Ramen noodles. This is a package of food. +coffee_mug/coffee_mug_8_2_143,This is a cup with stripes. This is a coffee mug. An empty coffee mug It is a white ceramic mug. There are 5 various sized blue stripes going all the way around it. This is a mug. That is a mug. The above is a coffee mug. This is a white ceramic mug with dark stripes. +banana/banana_2_1_97,This is a sweet fruit called a banana. It can be eaten raw or cooked, making banana bread! This is a banana. This is a yellow banana. A banana on a plate. This is a banana, which is a fruit used for eating. +cell_phone/cell_phone_4_4_21,A smartphone. This is a cellphone. Cellphone is used to communicate other persons. This is a cell phone. This is a digital camera. It can record pictures for later display or editing on a computer. +water_bottle/water_bottle_2_2_153,This is a bottle of water. A plastic water bottle. This is a plastic bottle of water. This is a bottle of a clear liquid. It's a bottle of Talking Rain bottled water with a white and blue label. Closed Open A "sports cap", which appears on many water bottles, seen in the closed configuration to left and in open configuration at right, allowing the water to pass around the central blue piece. A water bottle is a container that is used to hold water. This is a water bottle. It tapers in the middle and has a blue and white label. That is a bottle of water. +calculator/calculator_1_2_150,Here is a desk calculator. It looks like an older model. This is a calculator. This is a grey and black-colored calculator. A calculator. This is another calculator for solving math problems. +keyboard/keyboard_1_1_184,This is a keyboard. It is a grey keyboard with white keys. This is a computer keyboard. A computer keyboard. This is an Apple keyboard. This is a keyboard, used to type on a computer This is a silver keyboard with white buttons. This is a computer keyboard. +food_can/food_can_10_2_131,A can of no sugar added peaches. It's a can of no sugar added mandarin oranges. It has a drawing of oranges on it. It is a metal can of food. The label is mostly yellow with a blue shape and white text. This is a can of mandarin oranges. This is a can of fruit. +orange/orange_3_4_32,This is an orange. This is an orange. An orange. an orange This is an orange. +stapler/stapler_8_4_137,a stapler +greens/greens_4_1_22,This green leafy mass looks to be a vegetable. It's either celery or a pepper. Lettuce on a plate. This is baby bok choy. This is a green vegetable. A head of bok choy. This is green, and it has limp leaves coming from a green stem. +rubber_eraser/rubber_eraser_2_4_257,It is a white pencil eraser with a blue cardboard wrapper. This is an eraser. The eraser has a blue label. +tomato/tomato_3_1_196,A red tomato. RED AND ROUND TOMATOE WITH PIECE OF VINE ON TOP This is a ripe red tomato. This is a red tomato. This is a tomato. +scissors/scissors_2_1_21,It's a pair of scissors with an orange handle. This is a pair of orange handled scissors. A pair of metal scissors with an orange plastic handle. A flip flop sandal. This is a pair of scissors. +binder/binder_2_4_64,This is a purple binder. This is a purple binder. This is a purple plastic school binder, approximately half inch. This is a three-ring binder. This holds paper together by the rings between the covers. A school folder. +flashlight/flashlight_5_2_64,This is a flashlight. This is a flashlight. This is a yellow and black flashlight. It's a yellow and black flashlight. This is a yellow flashlight. It looks powerful. +instant_noodles/instant_noodles_7_2_25,It's a package of ramen. It's mostly pink. This is a package of Ramen noodles. A package of Ramen noodles. This is a package of food, possibly ramen. This is a pack of ramen. +scissors/scissors_1_4_225,A pair of metal scissors with an orange and gray plastic handle. Scissors with a black handle. This is a pair of scissors, the handles are orange and dark grey. These are a pair of scissors. This is a pair of scissors. +water_bottle/water_bottle_4_1_24,This is a bottle of water. This is a flavored water. This is a bottle of water. A plastic water bottle. It's a bottle of water with a blue and purple label. +garlic/garlic_4_1_45,A clove of garlic. It's a shallot. This is a shallot. +food_cup/food_cup_3_4_228,A container of yogurt. This is an unused yogurt cup. This is a container of yogurt. This is a container of yogurt sealed with a foil lid. This is a container of yogurt. +stapler/stapler_2_2_101,This is a stapler. It joins two or more pieces of paper together. This is a black stapler. It's a black and grey stapler. This is a stapler. A black stapler. That is a black stapler. This is a stapler, used to keep pages of paper together This is a black stapler. +pitcher/pitcher_2_4_182,This is a container for boiling liquids. This is a kettle or pitcher for hot liquids. This kettle can be used for tea or coffee. This is a coffee pot. A coffee pot. +tomato/tomato_6_2_202,It's a tomato with a produce sticker on it. The object is a small red tomato. A red tomato. This is a red tomato. This is a tomato. +cell_phone/cell_phone_1_2_110,It's a silver and black cell phone. This is a cell phone. This is a cell phone. This is an old cellphone A cell phone. +lightbulb/lightbulb_3_1_55,a round white bulb This object is a light bulb laying on its side. This is a light bulb. A light bulb. It's a light bulb. +banana/banana_3_2_108,a ripe banana This is a yellow banana. A banana on a plate. This is a banana. This is a banana that is mostly yellow. It is not peeled. +calculator/calculator_3_1_173,It is a rectangular calculator. It is flat with a screen, many black keys, and 1 red key. This is a calculator. It's a white calculator with black buttons. This is a black and white calculator.The calculator looks old. A calculator. +food_box/food_box_7_2_196,A yellow box of crackers A card board box shaped like a cereal box. It contains a plastic bag on the inside with other things inside. This is a box of Wheat Thins. A yellow box of wheat crackers used for snacking. This is a box of Wheat Thins. +instant_noodles/instant_noodles_2_2_170,A package of noodles. This looks like a bag of ramen or some other sort of dry noodles. The bag is white and pink but the writing does not look like English. This is a package of noodles. This is a package of Ramen soup. This is a package of food, possibly ramen. +binder/binder_2_4_42,This is a purple binder. A blue file or folder This is a binder. A school folder. This is a purple folder. +coffee_mug/coffee_mug_8_2_2,This is a white and stripe coffee mug. A coffee mug. This is a mug. It could be a ceramic mug. It has stripes on it. It is good for coffee. This is called a cup or a mug. It is commonly used to hold a drink of tea or coffee. This is a mug. This is a striped mug. That is a mug. +food_can/food_can_2_2_200,This is a can of soup. This is a can of Campbell's soup. It is small with a red and white label. It's a can of Campbell's soup with a red and white label. A can of soup. This is a can of Campbell's soup. This is a metal pop top can. The can contains a label and appears to be Campbells soup. +sponge/sponge_10_4_271,This is a lemon. A yellow round something +apple/apple_5_4_140,The apple is green. This is a green apple. It is an apple that is green. It has a sticker label on it. A green apple. This is a green apple. This is a green apple. This is a green apple. +tomato/tomato_5_4_201,It's a red cherry tomato with a sticker on it. This is a red tomato. This is a red tomato. This looks like a ripe tomato. Nice and red in color. +marker/marker_9_4_167,This is a yellow highlighter. This is a yellow marker used to highlight words and sentences on a paper. A magic marker. A yellow marker with a black top A dry erase marker +glue_stick/glue_stick_2_4_237,This is a glue stick. This is a glue stick. It's a container of lip balm. This is a can of spray. +lemon/lemon_5_4_189,It's a yellow lemon. This is a lemon. A yellow lemon. a lemon This is a lemon. +stapler/stapler_3_4_205,This is a stapler. This object is a tool that when pushed down on a stack of papers, releases a metal staple which holds the papers together. From the pressure being exterted on the tool, the metal staple's prongs are bent which holds it in place. This is a stapler. A black stapler. The object is a black stapler. +food_bag/food_bag_2_1_53,This is a bag of chips, crackers, or a similar type of food. A pack of snacks which looks like cookies A bag of chips. This is a bag of chicken strips. +keyboard/keyboard_2_4_88,This is a keyboard used for your computer. The object is long, has keys and is made of plastic. a keyboard A keyboarad used for typing. A computer keyboard. +garlic/garlic_1_1_30,This is a bulb of garlic. A round cram and tan colored object that looks similar to a gord. A head of garlic +plate/plate_7_1_54,This is a plate. This is a plate. This is a bowl. Normally used for soups or deserts, it is part of a table setting. An empty dinner plate. a bowl Here is an empty whte plate. That is a plate. +bowl/bowl_3_1_25,It's a white bowl. This is a bowl. This is a white bowl. This is a bowl. An empty dinner bowl. +water_bottle/water_bottle_1_4_149,This is a bottle of water. This is a clear bottle of water. The object is a bottle of water or drink with a white cap and green/blue label. A plastic water bottle. It is a bottle of water with a white cap. +food_bag/food_bag_1_4_118,This is a bag of smack crackers. This is a ready mix of a food product in a bag. It's a bag of snacks. The bag is light blue with a picture of fruit on it. This bag holds snack food. Humans eat snack food as part of their diet. This is a package of food. +food_can/food_can_3_1_207,This is a can of soup. It's a can with a red and white label. This is a can of food. A can of soup. +orange/orange_2_2_170,A grapefruit. This is a sweet fruit called an orange. It can be eaten raw or cooked. That is an orange. This is a yellow ball. a yellow ball +pitcher/pitcher_2_4_32,This is a coffee pot used to make coffee. This is a coffee pot carafe. It is silver with a black top and has no lid on it. This is a pitcher or part of an electric kettle. This is a coffee pot. A coffee pot. This is a coffee server. Here we have a tea kettle. +banana/banana_1_2_65,A ripe banana This is a sweet fruit called a banana. It can be eaten raw or cooked into banana bread! This is a banana. A banana on a plate. This is a banana. +water_bottle/water_bottle_10_2_32,This is a water bottle. It's a red water bottle. It has a label that says BPA Free on it. A plastic water bottle. an empty water bottle this is a plastic cup with a top that has a straw in it so you don't spill your drink +food_cup/food_cup_5_2_237,This is a container of yogurt. This is a cup of yogurt. A cup of yogurt. It could be blueberry flavour A container of yogurt. +onion/onion_2_2_185,A whole garlic. It also resembles white onion This is an onion. White onion, unpeeled. This is an onion. An unpeeled white onion. This is a white onion. This is the picture of white onion used to make curry or oil for hair ,it provide better Oxalic acid for body This is a white onion, used for cooking. +pliers/pliers_1_2_109,A pair of pliers. These are a pair of pliers. This is a plier. This is a pair of pliers. This is a pair of bent-nose pliars, the handles are blue. +hand_towel/hand_towel_1_1_167,The white blanket is foled. This is a folded towel. A folded towel. +dry_battery/dry_battery_2_1_83,This is a flashlight. It's an alkaline battery. It's gold and black. This is a AA size battery An electric battery is a device consisting of one or more electrochemical cells with external connections provided to power electrical devices such as flashlights, smartphones, and electric cars. +plate/plate_7_2_35,This is a plate. This is a plate. This is a bowl. Normally used for soups or deserts, it is part of a table setting. An empty dinner plate. This is an all-white plate. +stapler/stapler_2_4_67,This is a stapler. A black stapler. This is a stapler. This is a stapler. +sponge/sponge_9_1_220,This is a tomato. +notebook/notebook_2_2_151,This is a notebook. The notebook has 70 pages. The spiral is yellow. This is a yellow spiral bound notebook. A writing notebook. Yellow square shaped object with writing on the bottom right corner and a bar code on the top left corner. +pliers/pliers_4_2_2,This is a pair of pliers. This is a pair of pliers. This is a pair of pliers. This is a pair of pliers used to grip things. A pair of pliers. +greens/greens_3_1_206,This is baby bok choy. Kale on a plate. Greens is a leaf vegetable. This is bok choi. This is a type of produce. It has a white stem with limp green leaves. This is some bok choy. +potato/potato_6_1_76,This is a potato. This is a potato. A large baking potato. Something which looks like potato +water_bottle/water_bottle_2_4_100,This is a small bottle of water. This is a plastic bottle. It looks to be holding water, but can be re-purposed many times. This is a bottle of water. A plastic water bottle. This is a bottle of water. +food_box/food_box_11_4_36,This is a box of white cheddar Cheez-its. A box of white cheddar Cheez-its. This is a box of Cheez-Its. This is a box of white cheddar cheez-its. This is a box of cheese crackers. A box of the snack cheese it. This is a box of Cheez-it White Cheddar snacks. This is a box of white cheddar Cheez-It crackers. +mushroom/mushroom_1_4_71,This is a mushroom. A clove of garlic. +toothbrush/toothbrush_1_4_63,A red toothbrush. This is a toothbrush. This is a pen or marker. It's a white and red toothbrush. This is a tooth brush. +marker/marker_6_4_274,A magic marker. It is a black pen with blue grips. This is a pen. +toothpaste/toothpaste_1_4_32,This is Colgate brand tooth paste. This is a tube of Colgate toothpaste. This is a tube of Colgate toothpaste. A tube of toothpaste. This is a full tube of Colgate toothpaste. +soda_can/soda_can_6_1_116,It's a can of Welch's juice. The can is mostly yellow. This is a yellow can of Welch's. CHAMPAGNE COLOR WELCH'S CAN OF JUICE A can of Welch's soda. This is a can of soda or juice. +apple/apple_1_2_55,This is a red delicious apple. An apple. One very ripe, red apple. An apple is a sweet, edible fruit. +coffee_mug/coffee_mug_8_2_222,A coffee mug. This is a coffee mug. a coffee mug An empty white coffee mug with ring design This is a mug. This is a mug. This is a white ceramic mug with dark stripes. It has a handle. +cereal_box/cereal_box_2_1_208,A box of cereal. This is a box of breakfast cereal standing upright. It is much taller than it is thick. The color is mostly brown on its front and top, but the side facing us is mostly white with black type (it is the nutritional panel). This is a box of cereal. This is a box of cereal. This is a box of Chex cereal. +cap/cap_3_4_147,This is a black hat. It's a black baseball hat with a bulldog on it. A baseball cap. This is a baseball hat. This is a black baseball cap with an image of a bulldog on it. +apple/apple_4_2_195,This is an apple. A yellow apple. This is a yellow golden delicious apple. The object is a green apple with a yellow tinge. +tomato/tomato_4_1_92,this is a tomato This is a tomato. A red tomato. This looks like a tomato with a light red and yellow coloring. An orange and red tomato. +scissors/scissors_4_4_91,This is a pair of scissors. Scissors with a blue and yellow handle. This is a pair of scissors. A pair of scissors with a plastic or rubber coating on the handle. These are a pair of scissors. +pliers/pliers_2_1_10,This is a pair of pliers. A pair of pliers. These are pliers. This is a plier. +coffee_mug/coffee_mug_6_2_18,This is a bowl. A coffee mug. This is a yellow bowl. This is a coffee cup. The object is yellow, has a handle and a hole in its center. +apple/apple_2_1_79,This is an apple. This is a red apple This is an apple. An red delicious apple This is a red delicious apple. A red apple. +bowl/bowl_3_2_1,An empty dinner bowl. a small white bowl This is a white bowl This is a bowl. It's an empty white bowl. It is a white bowl sitting on a white table or countertop. This is a white bowl resting on a table. +bell_pepper/bell_pepper_1_2_181,A red pepper. This is a red bell pepper. This is a red bell pepper that has a small bruise on the side. This is an orange bell pepper. It's a red bell pepper with a sticker on it. +cereal_box/cereal_box_3_1_168,This is a box of Kellogg's Special K cereal This is Kellogg brand Special K. It is a low calorie breakfast cereal. This is a box of Special K cereal. It's Special K cereal. It's a box of chocolate Special K. +sponge/sponge_1_1_45,A kitchen sponge. This is an orange sponge. This is an orange sponge. This is a orange sponge. This is an orange dish sponge. +kleenex/kleenex_1_2_147,This is a box of tissues. This is a box of facial tissue. It's a box of Kleenex with abstract grey designs on it. This is a tissue box with flowers on it. Opened grey tissue box with flower design. Tissue ready to be used and pulled out of the box. +marker/marker_4_1_75,This is a marker. This is an ink pen. A magic marker. This is an EXPO marker, used to write on White-Boards +mushroom/mushroom_3_4_170,A chicken drumstick. Very uncertain as to what this is. Gourds are used for decorations in the fall season. +cell_phone/cell_phone_5_4_41,A smartphone. This is a mobile phone. This is a smartphone. This is a black cellular phone. It's a black and silver smart phone. +marker/marker_8_1_67,A red sharpie This is a felt tipped marker. Under the black cap is a piece of felt that delivers ink from the tube to make marks on paper or anything else. It's a red highlighter pen. This is a red marker. A magic marker. +pliers/pliers_6_4_112,A pair of pliers. Pliers are made in various shapes and sizes and for many uses. Some are used for gripping something round like a pipe or rod. This is black pliars. These are pliers. This is a pair of pliers. +food_can/food_can_7_4_164,This is a can of soup. a can of some food A can of soup. An easy open can of soup. No can opener required for this soup. This is a can of soup. +food_box/food_box_9_1_53,This is a green box of crackers. This is a box of food. This is a box of food. +food_box/food_box_7_1_143,A box of crackers. This is a yellow box of Wheat Thins. This is a box of crackers. This is a box of Wheat Thins. It's a box of Wheat Thins. It's yellow. +ball/ball_7_4_202,It is a soccer ball that is mostly white with many black pentagons and white hexagons all over. This is a soccer ball. It is used in a kick-the-ball-around game called soccer. A soccer ball. This is a soccer ball. This is a soccer ball toy. This is a soccer ball, to play soccer with This is a soccer ball. This is a soccer ball. +notebook/notebook_3_2_230,This is a notebook. A writing notebook. This is a notebook. A spiral bound notebook with a green and white cover. This is a spiral bound notebook. +food_cup/food_cup_5_2_43,A packaged cup of blueberry yogurt with a peel off lid. This is a container of yogurt. A container of yogurt. This is a cup of blueberry yogurt. It's a cup of yogurt. It has a picture of blueberries on it. +notebook/notebook_1_4_68,This is a red spiral notebook. This is a spiral bound notebook. This is a red single subject notebook. Here is a red notebook sitting on top of a white object. The note book is 70 pages of college rule. A writing notebook. A note book that is essential for taking notes at school or long meetings at work. Here is a notebook. A red spiral note book on top of a white stand. +food_cup/food_cup_1_4_169,Food Cup is used to store food items. A container of yogurt. This is a small plastic container holding a food called yogurt. Yogurt is a dairy product made using active bacteria. This is a container of yogurt. This is a container of yogurt. +rubber_eraser/rubber_eraser_4_1_103,Eraser is an article of stationery that is used for removing writing from paper or skin. This is a pink eraser. A pencil eraser. This is a rubber eraser. +banana/banana_4_4_99,This is an unripe banana or plantain. this is a banana it is a fruit it gives you a good amount of protein in it. Bananas are also good on cereal. This is a green banana. A plantain on a plate. This is a banana. +onion/onion_4_4_165,A white onion. This is an onion. This is a white onion. This is a white onion. This is an onion. +food_box/food_box_3_2_106,A box of Fiber One pastries. This is a box of Fiber One. This is a box of fiber one bars. A cardboard box of Fiber One. A packet of fiber one which looked like snacks +stapler/stapler_6_2_134,This is a black stapler. This is a stapler. This is a stapler. A black stapler. This is a stapler. +glue_stick/glue_stick_6_1_33,A tube of glue. This is a can of spray. This is a glue stick. This is an Elmer's glue stick. This is a stick of glue used hold things together. +coffee_mug/coffee_mug_5_2_109,This is a mug. A coffee mug. this is a drinking cup A white coffee mug This is a coffee cup. +cereal_box/cereal_box_3_1_17,This is a box of Special K cereal. A box of kellogs cereals This is a box of cereal. This is a cereal called Special K used for a quick breakfast. It is a box of Special K cereal. It is a box of cereal +food_box/food_box_11_2_62,This is a box of cheez-its. This is a box of Cheez-Its. A box of Cheez-Its. This is a box of Cheez-Its, I think it says white cheddar flavored. This is a box of white cheddar Cheeze-its. +food_cup/food_cup_1_1_206,a cup of yogurt This is a yoplait yogurt. This is a container of yogurt. A container of yogurt. This is a container of yogurt. This is a container of yogurt with a silver foil lid. This is a carton of yogurt. It has a foil lid and appears to be an individual serving. This is an aluminum can of food, with a blue, white, and red label, The lid appears to have hole in it +plate/plate_3_4_50,This is a plate. This is a blue and white plate. an empty white plate with blue design This is a ceramic plate.. An empty dinner bowl. +tomato/tomato_8_2_126,A red tomato. This is a sweet fruit called a tomato. It can be eaten raw or cooked. This is a red tomato. It's a tomato. This is a tomato. +lime/lime_3_4_51,This is a green fruit, probably a lime. A green lime. This a fruit a green lime. This is a lime. +bell_pepper/bell_pepper_2_1_19,This is a yellow pepper. This is a yellow bell pepper. This is a pepper. They are quite tasty. A yellow pepper. It's a yellow bell pepper. This vegetable is yellow, with a green stem. It is a squarish oval shape. This yellow bell pepper is on it's side This is a yellow bell pepper. +tomato/tomato_2_4_151,This is a cherry tomato. A red tomato. This is a tomato. This is a fruit or vegetable. It is red. This is the fruit, Cherry Tomato This is a red tomato. +soda_can/soda_can_5_2_68,It's a can of diet Dr. Pepper. It's white with red printing. This is a white can of Dr. Pepper. This is a can of Diet Dr. Pepper. A can of dr.pepper This is a can of soda. +potato/potato_4_2_90,This is a potato. A large baking potato. It's a yellow potato. This is a potato. +sponge/sponge_6_4_255,This is a sponge. It is a rectangular sponge. It has a yellow face, with a pink side. This is a sponge. It is usually used to clean as it holds water in its little holes. A kitchen sponge. This a dish sponge. +notebook/notebook_4_1_253,This is a spiral bound notebook. This pad of paper is held together by the wire spiral at one side. This is a blue spiral bound notebook. The notebook is blue. It has 70 pages. This is a blue-spiraled notebook. A writing notebook. +cap/cap_2_1_55,This is a camouflage hat. People wear these to stay hidden. This is a camo ball cap. An army hat. This is a camo hat. This is a military camouflaged hat. +food_box/food_box_8_4_216,A box of crackers. There is a box of Chicken in a biscuit snacks in a blue box. This is a box of crackers or cookies. This is a box of crackers. +comb/comb_2_4_20,The object is a black hair brush with light blue accents. A hairbrush. This is a hair brush. This hair brush may also be called a wig brush. This brush is heavy duty for brushing thick and long hair. This is a hairbrush. +toothpaste/toothpaste_2_4_85,This is a long tube of crest toothpaste that can stand upright on it's lid. This is a tube of toothpaste. This is a tube of Crest toothpaste. A small tube of crest toothpaste A tube of Crest toothpaste. +pliers/pliers_5_1_31,This is a pair of needle nose pliers. This is a pair of pliers. These are pliers. A pair of pliers. Pliers are used for gripping something round like a pipe or rod. +bell_pepper/bell_pepper_2_1_222,This is a yellow bell pepper. This is a yellow pepper. This is a yellow pepper. It's a yellow bell pepper. A yellow pepper. +orange/orange_3_1_145,an orange This is an orange. This is an orange. An orange. That is an orange. This is an orange. +food_bag/food_bag_5_4_139,This is a bag of chips. This is some kind of bag of chips. I can't read the label and the picture almost looks like it has both chips and cheese curls on it. This is a bag of chips. A bag of chips. This is a bag of chips. +dry_battery/dry_battery_5_4_179,An Energizer battery. This is a blac and silver battery. This is a small battery. Electrical charge is stored in this, and is called a D-Cell. This is a battery. This is a battery. +marker/marker_6_1_227,A magic marker. This is a marker. That is an extension cord wrapped up. +keyboard/keyboard_2_2_169,This is a black and grey wired keybaord on top of some sort of white plastic pedestal. A computer keyboard. This is a keyboard for a desktop computer. It is black. This is a computer keyboard. This is a keyboard. You use it to type messages or words onto a computer screen. +coffee_mug/coffee_mug_4_4_88,A white coffee cup with a blue rim. The cup is empty. This is a coffee mug. This is a mug. This is a ceramic mug. A coffee mug. +bowl/bowl_6_1_62,This is a bowl. A blue bowl with a floral design on the inside. This is a blue bowl white white on the inside. This is a bowl. This is a deep cereal bowl. +food_bag/food_bag_3_1_89,This is a bag of pretzels. This is a bag of Snyders pretzels. This is a bag of Snyder's pretzel snaps. A bag of pretzels. This is a bag of pretzels. +bowl/bowl_1_2_130,A bowl is a spherical dish or container typically used to serve hot and cold food. This is a bowl. This is a bowl. This is a green and red bowl. An empty dinner bowl. +potato/potato_3_4_14,This is a potato. A potato. +food_jar/food_jar_5_4_154,It's a jar of Vlasic pickles. The lid has a blue ridge around the rim. This is a jar of pickles. This is a jar of food. A jar of peppers. This is a jar of pickle juice. +pitcher/pitcher_1_2_80,It's a white ceramic pitcher with a floral design on it. This is a pitcher. A gravy boat. A Ceramic Dish Shaped To Function As A Cream Dispenser This is a creamer cup. It's used to pour creamer into coffee. +instant_noodles/instant_noodles_2_4_121,A package of noodles. A bag of ramen laying face up on a table. This is a package of food, possibly ramen. This is a package of Ramen noodles. +food_bag/food_bag_4_2_133,a bag of mini oreo This is a bag of Oreo mini's. This is a snack size bag of mini oreos. This is a bag of Oreo cookies. A bag of mini Oreo's. That is a bag of mini Oreo cookies. snack bag of mini Oreos +shampoo/shampoo_5_2_113,This is a bottle of soap. Shampoo is a hair care product. A bottle of shampoo. This is a bottle of shampoo. +pliers/pliers_3_1_14,This is a pair of pliers. A pair of pliers. This is a pair of pliers. A green colored narrow tip cutting player This is a pair of needle nose players with green hand grippers. +potato/potato_2_1_40,This is a red potato. Potatoes are a root vegetable. This is a red potato. A red potato. This is a red potato. +soda_can/soda_can_2_2_128,This is a can of 7 Up. this is a picture of a 7 up soda. A can of 7-Up. This is a green can of 7-Up. It's a can of 7 UP. It has a green label. +cereal_box/cereal_box_1_4_21,This looks like Fruity Pebbles. This is a box of cereal. This is a box of food. A box of crackers. This is a box of cereal. +food_cup/food_cup_4_2_75,This is a container of food. chobani white and orange peach yogurt cup A container of yogurt. This is peach yogurt. This is a container of yogurt. +notebook/notebook_4_2_255,This is a blue-spiraled notebook. A writing notebook. This is a blue notebook. This is a blue spiral bound notebook. Note Book is used to wright or drawing purposes. +dry_battery/dry_battery_4_1_67,This is a battery. This is a battery. There is a small battery, looks fat like a D battery. A battery. This is a black battery. +sponge/sponge_7_4_229,A kitchen scrubbing sponge. This is a cleaning sponge. It is used to clean dishes usually, but can be used to clean many things. This is a sponge. You use it to clean dishes. This is a sponge. This is a green and yellow sponge. This is a dish sponge used for cleaning dishes A sponge is a tool or cleaning aid made of soft, porous material. This sponge is yellow sponge on one side and green scouring material on the other. There is a dark dot near the top, and a white dot on the bottom and to the right of the sponge. +hand_towel/hand_towel_4_2_195,This is a face towel, it is the smallest of towels, mostly use to wash face and some cases clean things. This is a towel. This is a small grey towel. A folded towel. This is a brown towel sitting on a white and red plate. +marker/marker_5_4_87,This is a pen. It is blue and black. This is a blue dry erase marker. This is a pen. A magic marker. +ball/ball_4_1_44,It is a picture of a small toy basketball. It is orange and black. A nerf basketball. This is a basketball. This is a toy basketball. +toothbrush/toothbrush_3_2_175,This is a toothbrush. A white and blue toothbrush. It is a toothbrush. It is shaped like a stick, mostly white, with some blue accents. The object is a normal white and blue tooth brush. +coffee_mug/coffee_mug_4_4_136,This is a mug. This is a coffee mug. A coffee mug. It is a white mug with a blue time on the inside of the mug. This cup is white and has a handle. +mushroom/mushroom_2_1_33,A mushroom. a shitake mushroom This is a mushroom. This is a brown mushroom. They're good for you. This is a baby bella mushroom. +food_box/food_box_6_1_64,A cardboard package of pretzel thins. This is a box of Preztel Thins. A packet of pretzel thins A box of crackers. This is a box of Pretzel Thins. +sponge/sponge_5_2_256,This is a sponge. A kitchen sponge. A sponge that is blue and has an abrasive section on top that is red. This is a sponge used for washing dishes This is a blue and red sponge. The rough part is red; the soft part is blue. This is a red and blue sponge. +cereal_box/cereal_box_2_4_75,This is a box of cereal. A box of cereal. This is a box of cereal. It's a box of Chex cereal. It's mostly brown. +cap/cap_3_4_25,A baseball cap. This is a black baseball cap. This is a black baseball cap. black ball cap A black baseball cap with a bulldog wrote on the brim. +toothbrush/toothbrush_2_1_70,This is a toothbrush. This is a toothbrush. A toothbrush. +sponge/sponge_11_4_88,This is a light green scrubber. A kitchen scrubbing sponge. +marker/marker_2_2_84,This is a green dry erase marker. A magic marker. It's a green Expo brand dry erase marker. This is a glue stick. This is a green marker. +keyboard/keyboard_2_1_50,This is a black computer keyboard. This is a mechanical keyboard. It's a black comptuer keyboard with function keys and a numeric pad. A black keyboard for a desktop computer This is a computer keyboard. +lemon/lemon_3_4_155,A yellow lemon. A yellow limon with a slight green tint on the end facing us This is a lemon. This is a yellow lemon. This is a lemon. +coffee_mug/coffee_mug_5_4_182,A white empty coffee mug This is a coffee cup. This is a mug. This is an all-white mug. A coffee mug. +lemon/lemon_1_1_15,a lemon This is a yellow lemon. This is a lemon. A yellow lemon. It's a lemon. +flashlight/flashlight_3_1_142,A flashlight. This is a flashlight. This is a blue colored flashlight. This is a blue and black flashlight. A blue colored flash light +food_jar/food_jar_2_4_248,This is a jar of jam or jelly. This is a jar of jelly. A jar of jelly. This is a jar of jam. A jar of orange colored preserves. +hand_towel/hand_towel_3_4_144,A folded towel. This is a washcloth. Wet it to wash your face. This is a soft, absorbent cloth called a towel. Towels are used to dry water from people's hands and other items. This is a green towel. This is a wash cloth. +lime/lime_1_2_185,This is a lime. This is a green lime. This is a picture of an avacado. This is a ripe avocado. +apple/apple_1_4_94,A dark brown something which could be plum An apple. This is a red delicious apple. +food_can/food_can_8_1_174,This is a can of food. This is a can of Rote tomatoes. This is a can of soup. This is a can of diced tomatoes. +bell_pepper/bell_pepper_4_1_196,A red pepper. This is a red bell pepper. This is a red pepper. This vegetable has a sharp flavor, and is usually cooked. This is a red bell pepper. This is a red pepper. This red bellpepper is on it's side Bell pepper is a cultivar group of the species. This is a red bell pepper. +soda_can/soda_can_1_1_192,This is a can of Pepsi. This is a drink can. It holds a carbonated sweet drink based on water. This is a can of Pepsi. A can of Pepsi. This looks like a can of Pepsi cola. This is a can of Pepsi Cola This is a can of pepsi. This is a can of Pepsi. +toothpaste/toothpaste_4_1_17,Looks to be a tube of toothpaste. Unsure of brand. It's a tube of toothpaste. It is red with a blue stripe. This is a tube of toothpaste. A tube of toothpaste. This is a tube of toothpaste. +cereal_box/cereal_box_1_4_121,It's a box of cereal. The top is brown and white. This is an orange box containing cereal. This is a box of cereal. This is a box of bran cereal. This is a box of bran flakes. This is a box of cereal That is a box of Bran Flakes cereal. +food_cup/food_cup_5_2_1,A container of yogurt. a cup of blueberry flavored yogurt. It could be greek yogurt This is an unopened yogurt cup. This is a container of yogurt. This is a container of yogurt. +calculator/calculator_5_1_20,This is a silver calculator. This is an object that is used in math classes to help solve math problems and equations. A light gray desk calculator with white buttons and an angled display screen. This is a calculator. A calculator. +lime/lime_3_4_74,This is a lime. this is a lime. It's a lime with a sticker on it. This is a lime. A green lime. This is a lime. This is the citrus fruit, lime It is a green lime. +cereal_box/cereal_box_4_1_102,A BOX WITH INSTRUCTIONS IT IS BLUE AND YELLOW A box of cereal. This is a box. This is a box of cereal. +sponge/sponge_1_4_147,This is an orange sponge. This is a sponge. A kitchen sponge. This is a sponge. A sponge would be used for pre dishwashing. this is a orange sponge This is an orange sponge. This is a slice of cheddar cheese. +toothbrush/toothbrush_3_1_127,A toothbrush. This is a toothbrush. The object us a white and blue toothbrush. This is a toothbrush. +food_can/food_can_14_1_232,A can of soup. This is a can. this looks like a can of soup. its a red can with cream soup inside. This is a can of soup. It's a can of Chunky soup with a mostly red label. +rubber_eraser/rubber_eraser_3_4_12,A pencil eraser. This is an eraser. It's a pink rubber eraser. Loos to be a pink eraser. +food_bag/food_bag_5_4_201,This is a bag of potato chips on top of some paper plates. This is a bag of chips. It's a bag of Market Pantry chips. The label is white and red. A bag of chips. This is a bag of chicken nuggets precooked. +marker/marker_3_1_149,This is a black expo marker. A magic marker. This is a marker. This is a black marker. This is a black dry erase marker. +sponge/sponge_1_4_54,This is an orange sponge. A kitchen sponge. This is a sponge. The object is a regular sized orange sponge. This is a squeegee. +lime/lime_2_4_71,This is a lime. This is a lime. This is a lime. A green lime. +tomato/tomato_6_1_89,This is a tomato. This is a tomato. This is a sweet fruit called a strawberry. It can be eaten raw or cooked. A red tomato. This is a red tomato. +binder/binder_1_1_219,It's a red plastic three ring binder. A school folder. This is a red binder. A red plastic 3-ringer binder cover. This is a red binder. +greens/greens_2_1_92,Green leaf lettuce on a plate. some green leafy vegetable This is lettuce. A leafy green vegetable. There is only one piece so it appears to be a garnish. This is a bunch of lettuces +apple/apple_3_4_2,This is a green apple. This is an apple. Bright green apple shining on a white surface. Apple is missing its stem. It's a green apple. This is a golden delicious apple. +food_jar/food_jar_1_4_140,It's a jar of jelly. The brand is Smuckers. This is a jar of jam or jelly. This is a jar of grape jelly. It A jar of jelly. A small jar of something which looks like a jam jar +cereal_box/cereal_box_4_2_109,This is a box of Raisin Bran Crunch cereal. The front of the box is purple, andthe side of the box is yellow and blue. a box of something This is a box of Raisin Bran. A box of cereal. It's a box of Raisin Bran cereal. +lemon/lemon_5_1_9,It's a yellow lemon with a green end. A fresh lemon. This is a lemon. A yellow lemon. This looks like a lemon. That is a lemon! This is a yellow lemon with green ends +cell_phone/cell_phone_2_2_166,This is an older cellphone. A cellphone marked with three dots around its front position an older moderl cell phone This is a mobile phone. A cell phone. +comb/comb_1_1_46,A hairbrush with a black and silver handle. This is a hair brush. A black and silver hair brush. The hair brush is black. A black hair brush. +banana/banana_4_4_52,It's a very green, unripe banana. A banana on a plate. an unripe plantain This looks like a plantain. They are most similar to a banana. This is a banana. This is a banana that is still slightly green. This is a green banana with some brown spots. +ball/ball_2_1_186,This is a soccer ball. A nerf soccer ball. Balls are used to play ball games. This is a soccer ball. +pear/pear_8_4_177,A yellow apple. This is a yellow apple. This is a yellow delicious apple. This is an apple. This is a sweet fruit called a green apple. It can be eaten raw or cooked into something called apple pie! +food_jar/food_jar_4_4_104,This is a jar of white pasta sauce. This is an unopened jar. The contents are white. Jarred Alfredo sauce is a good solution for a quick Italian dinner. A jar of sauce. This is a can of Alfredo sauce, used for cooking This is an unopened jar. The contents inside are white. This is a jar of white sauce. You can see the top of the lid. +tomato/tomato_7_4_28,A red tomato. This is a tomato. It's a tomato. This is a ripe tomato. This is a fruit that is red and round and can be used in salads and on sandwiches. +stapler/stapler_8_4_95,This is an electronic device called a computer mouse. It allows a computer user to position a cursor and do other functions. +pliers/pliers_3_4_41,A pair of pliers. This is a plier. This is green pliars. This is a pair of pliers. This is a pair of pliers. +potato/potato_3_1_65,This is an unpeeled potato It's a yellow potato. This is a potato. A small russett potatoe. +water_bottle/water_bottle_2_1_14,A plastic water bottle. This is a clear bottle of water. This is a bottle of water. It's a bottle of water with a white and blue label. This is a plastic bottle. It looks to be holding water, but can be re-purposed many times. +lime/lime_3_2_112,A ripe lime with product sticker. This is a lime. A green lime. This is a fresh lime. This is a lime which is a fruit i believe. +pliers/pliers_5_2_69,This is a pair of pliers, probably needle-nosed. They have blue handles. One set of needle nose pliers with blue handles. This is a tool called needle-nose pliers. Used to grasp small parts, one human hand holds the tool to hold or turn something else. This is a pair of pliers. A pair of pliers. +food_can/food_can_10_2_139,This is the canned fruit of mandarin oranges. This looks like a can of fruit. The brand is Del Monte. It's a can of no sugar added mandarin oranges. The can is yellow with a picture of oranges on it. This is a can of fruit. This is a can of Del Monte fruit, it looks like it says "No Sugar Added" but I can't read the rest of the label. I think it's nectarines or peaches. +garlic/garlic_1_4_121,a bulb of garlic This is a clove of garlic. A clove of garlic. This is a bulb of garlic. +pliers/pliers_2_4_93,This is a tool called needle nose pliers. It is used to grip or manipulate smaller parts. These are a pair of pliers. This is black pliars. This is a pair of pliers. A pair of pliers. +food_can/food_can_12_1_164,This is a can of food. This is a can of soup. This is a can of chicken broth. This is a can of soup. It's a can of soup with a white label. +apple/apple_3_1_121,A yellow apple. This is an apple. This is a yellow apple. This is a golden delicious apple. A golden delicious apple +marker/marker_2_2_223,Marker pen, a felt-tipped pen used for drawing or coloring. This is a felt tip marker. A piece of felt under the cap makes a mark on paper by spreading the ink that is in the tube. This is a green dry erase marker. This is a glue stick. A magic marker. +food_bag/food_bag_6_1_214,This is a bag of chips. This is a bag of chips. This is a red and black bag of chips. A bag of chips. This is a bag of salted popcorn This is a bag of barbeque potato Pop Chips. Baked goods are cooked by baking. +rubber_eraser/rubber_eraser_2_4_256,This object is to blurry to tell what it is or could be used for. +dry_battery/dry_battery_1_4_143,These are some batteries. This is a battery. A battery. +instant_noodles/instant_noodles_7_1_65,This is a colorful bag of candies. A package of noodles. This is a package of food. It's a package of ramen. It's pink with black text. This is a package of Ramen noodles. This is a package of noodles that you put in water to cook. The package is a small-ish rectangle. It's a bag of some kind of food. +potato/potato_6_1_202,This is a potato. This is a potato. This is a potato. A large baking potato. This is a baking potato. This is a russet potato used for cooking Here sits a potato. It is brown and an oval shape. +shampoo/shampoo_4_4_142,This is a bottle of lotion. It's a bottle of conditioner. The bottle is white with a silver top. This is a body cleanser or body soap. This is a bottle of shampoo or conditioner. A bottle of something which looks like shampoo or conditioner +cell_phone/cell_phone_4_1_22,A cell phone. This is a phone. An old flip style mobile phone +plate/plate_2_2_87,This is a white plate with a blue border. A white plate with blue and baby blue trim This is a white and blue plate. This is a large circular plate that is mostly white with a light & dark blue trim along the rim. +coffee_mug/coffee_mug_1_1_61,This is a mug. A mug which is red and grey in color This is a coffee mug. This is a red mug. The object is a mug that is red white and grey. +lemon/lemon_6_2_54,This is a juicy lemon. This is a yellow lemon. This is a lemon. This is a lemon. A yellow lemon. +instant_noodles/instant_noodles_7_4_212,This is a package of dehydrated soup mix. This is a pack of ramen. This is a package of food, possibly ramen. A package of noodles. +flashlight/flashlight_3_4_82,This is a blue colored flashlight. A blue plastic flashlight. This is a flashlight. It's a blue flashlight. A blue flashlight. +tomato/tomato_3_2_39,this is a fresh tomato This is a tomato. This is a ripe tomato. It's a red tomato with a sticker on it. This is a tomato. +comb/comb_3_2_53,This is a hair brush. This heavy duty brush is sometimes called a wig brush, as its used on heavy or long hair. This is a hairbrush. A hairbrush. This is a hair brush. This is a hairbrush. +binder/binder_2_4_215,A school folder. BLUE PLASTIC FOLDER This is a purple binder. This is a purple folder. This is a purple binder. +sponge/sponge_10_1_215,A kitchen sponge. +sponge/sponge_2_2_187,This is a lime-green sponge. This is a sponge. You use it to clean your dishes. A kitchen sponge. This is a light green kitchen sponge. This is a sponge. +shampoo/shampoo_3_1_36,A bottle of shampoo. This is a bottle of shampoo. This is a bottle of shampoo. This is a bottle of shampoo used to wash your hair. Just get your hair wet, put a dollop in your hand and massage it throughout your hair and then rinse it out. +glue_stick/glue_stick_6_2_212,This is a stick of Elmer's glue. This is a glue stick. A tube of glue. This is an aerosol spray can. +plate/plate_6_4_51,This is a pie. Baked in an oven, pies are made of many different foods. This is a plate with a white paste on it. An empty dinner plate. +coffee_mug/coffee_mug_3_2_20,This is a brown mug. This is a mug. This is a brown tea or coffee cup with a decorative edge near the top edge. The inside is white. It's a dark jug. A coffee mug. +ball/ball_5_1_96,A nerf football. A football with laces up. This is a toy football. A brown football This is a football. +keyboard/keyboard_5_4_139,A black dell keyboard kept on some stool like thing This is a computer keyboard. It's a black keyboard. This is a keyboard used for a computer. This is a keyboard. This is a PC keyboard This is a keyboard, used to type on a computer That is a Dell computer keyboard. +mushroom/mushroom_3_2_154,This is a peeled potato. +toothpaste/toothpaste_3_2_30,This is a tube of Ultra brite toothpaste. A tube of toothpaste. This is a tube of toothpaste. With a small brush, this paste is used to clean a human's teeth. This is a tube of toothpaste. This is a tube of toothpaste. +water_bottle/water_bottle_3_4_178,This is a bottle of water. This is a bottle of water. A plastic water bottle. This is a bottle of water. A small bottle if mineral drinking water +shampoo/shampoo_6_1_213,This is a bottle containing a hair product or other personal care product. A bottle of shampoo. This is a plastic container. It may dispense shampoo, conditioner, hand lotion, or many other substances. It's a bottle of conditioner. The bottle is yellow with a green cap. This is a bottle of body wash. This is a bottle of children's shampoo and body wash. It is yellow with a green lid. This is a plastic bottle that is yellow with a green lid. +plate/plate_6_1_64,This is a round yellow plate. The yellow is a mustard type of color and the edges of the plate have a little design. An empty dinner plate. This is a brown plate. It is a yellow colored plate with a raised pattern around the rim. This is a plate. +instant_noodles/instant_noodles_1_2_79,This is a package of Ramen soup. This is a package of food. A package of Ramen noodles. +food_jar/food_jar_5_4_15,A jar of something which looks like pickle A jar of peppers. This is a jar of pickles. This is a jar of peppers. It's a jar of Vlasic Pickles. It has a blue label and a blue rim on the cap. +hand_towel/hand_towel_3_1_43,This is a sage green hand towel that is folded in quarters. This is a green towel. A bath towel. It's a folded green washcloth. A green wash cloth. A micro fiber cloth. +ball/ball_4_2_88,a basketball shaped toy This is a fake toy basketball. It's a small inflatable toy basketball. A nerf basketball. +food_can/food_can_1_1_135,A can of food with the back of the label facing toward you. This is some kind of canned food. It's a can of evaporated milk. This is a can. +sponge/sponge_11_2_250,This is a bright green scrubber. The pot scrubber is green. It's a green dish scrubber. +dry_battery/dry_battery_3_4_125,This is a battery. +dry_battery/dry_battery_3_2_52,A tube of glue. This is a battery. This is a AA battery. This is a small battery. Electrical charge is stored in this, and is called a AA. +bowl/bowl_1_1_179,It's a bowl which is gold outside and red inside. An empty dinner bowl. This is a bowl. A brown striped pie dish that is red on the inside. The dish is empty. This is a red and brown ceramic bowl. +flashlight/flashlight_2_2_128,a red flashlight This is a red flashlight. A red flashlight. This is a red flashlight. A red plastic flashlight with a black button. This is a battery operated flashlight That is a red flashlight. +comb/comb_1_4_179,This is a hair brush. It's a silver and black hairbrush with stiff bristles. This is a hairbrush. This is a black hair brush with a silver handle. It is a hairbrush that is mostly black with some silver. +shampoo/shampoo_1_1_236,This is a bottle of shampoo or conditioner. A bottle of shampoo. This looks like a bottle of shampoo with a silver lid in a clear bottle. A white plastic bottle with a gray lid. This is a bottle of conditioner. It is the bottle contains shampoo which is used while we take bath. This is a bottle of hair shampoo +water_bottle/water_bottle_4_1_160,This is a bottle of water. This is a bottle of water. This is a bottle of water. A plastic water bottle. This is a bottle of flavored water. This is a bottle of water. A bottle of water This is a bottle of flavored water. +toothpaste/toothpaste_5_2_175,This is a tube of toothpaste. This is a tube of toothpaste. It's a tube of Crest toothpaste. It's blue and green. This is a tube of mint toothpaste. A tube of toothpaste. +food_box/food_box_3_1_228,This is a box of some sort of Fiber One brand snack, it looks like a Pop-Tarts box, so they must be toaster pastries. A box of fiber pop-tarts. A package of Fiber One pastries. This is a box of FiberOne bars. This is a box of Fiber One. +toothbrush/toothbrush_1_4_32,This is a toothbrush. This is a toothbrush. It's a red and white toothbrush. This is a tooth brush. A toothbrush. +apple/apple_2_4_32,A red apple. This is a red apple. This is an apple. This is an apple. a red apple +onion/onion_5_1_125,This is a red onion. This is a red onion. The object is a purple onion. This is an onion. A purple onion. This is a red onion that is unpeeled. This is a red onion A large red onion. +food_can/food_can_7_1_1,This is a can of soup. This is the back of a can with a pull tab, the label is red and white so it's probably Campbell's brand. This is a can of soup. This is a can of soup. A can of soup. +flashlight/flashlight_5_1_90,This is a yellow and black flashlight. This is a device called a flashlight. Powered by batteries, it produced visible light. A yellow flash light. This is a flashlight. This is a flashlight. +cereal_box/cereal_box_5_4_136,It's a box of Honey Graham Crunch cereal. The box is red and white. A box of cereal. This is a box of cereal. This is a box of cereal. This is a box of Honey Graham Crunch cereal. +shampoo/shampoo_5_1_260,This looks like the back of a bottle of shampoo. Judging by the shape it might be Suave brand, and the color is pink so it's probably scented. It's a bottle of shampoo with pink liquid inside of it. A bottle of shampoo. This is a bottle of shampoo. It is a skinny plastic bottle with a pink liquid inside. There is some black text on it and a upc barcode. +lightbulb/lightbulb_4_4_163,This is a lightbulb. A light bulb. It's a light bulb. This is a light bulb. This is a light bulb. +plate/plate_1_2_42,A yellow colored jelly like sweet This is a bowl. This is a ceramic plate. This is a lemon meringue or pudding. This is a ceramic plate. It is yellow. Plate is a broad, mainly flat vessel commonly used to serve food. +lightbulb/lightbulb_1_2_33,This is an led energy efficient lightbulb. This is an object when placed into a lamp, gives light. They are fragile. This is a light bulb. curly Q white efficiency bulb It's a compact fluorescent light bulb. +orange/orange_4_4_87,This is an orange. This is an orange. This is an uneaten orange. The object is an orange. An orange. +food_box/food_box_4_1_133,A yellow box of oreo snack. This is a box of Oreo Funnels. A box of Oreo cookies. It's a box of Golden Oreo Funstix. The box is mostly yellow. This is a box of Oreo FunStix. +pear/pear_2_4_163,A yellow pear. This is a pear that is slightly over ripe. This is a pear. This is a piece of fruit. +banana/banana_3_4_123,This is a banana. This is a banana. This is a banana. This is a banana. This is a banana. It is an edible fruit in the berry family, and can be eaten raw or cooked. Banana bread tastes awesome! +sponge/sponge_2_2_163,This is a sponge. It is usually used to clean as it holds water in its little holes. This is a sponge. This is a lime green sponge. This is a green sponge. A kitchen sponge. +food_can/food_can_10_2_120,A can of fruit. Del monte canned peaches. This is a can which possibly contains fruit. A can of fruit. This is a can of something. +sponge/sponge_12_1_4,A kitchen sponge. This is a sponge. It is usually used to clean as it holds water in its little holes. It looks like a bean-shaped piece of playdoh. It is blue. This blue cish scrubby is perfect to fit in your hand and scrub the dishes. It is often used to get stuck on food off the dishes before putting them in the dishwasher. +glue_stick/glue_stick_3_1_51,This is an Elmer's glue stick. They are necessary for school projects. Glue sticks are solid adhesives in twist or push-up tubes. This is a spray can. This is a glue stick. +kleenex/kleenex_5_4_46,A box of tissue. Kleenex or puffs, facial tissue. It is a tissue box that is rectangular. It is mostly red with a white swirl pattern on it. A box of kleenex. This is a box of facial tissues. This is a box of tissues. +water_bottle/water_bottle_2_2_76,A plastic water bottle. This is a bottle of water. This is a bottle of water. This is a clear water bottle. This looks like a bottle of water. It is filled with clear liquid, has a white cap, and the label is blue. +binder/binder_3_4_207,This is a binder , maybe a 3 ring binder, you can keep any kind of paperwork in it. A black colored folder/file This is a binder. This is a binder. This looks like a hard cover book. It could be a journal. This is a black binder. This is a binder, used to keep papers together +bell_pepper/bell_pepper_5_1_3,A green pepper, usualy found in salads or fried potatoes. A green bell pepper. A mild pepper. This green bell pepper can be stuffed with sausage and onions for a delicious appetizer. This is a green bell pepper. A green pepper. It is a green bell pepper. This is black. A bell pepper is a hollow green, red, or yellow vegetable with seeds. +food_can/food_can_3_1_247,It is a red and white can of food. A can of soup. This is a can of soup. This is a can of Campbell's soup. A can of food with a red and white label, and a nutrition chart. This is a can of spaghettios snack Food Can is container for the storage of Foods. This is canned food. +lime/lime_1_2_29,A green lime. This is a green lime. This is some sort of round green fruit. +dry_battery/dry_battery_6_1_13,It's a large alkaline battery. A battery. This is a battery. +glue_stick/glue_stick_4_2_132,This is a glue stick. This is a cooking spray. A tube of glue. A glue stick. This is a glue stick. +food_can/food_can_11_1_245,It's a can of food with a red and white label. This is a can of soup. This is a can of soup. A can with a predominantly white label, that has a red strip across the top. The metal part of the can is gold. This is a can of soup. +instant_noodles/instant_noodles_5_1_111,This is ramon soup mix. A package of noodles. Here is an orange bag of food. It's a bag of something. +calculator/calculator_2_2_95,This is a calculator. This is a calculator. This is a black calculator. Black, roughly square shaped, with muilti-colored buttons in the center, and small LED screen at top. A calculator. +instant_noodles/instant_noodles_3_2_162,This is a package of food. The object looks like a pack of noodles. The package is white green and red. A bag of frozen vegetables. +water_bottle/water_bottle_3_2_21,This is a clear water bottle. It is a plastic bottle of water. The label is blue with some green. This is a bottle of water. A plastic water bottle. This is a bottle of water. +binder/binder_1_1_73,This is a 3 ring red binder. This is a red binder. A school folder. This is a binder. A red folder +pliers/pliers_1_4_99,This is a pair of pliers. A pair of pliers. These are pliers. It's a pair of pliers with blue handles. A cutting player +food_bag/food_bag_1_1_13,Chips are my favorite after dinner snack. The object is white bag of crisps. The bag has orange and brown labels. This is a bag of what looks like miniature rice cakes, I can't tell what brand. A package of chips. Here is a small, blue and orange bag of crunchy snacks. +keyboard/keyboard_3_4_127,A computer keyboard. a computer keyboard A black computer keyboard. It doesn’t look attached to a computer. This is a computer keyboard. This is a black keyboard. +lightbulb/lightbulb_1_1_51,This is an energy efficient CFL light bulb. It's a compact fluorescent light bulb. It is an energy savings light bulb. It is mostly white with the glass part swirling around, and the gold part that screws in. This is a fluorescent light bulb. A florescent light bulb. +notebook/notebook_5_2_255,This is a black spiral bound notebook. A writing notebook. This is a notebook. This is a hardcovered black notebook. It's a black spiral bound notebook. +water_bottle/water_bottle_3_4_70,This is a bottle of water. A plastic bottle of drinking water with a blue label. a small bottle of mineral water This is a plastic bottle of water. The object is a bottle of water with a white cap and blue label. +water_bottle/water_bottle_7_2_58,A plastic water bottle. It's a bottle of water. This is a bottle of water. This is a plastic bottle. It looks to be holding water, but can be re-purposed. This is a clear water bottle. That is a bottle of water. This is a bottle of arrowhead watter This is a plastic water bottle +comb/comb_1_4_193,It's a black and silver hairbrush with stiff bristles. This is a brush used to brush your hair. this is a hair brush that you comb your hair with This is a hairbrush. This is a hair brush. +cereal_box/cereal_box_2_2_98,This is a box of food. A box of Chex mix. This is a box of food. This is a box of Chex cereal. A box of cereal. +peach/peach_3_4_252,This is a peach This is a peach. It's a white peach. It's mostly cream and pink. This is a ripe peach. Apples are fruit that grow on trees. +bell_pepper/bell_pepper_6_1_42,This is a green pepper. A green pepper. It's a green pepper. This is a green bell pepper. It is a green bell pepper that is on its side. +pear/pear_7_4_167,A pear. An apple This is an asian pear. +shampoo/shampoo_2_2_17,This is a container for a body product or a hair product. This is a bottle of shampoo. A bottle of toiletry It is a predominantly white plastic bottle with a white substance in it. This is a bottle. That is a plastic bottle. The above is a bottle of hair conditioner. This is a plastic bottle. The product inside is white. +keyboard/keyboard_3_1_79,This is a computer keyboard. Used as an input device, it is part of a desktop computer. This is a computer keyboard. This is a black computer keyboard. A computer keyboard. This is a keyboard, which is used for typing on a desktop computer. +ball/ball_3_1_76,A nerf baseball. This is an inflated baseball. Balls are used to play ball games. This is a baseball. +potato/potato_2_1_152,A red potato. This is a red potato. This is a brown ball. The potato is a starchy, tuberous crop. This is a red potato. +cap/cap_2_2_108,This is a camouflaged baseball cap. This cap should belong to a hunter. This is a baseball cap in camo print. This is a camoflauge ball-cap. An army hat. This is an army hat. +plate/plate_5_4_153,This is a ceramic plate. It is a white plate. This is a plate. An empty dinner plate. This is an all-white plate. This is a plain white plate This is a white plate. This is a white plate. +kleenex/kleenex_2_1_226,A pink square cardboard box of tissue. It's a box of Kleenex with a pink design on it. It is a smaller tissue box. It is square with a pink pattern. This is a box of tissues. This is a box of facial tissue. +garlic/garlic_2_1_59,This is a bulb of garlic. A clove of garlic. a garlic bulb This is a clove of garlic. +notebook/notebook_3_1_156,This is a spiral bound notebook. This is a white-spiraled notebook. a spiral notebook This is a spiral notebook. The cover is green & white. A writing notebook. +lime/lime_2_2_198,This is a sweet fruit called an avocado. It can be eaten raw or cooked. A green lime. This is a green lime. This is a lime. This is a lime. A lime. This is a green, oval citrus fruit. It is small enough to hold two or three in your hand +plate/plate_7_2_231,It is a white plate with nothing on it. This is a white plate. An empty dinner plate. This is a white plate. This is a bowl. The bowl is white. +food_box/food_box_11_4_139,A box of Cheez-It. A BOX OF CHEEZ IT i BELIEVE IT'S WHITE CHEDDAR This is a box of Cheeze- its. This is a red box of Cheez-it's. This is a box of Cheez-Its. +rubber_eraser/rubber_eraser_3_2_109,It's a pink eraser. This is a pink eraser. A pink rubber eraser. A pencil eraser. This is an eraser. +rubber_eraser/rubber_eraser_4_2_209,This is an eraser. This is a rubber eraser. This is a standard pink pencil eraser. This is an eraser. It's a hard rubber gum used to remove pencil markings on paper. A pencil eraser. +kleenex/kleenex_1_4_53,This is a box of facial tissue. This is a box of tissues. This is a small box of tissues. It's a box of Kleenex with a grey design on the box. This is small Kleenex box. It's a little more compact. +camera/camera_1_4_143,It's a disposable film camera. This is a camera. A disposable camera. This is a camera. This is a camera. +food_jar/food_jar_5_1_99,A glass jar of banana peppers. A jar of peppers. This is a jar of some sort of pickled vegetable. It looks too yellow to be cucumbers, so I'm guessing it's pickled bell peppers. This is a jar of pickled peppers. This is a jar of peppers. +food_can/food_can_7_4_37,This is a can of soup. This is another can of soup. This is a can of food. A can of soup. It's a can of soup. It's red and white with a pull tab. +food_cup/food_cup_3_2_48,A container of yogurt. It's a container of Yoplait yogurt. This is a container of yogurt. It's a can. This is a container of yogurt. +food_jar/food_jar_4_1_186,A jar of Alfredo sauce. This is a jar of pasta sauce. This is a jar of white pasta sauce. This a jar of white sauce. This is a jar of alfredo sauce. +food_can/food_can_10_4_102,This is a can that may contain food. It's commonly called a tin can, and can be easily opened pulling the ring on the pop top. It's a can of food with a yellow label. This is a can. A can of soup. That is a can of food. This is a can of stored fruit This is an unopened can with a flip top. +food_can/food_can_4_2_100,This is a can of soup. This is a can. Canning foods in aluminum cans is a cheap way to preserve them. This is a can of food. A can of condensed milk. +cell_phone/cell_phone_2_4_73,It's a white and black cell phone. The object is a small phone with a dialing pad. A flip cellular phone. This is an older cell phone. This is a cell phone. +food_jar/food_jar_6_1_173,It's a jar of jelly with a silver lid. This is a jar with a silver lid. This is a jar of jam or jelly. This is a jar of jam. A jar of jelly. +camera/camera_2_4_153,a camera This is an old camera with a yellow tag hanging on it. This is a camera. A digital camera. It's a digital camera. +notebook/notebook_5_2_249,This is a black-spiraled notebook. A writing notebook. This is a spiral bound notebook. +food_box/food_box_8_1_215,It is a cardboard box with six sides. It is mostly blue with some yellow text. This is a box of crackers. It's a box of crackers. The box is mostly blue. The object is a blue box. The box is advertising crackers and spray cheese. A box of crackers. +calculator/calculator_2_4_166,A big brown caculator A round plastic object with a screen on top. The object also has buttons that can be manipulated. This is a calculator. This is a calculator used to solve mathmatical problems quickly. This is a calculator. +glue_stick/glue_stick_4_2_187,A tube of glue. This is a can of spray. This is a glue stick. +glue_stick/glue_stick_2_4_184,This is a bottle of aspirin. A tube of glue. +food_can/food_can_13_1_57,This is a can of soup with the ingredients listed on the label. A can of soup. This is an aluminum can. It looks like a can of soup. Food is stored in cans like this. This is a can that may contain food. It's commonly called a tin can, and can be easily opened pulling the ring on the pop top. This is a can of soup. Here sits a can of soup. That is a can of food. +dry_battery/dry_battery_2_1_50,This is a battery. It's a yellow and black battery. This is a battery. This object is a cyllinder shape. It has a yellow label and a black or dark brown cap. +hand_towel/hand_towel_5_2_189,This is a black towel. This is a small black towel. A black folded towel. A wash cloth or towel. It is black in color +sponge/sponge_10_1_212,A kitchen sponge. That is a lemon. +onion/onion_1_1_221,It's a white onion. This is a white onion. This is a white onion. This is a white onion. +instant_noodles/instant_noodles_1_1_119,This is a package of food. A package of noodles. A bag that looks like it has a red holiday design A pack of something which looks like sncaks +calculator/calculator_4_4_171,This is a light green calculator. This is a calculator. It's a bright green calculator. This is a green calculator. This is a neon green calculator. +lime/lime_2_1_176,It's a lime with a sticker on it. This is a lime. A green lime. a green lime This is a lime. +stapler/stapler_6_2_169,This is a stapler. This object is a tool that when pushed down on a stack of papers, releases a metal staple which holds the papers together. From the pressure being exterted on the tool, the metal staple's prongs are bent which holds it in place. This is a stapler. A black stapler. The object is a black stapler. +bell_pepper/bell_pepper_5_4_6,This is a green bell pepper. a green bell pepper A green pepper. This is a green pepper. It is a green pepper. +ball/ball_3_1_199,This is an object of a soft ball. The object is soft, has red threads and is round. A baseball This looks like a white baseball with red threading. A baseball. +bowl/bowl_4_2_62,This is a bowl. A white ceramic bowl. This is a small ceramic bowl. It is white. A white bowl, looking as if it was newly washed. A bowl +flashlight/flashlight_3_2_132,This is a flashlight. This is a flash light. This is a device called a flashlight. Powered by batteries, it produced visible light. A blue flash light. a flashlight Here we see a flashlight. This is a blue flashlight. +apple/apple_4_2_111,It's a yellow apple. This is an apple. This is a golden apple. This is an apple. A yellow apple. +pliers/pliers_4_1_184,This is a pair of pliers. This is a black pliars. The object is a pair of pliers with black handles. A pair of pliers. These are pliers with a red and black handle. +food_can/food_can_14_1_92,This is a can of soup. This is a can of a food product. It's a can of soup. The can is red with a green rectangle. This is a food container, commonly called a tin can. It is easily opened by pulling on the pop-top lid covering one end. This is a can of soup. +scissors/scissors_4_2_179,This is a silver scissors. This is a pair of scissors. It's a pair of scissors with blue and yellow handles. These are scissors used for cutting things. Scissors with a yellow and blue handle. +lemon/lemon_4_1_81,A yellow lemon. It's a lemon. This is a tart fruit called a tomato. It can be eaten raw or cooked. This is a yellow lemon. This is a lemon. This is a lemon. This is a yellow lemon a fruit that is bitter and sour +shampoo/shampoo_5_1_105,This is a cheap bottle of shampoo. This is a plastic bottle. The contents inside are pink. This is a bottle of shampoo. This is a bottle of body wash. A bottle of shampoo. This is a bottle of Suave shampoo. This is a bottle of body wash +comb/comb_2_2_30,A black comb with oval head This is a hair brush. It is used to de-tangle a person's hair. This is a hairbrush. A black hair brush. This is a hair brush. +glue_stick/glue_stick_1_2_170,This is a glue stick. It's a tube of glue. It has a white and green label and a red cap. A tube of glue. a glue stick this is super glue you use this if you break something to fix it. +sponge/sponge_5_1_124,This is a red and blue sponge. This is a sponge. A colorful sponge This is a sponge. It's blue and red and is used for cleaning. A kitchen sponge. +instant_noodles/instant_noodles_1_2_238,A packet of asian looking food This is a package of food. Cookie or pastry of some kind wrapped in foreign packaging and lettering. This is a package of food. A snack package. This is a bag of Ramen soup mix. It is the sweet desert cake that typically baked. This is a package of instant ramen +water_bottle/water_bottle_9_4_225,A plastic water bottle. This is a beverage container. This is a blue water bottle. This is a purple water bottle. This looks like a reusable water bottle with a handle and a flip up pour spout. The lid is lilac colored. +glue_stick/glue_stick_1_4_162,This looks like chapstick. A tube of glue. +food_box/food_box_9_1_8,A green cardboard package of Annie's pasta. The box of cracker is green. This is a box of pasta. It's a box of Sour Cream and Onion crackers. The box is green. This is a box of crackers. This is a box of Annie's brand snacks Food Box is a container for the distribution or storage of goods. It's a green box of something +stapler/stapler_4_4_205,This is a stapler. This is a stapler. This is a stapler. It joins two or more pieces of paper together. A black stapler. This is a black stapler. +food_box/food_box_11_4_202,This is a box of crackers. A box of Cheez-It. This is a red box of Cheez-it's. This is a box of cheez-its. This is a box of Cheez-Its. +food_bag/food_bag_4_1_252,This is a bag of Oreo cookies. A bag of oreos It is a bag of mini oreos. The bag is blue with white and yellow text. A package of Oreo cookies. This is a package of cookies. +food_jar/food_jar_6_2_116,This is a jar of hot fudge. This is a jar. The jar contains hot fudge. This is a jar containing a food product. A jar of jelly. Cylinder shaped object with a metal top and a colored label in center +cell_phone/cell_phone_1_1_73,This is a mobile phone. This is an older cellphone. This is a handheld phone. This is an old cell phone used to call and text people. A cell phone. +soda_can/soda_can_4_1_195,This is a can of Vanilla Coke Zero. This is a can of vanilla Coke Zero. A can of Coke. Food Can is used to store or keep food items. This is a can of Coca-Cola. This is an opened can of Coca-Cola Zero. This is an open can of CocoCola Vanilla Coke Zero. IT is mostly black. This is a can of vanilla coke zero. +bell_pepper/bell_pepper_6_4_90,This is a green pepper. This is a green bell pepper. A green pepper. a green bell pepper This is a green pepper. +potato/potato_5_1_106,This is a oblong, brown, dirty, vegetable. This is a potato. Usually cooked before being eaten, it's a starchy vegetable. This is a potato. A large baking potato. This is a potato. +stapler/stapler_8_1_203,This is a small red stapler. A small red stapler. This is a small red stapler. This is a stapler. This is a mini stapler. The back of a red stapler. This is a red stapler, used to keep pages together That is a red stapler. +dry_battery/dry_battery_5_4_117,These are batteries. This is a battery. This is a small battery. A battery. This is a small battery. Electrical charge is stored in this, and is called a D-Cell. +ball/ball_4_1_240,A dessert on a plate. This is a plastic basketball. This is a basketball. +potato/potato_2_2_33,This looks like a small red potato. A red potato. +notebook/notebook_5_4_196,This looks like sand paper. This is a black spiral bound notebook. This is a note pad. A writing notebook. This is a black spiral notebook +hand_towel/hand_towel_2_2_47,It's a red washcloth. This is a small red towel. A RED SQUARE ON TOP OF A PLATE A folded towel. +cell_phone/cell_phone_5_4_73,This is a smartphone. This is a smart phone. A smartphone. A cell phone with dots on either side. Cell phone, is a portable telephone that can make and receive calls. +food_bag/food_bag_8_2_35,A bag of chips. This is a bag of Sun Chips. a bag of sun chips A pack of sun chips This is a bag of Sun Chips. This is a bag of french onion Sun Chips. This is a green bag of Sun Chips. The flavor is French Onion. +lemon/lemon_5_2_157,A yellow lemon. A lemon lying on its side, it is mostly yellow but has a green patch near one end. This is a lemon with a green spot on it. This is a lemon. This is a lemon. +bell_pepper/bell_pepper_4_1_135,This is a red bell pepper. It's a red bell pepper. A red pepper. This is a red pepper. This is a red bell pepper. +pliers/pliers_3_4_133,This is green pliars. This is a pair of pliers. A pair of pliers. This is a pair of pliers. The object is a pair of pliers with light green handles. +greens/greens_4_2_256,this is bell pepper This is a vegetable, possibly bok choi or another type of cabbage. Bok Choy on a plate. This is some type of green vegetable. +sponge/sponge_9_4_216,A kitchen sponge. +food_can/food_can_4_1_136,This is a can. A can of condensed milk. This is a canned good of food. It's a can of carnation milk. It is a small can with a white label. This is a can of a product. +coffee_mug/coffee_mug_3_1_160,This is a mug. A coffee mug. This is a brown coffee mug. This is a coffee mug. The object is brown, has a handle and a hole in its center. +glue_stick/glue_stick_5_2_217,This is a marker or glue stick. This is a glue stick. A marker pen A tube of glue. +food_can/food_can_5_4_267,A can of soup. A can of some food This is a can of food. This is a can of soup. It's a Market Pantry can of soup. It has a red and white label. It is aluminum can. It appears to be either canned soup or canned vegetables. That is a can. +orange/orange_2_4_107,An orange. This is a piece of fruit. This is a round orange sitting alone. This is an orange. +food_bag/food_bag_4_2_129,This is a bag of mini Oreo cookies. This is a snack sized bag of mini oreo cookies. They are chocolate cookies with cream filling in the middle. This is a bag of Oreo cookies. It's a bag of Oreos. It's a bag of Mini Oreos. It is blue with yellow and white text on it. +shampoo/shampoo_6_4_192,A bottle of shampoo. This is a yellow plastic bottle. This is a bottle of children's shampoo. This is a green and yellow bottle of shampoo. +shampoo/shampoo_2_4_253,This looks like a spray bottle. Blue shade color that might be part of a bottle. +garlic/garlic_3_1_47,This is a bulb of garlic. This is a garlic bulb. A clove of garlic. This looks like a clove of garlic used as a seasoning and has many health benefits. This is garlic. This is bulb of garlic, used for cooking This is a white onion. +cell_phone/cell_phone_3_4_3,This is a mobile phone. A cell phone. Looks to be a flip phone. Flip cell phones are an antiquated technology. This is a flip phone. No one uses these anymore. +kleenex/kleenex_5_2_175,A box of kleenex. This is a box of facial tissue. This is a box of tissues. This is a purple box of tissues. It's a box of Kleenex with a red design. +notebook/notebook_2_2_35,A sketch book of 70 pages This is a sprial notebook of paper. 70 ruled sheets of paper are bound together by the wire spiral, and used by humans to write on. It's a yellow spiral bound notebook. This is a spiral bound notebook. A writing notebook. +mushroom/mushroom_2_2_242,A mushroom. A mushroom is the fleshy, spore-bearing fruiting body of a fungus. This is a mushroom. This is a mushroom. This is a mushroom. +cell_phone/cell_phone_2_2_78,This is a mobile phone. an old mobile phone A cellular flip-phone. An older model cell phone. This is a cellphone. +pear/pear_8_1_34,This is a green apple. This is a yellow apple. This is an apple. This is a small green apple. A yellow colored apple +lime/lime_1_4_119,A green lime. This is a green lime. This is a lime. This is a lime. It's a lime with a produce sticker on it. +lemon/lemon_6_4_87,It is a yellow lemon. It is shaped like a football. This is a sweet fruit called a lemon. It can be eaten raw or cooked. A yellow lemon. This is a lemon. This is a lemon. This is the citrus fruit, lemon This is a lemon. This is a lemon. +pear/pear_1_4_132,This is a pear. A pear. This is a green pear. A fresh pear with a few brown spots on the peel. This is a pear. +potato/potato_5_1_48,A russet potato. This is a potato. A large baking potato. This is a potato. It's a brown russet potato. +marker/marker_1_1_224,This is a marker. It is used on dry-erase boards. This is a red dry erase marker. This is a red dry erase marker. This is a red Expo marker with the cap on. A magic marker. Here is a marker +onion/onion_4_2_197,Onion is a vegetable. A white onion. This is an onion. This tasty vegetable has a sharp flavor, and us usually cooked. This is an onion. This is an onion. +sponge/sponge_6_4_139,A sponge is a tool or cleaning aid made of soft, porous material. This is a yellow and purple sponge. A kitchen sponge. This is a kitchen sponge. +orange/orange_1_2_22,This is an orange. This is an orange it is a fruit that is mostly grown in Florida This is an overripe orange. An orange. This is a piece of fruit. +food_box/food_box_3_1_54,A box of Fiber One pastries. This is a box of fiber cereal. This is a box of FiberOne bars. This is a Fiber One product. This is a box of Fiber One. +lemon/lemon_3_2_176,A yellow lemon. This is a lemon. This is a yellow lemon. A fresh lemon. A lemon +tomato/tomato_4_1_126,This is a red tomato. This is a tomato. This is a tomato. A red tomato. This is a tomato. +garlic/garlic_3_2_167,A clove of garlic. This is a bulb of garlic. This is a bulb of garlic. This may be a clove of garlic used for cooking. +camera/camera_3_1_100,This is a camera. A digital camera. this is a camera a pocket digital camera This is a digital camera. +food_box/food_box_2_4_130,This is a box containing dry rice that will need to be prepared before being eaten. A pack/box of something This is a box of Zatarrain's rice. A box of highly processed food with a red and white label and a picture of yellow food on the box. It is a box of Zatarain's Yellow Rice mix. The box is red and white. Here is a box of dry noodles +peach/peach_1_1_57,This is a peach. This is a piece of fruit. A peach. This looks like a nectarine, but the picture is a little blurry, it could be a peach. This is a fresh peach. +food_jar/food_jar_5_1_177,a jar of relish This is a jar of peppers. A jar of peppers. This is a jar of pickles. This is a jar of pickles. This is a jar of some food product. It has a lid which appears to snap on. This is a medium sized glass jar of food with a vacuum lid, It appears to be unopened and has a blue, red, and white label +scissors/scissors_1_4_137,This is a pair of scissors. This is orange and grey scissors. A scissor This is a pair of scissors. Scissors with an orange and black handle. +notebook/notebook_4_4_266,A writing notebook. This is a spiral bound notebook. This pad of paper is held together by the wire spiral at one side. This a blue-spiraled notebook. It's a blue spiral bound notebook. This is a blue spiral bound notebook. +flashlight/flashlight_1_1_147,This is a flashlight. This is a black flashlight that is not currently illuminated. A black flashlight. this a black flashlight. This is a black flashlight. +toothpaste/toothpaste_3_1_162,This is a tube of toothpaste. This is a tube of toothpaste. This is toothpaste. It keeps your teeth clean. A tube of toothpaste. It's a tube of toothpaste. It's blue and white. This is a tube of toothpaste. The tube is blue with white letters. This is a tube of toothpaste This is a tube of Ultrabrite toothpaste. +potato/potato_1_2_198,A red potato. This is a red potato. This is a fruit or vegetable. It is a brown color. This is a red potato, used for cooking +flashlight/flashlight_5_2_152,It's a yellow and black flashlight. This is a black and yellow flashlight. This is a yellow and black flashlight. a yellow and black flashlight This is a yellow flashlight. +banana/banana_3_2_1,This is a banana. This is a yellow banana. A banana on a plate. It's a banana. This is a banana. +onion/onion_4_1_73,The object is round, off white and has a tuft on the topside. This looks like an onion, the root side is up and part of the tan skin has bene torn off. This is an onion. An onion which looks decayed This onion appears to be brown & yellow with brown roots. +dry_battery/dry_battery_4_4_114,This is a battery. This is a small battery. Electrical charge is stored in this, and is called a D-Cell. A battery. This is a small duracell battery. +bowl/bowl_2_2_61,This is a bowl. Normally used for soups or deserts, it is part of a table setting. This is a bowl. This is a light blue bowl. The edges look worn. This is a teal-colored bowl. An empty dinner bowl. +food_can/food_can_1_4_117,This is a can. We can't tell what's inside. This is a can. A can of soup. This is a canned good. This is a can with some product in it. +onion/onion_3_4_132,A white onion. There is a small onion that is a yellow onion. This is an onion. This is an onion. +food_can/food_can_1_1_117,A can of condensed milk. This is a can of soup. A can of paint holds a liquid covering. Paint can cover many surfaces. This is a can of food. +shampoo/shampoo_4_4_114,A tall Suave shampoo bottle with a gray lid. This is a bottle of shampoo. A bottle of shampoo or conditioner A bottle of Suave shampoo. +bell_pepper/bell_pepper_4_4_202,This is a red bell pepper. This is a red bell pepper. This is a red bell pepper. A red pepper. The bell pepper is a vegetable. +sponge/sponge_1_2_122,This is a sponge. This is a sponge. This is a sponge. It's an orange dish sponge. A kitchen sponge. +food_can/food_can_2_4_67,This is a can of Campbell's soup. a can of some This is a can of soup. This is a can of Campbell's soup. A can of soup. That is a can of Campbell's soup. This is an unopened can of Campbell's soup with a flip top. +food_cup/food_cup_2_4_4,This is a cup of yogurt. This looks like a container of yogurt, it has a foil top and I can't see the label. This is a container of yogurt. A container of yogurt. This is a container of yogurt. +bowl/bowl_4_4_177,An empty dinner bowl. This is an all-white bowl. This is a bowl. Normally used for soups or deserts, it is part of a table setting. This is a bowl. This is a white bowl. +plate/plate_1_2_4,An empty dinner bowl. This is a yellow ceramic plate. This is either a lemon meringue or yellow jello. This is a plate. +food_box/food_box_8_1_172,This is the b ack of a box of some sort of crackers, I can't tell what brand but the box is blue. A box of crackers. This is a Chicken in a Bisket Box. It is mainly blue. This is a box of crackers. These are little crackers that some people like to put cheese on. +ball/ball_6_1_221,A small beanbag toy that looks like a baketbal.. This is a plastic toy basketball. This is a basketball. This is a ball. The pattern is similar to a basketball. A nerf basketball. +food_cup/food_cup_4_1_120,This is a container of food. A plastic cup of Chobani peach yogurt. This is a container of Chobani yogurt. This is a cup of yogurt. This is a container of peach flavored Chobani yogurt. +marker/marker_8_2_18,This is a marker. A magic marker. +marker/marker_7_1_22,Markers are used to write. This is a marker. This is a pink highlighter. A magic marker. +sponge/sponge_1_4_210,The object is an orange/pink dish washing sponge. This is a sponge. This is a cleaning sponge. A kitchen sponge. This is an orange sponge. +banana/banana_4_1_107,It's a very green plantain. This is a plantain. This is a banana. A plantain on a plate. This is an unripe green banana. +calculator/calculator_3_4_11,It's a white calculator with a green screen and black keys. This is a calculator. A calculator. A Small Handheld Device Used To Do Mathematical Computation. This is a calculator. It is used for math questions. +bell_pepper/bell_pepper_3_2_12,This is a red pepper. A red pepper. A small orange pumpkin, with a big stem at the top. This is a red bell pepper. This is a red bell pepper. +garlic/garlic_2_4_121,A bulb of garlic This is a bulb of garlic. That is garlic. one whole onion with outer wrapper removed +glue_stick/glue_stick_3_4_214,This is a spray can. Glue sticks are solid adhesives in twist or push-up tubes. A tube of glue. +binder/binder_3_1_186,This is a binder. A school folder. This is a black binder. A black folder This is a black binder. +sponge/sponge_12_2_60,A blue sponge can be used for cleaning dishes. This is a blue pincushion. A kitchen sponge. +bowl/bowl_5_1_32,This is a bowl. The object is a kitchen bowl. An empty dinner bowl. This is a white and black bowl. It's a bowl with black stripes around the inside. +pliers/pliers_4_1_4,The plyers are open. This is a pair of pliers. This is a pair of pliers. A pair of pliers. These are pliers. +food_box/food_box_9_4_189,This is a green box containing food, probably pasta. green box with bunny logo A box of crackers. This is a green box. It has a bunny on it. +stapler/stapler_6_2_95,This is a black stapler. A black stapler. This is a stapler. This is a stapler. A stapler is a mechanical device that joins pages of paper or similar material by driving a thin metal staple through the sheets and folding the ends. +glue_stick/glue_stick_6_2_25,This is a glue stick. This is a can of cooking spray. There is a canister of what looks like glue stick. A tube of glue. This is a stick of Elmer's glue. +food_can/food_can_8_4_104,This is a can of Rotel, it is a combination of tomatoes and perppers, mostly used as a topping or added to cheese to make nachos. This is a can of tomatoes. A can of Rotel tomatoes. This is a can. +apple/apple_1_1_188,This is a dark red apple. It has a sticker on it. This is a red apple. This is a dark red apple. This is an apple. A red apple. +ball/ball_5_1_173,The picture is a small plastic looking toy football. It is brown and white. A nerf football. This is a fake brown football. This is a football. This is a toy football. +ball/ball_7_1_49,A brand new soccer ball. This is a soccer ball. A soccer ball. It is a white round soccer ball. It has black pentagons all around it. The object is a white and black hexagonal soccer ball. +water_bottle/water_bottle_7_4_171,This is a bottle of water. This is a bottle of drinking water. A plastic water bottle. It is a plastic water bottle. The water bottle is unopened. The waterbottle has water in it. It has a cap. +instant_noodles/instant_noodles_4_2_251,A package of noodles. some packet of asian food This is a package of food. This is a package of soup. +apple/apple_3_1_165,A fresh yellow apple with no stem. A fruit which looked like golden delicious A yellow lemon. This is an apple. +mushroom/mushroom_2_4_159,A mushroom. This is a potato used for cooking +sponge/sponge_10_2_143,A kitchen sponge. +cap/cap_4_1_70,A red baseball cap. This is a red baseball cap. This is a red baseball cap. red ball cap This is a red baseball cap. +binder/binder_3_2_50,This is a black binder. This is a black 3-ring binder. This is a black binder. A school folder. It is a black folder. It is very thin and square shaped. +food_jar/food_jar_4_1_244,This is a jar of white pasta sauce. This is a jar of pasta sauce. A jar of Alfredo sauce. This is an unopened jar. The contents are white. This is a jar of alfredo sauce. +sponge/sponge_7_2_71,This is a sponge. A kitchen sponge. It's a yellow sponge with a green scrubbing pad. This is a kitchen sponge. This is a green and yellow sponge. +coffee_mug/coffee_mug_6_1_3,This is a small ceramic bowl. It is dark yellow. This is a bowl. It's a yellow mug with a brown stripe around the edge. A tan coffee cup with a solid brown decorative ring near the top This is a mug. +lime/lime_3_1_86,A green lime. It looks like a green lime with a white patch on top This is a lime. +onion/onion_4_2_170,A yellow onion This is an onion. This is an onion. This is a white onion. A white onion. +garlic/garlic_3_2_15,A bulb of garlic This is a bulb of garlic. A clove of garlic. It's a head of garlic. It is white and purple. +dry_battery/dry_battery_3_2_42,This is a battery. +banana/banana_4_1_165,This is a banana. This is a green banana. A plantain on a plate. This is an unripe banana or plantain. A ripe banana. +calculator/calculator_1_4_11,A calculator. This is a calculater. It is used to perform math. This is a simple digital calculator. Basic math problems can be solved using this electronic device. This is a calculator. This is a calculator. +tomato/tomato_7_4_2,This is a tomato. This is a red tomato. This is a picture of a tomato. Red tomatoes are used to make marinara sauce. This is a sweet fruit called a tomato. It can be eaten raw or cooked. +water_bottle/water_bottle_6_2_27,This is a bottle of water. A small bottle of water It's a bottle of water. It is squarish with a blue cap and blue label. A plastic water bottle. This is a bottle of drinking water. +glue_stick/glue_stick_1_4_146,This is a glue stick. This is a tube of super glue. +shampoo/shampoo_1_4_244,A bottle of shampoo. This is a bottle of shampoo. This is a plastic container. It may dispense shampoo, conditioner, hand lotion, or other substances. This is a body cleanser or body soap. This is a bottle of hair conditioner. Shampoo is used by applying it to wet hair, massaging the product into the hair, and then rinsing it out. +coffee_mug/coffee_mug_2_2_12,This is a dark brown coffee mug. This is a cup or mug. Must often coffee or tea are served in these containers. This is a ceramic mug. A coffee mug. This looks like a coffee or tea mug. The outside looks tan or brown and the inside is too dark to see. This is a mug used for holding coffee or tea This is a brown, ceramic coffee mug. This is a mug. +food_box/food_box_9_2_34,A box of non perishable food. Flavor is, Sour Cream and Onion. It's a box of crackers. It's green with white text on it. This is a box of sour cream and onion bagel chips. A package of sour cream and onion mix. This is a box of food. +plate/plate_3_4_82,It's a white plate with blue stripes around the edge. This is a plate. This is a plate. This is an empty plate. This is a white plate That is a blue and white plate. +bell_pepper/bell_pepper_6_2_98,A green pepper. a green bell pepper This a green bell pepper. This is a green bell pepper. This is a green pepper. +pliers/pliers_3_2_159,This is green pliars. This is a tool that can be used to hold wire together. A pair of metal pliers with green coated handles. This is a pair of pliers. A pair of pliers. +water_bottle/water_bottle_10_4_270,This is a water bottle. A pink sippie cup with a red sippie lid. It's a red water bottle with a label saying BPA Free. This is a red water bottle. A plastic water bottle. That is a plastic beverage bottle. This is a Sippy-Cup, used to drink liquid without opening the lid It is a red plastic water bottle with a dark lid with spout. +instant_noodles/instant_noodles_6_1_55,SQUARE SHAPE PACK OF NOODLES. PACKAGING IS YELLOW WITH RED AND WHITE LETTERS A package of cookies. This is a package of food. This is a package of soup mix. +lightbulb/lightbulb_2_4_194,This is a light-bulb. This is a lightbulb. A light bulb. This is a light bulb. This lightbulb provides light in a residential setting. this is a incandescent light bulb. This is a light bulb. The object is a white light bulb. +flashlight/flashlight_4_1_121,A black flashlight. This is a flashlight. The object is a black flashlight with a yellow button. A bulky black flashlight, with a yellow switch. This is a flashlight. +calculator/calculator_4_1_125,A calculator. This is a green calculator with white buttons. this is a green calculator. a desk calculator. This is a calculator. It's a lime green calculator. +apple/apple_1_2_190,An apple. This is an apple. A ripe, red apple. +keyboard/keyboard_1_1_120,This is a silver and white keyboard. This is a computer keyboard. It's a silver computer keyboard with white keys. A computer keyboard. This is a computer keyboard. +rubber_eraser/rubber_eraser_4_1_190,This is an eraser. +sponge/sponge_4_2_23,This is a purple sponge. A kitchen sponge. This is a sponge. The object is a purple sponge. This is a squeegee. +food_box/food_box_4_1_254,This is a box of Oreo funstix. This is a box of cookie snacks. This is a box of Oreo Funstix. This is a yellow box of Oreo sticks. A package of Oreo cookies. +flashlight/flashlight_2_1_166,This is a red flashlight. This is a red flashlight. This is a device called a flashlight. Powered by batteries, it produced visible light. A red flashlight. This is a black and red flashlight +hand_towel/hand_towel_3_4_242,It's a folded green washcloth. A folded towel. This is a green towel. This is a towel. +food_can/food_can_5_4_218,A can of soup. a a can of some food This is a can of soup. This is a canned good. The label is turned so a description is not doable. This is a can of food. +ball/ball_1_1_27,This is a football. Blurry shape similar to a football. Brown texture with white lines similar to a football. It's an inflatable toy football. It's brown and white. This is a toy football. +tomato/tomato_7_1_145,This is a ripe tomato. This is a tomato. This is a tomato. This is tomato. It's in a lot of foods. A red tomato. +pitcher/pitcher_2_2_60,It's a coffee pot. The pot is silver and black. This is an electric kettle or pitcher for hot liquids. This is a carafe. They are great for coffee. A coffee pot. A thermos jar +toothpaste/toothpaste_4_1_271,This is a tube of toothpaste. The tube is red and white. a tube of toothpaste This is a tube of toothpaste. A tube of toothpaste. It's a red tube of toothpaste. +food_can/food_can_11_2_219,It's a can of soup with a red and white label. A white and red tin can of food. It may be a soup can. This is a can of soup. A can of soup. This looks like Campbell's soup can, but only the side of the label is showing. This is a can of soup from Target's market pantry. This is a can of soup. The label is white and red and the lid is gold. +food_can/food_can_13_4_171,This is a can of soup. An unopened can sitting on the table a can of fruit This is a can. A can of soup. +instant_noodles/instant_noodles_6_2_124,A packaged pastry. This is a package of soup mix. A package of food. Image is too blurry. The noodles are not cooked. A package of Ramen noodles. +glue_stick/glue_stick_5_1_6,It is a blue marker with a white label. A tube of glue. a glue stick with blue top This is a blue marker or glue stick, most likely. This is a glue stick with a blue cap and white label. +ball/ball_2_2_213,This is a soccer ball. A nerf soccer ball. Balls are used to play ball games. This is a soccer ball. +food_cup/food_cup_1_1_59,A container of yogurt. This is an unused yogurt cup. This is a container of yogurt. This is a container of yogurt. This is a small plastic container holding a food called yogurt. Yogurt is a dairy product made using active bacteria. +onion/onion_2_2_135,This is an onion. This is a white onion. This is a white onion. An onion is a root vegetable. A white onion. This is a white onion, used for cooking This is a white onion. This is a white onion. It has a papery outer covering, and it is round. +pitcher/pitcher_1_4_118,A gravy boat. This is a pitcher. It's a white ceramic pitcher with leaf designs painted on it. This is a cream dispenser. This is a dish that can be used to hold and pour liquids such as milk and cream. +sponge/sponge_8_4_196,A kitchen sponge. This is a yellow and blue sponge. This is a sponge. This is a sponge. It is usually used to clean, and has one rough side to scrub items clean. +food_jar/food_jar_3_2_187,A jar of gravy. This is a jar of food. This is a jar of food. This is a jar of gravy. +toothbrush/toothbrush_2_1_79,It's a toothbrush. It's a green and white toothbrush. This is a toothbrush. A green colored toothbrush. +rubber_eraser/rubber_eraser_1_2_31,It's a pencil eraser with a blue and white wrapper. This looks like a battery charger. Used to recharge rechargeable batteries, this device is electrical in nature. +bowl/bowl_5_1_225,White ceramic bowl with black stripes on the inside. This is a ceramic bowl with a blue stripe design. An empty dinner bowl. This is a white ceramic bowl. This is a glass bowl for eating food. +marker/marker_7_2_185,This looks like a bright pink highlighter but the cap and bottom look black, I can't read the brand name. A device or gadget of sorts? Pink in color. This is a felt tip marker. Under the black cap is a piece of felt, that releases the ink in the tube to mark paper or other surfaces. This is a pink highlighter. A magic marker. +pear/pear_1_4_63,This is a pear, which is a fruit. Here is a pear. It is green. It looks ripe. It's a green, slightly blemished pear. This is a pear. This looks like a pear, it is green and seems to be pretty badly bruised. +orange/orange_3_2_149,an orange The object above looks like a fruit or vegetable. It is orange and round. This is an orange. An orange. This is an orange. +food_jar/food_jar_6_1_186,This is a jar of food. This appears to be jelly, a fruity food that's ready to eat. This is a jar of hot fudge. This is a jar of jam or jelly. A jar of jelly. +cereal_box/cereal_box_2_1_8,This is a box of Chex. This is a box of cereal. This is a box of Chocolate Chex cereal. This is a box of Chex cereal. It's a box of Chocolate Chex. It's brown with a blue stripe. +food_box/food_box_1_1_53,A box of crackers. This is a box containing a food product. This is a box of artificial sweetner. A box of some food +instant_noodles/instant_noodles_3_2_15,Noodles are a staple food in many cultures. This is a package of food. Some preparation is required before this food can be eaten. This is a package of food. This is ramon soup. A package of frozen vegetables. +food_box/food_box_3_2_186,This is a box of food. This is a box of breakfast bars. This is a red and white box. A box of crackers. This is a box of Fiber One. It is a box allows contents to be stored online. +dry_battery/dry_battery_1_4_93,this object is to blurry to tell what it could be used for This is a battery. +onion/onion_2_1_217,An unpeeled white onion, it is round - though not a perfect sphere - with its stem apparent at the top. This is a white onion. This is an onion. This is an onion, the skin is white. A white onion. +food_can/food_can_13_2_18,This is a can of Progresso soup. A can of soup. This is a can of soup. It's a can of Progresso soup. This is a can of soup. This is a can of soup. It is made by Progresso. It's a can of food. This is an unopened can of Light Progresso soup. It has a flip top and a blue label. +bowl/bowl_2_4_66,This is glass bowl. This is a light green bowl. This is a bowl. An empty dinner bowl. This is a bowl. This is an ornate bowl This here is an empty bowl. This is a bowl. The bowl is shiny and blue. +calculator/calculator_1_4_71,This is a calculator. It's a silver and black calculator with black, grey, and yellow buttons. This is a calculator. This is a calculator. A simple calculator +instant_noodles/instant_noodles_3_2_177,A package of frozen vegetables. This is a bag of food. This is a package of food. a pack of snack or frozen food item +food_can/food_can_14_4_73,This is a can illed with a product. This looks like an unopened can of tomato paste. A can of soup. This is a can. This is a can of soup with a red & green label. +pear/pear_2_4_147,This is a piece of fruit. a green pear This is a pear. This is a pear. The object is a ripe green pear. +pitcher/pitcher_2_4_80,This is a coffee pitcher filled with black coffee. This is a silver and black coffee pot. This is a container which you can boil liquids in. This is a pitcher for hot liquid. A coffee pot. +sponge/sponge_12_1_42,A kitchen sponge. +garlic/garlic_7_1_131,This is a clove of garlic. A fresh garlic clove. This is an onion. It's a head of garlic. A clove of garlic. +stapler/stapler_3_1_116,this is a black stapler This is a stapler. This is a stapler. It's a black stapler. This is a stapler. +potato/potato_1_2_153,This red ball might be a tomato. A tomato is usually mashed or sliced to be eaten by humans. This is a red potato. An apple. This is an apple. +tomato/tomato_4_2_56,A red tomato. A RED VINE TOMATOE OR SMALL SIZE This is a tomato. This is a yellow and red tomato. This is a tomato. +food_bag/food_bag_2_1_133,A bag of some food It's a bag of something. This is a bag of food, possibly bread. A bag of chips. This is a bag of food. +stapler/stapler_3_4_88,This is a black stapler. This is a stapler. It keeps your papers together. A black stapler. This is a stapler. This is a stapler. +toothpaste/toothpaste_1_1_157,A tube of toothpaste. This is a tube of Crest toothpaste. This is a tube of toothpaste. This is a tube of toothpaste. Squeeze a dollop on your toothbrush to clean your teeth and freshen your breath. This is a tube of toothpaste. +plate/plate_7_2_175,This is an all-white plate. This is a plate. An empty dinner plate. This is a white Styrofoam plate. +lemon/lemon_4_1_129,This is a tart fruit called a lemon. It can be eaten raw or cooked. This is a lemon. This is a lemon. A yellow lemon. This is a lemon. +plate/plate_6_1_92,This is a yellow plate. This is a brown ceramic plate. Shown is a pie, perhaps pumpkin, with a scalloped edge. It's a plate. An empty dinner plate. +pliers/pliers_2_2_119,A pair of pliers. A pair of pliers with a black handle. This is a pair of pliers. A cutting player This is a pair of pliers. +bowl/bowl_5_1_133,A white with blue rings ceramic bowl This is a bowl. It's a stripy bowl. This is a bowl used in the kitchen for eating. This is a bowl. This is a bowl This is a bowl, used for holding liquid foods This is a striped bowl. +peach/peach_1_4_212,Could be a red onion. This is a peach. This could be some kind of fruit like a red apple. A peach This is a piece of fruit. +hand_towel/hand_towel_3_1_163,This is a green hand towel. A folded towel. This is a soft, absorbent cloth called a towel. Towels are used to dry water from people's hands and other items. This is a green towel. This is a hand towel. +sponge/sponge_3_2_119,This is a squeegee. The sponge is blue. A kitchen sponge. This is a sponge. a blue sponge +water_bottle/water_bottle_5_4_179,This is a bottle of water. A plastic water bottle. This is a plastic bottle. It looks to be holding water, but can be re-purposed. It's a bottle of water with a blue label. This is a bottle of water. This is a bottle of water with a blue label. This is a water bottle with a blue label. +stapler/stapler_8_2_140,This is a red stapler. It is used to staple papers together, it is one way to bind them together. A red stapler. This is a red stapler. It's a red stapler. This is a stapler. +food_box/food_box_10_2_148,This is a box of multigrain crackers. They are healthy. This is a box of crackers. This is a box of cereal. A package of crackers. This a box of Archer Farms multigrain crackers. +bell_pepper/bell_pepper_1_4_138,An orange bell pepper An orange pepper. This is a red pepper. This is an orange bell pepper. It's an orange bell pepper. +sponge/sponge_11_4_46,A sponge is a tool or cleaning aid made of soft, porous material. diff --git a/conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf b/OLD GLS/conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf similarity index 100% rename from conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf rename to OLD GLS/conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf diff --git a/OLD GLS/conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw_red_apple_exp.conf b/OLD GLS/conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw_red_apple_exp.conf new file mode 100644 index 0000000..bed1df4 --- /dev/null +++ b/OLD GLS/conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw_red_apple_exp.conf @@ -0,0 +1,1492 @@ +water_bottle/water_bottle_10_2_203,hard plastic transparent pink water bottle built straw water bottle plastic water bottle clear red water bottle opaque red top pink plastic water bottle built straw +notebook/notebook_4_1_244,spiral notebook blue notebook blue spiral bound notebook blue spiral bound notebook writing notebook +tomato/tomato_1_4_131,red roma tomato red tomato roma tomato looks like red tomato tomato +bowl/bowl_6_1_178,bowl bowl blue outside floral inside design bowl painted inside sky blue bowl white inside inside multicolored floral designs bowl +plate/plate_1_4_168,cup filled drink shiny yellow gelatinous product +hand_towel/hand_towel_5_2_250,black dark blue washcloth folded square folded towel black towel placed plate black towe soft absorbent cloth called towel towels used dry water peoples hands items +bell_pepper/bell_pepper_4_4_39,red bell pepper red pepper red bell pepper fresh red bell pepper stem red bell pepper +bell_pepper/bell_pepper_6_2_155,green bell pepper green pepper green pepper green bell pepper fresh green bell pepper green bellpepper upright green pepper +keyboard/keyboard_1_1_176,computer keyboard silver computer keyboard white buttons keyboard silver wireless apple keyboard sitting white platform flat grey object various sized white square rectangular shapes keyboard +greens/greens_1_4_68,lettuce green leaf lettuce plate bunch green lettuce used salads sandwiches bundle romaine lettuce red plastic tie around green lettuce leaf lettuce lettuce variety lettuce grows tall head sturdy dark green leaves usually used make dish used garnish dish prepared bundle greens used cooking +stapler/stapler_7_4_250,blue mini stapler small blue stapler blue stapler small blue stapler object blue stapler used group paper together small piece metal blue mini stapler blue stapler +food_jar/food_jar_1_2_177,jar jam jar grape jelly jar smuckers grape jelly jar grape jelly jar grape jelly +hand_towel/hand_towel_1_2_162,looks like sort white towel wash cloth white hand towel dinner napkin napkin towel placed plate +shampoo/shampoo_3_4_17,bottle shampoo container body cleanser hair products bottle shampoo liquid inside light purple bottle shampoo bottle shampoo +comb/comb_1_2_178,hair brush black hairbrush hairbrush hair brush soft bristle hair comb +instant_noodles/instant_noodles_6_4_185,pack ramen chicken flavored object yellow package food says something chicken package food package noodles small yellow bag cookies +water_bottle/water_bottle_7_1_216,object water bottle bottle water cant read brand name bottle water bottle drinking water plastic water bottle +rubber_eraser/rubber_eraser_4_4_21,eraser hard rubber gum used remove pencil markings paper pencil eraser eraser eraser +cell_phone/cell_phone_3_1_103,silver black flip phone cell phone cell phone cellphone silver flip cellular phone +food_jar/food_jar_1_1_6,looks like jar grape jelly cant see brand lid hatched think smuckers jar grape jelly brand smuckers jar grape jelly jar jam jelly jar dark substance inside label mostly purple plaid lid +water_bottle/water_bottle_10_1_138,water container plastic water bottle clear plastic water bottle red cap empty water bottle water bottle +water_bottle/water_bottle_7_1_97,small bottle mineral water bottle water bottle water water bottle clear plastic water bottle label plastic water bottle water bottle container used hold water liquids beverages consumption bottle water +food_can/food_can_5_1_179,can baked beans metal can used hold food cylinder paper wrapper can soup red white can picture food front can food red white label brand market pantry +soda_can/soda_can_4_2_115,can coca cola can coke zero opened can soda looks like dr pepper coca cola can black red yellow lettering can coke +rubber_eraser/rubber_eraser_1_1_104,white eraser blue white cardboard holder +comb/comb_5_4_33,black hair brush object used untangle hair hairbrush hairbrush hair brush +orange/orange_4_1_184,lemon lemon orange orange orange sweet fruit usually peeled eaten raw many ways use food +sponge/sponge_5_4_261,sponge usually used clean one rough side scrub items clean kitchen sponge red blue sponge blue red sponge kitchen sponge +cereal_box/cereal_box_1_4_132,box cereal box bran flakes box bran flakes cereal box bran flakes box cereal box bran flakes +tomato/tomato_5_4_139,tomato red tomato red ball shiny white circle middle red christmas ball decoration used decorate christmas tree things holidays +garlic/garlic_5_1_57,garlic species onion genus shallot +apple/apple_2_1_139,super market sticker +potato/potato_4_2_66,potato potato potato looks like potato small brown +calculator/calculator_4_2_124,calculator can used math problems even grocery shopping make sure going budget numbers math characters light green calculator calculator calculator green calculator good math green white calculator calculator used maths calculator people use simple math white buttons lime green +tomato/tomato_5_2_181,red apple red ball could tomato red tomatoes used marinara sauce tomato red tomato red tomato circular red sticker tomato edible vegitable +garlic/garlic_1_4_140,clove garlic bulb garlic bulb garlic used cooking garlic herb grown around world related onion leeks chives garlic +coffee_mug/coffee_mug_4_4_11,coffee mug mug white blue coffee mug looking inside mug outside white inside rim blue looks like theres red handle empty white mug blue stripe around inside rim +water_bottle/water_bottle_3_1_147,plastic bottle water blue label across middle white text bottle aquafina water bottle aquafina bottled water blue label plastic water bottle bottle water +pitcher/pitcher_3_2_45,pitcher coffee pitcher green vase green glazed ceramic pitcher handle ceramic pitcher +food_bag/food_bag_8_2_154,bag sun chips green white text bag sun chips bag sunchips green bag sun chips bag sun chips +food_can/food_can_5_1_57,can soup looks can soup can soup looks like might noodle soup can something probably food canned good +camera/camera_3_2_38,camera digital camera digital camera metallic square box black trim led screen buttons right led screen digital camera +soda_can/soda_can_5_4_17,can diet dr pepper object can dr pepper white red can diet dr pepper unopened can dr pepper can drpepper drink +food_can/food_can_10_4_167,metal silver can paper label mostly yellow blue red can food can fruit can +pear/pear_8_2_1,green apple apple yellow apple yellow delicious apple golden delicious apple +ball/ball_1_2_118,football nerf football toy football inflatable toy football brown white stripes football +food_can/food_can_8_4_51,canned good food preserved aluminum can object tin can tomato outside looks like side can ro tel tomatoes can rotel tomatoes unopened can food +water_bottle/water_bottle_1_4_43,plastic water bottle small bottle mineral drinking water plastic bottle water drinking water bottle water bottle water +instant_noodles/instant_noodles_5_1_116,orange packet instant noodles plastic packaged product mostly orange white shapes blue text package ramen noodles +food_cup/food_cup_3_4_148,container yogurt container yogurt container yogurt container yogurt container yogurt +soda_can/soda_can_5_1_13,can dr pepper aluminum can diet dr pepper can diet drpepper drink can dr pepper soda object white red diet dr pepper can +plate/plate_4_4_81,empty paper plate plate plate bowl normally used soups deserts part table setting white paper plate paper plate paper bowl tan trim disposable paper bowl +food_bag/food_bag_1_1_161,bag snacks light blue white package looks like bag chips bag healthy potatoe chips bag chips package food +scissors/scissors_1_4_173,pair scissors pair metal scissors orange gray handles pair scissors pair scissors scissors black orange handle +scissors/scissors_3_4_54,pair scissors blue handle pair scissors pair scissors blue handle pair scissors scissors used cutting paper +dry_battery/dry_battery_1_1_65,9 volt battery battery yellow battery battery +food_jar/food_jar_3_4_81,jar food product jar gravy jar something like jam glass jar gold metal lid dark red lid label can jar food jar brown gravy used cooking opened jar +hand_towel/hand_towel_5_2_21,soft absorbent cloth called towel towels used dry water peoples hands items black towel placed plate folded towel +soda_can/soda_can_6_1_195,can welchs soda can soda soft drink can metal container designed hold fixed portion liquid carbonated soft drinks can juice soda can contains juice commonly called tin can can easily opened pulling ring pop top +kleenex/kleenex_5_4_106,box facial tissues box kleenex box tissues box tissues box kleenex red pattern paper tissues box tissues box tissues +sponge/sponge_6_1_152,yellow pink sponge sponge good wash dishes yellow pink sponge kitchen sponge note pad used take notes +mushroom/mushroom_1_1_170,mushroom clove garlic mushroom used coooking +potato/potato_1_4_1,small red potato red potato red potato +hand_towel/hand_towel_2_4_146,napkin plate dinner napkin wash towel red towel +coffee_mug/coffee_mug_5_4_147,mug white coffee mug coffee mug white ceramic mug coffee mug coffee mug +instant_noodles/instant_noodles_4_1_152,package food preparation required food can eaten package ramen noodles package ramen noodles package food bag instant ramen package dried noodles cook water small rectangular package bag ramen +lime/lime_4_1_63,lime sticker lime green lime lime sticker lime lime green +apple/apple_2_4_130,round +garlic/garlic_6_2_196,head garlic bulb garlic fresh unpeeled garlic bulb garlic +comb/comb_3_4_95,hair brush hair brush black teal paddle hairbrush hair brush used de tangle persons hair hair brush +stapler/stapler_1_1_111,stapler stapler black stapler black grey stapler black stapler use help keep papers together +shampoo/shampoo_3_2_160,bottle vo5 shampoo liquid inside light purple bottle vo5 shampoo bottle vo5 shampoo bottle shampoo appears body cleanser body soap +greens/greens_2_4_178,bundle romaine lettuce green leaf lettuce plate sort leafy green vegetable sort lettuce green leaf lettuce lettuce +kleenex/kleenex_3_4_214,box facial tissues looks like box klenix box tissues box kleenex box kleenex grey designs +bowl/bowl_2_4_203,empty dinner bowl light green bowl design rim bowl bowl bowl +pear/pear_1_2_217,pear green pear brown coloring pear pear pear +potato/potato_5_1_27,potato usually cooked eaten starchy vegetable brown potato brown russet potato potato large baking potato potato russet potato used cooking potato +comb/comb_2_4_6,hair brush hair brush plastic hairbrushes affordable durable hair brush black hair brush +toothpaste/toothpaste_3_1_133,tube toothpaste blue white object tube toothpaste tube blue white tube ultra brite toothpaste tube ultrabrite toothpaste tube toothpaste +greens/greens_4_2_62,baby bok choy bok choi baby bok choy kale plate +marker/marker_4_4_3,green pen green dry erase marker green marker magic marker green marker +food_can/food_can_2_2_125,can something can soup can soup unopened can flip top +plate/plate_4_1_194,plate mostly flat raised outer area goes around plate paper plate beige designs around edge object appears paper plate color tan brown empty paper plate +coffee_mug/coffee_mug_6_4_163,tan coffee mug handle round object holds liquid white ridges yellow ceramic mug mug holding sort liquied identifiable coffee cup +flashlight/flashlight_2_4_169,red black flashlight red flash light flashlight casing red plastic button top black red black flashlight flashlight flashlight +food_box/food_box_1_4_60,box food box food box sweetner box crackers +banana/banana_3_4_81,yellow banana banana plate large yellow banana strong fragrance mushy texture sweet fruit called banana can eaten raw cooked can made banana bread banana banana banana +food_can/food_can_4_1_74,can item can food can food white label can soup can product inside metal can food label describe ingredients possibly directions use product appears either can soup milk +camera/camera_1_4_76,small film camera +bell_pepper/bell_pepper_3_2_109,pepper red red bell pepper red bell pepper green thick stem red pepper red bell pepper red pepper red bell pepper +shampoo/shampoo_3_2_13,bottle shampoo bottle conditioner liquid inside lavender silver cap bottle blue colored shampoo bottle shampoo bottle either shampoo conditioner maybe even body wash blue color +garlic/garlic_4_2_221,purple onion medium size red onion +stapler/stapler_5_4_190,black stapler stapler black stapler stapler black stapler +cap/cap_1_2_45,white baseball hat black stripes white baseball cap black stripes w logo baseball cap white cap white hat +peach/peach_1_1_30,peach object round dark mink yellow skin soft sweet fruit pit peach reddish peach object red colored peach +marker/marker_2_4_61,green dry erase marker marker pen magic marker green marker green marker +toothpaste/toothpaste_4_2_202,object tube toothpaste object plastic cap contents gel like tube toothpaste tube close toothpaste used clean teeth tube toothpaste +tomato/tomato_8_1_50,tomato round red tomato red tomato peach standing upright tomato +food_can/food_can_6_1_203,can soup can soup can food preparation may required food can eaten can soup can tomatoes can tomato sauce canned food +keyboard/keyboard_5_2_91,white black computer keyboard computer keyboard keyboard computer keyboard computer keyboard +food_box/food_box_5_2_3,box containing food product object box soup white bottom red topped box box crackers crackers like ones service cheese +notebook/notebook_5_1_209,notebook notebook black spiral bound notebook spiral bound notebook number pages paper bound together spiral wire black spiral bound notebook +toothbrush/toothbrush_3_4_47,white teal colored toothbrush tooth brush blue white toothbrush toothbrush cleaning teeth toothbrush +garlic/garlic_5_2_6,onion brown onion onion tasty vegetable sharp flavor us usually cooked onion red onion first layer peeling vegetable used cooking +glue_stick/glue_stick_6_1_244,looks like can vegtable oil spray can red cap glue stick can spray tube glue glue stick +lemon/lemon_2_4_188,lemon sticker tart fruit called lemon can eaten raw cooked lemon yellow lemon lemon +cell_phone/cell_phone_3_2_140,mobile phone flip phone grey blue cell phone old model flip mobile phone phone used call people +kleenex/kleenex_4_1_5,box facial tissues box tissues box napkins kleenex box blue box kleenex +glue_stick/glue_stick_3_4_215,glue stick red top container glue blue glue stick red top glue stick glue stick orange cap glue stick symmetry shaped object refers sense harmonious beautiful proportion balance gluestick used glue things together +marker/marker_4_4_258,magic marker ink pen marker looks like green highlighter marker +water_bottle/water_bottle_9_4_51,water bottle water bottle blue lid plastic drinking bottle clear blue lid blue water bottle empty plastic water bottle +potato/potato_2_2_42,small red potato small potato red potato red potato red potato used cooking potato starchy tuberous crop perennial nightshade solanum tuberosum +food_jar/food_jar_2_1_242,jar caramel topping jar marmalade jar food appears jelly fruity food thats ready eat jar jelly jar jelly +food_jar/food_jar_6_1_16,jar fudge topping jar chocolate fudge jar fudge jar jam jelly +food_can/food_can_1_1_219,can can something unidentifiable short can kind food white table can condensed milk can food +sponge/sponge_8_1_154,kitchen sponge sponge two colors top blue bottom yellow sponge kitchen sponge rectangular shaped object roughly 23 yellow color 13 blue +hand_towel/hand_towel_1_2_254,white towel towel white towel white blanket used keep warm folded towel +pitcher/pitcher_3_2_142,green vase pitcher beverages green vase pitcher container spout used storing pouring contents liquid form green ceramic pitcher tall green ceramic pitcher ceramic pitcher green elongated oval handle pitcher holding liquid brown +comb/comb_5_4_14,hairbrush hair brush black hair brush oval head balck hair comb black hairbrush +orange/orange_3_1_56,round orange fruit sweet fruit called orange can eaten raw cooked orange orange orange +rubber_eraser/rubber_eraser_3_4_3,rectangular shaped pink eraser rectangular pink eraser eraser pink eraser used remove pencil writing pink eraser +hand_towel/hand_towel_5_2_245,cloth napkin small black towel folded towel soft absorbent cloth called towel towels used dry water peoples hands items +onion/onion_3_4_203,white onion yellow onion onion yellow onion white onion +cell_phone/cell_phone_2_2_12,phone silver black phone cell phone silver black cell phone mobile phone +pitcher/pitcher_2_1_44,tea kettle silver pitcher hot liquid possibly electric kettle coffee pot coffee pot stainless steel coffee carafe +calculator/calculator_5_4_122,silver black calculator white grey buttons silver calculator calculator white keypads calculator calculator +garlic/garlic_6_2_241,clove frest garlic bulb garlic clove garlic clove garlic garlic species onion genus +tomato/tomato_1_2_166,red tomato tomato tomato ripened plum tomato tomato red tomato red tomato +plate/plate_6_2_27,empty dinner plate pie circular shape yellow color appears plastic wrap top brown crust apparent around edges ceramic dish dark yellow plate brown plate +tomato/tomato_4_2_61,tomato yellow red tomato red tomato tomato tomato +instant_noodles/instant_noodles_3_4_65,package food package frozen vegetables package ramen soup mix object green white package food probably noodles +plate/plate_4_1_175,plate plate empty paper plate looks like bowl kind liquid like soup plate white tan paper plate +orange/orange_1_2_84,orange orange piece fruit probably blood orange orange yet peeled orange +greens/greens_3_4_46,bok choi bok choy plate baby bok choy plate uncooked baby bok choy bok choy white stems green leaves head bokchoy +toothbrush/toothbrush_5_4_127,toothbrush red white toothbrush red toothbrush toothbrush object long grip bristles +stapler/stapler_5_4_154,tube black stappler stapler black stapler +flashlight/flashlight_5_2_32,yellow flashlight duracell flash light yellow color large black yellow duracell flashlight yellow black flashlight white red plate yellow black duracell flashlight large yellow flashlight yellow duracell flashlight table +food_cup/food_cup_2_1_237,container yogurt container yogurt cup yogurt yet opened red white yogurt cup container yoplait yogurt +water_bottle/water_bottle_5_4_45,bottle water bottle water bottle water bottle water bottle water blue label +water_bottle/water_bottle_6_2_55,plastic water bottle bottle water clear bottle water bottle water bottle water +food_box/food_box_10_1_194,box multi grain crackers box food possible pancake mix box multigrain crackers green white purple label picture crackers box crackers small cardboard box crackers green purple labels picture bowl crackers +food_jar/food_jar_5_2_188,jar peppers pickle jar jar peppers glass jar blue lid type food inside jar yellow ring peppers jar pickled pepper slices jar contents yellow +food_bag/food_bag_1_2_138,bag chips similar kind food product bag chips bag frozen fruit chips delicious dinner treat bag dog food looks healthy +marker/marker_9_1_56,yellow magic marker yellow highlighter marker yellow highlighter marker +sponge/sponge_3_4_33,blue colored sponge cleaning sponge often used kitchen sponge can used many places blue sponge sponge kitchen sponge +lime/lime_3_4_114,green lime lemon species small evergreen tree flowering plant green lime lime lime +ball/ball_1_4_124,football football football toy football +dry_battery/dry_battery_6_1_56,battery battery battery battery battery postive side +potato/potato_1_4_134,red potato red potato red potato +cap/cap_1_1_9,baseball cap mostly white thin stripes hat commonly called ball cap ball players wear baseball cap white baseball cap black stripes w logo white baseball cap baseball hat striped baseball cap pinstriped baseball hat mostly white +lightbulb/lightbulb_2_4_91,old lightbulb light bulb incandescent light bulb standard white lightbulb light bulb +scissors/scissors_4_2_119,pair scissors blue yellow handle pair scissors scissors yellow handle pair grey yellow scissors pair scissors blue yellow handles +food_box/food_box_1_1_47,box cereal box food box food nutrition fact side box food box crackers one small box make nice snack later day box food nutrition label box food +stapler/stapler_6_1_156,stapler mechanical device joins pages paper similar material driving thin metal staple sheets folding ends black stapler stapler joins two pieces paper together stapler stapler +garlic/garlic_5_2_121,garlic species onion genus clove garlic +flashlight/flashlight_4_4_75,flashlight flashlight used see way dark flashlight black flashlight flashlight +potato/potato_4_2_26,large baking potato potato potato +stapler/stapler_7_1_272,blue stapler small blue stapler mini blue stapler +cereal_box/cereal_box_1_1_156,box bran flakes cereal box cereal box bran flakes cereal box bran flakes box bran flakes +apple/apple_4_2_31,yellow apple golden delicious apple apple greenishyellowish apple like cross granny smith golden apple yellow light green apple used healthy snack +plate/plate_3_4_47,plate empty paper plate blue white bowl empty plate white blue design plate +scissors/scissors_3_2_68,pair scissors blue plastic handle blue colored craft scissors pair scissors pair blue handle scissors used cutting pair scissors blue handle scissors +food_can/food_can_14_4_50,can filled product can can soup can pull tab cant read label likely sort soup can soup +keyboard/keyboard_1_2_68,computer keyboard wireless computer keyboard computer keyboard computer keyboard keyboard computer keyboard keyboard used enter data computer grey keyboard color grey +coffee_mug/coffee_mug_3_2_134,mug brown coffee mug black pitcher coffee mug coffee mug +food_box/food_box_4_2_149,box oreo cookies box snack food humans eat snack foods part diet yellow box golden oreo funstix box golden oreo funstix box yellow box golden oreo funstix +food_box/food_box_3_4_112,box fiber one small sized box fiber one products box fiber one pastries box fiber pop tarts box fiber one snack bars +food_box/food_box_12_2_229,box crackers box crackers box pasta looks tasty package crackers box crackers box green blue photo crackers box round crackers box long rectangle box salted crackers box crackers +stapler/stapler_1_4_56,black grey stapler stapler black colored stapler stapler +bell_pepper/bell_pepper_2_1_147,orange pepper yellow pepper orange pepper yellow bell pepper sticker yellow bell pepper +tomato/tomato_1_4_111,object soft red oval shaped red fruit vegetable sort blurry probably tomato grape tomato ripe plum tomato +cap/cap_4_4_80,red baseball cap top view red baseball cap black button top red baseball cap red ball cap +rubber_eraser/rubber_eraser_2_4_168,eraser partially used +food_box/food_box_2_1_59,zatarains rice dinner box box zatarrains rice box yellow rice box zatarains yellow rice mix box yellow rice +food_box/food_box_9_2_226,box crackers box bleaching tablets toilets clean box food box bagel chips +glue_stick/glue_stick_5_2_21,tube glue container toothpaste holds cleaning material humans use cleaning material clean teeth glue stick +tomato/tomato_5_1_41,small red ball used billards tomato red tomato ripened tomato red tomato +kleenex/kleenex_2_1_66,box tissues box facial tissues box tissues box kleenex tissue paper commonly used facial tissue +coffee_mug/coffee_mug_3_2_160,ceramic mug either vase cup coffee mug brown mug white inside coffee mug +pitcher/pitcher_1_1_108,cream floral pitcher tea serving pitcher pitcher ceramic pitcher gravy boat ceramic container small ceramic pitcher leaf drawing +stapler/stapler_4_4_64,stapler think looking top black stapler stapler black stapler stapler +notebook/notebook_2_4_204,writing notebook yellow spiraled notebook spiral bound notebook pad paper held together wire spiral one side yellow notebook yellow spiral bound notebook +marker/marker_8_1_209,magic marker marker red marker black lid +food_bag/food_bag_3_2_18,bag snyders pretzles bag pretzels bag pretzels chips bag mainly brown predominant red label bag snyders pretzel snaps little square pretzels salty taste +pitcher/pitcher_1_1_156,small ceramic pitcher yellow green leaf design ceramic pitcher ceramic pitcher ceramic teapot gravy boat +glue_stick/glue_stick_6_2_118,glue stick glue stick orange cap stick elmers glue glue stick can spray +tomato/tomato_8_2_208,tomato tomato tomato red tomato red tomoato +food_cup/food_cup_3_2_255,food cup used store food items container yogurt container yogurt white container yogurt container yogurt +kleenex/kleenex_2_1_82,box tissues box pink white box facial tissues box soft tissues used blow nose box kleenex smal pink box tissues +peach/peach_2_4_94,white peach cream pink colored yellow red apple fruit possibly apple apple ripe apple +pliers/pliers_6_1_129,pair pliers black grips pair pliers pair pliers multi functional handled pliers small tip set pliers grabber tool +dry_battery/dry_battery_2_1_124,battery battery black bottom colored yellow top battery battery +marker/marker_3_2_41,marker pen black marker black expo marker black dry erase marker sharpie magic marker expo marker closed scroll fastened removable white band +shampoo/shampoo_5_2_207,bottle soap shampoo hair care product bottle shampoo bottle shampoo +greens/greens_1_2_89,head green leaf lettuce green leaf lettuce plate bundle lettuce leafy salad vegetable could lettuce bunch loose leaf lettuces +food_bag/food_bag_2_1_131,bag chips chips delicious dinner treat bag chips bag chips bag chips +sponge/sponge_4_4_80,purple sponge sponge kitchen sponge purple sponge light purple sponge +coffee_mug/coffee_mug_7_1_217,coffee mug blue coffee cup mug coffee mug blue coffee mug +marker/marker_5_1_237,marker blue pen black comfort grip magic marker marker blue +lemon/lemon_3_1_108,yellow lemon yellow lemon lemon lemon lemon species small evergreen tree flowering plant +sponge/sponge_4_2_28,sponge purple sponge looks abe dish sponge critters kitchen sponge purple sponge +apple/apple_5_1_134,green apple green apple sweet fruit can eaten raw cooked best food called apple pie apple theres many types green apple green apple green apple upright apple sweet edible fruit produced apple tree apple green apple stem apple also sticker +pear/pear_1_4_59,pear people eat alone mix smoothies sweet fruit pear green pear pear pear +cap/cap_4_2_163,red baseball cap red baseball cap identifying graphics red ballcap red baseball cap red cap +onion/onion_6_4_36,purple onion red potato +cap/cap_4_2_124,brand new red baseball cap ball cap red baseball cap red baseball cap button top black object red baseball cap black lace +coffee_mug/coffee_mug_7_1_50,mug coffee cup coffee mug blue mug white interior cup blue +lightbulb/lightbulb_4_4_48,light bulb light bulb looks like soft white light bulb lightbulb replace every often light bulb +stapler/stapler_2_2_49,black desk stapler black stapler black colored stapler black stapler stapler +glue_stick/glue_stick_1_4_239,glue stick tube glue type plastic tube tube super glue glue stick glue stick lid +lime/lime_2_2_71,lime green lime lime lime sticker mostly green slightly yellow +dry_battery/dry_battery_4_1_153,duracell battery battery duracell battery small duracell battery round object shaped like dura cell battery +dry_battery/dry_battery_3_2_125,single battery battery battery +food_can/food_can_7_2_99,can soup red white can soup can soup unopened canned good flip top can soup +glue_stick/glue_stick_5_4_238,tube glue +cell_phone/cell_phone_4_4_154,cell phone white flip phone black top looks like small flip phone based white top black mobile phone +orange/orange_3_1_77,orange round fruit object called orange orange orange orange +toothbrush/toothbrush_4_2_39,toothbrush purple color purple toothbrush toothbrush toothbrush white purple toothbrush +soda_can/soda_can_1_1_80,can pepsi can pepsi can soda can pepsi soda blue can carbonated drink +cell_phone/cell_phone_5_4_22,smart phone smartphone smartphone cell phone silver colored smartphone +rubber_eraser/rubber_eraser_1_2_161,looks like battery charger used recharge rechargeable batteries device electrical nature +food_cup/food_cup_1_2_216,container yogurt white container yogurt object thing yogurt yogurt delicious breakfast treat small plastic container holding food called yogurt yogurt dairy product made using active bacteria +plate/plate_4_2_124,plate disposable paper plate white paper plate brown designs around edge empty dinner plate plate +marker/marker_5_1_154,pen +sponge/sponge_7_2_209,kitchen sponge squeegee sponge usually used clean one rough side scrub items clean sponge green white sponge sponge used wash dishes sponge tool cleaning aid made soft porous material green yellow sponge scrubbing part green soft part yellow +apple/apple_1_1_110,food humans others sweet fruit can eaten raw cooked looks like dark purple black might shaped plum one new hybrid fruits upright dark +coffee_mug/coffee_mug_5_2_9,white ceramic cup perhaps coffee cup empty white mug coffee cup coffee mug mug +food_jar/food_jar_3_1_26,jar gravy red cap red label jar food jar gravy jar gravy jar jar food +apple/apple_3_2_40,yellow apple golden delicious apple golden apple apple golden delicious apple +bell_pepper/bell_pepper_2_1_115,yellow pepper orange vegetable can also come red green gives flavor meals fresh orange bell pepper yellow bell pepper yellow pepper +soda_can/soda_can_2_4_128,can 7 can 7up soda can 7 can green white yellow text can 7up can 7 can 7up soda can soda green individual unopened soda can +calculator/calculator_5_1_80,square shape white keypad grey color black screen display calculator silver calculator calculator calculator +scissors/scissors_2_2_170,orange scissors pair scissors scissors orange handle pair scissors scissors used cutting paper pair scissors orange handles scissors orange handle pair orange scissors +shampoo/shampoo_1_4_131,bottle shampoo bottle lotion object bottle soup liquid can squirted bottle white blue white shampoo bottle blue cap standing right bottle shampoo conditioner +lime/lime_1_2_85,green lime green lime lime code sticker piece fruit probably lime green lime sticker +camera/camera_1_2_138,disposable camera disposable camera disposable film camera black disposable camera camera +cap/cap_4_2_26,red baseball cap red baseball cap red baseball hat red baseball cap picture hat +lightbulb/lightbulb_2_2_31,lightbulb light bulb lightbulb light bulb light bulb +food_can/food_can_11_2_42,can can soup can soup object tin can soup label white red can soup +flashlight/flashlight_1_4_69,black flashlight flashlight black flashlight black flashlight black cord attached bottom black flashlight +food_cup/food_cup_1_1_147,container yogurt container yogurt small plastic container holding food called yogurt yogurt dairy product made using active bacteria container yogurt container yoplait yogurt +bell_pepper/bell_pepper_5_4_92,green bell pepper green pepper green pepper fresh green bell pepper green bell pepper +plate/plate_3_1_89,empty dinner plate plate nothing plate single dinner plate plate white blue rim plate blue stripes +pear/pear_3_2_89,pear brown red orange black pear shaped object white label sticker red pear sticker red pear +stapler/stapler_1_2_79,small black gray stapler stapler stapler stapler used stick papers together black stapler +lightbulb/lightbulb_4_1_36,light bulb light bulb led bulb theyre good home light bulb white light bulb +food_can/food_can_6_4_54,can food looks like might campbells soup can food can soup can soup red white can food +lemon/lemon_4_4_215,yellow lemon fresh lemon lemon yellow lemon looks like yellow lemon lemon yellow lemon +onion/onion_6_4_159,red onion rotten onoin peeling purple onion onion purple onion +onion/onion_1_4_268,white round onion white onion clove garlic white onion clove garlic +dry_battery/dry_battery_4_2_151,large alkaline battery black copper colored duracell battery battery battery would guess either aa aaa size battery c battery duracell brand +marker/marker_1_2_13,red marker red marker magic marker markers used wrighting board red dry erase marker +food_bag/food_bag_6_2_111,bag chips bag pop chips chips barbecue flavored bag chips bag potato chips bag snack food humans eat snack foods part diet +lightbulb/lightbulb_4_4_43,light bulb light bulb light bulb light bulbs used residential fixtures light bulb led lighbulb light bulb bulb flat top brass bottom +orange/orange_4_1_40,yellow lemon orange orange round fruit orange citrusy +sponge/sponge_3_1_135,blue sponge kitchen sponge sponge sponge sponge usually used clean holds water little holes +toothbrush/toothbrush_5_1_17,red white toothbrush red toothbrush red white toothbrush toothbrush toothbrush +instant_noodles/instant_noodles_8_2_57,pack instant noodles bag ichiban package ramen noodles ichiban brand package brown white package food package ramen noodles +notebook/notebook_3_2_16,writing notebook green white spiraled notebook white green spiral bound notebook spiral bound notebook green white design spiral bound notebook pad paper held together wire spiral one side +water_bottle/water_bottle_3_2_66,one bottle water brands looks aquafina water bottle plastic water bottle bottle water bottle filtered water +peach/peach_3_4_91,looks like peach nectarine one ripe peach juicy fruit called peach grown deciduous tree peach peach +food_box/food_box_6_2_187,pretzel thins snack pretzels made pepperedige farms box pretzels classic knot shaped thin good snack box pretzel thins box white picture pretzel thins box pretzel thins box pretzel thins cant read label shape color think pepperidge farms +notebook/notebook_5_2_257,object used writing black cover filled lined paper notebook writing notebook black spiral bound notebook +bell_pepper/bell_pepper_1_2_99,red pepper vegetable sharp flavor usually cooked orange pepper red pepper red bell pepper orange pepper +sponge/sponge_12_1_94,blue scrubber blue dish scrubber +pear/pear_1_2_108,pear pear green pear pear green pear +dry_battery/dry_battery_2_1_148,electric battery provided power electrical devices battery +soda_can/soda_can_6_2_181,yellow can welchs canned beverage can soda can welchs juice can welchs soda can welchs juice can welchs drink glass bottle offers highest quality glass bottle best prices +food_can/food_can_12_2_268,can chicken broth can soup can good could used cook eat alone make something else can +bell_pepper/bell_pepper_5_4_121,green bell pepper wider top bottom indented near top surrounding stem green pepper green bell pepper looks like green bell pepper green pepper +onion/onion_6_1_4,purple onion peeled yet purple onion onion red onion red potato reddish purple food item round papery outer layer +banana/banana_3_2_192,one banana yellow banana ripe banana banana plate banana fruit called banana banana banana yellow seems ripe +pear/pear_4_4_59,pear pear sticker pear pear yellow red pear sticker +coffee_mug/coffee_mug_2_2_148,coffee mug brown mug mug mug cup can hold coffee brown coffee mug +water_bottle/water_bottle_1_2_171,bottle vinegar bottle water bottle water clear bottle fluid green blue label across middle lower part bottle +ball/ball_4_1_171,toy basketball +instant_noodles/instant_noodles_8_1_19,package soup pack ichiban ramen imported japan package food package ramen noodles +cereal_box/cereal_box_5_2_89,box cereal box product box box crackers +lemon/lemon_2_1_24,yellow lemon yellow whole lemon lemon bright yellow lemon yellow lemon +soda_can/soda_can_1_2_110,can pepsi soda can pepsi can soda can pepsi can blue pepsi logo pepsi can +cell_phone/cell_phone_5_2_26,smart phone communication phones primary function cellphone smartphone smart phone case smartphone +cell_phone/cell_phone_1_4_38,cell phone cellular phone device looks like ancient ones older cellphone silver flashlight mobile phone +dry_battery/dry_battery_5_1_9,battery battery battery energizer battery energizer battery +onion/onion_5_2_211,red onion pomegranate messy fruit purple onion red onion onion +food_cup/food_cup_5_2_251,container yogurt container yogurt container yogurt cup yogurt yogurt probiotics makes quick delivious snack container yogurt +marker/marker_8_4_119,marker magic marker dry erase marker red body black cap red permanent marker +water_bottle/water_bottle_4_1_141,plastic bottle looks holding water can purposed many times bottle drinking water bottle water plastic water bottle water bottle +coffee_mug/coffee_mug_7_1_207,blue coffee mug blue mug shown blue coffee mug white interior cup coffee mug +food_can/food_can_13_1_228,can soup can progresso light soup can soup can food can soup +calculator/calculator_1_1_124,basic calculator calculator calculator calculator used math problems calculator calculator calculator used maths calculator +food_can/food_can_8_1_179,can diced tomatoes can diced tomatoes can label bowl diced tomatoes pictured named ro tel can something could tomato sauce beans can possibly contains soup +cereal_box/cereal_box_5_1_149,box honey graham crunch cereal box crackers box food preparation may required food can eaten box cereal box cereal +comb/comb_3_4_79,hair brush hair brush black black hair brush hairbrush hair comb oval head soft bristles +water_bottle/water_bottle_5_4_37,bottle water plastic water bottle plastic bottle looks holding water can purposed bottle water blue label bottle water bottle water blue label water bottle blue label +food_can/food_can_6_1_137,can cans label mainly white bottom red top can soup can soup can food label red white can soup +food_bag/food_bag_3_4_136,bag snyders pretzels salty snack bag pretzels bag snyders pretzel snaps package snyders pretzels bag snyders pretzels bag red gold black +comb/comb_2_2_11,oval head hair comb black hair brush brush hair brush hair brush stiff bristles black green +stapler/stapler_2_1_37,black hand stapler stapler stapler black grey stapler black stapler desk stapler +sponge/sponge_9_2_75,red dish scrubber kitchen scrubbing sponge +greens/greens_2_2_172,dark green piece lettuce bunch lettuce bunch lettuce lettuce green bundle lettuce +food_box/food_box_7_4_235,box wheat crackers box wheat thin crackers box yellow box wheat thins box mostly yellow box wheat thins +greens/greens_3_1_233,bok choy plate head bokchoy green vegetable green lettuce bok choi +dry_battery/dry_battery_2_4_117,yellow flashlight battery aa battery device called flashlight powered batteries produced visible light +kleenex/kleenex_5_4_74,box kleenex red pattern box kleenex box tissues pink patterned box tissue box made cardboard box facial tissues +sponge/sponge_5_1_169,red blue sponge sponge blue red sponge red blue sponge +glue_stick/glue_stick_2_2_104,glue stick container lip balm can spray +sponge/sponge_6_1_116,sponge kitchen scrubbing sponge yellow pink sponge used clean house pink yellow kitchen sponge pink yellow sponge pink yellow sponge scrubber used clean plates +cap/cap_1_2_100,black white striped ball cap white baseball cap black pin stripes w logo white hat baseball cap baseball hat baseball hat white black stripes small logo fashion baseball cap striped baseball cap table +cereal_box/cereal_box_4_1_14,box cereal box containing food product likely cereal box cereal mostly blue box cereal ingredients listed box crackers +rubber_eraser/rubber_eraser_4_2_219,looks like pink eraser rectangular type thats tapered either end red eraser pencil eraser pink eraser eraser +garlic/garlic_7_1_74,clove garlic clove garlic head garlic clove garlic +onion/onion_5_4_78,purple onion red onion red onion red onion +bowl/bowl_1_1_130,red jello green yellow bowl object brown red bowl lead pattern inside bowl empty dinner bowl ceramic bowl red inside green gold outside bowl red jello +tomato/tomato_6_1_129,object tomato used eat small red tomato vine still attached cherry tomato vine ripe tomato red tomato +keyboard/keyboard_2_1_131,black computer keyboard computer keyboard used input device part desktop computer computer keyboard computer keyboard keyboard +toothpaste/toothpaste_4_4_11,tube close toothpaste tube red white blue tube toothpaste tube toothpaste tube toothpaste red tube toothpaste +food_can/food_can_9_1_198,can campbells spaghetti os disney princesses label can spaghettios cartoon characters label can spaghetti os can spaghetti os metal can spaghettios label 3 disney princes cinderella ariel bell +notebook/notebook_1_2_201,notebook paper writing notebook red spiral bound notebook red notebook college ruled paper spiral bound notebook +lightbulb/lightbulb_3_4_196,round soft light white bulb light bulb lightbulb lightbulb light bulb light bulb electric light device produces visible light electric current light bulb +food_box/food_box_4_1_205,box oreo cookie snacks box containing cookies cookies cylindical hollow box golden oreo funstix yellow box golden oreo funstix box golden oreo funstix box yellow picture front +glue_stick/glue_stick_1_1_148,glue stick looks like tube chapstick something similar tube glue +sponge/sponge_2_4_39,sponge light green color sponge kitchen scrubbing sponge lime green sponge lime green sponge +stapler/stapler_4_4_193,black stapler object used put papers together black stapler stapler stapler +greens/greens_3_2_68,head bokchoy leafy vegetable baby bok choy bok choi might broccoli celery vegetable eaten raw often cooked side dish +food_jar/food_jar_4_1_182,jar food preparation required food can eaten jar alfredo sauce can alfredo sauce jar white pasta sauce jar alfredo sauce +marker/marker_3_1_236,black marker magic marker black marker black dry erase marker magic marker black expo marker +orange/orange_2_2_118,piece fruit orange sweet fruit called orange can eaten raw cooked yellow sphere shaped object almost looks like lemon nothing like pealing eating juicy sweet orange get lots vitamin c oranges make good juice drink roll around hard surface squishy stick drinking straw top squeeze suck juice +toothpaste/toothpaste_4_1_247,tube toothpaste cleans teeth toothpaste paste gel dentifrice used toothbrush clean maintain aesthetics health teeth tube toothpaste tube toothpaste tube toothpaste +lemon/lemon_2_4_7,yellow lemon super market sticker lemon yellow lemon sticker label label blurry describe yellow lemon lemon lemon +plate/plate_2_2_164,empty dinner plate plate plate blue white plate +banana/banana_2_1_58,banana one popular fruits people allergic can eat use make lots things ripe banana banana banana large yellow banana small bruise banana fruit banana fruit called banana eaten nutrients long yellow peel outside soft edible fruit flesh +toothbrush/toothbrush_5_1_3,toothbrush red white handle matching brushes red white toothbrush manual toothbrush toothbrushes used promote good oral hygiene toothbrush red white toothbrush toothbrush red white bristles item toothbrush red white toothbrush small brush use cleaning teeth +sponge/sponge_3_2_197,blue sponge kitchen scrubbing sponge squeegee blue sponge blue sponge cleaning dish sponge sponge tool cleaning aid made soft porous material blue sponge +marker/marker_3_4_265,magic marker black dry erase marker black marker looks like black expo brand dry erase marker black expo brand whiteboard marker +hand_towel/hand_towel_4_4_38,towel looks faded green possibly grey folded smaller square looks like grey wash cloth folded green washcloth dinner napkin gray towel placed white red plate +cereal_box/cereal_box_4_1_9,box food box cereal box cereal blue box cold cereal box breakfast cereal +water_bottle/water_bottle_5_1_162,bottle water blue label bottled water bottle clear liquid bottle water +ball/ball_6_4_27,candy shaped like basketball soft small toy basketball squishy ball could easily fit someones hand made look like basketball basketball stress ball something similar small ball looks like basketball +pliers/pliers_3_2_139,pair pliers vice grip pliers green pliars metel roughly x shaped green accents one end pair pliers +tomato/tomato_1_4_56,object small red tomato red tomato red tomato ripe plum tomato +cereal_box/cereal_box_3_2_39,box special k cereal cardboard box cereal six sides picture spoon back box cereal box cereal box cereal +stapler/stapler_5_4_107,black stapler black stapler stapler +ball/ball_1_2_185,football nerf football toy football inflatable toy football brown white stripes football +garlic/garlic_6_4_71,garlic primarily used italian fare object looks like full piece garlic looks like head garlic full clove garlic +coffee_mug/coffee_mug_3_1_156,coffee mug brown pitcher large mug brown exterior beige interior coffee mug mug coffee mug +potato/potato_4_2_1,potato object shaped like oval looks yellow brown red mango large baking potato +lemon/lemon_6_2_42,lemon yellow lemon lemon lemon lemon +water_bottle/water_bottle_10_1_21,empty water bottle pink portable water bottle pink straw top pink colored sippy bottle drink drink container object red pink reusable water bottle straw +bowl/bowl_4_4_18,coffee mug bowl bowl bowl normally used soups deserts part table setting white bowl white bowl white ceramic bowl plain white bowl +rubber_eraser/rubber_eraser_1_1_31,white pencil eraser white blue cardboard wrapper looks earaser used erase pencil pill organizer +garlic/garlic_5_1_169,small red potato red potato +stapler/stapler_3_4_195,stapler stapler black swingline stapler stapler stapler used business setting attaching papers +toothpaste/toothpaste_3_1_211,tube toothpaste tube toothpaste tube toothpaste tube toothpaste plastic tube mostly white various hues blue along label +food_bag/food_bag_2_4_278,package cookies bag cookies package cake mix package food +food_box/food_box_12_4_71,box food product box crackers box cookies long rectangular cardboard box blue picture food think crackers box crackers box crackers box crackers box crackers +binder/binder_1_1_81,three ring binder holds paper together rings covers red binder red folder school folder +food_jar/food_jar_2_4_31,jar jelly jar jelly food jar used keep food items jar marmalade jar food appears jelly fruity food thats ready eat +instant_noodles/instant_noodles_4_4_141,package food package ramen noodles package ramen soup mix pack ramen packet instant noodles package mostly red instant noodles staple food many cultures package food japanese writing bag soup mix +food_cup/food_cup_5_4_70,either container yogurt small container half half food inside container yogurt container yogurt thing creamer coffee +garlic/garlic_1_4_168,clove garlic bulb garlic clove garlic bulb garlic used cooking broken garlic head +shampoo/shampoo_2_4_267,plastic bottle may shampoo bottle conditioner liquid inside white bottle shampoo bottle shampoo conditioner +tomato/tomato_3_1_24,tomato tomato red tomato ripened roma tomato tomato +food_box/food_box_2_2_176,box zatarrains rice box zatarains yellow rice box rice box rice looks like zatarrans brand rice pilaf box yellow rice +flashlight/flashlight_1_2_23,device called flashlight powered batteries produced visible light black flashlight black flashlight flashlight flashlight black flashlight used dark light small area aim turn switch particular one black black flashlight +food_can/food_can_2_1_251,can campbells chicken noodle soup red white can soup can soup unopened can campbells chicken noddle soup flip tab soup can brand chicken noodle soup campbells +tomato/tomato_1_4_101,red tomato red round tomatoe plum tomato red tomato tomato +potato/potato_3_1_188,yellow potato potato good size baked potato medium sized potato potato potato +notebook/notebook_3_2_221,spiral bound notebook notebook paper notebook drawing pad neon green tie dye cover spiral bound notebook pad paper held together wire spiral one side writing notebook +lemon/lemon_3_4_60,lemon lemon yellow lemon lemon yellow lemon sour +food_box/food_box_1_2_4,box sugar substitute red white green stripe box sugar sweetner package sugar substitute box containing food product possibly tea mix box white fine granulated sugar +garlic/garlic_2_2_152,fresh unpeeled garlic clove garlic looks like head garlic bulb garlic bulb garlic +marker/marker_4_2_85,green marker flashlight used se dark pen magic marker green marker +tomato/tomato_2_2_82,red tomato red tomato fruit cherry tomato +marker/marker_1_2_192,magic marker dry erase marker used white boards red dry erase marker red marker glue pen +instant_noodles/instant_noodles_4_4_160,package snack food humans eat snack foods part diet packet instant noodles mostly red package food package noodles ramen soup mix package instant ramen plastic package food japanese writing +lightbulb/lightbulb_2_2_61,light bulb light bulb light bulbs used residential fixtures lightbulb light bulb +notebook/notebook_4_2_21,blue spiral bound notebook object blue notebook 70 bottom right writing notebook blue spiral bound notebook spiral bound notebook +cap/cap_2_1_50,woodland camouflage baseball hat green tan brown black camouflage hat baseball cap camo print camouflage hat army hat +garlic/garlic_2_2_120,bulb garlic garlic bulb garlic clove garlic head garlic +coffee_mug/coffee_mug_7_1_1,blue coffee mug blue coffee mug coffee mug mug ceramic cup blue outside white inside +keyboard/keyboard_3_2_136,black plastic keyboard rectangular details painted white computer keyboard extended black computer keyboard object long black keyboard computer keyboard +glue_stick/glue_stick_2_1_148,thing lip bulm sphere canister white top glue stick +glue_stick/glue_stick_5_1_49,tube glue glue stick +food_box/food_box_10_1_130,box food maybe pancake mix box food could cereal cookies box crackers box crackers +notebook/notebook_2_4_217,notepad lined blank paper writing notebook spiral notebook 70 pages blank paper student would use notebook like spiral bound notebook pad paper held together wire spiral one side spiral bound notebook yellow notebook sits 70 page yellow notebook +cap/cap_1_4_131,white baseball cap black pin stripes w logo item hat white vertical black stripes logo embossed white baseball hat black stripes baseball cap white cap black lines runnig baseball type cap cap white blue stripes +food_bag/food_bag_7_1_88,bag chips bag chips bag chips pack chips like snack +rubber_eraser/rubber_eraser_3_4_105,pink eraser eraser pink rectangular rubber eraser pencil eraser big pink eraser pink eraser pink eraser +water_bottle/water_bottle_9_2_156,water bottle clear purple water bottle opaque purple lid says bpa free oni blue reusable water bottle drinking container reusable cup bpa free +mushroom/mushroom_1_4_155,clove garlic mushroom might green mold backside something looks like ginger +marker/marker_6_1_51,pen black pen blue grips ink pen pen +toothbrush/toothbrush_2_2_185,white lime green toothbrush toothbrush toothbrush light green toothbrush toothbrush +mushroom/mushroom_3_1_12,object large white bone +water_bottle/water_bottle_9_2_218,purple water bottle plastic sipping water bottle blue cap plastic water bottle purple clear water bottle object purple drink container lid +bowl/bowl_2_2_10,object bowl use eat food object can eaten large hole ints center bowl glass bowl used hold liquid foods empty dinner bowl +cap/cap_3_2_182,black baseball cap image bulldog front black hat picture bulldog front black baseball cap says bulldog picture bulldog hat bulldog graphic design sitting atop stool bulldogs baseball cap +marker/marker_9_1_85,marker yellow highlighter felt tip marker piece felt black cap makes mark paper spreading ink tube magic marker yellow highlighter +pear/pear_4_1_156,brown pear pear pear pear pear +marker/marker_6_1_209,marker magic marker +flashlight/flashlight_2_1_40,flashlight flash light red black flashlight electrical battery powered device called flashlight powered produces light humans need see dark red flashlight +water_bottle/water_bottle_6_1_191,clear water bottle bottle water bottle water blue cap bottle drinking water plastic water bottle +plate/plate_7_2_56,empty dinner plate plain white plate bowl normally used soups deserts part table setting white plate white plate paper plate white plate kitchen bowl hold food +banana/banana_2_1_142,fruit known bananna banana mostly yellow banana banana banana plate banana banana +instant_noodles/instant_noodles_5_1_134,pack asian food package food preparation required food can eaten package ramen soup package ramen noodles package food +soda_can/soda_can_1_2_174,can pepsi can pepsi mostly blue pepsi logo can pepsi can pepsi can pepsi carbonated drink +tomato/tomato_5_4_15,tomato red ball tomato cherry tomato red tomato used many foods red tomato +food_box/food_box_12_4_139,box snacks looks like cookies box crackers pack cookies box crackers box crackers box wheat crackers shows one packet junk food pejorative term food containing large number calories sugar fat little box salted crackers +scissors/scissors_4_1_185,scissors yellow handle pair scissors pair scissors pair scissors pair scissors handle grey yellow accents +garlic/garlic_7_4_238,looks like couple bars soap +dry_battery/dry_battery_4_2_79,size c battery battery black copper battery large alkaline battery copper black battery sized battery electric battery device consisting one electrochemical cells external connections provided power electrical devices flashlights smartphones electric cars battery +stapler/stapler_8_1_216,mini stapler small red stapler red stapler small red stapler +soda_can/soda_can_3_4_5,can soda can 7 can mountain dew can soda can soda +food_box/food_box_10_1_47,green box probably contains food box something box kind food box light green white panel upc box crackers box snacks +shampoo/shampoo_2_4_181,bottle shampoo white bottle bottle shampoo +toothpaste/toothpaste_2_4_160,tube toothpaste tube crest toothpaste tube crest toothpaste tube crest toothpaste used clean teeth tube toothpaste +toothbrush/toothbrush_1_4_25,red white toothbrush toothbrush red white toothbrush toothbrush oral hygiene instrument used clean teeth toothbrush red white toothbrush toothbrush red white red white toothbrush +pear/pear_4_4_85,bosc pear pear pear yellow pear sticker brown pear +lightbulb/lightbulb_1_1_55,energy efficient light bulb light bulb screwed powered electrical light socket produces visible light led light bulb light bulb light bulb +lightbulb/lightbulb_1_4_176,compact fluorescent lightbulb white led light bulb light bulb smart lightbulb led lightbulb florescent light bulb lightbulb used light area light bulb +coffee_mug/coffee_mug_2_4_80,coffee cup mug brown coffee mug coffee mug called cup mug commonly used hold drink tea coffee +cell_phone/cell_phone_5_1_134,smartphone cellphone cell phone smartphone silver black cell phone +instant_noodles/instant_noodles_8_2_62,package ramen package noodles packet ichiban brand instant ramen noodles package white brown package food +stapler/stapler_4_1_53,stapler black stapler stapler black stapler black manual stapler +toothbrush/toothbrush_5_4_82,red white toothbrush white red toothbrush red white toothbrush red white toothbrush tooth brush +toothpaste/toothpaste_2_1_87,tube crest toothpaste tube toothpaste tube crest toothpaste one tube crest toothpaste toothpaste paste gel dentifrice used toothbrush clean maintain aesthetics health teeth +food_can/food_can_11_4_5,can soup can soup can food can food can soup can food unopened can flip top label red white +hand_towel/hand_towel_2_1_24,folded towel red towel folded twice rectangular shape white tag visible one edges red cloth wash cloth red towel placed white red plate +coffee_mug/coffee_mug_7_1_10,cup blue white mug coffee mug coffee cup blue white mug +scissors/scissors_3_4_107,blue scissors pair scissors scissors blue handle pair scissors object pair blue scissors +calculator/calculator_2_1_168,calculator calculator calculator calculator used solving math problems black desk calculator small flip screen +food_can/food_can_3_1_30,can product can soup can soup aluminum can brand soup might campbells brand can soup +bell_pepper/bell_pepper_5_2_56,green bell pepper green pepper green pepper green bell pepper green pepper +sponge/sponge_5_2_170,sponge kitchen scrubbing sponge red blue sponge sponge object square shaped soft +cell_phone/cell_phone_1_1_21,cell phone gray black cell phone cell phone slim mobile phone cellphone smartphone +toothpaste/toothpaste_2_4_47,tube toothpaste small tube crest toothpaste tube crest toothpaste tube toothpaste tube crest toothpaste white blue label tube crest toothpaste tube crest toothpaste +pliers/pliers_6_2_25,pair pliers pair pliers pliers black handles metal tip pair pliers blue hand grips pair pliers blue handles +keyboard/keyboard_1_2_176,keyboard wireless keyboard keyboards used computers computer keyboard flat keyboard silver computer keyboard white keys +pear/pear_3_2_84,pear pear brown pear +ball/ball_5_2_232,toy football football inflatable toy football brown white stripes toy football toy football two white lines side orange brown textures around ball +soda_can/soda_can_6_1_138,canned beverage can orange soda can soda yellow aluminum can type soda drink can soda can fanta soda aluminum beverage can yellow +rubber_eraser/rubber_eraser_2_1_68,image blurry make object blurry image +apple/apple_5_4_21,green apple green apple green apple green apple green apple +coffee_mug/coffee_mug_8_4_244,empty coffee mug cup mug often used hold coffee tea drink humans ingest white mug blue stripes outside mug coffee mug +pliers/pliers_2_2_43,pair pliers pliers made various shapes sizes many uses used gripping something round like pipe rod black pliars pair pliers pair pliers +scissors/scissors_2_1_88,pair scissors orange colored scissorsa scissors orange handle pair adult scissors bright orange handle pair scissors +dry_battery/dry_battery_6_4_208,battery two batteries battery battery +food_can/food_can_2_2_207,can soup can cambells soup can soup can soup can campbells soup red white +bell_pepper/bell_pepper_4_1_3,bell pepper red thick green stem laying side vegetable called red pepper can eaten raw cooked red pepper red bell pepper red bell pepper red bell pepper side red pepper red bell pepper laying side +pliers/pliers_1_4_211,pair pliers pair pliers pair pliers pair metal pliers dark blue handle pair scissors +instant_noodles/instant_noodles_6_4_2,package food package food package ramen noodles package food package instant ramen noodles mostly yellow +binder/binder_1_2_113,red cloth red binder sitting top white object school folder large red square used block something else red folder red sheet paper top toilet +cell_phone/cell_phone_4_2_98,cellphone used communicate persons cell phone digital camera can record pictures later display editing computer cellphone +toothpaste/toothpaste_5_1_142,toothpaste paste gel dentifrice used toothbrush clean maintain aesthetics health teeth tube crest toothpaste tube toothpaste tube toothpaste tube toothpaste +food_jar/food_jar_2_4_166,jar jam jelly best uses putting toast breakfast jar jelly jar jelly jar jam jelly +stapler/stapler_1_2_162,black stapler stapler black stapler stapler black stapler +keyboard/keyboard_4_4_6,computer keyboard computer keyboard black keyboard black computer keyboard keyboard unknown brand +instant_noodles/instant_noodles_3_2_128,ramon noodle soup package food package frozen vegetables bag frozen vegetables +scissors/scissors_3_2_192,scissors blue handle pair scissors pair scissors pair scissors bright blue handle pair scissors blud handle used cut things +glue_stick/glue_stick_3_1_60,glue stick tube glue glue stick gluestick can spray +instant_noodles/instant_noodles_8_2_9,package dry ramen need prepared eaten packaging plastic packet something looks like noodles package food plastic bag processed food sort packet ichiban instant ramen noodles package brown white package food +shampoo/shampoo_1_2_111,body cleanser hair product bottle shampoo conditioner bottle shampoo looks like back bottle conditioner cant read label shaped like v05 bottle body wash +bowl/bowl_4_1_42,coffee cup white ceramic cereal bowl white bowl empty dinner bowl ceramic cup white ceramic bowl white bowl could used hold food like cereal soup ice cream examples white cup soup custard +plate/plate_5_1_121,white plate white plate empty plate plate empty dinner plate +marker/marker_8_4_55,magic marker felt tip marker piece felt black cap makes mark paper spreading ink tube red highlighter pen marker +coffee_mug/coffee_mug_2_4_105,mug empty coffee cup colored black inside coffee mug dark brown coffee mug brown mug +toothpaste/toothpaste_5_1_244,tube toothpaste tube toothpaste toothpaste minty flavor tube toothpaste tube crest toothpaste green blue tube toothpaste mostly blue green tube toothpaste tube crest toothpaste +lemon/lemon_3_4_137,lemon yellow lemon lemon yellow lemon skin sometimes grated juice inside extracted juice cooking tart yellow lemon still showing bit green one end lemon fruit lemon yellow citrus fruit lemon yellow lemon +food_box/food_box_6_2_82,box pretzel thins white brown photo pretzels front white box pretzel thins box pretzel thins box pretzel thins box pretzel thins +stapler/stapler_7_2_1,mini blue stapler small blue stapler blue stapler small blue stapler +food_jar/food_jar_4_2_175,object top contains liquid substance made ragu looks like jar ragu alfredo sauce jar ragu white pasta sauce bottle ragu white pasta sauce sealed 16 ounce glass jar original ragu alfredo sauce +toothpaste/toothpaste_2_2_61,tube toothpaste plastic tube crest toothpaste white cap blue label tube toothpaste small brush paste used clean humans teeth tube toothpaste tube crest toothpaste +mushroom/mushroom_3_2_118,folded towel +camera/camera_2_2_196,camera digital camera camera camera +toothpaste/toothpaste_5_1_189,tube toothpaste tube toothpaste crest brand toothpaste tube toothpaste tube toothpaste tube crest toothpaste +food_bag/food_bag_6_1_176,unopened bag baked chips bag red black bag chips bag chips package contains snack food humans eat snack food part diet bag pop chips +soda_can/soda_can_3_4_130,can mountain dew diet drink can mountain dew can mountain dew can mountain dew drink can diet mountain dew +plate/plate_5_4_58,saucer plate plate empty dinner plate plate broad mainly flat vessel commonly used serve food +tomato/tomato_2_2_167,cherry tomato tomato tomato roma tomato red tomato +dry_battery/dry_battery_5_2_131,small battery battery battery battery energizer battery battery battery +binder/binder_2_2_10,binder looks like purple 3 ring binder cant read label looks like maybe 1 wide binder 85x11 paper purple binder school folder binder +kleenex/kleenex_2_2_205,box kleenex box tissues box tissues tissues thin absorbent paper cloths used clean nasal malfunctions box soft tissues box facial tissues +food_can/food_can_14_2_63,can soup red can soup can can food product can soup can soup chilli can food unopened can flip top +soda_can/soda_can_2_4_122,looks like can 7 can 7 7up can mainly green can 7 clear drink soda pop +comb/comb_5_4_30,black handled hairbrush hairbrush hair brush hair brush hair brush +toothpaste/toothpaste_3_2_179,tube toothpaste tube ultra bite toothpaste tube ultra brite toothpaste tube toothpaste tube whitening toothpaste +water_bottle/water_bottle_7_4_164,water bottle water bottle red label bottle water plastic water bottle bottle water +comb/comb_3_1_68,combs used teasing hair hair brush hair brush black hairbrush hair brush +flashlight/flashlight_5_4_48,yellow duracell flashlight flashlight yellow black colored flashlight used see dark yellow flashlight yellow black flashlight +shampoo/shampoo_5_4_248,bottle shampoo liquid inside pink suave shampoo bottle container hand soap bottle shampoo liquid soap +food_bag/food_bag_7_1_189,bag tortilla chips green photo chips bag chips bag chips sealed plastic bag contains baked slivered potato products bag tortilla chips goes good salsa +coffee_mug/coffee_mug_1_1_118,white red coffee mug coffee mug mug red graphic design mug coffee mug +peach/peach_3_2_234,peach red apple piece fruit red apple apple one whole red tomato +ball/ball_6_2_66,toy basketball balls used play ball games nerf basketball basketball +garlic/garlic_3_4_234,clove garlic bulb garlic whole garlic bulb +peach/peach_3_1_20,piece fruit apples fruit peach peach peach +ball/ball_7_1_146,soccer ball object soccer ball soccer ball black white soccer ball inflatable toy soccer ball black white +food_bag/food_bag_8_4_12,chip bag green sun chips bag chips bag sun chips bag chips small bag french onion sun chips +lemon/lemon_1_4_103,lemon yellow lemon sticker yellow lemon yellow lemon lemon sticker +bowl/bowl_3_2_82,white bowl empty dinner bowl white bowl white bowl bowls used storing non food items +greens/greens_4_4_80,bok choi baby bok choy green vegetable perhaps artichoke kale plate green lettuce +lime/lime_4_1_174,large lime avocado green fruit people eat raw often mixed foods lime fruit sour lime green lemon citrus fruit lime lime hybrid citrus fruit dark green lime front red object lime mostly obscuring lime shiny two toned +hand_towel/hand_towel_4_2_71,face towel smallest towels mostly use wash face cases clean things cloth towel small grey towel folded towel brown towel sitting white red plate +keyboard/keyboard_2_2_4,black computer keyboard black computer keyboard black computer keyboard computer keyboard computer keyboard +scissors/scissors_4_2_69,picture pair scissors handle scissors blue yellow scissors blue yellow handle silver yellow scissors pair scissors pair scissors +calculator/calculator_3_4_169,nice little pocket calculator basic functions calculator calculator calculator flat rectangular many black buttons object white black small calculator +keyboard/keyboard_4_4_56,computer keyboard computer keyboard computer keyboard black keyboard connected computer keyboard black +lightbulb/lightbulb_3_1_44,light bulb round white bulb light bulb non led lightbulb give different kind light light bulb +cereal_box/cereal_box_5_4_35,white red rectangular food package packet something box crackers box food +soda_can/soda_can_5_4_145,can soda can diet dr pepper aluminum can dr pepper type soda can diet dr pepper can soda can diet dr pepper soda diet dr pepper can diet dr pepper +cap/cap_2_4_97,black baseball cap army hat camoflauge baseball cap baseball cap camouflage baseball hat green brown tan black +food_bag/food_bag_6_2_164,package chips bag chips pop chips bag bbq pop chips bag pop chips flavored barbeque +lemon/lemon_4_4_145,lemon yellow lemon lemon yellow lemon yellow lemon side +instant_noodles/instant_noodles_1_1_81,package food colorful bag candy package noodles bag chips +food_can/food_can_9_1_87,can can soup can white label pink image nutrition facts can soup tin paint +cell_phone/cell_phone_4_1_98,cell phone white black flip phone flip phone white base black top mobile phone +banana/banana_1_4_9,banana plate yellow banana laying white object banana yellow banana yellow banana +soda_can/soda_can_4_1_104,can soda can soda can soda can coke +cap/cap_3_2_82,black cap black ball cap black baseball cap baseball cap black baseball cap +sponge/sponge_3_2_188,sponge kitchen sponge kitchen scrubbing sponge sponge blue cleaning sponge +tomato/tomato_6_4_93,red tomato tomatoe tasty sweet fruit called tomato can eaten raw cooked tomato tomato +cereal_box/cereal_box_2_4_33,box food probably cereal picture box cereal cereal delicious breakfast treat box holding food preparation required food can eaten +toothbrush/toothbrush_1_1_114,toothbrush red white toothbrush red white toothbrush red white toothbrush red white toothbrush +pliers/pliers_5_4_49,pair pliers plier tool used hold wires together pair pliers pair pliers +lime/lime_4_1_15,green lime lime fruit called lime can eaten raw cooked lime green lemon citrus fruit lime lime hybrid citrus fruit green lime +food_box/food_box_11_4_106,red box cheez snack food cheese flavored humans eat snack food part diet box cheez box cheez looks like side box cheez box cheez snacks box cheez box cheez crackers +soda_can/soda_can_6_4_163,one can welchs juice orange flavor can welchs lemonade can yellow can soda can welchs soda can juice +tomato/tomato_7_1_9,red tomato small red tomato tomato tomato tomato tomato red tomato +dry_battery/dry_battery_1_4_126,battery 9 volt battery battery 9 volt battery +food_can/food_can_11_2_192,can campbells soup can filled food would eat cold metal can soup can soup can soup +orange/orange_4_4_53,orange orange orange mostly orange color slightly green lemon orange orange citrus fruit orange unpeeled orange +food_can/food_can_7_4_267,aluminum can easy open top white label can soup can soup can food +food_bag/food_bag_7_1_128,green bag chips bag chips bag chips bag chips potato chips delicious dinner snack bag potato chips bag potato chips bag green bag chips looks like kettle chips +onion/onion_5_4_180,purple onion +food_can/food_can_9_4_4,can soup can looks like can foodthis could liquid solid food can can soup can spaghettios red white label +tomato/tomato_2_1_141,red tomato plum tomato roma tomato ripe cherry tomato cherry tomato +peach/peach_3_2_198,peach piece fruit peach mostly pink peach fruit known peach +food_cup/food_cup_4_2_164,container chobani yogurt container yogurt container greek yogurt container chobani yogurt container food probably yogurt +food_bag/food_bag_8_1_169,bag chips bag sun chips bag chips object green bag sun chips bag sun chips +sponge/sponge_4_2_11,blue sponge sponge purple sponge purple sponge kitchen scrubbing sponge +pitcher/pitcher_3_4_122,pitcher green ceramic pitcher pitcher liquid pouring hand holds handle tips fluid green vase green water vase +marker/marker_2_1_201,green expo dry erase marker magic marker green expo marker green expo dry erase marker green dry erase marker +food_bag/food_bag_7_4_122,bag chips packet snacks bag chips bag chips bag chips targets house brand archer farms bag potato chips +marker/marker_2_4_64,green dry erase marker green colored marker green cap green label white base green expo dry erase marker glue pen +bowl/bowl_1_2_170,red decorative bowl green yellow markings bowl red brown ceramic bowl bowl holds soups liquid foods empty dinner bowl +hand_towel/hand_towel_2_2_106,red washcloth red towel placed white red plate red napkin folded folded towel maroon colored wash towel +plate/plate_4_1_218,paper plate colors plate beige cream empty plate plate empty dinner plate plate +instant_noodles/instant_noodles_8_4_112,packet instant ramen noodles brand ichiban package white brown rectangular plastic package food package food package noodles looks like package ramen similar dried food ichiban soup mix +orange/orange_1_4_232,orange orange slightly rotten left side old orange piece fruit orange +plate/plate_5_4_6,white ceramic saucer bowl water white ceramic plate white plate empty dinner plate +food_box/food_box_5_2_134,box market pantry crackers red white design green stripe box crackers box classic crackers store brand crackers resemble club crackers box crackers box classic crackers box crackers +lemon/lemon_4_1_177,lemon yellow lemon yellow lemon lemon species small evergreen tree flowering plant lemon +garlic/garlic_1_2_30,clove garlic bunch garlic bulb garlic bulb garlic +bell_pepper/bell_pepper_3_1_26,red bell pepper red pepper red bell pepper green stem red bell peppers multiple culinary uses red pepper red bell pepper upright red bell pepper red vegetable green stem stands +tomato/tomato_6_1_138,red tomato tomato tomato still vine produce sticker ripe tomato fruit still vine red round can used salads sandwiches +instant_noodles/instant_noodles_2_2_17,package noodles package food package soup package food preparation required food can eaten +scissors/scissors_1_2_50,scissors black handle pair scissors grey orange scissors pair scissors pair scissors +onion/onion_2_4_70,onion gets cut white onion onion large white onion +plate/plate_3_4_10,empty dinner plate white blue plate blue white plate white powder white plate blue stripes around edge bowl normally used soups deserts part table setting +flashlight/flashlight_3_2_106,blue flashlight black button plastic flashlight blue flashlight blue flashlight flashlight seeing dark +food_can/food_can_13_2_254,looks like can progresso soup cant tell kind can progresso soup food container commonly called tin can can easily opened removing pop top lid can soup can soup +scissors/scissors_2_2_150,heavy duty scissors orange handle pair scissors handles orange blades angled pair scissors orange handle pair scissors pair scissors kind handles bent upwards bit make easier cut surface possibly sewing scissors handles orange +hand_towel/hand_towel_1_1_160,object fluffy object white comfy pillow white towel folded towel towel +toothbrush/toothbrush_5_4_152,tooth brush used toothpaste cleans humans teeth toothbrush red white toothbrush toothbrush white red toothbrush +tomato/tomato_2_4_16,grape tomato plum tomato grape plum tomato grape tomato roma tomato +cereal_box/cereal_box_5_4_94,box crackers box containing food product likely cereal box cereal top view box food +shampoo/shampoo_1_4_263,shampoo bottle container used hold shampoo plastic container may dispense shampoo conditioner hand lotion many substances bottle shampoo conditioner bottle body wash bottle shampoo +instant_noodles/instant_noodles_6_4_134,package food package soup package food package noodles package instant ramen bag food inflatable object can inflated gas +keyboard/keyboard_3_2_89,mechanical keyboard black computer keyboard computer keyboard keyboard could used connecting laptop tablet monitor type work needs done computer keyboard +soda_can/soda_can_1_1_58,can pepsi cylindrical primarily blue color top silver pepsi name logo side can pepsi can pepsi looks like can regular pepsi cola can pepsi +potato/potato_6_1_96,possibly lumpy deformed potato large baking potato potato brown russet potato baking potato tuber light brown color somewhat lumpy basically oval shape potato sort potato +hand_towel/hand_towel_2_4_158,looks like brown wash cloth towel placed white red plate dinner napkin cloth napkin dishcloth red napkin lies plate brown square shape +sponge/sponge_4_1_192,purple dish sponge purple sponge sponge sponge violet colored sponge +pear/pear_2_1_128,pear pear piece fruit fruit called guava popular yellow pear +food_box/food_box_8_1_18,box product inside side blue box box nutrition label box crackers blue box non perishable food nutritional facts label displayed +lemon/lemon_5_2_106,lemon yellow lemon lemon lemon object medium sized lemon +camera/camera_2_4_164,older style camera black camera camera camera digital camera +apple/apple_5_4_116,green apple granny smith apple green apple green apple green apple +lightbulb/lightbulb_1_2_155,lcd lightbulb coiled energy efficient light bulb light bulb compact fluorescent light bulb fluorescent light bulb +shampoo/shampoo_4_1_331,blue bottle suave shampoo bottle shampoo conditioner bottle body wash bottle suave hair conditoner white silver cap body cleanser +cereal_box/cereal_box_3_2_4,crispy dry breakfast cereal usually eaten amount milk spoon box cereal box cereal box kelloggs cereal box special k cereal +stapler/stapler_5_4_171,black stapler black stapler stapler black stapler stapler +food_jar/food_jar_3_4_80,jar jam jar filled something can jar jelly jar gravy +ball/ball_4_4_146,fake orange black basketball ball looks little deflated nerf basketball toy basketball +ball/ball_7_1_178,soccer ball soccer ball soccer ball us soccer ball rest world calls football children adults kick ball net make goal black white soccer ball +food_cup/food_cup_4_2_92,container chobani yogurt container yogurt container yogurt unopened chobani greek yogurt peach flavored chobani peach yogurt +potato/potato_3_2_77,potato potato baked dinner roll +ball/ball_5_4_31,brown football football shown toy football small football inflatable football +pear/pear_7_4_14,yellow apple golden yellow round piece fruit apple yellow apple fruit probably apple +pear/pear_7_2_241,looks like yellow apple could probably mango piece fruit fruit apple type frit apple asian pear +mushroom/mushroom_2_2_183,shitake mushroom mushroom +kleenex/kleenex_3_1_258,thin box tissues box kleenex box tissues tissues thin absorbent paper cloths used clean nasal malfunctions box facial tissues box tissues +binder/binder_3_1_93,school folder +calculator/calculator_4_4_115,calculator green calculator simple digital calculator basic math problems can solved using electronic device bright green calculator calculator green calculator white green buttons neon green calculator +potato/potato_5_1_190,unpeeled potato brown skin large baking potato potato brown russet potato potato +toothpaste/toothpaste_1_4_172,colgate toothpaste minty flavor tube toothpaste tube toothpaste tube colgate toothpaste tube colgate toothpaste tube red blue white +food_box/food_box_12_1_91,box snacks looks like cookies box crackers box cookies crackers box crackers box crackers blue green picture crackers +bowl/bowl_5_2_145,white cereal bowl multiple stripes around top bowl ceramic bowl empty bowl bowl white blue stripes inside ceramic bowl stripes good cereal +pliers/pliers_1_4_137,pair pliers pair pliers pair pliers pair pliers blue handle pair pliers +glue_stick/glue_stick_2_2_147,white cylinder shaped glue stick glue stick tube lip balm glue stick white +flashlight/flashlight_4_4_26,flashlight black flashlight object black black flashlight flashlight +instant_noodles/instant_noodles_5_1_255,package ramen noodles orange bag something package food +ball/ball_3_1_8,baseball red seams round white baseball baseball baseball +ball/ball_2_4_235,inflatable pillow looks like soccer ball soccer ball toy soccer ball small bean bag toy designed like soccer ball soccer ball +sponge/sponge_9_4_5,red colored something small red fabric ball pink pom pom +stapler/stapler_2_4_20,stapler black grey stapler stapler black stapler rubber grip +food_cup/food_cup_2_4_178,container yogurt container yogurt plastic cup yogurt foil lid white container yogurt container yogurt bottle narrow necked container made impermeable shapes sizes store liquids like beer container flavored yogurt +instant_noodles/instant_noodles_4_1_217,bag instant asian noodles red bag package food package ramen noodles package noodles object bag cheetos type chips instant ramen pack bag ramen soup mix +food_box/food_box_5_2_242,box food box containing food product box crackers red white green stripe box crackers box crackers +cap/cap_1_1_52,baseball cap got well spaced blue grey pin stripes white background white black striped baseball cap baseball cap white green pinstriped ballcap white striped baseball cap +ball/ball_2_1_5,soccor ball soccer ball inflatable toy soccer ball soccer ball nerf soccer ball +camera/camera_3_1_96,digital camera black camera camera camera pocket digital camera +food_bag/food_bag_2_4_135,bag teddy bear shaped cookies bag teddy bear cookies object package cookies package white red top bag cookies package cookies bag cookies bag teddy bear cookies medium sized bag cookies +apple/apple_4_1_185,piece fruit known apple yellow apple apple golden delicious apple yellow apple +cell_phone/cell_phone_3_2_98,cell phone mobile phone cellphone +shampoo/shampoo_6_4_30,bottle conditioner bottle yellow green top bottle shampoo bottle likely contains shampoo another personal grooming product bottle soap +lemon/lemon_6_1_101,yellow lemon lemon yellow lemon lemon yellow lemon +food_bag/food_bag_4_4_217,bag mini oreos package mini oreos blue bag mini oreos yellow white text snack size bag mini oreo cookies bag mini oreo cookies +toothbrush/toothbrush_3_4_106,light blue colored tooth brush tooth brush toothbrush toothbrush light green white toothbrush light green toothbrush toothbrush oral hygiene instrument used clean teeth gums tongue blue white toothbrush +orange/orange_1_1_175,sweet orange fruit orange skin broken open inside gooey many seeds orange spherical orange fruit orange +food_box/food_box_6_4_122,box food thiis box pretzel thins unopened box pretzel thins box pretzel thins small white box box pretzels +sponge/sponge_12_1_140,blue colored something round shape kitchen sponge blue dish scrubber +kleenex/kleenex_1_2_146,box kleenex box filled soft tissues used cold square box tissues box tissues box facial tissue +garlic/garlic_7_4_87,clove garlic garlic clove bulb fresh garlic bulb garlic +camera/camera_3_4_128,digital camera can record pictures later display editing computer digital camera black camera camera digital camera +food_jar/food_jar_2_1_133,jar jelly jar orange marmalade jar jelly jar jam jelly jar jelly jar jam +calculator/calculator_2_1_48,calculator calculator simple digital calculator basic math problems can solved using electronic device calculator black gray yellow buttons 10 key calculator solar powered used calculate numeric equations example check book +food_can/food_can_4_2_252,can condensed milk used baking food can used store keep food items can milk can soup +food_can/food_can_12_2_119,can vegetables can food can white predominantly white label green lot text can soup can can soup +greens/greens_2_2_12,green leaf lettuce plate lettuce fresh kale green lettuce +ball/ball_2_2_75,soccer ball hard basketball although shape different color used feet hands shrunken lack white football soccer ball mini soccer ball looks like soccer ball almost looks like blow soccer ball squishy toy soccer ball hackesack looks like soccerball +pear/pear_2_4_64,green ripe pear green pear bartlett pear pears delicious fruit pear yellow pear green pear green yellow bruises pear tree pears fruit used make medicine +sponge/sponge_7_2_150,yellow sponge green scrubbing surface kitchen sponge squeegee green yellow sponge yellow sponge green top layer rougher abrasive scrubbing sponge used cleaning dishes sponge tool cleaning aid made soft porous material yellow green sponge +keyboard/keyboard_4_2_51,computer keyboard computer keyboard black computer keyboard black keyboard facing backwards sort pedastal black computer keyboard special key row numeric pad +sponge/sponge_2_4_103,green object rectangular looks like sponge looks like lime green colored rectangular sponge light green sponge kitchen sponge sponge +instant_noodles/instant_noodles_2_4_197,package food package soup package noodles package ramen noodles packet ramen noodles +potato/potato_1_4_101,red potato red potato brown ball +greens/greens_4_2_247,baby bok choy looks like corn husk leek picture green vegetables vegetables interesting shape like cross green vegetable +bell_pepper/bell_pepper_3_4_10,red bell pepper red bell pepper red pepper bright red vegetable spherical shape vibrant green stem protruding center red pepper +flashlight/flashlight_4_4_167,long thin black flashlight object medium sized black flashlight black flashlight black flashlight black colored flash light +pear/pear_7_2_168,apple think darker yellow round asian pear apple piece fruit +food_jar/food_jar_6_1_135,small glass jar food jar food jar jelly jar jelly jar jam like thing +marker/marker_5_2_167,pen magic marker pen blue marker blue colored pen +cereal_box/cereal_box_1_2_45,cereal delicious breakfast offering object box cereal box yellow orange looks like back cereal box cant see brand looks like sort flake cereal like corn flakes package fiber rich cereal unopened box crunchy cereal +bowl/bowl_1_4_62,empty dinner bowl red bowl red black ceramic bowl pottery bowl +bowl/bowl_6_1_116,blue plastic serving bowl flowered printed inside bowl blue outside mostly white inside blue yellow green floral patterns inside also sticker bowl round bowl bowl blue outside inside white blue yellow green shapes painted along rim blue bowl empty dinner bowl +instant_noodles/instant_noodles_2_1_194,package food possibly ramen package ramen noodles package ramen noodles pack ramen package instant ramen noodles white pink package +soda_can/soda_can_4_4_113,open can soda black aluminum beverage can brand carbonated drink black can open can soda object black red can soda looks like coke zero +greens/greens_1_1_175,green leaf lettuce plate green vegetables bundle lettuce green leafy mass looks vegetable either celery broccoli green lettuce lettuce green lettuce bundle greens used cooking +coffee_mug/coffee_mug_8_4_234,empty mug mug white blue stripes coffee cup used drink coffee coffe mug coffee mug white black mug +notebook/notebook_3_1_177,notebook spiral bound notebook white green cover spiral bound notebook notebook writing notebook +dry_battery/dry_battery_6_2_150,battery battery large alkaline battery silver black red battery battery used powering small personal electonics +lightbulb/lightbulb_3_2_164,lightbulb light bulb lightbulb light bulb round lightbulb glass part white part screws gold +ball/ball_1_1_282,football football toy football football +pliers/pliers_1_1_142,plier pair pliers cutting player set pliers handles blue rest made metal pair pliers pliers plyers used tool pliers blue handle +toothbrush/toothbrush_2_4_5,tooth brush used toothpaste cleans humans teeth toothbrush green white toothbrush toothbrush toothbrush used brushing teeth +flashlight/flashlight_2_1_111,red flashlight red flashlight torch stick combustible material one end ignited used light source red flashlight device called flashlight powered batteries produced visible light +soda_can/soda_can_3_2_155,can mountain dew can 7 cold can soda can soda can soda green label soda can metal container designed hold fixed portion liquid carbonated soft drinks alcoholic drinks fruit juices teas herbal teas energy drinks etc aluminum drink can unopened can soda +calculator/calculator_5_4_43,calculator desk calculator buttons large calculator grey calculator calculator calculator sued solve math problems +pliers/pliers_4_2_15,pair pliers object pair pliers brown handle pair pliers pair pliers black handled pliars pair pliars used grip small things pair pliers brown handles pliers +garlic/garlic_6_4_237,white unpeeled garlic head garlic clove garlic bulb garlic +apple/apple_4_2_218,apple apple yellow apple golden delicious apple yellow apple +ball/ball_6_2_7,basketball pretend orange black basketball basketball shaped toy looks like basketball deflatable basketball nerf basketball +garlic/garlic_7_2_217,clove garlic clove garlic bulb garlic clove garlic garlic clove peel papery white covering cut cook +pliers/pliers_2_1_120,pair pliers blue grips pair pliers pair pliers pair pliers pliers handles black +toothbrush/toothbrush_4_2_156,white purple toothbrush purple white long bristles purple white toothbrush white purple toothbrush toothbrush +kleenex/kleenex_4_2_242,box kleenex blue design open box facial tissues gray rectangular cardboard box tissue box kleenex box facial tissue +pliers/pliers_6_1_14,pair pliers scissors black pliars pair pliers black handles set pliers common tool +stapler/stapler_5_4_106,black stapler stapler stapler stapler +ball/ball_3_4_202,small bean bag toy designed like baseball baseball looks kind like baseball white red stitch markings squished really spherical shiny like covered plastic toy baseball baseball +food_can/food_can_3_2_179,can soup can soup can soup can soup can evaporated milk red white picture pie +coffee_mug/coffee_mug_6_2_136,coffee mug yellow mug coffee cup teacup mug +food_can/food_can_8_4_142,can rotel tomatoes canned food kind can canned good can food +bowl/bowl_2_1_114,bowl normally used soups deserts part table setting green bowl light blue bowl design around rim ceramic bowl empty dinner bowl bowl ornate bowl light green ceramic bowl brown edging around top +pear/pear_8_4_138,apple apple pears delicious fruit apple yellow apple +food_bag/food_bag_1_1_221,bag snacks light blue white object bag chips bag white brown orange labels bag chips unopened bag true delights crisps bag chips +bowl/bowl_5_4_204,white bowl black stripes around edge white ceramic bowl stripes top bowl bowl empty dinner bowl +pear/pear_2_2_16,fruit looks like pear object green red apple apple sticker apple apple brown green pear sticker +glue_stick/glue_stick_4_2_151,gluestick red top tube glue glue stick +marker/marker_3_2_110,dry erase marker shaped like long tube white black black dry erase marker black expo dry erase marker object black expo marker magic marker +kleenex/kleenex_5_2_201,pink white box kleenez paper box plastic lid opening similar tissue papper box facial tissue box tissue paper soft used blow nose box kleenex +dry_battery/dry_battery_3_4_71,battery battery +onion/onion_4_2_44,onion yellow onion onion white onion white onion +onion/onion_6_4_12,red onion purple onion appears red apple looks ripe dark red onion lies red onion +coffee_mug/coffee_mug_5_4_123,white mug object white coffee cup curved handle empty white mug coffee mug white mug white ceramic mug mug thin rim drink smooth surface +food_cup/food_cup_2_2_74,cup yogurt container yogurt container yogurt container yogurt can flavored yogurt looks like yoplait strawberry flavor +water_bottle/water_bottle_4_4_159,water flavored bottle water plastic bottle water inside blue cap label plastic water bottle bottle water bottle water clear bottle water +scissors/scissors_2_2_105,pair scissors pair scissors orange handle pair orange scissors pair scissors generic use scissors orange handles +soda_can/soda_can_3_2_131,can mountain dew can filled type lemonlime soda can mt dew mountain dew green soda opened can soda looks like dew +lime/lime_4_1_181,lime lime green lime lime lime +coffee_mug/coffee_mug_6_4_143,yellow mug textured design around edge yellow ceramic mug coffee mug cup leftover green limedeep inside coffee cup +instant_noodles/instant_noodles_5_4_30,package food package ramen soup package ramen noodles object orange package noodles +lightbulb/lightbulb_4_1_19,light bulb light bulb removed socket light bulb lightbulb object light bulb +pitcher/pitcher_1_4_17,object little tea kettle make tea object handle hole center short mouth outlet pitcher glass pitcher used pour liquids gravy boat +stapler/stapler_7_2_44,small blue stapler small blue stapler baby blue stapler half size regular stapler stapler +onion/onion_3_2_223,yellow onion onion onion tasty vegetable sharp flavor us usually cooked white onion onion onion yellow onion +camera/camera_2_1_72,black digital camera camera electric pencil sharpener digital camera +water_bottle/water_bottle_2_4_127,bottle water clear bottle water object bottle water blue label white cap plastic water bottle bottle water maybe flavored +orange/orange_2_2_236,orange yellow ball yellow fruit lemon usually cooked foods lemon adds sharp sour flavor +keyboard/keyboard_4_2_163,black computer keyboard computer keyboard black ibm extended computer keyboard computer keyboard computer keyboard +pliers/pliers_5_4_196,pair pliers pair needlenose pilers blue handle tool called needle nose pliers used grip manipulate smaller parts blue pliars pair pliers hardware pair pliers blue handles tool grabs small wires +instant_noodles/instant_noodles_7_2_113,generic brand top roman package food writing package food package soup package noodles bag soup mix package ramen +plate/plate_6_1_100,something looks like plate pie crust pie baked oven pies made many different foods plate empty dinner plate brown ceramic plate +binder/binder_3_1_40,black binder black plastic three ring binder school folder black folder folder can used put paper +soda_can/soda_can_2_4_190,can 7 can 7up can soda looks like seven can 7 soda green yellow lemon lime flavor can 7 +sponge/sponge_2_1_63,light green colored sponge green sponge green rectangular dish sponge sponge bright green kitchen sponge green sponge green color scrubber dish sponge +cap/cap_3_4_33,baseball cap black baseball cap black hat black baseball cap looks like black baseball cap think says bulldog bill +hand_towel/hand_towel_4_2_170,towel folded wash cloth brown cloth folded wash rag folded towel +greens/greens_1_4_51,bundle romaine lettuce red twist tie around bunch lettuce green lettuce bunch salad greens green leaf lettuce bundle greens used cooking greens leaves leaf like parts edible plants eaten vegetables salads green vegetable +onion/onion_3_2_59,onion onion onion tasty vegetable sharp flavor us usually cooked white onion +coffee_mug/coffee_mug_4_2_11,coffee mug coffee mug white coffee mug cup white blue mug +ball/ball_5_1_91,football football inflatable toy football brown white nerf football fake football +glue_stick/glue_stick_4_4_104,can spray gluestick glue red cap glue stick tube glue small cylinder shaped object mostly orangey red yellow blue tag center +hand_towel/hand_towel_5_2_89,black towel black towel black towel looks like black folded blanket folded towel +banana/banana_2_4_195,yellow banana banana banana plate banana edible fruit banana banana mostly yellow banana yellow still green yellow banana +greens/greens_3_2_167,baby bok choy bok choi lettuce plate green leafy vegetable +kleenex/kleenex_1_1_86,small square box tissues box tissues tissues thin absorbent paper cloths used clean nasal malfunctions box tissues box kleenex box facial tissue +potato/potato_5_4_120,narrow potato brown baking potato potato potato russet baking potato potato russet potato used cooking potato +food_can/food_can_12_1_66,can soup can can soup can soup can may contain food commonly called tin can +peach/peach_2_2_117,apple peach piece fruit white donut peach cream pink colored peach donut +food_can/food_can_3_2_209,can pumpkin pie can pumpkin puree can pumpkin pie mix can evaporated milk picture pumpkin pie can soup +ball/ball_7_2_176,soccer ball black white soccer ball soccer ball nerf soccer ball small soccer ball toy +food_box/food_box_2_1_8,box zatarains yellow rice mix red white box zatarains yellow rice box zatarains yellow rice box yellow rice box zatarrains rice +ball/ball_3_1_15,plastic toy baseball baseball baseball certain plush baseball perhaps ball used ball games +garlic/garlic_3_1_39,clove garlic bulb fresh garlic bulb garlic bulb garlic garlic white onion +food_bag/food_bag_6_2_153,bag chips bag popchips lying face plate mostly black white lettering picture chips front bag pop chips bag chips bag chips +dry_battery/dry_battery_1_2_82,battery nine volt battery gold black battery battery battery +apple/apple_5_4_215,green apple green apple green apple granny smith apple object green apple sticker still +food_cup/food_cup_3_4_252,yogurt container yogurt container yogurt looks like tub yogurt individual size aluminum foil top plastic packaged cup yogurt peel foil lid +comb/comb_5_2_146,hairbrush black hair brush hair brush hair brush rubber tips hairbrush +stapler/stapler_4_2_69,stapler black stapler stapler black stapler stapler +pear/pear_7_4_80,apple pear apple object round stem yellow hint red +dry_battery/dry_battery_6_4_193,battery sized battery battery battery battery +water_bottle/water_bottle_4_2_34,plastic water bottle bottle mineral water bottle flavored water bottle water bottle water blue label purple stripe bottle water appears flavored variety bottle flavored berry water +lightbulb/lightbulb_2_1_215,light bulb light bulb light bulb plugged light light bulb light bulb +lime/lime_2_1_100,lime appears lime fruit lime lime lemon lime sticker mostly green slightly yellow +stapler/stapler_6_1_88,black stapler stapler black stapler black stapler black stapler +banana/banana_4_4_11,green banana ready eat banana green underripe banana underripe banana green still green yellow colored banana plantain curved shape maybe ripe yet +food_bag/food_bag_7_4_163,bag chips bag potato chips bag chips green bag chips used snacking bag food bag kettle chips bag snack food +soda_can/soda_can_2_2_98,can 7 can 7 can 7up 7up citrus soda popular midwest 7 soda lemon lime flavor +coffee_mug/coffee_mug_1_1_109,coffee mug red white mug coffee cup red white coffee mug mug red grey label +food_bag/food_bag_5_1_81,pack chips like snack bag holds potato chips snack food humans eat snack foods part diet bag market pantry potato chips bag chips bag chips +toothpaste/toothpaste_1_2_2,tube toothpaste toothpaste paste gel dentifrice used toothbrush clean maintain aesthetics health teeth tube colgate toothpaste toothpaste tube colgate tooth paste +lime/lime_4_2_249,lime green lime green lime lime +banana/banana_2_4_50,banana mostly yellow yellow banana banana long banana single ripe banana +comb/comb_5_4_150,hair brush black hair brush hairbrush hair brush black silver hairbrush stiff bristles +bell_pepper/bell_pepper_3_2_80,bell pepper red thick green stem vegetable called red pepper can eaten raw cooked red pepper red bell pepper red bell pepper red bell pepper upright red pepper red bell pepper sitting upright +flashlight/flashlight_1_2_136,flashlight black flashlight flashlight black flashlight handle strap flashlight +binder/binder_2_4_91,purple plastic folder school folder purple folder purple three ring binder +cell_phone/cell_phone_3_2_45,cell phone features flip design closed blue silver flip phone picture old cell phone flip phone old flip phone small compact flip phone cellphone +greens/greens_1_2_144,greens leaf vegetable green leaf lettuce plate green leafy mass looks vegetable either celery broccoli green leaf lettuce lettuce +plate/plate_2_4_204,plate broad mainly flat vessel commonly used serve food blue white colored plate empty dinner plate plate plate +sponge/sponge_11_1_79,scrubber used clean pans dishes kitchen sponge +peach/peach_2_4_116,apple doughnut peach piece fruit piece fruit +food_cup/food_cup_2_1_89,container yogurt container yogurt single serve yogurt container plastic cup yogurt silver foil lid single serving cup frozen yogurt looks like yoplait brand +lemon/lemon_5_1_51,yellow lemon lemon lemon yellow lemon fresh lemon +onion/onion_5_4_62,purple onion red onion onion +pear/pear_4_1_114,pear pear pear golden pear pear +cell_phone/cell_phone_1_1_100,silver mobile phone old slim style mobile phone mobile phone old cell phone used make calls text silver cell phone black border around screen +onion/onion_6_2_215,red onion onion purple onion red onion +food_cup/food_cup_4_2_173,cup yogart chobani peach flavored yogurt container food container yogurt container chobani greek yogurt package chobani yogurt carton likely yogurt appears individual serving small sized container yogurt unopened +peach/peach_1_1_177,peach red peach peach white peach peach +comb/comb_3_4_218,hair brush hair brush used de tangle persons hair black hairbrush black hairbrush green stripe hair brush +banana/banana_1_1_3,banana yellow ripe banana 6 inches long banana plate yellow banana yellow banana +flashlight/flashlight_4_1_85,flashlight flashlight black flashlight looks strong black flashlight black flashlight yellow switch object handle fit comfortably one hand switch black battery operated flashlight black flashlight yellow switch +binder/binder_1_4_217,red binder school folder binder red binder used protect paper metal rings inside separated put holes notebook paper order secure one inch red binder used keep loose papers bound together binder binder red plastic binder used keep paper organized red three ring binder +food_box/food_box_5_4_125,box crackers red white green stripe box food box something box sugar substitute +pear/pear_3_4_84,pear brown pear pear brown green pear produce sticker pear +onion/onion_3_2_209,object hard white round point top looks like onion tan skin onion white yellow onion yellow brown medium sized onion +pear/pear_8_4_105,apple yellow apple round sweet fruit called green apple can eaten raw cooked made apple pie yellow apple yellow apple +calculator/calculator_4_2_50,simple digital calculator basic math problems can solved using electronic device calculator green calculator small buttons lime green calculator calculator +mushroom/mushroom_1_2_145,clove garlic mushroom mushroom +sponge/sponge_6_1_156,kitchen sponge dish sponge yellow top pink bottom sponge sponge dish sponge +stapler/stapler_7_4_189,mini blue stapler blue stapler small blue stapler +ball/ball_6_1_119,orange black small squishy ball basketball fake orange black basketball ball childrens play ball +peach/peach_2_1_187,peach piece fruit doughnut peach apple peach soft juicy fleshy stone fruit +orange/orange_2_4_83,piece fruit apple orange orange +plate/plate_5_2_97,white plate white plate plate ceramic plate empty dinner plate white ceramic plate small ceramic plate white +tomato/tomato_7_2_147,tomato looks like tomato red tomato red tomato tomato +food_can/food_can_6_2_215,can soup red white can campbells soup can food preparation required food can eaten can soup can soup +instant_noodles/instant_noodles_1_2_123,package noodles package food pack ramen package ramen soup bag candy soup mix plastic package food japanese writing +flashlight/flashlight_3_1_75,flashlight made blue plastic black accents blue flash light blue flashlight black rim black button accenting blue flashlight flashlight provides light anything need shine light +food_can/food_can_12_1_179,tin can food can soup can food can food can soup +greens/greens_2_1_132,lettuce bundle fresh parsley bunch parsley fresh kale +food_can/food_can_4_4_52,can soup can food can soup can condensed milk can +scissors/scissors_1_1_88,scissors used cutting various thin materials paper cardboard metal foil cloth rope wire pair scissors pair scissors silver orange scissors scissors gray handle +notebook/notebook_1_2_29,spiral bound notebook red cover red single subject notebook notebook writing notebook notebook blank paper +food_can/food_can_9_2_11,can spaghettios white red cartoon characters front can soup can spaghetti os sealed tin cylinder used package food products can spaghettios childrens pasta can +comb/comb_1_2_32,black brush hair brush hair brush black head silver handle bristles covered colored tops hair brush hairbrush +keyboard/keyboard_5_1_113,computer keypad black computer keyboard black keyboard computer keyboard computer keyboard computer keyboard nawhole yellow onion outer wrapping removed +rubber_eraser/rubber_eraser_3_4_143,eraser eraser used removing writing paper skin pencil eraser eraser +kleenex/kleenex_3_4_172,box tissues box kleenex box facial tissue rectangular box tissues +bowl/bowl_3_2_111,white bowl plastic bowls easy clean white ceramic bowl empty dinner bowl bowl +mushroom/mushroom_1_1_17,object old ball +water_bottle/water_bottle_9_2_233,water bottle purple water container water bottle plastic water bottle purple reusable water bottle +marker/marker_9_1_96,yellow highlighter marker yellow body black cap magic marker yellow highlighter yellow marker black cap +notebook/notebook_2_1_170,yellow spiraled notebook writing notebook yellow notebook spiral bound notebook note book used wright drawing purposes +kleenex/kleenex_4_4_138,box facial tissue box tissues open box kleenex brand tissue box kleenex box tissues +lemon/lemon_2_2_201,yellow lemon lemon sour fruit used flavor foods rarely eaten alone lemon sour fruit lemon yellow lemon citrus fruit lemon lemon species small evergreen tree flowering plant family rutaceae bright yellow lemon mostly oblong nipple one end +notebook/notebook_1_2_97,70 page notebook college rule although can get wide rule well people use school notebook red spiraled notebook writing notebook red spiral bound notebook +cap/cap_2_2_17,camouflage baseball cap green olive camouflage baseball cap camoflauge ballcap baseball cap camo print army cap +mushroom/mushroom_3_4_171,chicken drumstick +onion/onion_2_1_237,medium size white onion onion white onion white onion round object white onion +food_can/food_can_1_4_37,can can food can condensed milk can can shiny +sponge/sponge_7_2_114,kitchen sponge cleaning scrub sponge sponge sponge green yellow used clean dishes sponge +bell_pepper/bell_pepper_6_4_144,fresh green bell pepper green pepper green bell pepper green pepper green bell pepper +peach/peach_2_4_185,doughnut peach peach peach past ripe apple part yellow part light red piece fruit apple sitting upright apple +stapler/stapler_1_4_19,stapler black stapler stapler black grey stapler +shampoo/shampoo_6_1_230,bottle shampoo bottle shampoo body wash bottle lotion bottle green lid yellow bottom could lotion +food_box/food_box_7_2_71,unopened box wheat thins yellow box wheat thins box wheat thins box wheat thins box wheat thins box 6 sides mostly yellow green +food_box/food_box_2_4_99,box zatarrains rice box instant rice box yellow rice box rice +pitcher/pitcher_3_1_93,green vase green vase clay vase brown green glaze pitcher +marker/marker_7_4_54,pink marker black cap highlighter pink highlighter marker purple marker black cap pink highlighter +food_box/food_box_8_2_223,package crackers blue box looks like may contain cracker snacks box crackers box snack crackers +lemon/lemon_6_1_90,lemon lemon lemon yellow lemon yellow lemon +marker/marker_1_4_29,red colored sharpie red expo marker red dry erase marker magic marker red expo brand dry erase marker +coffee_mug/coffee_mug_4_4_165,coffee mug mug coffee cup white coffee mug blue rim white empty cup +banana/banana_1_2_146,banana yellow banana banana plate banana small ripe banana +toothpaste/toothpaste_5_2_187,tube toothpaste tube crest toothpaste tube toothpaste small brush paste used clean humans teeth tube crest tooth paste tube toothpaste +pear/pear_3_2_1,pear brown pear piece fruit known pear red pear tasty variety sweet fruit called pear can eaten raw cooked +shampoo/shampoo_3_1_257,bottle shampoo bottle something looks like shampoo bottle shampoo liquid inside lavender bottle shampoo os bottle shampoo +food_bag/food_bag_8_1_67,bag sun chips green bag sunchips bag full crunchy food flavored bag sun chips bag sun chips +toothbrush/toothbrush_4_1_120,white purple toothbrush tooth brush tooth brush used toothpaste cleans humans teeth purple toothbrush purple white toothbrush tooth brush clean rteeth toothbrush oral hygiene instrument used clean teeth gums tongue purple white toothbrush +kleenex/kleenex_4_2_46,box tissues box holds thin paper tissues tissue used clean sneezes nasal malfunctions box facial tissue box kleenex looks like box kleenex tissues box pattern sort grey feathered background box tissue used blowing nose full box tissues box tissues +onion/onion_1_1_3,looks one clove garlic white onion mushroom white onion +cereal_box/cereal_box_4_4_176,box raisin bran crunch mostly blue purple blue cereal box cereal raisin bran crunch box raisin bran crunch cereal box cereal box raisin bran crunch box cereal box raisin bran crunch cereal +peach/peach_1_2_51,peach peach nectarine piece fruit peach +onion/onion_1_4_191,small white unpeeled onion onion white onion +calculator/calculator_3_1_170,calculator white caculator black keys white calculator black keys calculator calculator calculator calculator used math large white calculator big button +toothbrush/toothbrush_4_1_160,long purple white bristles handle lilac white purple toothbrush purple white toothbrush toothbrush toothbrush +kleenex/kleenex_3_1_116,box tissues box tissues box kleenex box facial tissue tissues can used dry tears blow nose slightly crushed box tissues box tissues box tissues looks like brand kleenex +toothbrush/toothbrush_2_2_154,toothbrush toothbrush object small white green toothbrush white lime green toothbrush laying face table toothbrush +marker/marker_9_4_97,magic marker marker dry erase board green marker looks like hi lighter yellow highlighter yellow highlighter marker +lemon/lemon_2_4_50,yellow lemon lemon lemon sticker ripe yellow lemon lemon +lightbulb/lightbulb_3_4_145,light bulb light bulb light bulb light bulb lightbulb used see +tomato/tomato_3_4_51,tomato red tomato tomato red tomato green stem tomato +tomato/tomato_8_2_174,tomato tomato missing stem red tomato red tomato object large red tomato tomato +coffee_mug/coffee_mug_2_4_1,coffee mug coffee mug mug gold colored coffee mug coffee mug +garlic/garlic_4_4_27,clove garlic +kleenex/kleenex_4_4_27,box kleenex grey designs box kleenex box tissues gray rectangular box tissue box facial tissue +food_bag/food_bag_4_4_105,package mini oreos bag mini oreos bag mini oreo cookies bag oreo minis bag laying flat bag mini oreo cookies +keyboard/keyboard_5_4_130,black computer keyboard computer keyboard black dell keyboard white surface black keys white letters white base black white computer keyboard brand dell computer keyboard +cereal_box/cereal_box_3_4_98,box special k breakfast cereal box cereal box kelloggs cereal special k cereal healthy box cereal +calculator/calculator_5_4_8,silver calculator white grey buttons calculator calculator helps math calculator calculator +sponge/sponge_8_2_99,dish sponge one side dish sponge blue yellow blue sponge sponge kitchen sponge sponge +shampoo/shampoo_4_2_191,white bottle conditioner silver cap white plastic bottle gray lid bottle shampoo conditioner bottle shampoo looks like back shampoo bottle bottle shampoo bottle shampoo blue darker blue lid +bowl/bowl_3_4_192,white bowl bowl milk served table bowl water bowl empty dinner bowl +marker/marker_4_4_178,green black marker ink pen green marker marker green magic marker +onion/onion_1_2_130,white onion white onion bulb garlic white onion onion white onion full white onion +flashlight/flashlight_1_2_5,flashlight black flashlight black cord attached bottom black flashlight torch stick combustible material one end ignited used light source black flash light +hand_towel/hand_towel_1_2_129,folded towel white towel towel white towel placed plate soft absorbent cloth called towel towels used dry water peoples hands items +notebook/notebook_1_1_168,spiral bound notebook red spiraled notebook red notebook notebook contains 70 pages lined paper writing notebook paper notebook used taking notes class red notebook seventy page notebook spiral bound red +food_bag/food_bag_3_4_103,bag snyders pretzels bag pretzel snaps bag synders pretzel snaps brown red bag pretzels bag filled food crunchy salty +water_bottle/water_bottle_6_1_184,clear water bottle blue cap plastic water bottle bottle water plastic bottle water plastic bottle looks holding water can purposed many times +food_box/food_box_5_2_41,box crackers box food ready made box food box crackers +kleenex/kleenex_2_2_19,box tissues box tissues box kleenex pink designs box facial tissue box facial tissue kleenex +plate/plate_1_4_109,empty dinner plate green plate white paste light yellow plate +bowl/bowl_6_2_231,blue white ceramic bowl floral designs inside bowl ceramic bowl bowl floral design empty dinner bowl bowl kitchen bowl eating food +bell_pepper/bell_pepper_2_1_65,sort yellow fruit vegetable hard tell might lemon seems sort fruit perhaps deformed orange yellow pepper +garlic/garlic_6_4_136,onion head garlic +shampoo/shampoo_6_2_205,bottle toiletry looks like suave brand object shampoo bottle tropical bran suave bottle body wash bottle shampoo bottle shampoo hair product +food_bag/food_bag_3_4_182,bag snack food humans eat snack foods part diet bag pretzels bag pretzels bag snyders pretzel snaps bag snyders pretzels +calculator/calculator_3_2_124,calculator calculator calculator black white calculator white calculator black buttons +garlic/garlic_4_4_130,clove garlic looks like twin onion +lemon/lemon_1_1_188,lemon species small evergreen tree flowering plant tart fruit called lemon can eaten raw cooked lemon lemon yellow lemon +orange/orange_4_1_164,orange orange orange orange citrus fruit orange orange rangpur fruit one major fruit available city bangladesh +marker/marker_5_4_27,magic marker could exercise tool pen marker +potato/potato_6_1_116,russet potato lying side roughly tubular shape brown color potato potato looks like rather large regular potato large baking potato +bell_pepper/bell_pepper_1_1_55,red bell pepper green stem orange pepper red bell pepper red bell pepper red bell pepper red somewhat oval vegetable green stem several knobs around top can stand tomato red bell pepper +food_can/food_can_9_2_230,can food can soup belle can soup can spaghetti os can pasta can spaghettios see can soup can can metal shiny +sponge/sponge_8_1_145,dish sponge yellow sponge blue scrubbing surface sponge sponge sponge blue top +cell_phone/cell_phone_2_1_3,cell phone phone mobile cordless phone nokia cell phone people used joke unbreakable old mobile phone +pliers/pliers_5_1_161,plier pair pliers dark blue hand grips pair needle nose pilars pair pliers silver pliers dark grips handles +soda_can/soda_can_4_1_10,can coca cola can coca cola labelled vanilla zero can soda can vanilla coca cola object black vanilla coke zero can +pitcher/pitcher_3_2_114,pitcher water green vase vase green ceramic pitcher green vase +plate/plate_2_2_93,blue cream colored plate plate plate plate empty dinner plate +coffee_mug/coffee_mug_1_1_113,coffee mug red white green coffee mug red white mug white mug red grey design coffee mug +shampoo/shampoo_4_2_6,bottle lotion bottle shampoo bottle shampoo bottle hair conditioner white silver cap backside shampoo body cleanser +marker/marker_1_2_186,glue stick holds paper glue applied one page paper can stick another surface glue pen magic marker red marker used dry erase board red expo marker +tomato/tomato_4_1_110,red tomato red vine tomatoe tomato yellow red tomato tomato +stapler/stapler_3_1_165,black stapler stapler stapler black stapler stapler +comb/comb_2_4_203,black hair brush hairbrush keeps hair getting tangled black hair brush hairbrush hair brush +marker/marker_7_1_90,magic marker pink highlighter marker purple marker +soda_can/soda_can_5_1_17,can diet dr pepper can diet dr pepper can diet dr pepper white aluminum can diet dr pepper unopened can diet dr pepper +kleenex/kleenex_1_4_127,box tissues tissues thin absorbent paper cloths used clean nasal malfunctions box kleenex box facial tissue box kleenex blue floral tissue box +plate/plate_1_2_203,yellow plate yellow plate empty dinner plate +camera/camera_1_4_106,black stapler black rectangular object +garlic/garlic_5_4_182,onion looks like twin peach type fruit +glue_stick/glue_stick_3_1_133,spray can stick orange lid blue base looks like glue stick glue stick red top glue stick +apple/apple_3_2_194,yellow apple sweet fruit called green apple can eaten raw cooked apple pie apple yellow apple +food_jar/food_jar_1_1_93,jar jam jelly jar brown white lid jar jelly jar fruit preserves jar jam could blue berry +calculator/calculator_2_4_19,calculator black calculator simple digital calculator basic math problems can solved using electronic device black calculator grey yellow black keys calculator black calculator orange grey buttons calculator black +plate/plate_2_4_173,empty dinner plate blue white plate white plate blue stripe around rim white plate +orange/orange_1_2_205,orange type fruit used make juice orange orange orange small orange fruit +bowl/bowl_6_1_193,blue bowl empty dinner bowl bowl blue white green yellow bowl blue white bowl green blue white designs inside +apple/apple_2_1_45,stem removed stem stem varietal +pliers/pliers_6_4_108,pair pliers pair pliers pair pliers pair needlenose pliers black grips pair pliers +pear/pear_4_1_162,brown pear laying side brown pear brown pear pear ripe pear +marker/marker_6_1_247,ink pen black pen pen +keyboard/keyboard_3_1_9,computer keyboard keyboard black keyboard black computer keyboard computer keyboard +hand_towel/hand_towel_4_2_48,folded grey washcloth can used dry wet folded towel brown towel sitting white red plate beige towel soft absorbent cloth called towel towels used dry water peoples hands items +coffee_mug/coffee_mug_1_1_168,mug red grey design white outlines people text coffee mug coffee mug white ceramic coffee mug red green design mug +shampoo/shampoo_2_1_188,bottle bathroom essential bottle shampoo bottle shampoo bottle shampoo conditioner white plastic bottle similar shampoo bottle bottle hair conditioner plastic bottle +lemon/lemon_1_1_155,lemon lemon produce sticker lemon dull orange colored orange sticker side lemon yellow also sticker label +food_box/food_box_7_2_230,box wheat thins box crackers box wheat thins yellow box used snacking yellow cardboard box wheat thins yellow box wheat thins box wheat thins crackers box contains wheat food items box wheat thins snacks +potato/potato_6_2_8,large potato potato baking potato large baking potato potato potato brown brown potato potato +toothbrush/toothbrush_4_4_24,toothbrush toothbrush white purple toothbrush toothbrush toothbrush +food_bag/food_bag_5_4_203,bag chips sort cant read label bag chips package potato chips bag food +food_box/food_box_1_1_111,box sugar substitute box sugar box sugar subtitute box red white green stripe box food package sweetener +banana/banana_1_4_26,banana plate yellow banana banana banana ripened banana +keyboard/keyboard_5_4_16,keyboard appears mechanical black computer keyboard object long black keyboard computer keyboard computer keyboard computer keyboard black pc keyboard remote +water_bottle/water_bottle_5_4_97,bottled water bottle water blue label looking side cant see brand bottle water bottle water plastic water bottle +potato/potato_4_2_194,potato usually cooked eaten starchy vegetable large baking potato potato potato +keyboard/keyboard_4_4_41,black computer keyboard computer keyboard computer keyboard computer keyboard black computer keyboard +calculator/calculator_1_1_41,calculator type display raised bit easier read calculator brown black yellow keys calculator calculator calculator mostly flat black grey yellow buttons +potato/potato_3_1_199,potato large baking potato yellow potato potato potato +glue_stick/glue_stick_4_2_175,red glue stick glue stick can spray can spray cheese glue sticks solid adhesives twist push tubes glue stick +food_box/food_box_6_2_7,box pretzel thins cardboard box containing snack food box pretzel thins white box pretzel thins food pictured front box pretzel thins box mostly white picture pretzels +water_bottle/water_bottle_1_4_55,bottle water clear bottle water bottle water white cap object bottle water green blue label plastic water bottle +food_bag/food_bag_5_1_103,pack snack bag chips bag chips bag market pantry potato chips white red +tomato/tomato_8_2_186,red tomato fruit round red best salads sandwiches tomato small blemish tomato tomato +potato/potato_2_1_133,brown ball red potato red potato red fruit looks like tomato can eaten raw cooked sliced mashed +food_jar/food_jar_1_2_130,jar food appears jelly fruity food thats ready eat jar grape jelly jar jelly jar jam jelly jar jelly +tomato/tomato_3_4_76,tomato red ripe tomato red tomato tomato red tomato tomato +dry_battery/dry_battery_5_4_144,battery battery small battery electrical charge stored called cell battery cylinder shaped perhaps size c flash light uses two c cell batteries power batteries positive end nipple negative end flat +toothpaste/toothpaste_1_4_71,tube colgate toothpaste minty toothpaste paste gel dentifrice used toothbrush clean maintain aesthetics health teeth tube toothpaste tube toothpaste tube colgate toothpaste +bell_pepper/bell_pepper_1_4_71,red bell pepper mild crunchy pepper red bell pepper thick green stem orange pepper bell pepper orange pepper +pear/pear_3_2_43,pear pear bosc pear brown pear pear brown stem +scissors/scissors_3_1_89,scissors known cooking well arts crafts small blue scissor could used crafts pair scissors pair scissors pair scissors handles blue ideal cutting paper blue scissors pair scissors used cutting things pair scissors used cut things like paper blue sharp +kleenex/kleenex_3_4_134,blue box klennex tissue box facial tissue looks like kleenex brand tissues used clearing stuffed nose box facial tissue box kleenex grey box kleenex tissue box blue kleenex piece thin soft paper used handkerchief +food_jar/food_jar_3_2_145,jar heinz gravy jar heinz gravy jar food jar food mostly red label jar gravy food jar container storage foods glass container food +sponge/sponge_11_2_165,kitchen sponge teal colored sponge +lemon/lemon_1_1_106,yellow lemon sticker label lemon got dimple side yellow lemon sticker yellow lemon lemon +lime/lime_1_4_98,lime lime green lime lime product sticker lime +hand_towel/hand_towel_3_4_165,green washcloth dish cloth green towel green towel folded small square towel placed plate +camera/camera_2_2_152,camera dsl camera picture digital camera memory card popping top also key chain hanging camera black camera +food_box/food_box_4_2_78,box golden oreo funstix box oreo cookies box oreo sticks rectangular shaped box writing one side nutritional facts box oreo cookies +soda_can/soda_can_3_2_159,can soda object can soda silver green can soda unopened can soda green can soft drink could sprite seven +water_bottle/water_bottle_1_2_90,clear bottle water plastic bottle liquid cap white label mostly green bottle water plastic water bottle bottle water +garlic/garlic_2_4_1,bulb garlic clove garlic bulb fresh garlic bulb garlic +sponge/sponge_10_4_233,kitchen scrubbing sponge yellow dish scrubber yellow something +water_bottle/water_bottle_6_1_1,bottled water convenient way stay refreshed object bottle fiji water bottle water cant see label judging shape id guess fiji brand bottle purified water full bottle figi water yet opened +pliers/pliers_4_4_8,pair pliers cutting player pair pliers metal pliers brown rubber grips pair pliers pair pliers +food_can/food_can_6_2_152,can tomatoes can market pantry tomatoes label red white metal can half label red rest white picture tomatoes bowl soup can food food tomato product can tomatoes +food_box/food_box_12_1_219,box crackers box crackers box crackers box crackers green box crackers blue stripe +toothbrush/toothbrush_1_1_33,toothbrush red white toothbrush red colored tooth brush iz red white toothbrush object white red toothbrush +food_box/food_box_10_1_264,box crackers box something box cereal box food preparation required food can eaten box mashed potato mix box pancake mix +sponge/sponge_8_1_177,yellow sponge blue scrubbing pad sponged used clean dishes sponge blue yellow sponge +food_can/food_can_5_2_17,can food can food white red label can soup can beans can soup +toothbrush/toothbrush_3_1_41,toothbrush toothbrush white light blue toothbrush light blue toothbrush tooth brush used oral hygiene +bowl/bowl_4_2_147,soup cup empty dinner bowl white bowl bowl white bowl round deep +instant_noodles/instant_noodles_7_2_242,package ramen noodles package ramen noodles package food +coffee_mug/coffee_mug_8_2_143,cup stripes coffee mug empty coffee mug white ceramic mug 5 various sized blue stripes going way around mug mug coffee mug white ceramic mug dark stripes +banana/banana_2_1_97,sweet fruit called banana can eaten raw cooked making banana bread banana yellow banana banana plate banana fruit used eating +cell_phone/cell_phone_4_4_21,smartphone cellphone cellphone used communicate persons cell phone digital camera can record pictures later display editing computer +water_bottle/water_bottle_2_2_153,bottle water plastic water bottle plastic bottle water bottle clear liquid bottle talking rain bottled water white blue label closed open sports cap appears many water bottles seen closed configuration left open configuration right allowing water pass around central blue piece water bottle container used hold water water bottle tapers middle blue white label bottle water +calculator/calculator_1_2_150,desk calculator looks like older model calculator grey black colored calculator calculator another calculator solving math problems +keyboard/keyboard_1_1_184,keyboard grey keyboard white keys computer keyboard computer keyboard apple keyboard keyboard used type computer silver keyboard white buttons computer keyboard +food_can/food_can_10_2_131,can sugar added peaches can sugar added mandarin oranges drawing oranges metal can food label mostly yellow blue shape white text can mandarin oranges can fruit +orange/orange_3_4_32,orange orange orange orange orange +stapler/stapler_8_4_137,stapler +greens/greens_4_1_22,green leafy mass looks vegetable either celery pepper lettuce plate baby bok choy green vegetable head bok choy green limp leaves coming green stem +rubber_eraser/rubber_eraser_2_4_257,white pencil eraser blue cardboard wrapper eraser eraser blue label +tomato/tomato_3_1_196,red tomato red round tomatoe piece vine top ripe red tomato red tomato tomato +scissors/scissors_2_1_21,pair scissors orange handle pair orange handled scissors pair metal scissors orange plastic handle flip flop sandal pair scissors +binder/binder_2_4_64,purple binder purple binder purple plastic school binder approximately half inch three ring binder holds paper together rings covers school folder +flashlight/flashlight_5_2_64,flashlight flashlight yellow black flashlight yellow black flashlight yellow flashlight looks powerful +instant_noodles/instant_noodles_7_2_25,package ramen mostly pink package ramen noodles package ramen noodles package food possibly ramen pack ramen +scissors/scissors_1_4_225,pair metal scissors orange gray plastic handle scissors black handle pair scissors handles orange dark grey pair scissors pair scissors +water_bottle/water_bottle_4_1_24,bottle water flavored water bottle water plastic water bottle bottle water blue purple label +garlic/garlic_4_1_45,clove garlic shallot shallot +food_cup/food_cup_3_4_228,container yogurt unused yogurt cup container yogurt container yogurt sealed foil lid container yogurt +stapler/stapler_2_2_101,stapler joins two pieces paper together black stapler black grey stapler stapler black stapler black stapler stapler used keep pages paper together black stapler +pitcher/pitcher_2_4_182,container boiling liquids kettle pitcher hot liquids kettle can used tea coffee coffee pot coffee pot +tomato/tomato_6_2_202,tomato produce sticker object small red tomato red tomato red tomato tomato +cell_phone/cell_phone_1_2_110,silver black cell phone cell phone cell phone old cellphone cell phone +lightbulb/lightbulb_3_1_55,round white bulb object light bulb laying side light bulb light bulb light bulb +banana/banana_3_2_108,ripe banana yellow banana banana plate banana banana mostly yellow peeled +calculator/calculator_3_1_173,rectangular calculator flat screen many black keys 1 red key calculator white calculator black buttons black white calculatorthe calculator looks old calculator +food_box/food_box_7_2_196,yellow box crackers card board box shaped like cereal box contains plastic bag inside things inside box wheat thins yellow box wheat crackers used snacking box wheat thins +instant_noodles/instant_noodles_2_2_170,package noodles looks like bag ramen sort dry noodles bag white pink writing look like english package noodles package ramen soup package food possibly ramen +binder/binder_2_4_42,purple binder blue file folder binder school folder purple folder +coffee_mug/coffee_mug_8_2_2,white stripe coffee mug coffee mug mug could ceramic mug stripes good coffee called cup mug commonly used hold drink tea coffee mug striped mug mug +food_can/food_can_2_2_200,can soup can campbells soup small red white label can campbells soup red white label can soup can campbells soup metal pop top can can contains label appears campbells soup +sponge/sponge_10_4_271,lemon yellow round something +apple/apple_5_4_140,apple green green apple apple green sticker label green apple green apple green apple green apple +tomato/tomato_5_4_201,red cherry tomato sticker red tomato red tomato looks like ripe tomato nice red color +marker/marker_9_4_167,yellow highlighter yellow marker used highlight words sentences paper magic marker yellow marker black top dry erase marker +glue_stick/glue_stick_2_4_237,glue stick glue stick container lip balm can spray +lemon/lemon_5_4_189,yellow lemon lemon yellow lemon lemon lemon +stapler/stapler_3_4_205,stapler object tool pushed stack papers releases metal staple holds papers together pressure exterted tool metal staples prongs bent holds place stapler black stapler object black stapler +food_bag/food_bag_2_1_53,bag chips crackers similar type food pack snacks looks like cookies bag chips bag chicken strips +keyboard/keyboard_2_4_88,keyboard used computer object long keys made plastic keyboard keyboarad used typing computer keyboard +garlic/garlic_1_1_30,bulb garlic round cram tan colored object looks similar gord head garlic +plate/plate_7_1_54,plate plate bowl normally used soups deserts part table setting empty dinner plate bowl empty whte plate plate +bowl/bowl_3_1_25,white bowl bowl white bowl bowl empty dinner bowl +water_bottle/water_bottle_1_4_149,bottle water clear bottle water object bottle water drink white cap greenblue label plastic water bottle bottle water white cap +food_bag/food_bag_1_4_118,bag smack crackers ready mix food product bag bag snacks bag light blue picture fruit bag holds snack food humans eat snack food part diet package food +food_can/food_can_3_1_207,can soup can red white label can food can soup +orange/orange_2_2_170,grapefruit sweet fruit called orange can eaten raw cooked orange yellow ball yellow ball +pitcher/pitcher_2_4_32,coffee pot used make coffee coffee pot carafe silver black top lid pitcher part electric kettle coffee pot coffee pot coffee server tea kettle +banana/banana_1_2_65,ripe banana sweet fruit called banana can eaten raw cooked banana bread banana banana plate banana +water_bottle/water_bottle_10_2_32,water bottle red water bottle label says bpa free plastic water bottle empty water bottle plastic cup top straw dont spill drink +food_cup/food_cup_5_2_237,container yogurt cup yogurt cup yogurt could blueberry flavour container yogurt +onion/onion_2_2_185,whole garlic also resembles white onion onion white onion unpeeled onion unpeeled white onion white onion picture white onion used make curry oil hair provide better oxalic acid body white onion used cooking +pliers/pliers_1_2_109,pair pliers pair pliers plier pair pliers pair bent nose pliars handles blue +hand_towel/hand_towel_1_1_167,white blanket foled folded towel folded towel +dry_battery/dry_battery_2_1_83,flashlight alkaline battery gold black aa size battery electric battery device consisting one electrochemical cells external connections provided power electrical devices flashlights smartphones electric cars +plate/plate_7_2_35,plate plate bowl normally used soups deserts part table setting empty dinner plate white plate +stapler/stapler_2_4_67,stapler black stapler stapler stapler +sponge/sponge_9_1_220,tomato +notebook/notebook_2_2_151,notebook notebook 70 pages spiral yellow yellow spiral bound notebook writing notebook yellow square shaped object writing bottom right corner bar code top left corner +pliers/pliers_4_2_2,pair pliers pair pliers pair pliers pair pliers used grip things pair pliers +greens/greens_3_1_206,baby bok choy kale plate greens leaf vegetable bok choi type produce white stem limp green leaves bok choy +potato/potato_6_1_76,potato potato large baking potato something looks like potato +water_bottle/water_bottle_2_4_100,small bottle water plastic bottle looks holding water can purposed many times bottle water plastic water bottle bottle water +food_box/food_box_11_4_36,box white cheddar cheez box white cheddar cheez box cheez box white cheddar cheez box cheese crackers box snack cheese box cheez white cheddar snacks box white cheddar cheez crackers +mushroom/mushroom_1_4_71,mushroom clove garlic +toothbrush/toothbrush_1_4_63,red toothbrush toothbrush pen marker white red toothbrush tooth brush +marker/marker_6_4_274,magic marker black pen blue grips pen +toothpaste/toothpaste_1_4_32,colgate brand tooth paste tube colgate toothpaste tube colgate toothpaste tube toothpaste full tube colgate toothpaste +soda_can/soda_can_6_1_116,can welchs juice can mostly yellow yellow can welchs champagne color welchs can juice can welchs soda can soda juice +apple/apple_1_2_55,delicious one ripe sweet edible fruit +coffee_mug/coffee_mug_8_2_222,coffee mug coffee mug coffee mug empty white coffee mug ring design mug mug white ceramic mug dark stripes handle +cereal_box/cereal_box_2_1_208,box cereal box breakfast cereal standing upright much taller thick color mostly brown front top side facing us mostly white black type nutritional panel box cereal box cereal box chex cereal +cap/cap_3_4_147,black hat black baseball hat bulldog baseball cap baseball hat black baseball cap image bulldog +apple/apple_4_2_195,apple yellow apple yellow golden delicious apple object green apple yellow tinge +tomato/tomato_4_1_92,tomato tomato red tomato looks like tomato light red yellow coloring orange red tomato +scissors/scissors_4_4_91,pair scissors scissors blue yellow handle pair scissors pair scissors plastic rubber coating handle pair scissors +pliers/pliers_2_1_10,pair pliers pair pliers pliers plier +coffee_mug/coffee_mug_6_2_18,bowl coffee mug yellow bowl coffee cup object yellow handle hole center +apple/apple_2_1_79,fruit fruit fruit +bowl/bowl_3_2_1,empty dinner bowl small white bowl white bowl bowl empty white bowl white bowl sitting white table countertop white bowl resting table +bell_pepper/bell_pepper_1_2_181,red pepper red bell pepper red bell pepper small bruise side orange bell pepper red bell pepper sticker +cereal_box/cereal_box_3_1_168,box kelloggs special k cereal kellogg brand special k low calorie breakfast cereal box special k cereal special k cereal box chocolate special k +sponge/sponge_1_1_45,kitchen sponge orange sponge orange sponge orange sponge orange dish sponge +kleenex/kleenex_1_2_147,box tissues box facial tissue box kleenex abstract grey designs tissue box flowers opened grey tissue box flower design tissue ready used pulled box +marker/marker_4_1_75,marker ink pen magic marker expo marker used write white boards +mushroom/mushroom_3_4_170,chicken drumstick uncertain gourds used decorations fall season +cell_phone/cell_phone_5_4_41,smartphone mobile phone smartphone black cellular phone black silver smart phone +marker/marker_8_1_67,red sharpie felt tipped marker black cap piece felt delivers ink tube make marks paper anything else red highlighter pen red marker magic marker +pliers/pliers_6_4_112,pair pliers pliers made various shapes sizes many uses used gripping something round like pipe rod black pliars pliers pair pliers +food_can/food_can_7_4_164,can soup can food can soup easy open can soup can opener required soup can soup +food_box/food_box_9_1_53,green box crackers box food box food +food_box/food_box_7_1_143,box crackers yellow box wheat thins box crackers box wheat thins box wheat thins yellow +ball/ball_7_4_202,soccer ball mostly white many black pentagons white hexagons soccer ball used kick ball around game called soccer soccer ball soccer ball soccer ball toy soccer ball play soccer soccer ball soccer ball +notebook/notebook_3_2_230,notebook writing notebook notebook spiral bound notebook green white cover spiral bound notebook +food_cup/food_cup_5_2_43,packaged cup blueberry yogurt peel lid container yogurt container yogurt cup blueberry yogurt cup yogurt picture blueberries +notebook/notebook_1_4_68,red spiral notebook spiral bound notebook red single subject notebook red notebook sitting top white object note book 70 pages college rule writing notebook note book essential taking notes school long meetings work notebook red spiral note book top white stand +food_cup/food_cup_1_4_169,food cup used store food items container yogurt small plastic container holding food called yogurt yogurt dairy product made using active bacteria container yogurt container yogurt +rubber_eraser/rubber_eraser_4_1_103,eraser article stationery used removing writing paper skin pink eraser pencil eraser rubber eraser +banana/banana_4_4_99,unripe banana plantain banana fruit gives good amount protein bananas also good cereal green banana plantain plate banana +onion/onion_4_4_165,white onion onion white onion white onion onion +food_box/food_box_3_2_106,box fiber one pastries box fiber one box fiber one bars cardboard box fiber one packet fiber one looked like snacks +stapler/stapler_6_2_134,black stapler stapler stapler black stapler stapler +glue_stick/glue_stick_6_1_33,tube glue can spray glue stick elmers glue stick stick glue used hold things together +coffee_mug/coffee_mug_5_2_109,mug coffee mug drinking cup white coffee mug coffee cup +cereal_box/cereal_box_3_1_17,box special k cereal box kellogs cereals box cereal cereal called special k used quick breakfast box special k cereal box cereal +food_box/food_box_11_2_62,box cheez box cheez box cheez box cheez think says white cheddar flavored box white cheddar cheeze +food_cup/food_cup_1_1_206,cup yogurt yoplait yogurt container yogurt container yogurt container yogurt container yogurt silver foil lid carton yogurt foil lid appears individual serving aluminum can food blue white red label lid appears hole +plate/plate_3_4_50,plate blue white plate empty white plate blue design ceramic plate empty dinner bowl +tomato/tomato_8_2_126,red tomato sweet fruit called tomato can eaten raw cooked red tomato tomato tomato +lime/lime_3_4_51,green fruit probably lime green lime fruit green lime lime +bell_pepper/bell_pepper_2_1_19,yellow pepper yellow bell pepper pepper quite tasty yellow pepper yellow bell pepper vegetable yellow green stem squarish oval shape yellow bell pepper side yellow bell pepper +tomato/tomato_2_4_151,cherry tomato red tomato tomato fruit vegetable red fruit cherry tomato red tomato +soda_can/soda_can_5_2_68,can diet dr pepper white red printing white can dr pepper can diet dr pepper can drpepper can soda +potato/potato_4_2_90,potato large baking potato yellow potato potato +sponge/sponge_6_4_255,sponge rectangular sponge yellow face pink side sponge usually used clean holds water little holes kitchen sponge dish sponge +notebook/notebook_4_1_253,spiral bound notebook pad paper held together wire spiral one side blue spiral bound notebook notebook blue 70 pages blue spiraled notebook writing notebook +cap/cap_2_1_55,camouflage hat people wear stay hidden camo ball cap army hat camo hat military camouflaged hat +food_box/food_box_8_4_216,box crackers box chicken biscuit snacks blue box box crackers cookies box crackers +comb/comb_2_4_20,object black hair brush light blue accents hairbrush hair brush hair brush may also called wig brush brush heavy duty brushing thick long hair hairbrush +toothpaste/toothpaste_2_4_85,long tube crest toothpaste can stand upright lid tube toothpaste tube crest toothpaste small tube crest toothpaste tube crest toothpaste +pliers/pliers_5_1_31,pair needle nose pliers pair pliers pliers pair pliers pliers used gripping something round like pipe rod +bell_pepper/bell_pepper_2_1_222,yellow bell pepper yellow pepper yellow pepper yellow bell pepper yellow pepper +orange/orange_3_1_145,orange orange orange orange orange orange +food_bag/food_bag_5_4_139,bag chips kind bag chips cant read label picture almost looks like chips cheese curls bag chips bag chips bag chips +dry_battery/dry_battery_5_4_179,energizer battery blac silver battery small battery electrical charge stored called cell battery battery +marker/marker_6_1_227,magic marker marker extension cord wrapped +keyboard/keyboard_2_2_169,black grey wired keybaord top sort white plastic pedestal computer keyboard keyboard desktop computer black computer keyboard keyboard use type messages words onto computer screen +coffee_mug/coffee_mug_4_4_88,white coffee cup blue rim cup empty coffee mug mug ceramic mug coffee mug +bowl/bowl_6_1_62,bowl blue bowl floral design inside blue bowl white white inside bowl deep cereal bowl +food_bag/food_bag_3_1_89,bag pretzels bag snyders pretzels bag snyders pretzel snaps bag pretzels bag pretzels +bowl/bowl_1_2_130,bowl spherical dish container typically used serve hot cold food bowl bowl green red bowl empty dinner bowl +potato/potato_3_4_14,potato potato +food_jar/food_jar_5_4_154,jar vlasic pickles lid blue ridge around rim jar pickles jar food jar peppers jar pickle juice +pitcher/pitcher_1_2_80,white ceramic pitcher floral design pitcher gravy boat ceramic dish shaped function cream dispenser creamer cup used pour creamer coffee +instant_noodles/instant_noodles_2_4_121,package noodles bag ramen laying face table package food possibly ramen package ramen noodles +food_bag/food_bag_4_2_133,bag mini oreo bag oreo minis snack size bag mini oreos bag oreo cookies bag mini oreos bag mini oreo cookies snack bag mini oreos +shampoo/shampoo_5_2_113,bottle soap shampoo hair care product bottle shampoo bottle shampoo +pliers/pliers_3_1_14,pair pliers pair pliers pair pliers green colored narrow tip cutting player pair needle nose players green hand grippers +potato/potato_2_1_40,red potato potatoes root vegetable red potato red potato red potato +soda_can/soda_can_2_2_128,can 7 picture 7 soda can 7 green can 7 can 7 green label +cereal_box/cereal_box_1_4_21,looks like fruity pebbles box cereal box food box crackers box cereal +food_cup/food_cup_4_2_75,container food chobani white orange peach yogurt cup container yogurt peach yogurt container yogurt +notebook/notebook_4_2_255,blue spiraled notebook writing notebook blue notebook blue spiral bound notebook note book used wright drawing purposes +dry_battery/dry_battery_4_1_67,battery battery small battery looks fat like battery battery black battery +sponge/sponge_7_4_229,kitchen scrubbing sponge cleaning sponge used clean dishes usually can used clean many things sponge use clean dishes sponge green yellow sponge dish sponge used cleaning dishes sponge tool cleaning aid made soft porous material sponge yellow sponge one side green scouring material dark dot near top white dot bottom right sponge +hand_towel/hand_towel_4_2_195,face towel smallest towels mostly use wash face cases clean things towel small grey towel folded towel brown towel sitting white red plate +marker/marker_5_4_87,pen blue black blue dry erase marker pen magic marker +ball/ball_4_1_44,picture small toy basketball orange black nerf basketball basketball toy basketball +toothbrush/toothbrush_3_2_175,toothbrush white blue toothbrush toothbrush shaped like stick mostly white blue accents object normal white blue tooth brush +coffee_mug/coffee_mug_4_4_136,mug coffee mug coffee mug white mug blue time inside mug cup white handle +mushroom/mushroom_2_1_33,mushroom shitake mushroom mushroom brown mushroom theyre good baby bella mushroom +food_box/food_box_6_1_64,cardboard package pretzel thins box preztel thins packet pretzel thins box crackers box pretzel thins +sponge/sponge_5_2_256,sponge kitchen sponge sponge blue abrasive section top red sponge used washing dishes blue red sponge rough part red soft part blue red blue sponge +cereal_box/cereal_box_2_4_75,box cereal box cereal box cereal box chex cereal mostly brown +cap/cap_3_4_25,baseball cap black baseball cap black baseball cap black ball cap black baseball cap bulldog wrote brim +toothbrush/toothbrush_2_1_70,toothbrush toothbrush toothbrush +sponge/sponge_11_4_88,light green scrubber kitchen scrubbing sponge +marker/marker_2_2_84,green dry erase marker magic marker green expo brand dry erase marker glue stick green marker +keyboard/keyboard_2_1_50,black computer keyboard mechanical keyboard black comptuer keyboard function keys numeric pad black keyboard desktop computer computer keyboard +lemon/lemon_3_4_155,yellow lemon yellow limon slight green tint end facing us lemon yellow lemon lemon +coffee_mug/coffee_mug_5_4_182,white empty coffee mug coffee cup mug white mug coffee mug +lemon/lemon_1_1_15,lemon yellow lemon lemon yellow lemon lemon +flashlight/flashlight_3_1_142,flashlight flashlight blue colored flashlight blue black flashlight blue colored flash light +food_jar/food_jar_2_4_248,jar jam jelly jar jelly jar jelly jar jam jar orange colored preserves +hand_towel/hand_towel_3_4_144,folded towel washcloth wet wash face soft absorbent cloth called towel towels used dry water peoples hands items green towel wash cloth +lime/lime_1_2_185,lime green lime picture avacado ripe avocado +apple/apple_1_4_94,dark brown something could plum +food_can/food_can_8_1_174,can food can rote tomatoes can soup can diced tomatoes +bell_pepper/bell_pepper_4_1_196,red pepper red bell pepper red pepper vegetable sharp flavor usually cooked red bell pepper red pepper red bellpepper side bell pepper cultivar group species red bell pepper +soda_can/soda_can_1_1_192,can pepsi drink can holds carbonated sweet drink based water can pepsi can pepsi looks like can pepsi cola can pepsi cola can pepsi can pepsi +toothpaste/toothpaste_4_1_17,looks tube toothpaste unsure brand tube toothpaste red blue stripe tube toothpaste tube toothpaste tube toothpaste +cereal_box/cereal_box_1_4_121,box cereal top brown white orange box containing cereal box cereal box bran cereal box bran flakes box cereal box bran flakes cereal +food_cup/food_cup_5_2_1,container yogurt cup blueberry flavored yogurt could greek yogurt unopened yogurt cup container yogurt container yogurt +calculator/calculator_5_1_20,silver calculator object used math classes help solve math problems equations light gray desk calculator white buttons angled display screen calculator calculator +lime/lime_3_4_74,lime lime lime sticker lime green lime lime citrus fruit lime green lime +cereal_box/cereal_box_4_1_102,box instructions blue yellow box cereal box box cereal +sponge/sponge_1_4_147,orange sponge sponge kitchen sponge sponge sponge would used pre dishwashing orange sponge orange sponge slice cheddar cheese +toothbrush/toothbrush_3_1_127,toothbrush toothbrush object us white blue toothbrush toothbrush +food_can/food_can_14_1_232,can soup can looks like can soup red can cream soup inside can soup can chunky soup mostly red label +rubber_eraser/rubber_eraser_3_4_12,pencil eraser eraser pink rubber eraser loos pink eraser +food_bag/food_bag_5_4_201,bag potato chips top paper plates bag chips bag market pantry chips label white red bag chips bag chicken nuggets precooked +marker/marker_3_1_149,black expo marker magic marker marker black marker black dry erase marker +sponge/sponge_1_4_54,orange sponge kitchen sponge sponge object regular sized orange sponge squeegee +lime/lime_2_4_71,lime lime lime green lime +tomato/tomato_6_1_89,tomato tomato sweet fruit called strawberry can eaten raw cooked red tomato red tomato +binder/binder_1_1_219,red plastic three ring binder school folder red binder red plastic 3 ringer binder cover red binder +greens/greens_2_1_92,green leaf lettuce plate green leafy vegetable lettuce leafy green vegetable one piece appears garnish bunch lettuces +apple/apple_3_4_2,green apple apple bright green apple shining white surface apple missing stem green apple golden delicious apple +food_jar/food_jar_1_4_140,jar jelly brand smuckers jar jam jelly jar grape jelly jar jelly small jar something looks like jam jar +cereal_box/cereal_box_4_2_109,box raisin bran crunch cereal front box purple andthe side box yellow blue box something box raisin bran box cereal box raisin bran cereal +lemon/lemon_5_1_9,yellow lemon green end fresh lemon lemon yellow lemon looks like lemon lemon yellow lemon green ends +cell_phone/cell_phone_2_2_166,older cellphone cellphone marked three dots around front position older moderl cell phone mobile phone cell phone +comb/comb_1_1_46,hairbrush black silver handle hair brush black silver hair brush hair brush black black hair brush +banana/banana_4_4_52,green unripe banana banana plate unripe plantain looks like plantain similar banana banana banana still slightly green green banana brown spots +ball/ball_2_1_186,soccer ball nerf soccer ball balls used play ball games soccer ball +pear/pear_8_4_177,yellow apple yellow apple yellow delicious apple apple sweet fruit called green apple can eaten raw cooked something called apple pie +food_jar/food_jar_4_4_104,jar white pasta sauce unopened jar contents white jarred alfredo sauce good solution quick italian dinner jar sauce can alfredo sauce used cooking unopened jar contents inside white jar white sauce can see top lid +tomato/tomato_7_4_28,red tomato tomato tomato ripe tomato fruit red round can used salads sandwiches +stapler/stapler_8_4_95,electronic device called computer mouse allows computer user position cursor functions +pliers/pliers_3_4_41,pair pliers plier green pliars pair pliers pair pliers +potato/potato_3_1_65,unpeeled potato yellow potato potato small russett potatoe +water_bottle/water_bottle_2_1_14,plastic water bottle clear bottle water bottle water bottle water white blue label plastic bottle looks holding water can purposed many times +lime/lime_3_2_112,ripe lime product sticker lime green lime fresh lime lime fruit believe +pliers/pliers_5_2_69,pair pliers probably needle nosed blue handles one set needle nose pliers blue handles tool called needle nose pliers used grasp small parts one human hand holds tool hold turn something else pair pliers pair pliers +food_can/food_can_10_2_139,canned fruit mandarin oranges looks like can fruit brand del monte can sugar added mandarin oranges can yellow picture oranges can fruit can del monte fruit looks like says sugar added cant read rest label think nectarines peaches +garlic/garlic_1_4_121,bulb garlic clove garlic clove garlic bulb garlic +pliers/pliers_2_4_93,tool called needle nose pliers used grip manipulate smaller parts pair pliers black pliars pair pliers pair pliers +food_can/food_can_12_1_164,can food can soup can chicken broth can soup can soup white label +apple/apple_3_1_121,yellow apple apple yellow apple golden delicious apple golden delicious apple +marker/marker_2_2_223,marker pen felt tipped pen used drawing coloring felt tip marker piece felt cap makes mark paper spreading ink tube green dry erase marker glue stick magic marker +food_bag/food_bag_6_1_214,bag chips bag chips red black bag chips bag chips bag salted popcorn bag barbeque potato pop chips baked goods cooked baking +rubber_eraser/rubber_eraser_2_4_256,object blurry tell could used +dry_battery/dry_battery_1_4_143,batteries battery battery +instant_noodles/instant_noodles_7_1_65,colorful bag candies package noodles package food package ramen pink black text package ramen noodles package noodles put water cook package small ish rectangle bag kind food +potato/potato_6_1_202,potato potato potato large baking potato baking potato russet potato used cooking sits potato brown oval shape +shampoo/shampoo_4_4_142,bottle lotion bottle conditioner bottle white silver top body cleanser body soap bottle shampoo conditioner bottle something looks like shampoo conditioner +cell_phone/cell_phone_4_1_22,cell phone phone old flip style mobile phone +plate/plate_2_2_87,white plate blue border white plate blue baby blue trim white blue plate large circular plate mostly white light dark blue trim along rim +coffee_mug/coffee_mug_1_1_61,mug mug red grey color coffee mug red mug object mug red white grey +lemon/lemon_6_2_54,juicy lemon yellow lemon lemon lemon yellow lemon +instant_noodles/instant_noodles_7_4_212,package dehydrated soup mix pack ramen package food possibly ramen package noodles +flashlight/flashlight_3_4_82,blue colored flashlight blue plastic flashlight flashlight blue flashlight blue flashlight +tomato/tomato_3_2_39,fresh tomato tomato ripe tomato red tomato sticker tomato +comb/comb_3_2_53,hair brush heavy duty brush sometimes called wig brush used heavy long hair hairbrush hairbrush hair brush hairbrush +binder/binder_2_4_215,school folder blue plastic folder purple binder purple folder purple binder +sponge/sponge_10_1_215,kitchen sponge +sponge/sponge_2_2_187,lime green sponge sponge use clean dishes kitchen sponge light green kitchen sponge sponge +shampoo/shampoo_3_1_36,bottle shampoo bottle shampoo bottle shampoo bottle shampoo used wash hair get hair wet put dollop hand massage throughout hair rinse +glue_stick/glue_stick_6_2_212,stick elmers glue glue stick tube glue aerosol spray can +plate/plate_6_4_51,pie baked oven pies made many different foods plate white paste empty dinner plate +coffee_mug/coffee_mug_3_2_20,brown mug mug brown tea coffee cup decorative edge near top edge inside white dark jug coffee mug +ball/ball_5_1_96,nerf football football laces toy football brown football football +keyboard/keyboard_5_4_139,black dell keyboard kept stool like thing computer keyboard black keyboard keyboard used computer keyboard pc keyboard keyboard used type computer dell computer keyboard +mushroom/mushroom_3_2_154,peeled potato +toothpaste/toothpaste_3_2_30,tube ultra brite toothpaste tube toothpaste tube toothpaste small brush paste used clean humans teeth tube toothpaste tube toothpaste +water_bottle/water_bottle_3_4_178,bottle water bottle water plastic water bottle bottle water small bottle mineral drinking water +shampoo/shampoo_6_1_213,bottle containing hair product personal care product bottle shampoo plastic container may dispense shampoo conditioner hand lotion many substances bottle conditioner bottle yellow green cap bottle body wash bottle childrens shampoo body wash yellow green lid plastic bottle yellow green lid +plate/plate_6_1_64,round yellow plate yellow mustard type color edges plate little design empty dinner plate brown plate yellow colored plate raised pattern around rim plate +instant_noodles/instant_noodles_1_2_79,package ramen soup package food package ramen noodles +food_jar/food_jar_5_4_15,jar something looks like pickle jar peppers jar pickles jar peppers jar vlasic pickles blue label blue rim cap +hand_towel/hand_towel_3_1_43,sage green hand towel folded quarters green towel bath towel folded green washcloth green wash cloth micro fiber cloth +ball/ball_4_2_88,basketball shaped toy fake toy basketball small inflatable toy basketball nerf basketball +food_can/food_can_1_1_135,can food back label facing toward kind canned food can evaporated milk can +sponge/sponge_11_2_250,bright green scrubber pot scrubber green green dish scrubber +dry_battery/dry_battery_3_4_125,battery +dry_battery/dry_battery_3_2_52,tube glue battery aa battery small battery electrical charge stored called aa +bowl/bowl_1_1_179,bowl gold outside red inside empty dinner bowl bowl brown striped pie dish red inside dish empty red brown ceramic bowl +flashlight/flashlight_2_2_128,red flashlight red flashlight red flashlight red flashlight red plastic flashlight black button battery operated flashlight red flashlight +comb/comb_1_4_179,hair brush silver black hairbrush stiff bristles hairbrush black hair brush silver handle hairbrush mostly black silver +shampoo/shampoo_1_1_236,bottle shampoo conditioner bottle shampoo looks like bottle shampoo silver lid clear bottle white plastic bottle gray lid bottle conditioner bottle contains shampoo used take bath bottle hair shampoo +water_bottle/water_bottle_4_1_160,bottle water bottle water bottle water plastic water bottle bottle flavored water bottle water bottle water bottle flavored water +toothpaste/toothpaste_5_2_175,tube toothpaste tube toothpaste tube crest toothpaste blue green tube mint toothpaste tube toothpaste +food_box/food_box_3_1_228,box sort fiber one brand snack looks like pop tarts box must toaster pastries box fiber pop tarts package fiber one pastries box fiberone bars box fiber one +toothbrush/toothbrush_1_4_32,toothbrush toothbrush red white toothbrush tooth brush toothbrush +apple/apple_2_4_32,fruit fruit fruit +onion/onion_5_1_125,red onion red onion object purple onion onion purple onion red onion unpeeled red onion large red onion +food_can/food_can_7_1_1,can soup back can pull tab label red white probably campbells brand can soup can soup can soup +flashlight/flashlight_5_1_90,yellow black flashlight device called flashlight powered batteries produced visible light yellow flash light flashlight flashlight +cereal_box/cereal_box_5_4_136,box honey graham crunch cereal box red white box cereal box cereal box cereal box honey graham crunch cereal +shampoo/shampoo_5_1_260,looks like back bottle shampoo judging shape might suave brand color pink probably scented bottle shampoo pink liquid inside bottle shampoo bottle shampoo skinny plastic bottle pink liquid inside black text upc barcode +lightbulb/lightbulb_4_4_163,lightbulb light bulb light bulb light bulb light bulb +plate/plate_1_2_42,yellow colored jelly like sweet bowl ceramic plate lemon meringue pudding ceramic plate yellow plate broad mainly flat vessel commonly used serve food +lightbulb/lightbulb_1_2_33,led energy efficient lightbulb object placed lamp gives light fragile light bulb curly q white efficiency bulb compact fluorescent light bulb +orange/orange_4_4_87,orange orange uneaten orange object orange orange +food_box/food_box_4_1_133,yellow box oreo snack box oreo funnels box oreo cookies box golden oreo funstix box mostly yellow box oreo funstix +pear/pear_2_4_163,yellow pear pear slightly ripe pear piece fruit +banana/banana_3_4_123,banana banana banana banana banana edible fruit berry family can eaten raw cooked banana bread tastes awesome +sponge/sponge_2_2_163,sponge usually used clean holds water little holes sponge lime green sponge green sponge kitchen sponge +food_can/food_can_10_2_120,can fruit del monte canned peaches can possibly contains fruit can fruit can something +sponge/sponge_12_1_4,kitchen sponge sponge usually used clean holds water little holes looks like bean shaped piece playdoh blue blue cish scrubby perfect fit hand scrub dishes often used get stuck food dishes putting dishwasher +glue_stick/glue_stick_3_1_51,elmers glue stick necessary school projects glue sticks solid adhesives twist push tubes spray can glue stick +kleenex/kleenex_5_4_46,box tissue kleenex puffs facial tissue tissue box rectangular mostly red white swirl pattern box kleenex box facial tissues box tissues +water_bottle/water_bottle_2_2_76,plastic water bottle bottle water bottle water clear water bottle looks like bottle water filled clear liquid white cap label blue +binder/binder_3_4_207,binder maybe 3 ring binder can keep kind paperwork black colored folderfile binder binder looks like hard cover book could journal black binder binder used keep papers together +bell_pepper/bell_pepper_5_1_3,green pepper usualy found salads fried potatoes green bell pepper mild pepper green bell pepper can stuffed sausage onions delicious appetizer green bell pepper green pepper green bell pepper black bell pepper hollow green red yellow vegetable seeds +food_can/food_can_3_1_247,red white can food can soup can soup can campbells soup can food red white label nutrition chart can spaghettios snack food can container storage foods canned food +lime/lime_1_2_29,green lime green lime sort round green fruit +dry_battery/dry_battery_6_1_13,large alkaline battery battery battery +glue_stick/glue_stick_4_2_132,glue stick cooking spray tube glue glue stick glue stick +food_can/food_can_11_1_245,can food red white label can soup can soup can predominantly white label red strip across top metal part can gold can soup +instant_noodles/instant_noodles_5_1_111,ramon soup mix package noodles orange bag food bag something +calculator/calculator_2_2_95,calculator calculator black calculator black roughly square shaped muilti colored buttons center small led screen top calculator +instant_noodles/instant_noodles_3_2_162,package food object looks like pack noodles package white green red bag frozen vegetables +water_bottle/water_bottle_3_2_21,clear water bottle plastic bottle water label blue green bottle water plastic water bottle bottle water +binder/binder_1_1_73,3 ring red binder red binder school folder binder red folder +pliers/pliers_1_4_99,pair pliers pair pliers pliers pair pliers blue handles cutting player +food_bag/food_bag_1_1_13,chips favorite dinner snack object white bag crisps bag orange brown labels bag looks like miniature rice cakes cant tell brand package chips small blue orange bag crunchy snacks +keyboard/keyboard_3_4_127,computer keyboard computer keyboard black computer keyboard doesn’t look attached computer computer keyboard black keyboard +lightbulb/lightbulb_1_1_51,energy efficient cfl light bulb compact fluorescent light bulb energy savings light bulb mostly white glass part swirling around gold part screws fluorescent light bulb florescent light bulb +notebook/notebook_5_2_255,black spiral bound notebook writing notebook notebook hardcovered black notebook black spiral bound notebook +water_bottle/water_bottle_3_4_70,bottle water plastic bottle drinking water blue label small bottle mineral water plastic bottle water object bottle water white cap blue label +water_bottle/water_bottle_7_2_58,plastic water bottle bottle water bottle water plastic bottle looks holding water can purposed clear water bottle bottle water bottle arrowhead watter plastic water bottle +comb/comb_1_4_193,black silver hairbrush stiff bristles brush used brush hair hair brush comb hair hairbrush hair brush +cereal_box/cereal_box_2_2_98,box food box chex mix box food box chex cereal box cereal +peach/peach_3_4_252,peach peach white peach mostly cream pink ripe peach apples fruit grow trees +bell_pepper/bell_pepper_6_1_42,green pepper green pepper green pepper green bell pepper green bell pepper side +pear/pear_7_4_167,pear apple asian pear +shampoo/shampoo_2_2_17,container body product hair product bottle shampoo bottle toiletry predominantly white plastic bottle white substance bottle plastic bottle bottle hair conditioner plastic bottle product inside white +keyboard/keyboard_3_1_79,computer keyboard used input device part desktop computer computer keyboard black computer keyboard computer keyboard keyboard used typing desktop computer +ball/ball_3_1_76,nerf baseball inflated baseball balls used play ball games baseball +potato/potato_2_1_152,red potato red potato brown ball potato starchy tuberous crop red potato +cap/cap_2_2_108,camouflaged baseball cap cap belong hunter baseball cap camo print camoflauge ball cap army hat army hat +plate/plate_5_4_153,ceramic plate white plate plate empty dinner plate white plate plain white plate white plate white plate +kleenex/kleenex_2_1_226,pink square cardboard box tissue box kleenex pink design smaller tissue box square pink pattern box tissues box facial tissue +garlic/garlic_2_1_59,bulb garlic clove garlic garlic bulb clove garlic +notebook/notebook_3_1_156,spiral bound notebook white spiraled notebook spiral notebook spiral notebook cover green white writing notebook +lime/lime_2_2_198,sweet fruit called avocado can eaten raw cooked green lime green lime lime lime lime green oval citrus fruit small enough hold two three hand +plate/plate_7_2_231,white plate nothing white plate empty dinner plate white plate bowl bowl white +food_box/food_box_11_4_139,box cheez box cheez believe white cheddar box cheeze red box cheez box cheez +rubber_eraser/rubber_eraser_3_2_109,pink eraser pink eraser pink rubber eraser pencil eraser eraser +rubber_eraser/rubber_eraser_4_2_209,eraser rubber eraser standard pink pencil eraser eraser hard rubber gum used remove pencil markings paper pencil eraser +kleenex/kleenex_1_4_53,box facial tissue box tissues small box tissues box kleenex grey design box small kleenex box little compact +camera/camera_1_4_143,disposable film camera camera disposable camera camera camera +food_jar/food_jar_5_1_99,glass jar banana peppers jar peppers jar sort pickled vegetable looks yellow cucumbers im guessing pickled bell peppers jar pickled peppers jar peppers +food_can/food_can_7_4_37,can soup another can soup can food can soup can soup red white pull tab +food_cup/food_cup_3_2_48,container yogurt container yoplait yogurt container yogurt can container yogurt +food_jar/food_jar_4_1_186,jar alfredo sauce jar pasta sauce jar white pasta sauce jar white sauce jar alfredo sauce +food_can/food_can_10_4_102,can may contain food commonly called tin can can easily opened pulling ring pop top can food yellow label can can soup can food can stored fruit unopened can flip top +food_can/food_can_4_2_100,can soup can canning foods aluminum cans cheap way preserve can food can condensed milk +cell_phone/cell_phone_2_4_73,white black cell phone object small phone dialing pad flip cellular phone older cell phone cell phone +food_jar/food_jar_6_1_173,jar jelly silver lid jar silver lid jar jam jelly jar jam jar jelly +camera/camera_2_4_153,camera old camera yellow tag hanging camera digital camera digital camera +notebook/notebook_5_2_249,black spiraled notebook writing notebook spiral bound notebook +food_box/food_box_8_1_215,cardboard box six sides mostly blue yellow text box crackers box crackers box mostly blue object blue box box advertising crackers spray cheese box crackers +calculator/calculator_2_4_166,big brown caculator round plastic object screen top object also buttons can manipulated calculator calculator used solve mathmatical problems quickly calculator +glue_stick/glue_stick_4_2_187,tube glue can spray glue stick +glue_stick/glue_stick_2_4_184,bottle aspirin tube glue +food_can/food_can_13_1_57,can soup ingredients listed label can soup aluminum can looks like can soup food stored cans like can may contain food commonly called tin can can easily opened pulling ring pop top can soup sits can soup can food +dry_battery/dry_battery_2_1_50,battery yellow black battery battery object cyllinder shape yellow label black dark brown cap +hand_towel/hand_towel_5_2_189,black towel small black towel black folded towel wash cloth towel black color +sponge/sponge_10_1_212,kitchen sponge lemon +onion/onion_1_1_221,white onion white onion white onion white onion +instant_noodles/instant_noodles_1_1_119,package food package noodles bag looks like red holiday design pack something looks like sncaks +calculator/calculator_4_4_171,light green calculator calculator bright green calculator green calculator neon green calculator +lime/lime_2_1_176,lime sticker lime green lime green lime lime +stapler/stapler_6_2_169,stapler object tool pushed stack papers releases metal staple holds papers together pressure exterted tool metal staples prongs bent holds place stapler black stapler object black stapler +bell_pepper/bell_pepper_5_4_6,green bell pepper green bell pepper green pepper green pepper green pepper +ball/ball_3_1_199,object soft ball object soft red threads round baseball looks like white baseball red threading baseball +bowl/bowl_4_2_62,bowl white ceramic bowl small ceramic bowl white white bowl looking newly washed bowl +flashlight/flashlight_3_2_132,flashlight flash light device called flashlight powered batteries produced visible light blue flash light flashlight see flashlight blue flashlight +apple/apple_4_2_111,yellow apple apple golden apple apple yellow apple +pliers/pliers_4_1_184,pair pliers black pliars object pair pliers black handles pair pliers pliers red black handle +food_can/food_can_14_1_92,can soup can food product can soup can red green rectangle food container commonly called tin can easily opened pulling pop top lid covering one end can soup +scissors/scissors_4_2_179,silver scissors pair scissors pair scissors blue yellow handles scissors used cutting things scissors yellow blue handle +lemon/lemon_4_1_81,yellow lemon lemon tart fruit called tomato can eaten raw cooked yellow lemon lemon lemon yellow lemon fruit bitter sour +shampoo/shampoo_5_1_105,cheap bottle shampoo plastic bottle contents inside pink bottle shampoo bottle body wash bottle shampoo bottle suave shampoo bottle body wash +comb/comb_2_2_30,black comb oval head hair brush used de tangle persons hair hairbrush black hair brush hair brush +glue_stick/glue_stick_1_2_170,glue stick tube glue white green label red cap tube glue glue stick super glue use break something fix +sponge/sponge_5_1_124,red blue sponge sponge colorful sponge sponge blue red used cleaning kitchen sponge +instant_noodles/instant_noodles_1_2_238,packet asian looking food package food cookie pastry kind wrapped foreign packaging lettering package food snack package bag ramen soup mix sweet desert cake typically baked package instant ramen +water_bottle/water_bottle_9_4_225,plastic water bottle beverage container blue water bottle purple water bottle looks like reusable water bottle handle flip pour spout lid lilac colored +glue_stick/glue_stick_1_4_162,looks like chapstick tube glue +food_box/food_box_9_1_8,green cardboard package annies pasta box cracker green box pasta box sour cream onion crackers box green box crackers box annies brand snacks food box container distribution storage goods green box something +stapler/stapler_4_4_205,stapler stapler stapler joins two pieces paper together black stapler black stapler +food_box/food_box_11_4_202,box crackers box cheez red box cheez box cheez box cheez +food_bag/food_bag_4_1_252,bag oreo cookies bag oreos bag mini oreos bag blue white yellow text package oreo cookies package cookies +food_jar/food_jar_6_2_116,jar hot fudge jar jar contains hot fudge jar containing food product jar jelly cylinder shaped object metal top colored label center +cell_phone/cell_phone_1_1_73,mobile phone older cellphone handheld phone old cell phone used call text people cell phone +soda_can/soda_can_4_1_195,can vanilla coke zero can vanilla coke zero can coke food can used store keep food items can coca cola opened can coca cola zero open can cococola vanilla coke zero mostly black can vanilla coke zero +bell_pepper/bell_pepper_6_4_90,green pepper green bell pepper green pepper green bell pepper green pepper +potato/potato_5_1_106,oblong brown dirty vegetable potato usually cooked eaten starchy vegetable potato large baking potato potato +stapler/stapler_8_1_203,small red stapler small red stapler small red stapler stapler mini stapler back red stapler red stapler used keep pages together red stapler +dry_battery/dry_battery_5_4_117,batteries battery small battery battery small battery electrical charge stored called cell +ball/ball_4_1_240,dessert plate plastic basketball basketball +potato/potato_2_2_33,looks like small red potato red potato +notebook/notebook_5_4_196,looks like sand paper black spiral bound notebook note pad writing notebook black spiral notebook +hand_towel/hand_towel_2_2_47,red washcloth small red towel red square top plate folded towel +cell_phone/cell_phone_5_4_73,smartphone smart phone smartphone cell phone dots either side cell phone portable telephone can make receive calls +food_bag/food_bag_8_2_35,bag chips bag sun chips bag sun chips pack sun chips bag sun chips bag french onion sun chips green bag sun chips flavor french onion +lemon/lemon_5_2_157,yellow lemon lemon lying side mostly yellow green patch near one end lemon green spot lemon lemon +bell_pepper/bell_pepper_4_1_135,red bell pepper red bell pepper red pepper red pepper red bell pepper +pliers/pliers_3_4_133,green pliars pair pliers pair pliers pair pliers object pair pliers light green handles +greens/greens_4_2_256,bell pepper vegetable possibly bok choi another type cabbage bok choy plate type green vegetable +sponge/sponge_9_4_216,kitchen sponge +food_can/food_can_4_1_136,can can condensed milk canned good food can carnation milk small can white label can product +coffee_mug/coffee_mug_3_1_160,mug coffee mug brown coffee mug coffee mug object brown handle hole center +glue_stick/glue_stick_5_2_217,marker glue stick glue stick marker pen tube glue +food_can/food_can_5_4_267,can soup can food can food can soup market pantry can soup red white label aluminum can appears either canned soup canned vegetables can +orange/orange_2_4_107,orange piece fruit round orange sitting alone orange +food_bag/food_bag_4_2_129,bag mini oreo cookies snack sized bag mini oreo cookies chocolate cookies cream filling middle bag oreo cookies bag oreos bag mini oreos blue yellow white text +shampoo/shampoo_6_4_192,bottle shampoo yellow plastic bottle bottle childrens shampoo green yellow bottle shampoo +shampoo/shampoo_2_4_253,looks like spray bottle blue shade color might part bottle +garlic/garlic_3_1_47,bulb garlic garlic bulb clove garlic looks like clove garlic used seasoning many health benefits garlic bulb garlic used cooking white onion +cell_phone/cell_phone_3_4_3,mobile phone cell phone looks flip phone flip cell phones antiquated technology flip phone one uses anymore +kleenex/kleenex_5_2_175,box kleenex box facial tissue box tissues purple box tissues box kleenex red design +notebook/notebook_2_2_35,sketch book 70 pages sprial notebook paper 70 ruled sheets paper bound together wire spiral used humans write yellow spiral bound notebook spiral bound notebook writing notebook +mushroom/mushroom_2_2_242,mushroom mushroom fleshy spore bearing fruiting body fungus mushroom mushroom mushroom +cell_phone/cell_phone_2_2_78,mobile phone old mobile phone cellular flip phone older model cell phone cellphone +pear/pear_8_1_34,green apple yellow apple apple small green apple yellow colored apple +lime/lime_1_4_119,green lime green lime lime lime lime produce sticker +lemon/lemon_6_4_87,yellow lemon shaped like football sweet fruit called lemon can eaten raw cooked yellow lemon lemon lemon citrus fruit lemon lemon lemon +pear/pear_1_4_132,pear pear green pear fresh pear brown spots peel pear +potato/potato_5_1_48,russet potato potato large baking potato potato brown russet potato +marker/marker_1_1_224,marker used dry erase boards red dry erase marker red dry erase marker red expo marker cap magic marker marker +onion/onion_4_2_197,onion vegetable white onion onion tasty vegetable sharp flavor us usually cooked onion onion +sponge/sponge_6_4_139,sponge tool cleaning aid made soft porous material yellow purple sponge kitchen sponge kitchen sponge +orange/orange_1_2_22,orange orange fruit mostly grown florida overripe orange orange piece fruit +food_box/food_box_3_1_54,box fiber one pastries box fiber cereal box fiberone bars fiber one product box fiber one +lemon/lemon_3_2_176,yellow lemon lemon yellow lemon fresh lemon lemon +tomato/tomato_4_1_126,red tomato tomato tomato red tomato tomato +garlic/garlic_3_2_167,clove garlic bulb garlic bulb garlic may clove garlic used cooking +camera/camera_3_1_100,camera digital camera camera pocket digital camera digital camera +food_box/food_box_2_4_130,box containing dry rice need prepared eaten packbox something box zatarrains rice box highly processed food red white label picture yellow food box box zatarains yellow rice mix box red white box dry noodles +peach/peach_1_1_57,peach piece fruit peach looks like nectarine picture little blurry could peach fresh peach +food_jar/food_jar_5_1_177,jar relish jar peppers jar peppers jar pickles jar pickles jar food product lid appears snap medium sized glass jar food vacuum lid appears unopened blue red white label +scissors/scissors_1_4_137,pair scissors orange grey scissors scissor pair scissors scissors orange black handle +notebook/notebook_4_4_266,writing notebook spiral bound notebook pad paper held together wire spiral one side blue spiraled notebook blue spiral bound notebook blue spiral bound notebook +flashlight/flashlight_1_1_147,flashlight black flashlight currently illuminated black flashlight black flashlight black flashlight +toothpaste/toothpaste_3_1_162,tube toothpaste tube toothpaste toothpaste keeps teeth clean tube toothpaste tube toothpaste blue white tube toothpaste tube blue white letters tube toothpaste tube ultrabrite toothpaste +potato/potato_1_2_198,red potato red potato fruit vegetable brown color red potato used cooking +flashlight/flashlight_5_2_152,yellow black flashlight black yellow flashlight yellow black flashlight yellow black flashlight yellow flashlight +banana/banana_3_2_1,banana yellow banana banana plate banana banana +onion/onion_4_1_73,object round white tuft topside looks like onion root side part tan skin bene torn onion onion looks decayed onion appears brown yellow brown roots +dry_battery/dry_battery_4_4_114,battery small battery electrical charge stored called cell battery small duracell battery +bowl/bowl_2_2_61,bowl normally used soups deserts part table setting bowl light blue bowl edges look worn teal colored bowl empty dinner bowl +food_can/food_can_1_4_117,can cant tell whats inside can can soup canned good can product +onion/onion_3_4_132,white onion small onion yellow onion onion onion +food_can/food_can_1_1_117,can condensed milk can soup can paint holds liquid covering paint can cover many surfaces can food +shampoo/shampoo_4_4_114,tall suave shampoo bottle gray lid bottle shampoo bottle shampoo conditioner bottle suave shampoo +bell_pepper/bell_pepper_4_4_202,red bell pepper red bell pepper red bell pepper red pepper bell pepper vegetable +sponge/sponge_1_2_122,sponge sponge sponge orange dish sponge kitchen sponge +food_can/food_can_2_4_67,can campbells soup can can soup can campbells soup can soup can campbells soup unopened can campbells soup flip top +food_cup/food_cup_2_4_4,cup yogurt looks like container yogurt foil top cant see label container yogurt container yogurt container yogurt +bowl/bowl_4_4_177,empty dinner bowl white bowl bowl normally used soups deserts part table setting bowl white bowl +plate/plate_1_2_4,empty dinner bowl yellow ceramic plate either lemon meringue yellow jello plate +food_box/food_box_8_1_172,b ack box sort crackers cant tell brand box blue box crackers chicken bisket box mainly blue box crackers little crackers people like put cheese +ball/ball_6_1_221,small beanbag toy looks like baketbal plastic toy basketball basketball ball pattern similar basketball nerf basketball +food_cup/food_cup_4_1_120,container food plastic cup chobani peach yogurt container chobani yogurt cup yogurt container peach flavored chobani yogurt +marker/marker_8_2_18,marker magic marker +marker/marker_7_1_22,markers used write marker pink highlighter magic marker +sponge/sponge_1_4_210,object orangepink dish washing sponge sponge cleaning sponge kitchen sponge orange sponge +banana/banana_4_1_107,green plantain plantain banana plantain plate unripe green banana +calculator/calculator_3_4_11,white calculator green screen black keys calculator calculator small handheld device used mathematical computation calculator used math questions +bell_pepper/bell_pepper_3_2_12,red pepper red pepper small orange pumpkin big stem top red bell pepper red bell pepper +garlic/garlic_2_4_121,bulb garlic bulb garlic garlic one whole onion outer wrapper removed +glue_stick/glue_stick_3_4_214,spray can glue sticks solid adhesives twist push tubes tube glue +binder/binder_3_1_186,binder school folder black binder black folder black binder +sponge/sponge_12_2_60,blue sponge can used cleaning dishes blue pincushion kitchen sponge +bowl/bowl_5_1_32,bowl object kitchen bowl empty dinner bowl white black bowl bowl black stripes around inside +pliers/pliers_4_1_4,plyers open pair pliers pair pliers pair pliers pliers +food_box/food_box_9_4_189,green box containing food probably pasta green box bunny logo box crackers green box bunny +stapler/stapler_6_2_95,black stapler black stapler stapler stapler stapler mechanical device joins pages paper similar material driving thin metal staple sheets folding ends +glue_stick/glue_stick_6_2_25,glue stick can cooking spray canister looks like glue stick tube glue stick elmers glue +food_can/food_can_8_4_104,can rotel combination tomatoes perppers mostly used topping added cheese make nachos can tomatoes can rotel tomatoes can +apple/apple_1_1_188,dark sticker dark +ball/ball_5_1_173,picture small plastic looking toy football brown white nerf football fake brown football football toy football +ball/ball_7_1_49,brand new soccer ball soccer ball soccer ball white round soccer ball black pentagons around object white black hexagonal soccer ball +water_bottle/water_bottle_7_4_171,bottle water bottle drinking water plastic water bottle plastic water bottle water bottle unopened waterbottle water cap +instant_noodles/instant_noodles_4_2_251,package noodles packet asian food package food package soup +apple/apple_3_1_165,fresh yellow apple stem fruit looked like golden delicious yellow lemon apple +mushroom/mushroom_2_4_159,mushroom potato used cooking +sponge/sponge_10_2_143,kitchen sponge +cap/cap_4_1_70,red baseball cap red baseball cap red baseball cap red ball cap red baseball cap +binder/binder_3_2_50,black binder black 3 ring binder black binder school folder black folder thin square shaped +food_jar/food_jar_4_1_244,jar white pasta sauce jar pasta sauce jar alfredo sauce unopened jar contents white jar alfredo sauce +sponge/sponge_7_2_71,sponge kitchen sponge yellow sponge green scrubbing pad kitchen sponge green yellow sponge +coffee_mug/coffee_mug_6_1_3,small ceramic bowl dark yellow bowl yellow mug brown stripe around edge tan coffee cup solid brown decorative ring near top mug +lime/lime_3_1_86,green lime looks like green lime white patch top lime +onion/onion_4_2_170,yellow onion onion onion white onion white onion +garlic/garlic_3_2_15,bulb garlic bulb garlic clove garlic head garlic white purple +dry_battery/dry_battery_3_2_42,battery +banana/banana_4_1_165,banana green banana plantain plate unripe banana plantain ripe banana +calculator/calculator_1_4_11,calculator calculater used perform math simple digital calculator basic math problems can solved using electronic device calculator calculator +tomato/tomato_7_4_2,tomato red tomato picture tomato red tomatoes used make marinara sauce sweet fruit called tomato can eaten raw cooked +water_bottle/water_bottle_6_2_27,bottle water small bottle water bottle water squarish blue cap blue label plastic water bottle bottle drinking water +glue_stick/glue_stick_1_4_146,glue stick tube super glue +shampoo/shampoo_1_4_244,bottle shampoo bottle shampoo plastic container may dispense shampoo conditioner hand lotion substances body cleanser body soap bottle hair conditioner shampoo used applying wet hair massaging product hair rinsing +coffee_mug/coffee_mug_2_2_12,dark brown coffee mug cup mug must often coffee tea served containers ceramic mug coffee mug looks like coffee tea mug outside looks tan brown inside dark see mug used holding coffee tea brown ceramic coffee mug mug +food_box/food_box_9_2_34,box non perishable food flavor sour cream onion box crackers green white text box sour cream onion bagel chips package sour cream onion mix box food +plate/plate_3_4_82,white plate blue stripes around edge plate plate empty plate white plate blue white plate +bell_pepper/bell_pepper_6_2_98,green pepper green bell pepper green bell pepper green bell pepper green pepper +pliers/pliers_3_2_159,green pliars tool can used hold wire together pair metal pliers green coated handles pair pliers pair pliers +water_bottle/water_bottle_10_4_270,water bottle pink sippie cup red sippie lid red water bottle label saying bpa free red water bottle plastic water bottle plastic beverage bottle sippy cup used drink liquid without opening lid red plastic water bottle dark lid spout +instant_noodles/instant_noodles_6_1_55,square shape pack noodles packaging yellow red white letters package cookies package food package soup mix +lightbulb/lightbulb_2_4_194,light bulb lightbulb light bulb light bulb lightbulb provides light residential setting incandescent light bulb light bulb object white light bulb +flashlight/flashlight_4_1_121,black flashlight flashlight object black flashlight yellow button bulky black flashlight yellow switch flashlight +calculator/calculator_4_1_125,calculator green calculator white buttons green calculator desk calculator calculator lime green calculator +apple/apple_1_2_190,fruit fruit fruit +keyboard/keyboard_1_1_120,silver white keyboard computer keyboard silver computer keyboard white keys computer keyboard computer keyboard +rubber_eraser/rubber_eraser_4_1_190,eraser +sponge/sponge_4_2_23,purple sponge kitchen sponge sponge object purple sponge squeegee +food_box/food_box_4_1_254,box oreo funstix box cookie snacks box oreo funstix yellow box oreo sticks package oreo cookies +flashlight/flashlight_2_1_166,red flashlight red flashlight device called flashlight powered batteries produced visible light red flashlight black red flashlight +hand_towel/hand_towel_3_4_242,folded green washcloth folded towel green towel towel +food_can/food_can_5_4_218,can soup can food can soup canned good label turned description doable can food +ball/ball_1_1_27,football blurry shape similar football brown texture white lines similar football inflatable toy football brown white toy football +tomato/tomato_7_1_145,ripe tomato tomato tomato tomato lot foods red tomato +pitcher/pitcher_2_2_60,coffee pot pot silver black electric kettle pitcher hot liquids carafe great coffee coffee pot thermos jar +toothpaste/toothpaste_4_1_271,tube toothpaste tube red white tube toothpaste tube toothpaste tube toothpaste red tube toothpaste +food_can/food_can_11_2_219,can soup red white label white red tin can food may soup can can soup can soup looks like campbells soup can side label showing can soup targets market pantry can soup label white red lid gold +food_can/food_can_13_4_171,can soup unopened can sitting table can fruit can can soup +instant_noodles/instant_noodles_6_2_124,packaged pastry package soup mix package food image blurry noodles cooked package ramen noodles +glue_stick/glue_stick_5_1_6,blue marker white label tube glue glue stick blue top blue marker glue stick likely glue stick blue cap white label +ball/ball_2_2_213,soccer ball nerf soccer ball balls used play ball games soccer ball +food_cup/food_cup_1_1_59,container yogurt unused yogurt cup container yogurt container yogurt small plastic container holding food called yogurt yogurt dairy product made using active bacteria +onion/onion_2_2_135,onion white onion white onion onion root vegetable white onion white onion used cooking white onion white onion papery outer covering round +pitcher/pitcher_1_4_118,gravy boat pitcher white ceramic pitcher leaf designs painted cream dispenser dish can used hold pour liquids milk cream +sponge/sponge_8_4_196,kitchen sponge yellow blue sponge sponge sponge usually used clean one rough side scrub items clean +food_jar/food_jar_3_2_187,jar gravy jar food jar food jar gravy +toothbrush/toothbrush_2_1_79,toothbrush green white toothbrush toothbrush green colored toothbrush +rubber_eraser/rubber_eraser_1_2_31,pencil eraser blue white wrapper looks like battery charger used recharge rechargeable batteries device electrical nature +bowl/bowl_5_1_225,white ceramic bowl black stripes inside ceramic bowl blue stripe design empty dinner bowl white ceramic bowl glass bowl eating food +marker/marker_7_2_185,looks like bright pink highlighter cap bottom look black cant read brand name device gadget sorts pink color felt tip marker black cap piece felt releases ink tube mark paper surfaces pink highlighter magic marker +pear/pear_1_4_63,pear fruit pear green looks ripe green slightly blemished pear pear looks like pear green seems pretty badly bruised +orange/orange_3_2_149,orange object looks like fruit vegetable orange round orange orange orange +food_jar/food_jar_6_1_186,jar food appears jelly fruity food thats ready eat jar hot fudge jar jam jelly jar jelly +cereal_box/cereal_box_2_1_8,box chex box cereal box chocolate chex cereal box chex cereal box chocolate chex brown blue stripe +food_box/food_box_1_1_53,box crackers box containing food product box artificial sweetner box food +instant_noodles/instant_noodles_3_2_15,noodles staple food many cultures package food preparation required food can eaten package food ramon soup package frozen vegetables +food_box/food_box_3_2_186,box food box breakfast bars red white box box crackers box fiber one box allows contents stored online +dry_battery/dry_battery_1_4_93,object blurry tell could used battery +onion/onion_2_1_217,unpeeled white onion round though perfect sphere stem apparent top white onion onion onion skin white white onion +food_can/food_can_13_2_18,can progresso soup can soup can soup can progresso soup can soup can soup made progresso can food unopened can light progresso soup flip top blue label +bowl/bowl_2_4_66,glass bowl light green bowl bowl empty dinner bowl bowl ornate bowl empty bowl bowl bowl shiny blue +calculator/calculator_1_4_71,calculator silver black calculator black grey yellow buttons calculator calculator simple calculator +instant_noodles/instant_noodles_3_2_177,package frozen vegetables bag food package food pack snack frozen food item +food_can/food_can_14_4_73,can illed product looks like unopened can tomato paste can soup can can soup red green label +pear/pear_2_4_147,piece fruit green pear pear pear object ripe green pear +pitcher/pitcher_2_4_80,coffee pitcher filled black coffee silver black coffee pot container can boil liquids pitcher hot liquid coffee pot +sponge/sponge_12_1_42,kitchen sponge +garlic/garlic_7_1_131,clove garlic fresh garlic clove onion head garlic clove garlic +stapler/stapler_3_1_116,black stapler stapler stapler black stapler stapler +potato/potato_1_2_153,red ball might tomato tomato usually mashed sliced eaten humans red potato apple apple +tomato/tomato_4_2_56,red tomato red vine tomatoe small size tomato yellow red tomato tomato +food_bag/food_bag_2_1_133,bag food bag something bag food possibly bread bag chips bag food +stapler/stapler_3_4_88,black stapler stapler keeps papers together black stapler stapler stapler +toothpaste/toothpaste_1_1_157,tube toothpaste tube crest toothpaste tube toothpaste tube toothpaste squeeze dollop toothbrush clean teeth freshen breath tube toothpaste +plate/plate_7_2_175,white plate plate empty dinner plate white styrofoam plate +lemon/lemon_4_1_129,tart fruit called lemon can eaten raw cooked lemon lemon yellow lemon lemon +plate/plate_6_1_92,yellow plate brown ceramic plate shown pie perhaps pumpkin scalloped edge plate empty dinner plate +pliers/pliers_2_2_119,pair pliers pair pliers black handle pair pliers cutting player pair pliers +bowl/bowl_5_1_133,white blue rings ceramic bowl bowl stripy bowl bowl used kitchen eating bowl bowl bowl used holding liquid foods striped bowl +peach/peach_1_4_212,could red onion peach could kind fruit like red apple peach piece fruit +hand_towel/hand_towel_3_1_163,green hand towel folded towel soft absorbent cloth called towel towels used dry water peoples hands items green towel hand towel +sponge/sponge_3_2_119,squeegee sponge blue kitchen sponge sponge blue sponge +water_bottle/water_bottle_5_4_179,bottle water plastic water bottle plastic bottle looks holding water can purposed bottle water blue label bottle water bottle water blue label water bottle blue label +stapler/stapler_8_2_140,red stapler used staple papers together one way bind together red stapler red stapler red stapler stapler +food_box/food_box_10_2_148,box multigrain crackers healthy box crackers box cereal package crackers box archer farms multigrain crackers +bell_pepper/bell_pepper_1_4_138,orange bell pepper orange pepper red pepper orange bell pepper orange bell pepper +sponge/sponge_11_4_46,sponge tool cleaning aid made soft porous material diff --git a/OLD GLS/conf_files/UW_english/UW_document_per_instance_english.conf b/OLD GLS/conf_files/UW_english/UW_document_per_instance_english.conf new file mode 100644 index 0000000..6028545 --- /dev/null +++ b/OLD GLS/conf_files/UW_english/UW_document_per_instance_english.conf @@ -0,0 +1,7455 @@ +water_bottle/water_bottle_10,This is a hard plastic transparent pink water bottle with a built in straw. +water_bottle/water_bottle_10,This is a water bottle. +water_bottle/water_bottle_10,A plastic water bottle. +water_bottle/water_bottle_10,It's a clear red water bottle with a opaque red top. +water_bottle/water_bottle_10,A pink plastic water bottle. It has a built in straw. +notebook/notebook_4,A spiral notebook +notebook/notebook_4,This is a blue notebook. +notebook/notebook_4,This is a blue spiral bound notebook. +notebook/notebook_4,It's a blue spiral bound notebook. +notebook/notebook_4,A writing notebook. +tomato/tomato_1,A red roma tomato +tomato/tomato_1,This is a red tomato. +tomato/tomato_1,It's a roma tomato. +tomato/tomato_1,This looks like a red tomato. +tomato/tomato_1,This is a tomato. +bowl/bowl_6,This is bowl. +bowl/bowl_6,This is a bowl with a blue outside and a floral inside design. +bowl/bowl_6,The bowl is painted on the inside. +bowl/bowl_6,It's a sky blue bowl with a white inside. The inside has multicolored floral designs on it. +bowl/bowl_6,This is a bowl. +plate/plate_1,A cup filled with a drink. +plate/plate_1,This is a shiny yellow gelatinous product. +hand_towel/hand_towel_5,This is a black or dark blue washcloth. It is folded into a square. +hand_towel/hand_towel_5,A folded towel. +hand_towel/hand_towel_5,This is a black towel placed on a plate. +hand_towel/hand_towel_5,This is a black towe. +hand_towel/hand_towel_5,This is a soft, absorbent cloth called a towel. Towels are used to dry water from people's hands and other items. +bell_pepper/bell_pepper_4,It's a red bell pepper. +bell_pepper/bell_pepper_4,A red pepper. +bell_pepper/bell_pepper_4,This is a red bell pepper. +bell_pepper/bell_pepper_4,A fresh red bell pepper with stem. +bell_pepper/bell_pepper_4,This is a red bell pepper. +bell_pepper/bell_pepper_6,a green bell pepper +bell_pepper/bell_pepper_6,This is a green pepper. +bell_pepper/bell_pepper_6,A green pepper. +bell_pepper/bell_pepper_6,This is a green bell pepper. +bell_pepper/bell_pepper_6,A fresh green bell pepper. +keyboard/keyboard_1,This is a computer keyboard. +keyboard/keyboard_1,It's a silver computer keyboard with white buttons. +keyboard/keyboard_1,This is a keyboard. +keyboard/keyboard_1,This is a silver wireless Apple keyboard sitting on a white platform. +keyboard/keyboard_1,It is a flat grey object with various sized white square and rectangular shapes. It is a keyboard. +greens/greens_1,This is lettuce. +greens/greens_1,Green leaf lettuce on a plate. +greens/greens_1,This is a bunch of green lettuce used for salads and sandwiches. +greens/greens_1,A bundle of romaine lettuce with a red plastic tie around it. +greens/greens_1,This is green lettuce. +stapler/stapler_7,This is a blue mini stapler. +stapler/stapler_7,This is a small blue stapler. +stapler/stapler_7,A blue stapler. +stapler/stapler_7,This is a small blue stapler +food_jar/food_jar_1,This is a jar of jam. +food_jar/food_jar_1,This is a jar of grape jelly. +food_jar/food_jar_1,It's a jar of Smuckers grape jelly. +food_jar/food_jar_1,This is a jar of grape jelly. +food_jar/food_jar_1,A jar of grape jelly. +hand_towel/hand_towel_1,This looks like some sort of white towel or wash cloth. +hand_towel/hand_towel_1,a white hand towel. +hand_towel/hand_towel_1,A dinner napkin. +hand_towel/hand_towel_1,This is a napkin or towel placed on a plate. +shampoo/shampoo_3,This is a bottle of shampoo. +shampoo/shampoo_3,This is a container of body cleanser or hair products. +shampoo/shampoo_3,It's a bottle of shampoo. The liquid inside is light purple. +shampoo/shampoo_3,This is a bottle of shampoo. +shampoo/shampoo_3,A bottle of shampoo. +comb/comb_1,A hair brush. +comb/comb_1,This is a black hairbrush. +comb/comb_1,This is a hairbrush. +comb/comb_1,This is a hair brush. +comb/comb_1,A soft bristle hair comb +instant_noodles/instant_noodles_6,This is a pack of ramen that is chicken flavored. +instant_noodles/instant_noodles_6,The object is a yellow package of food and says something about chicken. +instant_noodles/instant_noodles_6,This is a package of food. +instant_noodles/instant_noodles_6,A package of noodles. +water_bottle/water_bottle_7,This object is a water bottle. +water_bottle/water_bottle_7,This is a bottle of water, I can't read the brand name. +water_bottle/water_bottle_7,This is a bottle of water. +water_bottle/water_bottle_7,This is a bottle of drinking water. +water_bottle/water_bottle_7,A plastic water bottle. +rubber_eraser/rubber_eraser_4,This is an eraser. It's a hard rubber gum used to remove pencil markings on paper. +rubber_eraser/rubber_eraser_4,A pencil eraser. +rubber_eraser/rubber_eraser_4,This is an eraser. +rubber_eraser/rubber_eraser_4,This is an eraser. +cell_phone/cell_phone_3,It's a silver and black flip phone. +cell_phone/cell_phone_3,A cell phone. +cell_phone/cell_phone_3,This is a cell phone. +cell_phone/cell_phone_3,This is a cellphone. +cell_phone/cell_phone_3,This is a silver flip cellular phone. +food_jar/food_jar_1,This looks like a jar of grape jelly, I can't see the brand but the lid is hatched, so I think it's Smucker's. +food_jar/food_jar_1,It's a jar of grape jelly. The brand is Smuckers. +food_jar/food_jar_1,A jar of grape jelly. +food_jar/food_jar_1,This is a jar of jam or jelly. +food_jar/food_jar_1,It is a jar with a dark substance on the inside. The label is mostly purple with a plaid lid. +water_bottle/water_bottle_10,This is a water container. +water_bottle/water_bottle_10,A plastic water bottle. +water_bottle/water_bottle_10,It's a clear plastic water bottle with a red cap. +water_bottle/water_bottle_10,This is an empty water bottle. +water_bottle/water_bottle_10,This is a water bottle. +water_bottle/water_bottle_7,A small bottle of mineral water +water_bottle/water_bottle_7,This is a bottle of water. +water_bottle/water_bottle_7,This is a bottle of water. +water_bottle/water_bottle_7,This is a water bottle. +water_bottle/water_bottle_7,This is a clear plastic water bottle. It has a label on it. +food_can/food_can_5,This is a can of baked beans. +food_can/food_can_5,This is a metal can, used to hold food. It is a cylinder with a paper wrapper. +food_can/food_can_5,This is a can of soup. +food_can/food_can_5,Red and white can with picture of food on front +food_can/food_can_5,It's a can of food with a red and white label. The brand is Market Pantry. +soda_can/soda_can_4,This is a can of Coca-Cola. +soda_can/soda_can_4,This is a can of Coke Zero. +soda_can/soda_can_4,This is an opened can of soda, looks like Dr. Pepper. +soda_can/soda_can_4,It is a Coca Cola can. It is black with red and yellow lettering. +soda_can/soda_can_4,A can of Coke. +rubber_eraser/rubber_eraser_1,It's a white eraser in a blue and white cardboard holder. +comb/comb_5,A black hair brush. +comb/comb_5,This object is used to untangle hair. +comb/comb_5,This is a hairbrush. +comb/comb_5,This is a hairbrush. +comb/comb_5,This is a hair brush. +orange/orange_4,This is a lemon. +orange/orange_4,This is a lemon. +orange/orange_4,This is an orange. +orange/orange_4,This is an orange. +orange/orange_4,This orange is a sweet fruit. It is usually peeled and eaten raw, but there are many ways to use this food. +sponge/sponge_5,This is a sponge. It is usually used to clean, and has one rough side to scrub items clean. +sponge/sponge_5,This is a kitchen sponge. +sponge/sponge_5,This is a red and blue sponge. +sponge/sponge_5,This is a blue and red sponge. +sponge/sponge_5,A kitchen sponge. +cereal_box/cereal_box_1,A box of cereal. Box of bran flakes. +cereal_box/cereal_box_1,This is a box of Bran Flakes cereal. +cereal_box/cereal_box_1,This is a box of Bran Flakes. +cereal_box/cereal_box_1,A box of cereal. +cereal_box/cereal_box_1,This is a box of bran flakes. +tomato/tomato_5,This is a tomato. +tomato/tomato_5,A red tomato. +tomato/tomato_5,This is a red ball that is shiny and has a white circle in the middle. +tomato/tomato_5,This is a red Christmas ball decoration. It is used decorate a Christmas tree or other things for the holidays. +garlic/garlic_5,Garlic is a species in the onion genus. +garlic/garlic_5,This is a shallot. +apple/apple_2,A red delicious apple. Super market sticker on apple. +apple/apple_2,It is a red apple. +apple/apple_2,A red apple. +apple/apple_2,This is an apple. +apple/apple_2,This is an apple. +potato/potato_4,A potato. +potato/potato_4,This is a potato. +potato/potato_4,This is a potato. +potato/potato_4,This looks like a potato. It is small and brown. +calculator/calculator_4,this is a calculator, can be used for math problems and even when grocery shopping to make sure you are not going over the budget. Has all numbers and all math characters. +calculator/calculator_4,A light green calculator +calculator/calculator_4,This is a calculator. +calculator/calculator_4,This is a calculator. +calculator/calculator_4,This is a green calculator. This is good for math. +tomato/tomato_5,A red apple or a red ball. Could be a tomato. +tomato/tomato_5,Red tomatoes are used in marinara sauce. +tomato/tomato_5,This is a tomato. +tomato/tomato_5,A red tomato. +garlic/garlic_1,A clove of garlic. +garlic/garlic_1,This is a bulb of garlic. +coffee_mug/coffee_mug_4,A coffee mug. +coffee_mug/coffee_mug_4,This is a mug. +coffee_mug/coffee_mug_4,This is a white and blue coffee mug. +coffee_mug/coffee_mug_4,We're looking down at the inside of a mug. The outside is white, the inside rim is blue and it looks like there's some red on the handle. +coffee_mug/coffee_mug_4,It's an empty white mug with a blue stripe around the inside rim. +water_bottle/water_bottle_3,It is a plastic bottle of water. There is a blue label across the middle with some white text on it. +water_bottle/water_bottle_3,This is a bottle of Aquafina water. +water_bottle/water_bottle_3,It's a bottle of Aquafina bottled water. It has a blue label. +water_bottle/water_bottle_3,A plastic water bottle. +water_bottle/water_bottle_3,This is a bottle of water. +pitcher/pitcher_3,This is a pitcher. +pitcher/pitcher_3,This is a coffee pitcher. +pitcher/pitcher_3,A green vase. +pitcher/pitcher_3,A green glazed ceramic pitcher with a handle. +pitcher/pitcher_3,This is a ceramic pitcher. +food_bag/food_bag_8,It's a bag of Sun Chips. It's green with white text on it. +food_bag/food_bag_8,This is a bag of sun chips. +food_bag/food_bag_8,This is a bag of sunchips. +food_bag/food_bag_8,A green bag of Sun Chips. +food_bag/food_bag_8,This is a bag of Sun Chips. +food_can/food_can_5,This is a can of soup. +food_can/food_can_5,Looks to be a can of soup. +food_can/food_can_5,Here is a can of soup. It looks like it might be noodle soup. +food_can/food_can_5,It's a can of something, probably food. +food_can/food_can_5,This is a canned good. +camera/camera_3,This is a camera. +camera/camera_3,This is a digital camera. +camera/camera_3,This is a digital camera. +camera/camera_3,Metallic square box, black trim, with our LED screen. Buttons to the right of the LED screen. +camera/camera_3,A digital camera. +soda_can/soda_can_5,This is a can of diet Dr. Pepper. +soda_can/soda_can_5,The object is a can of Dr. Pepper and is white and red. +soda_can/soda_can_5,A can of Diet Dr. Pepper. +soda_can/soda_can_5,This is an unopened can of Dr. Pepper. +soda_can/soda_can_5,a can of dr.pepper drink +food_can/food_can_10,It is a metal silver can. The paper label is mostly yellow with some blue and red. +food_can/food_can_10,This is a can of food. +food_can/food_can_10,A can of fruit. +food_can/food_can_10,This is a can. +pear/pear_8,This is a green apple. +pear/pear_8,This is an apple. +pear/pear_8,A yellow apple. +pear/pear_8,This is a yellow delicious apple. +pear/pear_8,a golden delicious apple +ball/ball_1,This is a football. +ball/ball_1,A nerf football. +ball/ball_1,This is a toy football. +ball/ball_1,This is an inflatable toy football. It is brown with white stripes. +ball/ball_1,A football +food_can/food_can_8,This is a canned good. Food is preserved in an aluminum can. +food_can/food_can_8,The object is a tin can with a tomato on the outside. +food_can/food_can_8,This looks like the side of a can of Ro-tel tomatoes. +food_can/food_can_8,A can of Rotel tomatoes. +food_can/food_can_8,Here is an unopened can of food. +water_bottle/water_bottle_1,A plastic water bottle. +water_bottle/water_bottle_1,A small bottle of mineral drinking water +water_bottle/water_bottle_1,A plastic bottle of water. Drinking water. +water_bottle/water_bottle_1,This is a bottle of water. +water_bottle/water_bottle_1,This is a bottle of water. +instant_noodles/instant_noodles_5,It's an orange packet of instant noodles. +instant_noodles/instant_noodles_5,It is a plastic packaged product. It is mostly orange with some white shapes and blue text. +instant_noodles/instant_noodles_5,A package of Ramen noodles. +food_cup/food_cup_3,This is a container of yogurt. +food_cup/food_cup_3,A container of yogurt. +food_cup/food_cup_3,This is a container of yogurt. +food_cup/food_cup_3,This is a container for yogurt. +food_cup/food_cup_3,It's a container of yogurt. +soda_can/soda_can_5,This is a can of Dr. Pepper. +soda_can/soda_can_5,An aluminum can of Diet Dr. Pepper. +soda_can/soda_can_5,a can of diet dr.pepper drink +soda_can/soda_can_5,This is a can of Dr. Pepper soda. +soda_can/soda_can_5,The object is a white and red Diet Dr. Pepper can. +plate/plate_4,An empty paper plate. +plate/plate_4,It's a plate. +plate/plate_4,This is a plate. +plate/plate_4,This is a bowl. Normally used for soups or deserts, it is part of a table setting. +plate/plate_4,This is a white paper plate. +food_bag/food_bag_1,It's a bag of snacks with a light blue and white package. +food_bag/food_bag_1,This looks like a bag of chips. +food_bag/food_bag_1,this is a bag of healthy potatoe chips +food_bag/food_bag_1,This is a bag of chips. +food_bag/food_bag_1,This is a package of food. +scissors/scissors_1,This is a pair of scissors. +scissors/scissors_1,A pair of metal scissors with orange and gray handles/ +scissors/scissors_1,This is a pair of scissors. +scissors/scissors_1,This is a pair of scissors. +scissors/scissors_1,Scissors with a black and orange handle. +scissors/scissors_3,This is a pair of scissors with a blue handle +scissors/scissors_3,This is a pair of scissors. +scissors/scissors_3,It's a pair of scissors with a blue handle. +scissors/scissors_3,This is a pair of scissors. +scissors/scissors_3,These are scissors used for cutting paper. +dry_battery/dry_battery_1,This is a 9 volt battery. +dry_battery/dry_battery_1,A battery. +dry_battery/dry_battery_1,It's a yellow battery. +dry_battery/dry_battery_1,This is a battery. +food_jar/food_jar_3,This is a jar of a food product. +food_jar/food_jar_3,This is a jar of gravy. +food_jar/food_jar_3,A jar of something like jam +food_jar/food_jar_3,A glass jar with a gold metal lid. There is some dark red on the lid and label. +food_jar/food_jar_3,This is a can. +hand_towel/hand_towel_5,This is a soft, absorbent cloth called a towel. Towels are used to dry water from people's hands and other items. +hand_towel/hand_towel_5,This is a black towel placed on a plate. +hand_towel/hand_towel_5,A folded towel. +soda_can/soda_can_6,A can of Welch's soda. +soda_can/soda_can_6,This is a can of soda. +soda_can/soda_can_6,Soft Drink Can is a metal container designed to hold a fixed portion of liquid such as carbonated soft drinks. +soda_can/soda_can_6,This is a can of juice or soda. +soda_can/soda_can_6,This is a can that contains juice. It's commonly called a tin can, and can be easily opened pulling the ring on the pop top. +kleenex/kleenex_5,This is a box of facial tissues. +kleenex/kleenex_5,A box of kleenex. +kleenex/kleenex_5,This is a box of tissues. +kleenex/kleenex_5,This is a box of tissues. +kleenex/kleenex_5,It's a box of Kleenex with a red pattern on it. +sponge/sponge_6,This is a yellow and pink sponge. This sponge is good to wash dishes with. +sponge/sponge_6,This is a yellow and pink sponge. +sponge/sponge_6,A kitchen sponge. +sponge/sponge_6,This is a note pad used to take notes. +mushroom/mushroom_1,This is a mushroom. +mushroom/mushroom_1,A clove of garlic. +potato/potato_1,A small red potato. +potato/potato_1,It's a red potato. +potato/potato_1,This is a red potato. +hand_towel/hand_towel_2,This is a napkin on a plate. +hand_towel/hand_towel_2,A dinner napkin. +hand_towel/hand_towel_2,A wash towel +hand_towel/hand_towel_2,This is a red towel. +coffee_mug/coffee_mug_5,This is a mug. +coffee_mug/coffee_mug_5,This is a white coffee mug. +coffee_mug/coffee_mug_5,a coffee mug +coffee_mug/coffee_mug_5,A white ceramic mug. A coffee mug. +coffee_mug/coffee_mug_5,A coffee mug. +instant_noodles/instant_noodles_4,This is a package of food. Some preparation is required before this food can be eaten. +instant_noodles/instant_noodles_4,A package of Ramen noodles. +instant_noodles/instant_noodles_4,This is a package of Ramen noodles. +instant_noodles/instant_noodles_4,This is a package of food. +lime/lime_4,It is a lime with a sticker on it. +lime/lime_4,This is a lime. +lime/lime_4,A green lime. +lime/lime_4,This is a lime. It has a sticker on it. +lime/lime_4,It is a lime. The lime is green. +apple/apple_2,A red apple. +apple/apple_2,ROUND AND RED +apple/apple_2,This is a red delicious apple. +apple/apple_2,This is a red apple. +apple/apple_2,This is an apple. +garlic/garlic_6,It's a head of garlic. +garlic/garlic_6,This is bulb of garlic. +garlic/garlic_6,Fresh unpeeled garlic. +garlic/garlic_6,This is a bulb of garlic. +comb/comb_3,This is a hair brush. +comb/comb_3,This is a hair brush. +comb/comb_3,This is a black and teal paddle hairbrush. +comb/comb_3,This is a hair brush. It is used to de-tangle a person's hair. +comb/comb_3,A hair brush. +stapler/stapler_1,This is a stapler. +stapler/stapler_1,This is a stapler. +stapler/stapler_1,This is a black stapler. +stapler/stapler_1,It's a black and grey stapler. +stapler/stapler_1,This is a black stapler. You use this to help keep your papers together. +shampoo/shampoo_3,It's a bottle of VO5 shampoo. The liquid inside is light purple. +shampoo/shampoo_3,This is a bottle of VO5 shampoo. +shampoo/shampoo_3,A bottle of VO5 shampoo. +shampoo/shampoo_3,This is a bottle of shampoo. +shampoo/shampoo_3,This appears to be a body cleanser or body soap. +greens/greens_2,A bundle of romaine lettuce. +greens/greens_2,Green leaf lettuce on a plate. +greens/greens_2,This is some sort of leafy green vegetable, some sort of lettuce. +greens/greens_2,This is green leaf lettuce. +greens/greens_2,This is lettuce. +kleenex/kleenex_3,This is a box of facial tissues. +kleenex/kleenex_3,This looks like a box of klenix to me. +kleenex/kleenex_3,This is a box of tissues. +kleenex/kleenex_3,A box of kleenex. +kleenex/kleenex_3,It's a box of kleenex with grey designs on it. +bowl/bowl_2,An empty dinner bowl. +bowl/bowl_2,It's a light green bowl with a design on the rim. +bowl/bowl_2,This is a bowl. +bowl/bowl_2,It's a bowl. +bowl/bowl_2,This is a bowl. +pear/pear_1,A pear. +pear/pear_1,This is a green pear with some brown coloring on it. +pear/pear_1,This is a pear. +pear/pear_1,This is a pear. +pear/pear_1,This is a pear. +potato/potato_5,This is a potato. Usually cooked before being eaten, it's a starchy vegetable. +potato/potato_5,This is a brown potato. +potato/potato_5,It's a brown russet potato. +potato/potato_5,This is a potato. +potato/potato_5,A large baking potato. +comb/comb_2,This is a hair brush. +comb/comb_2,This is a hair brush. +comb/comb_2,Plastic hairbrushes are affordable and durable. +comb/comb_2,This is a hair brush. +comb/comb_2,A black hair brush. +toothpaste/toothpaste_3,It's a tube of toothpaste. It's blue and white. +toothpaste/toothpaste_3,The object is a tube of toothpaste. The tube is blue and white. +toothpaste/toothpaste_3,A tube of Ultra Brite toothpaste. +toothpaste/toothpaste_3,This is a tube of Ultrabrite toothpaste. +toothpaste/toothpaste_3,This is a tube of toothpaste. +greens/greens_4,It's some baby bok choy. +greens/greens_4,This is bok choi. +greens/greens_4,This is baby bok choy. +greens/greens_4,Kale on a plate. +marker/marker_4,A green pen +marker/marker_4,A green dry erase marker. +marker/marker_4,This is a green marker. +marker/marker_4,A magic marker. +marker/marker_4,It's a green marker. +food_can/food_can_2,a can of something +food_can/food_can_2,A can of soup. +food_can/food_can_2,This is a can of soup. +food_can/food_can_2,This is an unopened can with a flip top. +plate/plate_4,It is a plate that is mostly flat, with a raised outer area that goes around. +plate/plate_4,This is a plate. +plate/plate_4,It's a paper plate with beige designs around the edge. +plate/plate_4,The object appears to be a paper plate. The color is tan and brown. +plate/plate_4,An empty paper plate. +coffee_mug/coffee_mug_6,A tan coffee mug with a handle. +coffee_mug/coffee_mug_6,A round object that holds liquid. It is white and has ridges. +coffee_mug/coffee_mug_6,This is a yellow ceramic mug. +coffee_mug/coffee_mug_6,A mug holding some sort of liquied that is not identifiable. +coffee_mug/coffee_mug_6,This is a coffee cup. +flashlight/flashlight_2,This is a red and black flashlight. +flashlight/flashlight_2,A red flash light. +flashlight/flashlight_2,This is a flashlight, the casing is red plastic and the button and top are black. +flashlight/flashlight_2,This is a red and black flashlight. +flashlight/flashlight_2,This is a flashlight. +flashlight/flashlight_2,This is a flashlight. +food_box/food_box_1,This is a box of food. +food_box/food_box_1,A box of some food +food_box/food_box_1,This is a box of sweetner. +food_box/food_box_1,A box of crackers. +banana/banana_3,This is a yellow banana. +banana/banana_3,A banana on a plate. +banana/banana_3,This is a large yellow banana. It has a strong fragrance. It is a mushy texture. +banana/banana_3,This is a sweet fruit called a banana. It can be eaten raw or cooked, and can be made into banana bread! +banana/banana_3,This is a banana. +food_can/food_can_4,This is a can. +food_can/food_can_4,This item is a can of food. +food_can/food_can_4,It's a can of food with a white label. +food_can/food_can_4,A can of soup. +food_can/food_can_4,This is a can with a product inside it. +camera/camera_1,A small film camera. +bell_pepper/bell_pepper_3,The pepper is red. +bell_pepper/bell_pepper_3,This is a red bell pepper. +bell_pepper/bell_pepper_3,It is a red bell pepper with a green thick stem. +bell_pepper/bell_pepper_3,A red pepper. +bell_pepper/bell_pepper_3,This is a red bell pepper. +shampoo/shampoo_3,This is a bottle of shampoo. +shampoo/shampoo_3,It's a bottle of conditioner. The liquid inside is lavender and it has a silver cap. +shampoo/shampoo_3,This is a bottle of blue colored shampoo. +shampoo/shampoo_3,This is a bottle of shampoo. +shampoo/shampoo_3,This is a bottle of either shampoo, conditioner, or maybe even body wash. It is blue in color. +garlic/garlic_4,A purple onion. +garlic/garlic_4,A medium size red onion +stapler/stapler_5,This is a black stapler. +stapler/stapler_5,This is a stapler. +stapler/stapler_5,It's a black stapler. +stapler/stapler_5,This is a stapler. +stapler/stapler_5,This is a black stapler. +cap/cap_1,It's a white baseball hat with black stripes. +cap/cap_1,This is a white baseball cap with black stripes and a W logo. +cap/cap_1,A baseball cap. +cap/cap_1,a white cap +cap/cap_1,This is a white hat. +peach/peach_1,This is a peach. +peach/peach_1,This object is round with a dark mink and yellow skin. It is a soft, sweet fruit with a pit. +peach/peach_1,This is a peach. +peach/peach_1,A reddish peach. +peach/peach_1,The object is a red colored peach. +marker/marker_2,This is a green dry erase marker. +marker/marker_2,A marker pen +marker/marker_2,A magic marker. +marker/marker_2,This is a green marker. +marker/marker_2,It is a green marker. +toothpaste/toothpaste_4,This object is a tube of toothpaste. +toothpaste/toothpaste_4,The object is plastic, has a cap and its contents is gel like. +toothpaste/toothpaste_4,A tube of toothpaste +toothpaste/toothpaste_4,A tube of Close-Up toothpaste used to clean teeth. +toothpaste/toothpaste_4,A tube of toothpaste. +tomato/tomato_8,This is a tomato. +tomato/tomato_8,A round, red tomato. +tomato/tomato_8,This is a red tomato. +tomato/tomato_8,A peach standing upright. +tomato/tomato_8,A tomato +food_can/food_can_6,This is a can of soup. +food_can/food_can_6,This is a can of soup. +food_can/food_can_6,This is a can of food. Some preparation may be required before this food can be eaten. +food_can/food_can_6,A can of soup. +food_can/food_can_6,a can of tomatoes +keyboard/keyboard_5,It's a white and black computer keyboard. +keyboard/keyboard_5,This is a computer keyboard. +keyboard/keyboard_5,This is a keyboard. +keyboard/keyboard_5,This is a computer keyboard. +keyboard/keyboard_5,A computer keyboard. +food_box/food_box_5,This is a box containing a food product. +food_box/food_box_5,The object is a box of soup with a white bottom and red topped box. +food_box/food_box_5,A box of crackers. +food_box/food_box_5,They are crackers like the ones you service with cheese. +notebook/notebook_5,This is a notebook. +notebook/notebook_5,This is a notebook. +notebook/notebook_5,It's a black spiral bound notebook. +notebook/notebook_5,This is a spiral bound notebook. A number of pages of paper are bound together by the spiral of wire. +notebook/notebook_5,This is a black spiral bound notebook. +toothbrush/toothbrush_3,This a white and teal colored toothbrush. +toothbrush/toothbrush_3,This is a tooth brush. +toothbrush/toothbrush_3,It's a blue and white toothbrush. +toothbrush/toothbrush_3,This is a toothbrush for cleaning your teeth. +toothbrush/toothbrush_3,A toothbrush. +garlic/garlic_5,An onion. +garlic/garlic_5,It's a brown onion. +garlic/garlic_5,This is an onion. This tasty vegetable has a sharp flavor, and us usually cooked. +garlic/garlic_5,This is an onion. +glue_stick/glue_stick_6,This looks like a can of vegtable oil spray. +glue_stick/glue_stick_6,This is a can with a red cap. +glue_stick/glue_stick_6,This is a glue stick. +glue_stick/glue_stick_6,This is a can of spray. +glue_stick/glue_stick_6,A tube of glue. +lemon/lemon_2,A lemon with sticker on it +lemon/lemon_2,This is a tart fruit called a lemon. It can be eaten raw or cooked. +lemon/lemon_2,This is a lemon. +lemon/lemon_2,A yellow lemon. +lemon/lemon_2,This is a lemon. +cell_phone/cell_phone_3,This is a mobile phone. +cell_phone/cell_phone_3,It's a flip phone. It is grey and blue. +cell_phone/cell_phone_3,A cell phone. +cell_phone/cell_phone_3,an old model flip mobile phone +cell_phone/cell_phone_3,This is a phone it is used to call people +kleenex/kleenex_4,This is a box of facial tissues. +kleenex/kleenex_4,This is a box of tissues. +kleenex/kleenex_4,A box of napkins +kleenex/kleenex_4,This is a Kleenex box. It is blue. +kleenex/kleenex_4,A box of kleenex. +glue_stick/glue_stick_3,A glue stick with a red top +glue_stick/glue_stick_3,This is a container of glue. +glue_stick/glue_stick_3,Blue glue stick with a red top. +glue_stick/glue_stick_3,This is a glue stick. +glue_stick/glue_stick_3,A glue stick with an orange cap. +marker/marker_4,A magic marker. +marker/marker_4,This is an ink pen. +marker/marker_4,This is a marker. +marker/marker_4,This looks like a green highlighter or marker. +water_bottle/water_bottle_9,This is a water bottle. +water_bottle/water_bottle_9,This is a water bottle with a blue lid. +water_bottle/water_bottle_9,This is a plastic drinking bottle. It is clear with a blue lid. +water_bottle/water_bottle_9,This is a blue water bottle. It is empty. +water_bottle/water_bottle_9,A plastic water bottle. +potato/potato_2,A small red potato. +potato/potato_2,This is a small potato. +potato/potato_2,It's a red potato. +potato/potato_2,This is a red potato. +food_jar/food_jar_2,This is a jar of caramel topping. +food_jar/food_jar_2,This is a jar of marmalade. +food_jar/food_jar_2,This is a jar of food. This appears to be jelly, a fruity food that's ready to eat. +food_jar/food_jar_2,A jar of jelly. +food_jar/food_jar_2,This is a jar of jelly. +food_jar/food_jar_6,This is a jar of fudge topping. +food_jar/food_jar_6,A jar of chocolate fudge. +food_jar/food_jar_6,This is a jar of fudge. +food_jar/food_jar_6,This is a jar of jam or jelly. +food_can/food_can_1,This is a can. +food_can/food_can_1,A can of something unidentifiable +food_can/food_can_1,It is a short can of some kind of food with a white table. +food_can/food_can_1,A can of condensed milk. +food_can/food_can_1,This is a can of food. +sponge/sponge_8,This is a kitchen sponge. +sponge/sponge_8,The sponge has two colors. The top is blue and the bottom is yellow. +sponge/sponge_8,This is a sponge. +sponge/sponge_8,A kitchen sponge. +sponge/sponge_8,Rectangular shaped object that is roughly 2/3 yellow in color and 1/3 blue. +hand_towel/hand_towel_1,This is a white towel. +hand_towel/hand_towel_1,This is a towel. +hand_towel/hand_towel_1,This is a white towel. +hand_towel/hand_towel_1,This is a white blanket used to keep warm. +hand_towel/hand_towel_1,A folded towel. +pitcher/pitcher_3,This is a green vase. +pitcher/pitcher_3,This is a pitcher for beverages. +pitcher/pitcher_3,A green vase. +pitcher/pitcher_3,Pitcher is a container with a spout used for storing and pouring contents which are liquid in form. +pitcher/pitcher_3,This is a green ceramic pitcher. +comb/comb_5,This is a hairbrush. +comb/comb_5,This is a hair brush. +comb/comb_5,A black hair brush. +comb/comb_5,An oval head balck hair comb +comb/comb_5,This is a black hairbrush. +orange/orange_3,This is a round, orange fruit. +orange/orange_3,This is a sweet fruit called an orange. It can be eaten raw or cooked. +orange/orange_3,This is an orange. +orange/orange_3,An orange. +orange/orange_3,This is an orange. +rubber_eraser/rubber_eraser_3,This is a rectangular shaped pink eraser. +rubber_eraser/rubber_eraser_3,A rectangular pink eraser. +rubber_eraser/rubber_eraser_3,This is an eraser. +hand_towel/hand_towel_5,This is a cloth napkin. +hand_towel/hand_towel_5,This is a small black towel. +hand_towel/hand_towel_5,A folded towel. +hand_towel/hand_towel_5,This is a soft, absorbent cloth called a towel. Towels are used to dry water from people's hands and other items. +onion/onion_3,A white onion. +onion/onion_3,This is a yellow onion. +onion/onion_3,This is an onion. +onion/onion_3,It's a yellow onion. +onion/onion_3,This is a white onion. +cell_phone/cell_phone_2,This is a phone. +cell_phone/cell_phone_2,This is a silver and black phone. +cell_phone/cell_phone_2,A cell phone. +cell_phone/cell_phone_2,It is a silver and black cell phone. +cell_phone/cell_phone_2,This is a mobile phone. +pitcher/pitcher_2,The tea kettle is silver. +pitcher/pitcher_2,This is a pitcher for hot liquid or possibly an electric kettle. +pitcher/pitcher_2,This is a coffee pot. +pitcher/pitcher_2,A coffee pot. +pitcher/pitcher_2,This is a stainless steel coffee carafe. +calculator/calculator_5,It's a silver and black calculator with white and grey buttons. +calculator/calculator_5,This is a silver calculator. +calculator/calculator_5,THIS IS A CALCULATOR WITH WHITE KEYPADS +calculator/calculator_5,A calculator. +calculator/calculator_5,This is a calculator. +garlic/garlic_6,This is a clove of frest garlic. +garlic/garlic_6,This is a bulb of garlic. +garlic/garlic_6,A clove of garlic. +garlic/garlic_6,On clove or garlic. +garlic/garlic_6,Garlic is a species in the onion genus. +tomato/tomato_1,A red tomato. +tomato/tomato_1,This is a tomato. +tomato/tomato_1,a tomato +tomato/tomato_1,A ripened plum tomato +tomato/tomato_1,This is a tomato. +plate/plate_6,An empty dinner plate. +plate/plate_6,This pie is circular in shape, yellow in color, and appears to have plastic wrap on top of it. The brown crust is apparent around its edges. +plate/plate_6,This is a ceramic dish. It is dark yellow. +plate/plate_6,This is a plate. +plate/plate_6,This is a brown plate. +tomato/tomato_4,This is a tomato. +tomato/tomato_4,It's a yellow and red tomato. +tomato/tomato_4,A red tomato. +tomato/tomato_4,This is a tomato. +tomato/tomato_4,This is a tomato. +instant_noodles/instant_noodles_3,This is a package of food. +instant_noodles/instant_noodles_3,A package of frozen vegetables. +instant_noodles/instant_noodles_3,This is a package of Ramen soup mix. +instant_noodles/instant_noodles_3,The object is a green and white package of food, probably noodles. +plate/plate_4,this is a plate +plate/plate_4,This is a plate. +plate/plate_4,An empty paper plate. +plate/plate_4,This looks like a bowl with some kind of liquid in it like soup on a plate. +plate/plate_4,A white and tan paper plate. +orange/orange_1,This is an orange. +orange/orange_1,An orange. +orange/orange_1,This is a piece of fruit, probably a blood orange. +orange/orange_1,An orange that is not yet peeled. +orange/orange_1,This is an orange. +greens/greens_3,This is bok choi. +greens/greens_3,Bok Choy on a plate. +greens/greens_3,This is baby bok choy. +greens/greens_3,It's a plate with some uncooked baby bok choy on it. The bok choy has white stems and green leaves. +greens/greens_3,This is a head of bokchoy. +toothbrush/toothbrush_5,This is a toothbrush. +toothbrush/toothbrush_5,A red and white toothbrush. +toothbrush/toothbrush_5,This is a red toothbrush. +toothbrush/toothbrush_5,This is a toothbrush. +toothbrush/toothbrush_5,The object is long, has a grip and bristles. +stapler/stapler_5,This is a tube. +stapler/stapler_5,A black stappler +stapler/stapler_5,This is a stapler. +stapler/stapler_5,A black stapler. +flashlight/flashlight_5,A yellow flashlight. +flashlight/flashlight_5,A duracell flash light. It was yellow in color +flashlight/flashlight_5,This is a large black and yellow Duracell flashlight. +flashlight/flashlight_5,This is a yellow and black flashlight on a white and red plate. +flashlight/flashlight_5,It's a yellow and black Duracell flashlight. +food_cup/food_cup_2,A container of yogurt. +food_cup/food_cup_2,This is a container of yogurt. +food_cup/food_cup_2,This is a cup of yogurt that has not yet been opened. +food_cup/food_cup_2,This is a red and white yogurt cup. +food_cup/food_cup_2,It's a container of Yoplait yogurt. +water_bottle/water_bottle_5,This is a bottle of water +water_bottle/water_bottle_5,This is a bottle of water. +water_bottle/water_bottle_5,This is a bottle of water. +water_bottle/water_bottle_5,It's a bottle of water. +water_bottle/water_bottle_5,It's a bottle of water with a blue label. +water_bottle/water_bottle_6,A plastic water bottle. +water_bottle/water_bottle_6,This is a bottle of water. +water_bottle/water_bottle_6,This is a clear bottle of water. +water_bottle/water_bottle_6,This is a bottle of water. +water_bottle/water_bottle_6,This is a bottle of water. +food_box/food_box_10,This is a box of multi-grain crackers. +food_box/food_box_10,This is a box of food, possible pancake mix. +food_box/food_box_10,It's a box of multigrain crackers. It is green and white with a purple label and a picture of crackers on it. +food_box/food_box_10,This is a box of crackers. +food_box/food_box_10,Small cardboard box of crackers. Green and purple labels with a picture of a bowl of crackers. +food_jar/food_jar_5,This is a jar of peppers. +food_jar/food_jar_5,This is a pickle jar. +food_jar/food_jar_5,A jar of peppers. +food_jar/food_jar_5,A glass jar with a blue lid with some type of food inside. +food_bag/food_bag_1,This is a bag of chips or a similar kind of food product. +food_bag/food_bag_1,A bag of chips. +food_bag/food_bag_1,A bag of frozen fruit. +food_bag/food_bag_1,Chips are a delicious after dinner treat. +food_bag/food_bag_1,This is a bag of dog food. It looks healthy. +marker/marker_9,A yellow magic marker. +marker/marker_9,This is a yellow highlighter. +marker/marker_9,This is a marker. +marker/marker_9,It's a yellow highlighter marker. +sponge/sponge_3,A blue colored sponge +sponge/sponge_3,This is a cleaning sponge. Most often used in the kitchen, a sponge can be used many places. +sponge/sponge_3,It's a blue sponge. +sponge/sponge_3,This is a sponge. +sponge/sponge_3,A kitchen sponge. +lime/lime_3,A green lime. +lime/lime_3,The lemon is a species of small evergreen tree in the flowering plant. +lime/lime_3,This is a green lime. +lime/lime_3,This is a lime. +lime/lime_3,This is a lime. +ball/ball_1,This is a football. +ball/ball_1,a football +ball/ball_1,A football. +ball/ball_1,This is a toy football. +dry_battery/dry_battery_6,This is a battery. +dry_battery/dry_battery_6,This is a battery. +dry_battery/dry_battery_6,This is a battery. +dry_battery/dry_battery_6,This is a battery. +dry_battery/dry_battery_6,A battery from its postive side +potato/potato_1,A red potato. +potato/potato_1,This is a red potato. +potato/potato_1,It's a red potato. +cap/cap_1,It is a baseball cap that is mostly white with thin stripes all over. +cap/cap_1,This is a hat. It's commonly called a ball cap because of all the ball players that wear them. +cap/cap_1,A baseball cap. +cap/cap_1,This is a white baseball cap with black stripes and a W logo. +cap/cap_1,This is a white baseball cap. +lightbulb/lightbulb_2,This is an old lightbulb. +lightbulb/lightbulb_2,A light bulb. +lightbulb/lightbulb_2,This is an incandescent light bulb. +lightbulb/lightbulb_2,A standard white lightbulb. +lightbulb/lightbulb_2,This is a light bulb. +scissors/scissors_4,A pair of scissors with a blue and yellow handle. +scissors/scissors_4,This is a pair of scissors. +scissors/scissors_4,Scissors with a yellow handle. +scissors/scissors_4,This is a pair of grey and yellow scissors. +scissors/scissors_4,It's a pair of scissors with blue and yellow handles. +food_box/food_box_1,This is a box of cereal. +food_box/food_box_1,This is a box of food. +food_box/food_box_1,This is a box of food. +food_box/food_box_1,Here is the nutrition fact side of a box of food. +food_box/food_box_1,A box of crackers. +stapler/stapler_6,A stapler is a mechanical device that joins pages of paper or similar material by driving a thin metal staple through the sheets and folding the ends. +stapler/stapler_6,A black stapler. +stapler/stapler_6,This is a stapler. It joins two or more pieces of paper together. +stapler/stapler_6,This is a stapler. +stapler/stapler_6,This is a stapler. +garlic/garlic_5,Garlic is a species in the onion genus. +garlic/garlic_5,A clove of garlic. +flashlight/flashlight_4,This is a flashlight. +flashlight/flashlight_4,This is a flashlight it is used to see your way in the dark. +flashlight/flashlight_4,This is a flashlight. +flashlight/flashlight_4,A black flashlight. +flashlight/flashlight_4,This is a flashlight. +potato/potato_4,A large baking potato. +potato/potato_4,This is a potato. +potato/potato_4,This is a potato. +stapler/stapler_7,A blue stapler. +stapler/stapler_7,This is a small blue stapler. +stapler/stapler_7,This a mini blue stapler. +cereal_box/cereal_box_1,This is a box of Bran Flakes cereal. +cereal_box/cereal_box_1,This is a box of cereal. +cereal_box/cereal_box_1,This is a box of Bran Flakes cereal. +cereal_box/cereal_box_1,A box of Bran Flakes. +cereal_box/cereal_box_1,This is a box of bran flakes. +apple/apple_4,A yellow apple. +apple/apple_4,This is a golden delicious apple. +apple/apple_4,This is an apple. +apple/apple_4,Greenish/Yellowish Apple, like a cross between granny smith and a golden apple. +apple/apple_4,This is a yellow or light green apple used for a healthy snack. +plate/plate_3,This is a plate. +plate/plate_3,An empty paper plate. +plate/plate_3,this is a blue and white bowl +plate/plate_3,an empty plate. It was white with blue design +plate/plate_3,This is a plate. +scissors/scissors_3,This is a pair of scissors with a blue, plastic handle. +scissors/scissors_3,a blue colored craft scissors +scissors/scissors_3,This is a pair of scissors. +scissors/scissors_3,This is a pair of blue handle scissors used for cutting. +scissors/scissors_3,It is a pair of scissors with a blue handle. +scissors/scissors_3,Here are scissors +food_can/food_can_14,This is a can filled with a product. +food_can/food_can_14,This is a can. +food_can/food_can_14,A can of soup. +food_can/food_can_14,This is a can with a pull tab. I can't read the label, it's most likely some sort of soup. +food_can/food_can_14,This is a can of soup. +keyboard/keyboard_1,a computer keyboard +keyboard/keyboard_1,This is a wireless computer keyboard. +keyboard/keyboard_1,This is a computer keyboard. +keyboard/keyboard_1,A computer keyboard. +keyboard/keyboard_1,This is a keyboard. +coffee_mug/coffee_mug_3,This is a mug. +coffee_mug/coffee_mug_3,This is a brown coffee mug. +coffee_mug/coffee_mug_3,A black pitcher +coffee_mug/coffee_mug_3,This is a coffee mug. +coffee_mug/coffee_mug_3,A coffee mug. +food_box/food_box_4,A box of Oreo cookies. +food_box/food_box_4,This is a box of snack food. Humans eat snack foods as part of their diet. +food_box/food_box_4,This is a yellow box of golden Oreo Funstix. +food_box/food_box_4,It's a box of Golden Oreo Funstix. The box is yellow. +food_box/food_box_4,This is a box of Golden Oreo Funstix. +food_box/food_box_3,This is a box of Fiber One. +food_box/food_box_3,This is a small sized box of Fiber One products. +food_box/food_box_3,A box of Fiber One pastries. +food_box/food_box_3,A box of fiber pop tarts +food_box/food_box_3,This is a box of Fiber One snack bars. +food_box/food_box_12,This is a box of crackers. +food_box/food_box_12,This is a box of crackers. +food_box/food_box_12,This is a box of pasta. It looks tasty. +food_box/food_box_12,A package of crackers. +food_box/food_box_12,It's a box of crackers. The box is green and blue with a photo of crackers on it. +stapler/stapler_1,It's a black and grey stapler. +stapler/stapler_1,This is a stapler. +stapler/stapler_1,A black colored stapler +stapler/stapler_1,This is a stapler. +bell_pepper/bell_pepper_2,This is an orange pepper. +bell_pepper/bell_pepper_2,This is a yellow pepper. +bell_pepper/bell_pepper_2,An orange pepper. +bell_pepper/bell_pepper_2,It's a yellow bell pepper with a sticker on it. +bell_pepper/bell_pepper_2,This is a yellow bell pepper. +tomato/tomato_1,The object is soft, red and oval shaped. +tomato/tomato_1,This is a red fruit or vegetable of some sort, it's blurry but it is probably a tomato. +tomato/tomato_1,This is a grape tomato. +tomato/tomato_1,A ripe plum tomato +cap/cap_4,This is a red baseball cap. +cap/cap_4,It is the top view of a red baseball cap. It has a black button on the top. +cap/cap_4,A red baseball cap. +cap/cap_4,This is a red ball cap. +rubber_eraser/rubber_eraser_2,This is an eraser. It is partially used. +food_box/food_box_2,This is Zatarain's rice. It is a dinner in a box. +food_box/food_box_2,This is a box of Zatarrain's rice. +food_box/food_box_2,A box of yellow rice. +food_box/food_box_2,This is a box of Zatarains yellow rice mix. +food_box/food_box_2,This is a box of yellow rice. +food_box/food_box_9,A box of crackers. +food_box/food_box_9,There is a box of bleaching tablets for toilets to clean with. +food_box/food_box_9,This is a box of food. +food_box/food_box_9,This is a box of bagel chips. +glue_stick/glue_stick_5,A tube of glue. +glue_stick/glue_stick_5,This container of toothpaste holds cleaning material. Humans use that cleaning material to clean their teeth. +glue_stick/glue_stick_5,This is a glue stick. +tomato/tomato_5,This is a small red ball that is used in billards. +tomato/tomato_5,This is a tomato. +tomato/tomato_5,This is a red tomato. +tomato/tomato_5,A ripened tomato +tomato/tomato_5,A red tomato. +kleenex/kleenex_2,This is a box of tissues. +kleenex/kleenex_2,This is a box of facial tissues. +kleenex/kleenex_2,This is a box of tissues. +kleenex/kleenex_2,A box of kleenex. +kleenex/kleenex_2,tissue paper is commonly used for facial tissue. +coffee_mug/coffee_mug_3,This is a ceramic mug. +coffee_mug/coffee_mug_3,This is either a vase or a cup. +coffee_mug/coffee_mug_3,This is a coffee mug. +coffee_mug/coffee_mug_3,It's a brown mug with a white inside. +coffee_mug/coffee_mug_3,A coffee mug. +pitcher/pitcher_1,This is a cream floral pitcher. +pitcher/pitcher_1,A tea serving pitcher +pitcher/pitcher_1,This is a pitcher. +pitcher/pitcher_1,This is a ceramic pitcher. +pitcher/pitcher_1,A gravy boat. +stapler/stapler_4,This is a stapler. +stapler/stapler_4,I think we're looking at the top of a black stapler. +stapler/stapler_4,This is a stapler. +stapler/stapler_4,A black stapler. +stapler/stapler_4,This is a stapler. +notebook/notebook_2,A writing notebook. +notebook/notebook_2,This is a yellow-spiraled notebook. +notebook/notebook_2,This is a spiral bound notebook. This pad of paper is held together by the wire spiral at one side. +notebook/notebook_2,This is a yellow notebook. +notebook/notebook_2,This is a yellow spiral bound notebook. +marker/marker_8,A magic marker. +marker/marker_8,This is a marker. +food_bag/food_bag_3,This is a bag of Snyder's pretzles. +food_bag/food_bag_3,A bag of pretzels. +food_bag/food_bag_3,This is a bag of pretzels or chips. The bag is mainly brown with a predominant red label. +food_bag/food_bag_3,This is a bag of Snyder's pretzel snaps. +food_bag/food_bag_3,These are little square pretzels. They have a salty taste to them. +pitcher/pitcher_1,A small ceramic pitcher with a yellow and green leaf design. +pitcher/pitcher_1,This is a ceramic pitcher. +pitcher/pitcher_1,This is a ceramic pitcher. +pitcher/pitcher_1,This is a ceramic teapot. +pitcher/pitcher_1,A gravy boat. +glue_stick/glue_stick_6,This is a glue stick. +glue_stick/glue_stick_6,A glue stick with an orange cap. +glue_stick/glue_stick_6,This is a stick of Elmers glue. +glue_stick/glue_stick_6,This is a glue stick. +glue_stick/glue_stick_6,This is a can of spray. +tomato/tomato_8,This is a tomato. +tomato/tomato_8,This is a tomato. +tomato/tomato_8,This is a tomato. +tomato/tomato_8,A red tomato. +tomato/tomato_8,This is a red tomoato. +food_cup/food_cup_3,Food Cup is used to store food items. +food_cup/food_cup_3,This is a container of yogurt. +food_cup/food_cup_3,This is a container of yogurt. +food_cup/food_cup_3,This is a white container of yogurt. +food_cup/food_cup_3,A container of yogurt. +kleenex/kleenex_2,It is a box of tissues. The box is pink and white. +kleenex/kleenex_2,This is a box of facial tissues. +kleenex/kleenex_2,A box of soft tissues used to blow your nose. +kleenex/kleenex_2,A box of kleenex. +kleenex/kleenex_2,This is a smal pink box of tissues. +peach/peach_2,It's a white peach. It is cream and pink colored. +peach/peach_2,This is a yellow and red apple. +peach/peach_2,This is a fruit, possibly an apple. +peach/peach_2,An apple. +peach/peach_2,This is a ripe apple. +pliers/pliers_6,It's a pair of pliers with black grips. +pliers/pliers_6,This is a pair of pliers. +pliers/pliers_6,A pair of pliers. +pliers/pliers_6,Multi functional Handled Pliers With A Small Tip. +pliers/pliers_6,This is a set of pliers. They are a grabber tool. +dry_battery/dry_battery_2,A battery. +dry_battery/dry_battery_2,A battery, black on the bottom and colored yellow on the top. +dry_battery/dry_battery_2,This is a battery. +dry_battery/dry_battery_2,This is a battery. +marker/marker_3,A marker pen +marker/marker_3,This is a black marker. +marker/marker_3,This is a black expo marker. +marker/marker_3,This is a black dry erase marker. +marker/marker_3,A sharpie magic marker. +shampoo/shampoo_5,This is a bottle of soap. +shampoo/shampoo_5,Shampoo is a hair care product. +shampoo/shampoo_5,A bottle of shampoo. +shampoo/shampoo_5,This is a bottle of shampoo. +greens/greens_1,This is head of green leaf lettuce. +greens/greens_1,Green leaf lettuce on a plate. +greens/greens_1,This is a bundle of lettuce. +greens/greens_1,A leafy salad vegetable. It could be lettuce +greens/greens_1,This is a bunch of loose leaf lettuces +food_bag/food_bag_2,This is a bag of chips. +food_bag/food_bag_2,Chips are a delicious after dinner treat. +food_bag/food_bag_2,This is a bag of chips. +food_bag/food_bag_2,A bag of chips. +food_bag/food_bag_2,This is a bag of chips. +sponge/sponge_4,This is a purple sponge. +sponge/sponge_4,This is a sponge. +sponge/sponge_4,A kitchen sponge. +sponge/sponge_4,This is a purple sponge. +sponge/sponge_4,It's a light purple sponge. +coffee_mug/coffee_mug_7,The coffee mug is blue. +coffee_mug/coffee_mug_7,This is a coffee cup. +coffee_mug/coffee_mug_7,This is a mug. +coffee_mug/coffee_mug_7,A coffee mug. +coffee_mug/coffee_mug_7,This is a blue coffee mug. +marker/marker_5,This is a marker. +marker/marker_5,Blue pen with black comfort grip +marker/marker_5,A magic marker. +marker/marker_5,The marker is blue. +lemon/lemon_3,This is a yellow lemon. +lemon/lemon_3,A yellow lemon. +lemon/lemon_3,This is a lemon. +lemon/lemon_3,This is a lemon. +lemon/lemon_3,The lemon is a species of small evergreen tree in the flowering plant. +sponge/sponge_4,This is a sponge. +sponge/sponge_4,This is a purple sponge. +sponge/sponge_4,There looks to abe a dish sponge that has critters on it. +sponge/sponge_4,A kitchen sponge. +sponge/sponge_4,This is a purple sponge. +apple/apple_5,A green apple. +apple/apple_5,This is a green apple. This sweet fruit can be eaten raw or cooked. Best food is called apple pie. +apple/apple_5,This is an apple. There's many types of these. +apple/apple_5,This is a green apple. +apple/apple_5,This is a green apple. +pear/pear_1,This is a pear, most people eat alone or mix with smoothies, a sweet fruit. +pear/pear_1,This is a pear. +pear/pear_1,This is a green pear. +pear/pear_1,A pear. +pear/pear_1,This is a pear. +cap/cap_4,This is a red baseball cap. +cap/cap_4,This is a red baseball cap with no identifying graphics. +cap/cap_4,This is an all-red ballcap +cap/cap_4,This is a red baseball cap. +cap/cap_4,A red cap. +onion/onion_6,A purple onion. +onion/onion_6,This is a red potato. +cap/cap_4,It's a brand new red baseball cap. +cap/cap_4,This is a ball cap. +cap/cap_4,A red baseball cap. +cap/cap_4,It is a red baseball cap. The button on the top is black. +cap/cap_4,The object is a red baseball cap, with black lace. +coffee_mug/coffee_mug_7,This is a mug. +coffee_mug/coffee_mug_7,This is a coffee cup. +coffee_mug/coffee_mug_7,A coffee mug. +coffee_mug/coffee_mug_7,It is a blue mug with a white interior. +coffee_mug/coffee_mug_7,This is a cup, and it is blue. +lightbulb/lightbulb_4,A light bulb. +lightbulb/lightbulb_4,a light bulb. It looks like soft white +lightbulb/lightbulb_4,This is a light bulb. +lightbulb/lightbulb_4,This is a lightbulb. You have to replace them every so often. +lightbulb/lightbulb_4,This is a light bulb. +stapler/stapler_2,A black desk stapler. +stapler/stapler_2,This is a black stapler. +stapler/stapler_2,A black colored stapler +stapler/stapler_2,A black stapler. +stapler/stapler_2,This is a stapler. +glue_stick/glue_stick_1,This is a glue stick. +glue_stick/glue_stick_1,A tube of glue. +glue_stick/glue_stick_1,Some type of plastic tube. +glue_stick/glue_stick_1,A tube of super glue. +glue_stick/glue_stick_1,This is a glue stick. +lime/lime_2,This is a lime. +lime/lime_2,A green lime. +lime/lime_2,This is a lime. +lime/lime_2,It's a lime with a sticker on it. It's mostly green and slightly yellow. +dry_battery/dry_battery_4,A Duracell battery. +dry_battery/dry_battery_4,This is a battery. +dry_battery/dry_battery_4,This is a Duracell battery. +dry_battery/dry_battery_4,small duracell battery +dry_battery/dry_battery_4,A round object shaped like a Dura Cell battery. +dry_battery/dry_battery_3,This is a single battery. +dry_battery/dry_battery_3,This is a battery. +dry_battery/dry_battery_3,A battery. +food_can/food_can_7,This is a can of soup. +food_can/food_can_7,This is a red and white can of soup. +food_can/food_can_7,A can of soup. +food_can/food_can_7,This is an unopened canned good with a flip top. +food_can/food_can_7,This is a can of soup. +glue_stick/glue_stick_5,A tube of glue. +cell_phone/cell_phone_4,This is a cell phone. +cell_phone/cell_phone_4,It's a white flip phone with a black top. +cell_phone/cell_phone_4,Looks like a small flip phone, based is white and the top is black +cell_phone/cell_phone_4,This is a mobile phone. +orange/orange_3,An orange. +orange/orange_3,There is a round fruit object called an orange. +orange/orange_3,This is an orange. +orange/orange_3,This is an orange. +orange/orange_3,This is an orange. +toothbrush/toothbrush_4,a toothbrush which was purple in color +toothbrush/toothbrush_4,This is a purple toothbrush. +toothbrush/toothbrush_4,This is a toothbrush. +toothbrush/toothbrush_4,A toothbrush. +toothbrush/toothbrush_4,It's a white and purple toothbrush. +soda_can/soda_can_1,A can of Pepsi. +soda_can/soda_can_1,This is a can of Pepsi. +soda_can/soda_can_1,This is a can of soda. +soda_can/soda_can_1,This is a can of pepsi soda. +soda_can/soda_can_1,a blue can of carbonated drink. +cell_phone/cell_phone_5,This is a smart phone. +cell_phone/cell_phone_5,This is a smartphone. +cell_phone/cell_phone_5,A smartphone. +cell_phone/cell_phone_5,This is a cell phone. +cell_phone/cell_phone_5,A silver colored smartphone. +rubber_eraser/rubber_eraser_1,This looks like a battery charger. Used to recharge rechargeable batteries, this device is electrical in nature. +food_cup/food_cup_1,This is a container of yogurt. +food_cup/food_cup_1,This is a white container of yogurt. +food_cup/food_cup_1,This object is a thing of yogurt. +food_cup/food_cup_1,Yogurt is a delicious breakfast treat. +food_cup/food_cup_1,This is a small plastic container holding a food called yogurt. Yogurt is a dairy product made using active bacteria. +plate/plate_4,This is a plate. +plate/plate_4,A disposable paper plate +plate/plate_4,It's a white paper plate with brown designs around the edge. +plate/plate_4,An empty dinner plate. +plate/plate_4,This is a plate. +marker/marker_5,This is a pen. +sponge/sponge_7,A kitchen sponge. +sponge/sponge_7,This is a squeegee. +sponge/sponge_7,This is a sponge. It is usually used to clean, and has one rough side to scrub items clean. +sponge/sponge_7,This is a sponge. +sponge/sponge_7,This is a green and white sponge. +apple/apple_1,This is a red apple. +apple/apple_1,This red apple is food for humans and others. It is a sweet fruit that can be eaten raw or cooked. +apple/apple_1,This is an apple. +apple/apple_1,A red apple. +apple/apple_1,This looks like an apple but it is very dark, purple or black. It might be an apple-shaped plum or one of those new hybrid fruits. +coffee_mug/coffee_mug_5,A white ceramic cup, perhaps a coffee cup. +coffee_mug/coffee_mug_5,It's an empty white mug. +coffee_mug/coffee_mug_5,This is a coffee cup. +coffee_mug/coffee_mug_5,A coffee mug. +coffee_mug/coffee_mug_5,This is a mug. +food_jar/food_jar_3,It's a jar of gravy with a red cap and a red label. +food_jar/food_jar_3,This is a jar of food. +food_jar/food_jar_3,This is a jar of gravy. +food_jar/food_jar_3,This is a jar of gravy. +apple/apple_3,A yellow apple. +apple/apple_3,a golden delicious apple +apple/apple_3,This is a golden apple. +apple/apple_3,This is an apple. +apple/apple_3,This is a golden delicious apple. +bell_pepper/bell_pepper_2,This is a yellow pepper. +bell_pepper/bell_pepper_2,It is an orange vegetable that can also come in red or green and gives flavor to your meals. +bell_pepper/bell_pepper_2,A fresh orange bell pepper. +bell_pepper/bell_pepper_2,This is a yellow bell pepper. +bell_pepper/bell_pepper_2,A yellow pepper. +soda_can/soda_can_2,This is a can of 7 Up. +soda_can/soda_can_2,A can of 7up soda. +soda_can/soda_can_2,It's a can of 7 UP. The can is green with white and yellow text. +soda_can/soda_can_2,This is a can of 7up. +soda_can/soda_can_2,A can of 7-Up. +calculator/calculator_5,SQUARE SHAPE WITH WHITE KEYPAD GREY IN COLOR WITH BLACK SCREEN DISPLAY +calculator/calculator_5,A calculator. +calculator/calculator_5,This is a silver calculator. +calculator/calculator_5,This is a calculator. +calculator/calculator_5,This is a calculator. +scissors/scissors_2,This is an orange scissors. +scissors/scissors_2,This is a pair of scissors. +scissors/scissors_2,Scissors with an orange handle. +scissors/scissors_2,This is a pair of scissors. +scissors/scissors_2,Scissors are used for cutting paper. +shampoo/shampoo_1,A bottle of shampoo. +shampoo/shampoo_1,This is a bottle of lotion. +shampoo/shampoo_1,The object is a bottle of soup or liquid that can be squirted out. The bottle is white and blue. +shampoo/shampoo_1,A white shampoo bottle with a blue cap standing up right. +shampoo/shampoo_1,This is a bottle of shampoo or conditioner. +lime/lime_1,A green lime. +lime/lime_1,this is a green lime. this lime has a code sticker on it. +lime/lime_1,This is a piece of fruit, probably a lime. +lime/lime_1,It's a green lime with a sticker on it. +camera/camera_1,A disposable camera. +camera/camera_1,This is a disposable camera. +camera/camera_1,It's a disposable film camera. +camera/camera_1,A black disposable camera. +camera/camera_1,This is a camera. +cap/cap_4,This is a red baseball cap. +cap/cap_4,This is a red baseball cap. +cap/cap_4,It's a red baseball hat. +cap/cap_4,A red baseball cap. +cap/cap_4,This is a picture of a hat. +lightbulb/lightbulb_2,This is a lightbulb. +lightbulb/lightbulb_2,A light bulb. +lightbulb/lightbulb_2,This is a lightbulb. +lightbulb/lightbulb_2,This is a light bulb. +lightbulb/lightbulb_2,This is a light bulb. +food_can/food_can_11,This is a can. +food_can/food_can_11,A can of soup. +food_can/food_can_11,This is a can of soup. +food_can/food_can_11,The object is a tin can of soup. The label is white and red. +food_can/food_can_11,This is a can of soup. +flashlight/flashlight_1,This is a black flashlight. +flashlight/flashlight_1,This is a flashlight. +flashlight/flashlight_1,This is a black flashlight. +flashlight/flashlight_1,This is a black flashlight with a black cord attached to the bottom. +flashlight/flashlight_1,A black flashlight. +food_cup/food_cup_1,This is a container of yogurt. +food_cup/food_cup_1,This is a container of yogurt. +food_cup/food_cup_1,This is a small plastic container holding a food called yogurt. Yogurt is a dairy product made using active bacteria. +food_cup/food_cup_1,A container of yogurt. +food_cup/food_cup_1,This is a container of Yoplait yogurt. +bell_pepper/bell_pepper_5,It's a green bell pepper. +bell_pepper/bell_pepper_5,A green pepper. +bell_pepper/bell_pepper_5,This is a green pepper. +bell_pepper/bell_pepper_5,A fresh green bell pepper. +bell_pepper/bell_pepper_5,This is a green bell pepper. +plate/plate_3,An empty dinner plate. +plate/plate_3,A plate with nothing on it +plate/plate_3,This is a plate. +plate/plate_3,This is a single dinner plate. The plate is white with a blue rim. +plate/plate_3,This is a plate with blue stripes. +pear/pear_3,This is a pear. +pear/pear_3,Brown, red, orange, black pear shaped object with a white label or sticker on it. +pear/pear_3,It's a red pear with a sticker on it. +pear/pear_3,This is a red pear. +stapler/stapler_1,This is a small black and gray stapler +stapler/stapler_1,This is a stapler. +stapler/stapler_1,This is a stapler. +stapler/stapler_1,This is a stapler. It is used to stick papers together. +stapler/stapler_1,A black stapler. +lightbulb/lightbulb_4,It's a light bulb. +lightbulb/lightbulb_4,This is a light bulb. +lightbulb/lightbulb_4,This is an LED bulb. They're good for your home. +lightbulb/lightbulb_4,A light bulb. +lightbulb/lightbulb_4,A white light bulb +food_can/food_can_6,This is a can of food. It looks like it might be Campbell's soup. +food_can/food_can_6,a can of some food +food_can/food_can_6,This is a can of soup. +food_can/food_can_6,A can of soup. +food_can/food_can_6,It's a red and white can of food. +lemon/lemon_4,It's a yellow lemon. +lemon/lemon_4,A fresh lemon. +lemon/lemon_4,This is a lemon. +lemon/lemon_4,A yellow lemon. +lemon/lemon_4,This looks like a yellow lemon. +onion/onion_6,This is a red onion. +onion/onion_6,a rotten onoin peeling off by itself +onion/onion_6,A purple onion. +onion/onion_6,This is an onion. +onion/onion_6,A purple onion. +onion/onion_1,A white, round onion +onion/onion_1,This is a white onion. +onion/onion_1,On clove or garlic. +onion/onion_1,This is a white onion. +onion/onion_1,A clove of garlic. +dry_battery/dry_battery_4,It's a large alkaline battery. It is black and copper colored. +dry_battery/dry_battery_4,A Duracell battery. +dry_battery/dry_battery_4,a battery +dry_battery/dry_battery_4,This is a battery. I would guess either AA or AAA in size. +dry_battery/dry_battery_4,This is a battery. +marker/marker_1,This is a red marker. +marker/marker_1,This is a red marker. +marker/marker_1,A magic marker. +marker/marker_1,Markers are used to wrighting on the board. +marker/marker_1,This is a red dry erase marker. +food_bag/food_bag_6,A bag of chips. +food_bag/food_bag_6,This is a bag of pop chips. The chips are barbecue flavored. +food_bag/food_bag_6,This is a bag of chips. +food_bag/food_bag_6,This is a bag of potato chips. +food_bag/food_bag_6,This is a bag of snack food. Humans eat snack foods as part of their diet. +lightbulb/lightbulb_4,This is a light bulb. +lightbulb/lightbulb_4,This is a light bulb. +lightbulb/lightbulb_4,This is a light bulb. +lightbulb/lightbulb_4,Light bulbs are used in residential fixtures. +lightbulb/lightbulb_4,A light bulb. +orange/orange_4,A yellow lemon. +orange/orange_4,This is an orange. +orange/orange_4,This is an orange. +orange/orange_4,This is a round fruit that is orange and citrusy. +sponge/sponge_3,This is a blue sponge. +sponge/sponge_3,A kitchen sponge. +sponge/sponge_3,This is a sponge. +sponge/sponge_3,This is a sponge. +sponge/sponge_3,This is a sponge. It is usually used to clean as it holds water in its little holes. +toothbrush/toothbrush_5,A red and white toothbrush. +toothbrush/toothbrush_5,This is a red toothbrush. +toothbrush/toothbrush_5,This is a red and white toothbrush. +toothbrush/toothbrush_5,This is a toothbrush. +toothbrush/toothbrush_5,This is a toothbrush. +instant_noodles/instant_noodles_8,This is a pack of instant noodles +instant_noodles/instant_noodles_8,It's a bag of ICHIBAN. +instant_noodles/instant_noodles_8,It's a package of ramen noodles. It's Ichiban brand and the package is brown and white. +instant_noodles/instant_noodles_8,This is a package of food. +instant_noodles/instant_noodles_8,A package of ramen noodles. +notebook/notebook_3,A writing notebook. +notebook/notebook_3,This is a green and white spiraled notebook. +notebook/notebook_3,This is a white and green spiral bound notebook. +notebook/notebook_3,It's a spiral bound notebook with a green and white design on it. +notebook/notebook_3,This is a spiral bound notebook. This pad of paper is held together by the wire spiral at one side. +water_bottle/water_bottle_3,One bottle of water. Brands looks to be, Aquafina. +water_bottle/water_bottle_3,This is a water bottle. +water_bottle/water_bottle_3,A plastic water bottle. +water_bottle/water_bottle_3,This is a bottle of water. +water_bottle/water_bottle_3,This is a bottle of filtered water. +peach/peach_3,This looks like a peach or a nectarine. +peach/peach_3,One ripe peach. +peach/peach_3,This is a juicy fruit called a peach. It is grown from a deciduous tree. +peach/peach_3,This is a peach. +peach/peach_3,A peach. +food_box/food_box_6,These are Pretzel Thins snack pretzels made by Pepperedige Farms. +food_box/food_box_6,This is a box of pretzels. They are classic 'knot' shaped, but thin. A good snack. +food_box/food_box_6,It's a box of Pretzel Thins. The box is white with a picture of pretzel thins on it. +food_box/food_box_6,This is a box of Pretzel Thins. +food_box/food_box_6,This is a box of pretzel thins. I can't read the label but by the shape and color I think it's Pepperidge Farms. +notebook/notebook_5,The object is used for writing in. It is black with a cover and filled with lined paper. +notebook/notebook_5,This is a notebook. +notebook/notebook_5,A writing notebook. +notebook/notebook_5,This is a black spiral bound notebook. +bell_pepper/bell_pepper_1,This is a red pepper. This vegetable has a sharp flavor, and is usually cooked. +bell_pepper/bell_pepper_1,This is an orange pepper. +bell_pepper/bell_pepper_1,This is a red pepper. +bell_pepper/bell_pepper_1,This is a red bell pepper. +bell_pepper/bell_pepper_1,An orange pepper. +sponge/sponge_12,This is a blue scrubber. +sponge/sponge_12,It's a blue dish scrubber. +pear/pear_1,A pear. +pear/pear_1,This is a pear. +pear/pear_1,This is a green pear. +pear/pear_1,This is a pear. +pear/pear_1,A green pear +dry_battery/dry_battery_2,An electric battery provided to power electrical devices. +dry_battery/dry_battery_2,This is a battery. +soda_can/soda_can_6,This is a yellow can of Welch's. +soda_can/soda_can_6,This is a canned beverage. +soda_can/soda_can_6,This is a can of soda. +soda_can/soda_can_6,This is a can of Welch's juice. +soda_can/soda_can_6,A can of Welch's soda. +food_can/food_can_12,This is a can with chicken broth in it. +food_can/food_can_12,A can of soup. +food_can/food_can_12,can good that could be used to cook and eat alone or make with something else. +food_can/food_can_12,This is a can. +bell_pepper/bell_pepper_5,This is a green bell pepper. It is wider on top than at the bottom, and it is indented near the top surrounding its stem. +bell_pepper/bell_pepper_5,This is a green pepper. +bell_pepper/bell_pepper_5,This is a green bell pepper. +bell_pepper/bell_pepper_5,This looks like a green bell pepper. +bell_pepper/bell_pepper_5,A green pepper. +onion/onion_6,This is a purple onion that has not been peeled yet. +onion/onion_6,A purple onion. +onion/onion_6,This is an onion. +onion/onion_6,It's a red onion. +onion/onion_6,This is a red potato. +banana/banana_3,This is one banana +banana/banana_3,The yellow banana is ripe. +banana/banana_3,This is a banana. +banana/banana_3,A banana on a plate. +banana/banana_3,This is a banana. +pear/pear_4,This a pear. +pear/pear_4,It's a pear with a sticker on it. +pear/pear_4,This is a pear. +pear/pear_4,This is a pear. +pear/pear_4,A yellow and red pear with sticker on it +coffee_mug/coffee_mug_2,A coffee mug. +coffee_mug/coffee_mug_2,This is a brown mug. +coffee_mug/coffee_mug_2,This is a mug. +coffee_mug/coffee_mug_2,This is a mug, or a cup. You can hold coffee in it. +coffee_mug/coffee_mug_2,A brown coffee mug +water_bottle/water_bottle_1,This is a bottle of vinegar. +water_bottle/water_bottle_1,a bottle of water. +water_bottle/water_bottle_1,This is a bottle of water. +water_bottle/water_bottle_1,This is a clear bottle of fluid with a green & blue label across the middle & lower part of the bottle. +ball/ball_4,This is a toy basketball. +instant_noodles/instant_noodles_8,This is a package of soup. +instant_noodles/instant_noodles_8,This is a pack of Ichiban Ramen imported from Japan. +instant_noodles/instant_noodles_8,This is a package of food. +instant_noodles/instant_noodles_8,A package of Ramen noodles. +cereal_box/cereal_box_5,This is a box of cereal. +cereal_box/cereal_box_5,This is a box of a product. +cereal_box/cereal_box_5,This is a box. +cereal_box/cereal_box_5,A box of crackers. +lemon/lemon_2,This is a yellow lemon. +lemon/lemon_2,A yellow whole lemon. +lemon/lemon_2,This is a lemon. +lemon/lemon_2,It's a bright yellow lemon. +lemon/lemon_2,A yellow lemon. +soda_can/soda_can_1,a can of pepsi soda. +soda_can/soda_can_1,This is a can of Pepsi. +soda_can/soda_can_1,This is a can of soda. +soda_can/soda_can_1,It's a can of Pepsi. The can is blue with a Pepsi logo on it. +soda_can/soda_can_1,This is a pepsi can. +cell_phone/cell_phone_5,This is a smart phone. Communication with other phones is its primary function. +cell_phone/cell_phone_5,This is a cellphone. +cell_phone/cell_phone_5,A smartphone. +cell_phone/cell_phone_5,This is a smart phone case. +cell_phone/cell_phone_5,This is a smartphone. +cell_phone/cell_phone_1,A cell phone. +cell_phone/cell_phone_1,CELLULAR PHONE DEVICE LOOKS LIKE THOSE ANCIENT ONES +cell_phone/cell_phone_1,This is an older cellphone. +cell_phone/cell_phone_1,This is a silver flashlight. +cell_phone/cell_phone_1,This is a mobile phone. +dry_battery/dry_battery_5,A battery +dry_battery/dry_battery_5,It's a battery. +dry_battery/dry_battery_5,This is a battery. +dry_battery/dry_battery_5,An Energizer battery. +dry_battery/dry_battery_5,This is an Energizer battery. +onion/onion_5,This is a red onion. +onion/onion_5,This is a pomegranate. It is a messy fruit. +onion/onion_5,A purple onion. +onion/onion_5,This is a red onion. +onion/onion_5,This is an onion. +food_cup/food_cup_5,A container of yogurt. +food_cup/food_cup_5,This is a container of yogurt. +food_cup/food_cup_5,This is a container of yogurt. +food_cup/food_cup_5,This is a cup of yogurt. Yogurt has probiotics and makes a quick and delivious snack. +food_cup/food_cup_5,This is a container of yogurt. +marker/marker_8,This is a marker. +marker/marker_8,A magic marker. +marker/marker_8,A dry erase marker with a red body and a black cap. +marker/marker_8,This is a red permanent marker. +water_bottle/water_bottle_4,This is a plastic bottle. It looks to be holding water, but can be re-purposed many times. +water_bottle/water_bottle_4,This is a bottle of drinking water. +water_bottle/water_bottle_4,This is a bottle of water. +water_bottle/water_bottle_4,A plastic water bottle. +water_bottle/water_bottle_4,This is a water bottle. +coffee_mug/coffee_mug_7,This is a blue coffee mug. +coffee_mug/coffee_mug_7,This is a blue mug. +coffee_mug/coffee_mug_7,Shown is a blue coffee mug with white interior. +coffee_mug/coffee_mug_7,It's a cup. +coffee_mug/coffee_mug_7,A coffee mug. +food_can/food_can_13,A can of soup. +food_can/food_can_13,A can of progresso light soup. +food_can/food_can_13,This is a can of soup. +food_can/food_can_13,A can of some food +food_can/food_can_13,This is a can of soup. +calculator/calculator_1,A basic calculator +calculator/calculator_1,This is a calculator. +calculator/calculator_1,It's a calculator. +calculator/calculator_1,This is a calculator used for math problems. +calculator/calculator_1,This is a calculator. +food_can/food_can_8,this is a can of diced tomatoes. +food_can/food_can_8,This is a can of diced tomatoes. +food_can/food_can_8,A can with a label with bowl of diced tomatoes pictured on it named Ro tel. +food_can/food_can_8,A can of something. It could be tomato sauce or beans +food_can/food_can_8,This is a can which possibly contains soup. +cereal_box/cereal_box_5,This is a box of Honey Graham Crunch cereal. +cereal_box/cereal_box_5,A box of crackers. +cereal_box/cereal_box_5,This is a box of food. Some preparation may be required before this food can be eaten. +cereal_box/cereal_box_5,This is a box of cereal. +cereal_box/cereal_box_5,This is a box of cereal. +comb/comb_3,This is a hair brush. +comb/comb_3,The hair brush is black. +comb/comb_3,A black hair brush. +comb/comb_3,This is a hairbrush. +comb/comb_3,a hair comb with oval head and soft bristles +water_bottle/water_bottle_5,This is a bottle of water. +water_bottle/water_bottle_5,A plastic water bottle. +water_bottle/water_bottle_5,This is a plastic bottle. It looks to be holding water, but can be re-purposed. +water_bottle/water_bottle_5,It's a bottle of water with a blue label. +water_bottle/water_bottle_5,This is a bottle of water. +food_can/food_can_6,This is a can. The can's label is mainly white on the bottom and red on the top. +food_can/food_can_6,A can of soup. +food_can/food_can_6,This is a can of soup. +food_can/food_can_6,It's a can of food. The label is red and white. +food_can/food_can_6,This is a can of soup. +food_bag/food_bag_3,This is a bag of Snyder's Pretzels. They are a salty snack. +food_bag/food_bag_3,This is a bag of pretzels. +food_bag/food_bag_3,This is a bag of Snyder's pretzel snaps. +food_bag/food_bag_3,A package of Snyder's pretzels. +food_bag/food_bag_3,This is a bag of Snyder's Pretzels. The bag is red, gold and black. +comb/comb_2,An oval head hair comb +comb/comb_2,A black hair brush. +comb/comb_2,This is a brush. +comb/comb_2,This is a hair brush. +comb/comb_2,It's a hair brush with stiff bristles. It's black and green. +dry_battery/dry_battery_4,This is a C battery. It is Duracell brand. +glue_stick/glue_stick_3,That is a glue stick. +glue_stick/glue_stick_3,It is symmetry shaped object refers to a sense of harmonious and beautiful proportion and balance. +glue_stick/glue_stick_3,This is a gluestick, used to glue to things together +stapler/stapler_7,The object is a blue stapler. It is used to group paper together with a small piece of metal. +stapler/stapler_7,A blue mini stapler +stapler/stapler_7,This is a blue stapler. +food_jar/food_jar_3,That is a jar of food. +food_jar/food_jar_3,The above is a jar of brown gravy used for cooking. +food_jar/food_jar_3,This is an opened jar. +pitcher/pitcher_3,This is a tall green ceramic pitcher. +pitcher/pitcher_3,This ceramic pitcher is green, with an elongated oval handle. +pitcher/pitcher_3,This is a pitcher for holding liquid. It is brown. +tomato/tomato_1,This is red tomato. +tomato/tomato_1,This is a red tomato. +instant_noodles/instant_noodles_4,A bag of instant ramen +instant_noodles/instant_noodles_4,This a package of dried noodles that you cook in water. It is a small rectangular package. +instant_noodles/instant_noodles_4,this is a bag of ramen. +food_can/food_can_4,This is a metal can of food. It has a label to describe ingredients and possibly directions to use the product. It appears to be either a can of soup or milk. +calculator/calculator_1,This is a calculator +calculator/calculator_1,This is a calculator used for maths +calculator/calculator_1,This is a calculator. +food_box/food_box_12,This is a box of round crackers. The box is a long rectangle. +food_box/food_box_12,This is a box of salted crackers +food_box/food_box_12,This is a box of crackers. +flashlight/flashlight_5,It is a large yellow flashlight. +flashlight/flashlight_5,This is a yellow Duracell flashlight on a table. +banana/banana_3,This here is a banana. +banana/banana_3,That is a banana. +lemon/lemon_4,It is a lemon! +lemon/lemon_4,This is a yellow lemon. +bell_pepper/bell_pepper_6,This green bellpepper is upright +bell_pepper/bell_pepper_6,This is a green pepper. +glue_stick/glue_stick_1,This is a glue stick with the lid off. +glue_stick/glue_stick_6,This is a glue stick. +greens/greens_1,This is leaf lettuce. +greens/greens_1,It is lettuce ,and it is a variety of lettuce that grows in a tall head of sturdy dark green leaves .It usually used to make dish or it used for garnish any dish that we prepared. +greens/greens_1,This is a bundle of greens used for cooking +potato/potato_5,That is a potato. +potato/potato_5,This is a russet potato used for cooking +potato/potato_5,This is a potato. +lightbulb/lightbulb_4,This is a LED lighbulb +lightbulb/lightbulb_4,This is a light bulb. +lightbulb/lightbulb_4,This is a bulb, flat on top, with a brass bottom. +banana/banana_3,This is a fruit called Banana +banana/banana_3,This is a banana. +banana/banana_3,This banana is yellow. It seems to be ripe. +kleenex/kleenex_5,This is paper tissues. +kleenex/kleenex_5,This is a box of tissues. +kleenex/kleenex_5,This is a box of tissues. +food_jar/food_jar_3,This is a jar +food_jar/food_jar_3,That is a jar of food. +apple/apple_5,This green apple is upright +apple/apple_5,An apple is a sweet, edible fruit produced by an apple tree. +apple/apple_5,This is an apple green apple with no stem. The apple also has a sticker. +mushroom/mushroom_1,This is a mushroom, used for coooking +food_can/food_can_6,This is a can of tomato sauce. +food_can/food_can_6,That is canned food. +rubber_eraser/rubber_eraser_3,This is a pink eraser, used to remove pencil writing +rubber_eraser/rubber_eraser_3,That is a pink eraser. +food_jar/food_jar_5,That is a jar of yellow ring peppers. +food_jar/food_jar_5,This is a jar of pickled pepper slices +food_jar/food_jar_5,This is a jar. The contents are yellow. +food_box/food_box_1,One small box that will make a nice snack later in the day. +food_box/food_box_1,Here is a box of food. +food_box/food_box_1,The nutrition label on a box of food. +onion/onion_6,This a reddish-purple food item. It is round and has a papery outer layer. +tomato/tomato_5,It is a red tomato. +tomato/tomato_5,It is circular and red. There is a sticker on it. +tomato/tomato_5,The tomato is the edible Vegitable +water_bottle/water_bottle_5,This is a bottle of water with a blue label. +water_bottle/water_bottle_5,This is a water bottle with a blue label. +soda_can/soda_can_2,This is a can of 7up soda. +soda_can/soda_can_2,This is a can of UP soda +soda_can/soda_can_2,It is a green individual unopened soda can. +bell_pepper/bell_pepper_3,That is a red pepper. +bell_pepper/bell_pepper_3,This is a red bell pepper. +keyboard/keyboard_1,This is a computer keyboard. +keyboard/keyboard_1,This is a keyboard, which is used to enter data into a computer. +keyboard/keyboard_1,This is a grey keyboard and color its grey +garlic/garlic_1,This is a bulb of garlic used for cooking +garlic/garlic_1,Garlic is an herb that is grown around the world. It is related to onion, leeks, and chives. +garlic/garlic_1,That is garlic. +plate/plate_4,That is a paper plate. +plate/plate_4,This is a paper bowl with a tan trim. +plate/plate_4,This is a disposable paper bowl +sponge/sponge_7,This is a sponge used to wash dishes +sponge/sponge_7,A sponge is a tool or cleaning aid made of soft, porous material. +sponge/sponge_7,This is a green and yellow sponge. The scrubbing part is green; the soft part is yellow. +water_bottle/water_bottle_7,This is a plastic water bottle. +water_bottle/water_bottle_7,A water bottle is a container that is used to hold water, liquids or other beverages for consumption. +water_bottle/water_bottle_7,This is a bottle of water. +potato/potato_2,This is a red potato used for cooking +potato/potato_2,The potato is a starchy, tuberous crop from the perennial nightshade Solanum tuberosum. +scissors/scissors_2,This is a pair of scissors with orange handles. +scissors/scissors_2,These are scissors with an orange handle. +scissors/scissors_2,This is a pair of orange scissors. +calculator/calculator_4,That is a green and white calculator. +calculator/calculator_4,This is a calculator used for maths +calculator/calculator_4,This is a calculator that people use to do simple math. It has white buttons and it is lime green. +instant_noodles/instant_noodles_6,A small yellow bag of cookies. +cap/cap_1,This is a baseball hat +cap/cap_1,That is a striped baseball cap. +cap/cap_1,This is a pinstriped baseball hat that is mostly white. +apple/apple_1,This red apple is upright +apple/apple_1,This is a dark red apple. +apple/apple_1,That is a red apple. +soda_can/soda_can_6,This is a can of Welch's juice +soda_can/soda_can_6,This is a can of Welch's drink. +soda_can/soda_can_6,It is the glass bottle offers the highest quality glass bottle at the best prices. +marker/marker_8,This is a red marker with a black lid. +pitcher/pitcher_1,This is a ceramic container. +pitcher/pitcher_1,This is a small ceramic pitcher with a leaf drawing on it. +marker/marker_3,That is an expo marker. +marker/marker_3,closed scroll fastened with a removable white band +garlic/garlic_5,This is a red onion. The first layer is peeling off. +garlic/garlic_5,A vegetable that is used in cooking +stapler/stapler_2,It is a black hand stapler. +stapler/stapler_2,This is a stapler. +stapler/stapler_2,A stapler. +stapler/stapler_2,It's a black and grey stapler. +stapler/stapler_2,A black stapler. A desk stapler. +sponge/sponge_9,It's a red dish scrubber. +sponge/sponge_9,A kitchen scrubbing sponge. +greens/greens_2,A dark green piece of lettuce. +greens/greens_2,This is a bunch of lettuce. +greens/greens_2,It's a bunch of lettuce. +greens/greens_2,The lettuce is green. +greens/greens_2,This is a bundle of lettuce. +food_box/food_box_7,This is a box of wheat crackers. +food_box/food_box_7,This is a box of wheat thin crackers. +food_box/food_box_7,This box is yellow. +food_box/food_box_7,It's a box of Wheat Thins. The box is mostly yellow. +food_box/food_box_7,This is a box of Wheat Thins. +greens/greens_3,Bok Choy on a plate. +greens/greens_3,This is a head of bokchoy. +greens/greens_3,It's a green vegetable. +greens/greens_3,This is green lettuce. +greens/greens_3,This is bok choi. +dry_battery/dry_battery_2,A yellow flashlight. +dry_battery/dry_battery_2,This is a battery. +dry_battery/dry_battery_2,This is a AA battery. +dry_battery/dry_battery_2,This is a device called a flashlight. Powered by batteries, it produced visible light. +kleenex/kleenex_5,It's a box of Kleenex with a red pattern on it. +kleenex/kleenex_5,A box of kleenex. +kleenex/kleenex_5,This is a box of tissues. +kleenex/kleenex_5,A pink patterned box of tissue. The box is made of cardboard. +kleenex/kleenex_5,This is a box of facial tissues. +sponge/sponge_5,a red and blue sponge +sponge/sponge_5,This is a sponge. +sponge/sponge_5,This is a blue and red sponge. +glue_stick/glue_stick_2,This is a glue stick. +glue_stick/glue_stick_2,It's a container of lip balm. +glue_stick/glue_stick_2,This is a can of spray. +sponge/sponge_6,This is a sponge. +sponge/sponge_6,A kitchen scrubbing sponge. +sponge/sponge_6,This is a yellow and pink sponge used to clean your house. +sponge/sponge_6,A pink and yellow kitchen sponge. +sponge/sponge_6,This is a pink and yellow sponge. +cap/cap_1,This is a black and white striped ball cap. +cap/cap_1,This is a white baseball cap with black pin stripes and a W logo. +cap/cap_1,This is a white hat. +cap/cap_1,A baseball cap. +cap/cap_1,This is a baseball hat. +cereal_box/cereal_box_4,This is a box of cereal. +cereal_box/cereal_box_4,This is a box containing a food product, most likely cereal. +cereal_box/cereal_box_4,It's a box of cereal. It's mostly blue. +cereal_box/cereal_box_4,This is a box of cereal with the ingredients listed on it. +cereal_box/cereal_box_4,A box of crackers. +rubber_eraser/rubber_eraser_4,This looks like a pink eraser, the rectangular type that's tapered on either end. +rubber_eraser/rubber_eraser_4,A red eraser +rubber_eraser/rubber_eraser_4,A pencil eraser. +rubber_eraser/rubber_eraser_4,This is a pink eraser. +rubber_eraser/rubber_eraser_4,This is an eraser. +garlic/garlic_7,This is a clove of garlic. +garlic/garlic_7,This is a clove of garlic. +garlic/garlic_7,It's a head of garlic. +garlic/garlic_7,A clove of garlic. +onion/onion_5,A purple onion. +onion/onion_5,This is a red onion. +onion/onion_5,This is a red onion. +onion/onion_5,a red onion +bowl/bowl_1,This is red jello. +bowl/bowl_1,This is a green and yellow bowl. +bowl/bowl_1,The object is a brown and red bowl with a lead pattern inside. +bowl/bowl_1,This is a bowl. +bowl/bowl_1,An empty dinner bowl. +tomato/tomato_6,This object is a tomato used to eat. +tomato/tomato_6,This is a small red tomato, with the vine still attached. +tomato/tomato_6,This is a cherry tomato. +tomato/tomato_6,This is a vine ripe tomato. +tomato/tomato_6,A red tomato. +keyboard/keyboard_2,This is a black computer keyboard. +keyboard/keyboard_2,This is a computer keyboard. Used as an input device, it is part of a desktop computer. +keyboard/keyboard_2,A computer keyboard. +keyboard/keyboard_2,This is a computer keyboard. +keyboard/keyboard_2,This is a keyboard. +toothpaste/toothpaste_4,It's a tube of Close up toothpaste. The tube is red, white, and blue. +toothpaste/toothpaste_4,A tube of toothpaste. +toothpaste/toothpaste_4,This is a tube of toothpaste. +toothpaste/toothpaste_4,This is a tube of toothpaste. +toothpaste/toothpaste_4,This is a red tube of toothpaste. +food_can/food_can_9,This is a can of Campbell's Spaghetti-O's, with Disney Princesses on the label. +food_can/food_can_9,It's a can of SpaghettiOs. It has cartoon characters on the label. +food_can/food_can_9,A can of Spaghetti O's. +food_can/food_can_9,This is a can of Spaghetti-O's. +food_can/food_can_9,It is a metal can of spaghettios. The label has 3 Disney princes on it: Cinderella, Ariel, and Bell. +notebook/notebook_1,This is a notebook with paper. +notebook/notebook_1,A writing notebook. +notebook/notebook_1,It's a red spiral bound notebook. +notebook/notebook_1,This is a red notebook of college ruled paper. +notebook/notebook_1,This is a spiral bound notebook. +lightbulb/lightbulb_3,A round soft light white bulb +lightbulb/lightbulb_3,This is a light bulb. +lightbulb/lightbulb_3,This is a lightbulb. +lightbulb/lightbulb_3,This is a lightbulb. +lightbulb/lightbulb_3,This is a light bulb. +food_box/food_box_4,This is a box of Oreo cookie snacks. +food_box/food_box_4,This is a box containing cookies. These cookies are cylindical and are hollow. +food_box/food_box_4,This is a box of Golden Oreo Funstix. +food_box/food_box_4,yellow box golden oreo funstix +food_box/food_box_4,It's a box of Golden Oreo Funstix. The box is yellow with a picture on the front. +glue_stick/glue_stick_1,This is a glue stick. +glue_stick/glue_stick_1,This looks like it is a tube of chapstick or something similar. +glue_stick/glue_stick_1,A tube of glue. +sponge/sponge_2,A sponge which is light green in color +sponge/sponge_2,This is a sponge. +sponge/sponge_2,A kitchen scrubbing sponge. +sponge/sponge_2,It's a lime green sponge. +sponge/sponge_2,This is a lime-green sponge. +stapler/stapler_4,A black stapler. +stapler/stapler_4,This object is used to put papers together. +stapler/stapler_4,This is a black stapler. +stapler/stapler_4,This is a stapler. +stapler/stapler_4,This is a stapler. +greens/greens_3,This is a head of bokchoy. +greens/greens_3,This is a leafy vegetable. +greens/greens_3,This is baby bok choy. +greens/greens_3,This is bok choi. +greens/greens_3,This might be broccoli or celery. As a vegetable it is eaten raw, but is most often cooked as a side dish. +food_jar/food_jar_4,This is a jar of food. Some preparation is required before this food can be eaten. +food_jar/food_jar_4,This is a jar of alfredo sauce. +food_jar/food_jar_4,This is a can of Alfredo sauce. +food_jar/food_jar_4,This is a jar of white pasta sauce. +food_jar/food_jar_4,A jar of alfredo sauce. +marker/marker_3,A black marker. A magic marker. +marker/marker_3,This is a black marker. +marker/marker_3,This is a black dry erase marker. +marker/marker_3,A magic marker. +marker/marker_3,This is a black expo marker. +orange/orange_2,This is a piece of fruit. +orange/orange_2,An orange. +orange/orange_2,This is a sweet fruit called an orange. It can be eaten raw or cooked. +orange/orange_2,This is a yellow sphere-shaped object that almost looks like a lemon. +orange/orange_2,Nothing like pealing and eating a juicy, sweet orange to get lots of vitamin C. Oranges make good juice to drink when you roll them around on a hard surface until it is very squishy, stick a drinking straw into the top and squeeze it as you suck out the juice. +toothpaste/toothpaste_4,This is a tube of toothpaste. It cleans your teeth. +toothpaste/toothpaste_4,Toothpaste is a paste or gel dentifrice used with a toothbrush to clean and maintain the aesthetics and health of teeth. +toothpaste/toothpaste_4,This is a tube of toothpaste. +toothpaste/toothpaste_4,This is a tube of toothpaste. +toothpaste/toothpaste_4,This is a tube of toothpaste. +lemon/lemon_2,A yellow lemon. A super market sticker on lemon. +lemon/lemon_2,It is a yellow lemon with a sticker label on it. The label is to blurry to describe. +lemon/lemon_2,A yellow lemon. +lemon/lemon_2,This is a lemon. +lemon/lemon_2,This is a lemon. +plate/plate_2,An empty dinner plate. +plate/plate_2,This is a plate. +plate/plate_2,This is a plate +plate/plate_2,This is a blue and white plate. +banana/banana_2,This is a banana, one of the most popular fruits, some people are allergic to it. You can eat this as is, or use to make lots of things . +banana/banana_2,A ripe banana +banana/banana_2,This is a banana. +banana/banana_2,This is a banana. +banana/banana_2,This is a large yellow banana. It has a small bruise on it. +toothbrush/toothbrush_5,A toothbrush, red and white handle with matching brushes. +toothbrush/toothbrush_5,A red & white toothbrush. A manual toothbrush. +toothbrush/toothbrush_5,Toothbrushes are used to promote good oral hygiene. +toothbrush/toothbrush_5,This is a toothbrush. +toothbrush/toothbrush_5,A red and white toothbrush. +sponge/sponge_3,It is a blue sponge. +sponge/sponge_3,A kitchen scrubbing sponge. +sponge/sponge_3,This is a squeegee. +sponge/sponge_3,This is a blue sponge. +sponge/sponge_3,A blue sponge for cleaning. +marker/marker_3,A magic marker. +marker/marker_3,This is a black dry erase marker. +marker/marker_3,This is a black marker. +marker/marker_3,This looks like a black Expo brand dry erase marker. +marker/marker_3,It's a black Expo brand whiteboard marker. +hand_towel/hand_towel_4,It is a towel that looks faded green or possibly grey. It is folded into a smaller square. +hand_towel/hand_towel_4,This looks like grey wash cloth. +hand_towel/hand_towel_4,It's a folded green washcloth. +hand_towel/hand_towel_4,A dinner napkin. +hand_towel/hand_towel_4,This is a gray towel placed on a white and red plate. +cereal_box/cereal_box_4,This is a box of food. +cereal_box/cereal_box_4,This is a box of cereal. +cereal_box/cereal_box_4,A box of cereal. +cereal_box/cereal_box_4,A blue box of cold cereal. +cereal_box/cereal_box_4,This is a box of breakfast cereal. +water_bottle/water_bottle_5,It's a bottle of water with a blue label. +water_bottle/water_bottle_5,This is bottled water. +water_bottle/water_bottle_5,This is a bottle of a clear liquid. +water_bottle/water_bottle_5,This is a bottle of water. +ball/ball_6,This is a candy shaped like a basketball. +ball/ball_6,A soft, small, toy basketball. +ball/ball_6,Here is a squishy ball that could easily fit into someone's hand. It is made to look like a basketball. +ball/ball_6,It's a basketball stress ball or something similar. +ball/ball_6,This is a small ball that looks like a basketball. +pliers/pliers_3,This is a pair of pliers. +pliers/pliers_3,These are vice grip pliers. +pliers/pliers_3,This is green pliars. +pliers/pliers_3,metel, roughly "x" shaped with green accents on one end. +pliers/pliers_3,A pair of pliers. +tomato/tomato_1,The object is a small red tomato. +tomato/tomato_1,A red tomato. +tomato/tomato_1,This is a red tomato. +tomato/tomato_1,A ripe plum tomato +cereal_box/cereal_box_3,This is a box of Special K cereal. +cereal_box/cereal_box_3,It is a cardboard box of cereal. It has six sides and a picture of a spoon on the back. +cereal_box/cereal_box_3,This is a box of cereal. +cereal_box/cereal_box_3,A box of cereal. +cereal_box/cereal_box_3,This is a box of cereal. +stapler/stapler_5,This is a black stapler. +stapler/stapler_5,A black stapler. +stapler/stapler_5,This is a stapler. +ball/ball_1,This is a football. +ball/ball_1,A nerf football. +ball/ball_1,This is a toy football. +ball/ball_1,It's an inflatable toy football. It's brown with white stripes. +ball/ball_1,A football +garlic/garlic_6,Garlic is primarily used in Italian fare. +garlic/garlic_6,The object looks like a full piece of garlic. +garlic/garlic_6,This looks like a head of garlic. +garlic/garlic_6,Here is a full clove of garlic. +coffee_mug/coffee_mug_3,A coffee mug. +coffee_mug/coffee_mug_3,a brown pitcher +coffee_mug/coffee_mug_3,A large mug. Brown exterior beige interior coffee mug. +coffee_mug/coffee_mug_3,This is a mug. +coffee_mug/coffee_mug_3,This is a coffee mug. +potato/potato_4,This is a potato. +potato/potato_4,It is an object that is shaped like an oval. It looks to be yellow with some brown or red. +potato/potato_4,This is a mango. +potato/potato_4,A large baking potato. +lemon/lemon_6,This is a lemon. +lemon/lemon_6,A yellow lemon. +lemon/lemon_6,This is a lemon. +lemon/lemon_6,This is a lemon. +lemon/lemon_6,It's a lemon. +water_bottle/water_bottle_10,This is an empty water bottle. +water_bottle/water_bottle_10,A pink portable water bottle with a pink straw top. +water_bottle/water_bottle_10,a pink colored sippy bottle drink +water_bottle/water_bottle_10,This is a drink container. +water_bottle/water_bottle_10,The object is a red and pink reusable water bottle with a straw. +bowl/bowl_4,A coffee mug. +bowl/bowl_4,It's a bowl. +bowl/bowl_4,This is a bowl. +bowl/bowl_4,This is a bowl. Normally used for soups or deserts, it is part of a table setting. +bowl/bowl_4,This is an all-white bowl. +rubber_eraser/rubber_eraser_1,It's a white pencil eraser with a white and blue cardboard wrapper. +rubber_eraser/rubber_eraser_1,This looks to be an earaser. used to erase pencil. +rubber_eraser/rubber_eraser_1,this is a pill organizer +garlic/garlic_5,A small red potato. +garlic/garlic_5,A red potato. +stapler/stapler_3,This is a stapler. +stapler/stapler_3,This is a stapler. +stapler/stapler_3,It's a black Swingline stapler. +stapler/stapler_3,This is a stapler. +stapler/stapler_3,This stapler is used in a business setting, for attaching papers. +toothpaste/toothpaste_3,This is a tube of toothpaste. +toothpaste/toothpaste_3,A tube of toothpaste. +toothpaste/toothpaste_3,It's a tube of toothpaste. +toothpaste/toothpaste_3,This is a tube of toothpaste. +toothpaste/toothpaste_3,It is a plastic tube. It is mostly white with various hues of blue along the label. +food_bag/food_bag_2,A package of cookies. +food_bag/food_bag_2,a bag of cookies +food_bag/food_bag_2,This is a package of cake mix. +food_bag/food_bag_2,This is a package of food. +food_box/food_box_12,This is a box of a food product. +food_box/food_box_12,This is a box of crackers. +food_box/food_box_12,A box of cookies +food_box/food_box_12,It is a long rectangular cardboard box with some blue. There is a picture of some food on it, which I think is crackers. +food_box/food_box_12,This is a box of crackers. +binder/binder_1,This is a three-ring binder. This holds paper together by the rings between the covers. +binder/binder_1,This is a red binder. +binder/binder_1,This is a red folder. +binder/binder_1,A school folder. +food_jar/food_jar_2,A jar of jelly. +food_jar/food_jar_2,This is a jar of jelly. +food_jar/food_jar_2,Food Jar is used to keep food items. +food_jar/food_jar_2,This is a jar of marmalade. +food_jar/food_jar_2,This is a jar of food. This appears to be jelly, a fruity food that's ready to eat. +instant_noodles/instant_noodles_4,This is a package of food. +instant_noodles/instant_noodles_4,A package of Ramen noodles. +instant_noodles/instant_noodles_4,This is a package of Ramen soup mix. +instant_noodles/instant_noodles_4,This is a pack of ramen. +instant_noodles/instant_noodles_4,It's a packet of instant noodles. The package is mostly red. +food_cup/food_cup_5,This is either a container of yogurt or a small container of half and half. Food is inside of this. +food_cup/food_cup_5,This is a container of yogurt. +food_cup/food_cup_5,A container of yogurt. +food_cup/food_cup_5,This is a thing of creamer for coffee. +garlic/garlic_1,This is a clove of garlic. +garlic/garlic_1,This is a bulb of garlic. +garlic/garlic_1,A clove of garlic. +shampoo/shampoo_2,A plastic bottle that may be shampoo. +shampoo/shampoo_2,It's a bottle of conditioner. The liquid inside is white. +shampoo/shampoo_2,This is a bottle of shampoo. +shampoo/shampoo_2,This is a bottle of shampoo or conditioner. +tomato/tomato_3,This is a tomato. +tomato/tomato_3,This is a tomato. +tomato/tomato_3,A red tomato. +tomato/tomato_3,a ripened roma tomato +tomato/tomato_3,This is a tomato. +food_box/food_box_2,This is a box of Zatarrain's rice. +food_box/food_box_2,This is a box of Zatarain's yellow rice. +food_box/food_box_2,a box of rice +food_box/food_box_2,A box of rice. Looks like Zatarrans brand of rice pilaf. +food_box/food_box_2,A box of yellow rice. +flashlight/flashlight_1,This is a device called a flashlight. Powered by batteries, it produced visible light. +flashlight/flashlight_1,A black flashlight. +flashlight/flashlight_1,This is a black flashlight. +flashlight/flashlight_1,This is a flashlight. +flashlight/flashlight_1,This is a flashlight. +food_can/food_can_2,It is a can of Campbell's Chicken Noodle Soup. It is red and white. +food_can/food_can_2,This is a can of soup. +food_can/food_can_2,A can of soup. +food_can/food_can_2,This is an unopened can of Campbell's chicken noddle soup. It has a flip tab. +food_can/food_can_2,The soup is in a can. The brand of the chicken noodle soup is Campbell's. +tomato/tomato_1,A red tomato. +tomato/tomato_1,RED AND ROUND TOMATOE +tomato/tomato_1,This is a plum tomato. +tomato/tomato_1,This is a red tomato. +tomato/tomato_1,This is a tomato. +potato/potato_3,It's a yellow potato. +potato/potato_3,This is a potato. It is a good size for a baked potato. +potato/potato_3,A medium sized potato. +potato/potato_3,A potato. +potato/potato_3,This is a potato. +notebook/notebook_3,This is a spiral bound notebook. +notebook/notebook_3,This is a notebook with paper. +notebook/notebook_3,This is a notebook or drawing pad with neon green tie dye on the cover. +notebook/notebook_3,This is a spiral bound notebook. This pad of paper is held together by the wire spiral at one side. +notebook/notebook_3,A writing notebook. +lemon/lemon_3,This is a lemon. +lemon/lemon_3,This is a lemon. +lemon/lemon_3,This is a yellow lemon. +lemon/lemon_3,It's a lemon. +lemon/lemon_3,This is a yellow lemon. They are sour. +food_box/food_box_1,It's a box of sugar substitute. It's red and white with a green stripe. +food_box/food_box_1,This is a box of sugar sweetner. +food_box/food_box_1,A package of sugar substitute. +food_box/food_box_1,This is a box containing a food product, possibly a tea mix. +food_box/food_box_1,This is a box of white fine granulated sugar. +garlic/garlic_2,Fresh unpeeled garlic. +garlic/garlic_2,A clove of garlic. +garlic/garlic_2,This looks like a head of garlic. +garlic/garlic_2,This is a bulb of garlic. +garlic/garlic_2,This is a bulb of garlic. +marker/marker_4,This is a green marker. +marker/marker_4,This is a flashlight used to se in the dark. +marker/marker_4,This is a pen. +marker/marker_4,A magic marker. +marker/marker_4,It's a green marker. +tomato/tomato_2,A red tomato. +tomato/tomato_2,It's a red tomato. +tomato/tomato_2,It's a fruit. +tomato/tomato_2,This is a cherry tomato. +marker/marker_1,A magic marker. +marker/marker_1,This is a dry erase marker that is used on white boards. +marker/marker_1,This is a red dry erase marker. +marker/marker_1,This is a red marker. +marker/marker_1,This is a glue pen. +instant_noodles/instant_noodles_4,This is a package of snack food. Humans eat snack foods as part of their diet. +instant_noodles/instant_noodles_4,It's a packet of instant noodles. It's mostly red. +instant_noodles/instant_noodles_4,This is a package of food. +instant_noodles/instant_noodles_4,A package of noodles. +lightbulb/lightbulb_2,This is a light bulb. +lightbulb/lightbulb_2,This is a light bulb. +lightbulb/lightbulb_2,Light bulbs are used in residential fixtures. +lightbulb/lightbulb_2,This is a lightbulb. +lightbulb/lightbulb_2,A light bulb. +notebook/notebook_4,It's a blue spiral bound notebook. +notebook/notebook_4,The object is a blue notebook with a 70 in the bottom right. +notebook/notebook_4,A writing notebook. +notebook/notebook_4,This is a blue spiral bound notebook. +notebook/notebook_4,This is a spiral bound notebook. +cap/cap_2,It's a woodland camouflage baseball hat. It's green, tan, brown, and black. +cap/cap_2,This is a camouflage hat. +cap/cap_2,This is a baseball cap in camo print. +cap/cap_2,This is a camouflage hat. +cap/cap_2,An army hat. +garlic/garlic_2,a bulb of garlic +garlic/garlic_2,This is garlic. +garlic/garlic_2,This is a bulb of garlic. +garlic/garlic_2,A clove of garlic. +garlic/garlic_2,It's a head of garlic. +coffee_mug/coffee_mug_7,a blue coffee mug +coffee_mug/coffee_mug_7,This is a blue coffee mug. +coffee_mug/coffee_mug_7,A coffee mug. +coffee_mug/coffee_mug_7,This is a mug. +coffee_mug/coffee_mug_7,This is a ceramic cup. It is blue on the outside and white inside. +keyboard/keyboard_3,It is a black plastic keyboard. It is rectangular with details painted white. +keyboard/keyboard_3,This is a computer keyboard. +keyboard/keyboard_3,It's an extended black computer keyboard. +keyboard/keyboard_3,The object is a long black keyboard. +keyboard/keyboard_3,A computer keyboard. +glue_stick/glue_stick_2,a thing of lip bulm. +glue_stick/glue_stick_2,A sphere canister that has a white top. +glue_stick/glue_stick_2,This is a glue stick. +glue_stick/glue_stick_5,A tube of glue. +glue_stick/glue_stick_5,This is a glue stick. +food_box/food_box_10,This is a box of food, maybe pancake mix. +food_box/food_box_10,A box of some food. It could be cereal or cookies +food_box/food_box_10,This is a box of crackers. +food_box/food_box_10,A box of crackers. +notebook/notebook_2,This is a notepad with lined blank paper. +notebook/notebook_2,A writing notebook. +notebook/notebook_2,This is a spiral notebook. It has 70 pages of blank paper. A student would use a notebook like this. +notebook/notebook_2,This is a spiral bound notebook. This pad of paper is held together by the wire spiral at one side. +notebook/notebook_2,This is a spiral bound notebook. +cap/cap_1,This is a white baseball cap with black pin stripes and a W logo. +cap/cap_1,This item is a hat. It is white with vertical black stripes. It has a logo embossed on it. +cap/cap_1,It's a white baseball hat with black stripes. +cap/cap_1,A baseball cap. +cap/cap_1,This is a white cap with black lines runnig down it. +food_bag/food_bag_7,This is a bag of chips. +food_bag/food_bag_7,This is a bag of chips. +food_bag/food_bag_7,A bag of chips. +food_bag/food_bag_7,A pack of chips like snack +rubber_eraser/rubber_eraser_3,This is a pink eraser. +rubber_eraser/rubber_eraser_3,This is an eraser. +rubber_eraser/rubber_eraser_3,It is a pink rectangular rubber eraser. +rubber_eraser/rubber_eraser_3,A pencil eraser. +rubber_eraser/rubber_eraser_3,This is a big pink eraser. +water_bottle/water_bottle_9,This is a water bottle. +water_bottle/water_bottle_9,It's a clear purple water bottle with a opaque purple lid. It says BPA Free oni t. +water_bottle/water_bottle_9,This is a blue reusable water bottle. +water_bottle/water_bottle_9,This is a drinking container. +water_bottle/water_bottle_9,This is a reusable cup. It is BPA free. +mushroom/mushroom_1,A clove of garlic. +mushroom/mushroom_1,A mushroom that might have some green mold on the backside +mushroom/mushroom_1,Something that looks like ginger +marker/marker_6,This is a pen. +marker/marker_6,It's a black pen with blue grips. +marker/marker_6,This is an ink pen. +marker/marker_6,This is a pen. +toothbrush/toothbrush_2,It's a white and lime green toothbrush. +toothbrush/toothbrush_2,This is a toothbrush. +toothbrush/toothbrush_2,A toothbrush. +toothbrush/toothbrush_2,a light green toothbrush +toothbrush/toothbrush_2,This is a toothbrush. +mushroom/mushroom_3,The object is a large white bone. +water_bottle/water_bottle_9,This is a purple water bottle. +water_bottle/water_bottle_9,A plastic sipping water bottle with a blue cap +water_bottle/water_bottle_9,A plastic water bottle. +water_bottle/water_bottle_9,This is a purple clear water bottle. +water_bottle/water_bottle_9,The object is a purple drink container with a lid. +bowl/bowl_2,This object is a bowl that you use to eat food out of. +bowl/bowl_2,The object can be eaten out of and has a large hole in ints center. +bowl/bowl_2,a bowl +bowl/bowl_2,This is a glass bowl used to hold liquid foods. +bowl/bowl_2,An empty dinner bowl. +cap/cap_3,This is a black baseball cap with an image of a bulldog on the front. +cap/cap_3,A black hat with a picture of a bulldog on the front of it. +cap/cap_3,This is a black baseball cap. It says Bulldog and has a picture of a bulldog on it. +cap/cap_3,A hat with a bulldog graphic design, sitting atop a stool. +cap/cap_3,A bulldogs baseball cap +marker/marker_9,This is a marker. +marker/marker_9,This is a yellow highlighter. +marker/marker_9,This is a felt tip marker. A piece of felt under the black cap makes a mark on paper by spreading the ink that is in the tube. +marker/marker_9,A magic marker. +marker/marker_9,a yellow highlighter +pear/pear_4,It's a brown pear. +pear/pear_4,This is a pear. +pear/pear_4,This is a pear. +pear/pear_4,This is a pear. +pear/pear_4,A pear. +marker/marker_6,This is a marker. +marker/marker_6,A magic marker. +flashlight/flashlight_2,This is a flashlight. +flashlight/flashlight_2,This is a flash light. +flashlight/flashlight_2,It's a red and black flashlight. +flashlight/flashlight_2,This electrical battery powered device is called a flashlight. When powered on, it produces light which humans need to see when it's dark. +flashlight/flashlight_2,This is a red flashlight. +water_bottle/water_bottle_6,This is a clear water bottle. +water_bottle/water_bottle_6,This is a bottle of water. +water_bottle/water_bottle_6,It's a bottle of water with a blue cap. +water_bottle/water_bottle_6,This is a bottle of drinking water. +water_bottle/water_bottle_6,A plastic water bottle. +plate/plate_7,An empty dinner plate. +plate/plate_7,It's a plain white plate. +plate/plate_7,This is a bowl. Normally used for soups or deserts, it is part of a table setting. +plate/plate_7,This is an all-white plate. +plate/plate_7,This is a white plate. +banana/banana_2,This is a fruit known as bananna. +banana/banana_2,This is a banana that is mostly yellow. +banana/banana_2,This is a banana. +banana/banana_2,This is a banana. +banana/banana_2,A banana on a plate. +instant_noodles/instant_noodles_5,A Pack of some asian food +instant_noodles/instant_noodles_5,This is a package of food. Some preparation is required before this food can be eaten. +instant_noodles/instant_noodles_5,This is a package of Ramen soup. +instant_noodles/instant_noodles_5,A package of Ramen noodles. +instant_noodles/instant_noodles_5,This is a package of food. +soda_can/soda_can_1,This is a can of Pepsi. +soda_can/soda_can_1,It's a can of Pepsi. It is mostly blue with a Pepsi logo. +soda_can/soda_can_1,A can of Pepsi. +soda_can/soda_can_1,a can of pepsi +soda_can/soda_can_1,this is a can of Pepsi it is a carbonated drink. +tomato/tomato_5,This is a tomato. +tomato/tomato_5,This is a red ball or a tomato. +tomato/tomato_5,A cherry tomato +tomato/tomato_5,This is a red tomato.; It is used in many foods. +tomato/tomato_5,A red tomato. +food_box/food_box_12,A box of some snacks which looks like cookies +food_box/food_box_12,This is a box of crackers. +food_box/food_box_12,Pack of cookies. +food_box/food_box_12,This is a box of crackers. +food_box/food_box_12,A box of crackers. +scissors/scissors_4,Scissors with a yellow handle. +scissors/scissors_4,This is a pair of scissors. +scissors/scissors_4,This is a pair of scissors. +scissors/scissors_4,This is a pair of scissors. +scissors/scissors_4,This is a pair of scissors, the handle is grey with yellow accents. +garlic/garlic_7,This looks like a couple bars of soap. +dry_battery/dry_battery_4,A size C or D battery. +dry_battery/dry_battery_4,The battery is black and copper. +dry_battery/dry_battery_4,This is a battery. +dry_battery/dry_battery_4,It's a large alkaline battery. It's copper and black. +dry_battery/dry_battery_4,This is a battery. +stapler/stapler_8,This is a mini stapler. +stapler/stapler_8,This is a small red stapler. +stapler/stapler_8,A red stapler. +stapler/stapler_8,This is a small red stapler. +soda_can/soda_can_3,This is a can of soda. +soda_can/soda_can_3,A can of 7-Up. +soda_can/soda_can_3,This is a can of Mountain Dew. +soda_can/soda_can_3,This is a can of soda. +soda_can/soda_can_3,This is a can of soda. +food_box/food_box_10,This is a green box that probably contains food. +food_box/food_box_10,A box of something +food_box/food_box_10,It is a box of some kind of food. The box is light green with a white panel where the UPC is. +food_box/food_box_10,A box of crackers. +food_box/food_box_10,This is a box of snacks. +shampoo/shampoo_2,This is a bottle of shampoo. +shampoo/shampoo_2,This is a white bottle. +shampoo/shampoo_2,A bottle of shampoo. +toothpaste/toothpaste_2,This is a tube of toothpaste. +toothpaste/toothpaste_2,This is a tube of Crest toothpaste. +toothpaste/toothpaste_2,This is a tube of Crest toothpaste. +toothpaste/toothpaste_2,This is a tube of Crest toothpaste used to clean your teeth. +toothpaste/toothpaste_2,A tube of toothpaste. +toothbrush/toothbrush_1,This is a red and white toothbrush. +toothbrush/toothbrush_1,This is a toothbrush. +toothbrush/toothbrush_1,A red and white toothbrush. +toothbrush/toothbrush_1,The toothbrush is an oral hygiene instrument used to clean the teeth. +toothbrush/toothbrush_1,This is a toothbrush. +pear/pear_4,This is a bosc pear. +pear/pear_4,This is a pear. +pear/pear_4,A pear. +pear/pear_4,a yellow pear with sticker on it +pear/pear_4,This is a brown pear. +lightbulb/lightbulb_1,This is a energy efficient light bulb. +lightbulb/lightbulb_1,This is a light bulb. When screwed into a powered an electrical light socket, it produces visible light. +lightbulb/lightbulb_1,This is an led light bulb. +lightbulb/lightbulb_1,A light bulb. +lightbulb/lightbulb_1,This is a light bulb. +lightbulb/lightbulb_1,This is a compact fluorescent lightbulb. +lightbulb/lightbulb_1,A white LED light bulb. +lightbulb/lightbulb_1,This is a light bulb. +lightbulb/lightbulb_1,This is a smart lightbulb. +lightbulb/lightbulb_1,This is a led lightbulb. +coffee_mug/coffee_mug_2,This is a coffee cup. +coffee_mug/coffee_mug_2,This is a mug. +coffee_mug/coffee_mug_2,This is a brown coffee mug. +coffee_mug/coffee_mug_2,A coffee mug. +coffee_mug/coffee_mug_2,This is called a cup or a mug. It is commonly used to hold a drink of tea or coffee. +cell_phone/cell_phone_5,A smartphone. +cell_phone/cell_phone_5,This is a cellphone. +cell_phone/cell_phone_5,This is a cell phone. +cell_phone/cell_phone_5,It's a smartphone. It's silver and black. +cell_phone/cell_phone_5,This is a cell phone. +instant_noodles/instant_noodles_8,This is a package of Ramen. +instant_noodles/instant_noodles_8,A package of noodles. +instant_noodles/instant_noodles_8,It is a packet of Ichiban brand instant ramen noodles. The package is white and brown. +instant_noodles/instant_noodles_8,This is a package of food. +stapler/stapler_4,The stapler is black. +stapler/stapler_4,This is a stapler. +stapler/stapler_4,This is a stapler. +stapler/stapler_4,A black stapler. +stapler/stapler_4,This is a black manual stapler. +toothbrush/toothbrush_5,It's a red and white toothbrush. +toothbrush/toothbrush_5,This is a white and red toothbrush. +toothbrush/toothbrush_5,THIS IS A RED AND WHITE TOOTHBRUSH +toothbrush/toothbrush_5,A red and white toothbrush. +toothbrush/toothbrush_5,This is a tooth brush. +toothpaste/toothpaste_2,This is a tube of Crest toothpaste. +toothpaste/toothpaste_2,This is a tube of toothpaste. +toothpaste/toothpaste_2,A tube of Crest toothpaste. +toothpaste/toothpaste_2,One tube of Crest toothpaste. +toothpaste/toothpaste_2,Toothpaste is a paste or gel dentifrice used with a toothbrush to clean and maintain the aesthetics and health of teeth. +food_can/food_can_11,A can of soup. +food_can/food_can_11,This is a can of soup. +food_can/food_can_11,a can of food +food_can/food_can_11,A can of food +food_can/food_can_11,This is a can of soup. +hand_towel/hand_towel_2,A folded towel. +hand_towel/hand_towel_2,This is a red towel folded twice into a rectangular shape. Its white tag is visible on one of its edges. +hand_towel/hand_towel_2,This is a red cloth. +hand_towel/hand_towel_2,This is a wash cloth. +hand_towel/hand_towel_2,This is a red towel placed on a white and red plate. +coffee_mug/coffee_mug_7,This is a cup. +coffee_mug/coffee_mug_7,It's a blue and white mug. +coffee_mug/coffee_mug_7,A coffee mug. +coffee_mug/coffee_mug_7,This is a coffee cup. +coffee_mug/coffee_mug_7,This is a blue and white mug. +scissors/scissors_3,This is blue scissors. +scissors/scissors_3,This is a pair of scissors. +scissors/scissors_3,Scissors with a blue handle. ` +scissors/scissors_3,This is a pair of scissors. +scissors/scissors_3,The object is a pair of blue scissors. +calculator/calculator_2,this is a calculator +calculator/calculator_2,This is a calculator. +calculator/calculator_2,A calculator. +calculator/calculator_2,This is a calculator used for solving math problems. +calculator/calculator_2,A black desk calculator with a small flip-up screen. +food_can/food_can_3,This is a can of a product. +food_can/food_can_3,A can of soup. +food_can/food_can_3,This is a can of soup. +food_can/food_can_3,An aluminum can of some brand of soup. It might be campbell's brand. +food_can/food_can_3,This is a can of soup. +bell_pepper/bell_pepper_5,This is a green bell pepper. +bell_pepper/bell_pepper_5,A green pepper. +bell_pepper/bell_pepper_5,This is a green pepper. +bell_pepper/bell_pepper_5,It's a green bell pepper. +bell_pepper/bell_pepper_5,This is a green pepper. +sponge/sponge_5,This is a sponge. +sponge/sponge_5,A kitchen scrubbing sponge. +sponge/sponge_5,This is a red and blue sponge. +sponge/sponge_5,This is a sponge. +sponge/sponge_5,The object is square shaped and soft. +cell_phone/cell_phone_1,This is a cell phone. +cell_phone/cell_phone_1,This is a gray and black cell phone +cell_phone/cell_phone_1,This is a cell phone. +cell_phone/cell_phone_1,A slim mobile phone +cell_phone/cell_phone_1,This is a cellphone. +cell_phone/cell_phone_1,A smartphone. +toothpaste/toothpaste_2,A tube of toothpaste. +toothpaste/toothpaste_2,a small tube of crest toothpaste +toothpaste/toothpaste_2,This is a tube of Crest toothpaste. +toothpaste/toothpaste_2,This is a tube of toothpaste. +toothpaste/toothpaste_2,It's a tube of Crest toothpaste with a white and blue label. +pliers/pliers_6,A pair of pliers. +pliers/pliers_6,This is a pair of pliers. +pliers/pliers_6,Here are some pliers with black handles and a metal tip. +pliers/pliers_6,This is a pair of pliers with blue hand grips. +pliers/pliers_6,It's a pair of pliers with blue handles. +keyboard/keyboard_1,This is a keyboard. +keyboard/keyboard_1,This is a wireless keyboard. keyboards are used with computers. +keyboard/keyboard_1,This is a computer keyboard. +keyboard/keyboard_1,It's a flat keyboard. +keyboard/keyboard_1,It's a silver computer keyboard with white keys. +pear/pear_3,A pear. +pear/pear_3,This is a pear. +pear/pear_3,This is a brown pear. +ball/ball_5,This is a toy football. +ball/ball_5,This is a football. +ball/ball_5,It's an inflatable toy football. It's brown with white stripes. +ball/ball_5,This is a toy football. +ball/ball_5,Toy football with two white lines on the side and orange-brown textures around the ball. +soda_can/soda_can_6,This is a canned beverage. +soda_can/soda_can_6,This is a can of orange soda. +soda_can/soda_can_6,A can of soda. +soda_can/soda_can_6,A yellow aluminum can of some type of soda drink. +rubber_eraser/rubber_eraser_2,Image is too blurry to make out object. +rubber_eraser/rubber_eraser_2,This is a blurry image. +apple/apple_5,A green apple. +apple/apple_5,This is a green apple. +apple/apple_5,This is a green apple. +apple/apple_5,This is a green apple. +apple/apple_5,It's a green apple. +coffee_mug/coffee_mug_8,An empty coffee mug +coffee_mug/coffee_mug_8,This is a cup or mug. Most often it is used to hold coffee or tea, a drink humans ingest. +coffee_mug/coffee_mug_8,It's a white mug with blue stripes on the outside. +coffee_mug/coffee_mug_8,This is a mug. +coffee_mug/coffee_mug_8,A coffee mug. +pliers/pliers_2,A pair of pliers. +pliers/pliers_2,Pliers are made in various shapes and sizes and for many uses. Some are used for gripping something round like a pipe or rod. +pliers/pliers_2,This is black pliars. +pliers/pliers_2,These are a pair of pliers. +pliers/pliers_2,This is a pair of pliers. +scissors/scissors_2,This is a pair of scissors. +scissors/scissors_2,an orange colored scissorsa +scissors/scissors_2,Scissors with an orange handle. +scissors/scissors_2,A pair of adult scissors with a bright orange handle. +scissors/scissors_2,This is a pair of scissors. +dry_battery/dry_battery_6,This is a battery. +dry_battery/dry_battery_6,These are two batteries. +dry_battery/dry_battery_6,This is a battery. +dry_battery/dry_battery_6,This is a battery. +food_can/food_can_2,A can of soup. +food_can/food_can_2,This is a can of Cambell's soup. +food_can/food_can_2,This is a can of soup. +food_can/food_can_2,This is a can of soup. +food_can/food_can_2,It's a can of Campbell's soup. It's red and white. +bell_pepper/bell_pepper_4,It is a bell pepper that is all red with a thick green stem. It is laying on its side. +bell_pepper/bell_pepper_4,This is a vegetable called a red pepper. It can be eaten raw or cooked. +bell_pepper/bell_pepper_4,A red pepper. +bell_pepper/bell_pepper_4,This is a red bell pepper. +bell_pepper/bell_pepper_4,This is a red bell pepper. +pliers/pliers_1,These are a pair of pliers. +pliers/pliers_1,A pair of pliers. +pliers/pliers_1,This is a pair of pliers. +pliers/pliers_1,A pair of metal pliers with a dark blue handle. +pliers/pliers_1,This is a pair of scissors. +instant_noodles/instant_noodles_6,A package of food. +instant_noodles/instant_noodles_6,This is a package of food. +instant_noodles/instant_noodles_6,A package of Ramen noodles. +instant_noodles/instant_noodles_6,This is a package of food. +instant_noodles/instant_noodles_6,It's a package of instant ramen noodles. It's mostly yellow. +binder/binder_1,This is a red cloth. +binder/binder_1,Here is a red binder sitting on top of a white object. +binder/binder_1,A school folder. +cell_phone/cell_phone_4,Cellphone is used to communicate other persons. +cell_phone/cell_phone_4,A cell phone. +cell_phone/cell_phone_4,This is a digital camera. It can record pictures for later display or editing on a computer. +cell_phone/cell_phone_4,This is a cellphone. +toothpaste/toothpaste_5,Toothpaste is a paste or gel dentifrice used with a toothbrush to clean and maintain the aesthetics and health of teeth. +toothpaste/toothpaste_5,This is a tube of Crest toothpaste. +toothpaste/toothpaste_5,A tube of toothpaste. +toothpaste/toothpaste_5,This is a tube of toothpaste. +toothpaste/toothpaste_5,This is a tube of toothpaste. +food_jar/food_jar_2,This is a jar of jam. +food_jar/food_jar_2,This is jelly the best uses is putting it on toast for breakfast. +food_jar/food_jar_2,This is a jar of jelly. +food_jar/food_jar_2,A jar of jelly. +food_jar/food_jar_2,This is a jar of jam or jelly. +stapler/stapler_1,A black stapler. +stapler/stapler_1,This is a stapler. +stapler/stapler_1,This is a black stapler. +stapler/stapler_1,The stapler is black. +stapler/stapler_1,This is a stapler. +keyboard/keyboard_4,A computer keyboard. +keyboard/keyboard_4,This is a computer keyboard. +keyboard/keyboard_4,This is a black keyboard +keyboard/keyboard_4,A black computer keyboard. +keyboard/keyboard_4,A keyboard of unknown brand +instant_noodles/instant_noodles_3,This is ramon noodle soup. +instant_noodles/instant_noodles_3,This is a package of food. +instant_noodles/instant_noodles_3,A package of frozen vegetables. +instant_noodles/instant_noodles_3,This is a bag of frozen vegetables. +scissors/scissors_3,Scissors with a blue handle. +scissors/scissors_3,This is a pair of scissors . +scissors/scissors_3,This is a pair of scissors. +scissors/scissors_3,This is a pair of scissors with a bright blue handle. +scissors/scissors_3,This is a pair of scissors with a blud handle used to cut things. +glue_stick/glue_stick_3,This is a glue stick. +glue_stick/glue_stick_3,A tube of glue. +glue_stick/glue_stick_3,this is a glue stick +glue_stick/glue_stick_3,A gluestick +glue_stick/glue_stick_3,This is a can of spray. +instant_noodles/instant_noodles_8,This is a package of dry ramen that will need to be prepared before being eaten. The packaging is plastic. +instant_noodles/instant_noodles_8,A packet of something. It looks like noodles +instant_noodles/instant_noodles_8,This is a package of food. +instant_noodles/instant_noodles_8,A plastic bag of processed food of some sort. +instant_noodles/instant_noodles_8,It is a packet of Ichiban instant ramen noodles. The package is brown and white. +instant_noodles/instant_noodles_8,Here is a package of food +shampoo/shampoo_1,This is a body cleanser or hair product. +shampoo/shampoo_1,This is a bottle of shampoo or conditioner. +shampoo/shampoo_1,A bottle of shampoo. +shampoo/shampoo_1,This looks like the back of a bottle of conditioner. I can't read the label but it's shaped like V05. +shampoo/shampoo_1,This is a bottle of body wash. +bowl/bowl_4,a coffee cup +bowl/bowl_4,This is a white ceramic cereal bowl. +bowl/bowl_4,This is a white bowl. +bowl/bowl_4,An empty dinner bowl. +bowl/bowl_4,This is a ceramic cup. +plate/plate_5,This is a white plate. +plate/plate_5,This is an all-white plate. +plate/plate_5,an empty plate +plate/plate_5,This is a plate. +plate/plate_5,An empty dinner plate. +marker/marker_8,A magic marker. +marker/marker_8,This is a felt tip marker. A piece of felt under the black cap makes a mark on paper by spreading the ink that is in the tube. +marker/marker_8,It's a red highlighter pen. +marker/marker_8,This is a marker. +coffee_mug/coffee_mug_2,This is a mug. +coffee_mug/coffee_mug_2,This is an empty coffee cup that is colored black on the inside. +coffee_mug/coffee_mug_2,A coffee mug. +coffee_mug/coffee_mug_2,a dark brown coffee mug. +coffee_mug/coffee_mug_2,This is a brown mug. +toothpaste/toothpaste_5,This is a tube of toothpaste. +toothpaste/toothpaste_5,This is a tube of toothpaste. +toothpaste/toothpaste_5,This is toothpaste. It has a minty flavor. +toothpaste/toothpaste_5,A tube of toothpaste. +toothpaste/toothpaste_5,It's a tube of Crest toothpaste. It's green and blue. +lemon/lemon_3,This is a lemon. +lemon/lemon_3,A yellow lemon. +lemon/lemon_3,This is a lemon. +lemon/lemon_3,This is a yellow lemon. The skin is sometimes grated, and the juice inside is extracted for juice or cooking. It is very tart. +lemon/lemon_3,This is a yellow lemon. It is still showing a bit of green on one end. +food_box/food_box_6,It's a box of Pretzel Thins. It's white and brown with a photo of the pretzels on the front. +food_box/food_box_6,This is a white box of pretzel thins. +food_box/food_box_6,This is a box of Pretzel Thins. +food_box/food_box_6,A box of pretzel thins +food_box/food_box_6,This is a box of pretzel thins. +stapler/stapler_7,This is mini blue stapler. +stapler/stapler_7,This is a small blue stapler. +stapler/stapler_7,A blue stapler. +stapler/stapler_7,It's a small blue stapler. +food_jar/food_jar_4,The object has a top, contains a liquid substance and is made by Ragu. +food_jar/food_jar_4,This looks like a jar of Ragu alfredo sauce. +food_jar/food_jar_4,This is a jar of Ragu white pasta sauce. +food_jar/food_jar_4,A bottle of ragu white pasta sauce +food_jar/food_jar_4,This is a sealed 16 ounce glass jar of Original Ragu Alfredo Sauce. +toothpaste/toothpaste_2,This is a tube of toothpaste. +toothpaste/toothpaste_2,It is a plastic tube of Crest toothpaste. It has a white cap with a blue label. +toothpaste/toothpaste_2,This is a tube of toothpaste. With a small brush, this paste is used to clean a human's teeth. +toothpaste/toothpaste_2,A tube of toothpaste. +toothpaste/toothpaste_2,This is a tube of crest toothpaste. +mushroom/mushroom_3,A folded towel. +camera/camera_2,This is a camera. +camera/camera_2,A digital camera. +camera/camera_2,This is a camera. +camera/camera_2,This is a camera. +toothpaste/toothpaste_5,A tube of toothpaste. +toothpaste/toothpaste_5,There is a tube of toothpaste, Crest brand toothpaste. +toothpaste/toothpaste_5,This is a tube of toothpaste. +toothpaste/toothpaste_5,This is a tube of toothpaste. +toothpaste/toothpaste_5,This is a tube of crest toothpaste. +food_bag/food_bag_6,This is an unopened bag of baked chips. The bag is red and black. +food_bag/food_bag_6,A bag of chips. +food_bag/food_bag_6,This is a bag of chips. +food_bag/food_bag_6,This package contains snack food. Humans eat snack food as part of their diet. +food_bag/food_bag_6,This is a bag of pop chips. +soda_can/soda_can_3,A can of mountain dew diet drink. +soda_can/soda_can_3,This is a can of Mountain Dew. +soda_can/soda_can_3,This is a can of Mountain Dew. +soda_can/soda_can_3,A can of mountain dew drink +soda_can/soda_can_3,A can of Diet Mountain Dew. +plate/plate_5,This is a saucer. +plate/plate_5,This is a plate. +plate/plate_5,This is a plate. +plate/plate_5,An empty dinner plate. +plate/plate_5,Plate a broad, mainly flat vessel commonly used to serve food. +tomato/tomato_2,This is a cherry tomato. +tomato/tomato_2,This is a tomato. +tomato/tomato_2,This is a tomato. +tomato/tomato_2,It's a roma tomato. +tomato/tomato_2,A red tomato. +dry_battery/dry_battery_5,This is a small battery. +dry_battery/dry_battery_5,a battery +dry_battery/dry_battery_5,This is a battery. +dry_battery/dry_battery_5,This is a battery. +dry_battery/dry_battery_5,An Energizer battery. +binder/binder_2,This is a binder. +binder/binder_2,This looks like a purple 3 ring binder, I can't read the label, looks like maybe a 1" wide binder for 8.5x11 paper. +binder/binder_2,This is a purple binder. +binder/binder_2,A school folder. +binder/binder_2,This is a binder. +kleenex/kleenex_2,A box of kleenex. +kleenex/kleenex_2,This is a box of tissues. +kleenex/kleenex_2,This is a box of tissues. Tissues are thin, absorbent paper cloths used to clean up after nasal malfunctions. +kleenex/kleenex_2,This is a box of soft tissues. +kleenex/kleenex_2,This is a box of facial tissues. +food_can/food_can_14,A can of soup. +food_can/food_can_14,This is a red can of soup. +food_can/food_can_14,This is a can. +food_can/food_can_14,This is a can of a food product. +food_can/food_can_14,This is a can of soup. +soda_can/soda_can_2,This looks like a can of 7-Up. +soda_can/soda_can_2,A can of 7-Up. +soda_can/soda_can_2,This is a 7up Can. It is mainly green. +soda_can/soda_can_2,This is a can of 7 Up. +soda_can/soda_can_2,This is a clear drink. It is a soda pop. +comb/comb_5,A black handled hairbrush. +comb/comb_5,This is a hairbrush. +comb/comb_5,This is a hair brush. +comb/comb_5,This is a hair brush. +comb/comb_5,A hair brush. +toothpaste/toothpaste_3,This is a tube of toothpaste. +toothpaste/toothpaste_3,A tube of ultra bite toothpaste. +toothpaste/toothpaste_3,This is a tube of Ultra brite toothpaste. +toothpaste/toothpaste_3,This is a tube of toothpaste. +toothpaste/toothpaste_3,This is a tube of whitening toothpaste. +water_bottle/water_bottle_7,This is a water bottle. +water_bottle/water_bottle_7,This is a water bottle with a red label. +water_bottle/water_bottle_7,This is a bottle of water. +water_bottle/water_bottle_7,A plastic water bottle. +water_bottle/water_bottle_7,This is a bottle of water. +comb/comb_3,Combs are used to teasing the hair. +comb/comb_3,This is a hair brush. +comb/comb_3,This is a hair brush. +comb/comb_3,This is a black hairbrush. +comb/comb_3,A hair brush. +flashlight/flashlight_5,It is a yellow Duracell flashlight. +flashlight/flashlight_5,This is a flashlight. +flashlight/flashlight_5,This is a yellow and black colored flashlight used to see in the dark. +flashlight/flashlight_5,A yellow flashlight. +flashlight/flashlight_5,This is a yellow and black flashlight. +shampoo/shampoo_5,It's a bottle of shampoo. The liquid inside is pink. +shampoo/shampoo_5,This is a Suave shampoo bottle. +shampoo/shampoo_5,This is a container of hand soap. +shampoo/shampoo_5,A bottle of shampoo. +shampoo/shampoo_5,This is liquid soap. +food_bag/food_bag_7,It's a bag of tortilla chips. It's green with a photo of chips on it. +food_bag/food_bag_7,This is a bag of chips. +food_bag/food_bag_7,A bag of chips. +food_bag/food_bag_7,A Sealed Plastic Bag That Contains Baked Slivered Potato Products +food_bag/food_bag_7,This is a bag of tortilla chips. It goes good with salsa. +coffee_mug/coffee_mug_1,This is a white and red coffee mug. +coffee_mug/coffee_mug_1,A coffee mug. +coffee_mug/coffee_mug_1,A mug that has red graphic design. +coffee_mug/coffee_mug_1,This is a mug. +coffee_mug/coffee_mug_1,This is a coffee mug. +peach/peach_3,a peach +peach/peach_3,This is a red apple. +peach/peach_3,This is a piece of fruit. +peach/peach_3,A red apple. +ball/ball_6,This is a toy basketball. +ball/ball_6,Balls are used to play ball games. +ball/ball_6,A nerf basketball. +ball/ball_6,This is a basketball. +garlic/garlic_3,A clove of garlic. +garlic/garlic_3,This is a bulb of garlic. +garlic/garlic_3,A whole garlic bulb +peach/peach_3,This is a piece of fruit. +peach/peach_3,Apples are a fruit. +peach/peach_3,This is a peach. +peach/peach_3,A peach. +peach/peach_3,This is a peach. +ball/ball_7,This is a soccer ball. +ball/ball_7,This object is a soccer ball. +ball/ball_7,A soccer ball. +ball/ball_7,This is a black and white soccer ball. +ball/ball_7,It's an inflatable toy soccer ball. It's black and white. +food_bag/food_bag_8,The chip bag is green. They are Sun Chips. +food_bag/food_bag_8,This is a bag of chips. +food_bag/food_bag_8,This is a bag of Sun Chips. +food_bag/food_bag_8,A bag of chips. +food_bag/food_bag_8,This is a small bag of French Onion Sun Chips. +lemon/lemon_1,This is a lemon. +lemon/lemon_1,Yellow lemon with sticker +lemon/lemon_1,A yellow lemon. +lemon/lemon_1,This is a yellow lemon. +lemon/lemon_1,This is a lemon. It has a sticker on it. +bowl/bowl_3,This is an all-white bowl. +bowl/bowl_3,An empty dinner bowl. +bowl/bowl_3,This is a white bowl. +bowl/bowl_3,This is a white bowl. +bowl/bowl_3,Bowls used for storing non-food items. +greens/greens_4,This is bok choi. +greens/greens_4,This is baby bok choy. +greens/greens_4,There is a green vegetable, perhaps it is artichoke? +greens/greens_4,Kale on a plate. +greens/greens_4,This is green lettuce. +lime/lime_4,A large lime. +lime/lime_4,This avocado is a green fruit. Some people eat this raw, but it is most often mixed with other foods. +lime/lime_4,This is a lime. This fruit is very sour. +lime/lime_4,This is a lime. +lime/lime_4,This is a green lemon. +hand_towel/hand_towel_4,This is a face towel, it is the smallest of towels, mostly use to wash face and some cases clean things. +hand_towel/hand_towel_4,This is a cloth towel. +hand_towel/hand_towel_4,This is a small grey towel. +hand_towel/hand_towel_4,A folded towel. +hand_towel/hand_towel_4,This is a brown towel sitting on a white and red plate. +keyboard/keyboard_2,This is a black computer keyboard. +keyboard/keyboard_2,This is a black computer keyboard. +keyboard/keyboard_2,This is a black computer keyboard. +keyboard/keyboard_2,This is a computer keyboard. +keyboard/keyboard_2,A computer keyboard. +scissors/scissors_4,It is a picture of a pair of scissors. The handle of the scissors are blue and yellow. +scissors/scissors_4,Scissors with a blue and yellow handle. +scissors/scissors_4,This is silver and yellow scissors. +scissors/scissors_4,This is a pair of scissors. +scissors/scissors_4,This is a pair of scissors. +calculator/calculator_3,A nice little pocket calculator with basic functions. +calculator/calculator_3,This is a calculator. +calculator/calculator_3,A calculator. +calculator/calculator_3,It is a calculator. It is flat and rectangular; with many black buttons. +calculator/calculator_3,The object is a white and black small calculator. +keyboard/keyboard_4,This is a computer keyboard. +keyboard/keyboard_4,This is a computer keyboard. +keyboard/keyboard_4,A computer keyboard. +keyboard/keyboard_4,It is a black keyboard. It is not connected to a computer. +keyboard/keyboard_4,This is a keyboard and it is black +lightbulb/lightbulb_3,A light bulb. +lightbulb/lightbulb_3,a round white bulb +lightbulb/lightbulb_3,This is a light bulb. +lightbulb/lightbulb_3,This is a non-LED lightbulb. They give off a different kind of light. +lightbulb/lightbulb_3,This is a light bulb. +cereal_box/cereal_box_5,A white and red rectangular food package. +cereal_box/cereal_box_5,A packet of something +cereal_box/cereal_box_5,A box of crackers. +cereal_box/cereal_box_5,This is a box of food. +soda_can/soda_can_5,This is a can of soda. +soda_can/soda_can_5,A can of Diet Dr. Pepper. +soda_can/soda_can_5,Aluminum can of Dr. Pepper which is a type of soda. +soda_can/soda_can_5,A can of Diet Dr. Pepper. +soda_can/soda_can_5,This is a can of soda. +cap/cap_2,This is a black baseball cap. +cap/cap_2,An army hat. +cap/cap_2,This is a camoflauge baseball cap. +cap/cap_2,This is a baseball cap. +cap/cap_2,It's a camouflage baseball hat. It's green, brown, tan, and black. +food_bag/food_bag_6,A package of chips. +food_bag/food_bag_6,This is a bag of chips. +food_bag/food_bag_6,These are pop chips. +food_bag/food_bag_6,bag of bbq pop chips +food_bag/food_bag_6,A bag of pop chips flavored barbeque. +lemon/lemon_4,This is a lemon. +lemon/lemon_4,This is a yellow lemon. +lemon/lemon_4,This is a lemon. +lemon/lemon_4,A yellow lemon. +lemon/lemon_4,It is a yellow lemon that is on its side. +instant_noodles/instant_noodles_1,This is a package of food. +instant_noodles/instant_noodles_1,This is a colorful bag of candy. +instant_noodles/instant_noodles_1,A package of noodles. +instant_noodles/instant_noodles_1,This is a bag of chips. +food_can/food_can_9,This is a can. +food_can/food_can_9,A can of soup. +food_can/food_can_9,It's a can with a white label and a pink image on it above the nutrition facts. +food_can/food_can_9,This is a can of soup. +food_can/food_can_9,This is a tin of paint. +cell_phone/cell_phone_4,This is a cell phone. +cell_phone/cell_phone_4,It's a white and black flip phone. +cell_phone/cell_phone_4,A flip phone with a white base and a black top +cell_phone/cell_phone_4,This is a mobile phone. +banana/banana_1,A banana on a plate. +banana/banana_1,A yellow banana laying on a white object +banana/banana_1,This is a banana. +banana/banana_1,This is a yellow banana. +banana/banana_1,This is a yellow banana. +soda_can/soda_can_4,A can of some soda +soda_can/soda_can_4,This is a can of soda. +soda_can/soda_can_4,This is a can of soda. +soda_can/soda_can_4,A can of Coke. +cap/cap_3,a black cap +cap/cap_3,This is a black ball cap. +cap/cap_3,This is a black baseball cap. +cap/cap_3,A baseball cap. +cap/cap_3,It's a black baseball cap. +sponge/sponge_3,This is a sponge. +sponge/sponge_3,This is a kitchen sponge. +sponge/sponge_3,A kitchen scrubbing sponge. +sponge/sponge_3,This is a sponge. +sponge/sponge_3,A blue cleaning sponge. +tomato/tomato_6,A red tomato. +tomato/tomato_6,This is a tomatoe. They are tasty. +tomato/tomato_6,This is a sweet fruit called a tomato. It can be eaten raw or cooked. +tomato/tomato_6,This is a tomato. +tomato/tomato_6,This is a tomato. +cereal_box/cereal_box_2,This is a box of food, probably cereal. +cereal_box/cereal_box_2,This is a picture of a box of cereal. +cereal_box/cereal_box_2,Cereal is a delicious breakfast treat. +cereal_box/cereal_box_2,This is a box holding food. Some preparation is required before this food can be eaten. +toothbrush/toothbrush_1,This is a toothbrush. +toothbrush/toothbrush_1,A red and white toothbrush +toothbrush/toothbrush_1,It's a red and white toothbrush. +toothbrush/toothbrush_1,A red and white toothbrush. +toothbrush/toothbrush_1,This is a red and white toothbrush. +pliers/pliers_5,This is a pair of pliers. +pliers/pliers_5,This is a plier. +pliers/pliers_5,This is a tool that is used to hold wires together. +pliers/pliers_5,This is a pair of pliers. +pliers/pliers_5,This is a pair of pliers. +lime/lime_4,A green lime. +lime/lime_4,This is a lime. +lime/lime_4,This is a fruit called a lime. It can be eaten raw or cooked. +lime/lime_4,This is a lime. +lime/lime_4,This is a green lemon. +food_box/food_box_11,This is a red box of cheez-it's. +food_box/food_box_11,This snack food is cheese flavored. Humans eat snack food as part of their diet. +food_box/food_box_11,This is a box of Cheez-Its. +food_box/food_box_11,A box of Cheez-It. +food_box/food_box_11,This looks like the side of a box of Cheez-Its. +soda_can/soda_can_6,One can of Welchs juice. Orange flavor. +soda_can/soda_can_6,It's a can of Welch's lemonade. The can is yellow. +soda_can/soda_can_6,This is a can of soda. +soda_can/soda_can_6,A can of Welch's soda. +soda_can/soda_can_6,This is a can of juice. +tomato/tomato_7,It's a red tomato. +tomato/tomato_7,A small red tomato. +tomato/tomato_7,This is a tomato. +tomato/tomato_7,This is a tomato. +tomato/tomato_7,This is a tomato. +dry_battery/dry_battery_1,a battery +dry_battery/dry_battery_1,This is a 9 volt battery. +dry_battery/dry_battery_1,This is a battery. +dry_battery/dry_battery_1,This is a 9 volt battery. +food_can/food_can_11,This is a can of Campbell's soup. +food_can/food_can_11,This is a can filled with food you would eat if you had a cold. +food_can/food_can_11,A metal can of soup. +food_can/food_can_11,This is a can of soup. +food_can/food_can_11,A can of soup. +orange/orange_4,This is an orange. +orange/orange_4,this is a orange. +orange/orange_4,It's an orange which is mostly orange in color but slightly green. +orange/orange_4,This is a lemon. +orange/orange_4,An orange. +food_can/food_can_7,AN ALUMINUM CAN WITH EASY OPEN TOP WHITE LABEL +food_can/food_can_7,A can of soup. +food_can/food_can_7,This is a can of soup. +food_can/food_can_7,This is a can of food. +food_bag/food_bag_7,This is a green bag of chips. +food_bag/food_bag_7,This is a bag of chips. +food_bag/food_bag_7,A bag of chips. +food_bag/food_bag_7,This is a bag of chips. +food_bag/food_bag_7,Potato chips are a delicious after dinner snack. +onion/onion_5,A purple onion. +food_can/food_can_9,A can of soup. +food_can/food_can_9,This is a can. +food_can/food_can_9,this looks like a can of food.this could be liquid or solid food in a can. +food_can/food_can_9,This is a can of soup. +food_can/food_can_9,It's a can of Spaghettios with a red and white label. +tomato/tomato_2,A red tomato. +tomato/tomato_2,This is a plum tomato. +tomato/tomato_2,It's a roma tomato. +tomato/tomato_2,A ripe cherry tomato. +tomato/tomato_2,This is a cherry tomato. +peach/peach_3,This is a peach. +peach/peach_3,This is a piece of fruit. +peach/peach_3,It's a peach. It's mostly pink. +peach/peach_3,A peach. +peach/peach_3,this is a fruit. known as a peach. +food_cup/food_cup_4,This is a container of Chobani yogurt. +food_cup/food_cup_4,A container of yogurt. +food_cup/food_cup_4,This is a container of greek yogurt. +food_cup/food_cup_4,This is a container of Chobani yogurt. +food_cup/food_cup_4,This is a container of food, probably yogurt. +food_bag/food_bag_8,This is a bag of chips. +food_bag/food_bag_8,A bag of Sun chips. +food_bag/food_bag_8,This is a bag of chips. +food_bag/food_bag_8,The object is a green bag of sun chips. +food_bag/food_bag_8,This is a bag of Sun Chips. +sponge/sponge_4,This is a blue sponge. +sponge/sponge_4,This is a sponge. +sponge/sponge_4,This is a purple sponge. +sponge/sponge_4,This is a purple sponge. +sponge/sponge_4,A kitchen scrubbing sponge. +pitcher/pitcher_3,This is a pitcher. +pitcher/pitcher_3,This is a green ceramic pitcher. +pitcher/pitcher_3,This is a pitcher for liquid pouring. A hand holds the handle, then tips the fluid out. +pitcher/pitcher_3,A green vase. +pitcher/pitcher_3,This is a green water vase. +marker/marker_2,It's a green Expo dry erase marker. +marker/marker_2,A magic marker. +marker/marker_2,This is a green expo marker. +marker/marker_2,A green Expo dry erase marker. +marker/marker_2,This is a green dry erase marker. +food_bag/food_bag_7,A bag of chips. +food_bag/food_bag_7,A packet of some snacks +food_bag/food_bag_7,This is a bag of chips. +food_bag/food_bag_7,A bag of chips. This bag of chips is Target's house brand, Archer Farms. +food_bag/food_bag_7,This is a bag of potato chips. +marker/marker_2,This is a green dry erase marker. +marker/marker_2,Green colored marker with green cap and green label with a white base. +marker/marker_2,It's a green Expo dry erase marker. +marker/marker_2,This is a glue pen. +bowl/bowl_1,This is a red decorative bowl, with green and yellow markings. +bowl/bowl_1,This is a bowl. +bowl/bowl_1,This is a red and brown ceramic bowl. +bowl/bowl_1,This is a bowl. It holds soups and liquid foods. +bowl/bowl_1,An empty dinner bowl. +hand_towel/hand_towel_2,It's a red washcloth. +hand_towel/hand_towel_2,This is a red towel placed on a white and red plate. +hand_towel/hand_towel_2,This is a red napkin. It's folded. +hand_towel/hand_towel_2,A folded towel. +hand_towel/hand_towel_2,a maroon colored wash towel +plate/plate_4,This is a paper plate. The colors of this plate are beige and cream. +plate/plate_4,An empty plate +plate/plate_4,This is a plate. +plate/plate_4,An empty dinner plate. +plate/plate_4,It's a plate. +instant_noodles/instant_noodles_8,It's a packet of instant ramen noodles. The brand is Ichiban and the package is white and brown. +instant_noodles/instant_noodles_8,A rectangular plastic package of food. +instant_noodles/instant_noodles_8,This is a package of food. +instant_noodles/instant_noodles_8,A package of noodles. +instant_noodles/instant_noodles_8,This looks like a package of ramen or some similar dried food. +orange/orange_1,This is an orange. +orange/orange_1,An orange slightly rotten on the left side +orange/orange_1,an old orange +orange/orange_1,This is a piece of fruit. +orange/orange_1,An orange. +plate/plate_5,A white, ceramic saucer. +plate/plate_5,This is a bowl of water. +plate/plate_5,White ceramic plate. +plate/plate_5,This is a white plate. +plate/plate_5,An empty dinner plate. +food_box/food_box_5,It is a box of Market Pantry crackers. It has a red and white design with a green stripe. +food_box/food_box_5,A box of crackers. +food_box/food_box_5,A box of classic crackers +food_box/food_box_5,These are store brand crackers that resemble club crackers. +food_box/food_box_5,This is a box of crackers. +lemon/lemon_4,This is a lemon. +lemon/lemon_4,This is a yellow lemon. +lemon/lemon_4,A yellow lemon. +lemon/lemon_4,The lemon is a species of small evergreen tree in the flowering plant. +lemon/lemon_4,This is a lemon. +garlic/garlic_1,A clove of garlic. +garlic/garlic_1,This is a bunch of garlic. +garlic/garlic_1,This is a bulb of garlic. +garlic/garlic_1,This is a bulb of garlic. +bell_pepper/bell_pepper_3,This is a red bell pepper. +bell_pepper/bell_pepper_3,This is a red pepper. +bell_pepper/bell_pepper_3,This is a red bell pepper. It has a green stem. +bell_pepper/bell_pepper_3,Red bell peppers have multiple culinary uses. +bell_pepper/bell_pepper_3,A red pepper. +tomato/tomato_6,A red tomato. +tomato/tomato_6,This is a tomato. +tomato/tomato_6,It's a tomato still on the vine with a produce sticker. +tomato/tomato_6,This is a ripe tomato. +tomato/tomato_6,This is a fruit that still is on the vine and is red and round and can be used in salads and on sandwiches. +instant_noodles/instant_noodles_2,A package of noodles. +instant_noodles/instant_noodles_2,This is a package of food. +instant_noodles/instant_noodles_2,This is a package of soup. +instant_noodles/instant_noodles_2,This is a package of food. Some preparation is required before this food can be eaten. +scissors/scissors_1,Scissors with a black handle. +scissors/scissors_1,This is a pair of scissors. +scissors/scissors_1,This is grey and orange scissors. +scissors/scissors_1,This is a pair of scissors. +scissors/scissors_1,These are a pair of scissors. +onion/onion_2,This is an onion before it gets cut. +onion/onion_2,It's a white onion. +onion/onion_2,This is an onion. +onion/onion_2,A large white onion. +plate/plate_3,An empty dinner plate. +plate/plate_3,This is a white and blue plate. +plate/plate_3,This is a blue and white plate with a white powder on it. +plate/plate_3,It's a white plate with blue stripes around the edge. +plate/plate_3,This is a bowl. Normally used for soups or deserts, it is part of a table setting. +flashlight/flashlight_3,A blue flashlight with a black button. +flashlight/flashlight_3,This is a plastic flashlight. +flashlight/flashlight_3,A blue flashlight. +flashlight/flashlight_3,This is a blue flashlight. +flashlight/flashlight_3,This is a flashlight for seeing in the dark. +food_can/food_can_13,This looks like a can of Progresso soup, I can't tell what kind. +food_can/food_can_13,A can of Progresso soup. +food_can/food_can_13,This is a food container, commonly called a tin can. It can be easily opened by removing its pop-top lid. +food_can/food_can_13,This is a can of soup. +food_can/food_can_13,A can of soup. +scissors/scissors_2,These are heavy duty scissors with an orange handle. +scissors/scissors_2,A pair of scissors. The handles are orange. The blades are angled. +scissors/scissors_2,It's a pair of scissors with an orange handle. +scissors/scissors_2,This is a pair of scissors. +scissors/scissors_2,This is a pair of scissors, the kind that have the handles bent upwards a bit to make it easier to cut against a surface (so possibly sewing scissors). The handles are orange. +hand_towel/hand_towel_1,The object above is very fluffy. The object is a white, comfy pillow. +hand_towel/hand_towel_1,This is a white towel. +hand_towel/hand_towel_1,A folded towel. +hand_towel/hand_towel_1,This is a towel. +toothbrush/toothbrush_5,This is a tooth brush. When used with toothpaste, it cleans a human's teeth. +toothbrush/toothbrush_5,This is a toothbrush. +toothbrush/toothbrush_5,This is a red and white toothbrush. +toothbrush/toothbrush_5,This is a toothbrush. +toothbrush/toothbrush_5,A white and red toothbrush. +tomato/tomato_2,This is a grape tomato. +tomato/tomato_2,This is a plum tomato. +tomato/tomato_2,This is a grape or plum tomato. +tomato/tomato_2,This is a grape tomato. +tomato/tomato_2,It's a roma tomato. +cereal_box/cereal_box_5,A box of crackers. +cereal_box/cereal_box_5,This is a box containing a food product, most likely cereal. +cereal_box/cereal_box_5,This is a box of cereal. +cereal_box/cereal_box_5,A top view of a box of food +shampoo/shampoo_1,shampoo bottle is a container that is used to hold shampoo. +shampoo/shampoo_1,This is a plastic container. It may dispense shampoo, conditioner, hand lotion, or many other substances. +shampoo/shampoo_1,This is a bottle of shampoo or conditioner. +shampoo/shampoo_1,This is a bottle of body wash. +shampoo/shampoo_1,A bottle of shampoo. +instant_noodles/instant_noodles_6,This is a package of food. +instant_noodles/instant_noodles_6,This is a package of soup. +instant_noodles/instant_noodles_6,This is a package of food. +instant_noodles/instant_noodles_6,A package of noodles. +keyboard/keyboard_3,This is a mechanical keyboard. +keyboard/keyboard_3,This is a black computer keyboard. +keyboard/keyboard_3,A computer keyboard. +keyboard/keyboard_3,A keyboard that could be used for connecting to any laptop, tablet or monitor, type up all work that needs to be done. +keyboard/keyboard_3,This is a computer keyboard. +soda_can/soda_can_1,A can of Pepsi that is cylindrical and primarily blue in color. The top is silver and the Pepsi name and logo are on the side. +soda_can/soda_can_1,This is a can of Pepsi. +soda_can/soda_can_1,This is a can of Pepsi. +soda_can/soda_can_1,This looks like a can of regular Pepsi cola. +soda_can/soda_can_1,A can of Pepsi. +potato/potato_6,This is possibly a lumpy, deformed potato. +potato/potato_6,A large baking potato. +potato/potato_6,This is a potato. +potato/potato_6,It's a brown russet potato. +potato/potato_6,This is a baking potato. +hand_towel/hand_towel_2,This looks like a brown wash cloth. +hand_towel/hand_towel_2,This is a towel placed on a white and red plate. +hand_towel/hand_towel_2,A dinner napkin. +hand_towel/hand_towel_2,This is a cloth napkin. +sponge/sponge_4,This is a purple dish sponge. +sponge/sponge_4,It's a purple sponge. +sponge/sponge_4,This is a sponge. +sponge/sponge_4,This is a sponge. +sponge/sponge_4,A violet colored sponge +pear/pear_2,A pear. +pear/pear_2,This is a pear. +pear/pear_2,This is a piece of fruit. +pear/pear_2,This is a fruit called a guava. They are not very popular. +pear/pear_2,a yellow pear +food_box/food_box_8,This is a box with a product inside. +food_box/food_box_8,This is a side of a blue box. The box has a nutrition label. +food_box/food_box_8,This is a box of crackers. +food_box/food_box_8,This is a blue box of non perishable food, with the nutritional facts label displayed. +lemon/lemon_5,This is a lemon. +lemon/lemon_5,A yellow lemon +lemon/lemon_5,This is a lemon. +lemon/lemon_5,This is a lemon. +lemon/lemon_5,The object is a medium sized lemon. +camera/camera_2,This is an older style camera. +camera/camera_2,This is a black camera. +camera/camera_2,This is a camera. +camera/camera_2,This is a camera. +camera/camera_2,A digital camera. +apple/apple_5,This is a green apple. +apple/apple_5,This is a granny smith apple. +apple/apple_5,This is a green apple. +apple/apple_5,This is a green apple. +apple/apple_5,A green apple. +lightbulb/lightbulb_1,This is an lcd lightbulb. +lightbulb/lightbulb_1,A coiled energy efficient light bulb. +lightbulb/lightbulb_1,This is a light bulb. +lightbulb/lightbulb_1,It's a compact fluorescent light bulb. +lightbulb/lightbulb_1,A fluorescent light bulb. +shampoo/shampoo_4,this is a blue bottle of suave shampoo +shampoo/shampoo_4,This is a bottle of shampoo or conditioner. +shampoo/shampoo_4,This is a bottle of body wash. +shampoo/shampoo_4,It's a bottle of Suave hair conditoner. It's white with a silver cap. +shampoo/shampoo_4,This is a body cleanser. +cereal_box/cereal_box_3,This is a crispy, dry breakfast cereal. It is usually eaten with some amount of milk and with a spoon. +cereal_box/cereal_box_3,This is a box of cereal. +cereal_box/cereal_box_3,A box of cereal. +cereal_box/cereal_box_3,This is a box of Kellogg's cereal. +cereal_box/cereal_box_3,This is a box of special K cereal. +stapler/stapler_5,A black stapler. +stapler/stapler_5,THIS IS A BLACK STAPLER +stapler/stapler_5,This is a stapler. +stapler/stapler_5,This is a black stapler. +stapler/stapler_5,This is a stapler. +food_jar/food_jar_3,A jar of some jam +food_jar/food_jar_3,It's a jar filled with something. +food_jar/food_jar_3,This is a can. +food_jar/food_jar_3,A jar of jelly. +food_jar/food_jar_3,This is a jar of gravy. +ball/ball_4,This is a fake orange and black basketball. +ball/ball_4,This is ball. It looks a little deflated. +ball/ball_4,A nerf basketball. +ball/ball_4,This is a toy basketball. +ball/ball_7,A soccer ball. +ball/ball_7,This is a soccer ball. +ball/ball_7,This is a soccer ball. +ball/ball_7,In the US this is a soccer ball but the rest of the world calls it a football. Children and adults kick the ball into the net to make a goal. +ball/ball_7,This is a black and white soccer ball. +food_cup/food_cup_4,This is a container of Chobani yogurt. +food_cup/food_cup_4,This is a container of yogurt. +food_cup/food_cup_4,A container of yogurt. +food_cup/food_cup_4,An unopened Chobani Greek yogurt. It is peach flavored. +food_cup/food_cup_4,This is Chobani peach yogurt. +potato/potato_3,This is a potato. +potato/potato_3,A potato. +potato/potato_3,This is a baked dinner roll. +ball/ball_5,This is a brown football. +ball/ball_5,This is a football. +ball/ball_5,Shown is a toy football. +ball/ball_5,It's a small football. +ball/ball_5,An inflatable football. +pear/pear_7,A yellow apple. +pear/pear_7,A golden yellow round piece of fruit. +pear/pear_7,This is an apple. +pear/pear_7,A yellow apple +pear/pear_7,This is a fruit, probably an apple. +pear/pear_7,It looks like a yellow apple. It could probably be a mango too +pear/pear_7,This is a piece of fruit. +pear/pear_7,It's a fruit. +pear/pear_7,This is an apple which is a type of frit. +pear/pear_7,This is an apple. +mushroom/mushroom_2,A shitake mushroom +mushroom/mushroom_2,This is a mushroom. +kleenex/kleenex_3,This is a thin box of tissues. +kleenex/kleenex_3,A box of kleenex. +kleenex/kleenex_3,This is a box of tissues. Tissues are thin, absorbent paper cloths used to clean up after nasal malfunctions. +kleenex/kleenex_3,This is a box of facial tissues. +kleenex/kleenex_3,This is a box of tissues. +binder/binder_3,A school folder. +calculator/calculator_4,This is a calculator. +calculator/calculator_4,A green calculator. +calculator/calculator_4,This is a simple digital calculator. Basic math problems can be solved using this electronic device. +calculator/calculator_4,It's a bright green calculator. +calculator/calculator_4,This is a calculator. +potato/potato_5,This is an unpeeled potato. It has a brown skin. +potato/potato_5,A large baking potato. +potato/potato_5,This is a potato. +potato/potato_5,It is a brown russet potato. +potato/potato_5,This is a potato. +toothpaste/toothpaste_1,This is Colgate toothpaste. It is a minty flavor. +toothpaste/toothpaste_1,This is a tube of toothpaste. +toothpaste/toothpaste_1,This is a tube of toothpaste. +toothpaste/toothpaste_1,A tube of Colgate toothpaste. +toothpaste/toothpaste_1,This is a tube of Colgate toothpaste. The tube is red, blue, and white. +food_box/food_box_12,A box of some snacks which looks like cookies +food_box/food_box_12,A box of crackers. +food_box/food_box_12,This is a box of cookies or crackers. +food_box/food_box_12,This is a box of crackers. +food_box/food_box_12,It's a box of crackers. It's blue and green and has a picture of the crackers on it. +food_box/food_box_5,This is a box of classic crackers. +food_box/food_box_5,This is a box of crackers. +food_box/food_box_12,This is a box of wheat crackers. +food_box/food_box_12,This shows one packet of junk food and it is a pejorative term for food containing a large number of calories from sugar or fat with little. +food_box/food_box_12,This is a box of salted crackers +cap/cap_1,This is a baseball hat. It is white with black stripes and a small logo. +cap/cap_1,A fashion baseball cap +cap/cap_1,This is a striped baseball cap on a table. +food_box/food_box_12,This is a box of crackers. +food_box/food_box_12,The above is a box of crackers. +food_box/food_box_12,This is a box of crackers. +toothbrush/toothbrush_1,This is a red and white toothbrush. +toothbrush/toothbrush_1,This toothbrush is red and white. +toothbrush/toothbrush_1,This is a red and white toothbrush. +food_can/food_can_11,This is a can of food. +food_can/food_can_11,This is an unopened can with a flip top. The label is red and white. +flashlight/flashlight_1,A black flashlight. +flashlight/flashlight_1,This is used in the dark to light up a small area when you aim it and turn on the switch. This particular one is black. +flashlight/flashlight_1,this is a black flashlight +cap/cap_1,This is a baseball type cap. The cap is white with blue stripes. +pear/pear_7,That is an Asian pear. +toothpaste/toothpaste_5,This tube of toothpaste is mostly blue and green. +toothpaste/toothpaste_5,This is a tube of toothpaste +toothpaste/toothpaste_5,This is a tube of Crest toothpaste. +toothpaste/toothpaste_2,It is a tube of Crest toothpaste. +toothpaste/toothpaste_2,This is a tube of Crest toothpaste. +notebook/notebook_2,A yellow notebook sits here. +notebook/notebook_2,This is a 70 page yellow notebook. +instant_noodles/instant_noodles_8,This is Ichiban soup mix. +sponge/sponge_5,That is a red and blue sponge. +soda_can/soda_can_5,This is a can of Diet Dr. Pepper soda +soda_can/soda_can_5,This is a diet dr. pepper. +soda_can/soda_can_5,That is a can of Diet Dr. Pepper. +banana/banana_2,This is a banana. +banana/banana_2,Here is a banana. +sponge/sponge_6,This is a pink and yellow sponge. +sponge/sponge_6,It is a scrubber used to clean plates . +instant_noodles/instant_noodles_4,That is ramen soup mix. +instant_noodles/instant_noodles_4,This is a package of instant ramen +instant_noodles/instant_noodles_4,This is a plastic package of food. There is Japanese writing on it. +bell_pepper/bell_pepper_3,This red bell pepper is upright +bell_pepper/bell_pepper_3,This is a red bell pepper. +bell_pepper/bell_pepper_3,This is a red vegetable with a green stem. It stands up on its own. +hand_towel/hand_towel_2,This is a dishcloth +hand_towel/hand_towel_2,Here, a red napkin lies on a plate. +hand_towel/hand_towel_2,It is brown. It is a square shape. +instant_noodles/instant_noodles_4,Instant Noodles are a staple food in many cultures. +instant_noodles/instant_noodles_4,This is a package of food. It has Japanese writing on it. +instant_noodles/instant_noodles_4,That is a bag of soup mix. +tomato/tomato_7,This is a tomato +tomato/tomato_7,That is a red tomato. +lime/lime_4,This is the citrus fruit, lime +lime/lime_4,A lime is a hybrid citrus fruit. +lime/lime_4,This is a dark green lime in front of a red object that the lime is mostly obscuring. The lime is shiny and two toned. +garlic/garlic_1,This is a bulb of garlic, used for cooking +garlic/garlic_1,This is a broken garlic head. +lightbulb/lightbulb_1,A florescent light bulb. +lightbulb/lightbulb_1,This is a lightbulb used to light an area +lightbulb/lightbulb_1,That is a light bulb. +soda_can/soda_can_6,That is a can of soda. +soda_can/soda_can_6,This is a can of Fanta soda +soda_can/soda_can_6,This is an aluminum beverage can. It is yellow. +binder/binder_1,A large red square that is used to block something else +binder/binder_1,This is a red folder. +binder/binder_1,A red sheet of paper on top of a toilet. +potato/potato_6,This tuber is a light brown color and it is somewhat lumpy but basically oval in shape. +potato/potato_6,It's a potato of some sort. +potato/potato_6,This is a potato. +toothbrush/toothbrush_5,It is a toothbrush with red and white bristles. +toothbrush/toothbrush_5,The item is a toothbrush that is red and white. +toothbrush/toothbrush_5,A toothbrush is a small brush that you use for cleaning your teeth. +calculator/calculator_4,This is a green calculator with white and green buttons. +calculator/calculator_4,This is a neon green calculator. +orange/orange_4,This is an orange. +orange/orange_4,This is the citrus fruit orange +orange/orange_4,It is an unpeeled orange. +rubber_eraser/rubber_eraser_3,That is a pink eraser. +rubber_eraser/rubber_eraser_3,This is a pink eraser +lemon/lemon_3,This is a lemon, and it is a fruit. The lemon is yellow. +lemon/lemon_3,This is the citrus fruit, lemon +lemon/lemon_3,This is a yellow lemon. +bowl/bowl_4,This is a white ceramic bowl. +bowl/bowl_4,This is a white bowl. It could be used to hold food like cereal, soup, ice cream, for a few examples. +bowl/bowl_4,This is a white cup of soup or custard +sponge/sponge_3,This is a dish sponge +sponge/sponge_3,A sponge is a tool or cleaning aid made of soft, porous material. +sponge/sponge_3,This is a blue sponge. +bowl/bowl_4,This is a white bowl. +bowl/bowl_4,This is a white ceramic bowl +bowl/bowl_4,This is a plain white bowl +lime/lime_4,This is the citrus fruit, lime +lime/lime_4,Lime is a hybrid citrus fruit. +lime/lime_4,This is a green lime. +lightbulb/lightbulb_3,This is a light bulb. +lightbulb/lightbulb_3,An electric light is a device that produces visible light from electric current. +lightbulb/lightbulb_3,That is a light bulb. +dry_battery/dry_battery_4,This is a D-sized battery +dry_battery/dry_battery_4,An electric battery is a device consisting of one or more electrochemical cells with external connections provided to power electrical devices such as flashlights, smartphones, and electric cars. +dry_battery/dry_battery_4,It's a battery +food_bag/food_bag_7,this is a bag of potato chips. +food_bag/food_bag_7,This is a bag of potato chips. The bag is green. +food_bag/food_bag_7,This is a bag of chips. It looks like they are kettle chips. +banana/banana_2,This is a banana. +banana/banana_2,This is the fruit, banana +banana/banana_2,This fruit is called a banana, and is eaten for nutrients. It is long, yellow, has a peel on the outside, and soft edible fruit flesh. +bowl/bowl_1,This is a ceramic bowl that is red inside and green and gold outside. +bowl/bowl_1,A bowl of red jello. +bell_pepper/bell_pepper_4,This red bell pepper is on it's side +bell_pepper/bell_pepper_4,That is a red pepper. +bell_pepper/bell_pepper_4,This is a red bell pepper laying on its side. +food_box/food_box_11,This is a box of Cheez-It snacks +food_box/food_box_11,This is a box of cheez-its. +food_box/food_box_11,That is a box of Cheez-It crackers. +instant_noodles/instant_noodles_6,This is a package of instant ramen +instant_noodles/instant_noodles_6,This is a bag of food. +instant_noodles/instant_noodles_6,It is inflatable is an object that can be inflated with a gas. +food_can/food_can_14,This is a can of soup or chilli +food_can/food_can_14,This is a can of food. +food_can/food_can_14,This is an unopened can with a flip top. +dry_battery/dry_battery_5,That is a battery. +dry_battery/dry_battery_5,This is a battery. +peach/peach_3,This is an apple. +peach/peach_3,one whole red tomato +plate/plate_7,That is a paper plate. +plate/plate_7,This is a white plate. +plate/plate_7,a kitchen bowl to hold food +bowl/bowl_5,This is a white cereal bowl with multiple stripes around the top. +bowl/bowl_5,This is a bowl. +bowl/bowl_5,A ceramic bowl. +bowl/bowl_5,It's an empty bowl. The bowl is white with blue stripes inside. +bowl/bowl_5,A ceramic bowl. It has stripes. Good for cereal. +pliers/pliers_1,a pair of pliers +pliers/pliers_1,These are a pair of pliers. +pliers/pliers_1,This is a pair of pliers. +pliers/pliers_1,It's a pair of pliers with a blue handle. +pliers/pliers_1,A pair of pliers. +glue_stick/glue_stick_2,A white cylinder shaped glue stick +glue_stick/glue_stick_2,This is a glue stick. +glue_stick/glue_stick_2,It's a tube of lip balm. +glue_stick/glue_stick_2,The glue stick is white. +flashlight/flashlight_4,This is a flashlight. +flashlight/flashlight_4,This is a black flashlight. +flashlight/flashlight_4,The object is black. +flashlight/flashlight_4,It's a black flashlight. +flashlight/flashlight_4,This is a flashlight. +instant_noodles/instant_noodles_5,A package of Ramen noodles. +instant_noodles/instant_noodles_5,It's an orange bag of something. +instant_noodles/instant_noodles_5,This is a package of food. +ball/ball_3,This is a baseball with red seams. It is round and white. +ball/ball_3,A baseball. +ball/ball_3,This is a baseball. +ball/ball_3,This is a baseball. +ball/ball_2,It's an inflatable pillow that looks like a soccer ball. +ball/ball_2,A soccer ball. +ball/ball_2,This is a toy soccer ball. +ball/ball_2,A small bean bag toy designed like a soccer ball. +ball/ball_2,This is a soccer ball. +sponge/sponge_9,A red colored something +sponge/sponge_9,A small red fabric ball. +stapler/stapler_2,This is a stapler. +stapler/stapler_2,It's a black and grey stapler. +stapler/stapler_2,This is a stapler. +stapler/stapler_2,This is a black stapler with a rubber grip. +food_cup/food_cup_2,This is a container of yogurt. +food_cup/food_cup_2,A container of yogurt. +food_cup/food_cup_2,A plastic cup of yogurt with a foil lid. +food_cup/food_cup_2,This is a white container of yogurt. +instant_noodles/instant_noodles_4,This is a bag of instant asian noodles in a red bag. +instant_noodles/instant_noodles_4,This is a package of food. +instant_noodles/instant_noodles_4,This is a package of Ramen noodles. +instant_noodles/instant_noodles_4,A package of noodles. +food_box/food_box_5,This is a box of food. +food_box/food_box_5,This is a box containing a food product. +food_box/food_box_5,It's a box of crackers. It is red and white with a green stripe. +food_box/food_box_5,This is a box of crackers. +food_box/food_box_5,A box of crackers. +cap/cap_1,This is a baseball cap, it's got well spaced blue or grey pin-stripes on a white background. +cap/cap_1,A white and black striped baseball cap +cap/cap_1,A baseball cap. +cap/cap_1,This is a white and green pinstriped ballcap. +cap/cap_1,This is a white striped baseball cap. +ball/ball_2,This is a soccor ball. +ball/ball_2,This is a soccer ball. +ball/ball_2,It's an inflatable toy soccer ball. +ball/ball_2,This is a soccer ball. +ball/ball_2,A nerf soccer ball. +camera/camera_3,A digital camera. +camera/camera_3,This is a black camera. +camera/camera_3,This is a camera. +camera/camera_3,This is a camera. +camera/camera_3,a pocket digital camera +food_bag/food_bag_2,This is a bag of teddy bear shaped cookies. +food_bag/food_bag_2,This is a bag of Teddy Bear cookies. +food_bag/food_bag_2,The object is a package of cookies. The package is white with a red top. +food_bag/food_bag_2,This is a bag of cookies. +food_bag/food_bag_2,A package of cookies. +apple/apple_4,This is a piece of fruit known as an apple. +apple/apple_4,This is a yellow apple. +apple/apple_4,This is an apple. +apple/apple_4,This is a golden delicious apple. +apple/apple_4,A yellow apple. +cell_phone/cell_phone_3,A cell phone. +cell_phone/cell_phone_3,This is a mobile phone. +cell_phone/cell_phone_3,This is a cellphone. +shampoo/shampoo_6,It's a bottle of conditioner. The bottle is yellow with a green top. +shampoo/shampoo_6,A bottle of shampoo. +shampoo/shampoo_6,This is a bottle that likely contains shampoo or another personal grooming product. +shampoo/shampoo_6,This is a bottle of soap. +lemon/lemon_6,This is a yellow lemon. +lemon/lemon_6,It's a lemon. +lemon/lemon_6,A yellow lemon. +lemon/lemon_6,This is a lemon. +lemon/lemon_6,It is a yellow lemon. +food_bag/food_bag_4,This is a bag of mini oreos. +food_bag/food_bag_4,A package of Mini Oreos. +food_bag/food_bag_4,It's a blue bag of Mini Oreos with yellow and white text. +food_bag/food_bag_4,This is a snack size bag of mini oreo cookies. +food_bag/food_bag_4,This is a bag of Mini Oreo cookies. +toothbrush/toothbrush_3,a light blue colored tooth brush +toothbrush/toothbrush_3,This is a tooth brush. +toothbrush/toothbrush_3,This is a toothbrush. +toothbrush/toothbrush_3,This is a toothbrush. +toothbrush/toothbrush_3,This is a light green and white toothbrush. +orange/orange_1,This is a sweet orange. +orange/orange_1,This is a fruit with an orange skin. When broken open, the inside is gooey and there are many seeds. +orange/orange_1,This is an orange. +orange/orange_1,spherical orange fruit +orange/orange_1,It's an orange. +food_box/food_box_6,This is a box of food. +food_box/food_box_6,Thiis a box of Pretzel Thins. +food_box/food_box_6,This is an unopened box of Pretzel thins. +food_box/food_box_6,It is a box of Pretzel Thins. It is a small white box. +food_box/food_box_6,A box of pretzels. +sponge/sponge_12,a blue colored something in round shape +sponge/sponge_12,A kitchen sponge. +sponge/sponge_12,It's a blue dish scrubber. +kleenex/kleenex_1,A box of kleenex. +kleenex/kleenex_1,This is a box filled with soft tissues that are used when you have a cold. +kleenex/kleenex_1,This is a square box of tissues +kleenex/kleenex_1,This is a box of tissues. +kleenex/kleenex_1,This is a box of facial tissue. +garlic/garlic_7,This is a clove of garlic. +garlic/garlic_7,This is a garlic clove. +garlic/garlic_7,This is a bulb of fresh garlic. +garlic/garlic_7,This is a bulb of garlic. +camera/camera_3,This is a digital camera. It can record pictures for later display or editing on a computer. +camera/camera_3,This is a digital camera. +camera/camera_3,This is a black camera. +camera/camera_3,This is a camera. +camera/camera_3,A digital camera. +food_jar/food_jar_2,Jar of jelly. Jar of orange marmalade. +food_jar/food_jar_2,This is jar of jelly. +food_jar/food_jar_2,This is a jar of jam or jelly. +food_jar/food_jar_2,A jar of jelly. +food_jar/food_jar_2,This is a jar of jam. +calculator/calculator_2,This is a calculator. +calculator/calculator_2,A calculator. +calculator/calculator_2,This is a simple digital calculator. Basic math problems can be solved using this electronic device. +calculator/calculator_2,The calculator is black with gray and yellow buttons. +calculator/calculator_2,This 10-key calculator is solar powered. It is used to calculate numeric equations for example your check book. +food_can/food_can_4,This is a can of condensed milk. It's used for baking. +food_can/food_can_4,Food Can is used to store or keep food items. +food_can/food_can_4,This is a can of milk. +food_can/food_can_4,This is a can of soup. +food_can/food_can_12,A can of vegetables. A can of food. +food_can/food_can_12,It is a can white a predominantly white label. There is some green on it and a lot of text. +food_can/food_can_12,A can of soup. +food_can/food_can_12,This is a can. +food_can/food_can_12,This is a can of soup. +greens/greens_2,Green leaf lettuce on a plate. +greens/greens_2,This is lettuce. +greens/greens_2,This is fresh kale. +greens/greens_2,This is green lettuce. +ball/ball_2,This is a soccer ball, it is not as hard as a basketball although has the same shape, just different color and is used with feet and not hands. +ball/ball_2,A shrunken lack and white football +ball/ball_2,This is a soccer ball. +ball/ball_2,This is a mini soccer ball. +ball/ball_2,This looks like a soccer ball. It almost looks like a blow up soccer ball. +pear/pear_2,A green ripe pear. +pear/pear_2,A green pear. A bartlett pear. +pear/pear_2,Pears are a delicious fruit. +pear/pear_2,This is a pear. +pear/pear_2,A yellow pear. +sponge/sponge_7,It is a yellow sponge with a green scrubbing surface. +sponge/sponge_7,A kitchen sponge. +sponge/sponge_7,This is a squeegee. +sponge/sponge_7,This is a green and yellow sponge. +sponge/sponge_7,A yellow sponge with a green top layer that is rougher and more abrasive for scrubbing. +keyboard/keyboard_4,A computer keyboard. +keyboard/keyboard_4,This is a computer keyboard. +keyboard/keyboard_4,This is a black computer keyboard. +keyboard/keyboard_4,This is a black keyboard, facing backwards, on some sort of pedastal. +keyboard/keyboard_4,It's a black computer keyboard with a special key row and a numeric pad. +sponge/sponge_2,It is a green object that is rectangular. It looks like a sponge. +sponge/sponge_2,This looks like a lime green colored rectangular sponge. +sponge/sponge_2,It's a light green sponge. +sponge/sponge_2,A kitchen sponge. +sponge/sponge_2,This is a sponge. +instant_noodles/instant_noodles_2,This is a package of food. +instant_noodles/instant_noodles_2,This is a package of soup +instant_noodles/instant_noodles_2,A package of noodles. +instant_noodles/instant_noodles_2,A package of ramen noodles. +instant_noodles/instant_noodles_2,This is a packet of ramen noodles. +potato/potato_1,It's a red potato. +potato/potato_1,This is a red potato. +potato/potato_1,This is a brown ball. +greens/greens_4,This is baby bok choy. +greens/greens_4,Looks like a corn husk of a leek? +greens/greens_4,Here is a picture of some green vegetables. The vegetables are in an interesting shape like a cross. +greens/greens_4,It's a green vegetable. +bell_pepper/bell_pepper_3,This is a red bell pepper. +bell_pepper/bell_pepper_3,This is a red bell pepper. +bell_pepper/bell_pepper_3,This is a red pepper. +bell_pepper/bell_pepper_3,Bright red vegetable spherical in shape. Vibrant green stem protruding from the center. +bell_pepper/bell_pepper_3,A red pepper. +flashlight/flashlight_4,This is a long, thin, black flashlight. +flashlight/flashlight_4,The object is a medium sized black flashlight. +flashlight/flashlight_4,A black flashlight. +flashlight/flashlight_4,This is a black flashlight. +flashlight/flashlight_4,A black colored flash light +pear/pear_7,It is an apple, that I think is a darker yellow. It is round. +pear/pear_7,This is an asian pear. +pear/pear_7,An apple. +pear/pear_7,This is a piece of fruit. +food_jar/food_jar_6,This a small glass jar of food. +food_jar/food_jar_6,This is a jar of food. +food_jar/food_jar_6,A jar of jelly. +food_jar/food_jar_6,This is a jar of jelly. +food_jar/food_jar_6,a jar of some jam like thing +marker/marker_5,This is a pen. +marker/marker_5,A magic marker. +marker/marker_5,This is a pen. +marker/marker_5,It's a blue marker. +marker/marker_5,A blue colored pen +cereal_box/cereal_box_1,Cereal is a delicious breakfast offering. +cereal_box/cereal_box_1,The object is a box of cereal. The box is yellow and orange. +cereal_box/cereal_box_1,This looks like the back of a cereal box. I can't see the brand but it looks like some sort of flake cereal like corn flakes. +cereal_box/cereal_box_1,A package of fiber rich cereal. +cereal_box/cereal_box_1,Here is an unopened box of crunchy cereal. +bowl/bowl_1,An empty dinner bowl. +bowl/bowl_1,a red bowl +bowl/bowl_1,This is a red and black ceramic bowl. +bowl/bowl_1,This is a pottery bowl. +bowl/bowl_6,This is a blue plastic serving bowl with flowered printed on the inside +bowl/bowl_6,It's a bowl which is blue outside and mostly white inside, with some blue, yellow, and green floral patterns inside. There is also a sticker on the bowl. +bowl/bowl_6,It is a round bowl bowl with blue on the outside. The inside is white with a blue, yellow and green shapes painted along the rim. +bowl/bowl_6,This is a blue bowl. +bowl/bowl_6,An empty dinner bowl. +instant_noodles/instant_noodles_2,This is a package of food, possibly ramen. +instant_noodles/instant_noodles_2,A package of Ramen noodles. +instant_noodles/instant_noodles_2,This is a package of Ramen noodles. +instant_noodles/instant_noodles_2,This is a pack of ramen. +instant_noodles/instant_noodles_2,It's a package of instant ramen noodles. It has a white and pink package. +soda_can/soda_can_4,This is an open can of soda. +soda_can/soda_can_4,An black aluminum beverage can. +soda_can/soda_can_4,some brand of carbonated drink in a black can +soda_can/soda_can_4,This is an open can of soda. +soda_can/soda_can_4,The object is a black and red can of soda. It looks like a coke zero. +greens/greens_1,Green leaf lettuce on a plate. +greens/greens_1,It's some green vegetables. +greens/greens_1,This is a bundle of lettuce. +greens/greens_1,This green leafy mass looks to be a vegetable. It's either celery or broccoli. +greens/greens_1,This is green lettuce. +coffee_mug/coffee_mug_8,It's an empty mug. The mug is white with blue stripes. +coffee_mug/coffee_mug_8,This is a coffee cup used to drink coffee. +coffee_mug/coffee_mug_8,this is coffe mug +coffee_mug/coffee_mug_8,This is a coffee mug. +coffee_mug/coffee_mug_8,This is a white and black mug. +notebook/notebook_3,This is a notebook. +notebook/notebook_3,A spiral bound notebook with a white and green cover. +notebook/notebook_3,This is a spiral bound notebook. +notebook/notebook_3,This is a notebook. +notebook/notebook_3,A writing notebook. +dry_battery/dry_battery_6,This is a battery. +dry_battery/dry_battery_6,This is a battery. +dry_battery/dry_battery_6,It's a large alkaline battery. It's silver, black, and red. +dry_battery/dry_battery_6,This is a battery. +dry_battery/dry_battery_6,This is a battery used for powering small personal electonics. +lightbulb/lightbulb_3,This is a lightbulb. +lightbulb/lightbulb_3,A light bulb. +lightbulb/lightbulb_3,It's a lightbulb. +lightbulb/lightbulb_3,This is a light bulb. +lightbulb/lightbulb_3,It is a very round lightbulb. The glass part is white, while the part that screws in is gold. +ball/ball_1,A football. +ball/ball_1,a football +ball/ball_1,This is a toy football. +ball/ball_1,This is a football. +pliers/pliers_1,This is a plier. +pliers/pliers_1,This is a pair of pliers. +pliers/pliers_1,A cutting player +pliers/pliers_1,It is a set of pliers. The handles are blue and the rest is made of metal. +pliers/pliers_1,This is a pair of pliers. +toothbrush/toothbrush_2,This is a tooth brush. When used with toothpaste, it cleans a human's teeth. +toothbrush/toothbrush_2,This is a toothbrush. +toothbrush/toothbrush_2,This is a green and white toothbrush. +toothbrush/toothbrush_2,A toothbrush. +toothbrush/toothbrush_2,This is a toothbrush used for brushing your teeth. +flashlight/flashlight_2,A red flashlight. +flashlight/flashlight_2,This is a red flashlight. +flashlight/flashlight_2,A torch is a stick with combustible material at one end, which is ignited and used as a light source. +flashlight/flashlight_2,This is a red flashlight. +flashlight/flashlight_2,This is a device called a flashlight. Powered by batteries, it produced visible light. +soda_can/soda_can_3,This is a can of Mountain Dew. +soda_can/soda_can_3,A can of 7-Up +soda_can/soda_can_3,This is a cold can of soda. +soda_can/soda_can_3,This is a can of soda. +soda_can/soda_can_3,It's a can of soda with a green label. +calculator/calculator_5,This is a calculator. It is a desk calculator. The buttons on it are large. +calculator/calculator_5,This is a calculator. +calculator/calculator_5,This is a grey calculator. +calculator/calculator_5,A calculator. +calculator/calculator_5,This is a calculator sued to solve math problems. +pliers/pliers_4,This is a pair of pliers. +pliers/pliers_4,The object is a pair of pliers with a brown handle. +pliers/pliers_4,This is a pair of pliers. +pliers/pliers_4,A pair of pliers. +pliers/pliers_4,This is a black handled pliars. +garlic/garlic_6,White unpeeled garlic. +garlic/garlic_6,It's a head of garlic. +garlic/garlic_6,This is a clove of garlic. +garlic/garlic_6,This is a bulb of garlic. +apple/apple_4,This is an apple. +apple/apple_4,This is an apple. +apple/apple_4,A yellow apple. +apple/apple_4,a golden delicious apple +apple/apple_4,This is a yellow apple. +ball/ball_6,This is a basketball. +ball/ball_6,This is a pretend orange and black basketball. +ball/ball_6,a basketball shaped toy +ball/ball_6,This looks like a basketball. A deflatable basketball. +ball/ball_6,A nerf basketball. +garlic/garlic_7,A clove of garlic. +garlic/garlic_7,This is a clove of garlic. +garlic/garlic_7,This is a bulb of garlic. +pliers/pliers_2,It is a pair of pliers with blue grips. +pliers/pliers_2,This is a pair of pliers. +pliers/pliers_2,A pair of pliers. +pliers/pliers_2,This is a pair of pliers. +pliers/pliers_2,These are pliers. The handles are black. +toothbrush/toothbrush_4,A white and purple toothbrush. +toothbrush/toothbrush_4,PURPLE AND WHITE IT IS LONG WITH BRISTLES +toothbrush/toothbrush_4,This is a purple and white toothbrush. +toothbrush/toothbrush_4,This is a white and purple toothbrush. +toothbrush/toothbrush_4,This is a toothbrush. +kleenex/kleenex_4,It's a box of Kleenex with a blue design on it. +kleenex/kleenex_4,This is an open box of facial tissues. +kleenex/kleenex_4,A gray rectangular cardboard box of tissue. +kleenex/kleenex_4,A box of kleenex. +kleenex/kleenex_4,This is a box of facial tissue. +pliers/pliers_6,This is a pair of pliers. +pliers/pliers_6,These are scissors. +pliers/pliers_6,This is black pliars. +pliers/pliers_6,It's a pair of pliers with black handles. +pliers/pliers_6,This is a set of pliers. They are a common tool +stapler/stapler_5,It's a black stapler. +stapler/stapler_5,This is a stapler. +stapler/stapler_5,This is a stapler. +stapler/stapler_5,This is a stapler. +ball/ball_3,A small bean bag toy designed like a baseball. +ball/ball_3,A baseball. +ball/ball_3,This looks kind of like a baseball, it is white and has the red stitch markings, but it's squished and not really spherical, and it's shiny like it's covered in plastic. +ball/ball_3,This is a toy baseball. +ball/ball_3,This is a baseball. +food_can/food_can_3,This is a can of soup. +food_can/food_can_3,This is a can of soup. +food_can/food_can_3,This is a can of soup. +food_can/food_can_3,A can of soup. +food_can/food_can_3,It's a can of evaporated milk. It's red and white with a picture of pie on it. +coffee_mug/coffee_mug_6,A coffee mug. +coffee_mug/coffee_mug_6,It's a yellow mug. +coffee_mug/coffee_mug_6,This is a coffee cup. +coffee_mug/coffee_mug_6,It's a teacup. +coffee_mug/coffee_mug_6,This is a mug. +food_can/food_can_8,A can of Rotel tomatoes. +food_can/food_can_8,This is canned food of some kind. +food_can/food_can_8,This is a can. +food_can/food_can_8,This is a canned good. +food_can/food_can_8,This is a can of food. +bowl/bowl_2,This is a bowl. Normally used for soups or deserts, it is part of a table setting. +bowl/bowl_2,This is a green bowl. +bowl/bowl_2,It's a light blue bowl with a design around the rim. +bowl/bowl_2,This is a ceramic bowl. +bowl/bowl_2,An empty dinner bowl. +pear/pear_8,This is an apple. +pear/pear_8,This is an apple. +pear/pear_8,Pears are a delicious fruit. +pear/pear_8,This is a apple. +pear/pear_8,A yellow apple. +food_bag/food_bag_1,It's a bag of snacks. It's light blue and white. +food_bag/food_bag_1,The object is a bag of chips. The bag is white with brown and orange labels. +food_bag/food_bag_1,A bag of chips. +food_bag/food_bag_1,This is an unopened bag of True Delights crisps. +food_bag/food_bag_1,This is a bag of chips. +bowl/bowl_5,It's a white bowl with black stripes around the edge. +bowl/bowl_5,This is a white ceramic bowl with stripes at the top. +bowl/bowl_5,This is a bowl. +bowl/bowl_5,This is a bowl. +bowl/bowl_5,An empty dinner bowl. +pear/pear_2,a fruit which looks like pear +pear/pear_2,The object is a green and red apple. The apple has a sticker on it. +pear/pear_2,This is an apple. +pear/pear_2,An apple. +pear/pear_2,It's a brown and green pear with a sticker on it. +glue_stick/glue_stick_4,a gluestick with red top +glue_stick/glue_stick_4,A tube of glue. +glue_stick/glue_stick_4,This is a glue stick. +marker/marker_3,It is a dry erase marker. It is shaped like a long tube, with white and black. +marker/marker_3,This is a black dry erase marker. +marker/marker_3,It's a black Expo dry erase marker. +marker/marker_3,The object is a black Expo marker. +marker/marker_3,A magic marker. +kleenex/kleenex_5,A pink and white box of kleenez +kleenex/kleenex_5,A paper box that has a plastic lid opening, similar to a tissue papper. +kleenex/kleenex_5,This is a box of facial tissue. +kleenex/kleenex_5,A box of tissue paper that is soft used to blow your nose. +kleenex/kleenex_5,This is a box of Kleenex. +dry_battery/dry_battery_3,This is a battery. +dry_battery/dry_battery_3,This is a battery. +onion/onion_4,This is an onion. +onion/onion_4,A yellow onion +onion/onion_4,This is an onion. +onion/onion_4,A white onion. +onion/onion_4,This is a white onion. +onion/onion_6,This is a red onion. +onion/onion_6,A purple onion. +onion/onion_6,This appears to be a red apple. It looks over ripe. It is dark red. +onion/onion_6,This is an onion. +coffee_mug/coffee_mug_5,This is a white mug. +coffee_mug/coffee_mug_5,This object is a white coffee cup. It has a curved handle. +coffee_mug/coffee_mug_5,It's an empty white mug. +coffee_mug/coffee_mug_5,A coffee mug. +coffee_mug/coffee_mug_5,This is a white mug +food_cup/food_cup_2,This is a cup of yogurt. +food_cup/food_cup_2,This is a container of yogurt. +food_cup/food_cup_2,This is a container of yogurt. +food_cup/food_cup_2,A container of yogurt. +food_cup/food_cup_2,A can of flavored yogurt. It looks like yoplait and strawberry flavor +water_bottle/water_bottle_4,This water is flavored. +water_bottle/water_bottle_4,This is a bottle of water. +water_bottle/water_bottle_4,It is a plastic bottle with water inside. It has a blue cap and label. +water_bottle/water_bottle_4,A plastic water bottle. +water_bottle/water_bottle_4,This is a bottle of water. +scissors/scissors_2,This is a pair of scissors. +scissors/scissors_2,It's a pair of scissors with an orange handle. +scissors/scissors_2,This is a pair of orange scissors. +scissors/scissors_2,This is a pair of scissors. +scissors/scissors_2,These are generic use scissors with orange handles. +soda_can/soda_can_3,This is a can of Mountain Dew. +soda_can/soda_can_3,This is a can filled with a type of lemon/lime soda. +soda_can/soda_can_3,A can of Mt. Dew +soda_can/soda_can_3,A Mountain Dew green soda that has not been opened +soda_can/soda_can_3,A can of soda which looks like dew +lime/lime_4,This is a lime. +lime/lime_4,This is a lime. +lime/lime_4,It's a green lime. +lime/lime_4,This is a lime. +lime/lime_4,This is a lime. +coffee_mug/coffee_mug_6,It's a yellow mug with a textured design around the edge. +coffee_mug/coffee_mug_6,This is a yellow ceramic mug. +coffee_mug/coffee_mug_6,A coffee mug. +coffee_mug/coffee_mug_6,an cup with some leftover a green limedeep inside +coffee_mug/coffee_mug_6,This is a coffee cup. +instant_noodles/instant_noodles_5,This is a package of food. +instant_noodles/instant_noodles_5,This is a package of Ramen soup. +instant_noodles/instant_noodles_5,A package of Ramen noodles. +instant_noodles/instant_noodles_5,The object is an orange package of noodles. +lightbulb/lightbulb_4,This is a light bulb. +lightbulb/lightbulb_4,A light bulb removed from its socket +lightbulb/lightbulb_4,A light bulb. +lightbulb/lightbulb_4,This is a lightbulb. +lightbulb/lightbulb_4,The object is a light bulb. +pitcher/pitcher_1,This object is a little tea kettle for when you make tea. +pitcher/pitcher_1,The object has a handle, a hole in its center and a short mouth outlet. +pitcher/pitcher_1,A pitcher +pitcher/pitcher_1,This is glass pitcher used to pour liquids. +pitcher/pitcher_1,A gravy boat. +stapler/stapler_7,This is a small blue stapler. +stapler/stapler_7,A small blue stapler. +stapler/stapler_7,A baby blue stapler, that is half the size of a regular stapler. +stapler/stapler_7,A stapler +onion/onion_3,This is a yellow onion. +onion/onion_3,This is an onion. +onion/onion_3,This is an onion. This tasty vegetable has a sharp flavor, and us usually cooked. +onion/onion_3,A white onion. +onion/onion_3,an onion +camera/camera_2,It's a black digital camera. +camera/camera_2,This is a camera. +camera/camera_2,This is an electric pencil sharpener. +camera/camera_2,A digital camera. +water_bottle/water_bottle_2,This is a bottle of water. +water_bottle/water_bottle_2,This is a clear bottle of water. +water_bottle/water_bottle_2,The object is a bottle of water with a blue label and white cap. +water_bottle/water_bottle_2,A plastic water bottle. +water_bottle/water_bottle_2,It is a bottle of water, maybe flavored. +orange/orange_2,This is an orange. +orange/orange_2,This is a yellow ball. +orange/orange_2,This yellow fruit is a lemon. Usually cooked into other foods, lemon adds a sharp, sour flavor. +keyboard/keyboard_4,This is a black computer keyboard. +keyboard/keyboard_4,This is a computer keyboard. +keyboard/keyboard_4,It's a black IBM extended computer keyboard. +keyboard/keyboard_4,This is a computer keyboard. +keyboard/keyboard_4,A computer keyboard. +pliers/pliers_5,A pair of pliers. +pliers/pliers_5,It's a pair of needlenose pilers with a blue handle. +pliers/pliers_5,This is a tool called needle nose pliers. It is used to grip or manipulate smaller parts. +pliers/pliers_5,This is blue pliars. +pliers/pliers_5,This is a pair of pliers. +instant_noodles/instant_noodles_7,This is a generic brand of top roman. +instant_noodles/instant_noodles_7,This is a package of food. It has writing on it. +instant_noodles/instant_noodles_7,This is a package of food. +instant_noodles/instant_noodles_7,This is a package of soup. +instant_noodles/instant_noodles_7,A package of noodles. +plate/plate_6,Something that looks like a plate or pie crust +plate/plate_6,This is a pie. Baked in an oven, pies are made of many different foods. +plate/plate_6,This is a plate. +plate/plate_6,An empty dinner plate. +plate/plate_6,This is a brown ceramic plate. +binder/binder_3,This is a black binder. +binder/binder_3,It's a black plastic three ring binder. +binder/binder_3,A school folder. +binder/binder_3,a black folder +binder/binder_3,this is a folder that can be used to put paper in. +soda_can/soda_can_2,This is a can of 7 Up. +soda_can/soda_can_2,This is a can of 7up. +soda_can/soda_can_2,A can of soda. It looks like seven up +soda_can/soda_can_2,This is a can of 7 UP soda. It's green and yellow with a lemon lime flavor. +soda_can/soda_can_2,A can of 7-Up +sponge/sponge_2,A light green colored sponge +sponge/sponge_2,This is a green sponge. +sponge/sponge_2,Green rectangular dish sponge. +sponge/sponge_2,This is a sponge. +sponge/sponge_2,A bright green kitchen sponge. +cap/cap_3,A baseball cap. +cap/cap_3,This is a black baseball cap. +cap/cap_3,This is a black hat. +cap/cap_3,This is a black baseball cap. +cap/cap_3,This looks like a black baseball cap. I think it says "Bulldog" on the bill. +hand_towel/hand_towel_4,This is a towel. +hand_towel/hand_towel_4,This is a folded wash cloth. +hand_towel/hand_towel_4,This is a brown cloth. +hand_towel/hand_towel_4,This is a folded wash rag. +hand_towel/hand_towel_4,A folded towel. +greens/greens_1,A bundle of romaine lettuce with a red twist tie around it. +greens/greens_1,The bunch of lettuce is green. +greens/greens_1,This is lettuce. +greens/greens_1,It's a bunch of salad greens. +greens/greens_1,This is green leaf lettuce. +onion/onion_3,This is an onion. +onion/onion_3,This is an onion. +onion/onion_3,This is an onion. This tasty vegetable has a sharp flavor, and us usually cooked. +onion/onion_3,A white onion. +coffee_mug/coffee_mug_4,This is a coffee mug. +coffee_mug/coffee_mug_4,A coffee mug. +coffee_mug/coffee_mug_4,This is a white coffee mug. +coffee_mug/coffee_mug_4,This is a cup. +coffee_mug/coffee_mug_4,This is a white and blue mug. +ball/ball_5,This is a football. +ball/ball_5,A football +ball/ball_5,It is an inflatable toy football. It is brown and white. +ball/ball_5,A nerf football. +ball/ball_5,This is a fake football. +glue_stick/glue_stick_4,This is a can of spray. +glue_stick/glue_stick_4,This is a gluestick. The glue has a red cap. +glue_stick/glue_stick_4,This is a glue stick. +glue_stick/glue_stick_4,A tube of glue. +glue_stick/glue_stick_4,Small cylinder shaped object that is mostly orangey red with a yellow and blue tag in the center +hand_towel/hand_towel_5,This is a black towel. +hand_towel/hand_towel_5,This is a black towel. +hand_towel/hand_towel_5,This is a black towel. +hand_towel/hand_towel_5,This looks like a black folded blanket. +hand_towel/hand_towel_5,A folded towel. +banana/banana_2,This is a yellow banana. +banana/banana_2,This is a banana. +banana/banana_2,A banana on a plate. +banana/banana_2,A banana is an edible fruit. +banana/banana_2,This is a banana. +greens/greens_3,This is baby bok choy. +greens/greens_3,This is bok choi. +greens/greens_3,Lettuce on a plate. +greens/greens_3,A green leafy vegetable +kleenex/kleenex_1,This is a small square box of tissues. +kleenex/kleenex_1,This is a box of tissues. Tissues are thin, absorbent paper cloths used to clean up after nasal malfunctions. +kleenex/kleenex_1,This is a box of tissues. +kleenex/kleenex_1,A box of kleenex. +kleenex/kleenex_1,This is a box of facial tissue. +potato/potato_5,This is a narrow potato. +potato/potato_5,A brown baking potato. +potato/potato_5,This is a potato. +potato/potato_5,This is a potato. +potato/potato_5,This is a russet baking potato. +food_can/food_can_12,This is a can of soup. +food_can/food_can_12,This is a can. +food_can/food_can_12,This is a can of soup. +food_can/food_can_12,A can of soup. +food_can/food_can_12,This is a can that may contain food. It's commonly called a tin can. +peach/peach_2,An apple. +peach/peach_2,This is a peach. +peach/peach_2,This is a piece of fruit. +peach/peach_2,It's a white donut peach. It is cream and pink colored. +peach/peach_2,This is a peach donut. +food_can/food_can_3,The can has pumpkin pie on it. +food_can/food_can_3,This is a can of pumpkin puree. +food_can/food_can_3,A can of pumpkin pie mix. +food_can/food_can_3,It is a can of evaporated milk. It has a picture of pumpkin pie on it. +food_can/food_can_3,This is a can of soup. +ball/ball_7,The soccer ball is black and white. +ball/ball_7,This is a soccer ball. +ball/ball_7,This is a soccer ball. +ball/ball_7,A nerf soccer ball. +ball/ball_7,This is a small soccer ball toy. +food_box/food_box_2,It's a box of Zatarain's Yellow Rice mix. It's red and white. +food_box/food_box_2,This is a box of Zatarain's yellow rice. +food_box/food_box_2,A BOX OF ZATARAIN'S YELLOW RICE +food_box/food_box_2,A box of yellow rice. +food_box/food_box_2,This is a box of Zatarrain's rice. +ball/ball_3,This is a plastic toy baseball. +ball/ball_3,This is a baseball. +ball/ball_3,A baseball. +ball/ball_3,Not certain? A plush baseball perhaps? +ball/ball_3,Ball s used in ball games. +garlic/garlic_3,A clove of garlic. +garlic/garlic_3,This is a bulb of fresh garlic. +garlic/garlic_3,A bulb of garlic +garlic/garlic_3,This is a bulb of garlic. +food_bag/food_bag_6,A bag of chips. +food_bag/food_bag_6,A bag of Popchips is lying face up on a plate. It is mostly black with white lettering and a picture of the chips on its front. +food_bag/food_bag_6,This is a bag of Pop Chips. +food_bag/food_bag_6,These are a bag of chips. +food_bag/food_bag_6,This is a bag of chips. +dry_battery/dry_battery_1,This is a battery. +dry_battery/dry_battery_1,It's a nine volt battery. It's gold and black. +dry_battery/dry_battery_1,A battery. +dry_battery/dry_battery_1,This is a battery. +dry_battery/dry_battery_1,This is a battery. +apple/apple_5,This is a green apple. +apple/apple_5,This is a green apple. +apple/apple_5,A green apple. +apple/apple_5,This is a granny smith apple. +apple/apple_5,The object is a green apple with the sticker still on. +food_cup/food_cup_3,this is yogurt +food_cup/food_cup_3,This is a container of yogurt. +food_cup/food_cup_3,A container of yogurt. +food_cup/food_cup_3,This looks like a tub of yogurt in an individual size with aluminum foil on top. +food_cup/food_cup_3,A plastic packaged cup of yogurt with a peel-off foil lid. +comb/comb_5,This is a hairbrush. +comb/comb_5,A black hair brush. +comb/comb_5,This is a hair brush. +comb/comb_5,A hair brush with rubber tips. +comb/comb_5,This is a hairbrush. +stapler/stapler_4,This is a stapler. +stapler/stapler_4,A black stapler. +stapler/stapler_4,This is a stapler. +stapler/stapler_4,It's a black stapler. +stapler/stapler_4,This is a stapler. +pear/pear_7,This is an apple. +pear/pear_7,A pear. +pear/pear_7,This is an apple. +pear/pear_7,The object is round, has a stem and is yellow with a hint of red. +dry_battery/dry_battery_6,This is a battery. +dry_battery/dry_battery_6,This is a D sized battery. +dry_battery/dry_battery_6,A battery +dry_battery/dry_battery_6,This is a battery. +dry_battery/dry_battery_6,A battery. +water_bottle/water_bottle_4,A plastic water bottle. +water_bottle/water_bottle_4,A bottle of mineral water +water_bottle/water_bottle_4,This is a bottle of flavored water. +water_bottle/water_bottle_4,This is a bottle of water. +water_bottle/water_bottle_4,It's a bottle of water. It has a blue label with a purple stripe on it. +lightbulb/lightbulb_2,A light bulb. +lightbulb/lightbulb_2,This is a light bulb. +lightbulb/lightbulb_2,This is a light bulb that is not plugged into any light. +lightbulb/lightbulb_2,This is a light bulb. +lightbulb/lightbulb_2,It's a light bulb. +lime/lime_2,This is a lime +lime/lime_2,This appears to be a lime fruit. +lime/lime_2,This is a lime. +lime/lime_2,It's a lime or lemon. +lime/lime_2,It's a lime with a sticker on it. It is mostly green but slightly yellow. +stapler/stapler_6,A black stapler. +stapler/stapler_6,This is a stapler. +stapler/stapler_6,This is a black stapler. +stapler/stapler_6,This is a black stapler. +stapler/stapler_6,This is a black stapler. +banana/banana_4,This is a green banana that is not ready to eat. +banana/banana_4,This is a banana. +banana/banana_4,It's a very green, underripe banana. +banana/banana_4,This is a underripe banana. It is too green still. +banana/banana_4,Green and yellow colored banana or plantain. Curved shape, maybe not ripe yet. +food_bag/food_bag_7,This is a bag of chips. +food_bag/food_bag_7,These are a bag potato chips. +food_bag/food_bag_7,A bag of chips. +food_bag/food_bag_7,A green bag of chips used for snacking. +soda_can/soda_can_2,This is a can of 7 Up. +soda_can/soda_can_2,A can of 7-Up +soda_can/soda_can_2,A can of 7up. +soda_can/soda_can_2,7UP is a citrus soda that is popular in the midwest. +soda_can/soda_can_2,This is 7 UP soda. It has a lemon lime flavor. +coffee_mug/coffee_mug_1,A coffee mug. +coffee_mug/coffee_mug_1,This is a red and white mug. +coffee_mug/coffee_mug_1,This is a coffee cup. +coffee_mug/coffee_mug_1,This is a red and white coffee mug. +coffee_mug/coffee_mug_1,It's a mug with a red and grey label. +food_bag/food_bag_5,A pack of some chips like snack +food_bag/food_bag_5,This bag holds potato chips, a snack food. Humans eat snack foods as part of their diet. +food_bag/food_bag_5,It's a bag of Market Pantry potato chips. +food_bag/food_bag_5,This is a bag of chips. +food_bag/food_bag_5,A bag of chips. +toothpaste/toothpaste_1,A tube of toothpaste. +toothpaste/toothpaste_1,Toothpaste is a paste or gel dentifrice used with a toothbrush to clean and maintain the aesthetics and health of teeth. +toothpaste/toothpaste_1,This is a tube of Colgate toothpaste. +toothpaste/toothpaste_1,This is toothpaste . +toothpaste/toothpaste_1,This is a tube of Colgate tooth paste. +lime/lime_4,This is a lime. +lime/lime_4,a green lime +lime/lime_4,A green lime. +lime/lime_4,This is a lime. +banana/banana_2,This is a banana that is mostly yellow. +banana/banana_2,This is a yellow banana. +banana/banana_2,This is a banana. +banana/banana_2,This is a long banana. +banana/banana_2,a single ripe banana +comb/comb_5,A hair brush. +comb/comb_5,This is a black hair brush +comb/comb_5,This is a hairbrush. +comb/comb_5,This is a hair brush. +comb/comb_5,It's a black and silver hairbrush with stiff bristles. +bell_pepper/bell_pepper_3,It is a bell pepper that is all red with a thick green stem. +bell_pepper/bell_pepper_3,This is a vegetable called a red pepper. It can be eaten raw or cooked. +bell_pepper/bell_pepper_3,A red pepper. +bell_pepper/bell_pepper_3,This is a red bell pepper. +bell_pepper/bell_pepper_3,This is a red bell pepper. +flashlight/flashlight_1,This is a flashlight. +flashlight/flashlight_1,A black flashlight. +flashlight/flashlight_1,This is a flashlight. +flashlight/flashlight_1,A black flashlight with a handle strap. +flashlight/flashlight_1,This is a flashlight. +binder/binder_2,A purple plastic folder. +binder/binder_2,A school folder. +binder/binder_2,This is a purple folder. +binder/binder_2,It's a purple three ring binder. +cell_phone/cell_phone_3,This is a cell phone. It features a flip design. +cell_phone/cell_phone_3,This is a closed blue and silver flip phone. +cell_phone/cell_phone_3,Here is a picture of an old cell phone. It is a flip phone. +greens/greens_1,Greens is a leaf vegetable. +greens/greens_1,Green leaf lettuce on a plate. +greens/greens_1,This green leafy mass looks to be a vegetable. It's either celery or a broccoli. +greens/greens_1,This is green leaf lettuce. +greens/greens_1,This is lettuce. +plate/plate_2,Plate a broad, mainly flat vessel commonly used to serve food. +plate/plate_2,This is a blue and white-colored plate. +plate/plate_2,An empty dinner plate. +plate/plate_2,This is a plate. +plate/plate_2,This is a plate. +sponge/sponge_11,This is a scrubber used to clean pans and dishes. +sponge/sponge_11,A kitchen sponge. +peach/peach_2,An apple. +peach/peach_2,This is a doughnut peach. +peach/peach_2,This is a piece of fruit. +peach/peach_2,This is a piece of fruit. +food_cup/food_cup_2,A container of yogurt. +food_cup/food_cup_2,This is a container of yogurt. +food_cup/food_cup_2,This is a single serve yogurt container. +food_cup/food_cup_2,A plastic cup of yogurt with a silver foil lid. +food_cup/food_cup_2,a single serving cup of frozen yogurt. It looks like yoplait brand +lemon/lemon_5,This is a yellow lemon. +lemon/lemon_5,This is a lemon. +lemon/lemon_5,This is a lemon. +lemon/lemon_5,A yellow lemon. +lemon/lemon_5,This is a fresh lemon. +onion/onion_5,A purple onion. +onion/onion_5,This is a red onion. +onion/onion_5,This is an onion. +pear/pear_4,This is a pear. +pear/pear_4,A pear. +pear/pear_4,this is a pear +pear/pear_4,a golden pear +pear/pear_4,This is a pear. +cell_phone/cell_phone_1,This is a silver mobile phone. +cell_phone/cell_phone_1,An old slim style mobile phone +cell_phone/cell_phone_1,This is a mobile phone. +cell_phone/cell_phone_1,A old cell phone used to make calls and text. +cell_phone/cell_phone_1,It is a silver cell phone with a black border around the screen. +onion/onion_6,This is a red onion. +onion/onion_6,This is an onion. +onion/onion_6,A purple onion. +onion/onion_6,This is a red onion. +food_cup/food_cup_4,a cup of yogart +food_cup/food_cup_4,This is a Chobani peach flavored yogurt. +food_cup/food_cup_4,This is a container of food. +food_cup/food_cup_4,A container of yogurt. +food_cup/food_cup_4,This is a container of Chobani greek yogurt. +peach/peach_1,This is a peach. +peach/peach_1,This is a red peach. +peach/peach_1,a peach +peach/peach_1,This is a white peach. +peach/peach_1,A peach. +comb/comb_3,A hair brush. +comb/comb_3,This is a hair brush. It is used to de-tangle a person's hair. +comb/comb_3,This a black hairbrush. +comb/comb_3,It's a black hairbrush with a green stripe. +comb/comb_3,This is a hair brush. +banana/banana_1,This is a banana. +banana/banana_1,This is a yellow, ripe banana about 6 inches long. +banana/banana_1,A banana on a plate. +banana/banana_1,A very yellow banana. +banana/banana_1,This is a yellow banana. +flashlight/flashlight_4,This is a flashlight. +flashlight/flashlight_4,This is a flashlight. +flashlight/flashlight_4,This is black flashlight. It looks strong. +flashlight/flashlight_4,A black flashlight. +flashlight/flashlight_4,It's a black flashlight with a yellow switch. +binder/binder_1,This is a red binder. +binder/binder_1,A school folder. +binder/binder_1,This is a binder. +binder/binder_1,This is a red binder used to protect paper. There are metal rings on the inside that when separated, that you put through the holes on notebook paper in order to secure. +binder/binder_1,This is a one inch red binder. It is used to keep loose papers bound together. +food_box/food_box_5,It's a box of crackers. It's red and white with a green stripe. +food_box/food_box_5,This is a box of food. +food_box/food_box_5,a box of something +food_box/food_box_5,This is a box of sugar substitute. +pear/pear_3,This is a pear. +pear/pear_3,This is a brown pear. +pear/pear_3,A pear. +pear/pear_3,It's a brown and green pear with a produce sticker. +pear/pear_3,This is a pear. +onion/onion_3,The object is hard, white and round with a point at the top. +onion/onion_3,This looks like an onion, it has a tan skin. +onion/onion_3,This is an onion. +onion/onion_3,a white or yellow onion +onion/onion_3,This is a yellow & brown medium sized onion. +pear/pear_8,This is an apple. +pear/pear_8,It is a yellow apple. It is round. +pear/pear_8,This is a sweet fruit called a green apple. It can be eaten raw or cooked, or made into apple pie! +pear/pear_8,A yellow apple. +pear/pear_8,This is a yellow apple. +calculator/calculator_4,This is a simple digital calculator. Basic math problems can be solved using this electronic device. +calculator/calculator_4,This is a calculator. +calculator/calculator_4,This is a green calculator. It has small buttons. +calculator/calculator_4,This is a lime-green calculator. +calculator/calculator_4,A calculator. +mushroom/mushroom_1,A clove of garlic. +mushroom/mushroom_1,This is a mushroom. +mushroom/mushroom_1,This is a mushroom. +sponge/sponge_6,A kitchen sponge. +sponge/sponge_6,There is a dish sponge that is yellow on top and pink on the bottom. +sponge/sponge_6,This is a sponge. +sponge/sponge_6,This is a sponge. +sponge/sponge_6,This is a dish sponge. +stapler/stapler_7,A mini blue stapler. +stapler/stapler_7,A blue stapler. +stapler/stapler_7,This is a small blue stapler. +ball/ball_6,This is an orange and black small squishy ball. +ball/ball_6,This is a basketball. +ball/ball_6,This is a fake orange and black basketball. +ball/ball_6,A ball +ball/ball_6,A children's play-ball. +peach/peach_2,This is a peach. +peach/peach_2,This is a piece of fruit. +peach/peach_2,This is a doughnut peach. +peach/peach_2,An apple. +peach/peach_2,A peach is a soft, juicy and fleshy stone fruit. +orange/orange_2,This is a piece of fruit. +orange/orange_2,This is an apple. +orange/orange_2,This is an orange. +orange/orange_2,An orange. +plate/plate_5,This is an all-white plate. +plate/plate_5,a white plate +plate/plate_5,This is a plate. +plate/plate_5,This is a ceramic plate. +plate/plate_5,An empty dinner plate. +tomato/tomato_7,This is a tomato. +tomato/tomato_7,This looks like a tomato. It is red. +tomato/tomato_7,This is a tomato. +tomato/tomato_7,A red tomato. +tomato/tomato_7,This is a tomato. +food_can/food_can_6,A can of soup. +food_can/food_can_6,This is a red and white can of Campbell's soup. +food_can/food_can_6,This is a can of food. Some preparation is required before this food can be eaten. +food_can/food_can_6,This is a can of soup. +food_can/food_can_6,This is a can of soup. +instant_noodles/instant_noodles_1,A package of noodles. +instant_noodles/instant_noodles_1,This is a package of food. +instant_noodles/instant_noodles_1,This is a pack of ramen. +instant_noodles/instant_noodles_1,This is a package of Ramen soup. +flashlight/flashlight_3,This is a flashlight, it's made of blue plastic with black accents. +flashlight/flashlight_3,A blue flash light. +flashlight/flashlight_3,This is a blue flashlight. It is a black rim and a black button accenting the blue. +flashlight/flashlight_3,This is a flashlight. +flashlight/flashlight_3,This is a flashlight that provides light to anything you need to shine light on. +food_can/food_can_12,A tin can of food. +food_can/food_can_12,This is a can of soup. +food_can/food_can_12,This is a can of food. +food_can/food_can_12,This is a can of food. +food_can/food_can_12,A can of soup. +greens/greens_2,This is lettuce. +greens/greens_2,A bundle of fresh parsley. +greens/greens_2,This is a bunch of parsley. +greens/greens_2,This is fresh kale. +food_can/food_can_4,This is a can of soup. +food_can/food_can_4,This is a can of food. +food_can/food_can_4,This is a can of soup. +food_can/food_can_4,A can of condensed milk. +food_can/food_can_4,This is a can. +scissors/scissors_1,Scissors are used for cutting various thin materials, such as paper, cardboard, metal foil, cloth, rope, and wire. +scissors/scissors_1,This is a pair of scissors. +scissors/scissors_1,This is a pair of scissors. +scissors/scissors_1,This is silver and orange scissors. +scissors/scissors_1,Scissors with a gray handle. +notebook/notebook_1,It's a spiral bound notebook with a red cover. +notebook/notebook_1,This is a red single subject notebook. +notebook/notebook_1,This is a notebook. +notebook/notebook_1,A writing notebook. +notebook/notebook_1,This is a notebook with blank paper. +food_can/food_can_9,It's a can of Spaghettios. It is white and red with cartoon characters on the front. +food_can/food_can_9,This is a can of soup. +food_can/food_can_9,A can of Spaghetti O's. +food_can/food_can_9,A Sealed Tin Cylinder That Is Used To Package Food Products. +food_can/food_can_9,This is a can of SpaghettiO's. They are a children's pasta in a can. +comb/comb_1,This is a black brush. +comb/comb_1,A hair brush. +comb/comb_1,A hair brush with a black head and silver handle. The bristles are covered with colored tops. +comb/comb_1,This is a hair brush. +comb/comb_1,This is a hairbrush. +keyboard/keyboard_5,a computer keypad +keyboard/keyboard_5,This is a black computer keyboard. +keyboard/keyboard_5,This is a black keyboard. +keyboard/keyboard_5,This is a computer keyboard. +keyboard/keyboard_5,A computer keyboard. +rubber_eraser/rubber_eraser_3,This is an eraser. +rubber_eraser/rubber_eraser_3,Eraser is used for removing writing from paper or skin. +rubber_eraser/rubber_eraser_3,A pencil eraser. +rubber_eraser/rubber_eraser_3,This is an eraser. +kleenex/kleenex_3,This is a box of tissues. +kleenex/kleenex_3,A box of kleenex. +kleenex/kleenex_3,This is a box of facial tissue. +kleenex/kleenex_3,This is a rectangular box of tissues. +bowl/bowl_3,This is a white bowl. +bowl/bowl_3,Plastic bowls are easy to clean. +bowl/bowl_3,This is a white ceramic bowl. +bowl/bowl_3,An empty dinner bowl. +bowl/bowl_3,This is a bowl. +mushroom/mushroom_1,The object is a old ball. +water_bottle/water_bottle_9,The water bottle is purple. +water_bottle/water_bottle_9,This is a water container. +water_bottle/water_bottle_9,This is a water bottle. +water_bottle/water_bottle_9,A plastic water bottle. +water_bottle/water_bottle_9,This is a purple reusable water bottle. +marker/marker_9,This is a yellow highlighter. +marker/marker_9,Marker with yellow body and black cap +marker/marker_9,A magic marker. +marker/marker_9,This is a yellow highlighter. +marker/marker_9,This is a yellow marker with a black cap. +notebook/notebook_2,This is a yellow-spiraled notebook. +notebook/notebook_2,A writing notebook. +notebook/notebook_2,This is a yellow notebook. +notebook/notebook_2,This is a spiral bound notebook. +notebook/notebook_2,Note Book is used to wright or drawing purposes. +kleenex/kleenex_4,This is a box of facial tissue. +kleenex/kleenex_4,This is a box of tissues. +kleenex/kleenex_4,there is an open box of kleenex brand tissue. +kleenex/kleenex_4,A box of kleenex. +kleenex/kleenex_4,This is a box of tissues. +lemon/lemon_2,A yellow lemon. +lemon/lemon_2,This is a lemon. It is a sour fruit that is used to flavor foods, but is rarely eaten alone. +lemon/lemon_2,This is a lemon. It's a sour fruit. +lemon/lemon_2,This is a lemon. +lemon/lemon_2,This is a yellow lemon. +notebook/notebook_1,This is a 70 page notebook, college rule, although you can get it in wide rule as well, most people use it for school +notebook/notebook_1,This is a notebook. +notebook/notebook_1,This is a red-spiraled notebook. +notebook/notebook_1,A writing notebook. +notebook/notebook_1,This is a red spiral bound notebook. +cap/cap_2,This is a camouflage baseball cap. +cap/cap_2,This is a green and olive camouflage baseball cap. +cap/cap_2,This is a camoflauge ballcap. +cap/cap_2,This is a baseball cap in camo print. +cap/cap_2,An army cap. +mushroom/mushroom_3,A chicken drumstick. +onion/onion_2,It's a medium size white onion. +onion/onion_2,This is an onion. +onion/onion_2,A white onion. +onion/onion_2,It is a white onion. It is round. +onion/onion_2,The object is a white onion. +food_can/food_can_1,This is a can. +food_can/food_can_1,This is a can of food. +food_can/food_can_1,A can of condensed milk. +food_can/food_can_1,This is a can. The can is shiny. +sponge/sponge_7,A kitchen sponge. +sponge/sponge_7,a cleaning scrub sponge. +sponge/sponge_7,This is a sponge. +sponge/sponge_7,This is a sponge, it's green and yellow. It is used to clean dishes. +sponge/sponge_7,This is a sponge. +bell_pepper/bell_pepper_6,A fresh green bell pepper. +bell_pepper/bell_pepper_6,This is a green pepper. +bell_pepper/bell_pepper_6,A green bell pepper +bell_pepper/bell_pepper_6,A green pepper. +bell_pepper/bell_pepper_6,This is a green bell pepper. +peach/peach_2,This is a doughnut peach. +peach/peach_2,A peach. +peach/peach_2,A peach that is past ripe. +peach/peach_2,An apple that is part yellow and part light red. +peach/peach_2,This is a piece of fruit. +stapler/stapler_1,This is a stapler. +stapler/stapler_1,A black stapler. +stapler/stapler_1,This is a stapler. +stapler/stapler_1,It's a black and grey stapler. +shampoo/shampoo_6,A bottle of shampoo. +shampoo/shampoo_6,This is a bottle of shampoo. +shampoo/shampoo_6,This is body wash. +shampoo/shampoo_6,bottle of lotion +shampoo/shampoo_6,This is a bottle with a green lid and yellow bottom that could have lotion in it. +food_box/food_box_7,This is an unopened box of Wheat Thins. +food_box/food_box_7,This is a yellow box of Wheat Thins. +food_box/food_box_7,This is a box of Wheat Thins. +food_box/food_box_7,A box of Wheat Thins. +food_box/food_box_7,It is a box of wheat thins. The box has 6 sides and is mostly yellow with some green. +food_box/food_box_2,This is a box of Zatarrain's rice. +food_box/food_box_2,This is a box of instant rice. +food_box/food_box_2,A box of yellow rice. +food_box/food_box_2,This is a box of rice +pitcher/pitcher_3,This is a green vase. +pitcher/pitcher_3,A green vase. +pitcher/pitcher_3,It's a clay vase with a brown green glaze. +pitcher/pitcher_3,This is a pitcher. +marker/marker_7,This is a pink marker with a black cap. +marker/marker_7,This is a highlighter. +marker/marker_7,It's a pink highlighter marker. +marker/marker_7,A purple marker with a black cap +marker/marker_7,This is a pink highlighter. +food_box/food_box_8,A package of crackers. +food_box/food_box_8,a blue box and it looks like it may contain cracker snacks +food_box/food_box_8,This is a box of crackers. +food_box/food_box_8,This is a box of snack crackers. +lemon/lemon_6,A lemon +lemon/lemon_6,This is a lemon. +lemon/lemon_6,This is a lemon. +lemon/lemon_6,This is a yellow lemon. +lemon/lemon_6,A yellow lemon. +marker/marker_1,a red colored sharpie +marker/marker_1,This is a red expo marker. +marker/marker_1,This is a red dry erase marker. +marker/marker_1,A magic marker. +marker/marker_1,It's a red Expo brand dry erase marker. +coffee_mug/coffee_mug_4,A coffee mug. +coffee_mug/coffee_mug_4,This is a mug. +coffee_mug/coffee_mug_4,This is a coffee cup. +coffee_mug/coffee_mug_4,This is a white coffee mug that has a blue rim. +coffee_mug/coffee_mug_4,A white empty cup +banana/banana_1,This is a banana. +banana/banana_1,This is a yellow banana. +banana/banana_1,A banana on a plate. +banana/banana_1,This is a banana. +banana/banana_1,A small ripe banana. +toothpaste/toothpaste_5,A tube of toothpaste. +toothpaste/toothpaste_5,This a tube of Crest toothpaste. +toothpaste/toothpaste_5,This is a tube of toothpaste. With a small brush, this paste is used to clean a human's teeth. +toothpaste/toothpaste_5,This is a tube of Crest tooth paste. +toothpaste/toothpaste_5,This is a tube of toothpaste. +pear/pear_3,This is a pear. +pear/pear_3,This is a brown pear. +pear/pear_3,This is a piece of fruit known as a pear. +pear/pear_3,This red pear is a tasty variety. +pear/pear_3,This is a sweet fruit called a pear. It can be eaten raw or cooked. +shampoo/shampoo_3,This is a bottle of shampoo. +shampoo/shampoo_3,A bottle of something which looks like shampoo +shampoo/shampoo_3,It's a bottle of shampoo. The liquid inside is lavender. +shampoo/shampoo_3,A bottle of shampoo. +shampoo/shampoo_3,This os a bottle of shampoo. +food_bag/food_bag_8,This is a bag of Sun Chips. It is green. +food_bag/food_bag_8,This is a bag of sunchips. +food_bag/food_bag_8,A bag full of crunchy food that is flavored. +food_bag/food_bag_8,This is a bag of Sun Chips. +food_bag/food_bag_8,This is a bag of Sun Chips. +toothbrush/toothbrush_4,A white and purple toothbrush. +toothbrush/toothbrush_4,This is a tooth brush. +toothbrush/toothbrush_4,This is a tooth brush. When used with toothpaste, it cleans a human's teeth. +toothbrush/toothbrush_4,This is a purple toothbrush. +toothbrush/toothbrush_4,This is a purple and white toothbrush. +kleenex/kleenex_4,This is a box of tissues. +kleenex/kleenex_4,This box holds thin paper tissues. Tissue is used to clean up after sneezes or other nasal malfunctions. +kleenex/kleenex_4,This is a box of facial tissue. +kleenex/kleenex_4,A box of kleenex. +kleenex/kleenex_4,This looks like a box of Kleenex tissues; the box pattern is a sort of grey feathered background. +onion/onion_1,Looks to be one clove of garlic. +onion/onion_1,It's a white onion. +onion/onion_1,This is a mushroom. +onion/onion_1,A white onion. +cereal_box/cereal_box_4,It's a box of Raisin Bran Crunch. It's mostly blue and purple. +cereal_box/cereal_box_4,A blue cereal box. The cereal is Raisin Bran Crunch. +cereal_box/cereal_box_4,This is a box of Raisin Bran Crunch cereal. +cereal_box/cereal_box_4,This is a box of cereal. +cereal_box/cereal_box_4,This is a box of raisin bran crunch. +peach/peach_1,A peach. +peach/peach_1,a peach +peach/peach_1,This is a nectarine. +peach/peach_1,This is a piece of fruit. +peach/peach_1,This is a peach +onion/onion_1,A small white unpeeled onion. +onion/onion_1,This is an onion. +onion/onion_1,A white onion. +calculator/calculator_3,This is a calculator. +calculator/calculator_3,A white caculator with black keys +calculator/calculator_3,It's a white calculator with black keys. +calculator/calculator_3,This is a calculator. +calculator/calculator_3,A calculator. +toothbrush/toothbrush_4,LONG AND WITH PURPLE AND WHITE BRISTLES. HANDLE IS LILAC AND WHITE +toothbrush/toothbrush_4,A purple toothbrush. +toothbrush/toothbrush_4,This is a purple and white toothbrush. +toothbrush/toothbrush_4,This is a toothbrush. +toothbrush/toothbrush_4,This is a toothbrush. +kleenex/kleenex_3,This is a box of tissues. +kleenex/kleenex_3,This is a box of tissues. +kleenex/kleenex_3,A box of kleenex. +kleenex/kleenex_3,This is a box of facial tissue. +kleenex/kleenex_3,Tissues can be used to dry tears, or blow your nose. +toothbrush/toothbrush_2,A toothbrush. +toothbrush/toothbrush_2,This is a toothbrush +toothbrush/toothbrush_2,The object is a small white and green toothbrush. +toothbrush/toothbrush_2,A white and lime green toothbrush laying face up on a table. +toothbrush/toothbrush_2,This is a toothbrush. +marker/marker_9,A magic marker. +marker/marker_9,This is a marker for a dry-erase board. +marker/marker_9,this is a green marker. this looks like a hi lighter +marker/marker_9,This is a yellow highlighter. +marker/marker_9,It's a yellow highlighter marker. +lemon/lemon_2,A yellow lemon. +lemon/lemon_2,This is a lemon. +lemon/lemon_2,It's a lemon with a sticker on it. +lemon/lemon_2,A ripe, yellow lemon. +lemon/lemon_2,This is a lemon. +lightbulb/lightbulb_3,This is a light bulb. +lightbulb/lightbulb_3,This is a light bulb. +lightbulb/lightbulb_3,It's a light bulb. +lightbulb/lightbulb_3,A light bulb. +lightbulb/lightbulb_3,This is a lightbulb used to see. +tomato/tomato_3,This is a tomato. +tomato/tomato_3,A red tomato. +tomato/tomato_3,This is a tomato. +tomato/tomato_3,This is a red tomato with a green stem. +tomato/tomato_3,This is a tomato. +tomato/tomato_8,This is a tomato. The tomato is missing its stem. +tomato/tomato_8,A red tomato. +tomato/tomato_8,This is a red tomato. +tomato/tomato_8,The object is large red tomato. +tomato/tomato_8,This is a tomato. +coffee_mug/coffee_mug_2,This is a coffee mug. +coffee_mug/coffee_mug_2,This is a coffee mug. +coffee_mug/coffee_mug_2,This is a mug. +coffee_mug/coffee_mug_2,This is a gold colored coffee mug. +coffee_mug/coffee_mug_2,A coffee mug. +garlic/garlic_4,A clove of garlic. +kleenex/kleenex_4,It's a box of Kleenex with grey designs on it. +kleenex/kleenex_4,A box of kleenex. +kleenex/kleenex_4,This is a box of tissues. +kleenex/kleenex_4,A gray rectangular box of tissue. +kleenex/kleenex_4,This is a box of facial tissue. +food_bag/food_bag_4,A package of Mini Oreos. +food_bag/food_bag_4,A bag of mini oreos +food_bag/food_bag_4,This is a bag of Mini Oreo cookies. +food_bag/food_bag_4,A bag or Oreo mini's. The bag is laying flat. +food_bag/food_bag_4,This is a bag of mini Oreo cookies. +keyboard/keyboard_5,This is a black computer keyboard. +keyboard/keyboard_5,This is a computer keyboard. +keyboard/keyboard_5,Black Dell Keyboard on a white surface. Black keys with white letters and a white base. +keyboard/keyboard_5,It's a black and white computer keyboard. The brand is Dell. +keyboard/keyboard_5,This is a computer keyboard. +cereal_box/cereal_box_3,This is a box of Special K breakfast cereal +cereal_box/cereal_box_3,This is a box of cereal. +cereal_box/cereal_box_3,This is a box of Kellogg's cereal. +cereal_box/cereal_box_3,This is Special K cereal. It's healthy for you. +cereal_box/cereal_box_3,A box of cereal. +calculator/calculator_5,It's a silver calculator with white and grey buttons. +calculator/calculator_5,This is a calculator. +calculator/calculator_5,This is a calculator. It helps with math. +calculator/calculator_5,A calculator. +calculator/calculator_5,A calculator +sponge/sponge_8,This is a dish sponge. One side of this dish sponge is blue, and the other is yellow. +sponge/sponge_8,a blue sponge +sponge/sponge_8,This is a sponge. +sponge/sponge_8,A kitchen sponge. +sponge/sponge_8,It's a sponge. +shampoo/shampoo_4,It's a white bottle of conditioner with a silver cap. +shampoo/shampoo_4,A white plastic bottle with a gray lid. +shampoo/shampoo_4,This is a bottle of shampoo or conditioner. +shampoo/shampoo_4,A bottle of shampoo. +shampoo/shampoo_4,This looks like the back of a shampoo bottle. +bowl/bowl_3,This is a white bowl. +bowl/bowl_3,a bowl of milk served at the table +bowl/bowl_3,a bowl with water in it +bowl/bowl_3,This is a bowl. +bowl/bowl_3,An empty dinner bowl. +marker/marker_4,A green and black marker. +marker/marker_4,This is an ink pen. +marker/marker_4,A green marker. +marker/marker_4,The marker is green. +marker/marker_4,A magic marker. +onion/onion_1,It's a white onion. +onion/onion_1,A white onion. +onion/onion_1,a bulb of garlic +onion/onion_1,This is a white onion. +onion/onion_1,This is an onion. +flashlight/flashlight_1,This is a flashlight. +flashlight/flashlight_1,This is a black flashlight with a black cord attached to the bottom. +flashlight/flashlight_1,A black flashlight. +flashlight/flashlight_1,A torch is a stick with combustible material at one end, which is ignited and used as a light source. +flashlight/flashlight_1,This is a black flash light. +hand_towel/hand_towel_1,A folded towel. +hand_towel/hand_towel_1,This is a white towel. +hand_towel/hand_towel_1,This is a towel. +hand_towel/hand_towel_1,This is a white towel placed on a plate. +hand_towel/hand_towel_1,This is a soft, absorbent cloth called a towel. Towels are used to dry water from people's hands and other items. +notebook/notebook_1,This is a spiral bound notebook. +notebook/notebook_1,This is a red-spiraled notebook. +notebook/notebook_1,This is a red notebook. +notebook/notebook_1,This notebook contains 70 pages of lined paper. +notebook/notebook_1,A writing notebook. +food_bag/food_bag_3,A bag of Snyder's pretzels. +food_bag/food_bag_3,This is a bag of pretzel snaps. +food_bag/food_bag_3,It's a bag of Synder's Pretzel Snaps. It's brown and red. +food_bag/food_bag_3,This is a bag of pretzels. +food_bag/food_bag_3,This is a bag filled with food that is crunchy and salty. +water_bottle/water_bottle_6,this is a clear water bottle with a blue cap. +water_bottle/water_bottle_6,A plastic water bottle. +water_bottle/water_bottle_6,This is a bottle of water. +water_bottle/water_bottle_6,This is a plastic bottle of water. +water_bottle/water_bottle_6,This is a plastic bottle. It looks to be holding water, but can be re-purposed many times. +food_box/food_box_5,A box of crackers. +food_box/food_box_5,This is a box of food ready to be made. +food_box/food_box_5,This is a box of food. +food_box/food_box_5,This is a box of crackers. +kleenex/kleenex_2,This is a box of tissues. +kleenex/kleenex_2,It's a box of tissues. +kleenex/kleenex_2,It's a box of Kleenex. It has pink designs on it. +kleenex/kleenex_2,This is a box of facial tissue. +kleenex/kleenex_2,A box of facial tissue or kleenex. +plate/plate_1,An empty dinner plate. +plate/plate_1,This is a green plate with white paste on it. +plate/plate_1,It's a light yellow plate. +bowl/bowl_6,A blue and white ceramic bowl with floral designs on inside of bowl. +bowl/bowl_6,This is a ceramic bowl. The bowl has a floral design. +bowl/bowl_6,An empty dinner bowl. +bowl/bowl_6,This is a bowl. +bowl/bowl_6,This is a kitchen bowl for eating food. +bell_pepper/bell_pepper_2,This is some sort of yellow fruit or vegetable, it's hard to tell but it might be a lemon. +bell_pepper/bell_pepper_2,Seems to be some sort of fruit, perhaps a deformed orange? +bell_pepper/bell_pepper_2,A yellow pepper. +garlic/garlic_6,This is an onion. +garlic/garlic_6,This is a head of garlic. +shampoo/shampoo_6,A bottle of some toiletry. it looks like suave brand +shampoo/shampoo_6,The object is a shampoo bottle. It is tropical and the bran is Suave. +shampoo/shampoo_6,This is a bottle of body wash. +shampoo/shampoo_6,A bottle of shampoo. +shampoo/shampoo_6,This is a bottle of shampoo or other hair product. +food_bag/food_bag_3,This is a bag of snack food. Humans eat snack foods as part of their diet. +food_bag/food_bag_3,This is a bag of pretzels. +food_bag/food_bag_3,This is a bag of pretzels. +food_bag/food_bag_3,This is a bag of Snyder's pretzel snaps. +food_bag/food_bag_3,A bag of Snyder's pretzels. +calculator/calculator_3,This is a calculator. +calculator/calculator_3,This is a calculator. +calculator/calculator_3,This is a calculator. +calculator/calculator_3,This is a black and white calculator. +calculator/calculator_3,It's a white calculator with black buttons. +garlic/garlic_4,A clove of garlic. +garlic/garlic_4,looks like a twin onion +lemon/lemon_1,The lemon is a species of small evergreen tree in the flowering plant. +lemon/lemon_1,This is a tart fruit called a lemon. It can be eaten raw or cooked. +lemon/lemon_1,This is a lemon. +lemon/lemon_1,This is a lemon. +lemon/lemon_1,A yellow lemon. +orange/orange_4,This is an orange. +orange/orange_4,This is an orange. +orange/orange_4,This is an orange. +orange/orange_4,An orange. +marker/marker_5,A magic marker. +marker/marker_5,this could be in exercise tool +marker/marker_5,This is a pen or marker. +potato/potato_6,A russet potato lying on its side, it is roughly tubular in shape and brown in color. +potato/potato_6,This is a potato. +potato/potato_6,This is a potato. +potato/potato_6,This looks like a rather large, regular potato. +potato/potato_6,A large baking potato. +bell_pepper/bell_pepper_1,This is a red bell pepper with a green stem. +bell_pepper/bell_pepper_1,An orange pepper. +bell_pepper/bell_pepper_1,This is a red bell pepper. +bell_pepper/bell_pepper_1,It's a red bell pepper. +bell_pepper/bell_pepper_1,This is a red bell pepper. +food_can/food_can_9,This is a can of food. +food_can/food_can_9,This can of soup has Belle on it. +food_can/food_can_9,This is a can of soup. +food_can/food_can_9,A can of Spaghetti O's. +food_can/food_can_9,This is a can of pasta. +sponge/sponge_8,This is a dish sponge. +sponge/sponge_8,It's a yellow sponge with a blue scrubbing surface. +sponge/sponge_8,This is a sponge. +sponge/sponge_8,This is a sponge. +sponge/sponge_8,A sponge with blue on top +cell_phone/cell_phone_2,A cell phone. +cell_phone/cell_phone_2,This is a phone. +cell_phone/cell_phone_2,This is a mobile or cordless phone. +cell_phone/cell_phone_2,This is a Nokia cell phone. People used to joke about how these were unbreakable. +cell_phone/cell_phone_2,an old mobile phone +pliers/pliers_5,This is a plier. +pliers/pliers_5,A pair of pliers with dark blue hand grips. +pliers/pliers_5,a pair of needle nose pilars +pliers/pliers_5,This is a pair of pliers. +pliers/pliers_5,These are silver pliers with dark grips on the handles. +soda_can/soda_can_4,This is a can of Coca-Cola. +soda_can/soda_can_4,A can of coca cola. It is labelled Vanilla zero +soda_can/soda_can_4,This is a can of soda. +soda_can/soda_can_4,This is a can of Vanilla Coca Cola. +soda_can/soda_can_4,The object is a black Vanilla coke zero can. +pitcher/pitcher_3,This is a pitcher of water. +pitcher/pitcher_3,This is a green vase. +pitcher/pitcher_3,This is a vase. +pitcher/pitcher_3,This is a green ceramic pitcher. +pitcher/pitcher_3,A green vase. +plate/plate_2,This is a blue and cream colored plate. +plate/plate_2,This is a plate. +plate/plate_2,This is a plate. +plate/plate_2,This is a plate. +plate/plate_2,An empty dinner plate. +coffee_mug/coffee_mug_1,This is a coffee mug. +coffee_mug/coffee_mug_1,A red, white and green coffee mug. +coffee_mug/coffee_mug_1,This is a red and white mug. +coffee_mug/coffee_mug_1,It's a white mug with a red and grey design on it. +coffee_mug/coffee_mug_1,A coffee mug. +shampoo/shampoo_4,a bottle of lotion +shampoo/shampoo_4,This is a bottle of shampoo. +shampoo/shampoo_4,This is a bottle of shampoo. +shampoo/shampoo_4,It's a bottle of hair conditioner. It's white with a silver cap. +shampoo/shampoo_4,This is the backside of a shampoo or a body cleanser. +marker/marker_1,This glue stick holds paper glue. Applied to one page of paper, and it can stick to another surface for a while. +marker/marker_1,This is a glue pen. +marker/marker_1,A magic marker. +marker/marker_1,This is a red marker to be used on a dry erase board. +marker/marker_1,This is a red expo marker. +tomato/tomato_4,A red tomato. +tomato/tomato_4,IT IS A RED VINE TOMATOE +tomato/tomato_4,This is a tomato. +tomato/tomato_4,This is a yellow and red tomato. +tomato/tomato_4,This is a tomato. +stapler/stapler_3,A black stapler +stapler/stapler_3,It's a stapler. +stapler/stapler_3,This is a stapler. +stapler/stapler_3,A black stapler. +stapler/stapler_3,This is a stapler. +comb/comb_2,This is a black hair brush. +comb/comb_2,This is a hairbrush. It keeps your hair from getting tangled. +comb/comb_2,A black hair brush. +comb/comb_2,This is a hairbrush. +comb/comb_2,This is a hair brush. +marker/marker_7,A magic marker. +marker/marker_7,This is a pink highlighter. +marker/marker_7,This is a marker. +marker/marker_7,This is a purple marker. +soda_can/soda_can_5,This is a can of Diet Dr. Pepper. +soda_can/soda_can_5,This is a can of Diet Dr. Pepper. +soda_can/soda_can_5,A can of Diet Dr. Pepper. +soda_can/soda_can_5,A white aluminum can of diet Dr Pepper. +soda_can/soda_can_5,This is an unopened can of Diet Dr. Pepper. +kleenex/kleenex_1,This is a box of tissues. Tissues are thin, absorbent paper cloths used to clean up after nasal malfunctions. +kleenex/kleenex_1,This is a box of Kleenex. +kleenex/kleenex_1,This is a box of facial tissue. +kleenex/kleenex_1,A box of kleenex. +kleenex/kleenex_1,This is a blue floral tissue box. +plate/plate_1,This is a yellow plate. +plate/plate_1,This is a yellow plate. +plate/plate_1,An empty dinner plate. +camera/camera_1,A black stapler. +camera/camera_1,A black rectangular object. +garlic/garlic_5,An onion which looks like twin +garlic/garlic_5,This is a peach which is a type of fruit. +glue_stick/glue_stick_3,This is a spray can. +glue_stick/glue_stick_3,A stick with a orange lid and blue base that looks like a glue stick. +glue_stick/glue_stick_3,A glue stick with red top +glue_stick/glue_stick_3,This is a glue stick. +apple/apple_3,A yellow apple. +apple/apple_3,This is a sweet fruit called a green apple. It can be eaten raw or cooked into apple pie! +apple/apple_3,This is an apple. +apple/apple_3,This is a yellow apple. +food_jar/food_jar_1,This is a jar of jam or jelly. +food_jar/food_jar_1,This jar has a brown and white lid. +food_jar/food_jar_1,A jar of jelly. +food_jar/food_jar_1,This is a jar of fruit preserves. +food_jar/food_jar_1,a jar of jam. It could be blue berry +calculator/calculator_2,This is a calculator. +calculator/calculator_2,A black calculator. +calculator/calculator_2,This is a simple digital calculator. Basic math problems can be solved using this electronic device. +calculator/calculator_2,It's a black calculator with grey, yellow, and black keys. +calculator/calculator_2,This is a calculator. +plate/plate_2,An empty dinner plate. +plate/plate_2,This is a blue and white plate. +plate/plate_2,It is a white plate with a blue stripe around the rim. +plate/plate_2,This is a white plate. +orange/orange_1,This is an orange, a type of fruit. They are used to make juice. +orange/orange_1,This is an orange. +orange/orange_1,This is an orange. +orange/orange_1,An orange. +orange/orange_1,This is a small orange fruit. +bowl/bowl_6,A blue bowl +bowl/bowl_6,An empty dinner bowl. +bowl/bowl_6,This is a bowl. +bowl/bowl_6,This is a blue, white, green and yellow bowl. +bowl/bowl_6,It's a blue and white bowl with green, blue, and white designs inside of it. +onion/onion_1,This is a white onion. +onion/onion_1,This is a full white onion. +sponge/sponge_2,This is a green sponge. +sponge/sponge_2,It is green color scrubber. +sponge/sponge_2,This is a dish sponge +instant_noodles/instant_noodles_4,The object is a bag of cheetos. It is a type of chips. +instant_noodles/instant_noodles_4,A instant ramen pack +instant_noodles/instant_noodles_4,That is a bag of ramen soup mix. +pliers/pliers_1,These are pliers. +pliers/pliers_1,The above are plyers used as a tool. +pliers/pliers_1,These are pliers with a blue handle. +banana/banana_2,This is a banana that is mostly yellow. +banana/banana_2,The banana is yellow but still has some green. +banana/banana_2,This is a yellow banana. +garlic/garlic_3,This is garlic. +garlic/garlic_3,This is a white onion. +garlic/garlic_7,A clove of garlic. +garlic/garlic_7,This is a garlic clove. You peel off the papery white covering before you cut it up and cook it. +coffee_mug/coffee_mug_5,This is a white ceramic mug. This mug has a thin rim to drink from and has a very smooth surface. +flashlight/flashlight_4,This object has a handle to fit comfortably in one hand, an on-off switch, and it is black. +flashlight/flashlight_4,This is a battery operated flashlight +flashlight/flashlight_4,This is a black flashlight with a yellow switch. +water_bottle/water_bottle_4,It is a bottle of water. It appears to be a flavored variety. +water_bottle/water_bottle_4,This is a bottle of flavored berry water. +onion/onion_6,Here lies a red onion. +shampoo/shampoo_4,That is a bottle of shampoo. +shampoo/shampoo_4,This is a bottle of shampoo. It is blue with a darker blue lid. +sponge/sponge_9,That is a pink pom pom. +peach/peach_2,This apple is sitting upright +peach/peach_2,This is an apple. +instant_noodles/instant_noodles_7,This is a bag of soup mix. +instant_noodles/instant_noodles_7,Here is a package of ramen. +food_cup/food_cup_2,This is a container of yogurt. +food_cup/food_cup_2,It is a bottle with a narrow necked container made of an impermeable shapes and sizes to store liquids like beer . +food_cup/food_cup_2,This is a container of flavored yogurt +bowl/bowl_2,That is a bowl. +bowl/bowl_2,This is an ornate bowl +bowl/bowl_2,This is a light green ceramic bowl with brown edging around the top. +notebook/notebook_1,This is paper notebook used for taking notes in class. +notebook/notebook_1,This is a red notebook. +notebook/notebook_1,This is a seventy-page notebook. It is spiral bound and red. +food_can/food_can_9,This is a can of Spaghettios +food_can/food_can_9,Here we see a can of soup. +food_can/food_can_9,This is a can. The can is metal and very shiny. +soda_can/soda_can_3,soda can is a metal container designed to hold a fixed portion of liquid such as carbonated soft drinks, alcoholic drinks, fruit juices, teas, herbal teas, energy drinks, etc. +soda_can/soda_can_3,This is an aluminum drink can that is unopened. +soda_can/soda_can_3,That is a can of soda. +cereal_box/cereal_box_4,This is a box of cereal +cereal_box/cereal_box_4,That is a box of Raisin Bran Crunch cereal. +lemon/lemon_2,This is the citrus fruit, lemon +lemon/lemon_2,The lemon is a species of small evergreen tree in the flowering plant family Rutaceae. +lemon/lemon_2,This is a bright yellow lemon. It is mostly oblong with a nipple on one end. +pliers/pliers_4,This is a pair of pliars, used to grip small things +pliers/pliers_4,This is a pair of pliers with brown handles. +pliers/pliers_4,These are pliers. +onion/onion_3,Here is an onion. +onion/onion_3,That is a yellow onion. +potato/potato_5,A potato +potato/potato_5,This is a russet potato, used for cooking +potato/potato_5,That is a potato. +food_bag/food_bag_7,That is a bag of food. +food_bag/food_bag_7,This is a bag of kettle chips +food_bag/food_bag_7,This is a bag of snack food. +cell_phone/cell_phone_3,An old flip phone that is small and compact. +cell_phone/cell_phone_3,A flip phone cellphone. +bell_pepper/bell_pepper_1,This is a red somewhat oval vegetable, with a green stem. It has several knobs around the top and it can stand up on its own. +bell_pepper/bell_pepper_1,It's a tomato +bell_pepper/bell_pepper_1,This is a red bell pepper. +pear/pear_2,It is a green pear. +pear/pear_2,It is green and has some yellow bruises on it. +pear/pear_2,Pear is a tree. Pears, the fruit, are used to make medicine. +calculator/calculator_2,This is a black calculator with orange and grey buttons. +calculator/calculator_2,This is a calculator. It is black. +calculator/calculator_3,That is a calculator. +calculator/calculator_3,This is a calculator used for math +calculator/calculator_3,It is a large white calculator with big button. +water_bottle/water_bottle_4,That is a bottle of water. +water_bottle/water_bottle_4,This is a clear bottle of water. +binder/binder_1,This is a binder. The binder is red. +binder/binder_1,This is a plastic binder, used to keep paper organized +binder/binder_1,This is a red three ring binder +food_cup/food_cup_4,This is a package of Chobani yogurt. +food_cup/food_cup_4,This is a carton of, most likely, yogurt. It appears to be an individual serving. +food_cup/food_cup_4,This is a small-sized container of yogurt. It is unopened.`````````````````````````````````````````````````` +sponge/sponge_7,This is a sponge used for cleaning dishes +sponge/sponge_7,A sponge is a tool or cleaning aid made of soft, porous material. +sponge/sponge_7,This is a yellow and green sponge. +greens/greens_1,This is lettuce. +greens/greens_1,This is some green lettuce +greens/greens_1,This is a bundle of greens used for cooking +toothbrush/toothbrush_4,This is a tooth brush to clean you rteeth +toothbrush/toothbrush_4,The toothbrush is an oral hygiene instrument used to clean the teeth, gums, and tongue. +toothbrush/toothbrush_4,This is a purple and white toothbrush. +toothbrush/toothbrush_3,This is a light green toothbrush. +toothbrush/toothbrush_3,The toothbrush is an oral hygiene instrument used to clean the teeth, gums, and tongue. +toothbrush/toothbrush_3,That is a blue and white toothbrush. +greens/greens_1,This is a bundle of greens, used in cooking +greens/greens_1,Greens Leaves and leaf-like parts of edible plants when eaten as vegetables or in salads. +greens/greens_1,It's a green vegetable +kleenex/kleenex_3,This is a slightly crushed box of tissues +kleenex/kleenex_3,This is a box of tissues. +kleenex/kleenex_3,This is a box of tissues. It looks like the brand is Kleenex. +ball/ball_2,That is a squishy toy soccer ball. +ball/ball_2,This is a hackesack that looks like a soccerball +food_bag/food_bag_2,This is a bag of cookies. +food_bag/food_bag_2,This is a bag of teddy bear cookies +food_bag/food_bag_2,A medium sized bag of cookies. +bell_pepper/bell_pepper_3,This red bell pepper is upright +bell_pepper/bell_pepper_3,This is a red pepper. +bell_pepper/bell_pepper_3,This is a red bell pepper sitting upright. +kleenex/kleenex_4,This is a box of tissue used for blowing your nose +kleenex/kleenex_4,This is a full box of tissues. +kleenex/kleenex_4,That is a box of tissues. +orange/orange_4,This is the citrus fruit, Orange +orange/orange_4,This is an orange. +orange/orange_4,It is the Rangpur fruit ,is one of the major fruit which is available in the city of Bangladesh. +instant_noodles/instant_noodles_1,This is a bag of candy. +instant_noodles/instant_noodles_1,This is soup mix. +instant_noodles/instant_noodles_1,This is a plastic package of food. There is Japanese writing on it. +plate/plate_5,That is a white ceramic plate. +plate/plate_5,This is a small ceramic plate. It is white. +keyboard/keyboard_5,This is a computer keyboard. +keyboard/keyboard_5,NAwhole yellow onion with most of outer wrapping removed +pliers/pliers_5,That is hardware. +pliers/pliers_5,This is a pair of pliers with blue handles. +pliers/pliers_5,A tool that grabs small wires +apple/apple_2,This is a red apple with the stem removed. +apple/apple_2,This is an apple. +apple/apple_2,A red apple. +apple/apple_2,It's a Red Delicious apple. +apple/apple_2,A red apple. A red delicious varietal. +pliers/pliers_6,a pair of pliers +pliers/pliers_6,These are a pair of pliers. +pliers/pliers_6,This is a pair of pliers. +pliers/pliers_6,It's a pair of needlenose pliers with black grips. +pliers/pliers_6,A pair of pliers. +pear/pear_4,A brown pear laying on its side. +pear/pear_4,This is a brown pear. +pear/pear_4,It's a brown pear. +pear/pear_4,The pear is ripe. +pear/pear_4,This is a pear. +marker/marker_6,This is an ink pen. +marker/marker_6,This is a black pen. +marker/marker_6,This is a pen. +keyboard/keyboard_3,A computer keyboard. +keyboard/keyboard_3,This is a keyboard. +keyboard/keyboard_3,It's a black keyboard. +keyboard/keyboard_3,This is a black computer keyboard. +keyboard/keyboard_3,This is a computer keyboard. +hand_towel/hand_towel_4,This is a folded grey washcloth. It can be used dry or wet. +hand_towel/hand_towel_4,A folded towel. +hand_towel/hand_towel_4,This is a brown towel sitting on a white and red plate. +hand_towel/hand_towel_4,This is a beige towel. +hand_towel/hand_towel_4,This is a soft, absorbent cloth called a towel. Towels are used to dry water from people's hands and other items. +coffee_mug/coffee_mug_1,It's a mug with a red and grey design with white outlines of people and text on it. +coffee_mug/coffee_mug_1,A coffee mug. +coffee_mug/coffee_mug_1,This is a coffee mug. +coffee_mug/coffee_mug_1,A white ceramic coffee mug with a red and green design. +coffee_mug/coffee_mug_1,This is a mug. +shampoo/shampoo_2,a bottle some bathroom essential +shampoo/shampoo_2,This is a bottle of shampoo. +shampoo/shampoo_2,A bottle of shampoo. +shampoo/shampoo_2,This is a bottle of shampoo or conditioner. +shampoo/shampoo_2,A white plastic bottle similar to a shampoo bottle. +lemon/lemon_1,This is a lemon. +lemon/lemon_1,It's a lemon with a produce sticker on it. +lemon/lemon_1,This is a lemon. +lemon/lemon_1,This is a dull orange colored orange with a sticker on the side. +lemon/lemon_1,It is a lemon that is yellow. It also has a sticker label. +food_box/food_box_7,This is a box of Wheat Thins. +food_box/food_box_7,A box of crackers. +food_box/food_box_7,This is a box of Wheat Thins in a yellow box used for snacking. +food_box/food_box_7,A yellow cardboard box of Wheat Thins. +food_box/food_box_7,This is a yellow box of Wheat Thins. +potato/potato_6,This is a large potato. +potato/potato_6,This is a potato. +potato/potato_6,This is a baking potato. +potato/potato_6,A large baking potato. +potato/potato_6,This is a potato. +toothbrush/toothbrush_4,This is a toothbrush. +toothbrush/toothbrush_4,This is a toothbrush. +toothbrush/toothbrush_4,It's a white and purple toothbrush. +toothbrush/toothbrush_4,This is a toothbrush. +toothbrush/toothbrush_4,A toothbrush. +food_bag/food_bag_5,This is a bag of chips of some sort, I can't read the label. +food_bag/food_bag_5,a bag of chips. +food_bag/food_bag_5,A package of potato chips. +food_bag/food_bag_5,This is a bag of food. +food_box/food_box_1,This is a box of sugar substitute. +food_box/food_box_1,This is a box of sugar. +food_box/food_box_1,It's a box of sugar subtitute. The box is red and white with a green stripe. +food_box/food_box_1,This is a box of food. +food_box/food_box_1,A package of sweetener. +banana/banana_1,A banana on a plate. +banana/banana_1,This is a yellow banana. +banana/banana_1,This is a banana. +banana/banana_1,This is a banana. +banana/banana_1,a ripened banana +keyboard/keyboard_5,This is a keyboard that appears to be mechanical. +keyboard/keyboard_5,This is a black computer keyboard. +keyboard/keyboard_5,The object is a long black keyboard. +keyboard/keyboard_5,This is a computer keyboard. +keyboard/keyboard_5,A computer keyboard. +water_bottle/water_bottle_5,This is a bottled water. +water_bottle/water_bottle_5,This is a bottle of water with a blue label, but we're looking at the side so I can't see the brand. +water_bottle/water_bottle_5,This is a bottle of water. +water_bottle/water_bottle_5,This is a bottle of water. +water_bottle/water_bottle_5,A plastic water bottle. +potato/potato_4,This is a potato. Usually cooked before being eaten, it's a starchy vegetable. +potato/potato_4,A large baking potato. +potato/potato_4,This is a potato. +potato/potato_4,This is a potato. +keyboard/keyboard_4,It's a black computer keyboard. +keyboard/keyboard_4,A computer keyboard. +keyboard/keyboard_4,This is a computer keyboard. +keyboard/keyboard_4,This is a computer keyboard. +keyboard/keyboard_4,This is a black computer keyboard. +calculator/calculator_1,This is a calculator, it's the type with the display raised a bit so it's easier to read. +calculator/calculator_1,It's a calculator with brown, black, and yellow keys. +calculator/calculator_1,A calculator. +calculator/calculator_1,This is a calculator. +calculator/calculator_1,It is a calculator. It is mostly flat, with some black, grey, and yellow buttons. +potato/potato_3,This is a potato. +potato/potato_3,A large baking potato. +potato/potato_3,It's a yellow potato. +potato/potato_3,This is a potato. +potato/potato_3,This is a potato. +glue_stick/glue_stick_4,a red glue stick +glue_stick/glue_stick_4,This is a glue stick. +glue_stick/glue_stick_4,This is a can of spray. +glue_stick/glue_stick_4,This is a can of spray cheese. +food_box/food_box_6,This is a box of pretzel thins. +food_box/food_box_6,This is a cardboard box containing a snack food. +food_box/food_box_6,This is a box of Pretzel Thins. +food_box/food_box_6,white box pretzel thins with food pictured on front +food_box/food_box_6,It's a box of Pretzel Thins. The box is mostly white with a picture of the pretzels on it. +water_bottle/water_bottle_1,This is a bottle of water. +water_bottle/water_bottle_1,This is a clear bottle of water. +water_bottle/water_bottle_1,This is a bottle of water with a white cap. +water_bottle/water_bottle_1,The object is a bottle of water with green and blue on the label. +water_bottle/water_bottle_1,A plastic water bottle. +food_bag/food_bag_5,A pack of some snack +food_bag/food_bag_5,This is a bag of chips. +food_bag/food_bag_5,A bag of chips. +food_bag/food_bag_5,It's a bag of Market Pantry potato chips. It's white and red. +tomato/tomato_8,A red tomato. +tomato/tomato_8,A fruit that is round and red and best with salads and sandwiches. +tomato/tomato_8,This is a tomato with a small blemish. +tomato/tomato_8,This is a tomato. +tomato/tomato_8,This is a tomato. +potato/potato_2,This is a brown ball. +potato/potato_2,This is a red potato. +potato/potato_2,This is a red potato. +potato/potato_2,This red fruit looks like a tomato. It can be eaten raw or cooked, sliced or mashed. +food_jar/food_jar_1,This is a jar of food. This appears to be jelly, a fruity food that's ready to eat. +food_jar/food_jar_1,This is a jar of grape jelly. +food_jar/food_jar_1,This is a jar of jelly. +food_jar/food_jar_1,This is a jar of jam or jelly. +food_jar/food_jar_1,A jar of jelly. +tomato/tomato_3,A tomato. A red ripe tomato. +tomato/tomato_3,This is a red tomato. +tomato/tomato_3,This is a tomato. +tomato/tomato_3,A red tomato. +tomato/tomato_3,This is a tomato. +dry_battery/dry_battery_5,This is a battery. +dry_battery/dry_battery_5,A battery. +dry_battery/dry_battery_5,This is a small battery. Electrical charge is stored in this, and is called a D-Cell. +dry_battery/dry_battery_5,This is a battery. It is cylinder-shaped and is perhaps a size C. +dry_battery/dry_battery_5,My flash light uses two "C" cell batteries for power. These batteries have a positive end where the nipple is and the negative end is flat. +toothpaste/toothpaste_1,This is a tube of Colgate toothpaste. It's minty. +toothpaste/toothpaste_1,Toothpaste is a paste or gel dentifrice used with a toothbrush to clean and maintain the aesthetics and health of teeth. +toothpaste/toothpaste_1,This is a tube of toothpaste. +toothpaste/toothpaste_1,This is a tube of toothpaste. +toothpaste/toothpaste_1,This is a tube of Colgate Toothpaste. +bell_pepper/bell_pepper_1,A red bell pepper. A mild crunchy pepper. +bell_pepper/bell_pepper_1,It is a red bell pepper with a thick green stem. +bell_pepper/bell_pepper_1,An orange pepper. +bell_pepper/bell_pepper_1,This is a bell pepper. +bell_pepper/bell_pepper_1,This is an orange pepper. +pear/pear_3,A pear. +pear/pear_3,This is a pear. +pear/pear_3,This is a bosc pear. +pear/pear_3,This is a brown pear. +pear/pear_3,This is a pear. It is brown with a stem. +scissors/scissors_3,These are scissors, the have been known to be for cooking as well as arts and crafts. +scissors/scissors_3,A small blue scissor which could be used for crafts +scissors/scissors_3,This is a pair of scissors. +scissors/scissors_3,These are a pair of scissors. +scissors/scissors_3,Here is a pair of scissors. The handles are blue. Ideal for cutting paper. +kleenex/kleenex_3,A blue box of Klennex tissue. +kleenex/kleenex_3,A box of facial tissue. Looks like Kleenex brand. +kleenex/kleenex_3,Tissues are used for clearing a stuffed nose. +kleenex/kleenex_3,This is a box of facial tissue. +kleenex/kleenex_3,A box of kleenex. +food_jar/food_jar_3,It is a jar of Heinz gravy. +food_jar/food_jar_3,A jar of Heinz gravy. +food_jar/food_jar_3,This is a jar of food. +food_jar/food_jar_3,A jar of food with a mostly red label. +sponge/sponge_11,A kitchen sponge. +sponge/sponge_11,This is a teal-colored sponge. +lemon/lemon_1,It is a yellow lemon. There is a sticker label on it. +lemon/lemon_1,This is a lemon. It's got a dimple on it's side. +lemon/lemon_1,It's a yellow lemon with a sticker on it. +lemon/lemon_1,A yellow lemon. +lemon/lemon_1,This is a lemon. +lime/lime_1,This is a lime. +lime/lime_1,This is a lime. +lime/lime_1,A green lime. +lime/lime_1,A lime with a product sticker on it. +lime/lime_1,This is a lime. +hand_towel/hand_towel_3,It's a green washcloth. +hand_towel/hand_towel_3,This is a dish cloth. +hand_towel/hand_towel_3,This is a green towel. +hand_towel/hand_towel_3,A green towel that is folded into a small square. +hand_towel/hand_towel_3,This is a towel placed on a plate. +camera/camera_2,This is a camera. +camera/camera_2,A DSL camera. +camera/camera_2,Here is a picture of a digital camera with the memory card popping out of the top. It also has a key chain hanging off of it. +camera/camera_2,It's a camera. +camera/camera_2,This is a black camera. +food_box/food_box_4,This is a box of Golden Oreo Funstix. +food_box/food_box_4,This is a box of Oreo cookies. +food_box/food_box_4,This is a box of Oreo sticks. +food_box/food_box_4,Rectangular shaped box, with writing on one side and nutritional facts on the other. +food_box/food_box_4,A box of Oreo cookies. +soda_can/soda_can_3,This is a can of soda. +soda_can/soda_can_3,The object is a can of soda that is silver and green. +soda_can/soda_can_3,A can of soda. +soda_can/soda_can_3,This is an unopened can of soda. +soda_can/soda_can_3,A green can of soft drink. It could be sprite or seven up +water_bottle/water_bottle_1,This is a clear bottle of water. +water_bottle/water_bottle_1,It is a plastic bottle with liquid. The cap is white and the label is mostly green. +water_bottle/water_bottle_1,This is a bottle of water. +water_bottle/water_bottle_1,A plastic water bottle. +water_bottle/water_bottle_1,This is a bottle of water. +garlic/garlic_2,This is a bulb of garlic. +garlic/garlic_2,A clove of garlic. +garlic/garlic_2,This is a bulb of fresh garlic. +garlic/garlic_2,a bulb of garlic +sponge/sponge_10,A kitchen scrubbing sponge. +sponge/sponge_10,It's a yellow dish scrubber. +sponge/sponge_10,A yellow something +water_bottle/water_bottle_6,Bottled water is a convenient way to stay refreshed. +water_bottle/water_bottle_6,The object is a bottle of Fiji water. +water_bottle/water_bottle_6,This is a bottle of water, I can't see the label, but judging by the shape I'd guess it's Fiji brand. +water_bottle/water_bottle_6,A bottle of purified water. +water_bottle/water_bottle_6,This is a full bottle of Figi water that has yet to be opened. +pliers/pliers_4,A pair of pliers. +pliers/pliers_4,a cutting player +pliers/pliers_4,A pair of pliers. Metal pliers with brown rubber grips. +pliers/pliers_4,This is a pair of pliers. +pliers/pliers_4,This is a pair of pliers. +food_can/food_can_6,This is a can of tomatoes. +food_can/food_can_6,It's a can of Market Pantry tomatoes. The label is red and white. +food_can/food_can_6,It is a metal can, with half of the label being red and the rest white. There is a picture of tomatoes and a bowl of soup on it. +food_can/food_can_6,This is a can of food. The food is a tomato product. +food_can/food_can_6,A can of tomatoes. +food_box/food_box_12,This is a box of crackers. +food_box/food_box_12,A box of crackers. +food_box/food_box_12,This is a box of crackers. +food_box/food_box_12,This is a box of crackers. +food_box/food_box_12,It's a green box of crackers with a blue stripe. +toothbrush/toothbrush_1,This is a toothbrush. +toothbrush/toothbrush_1,A red and white toothbrush. +toothbrush/toothbrush_1,A red colored tooth brush +toothbrush/toothbrush_1,This iz a red and white toothbrush. +toothbrush/toothbrush_1,The object is a white and red toothbrush. +food_box/food_box_10,A box of crackers. +food_box/food_box_10,It's a box of something. +food_box/food_box_10,This is a box of cereal. +food_box/food_box_10,This is a box of food. Some preparation is required before this food can be eaten. +sponge/sponge_8,It's a yellow sponge with a blue scrubbing pad. +sponge/sponge_8,This is a sponged used to clean dishes. +sponge/sponge_8,This is a sponge. +sponge/sponge_8,This is a blue and yellow sponge. +food_can/food_can_5,This is a can of food. +food_can/food_can_5,A can of food with a white and red label. +food_can/food_can_5,This is a can of soup. +food_can/food_can_5,This is a can of beans. +food_can/food_can_5,A can of soup. +toothbrush/toothbrush_3,This is a toothbrush. +toothbrush/toothbrush_3,This is a toothbrush. +toothbrush/toothbrush_3,It's a white and light blue toothbrush. +toothbrush/toothbrush_3,This is a light blue toothbrush. +toothbrush/toothbrush_3,A tooth brush is used for oral hygiene. +bowl/bowl_4,This is a soup cup. +bowl/bowl_4,An empty dinner bowl. +bowl/bowl_4,It's a white bowl. +bowl/bowl_4,This is a bowl. +bowl/bowl_4,It is a white bowl. It is round and deep. +instant_noodles/instant_noodles_7,A package of Ramen noodles. +instant_noodles/instant_noodles_7,This is a package of Ramen noodles. +instant_noodles/instant_noodles_7,This is a package of food. +coffee_mug/coffee_mug_8,This is a cup with stripes. +coffee_mug/coffee_mug_8,This is a coffee mug. +coffee_mug/coffee_mug_8,An empty coffee mug +coffee_mug/coffee_mug_8,It is a white ceramic mug. There are 5 various sized blue stripes going all the way around it. +coffee_mug/coffee_mug_8,This is a mug. +banana/banana_2,This is a sweet fruit called a banana. It can be eaten raw or cooked, making banana bread! +banana/banana_2,This is a banana. +banana/banana_2,This is a yellow banana. +banana/banana_2,A banana on a plate. +banana/banana_2,This is a banana, which is a fruit used for eating. +cell_phone/cell_phone_4,A smartphone. +cell_phone/cell_phone_4,This is a cellphone. +cell_phone/cell_phone_4,Cellphone is used to communicate other persons. +cell_phone/cell_phone_4,This is a cell phone. +cell_phone/cell_phone_4,This is a digital camera. It can record pictures for later display or editing on a computer. +water_bottle/water_bottle_2,This is a bottle of water. +water_bottle/water_bottle_2,A plastic water bottle. +water_bottle/water_bottle_2,This is a plastic bottle of water. +water_bottle/water_bottle_2,This is a bottle of a clear liquid. +water_bottle/water_bottle_2,It's a bottle of Talking Rain bottled water with a white and blue label. +calculator/calculator_1,Here is a desk calculator. It looks like an older model. +calculator/calculator_1,This is a calculator. +calculator/calculator_1,This is a grey and black-colored calculator. +calculator/calculator_1,A calculator. +calculator/calculator_1,This is another calculator for solving math problems. +keyboard/keyboard_1,This is a keyboard. +keyboard/keyboard_1,It is a grey keyboard with white keys. +keyboard/keyboard_1,This is a computer keyboard. +keyboard/keyboard_1,A computer keyboard. +keyboard/keyboard_1,This is an Apple keyboard. +food_can/food_can_10,A can of no sugar added peaches. +food_can/food_can_10,It's a can of no sugar added mandarin oranges. It has a drawing of oranges on it. +food_can/food_can_10,It is a metal can of food. The label is mostly yellow with a blue shape and white text. +food_can/food_can_10,This is a can of mandarin oranges. +food_can/food_can_10,This is a can of fruit. +orange/orange_3,This is an orange. +orange/orange_3,This is an orange. +orange/orange_3,An orange. +orange/orange_3,an orange +orange/orange_3,This is an orange. +stapler/stapler_8,a stapler +greens/greens_4,This green leafy mass looks to be a vegetable. It's either celery or a pepper. +greens/greens_4,Lettuce on a plate. +greens/greens_4,This is baby bok choy. +greens/greens_4,This is a green vegetable. +rubber_eraser/rubber_eraser_2,It is a white pencil eraser with a blue cardboard wrapper. +rubber_eraser/rubber_eraser_2,This is an eraser. The eraser has a blue label. +tomato/tomato_3,A red tomato. +tomato/tomato_3,RED AND ROUND TOMATOE WITH PIECE OF VINE ON TOP +tomato/tomato_3,This is a ripe red tomato. +tomato/tomato_3,This is a red tomato. +tomato/tomato_3,This is a tomato. +scissors/scissors_2,It's a pair of scissors with an orange handle. +scissors/scissors_2,This is a pair of orange handled scissors. +scissors/scissors_2,A pair of metal scissors with an orange plastic handle. +scissors/scissors_2,A flip flop sandal. +scissors/scissors_2,This is a pair of scissors. +binder/binder_2,This is a purple binder. +binder/binder_2,This is a purple binder. +binder/binder_2,This is a purple plastic school binder, approximately half inch. +binder/binder_2,This is a three-ring binder. This holds paper together by the rings between the covers. +binder/binder_2,A school folder. +flashlight/flashlight_5,This is a flashlight. +flashlight/flashlight_5,This is a flashlight. +flashlight/flashlight_5,This is a yellow and black flashlight. +flashlight/flashlight_5,It's a yellow and black flashlight. +flashlight/flashlight_5,This is a yellow flashlight. It looks powerful. +instant_noodles/instant_noodles_7,It's a package of ramen. It's mostly pink. +instant_noodles/instant_noodles_7,This is a package of Ramen noodles. +instant_noodles/instant_noodles_7,A package of Ramen noodles. +instant_noodles/instant_noodles_7,This is a package of food, possibly ramen. +instant_noodles/instant_noodles_7,This is a pack of ramen. +scissors/scissors_1,A pair of metal scissors with an orange and gray plastic handle. +scissors/scissors_1,Scissors with a black handle. +scissors/scissors_1,This is a pair of scissors, the handles are orange and dark grey. +scissors/scissors_1,These are a pair of scissors. +scissors/scissors_1,This is a pair of scissors. +water_bottle/water_bottle_4,This is a bottle of water. +water_bottle/water_bottle_4,This is a flavored water. +water_bottle/water_bottle_4,This is a bottle of water. +water_bottle/water_bottle_4,A plastic water bottle. +water_bottle/water_bottle_4,It's a bottle of water with a blue and purple label. +garlic/garlic_4,A clove of garlic. +garlic/garlic_4,It's a shallot. +garlic/garlic_4,This is a shallot. +food_cup/food_cup_3,A container of yogurt. +food_cup/food_cup_3,This is an unused yogurt cup. +food_cup/food_cup_3,This is a container of yogurt. +food_cup/food_cup_3,This is a container of yogurt sealed with a foil lid. +food_cup/food_cup_3,This is a container of yogurt. +stapler/stapler_2,This is a stapler. It joins two or more pieces of paper together. +stapler/stapler_2,This is a black stapler. +stapler/stapler_2,It's a black and grey stapler. +stapler/stapler_2,This is a stapler. +stapler/stapler_2,A black stapler. +pitcher/pitcher_2,This is a container for boiling liquids. +pitcher/pitcher_2,This is a kettle or pitcher for hot liquids. +pitcher/pitcher_2,This kettle can be used for tea or coffee. +pitcher/pitcher_2,This is a coffee pot. +pitcher/pitcher_2,A coffee pot. +tomato/tomato_6,It's a tomato with a produce sticker on it. +tomato/tomato_6,The object is a small red tomato. +tomato/tomato_6,A red tomato. +tomato/tomato_6,This is a red tomato. +tomato/tomato_6,This is a tomato. +cell_phone/cell_phone_1,It's a silver and black cell phone. +cell_phone/cell_phone_1,This is a cell phone. +cell_phone/cell_phone_1,This is a cell phone. +cell_phone/cell_phone_1,This is an old cellphone +cell_phone/cell_phone_1,A cell phone. +lightbulb/lightbulb_3,a round white bulb +lightbulb/lightbulb_3,This object is a light bulb laying on its side. +lightbulb/lightbulb_3,This is a light bulb. +lightbulb/lightbulb_3,A light bulb. +lightbulb/lightbulb_3,It's a light bulb. +banana/banana_3,a ripe banana +banana/banana_3,This is a yellow banana. +banana/banana_3,A banana on a plate. +banana/banana_3,This is a banana. +banana/banana_3,This is a banana that is mostly yellow. It is not peeled. +calculator/calculator_3,It is a rectangular calculator. It is flat with a screen, many black keys, and 1 red key. +calculator/calculator_3,This is a calculator. +calculator/calculator_3,It's a white calculator with black buttons. +calculator/calculator_3,This is a black and white calculator.The calculator looks old. +calculator/calculator_3,A calculator. +food_box/food_box_7,A yellow box of crackers +food_box/food_box_7,A card board box shaped like a cereal box. It contains a plastic bag on the inside with other things inside. +food_box/food_box_7,This is a box of Wheat Thins. +food_box/food_box_7,A yellow box of wheat crackers used for snacking. +food_box/food_box_7,This is a box of Wheat Thins. +instant_noodles/instant_noodles_2,A package of noodles. +instant_noodles/instant_noodles_2,This looks like a bag of ramen or some other sort of dry noodles. The bag is white and pink but the writing does not look like English. +instant_noodles/instant_noodles_2,This is a package of noodles. +instant_noodles/instant_noodles_2,This is a package of Ramen soup. +instant_noodles/instant_noodles_2,This is a package of food, possibly ramen. +binder/binder_2,This is a purple binder. +binder/binder_2,A blue file or folder +binder/binder_2,This is a binder. +binder/binder_2,A school folder. +binder/binder_2,This is a purple folder. +coffee_mug/coffee_mug_8,This is a white and stripe coffee mug. +coffee_mug/coffee_mug_8,A coffee mug. +coffee_mug/coffee_mug_8,This is a mug. It could be a ceramic mug. It has stripes on it. It is good for coffee. +coffee_mug/coffee_mug_8,This is called a cup or a mug. It is commonly used to hold a drink of tea or coffee. +coffee_mug/coffee_mug_8,This is a mug. +food_can/food_can_2,This is a can of soup. +food_can/food_can_2,This is a can of Campbell's soup. It is small with a red and white label. +food_can/food_can_2,It's a can of Campbell's soup with a red and white label. +food_can/food_can_2,A can of soup. +food_can/food_can_2,This is a can of Campbell's soup. +sponge/sponge_10,This is a lemon. +sponge/sponge_10,A yellow round something +apple/apple_5,The apple is green. +apple/apple_5,This is a green apple. +apple/apple_5,It is an apple that is green. It has a sticker label on it. +apple/apple_5,A green apple. +apple/apple_5,This is a green apple. +tomato/tomato_5,It's a red cherry tomato with a sticker on it. +tomato/tomato_5,This is a red tomato. +tomato/tomato_5,This is a red tomato. +tomato/tomato_5,This looks like a ripe tomato. Nice and red in color. +marker/marker_9,This is a yellow highlighter. +marker/marker_9,This is a yellow marker used to highlight words and sentences on a paper. +marker/marker_9,A magic marker. +marker/marker_9,A yellow marker with a black top +marker/marker_9,A dry erase marker +glue_stick/glue_stick_2,This is a glue stick. +glue_stick/glue_stick_2,This is a glue stick. +glue_stick/glue_stick_2,It's a container of lip balm. +glue_stick/glue_stick_2,This is a can of spray. +lemon/lemon_5,It's a yellow lemon. +lemon/lemon_5,This is a lemon. +lemon/lemon_5,A yellow lemon. +lemon/lemon_5,a lemon +lemon/lemon_5,This is a lemon. +stapler/stapler_3,This is a stapler. +stapler/stapler_3,This object is a tool that when pushed down on a stack of papers, releases a metal staple which holds the papers together. From the pressure being exterted on the tool, the metal staple's prongs are bent which holds it in place. +stapler/stapler_3,This is a stapler. +stapler/stapler_3,A black stapler. +stapler/stapler_3,The object is a black stapler. +food_bag/food_bag_2,This is a bag of chips, crackers, or a similar type of food. +food_bag/food_bag_2,A pack of snacks which looks like cookies +food_bag/food_bag_2,A bag of chips. +food_bag/food_bag_2,This is a bag of chicken strips. +keyboard/keyboard_2,This is a keyboard used for your computer. +keyboard/keyboard_2,The object is long, has keys and is made of plastic. +keyboard/keyboard_2,a keyboard +keyboard/keyboard_2,A keyboarad used for typing. +keyboard/keyboard_2,A computer keyboard. +garlic/garlic_1,This is a bulb of garlic. +garlic/garlic_1,A round cram and tan colored object that looks similar to a gord. +garlic/garlic_1,A head of garlic +plate/plate_7,This is a plate. +plate/plate_7,This is a plate. +plate/plate_7,This is a bowl. Normally used for soups or deserts, it is part of a table setting. +plate/plate_7,An empty dinner plate. +plate/plate_7,a bowl +bowl/bowl_3,It's a white bowl. +bowl/bowl_3,This is a bowl. +bowl/bowl_3,This is a white bowl. +bowl/bowl_3,This is a bowl. +bowl/bowl_3,An empty dinner bowl. +water_bottle/water_bottle_1,This is a bottle of water. +water_bottle/water_bottle_1,This is a clear bottle of water. +water_bottle/water_bottle_1,The object is a bottle of water or drink with a white cap and green/blue label. +water_bottle/water_bottle_1,A plastic water bottle. +water_bottle/water_bottle_1,It is a bottle of water with a white cap. +food_bag/food_bag_1,This is a bag of smack crackers. +food_bag/food_bag_1,This is a ready mix of a food product in a bag. +food_bag/food_bag_1,It's a bag of snacks. The bag is light blue with a picture of fruit on it. +food_bag/food_bag_1,This bag holds snack food. Humans eat snack food as part of their diet. +food_bag/food_bag_1,This is a package of food. +food_can/food_can_3,This is a can of soup. +food_can/food_can_3,It's a can with a red and white label. +food_can/food_can_3,This is a can of food. +food_can/food_can_3,A can of soup. +orange/orange_2,A grapefruit. +orange/orange_2,This is a sweet fruit called an orange. It can be eaten raw or cooked. +pitcher/pitcher_2,This is a coffee pot used to make coffee. +pitcher/pitcher_2,This is a coffee pot carafe. It is silver with a black top and has no lid on it. +pitcher/pitcher_2,This is a pitcher or part of an electric kettle. +pitcher/pitcher_2,This is a coffee pot. +pitcher/pitcher_2,A coffee pot. +banana/banana_1,A ripe banana +banana/banana_1,This is a sweet fruit called a banana. It can be eaten raw or cooked into banana bread! +banana/banana_1,This is a banana. +banana/banana_1,A banana on a plate. +banana/banana_1,This is a banana. +water_bottle/water_bottle_10,This is a water bottle. +water_bottle/water_bottle_10,It's a red water bottle. It has a label that says BPA Free on it. +water_bottle/water_bottle_10,A plastic water bottle. +water_bottle/water_bottle_10,an empty water bottle +water_bottle/water_bottle_10,this is a plastic cup with a top that has a straw in it so you don't spill your drink +food_cup/food_cup_5,This is a container of yogurt. +food_cup/food_cup_5,This is a cup of yogurt. +food_cup/food_cup_5,A cup of yogurt. It could be blueberry flavour +food_cup/food_cup_5,A container of yogurt. +onion/onion_2,A whole garlic. It also resembles white onion +onion/onion_2,This is an onion. +onion/onion_2,White onion, unpeeled. +onion/onion_2,This is an onion. +onion/onion_2,An unpeeled white onion. +pliers/pliers_1,A pair of pliers. +pliers/pliers_1,These are a pair of pliers. +pliers/pliers_1,This is a plier. +pliers/pliers_1,This is a pair of pliers. +pliers/pliers_1,This is a pair of bent-nose pliars, the handles are blue. +hand_towel/hand_towel_1,The white blanket is foled. +hand_towel/hand_towel_1,This is a folded towel. +hand_towel/hand_towel_1,A folded towel. +dry_battery/dry_battery_2,This is a flashlight. +dry_battery/dry_battery_2,It's an alkaline battery. It's gold and black. +plate/plate_7,This is a plate. +plate/plate_7,This is a plate. +plate/plate_7,This is a bowl. Normally used for soups or deserts, it is part of a table setting. +plate/plate_7,An empty dinner plate. +plate/plate_7,This is an all-white plate. +stapler/stapler_2,This is a stapler. +stapler/stapler_2,A black stapler. +stapler/stapler_2,This is a stapler. +stapler/stapler_2,This is a stapler. +sponge/sponge_9,This is a tomato. +notebook/notebook_2,This is a notebook. +notebook/notebook_2,The notebook has 70 pages. The spiral is yellow. +notebook/notebook_2,This is a yellow spiral bound notebook. +notebook/notebook_2,A writing notebook. +notebook/notebook_2,Yellow square shaped object with writing on the bottom right corner and a bar code on the top left corner. +pliers/pliers_4,This is a pair of pliers. +pliers/pliers_4,This is a pair of pliers. +pliers/pliers_4,This is a pair of pliers. +pliers/pliers_4,This is a pair of pliers used to grip things. +pliers/pliers_4,A pair of pliers. +greens/greens_3,This is baby bok choy. +greens/greens_3,Kale on a plate. +greens/greens_3,Greens is a leaf vegetable. +greens/greens_3,This is bok choi. +potato/potato_6,This is a potato. +potato/potato_6,This is a potato. +potato/potato_6,A large baking potato. +potato/potato_6,Something which looks like potato +water_bottle/water_bottle_2,This is a small bottle of water. +water_bottle/water_bottle_2,This is a plastic bottle. It looks to be holding water, but can be re-purposed many times. +water_bottle/water_bottle_2,This is a bottle of water. +water_bottle/water_bottle_2,A plastic water bottle. +water_bottle/water_bottle_2,This is a bottle of water. +food_box/food_box_11,This is a box of white cheddar Cheez-its. +food_box/food_box_11,A box of white cheddar Cheez-its. +food_box/food_box_11,This is a box of Cheez-Its. +food_box/food_box_11,This is a box of white cheddar cheez-its. +food_box/food_box_11,This is a box of cheese crackers. +mushroom/mushroom_1,This is a mushroom. +mushroom/mushroom_1,A clove of garlic. +toothbrush/toothbrush_1,A red toothbrush. +toothbrush/toothbrush_1,This is a toothbrush. +toothbrush/toothbrush_1,This is a pen or marker. +toothbrush/toothbrush_1,It's a white and red toothbrush. +toothbrush/toothbrush_1,This is a tooth brush. +marker/marker_6,A magic marker. +marker/marker_6,It is a black pen with blue grips. +marker/marker_6,This is a pen. +toothpaste/toothpaste_1,This is Colgate brand tooth paste. +toothpaste/toothpaste_1,This is a tube of Colgate toothpaste. +toothpaste/toothpaste_1,This is a tube of Colgate toothpaste. +toothpaste/toothpaste_1,A tube of toothpaste. +toothpaste/toothpaste_1,This is a full tube of Colgate toothpaste. +soda_can/soda_can_6,It's a can of Welch's juice. The can is mostly yellow. +soda_can/soda_can_6,This is a yellow can of Welch's. +soda_can/soda_can_6,CHAMPAGNE COLOR WELCH'S CAN OF JUICE +soda_can/soda_can_6,A can of Welch's soda. +soda_can/soda_can_6,This is a can of soda or juice. +apple/apple_1,This is a red delicious apple. +apple/apple_1,An apple. +apple/apple_1,One very ripe, red apple. +apple/apple_1,An apple is a sweet, edible fruit. +coffee_mug/coffee_mug_8,A coffee mug. +coffee_mug/coffee_mug_8,This is a coffee mug. +coffee_mug/coffee_mug_8,a coffee mug +coffee_mug/coffee_mug_8,An empty white coffee mug with ring design +coffee_mug/coffee_mug_8,This is a mug. +cereal_box/cereal_box_2,A box of cereal. +cereal_box/cereal_box_2,This is a box of breakfast cereal standing upright. It is much taller than it is thick. The color is mostly brown on its front and top, but the side facing us is mostly white with black type (it is the nutritional panel). +cereal_box/cereal_box_2,This is a box of cereal. +cereal_box/cereal_box_2,This is a box of cereal. +cereal_box/cereal_box_2,This is a box of Chex cereal. +cap/cap_3,This is a black hat. +cap/cap_3,It's a black baseball hat with a bulldog on it. +cap/cap_3,A baseball cap. +cap/cap_3,This is a baseball hat. +cap/cap_3,This is a black baseball cap with an image of a bulldog on it. +apple/apple_4,This is an apple. +apple/apple_4,A yellow apple. +apple/apple_4,This is a yellow golden delicious apple. +apple/apple_4,The object is a green apple with a yellow tinge. +tomato/tomato_4,this is a tomato +tomato/tomato_4,This is a tomato. +tomato/tomato_4,A red tomato. +tomato/tomato_4,This looks like a tomato with a light red and yellow coloring. +tomato/tomato_4,An orange and red tomato. +scissors/scissors_4,This is a pair of scissors. +scissors/scissors_4,Scissors with a blue and yellow handle. +scissors/scissors_4,This is a pair of scissors. +scissors/scissors_4,A pair of scissors with a plastic or rubber coating on the handle. +scissors/scissors_4,These are a pair of scissors. +pliers/pliers_2,This is a pair of pliers. +pliers/pliers_2,A pair of pliers. +pliers/pliers_2,These are pliers. +pliers/pliers_2,This is a plier. +coffee_mug/coffee_mug_6,This is a bowl. +coffee_mug/coffee_mug_6,A coffee mug. +coffee_mug/coffee_mug_6,This is a yellow bowl. +coffee_mug/coffee_mug_6,This is a coffee cup. +coffee_mug/coffee_mug_6,The object is yellow, has a handle and a hole in its center. +apple/apple_2,This is an apple. +apple/apple_2,This is a red apple +apple/apple_2,This is an apple. +apple/apple_2,An red delicious apple +apple/apple_2,This is a red delicious apple. +apple/apple_2,A red apple. +bowl/bowl_3,An empty dinner bowl. +bowl/bowl_3,a small white bowl +bowl/bowl_3,This is a white bowl +bowl/bowl_3,This is a bowl. +bowl/bowl_3,It's an empty white bowl. +bell_pepper/bell_pepper_1,A red pepper. +bell_pepper/bell_pepper_1,This is a red bell pepper. +bell_pepper/bell_pepper_1,This is a red bell pepper that has a small bruise on the side. +bell_pepper/bell_pepper_1,This is an orange bell pepper. +bell_pepper/bell_pepper_1,It's a red bell pepper with a sticker on it. +cereal_box/cereal_box_3,This is a box of Kellogg's Special K cereal +cereal_box/cereal_box_3,This is Kellogg brand Special K. It is a low calorie breakfast cereal. +cereal_box/cereal_box_3,This is a box of Special K cereal. +cereal_box/cereal_box_3,It's Special K cereal. +cereal_box/cereal_box_3,It's a box of chocolate Special K. +sponge/sponge_1,A kitchen sponge. +sponge/sponge_1,This is an orange sponge. +sponge/sponge_1,This is an orange sponge. +sponge/sponge_1,This is a orange sponge. +sponge/sponge_1,This is an orange dish sponge. +kleenex/kleenex_1,This is a box of tissues. +kleenex/kleenex_1,This is a box of facial tissue. +kleenex/kleenex_1,It's a box of Kleenex with abstract grey designs on it. +kleenex/kleenex_1,This is a tissue box with flowers on it. +kleenex/kleenex_1,Opened grey tissue box with flower design. Tissue ready to be used and pulled out of the box. +marker/marker_4,This is a marker. +marker/marker_4,This is an ink pen. +marker/marker_4,A magic marker. +mushroom/mushroom_3,A chicken drumstick. +mushroom/mushroom_3,Very uncertain as to what this is. +mushroom/mushroom_3,Gourds are used for decorations in the fall season. +cell_phone/cell_phone_5,A smartphone. +cell_phone/cell_phone_5,This is a mobile phone. +cell_phone/cell_phone_5,This is a smartphone. +cell_phone/cell_phone_5,This is a black cellular phone. +cell_phone/cell_phone_5,It's a black and silver smart phone. +marker/marker_8,A red sharpie +marker/marker_8,This is a felt tipped marker. Under the black cap is a piece of felt that delivers ink from the tube to make marks on paper or anything else. +marker/marker_8,It's a red highlighter pen. +marker/marker_8,This is a red marker. +marker/marker_8,A magic marker. +pliers/pliers_6,A pair of pliers. +pliers/pliers_6,Pliers are made in various shapes and sizes and for many uses. Some are used for gripping something round like a pipe or rod. +pliers/pliers_6,This is black pliars. +pliers/pliers_6,These are pliers. +pliers/pliers_6,This is a pair of pliers. +food_can/food_can_7,This is a can of soup. +food_can/food_can_7,a can of some food +food_can/food_can_7,A can of soup. +food_can/food_can_7,An easy open can of soup. No can opener required for this soup. +food_can/food_can_7,This is a can of soup. +food_box/food_box_9,This is a green box of crackers. +food_box/food_box_9,This is a box of food. +food_box/food_box_9,This is a box of food. +food_box/food_box_7,A box of crackers. +food_box/food_box_7,This is a yellow box of Wheat Thins. +food_box/food_box_7,This is a box of crackers. +food_box/food_box_7,This is a box of Wheat Thins. +food_box/food_box_7,It's a box of Wheat Thins. It's yellow. +ball/ball_7,It is a soccer ball that is mostly white with many black pentagons and white hexagons all over. +ball/ball_7,This is a soccer ball. It is used in a kick-the-ball-around game called soccer. +ball/ball_7,A soccer ball. +ball/ball_7,This is a soccer ball. +ball/ball_7,This is a soccer ball toy. +notebook/notebook_3,This is a notebook. +notebook/notebook_3,A writing notebook. +notebook/notebook_3,This is a notebook. +notebook/notebook_3,A spiral bound notebook with a green and white cover. +notebook/notebook_3,This is a spiral bound notebook. +food_cup/food_cup_5,A packaged cup of blueberry yogurt with a peel off lid. +food_cup/food_cup_5,This is a container of yogurt. +food_cup/food_cup_5,A container of yogurt. +food_cup/food_cup_5,This is a cup of blueberry yogurt. +food_cup/food_cup_5,It's a cup of yogurt. It has a picture of blueberries on it. +notebook/notebook_1,This is a red spiral notebook. +notebook/notebook_1,This is a spiral bound notebook. +notebook/notebook_1,This is a red single subject notebook. +notebook/notebook_1,Here is a red notebook sitting on top of a white object. The note book is 70 pages of college rule. +notebook/notebook_1,A writing notebook. +food_cup/food_cup_1,Food Cup is used to store food items. +food_cup/food_cup_1,A container of yogurt. +food_cup/food_cup_1,This is a small plastic container holding a food called yogurt. Yogurt is a dairy product made using active bacteria. +food_cup/food_cup_1,This is a container of yogurt. +food_cup/food_cup_1,This is a container of yogurt. +rubber_eraser/rubber_eraser_4,Eraser is an article of stationery that is used for removing writing from paper or skin. +rubber_eraser/rubber_eraser_4,This is a pink eraser. +rubber_eraser/rubber_eraser_4,A pencil eraser. +rubber_eraser/rubber_eraser_4,This is a rubber eraser. +banana/banana_4,This is an unripe banana or plantain. +banana/banana_4,this is a banana it is a fruit it gives you a good amount of protein in it. Bananas are also good on cereal. +banana/banana_4,This is a green banana. +banana/banana_4,A plantain on a plate. +banana/banana_4,This is a banana. +onion/onion_4,A white onion. +onion/onion_4,This is an onion. +onion/onion_4,This is a white onion. +onion/onion_4,This is a white onion. +onion/onion_4,This is an onion. +food_box/food_box_3,A box of Fiber One pastries. +food_box/food_box_3,This is a box of Fiber One. +food_box/food_box_3,This is a box of fiber one bars. +food_box/food_box_3,A cardboard box of Fiber One. +food_box/food_box_3,A packet of fiber one which looked like snacks +stapler/stapler_6,This is a black stapler. +stapler/stapler_6,This is a stapler. +stapler/stapler_6,This is a stapler. +stapler/stapler_6,A black stapler. +stapler/stapler_6,This is a stapler. +glue_stick/glue_stick_6,A tube of glue. +glue_stick/glue_stick_6,This is a can of spray. +glue_stick/glue_stick_6,This is a glue stick. +glue_stick/glue_stick_6,This is an Elmer's glue stick. +glue_stick/glue_stick_6,This is a stick of glue used hold things together. +coffee_mug/coffee_mug_5,This is a mug. +coffee_mug/coffee_mug_5,A coffee mug. +coffee_mug/coffee_mug_5,this is a drinking cup +coffee_mug/coffee_mug_5,A white coffee mug +coffee_mug/coffee_mug_5,This is a coffee cup. +cereal_box/cereal_box_3,This is a box of Special K cereal. +cereal_box/cereal_box_3,A box of kellogs cereals +cereal_box/cereal_box_3,This is a box of cereal. +cereal_box/cereal_box_3,This is a cereal called Special K used for a quick breakfast. +cereal_box/cereal_box_3,It is a box of Special K cereal. +cereal_box/cereal_box_3,It is a box of cereal +food_box/food_box_11,This is a box of cheez-its. +food_box/food_box_11,This is a box of Cheez-Its. +food_box/food_box_11,A box of Cheez-Its. +food_box/food_box_11,This is a box of Cheez-Its, I think it says white cheddar flavored. +food_box/food_box_11,This is a box of white cheddar Cheeze-its. +food_cup/food_cup_1,a cup of yogurt +food_cup/food_cup_1,This is a yoplait yogurt. +food_cup/food_cup_1,This is a container of yogurt. +food_cup/food_cup_1,A container of yogurt. +food_cup/food_cup_1,This is a container of yogurt. +plate/plate_3,This is a plate. +plate/plate_3,This is a blue and white plate. +plate/plate_3,an empty white plate with blue design +plate/plate_3,This is a ceramic plate.. +plate/plate_3,An empty dinner bowl. +tomato/tomato_8,A red tomato. +tomato/tomato_8,This is a sweet fruit called a tomato. It can be eaten raw or cooked. +tomato/tomato_8,This is a red tomato. +tomato/tomato_8,It's a tomato. +tomato/tomato_8,This is a tomato. +lime/lime_3,This is a green fruit, probably a lime. +lime/lime_3,A green lime. +lime/lime_3,This a fruit a green lime. +lime/lime_3,This is a lime. +bell_pepper/bell_pepper_2,This is a yellow pepper. +bell_pepper/bell_pepper_2,This is a yellow bell pepper. +bell_pepper/bell_pepper_2,This is a pepper. They are quite tasty. +bell_pepper/bell_pepper_2,A yellow pepper. +bell_pepper/bell_pepper_2,It's a yellow bell pepper. +tomato/tomato_2,This is a cherry tomato. +tomato/tomato_2,A red tomato. +tomato/tomato_2,This is a tomato. +soda_can/soda_can_5,It's a can of diet Dr. Pepper. It's white with red printing. +soda_can/soda_can_5,This is a white can of Dr. Pepper. +soda_can/soda_can_5,This is a can of Diet Dr. Pepper. +soda_can/soda_can_5,A can of dr.pepper +soda_can/soda_can_5,This is a can of soda. +potato/potato_4,This is a potato. +potato/potato_4,A large baking potato. +potato/potato_4,It's a yellow potato. +potato/potato_4,This is a potato. +sponge/sponge_6,This is a sponge. +sponge/sponge_6,It is a rectangular sponge. It has a yellow face, with a pink side. +sponge/sponge_6,This is a sponge. It is usually used to clean as it holds water in its little holes. +sponge/sponge_6,A kitchen sponge. +sponge/sponge_6,This a dish sponge. +notebook/notebook_4,This is a spiral bound notebook. This pad of paper is held together by the wire spiral at one side. +notebook/notebook_4,This is a blue spiral bound notebook. +notebook/notebook_4,The notebook is blue. It has 70 pages. +notebook/notebook_4,This is a blue-spiraled notebook. +notebook/notebook_4,A writing notebook. +cap/cap_2,This is a camouflage hat. People wear these to stay hidden. +cap/cap_2,This is a camo ball cap. +cap/cap_2,An army hat. +cap/cap_2,This is a camo hat. +cap/cap_2,This is a military camouflaged hat. +food_box/food_box_8,A box of crackers. +food_box/food_box_8,There is a box of Chicken in a biscuit snacks in a blue box. +food_box/food_box_8,This is a box of crackers or cookies. +food_box/food_box_8,This is a box of crackers. +comb/comb_2,The object is a black hair brush with light blue accents. +comb/comb_2,A hairbrush. +comb/comb_2,This is a hair brush. +comb/comb_2,This hair brush may also be called a wig brush. This brush is heavy duty for brushing thick and long hair. +comb/comb_2,This is a hairbrush. +toothpaste/toothpaste_2,This is a long tube of crest toothpaste that can stand upright on it's lid. +toothpaste/toothpaste_2,This is a tube of toothpaste. +toothpaste/toothpaste_2,This is a tube of Crest toothpaste. +toothpaste/toothpaste_2,A small tube of crest toothpaste +toothpaste/toothpaste_2,A tube of Crest toothpaste. +pliers/pliers_5,This is a pair of needle nose pliers. +pliers/pliers_5,This is a pair of pliers. +pliers/pliers_5,These are pliers. +pliers/pliers_5,A pair of pliers. +pliers/pliers_5,Pliers are used for gripping something round like a pipe or rod. +bell_pepper/bell_pepper_2,This is a yellow bell pepper. +bell_pepper/bell_pepper_2,This is a yellow pepper. +bell_pepper/bell_pepper_2,This is a yellow pepper. +bell_pepper/bell_pepper_2,It's a yellow bell pepper. +bell_pepper/bell_pepper_2,A yellow pepper. +orange/orange_3,an orange +orange/orange_3,This is an orange. +orange/orange_3,This is an orange. +orange/orange_3,An orange. +food_bag/food_bag_5,This is a bag of chips. +food_bag/food_bag_5,This is some kind of bag of chips. I can't read the label and the picture almost looks like it has both chips and cheese curls on it. +food_bag/food_bag_5,This is a bag of chips. +food_bag/food_bag_5,A bag of chips. +food_bag/food_bag_5,This is a bag of chips. +dry_battery/dry_battery_5,An Energizer battery. +dry_battery/dry_battery_5,This is a blac and silver battery. +dry_battery/dry_battery_5,This is a small battery. Electrical charge is stored in this, and is called a D-Cell. +dry_battery/dry_battery_5,This is a battery. +dry_battery/dry_battery_5,This is a battery. +marker/marker_6,A magic marker. +marker/marker_6,This is a marker. +keyboard/keyboard_2,This is a black and grey wired keybaord on top of some sort of white plastic pedestal. +keyboard/keyboard_2,A computer keyboard. +keyboard/keyboard_2,This is a keyboard for a desktop computer. It is black. +keyboard/keyboard_2,This is a computer keyboard. +keyboard/keyboard_2,This is a keyboard. You use it to type messages or words onto a computer screen. +coffee_mug/coffee_mug_4,A white coffee cup with a blue rim. The cup is empty. +coffee_mug/coffee_mug_4,This is a coffee mug. +coffee_mug/coffee_mug_4,This is a mug. +coffee_mug/coffee_mug_4,This is a ceramic mug. +coffee_mug/coffee_mug_4,A coffee mug. +bowl/bowl_6,This is a bowl. +bowl/bowl_6,A blue bowl with a floral design on the inside. +bowl/bowl_6,This is a blue bowl white white on the inside. +bowl/bowl_6,This is a bowl. +bowl/bowl_6,This is a deep cereal bowl. +food_bag/food_bag_3,This is a bag of pretzels. +food_bag/food_bag_3,This is a bag of Snyders pretzels. +food_bag/food_bag_3,This is a bag of Snyder's pretzel snaps. +food_bag/food_bag_3,A bag of pretzels. +food_bag/food_bag_3,This is a bag of pretzels. +bowl/bowl_1,A bowl is a spherical dish or container typically used to serve hot and cold food. +bowl/bowl_1,This is a bowl. +bowl/bowl_1,This is a bowl. +bowl/bowl_1,This is a green and red bowl. +bowl/bowl_1,An empty dinner bowl. +potato/potato_3,This is a potato. +potato/potato_3,A potato. +food_jar/food_jar_5,It's a jar of Vlasic pickles. The lid has a blue ridge around the rim. +food_jar/food_jar_5,This is a jar of pickles. +food_jar/food_jar_5,This is a jar of food. +food_jar/food_jar_5,A jar of peppers. +food_jar/food_jar_5,This is a jar of pickle juice. +pitcher/pitcher_1,It's a white ceramic pitcher with a floral design on it. +pitcher/pitcher_1,This is a pitcher. +pitcher/pitcher_1,A gravy boat. +pitcher/pitcher_1,A Ceramic Dish Shaped To Function As A Cream Dispenser +pitcher/pitcher_1,This is a creamer cup. It's used to pour creamer into coffee. +instant_noodles/instant_noodles_2,A package of noodles. +instant_noodles/instant_noodles_2,A bag of ramen laying face up on a table. +instant_noodles/instant_noodles_2,This is a package of food, possibly ramen. +instant_noodles/instant_noodles_2,This is a package of Ramen noodles. +food_bag/food_bag_4,a bag of mini oreo +food_bag/food_bag_4,This is a bag of Oreo mini's. +food_bag/food_bag_4,This is a snack size bag of mini oreos. +food_bag/food_bag_4,This is a bag of Oreo cookies. +food_bag/food_bag_4,A bag of mini Oreo's. +shampoo/shampoo_5,This is a bottle of soap. +shampoo/shampoo_5,Shampoo is a hair care product. +shampoo/shampoo_5,A bottle of shampoo. +shampoo/shampoo_5,This is a bottle of shampoo. +pliers/pliers_3,This is a pair of pliers. +pliers/pliers_3,A pair of pliers. +pliers/pliers_3,This is a pair of pliers. +pliers/pliers_3,A green colored narrow tip cutting player +pliers/pliers_3,This is a pair of needle nose players with green hand grippers. +potato/potato_2,This is a red potato. +potato/potato_2,Potatoes are a root vegetable. +potato/potato_2,This is a red potato. +potato/potato_2,A red potato. +potato/potato_2,This is a red potato. +soda_can/soda_can_2,This is a can of 7 Up. +soda_can/soda_can_2,this is a picture of a 7 up soda. +soda_can/soda_can_2,A can of 7-Up. +soda_can/soda_can_2,This is a green can of 7-Up. +soda_can/soda_can_2,It's a can of 7 UP. It has a green label. +cereal_box/cereal_box_1,This looks like Fruity Pebbles. +cereal_box/cereal_box_1,This is a box of cereal. +cereal_box/cereal_box_1,This is a box of food. +cereal_box/cereal_box_1,A box of crackers. +cereal_box/cereal_box_1,This is a box of cereal. +food_cup/food_cup_4,This is a container of food. +food_cup/food_cup_4,chobani white and orange peach yogurt cup +food_cup/food_cup_4,A container of yogurt. +food_cup/food_cup_4,This is peach yogurt. +food_cup/food_cup_4,This is a container of yogurt. +notebook/notebook_4,This is a blue-spiraled notebook. +notebook/notebook_4,A writing notebook. +notebook/notebook_4,This is a blue notebook. +notebook/notebook_4,This is a blue spiral bound notebook. +notebook/notebook_4,Note Book is used to wright or drawing purposes. +dry_battery/dry_battery_4,This is a battery. +dry_battery/dry_battery_4,This is a battery. +dry_battery/dry_battery_4,There is a small battery, looks fat like a D battery. +dry_battery/dry_battery_4,A battery. +dry_battery/dry_battery_4,This is a black battery. +sponge/sponge_7,A kitchen scrubbing sponge. +sponge/sponge_7,This is a cleaning sponge. It is used to clean dishes usually, but can be used to clean many things. +sponge/sponge_7,This is a sponge. You use it to clean dishes. +sponge/sponge_7,This is a sponge. +sponge/sponge_7,This is a green and yellow sponge. +hand_towel/hand_towel_4,This is a face towel, it is the smallest of towels, mostly use to wash face and some cases clean things. +hand_towel/hand_towel_4,This is a towel. +hand_towel/hand_towel_4,This is a small grey towel. +hand_towel/hand_towel_4,A folded towel. +hand_towel/hand_towel_4,This is a brown towel sitting on a white and red plate. +marker/marker_5,This is a pen. It is blue and black. +marker/marker_5,This is a blue dry erase marker. +marker/marker_5,This is a pen. +marker/marker_5,A magic marker. +ball/ball_4,It is a picture of a small toy basketball. It is orange and black. +ball/ball_4,A nerf basketball. +ball/ball_4,This is a basketball. +ball/ball_4,This is a toy basketball. +toothbrush/toothbrush_3,This is a toothbrush. +toothbrush/toothbrush_3,A white and blue toothbrush. +toothbrush/toothbrush_3,It is a toothbrush. It is shaped like a stick, mostly white, with some blue accents. +toothbrush/toothbrush_3,The object is a normal white and blue tooth brush. +coffee_mug/coffee_mug_4,This is a mug. +coffee_mug/coffee_mug_4,This is a coffee mug. +coffee_mug/coffee_mug_4,A coffee mug. +coffee_mug/coffee_mug_4,It is a white mug with a blue time on the inside of the mug. +coffee_mug/coffee_mug_4,This cup is white and has a handle. +mushroom/mushroom_2,A mushroom. +mushroom/mushroom_2,a shitake mushroom +mushroom/mushroom_2,This is a mushroom. +mushroom/mushroom_2,This is a brown mushroom. They're good for you. +mushroom/mushroom_2,This is a baby bella mushroom. +food_box/food_box_6,A cardboard package of pretzel thins. +food_box/food_box_6,This is a box of Preztel Thins. +food_box/food_box_6,A packet of pretzel thins +food_box/food_box_6,A box of crackers. +food_box/food_box_6,This is a box of Pretzel Thins. +sponge/sponge_5,This is a sponge. +sponge/sponge_5,A kitchen sponge. +sponge/sponge_5,A sponge that is blue and has an abrasive section on top that is red. +cereal_box/cereal_box_2,This is a box of cereal. +cereal_box/cereal_box_2,A box of cereal. +cereal_box/cereal_box_2,This is a box of cereal. +cereal_box/cereal_box_2,It's a box of Chex cereal. It's mostly brown. +cap/cap_3,A baseball cap. +cap/cap_3,This is a black baseball cap. +cap/cap_3,This is a black baseball cap. +cap/cap_3,black ball cap +cap/cap_3,A black baseball cap with a bulldog wrote on the brim. +toothbrush/toothbrush_2,This is a toothbrush. +toothbrush/toothbrush_2,This is a toothbrush. +toothbrush/toothbrush_2,A toothbrush. +sponge/sponge_11,This is a light green scrubber. +sponge/sponge_11,A kitchen scrubbing sponge. +marker/marker_2,This is a green dry erase marker. +marker/marker_2,A magic marker. +marker/marker_2,It's a green Expo brand dry erase marker. +marker/marker_2,This is a glue stick. +marker/marker_2,This is a green marker. +keyboard/keyboard_2,This is a black computer keyboard. +keyboard/keyboard_2,This is a mechanical keyboard. +keyboard/keyboard_2,It's a black comptuer keyboard with function keys and a numeric pad. +keyboard/keyboard_2,A black keyboard for a desktop computer +keyboard/keyboard_2,This is a computer keyboard. +lemon/lemon_3,A yellow lemon. +lemon/lemon_3,A yellow limon with a slight green tint on the end facing us +lemon/lemon_3,This is a lemon. +lemon/lemon_3,This is a yellow lemon. +lemon/lemon_3,This is a lemon. +coffee_mug/coffee_mug_5,A white empty coffee mug +coffee_mug/coffee_mug_5,This is a coffee cup. +coffee_mug/coffee_mug_5,This is a mug. +coffee_mug/coffee_mug_5,This is an all-white mug. +coffee_mug/coffee_mug_5,A coffee mug. +lemon/lemon_1,a lemon +lemon/lemon_1,This is a yellow lemon. +lemon/lemon_1,This is a lemon. +lemon/lemon_1,A yellow lemon. +lemon/lemon_1,It's a lemon. +flashlight/flashlight_3,A flashlight. +flashlight/flashlight_3,This is a flashlight. +flashlight/flashlight_3,This is a blue colored flashlight. +flashlight/flashlight_3,This is a blue and black flashlight. +flashlight/flashlight_3,A blue colored flash light +food_jar/food_jar_2,This is a jar of jam or jelly. +food_jar/food_jar_2,This is a jar of jelly. +food_jar/food_jar_2,A jar of jelly. +food_jar/food_jar_2,This is a jar of jam. +food_jar/food_jar_2,A jar of orange colored preserves. +hand_towel/hand_towel_3,A folded towel. +hand_towel/hand_towel_3,This is a washcloth. Wet it to wash your face. +hand_towel/hand_towel_3,This is a soft, absorbent cloth called a towel. Towels are used to dry water from people's hands and other items. +hand_towel/hand_towel_3,This is a green towel. +hand_towel/hand_towel_3,This is a wash cloth. +lime/lime_1,This is a lime. +lime/lime_1,This is a green lime. +lime/lime_1,This is a picture of an avacado. +lime/lime_1,This is a ripe avocado. +apple/apple_1,A dark brown something which could be plum +apple/apple_1,An apple. +apple/apple_1,This is a red delicious apple. +food_can/food_can_8,This is a can of food. +food_can/food_can_8,This is a can of Rote tomatoes. +food_can/food_can_8,This is a can of soup. +food_can/food_can_8,This is a can of diced tomatoes. +bell_pepper/bell_pepper_4,A red pepper. +bell_pepper/bell_pepper_4,This is a red bell pepper. +bell_pepper/bell_pepper_4,This is a red pepper. This vegetable has a sharp flavor, and is usually cooked. +bell_pepper/bell_pepper_4,This is a red bell pepper. +bell_pepper/bell_pepper_4,This is a red pepper. +soda_can/soda_can_1,This is a can of Pepsi. +soda_can/soda_can_1,This is a drink can. It holds a carbonated sweet drink based on water. +soda_can/soda_can_1,This is a can of Pepsi. +soda_can/soda_can_1,A can of Pepsi. +soda_can/soda_can_1,This looks like a can of Pepsi cola. +toothpaste/toothpaste_4,Looks to be a tube of toothpaste. Unsure of brand. +toothpaste/toothpaste_4,It's a tube of toothpaste. It is red with a blue stripe. +toothpaste/toothpaste_4,This is a tube of toothpaste. +toothpaste/toothpaste_4,A tube of toothpaste. +toothpaste/toothpaste_4,This is a tube of toothpaste. +cereal_box/cereal_box_1,It's a box of cereal. The top is brown and white. +cereal_box/cereal_box_1,This is an orange box containing cereal. +cereal_box/cereal_box_1,This is a box of cereal. +cereal_box/cereal_box_1,This is a box of bran cereal. +cereal_box/cereal_box_1,This is a box of bran flakes. +food_cup/food_cup_5,A container of yogurt. +food_cup/food_cup_5,a cup of blueberry flavored yogurt. It could be greek yogurt +food_cup/food_cup_5,This is an unopened yogurt cup. +food_cup/food_cup_5,This is a container of yogurt. +food_cup/food_cup_5,This is a container of yogurt. +calculator/calculator_5,This is a silver calculator. +calculator/calculator_5,This is an object that is used in math classes to help solve math problems and equations. +calculator/calculator_5,A light gray desk calculator with white buttons and an angled display screen. +calculator/calculator_5,This is a calculator. +calculator/calculator_5,A calculator. +lime/lime_3,This is a lime. +lime/lime_3,this is a lime. +lime/lime_3,It's a lime with a sticker on it. +lime/lime_3,This is a lime. +lime/lime_3,A green lime. +cereal_box/cereal_box_4,A BOX WITH INSTRUCTIONS IT IS BLUE AND YELLOW +cereal_box/cereal_box_4,A box of cereal. +cereal_box/cereal_box_4,This is a box. +cereal_box/cereal_box_4,This is a box of cereal. +sponge/sponge_1,This is an orange sponge. +sponge/sponge_1,This is a sponge. +sponge/sponge_1,A kitchen sponge. +sponge/sponge_1,This is a sponge. +sponge/sponge_1,A sponge would be used for pre dishwashing. +toothbrush/toothbrush_3,A toothbrush. +toothbrush/toothbrush_3,This is a toothbrush. +toothbrush/toothbrush_3,The object us a white and blue toothbrush. +toothbrush/toothbrush_3,This is a toothbrush. +food_can/food_can_14,A can of soup. +food_can/food_can_14,This is a can. +food_can/food_can_14,this looks like a can of soup. its a red can with cream soup inside. +food_can/food_can_14,This is a can of soup. +food_can/food_can_14,It's a can of Chunky soup with a mostly red label. +rubber_eraser/rubber_eraser_3,A pencil eraser. +rubber_eraser/rubber_eraser_3,This is an eraser. +rubber_eraser/rubber_eraser_3,It's a pink rubber eraser. +rubber_eraser/rubber_eraser_3,Loos to be a pink eraser. +food_bag/food_bag_5,This is a bag of potato chips on top of some paper plates. +food_bag/food_bag_5,This is a bag of chips. +food_bag/food_bag_5,It's a bag of Market Pantry chips. The label is white and red. +food_bag/food_bag_5,A bag of chips. +food_bag/food_bag_5,This is a bag of chicken nuggets precooked. +marker/marker_3,This is a black expo marker. +marker/marker_3,A magic marker. +marker/marker_3,This is a marker. +marker/marker_3,This is a black marker. +marker/marker_3,This is a black dry erase marker. +sponge/sponge_1,This is an orange sponge. +sponge/sponge_1,A kitchen sponge. +sponge/sponge_1,This is a sponge. +sponge/sponge_1,The object is a regular sized orange sponge. +sponge/sponge_1,This is a squeegee. +lime/lime_2,This is a lime. +lime/lime_2,This is a lime. +lime/lime_2,This is a lime. +lime/lime_2,A green lime. +tomato/tomato_6,This is a tomato. +tomato/tomato_6,This is a tomato. +tomato/tomato_6,This is a sweet fruit called a strawberry. It can be eaten raw or cooked. +tomato/tomato_6,A red tomato. +tomato/tomato_6,This is a red tomato. +binder/binder_1,It's a red plastic three ring binder. +binder/binder_1,A school folder. +binder/binder_1,This is a red binder. +binder/binder_1,A red plastic 3-ringer binder cover. +binder/binder_1,This is a red binder. +greens/greens_2,Green leaf lettuce on a plate. +greens/greens_2,some green leafy vegetable +greens/greens_2,This is lettuce. +greens/greens_2,A leafy green vegetable. There is only one piece so it appears to be a garnish. +greens/greens_2,This is a bunch of lettuces +apple/apple_3,This is a green apple. +apple/apple_3,This is an apple. +apple/apple_3,Bright green apple shining on a white surface. Apple is missing its stem. +apple/apple_3,It's a green apple. +apple/apple_3,This is a golden delicious apple. +food_jar/food_jar_1,It's a jar of jelly. The brand is Smuckers. +food_jar/food_jar_1,This is a jar of jam or jelly. +food_jar/food_jar_1,This is a jar of grape jelly. It +food_jar/food_jar_1,A jar of jelly. +food_jar/food_jar_1,A small jar of something which looks like a jam jar +cereal_box/cereal_box_4,This is a box of Raisin Bran Crunch cereal. The front of the box is purple, andthe side of the box is yellow and blue. +cereal_box/cereal_box_4,a box of something +cereal_box/cereal_box_4,This is a box of Raisin Bran. +cereal_box/cereal_box_4,A box of cereal. +cereal_box/cereal_box_4,It's a box of Raisin Bran cereal. +lemon/lemon_5,It's a yellow lemon with a green end. +lemon/lemon_5,A fresh lemon. +lemon/lemon_5,This is a lemon. +lemon/lemon_5,A yellow lemon. +lemon/lemon_5,This looks like a lemon. +cell_phone/cell_phone_2,This is an older cellphone. +cell_phone/cell_phone_2,A cellphone marked with three dots around its front position +cell_phone/cell_phone_2,an older moderl cell phone +cell_phone/cell_phone_2,This is a mobile phone. +cell_phone/cell_phone_2,A cell phone. +comb/comb_1,A hairbrush with a black and silver handle. +comb/comb_1,This is a hair brush. +comb/comb_1,A black and silver hair brush. +comb/comb_1,The hair brush is black. +comb/comb_1,A black hair brush. +banana/banana_4,It's a very green, unripe banana. +banana/banana_4,A banana on a plate. +banana/banana_4,an unripe plantain +banana/banana_4,This looks like a plantain. They are most similar to a banana. +banana/banana_4,This is a banana. +ball/ball_2,This is a soccer ball. +ball/ball_2,A nerf soccer ball. +ball/ball_2,Balls are used to play ball games. +ball/ball_2,This is a soccer ball. +pear/pear_8,A yellow apple. +pear/pear_8,This is a yellow apple. +pear/pear_8,This is a yellow delicious apple. +pear/pear_8,This is an apple. +pear/pear_8,This is a sweet fruit called a green apple. It can be eaten raw or cooked into something called apple pie! +food_jar/food_jar_4,This is a jar of white pasta sauce. +food_jar/food_jar_4,This is an unopened jar. The contents are white. +food_jar/food_jar_4,Jarred Alfredo sauce is a good solution for a quick Italian dinner. +food_jar/food_jar_4,A jar of sauce. +tomato/tomato_7,A red tomato. +tomato/tomato_7,This is a tomato. +tomato/tomato_7,It's a tomato. +tomato/tomato_7,This is a ripe tomato. +tomato/tomato_7,This is a fruit that is red and round and can be used in salads and on sandwiches. +stapler/stapler_8,This is an electronic device called a computer mouse. It allows a computer user to position a cursor and do other functions. +pliers/pliers_3,A pair of pliers. +pliers/pliers_3,This is a plier. +pliers/pliers_3,This is green pliars. +pliers/pliers_3,This is a pair of pliers. +pliers/pliers_3,This is a pair of pliers. +potato/potato_3,This is an unpeeled potato +potato/potato_3,It's a yellow potato. +potato/potato_3,This is a potato. +potato/potato_3,A small russett potatoe. +water_bottle/water_bottle_2,A plastic water bottle. +water_bottle/water_bottle_2,This is a clear bottle of water. +water_bottle/water_bottle_2,This is a bottle of water. +water_bottle/water_bottle_2,It's a bottle of water with a white and blue label. +water_bottle/water_bottle_2,This is a plastic bottle. It looks to be holding water, but can be re-purposed many times. +lime/lime_3,A ripe lime with product sticker. +lime/lime_3,This is a lime. +lime/lime_3,A green lime. +lime/lime_3,This is a fresh lime. +lime/lime_3,This is a lime which is a fruit i believe. +pliers/pliers_5,This is a pair of pliers, probably needle-nosed. They have blue handles. +pliers/pliers_5,One set of needle nose pliers with blue handles. +pliers/pliers_5,This is a tool called needle-nose pliers. Used to grasp small parts, one human hand holds the tool to hold or turn something else. +pliers/pliers_5,This is a pair of pliers. +pliers/pliers_5,A pair of pliers. +food_can/food_can_10,This is the canned fruit of mandarin oranges. +food_can/food_can_10,This looks like a can of fruit. The brand is Del Monte. +food_can/food_can_10,It's a can of no sugar added mandarin oranges. The can is yellow with a picture of oranges on it. +food_can/food_can_10,This is a can of fruit. +food_can/food_can_10,This is a can of Del Monte fruit, it looks like it says "No Sugar Added" but I can't read the rest of the label. I think it's nectarines or peaches. +garlic/garlic_1,a bulb of garlic +garlic/garlic_1,This is a clove of garlic. +garlic/garlic_1,A clove of garlic. +garlic/garlic_1,This is a bulb of garlic. +pliers/pliers_2,This is a tool called needle nose pliers. It is used to grip or manipulate smaller parts. +pliers/pliers_2,These are a pair of pliers. +pliers/pliers_2,This is black pliars. +pliers/pliers_2,This is a pair of pliers. +pliers/pliers_2,A pair of pliers. +food_can/food_can_12,This is a can of food. +food_can/food_can_12,This is a can of soup. +food_can/food_can_12,This is a can of chicken broth. +food_can/food_can_12,This is a can of soup. +food_can/food_can_12,It's a can of soup with a white label. +apple/apple_3,A yellow apple. +apple/apple_3,This is an apple. +apple/apple_3,This is a yellow apple. +apple/apple_3,This is a golden delicious apple. +apple/apple_3,A golden delicious apple +marker/marker_2,Marker pen, a felt-tipped pen used for drawing or coloring. +marker/marker_2,This is a felt tip marker. A piece of felt under the cap makes a mark on paper by spreading the ink that is in the tube. +marker/marker_2,This is a green dry erase marker. +marker/marker_2,This is a glue stick. +marker/marker_2,A magic marker. +food_bag/food_bag_6,This is a bag of chips. +food_bag/food_bag_6,This is a bag of chips. +food_bag/food_bag_6,This is a red and black bag of chips. +food_bag/food_bag_6,A bag of chips. +rubber_eraser/rubber_eraser_2,This object is to blurry to tell what it is or could be used for. +dry_battery/dry_battery_1,These are some batteries. +dry_battery/dry_battery_1,This is a battery. +dry_battery/dry_battery_1,A battery. +instant_noodles/instant_noodles_7,This is a colorful bag of candies. +instant_noodles/instant_noodles_7,A package of noodles. +instant_noodles/instant_noodles_7,This is a package of food. +instant_noodles/instant_noodles_7,It's a package of ramen. It's pink with black text. +instant_noodles/instant_noodles_7,This is a package of Ramen noodles. +potato/potato_6,This is a potato. +potato/potato_6,This is a potato. +potato/potato_6,This is a potato. +potato/potato_6,A large baking potato. +potato/potato_6,This is a baking potato. +shampoo/shampoo_4,This is a bottle of lotion. +shampoo/shampoo_4,It's a bottle of conditioner. The bottle is white with a silver top. +shampoo/shampoo_4,This is a body cleanser or body soap. +shampoo/shampoo_4,This is a bottle of shampoo or conditioner. +shampoo/shampoo_4,A bottle of something which looks like shampoo or conditioner +cell_phone/cell_phone_4,A cell phone. +cell_phone/cell_phone_4,This is a phone. +cell_phone/cell_phone_4,An old flip style mobile phone +plate/plate_2,This is a white plate with a blue border. +plate/plate_2,A white plate with blue and baby blue trim +plate/plate_2,This is a white and blue plate. +plate/plate_2,This is a large circular plate that is mostly white with a light & dark blue trim along the rim. +coffee_mug/coffee_mug_1,This is a mug. +coffee_mug/coffee_mug_1,A mug which is red and grey in color +coffee_mug/coffee_mug_1,This is a coffee mug. +coffee_mug/coffee_mug_1,This is a red mug. +coffee_mug/coffee_mug_1,The object is a mug that is red white and grey. +lemon/lemon_6,This is a juicy lemon. +lemon/lemon_6,This is a yellow lemon. +lemon/lemon_6,This is a lemon. +lemon/lemon_6,This is a lemon. +lemon/lemon_6,A yellow lemon. +instant_noodles/instant_noodles_7,This is a package of dehydrated soup mix. +instant_noodles/instant_noodles_7,This is a pack of ramen. +instant_noodles/instant_noodles_7,This is a package of food, possibly ramen. +instant_noodles/instant_noodles_7,A package of noodles. +flashlight/flashlight_3,This is a blue colored flashlight. +flashlight/flashlight_3,A blue plastic flashlight. +flashlight/flashlight_3,This is a flashlight. +flashlight/flashlight_3,It's a blue flashlight. +flashlight/flashlight_3,A blue flashlight. +tomato/tomato_3,this is a fresh tomato +tomato/tomato_3,This is a tomato. +tomato/tomato_3,This is a ripe tomato. +tomato/tomato_3,It's a red tomato with a sticker on it. +tomato/tomato_3,This is a tomato. +comb/comb_3,This is a hair brush. This heavy duty brush is sometimes called a wig brush, as its used on heavy or long hair. +comb/comb_3,This is a hairbrush. +comb/comb_3,A hairbrush. +comb/comb_3,This is a hair brush. +comb/comb_3,This is a hairbrush. +binder/binder_2,A school folder. +binder/binder_2,BLUE PLASTIC FOLDER +binder/binder_2,This is a purple binder. +binder/binder_2,This is a purple folder. +binder/binder_2,This is a purple binder. +sponge/sponge_10,A kitchen sponge. +sponge/sponge_2,This is a lime-green sponge. +sponge/sponge_2,This is a sponge. You use it to clean your dishes. +sponge/sponge_2,A kitchen sponge. +sponge/sponge_2,This is a light green kitchen sponge. +sponge/sponge_2,This is a sponge. +shampoo/shampoo_3,A bottle of shampoo. +shampoo/shampoo_3,This is a bottle of shampoo. +shampoo/shampoo_3,This is a bottle of shampoo. +shampoo/shampoo_3,This is a bottle of shampoo used to wash your hair. Just get your hair wet, put a dollop in your hand and massage it throughout your hair and then rinse it out. +glue_stick/glue_stick_6,This is a stick of Elmer's glue. +glue_stick/glue_stick_6,This is a glue stick. +glue_stick/glue_stick_6,A tube of glue. +glue_stick/glue_stick_6,This is an aerosol spray can. +plate/plate_6,This is a pie. Baked in an oven, pies are made of many different foods. +plate/plate_6,This is a plate with a white paste on it. +plate/plate_6,An empty dinner plate. +coffee_mug/coffee_mug_3,This is a brown mug. +coffee_mug/coffee_mug_3,This is a mug. +coffee_mug/coffee_mug_3,This is a brown tea or coffee cup with a decorative edge near the top edge. The inside is white. +coffee_mug/coffee_mug_3,It's a dark jug. +coffee_mug/coffee_mug_3,A coffee mug. +ball/ball_5,A nerf football. +ball/ball_5,A football with laces up. +ball/ball_5,This is a toy football. +ball/ball_5,A brown football +ball/ball_5,This is a football. +keyboard/keyboard_5,A black dell keyboard kept on some stool like thing +keyboard/keyboard_5,This is a computer keyboard. +keyboard/keyboard_5,It's a black keyboard. +keyboard/keyboard_5,This is a keyboard used for a computer. +keyboard/keyboard_5,This is a keyboard. +mushroom/mushroom_3,This is a peeled potato. +toothpaste/toothpaste_3,This is a tube of Ultra brite toothpaste. +toothpaste/toothpaste_3,A tube of toothpaste. +toothpaste/toothpaste_3,This is a tube of toothpaste. With a small brush, this paste is used to clean a human's teeth. +toothpaste/toothpaste_3,This is a tube of toothpaste. +toothpaste/toothpaste_3,This is a tube of toothpaste. +water_bottle/water_bottle_3,This is a bottle of water. +water_bottle/water_bottle_3,This is a bottle of water. +water_bottle/water_bottle_3,A plastic water bottle. +water_bottle/water_bottle_3,This is a bottle of water. +water_bottle/water_bottle_3,A small bottle if mineral drinking water +shampoo/shampoo_6,This is a bottle containing a hair product or other personal care product. +shampoo/shampoo_6,A bottle of shampoo. +shampoo/shampoo_6,This is a plastic container. It may dispense shampoo, conditioner, hand lotion, or many other substances. +shampoo/shampoo_6,It's a bottle of conditioner. The bottle is yellow with a green cap. +shampoo/shampoo_6,This is a bottle of body wash. +plate/plate_6,This is a round yellow plate. The yellow is a mustard type of color and the edges of the plate have a little design. +plate/plate_6,An empty dinner plate. +plate/plate_6,This is a brown plate. +plate/plate_6,It is a yellow colored plate with a raised pattern around the rim. +plate/plate_6,This is a plate. +instant_noodles/instant_noodles_1,This is a package of Ramen soup. +instant_noodles/instant_noodles_1,This is a package of food. +instant_noodles/instant_noodles_1,A package of Ramen noodles. +food_jar/food_jar_5,A jar of something which looks like pickle +food_jar/food_jar_5,A jar of peppers. +food_jar/food_jar_5,This is a jar of pickles. +food_jar/food_jar_5,This is a jar of peppers. +food_jar/food_jar_5,It's a jar of Vlasic Pickles. It has a blue label and a blue rim on the cap. +banana/banana_4,This is a banana that is still slightly green. +banana/banana_4,This is a green banana with some brown spots. +onion/onion_2,This is a white onion. +onion/onion_2,This is the picture of white onion used to make curry or oil for hair ,it provide better Oxalic acid for body +onion/onion_2,This is a white onion, used for cooking. +potato/potato_6,This is a potato. It is brown. +potato/potato_6,A brown potato +potato/potato_6,This is a potato +coffee_mug/coffee_mug_8,That is a mug. +coffee_mug/coffee_mug_8,The above is a coffee mug. +coffee_mug/coffee_mug_8,This is a white ceramic mug with dark stripes. +greens/greens_3,This is a type of produce. It has a white stem with limp green leaves. +greens/greens_3,This is some bok choy. +coffee_mug/coffee_mug_8,This is a mug. +coffee_mug/coffee_mug_8,This is a white ceramic mug with dark stripes. It has a handle. +greens/greens_4,A head of bok choy. +greens/greens_4,This is green, and it has limp leaves coming from a green stem. +food_can/food_can_2,This is a metal pop top can. The can contains a label and appears to be Campbells soup. +keyboard/keyboard_5,This is a PC keyboard +keyboard/keyboard_5,This is a keyboard, used to type on a computer +keyboard/keyboard_5,That is a Dell computer keyboard. +bell_pepper/bell_pepper_2,This vegetable is yellow, with a green stem. It is a squarish oval shape. +bell_pepper/bell_pepper_2,This yellow bell pepper is on it's side +bell_pepper/bell_pepper_2,This is a yellow bell pepper. +bowl/bowl_3,It is a white bowl sitting on a white table or countertop. +bowl/bowl_3,This is a white bowl resting on a table. +coffee_mug/coffee_mug_8,This is a striped mug. +coffee_mug/coffee_mug_8,That is a mug. +lemon/lemon_5,That is a lemon! +lemon/lemon_5,This is a yellow lemon with green ends +shampoo/shampoo_2,This is a bottle of hair conditioner +shampoo/shampoo_2,That is a plastic bottle. +sponge/sponge_5,This is a sponge used for washing dishes +sponge/sponge_5,This is a blue and red sponge. The rough part is red; the soft part is blue. +sponge/sponge_5,This is a red and blue sponge. +pitcher/pitcher_2,This is a coffee server. +pitcher/pitcher_2,Here we have a tea kettle. +food_box/food_box_7,This is a box of Wheat Thins crackers. +food_box/food_box_7,It is a box contains wheat food items . +food_box/food_box_7,This is a box of Wheat Thins snacks +stapler/stapler_2,That is a black stapler. +stapler/stapler_2,This is a stapler, used to keep pages of paper together +stapler/stapler_2,This is a black stapler. +food_jar/food_jar_4,This is a can of Alfredo sauce, used for cooking +food_jar/food_jar_4,This is an unopened jar. The contents inside are white. +food_jar/food_jar_4,This is a jar of white sauce. You can see the top of the lid. +potato/potato_6,This is a russet potato used for cooking +potato/potato_6,Here sits a potato. +potato/potato_6,It is brown and an oval shape. +water_bottle/water_bottle_2,Closed Open A "sports cap", which appears on many water bottles, seen in the closed configuration to left and in open configuration at right, allowing the water to pass around the central blue piece. A water bottle is a container that is used to hold water. +water_bottle/water_bottle_2,This is a water bottle. It tapers in the middle and has a blue and white label. +water_bottle/water_bottle_2,That is a bottle of water. +cereal_box/cereal_box_1,This is a box of cereal +cereal_box/cereal_box_1,That is a box of Bran Flakes cereal. +sponge/sponge_7,This is a dish sponge used for cleaning dishes +sponge/sponge_7,A sponge is a tool or cleaning aid made of soft, porous material. +sponge/sponge_7,This sponge is yellow sponge on one side and green scouring material on the other. There is a dark dot near the top, and a white dot on the bottom and to the right of the sponge. +keyboard/keyboard_1,This is a keyboard, used to type on a computer +keyboard/keyboard_1,This is a silver keyboard with white buttons. +keyboard/keyboard_1,This is a computer keyboard. +plate/plate_7,Here is an empty whte plate. +plate/plate_7,That is a plate. +food_box/food_box_11,A box of the snack cheese it. +food_box/food_box_11,This is a box of Cheez-it White Cheddar snacks. +food_box/food_box_11,This is a box of white cheddar Cheez-It crackers. +marker/marker_4,This is an EXPO marker, used to write on White-Boards +notebook/notebook_1,A note book that is essential for taking notes at school or long meetings at work. +notebook/notebook_1,Here is a notebook. +notebook/notebook_1,A red spiral note book on top of a white stand. +instant_noodles/instant_noodles_7,This is a package of noodles that you put in water to cook. The package is a small-ish rectangle. +instant_noodles/instant_noodles_7,It's a bag of some kind of food. +kleenex/kleenex_3,It is a grey box of Kleenex. +kleenex/kleenex_3,The tissue box is blue. +kleenex/kleenex_3,A Kleenex is a piece of thin soft paper that is used as a handkerchief. +shampoo/shampoo_6,This is a bottle of children's shampoo and body wash. It is yellow with a green lid. +shampoo/shampoo_6,This is a plastic bottle that is yellow with a green lid. +lime/lime_3,This is a lime. +lime/lime_3,This is the citrus fruit, lime +lime/lime_3,It is a green lime. +apple/apple_5,This is a green apple. +apple/apple_5,This is a green apple. +tomato/tomato_2,This is a fruit or vegetable. It is red. +tomato/tomato_2,This is the fruit, Cherry Tomato +tomato/tomato_2,This is a red tomato. +food_cup/food_cup_1,This is a container of yogurt with a silver foil lid. +food_cup/food_cup_1,This is a carton of yogurt. It has a foil lid and appears to be an individual serving. +food_cup/food_cup_1,This is an aluminum can of food, with a blue, white, and red label, The lid appears to have hole in it +food_jar/food_jar_3,This is a jar of gravy. +food_jar/food_jar_3,Food Jar is container for the storage of Foods. +food_jar/food_jar_3,This is a glass container of food. +food_box/food_box_10,This is a box of mashed potato mix. +food_box/food_box_10,This is a box of pancake mix +bell_pepper/bell_pepper_4,This red bellpepper is on it's side +bell_pepper/bell_pepper_4,Bell pepper is a cultivar group of the species. +bell_pepper/bell_pepper_4,This is a red bell pepper. +glue_stick/glue_stick_4,Glue sticks are solid adhesives in twist or push-up tubes. +glue_stick/glue_stick_4,That is a glue stick. +dry_battery/dry_battery_2,This is a AA size battery +dry_battery/dry_battery_2,An electric battery is a device consisting of one or more electrochemical cells with external connections provided to power electrical devices such as flashlights, smartphones, and electric cars. +sponge/sponge_1,this is a orange sponge +sponge/sponge_1,This is an orange sponge. +sponge/sponge_1,This is a slice of cheddar cheese. +scissors/scissors_3,Those are blue scissors. +scissors/scissors_3,This is a pair of scissors, used for cutting things +scissors/scissors_3,This is a pair of scissors, and they are used to cut things like paper. It is blue and very sharp. +keyboard/keyboard_5,This is a computer keyboard. It is black. +keyboard/keyboard_5,This is a PC keyboard +keyboard/keyboard_5,A remote. +ball/ball_7,This is a soccer ball, to play soccer with +ball/ball_7,This is a soccer ball. +ball/ball_7,This is a soccer ball. +soda_can/soda_can_1,This is a can of Pepsi Cola +soda_can/soda_can_1,This is a can of pepsi. +soda_can/soda_can_1,This is a can of Pepsi. +food_bag/food_bag_6,This is a bag of salted popcorn +food_bag/food_bag_6,This is a bag of barbeque potato Pop Chips. +food_bag/food_bag_6,Baked goods are cooked by baking. +marker/marker_6,That is an extension cord wrapped up. +orange/orange_3,That is an orange. +orange/orange_3,This is an orange. +food_bag/food_bag_4,That is a bag of mini Oreo cookies. +food_bag/food_bag_4,snack bag of mini Oreos +orange/orange_2,That is an orange. +orange/orange_2,This is a yellow ball. +orange/orange_2,a yellow ball +hand_towel/hand_towel_3,This is a sage green hand towel that is folded in quarters. +hand_towel/hand_towel_3,This is a green towel. +hand_towel/hand_towel_3,A bath towel. +hand_towel/hand_towel_3,It's a folded green washcloth. +hand_towel/hand_towel_3,A green wash cloth. A micro fiber cloth. +ball/ball_4,a basketball shaped toy +ball/ball_4,This is a fake toy basketball. +ball/ball_4,It's a small inflatable toy basketball. +ball/ball_4,A nerf basketball. +food_can/food_can_1,A can of food with the back of the label facing toward you. +food_can/food_can_1,This is some kind of canned food. +food_can/food_can_1,It's a can of evaporated milk. +food_can/food_can_1,This is a can. +sponge/sponge_11,This is a bright green scrubber. +sponge/sponge_11,The pot scrubber is green. +sponge/sponge_11,It's a green dish scrubber. +dry_battery/dry_battery_3,This is a battery. +dry_battery/dry_battery_3,A tube of glue. +dry_battery/dry_battery_3,This is a battery. +dry_battery/dry_battery_3,This is a AA battery. +dry_battery/dry_battery_3,This is a small battery. Electrical charge is stored in this, and is called a AA. +bowl/bowl_1,It's a bowl which is gold outside and red inside. +bowl/bowl_1,An empty dinner bowl. +bowl/bowl_1,This is a bowl. +bowl/bowl_1,A brown striped pie dish that is red on the inside. The dish is empty. +bowl/bowl_1,This is a red and brown ceramic bowl. +flashlight/flashlight_2,a red flashlight +flashlight/flashlight_2,This is a red flashlight. +flashlight/flashlight_2,A red flashlight. +flashlight/flashlight_2,This is a red flashlight. +flashlight/flashlight_2,A red plastic flashlight with a black button. +comb/comb_1,This is a hair brush. +comb/comb_1,It's a silver and black hairbrush with stiff bristles. +comb/comb_1,This is a hairbrush. +comb/comb_1,This is a black hair brush with a silver handle. +comb/comb_1,It is a hairbrush that is mostly black with some silver. +shampoo/shampoo_1,This is a bottle of shampoo or conditioner. +shampoo/shampoo_1,A bottle of shampoo. +shampoo/shampoo_1,This looks like a bottle of shampoo with a silver lid in a clear bottle. +shampoo/shampoo_1,A white plastic bottle with a gray lid. +water_bottle/water_bottle_4,This is a bottle of water. +water_bottle/water_bottle_4,This is a bottle of water. +water_bottle/water_bottle_4,This is a bottle of water. +water_bottle/water_bottle_4,A plastic water bottle. +water_bottle/water_bottle_4,This is a bottle of flavored water. +toothpaste/toothpaste_5,This is a tube of toothpaste. +toothpaste/toothpaste_5,This is a tube of toothpaste. +toothpaste/toothpaste_5,It's a tube of Crest toothpaste. It's blue and green. +toothpaste/toothpaste_5,This is a tube of mint toothpaste. +toothpaste/toothpaste_5,A tube of toothpaste. +food_box/food_box_3,This is a box of some sort of Fiber One brand snack, it looks like a Pop-Tarts box, so they must be toaster pastries. +food_box/food_box_3,A box of fiber pop-tarts. +food_box/food_box_3,A package of Fiber One pastries. +food_box/food_box_3,This is a box of FiberOne bars. +food_box/food_box_3,This is a box of Fiber One. +toothbrush/toothbrush_1,This is a toothbrush. +toothbrush/toothbrush_1,This is a toothbrush. +toothbrush/toothbrush_1,It's a red and white toothbrush. +toothbrush/toothbrush_1,This is a tooth brush. +toothbrush/toothbrush_1,A toothbrush. +apple/apple_2,A red apple. +apple/apple_2,This is a red apple. +apple/apple_2,This is an apple. +apple/apple_2,This is an apple. +apple/apple_2,a red apple +onion/onion_5,This is a red onion. +onion/onion_5,This is a red onion. +onion/onion_5,The object is a purple onion. +onion/onion_5,This is an onion. +onion/onion_5,A purple onion. +food_can/food_can_7,This is a can of soup. +food_can/food_can_7,This is the back of a can with a pull tab, the label is red and white so it's probably Campbell's brand. +food_can/food_can_7,This is a can of soup. +food_can/food_can_7,This is a can of soup. +food_can/food_can_7,A can of soup. +flashlight/flashlight_5,This is a yellow and black flashlight. +flashlight/flashlight_5,This is a device called a flashlight. Powered by batteries, it produced visible light. +flashlight/flashlight_5,A yellow flash light. +flashlight/flashlight_5,This is a flashlight. +flashlight/flashlight_5,This is a flashlight. +cereal_box/cereal_box_5,It's a box of Honey Graham Crunch cereal. The box is red and white. +cereal_box/cereal_box_5,A box of cereal. +cereal_box/cereal_box_5,This is a box of cereal. +cereal_box/cereal_box_5,This is a box of cereal. +cereal_box/cereal_box_5,This is a box of Honey Graham Crunch cereal. +shampoo/shampoo_5,This looks like the back of a bottle of shampoo. Judging by the shape it might be Suave brand, and the color is pink so it's probably scented. +shampoo/shampoo_5,It's a bottle of shampoo with pink liquid inside of it. +shampoo/shampoo_5,A bottle of shampoo. +shampoo/shampoo_5,This is a bottle of shampoo. +shampoo/shampoo_5,It is a skinny plastic bottle with a pink liquid inside. There is some black text on it and a upc barcode. +lightbulb/lightbulb_4,This is a lightbulb. +lightbulb/lightbulb_4,A light bulb. +lightbulb/lightbulb_4,It's a light bulb. +lightbulb/lightbulb_4,This is a light bulb. +lightbulb/lightbulb_4,This is a light bulb. +plate/plate_1,A yellow colored jelly like sweet +plate/plate_1,This is a bowl. +plate/plate_1,This is a ceramic plate. +plate/plate_1,This is a lemon meringue or pudding. +plate/plate_1,This is a ceramic plate. It is yellow. +lightbulb/lightbulb_1,This is an led energy efficient lightbulb. +lightbulb/lightbulb_1,This is an object when placed into a lamp, gives light. They are fragile. +lightbulb/lightbulb_1,This is a light bulb. +lightbulb/lightbulb_1,curly Q white efficiency bulb +lightbulb/lightbulb_1,It's a compact fluorescent light bulb. +orange/orange_4,This is an orange. +orange/orange_4,This is an orange. +orange/orange_4,This is an uneaten orange. +orange/orange_4,The object is an orange. +orange/orange_4,An orange. +food_box/food_box_4,A yellow box of oreo snack. +food_box/food_box_4,This is a box of Oreo Funnels. +food_box/food_box_4,A box of Oreo cookies. +food_box/food_box_4,It's a box of Golden Oreo Funstix. The box is mostly yellow. +food_box/food_box_4,This is a box of Oreo FunStix. +pear/pear_2,A yellow pear. +pear/pear_2,This is a pear that is slightly over ripe. +pear/pear_2,This is a pear. +pear/pear_2,This is a piece of fruit. +banana/banana_3,This is a banana. +banana/banana_3,This is a banana. +banana/banana_3,This is a banana. +banana/banana_3,This is a banana. +banana/banana_3,This is a banana. It is an edible fruit in the berry family, and can be eaten raw or cooked. Banana bread tastes awesome! +sponge/sponge_2,This is a sponge. It is usually used to clean as it holds water in its little holes. +sponge/sponge_2,This is a sponge. +sponge/sponge_2,This is a lime green sponge. +sponge/sponge_2,This is a green sponge. +sponge/sponge_2,A kitchen sponge. +food_can/food_can_10,A can of fruit. Del monte canned peaches. +food_can/food_can_10,This is a can which possibly contains fruit. +food_can/food_can_10,A can of fruit. +food_can/food_can_10,This is a can of something. +sponge/sponge_12,A kitchen sponge. +sponge/sponge_12,This is a sponge. It is usually used to clean as it holds water in its little holes. +sponge/sponge_12,It looks like a bean-shaped piece of playdoh. It is blue. +sponge/sponge_12,This blue cish scrubby is perfect to fit in your hand and scrub the dishes. It is often used to get stuck on food off the dishes before putting them in the dishwasher. +glue_stick/glue_stick_3,This is an Elmer's glue stick. They are necessary for school projects. +glue_stick/glue_stick_3,Glue sticks are solid adhesives in twist or push-up tubes. +glue_stick/glue_stick_3,This is a spray can. +glue_stick/glue_stick_3,This is a glue stick. +kleenex/kleenex_5,A box of tissue. Kleenex or puffs, facial tissue. +kleenex/kleenex_5,It is a tissue box that is rectangular. It is mostly red with a white swirl pattern on it. +kleenex/kleenex_5,A box of kleenex. +kleenex/kleenex_5,This is a box of facial tissues. +kleenex/kleenex_5,This is a box of tissues. +water_bottle/water_bottle_2,A plastic water bottle. +water_bottle/water_bottle_2,This is a bottle of water. +water_bottle/water_bottle_2,This is a bottle of water. +water_bottle/water_bottle_2,This is a clear water bottle. +water_bottle/water_bottle_2,This looks like a bottle of water. It is filled with clear liquid, has a white cap, and the label is blue. +binder/binder_3,This is a binder , maybe a 3 ring binder, you can keep any kind of paperwork in it. +binder/binder_3,A black colored folder/file +binder/binder_3,This is a binder. +binder/binder_3,This is a binder. +binder/binder_3,This looks like a hard cover book. It could be a journal. +bell_pepper/bell_pepper_5,A green pepper, usualy found in salads or fried potatoes. +bell_pepper/bell_pepper_5,A green bell pepper. A mild pepper. +bell_pepper/bell_pepper_5,This green bell pepper can be stuffed with sausage and onions for a delicious appetizer. +bell_pepper/bell_pepper_5,This is a green bell pepper. +bell_pepper/bell_pepper_5,A green pepper. +food_can/food_can_3,It is a red and white can of food. +food_can/food_can_3,A can of soup. +food_can/food_can_3,This is a can of soup. +food_can/food_can_3,This is a can of Campbell's soup. +food_can/food_can_3,A can of food with a red and white label, and a nutrition chart. +lime/lime_1,A green lime. +lime/lime_1,This is a green lime. +lime/lime_1,This is some sort of round green fruit. +dry_battery/dry_battery_6,It's a large alkaline battery. +dry_battery/dry_battery_6,A battery. +dry_battery/dry_battery_6,This is a battery. +glue_stick/glue_stick_4,This is a glue stick. +glue_stick/glue_stick_4,This is a cooking spray. +glue_stick/glue_stick_4,A tube of glue. +glue_stick/glue_stick_4,A glue stick. +glue_stick/glue_stick_4,This is a glue stick. +food_can/food_can_11,It's a can of food with a red and white label. +food_can/food_can_11,This is a can of soup. +food_can/food_can_11,This is a can of soup. +food_can/food_can_11,A can with a predominantly white label, that has a red strip across the top. The metal part of the can is gold. +food_can/food_can_11,This is a can of soup. +instant_noodles/instant_noodles_5,This is ramon soup mix. +instant_noodles/instant_noodles_5,A package of noodles. +instant_noodles/instant_noodles_5,Here is an orange bag of food. +instant_noodles/instant_noodles_5,It's a bag of something. +calculator/calculator_2,This is a calculator. +calculator/calculator_2,This is a calculator. +calculator/calculator_2,This is a black calculator. +calculator/calculator_2,Black, roughly square shaped, with muilti-colored buttons in the center, and small LED screen at top. +calculator/calculator_2,A calculator. +instant_noodles/instant_noodles_3,This is a package of food. +instant_noodles/instant_noodles_3,The object looks like a pack of noodles. The package is white green and red. +instant_noodles/instant_noodles_3,A bag of frozen vegetables. +water_bottle/water_bottle_3,This is a clear water bottle. +water_bottle/water_bottle_3,It is a plastic bottle of water. The label is blue with some green. +water_bottle/water_bottle_3,This is a bottle of water. +water_bottle/water_bottle_3,A plastic water bottle. +water_bottle/water_bottle_3,This is a bottle of water. +binder/binder_1,This is a 3 ring red binder. +binder/binder_1,This is a red binder. +binder/binder_1,A school folder. +binder/binder_1,This is a binder. +binder/binder_1,A red folder +pliers/pliers_1,This is a pair of pliers. +pliers/pliers_1,A pair of pliers. +pliers/pliers_1,These are pliers. +pliers/pliers_1,It's a pair of pliers with blue handles. +pliers/pliers_1,A cutting player +food_bag/food_bag_1,Chips are my favorite after dinner snack. +food_bag/food_bag_1,The object is white bag of crisps. The bag has orange and brown labels. +food_bag/food_bag_1,This is a bag of what looks like miniature rice cakes, I can't tell what brand. +food_bag/food_bag_1,A package of chips. +food_bag/food_bag_1,Here is a small, blue and orange bag of crunchy snacks. +keyboard/keyboard_3,A computer keyboard. +keyboard/keyboard_3,a computer keyboard +keyboard/keyboard_3,A black computer keyboard. It doesn’t look attached to a computer. +keyboard/keyboard_3,This is a computer keyboard. +keyboard/keyboard_3,This is a black keyboard. +lightbulb/lightbulb_1,This is an energy efficient CFL light bulb. +lightbulb/lightbulb_1,It's a compact fluorescent light bulb. +lightbulb/lightbulb_1,It is an energy savings light bulb. It is mostly white with the glass part swirling around, and the gold part that screws in. +lightbulb/lightbulb_1,This is a fluorescent light bulb. +lightbulb/lightbulb_1,A florescent light bulb. +notebook/notebook_5,This is a black spiral bound notebook. +notebook/notebook_5,A writing notebook. +notebook/notebook_5,This is a notebook. +notebook/notebook_5,This is a hardcovered black notebook. +notebook/notebook_5,It's a black spiral bound notebook. +water_bottle/water_bottle_3,This is a bottle of water. +water_bottle/water_bottle_3,A plastic bottle of drinking water with a blue label. +water_bottle/water_bottle_3,a small bottle of mineral water +water_bottle/water_bottle_3,This is a plastic bottle of water. +water_bottle/water_bottle_3,The object is a bottle of water with a white cap and blue label. +water_bottle/water_bottle_7,A plastic water bottle. +water_bottle/water_bottle_7,It's a bottle of water. +water_bottle/water_bottle_7,This is a bottle of water. +water_bottle/water_bottle_7,This is a plastic bottle. It looks to be holding water, but can be re-purposed. +water_bottle/water_bottle_7,This is a clear water bottle. +comb/comb_1,It's a black and silver hairbrush with stiff bristles. +comb/comb_1,This is a brush used to brush your hair. +comb/comb_1,this is a hair brush that you comb your hair with +comb/comb_1,This is a hairbrush. +comb/comb_1,This is a hair brush. +cereal_box/cereal_box_2,This is a box of food. +cereal_box/cereal_box_2,A box of Chex mix. +cereal_box/cereal_box_2,This is a box of food. +cereal_box/cereal_box_2,This is a box of Chex cereal. +cereal_box/cereal_box_2,A box of cereal. +peach/peach_3,This is a peach +peach/peach_3,This is a peach. +peach/peach_3,It's a white peach. It's mostly cream and pink. +peach/peach_3,This is a ripe peach. +peach/peach_3,Apples are fruit that grow on trees. +bell_pepper/bell_pepper_6,This is a green pepper. +bell_pepper/bell_pepper_6,A green pepper. +bell_pepper/bell_pepper_6,It's a green pepper. +bell_pepper/bell_pepper_6,This is a green bell pepper. +bell_pepper/bell_pepper_6,It is a green bell pepper that is on its side. +pear/pear_7,A pear. +pear/pear_7,An apple +pear/pear_7,This is an asian pear. +shampoo/shampoo_2,This is a container for a body product or a hair product. +shampoo/shampoo_2,This is a bottle of shampoo. +shampoo/shampoo_2,A bottle of toiletry +shampoo/shampoo_2,It is a predominantly white plastic bottle with a white substance in it. +shampoo/shampoo_2,This is a bottle. +keyboard/keyboard_3,This is a computer keyboard. Used as an input device, it is part of a desktop computer. +keyboard/keyboard_3,This is a computer keyboard. +keyboard/keyboard_3,This is a black computer keyboard. +keyboard/keyboard_3,A computer keyboard. +keyboard/keyboard_3,This is a keyboard, which is used for typing on a desktop computer. +ball/ball_3,A nerf baseball. +ball/ball_3,This is an inflated baseball. +ball/ball_3,Balls are used to play ball games. +ball/ball_3,This is a baseball. +potato/potato_2,A red potato. +potato/potato_2,This is a red potato. +potato/potato_2,This is a brown ball. +cap/cap_2,This is a camouflaged baseball cap. This cap should belong to a hunter. +cap/cap_2,This is a baseball cap in camo print. +cap/cap_2,This is a camoflauge ball-cap. +cap/cap_2,An army hat. +cap/cap_2,This is an army hat. +plate/plate_5,This is a ceramic plate. +plate/plate_5,It is a white plate. +plate/plate_5,This is a plate. +plate/plate_5,An empty dinner plate. +plate/plate_5,This is an all-white plate. +kleenex/kleenex_2,A pink square cardboard box of tissue. +kleenex/kleenex_2,It's a box of Kleenex with a pink design on it. +kleenex/kleenex_2,It is a smaller tissue box. It is square with a pink pattern. +kleenex/kleenex_2,This is a box of tissues. +kleenex/kleenex_2,This is a box of facial tissue. +garlic/garlic_2,This is a bulb of garlic. +garlic/garlic_2,A clove of garlic. +garlic/garlic_2,a garlic bulb +garlic/garlic_2,This is a clove of garlic. +notebook/notebook_3,This is a spiral bound notebook. +notebook/notebook_3,This is a white-spiraled notebook. +notebook/notebook_3,a spiral notebook +notebook/notebook_3,This is a spiral notebook. The cover is green & white. +notebook/notebook_3,A writing notebook. +lime/lime_2,This is a sweet fruit called an avocado. It can be eaten raw or cooked. +lime/lime_2,A green lime. +lime/lime_2,This is a green lime. +lime/lime_2,This is a lime. +lime/lime_2,This is a lime. +plate/plate_7,It is a white plate with nothing on it. +plate/plate_7,This is a white plate. +plate/plate_7,An empty dinner plate. +plate/plate_7,This is a white plate. +plate/plate_7,This is a bowl. The bowl is white. +food_box/food_box_11,A box of Cheez-It. +food_box/food_box_11,A BOX OF CHEEZ IT i BELIEVE IT'S WHITE CHEDDAR +food_box/food_box_11,This is a box of Cheeze- its. +food_box/food_box_11,This is a red box of Cheez-it's. +food_box/food_box_11,This is a box of Cheez-Its. +rubber_eraser/rubber_eraser_3,It's a pink eraser. +rubber_eraser/rubber_eraser_3,This is a pink eraser. +rubber_eraser/rubber_eraser_3,A pink rubber eraser. +rubber_eraser/rubber_eraser_3,A pencil eraser. +rubber_eraser/rubber_eraser_3,This is an eraser. +rubber_eraser/rubber_eraser_4,This is an eraser. +rubber_eraser/rubber_eraser_4,This is a rubber eraser. +rubber_eraser/rubber_eraser_4,This is a standard pink pencil eraser. +rubber_eraser/rubber_eraser_4,This is an eraser. It's a hard rubber gum used to remove pencil markings on paper. +rubber_eraser/rubber_eraser_4,A pencil eraser. +kleenex/kleenex_1,This is a box of facial tissue. +kleenex/kleenex_1,This is a box of tissues. +kleenex/kleenex_1,This is a small box of tissues. +kleenex/kleenex_1,It's a box of Kleenex with a grey design on the box. +kleenex/kleenex_1,This is small Kleenex box. It's a little more compact. +camera/camera_1,It's a disposable film camera. +camera/camera_1,This is a camera. +camera/camera_1,A disposable camera. +camera/camera_1,This is a camera. +camera/camera_1,This is a camera. +food_jar/food_jar_5,A glass jar of banana peppers. +food_jar/food_jar_5,A jar of peppers. +food_jar/food_jar_5,This is a jar of some sort of pickled vegetable. It looks too yellow to be cucumbers, so I'm guessing it's pickled bell peppers. +food_jar/food_jar_5,This is a jar of pickled peppers. +food_jar/food_jar_5,This is a jar of peppers. +food_can/food_can_7,This is a can of soup. +food_can/food_can_7,This is another can of soup. +food_can/food_can_7,This is a can of food. +food_can/food_can_7,A can of soup. +food_can/food_can_7,It's a can of soup. It's red and white with a pull tab. +food_cup/food_cup_3,A container of yogurt. +food_cup/food_cup_3,It's a container of Yoplait yogurt. +food_cup/food_cup_3,This is a container of yogurt. +food_cup/food_cup_3,It's a can. +food_cup/food_cup_3,This is a container of yogurt. +food_jar/food_jar_4,A jar of Alfredo sauce. +food_jar/food_jar_4,This is a jar of pasta sauce. +food_jar/food_jar_4,This is a jar of white pasta sauce. +food_jar/food_jar_4,This a jar of white sauce. +food_jar/food_jar_4,This is a jar of alfredo sauce. +food_can/food_can_10,This is a can that may contain food. It's commonly called a tin can, and can be easily opened pulling the ring on the pop top. +food_can/food_can_10,It's a can of food with a yellow label. +food_can/food_can_10,This is a can. +food_can/food_can_10,A can of soup. +food_can/food_can_4,This is a can of soup. +food_can/food_can_4,This is a can. +food_can/food_can_4,Canning foods in aluminum cans is a cheap way to preserve them. +food_can/food_can_4,This is a can of food. +food_can/food_can_4,A can of condensed milk. +cell_phone/cell_phone_2,It's a white and black cell phone. +cell_phone/cell_phone_2,The object is a small phone with a dialing pad. +cell_phone/cell_phone_2,A flip cellular phone. +cell_phone/cell_phone_2,This is an older cell phone. +cell_phone/cell_phone_2,This is a cell phone. +food_jar/food_jar_6,It's a jar of jelly with a silver lid. +food_jar/food_jar_6,This is a jar with a silver lid. +food_jar/food_jar_6,This is a jar of jam or jelly. +food_jar/food_jar_6,This is a jar of jam. +food_jar/food_jar_6,A jar of jelly. +camera/camera_2,a camera +camera/camera_2,This is an old camera with a yellow tag hanging on it. +camera/camera_2,This is a camera. +camera/camera_2,A digital camera. +camera/camera_2,It's a digital camera. +notebook/notebook_5,This is a black-spiraled notebook. +notebook/notebook_5,A writing notebook. +notebook/notebook_5,This is a spiral bound notebook. +food_box/food_box_8,It is a cardboard box with six sides. It is mostly blue with some yellow text. +food_box/food_box_8,This is a box of crackers. +food_box/food_box_8,It's a box of crackers. The box is mostly blue. +food_box/food_box_8,The object is a blue box. The box is advertising crackers and spray cheese. +food_box/food_box_8,A box of crackers. +calculator/calculator_2,A big brown caculator +calculator/calculator_2,A round plastic object with a screen on top. The object also has buttons that can be manipulated. +calculator/calculator_2,This is a calculator. +calculator/calculator_2,This is a calculator used to solve mathmatical problems quickly. +calculator/calculator_2,This is a calculator. +glue_stick/glue_stick_4,A tube of glue. +glue_stick/glue_stick_4,This is a can of spray. +glue_stick/glue_stick_4,This is a glue stick. +glue_stick/glue_stick_2,This is a bottle of aspirin. +glue_stick/glue_stick_2,A tube of glue. +food_can/food_can_13,This is a can of soup with the ingredients listed on the label. +food_can/food_can_13,A can of soup. +food_can/food_can_13,This is an aluminum can. It looks like a can of soup. Food is stored in cans like this. +food_can/food_can_13,This is a can that may contain food. It's commonly called a tin can, and can be easily opened pulling the ring on the pop top. +food_can/food_can_13,This is a can of soup. +dry_battery/dry_battery_2,This is a battery. +dry_battery/dry_battery_2,It's a yellow and black battery. +dry_battery/dry_battery_2,This is a battery. +hand_towel/hand_towel_5,This is a black towel. +hand_towel/hand_towel_5,This is a small black towel. +hand_towel/hand_towel_5,A black folded towel. +hand_towel/hand_towel_5,A wash cloth or towel. It is black in color +sponge/sponge_10,A kitchen sponge. +onion/onion_1,It's a white onion. +onion/onion_1,This is a white onion. +onion/onion_1,This is a white onion. +onion/onion_1,This is a white onion. +instant_noodles/instant_noodles_1,This is a package of food. +instant_noodles/instant_noodles_1,A package of noodles. +instant_noodles/instant_noodles_1,A bag that looks like it has a red holiday design +instant_noodles/instant_noodles_1,A pack of something which looks like sncaks +calculator/calculator_4,This is a light green calculator. +calculator/calculator_4,This is a calculator. +calculator/calculator_4,It's a bright green calculator. +calculator/calculator_4,This is a green calculator. +calculator/calculator_4,This is a neon green calculator. +lime/lime_2,It's a lime with a sticker on it. +lime/lime_2,This is a lime. +lime/lime_2,A green lime. +lime/lime_2,a green lime +lime/lime_2,This is a lime. +stapler/stapler_6,This is a stapler. +stapler/stapler_6,This object is a tool that when pushed down on a stack of papers, releases a metal staple which holds the papers together. From the pressure being exterted on the tool, the metal staple's prongs are bent which holds it in place. +stapler/stapler_6,This is a stapler. +stapler/stapler_6,A black stapler. +stapler/stapler_6,The object is a black stapler. +bell_pepper/bell_pepper_5,This is a green bell pepper. +bell_pepper/bell_pepper_5,a green bell pepper +bell_pepper/bell_pepper_5,A green pepper. +bell_pepper/bell_pepper_5,This is a green pepper. +bell_pepper/bell_pepper_5,It is a green pepper. +ball/ball_3,This is an object of a soft ball. +ball/ball_3,The object is soft, has red threads and is round. +ball/ball_3,A baseball +ball/ball_3,This looks like a white baseball with red threading. +ball/ball_3,A baseball. +bowl/bowl_4,This is a bowl. +bowl/bowl_4,A white ceramic bowl. +bowl/bowl_4,This is a small ceramic bowl. It is white. +bowl/bowl_4,A white bowl, looking as if it was newly washed. +bowl/bowl_4,A bowl +flashlight/flashlight_3,This is a flashlight. +flashlight/flashlight_3,This is a flash light. +flashlight/flashlight_3,This is a device called a flashlight. Powered by batteries, it produced visible light. +flashlight/flashlight_3,A blue flash light. +flashlight/flashlight_3,a flashlight +apple/apple_4,It's a yellow apple. +apple/apple_4,This is an apple. +apple/apple_4,This is a golden apple. +apple/apple_4,This is an apple. +apple/apple_4,A yellow apple. +pliers/pliers_4,This is a pair of pliers. +pliers/pliers_4,This is a black pliars. +pliers/pliers_4,The object is a pair of pliers with black handles. +pliers/pliers_4,A pair of pliers. +pliers/pliers_4,These are pliers with a red and black handle. +food_can/food_can_14,This is a can of soup. +food_can/food_can_14,This is a can of a food product. +food_can/food_can_14,It's a can of soup. The can is red with a green rectangle. +food_can/food_can_14,This is a food container, commonly called a tin can. It is easily opened by pulling on the pop-top lid covering one end. +food_can/food_can_14,This is a can of soup. +scissors/scissors_4,This is a silver scissors. +scissors/scissors_4,This is a pair of scissors. +scissors/scissors_4,It's a pair of scissors with blue and yellow handles. +scissors/scissors_4,These are scissors used for cutting things. +scissors/scissors_4,Scissors with a yellow and blue handle. +lemon/lemon_4,A yellow lemon. +lemon/lemon_4,It's a lemon. +lemon/lemon_4,This is a tart fruit called a tomato. It can be eaten raw or cooked. +lemon/lemon_4,This is a yellow lemon. +lemon/lemon_4,This is a lemon. +shampoo/shampoo_5,This is a cheap bottle of shampoo. +shampoo/shampoo_5,This is a plastic bottle. The contents inside are pink. +shampoo/shampoo_5,This is a bottle of shampoo. +shampoo/shampoo_5,This is a bottle of body wash. +shampoo/shampoo_5,A bottle of shampoo. +comb/comb_2,A black comb with oval head +comb/comb_2,This is a hair brush. It is used to de-tangle a person's hair. +comb/comb_2,This is a hairbrush. +comb/comb_2,A black hair brush. +comb/comb_2,This is a hair brush. +glue_stick/glue_stick_1,This is a glue stick. +glue_stick/glue_stick_1,It's a tube of glue. It has a white and green label and a red cap. +glue_stick/glue_stick_1,A tube of glue. +glue_stick/glue_stick_1,a glue stick +glue_stick/glue_stick_1,this is super glue you use this if you break something to fix it. +sponge/sponge_5,This is a red and blue sponge. +sponge/sponge_5,This is a sponge. +sponge/sponge_5,A colorful sponge +sponge/sponge_5,This is a sponge. It's blue and red and is used for cleaning. +sponge/sponge_5,A kitchen sponge. +instant_noodles/instant_noodles_1,A packet of asian looking food +instant_noodles/instant_noodles_1,This is a package of food. +instant_noodles/instant_noodles_1,Cookie or pastry of some kind wrapped in foreign packaging and lettering. +instant_noodles/instant_noodles_1,This is a package of food. +instant_noodles/instant_noodles_1,A snack package. +water_bottle/water_bottle_9,A plastic water bottle. +water_bottle/water_bottle_9,This is a beverage container. +water_bottle/water_bottle_9,This is a blue water bottle. +water_bottle/water_bottle_9,This is a purple water bottle. +water_bottle/water_bottle_9,This looks like a reusable water bottle with a handle and a flip up pour spout. The lid is lilac colored. +glue_stick/glue_stick_1,This looks like chapstick. +glue_stick/glue_stick_1,A tube of glue. +food_box/food_box_9,A green cardboard package of Annie's pasta. +food_box/food_box_9,The box of cracker is green. +food_box/food_box_9,This is a box of pasta. +food_box/food_box_9,It's a box of Sour Cream and Onion crackers. The box is green. +food_box/food_box_9,This is a box of crackers. +stapler/stapler_4,This is a stapler. +stapler/stapler_4,This is a stapler. +stapler/stapler_4,This is a stapler. It joins two or more pieces of paper together. +stapler/stapler_4,A black stapler. +stapler/stapler_4,This is a black stapler. +food_box/food_box_11,This is a box of crackers. +food_box/food_box_11,A box of Cheez-It. +food_box/food_box_11,This is a red box of Cheez-it's. +food_box/food_box_11,This is a box of cheez-its. +food_box/food_box_11,This is a box of Cheez-Its. +food_bag/food_bag_4,This is a bag of Oreo cookies. +food_bag/food_bag_4,A bag of oreos +food_bag/food_bag_4,It is a bag of mini oreos. The bag is blue with white and yellow text. +food_bag/food_bag_4,A package of Oreo cookies. +food_bag/food_bag_4,This is a package of cookies. +food_jar/food_jar_6,This is a jar of hot fudge. +food_jar/food_jar_6,This is a jar. The jar contains hot fudge. +food_jar/food_jar_6,This is a jar containing a food product. +food_jar/food_jar_6,A jar of jelly. +food_jar/food_jar_6,Cylinder shaped object with a metal top and a colored label in center +cell_phone/cell_phone_1,This is a mobile phone. +cell_phone/cell_phone_1,This is an older cellphone. +cell_phone/cell_phone_1,This is a handheld phone. +cell_phone/cell_phone_1,This is an old cell phone used to call and text people. +cell_phone/cell_phone_1,A cell phone. +soda_can/soda_can_4,This is a can of Vanilla Coke Zero. +soda_can/soda_can_4,This is a can of vanilla Coke Zero. +soda_can/soda_can_4,A can of Coke. +soda_can/soda_can_4,Food Can is used to store or keep food items. +soda_can/soda_can_4,This is a can of Coca-Cola. +bell_pepper/bell_pepper_6,This is a green pepper. +bell_pepper/bell_pepper_6,This is a green bell pepper. +bell_pepper/bell_pepper_6,A green pepper. +bell_pepper/bell_pepper_6,a green bell pepper +bell_pepper/bell_pepper_6,This is a green pepper. +potato/potato_5,This is a oblong, brown, dirty, vegetable. +potato/potato_5,This is a potato. Usually cooked before being eaten, it's a starchy vegetable. +potato/potato_5,This is a potato. +potato/potato_5,A large baking potato. +potato/potato_5,This is a potato. +stapler/stapler_8,This is a small red stapler. +stapler/stapler_8,A small red stapler. +stapler/stapler_8,This is a small red stapler. +stapler/stapler_8,This is a stapler. +stapler/stapler_8,This is a mini stapler. +dry_battery/dry_battery_5,These are batteries. +dry_battery/dry_battery_5,This is a battery. +dry_battery/dry_battery_5,This is a small battery. +dry_battery/dry_battery_5,A battery. +dry_battery/dry_battery_5,This is a small battery. Electrical charge is stored in this, and is called a D-Cell. +ball/ball_4,A dessert on a plate. +ball/ball_4,This is a plastic basketball. +ball/ball_4,This is a basketball. +potato/potato_2,This looks like a small red potato. +potato/potato_2,A red potato. +notebook/notebook_5,This looks like sand paper. +notebook/notebook_5,This is a black spiral bound notebook. +notebook/notebook_5,This is a note pad. +notebook/notebook_5,A writing notebook. +notebook/notebook_5,This is a black spiral notebook +hand_towel/hand_towel_2,It's a red washcloth. +hand_towel/hand_towel_2,This is a small red towel. +hand_towel/hand_towel_2,A RED SQUARE ON TOP OF A PLATE +hand_towel/hand_towel_2,A folded towel. +cell_phone/cell_phone_5,This is a smartphone. +cell_phone/cell_phone_5,This is a smart phone. +cell_phone/cell_phone_5,A smartphone. +cell_phone/cell_phone_5,A cell phone with dots on either side. +cell_phone/cell_phone_5,Cell phone, is a portable telephone that can make and receive calls. +food_bag/food_bag_8,A bag of chips. +food_bag/food_bag_8,This is a bag of Sun Chips. +food_bag/food_bag_8,a bag of sun chips +food_bag/food_bag_8,A pack of sun chips +food_bag/food_bag_8,This is a bag of Sun Chips. +lemon/lemon_5,A yellow lemon. +lemon/lemon_5,A lemon lying on its side, it is mostly yellow but has a green patch near one end. +lemon/lemon_5,This is a lemon with a green spot on it. +lemon/lemon_5,This is a lemon. +lemon/lemon_5,This is a lemon. +bell_pepper/bell_pepper_4,This is a red bell pepper. +bell_pepper/bell_pepper_4,It's a red bell pepper. +bell_pepper/bell_pepper_4,A red pepper. +bell_pepper/bell_pepper_4,This is a red pepper. +bell_pepper/bell_pepper_4,This is a red bell pepper. +pliers/pliers_3,This is green pliars. +pliers/pliers_3,This is a pair of pliers. +pliers/pliers_3,A pair of pliers. +pliers/pliers_3,This is a pair of pliers. +pliers/pliers_3,The object is a pair of pliers with light green handles. +greens/greens_4,this is bell pepper +greens/greens_4,This is a vegetable, possibly bok choi or another type of cabbage. +greens/greens_4,Bok Choy on a plate. +greens/greens_4,This is some type of green vegetable. +sponge/sponge_9,A kitchen sponge. +food_can/food_can_4,This is a can. +food_can/food_can_4,A can of condensed milk. +food_can/food_can_4,This is a canned good of food. +food_can/food_can_4,It's a can of carnation milk. It is a small can with a white label. +food_can/food_can_4,This is a can of a product. +coffee_mug/coffee_mug_3,This is a mug. +coffee_mug/coffee_mug_3,A coffee mug. +coffee_mug/coffee_mug_3,This is a brown coffee mug. +coffee_mug/coffee_mug_3,This is a coffee mug. +coffee_mug/coffee_mug_3,The object is brown, has a handle and a hole in its center. +glue_stick/glue_stick_5,This is a marker or glue stick. +glue_stick/glue_stick_5,This is a glue stick. +glue_stick/glue_stick_5,A marker pen +glue_stick/glue_stick_5,A tube of glue. +food_can/food_can_5,A can of soup. +food_can/food_can_5,A can of some food +food_can/food_can_5,This is a can of food. +food_can/food_can_5,This is a can of soup. +food_can/food_can_5,It's a Market Pantry can of soup. It has a red and white label. +orange/orange_2,An orange. +orange/orange_2,This is a piece of fruit. +orange/orange_2,This is a round orange sitting alone. +orange/orange_2,This is an orange. +food_bag/food_bag_4,This is a bag of mini Oreo cookies. +food_bag/food_bag_4,This is a snack sized bag of mini oreo cookies. They are chocolate cookies with cream filling in the middle. +food_bag/food_bag_4,This is a bag of Oreo cookies. +food_bag/food_bag_4,It's a bag of Oreos. +food_bag/food_bag_4,It's a bag of Mini Oreos. It is blue with yellow and white text on it. +shampoo/shampoo_6,A bottle of shampoo. +shampoo/shampoo_6,This is a yellow plastic bottle. +shampoo/shampoo_6,This is a bottle of children's shampoo. +shampoo/shampoo_6,This is a green and yellow bottle of shampoo. +shampoo/shampoo_2,This looks like a spray bottle. +shampoo/shampoo_2,Blue shade color that might be part of a bottle. +garlic/garlic_3,This is a bulb of garlic. +garlic/garlic_3,This is a garlic bulb. +garlic/garlic_3,A clove of garlic. +garlic/garlic_3,This looks like a clove of garlic used as a seasoning and has many health benefits. +cell_phone/cell_phone_3,This is a mobile phone. +cell_phone/cell_phone_3,A cell phone. +cell_phone/cell_phone_3,Looks to be a flip phone. +cell_phone/cell_phone_3,Flip cell phones are an antiquated technology. +cell_phone/cell_phone_3,This is a flip phone. No one uses these anymore. +kleenex/kleenex_5,A box of kleenex. +kleenex/kleenex_5,This is a box of facial tissue. +kleenex/kleenex_5,This is a box of tissues. +kleenex/kleenex_5,This is a purple box of tissues. +kleenex/kleenex_5,It's a box of Kleenex with a red design. +notebook/notebook_2,A sketch book of 70 pages +notebook/notebook_2,This is a sprial notebook of paper. 70 ruled sheets of paper are bound together by the wire spiral, and used by humans to write on. +notebook/notebook_2,It's a yellow spiral bound notebook. +notebook/notebook_2,This is a spiral bound notebook. +notebook/notebook_2,A writing notebook. +mushroom/mushroom_2,A mushroom. +mushroom/mushroom_2,A mushroom is the fleshy, spore-bearing fruiting body of a fungus. +mushroom/mushroom_2,This is a mushroom. +mushroom/mushroom_2,This is a mushroom. +mushroom/mushroom_2,This is a mushroom. +cell_phone/cell_phone_2,This is a mobile phone. +cell_phone/cell_phone_2,an old mobile phone +cell_phone/cell_phone_2,A cellular flip-phone. +cell_phone/cell_phone_2,An older model cell phone. +cell_phone/cell_phone_2,This is a cellphone. +pear/pear_8,This is a green apple. +pear/pear_8,This is a yellow apple. +pear/pear_8,This is an apple. +pear/pear_8,This is a small green apple. +pear/pear_8,A yellow colored apple +lime/lime_1,A green lime. +lime/lime_1,This is a green lime. +lime/lime_1,This is a lime. +lime/lime_1,This is a lime. +lime/lime_1,It's a lime with a produce sticker on it. +lemon/lemon_6,It is a yellow lemon. It is shaped like a football. +lemon/lemon_6,This is a sweet fruit called a lemon. It can be eaten raw or cooked. +lemon/lemon_6,A yellow lemon. +lemon/lemon_6,This is a lemon. +lemon/lemon_6,This is a lemon. +pear/pear_1,This is a pear. +pear/pear_1,A pear. +pear/pear_1,This is a green pear. +pear/pear_1,A fresh pear with a few brown spots on the peel. +pear/pear_1,This is a pear. +potato/potato_5,A russet potato. +potato/potato_5,This is a potato. +potato/potato_5,A large baking potato. +potato/potato_5,This is a potato. +potato/potato_5,It's a brown russet potato. +marker/marker_1,This is a marker. It is used on dry-erase boards. +marker/marker_1,This is a red dry erase marker. +marker/marker_1,This is a red dry erase marker. +marker/marker_1,This is a red Expo marker with the cap on. +marker/marker_1,A magic marker. +onion/onion_4,Onion is a vegetable. +onion/onion_4,A white onion. +onion/onion_4,This is an onion. This tasty vegetable has a sharp flavor, and us usually cooked. +onion/onion_4,This is an onion. +onion/onion_4,This is an onion. +sponge/sponge_6,A sponge is a tool or cleaning aid made of soft, porous material. +sponge/sponge_6,This is a yellow and purple sponge. +sponge/sponge_6,A kitchen sponge. +sponge/sponge_6,This is a kitchen sponge. +orange/orange_1,This is an orange. +orange/orange_1,This is an orange it is a fruit that is mostly grown in Florida +orange/orange_1,This is an overripe orange. +orange/orange_1,An orange. +orange/orange_1,This is a piece of fruit. +food_box/food_box_3,A box of Fiber One pastries. +food_box/food_box_3,This is a box of fiber cereal. +food_box/food_box_3,This is a box of FiberOne bars. +food_box/food_box_3,This is a Fiber One product. +food_box/food_box_3,This is a box of Fiber One. +lemon/lemon_3,A yellow lemon. +lemon/lemon_3,This is a lemon. +lemon/lemon_3,This is a yellow lemon. +lemon/lemon_3,A fresh lemon. +lemon/lemon_3,A lemon +tomato/tomato_4,This is a red tomato. +tomato/tomato_4,This is a tomato. +tomato/tomato_4,This is a tomato. +tomato/tomato_4,A red tomato. +tomato/tomato_4,This is a tomato. +garlic/garlic_3,A clove of garlic. +garlic/garlic_3,This is a bulb of garlic. +garlic/garlic_3,This is a bulb of garlic. +garlic/garlic_3,This may be a clove of garlic used for cooking. +camera/camera_3,This is a camera. +camera/camera_3,A digital camera. +camera/camera_3,this is a camera +camera/camera_3,a pocket digital camera +camera/camera_3,This is a digital camera. +food_box/food_box_2,This is a box containing dry rice that will need to be prepared before being eaten. +food_box/food_box_2,A pack/box of something +food_box/food_box_2,This is a box of Zatarrain's rice. +food_box/food_box_2,A box of highly processed food with a red and white label and a picture of yellow food on the box. +food_box/food_box_2,It is a box of Zatarain's Yellow Rice mix. The box is red and white. +food_box/food_box_2,Here is a box of dry noodles +peach/peach_1,This is a peach. +peach/peach_1,This is a piece of fruit. +peach/peach_1,A peach. +peach/peach_1,This looks like a nectarine, but the picture is a little blurry, it could be a peach. +peach/peach_1,This is a fresh peach. +food_jar/food_jar_5,a jar of relish +food_jar/food_jar_5,This is a jar of peppers. +food_jar/food_jar_5,A jar of peppers. +food_jar/food_jar_5,This is a jar of pickles. +scissors/scissors_1,This is a pair of scissors. +scissors/scissors_1,This is orange and grey scissors. +scissors/scissors_1,A scissor +scissors/scissors_1,This is a pair of scissors. +scissors/scissors_1,Scissors with an orange and black handle. +notebook/notebook_4,A writing notebook. +notebook/notebook_4,This is a spiral bound notebook. This pad of paper is held together by the wire spiral at one side. +notebook/notebook_4,This a blue-spiraled notebook. +notebook/notebook_4,It's a blue spiral bound notebook. +notebook/notebook_4,This is a blue spiral bound notebook. +flashlight/flashlight_1,This is a flashlight. +flashlight/flashlight_1,This is a black flashlight that is not currently illuminated. +flashlight/flashlight_1,A black flashlight. +flashlight/flashlight_1,this a black flashlight. +flashlight/flashlight_1,This is a black flashlight. +toothpaste/toothpaste_3,This is a tube of toothpaste. +toothpaste/toothpaste_3,This is a tube of toothpaste. +toothpaste/toothpaste_3,This is toothpaste. It keeps your teeth clean. +toothpaste/toothpaste_3,A tube of toothpaste. +toothpaste/toothpaste_3,It's a tube of toothpaste. It's blue and white. +potato/potato_1,A red potato. +potato/potato_1,This is a red potato. +flashlight/flashlight_5,It's a yellow and black flashlight. +flashlight/flashlight_5,This is a black and yellow flashlight. +flashlight/flashlight_5,This is a yellow and black flashlight. +flashlight/flashlight_5,a yellow and black flashlight +flashlight/flashlight_5,This is a yellow flashlight. +banana/banana_3,This is a banana. +banana/banana_3,This is a yellow banana. +banana/banana_3,A banana on a plate. +banana/banana_3,It's a banana. +banana/banana_3,This is a banana. +onion/onion_4,The object is round, off white and has a tuft on the topside. +onion/onion_4,This looks like an onion, the root side is up and part of the tan skin has bene torn off. +onion/onion_4,This is an onion. +onion/onion_4,An onion which looks decayed +onion/onion_4,This onion appears to be brown & yellow with brown roots. +dry_battery/dry_battery_4,This is a battery. +dry_battery/dry_battery_4,This is a small battery. Electrical charge is stored in this, and is called a D-Cell. +dry_battery/dry_battery_4,A battery. +dry_battery/dry_battery_4,This is a small duracell battery. +bowl/bowl_2,This is a bowl. Normally used for soups or deserts, it is part of a table setting. +bowl/bowl_2,This is a bowl. +bowl/bowl_2,This is a light blue bowl. The edges look worn. +bowl/bowl_2,This is a teal-colored bowl. +bowl/bowl_2,An empty dinner bowl. +food_can/food_can_1,This is a can. We can't tell what's inside. +food_can/food_can_1,This is a can. +food_can/food_can_1,A can of soup. +food_can/food_can_1,This is a canned good. +food_can/food_can_1,This is a can with some product in it. +onion/onion_3,A white onion. +onion/onion_3,There is a small onion that is a yellow onion. +onion/onion_3,This is an onion. +onion/onion_3,This is an onion. +food_can/food_can_1,A can of condensed milk. +food_can/food_can_1,This is a can of soup. +food_can/food_can_1,A can of paint holds a liquid covering. Paint can cover many surfaces. +food_can/food_can_1,This is a can of food. +shampoo/shampoo_4,A tall Suave shampoo bottle with a gray lid. +shampoo/shampoo_4,This is a bottle of shampoo. +shampoo/shampoo_4,A bottle of shampoo or conditioner +shampoo/shampoo_4,A bottle of Suave shampoo. +bell_pepper/bell_pepper_4,This is a red bell pepper. +bell_pepper/bell_pepper_4,This is a red bell pepper. +bell_pepper/bell_pepper_4,This is a red bell pepper. +bell_pepper/bell_pepper_4,A red pepper. +bell_pepper/bell_pepper_4,The bell pepper is a vegetable. +sponge/sponge_1,This is a sponge. +sponge/sponge_1,This is a sponge. +sponge/sponge_1,This is a sponge. +sponge/sponge_1,It's an orange dish sponge. +sponge/sponge_1,A kitchen sponge. +food_can/food_can_2,This is a can of Campbell's soup. +food_can/food_can_2,a can of some +food_can/food_can_2,This is a can of soup. +food_can/food_can_2,This is a can of Campbell's soup. +food_can/food_can_2,A can of soup. +food_cup/food_cup_2,This is a cup of yogurt. +food_cup/food_cup_2,This looks like a container of yogurt, it has a foil top and I can't see the label. +food_cup/food_cup_2,This is a container of yogurt. +food_cup/food_cup_2,A container of yogurt. +food_cup/food_cup_2,This is a container of yogurt. +bowl/bowl_4,An empty dinner bowl. +bowl/bowl_4,This is an all-white bowl. +bowl/bowl_4,This is a bowl. Normally used for soups or deserts, it is part of a table setting. +bowl/bowl_4,This is a bowl. +bowl/bowl_4,This is a white bowl. +plate/plate_1,An empty dinner bowl. +plate/plate_1,This is a yellow ceramic plate. +plate/plate_1,This is either a lemon meringue or yellow jello. +plate/plate_1,This is a plate. +food_box/food_box_8,This is the b ack of a box of some sort of crackers, I can't tell what brand but the box is blue. +food_box/food_box_8,A box of crackers. +food_box/food_box_8,This is a Chicken in a Bisket Box. It is mainly blue. +food_box/food_box_8,This is a box of crackers. +food_box/food_box_8,These are little crackers that some people like to put cheese on. +ball/ball_6,A small beanbag toy that looks like a baketbal.. +ball/ball_6,This is a plastic toy basketball. +ball/ball_6,This is a basketball. +ball/ball_6,This is a ball. The pattern is similar to a basketball. +ball/ball_6,A nerf basketball. +food_cup/food_cup_4,This is a container of food. +food_cup/food_cup_4,A plastic cup of Chobani peach yogurt. +food_cup/food_cup_4,This is a container of Chobani yogurt. +food_cup/food_cup_4,This is a cup of yogurt. +food_cup/food_cup_4,This is a container of peach flavored Chobani yogurt. +marker/marker_8,This is a marker. +marker/marker_8,A magic marker. +marker/marker_7,Markers are used to write. +marker/marker_7,This is a marker. +marker/marker_7,This is a pink highlighter. +marker/marker_7,A magic marker. +sponge/sponge_1,The object is an orange/pink dish washing sponge. +sponge/sponge_1,This is a sponge. +sponge/sponge_1,This is a cleaning sponge. +sponge/sponge_1,A kitchen sponge. +sponge/sponge_1,This is an orange sponge. +banana/banana_4,It's a very green plantain. +banana/banana_4,This is a plantain. +banana/banana_4,This is a banana. +banana/banana_4,A plantain on a plate. +banana/banana_4,This is an unripe green banana. +calculator/calculator_3,It's a white calculator with a green screen and black keys. +calculator/calculator_3,This is a calculator. +calculator/calculator_3,A calculator. +calculator/calculator_3,A Small Handheld Device Used To Do Mathematical Computation. +calculator/calculator_3,This is a calculator. It is used for math questions. +bell_pepper/bell_pepper_3,This is a red pepper. +bell_pepper/bell_pepper_3,A red pepper. +bell_pepper/bell_pepper_3,A small orange pumpkin, with a big stem at the top. +bell_pepper/bell_pepper_3,This is a red bell pepper. +bell_pepper/bell_pepper_3,This is a red bell pepper. +garlic/garlic_2,A bulb of garlic +garlic/garlic_2,This is a bulb of garlic. +glue_stick/glue_stick_3,This is a spray can. +glue_stick/glue_stick_3,Glue sticks are solid adhesives in twist or push-up tubes. +glue_stick/glue_stick_3,A tube of glue. +binder/binder_3,This is a binder. +binder/binder_3,A school folder. +binder/binder_3,This is a black binder. +binder/binder_3,A black folder +binder/binder_3,This is a black binder. +sponge/sponge_12,A blue sponge can be used for cleaning dishes. +sponge/sponge_12,This is a blue pincushion. +sponge/sponge_12,A kitchen sponge. +bowl/bowl_5,This is a bowl. +bowl/bowl_5,The object is a kitchen bowl. +bowl/bowl_5,An empty dinner bowl. +bowl/bowl_5,This is a white and black bowl. +bowl/bowl_5,It's a bowl with black stripes around the inside. +pliers/pliers_4,The plyers are open. +pliers/pliers_4,This is a pair of pliers. +pliers/pliers_4,This is a pair of pliers. +pliers/pliers_4,A pair of pliers. +pliers/pliers_4,These are pliers. +food_box/food_box_9,This is a green box containing food, probably pasta. +food_box/food_box_9,green box with bunny logo +food_box/food_box_9,A box of crackers. +food_box/food_box_9,This is a green box. It has a bunny on it. +stapler/stapler_6,This is a black stapler. +stapler/stapler_6,A black stapler. +stapler/stapler_6,This is a stapler. +stapler/stapler_6,This is a stapler. +stapler/stapler_6,A stapler is a mechanical device that joins pages of paper or similar material by driving a thin metal staple through the sheets and folding the ends. +glue_stick/glue_stick_6,This is a glue stick. +glue_stick/glue_stick_6,This is a can of cooking spray. +glue_stick/glue_stick_6,There is a canister of what looks like glue stick. +glue_stick/glue_stick_6,A tube of glue. +glue_stick/glue_stick_6,This is a stick of Elmer's glue. +food_can/food_can_8,This is a can of Rotel, it is a combination of tomatoes and perppers, mostly used as a topping or added to cheese to make nachos. +food_can/food_can_8,This is a can of tomatoes. +food_can/food_can_8,A can of Rotel tomatoes. +food_can/food_can_8,This is a can. +apple/apple_1,This is a dark red apple. It has a sticker on it. +apple/apple_1,This is a red apple. +apple/apple_1,This is a dark red apple. +apple/apple_1,This is an apple. +apple/apple_1,A red apple. +ball/ball_5,The picture is a small plastic looking toy football. It is brown and white. +ball/ball_5,A nerf football. +ball/ball_5,This is a fake brown football. +ball/ball_5,This is a football. +ball/ball_5,This is a toy football. +ball/ball_7,A brand new soccer ball. +ball/ball_7,This is a soccer ball. +ball/ball_7,A soccer ball. +ball/ball_7,It is a white round soccer ball. It has black pentagons all around it. +ball/ball_7,The object is a white and black hexagonal soccer ball. +water_bottle/water_bottle_7,This is a bottle of water. +water_bottle/water_bottle_7,This is a bottle of drinking water. +water_bottle/water_bottle_7,A plastic water bottle. +water_bottle/water_bottle_7,It is a plastic water bottle. The water bottle is unopened. +water_bottle/water_bottle_7,The waterbottle has water in it. It has a cap. +instant_noodles/instant_noodles_4,A package of noodles. +instant_noodles/instant_noodles_4,some packet of asian food +instant_noodles/instant_noodles_4,This is a package of food. +instant_noodles/instant_noodles_4,This is a package of soup. +apple/apple_3,A fresh yellow apple with no stem. +apple/apple_3,A fruit which looked like golden delicious +apple/apple_3,A yellow lemon. +apple/apple_3,This is an apple. +mushroom/mushroom_2,A mushroom. +sponge/sponge_10,A kitchen sponge. +cap/cap_4,A red baseball cap. +cap/cap_4,This is a red baseball cap. +cap/cap_4,This is a red baseball cap. +cap/cap_4,red ball cap +cap/cap_4,This is a red baseball cap. +binder/binder_3,This is a black binder. +binder/binder_3,This is a black 3-ring binder. +binder/binder_3,This is a black binder. +binder/binder_3,A school folder. +binder/binder_3,It is a black folder. It is very thin and square shaped. +food_jar/food_jar_4,This is a jar of white pasta sauce. +food_jar/food_jar_4,This is a jar of pasta sauce. +food_jar/food_jar_4,A jar of Alfredo sauce. +food_jar/food_jar_4,This is an unopened jar. The contents are white. +food_jar/food_jar_4,This is a jar of alfredo sauce. +sponge/sponge_7,This is a sponge. +sponge/sponge_7,A kitchen sponge. +sponge/sponge_7,It's a yellow sponge with a green scrubbing pad. +sponge/sponge_7,This is a kitchen sponge. +sponge/sponge_7,This is a green and yellow sponge. +coffee_mug/coffee_mug_6,This is a small ceramic bowl. It is dark yellow. +coffee_mug/coffee_mug_6,This is a bowl. +coffee_mug/coffee_mug_6,It's a yellow mug with a brown stripe around the edge. +coffee_mug/coffee_mug_6,A tan coffee cup with a solid brown decorative ring near the top +coffee_mug/coffee_mug_6,This is a mug. +lime/lime_3,A green lime. +lime/lime_3,It looks like a green lime with a white patch on top +lime/lime_3,This is a lime. +onion/onion_4,A yellow onion +onion/onion_4,This is an onion. +onion/onion_4,This is an onion. +onion/onion_4,This is a white onion. +onion/onion_4,A white onion. +garlic/garlic_3,A bulb of garlic +garlic/garlic_3,This is a bulb of garlic. +garlic/garlic_3,A clove of garlic. +garlic/garlic_3,It's a head of garlic. It is white and purple. +dry_battery/dry_battery_3,This is a battery. +banana/banana_4,This is a banana. +banana/banana_4,This is a green banana. +banana/banana_4,A plantain on a plate. +banana/banana_4,This is an unripe banana or plantain. +banana/banana_4,A ripe banana. +calculator/calculator_1,A calculator. +calculator/calculator_1,This is a calculater. It is used to perform math. +calculator/calculator_1,This is a simple digital calculator. Basic math problems can be solved using this electronic device. +calculator/calculator_1,This is a calculator. +calculator/calculator_1,This is a calculator. +tomato/tomato_7,This is a tomato. +tomato/tomato_7,This is a red tomato. +tomato/tomato_7,This is a picture of a tomato. +tomato/tomato_7,Red tomatoes are used to make marinara sauce. +tomato/tomato_7,This is a sweet fruit called a tomato. It can be eaten raw or cooked. +water_bottle/water_bottle_6,This is a bottle of water. +water_bottle/water_bottle_6,A small bottle of water +water_bottle/water_bottle_6,It's a bottle of water. It is squarish with a blue cap and blue label. +water_bottle/water_bottle_6,A plastic water bottle. +water_bottle/water_bottle_6,This is a bottle of drinking water. +glue_stick/glue_stick_1,This is a glue stick. +glue_stick/glue_stick_1,This is a tube of super glue. +shampoo/shampoo_1,A bottle of shampoo. +shampoo/shampoo_1,This is a bottle of shampoo. +shampoo/shampoo_1,This is a plastic container. It may dispense shampoo, conditioner, hand lotion, or other substances. +shampoo/shampoo_1,This is a body cleanser or body soap. +coffee_mug/coffee_mug_2,This is a dark brown coffee mug. +coffee_mug/coffee_mug_2,This is a cup or mug. Must often coffee or tea are served in these containers. +coffee_mug/coffee_mug_2,This is a ceramic mug. +coffee_mug/coffee_mug_2,A coffee mug. +coffee_mug/coffee_mug_2,This looks like a coffee or tea mug. The outside looks tan or brown and the inside is too dark to see. +food_box/food_box_9,A box of non perishable food. Flavor is, Sour Cream and Onion. +food_box/food_box_9,It's a box of crackers. It's green with white text on it. +food_box/food_box_9,This is a box of sour cream and onion bagel chips. +food_box/food_box_9,A package of sour cream and onion mix. +food_box/food_box_9,This is a box of food. +plate/plate_3,It's a white plate with blue stripes around the edge. +plate/plate_3,This is a plate. +plate/plate_3,This is a plate. +plate/plate_3,This is an empty plate. +bell_pepper/bell_pepper_6,A green pepper. +bell_pepper/bell_pepper_6,a green bell pepper +bell_pepper/bell_pepper_6,This a green bell pepper. +bell_pepper/bell_pepper_6,This is a green bell pepper. +bell_pepper/bell_pepper_6,This is a green pepper. +pliers/pliers_3,This is green pliars. +pliers/pliers_3,This is a tool that can be used to hold wire together. +pliers/pliers_3,A pair of metal pliers with green coated handles. +pliers/pliers_3,This is a pair of pliers. +pliers/pliers_3,A pair of pliers. +water_bottle/water_bottle_10,This is a water bottle. +water_bottle/water_bottle_10,A pink sippie cup with a red sippie lid. +water_bottle/water_bottle_10,It's a red water bottle with a label saying BPA Free. +water_bottle/water_bottle_10,This is a red water bottle. +water_bottle/water_bottle_10,A plastic water bottle. +instant_noodles/instant_noodles_6,SQUARE SHAPE PACK OF NOODLES. PACKAGING IS YELLOW WITH RED AND WHITE LETTERS +instant_noodles/instant_noodles_6,A package of cookies. +instant_noodles/instant_noodles_6,This is a package of food. +instant_noodles/instant_noodles_6,This is a package of soup mix. +lightbulb/lightbulb_2,This is a light-bulb. +lightbulb/lightbulb_2,This is a lightbulb. +lightbulb/lightbulb_2,A light bulb. +lightbulb/lightbulb_2,This is a light bulb. +lightbulb/lightbulb_2,This lightbulb provides light in a residential setting. +flashlight/flashlight_4,A black flashlight. +flashlight/flashlight_4,This is a flashlight. +flashlight/flashlight_4,The object is a black flashlight with a yellow button. +flashlight/flashlight_4,A bulky black flashlight, with a yellow switch. +flashlight/flashlight_4,This is a flashlight. +calculator/calculator_4,A calculator. +calculator/calculator_4,This is a green calculator with white buttons. +calculator/calculator_4,this is a green calculator. a desk calculator. +calculator/calculator_4,This is a calculator. +calculator/calculator_4,It's a lime green calculator. +apple/apple_1,An apple. +apple/apple_1,This is an apple. +apple/apple_1,A ripe, red apple. +keyboard/keyboard_1,This is a silver and white keyboard. +keyboard/keyboard_1,This is a computer keyboard. +keyboard/keyboard_1,It's a silver computer keyboard with white keys. +keyboard/keyboard_1,A computer keyboard. +keyboard/keyboard_1,This is a computer keyboard. +rubber_eraser/rubber_eraser_4,This is an eraser. +sponge/sponge_4,This is a purple sponge. +sponge/sponge_4,A kitchen sponge. +sponge/sponge_4,This is a sponge. +sponge/sponge_4,The object is a purple sponge. +sponge/sponge_4,This is a squeegee. +food_box/food_box_4,This is a box of Oreo funstix. +food_box/food_box_4,This is a box of cookie snacks. +food_box/food_box_4,This is a box of Oreo Funstix. +food_box/food_box_4,This is a yellow box of Oreo sticks. +food_box/food_box_4,A package of Oreo cookies. +flashlight/flashlight_2,This is a red flashlight. +flashlight/flashlight_2,This is a red flashlight. +flashlight/flashlight_2,This is a device called a flashlight. Powered by batteries, it produced visible light. +flashlight/flashlight_2,A red flashlight. +flashlight/flashlight_2,This is a black and red flashlight +hand_towel/hand_towel_3,It's a folded green washcloth. +hand_towel/hand_towel_3,A folded towel. +hand_towel/hand_towel_3,This is a green towel. +hand_towel/hand_towel_3,This is a towel. +food_can/food_can_5,A can of soup. a +food_can/food_can_5,a can of some food +food_can/food_can_5,This is a can of soup. +food_can/food_can_5,This is a canned good. The label is turned so a description is not doable. +food_can/food_can_5,This is a can of food. +ball/ball_1,This is a football. +ball/ball_1,Blurry shape similar to a football. Brown texture with white lines similar to a football. +ball/ball_1,It's an inflatable toy football. It's brown and white. +ball/ball_1,This is a toy football. +tomato/tomato_7,This is a ripe tomato. +tomato/tomato_7,This is a tomato. +tomato/tomato_7,This is a tomato. +tomato/tomato_7,This is tomato. It's in a lot of foods. +tomato/tomato_7,A red tomato. +pitcher/pitcher_2,It's a coffee pot. The pot is silver and black. +pitcher/pitcher_2,This is an electric kettle or pitcher for hot liquids. +pitcher/pitcher_2,This is a carafe. They are great for coffee. +pitcher/pitcher_2,A coffee pot. +pitcher/pitcher_2,A thermos jar +toothpaste/toothpaste_4,This is a tube of toothpaste. The tube is red and white. +toothpaste/toothpaste_4,a tube of toothpaste +toothpaste/toothpaste_4,This is a tube of toothpaste. +toothpaste/toothpaste_4,A tube of toothpaste. +toothpaste/toothpaste_4,It's a red tube of toothpaste. +food_can/food_can_11,It's a can of soup with a red and white label. +food_can/food_can_11,A white and red tin can of food. It may be a soup can. +food_can/food_can_11,This is a can of soup. +food_can/food_can_11,A can of soup. +food_can/food_can_11,This looks like Campbell's soup can, but only the side of the label is showing. +food_can/food_can_13,This is a can of soup. +food_can/food_can_13,An unopened can sitting on the table +food_can/food_can_13,a can of fruit +food_can/food_can_13,This is a can. +food_can/food_can_13,A can of soup. +instant_noodles/instant_noodles_6,A packaged pastry. +instant_noodles/instant_noodles_6,This is a package of soup mix. +instant_noodles/instant_noodles_6,A package of food. Image is too blurry. +instant_noodles/instant_noodles_6,The noodles are not cooked. +instant_noodles/instant_noodles_6,A package of Ramen noodles. +glue_stick/glue_stick_5,It is a blue marker with a white label. +glue_stick/glue_stick_5,A tube of glue. +glue_stick/glue_stick_5,a glue stick with blue top +glue_stick/glue_stick_5,This is a blue marker or glue stick, most likely. +ball/ball_2,This is a soccer ball. +ball/ball_2,A nerf soccer ball. +ball/ball_2,Balls are used to play ball games. +ball/ball_2,This is a soccer ball. +food_cup/food_cup_1,A container of yogurt. +food_cup/food_cup_1,This is an unused yogurt cup. +food_cup/food_cup_1,This is a container of yogurt. +food_cup/food_cup_1,This is a container of yogurt. +food_cup/food_cup_1,This is a small plastic container holding a food called yogurt. Yogurt is a dairy product made using active bacteria. +onion/onion_2,This is an onion. +onion/onion_2,This is a white onion. +onion/onion_2,This is a white onion. +onion/onion_2,An onion is a root vegetable. +onion/onion_2,A white onion. +pitcher/pitcher_1,A gravy boat. +pitcher/pitcher_1,This is a pitcher. +pitcher/pitcher_1,It's a white ceramic pitcher with leaf designs painted on it. +pitcher/pitcher_1,This is a cream dispenser. +pitcher/pitcher_1,This is a dish that can be used to hold and pour liquids such as milk and cream. +sponge/sponge_8,A kitchen sponge. +sponge/sponge_8,This is a yellow and blue sponge. +sponge/sponge_8,This is a sponge. +sponge/sponge_8,This is a sponge. It is usually used to clean, and has one rough side to scrub items clean. +food_jar/food_jar_3,A jar of gravy. +food_jar/food_jar_3,This is a jar of food. +food_jar/food_jar_3,This is a jar of food. +food_jar/food_jar_3,This is a jar of gravy. +toothbrush/toothbrush_2,It's a toothbrush. +toothbrush/toothbrush_2,It's a green and white toothbrush. +toothbrush/toothbrush_2,This is a toothbrush. +toothbrush/toothbrush_2,A green colored toothbrush. +rubber_eraser/rubber_eraser_1,It's a pencil eraser with a blue and white wrapper. +rubber_eraser/rubber_eraser_1,This looks like a battery charger. Used to recharge rechargeable batteries, this device is electrical in nature. +bowl/bowl_5,White ceramic bowl with black stripes on the inside. +bowl/bowl_5,This is a ceramic bowl with a blue stripe design. +bowl/bowl_5,An empty dinner bowl. +bowl/bowl_5,This is a white ceramic bowl. +bowl/bowl_5,This is a glass bowl for eating food. +marker/marker_7,This looks like a bright pink highlighter but the cap and bottom look black, I can't read the brand name. +marker/marker_7,A device or gadget of sorts? Pink in color. +marker/marker_7,This is a felt tip marker. Under the black cap is a piece of felt, that releases the ink in the tube to mark paper or other surfaces. +marker/marker_7,This is a pink highlighter. +marker/marker_7,A magic marker. +pear/pear_1,This is a pear, which is a fruit. +pear/pear_1,Here is a pear. It is green. It looks ripe. +pear/pear_1,It's a green, slightly blemished pear. +pear/pear_1,This is a pear. +pear/pear_1,This looks like a pear, it is green and seems to be pretty badly bruised. +orange/orange_3,an orange +orange/orange_3,The object above looks like a fruit or vegetable. It is orange and round. +orange/orange_3,This is an orange. +orange/orange_3,An orange. +orange/orange_3,This is an orange. +food_jar/food_jar_6,This is a jar of food. This appears to be jelly, a fruity food that's ready to eat. +food_jar/food_jar_6,This is a jar of hot fudge. +food_jar/food_jar_6,This is a jar of jam or jelly. +food_jar/food_jar_6,A jar of jelly. +cereal_box/cereal_box_2,This is a box of Chex. +cereal_box/cereal_box_2,This is a box of cereal. +cereal_box/cereal_box_2,This is a box of Chocolate Chex cereal. +cereal_box/cereal_box_2,This is a box of Chex cereal. +cereal_box/cereal_box_2,It's a box of Chocolate Chex. It's brown with a blue stripe. +food_box/food_box_1,A box of crackers. +food_box/food_box_1,This is a box containing a food product. +food_box/food_box_1,This is a box of artificial sweetner. +food_box/food_box_1,A box of some food +instant_noodles/instant_noodles_3,Noodles are a staple food in many cultures. +instant_noodles/instant_noodles_3,This is a package of food. Some preparation is required before this food can be eaten. +instant_noodles/instant_noodles_3,This is a package of food. +instant_noodles/instant_noodles_3,This is ramon soup. +instant_noodles/instant_noodles_3,A package of frozen vegetables. +food_box/food_box_3,This is a box of food. +food_box/food_box_3,This is a box of breakfast bars. +food_box/food_box_3,This is a red and white box. +food_box/food_box_3,A box of crackers. +dry_battery/dry_battery_1,this object is to blurry to tell what it could be used for +dry_battery/dry_battery_1,This is a battery. +onion/onion_2,An unpeeled white onion, it is round - though not a perfect sphere - with its stem apparent at the top. +onion/onion_2,This is a white onion. +onion/onion_2,This is an onion. +onion/onion_2,This is an onion, the skin is white. +onion/onion_2,A white onion. +food_can/food_can_13,This is a can of Progresso soup. +food_can/food_can_13,A can of soup. +food_can/food_can_13,This is a can of soup. +food_can/food_can_13,It's a can of Progresso soup. +food_can/food_can_13,This is a can of soup. +bowl/bowl_2,This is glass bowl. +bowl/bowl_2,This is a light green bowl. +bowl/bowl_2,This is a bowl. +bowl/bowl_2,An empty dinner bowl. +bowl/bowl_2,This is a bowl. +calculator/calculator_1,This is a calculator. +calculator/calculator_1,It's a silver and black calculator with black, grey, and yellow buttons. +calculator/calculator_1,This is a calculator. +calculator/calculator_1,This is a calculator. +calculator/calculator_1,A simple calculator +instant_noodles/instant_noodles_3,A package of frozen vegetables. +instant_noodles/instant_noodles_3,This is a bag of food. +instant_noodles/instant_noodles_3,This is a package of food. +instant_noodles/instant_noodles_3,a pack of snack or frozen food item +food_can/food_can_14,This is a can illed with a product. +food_can/food_can_14,This looks like an unopened can of tomato paste. +food_can/food_can_14,A can of soup. +food_can/food_can_14,This is a can. +food_can/food_can_14,This is a can of soup with a red & green label. +pear/pear_2,This is a piece of fruit. +pear/pear_2,a green pear +pear/pear_2,This is a pear. +pear/pear_2,This is a pear. +pear/pear_2,The object is a ripe green pear. +pitcher/pitcher_2,This is a coffee pitcher filled with black coffee. +pitcher/pitcher_2,This is a silver and black coffee pot. +pitcher/pitcher_2,This is a container which you can boil liquids in. +pitcher/pitcher_2,This is a pitcher for hot liquid. +pitcher/pitcher_2,A coffee pot. +sponge/sponge_12,A kitchen sponge. +garlic/garlic_7,This is a clove of garlic. +garlic/garlic_7,A fresh garlic clove. +garlic/garlic_7,This is an onion. +garlic/garlic_7,It's a head of garlic. +garlic/garlic_7,A clove of garlic. +stapler/stapler_3,this is a black stapler +stapler/stapler_3,This is a stapler. +stapler/stapler_3,This is a stapler. +stapler/stapler_3,It's a black stapler. +stapler/stapler_3,This is a stapler. +potato/potato_1,This red ball might be a tomato. A tomato is usually mashed or sliced to be eaten by humans. +potato/potato_1,This is a red potato. +potato/potato_1,An apple. +potato/potato_1,This is an apple. +tomato/tomato_4,A red tomato. +tomato/tomato_4,A RED VINE TOMATOE OR SMALL SIZE +tomato/tomato_4,This is a tomato. +tomato/tomato_4,This is a yellow and red tomato. +tomato/tomato_4,This is a tomato. +food_bag/food_bag_2,A bag of some food +food_bag/food_bag_2,It's a bag of something. +food_bag/food_bag_2,This is a bag of food, possibly bread. +food_bag/food_bag_2,A bag of chips. +food_bag/food_bag_2,This is a bag of food. +stapler/stapler_3,This is a black stapler. +stapler/stapler_3,This is a stapler. It keeps your papers together. +stapler/stapler_3,A black stapler. +stapler/stapler_3,This is a stapler. +stapler/stapler_3,This is a stapler. +toothpaste/toothpaste_1,A tube of toothpaste. +toothpaste/toothpaste_1,This is a tube of Crest toothpaste. +toothpaste/toothpaste_1,This is a tube of toothpaste. +toothpaste/toothpaste_1,This is a tube of toothpaste. Squeeze a dollop on your toothbrush to clean your teeth and freshen your breath. +toothpaste/toothpaste_1,This is a tube of toothpaste. +plate/plate_7,This is an all-white plate. +plate/plate_7,This is a plate. +plate/plate_7,An empty dinner plate. +plate/plate_7,This is a white Styrofoam plate. +lemon/lemon_4,This is a tart fruit called a lemon. It can be eaten raw or cooked. +lemon/lemon_4,This is a lemon. +lemon/lemon_4,This is a lemon. +lemon/lemon_4,A yellow lemon. +lemon/lemon_4,This is a lemon. +plate/plate_6,This is a yellow plate. +plate/plate_6,This is a brown ceramic plate. +plate/plate_6,Shown is a pie, perhaps pumpkin, with a scalloped edge. +plate/plate_6,It's a plate. +plate/plate_6,An empty dinner plate. +pliers/pliers_2,A pair of pliers. +pliers/pliers_2,A pair of pliers with a black handle. +pliers/pliers_2,This is a pair of pliers. +pliers/pliers_2,A cutting player +pliers/pliers_2,This is a pair of pliers. +bowl/bowl_5,A white with blue rings ceramic bowl +bowl/bowl_5,This is a bowl. +bowl/bowl_5,It's a stripy bowl. +bowl/bowl_5,This is a bowl used in the kitchen for eating. +bowl/bowl_5,This is a bowl. +peach/peach_1,Could be a red onion. +peach/peach_1,This is a peach. +peach/peach_1,This could be some kind of fruit like a red apple. +peach/peach_1,A peach +peach/peach_1,This is a piece of fruit. +hand_towel/hand_towel_3,This is a green hand towel. +hand_towel/hand_towel_3,A folded towel. +hand_towel/hand_towel_3,This is a soft, absorbent cloth called a towel. Towels are used to dry water from people's hands and other items. +hand_towel/hand_towel_3,This is a green towel. +hand_towel/hand_towel_3,This is a hand towel. +sponge/sponge_3,This is a squeegee. +sponge/sponge_3,The sponge is blue. +sponge/sponge_3,A kitchen sponge. +sponge/sponge_3,This is a sponge. +sponge/sponge_3,a blue sponge +water_bottle/water_bottle_5,This is a bottle of water. +water_bottle/water_bottle_5,A plastic water bottle. +water_bottle/water_bottle_5,This is a plastic bottle. It looks to be holding water, but can be re-purposed. +water_bottle/water_bottle_5,It's a bottle of water with a blue label. +water_bottle/water_bottle_5,This is a bottle of water. +stapler/stapler_8,This is a red stapler. It is used to staple papers together, it is one way to bind them together. +stapler/stapler_8,A red stapler. +stapler/stapler_8,This is a red stapler. +stapler/stapler_8,It's a red stapler. +stapler/stapler_8,This is a stapler. +food_box/food_box_10,This is a box of multigrain crackers. They are healthy. +food_box/food_box_10,This is a box of crackers. +food_box/food_box_10,This is a box of cereal. +food_box/food_box_10,A package of crackers. +food_box/food_box_10,This a box of Archer Farms multigrain crackers. +bell_pepper/bell_pepper_1,An orange bell pepper +bell_pepper/bell_pepper_1,An orange pepper. +bell_pepper/bell_pepper_1,This is a red pepper. +bell_pepper/bell_pepper_1,This is an orange bell pepper. +bell_pepper/bell_pepper_1,It's an orange bell pepper. +glue_stick/glue_stick_5,This is a glue stick with a blue cap and white label. +instant_noodles/instant_noodles_1,This is a bag of Ramen soup mix. +instant_noodles/instant_noodles_1,It is the sweet desert cake that typically baked. +instant_noodles/instant_noodles_1,This is a package of instant ramen +water_bottle/water_bottle_4,This is a bottle of water. +water_bottle/water_bottle_4,A bottle of water +water_bottle/water_bottle_4,This is a bottle of flavored water. +shampoo/shampoo_2,That is a plastic bottle. +shampoo/shampoo_2,The above is a bottle of hair conditioner. +shampoo/shampoo_2,This is a plastic bottle. The product inside is white. +soda_can/soda_can_4,This is an opened can of Coca-Cola Zero. +soda_can/soda_can_4,This is an open can of CocoCola Vanilla Coke Zero. IT is mostly black. +soda_can/soda_can_4,This is a can of vanilla coke zero. +food_bag/food_bag_8,This is a bag of french onion Sun Chips. +food_bag/food_bag_8,This is a green bag of Sun Chips. The flavor is French Onion. +lime/lime_2,A lime. +lime/lime_2,This is a green, oval citrus fruit. It is small enough to hold two or three in your hand +dry_battery/dry_battery_2,This object is a cyllinder shape. It has a yellow label and a black or dark brown cap. +bowl/bowl_5,This is a bowl +bowl/bowl_5,This is a bowl, used for holding liquid foods +bowl/bowl_5,This is a striped bowl. +toothpaste/toothpaste_3,This is a tube of toothpaste. The tube is blue with white letters. +toothpaste/toothpaste_3,This is a tube of toothpaste +toothpaste/toothpaste_3,This is a tube of Ultrabrite toothpaste. +food_can/food_can_5,It is aluminum can. It appears to be either canned soup or canned vegetables. +food_can/food_can_5,That is a can. +food_can/food_can_13,Here sits a can of soup. +food_can/food_can_13,That is a can of food. +food_can/food_can_11,This is a can of soup from Target's market pantry. +food_can/food_can_11,This is a can of soup. The label is white and red and the lid is gold. +flashlight/flashlight_2,This is a battery operated flashlight +flashlight/flashlight_2,That is a red flashlight. +mushroom/mushroom_2,This is a potato used for cooking +shampoo/shampoo_5,This is a bottle of Suave shampoo. +shampoo/shampoo_5,This is a bottle of body wash +shampoo/shampoo_1,This is a bottle of conditioner. +shampoo/shampoo_1,It is the bottle contains shampoo which is used while we take bath. +shampoo/shampoo_1,This is a bottle of hair shampoo +food_can/food_can_10,That is a can of food. +food_can/food_can_10,This is a can of stored fruit +food_can/food_can_10,This is an unopened can with a flip top. +onion/onion_2,This is a white onion, used for cooking +onion/onion_2,This is a white onion. +onion/onion_2,This is a white onion. It has a papery outer covering, and it is round. +bowl/bowl_2,This is an ornate bowl +bowl/bowl_2,This here is an empty bowl. +bowl/bowl_2,This is a bowl. The bowl is shiny and blue. +potato/potato_2,The potato is a starchy, tuberous crop. +potato/potato_2,This is a red potato. +plate/plate_3,This is a white plate +plate/plate_3,That is a blue and white plate. +sponge/sponge_11,A sponge is a tool or cleaning aid made of soft, porous material. +plate/plate_5,This is a plain white plate +plate/plate_5,This is a white plate. +plate/plate_5,This is a white plate. +flashlight/flashlight_3,Here we see a flashlight. +flashlight/flashlight_3,This is a blue flashlight. +stapler/stapler_8,The back of a red stapler. +stapler/stapler_8,This is a red stapler, used to keep pages together +stapler/stapler_8,That is a red stapler. +garlic/garlic_3,This is garlic. +garlic/garlic_3,This is bulb of garlic, used for cooking +garlic/garlic_3,This is a white onion. +marker/marker_1,Here is a marker +food_can/food_can_13,This is a can of soup. It is made by Progresso. +food_can/food_can_13,It's a can of food. +food_can/food_can_13,This is an unopened can of Light Progresso soup. It has a flip top and a blue label. +bell_pepper/bell_pepper_5,It is a green bell pepper. +bell_pepper/bell_pepper_5,This is black. +bell_pepper/bell_pepper_5,A bell pepper is a hollow green, red, or yellow vegetable with seeds. +water_bottle/water_bottle_5,This is a bottle of water with a blue label. +water_bottle/water_bottle_5,This is a water bottle with a blue label. +water_bottle/water_bottle_10,That is a plastic beverage bottle. +water_bottle/water_bottle_10,This is a Sippy-Cup, used to drink liquid without opening the lid +water_bottle/water_bottle_10,It is a red plastic water bottle with a dark lid with spout. +sponge/sponge_10,That is a lemon. +potato/potato_1,This is a fruit or vegetable. It is a brown color. +potato/potato_1,This is a red potato, used for cooking +food_jar/food_jar_5,This is a jar of pickles. +food_jar/food_jar_5,This is a jar of some food product. It has a lid which appears to snap on. +food_jar/food_jar_5,This is a medium sized glass jar of food with a vacuum lid, It appears to be unopened and has a blue, red, and white label +food_can/food_can_3,This is a can of spaghettios snack +food_can/food_can_3,Food Can is container for the storage of Foods. +food_can/food_can_3,This is canned food. +water_bottle/water_bottle_7,That is a bottle of water. +water_bottle/water_bottle_7,This is a bottle of arrowhead watter +water_bottle/water_bottle_7,This is a plastic water bottle +shampoo/shampoo_1,This is a bottle of hair conditioner. +shampoo/shampoo_1,Shampoo is used by applying it to wet hair, massaging the product into the hair, and then rinsing it out. +plate/plate_1,Plate is a broad, mainly flat vessel commonly used to serve food. +food_box/food_box_9,This is a box of Annie's brand snacks +food_box/food_box_9,Food Box is a container for the distribution or storage of goods. +food_box/food_box_9,It's a green box of something +lightbulb/lightbulb_2,this is a incandescent light bulb. +lightbulb/lightbulb_2,This is a light bulb. +lightbulb/lightbulb_2,The object is a white light bulb. +binder/binder_3,This is a black binder. +binder/binder_3,This is a binder, used to keep papers together +onion/onion_5,This is a red onion that is unpeeled. +onion/onion_5,This is a red onion +onion/onion_5,A large red onion. +lemon/lemon_6,This is the citrus fruit, lemon +lemon/lemon_6,This is a lemon. +lemon/lemon_6,This is a lemon. +coffee_mug/coffee_mug_2,This is a mug used for holding coffee or tea +coffee_mug/coffee_mug_2,This is a brown, ceramic coffee mug. +coffee_mug/coffee_mug_2,This is a mug. +food_box/food_box_3,This is a box of Fiber One. +food_box/food_box_3,It is a box allows contents to be stored online. +food_can/food_can_2,That is a can of Campbell's soup. +food_can/food_can_2,This is an unopened can of Campbell's soup with a flip top. +garlic/garlic_2,That is garlic. +garlic/garlic_2,one whole onion with outer wrapper removed +lemon/lemon_4,This is a lemon. +lemon/lemon_4,This is a yellow lemon +lemon/lemon_4,a fruit that is bitter and sour diff --git a/OLD GLS/conf_files/UW_english/UW_document_per_instance_english_stop_raw.conf b/OLD GLS/conf_files/UW_english/UW_document_per_instance_english_stop_raw.conf new file mode 100644 index 0000000..a130a02 --- /dev/null +++ b/OLD GLS/conf_files/UW_english/UW_document_per_instance_english_stop_raw.conf @@ -0,0 +1,7455 @@ +water_bottle/water_bottle_10,hard plastic transparent pink water bottle built straw +water_bottle/water_bottle_10,water bottle +water_bottle/water_bottle_10,plastic water bottle +water_bottle/water_bottle_10,clear red water bottle opaque red top +water_bottle/water_bottle_10,pink plastic water bottle built straw +notebook/notebook_4,spiral notebook +notebook/notebook_4,blue notebook +notebook/notebook_4,blue spiral bound notebook +notebook/notebook_4,blue spiral bound notebook +notebook/notebook_4,writing notebook +tomato/tomato_1,red roma tomato +tomato/tomato_1,red tomato +tomato/tomato_1,roma tomato +tomato/tomato_1,looks like red tomato +tomato/tomato_1,tomato +bowl/bowl_6,bowl +bowl/bowl_6,bowl blue outside floral inside design +bowl/bowl_6,bowl painted inside +bowl/bowl_6,sky blue bowl white inside inside multicolored floral designs +bowl/bowl_6,bowl +plate/plate_1,cup filled drink +plate/plate_1,shiny yellow gelatinous product +hand_towel/hand_towel_5,black dark blue washcloth folded square +hand_towel/hand_towel_5,folded towel +hand_towel/hand_towel_5,black towel placed plate +hand_towel/hand_towel_5,black towe +hand_towel/hand_towel_5,soft absorbent cloth called towel towels used dry water peoples hands items +bell_pepper/bell_pepper_4,red bell pepper +bell_pepper/bell_pepper_4,red pepper +bell_pepper/bell_pepper_4,red bell pepper +bell_pepper/bell_pepper_4,fresh red bell pepper stem +bell_pepper/bell_pepper_4,red bell pepper +bell_pepper/bell_pepper_6,green bell pepper +bell_pepper/bell_pepper_6,green pepper +bell_pepper/bell_pepper_6,green pepper +bell_pepper/bell_pepper_6,green bell pepper +bell_pepper/bell_pepper_6,fresh green bell pepper +keyboard/keyboard_1,computer keyboard +keyboard/keyboard_1,silver computer keyboard white buttons +keyboard/keyboard_1,keyboard +keyboard/keyboard_1,silver wireless apple keyboard sitting white platform +keyboard/keyboard_1,flat grey object various sized white square rectangular shapes keyboard +greens/greens_1,lettuce +greens/greens_1,green leaf lettuce plate +greens/greens_1,bunch green lettuce used salads sandwiches +greens/greens_1,bundle romaine lettuce red plastic tie around +greens/greens_1,green lettuce +stapler/stapler_7,blue mini stapler +stapler/stapler_7,small blue stapler +stapler/stapler_7,blue stapler +stapler/stapler_7,small blue stapler +food_jar/food_jar_1,jar jam +food_jar/food_jar_1,jar grape jelly +food_jar/food_jar_1,jar smuckers grape jelly +food_jar/food_jar_1,jar grape jelly +food_jar/food_jar_1,jar grape jelly +hand_towel/hand_towel_1,looks like sort white towel wash cloth +hand_towel/hand_towel_1,white hand towel +hand_towel/hand_towel_1,dinner napkin +hand_towel/hand_towel_1,napkin towel placed plate +shampoo/shampoo_3,bottle shampoo +shampoo/shampoo_3,container body cleanser hair products +shampoo/shampoo_3,bottle shampoo liquid inside light purple +shampoo/shampoo_3,bottle shampoo +shampoo/shampoo_3,bottle shampoo +comb/comb_1,hair brush +comb/comb_1,black hairbrush +comb/comb_1,hairbrush +comb/comb_1,hair brush +comb/comb_1,soft bristle hair comb +instant_noodles/instant_noodles_6,pack ramen chicken flavored +instant_noodles/instant_noodles_6,object yellow package food says something chicken +instant_noodles/instant_noodles_6,package food +instant_noodles/instant_noodles_6,package noodles +water_bottle/water_bottle_7,object water bottle +water_bottle/water_bottle_7,bottle water cant read brand name +water_bottle/water_bottle_7,bottle water +water_bottle/water_bottle_7,bottle drinking water +water_bottle/water_bottle_7,plastic water bottle +rubber_eraser/rubber_eraser_4,eraser hard rubber gum used remove pencil markings paper +rubber_eraser/rubber_eraser_4,pencil eraser +rubber_eraser/rubber_eraser_4,eraser +rubber_eraser/rubber_eraser_4,eraser +cell_phone/cell_phone_3,silver black flip phone +cell_phone/cell_phone_3,cell phone +cell_phone/cell_phone_3,cell phone +cell_phone/cell_phone_3,cellphone +cell_phone/cell_phone_3,silver flip cellular phone +food_jar/food_jar_1,looks like jar grape jelly cant see brand lid hatched think smuckers +food_jar/food_jar_1,jar grape jelly brand smuckers +food_jar/food_jar_1,jar grape jelly +food_jar/food_jar_1,jar jam jelly +food_jar/food_jar_1,jar dark substance inside label mostly purple plaid lid +water_bottle/water_bottle_10,water container +water_bottle/water_bottle_10,plastic water bottle +water_bottle/water_bottle_10,clear plastic water bottle red cap +water_bottle/water_bottle_10,empty water bottle +water_bottle/water_bottle_10,water bottle +water_bottle/water_bottle_7,small bottle mineral water +water_bottle/water_bottle_7,bottle water +water_bottle/water_bottle_7,bottle water +water_bottle/water_bottle_7,water bottle +water_bottle/water_bottle_7,clear plastic water bottle label +food_can/food_can_5,can baked beans +food_can/food_can_5,metal can used hold food cylinder paper wrapper +food_can/food_can_5,can soup +food_can/food_can_5,red white can picture food front +food_can/food_can_5,can food red white label brand market pantry +soda_can/soda_can_4,can coca cola +soda_can/soda_can_4,can coke zero +soda_can/soda_can_4,opened can soda looks like dr pepper +soda_can/soda_can_4,coca cola can black red yellow lettering +soda_can/soda_can_4,can coke +rubber_eraser/rubber_eraser_1,white eraser blue white cardboard holder +comb/comb_5,black hair brush +comb/comb_5,object used untangle hair +comb/comb_5,hairbrush +comb/comb_5,hairbrush +comb/comb_5,hair brush +orange/orange_4,lemon +orange/orange_4,lemon +orange/orange_4,orange +orange/orange_4,orange +orange/orange_4,orange sweet fruit usually peeled eaten raw many ways use food +sponge/sponge_5,sponge usually used clean one rough side scrub items clean +sponge/sponge_5,kitchen sponge +sponge/sponge_5,red blue sponge +sponge/sponge_5,blue red sponge +sponge/sponge_5,kitchen sponge +cereal_box/cereal_box_1,box cereal box bran flakes +cereal_box/cereal_box_1,box bran flakes cereal +cereal_box/cereal_box_1,box bran flakes +cereal_box/cereal_box_1,box cereal +cereal_box/cereal_box_1,box bran flakes +tomato/tomato_5,tomato +tomato/tomato_5,red tomato +tomato/tomato_5,red ball shiny white circle middle +tomato/tomato_5,red christmas ball decoration used decorate christmas tree things holidays +garlic/garlic_5,garlic species onion genus +garlic/garlic_5,shallot +apple/apple_2,red delicious apple super market sticker apple +apple/apple_2,red apple +apple/apple_2,red apple +apple/apple_2,apple +apple/apple_2,apple +potato/potato_4,potato +potato/potato_4,potato +potato/potato_4,potato +potato/potato_4,looks like potato small brown +calculator/calculator_4,calculator can used math problems even grocery shopping make sure going budget numbers math characters +calculator/calculator_4,light green calculator +calculator/calculator_4,calculator +calculator/calculator_4,calculator +calculator/calculator_4,green calculator good math +tomato/tomato_5,red apple red ball could tomato +tomato/tomato_5,red tomatoes used marinara sauce +tomato/tomato_5,tomato +tomato/tomato_5,red tomato +garlic/garlic_1,clove garlic +garlic/garlic_1,bulb garlic +coffee_mug/coffee_mug_4,coffee mug +coffee_mug/coffee_mug_4,mug +coffee_mug/coffee_mug_4,white blue coffee mug +coffee_mug/coffee_mug_4,looking inside mug outside white inside rim blue looks like theres red handle +coffee_mug/coffee_mug_4,empty white mug blue stripe around inside rim +water_bottle/water_bottle_3,plastic bottle water blue label across middle white text +water_bottle/water_bottle_3,bottle aquafina water +water_bottle/water_bottle_3,bottle aquafina bottled water blue label +water_bottle/water_bottle_3,plastic water bottle +water_bottle/water_bottle_3,bottle water +pitcher/pitcher_3,pitcher +pitcher/pitcher_3,coffee pitcher +pitcher/pitcher_3,green vase +pitcher/pitcher_3,green glazed ceramic pitcher handle +pitcher/pitcher_3,ceramic pitcher +food_bag/food_bag_8,bag sun chips green white text +food_bag/food_bag_8,bag sun chips +food_bag/food_bag_8,bag sunchips +food_bag/food_bag_8,green bag sun chips +food_bag/food_bag_8,bag sun chips +food_can/food_can_5,can soup +food_can/food_can_5,looks can soup +food_can/food_can_5,can soup looks like might noodle soup +food_can/food_can_5,can something probably food +food_can/food_can_5,canned good +camera/camera_3,camera +camera/camera_3,digital camera +camera/camera_3,digital camera +camera/camera_3,metallic square box black trim led screen buttons right led screen +camera/camera_3,digital camera +soda_can/soda_can_5,can diet dr pepper +soda_can/soda_can_5,object can dr pepper white red +soda_can/soda_can_5,can diet dr pepper +soda_can/soda_can_5,unopened can dr pepper +soda_can/soda_can_5,can drpepper drink +food_can/food_can_10,metal silver can paper label mostly yellow blue red +food_can/food_can_10,can food +food_can/food_can_10,can fruit +food_can/food_can_10,can +pear/pear_8,green apple +pear/pear_8,apple +pear/pear_8,yellow apple +pear/pear_8,yellow delicious apple +pear/pear_8,golden delicious apple +ball/ball_1,football +ball/ball_1,nerf football +ball/ball_1,toy football +ball/ball_1,inflatable toy football brown white stripes +ball/ball_1,football +food_can/food_can_8,canned good food preserved aluminum can +food_can/food_can_8,object tin can tomato outside +food_can/food_can_8,looks like side can ro tel tomatoes +food_can/food_can_8,can rotel tomatoes +food_can/food_can_8,unopened can food +water_bottle/water_bottle_1,plastic water bottle +water_bottle/water_bottle_1,small bottle mineral drinking water +water_bottle/water_bottle_1,plastic bottle water drinking water +water_bottle/water_bottle_1,bottle water +water_bottle/water_bottle_1,bottle water +instant_noodles/instant_noodles_5,orange packet instant noodles +instant_noodles/instant_noodles_5,plastic packaged product mostly orange white shapes blue text +instant_noodles/instant_noodles_5,package ramen noodles +food_cup/food_cup_3,container yogurt +food_cup/food_cup_3,container yogurt +food_cup/food_cup_3,container yogurt +food_cup/food_cup_3,container yogurt +food_cup/food_cup_3,container yogurt +soda_can/soda_can_5,can dr pepper +soda_can/soda_can_5,aluminum can diet dr pepper +soda_can/soda_can_5,can diet drpepper drink +soda_can/soda_can_5,can dr pepper soda +soda_can/soda_can_5,object white red diet dr pepper can +plate/plate_4,empty paper plate +plate/plate_4,plate +plate/plate_4,plate +plate/plate_4,bowl normally used soups deserts part table setting +plate/plate_4,white paper plate +food_bag/food_bag_1,bag snacks light blue white package +food_bag/food_bag_1,looks like bag chips +food_bag/food_bag_1,bag healthy potatoe chips +food_bag/food_bag_1,bag chips +food_bag/food_bag_1,package food +scissors/scissors_1,pair scissors +scissors/scissors_1,pair metal scissors orange gray handles +scissors/scissors_1,pair scissors +scissors/scissors_1,pair scissors +scissors/scissors_1,scissors black orange handle +scissors/scissors_3,pair scissors blue handle +scissors/scissors_3,pair scissors +scissors/scissors_3,pair scissors blue handle +scissors/scissors_3,pair scissors +scissors/scissors_3,scissors used cutting paper +dry_battery/dry_battery_1,9 volt battery +dry_battery/dry_battery_1,battery +dry_battery/dry_battery_1,yellow battery +dry_battery/dry_battery_1,battery +food_jar/food_jar_3,jar food product +food_jar/food_jar_3,jar gravy +food_jar/food_jar_3,jar something like jam +food_jar/food_jar_3,glass jar gold metal lid dark red lid label +food_jar/food_jar_3,can +hand_towel/hand_towel_5,soft absorbent cloth called towel towels used dry water peoples hands items +hand_towel/hand_towel_5,black towel placed plate +hand_towel/hand_towel_5,folded towel +soda_can/soda_can_6,can welchs soda +soda_can/soda_can_6,can soda +soda_can/soda_can_6,soft drink can metal container designed hold fixed portion liquid carbonated soft drinks +soda_can/soda_can_6,can juice soda +soda_can/soda_can_6,can contains juice commonly called tin can can easily opened pulling ring pop top +kleenex/kleenex_5,box facial tissues +kleenex/kleenex_5,box kleenex +kleenex/kleenex_5,box tissues +kleenex/kleenex_5,box tissues +kleenex/kleenex_5,box kleenex red pattern +sponge/sponge_6,yellow pink sponge sponge good wash dishes +sponge/sponge_6,yellow pink sponge +sponge/sponge_6,kitchen sponge +sponge/sponge_6,note pad used take notes +mushroom/mushroom_1,mushroom +mushroom/mushroom_1,clove garlic +potato/potato_1,small red potato +potato/potato_1,red potato +potato/potato_1,red potato +hand_towel/hand_towel_2,napkin plate +hand_towel/hand_towel_2,dinner napkin +hand_towel/hand_towel_2,wash towel +hand_towel/hand_towel_2,red towel +coffee_mug/coffee_mug_5,mug +coffee_mug/coffee_mug_5,white coffee mug +coffee_mug/coffee_mug_5,coffee mug +coffee_mug/coffee_mug_5,white ceramic mug coffee mug +coffee_mug/coffee_mug_5,coffee mug +instant_noodles/instant_noodles_4,package food preparation required food can eaten +instant_noodles/instant_noodles_4,package ramen noodles +instant_noodles/instant_noodles_4,package ramen noodles +instant_noodles/instant_noodles_4,package food +lime/lime_4,lime sticker +lime/lime_4,lime +lime/lime_4,green lime +lime/lime_4,lime sticker +lime/lime_4,lime lime green +apple/apple_2,red apple +apple/apple_2,round red +apple/apple_2,red delicious apple +apple/apple_2,red apple +apple/apple_2,apple +garlic/garlic_6,head garlic +garlic/garlic_6,bulb garlic +garlic/garlic_6,fresh unpeeled garlic +garlic/garlic_6,bulb garlic +comb/comb_3,hair brush +comb/comb_3,hair brush +comb/comb_3,black teal paddle hairbrush +comb/comb_3,hair brush used de tangle persons hair +comb/comb_3,hair brush +stapler/stapler_1,stapler +stapler/stapler_1,stapler +stapler/stapler_1,black stapler +stapler/stapler_1,black grey stapler +stapler/stapler_1,black stapler use help keep papers together +shampoo/shampoo_3,bottle vo5 shampoo liquid inside light purple +shampoo/shampoo_3,bottle vo5 shampoo +shampoo/shampoo_3,bottle vo5 shampoo +shampoo/shampoo_3,bottle shampoo +shampoo/shampoo_3,appears body cleanser body soap +greens/greens_2,bundle romaine lettuce +greens/greens_2,green leaf lettuce plate +greens/greens_2,sort leafy green vegetable sort lettuce +greens/greens_2,green leaf lettuce +greens/greens_2,lettuce +kleenex/kleenex_3,box facial tissues +kleenex/kleenex_3,looks like box klenix +kleenex/kleenex_3,box tissues +kleenex/kleenex_3,box kleenex +kleenex/kleenex_3,box kleenex grey designs +bowl/bowl_2,empty dinner bowl +bowl/bowl_2,light green bowl design rim +bowl/bowl_2,bowl +bowl/bowl_2,bowl +bowl/bowl_2,bowl +pear/pear_1,pear +pear/pear_1,green pear brown coloring +pear/pear_1,pear +pear/pear_1,pear +pear/pear_1,pear +potato/potato_5,potato usually cooked eaten starchy vegetable +potato/potato_5,brown potato +potato/potato_5,brown russet potato +potato/potato_5,potato +potato/potato_5,large baking potato +comb/comb_2,hair brush +comb/comb_2,hair brush +comb/comb_2,plastic hairbrushes affordable durable +comb/comb_2,hair brush +comb/comb_2,black hair brush +toothpaste/toothpaste_3,tube toothpaste blue white +toothpaste/toothpaste_3,object tube toothpaste tube blue white +toothpaste/toothpaste_3,tube ultra brite toothpaste +toothpaste/toothpaste_3,tube ultrabrite toothpaste +toothpaste/toothpaste_3,tube toothpaste +greens/greens_4,baby bok choy +greens/greens_4,bok choi +greens/greens_4,baby bok choy +greens/greens_4,kale plate +marker/marker_4,green pen +marker/marker_4,green dry erase marker +marker/marker_4,green marker +marker/marker_4,magic marker +marker/marker_4,green marker +food_can/food_can_2,can something +food_can/food_can_2,can soup +food_can/food_can_2,can soup +food_can/food_can_2,unopened can flip top +plate/plate_4,plate mostly flat raised outer area goes around +plate/plate_4,plate +plate/plate_4,paper plate beige designs around edge +plate/plate_4,object appears paper plate color tan brown +plate/plate_4,empty paper plate +coffee_mug/coffee_mug_6,tan coffee mug handle +coffee_mug/coffee_mug_6,round object holds liquid white ridges +coffee_mug/coffee_mug_6,yellow ceramic mug +coffee_mug/coffee_mug_6,mug holding sort liquied identifiable +coffee_mug/coffee_mug_6,coffee cup +flashlight/flashlight_2,red black flashlight +flashlight/flashlight_2,red flash light +flashlight/flashlight_2,flashlight casing red plastic button top black +flashlight/flashlight_2,red black flashlight +flashlight/flashlight_2,flashlight +flashlight/flashlight_2,flashlight +food_box/food_box_1,box food +food_box/food_box_1,box food +food_box/food_box_1,box sweetner +food_box/food_box_1,box crackers +banana/banana_3,yellow banana +banana/banana_3,banana plate +banana/banana_3,large yellow banana strong fragrance mushy texture +banana/banana_3,sweet fruit called banana can eaten raw cooked can made banana bread +banana/banana_3,banana +food_can/food_can_4,can +food_can/food_can_4,item can food +food_can/food_can_4,can food white label +food_can/food_can_4,can soup +food_can/food_can_4,can product inside +camera/camera_1,small film camera +bell_pepper/bell_pepper_3,pepper red +bell_pepper/bell_pepper_3,red bell pepper +bell_pepper/bell_pepper_3,red bell pepper green thick stem +bell_pepper/bell_pepper_3,red pepper +bell_pepper/bell_pepper_3,red bell pepper +shampoo/shampoo_3,bottle shampoo +shampoo/shampoo_3,bottle conditioner liquid inside lavender silver cap +shampoo/shampoo_3,bottle blue colored shampoo +shampoo/shampoo_3,bottle shampoo +shampoo/shampoo_3,bottle either shampoo conditioner maybe even body wash blue color +garlic/garlic_4,purple onion +garlic/garlic_4,medium size red onion +stapler/stapler_5,black stapler +stapler/stapler_5,stapler +stapler/stapler_5,black stapler +stapler/stapler_5,stapler +stapler/stapler_5,black stapler +cap/cap_1,white baseball hat black stripes +cap/cap_1,white baseball cap black stripes w logo +cap/cap_1,baseball cap +cap/cap_1,white cap +cap/cap_1,white hat +peach/peach_1,peach +peach/peach_1,object round dark mink yellow skin soft sweet fruit pit +peach/peach_1,peach +peach/peach_1,reddish peach +peach/peach_1,object red colored peach +marker/marker_2,green dry erase marker +marker/marker_2,marker pen +marker/marker_2,magic marker +marker/marker_2,green marker +marker/marker_2,green marker +toothpaste/toothpaste_4,object tube toothpaste +toothpaste/toothpaste_4,object plastic cap contents gel like +toothpaste/toothpaste_4,tube toothpaste +toothpaste/toothpaste_4,tube close toothpaste used clean teeth +toothpaste/toothpaste_4,tube toothpaste +tomato/tomato_8,tomato +tomato/tomato_8,round red tomato +tomato/tomato_8,red tomato +tomato/tomato_8,peach standing upright +tomato/tomato_8,tomato +food_can/food_can_6,can soup +food_can/food_can_6,can soup +food_can/food_can_6,can food preparation may required food can eaten +food_can/food_can_6,can soup +food_can/food_can_6,can tomatoes +keyboard/keyboard_5,white black computer keyboard +keyboard/keyboard_5,computer keyboard +keyboard/keyboard_5,keyboard +keyboard/keyboard_5,computer keyboard +keyboard/keyboard_5,computer keyboard +food_box/food_box_5,box containing food product +food_box/food_box_5,object box soup white bottom red topped box +food_box/food_box_5,box crackers +food_box/food_box_5,crackers like ones service cheese +notebook/notebook_5,notebook +notebook/notebook_5,notebook +notebook/notebook_5,black spiral bound notebook +notebook/notebook_5,spiral bound notebook number pages paper bound together spiral wire +notebook/notebook_5,black spiral bound notebook +toothbrush/toothbrush_3,white teal colored toothbrush +toothbrush/toothbrush_3,tooth brush +toothbrush/toothbrush_3,blue white toothbrush +toothbrush/toothbrush_3,toothbrush cleaning teeth +toothbrush/toothbrush_3,toothbrush +garlic/garlic_5,onion +garlic/garlic_5,brown onion +garlic/garlic_5,onion tasty vegetable sharp flavor us usually cooked +garlic/garlic_5,onion +glue_stick/glue_stick_6,looks like can vegtable oil spray +glue_stick/glue_stick_6,can red cap +glue_stick/glue_stick_6,glue stick +glue_stick/glue_stick_6,can spray +glue_stick/glue_stick_6,tube glue +lemon/lemon_2,lemon sticker +lemon/lemon_2,tart fruit called lemon can eaten raw cooked +lemon/lemon_2,lemon +lemon/lemon_2,yellow lemon +lemon/lemon_2,lemon +cell_phone/cell_phone_3,mobile phone +cell_phone/cell_phone_3,flip phone grey blue +cell_phone/cell_phone_3,cell phone +cell_phone/cell_phone_3,old model flip mobile phone +cell_phone/cell_phone_3,phone used call people +kleenex/kleenex_4,box facial tissues +kleenex/kleenex_4,box tissues +kleenex/kleenex_4,box napkins +kleenex/kleenex_4,kleenex box blue +kleenex/kleenex_4,box kleenex +glue_stick/glue_stick_3,glue stick red top +glue_stick/glue_stick_3,container glue +glue_stick/glue_stick_3,blue glue stick red top +glue_stick/glue_stick_3,glue stick +glue_stick/glue_stick_3,glue stick orange cap +marker/marker_4,magic marker +marker/marker_4,ink pen +marker/marker_4,marker +marker/marker_4,looks like green highlighter marker +water_bottle/water_bottle_9,water bottle +water_bottle/water_bottle_9,water bottle blue lid +water_bottle/water_bottle_9,plastic drinking bottle clear blue lid +water_bottle/water_bottle_9,blue water bottle empty +water_bottle/water_bottle_9,plastic water bottle +potato/potato_2,small red potato +potato/potato_2,small potato +potato/potato_2,red potato +potato/potato_2,red potato +food_jar/food_jar_2,jar caramel topping +food_jar/food_jar_2,jar marmalade +food_jar/food_jar_2,jar food appears jelly fruity food thats ready eat +food_jar/food_jar_2,jar jelly +food_jar/food_jar_2,jar jelly +food_jar/food_jar_6,jar fudge topping +food_jar/food_jar_6,jar chocolate fudge +food_jar/food_jar_6,jar fudge +food_jar/food_jar_6,jar jam jelly +food_can/food_can_1,can +food_can/food_can_1,can something unidentifiable +food_can/food_can_1,short can kind food white table +food_can/food_can_1,can condensed milk +food_can/food_can_1,can food +sponge/sponge_8,kitchen sponge +sponge/sponge_8,sponge two colors top blue bottom yellow +sponge/sponge_8,sponge +sponge/sponge_8,kitchen sponge +sponge/sponge_8,rectangular shaped object roughly 23 yellow color 13 blue +hand_towel/hand_towel_1,white towel +hand_towel/hand_towel_1,towel +hand_towel/hand_towel_1,white towel +hand_towel/hand_towel_1,white blanket used keep warm +hand_towel/hand_towel_1,folded towel +pitcher/pitcher_3,green vase +pitcher/pitcher_3,pitcher beverages +pitcher/pitcher_3,green vase +pitcher/pitcher_3,pitcher container spout used storing pouring contents liquid form +pitcher/pitcher_3,green ceramic pitcher +comb/comb_5,hairbrush +comb/comb_5,hair brush +comb/comb_5,black hair brush +comb/comb_5,oval head balck hair comb +comb/comb_5,black hairbrush +orange/orange_3,round orange fruit +orange/orange_3,sweet fruit called orange can eaten raw cooked +orange/orange_3,orange +orange/orange_3,orange +orange/orange_3,orange +rubber_eraser/rubber_eraser_3,rectangular shaped pink eraser +rubber_eraser/rubber_eraser_3,rectangular pink eraser +rubber_eraser/rubber_eraser_3,eraser +hand_towel/hand_towel_5,cloth napkin +hand_towel/hand_towel_5,small black towel +hand_towel/hand_towel_5,folded towel +hand_towel/hand_towel_5,soft absorbent cloth called towel towels used dry water peoples hands items +onion/onion_3,white onion +onion/onion_3,yellow onion +onion/onion_3,onion +onion/onion_3,yellow onion +onion/onion_3,white onion +cell_phone/cell_phone_2,phone +cell_phone/cell_phone_2,silver black phone +cell_phone/cell_phone_2,cell phone +cell_phone/cell_phone_2,silver black cell phone +cell_phone/cell_phone_2,mobile phone +pitcher/pitcher_2,tea kettle silver +pitcher/pitcher_2,pitcher hot liquid possibly electric kettle +pitcher/pitcher_2,coffee pot +pitcher/pitcher_2,coffee pot +pitcher/pitcher_2,stainless steel coffee carafe +calculator/calculator_5,silver black calculator white grey buttons +calculator/calculator_5,silver calculator +calculator/calculator_5,calculator white keypads +calculator/calculator_5,calculator +calculator/calculator_5,calculator +garlic/garlic_6,clove frest garlic +garlic/garlic_6,bulb garlic +garlic/garlic_6,clove garlic +garlic/garlic_6,clove garlic +garlic/garlic_6,garlic species onion genus +tomato/tomato_1,red tomato +tomato/tomato_1,tomato +tomato/tomato_1,tomato +tomato/tomato_1,ripened plum tomato +tomato/tomato_1,tomato +plate/plate_6,empty dinner plate +plate/plate_6,pie circular shape yellow color appears plastic wrap top brown crust apparent around edges +plate/plate_6,ceramic dish dark yellow +plate/plate_6,plate +plate/plate_6,brown plate +tomato/tomato_4,tomato +tomato/tomato_4,yellow red tomato +tomato/tomato_4,red tomato +tomato/tomato_4,tomato +tomato/tomato_4,tomato +instant_noodles/instant_noodles_3,package food +instant_noodles/instant_noodles_3,package frozen vegetables +instant_noodles/instant_noodles_3,package ramen soup mix +instant_noodles/instant_noodles_3,object green white package food probably noodles +plate/plate_4,plate +plate/plate_4,plate +plate/plate_4,empty paper plate +plate/plate_4,looks like bowl kind liquid like soup plate +plate/plate_4,white tan paper plate +orange/orange_1,orange +orange/orange_1,orange +orange/orange_1,piece fruit probably blood orange +orange/orange_1,orange yet peeled +orange/orange_1,orange +greens/greens_3,bok choi +greens/greens_3,bok choy plate +greens/greens_3,baby bok choy +greens/greens_3,plate uncooked baby bok choy bok choy white stems green leaves +greens/greens_3,head bokchoy +toothbrush/toothbrush_5,toothbrush +toothbrush/toothbrush_5,red white toothbrush +toothbrush/toothbrush_5,red toothbrush +toothbrush/toothbrush_5,toothbrush +toothbrush/toothbrush_5,object long grip bristles +stapler/stapler_5,tube +stapler/stapler_5,black stappler +stapler/stapler_5,stapler +stapler/stapler_5,black stapler +flashlight/flashlight_5,yellow flashlight +flashlight/flashlight_5,duracell flash light yellow color +flashlight/flashlight_5,large black yellow duracell flashlight +flashlight/flashlight_5,yellow black flashlight white red plate +flashlight/flashlight_5,yellow black duracell flashlight +food_cup/food_cup_2,container yogurt +food_cup/food_cup_2,container yogurt +food_cup/food_cup_2,cup yogurt yet opened +food_cup/food_cup_2,red white yogurt cup +food_cup/food_cup_2,container yoplait yogurt +water_bottle/water_bottle_5,bottle water +water_bottle/water_bottle_5,bottle water +water_bottle/water_bottle_5,bottle water +water_bottle/water_bottle_5,bottle water +water_bottle/water_bottle_5,bottle water blue label +water_bottle/water_bottle_6,plastic water bottle +water_bottle/water_bottle_6,bottle water +water_bottle/water_bottle_6,clear bottle water +water_bottle/water_bottle_6,bottle water +water_bottle/water_bottle_6,bottle water +food_box/food_box_10,box multi grain crackers +food_box/food_box_10,box food possible pancake mix +food_box/food_box_10,box multigrain crackers green white purple label picture crackers +food_box/food_box_10,box crackers +food_box/food_box_10,small cardboard box crackers green purple labels picture bowl crackers +food_jar/food_jar_5,jar peppers +food_jar/food_jar_5,pickle jar +food_jar/food_jar_5,jar peppers +food_jar/food_jar_5,glass jar blue lid type food inside +food_bag/food_bag_1,bag chips similar kind food product +food_bag/food_bag_1,bag chips +food_bag/food_bag_1,bag frozen fruit +food_bag/food_bag_1,chips delicious dinner treat +food_bag/food_bag_1,bag dog food looks healthy +marker/marker_9,yellow magic marker +marker/marker_9,yellow highlighter +marker/marker_9,marker +marker/marker_9,yellow highlighter marker +sponge/sponge_3,blue colored sponge +sponge/sponge_3,cleaning sponge often used kitchen sponge can used many places +sponge/sponge_3,blue sponge +sponge/sponge_3,sponge +sponge/sponge_3,kitchen sponge +lime/lime_3,green lime +lime/lime_3,lemon species small evergreen tree flowering plant +lime/lime_3,green lime +lime/lime_3,lime +lime/lime_3,lime +ball/ball_1,football +ball/ball_1,football +ball/ball_1,football +ball/ball_1,toy football +dry_battery/dry_battery_6,battery +dry_battery/dry_battery_6,battery +dry_battery/dry_battery_6,battery +dry_battery/dry_battery_6,battery +dry_battery/dry_battery_6,battery postive side +potato/potato_1,red potato +potato/potato_1,red potato +potato/potato_1,red potato +cap/cap_1,baseball cap mostly white thin stripes +cap/cap_1,hat commonly called ball cap ball players wear +cap/cap_1,baseball cap +cap/cap_1,white baseball cap black stripes w logo +cap/cap_1,white baseball cap +lightbulb/lightbulb_2,old lightbulb +lightbulb/lightbulb_2,light bulb +lightbulb/lightbulb_2,incandescent light bulb +lightbulb/lightbulb_2,standard white lightbulb +lightbulb/lightbulb_2,light bulb +scissors/scissors_4,pair scissors blue yellow handle +scissors/scissors_4,pair scissors +scissors/scissors_4,scissors yellow handle +scissors/scissors_4,pair grey yellow scissors +scissors/scissors_4,pair scissors blue yellow handles +food_box/food_box_1,box cereal +food_box/food_box_1,box food +food_box/food_box_1,box food +food_box/food_box_1,nutrition fact side box food +food_box/food_box_1,box crackers +stapler/stapler_6,stapler mechanical device joins pages paper similar material driving thin metal staple sheets folding ends +stapler/stapler_6,black stapler +stapler/stapler_6,stapler joins two pieces paper together +stapler/stapler_6,stapler +stapler/stapler_6,stapler +garlic/garlic_5,garlic species onion genus +garlic/garlic_5,clove garlic +flashlight/flashlight_4,flashlight +flashlight/flashlight_4,flashlight used see way dark +flashlight/flashlight_4,flashlight +flashlight/flashlight_4,black flashlight +flashlight/flashlight_4,flashlight +potato/potato_4,large baking potato +potato/potato_4,potato +potato/potato_4,potato +stapler/stapler_7,blue stapler +stapler/stapler_7,small blue stapler +stapler/stapler_7,mini blue stapler +cereal_box/cereal_box_1,box bran flakes cereal +cereal_box/cereal_box_1,box cereal +cereal_box/cereal_box_1,box bran flakes cereal +cereal_box/cereal_box_1,box bran flakes +cereal_box/cereal_box_1,box bran flakes +apple/apple_4,yellow apple +apple/apple_4,golden delicious apple +apple/apple_4,apple +apple/apple_4,greenishyellowish apple like cross granny smith golden apple +apple/apple_4,yellow light green apple used healthy snack +plate/plate_3,plate +plate/plate_3,empty paper plate +plate/plate_3,blue white bowl +plate/plate_3,empty plate white blue design +plate/plate_3,plate +scissors/scissors_3,pair scissors blue plastic handle +scissors/scissors_3,blue colored craft scissors +scissors/scissors_3,pair scissors +scissors/scissors_3,pair blue handle scissors used cutting +scissors/scissors_3,pair scissors blue handle +scissors/scissors_3,scissors +food_can/food_can_14,can filled product +food_can/food_can_14,can +food_can/food_can_14,can soup +food_can/food_can_14,can pull tab cant read label likely sort soup +food_can/food_can_14,can soup +keyboard/keyboard_1,computer keyboard +keyboard/keyboard_1,wireless computer keyboard +keyboard/keyboard_1,computer keyboard +keyboard/keyboard_1,computer keyboard +keyboard/keyboard_1,keyboard +coffee_mug/coffee_mug_3,mug +coffee_mug/coffee_mug_3,brown coffee mug +coffee_mug/coffee_mug_3,black pitcher +coffee_mug/coffee_mug_3,coffee mug +coffee_mug/coffee_mug_3,coffee mug +food_box/food_box_4,box oreo cookies +food_box/food_box_4,box snack food humans eat snack foods part diet +food_box/food_box_4,yellow box golden oreo funstix +food_box/food_box_4,box golden oreo funstix box yellow +food_box/food_box_4,box golden oreo funstix +food_box/food_box_3,box fiber one +food_box/food_box_3,small sized box fiber one products +food_box/food_box_3,box fiber one pastries +food_box/food_box_3,box fiber pop tarts +food_box/food_box_3,box fiber one snack bars +food_box/food_box_12,box crackers +food_box/food_box_12,box crackers +food_box/food_box_12,box pasta looks tasty +food_box/food_box_12,package crackers +food_box/food_box_12,box crackers box green blue photo crackers +stapler/stapler_1,black grey stapler +stapler/stapler_1,stapler +stapler/stapler_1,black colored stapler +stapler/stapler_1,stapler +bell_pepper/bell_pepper_2,orange pepper +bell_pepper/bell_pepper_2,yellow pepper +bell_pepper/bell_pepper_2,orange pepper +bell_pepper/bell_pepper_2,yellow bell pepper sticker +bell_pepper/bell_pepper_2,yellow bell pepper +tomato/tomato_1,object soft red oval shaped +tomato/tomato_1,red fruit vegetable sort blurry probably tomato +tomato/tomato_1,grape tomato +tomato/tomato_1,ripe plum tomato +cap/cap_4,red baseball cap +cap/cap_4,top view red baseball cap black button top +cap/cap_4,red baseball cap +cap/cap_4,red ball cap +rubber_eraser/rubber_eraser_2,eraser partially used +food_box/food_box_2,zatarains rice dinner box +food_box/food_box_2,box zatarrains rice +food_box/food_box_2,box yellow rice +food_box/food_box_2,box zatarains yellow rice mix +food_box/food_box_2,box yellow rice +food_box/food_box_9,box crackers +food_box/food_box_9,box bleaching tablets toilets clean +food_box/food_box_9,box food +food_box/food_box_9,box bagel chips +glue_stick/glue_stick_5,tube glue +glue_stick/glue_stick_5,container toothpaste holds cleaning material humans use cleaning material clean teeth +glue_stick/glue_stick_5,glue stick +tomato/tomato_5,small red ball used billards +tomato/tomato_5,tomato +tomato/tomato_5,red tomato +tomato/tomato_5,ripened tomato +tomato/tomato_5,red tomato +kleenex/kleenex_2,box tissues +kleenex/kleenex_2,box facial tissues +kleenex/kleenex_2,box tissues +kleenex/kleenex_2,box kleenex +kleenex/kleenex_2,tissue paper commonly used facial tissue +coffee_mug/coffee_mug_3,ceramic mug +coffee_mug/coffee_mug_3,either vase cup +coffee_mug/coffee_mug_3,coffee mug +coffee_mug/coffee_mug_3,brown mug white inside +coffee_mug/coffee_mug_3,coffee mug +pitcher/pitcher_1,cream floral pitcher +pitcher/pitcher_1,tea serving pitcher +pitcher/pitcher_1,pitcher +pitcher/pitcher_1,ceramic pitcher +pitcher/pitcher_1,gravy boat +stapler/stapler_4,stapler +stapler/stapler_4,think looking top black stapler +stapler/stapler_4,stapler +stapler/stapler_4,black stapler +stapler/stapler_4,stapler +notebook/notebook_2,writing notebook +notebook/notebook_2,yellow spiraled notebook +notebook/notebook_2,spiral bound notebook pad paper held together wire spiral one side +notebook/notebook_2,yellow notebook +notebook/notebook_2,yellow spiral bound notebook +marker/marker_8,magic marker +marker/marker_8,marker +food_bag/food_bag_3,bag snyders pretzles +food_bag/food_bag_3,bag pretzels +food_bag/food_bag_3,bag pretzels chips bag mainly brown predominant red label +food_bag/food_bag_3,bag snyders pretzel snaps +food_bag/food_bag_3,little square pretzels salty taste +pitcher/pitcher_1,small ceramic pitcher yellow green leaf design +pitcher/pitcher_1,ceramic pitcher +pitcher/pitcher_1,ceramic pitcher +pitcher/pitcher_1,ceramic teapot +pitcher/pitcher_1,gravy boat +glue_stick/glue_stick_6,glue stick +glue_stick/glue_stick_6,glue stick orange cap +glue_stick/glue_stick_6,stick elmers glue +glue_stick/glue_stick_6,glue stick +glue_stick/glue_stick_6,can spray +tomato/tomato_8,tomato +tomato/tomato_8,tomato +tomato/tomato_8,tomato +tomato/tomato_8,red tomato +tomato/tomato_8,red tomoato +food_cup/food_cup_3,food cup used store food items +food_cup/food_cup_3,container yogurt +food_cup/food_cup_3,container yogurt +food_cup/food_cup_3,white container yogurt +food_cup/food_cup_3,container yogurt +kleenex/kleenex_2,box tissues box pink white +kleenex/kleenex_2,box facial tissues +kleenex/kleenex_2,box soft tissues used blow nose +kleenex/kleenex_2,box kleenex +kleenex/kleenex_2,smal pink box tissues +peach/peach_2,white peach cream pink colored +peach/peach_2,yellow red apple +peach/peach_2,fruit possibly apple +peach/peach_2,apple +peach/peach_2,ripe apple +pliers/pliers_6,pair pliers black grips +pliers/pliers_6,pair pliers +pliers/pliers_6,pair pliers +pliers/pliers_6,multi functional handled pliers small tip +pliers/pliers_6,set pliers grabber tool +dry_battery/dry_battery_2,battery +dry_battery/dry_battery_2,battery black bottom colored yellow top +dry_battery/dry_battery_2,battery +dry_battery/dry_battery_2,battery +marker/marker_3,marker pen +marker/marker_3,black marker +marker/marker_3,black expo marker +marker/marker_3,black dry erase marker +marker/marker_3,sharpie magic marker +shampoo/shampoo_5,bottle soap +shampoo/shampoo_5,shampoo hair care product +shampoo/shampoo_5,bottle shampoo +shampoo/shampoo_5,bottle shampoo +greens/greens_1,head green leaf lettuce +greens/greens_1,green leaf lettuce plate +greens/greens_1,bundle lettuce +greens/greens_1,leafy salad vegetable could lettuce +greens/greens_1,bunch loose leaf lettuces +food_bag/food_bag_2,bag chips +food_bag/food_bag_2,chips delicious dinner treat +food_bag/food_bag_2,bag chips +food_bag/food_bag_2,bag chips +food_bag/food_bag_2,bag chips +sponge/sponge_4,purple sponge +sponge/sponge_4,sponge +sponge/sponge_4,kitchen sponge +sponge/sponge_4,purple sponge +sponge/sponge_4,light purple sponge +coffee_mug/coffee_mug_7,coffee mug blue +coffee_mug/coffee_mug_7,coffee cup +coffee_mug/coffee_mug_7,mug +coffee_mug/coffee_mug_7,coffee mug +coffee_mug/coffee_mug_7,blue coffee mug +marker/marker_5,marker +marker/marker_5,blue pen black comfort grip +marker/marker_5,magic marker +marker/marker_5,marker blue +lemon/lemon_3,yellow lemon +lemon/lemon_3,yellow lemon +lemon/lemon_3,lemon +lemon/lemon_3,lemon +lemon/lemon_3,lemon species small evergreen tree flowering plant +sponge/sponge_4,sponge +sponge/sponge_4,purple sponge +sponge/sponge_4,looks abe dish sponge critters +sponge/sponge_4,kitchen sponge +sponge/sponge_4,purple sponge +apple/apple_5,green apple +apple/apple_5,green apple sweet fruit can eaten raw cooked best food called apple pie +apple/apple_5,apple theres many types +apple/apple_5,green apple +apple/apple_5,green apple +pear/pear_1,pear people eat alone mix smoothies sweet fruit +pear/pear_1,pear +pear/pear_1,green pear +pear/pear_1,pear +pear/pear_1,pear +cap/cap_4,red baseball cap +cap/cap_4,red baseball cap identifying graphics +cap/cap_4,red ballcap +cap/cap_4,red baseball cap +cap/cap_4,red cap +onion/onion_6,purple onion +onion/onion_6,red potato +cap/cap_4,brand new red baseball cap +cap/cap_4,ball cap +cap/cap_4,red baseball cap +cap/cap_4,red baseball cap button top black +cap/cap_4,object red baseball cap black lace +coffee_mug/coffee_mug_7,mug +coffee_mug/coffee_mug_7,coffee cup +coffee_mug/coffee_mug_7,coffee mug +coffee_mug/coffee_mug_7,blue mug white interior +coffee_mug/coffee_mug_7,cup blue +lightbulb/lightbulb_4,light bulb +lightbulb/lightbulb_4,light bulb looks like soft white +lightbulb/lightbulb_4,light bulb +lightbulb/lightbulb_4,lightbulb replace every often +lightbulb/lightbulb_4,light bulb +stapler/stapler_2,black desk stapler +stapler/stapler_2,black stapler +stapler/stapler_2,black colored stapler +stapler/stapler_2,black stapler +stapler/stapler_2,stapler +glue_stick/glue_stick_1,glue stick +glue_stick/glue_stick_1,tube glue +glue_stick/glue_stick_1,type plastic tube +glue_stick/glue_stick_1,tube super glue +glue_stick/glue_stick_1,glue stick +lime/lime_2,lime +lime/lime_2,green lime +lime/lime_2,lime +lime/lime_2,lime sticker mostly green slightly yellow +dry_battery/dry_battery_4,duracell battery +dry_battery/dry_battery_4,battery +dry_battery/dry_battery_4,duracell battery +dry_battery/dry_battery_4,small duracell battery +dry_battery/dry_battery_4,round object shaped like dura cell battery +dry_battery/dry_battery_3,single battery +dry_battery/dry_battery_3,battery +dry_battery/dry_battery_3,battery +food_can/food_can_7,can soup +food_can/food_can_7,red white can soup +food_can/food_can_7,can soup +food_can/food_can_7,unopened canned good flip top +food_can/food_can_7,can soup +glue_stick/glue_stick_5,tube glue +cell_phone/cell_phone_4,cell phone +cell_phone/cell_phone_4,white flip phone black top +cell_phone/cell_phone_4,looks like small flip phone based white top black +cell_phone/cell_phone_4,mobile phone +orange/orange_3,orange +orange/orange_3,round fruit object called orange +orange/orange_3,orange +orange/orange_3,orange +orange/orange_3,orange +toothbrush/toothbrush_4,toothbrush purple color +toothbrush/toothbrush_4,purple toothbrush +toothbrush/toothbrush_4,toothbrush +toothbrush/toothbrush_4,toothbrush +toothbrush/toothbrush_4,white purple toothbrush +soda_can/soda_can_1,can pepsi +soda_can/soda_can_1,can pepsi +soda_can/soda_can_1,can soda +soda_can/soda_can_1,can pepsi soda +soda_can/soda_can_1,blue can carbonated drink +cell_phone/cell_phone_5,smart phone +cell_phone/cell_phone_5,smartphone +cell_phone/cell_phone_5,smartphone +cell_phone/cell_phone_5,cell phone +cell_phone/cell_phone_5,silver colored smartphone +rubber_eraser/rubber_eraser_1,looks like battery charger used recharge rechargeable batteries device electrical nature +food_cup/food_cup_1,container yogurt +food_cup/food_cup_1,white container yogurt +food_cup/food_cup_1,object thing yogurt +food_cup/food_cup_1,yogurt delicious breakfast treat +food_cup/food_cup_1,small plastic container holding food called yogurt yogurt dairy product made using active bacteria +plate/plate_4,plate +plate/plate_4,disposable paper plate +plate/plate_4,white paper plate brown designs around edge +plate/plate_4,empty dinner plate +plate/plate_4,plate +marker/marker_5,pen +sponge/sponge_7,kitchen sponge +sponge/sponge_7,squeegee +sponge/sponge_7,sponge usually used clean one rough side scrub items clean +sponge/sponge_7,sponge +sponge/sponge_7,green white sponge +apple/apple_1,red apple +apple/apple_1,red apple food humans others sweet fruit can eaten raw cooked +apple/apple_1,apple +apple/apple_1,red apple +apple/apple_1,looks like apple dark purple black might apple shaped plum one new hybrid fruits +coffee_mug/coffee_mug_5,white ceramic cup perhaps coffee cup +coffee_mug/coffee_mug_5,empty white mug +coffee_mug/coffee_mug_5,coffee cup +coffee_mug/coffee_mug_5,coffee mug +coffee_mug/coffee_mug_5,mug +food_jar/food_jar_3,jar gravy red cap red label +food_jar/food_jar_3,jar food +food_jar/food_jar_3,jar gravy +food_jar/food_jar_3,jar gravy +apple/apple_3,yellow apple +apple/apple_3,golden delicious apple +apple/apple_3,golden apple +apple/apple_3,apple +apple/apple_3,golden delicious apple +bell_pepper/bell_pepper_2,yellow pepper +bell_pepper/bell_pepper_2,orange vegetable can also come red green gives flavor meals +bell_pepper/bell_pepper_2,fresh orange bell pepper +bell_pepper/bell_pepper_2,yellow bell pepper +bell_pepper/bell_pepper_2,yellow pepper +soda_can/soda_can_2,can 7 +soda_can/soda_can_2,can 7up soda +soda_can/soda_can_2,can 7 can green white yellow text +soda_can/soda_can_2,can 7up +soda_can/soda_can_2,can 7 +calculator/calculator_5,square shape white keypad grey color black screen display +calculator/calculator_5,calculator +calculator/calculator_5,silver calculator +calculator/calculator_5,calculator +calculator/calculator_5,calculator +scissors/scissors_2,orange scissors +scissors/scissors_2,pair scissors +scissors/scissors_2,scissors orange handle +scissors/scissors_2,pair scissors +scissors/scissors_2,scissors used cutting paper +shampoo/shampoo_1,bottle shampoo +shampoo/shampoo_1,bottle lotion +shampoo/shampoo_1,object bottle soup liquid can squirted bottle white blue +shampoo/shampoo_1,white shampoo bottle blue cap standing right +shampoo/shampoo_1,bottle shampoo conditioner +lime/lime_1,green lime +lime/lime_1,green lime lime code sticker +lime/lime_1,piece fruit probably lime +lime/lime_1,green lime sticker +camera/camera_1,disposable camera +camera/camera_1,disposable camera +camera/camera_1,disposable film camera +camera/camera_1,black disposable camera +camera/camera_1,camera +cap/cap_4,red baseball cap +cap/cap_4,red baseball cap +cap/cap_4,red baseball hat +cap/cap_4,red baseball cap +cap/cap_4,picture hat +lightbulb/lightbulb_2,lightbulb +lightbulb/lightbulb_2,light bulb +lightbulb/lightbulb_2,lightbulb +lightbulb/lightbulb_2,light bulb +lightbulb/lightbulb_2,light bulb +food_can/food_can_11,can +food_can/food_can_11,can soup +food_can/food_can_11,can soup +food_can/food_can_11,object tin can soup label white red +food_can/food_can_11,can soup +flashlight/flashlight_1,black flashlight +flashlight/flashlight_1,flashlight +flashlight/flashlight_1,black flashlight +flashlight/flashlight_1,black flashlight black cord attached bottom +flashlight/flashlight_1,black flashlight +food_cup/food_cup_1,container yogurt +food_cup/food_cup_1,container yogurt +food_cup/food_cup_1,small plastic container holding food called yogurt yogurt dairy product made using active bacteria +food_cup/food_cup_1,container yogurt +food_cup/food_cup_1,container yoplait yogurt +bell_pepper/bell_pepper_5,green bell pepper +bell_pepper/bell_pepper_5,green pepper +bell_pepper/bell_pepper_5,green pepper +bell_pepper/bell_pepper_5,fresh green bell pepper +bell_pepper/bell_pepper_5,green bell pepper +plate/plate_3,empty dinner plate +plate/plate_3,plate nothing +plate/plate_3,plate +plate/plate_3,single dinner plate plate white blue rim +plate/plate_3,plate blue stripes +pear/pear_3,pear +pear/pear_3,brown red orange black pear shaped object white label sticker +pear/pear_3,red pear sticker +pear/pear_3,red pear +stapler/stapler_1,small black gray stapler +stapler/stapler_1,stapler +stapler/stapler_1,stapler +stapler/stapler_1,stapler used stick papers together +stapler/stapler_1,black stapler +lightbulb/lightbulb_4,light bulb +lightbulb/lightbulb_4,light bulb +lightbulb/lightbulb_4,led bulb theyre good home +lightbulb/lightbulb_4,light bulb +lightbulb/lightbulb_4,white light bulb +food_can/food_can_6,can food looks like might campbells soup +food_can/food_can_6,can food +food_can/food_can_6,can soup +food_can/food_can_6,can soup +food_can/food_can_6,red white can food +lemon/lemon_4,yellow lemon +lemon/lemon_4,fresh lemon +lemon/lemon_4,lemon +lemon/lemon_4,yellow lemon +lemon/lemon_4,looks like yellow lemon +onion/onion_6,red onion +onion/onion_6,rotten onoin peeling +onion/onion_6,purple onion +onion/onion_6,onion +onion/onion_6,purple onion +onion/onion_1,white round onion +onion/onion_1,white onion +onion/onion_1,clove garlic +onion/onion_1,white onion +onion/onion_1,clove garlic +dry_battery/dry_battery_4,large alkaline battery black copper colored +dry_battery/dry_battery_4,duracell battery +dry_battery/dry_battery_4,battery +dry_battery/dry_battery_4,battery would guess either aa aaa size +dry_battery/dry_battery_4,battery +marker/marker_1,red marker +marker/marker_1,red marker +marker/marker_1,magic marker +marker/marker_1,markers used wrighting board +marker/marker_1,red dry erase marker +food_bag/food_bag_6,bag chips +food_bag/food_bag_6,bag pop chips chips barbecue flavored +food_bag/food_bag_6,bag chips +food_bag/food_bag_6,bag potato chips +food_bag/food_bag_6,bag snack food humans eat snack foods part diet +lightbulb/lightbulb_4,light bulb +lightbulb/lightbulb_4,light bulb +lightbulb/lightbulb_4,light bulb +lightbulb/lightbulb_4,light bulbs used residential fixtures +lightbulb/lightbulb_4,light bulb +orange/orange_4,yellow lemon +orange/orange_4,orange +orange/orange_4,orange +orange/orange_4,round fruit orange citrusy +sponge/sponge_3,blue sponge +sponge/sponge_3,kitchen sponge +sponge/sponge_3,sponge +sponge/sponge_3,sponge +sponge/sponge_3,sponge usually used clean holds water little holes +toothbrush/toothbrush_5,red white toothbrush +toothbrush/toothbrush_5,red toothbrush +toothbrush/toothbrush_5,red white toothbrush +toothbrush/toothbrush_5,toothbrush +toothbrush/toothbrush_5,toothbrush +instant_noodles/instant_noodles_8,pack instant noodles +instant_noodles/instant_noodles_8,bag ichiban +instant_noodles/instant_noodles_8,package ramen noodles ichiban brand package brown white +instant_noodles/instant_noodles_8,package food +instant_noodles/instant_noodles_8,package ramen noodles +notebook/notebook_3,writing notebook +notebook/notebook_3,green white spiraled notebook +notebook/notebook_3,white green spiral bound notebook +notebook/notebook_3,spiral bound notebook green white design +notebook/notebook_3,spiral bound notebook pad paper held together wire spiral one side +water_bottle/water_bottle_3,one bottle water brands looks aquafina +water_bottle/water_bottle_3,water bottle +water_bottle/water_bottle_3,plastic water bottle +water_bottle/water_bottle_3,bottle water +water_bottle/water_bottle_3,bottle filtered water +peach/peach_3,looks like peach nectarine +peach/peach_3,one ripe peach +peach/peach_3,juicy fruit called peach grown deciduous tree +peach/peach_3,peach +peach/peach_3,peach +food_box/food_box_6,pretzel thins snack pretzels made pepperedige farms +food_box/food_box_6,box pretzels classic knot shaped thin good snack +food_box/food_box_6,box pretzel thins box white picture pretzel thins +food_box/food_box_6,box pretzel thins +food_box/food_box_6,box pretzel thins cant read label shape color think pepperidge farms +notebook/notebook_5,object used writing black cover filled lined paper +notebook/notebook_5,notebook +notebook/notebook_5,writing notebook +notebook/notebook_5,black spiral bound notebook +bell_pepper/bell_pepper_1,red pepper vegetable sharp flavor usually cooked +bell_pepper/bell_pepper_1,orange pepper +bell_pepper/bell_pepper_1,red pepper +bell_pepper/bell_pepper_1,red bell pepper +bell_pepper/bell_pepper_1,orange pepper +sponge/sponge_12,blue scrubber +sponge/sponge_12,blue dish scrubber +pear/pear_1,pear +pear/pear_1,pear +pear/pear_1,green pear +pear/pear_1,pear +pear/pear_1,green pear +dry_battery/dry_battery_2,electric battery provided power electrical devices +dry_battery/dry_battery_2,battery +soda_can/soda_can_6,yellow can welchs +soda_can/soda_can_6,canned beverage +soda_can/soda_can_6,can soda +soda_can/soda_can_6,can welchs juice +soda_can/soda_can_6,can welchs soda +food_can/food_can_12,can chicken broth +food_can/food_can_12,can soup +food_can/food_can_12,can good could used cook eat alone make something else +food_can/food_can_12,can +bell_pepper/bell_pepper_5,green bell pepper wider top bottom indented near top surrounding stem +bell_pepper/bell_pepper_5,green pepper +bell_pepper/bell_pepper_5,green bell pepper +bell_pepper/bell_pepper_5,looks like green bell pepper +bell_pepper/bell_pepper_5,green pepper +onion/onion_6,purple onion peeled yet +onion/onion_6,purple onion +onion/onion_6,onion +onion/onion_6,red onion +onion/onion_6,red potato +banana/banana_3,one banana +banana/banana_3,yellow banana ripe +banana/banana_3,banana +banana/banana_3,banana plate +banana/banana_3,banana +pear/pear_4,pear +pear/pear_4,pear sticker +pear/pear_4,pear +pear/pear_4,pear +pear/pear_4,yellow red pear sticker +coffee_mug/coffee_mug_2,coffee mug +coffee_mug/coffee_mug_2,brown mug +coffee_mug/coffee_mug_2,mug +coffee_mug/coffee_mug_2,mug cup can hold coffee +coffee_mug/coffee_mug_2,brown coffee mug +water_bottle/water_bottle_1,bottle vinegar +water_bottle/water_bottle_1,bottle water +water_bottle/water_bottle_1,bottle water +water_bottle/water_bottle_1,clear bottle fluid green blue label across middle lower part bottle +ball/ball_4,toy basketball +instant_noodles/instant_noodles_8,package soup +instant_noodles/instant_noodles_8,pack ichiban ramen imported japan +instant_noodles/instant_noodles_8,package food +instant_noodles/instant_noodles_8,package ramen noodles +cereal_box/cereal_box_5,box cereal +cereal_box/cereal_box_5,box product +cereal_box/cereal_box_5,box +cereal_box/cereal_box_5,box crackers +lemon/lemon_2,yellow lemon +lemon/lemon_2,yellow whole lemon +lemon/lemon_2,lemon +lemon/lemon_2,bright yellow lemon +lemon/lemon_2,yellow lemon +soda_can/soda_can_1,can pepsi soda +soda_can/soda_can_1,can pepsi +soda_can/soda_can_1,can soda +soda_can/soda_can_1,can pepsi can blue pepsi logo +soda_can/soda_can_1,pepsi can +cell_phone/cell_phone_5,smart phone communication phones primary function +cell_phone/cell_phone_5,cellphone +cell_phone/cell_phone_5,smartphone +cell_phone/cell_phone_5,smart phone case +cell_phone/cell_phone_5,smartphone +cell_phone/cell_phone_1,cell phone +cell_phone/cell_phone_1,cellular phone device looks like ancient ones +cell_phone/cell_phone_1,older cellphone +cell_phone/cell_phone_1,silver flashlight +cell_phone/cell_phone_1,mobile phone +dry_battery/dry_battery_5,battery +dry_battery/dry_battery_5,battery +dry_battery/dry_battery_5,battery +dry_battery/dry_battery_5,energizer battery +dry_battery/dry_battery_5,energizer battery +onion/onion_5,red onion +onion/onion_5,pomegranate messy fruit +onion/onion_5,purple onion +onion/onion_5,red onion +onion/onion_5,onion +food_cup/food_cup_5,container yogurt +food_cup/food_cup_5,container yogurt +food_cup/food_cup_5,container yogurt +food_cup/food_cup_5,cup yogurt yogurt probiotics makes quick delivious snack +food_cup/food_cup_5,container yogurt +marker/marker_8,marker +marker/marker_8,magic marker +marker/marker_8,dry erase marker red body black cap +marker/marker_8,red permanent marker +water_bottle/water_bottle_4,plastic bottle looks holding water can purposed many times +water_bottle/water_bottle_4,bottle drinking water +water_bottle/water_bottle_4,bottle water +water_bottle/water_bottle_4,plastic water bottle +water_bottle/water_bottle_4,water bottle +coffee_mug/coffee_mug_7,blue coffee mug +coffee_mug/coffee_mug_7,blue mug +coffee_mug/coffee_mug_7,shown blue coffee mug white interior +coffee_mug/coffee_mug_7,cup +coffee_mug/coffee_mug_7,coffee mug +food_can/food_can_13,can soup +food_can/food_can_13,can progresso light soup +food_can/food_can_13,can soup +food_can/food_can_13,can food +food_can/food_can_13,can soup +calculator/calculator_1,basic calculator +calculator/calculator_1,calculator +calculator/calculator_1,calculator +calculator/calculator_1,calculator used math problems +calculator/calculator_1,calculator +food_can/food_can_8,can diced tomatoes +food_can/food_can_8,can diced tomatoes +food_can/food_can_8,can label bowl diced tomatoes pictured named ro tel +food_can/food_can_8,can something could tomato sauce beans +food_can/food_can_8,can possibly contains soup +cereal_box/cereal_box_5,box honey graham crunch cereal +cereal_box/cereal_box_5,box crackers +cereal_box/cereal_box_5,box food preparation may required food can eaten +cereal_box/cereal_box_5,box cereal +cereal_box/cereal_box_5,box cereal +comb/comb_3,hair brush +comb/comb_3,hair brush black +comb/comb_3,black hair brush +comb/comb_3,hairbrush +comb/comb_3,hair comb oval head soft bristles +water_bottle/water_bottle_5,bottle water +water_bottle/water_bottle_5,plastic water bottle +water_bottle/water_bottle_5,plastic bottle looks holding water can purposed +water_bottle/water_bottle_5,bottle water blue label +water_bottle/water_bottle_5,bottle water +food_can/food_can_6,can cans label mainly white bottom red top +food_can/food_can_6,can soup +food_can/food_can_6,can soup +food_can/food_can_6,can food label red white +food_can/food_can_6,can soup +food_bag/food_bag_3,bag snyders pretzels salty snack +food_bag/food_bag_3,bag pretzels +food_bag/food_bag_3,bag snyders pretzel snaps +food_bag/food_bag_3,package snyders pretzels +food_bag/food_bag_3,bag snyders pretzels bag red gold black +comb/comb_2,oval head hair comb +comb/comb_2,black hair brush +comb/comb_2,brush +comb/comb_2,hair brush +comb/comb_2,hair brush stiff bristles black green +dry_battery/dry_battery_4,c battery duracell brand +glue_stick/glue_stick_3,glue stick +glue_stick/glue_stick_3,symmetry shaped object refers sense harmonious beautiful proportion balance +glue_stick/glue_stick_3,gluestick used glue things together +stapler/stapler_7,object blue stapler used group paper together small piece metal +stapler/stapler_7,blue mini stapler +stapler/stapler_7,blue stapler +food_jar/food_jar_3,jar food +food_jar/food_jar_3,jar brown gravy used cooking +food_jar/food_jar_3,opened jar +pitcher/pitcher_3,tall green ceramic pitcher +pitcher/pitcher_3,ceramic pitcher green elongated oval handle +pitcher/pitcher_3,pitcher holding liquid brown +tomato/tomato_1,red tomato +tomato/tomato_1,red tomato +instant_noodles/instant_noodles_4,bag instant ramen +instant_noodles/instant_noodles_4,package dried noodles cook water small rectangular package +instant_noodles/instant_noodles_4,bag ramen +food_can/food_can_4,metal can food label describe ingredients possibly directions use product appears either can soup milk +calculator/calculator_1,calculator +calculator/calculator_1,calculator used maths +calculator/calculator_1,calculator +food_box/food_box_12,box round crackers box long rectangle +food_box/food_box_12,box salted crackers +food_box/food_box_12,box crackers +flashlight/flashlight_5,large yellow flashlight +flashlight/flashlight_5,yellow duracell flashlight table +banana/banana_3,banana +banana/banana_3,banana +lemon/lemon_4,lemon +lemon/lemon_4,yellow lemon +bell_pepper/bell_pepper_6,green bellpepper upright +bell_pepper/bell_pepper_6,green pepper +glue_stick/glue_stick_1,glue stick lid +glue_stick/glue_stick_6,glue stick +greens/greens_1,leaf lettuce +greens/greens_1,lettuce variety lettuce grows tall head sturdy dark green leaves usually used make dish used garnish dish prepared +greens/greens_1,bundle greens used cooking +potato/potato_5,potato +potato/potato_5,russet potato used cooking +potato/potato_5,potato +lightbulb/lightbulb_4,led lighbulb +lightbulb/lightbulb_4,light bulb +lightbulb/lightbulb_4,bulb flat top brass bottom +banana/banana_3,fruit called banana +banana/banana_3,banana +banana/banana_3,banana yellow seems ripe +kleenex/kleenex_5,paper tissues +kleenex/kleenex_5,box tissues +kleenex/kleenex_5,box tissues +food_jar/food_jar_3,jar +food_jar/food_jar_3,jar food +apple/apple_5,green apple upright +apple/apple_5,apple sweet edible fruit produced apple tree +apple/apple_5,apple green apple stem apple also sticker +mushroom/mushroom_1,mushroom used coooking +food_can/food_can_6,can tomato sauce +food_can/food_can_6,canned food +rubber_eraser/rubber_eraser_3,pink eraser used remove pencil writing +rubber_eraser/rubber_eraser_3,pink eraser +food_jar/food_jar_5,jar yellow ring peppers +food_jar/food_jar_5,jar pickled pepper slices +food_jar/food_jar_5,jar contents yellow +food_box/food_box_1,one small box make nice snack later day +food_box/food_box_1,box food +food_box/food_box_1,nutrition label box food +onion/onion_6,reddish purple food item round papery outer layer +tomato/tomato_5,red tomato +tomato/tomato_5,circular red sticker +tomato/tomato_5,tomato edible vegitable +water_bottle/water_bottle_5,bottle water blue label +water_bottle/water_bottle_5,water bottle blue label +soda_can/soda_can_2,can 7up soda +soda_can/soda_can_2,can soda +soda_can/soda_can_2,green individual unopened soda can +bell_pepper/bell_pepper_3,red pepper +bell_pepper/bell_pepper_3,red bell pepper +keyboard/keyboard_1,computer keyboard +keyboard/keyboard_1,keyboard used enter data computer +keyboard/keyboard_1,grey keyboard color grey +garlic/garlic_1,bulb garlic used cooking +garlic/garlic_1,garlic herb grown around world related onion leeks chives +garlic/garlic_1,garlic +plate/plate_4,paper plate +plate/plate_4,paper bowl tan trim +plate/plate_4,disposable paper bowl +sponge/sponge_7,sponge used wash dishes +sponge/sponge_7,sponge tool cleaning aid made soft porous material +sponge/sponge_7,green yellow sponge scrubbing part green soft part yellow +water_bottle/water_bottle_7,plastic water bottle +water_bottle/water_bottle_7,water bottle container used hold water liquids beverages consumption +water_bottle/water_bottle_7,bottle water +potato/potato_2,red potato used cooking +potato/potato_2,potato starchy tuberous crop perennial nightshade solanum tuberosum +scissors/scissors_2,pair scissors orange handles +scissors/scissors_2,scissors orange handle +scissors/scissors_2,pair orange scissors +calculator/calculator_4,green white calculator +calculator/calculator_4,calculator used maths +calculator/calculator_4,calculator people use simple math white buttons lime green +instant_noodles/instant_noodles_6,small yellow bag cookies +cap/cap_1,baseball hat +cap/cap_1,striped baseball cap +cap/cap_1,pinstriped baseball hat mostly white +apple/apple_1,red apple upright +apple/apple_1,dark red apple +apple/apple_1,red apple +soda_can/soda_can_6,can welchs juice +soda_can/soda_can_6,can welchs drink +soda_can/soda_can_6,glass bottle offers highest quality glass bottle best prices +marker/marker_8,red marker black lid +pitcher/pitcher_1,ceramic container +pitcher/pitcher_1,small ceramic pitcher leaf drawing +marker/marker_3,expo marker +marker/marker_3,closed scroll fastened removable white band +garlic/garlic_5,red onion first layer peeling +garlic/garlic_5,vegetable used cooking +stapler/stapler_2,black hand stapler +stapler/stapler_2,stapler +stapler/stapler_2,stapler +stapler/stapler_2,black grey stapler +stapler/stapler_2,black stapler desk stapler +sponge/sponge_9,red dish scrubber +sponge/sponge_9,kitchen scrubbing sponge +greens/greens_2,dark green piece lettuce +greens/greens_2,bunch lettuce +greens/greens_2,bunch lettuce +greens/greens_2,lettuce green +greens/greens_2,bundle lettuce +food_box/food_box_7,box wheat crackers +food_box/food_box_7,box wheat thin crackers +food_box/food_box_7,box yellow +food_box/food_box_7,box wheat thins box mostly yellow +food_box/food_box_7,box wheat thins +greens/greens_3,bok choy plate +greens/greens_3,head bokchoy +greens/greens_3,green vegetable +greens/greens_3,green lettuce +greens/greens_3,bok choi +dry_battery/dry_battery_2,yellow flashlight +dry_battery/dry_battery_2,battery +dry_battery/dry_battery_2,aa battery +dry_battery/dry_battery_2,device called flashlight powered batteries produced visible light +kleenex/kleenex_5,box kleenex red pattern +kleenex/kleenex_5,box kleenex +kleenex/kleenex_5,box tissues +kleenex/kleenex_5,pink patterned box tissue box made cardboard +kleenex/kleenex_5,box facial tissues +sponge/sponge_5,red blue sponge +sponge/sponge_5,sponge +sponge/sponge_5,blue red sponge +glue_stick/glue_stick_2,glue stick +glue_stick/glue_stick_2,container lip balm +glue_stick/glue_stick_2,can spray +sponge/sponge_6,sponge +sponge/sponge_6,kitchen scrubbing sponge +sponge/sponge_6,yellow pink sponge used clean house +sponge/sponge_6,pink yellow kitchen sponge +sponge/sponge_6,pink yellow sponge +cap/cap_1,black white striped ball cap +cap/cap_1,white baseball cap black pin stripes w logo +cap/cap_1,white hat +cap/cap_1,baseball cap +cap/cap_1,baseball hat +cereal_box/cereal_box_4,box cereal +cereal_box/cereal_box_4,box containing food product likely cereal +cereal_box/cereal_box_4,box cereal mostly blue +cereal_box/cereal_box_4,box cereal ingredients listed +cereal_box/cereal_box_4,box crackers +rubber_eraser/rubber_eraser_4,looks like pink eraser rectangular type thats tapered either end +rubber_eraser/rubber_eraser_4,red eraser +rubber_eraser/rubber_eraser_4,pencil eraser +rubber_eraser/rubber_eraser_4,pink eraser +rubber_eraser/rubber_eraser_4,eraser +garlic/garlic_7,clove garlic +garlic/garlic_7,clove garlic +garlic/garlic_7,head garlic +garlic/garlic_7,clove garlic +onion/onion_5,purple onion +onion/onion_5,red onion +onion/onion_5,red onion +onion/onion_5,red onion +bowl/bowl_1,red jello +bowl/bowl_1,green yellow bowl +bowl/bowl_1,object brown red bowl lead pattern inside +bowl/bowl_1,bowl +bowl/bowl_1,empty dinner bowl +tomato/tomato_6,object tomato used eat +tomato/tomato_6,small red tomato vine still attached +tomato/tomato_6,cherry tomato +tomato/tomato_6,vine ripe tomato +tomato/tomato_6,red tomato +keyboard/keyboard_2,black computer keyboard +keyboard/keyboard_2,computer keyboard used input device part desktop computer +keyboard/keyboard_2,computer keyboard +keyboard/keyboard_2,computer keyboard +keyboard/keyboard_2,keyboard +toothpaste/toothpaste_4,tube close toothpaste tube red white blue +toothpaste/toothpaste_4,tube toothpaste +toothpaste/toothpaste_4,tube toothpaste +toothpaste/toothpaste_4,tube toothpaste +toothpaste/toothpaste_4,red tube toothpaste +food_can/food_can_9,can campbells spaghetti os disney princesses label +food_can/food_can_9,can spaghettios cartoon characters label +food_can/food_can_9,can spaghetti os +food_can/food_can_9,can spaghetti os +food_can/food_can_9,metal can spaghettios label 3 disney princes cinderella ariel bell +notebook/notebook_1,notebook paper +notebook/notebook_1,writing notebook +notebook/notebook_1,red spiral bound notebook +notebook/notebook_1,red notebook college ruled paper +notebook/notebook_1,spiral bound notebook +lightbulb/lightbulb_3,round soft light white bulb +lightbulb/lightbulb_3,light bulb +lightbulb/lightbulb_3,lightbulb +lightbulb/lightbulb_3,lightbulb +lightbulb/lightbulb_3,light bulb +food_box/food_box_4,box oreo cookie snacks +food_box/food_box_4,box containing cookies cookies cylindical hollow +food_box/food_box_4,box golden oreo funstix +food_box/food_box_4,yellow box golden oreo funstix +food_box/food_box_4,box golden oreo funstix box yellow picture front +glue_stick/glue_stick_1,glue stick +glue_stick/glue_stick_1,looks like tube chapstick something similar +glue_stick/glue_stick_1,tube glue +sponge/sponge_2,sponge light green color +sponge/sponge_2,sponge +sponge/sponge_2,kitchen scrubbing sponge +sponge/sponge_2,lime green sponge +sponge/sponge_2,lime green sponge +stapler/stapler_4,black stapler +stapler/stapler_4,object used put papers together +stapler/stapler_4,black stapler +stapler/stapler_4,stapler +stapler/stapler_4,stapler +greens/greens_3,head bokchoy +greens/greens_3,leafy vegetable +greens/greens_3,baby bok choy +greens/greens_3,bok choi +greens/greens_3,might broccoli celery vegetable eaten raw often cooked side dish +food_jar/food_jar_4,jar food preparation required food can eaten +food_jar/food_jar_4,jar alfredo sauce +food_jar/food_jar_4,can alfredo sauce +food_jar/food_jar_4,jar white pasta sauce +food_jar/food_jar_4,jar alfredo sauce +marker/marker_3,black marker magic marker +marker/marker_3,black marker +marker/marker_3,black dry erase marker +marker/marker_3,magic marker +marker/marker_3,black expo marker +orange/orange_2,piece fruit +orange/orange_2,orange +orange/orange_2,sweet fruit called orange can eaten raw cooked +orange/orange_2,yellow sphere shaped object almost looks like lemon +orange/orange_2,nothing like pealing eating juicy sweet orange get lots vitamin c oranges make good juice drink roll around hard surface squishy stick drinking straw top squeeze suck juice +toothpaste/toothpaste_4,tube toothpaste cleans teeth +toothpaste/toothpaste_4,toothpaste paste gel dentifrice used toothbrush clean maintain aesthetics health teeth +toothpaste/toothpaste_4,tube toothpaste +toothpaste/toothpaste_4,tube toothpaste +toothpaste/toothpaste_4,tube toothpaste +lemon/lemon_2,yellow lemon super market sticker lemon +lemon/lemon_2,yellow lemon sticker label label blurry describe +lemon/lemon_2,yellow lemon +lemon/lemon_2,lemon +lemon/lemon_2,lemon +plate/plate_2,empty dinner plate +plate/plate_2,plate +plate/plate_2,plate +plate/plate_2,blue white plate +banana/banana_2,banana one popular fruits people allergic can eat use make lots things +banana/banana_2,ripe banana +banana/banana_2,banana +banana/banana_2,banana +banana/banana_2,large yellow banana small bruise +toothbrush/toothbrush_5,toothbrush red white handle matching brushes +toothbrush/toothbrush_5,red white toothbrush manual toothbrush +toothbrush/toothbrush_5,toothbrushes used promote good oral hygiene +toothbrush/toothbrush_5,toothbrush +toothbrush/toothbrush_5,red white toothbrush +sponge/sponge_3,blue sponge +sponge/sponge_3,kitchen scrubbing sponge +sponge/sponge_3,squeegee +sponge/sponge_3,blue sponge +sponge/sponge_3,blue sponge cleaning +marker/marker_3,magic marker +marker/marker_3,black dry erase marker +marker/marker_3,black marker +marker/marker_3,looks like black expo brand dry erase marker +marker/marker_3,black expo brand whiteboard marker +hand_towel/hand_towel_4,towel looks faded green possibly grey folded smaller square +hand_towel/hand_towel_4,looks like grey wash cloth +hand_towel/hand_towel_4,folded green washcloth +hand_towel/hand_towel_4,dinner napkin +hand_towel/hand_towel_4,gray towel placed white red plate +cereal_box/cereal_box_4,box food +cereal_box/cereal_box_4,box cereal +cereal_box/cereal_box_4,box cereal +cereal_box/cereal_box_4,blue box cold cereal +cereal_box/cereal_box_4,box breakfast cereal +water_bottle/water_bottle_5,bottle water blue label +water_bottle/water_bottle_5,bottled water +water_bottle/water_bottle_5,bottle clear liquid +water_bottle/water_bottle_5,bottle water +ball/ball_6,candy shaped like basketball +ball/ball_6,soft small toy basketball +ball/ball_6,squishy ball could easily fit someones hand made look like basketball +ball/ball_6,basketball stress ball something similar +ball/ball_6,small ball looks like basketball +pliers/pliers_3,pair pliers +pliers/pliers_3,vice grip pliers +pliers/pliers_3,green pliars +pliers/pliers_3,metel roughly x shaped green accents one end +pliers/pliers_3,pair pliers +tomato/tomato_1,object small red tomato +tomato/tomato_1,red tomato +tomato/tomato_1,red tomato +tomato/tomato_1,ripe plum tomato +cereal_box/cereal_box_3,box special k cereal +cereal_box/cereal_box_3,cardboard box cereal six sides picture spoon back +cereal_box/cereal_box_3,box cereal +cereal_box/cereal_box_3,box cereal +cereal_box/cereal_box_3,box cereal +stapler/stapler_5,black stapler +stapler/stapler_5,black stapler +stapler/stapler_5,stapler +ball/ball_1,football +ball/ball_1,nerf football +ball/ball_1,toy football +ball/ball_1,inflatable toy football brown white stripes +ball/ball_1,football +garlic/garlic_6,garlic primarily used italian fare +garlic/garlic_6,object looks like full piece garlic +garlic/garlic_6,looks like head garlic +garlic/garlic_6,full clove garlic +coffee_mug/coffee_mug_3,coffee mug +coffee_mug/coffee_mug_3,brown pitcher +coffee_mug/coffee_mug_3,large mug brown exterior beige interior coffee mug +coffee_mug/coffee_mug_3,mug +coffee_mug/coffee_mug_3,coffee mug +potato/potato_4,potato +potato/potato_4,object shaped like oval looks yellow brown red +potato/potato_4,mango +potato/potato_4,large baking potato +lemon/lemon_6,lemon +lemon/lemon_6,yellow lemon +lemon/lemon_6,lemon +lemon/lemon_6,lemon +lemon/lemon_6,lemon +water_bottle/water_bottle_10,empty water bottle +water_bottle/water_bottle_10,pink portable water bottle pink straw top +water_bottle/water_bottle_10,pink colored sippy bottle drink +water_bottle/water_bottle_10,drink container +water_bottle/water_bottle_10,object red pink reusable water bottle straw +bowl/bowl_4,coffee mug +bowl/bowl_4,bowl +bowl/bowl_4,bowl +bowl/bowl_4,bowl normally used soups deserts part table setting +bowl/bowl_4,white bowl +rubber_eraser/rubber_eraser_1,white pencil eraser white blue cardboard wrapper +rubber_eraser/rubber_eraser_1,looks earaser used erase pencil +rubber_eraser/rubber_eraser_1,pill organizer +garlic/garlic_5,small red potato +garlic/garlic_5,red potato +stapler/stapler_3,stapler +stapler/stapler_3,stapler +stapler/stapler_3,black swingline stapler +stapler/stapler_3,stapler +stapler/stapler_3,stapler used business setting attaching papers +toothpaste/toothpaste_3,tube toothpaste +toothpaste/toothpaste_3,tube toothpaste +toothpaste/toothpaste_3,tube toothpaste +toothpaste/toothpaste_3,tube toothpaste +toothpaste/toothpaste_3,plastic tube mostly white various hues blue along label +food_bag/food_bag_2,package cookies +food_bag/food_bag_2,bag cookies +food_bag/food_bag_2,package cake mix +food_bag/food_bag_2,package food +food_box/food_box_12,box food product +food_box/food_box_12,box crackers +food_box/food_box_12,box cookies +food_box/food_box_12,long rectangular cardboard box blue picture food think crackers +food_box/food_box_12,box crackers +binder/binder_1,three ring binder holds paper together rings covers +binder/binder_1,red binder +binder/binder_1,red folder +binder/binder_1,school folder +food_jar/food_jar_2,jar jelly +food_jar/food_jar_2,jar jelly +food_jar/food_jar_2,food jar used keep food items +food_jar/food_jar_2,jar marmalade +food_jar/food_jar_2,jar food appears jelly fruity food thats ready eat +instant_noodles/instant_noodles_4,package food +instant_noodles/instant_noodles_4,package ramen noodles +instant_noodles/instant_noodles_4,package ramen soup mix +instant_noodles/instant_noodles_4,pack ramen +instant_noodles/instant_noodles_4,packet instant noodles package mostly red +food_cup/food_cup_5,either container yogurt small container half half food inside +food_cup/food_cup_5,container yogurt +food_cup/food_cup_5,container yogurt +food_cup/food_cup_5,thing creamer coffee +garlic/garlic_1,clove garlic +garlic/garlic_1,bulb garlic +garlic/garlic_1,clove garlic +shampoo/shampoo_2,plastic bottle may shampoo +shampoo/shampoo_2,bottle conditioner liquid inside white +shampoo/shampoo_2,bottle shampoo +shampoo/shampoo_2,bottle shampoo conditioner +tomato/tomato_3,tomato +tomato/tomato_3,tomato +tomato/tomato_3,red tomato +tomato/tomato_3,ripened roma tomato +tomato/tomato_3,tomato +food_box/food_box_2,box zatarrains rice +food_box/food_box_2,box zatarains yellow rice +food_box/food_box_2,box rice +food_box/food_box_2,box rice looks like zatarrans brand rice pilaf +food_box/food_box_2,box yellow rice +flashlight/flashlight_1,device called flashlight powered batteries produced visible light +flashlight/flashlight_1,black flashlight +flashlight/flashlight_1,black flashlight +flashlight/flashlight_1,flashlight +flashlight/flashlight_1,flashlight +food_can/food_can_2,can campbells chicken noodle soup red white +food_can/food_can_2,can soup +food_can/food_can_2,can soup +food_can/food_can_2,unopened can campbells chicken noddle soup flip tab +food_can/food_can_2,soup can brand chicken noodle soup campbells +tomato/tomato_1,red tomato +tomato/tomato_1,red round tomatoe +tomato/tomato_1,plum tomato +tomato/tomato_1,red tomato +tomato/tomato_1,tomato +potato/potato_3,yellow potato +potato/potato_3,potato good size baked potato +potato/potato_3,medium sized potato +potato/potato_3,potato +potato/potato_3,potato +notebook/notebook_3,spiral bound notebook +notebook/notebook_3,notebook paper +notebook/notebook_3,notebook drawing pad neon green tie dye cover +notebook/notebook_3,spiral bound notebook pad paper held together wire spiral one side +notebook/notebook_3,writing notebook +lemon/lemon_3,lemon +lemon/lemon_3,lemon +lemon/lemon_3,yellow lemon +lemon/lemon_3,lemon +lemon/lemon_3,yellow lemon sour +food_box/food_box_1,box sugar substitute red white green stripe +food_box/food_box_1,box sugar sweetner +food_box/food_box_1,package sugar substitute +food_box/food_box_1,box containing food product possibly tea mix +food_box/food_box_1,box white fine granulated sugar +garlic/garlic_2,fresh unpeeled garlic +garlic/garlic_2,clove garlic +garlic/garlic_2,looks like head garlic +garlic/garlic_2,bulb garlic +garlic/garlic_2,bulb garlic +marker/marker_4,green marker +marker/marker_4,flashlight used se dark +marker/marker_4,pen +marker/marker_4,magic marker +marker/marker_4,green marker +tomato/tomato_2,red tomato +tomato/tomato_2,red tomato +tomato/tomato_2,fruit +tomato/tomato_2,cherry tomato +marker/marker_1,magic marker +marker/marker_1,dry erase marker used white boards +marker/marker_1,red dry erase marker +marker/marker_1,red marker +marker/marker_1,glue pen +instant_noodles/instant_noodles_4,package snack food humans eat snack foods part diet +instant_noodles/instant_noodles_4,packet instant noodles mostly red +instant_noodles/instant_noodles_4,package food +instant_noodles/instant_noodles_4,package noodles +lightbulb/lightbulb_2,light bulb +lightbulb/lightbulb_2,light bulb +lightbulb/lightbulb_2,light bulbs used residential fixtures +lightbulb/lightbulb_2,lightbulb +lightbulb/lightbulb_2,light bulb +notebook/notebook_4,blue spiral bound notebook +notebook/notebook_4,object blue notebook 70 bottom right +notebook/notebook_4,writing notebook +notebook/notebook_4,blue spiral bound notebook +notebook/notebook_4,spiral bound notebook +cap/cap_2,woodland camouflage baseball hat green tan brown black +cap/cap_2,camouflage hat +cap/cap_2,baseball cap camo print +cap/cap_2,camouflage hat +cap/cap_2,army hat +garlic/garlic_2,bulb garlic +garlic/garlic_2,garlic +garlic/garlic_2,bulb garlic +garlic/garlic_2,clove garlic +garlic/garlic_2,head garlic +coffee_mug/coffee_mug_7,blue coffee mug +coffee_mug/coffee_mug_7,blue coffee mug +coffee_mug/coffee_mug_7,coffee mug +coffee_mug/coffee_mug_7,mug +coffee_mug/coffee_mug_7,ceramic cup blue outside white inside +keyboard/keyboard_3,black plastic keyboard rectangular details painted white +keyboard/keyboard_3,computer keyboard +keyboard/keyboard_3,extended black computer keyboard +keyboard/keyboard_3,object long black keyboard +keyboard/keyboard_3,computer keyboard +glue_stick/glue_stick_2,thing lip bulm +glue_stick/glue_stick_2,sphere canister white top +glue_stick/glue_stick_2,glue stick +glue_stick/glue_stick_5,tube glue +glue_stick/glue_stick_5,glue stick +food_box/food_box_10,box food maybe pancake mix +food_box/food_box_10,box food could cereal cookies +food_box/food_box_10,box crackers +food_box/food_box_10,box crackers +notebook/notebook_2,notepad lined blank paper +notebook/notebook_2,writing notebook +notebook/notebook_2,spiral notebook 70 pages blank paper student would use notebook like +notebook/notebook_2,spiral bound notebook pad paper held together wire spiral one side +notebook/notebook_2,spiral bound notebook +cap/cap_1,white baseball cap black pin stripes w logo +cap/cap_1,item hat white vertical black stripes logo embossed +cap/cap_1,white baseball hat black stripes +cap/cap_1,baseball cap +cap/cap_1,white cap black lines runnig +food_bag/food_bag_7,bag chips +food_bag/food_bag_7,bag chips +food_bag/food_bag_7,bag chips +food_bag/food_bag_7,pack chips like snack +rubber_eraser/rubber_eraser_3,pink eraser +rubber_eraser/rubber_eraser_3,eraser +rubber_eraser/rubber_eraser_3,pink rectangular rubber eraser +rubber_eraser/rubber_eraser_3,pencil eraser +rubber_eraser/rubber_eraser_3,big pink eraser +water_bottle/water_bottle_9,water bottle +water_bottle/water_bottle_9,clear purple water bottle opaque purple lid says bpa free oni +water_bottle/water_bottle_9,blue reusable water bottle +water_bottle/water_bottle_9,drinking container +water_bottle/water_bottle_9,reusable cup bpa free +mushroom/mushroom_1,clove garlic +mushroom/mushroom_1,mushroom might green mold backside +mushroom/mushroom_1,something looks like ginger +marker/marker_6,pen +marker/marker_6,black pen blue grips +marker/marker_6,ink pen +marker/marker_6,pen +toothbrush/toothbrush_2,white lime green toothbrush +toothbrush/toothbrush_2,toothbrush +toothbrush/toothbrush_2,toothbrush +toothbrush/toothbrush_2,light green toothbrush +toothbrush/toothbrush_2,toothbrush +mushroom/mushroom_3,object large white bone +water_bottle/water_bottle_9,purple water bottle +water_bottle/water_bottle_9,plastic sipping water bottle blue cap +water_bottle/water_bottle_9,plastic water bottle +water_bottle/water_bottle_9,purple clear water bottle +water_bottle/water_bottle_9,object purple drink container lid +bowl/bowl_2,object bowl use eat food +bowl/bowl_2,object can eaten large hole ints center +bowl/bowl_2,bowl +bowl/bowl_2,glass bowl used hold liquid foods +bowl/bowl_2,empty dinner bowl +cap/cap_3,black baseball cap image bulldog front +cap/cap_3,black hat picture bulldog front +cap/cap_3,black baseball cap says bulldog picture bulldog +cap/cap_3,hat bulldog graphic design sitting atop stool +cap/cap_3,bulldogs baseball cap +marker/marker_9,marker +marker/marker_9,yellow highlighter +marker/marker_9,felt tip marker piece felt black cap makes mark paper spreading ink tube +marker/marker_9,magic marker +marker/marker_9,yellow highlighter +pear/pear_4,brown pear +pear/pear_4,pear +pear/pear_4,pear +pear/pear_4,pear +pear/pear_4,pear +marker/marker_6,marker +marker/marker_6,magic marker +flashlight/flashlight_2,flashlight +flashlight/flashlight_2,flash light +flashlight/flashlight_2,red black flashlight +flashlight/flashlight_2,electrical battery powered device called flashlight powered produces light humans need see dark +flashlight/flashlight_2,red flashlight +water_bottle/water_bottle_6,clear water bottle +water_bottle/water_bottle_6,bottle water +water_bottle/water_bottle_6,bottle water blue cap +water_bottle/water_bottle_6,bottle drinking water +water_bottle/water_bottle_6,plastic water bottle +plate/plate_7,empty dinner plate +plate/plate_7,plain white plate +plate/plate_7,bowl normally used soups deserts part table setting +plate/plate_7,white plate +plate/plate_7,white plate +banana/banana_2,fruit known bananna +banana/banana_2,banana mostly yellow +banana/banana_2,banana +banana/banana_2,banana +banana/banana_2,banana plate +instant_noodles/instant_noodles_5,pack asian food +instant_noodles/instant_noodles_5,package food preparation required food can eaten +instant_noodles/instant_noodles_5,package ramen soup +instant_noodles/instant_noodles_5,package ramen noodles +instant_noodles/instant_noodles_5,package food +soda_can/soda_can_1,can pepsi +soda_can/soda_can_1,can pepsi mostly blue pepsi logo +soda_can/soda_can_1,can pepsi +soda_can/soda_can_1,can pepsi +soda_can/soda_can_1,can pepsi carbonated drink +tomato/tomato_5,tomato +tomato/tomato_5,red ball tomato +tomato/tomato_5,cherry tomato +tomato/tomato_5,red tomato used many foods +tomato/tomato_5,red tomato +food_box/food_box_12,box snacks looks like cookies +food_box/food_box_12,box crackers +food_box/food_box_12,pack cookies +food_box/food_box_12,box crackers +food_box/food_box_12,box crackers +scissors/scissors_4,scissors yellow handle +scissors/scissors_4,pair scissors +scissors/scissors_4,pair scissors +scissors/scissors_4,pair scissors +scissors/scissors_4,pair scissors handle grey yellow accents +garlic/garlic_7,looks like couple bars soap +dry_battery/dry_battery_4,size c battery +dry_battery/dry_battery_4,battery black copper +dry_battery/dry_battery_4,battery +dry_battery/dry_battery_4,large alkaline battery copper black +dry_battery/dry_battery_4,battery +stapler/stapler_8,mini stapler +stapler/stapler_8,small red stapler +stapler/stapler_8,red stapler +stapler/stapler_8,small red stapler +soda_can/soda_can_3,can soda +soda_can/soda_can_3,can 7 +soda_can/soda_can_3,can mountain dew +soda_can/soda_can_3,can soda +soda_can/soda_can_3,can soda +food_box/food_box_10,green box probably contains food +food_box/food_box_10,box something +food_box/food_box_10,box kind food box light green white panel upc +food_box/food_box_10,box crackers +food_box/food_box_10,box snacks +shampoo/shampoo_2,bottle shampoo +shampoo/shampoo_2,white bottle +shampoo/shampoo_2,bottle shampoo +toothpaste/toothpaste_2,tube toothpaste +toothpaste/toothpaste_2,tube crest toothpaste +toothpaste/toothpaste_2,tube crest toothpaste +toothpaste/toothpaste_2,tube crest toothpaste used clean teeth +toothpaste/toothpaste_2,tube toothpaste +toothbrush/toothbrush_1,red white toothbrush +toothbrush/toothbrush_1,toothbrush +toothbrush/toothbrush_1,red white toothbrush +toothbrush/toothbrush_1,toothbrush oral hygiene instrument used clean teeth +toothbrush/toothbrush_1,toothbrush +pear/pear_4,bosc pear +pear/pear_4,pear +pear/pear_4,pear +pear/pear_4,yellow pear sticker +pear/pear_4,brown pear +lightbulb/lightbulb_1,energy efficient light bulb +lightbulb/lightbulb_1,light bulb screwed powered electrical light socket produces visible light +lightbulb/lightbulb_1,led light bulb +lightbulb/lightbulb_1,light bulb +lightbulb/lightbulb_1,light bulb +lightbulb/lightbulb_1,compact fluorescent lightbulb +lightbulb/lightbulb_1,white led light bulb +lightbulb/lightbulb_1,light bulb +lightbulb/lightbulb_1,smart lightbulb +lightbulb/lightbulb_1,led lightbulb +coffee_mug/coffee_mug_2,coffee cup +coffee_mug/coffee_mug_2,mug +coffee_mug/coffee_mug_2,brown coffee mug +coffee_mug/coffee_mug_2,coffee mug +coffee_mug/coffee_mug_2,called cup mug commonly used hold drink tea coffee +cell_phone/cell_phone_5,smartphone +cell_phone/cell_phone_5,cellphone +cell_phone/cell_phone_5,cell phone +cell_phone/cell_phone_5,smartphone silver black +cell_phone/cell_phone_5,cell phone +instant_noodles/instant_noodles_8,package ramen +instant_noodles/instant_noodles_8,package noodles +instant_noodles/instant_noodles_8,packet ichiban brand instant ramen noodles package white brown +instant_noodles/instant_noodles_8,package food +stapler/stapler_4,stapler black +stapler/stapler_4,stapler +stapler/stapler_4,stapler +stapler/stapler_4,black stapler +stapler/stapler_4,black manual stapler +toothbrush/toothbrush_5,red white toothbrush +toothbrush/toothbrush_5,white red toothbrush +toothbrush/toothbrush_5,red white toothbrush +toothbrush/toothbrush_5,red white toothbrush +toothbrush/toothbrush_5,tooth brush +toothpaste/toothpaste_2,tube crest toothpaste +toothpaste/toothpaste_2,tube toothpaste +toothpaste/toothpaste_2,tube crest toothpaste +toothpaste/toothpaste_2,one tube crest toothpaste +toothpaste/toothpaste_2,toothpaste paste gel dentifrice used toothbrush clean maintain aesthetics health teeth +food_can/food_can_11,can soup +food_can/food_can_11,can soup +food_can/food_can_11,can food +food_can/food_can_11,can food +food_can/food_can_11,can soup +hand_towel/hand_towel_2,folded towel +hand_towel/hand_towel_2,red towel folded twice rectangular shape white tag visible one edges +hand_towel/hand_towel_2,red cloth +hand_towel/hand_towel_2,wash cloth +hand_towel/hand_towel_2,red towel placed white red plate +coffee_mug/coffee_mug_7,cup +coffee_mug/coffee_mug_7,blue white mug +coffee_mug/coffee_mug_7,coffee mug +coffee_mug/coffee_mug_7,coffee cup +coffee_mug/coffee_mug_7,blue white mug +scissors/scissors_3,blue scissors +scissors/scissors_3,pair scissors +scissors/scissors_3,scissors blue handle +scissors/scissors_3,pair scissors +scissors/scissors_3,object pair blue scissors +calculator/calculator_2,calculator +calculator/calculator_2,calculator +calculator/calculator_2,calculator +calculator/calculator_2,calculator used solving math problems +calculator/calculator_2,black desk calculator small flip screen +food_can/food_can_3,can product +food_can/food_can_3,can soup +food_can/food_can_3,can soup +food_can/food_can_3,aluminum can brand soup might campbells brand +food_can/food_can_3,can soup +bell_pepper/bell_pepper_5,green bell pepper +bell_pepper/bell_pepper_5,green pepper +bell_pepper/bell_pepper_5,green pepper +bell_pepper/bell_pepper_5,green bell pepper +bell_pepper/bell_pepper_5,green pepper +sponge/sponge_5,sponge +sponge/sponge_5,kitchen scrubbing sponge +sponge/sponge_5,red blue sponge +sponge/sponge_5,sponge +sponge/sponge_5,object square shaped soft +cell_phone/cell_phone_1,cell phone +cell_phone/cell_phone_1,gray black cell phone +cell_phone/cell_phone_1,cell phone +cell_phone/cell_phone_1,slim mobile phone +cell_phone/cell_phone_1,cellphone +cell_phone/cell_phone_1,smartphone +toothpaste/toothpaste_2,tube toothpaste +toothpaste/toothpaste_2,small tube crest toothpaste +toothpaste/toothpaste_2,tube crest toothpaste +toothpaste/toothpaste_2,tube toothpaste +toothpaste/toothpaste_2,tube crest toothpaste white blue label +pliers/pliers_6,pair pliers +pliers/pliers_6,pair pliers +pliers/pliers_6,pliers black handles metal tip +pliers/pliers_6,pair pliers blue hand grips +pliers/pliers_6,pair pliers blue handles +keyboard/keyboard_1,keyboard +keyboard/keyboard_1,wireless keyboard keyboards used computers +keyboard/keyboard_1,computer keyboard +keyboard/keyboard_1,flat keyboard +keyboard/keyboard_1,silver computer keyboard white keys +pear/pear_3,pear +pear/pear_3,pear +pear/pear_3,brown pear +ball/ball_5,toy football +ball/ball_5,football +ball/ball_5,inflatable toy football brown white stripes +ball/ball_5,toy football +ball/ball_5,toy football two white lines side orange brown textures around ball +soda_can/soda_can_6,canned beverage +soda_can/soda_can_6,can orange soda +soda_can/soda_can_6,can soda +soda_can/soda_can_6,yellow aluminum can type soda drink +rubber_eraser/rubber_eraser_2,image blurry make object +rubber_eraser/rubber_eraser_2,blurry image +apple/apple_5,green apple +apple/apple_5,green apple +apple/apple_5,green apple +apple/apple_5,green apple +apple/apple_5,green apple +coffee_mug/coffee_mug_8,empty coffee mug +coffee_mug/coffee_mug_8,cup mug often used hold coffee tea drink humans ingest +coffee_mug/coffee_mug_8,white mug blue stripes outside +coffee_mug/coffee_mug_8,mug +coffee_mug/coffee_mug_8,coffee mug +pliers/pliers_2,pair pliers +pliers/pliers_2,pliers made various shapes sizes many uses used gripping something round like pipe rod +pliers/pliers_2,black pliars +pliers/pliers_2,pair pliers +pliers/pliers_2,pair pliers +scissors/scissors_2,pair scissors +scissors/scissors_2,orange colored scissorsa +scissors/scissors_2,scissors orange handle +scissors/scissors_2,pair adult scissors bright orange handle +scissors/scissors_2,pair scissors +dry_battery/dry_battery_6,battery +dry_battery/dry_battery_6,two batteries +dry_battery/dry_battery_6,battery +dry_battery/dry_battery_6,battery +food_can/food_can_2,can soup +food_can/food_can_2,can cambells soup +food_can/food_can_2,can soup +food_can/food_can_2,can soup +food_can/food_can_2,can campbells soup red white +bell_pepper/bell_pepper_4,bell pepper red thick green stem laying side +bell_pepper/bell_pepper_4,vegetable called red pepper can eaten raw cooked +bell_pepper/bell_pepper_4,red pepper +bell_pepper/bell_pepper_4,red bell pepper +bell_pepper/bell_pepper_4,red bell pepper +pliers/pliers_1,pair pliers +pliers/pliers_1,pair pliers +pliers/pliers_1,pair pliers +pliers/pliers_1,pair metal pliers dark blue handle +pliers/pliers_1,pair scissors +instant_noodles/instant_noodles_6,package food +instant_noodles/instant_noodles_6,package food +instant_noodles/instant_noodles_6,package ramen noodles +instant_noodles/instant_noodles_6,package food +instant_noodles/instant_noodles_6,package instant ramen noodles mostly yellow +binder/binder_1,red cloth +binder/binder_1,red binder sitting top white object +binder/binder_1,school folder +cell_phone/cell_phone_4,cellphone used communicate persons +cell_phone/cell_phone_4,cell phone +cell_phone/cell_phone_4,digital camera can record pictures later display editing computer +cell_phone/cell_phone_4,cellphone +toothpaste/toothpaste_5,toothpaste paste gel dentifrice used toothbrush clean maintain aesthetics health teeth +toothpaste/toothpaste_5,tube crest toothpaste +toothpaste/toothpaste_5,tube toothpaste +toothpaste/toothpaste_5,tube toothpaste +toothpaste/toothpaste_5,tube toothpaste +food_jar/food_jar_2,jar jam +food_jar/food_jar_2,jelly best uses putting toast breakfast +food_jar/food_jar_2,jar jelly +food_jar/food_jar_2,jar jelly +food_jar/food_jar_2,jar jam jelly +stapler/stapler_1,black stapler +stapler/stapler_1,stapler +stapler/stapler_1,black stapler +stapler/stapler_1,stapler black +stapler/stapler_1,stapler +keyboard/keyboard_4,computer keyboard +keyboard/keyboard_4,computer keyboard +keyboard/keyboard_4,black keyboard +keyboard/keyboard_4,black computer keyboard +keyboard/keyboard_4,keyboard unknown brand +instant_noodles/instant_noodles_3,ramon noodle soup +instant_noodles/instant_noodles_3,package food +instant_noodles/instant_noodles_3,package frozen vegetables +instant_noodles/instant_noodles_3,bag frozen vegetables +scissors/scissors_3,scissors blue handle +scissors/scissors_3,pair scissors +scissors/scissors_3,pair scissors +scissors/scissors_3,pair scissors bright blue handle +scissors/scissors_3,pair scissors blud handle used cut things +glue_stick/glue_stick_3,glue stick +glue_stick/glue_stick_3,tube glue +glue_stick/glue_stick_3,glue stick +glue_stick/glue_stick_3,gluestick +glue_stick/glue_stick_3,can spray +instant_noodles/instant_noodles_8,package dry ramen need prepared eaten packaging plastic +instant_noodles/instant_noodles_8,packet something looks like noodles +instant_noodles/instant_noodles_8,package food +instant_noodles/instant_noodles_8,plastic bag processed food sort +instant_noodles/instant_noodles_8,packet ichiban instant ramen noodles package brown white +instant_noodles/instant_noodles_8,package food +shampoo/shampoo_1,body cleanser hair product +shampoo/shampoo_1,bottle shampoo conditioner +shampoo/shampoo_1,bottle shampoo +shampoo/shampoo_1,looks like back bottle conditioner cant read label shaped like v05 +shampoo/shampoo_1,bottle body wash +bowl/bowl_4,coffee cup +bowl/bowl_4,white ceramic cereal bowl +bowl/bowl_4,white bowl +bowl/bowl_4,empty dinner bowl +bowl/bowl_4,ceramic cup +plate/plate_5,white plate +plate/plate_5,white plate +plate/plate_5,empty plate +plate/plate_5,plate +plate/plate_5,empty dinner plate +marker/marker_8,magic marker +marker/marker_8,felt tip marker piece felt black cap makes mark paper spreading ink tube +marker/marker_8,red highlighter pen +marker/marker_8,marker +coffee_mug/coffee_mug_2,mug +coffee_mug/coffee_mug_2,empty coffee cup colored black inside +coffee_mug/coffee_mug_2,coffee mug +coffee_mug/coffee_mug_2,dark brown coffee mug +coffee_mug/coffee_mug_2,brown mug +toothpaste/toothpaste_5,tube toothpaste +toothpaste/toothpaste_5,tube toothpaste +toothpaste/toothpaste_5,toothpaste minty flavor +toothpaste/toothpaste_5,tube toothpaste +toothpaste/toothpaste_5,tube crest toothpaste green blue +lemon/lemon_3,lemon +lemon/lemon_3,yellow lemon +lemon/lemon_3,lemon +lemon/lemon_3,yellow lemon skin sometimes grated juice inside extracted juice cooking tart +lemon/lemon_3,yellow lemon still showing bit green one end +food_box/food_box_6,box pretzel thins white brown photo pretzels front +food_box/food_box_6,white box pretzel thins +food_box/food_box_6,box pretzel thins +food_box/food_box_6,box pretzel thins +food_box/food_box_6,box pretzel thins +stapler/stapler_7,mini blue stapler +stapler/stapler_7,small blue stapler +stapler/stapler_7,blue stapler +stapler/stapler_7,small blue stapler +food_jar/food_jar_4,object top contains liquid substance made ragu +food_jar/food_jar_4,looks like jar ragu alfredo sauce +food_jar/food_jar_4,jar ragu white pasta sauce +food_jar/food_jar_4,bottle ragu white pasta sauce +food_jar/food_jar_4,sealed 16 ounce glass jar original ragu alfredo sauce +toothpaste/toothpaste_2,tube toothpaste +toothpaste/toothpaste_2,plastic tube crest toothpaste white cap blue label +toothpaste/toothpaste_2,tube toothpaste small brush paste used clean humans teeth +toothpaste/toothpaste_2,tube toothpaste +toothpaste/toothpaste_2,tube crest toothpaste +mushroom/mushroom_3,folded towel +camera/camera_2,camera +camera/camera_2,digital camera +camera/camera_2,camera +camera/camera_2,camera +toothpaste/toothpaste_5,tube toothpaste +toothpaste/toothpaste_5,tube toothpaste crest brand toothpaste +toothpaste/toothpaste_5,tube toothpaste +toothpaste/toothpaste_5,tube toothpaste +toothpaste/toothpaste_5,tube crest toothpaste +food_bag/food_bag_6,unopened bag baked chips bag red black +food_bag/food_bag_6,bag chips +food_bag/food_bag_6,bag chips +food_bag/food_bag_6,package contains snack food humans eat snack food part diet +food_bag/food_bag_6,bag pop chips +soda_can/soda_can_3,can mountain dew diet drink +soda_can/soda_can_3,can mountain dew +soda_can/soda_can_3,can mountain dew +soda_can/soda_can_3,can mountain dew drink +soda_can/soda_can_3,can diet mountain dew +plate/plate_5,saucer +plate/plate_5,plate +plate/plate_5,plate +plate/plate_5,empty dinner plate +plate/plate_5,plate broad mainly flat vessel commonly used serve food +tomato/tomato_2,cherry tomato +tomato/tomato_2,tomato +tomato/tomato_2,tomato +tomato/tomato_2,roma tomato +tomato/tomato_2,red tomato +dry_battery/dry_battery_5,small battery +dry_battery/dry_battery_5,battery +dry_battery/dry_battery_5,battery +dry_battery/dry_battery_5,battery +dry_battery/dry_battery_5,energizer battery +binder/binder_2,binder +binder/binder_2,looks like purple 3 ring binder cant read label looks like maybe 1 wide binder 85x11 paper +binder/binder_2,purple binder +binder/binder_2,school folder +binder/binder_2,binder +kleenex/kleenex_2,box kleenex +kleenex/kleenex_2,box tissues +kleenex/kleenex_2,box tissues tissues thin absorbent paper cloths used clean nasal malfunctions +kleenex/kleenex_2,box soft tissues +kleenex/kleenex_2,box facial tissues +food_can/food_can_14,can soup +food_can/food_can_14,red can soup +food_can/food_can_14,can +food_can/food_can_14,can food product +food_can/food_can_14,can soup +soda_can/soda_can_2,looks like can 7 +soda_can/soda_can_2,can 7 +soda_can/soda_can_2,7up can mainly green +soda_can/soda_can_2,can 7 +soda_can/soda_can_2,clear drink soda pop +comb/comb_5,black handled hairbrush +comb/comb_5,hairbrush +comb/comb_5,hair brush +comb/comb_5,hair brush +comb/comb_5,hair brush +toothpaste/toothpaste_3,tube toothpaste +toothpaste/toothpaste_3,tube ultra bite toothpaste +toothpaste/toothpaste_3,tube ultra brite toothpaste +toothpaste/toothpaste_3,tube toothpaste +toothpaste/toothpaste_3,tube whitening toothpaste +water_bottle/water_bottle_7,water bottle +water_bottle/water_bottle_7,water bottle red label +water_bottle/water_bottle_7,bottle water +water_bottle/water_bottle_7,plastic water bottle +water_bottle/water_bottle_7,bottle water +comb/comb_3,combs used teasing hair +comb/comb_3,hair brush +comb/comb_3,hair brush +comb/comb_3,black hairbrush +comb/comb_3,hair brush +flashlight/flashlight_5,yellow duracell flashlight +flashlight/flashlight_5,flashlight +flashlight/flashlight_5,yellow black colored flashlight used see dark +flashlight/flashlight_5,yellow flashlight +flashlight/flashlight_5,yellow black flashlight +shampoo/shampoo_5,bottle shampoo liquid inside pink +shampoo/shampoo_5,suave shampoo bottle +shampoo/shampoo_5,container hand soap +shampoo/shampoo_5,bottle shampoo +shampoo/shampoo_5,liquid soap +food_bag/food_bag_7,bag tortilla chips green photo chips +food_bag/food_bag_7,bag chips +food_bag/food_bag_7,bag chips +food_bag/food_bag_7,sealed plastic bag contains baked slivered potato products +food_bag/food_bag_7,bag tortilla chips goes good salsa +coffee_mug/coffee_mug_1,white red coffee mug +coffee_mug/coffee_mug_1,coffee mug +coffee_mug/coffee_mug_1,mug red graphic design +coffee_mug/coffee_mug_1,mug +coffee_mug/coffee_mug_1,coffee mug +peach/peach_3,peach +peach/peach_3,red apple +peach/peach_3,piece fruit +peach/peach_3,red apple +ball/ball_6,toy basketball +ball/ball_6,balls used play ball games +ball/ball_6,nerf basketball +ball/ball_6,basketball +garlic/garlic_3,clove garlic +garlic/garlic_3,bulb garlic +garlic/garlic_3,whole garlic bulb +peach/peach_3,piece fruit +peach/peach_3,apples fruit +peach/peach_3,peach +peach/peach_3,peach +peach/peach_3,peach +ball/ball_7,soccer ball +ball/ball_7,object soccer ball +ball/ball_7,soccer ball +ball/ball_7,black white soccer ball +ball/ball_7,inflatable toy soccer ball black white +food_bag/food_bag_8,chip bag green sun chips +food_bag/food_bag_8,bag chips +food_bag/food_bag_8,bag sun chips +food_bag/food_bag_8,bag chips +food_bag/food_bag_8,small bag french onion sun chips +lemon/lemon_1,lemon +lemon/lemon_1,yellow lemon sticker +lemon/lemon_1,yellow lemon +lemon/lemon_1,yellow lemon +lemon/lemon_1,lemon sticker +bowl/bowl_3,white bowl +bowl/bowl_3,empty dinner bowl +bowl/bowl_3,white bowl +bowl/bowl_3,white bowl +bowl/bowl_3,bowls used storing non food items +greens/greens_4,bok choi +greens/greens_4,baby bok choy +greens/greens_4,green vegetable perhaps artichoke +greens/greens_4,kale plate +greens/greens_4,green lettuce +lime/lime_4,large lime +lime/lime_4,avocado green fruit people eat raw often mixed foods +lime/lime_4,lime fruit sour +lime/lime_4,lime +lime/lime_4,green lemon +hand_towel/hand_towel_4,face towel smallest towels mostly use wash face cases clean things +hand_towel/hand_towel_4,cloth towel +hand_towel/hand_towel_4,small grey towel +hand_towel/hand_towel_4,folded towel +hand_towel/hand_towel_4,brown towel sitting white red plate +keyboard/keyboard_2,black computer keyboard +keyboard/keyboard_2,black computer keyboard +keyboard/keyboard_2,black computer keyboard +keyboard/keyboard_2,computer keyboard +keyboard/keyboard_2,computer keyboard +scissors/scissors_4,picture pair scissors handle scissors blue yellow +scissors/scissors_4,scissors blue yellow handle +scissors/scissors_4,silver yellow scissors +scissors/scissors_4,pair scissors +scissors/scissors_4,pair scissors +calculator/calculator_3,nice little pocket calculator basic functions +calculator/calculator_3,calculator +calculator/calculator_3,calculator +calculator/calculator_3,calculator flat rectangular many black buttons +calculator/calculator_3,object white black small calculator +keyboard/keyboard_4,computer keyboard +keyboard/keyboard_4,computer keyboard +keyboard/keyboard_4,computer keyboard +keyboard/keyboard_4,black keyboard connected computer +keyboard/keyboard_4,keyboard black +lightbulb/lightbulb_3,light bulb +lightbulb/lightbulb_3,round white bulb +lightbulb/lightbulb_3,light bulb +lightbulb/lightbulb_3,non led lightbulb give different kind light +lightbulb/lightbulb_3,light bulb +cereal_box/cereal_box_5,white red rectangular food package +cereal_box/cereal_box_5,packet something +cereal_box/cereal_box_5,box crackers +cereal_box/cereal_box_5,box food +soda_can/soda_can_5,can soda +soda_can/soda_can_5,can diet dr pepper +soda_can/soda_can_5,aluminum can dr pepper type soda +soda_can/soda_can_5,can diet dr pepper +soda_can/soda_can_5,can soda +cap/cap_2,black baseball cap +cap/cap_2,army hat +cap/cap_2,camoflauge baseball cap +cap/cap_2,baseball cap +cap/cap_2,camouflage baseball hat green brown tan black +food_bag/food_bag_6,package chips +food_bag/food_bag_6,bag chips +food_bag/food_bag_6,pop chips +food_bag/food_bag_6,bag bbq pop chips +food_bag/food_bag_6,bag pop chips flavored barbeque +lemon/lemon_4,lemon +lemon/lemon_4,yellow lemon +lemon/lemon_4,lemon +lemon/lemon_4,yellow lemon +lemon/lemon_4,yellow lemon side +instant_noodles/instant_noodles_1,package food +instant_noodles/instant_noodles_1,colorful bag candy +instant_noodles/instant_noodles_1,package noodles +instant_noodles/instant_noodles_1,bag chips +food_can/food_can_9,can +food_can/food_can_9,can soup +food_can/food_can_9,can white label pink image nutrition facts +food_can/food_can_9,can soup +food_can/food_can_9,tin paint +cell_phone/cell_phone_4,cell phone +cell_phone/cell_phone_4,white black flip phone +cell_phone/cell_phone_4,flip phone white base black top +cell_phone/cell_phone_4,mobile phone +banana/banana_1,banana plate +banana/banana_1,yellow banana laying white object +banana/banana_1,banana +banana/banana_1,yellow banana +banana/banana_1,yellow banana +soda_can/soda_can_4,can soda +soda_can/soda_can_4,can soda +soda_can/soda_can_4,can soda +soda_can/soda_can_4,can coke +cap/cap_3,black cap +cap/cap_3,black ball cap +cap/cap_3,black baseball cap +cap/cap_3,baseball cap +cap/cap_3,black baseball cap +sponge/sponge_3,sponge +sponge/sponge_3,kitchen sponge +sponge/sponge_3,kitchen scrubbing sponge +sponge/sponge_3,sponge +sponge/sponge_3,blue cleaning sponge +tomato/tomato_6,red tomato +tomato/tomato_6,tomatoe tasty +tomato/tomato_6,sweet fruit called tomato can eaten raw cooked +tomato/tomato_6,tomato +tomato/tomato_6,tomato +cereal_box/cereal_box_2,box food probably cereal +cereal_box/cereal_box_2,picture box cereal +cereal_box/cereal_box_2,cereal delicious breakfast treat +cereal_box/cereal_box_2,box holding food preparation required food can eaten +toothbrush/toothbrush_1,toothbrush +toothbrush/toothbrush_1,red white toothbrush +toothbrush/toothbrush_1,red white toothbrush +toothbrush/toothbrush_1,red white toothbrush +toothbrush/toothbrush_1,red white toothbrush +pliers/pliers_5,pair pliers +pliers/pliers_5,plier +pliers/pliers_5,tool used hold wires together +pliers/pliers_5,pair pliers +pliers/pliers_5,pair pliers +lime/lime_4,green lime +lime/lime_4,lime +lime/lime_4,fruit called lime can eaten raw cooked +lime/lime_4,lime +lime/lime_4,green lemon +food_box/food_box_11,red box cheez +food_box/food_box_11,snack food cheese flavored humans eat snack food part diet +food_box/food_box_11,box cheez +food_box/food_box_11,box cheez +food_box/food_box_11,looks like side box cheez +soda_can/soda_can_6,one can welchs juice orange flavor +soda_can/soda_can_6,can welchs lemonade can yellow +soda_can/soda_can_6,can soda +soda_can/soda_can_6,can welchs soda +soda_can/soda_can_6,can juice +tomato/tomato_7,red tomato +tomato/tomato_7,small red tomato +tomato/tomato_7,tomato +tomato/tomato_7,tomato +tomato/tomato_7,tomato +dry_battery/dry_battery_1,battery +dry_battery/dry_battery_1,9 volt battery +dry_battery/dry_battery_1,battery +dry_battery/dry_battery_1,9 volt battery +food_can/food_can_11,can campbells soup +food_can/food_can_11,can filled food would eat cold +food_can/food_can_11,metal can soup +food_can/food_can_11,can soup +food_can/food_can_11,can soup +orange/orange_4,orange +orange/orange_4,orange +orange/orange_4,orange mostly orange color slightly green +orange/orange_4,lemon +orange/orange_4,orange +food_can/food_can_7,aluminum can easy open top white label +food_can/food_can_7,can soup +food_can/food_can_7,can soup +food_can/food_can_7,can food +food_bag/food_bag_7,green bag chips +food_bag/food_bag_7,bag chips +food_bag/food_bag_7,bag chips +food_bag/food_bag_7,bag chips +food_bag/food_bag_7,potato chips delicious dinner snack +onion/onion_5,purple onion +food_can/food_can_9,can soup +food_can/food_can_9,can +food_can/food_can_9,looks like can foodthis could liquid solid food can +food_can/food_can_9,can soup +food_can/food_can_9,can spaghettios red white label +tomato/tomato_2,red tomato +tomato/tomato_2,plum tomato +tomato/tomato_2,roma tomato +tomato/tomato_2,ripe cherry tomato +tomato/tomato_2,cherry tomato +peach/peach_3,peach +peach/peach_3,piece fruit +peach/peach_3,peach mostly pink +peach/peach_3,peach +peach/peach_3,fruit known peach +food_cup/food_cup_4,container chobani yogurt +food_cup/food_cup_4,container yogurt +food_cup/food_cup_4,container greek yogurt +food_cup/food_cup_4,container chobani yogurt +food_cup/food_cup_4,container food probably yogurt +food_bag/food_bag_8,bag chips +food_bag/food_bag_8,bag sun chips +food_bag/food_bag_8,bag chips +food_bag/food_bag_8,object green bag sun chips +food_bag/food_bag_8,bag sun chips +sponge/sponge_4,blue sponge +sponge/sponge_4,sponge +sponge/sponge_4,purple sponge +sponge/sponge_4,purple sponge +sponge/sponge_4,kitchen scrubbing sponge +pitcher/pitcher_3,pitcher +pitcher/pitcher_3,green ceramic pitcher +pitcher/pitcher_3,pitcher liquid pouring hand holds handle tips fluid +pitcher/pitcher_3,green vase +pitcher/pitcher_3,green water vase +marker/marker_2,green expo dry erase marker +marker/marker_2,magic marker +marker/marker_2,green expo marker +marker/marker_2,green expo dry erase marker +marker/marker_2,green dry erase marker +food_bag/food_bag_7,bag chips +food_bag/food_bag_7,packet snacks +food_bag/food_bag_7,bag chips +food_bag/food_bag_7,bag chips bag chips targets house brand archer farms +food_bag/food_bag_7,bag potato chips +marker/marker_2,green dry erase marker +marker/marker_2,green colored marker green cap green label white base +marker/marker_2,green expo dry erase marker +marker/marker_2,glue pen +bowl/bowl_1,red decorative bowl green yellow markings +bowl/bowl_1,bowl +bowl/bowl_1,red brown ceramic bowl +bowl/bowl_1,bowl holds soups liquid foods +bowl/bowl_1,empty dinner bowl +hand_towel/hand_towel_2,red washcloth +hand_towel/hand_towel_2,red towel placed white red plate +hand_towel/hand_towel_2,red napkin folded +hand_towel/hand_towel_2,folded towel +hand_towel/hand_towel_2,maroon colored wash towel +plate/plate_4,paper plate colors plate beige cream +plate/plate_4,empty plate +plate/plate_4,plate +plate/plate_4,empty dinner plate +plate/plate_4,plate +instant_noodles/instant_noodles_8,packet instant ramen noodles brand ichiban package white brown +instant_noodles/instant_noodles_8,rectangular plastic package food +instant_noodles/instant_noodles_8,package food +instant_noodles/instant_noodles_8,package noodles +instant_noodles/instant_noodles_8,looks like package ramen similar dried food +orange/orange_1,orange +orange/orange_1,orange slightly rotten left side +orange/orange_1,old orange +orange/orange_1,piece fruit +orange/orange_1,orange +plate/plate_5,white ceramic saucer +plate/plate_5,bowl water +plate/plate_5,white ceramic plate +plate/plate_5,white plate +plate/plate_5,empty dinner plate +food_box/food_box_5,box market pantry crackers red white design green stripe +food_box/food_box_5,box crackers +food_box/food_box_5,box classic crackers +food_box/food_box_5,store brand crackers resemble club crackers +food_box/food_box_5,box crackers +lemon/lemon_4,lemon +lemon/lemon_4,yellow lemon +lemon/lemon_4,yellow lemon +lemon/lemon_4,lemon species small evergreen tree flowering plant +lemon/lemon_4,lemon +garlic/garlic_1,clove garlic +garlic/garlic_1,bunch garlic +garlic/garlic_1,bulb garlic +garlic/garlic_1,bulb garlic +bell_pepper/bell_pepper_3,red bell pepper +bell_pepper/bell_pepper_3,red pepper +bell_pepper/bell_pepper_3,red bell pepper green stem +bell_pepper/bell_pepper_3,red bell peppers multiple culinary uses +bell_pepper/bell_pepper_3,red pepper +tomato/tomato_6,red tomato +tomato/tomato_6,tomato +tomato/tomato_6,tomato still vine produce sticker +tomato/tomato_6,ripe tomato +tomato/tomato_6,fruit still vine red round can used salads sandwiches +instant_noodles/instant_noodles_2,package noodles +instant_noodles/instant_noodles_2,package food +instant_noodles/instant_noodles_2,package soup +instant_noodles/instant_noodles_2,package food preparation required food can eaten +scissors/scissors_1,scissors black handle +scissors/scissors_1,pair scissors +scissors/scissors_1,grey orange scissors +scissors/scissors_1,pair scissors +scissors/scissors_1,pair scissors +onion/onion_2,onion gets cut +onion/onion_2,white onion +onion/onion_2,onion +onion/onion_2,large white onion +plate/plate_3,empty dinner plate +plate/plate_3,white blue plate +plate/plate_3,blue white plate white powder +plate/plate_3,white plate blue stripes around edge +plate/plate_3,bowl normally used soups deserts part table setting +flashlight/flashlight_3,blue flashlight black button +flashlight/flashlight_3,plastic flashlight +flashlight/flashlight_3,blue flashlight +flashlight/flashlight_3,blue flashlight +flashlight/flashlight_3,flashlight seeing dark +food_can/food_can_13,looks like can progresso soup cant tell kind +food_can/food_can_13,can progresso soup +food_can/food_can_13,food container commonly called tin can can easily opened removing pop top lid +food_can/food_can_13,can soup +food_can/food_can_13,can soup +scissors/scissors_2,heavy duty scissors orange handle +scissors/scissors_2,pair scissors handles orange blades angled +scissors/scissors_2,pair scissors orange handle +scissors/scissors_2,pair scissors +scissors/scissors_2,pair scissors kind handles bent upwards bit make easier cut surface possibly sewing scissors handles orange +hand_towel/hand_towel_1,object fluffy object white comfy pillow +hand_towel/hand_towel_1,white towel +hand_towel/hand_towel_1,folded towel +hand_towel/hand_towel_1,towel +toothbrush/toothbrush_5,tooth brush used toothpaste cleans humans teeth +toothbrush/toothbrush_5,toothbrush +toothbrush/toothbrush_5,red white toothbrush +toothbrush/toothbrush_5,toothbrush +toothbrush/toothbrush_5,white red toothbrush +tomato/tomato_2,grape tomato +tomato/tomato_2,plum tomato +tomato/tomato_2,grape plum tomato +tomato/tomato_2,grape tomato +tomato/tomato_2,roma tomato +cereal_box/cereal_box_5,box crackers +cereal_box/cereal_box_5,box containing food product likely cereal +cereal_box/cereal_box_5,box cereal +cereal_box/cereal_box_5,top view box food +shampoo/shampoo_1,shampoo bottle container used hold shampoo +shampoo/shampoo_1,plastic container may dispense shampoo conditioner hand lotion many substances +shampoo/shampoo_1,bottle shampoo conditioner +shampoo/shampoo_1,bottle body wash +shampoo/shampoo_1,bottle shampoo +instant_noodles/instant_noodles_6,package food +instant_noodles/instant_noodles_6,package soup +instant_noodles/instant_noodles_6,package food +instant_noodles/instant_noodles_6,package noodles +keyboard/keyboard_3,mechanical keyboard +keyboard/keyboard_3,black computer keyboard +keyboard/keyboard_3,computer keyboard +keyboard/keyboard_3,keyboard could used connecting laptop tablet monitor type work needs done +keyboard/keyboard_3,computer keyboard +soda_can/soda_can_1,can pepsi cylindrical primarily blue color top silver pepsi name logo side +soda_can/soda_can_1,can pepsi +soda_can/soda_can_1,can pepsi +soda_can/soda_can_1,looks like can regular pepsi cola +soda_can/soda_can_1,can pepsi +potato/potato_6,possibly lumpy deformed potato +potato/potato_6,large baking potato +potato/potato_6,potato +potato/potato_6,brown russet potato +potato/potato_6,baking potato +hand_towel/hand_towel_2,looks like brown wash cloth +hand_towel/hand_towel_2,towel placed white red plate +hand_towel/hand_towel_2,dinner napkin +hand_towel/hand_towel_2,cloth napkin +sponge/sponge_4,purple dish sponge +sponge/sponge_4,purple sponge +sponge/sponge_4,sponge +sponge/sponge_4,sponge +sponge/sponge_4,violet colored sponge +pear/pear_2,pear +pear/pear_2,pear +pear/pear_2,piece fruit +pear/pear_2,fruit called guava popular +pear/pear_2,yellow pear +food_box/food_box_8,box product inside +food_box/food_box_8,side blue box box nutrition label +food_box/food_box_8,box crackers +food_box/food_box_8,blue box non perishable food nutritional facts label displayed +lemon/lemon_5,lemon +lemon/lemon_5,yellow lemon +lemon/lemon_5,lemon +lemon/lemon_5,lemon +lemon/lemon_5,object medium sized lemon +camera/camera_2,older style camera +camera/camera_2,black camera +camera/camera_2,camera +camera/camera_2,camera +camera/camera_2,digital camera +apple/apple_5,green apple +apple/apple_5,granny smith apple +apple/apple_5,green apple +apple/apple_5,green apple +apple/apple_5,green apple +lightbulb/lightbulb_1,lcd lightbulb +lightbulb/lightbulb_1,coiled energy efficient light bulb +lightbulb/lightbulb_1,light bulb +lightbulb/lightbulb_1,compact fluorescent light bulb +lightbulb/lightbulb_1,fluorescent light bulb +shampoo/shampoo_4,blue bottle suave shampoo +shampoo/shampoo_4,bottle shampoo conditioner +shampoo/shampoo_4,bottle body wash +shampoo/shampoo_4,bottle suave hair conditoner white silver cap +shampoo/shampoo_4,body cleanser +cereal_box/cereal_box_3,crispy dry breakfast cereal usually eaten amount milk spoon +cereal_box/cereal_box_3,box cereal +cereal_box/cereal_box_3,box cereal +cereal_box/cereal_box_3,box kelloggs cereal +cereal_box/cereal_box_3,box special k cereal +stapler/stapler_5,black stapler +stapler/stapler_5,black stapler +stapler/stapler_5,stapler +stapler/stapler_5,black stapler +stapler/stapler_5,stapler +food_jar/food_jar_3,jar jam +food_jar/food_jar_3,jar filled something +food_jar/food_jar_3,can +food_jar/food_jar_3,jar jelly +food_jar/food_jar_3,jar gravy +ball/ball_4,fake orange black basketball +ball/ball_4,ball looks little deflated +ball/ball_4,nerf basketball +ball/ball_4,toy basketball +ball/ball_7,soccer ball +ball/ball_7,soccer ball +ball/ball_7,soccer ball +ball/ball_7,us soccer ball rest world calls football children adults kick ball net make goal +ball/ball_7,black white soccer ball +food_cup/food_cup_4,container chobani yogurt +food_cup/food_cup_4,container yogurt +food_cup/food_cup_4,container yogurt +food_cup/food_cup_4,unopened chobani greek yogurt peach flavored +food_cup/food_cup_4,chobani peach yogurt +potato/potato_3,potato +potato/potato_3,potato +potato/potato_3,baked dinner roll +ball/ball_5,brown football +ball/ball_5,football +ball/ball_5,shown toy football +ball/ball_5,small football +ball/ball_5,inflatable football +pear/pear_7,yellow apple +pear/pear_7,golden yellow round piece fruit +pear/pear_7,apple +pear/pear_7,yellow apple +pear/pear_7,fruit probably apple +pear/pear_7,looks like yellow apple could probably mango +pear/pear_7,piece fruit +pear/pear_7,fruit +pear/pear_7,apple type frit +pear/pear_7,apple +mushroom/mushroom_2,shitake mushroom +mushroom/mushroom_2,mushroom +kleenex/kleenex_3,thin box tissues +kleenex/kleenex_3,box kleenex +kleenex/kleenex_3,box tissues tissues thin absorbent paper cloths used clean nasal malfunctions +kleenex/kleenex_3,box facial tissues +kleenex/kleenex_3,box tissues +binder/binder_3,school folder +calculator/calculator_4,calculator +calculator/calculator_4,green calculator +calculator/calculator_4,simple digital calculator basic math problems can solved using electronic device +calculator/calculator_4,bright green calculator +calculator/calculator_4,calculator +potato/potato_5,unpeeled potato brown skin +potato/potato_5,large baking potato +potato/potato_5,potato +potato/potato_5,brown russet potato +potato/potato_5,potato +toothpaste/toothpaste_1,colgate toothpaste minty flavor +toothpaste/toothpaste_1,tube toothpaste +toothpaste/toothpaste_1,tube toothpaste +toothpaste/toothpaste_1,tube colgate toothpaste +toothpaste/toothpaste_1,tube colgate toothpaste tube red blue white +food_box/food_box_12,box snacks looks like cookies +food_box/food_box_12,box crackers +food_box/food_box_12,box cookies crackers +food_box/food_box_12,box crackers +food_box/food_box_12,box crackers blue green picture crackers +food_box/food_box_5,box classic crackers +food_box/food_box_5,box crackers +food_box/food_box_12,box wheat crackers +food_box/food_box_12,shows one packet junk food pejorative term food containing large number calories sugar fat little +food_box/food_box_12,box salted crackers +cap/cap_1,baseball hat white black stripes small logo +cap/cap_1,fashion baseball cap +cap/cap_1,striped baseball cap table +food_box/food_box_12,box crackers +food_box/food_box_12,box crackers +food_box/food_box_12,box crackers +toothbrush/toothbrush_1,red white toothbrush +toothbrush/toothbrush_1,toothbrush red white +toothbrush/toothbrush_1,red white toothbrush +food_can/food_can_11,can food +food_can/food_can_11,unopened can flip top label red white +flashlight/flashlight_1,black flashlight +flashlight/flashlight_1,used dark light small area aim turn switch particular one black +flashlight/flashlight_1,black flashlight +cap/cap_1,baseball type cap cap white blue stripes +pear/pear_7,asian pear +toothpaste/toothpaste_5,tube toothpaste mostly blue green +toothpaste/toothpaste_5,tube toothpaste +toothpaste/toothpaste_5,tube crest toothpaste +toothpaste/toothpaste_2,tube crest toothpaste +toothpaste/toothpaste_2,tube crest toothpaste +notebook/notebook_2,yellow notebook sits +notebook/notebook_2,70 page yellow notebook +instant_noodles/instant_noodles_8,ichiban soup mix +sponge/sponge_5,red blue sponge +soda_can/soda_can_5,can diet dr pepper soda +soda_can/soda_can_5,diet dr pepper +soda_can/soda_can_5,can diet dr pepper +banana/banana_2,banana +banana/banana_2,banana +sponge/sponge_6,pink yellow sponge +sponge/sponge_6,scrubber used clean plates +instant_noodles/instant_noodles_4,ramen soup mix +instant_noodles/instant_noodles_4,package instant ramen +instant_noodles/instant_noodles_4,plastic package food japanese writing +bell_pepper/bell_pepper_3,red bell pepper upright +bell_pepper/bell_pepper_3,red bell pepper +bell_pepper/bell_pepper_3,red vegetable green stem stands +hand_towel/hand_towel_2,dishcloth +hand_towel/hand_towel_2,red napkin lies plate +hand_towel/hand_towel_2,brown square shape +instant_noodles/instant_noodles_4,instant noodles staple food many cultures +instant_noodles/instant_noodles_4,package food japanese writing +instant_noodles/instant_noodles_4,bag soup mix +tomato/tomato_7,tomato +tomato/tomato_7,red tomato +lime/lime_4,citrus fruit lime +lime/lime_4,lime hybrid citrus fruit +lime/lime_4,dark green lime front red object lime mostly obscuring lime shiny two toned +garlic/garlic_1,bulb garlic used cooking +garlic/garlic_1,broken garlic head +lightbulb/lightbulb_1,florescent light bulb +lightbulb/lightbulb_1,lightbulb used light area +lightbulb/lightbulb_1,light bulb +soda_can/soda_can_6,can soda +soda_can/soda_can_6,can fanta soda +soda_can/soda_can_6,aluminum beverage can yellow +binder/binder_1,large red square used block something else +binder/binder_1,red folder +binder/binder_1,red sheet paper top toilet +potato/potato_6,tuber light brown color somewhat lumpy basically oval shape +potato/potato_6,potato sort +potato/potato_6,potato +toothbrush/toothbrush_5,toothbrush red white bristles +toothbrush/toothbrush_5,item toothbrush red white +toothbrush/toothbrush_5,toothbrush small brush use cleaning teeth +calculator/calculator_4,green calculator white green buttons +calculator/calculator_4,neon green calculator +orange/orange_4,orange +orange/orange_4,citrus fruit orange +orange/orange_4,unpeeled orange +rubber_eraser/rubber_eraser_3,pink eraser +rubber_eraser/rubber_eraser_3,pink eraser +lemon/lemon_3,lemon fruit lemon yellow +lemon/lemon_3,citrus fruit lemon +lemon/lemon_3,yellow lemon +bowl/bowl_4,white ceramic bowl +bowl/bowl_4,white bowl could used hold food like cereal soup ice cream examples +bowl/bowl_4,white cup soup custard +sponge/sponge_3,dish sponge +sponge/sponge_3,sponge tool cleaning aid made soft porous material +sponge/sponge_3,blue sponge +bowl/bowl_4,white bowl +bowl/bowl_4,white ceramic bowl +bowl/bowl_4,plain white bowl +lime/lime_4,citrus fruit lime +lime/lime_4,lime hybrid citrus fruit +lime/lime_4,green lime +lightbulb/lightbulb_3,light bulb +lightbulb/lightbulb_3,electric light device produces visible light electric current +lightbulb/lightbulb_3,light bulb +dry_battery/dry_battery_4,sized battery +dry_battery/dry_battery_4,electric battery device consisting one electrochemical cells external connections provided power electrical devices flashlights smartphones electric cars +dry_battery/dry_battery_4,battery +food_bag/food_bag_7,bag potato chips +food_bag/food_bag_7,bag potato chips bag green +food_bag/food_bag_7,bag chips looks like kettle chips +banana/banana_2,banana +banana/banana_2,fruit banana +banana/banana_2,fruit called banana eaten nutrients long yellow peel outside soft edible fruit flesh +bowl/bowl_1,ceramic bowl red inside green gold outside +bowl/bowl_1,bowl red jello +bell_pepper/bell_pepper_4,red bell pepper side +bell_pepper/bell_pepper_4,red pepper +bell_pepper/bell_pepper_4,red bell pepper laying side +food_box/food_box_11,box cheez snacks +food_box/food_box_11,box cheez +food_box/food_box_11,box cheez crackers +instant_noodles/instant_noodles_6,package instant ramen +instant_noodles/instant_noodles_6,bag food +instant_noodles/instant_noodles_6,inflatable object can inflated gas +food_can/food_can_14,can soup chilli +food_can/food_can_14,can food +food_can/food_can_14,unopened can flip top +dry_battery/dry_battery_5,battery +dry_battery/dry_battery_5,battery +peach/peach_3,apple +peach/peach_3,one whole red tomato +plate/plate_7,paper plate +plate/plate_7,white plate +plate/plate_7,kitchen bowl hold food +bowl/bowl_5,white cereal bowl multiple stripes around top +bowl/bowl_5,bowl +bowl/bowl_5,ceramic bowl +bowl/bowl_5,empty bowl bowl white blue stripes inside +bowl/bowl_5,ceramic bowl stripes good cereal +pliers/pliers_1,pair pliers +pliers/pliers_1,pair pliers +pliers/pliers_1,pair pliers +pliers/pliers_1,pair pliers blue handle +pliers/pliers_1,pair pliers +glue_stick/glue_stick_2,white cylinder shaped glue stick +glue_stick/glue_stick_2,glue stick +glue_stick/glue_stick_2,tube lip balm +glue_stick/glue_stick_2,glue stick white +flashlight/flashlight_4,flashlight +flashlight/flashlight_4,black flashlight +flashlight/flashlight_4,object black +flashlight/flashlight_4,black flashlight +flashlight/flashlight_4,flashlight +instant_noodles/instant_noodles_5,package ramen noodles +instant_noodles/instant_noodles_5,orange bag something +instant_noodles/instant_noodles_5,package food +ball/ball_3,baseball red seams round white +ball/ball_3,baseball +ball/ball_3,baseball +ball/ball_3,baseball +ball/ball_2,inflatable pillow looks like soccer ball +ball/ball_2,soccer ball +ball/ball_2,toy soccer ball +ball/ball_2,small bean bag toy designed like soccer ball +ball/ball_2,soccer ball +sponge/sponge_9,red colored something +sponge/sponge_9,small red fabric ball +stapler/stapler_2,stapler +stapler/stapler_2,black grey stapler +stapler/stapler_2,stapler +stapler/stapler_2,black stapler rubber grip +food_cup/food_cup_2,container yogurt +food_cup/food_cup_2,container yogurt +food_cup/food_cup_2,plastic cup yogurt foil lid +food_cup/food_cup_2,white container yogurt +instant_noodles/instant_noodles_4,bag instant asian noodles red bag +instant_noodles/instant_noodles_4,package food +instant_noodles/instant_noodles_4,package ramen noodles +instant_noodles/instant_noodles_4,package noodles +food_box/food_box_5,box food +food_box/food_box_5,box containing food product +food_box/food_box_5,box crackers red white green stripe +food_box/food_box_5,box crackers +food_box/food_box_5,box crackers +cap/cap_1,baseball cap got well spaced blue grey pin stripes white background +cap/cap_1,white black striped baseball cap +cap/cap_1,baseball cap +cap/cap_1,white green pinstriped ballcap +cap/cap_1,white striped baseball cap +ball/ball_2,soccor ball +ball/ball_2,soccer ball +ball/ball_2,inflatable toy soccer ball +ball/ball_2,soccer ball +ball/ball_2,nerf soccer ball +camera/camera_3,digital camera +camera/camera_3,black camera +camera/camera_3,camera +camera/camera_3,camera +camera/camera_3,pocket digital camera +food_bag/food_bag_2,bag teddy bear shaped cookies +food_bag/food_bag_2,bag teddy bear cookies +food_bag/food_bag_2,object package cookies package white red top +food_bag/food_bag_2,bag cookies +food_bag/food_bag_2,package cookies +apple/apple_4,piece fruit known apple +apple/apple_4,yellow apple +apple/apple_4,apple +apple/apple_4,golden delicious apple +apple/apple_4,yellow apple +cell_phone/cell_phone_3,cell phone +cell_phone/cell_phone_3,mobile phone +cell_phone/cell_phone_3,cellphone +shampoo/shampoo_6,bottle conditioner bottle yellow green top +shampoo/shampoo_6,bottle shampoo +shampoo/shampoo_6,bottle likely contains shampoo another personal grooming product +shampoo/shampoo_6,bottle soap +lemon/lemon_6,yellow lemon +lemon/lemon_6,lemon +lemon/lemon_6,yellow lemon +lemon/lemon_6,lemon +lemon/lemon_6,yellow lemon +food_bag/food_bag_4,bag mini oreos +food_bag/food_bag_4,package mini oreos +food_bag/food_bag_4,blue bag mini oreos yellow white text +food_bag/food_bag_4,snack size bag mini oreo cookies +food_bag/food_bag_4,bag mini oreo cookies +toothbrush/toothbrush_3,light blue colored tooth brush +toothbrush/toothbrush_3,tooth brush +toothbrush/toothbrush_3,toothbrush +toothbrush/toothbrush_3,toothbrush +toothbrush/toothbrush_3,light green white toothbrush +orange/orange_1,sweet orange +orange/orange_1,fruit orange skin broken open inside gooey many seeds +orange/orange_1,orange +orange/orange_1,spherical orange fruit +orange/orange_1,orange +food_box/food_box_6,box food +food_box/food_box_6,thiis box pretzel thins +food_box/food_box_6,unopened box pretzel thins +food_box/food_box_6,box pretzel thins small white box +food_box/food_box_6,box pretzels +sponge/sponge_12,blue colored something round shape +sponge/sponge_12,kitchen sponge +sponge/sponge_12,blue dish scrubber +kleenex/kleenex_1,box kleenex +kleenex/kleenex_1,box filled soft tissues used cold +kleenex/kleenex_1,square box tissues +kleenex/kleenex_1,box tissues +kleenex/kleenex_1,box facial tissue +garlic/garlic_7,clove garlic +garlic/garlic_7,garlic clove +garlic/garlic_7,bulb fresh garlic +garlic/garlic_7,bulb garlic +camera/camera_3,digital camera can record pictures later display editing computer +camera/camera_3,digital camera +camera/camera_3,black camera +camera/camera_3,camera +camera/camera_3,digital camera +food_jar/food_jar_2,jar jelly jar orange marmalade +food_jar/food_jar_2,jar jelly +food_jar/food_jar_2,jar jam jelly +food_jar/food_jar_2,jar jelly +food_jar/food_jar_2,jar jam +calculator/calculator_2,calculator +calculator/calculator_2,calculator +calculator/calculator_2,simple digital calculator basic math problems can solved using electronic device +calculator/calculator_2,calculator black gray yellow buttons +calculator/calculator_2,10 key calculator solar powered used calculate numeric equations example check book +food_can/food_can_4,can condensed milk used baking +food_can/food_can_4,food can used store keep food items +food_can/food_can_4,can milk +food_can/food_can_4,can soup +food_can/food_can_12,can vegetables can food +food_can/food_can_12,can white predominantly white label green lot text +food_can/food_can_12,can soup +food_can/food_can_12,can +food_can/food_can_12,can soup +greens/greens_2,green leaf lettuce plate +greens/greens_2,lettuce +greens/greens_2,fresh kale +greens/greens_2,green lettuce +ball/ball_2,soccer ball hard basketball although shape different color used feet hands +ball/ball_2,shrunken lack white football +ball/ball_2,soccer ball +ball/ball_2,mini soccer ball +ball/ball_2,looks like soccer ball almost looks like blow soccer ball +pear/pear_2,green ripe pear +pear/pear_2,green pear bartlett pear +pear/pear_2,pears delicious fruit +pear/pear_2,pear +pear/pear_2,yellow pear +sponge/sponge_7,yellow sponge green scrubbing surface +sponge/sponge_7,kitchen sponge +sponge/sponge_7,squeegee +sponge/sponge_7,green yellow sponge +sponge/sponge_7,yellow sponge green top layer rougher abrasive scrubbing +keyboard/keyboard_4,computer keyboard +keyboard/keyboard_4,computer keyboard +keyboard/keyboard_4,black computer keyboard +keyboard/keyboard_4,black keyboard facing backwards sort pedastal +keyboard/keyboard_4,black computer keyboard special key row numeric pad +sponge/sponge_2,green object rectangular looks like sponge +sponge/sponge_2,looks like lime green colored rectangular sponge +sponge/sponge_2,light green sponge +sponge/sponge_2,kitchen sponge +sponge/sponge_2,sponge +instant_noodles/instant_noodles_2,package food +instant_noodles/instant_noodles_2,package soup +instant_noodles/instant_noodles_2,package noodles +instant_noodles/instant_noodles_2,package ramen noodles +instant_noodles/instant_noodles_2,packet ramen noodles +potato/potato_1,red potato +potato/potato_1,red potato +potato/potato_1,brown ball +greens/greens_4,baby bok choy +greens/greens_4,looks like corn husk leek +greens/greens_4,picture green vegetables vegetables interesting shape like cross +greens/greens_4,green vegetable +bell_pepper/bell_pepper_3,red bell pepper +bell_pepper/bell_pepper_3,red bell pepper +bell_pepper/bell_pepper_3,red pepper +bell_pepper/bell_pepper_3,bright red vegetable spherical shape vibrant green stem protruding center +bell_pepper/bell_pepper_3,red pepper +flashlight/flashlight_4,long thin black flashlight +flashlight/flashlight_4,object medium sized black flashlight +flashlight/flashlight_4,black flashlight +flashlight/flashlight_4,black flashlight +flashlight/flashlight_4,black colored flash light +pear/pear_7,apple think darker yellow round +pear/pear_7,asian pear +pear/pear_7,apple +pear/pear_7,piece fruit +food_jar/food_jar_6,small glass jar food +food_jar/food_jar_6,jar food +food_jar/food_jar_6,jar jelly +food_jar/food_jar_6,jar jelly +food_jar/food_jar_6,jar jam like thing +marker/marker_5,pen +marker/marker_5,magic marker +marker/marker_5,pen +marker/marker_5,blue marker +marker/marker_5,blue colored pen +cereal_box/cereal_box_1,cereal delicious breakfast offering +cereal_box/cereal_box_1,object box cereal box yellow orange +cereal_box/cereal_box_1,looks like back cereal box cant see brand looks like sort flake cereal like corn flakes +cereal_box/cereal_box_1,package fiber rich cereal +cereal_box/cereal_box_1,unopened box crunchy cereal +bowl/bowl_1,empty dinner bowl +bowl/bowl_1,red bowl +bowl/bowl_1,red black ceramic bowl +bowl/bowl_1,pottery bowl +bowl/bowl_6,blue plastic serving bowl flowered printed inside +bowl/bowl_6,bowl blue outside mostly white inside blue yellow green floral patterns inside also sticker bowl +bowl/bowl_6,round bowl bowl blue outside inside white blue yellow green shapes painted along rim +bowl/bowl_6,blue bowl +bowl/bowl_6,empty dinner bowl +instant_noodles/instant_noodles_2,package food possibly ramen +instant_noodles/instant_noodles_2,package ramen noodles +instant_noodles/instant_noodles_2,package ramen noodles +instant_noodles/instant_noodles_2,pack ramen +instant_noodles/instant_noodles_2,package instant ramen noodles white pink package +soda_can/soda_can_4,open can soda +soda_can/soda_can_4,black aluminum beverage can +soda_can/soda_can_4,brand carbonated drink black can +soda_can/soda_can_4,open can soda +soda_can/soda_can_4,object black red can soda looks like coke zero +greens/greens_1,green leaf lettuce plate +greens/greens_1,green vegetables +greens/greens_1,bundle lettuce +greens/greens_1,green leafy mass looks vegetable either celery broccoli +greens/greens_1,green lettuce +coffee_mug/coffee_mug_8,empty mug mug white blue stripes +coffee_mug/coffee_mug_8,coffee cup used drink coffee +coffee_mug/coffee_mug_8,coffe mug +coffee_mug/coffee_mug_8,coffee mug +coffee_mug/coffee_mug_8,white black mug +notebook/notebook_3,notebook +notebook/notebook_3,spiral bound notebook white green cover +notebook/notebook_3,spiral bound notebook +notebook/notebook_3,notebook +notebook/notebook_3,writing notebook +dry_battery/dry_battery_6,battery +dry_battery/dry_battery_6,battery +dry_battery/dry_battery_6,large alkaline battery silver black red +dry_battery/dry_battery_6,battery +dry_battery/dry_battery_6,battery used powering small personal electonics +lightbulb/lightbulb_3,lightbulb +lightbulb/lightbulb_3,light bulb +lightbulb/lightbulb_3,lightbulb +lightbulb/lightbulb_3,light bulb +lightbulb/lightbulb_3,round lightbulb glass part white part screws gold +ball/ball_1,football +ball/ball_1,football +ball/ball_1,toy football +ball/ball_1,football +pliers/pliers_1,plier +pliers/pliers_1,pair pliers +pliers/pliers_1,cutting player +pliers/pliers_1,set pliers handles blue rest made metal +pliers/pliers_1,pair pliers +toothbrush/toothbrush_2,tooth brush used toothpaste cleans humans teeth +toothbrush/toothbrush_2,toothbrush +toothbrush/toothbrush_2,green white toothbrush +toothbrush/toothbrush_2,toothbrush +toothbrush/toothbrush_2,toothbrush used brushing teeth +flashlight/flashlight_2,red flashlight +flashlight/flashlight_2,red flashlight +flashlight/flashlight_2,torch stick combustible material one end ignited used light source +flashlight/flashlight_2,red flashlight +flashlight/flashlight_2,device called flashlight powered batteries produced visible light +soda_can/soda_can_3,can mountain dew +soda_can/soda_can_3,can 7 +soda_can/soda_can_3,cold can soda +soda_can/soda_can_3,can soda +soda_can/soda_can_3,can soda green label +calculator/calculator_5,calculator desk calculator buttons large +calculator/calculator_5,calculator +calculator/calculator_5,grey calculator +calculator/calculator_5,calculator +calculator/calculator_5,calculator sued solve math problems +pliers/pliers_4,pair pliers +pliers/pliers_4,object pair pliers brown handle +pliers/pliers_4,pair pliers +pliers/pliers_4,pair pliers +pliers/pliers_4,black handled pliars +garlic/garlic_6,white unpeeled garlic +garlic/garlic_6,head garlic +garlic/garlic_6,clove garlic +garlic/garlic_6,bulb garlic +apple/apple_4,apple +apple/apple_4,apple +apple/apple_4,yellow apple +apple/apple_4,golden delicious apple +apple/apple_4,yellow apple +ball/ball_6,basketball +ball/ball_6,pretend orange black basketball +ball/ball_6,basketball shaped toy +ball/ball_6,looks like basketball deflatable basketball +ball/ball_6,nerf basketball +garlic/garlic_7,clove garlic +garlic/garlic_7,clove garlic +garlic/garlic_7,bulb garlic +pliers/pliers_2,pair pliers blue grips +pliers/pliers_2,pair pliers +pliers/pliers_2,pair pliers +pliers/pliers_2,pair pliers +pliers/pliers_2,pliers handles black +toothbrush/toothbrush_4,white purple toothbrush +toothbrush/toothbrush_4,purple white long bristles +toothbrush/toothbrush_4,purple white toothbrush +toothbrush/toothbrush_4,white purple toothbrush +toothbrush/toothbrush_4,toothbrush +kleenex/kleenex_4,box kleenex blue design +kleenex/kleenex_4,open box facial tissues +kleenex/kleenex_4,gray rectangular cardboard box tissue +kleenex/kleenex_4,box kleenex +kleenex/kleenex_4,box facial tissue +pliers/pliers_6,pair pliers +pliers/pliers_6,scissors +pliers/pliers_6,black pliars +pliers/pliers_6,pair pliers black handles +pliers/pliers_6,set pliers common tool +stapler/stapler_5,black stapler +stapler/stapler_5,stapler +stapler/stapler_5,stapler +stapler/stapler_5,stapler +ball/ball_3,small bean bag toy designed like baseball +ball/ball_3,baseball +ball/ball_3,looks kind like baseball white red stitch markings squished really spherical shiny like covered plastic +ball/ball_3,toy baseball +ball/ball_3,baseball +food_can/food_can_3,can soup +food_can/food_can_3,can soup +food_can/food_can_3,can soup +food_can/food_can_3,can soup +food_can/food_can_3,can evaporated milk red white picture pie +coffee_mug/coffee_mug_6,coffee mug +coffee_mug/coffee_mug_6,yellow mug +coffee_mug/coffee_mug_6,coffee cup +coffee_mug/coffee_mug_6,teacup +coffee_mug/coffee_mug_6,mug +food_can/food_can_8,can rotel tomatoes +food_can/food_can_8,canned food kind +food_can/food_can_8,can +food_can/food_can_8,canned good +food_can/food_can_8,can food +bowl/bowl_2,bowl normally used soups deserts part table setting +bowl/bowl_2,green bowl +bowl/bowl_2,light blue bowl design around rim +bowl/bowl_2,ceramic bowl +bowl/bowl_2,empty dinner bowl +pear/pear_8,apple +pear/pear_8,apple +pear/pear_8,pears delicious fruit +pear/pear_8,apple +pear/pear_8,yellow apple +food_bag/food_bag_1,bag snacks light blue white +food_bag/food_bag_1,object bag chips bag white brown orange labels +food_bag/food_bag_1,bag chips +food_bag/food_bag_1,unopened bag true delights crisps +food_bag/food_bag_1,bag chips +bowl/bowl_5,white bowl black stripes around edge +bowl/bowl_5,white ceramic bowl stripes top +bowl/bowl_5,bowl +bowl/bowl_5,bowl +bowl/bowl_5,empty dinner bowl +pear/pear_2,fruit looks like pear +pear/pear_2,object green red apple apple sticker +pear/pear_2,apple +pear/pear_2,apple +pear/pear_2,brown green pear sticker +glue_stick/glue_stick_4,gluestick red top +glue_stick/glue_stick_4,tube glue +glue_stick/glue_stick_4,glue stick +marker/marker_3,dry erase marker shaped like long tube white black +marker/marker_3,black dry erase marker +marker/marker_3,black expo dry erase marker +marker/marker_3,object black expo marker +marker/marker_3,magic marker +kleenex/kleenex_5,pink white box kleenez +kleenex/kleenex_5,paper box plastic lid opening similar tissue papper +kleenex/kleenex_5,box facial tissue +kleenex/kleenex_5,box tissue paper soft used blow nose +kleenex/kleenex_5,box kleenex +dry_battery/dry_battery_3,battery +dry_battery/dry_battery_3,battery +onion/onion_4,onion +onion/onion_4,yellow onion +onion/onion_4,onion +onion/onion_4,white onion +onion/onion_4,white onion +onion/onion_6,red onion +onion/onion_6,purple onion +onion/onion_6,appears red apple looks ripe dark red +onion/onion_6,onion +coffee_mug/coffee_mug_5,white mug +coffee_mug/coffee_mug_5,object white coffee cup curved handle +coffee_mug/coffee_mug_5,empty white mug +coffee_mug/coffee_mug_5,coffee mug +coffee_mug/coffee_mug_5,white mug +food_cup/food_cup_2,cup yogurt +food_cup/food_cup_2,container yogurt +food_cup/food_cup_2,container yogurt +food_cup/food_cup_2,container yogurt +food_cup/food_cup_2,can flavored yogurt looks like yoplait strawberry flavor +water_bottle/water_bottle_4,water flavored +water_bottle/water_bottle_4,bottle water +water_bottle/water_bottle_4,plastic bottle water inside blue cap label +water_bottle/water_bottle_4,plastic water bottle +water_bottle/water_bottle_4,bottle water +scissors/scissors_2,pair scissors +scissors/scissors_2,pair scissors orange handle +scissors/scissors_2,pair orange scissors +scissors/scissors_2,pair scissors +scissors/scissors_2,generic use scissors orange handles +soda_can/soda_can_3,can mountain dew +soda_can/soda_can_3,can filled type lemonlime soda +soda_can/soda_can_3,can mt dew +soda_can/soda_can_3,mountain dew green soda opened +soda_can/soda_can_3,can soda looks like dew +lime/lime_4,lime +lime/lime_4,lime +lime/lime_4,green lime +lime/lime_4,lime +lime/lime_4,lime +coffee_mug/coffee_mug_6,yellow mug textured design around edge +coffee_mug/coffee_mug_6,yellow ceramic mug +coffee_mug/coffee_mug_6,coffee mug +coffee_mug/coffee_mug_6,cup leftover green limedeep inside +coffee_mug/coffee_mug_6,coffee cup +instant_noodles/instant_noodles_5,package food +instant_noodles/instant_noodles_5,package ramen soup +instant_noodles/instant_noodles_5,package ramen noodles +instant_noodles/instant_noodles_5,object orange package noodles +lightbulb/lightbulb_4,light bulb +lightbulb/lightbulb_4,light bulb removed socket +lightbulb/lightbulb_4,light bulb +lightbulb/lightbulb_4,lightbulb +lightbulb/lightbulb_4,object light bulb +pitcher/pitcher_1,object little tea kettle make tea +pitcher/pitcher_1,object handle hole center short mouth outlet +pitcher/pitcher_1,pitcher +pitcher/pitcher_1,glass pitcher used pour liquids +pitcher/pitcher_1,gravy boat +stapler/stapler_7,small blue stapler +stapler/stapler_7,small blue stapler +stapler/stapler_7,baby blue stapler half size regular stapler +stapler/stapler_7,stapler +onion/onion_3,yellow onion +onion/onion_3,onion +onion/onion_3,onion tasty vegetable sharp flavor us usually cooked +onion/onion_3,white onion +onion/onion_3,onion +camera/camera_2,black digital camera +camera/camera_2,camera +camera/camera_2,electric pencil sharpener +camera/camera_2,digital camera +water_bottle/water_bottle_2,bottle water +water_bottle/water_bottle_2,clear bottle water +water_bottle/water_bottle_2,object bottle water blue label white cap +water_bottle/water_bottle_2,plastic water bottle +water_bottle/water_bottle_2,bottle water maybe flavored +orange/orange_2,orange +orange/orange_2,yellow ball +orange/orange_2,yellow fruit lemon usually cooked foods lemon adds sharp sour flavor +keyboard/keyboard_4,black computer keyboard +keyboard/keyboard_4,computer keyboard +keyboard/keyboard_4,black ibm extended computer keyboard +keyboard/keyboard_4,computer keyboard +keyboard/keyboard_4,computer keyboard +pliers/pliers_5,pair pliers +pliers/pliers_5,pair needlenose pilers blue handle +pliers/pliers_5,tool called needle nose pliers used grip manipulate smaller parts +pliers/pliers_5,blue pliars +pliers/pliers_5,pair pliers +instant_noodles/instant_noodles_7,generic brand top roman +instant_noodles/instant_noodles_7,package food writing +instant_noodles/instant_noodles_7,package food +instant_noodles/instant_noodles_7,package soup +instant_noodles/instant_noodles_7,package noodles +plate/plate_6,something looks like plate pie crust +plate/plate_6,pie baked oven pies made many different foods +plate/plate_6,plate +plate/plate_6,empty dinner plate +plate/plate_6,brown ceramic plate +binder/binder_3,black binder +binder/binder_3,black plastic three ring binder +binder/binder_3,school folder +binder/binder_3,black folder +binder/binder_3,folder can used put paper +soda_can/soda_can_2,can 7 +soda_can/soda_can_2,can 7up +soda_can/soda_can_2,can soda looks like seven +soda_can/soda_can_2,can 7 soda green yellow lemon lime flavor +soda_can/soda_can_2,can 7 +sponge/sponge_2,light green colored sponge +sponge/sponge_2,green sponge +sponge/sponge_2,green rectangular dish sponge +sponge/sponge_2,sponge +sponge/sponge_2,bright green kitchen sponge +cap/cap_3,baseball cap +cap/cap_3,black baseball cap +cap/cap_3,black hat +cap/cap_3,black baseball cap +cap/cap_3,looks like black baseball cap think says bulldog bill +hand_towel/hand_towel_4,towel +hand_towel/hand_towel_4,folded wash cloth +hand_towel/hand_towel_4,brown cloth +hand_towel/hand_towel_4,folded wash rag +hand_towel/hand_towel_4,folded towel +greens/greens_1,bundle romaine lettuce red twist tie around +greens/greens_1,bunch lettuce green +greens/greens_1,lettuce +greens/greens_1,bunch salad greens +greens/greens_1,green leaf lettuce +onion/onion_3,onion +onion/onion_3,onion +onion/onion_3,onion tasty vegetable sharp flavor us usually cooked +onion/onion_3,white onion +coffee_mug/coffee_mug_4,coffee mug +coffee_mug/coffee_mug_4,coffee mug +coffee_mug/coffee_mug_4,white coffee mug +coffee_mug/coffee_mug_4,cup +coffee_mug/coffee_mug_4,white blue mug +ball/ball_5,football +ball/ball_5,football +ball/ball_5,inflatable toy football brown white +ball/ball_5,nerf football +ball/ball_5,fake football +glue_stick/glue_stick_4,can spray +glue_stick/glue_stick_4,gluestick glue red cap +glue_stick/glue_stick_4,glue stick +glue_stick/glue_stick_4,tube glue +glue_stick/glue_stick_4,small cylinder shaped object mostly orangey red yellow blue tag center +hand_towel/hand_towel_5,black towel +hand_towel/hand_towel_5,black towel +hand_towel/hand_towel_5,black towel +hand_towel/hand_towel_5,looks like black folded blanket +hand_towel/hand_towel_5,folded towel +banana/banana_2,yellow banana +banana/banana_2,banana +banana/banana_2,banana plate +banana/banana_2,banana edible fruit +banana/banana_2,banana +greens/greens_3,baby bok choy +greens/greens_3,bok choi +greens/greens_3,lettuce plate +greens/greens_3,green leafy vegetable +kleenex/kleenex_1,small square box tissues +kleenex/kleenex_1,box tissues tissues thin absorbent paper cloths used clean nasal malfunctions +kleenex/kleenex_1,box tissues +kleenex/kleenex_1,box kleenex +kleenex/kleenex_1,box facial tissue +potato/potato_5,narrow potato +potato/potato_5,brown baking potato +potato/potato_5,potato +potato/potato_5,potato +potato/potato_5,russet baking potato +food_can/food_can_12,can soup +food_can/food_can_12,can +food_can/food_can_12,can soup +food_can/food_can_12,can soup +food_can/food_can_12,can may contain food commonly called tin can +peach/peach_2,apple +peach/peach_2,peach +peach/peach_2,piece fruit +peach/peach_2,white donut peach cream pink colored +peach/peach_2,peach donut +food_can/food_can_3,can pumpkin pie +food_can/food_can_3,can pumpkin puree +food_can/food_can_3,can pumpkin pie mix +food_can/food_can_3,can evaporated milk picture pumpkin pie +food_can/food_can_3,can soup +ball/ball_7,soccer ball black white +ball/ball_7,soccer ball +ball/ball_7,soccer ball +ball/ball_7,nerf soccer ball +ball/ball_7,small soccer ball toy +food_box/food_box_2,box zatarains yellow rice mix red white +food_box/food_box_2,box zatarains yellow rice +food_box/food_box_2,box zatarains yellow rice +food_box/food_box_2,box yellow rice +food_box/food_box_2,box zatarrains rice +ball/ball_3,plastic toy baseball +ball/ball_3,baseball +ball/ball_3,baseball +ball/ball_3,certain plush baseball perhaps +ball/ball_3,ball used ball games +garlic/garlic_3,clove garlic +garlic/garlic_3,bulb fresh garlic +garlic/garlic_3,bulb garlic +garlic/garlic_3,bulb garlic +food_bag/food_bag_6,bag chips +food_bag/food_bag_6,bag popchips lying face plate mostly black white lettering picture chips front +food_bag/food_bag_6,bag pop chips +food_bag/food_bag_6,bag chips +food_bag/food_bag_6,bag chips +dry_battery/dry_battery_1,battery +dry_battery/dry_battery_1,nine volt battery gold black +dry_battery/dry_battery_1,battery +dry_battery/dry_battery_1,battery +dry_battery/dry_battery_1,battery +apple/apple_5,green apple +apple/apple_5,green apple +apple/apple_5,green apple +apple/apple_5,granny smith apple +apple/apple_5,object green apple sticker still +food_cup/food_cup_3,yogurt +food_cup/food_cup_3,container yogurt +food_cup/food_cup_3,container yogurt +food_cup/food_cup_3,looks like tub yogurt individual size aluminum foil top +food_cup/food_cup_3,plastic packaged cup yogurt peel foil lid +comb/comb_5,hairbrush +comb/comb_5,black hair brush +comb/comb_5,hair brush +comb/comb_5,hair brush rubber tips +comb/comb_5,hairbrush +stapler/stapler_4,stapler +stapler/stapler_4,black stapler +stapler/stapler_4,stapler +stapler/stapler_4,black stapler +stapler/stapler_4,stapler +pear/pear_7,apple +pear/pear_7,pear +pear/pear_7,apple +pear/pear_7,object round stem yellow hint red +dry_battery/dry_battery_6,battery +dry_battery/dry_battery_6,sized battery +dry_battery/dry_battery_6,battery +dry_battery/dry_battery_6,battery +dry_battery/dry_battery_6,battery +water_bottle/water_bottle_4,plastic water bottle +water_bottle/water_bottle_4,bottle mineral water +water_bottle/water_bottle_4,bottle flavored water +water_bottle/water_bottle_4,bottle water +water_bottle/water_bottle_4,bottle water blue label purple stripe +lightbulb/lightbulb_2,light bulb +lightbulb/lightbulb_2,light bulb +lightbulb/lightbulb_2,light bulb plugged light +lightbulb/lightbulb_2,light bulb +lightbulb/lightbulb_2,light bulb +lime/lime_2,lime +lime/lime_2,appears lime fruit +lime/lime_2,lime +lime/lime_2,lime lemon +lime/lime_2,lime sticker mostly green slightly yellow +stapler/stapler_6,black stapler +stapler/stapler_6,stapler +stapler/stapler_6,black stapler +stapler/stapler_6,black stapler +stapler/stapler_6,black stapler +banana/banana_4,green banana ready eat +banana/banana_4,banana +banana/banana_4,green underripe banana +banana/banana_4,underripe banana green still +banana/banana_4,green yellow colored banana plantain curved shape maybe ripe yet +food_bag/food_bag_7,bag chips +food_bag/food_bag_7,bag potato chips +food_bag/food_bag_7,bag chips +food_bag/food_bag_7,green bag chips used snacking +soda_can/soda_can_2,can 7 +soda_can/soda_can_2,can 7 +soda_can/soda_can_2,can 7up +soda_can/soda_can_2,7up citrus soda popular midwest +soda_can/soda_can_2,7 soda lemon lime flavor +coffee_mug/coffee_mug_1,coffee mug +coffee_mug/coffee_mug_1,red white mug +coffee_mug/coffee_mug_1,coffee cup +coffee_mug/coffee_mug_1,red white coffee mug +coffee_mug/coffee_mug_1,mug red grey label +food_bag/food_bag_5,pack chips like snack +food_bag/food_bag_5,bag holds potato chips snack food humans eat snack foods part diet +food_bag/food_bag_5,bag market pantry potato chips +food_bag/food_bag_5,bag chips +food_bag/food_bag_5,bag chips +toothpaste/toothpaste_1,tube toothpaste +toothpaste/toothpaste_1,toothpaste paste gel dentifrice used toothbrush clean maintain aesthetics health teeth +toothpaste/toothpaste_1,tube colgate toothpaste +toothpaste/toothpaste_1,toothpaste +toothpaste/toothpaste_1,tube colgate tooth paste +lime/lime_4,lime +lime/lime_4,green lime +lime/lime_4,green lime +lime/lime_4,lime +banana/banana_2,banana mostly yellow +banana/banana_2,yellow banana +banana/banana_2,banana +banana/banana_2,long banana +banana/banana_2,single ripe banana +comb/comb_5,hair brush +comb/comb_5,black hair brush +comb/comb_5,hairbrush +comb/comb_5,hair brush +comb/comb_5,black silver hairbrush stiff bristles +bell_pepper/bell_pepper_3,bell pepper red thick green stem +bell_pepper/bell_pepper_3,vegetable called red pepper can eaten raw cooked +bell_pepper/bell_pepper_3,red pepper +bell_pepper/bell_pepper_3,red bell pepper +bell_pepper/bell_pepper_3,red bell pepper +flashlight/flashlight_1,flashlight +flashlight/flashlight_1,black flashlight +flashlight/flashlight_1,flashlight +flashlight/flashlight_1,black flashlight handle strap +flashlight/flashlight_1,flashlight +binder/binder_2,purple plastic folder +binder/binder_2,school folder +binder/binder_2,purple folder +binder/binder_2,purple three ring binder +cell_phone/cell_phone_3,cell phone features flip design +cell_phone/cell_phone_3,closed blue silver flip phone +cell_phone/cell_phone_3,picture old cell phone flip phone +greens/greens_1,greens leaf vegetable +greens/greens_1,green leaf lettuce plate +greens/greens_1,green leafy mass looks vegetable either celery broccoli +greens/greens_1,green leaf lettuce +greens/greens_1,lettuce +plate/plate_2,plate broad mainly flat vessel commonly used serve food +plate/plate_2,blue white colored plate +plate/plate_2,empty dinner plate +plate/plate_2,plate +plate/plate_2,plate +sponge/sponge_11,scrubber used clean pans dishes +sponge/sponge_11,kitchen sponge +peach/peach_2,apple +peach/peach_2,doughnut peach +peach/peach_2,piece fruit +peach/peach_2,piece fruit +food_cup/food_cup_2,container yogurt +food_cup/food_cup_2,container yogurt +food_cup/food_cup_2,single serve yogurt container +food_cup/food_cup_2,plastic cup yogurt silver foil lid +food_cup/food_cup_2,single serving cup frozen yogurt looks like yoplait brand +lemon/lemon_5,yellow lemon +lemon/lemon_5,lemon +lemon/lemon_5,lemon +lemon/lemon_5,yellow lemon +lemon/lemon_5,fresh lemon +onion/onion_5,purple onion +onion/onion_5,red onion +onion/onion_5,onion +pear/pear_4,pear +pear/pear_4,pear +pear/pear_4,pear +pear/pear_4,golden pear +pear/pear_4,pear +cell_phone/cell_phone_1,silver mobile phone +cell_phone/cell_phone_1,old slim style mobile phone +cell_phone/cell_phone_1,mobile phone +cell_phone/cell_phone_1,old cell phone used make calls text +cell_phone/cell_phone_1,silver cell phone black border around screen +onion/onion_6,red onion +onion/onion_6,onion +onion/onion_6,purple onion +onion/onion_6,red onion +food_cup/food_cup_4,cup yogart +food_cup/food_cup_4,chobani peach flavored yogurt +food_cup/food_cup_4,container food +food_cup/food_cup_4,container yogurt +food_cup/food_cup_4,container chobani greek yogurt +peach/peach_1,peach +peach/peach_1,red peach +peach/peach_1,peach +peach/peach_1,white peach +peach/peach_1,peach +comb/comb_3,hair brush +comb/comb_3,hair brush used de tangle persons hair +comb/comb_3,black hairbrush +comb/comb_3,black hairbrush green stripe +comb/comb_3,hair brush +banana/banana_1,banana +banana/banana_1,yellow ripe banana 6 inches long +banana/banana_1,banana plate +banana/banana_1,yellow banana +banana/banana_1,yellow banana +flashlight/flashlight_4,flashlight +flashlight/flashlight_4,flashlight +flashlight/flashlight_4,black flashlight looks strong +flashlight/flashlight_4,black flashlight +flashlight/flashlight_4,black flashlight yellow switch +binder/binder_1,red binder +binder/binder_1,school folder +binder/binder_1,binder +binder/binder_1,red binder used protect paper metal rings inside separated put holes notebook paper order secure +binder/binder_1,one inch red binder used keep loose papers bound together +food_box/food_box_5,box crackers red white green stripe +food_box/food_box_5,box food +food_box/food_box_5,box something +food_box/food_box_5,box sugar substitute +pear/pear_3,pear +pear/pear_3,brown pear +pear/pear_3,pear +pear/pear_3,brown green pear produce sticker +pear/pear_3,pear +onion/onion_3,object hard white round point top +onion/onion_3,looks like onion tan skin +onion/onion_3,onion +onion/onion_3,white yellow onion +onion/onion_3,yellow brown medium sized onion +pear/pear_8,apple +pear/pear_8,yellow apple round +pear/pear_8,sweet fruit called green apple can eaten raw cooked made apple pie +pear/pear_8,yellow apple +pear/pear_8,yellow apple +calculator/calculator_4,simple digital calculator basic math problems can solved using electronic device +calculator/calculator_4,calculator +calculator/calculator_4,green calculator small buttons +calculator/calculator_4,lime green calculator +calculator/calculator_4,calculator +mushroom/mushroom_1,clove garlic +mushroom/mushroom_1,mushroom +mushroom/mushroom_1,mushroom +sponge/sponge_6,kitchen sponge +sponge/sponge_6,dish sponge yellow top pink bottom +sponge/sponge_6,sponge +sponge/sponge_6,sponge +sponge/sponge_6,dish sponge +stapler/stapler_7,mini blue stapler +stapler/stapler_7,blue stapler +stapler/stapler_7,small blue stapler +ball/ball_6,orange black small squishy ball +ball/ball_6,basketball +ball/ball_6,fake orange black basketball +ball/ball_6,ball +ball/ball_6,childrens play ball +peach/peach_2,peach +peach/peach_2,piece fruit +peach/peach_2,doughnut peach +peach/peach_2,apple +peach/peach_2,peach soft juicy fleshy stone fruit +orange/orange_2,piece fruit +orange/orange_2,apple +orange/orange_2,orange +orange/orange_2,orange +plate/plate_5,white plate +plate/plate_5,white plate +plate/plate_5,plate +plate/plate_5,ceramic plate +plate/plate_5,empty dinner plate +tomato/tomato_7,tomato +tomato/tomato_7,looks like tomato red +tomato/tomato_7,tomato +tomato/tomato_7,red tomato +tomato/tomato_7,tomato +food_can/food_can_6,can soup +food_can/food_can_6,red white can campbells soup +food_can/food_can_6,can food preparation required food can eaten +food_can/food_can_6,can soup +food_can/food_can_6,can soup +instant_noodles/instant_noodles_1,package noodles +instant_noodles/instant_noodles_1,package food +instant_noodles/instant_noodles_1,pack ramen +instant_noodles/instant_noodles_1,package ramen soup +flashlight/flashlight_3,flashlight made blue plastic black accents +flashlight/flashlight_3,blue flash light +flashlight/flashlight_3,blue flashlight black rim black button accenting blue +flashlight/flashlight_3,flashlight +flashlight/flashlight_3,flashlight provides light anything need shine light +food_can/food_can_12,tin can food +food_can/food_can_12,can soup +food_can/food_can_12,can food +food_can/food_can_12,can food +food_can/food_can_12,can soup +greens/greens_2,lettuce +greens/greens_2,bundle fresh parsley +greens/greens_2,bunch parsley +greens/greens_2,fresh kale +food_can/food_can_4,can soup +food_can/food_can_4,can food +food_can/food_can_4,can soup +food_can/food_can_4,can condensed milk +food_can/food_can_4,can +scissors/scissors_1,scissors used cutting various thin materials paper cardboard metal foil cloth rope wire +scissors/scissors_1,pair scissors +scissors/scissors_1,pair scissors +scissors/scissors_1,silver orange scissors +scissors/scissors_1,scissors gray handle +notebook/notebook_1,spiral bound notebook red cover +notebook/notebook_1,red single subject notebook +notebook/notebook_1,notebook +notebook/notebook_1,writing notebook +notebook/notebook_1,notebook blank paper +food_can/food_can_9,can spaghettios white red cartoon characters front +food_can/food_can_9,can soup +food_can/food_can_9,can spaghetti os +food_can/food_can_9,sealed tin cylinder used package food products +food_can/food_can_9,can spaghettios childrens pasta can +comb/comb_1,black brush +comb/comb_1,hair brush +comb/comb_1,hair brush black head silver handle bristles covered colored tops +comb/comb_1,hair brush +comb/comb_1,hairbrush +keyboard/keyboard_5,computer keypad +keyboard/keyboard_5,black computer keyboard +keyboard/keyboard_5,black keyboard +keyboard/keyboard_5,computer keyboard +keyboard/keyboard_5,computer keyboard +rubber_eraser/rubber_eraser_3,eraser +rubber_eraser/rubber_eraser_3,eraser used removing writing paper skin +rubber_eraser/rubber_eraser_3,pencil eraser +rubber_eraser/rubber_eraser_3,eraser +kleenex/kleenex_3,box tissues +kleenex/kleenex_3,box kleenex +kleenex/kleenex_3,box facial tissue +kleenex/kleenex_3,rectangular box tissues +bowl/bowl_3,white bowl +bowl/bowl_3,plastic bowls easy clean +bowl/bowl_3,white ceramic bowl +bowl/bowl_3,empty dinner bowl +bowl/bowl_3,bowl +mushroom/mushroom_1,object old ball +water_bottle/water_bottle_9,water bottle purple +water_bottle/water_bottle_9,water container +water_bottle/water_bottle_9,water bottle +water_bottle/water_bottle_9,plastic water bottle +water_bottle/water_bottle_9,purple reusable water bottle +marker/marker_9,yellow highlighter +marker/marker_9,marker yellow body black cap +marker/marker_9,magic marker +marker/marker_9,yellow highlighter +marker/marker_9,yellow marker black cap +notebook/notebook_2,yellow spiraled notebook +notebook/notebook_2,writing notebook +notebook/notebook_2,yellow notebook +notebook/notebook_2,spiral bound notebook +notebook/notebook_2,note book used wright drawing purposes +kleenex/kleenex_4,box facial tissue +kleenex/kleenex_4,box tissues +kleenex/kleenex_4,open box kleenex brand tissue +kleenex/kleenex_4,box kleenex +kleenex/kleenex_4,box tissues +lemon/lemon_2,yellow lemon +lemon/lemon_2,lemon sour fruit used flavor foods rarely eaten alone +lemon/lemon_2,lemon sour fruit +lemon/lemon_2,lemon +lemon/lemon_2,yellow lemon +notebook/notebook_1,70 page notebook college rule although can get wide rule well people use school +notebook/notebook_1,notebook +notebook/notebook_1,red spiraled notebook +notebook/notebook_1,writing notebook +notebook/notebook_1,red spiral bound notebook +cap/cap_2,camouflage baseball cap +cap/cap_2,green olive camouflage baseball cap +cap/cap_2,camoflauge ballcap +cap/cap_2,baseball cap camo print +cap/cap_2,army cap +mushroom/mushroom_3,chicken drumstick +onion/onion_2,medium size white onion +onion/onion_2,onion +onion/onion_2,white onion +onion/onion_2,white onion round +onion/onion_2,object white onion +food_can/food_can_1,can +food_can/food_can_1,can food +food_can/food_can_1,can condensed milk +food_can/food_can_1,can can shiny +sponge/sponge_7,kitchen sponge +sponge/sponge_7,cleaning scrub sponge +sponge/sponge_7,sponge +sponge/sponge_7,sponge green yellow used clean dishes +sponge/sponge_7,sponge +bell_pepper/bell_pepper_6,fresh green bell pepper +bell_pepper/bell_pepper_6,green pepper +bell_pepper/bell_pepper_6,green bell pepper +bell_pepper/bell_pepper_6,green pepper +bell_pepper/bell_pepper_6,green bell pepper +peach/peach_2,doughnut peach +peach/peach_2,peach +peach/peach_2,peach past ripe +peach/peach_2,apple part yellow part light red +peach/peach_2,piece fruit +stapler/stapler_1,stapler +stapler/stapler_1,black stapler +stapler/stapler_1,stapler +stapler/stapler_1,black grey stapler +shampoo/shampoo_6,bottle shampoo +shampoo/shampoo_6,bottle shampoo +shampoo/shampoo_6,body wash +shampoo/shampoo_6,bottle lotion +shampoo/shampoo_6,bottle green lid yellow bottom could lotion +food_box/food_box_7,unopened box wheat thins +food_box/food_box_7,yellow box wheat thins +food_box/food_box_7,box wheat thins +food_box/food_box_7,box wheat thins +food_box/food_box_7,box wheat thins box 6 sides mostly yellow green +food_box/food_box_2,box zatarrains rice +food_box/food_box_2,box instant rice +food_box/food_box_2,box yellow rice +food_box/food_box_2,box rice +pitcher/pitcher_3,green vase +pitcher/pitcher_3,green vase +pitcher/pitcher_3,clay vase brown green glaze +pitcher/pitcher_3,pitcher +marker/marker_7,pink marker black cap +marker/marker_7,highlighter +marker/marker_7,pink highlighter marker +marker/marker_7,purple marker black cap +marker/marker_7,pink highlighter +food_box/food_box_8,package crackers +food_box/food_box_8,blue box looks like may contain cracker snacks +food_box/food_box_8,box crackers +food_box/food_box_8,box snack crackers +lemon/lemon_6,lemon +lemon/lemon_6,lemon +lemon/lemon_6,lemon +lemon/lemon_6,yellow lemon +lemon/lemon_6,yellow lemon +marker/marker_1,red colored sharpie +marker/marker_1,red expo marker +marker/marker_1,red dry erase marker +marker/marker_1,magic marker +marker/marker_1,red expo brand dry erase marker +coffee_mug/coffee_mug_4,coffee mug +coffee_mug/coffee_mug_4,mug +coffee_mug/coffee_mug_4,coffee cup +coffee_mug/coffee_mug_4,white coffee mug blue rim +coffee_mug/coffee_mug_4,white empty cup +banana/banana_1,banana +banana/banana_1,yellow banana +banana/banana_1,banana plate +banana/banana_1,banana +banana/banana_1,small ripe banana +toothpaste/toothpaste_5,tube toothpaste +toothpaste/toothpaste_5,tube crest toothpaste +toothpaste/toothpaste_5,tube toothpaste small brush paste used clean humans teeth +toothpaste/toothpaste_5,tube crest tooth paste +toothpaste/toothpaste_5,tube toothpaste +pear/pear_3,pear +pear/pear_3,brown pear +pear/pear_3,piece fruit known pear +pear/pear_3,red pear tasty variety +pear/pear_3,sweet fruit called pear can eaten raw cooked +shampoo/shampoo_3,bottle shampoo +shampoo/shampoo_3,bottle something looks like shampoo +shampoo/shampoo_3,bottle shampoo liquid inside lavender +shampoo/shampoo_3,bottle shampoo +shampoo/shampoo_3,os bottle shampoo +food_bag/food_bag_8,bag sun chips green +food_bag/food_bag_8,bag sunchips +food_bag/food_bag_8,bag full crunchy food flavored +food_bag/food_bag_8,bag sun chips +food_bag/food_bag_8,bag sun chips +toothbrush/toothbrush_4,white purple toothbrush +toothbrush/toothbrush_4,tooth brush +toothbrush/toothbrush_4,tooth brush used toothpaste cleans humans teeth +toothbrush/toothbrush_4,purple toothbrush +toothbrush/toothbrush_4,purple white toothbrush +kleenex/kleenex_4,box tissues +kleenex/kleenex_4,box holds thin paper tissues tissue used clean sneezes nasal malfunctions +kleenex/kleenex_4,box facial tissue +kleenex/kleenex_4,box kleenex +kleenex/kleenex_4,looks like box kleenex tissues box pattern sort grey feathered background +onion/onion_1,looks one clove garlic +onion/onion_1,white onion +onion/onion_1,mushroom +onion/onion_1,white onion +cereal_box/cereal_box_4,box raisin bran crunch mostly blue purple +cereal_box/cereal_box_4,blue cereal box cereal raisin bran crunch +cereal_box/cereal_box_4,box raisin bran crunch cereal +cereal_box/cereal_box_4,box cereal +cereal_box/cereal_box_4,box raisin bran crunch +peach/peach_1,peach +peach/peach_1,peach +peach/peach_1,nectarine +peach/peach_1,piece fruit +peach/peach_1,peach +onion/onion_1,small white unpeeled onion +onion/onion_1,onion +onion/onion_1,white onion +calculator/calculator_3,calculator +calculator/calculator_3,white caculator black keys +calculator/calculator_3,white calculator black keys +calculator/calculator_3,calculator +calculator/calculator_3,calculator +toothbrush/toothbrush_4,long purple white bristles handle lilac white +toothbrush/toothbrush_4,purple toothbrush +toothbrush/toothbrush_4,purple white toothbrush +toothbrush/toothbrush_4,toothbrush +toothbrush/toothbrush_4,toothbrush +kleenex/kleenex_3,box tissues +kleenex/kleenex_3,box tissues +kleenex/kleenex_3,box kleenex +kleenex/kleenex_3,box facial tissue +kleenex/kleenex_3,tissues can used dry tears blow nose +toothbrush/toothbrush_2,toothbrush +toothbrush/toothbrush_2,toothbrush +toothbrush/toothbrush_2,object small white green toothbrush +toothbrush/toothbrush_2,white lime green toothbrush laying face table +toothbrush/toothbrush_2,toothbrush +marker/marker_9,magic marker +marker/marker_9,marker dry erase board +marker/marker_9,green marker looks like hi lighter +marker/marker_9,yellow highlighter +marker/marker_9,yellow highlighter marker +lemon/lemon_2,yellow lemon +lemon/lemon_2,lemon +lemon/lemon_2,lemon sticker +lemon/lemon_2,ripe yellow lemon +lemon/lemon_2,lemon +lightbulb/lightbulb_3,light bulb +lightbulb/lightbulb_3,light bulb +lightbulb/lightbulb_3,light bulb +lightbulb/lightbulb_3,light bulb +lightbulb/lightbulb_3,lightbulb used see +tomato/tomato_3,tomato +tomato/tomato_3,red tomato +tomato/tomato_3,tomato +tomato/tomato_3,red tomato green stem +tomato/tomato_3,tomato +tomato/tomato_8,tomato tomato missing stem +tomato/tomato_8,red tomato +tomato/tomato_8,red tomato +tomato/tomato_8,object large red tomato +tomato/tomato_8,tomato +coffee_mug/coffee_mug_2,coffee mug +coffee_mug/coffee_mug_2,coffee mug +coffee_mug/coffee_mug_2,mug +coffee_mug/coffee_mug_2,gold colored coffee mug +coffee_mug/coffee_mug_2,coffee mug +garlic/garlic_4,clove garlic +kleenex/kleenex_4,box kleenex grey designs +kleenex/kleenex_4,box kleenex +kleenex/kleenex_4,box tissues +kleenex/kleenex_4,gray rectangular box tissue +kleenex/kleenex_4,box facial tissue +food_bag/food_bag_4,package mini oreos +food_bag/food_bag_4,bag mini oreos +food_bag/food_bag_4,bag mini oreo cookies +food_bag/food_bag_4,bag oreo minis bag laying flat +food_bag/food_bag_4,bag mini oreo cookies +keyboard/keyboard_5,black computer keyboard +keyboard/keyboard_5,computer keyboard +keyboard/keyboard_5,black dell keyboard white surface black keys white letters white base +keyboard/keyboard_5,black white computer keyboard brand dell +keyboard/keyboard_5,computer keyboard +cereal_box/cereal_box_3,box special k breakfast cereal +cereal_box/cereal_box_3,box cereal +cereal_box/cereal_box_3,box kelloggs cereal +cereal_box/cereal_box_3,special k cereal healthy +cereal_box/cereal_box_3,box cereal +calculator/calculator_5,silver calculator white grey buttons +calculator/calculator_5,calculator +calculator/calculator_5,calculator helps math +calculator/calculator_5,calculator +calculator/calculator_5,calculator +sponge/sponge_8,dish sponge one side dish sponge blue yellow +sponge/sponge_8,blue sponge +sponge/sponge_8,sponge +sponge/sponge_8,kitchen sponge +sponge/sponge_8,sponge +shampoo/shampoo_4,white bottle conditioner silver cap +shampoo/shampoo_4,white plastic bottle gray lid +shampoo/shampoo_4,bottle shampoo conditioner +shampoo/shampoo_4,bottle shampoo +shampoo/shampoo_4,looks like back shampoo bottle +bowl/bowl_3,white bowl +bowl/bowl_3,bowl milk served table +bowl/bowl_3,bowl water +bowl/bowl_3,bowl +bowl/bowl_3,empty dinner bowl +marker/marker_4,green black marker +marker/marker_4,ink pen +marker/marker_4,green marker +marker/marker_4,marker green +marker/marker_4,magic marker +onion/onion_1,white onion +onion/onion_1,white onion +onion/onion_1,bulb garlic +onion/onion_1,white onion +onion/onion_1,onion +flashlight/flashlight_1,flashlight +flashlight/flashlight_1,black flashlight black cord attached bottom +flashlight/flashlight_1,black flashlight +flashlight/flashlight_1,torch stick combustible material one end ignited used light source +flashlight/flashlight_1,black flash light +hand_towel/hand_towel_1,folded towel +hand_towel/hand_towel_1,white towel +hand_towel/hand_towel_1,towel +hand_towel/hand_towel_1,white towel placed plate +hand_towel/hand_towel_1,soft absorbent cloth called towel towels used dry water peoples hands items +notebook/notebook_1,spiral bound notebook +notebook/notebook_1,red spiraled notebook +notebook/notebook_1,red notebook +notebook/notebook_1,notebook contains 70 pages lined paper +notebook/notebook_1,writing notebook +food_bag/food_bag_3,bag snyders pretzels +food_bag/food_bag_3,bag pretzel snaps +food_bag/food_bag_3,bag synders pretzel snaps brown red +food_bag/food_bag_3,bag pretzels +food_bag/food_bag_3,bag filled food crunchy salty +water_bottle/water_bottle_6,clear water bottle blue cap +water_bottle/water_bottle_6,plastic water bottle +water_bottle/water_bottle_6,bottle water +water_bottle/water_bottle_6,plastic bottle water +water_bottle/water_bottle_6,plastic bottle looks holding water can purposed many times +food_box/food_box_5,box crackers +food_box/food_box_5,box food ready made +food_box/food_box_5,box food +food_box/food_box_5,box crackers +kleenex/kleenex_2,box tissues +kleenex/kleenex_2,box tissues +kleenex/kleenex_2,box kleenex pink designs +kleenex/kleenex_2,box facial tissue +kleenex/kleenex_2,box facial tissue kleenex +plate/plate_1,empty dinner plate +plate/plate_1,green plate white paste +plate/plate_1,light yellow plate +bowl/bowl_6,blue white ceramic bowl floral designs inside bowl +bowl/bowl_6,ceramic bowl bowl floral design +bowl/bowl_6,empty dinner bowl +bowl/bowl_6,bowl +bowl/bowl_6,kitchen bowl eating food +bell_pepper/bell_pepper_2,sort yellow fruit vegetable hard tell might lemon +bell_pepper/bell_pepper_2,seems sort fruit perhaps deformed orange +bell_pepper/bell_pepper_2,yellow pepper +garlic/garlic_6,onion +garlic/garlic_6,head garlic +shampoo/shampoo_6,bottle toiletry looks like suave brand +shampoo/shampoo_6,object shampoo bottle tropical bran suave +shampoo/shampoo_6,bottle body wash +shampoo/shampoo_6,bottle shampoo +shampoo/shampoo_6,bottle shampoo hair product +food_bag/food_bag_3,bag snack food humans eat snack foods part diet +food_bag/food_bag_3,bag pretzels +food_bag/food_bag_3,bag pretzels +food_bag/food_bag_3,bag snyders pretzel snaps +food_bag/food_bag_3,bag snyders pretzels +calculator/calculator_3,calculator +calculator/calculator_3,calculator +calculator/calculator_3,calculator +calculator/calculator_3,black white calculator +calculator/calculator_3,white calculator black buttons +garlic/garlic_4,clove garlic +garlic/garlic_4,looks like twin onion +lemon/lemon_1,lemon species small evergreen tree flowering plant +lemon/lemon_1,tart fruit called lemon can eaten raw cooked +lemon/lemon_1,lemon +lemon/lemon_1,lemon +lemon/lemon_1,yellow lemon +orange/orange_4,orange +orange/orange_4,orange +orange/orange_4,orange +orange/orange_4,orange +marker/marker_5,magic marker +marker/marker_5,could exercise tool +marker/marker_5,pen marker +potato/potato_6,russet potato lying side roughly tubular shape brown color +potato/potato_6,potato +potato/potato_6,potato +potato/potato_6,looks like rather large regular potato +potato/potato_6,large baking potato +bell_pepper/bell_pepper_1,red bell pepper green stem +bell_pepper/bell_pepper_1,orange pepper +bell_pepper/bell_pepper_1,red bell pepper +bell_pepper/bell_pepper_1,red bell pepper +bell_pepper/bell_pepper_1,red bell pepper +food_can/food_can_9,can food +food_can/food_can_9,can soup belle +food_can/food_can_9,can soup +food_can/food_can_9,can spaghetti os +food_can/food_can_9,can pasta +sponge/sponge_8,dish sponge +sponge/sponge_8,yellow sponge blue scrubbing surface +sponge/sponge_8,sponge +sponge/sponge_8,sponge +sponge/sponge_8,sponge blue top +cell_phone/cell_phone_2,cell phone +cell_phone/cell_phone_2,phone +cell_phone/cell_phone_2,mobile cordless phone +cell_phone/cell_phone_2,nokia cell phone people used joke unbreakable +cell_phone/cell_phone_2,old mobile phone +pliers/pliers_5,plier +pliers/pliers_5,pair pliers dark blue hand grips +pliers/pliers_5,pair needle nose pilars +pliers/pliers_5,pair pliers +pliers/pliers_5,silver pliers dark grips handles +soda_can/soda_can_4,can coca cola +soda_can/soda_can_4,can coca cola labelled vanilla zero +soda_can/soda_can_4,can soda +soda_can/soda_can_4,can vanilla coca cola +soda_can/soda_can_4,object black vanilla coke zero can +pitcher/pitcher_3,pitcher water +pitcher/pitcher_3,green vase +pitcher/pitcher_3,vase +pitcher/pitcher_3,green ceramic pitcher +pitcher/pitcher_3,green vase +plate/plate_2,blue cream colored plate +plate/plate_2,plate +plate/plate_2,plate +plate/plate_2,plate +plate/plate_2,empty dinner plate +coffee_mug/coffee_mug_1,coffee mug +coffee_mug/coffee_mug_1,red white green coffee mug +coffee_mug/coffee_mug_1,red white mug +coffee_mug/coffee_mug_1,white mug red grey design +coffee_mug/coffee_mug_1,coffee mug +shampoo/shampoo_4,bottle lotion +shampoo/shampoo_4,bottle shampoo +shampoo/shampoo_4,bottle shampoo +shampoo/shampoo_4,bottle hair conditioner white silver cap +shampoo/shampoo_4,backside shampoo body cleanser +marker/marker_1,glue stick holds paper glue applied one page paper can stick another surface +marker/marker_1,glue pen +marker/marker_1,magic marker +marker/marker_1,red marker used dry erase board +marker/marker_1,red expo marker +tomato/tomato_4,red tomato +tomato/tomato_4,red vine tomatoe +tomato/tomato_4,tomato +tomato/tomato_4,yellow red tomato +tomato/tomato_4,tomato +stapler/stapler_3,black stapler +stapler/stapler_3,stapler +stapler/stapler_3,stapler +stapler/stapler_3,black stapler +stapler/stapler_3,stapler +comb/comb_2,black hair brush +comb/comb_2,hairbrush keeps hair getting tangled +comb/comb_2,black hair brush +comb/comb_2,hairbrush +comb/comb_2,hair brush +marker/marker_7,magic marker +marker/marker_7,pink highlighter +marker/marker_7,marker +marker/marker_7,purple marker +soda_can/soda_can_5,can diet dr pepper +soda_can/soda_can_5,can diet dr pepper +soda_can/soda_can_5,can diet dr pepper +soda_can/soda_can_5,white aluminum can diet dr pepper +soda_can/soda_can_5,unopened can diet dr pepper +kleenex/kleenex_1,box tissues tissues thin absorbent paper cloths used clean nasal malfunctions +kleenex/kleenex_1,box kleenex +kleenex/kleenex_1,box facial tissue +kleenex/kleenex_1,box kleenex +kleenex/kleenex_1,blue floral tissue box +plate/plate_1,yellow plate +plate/plate_1,yellow plate +plate/plate_1,empty dinner plate +camera/camera_1,black stapler +camera/camera_1,black rectangular object +garlic/garlic_5,onion looks like twin +garlic/garlic_5,peach type fruit +glue_stick/glue_stick_3,spray can +glue_stick/glue_stick_3,stick orange lid blue base looks like glue stick +glue_stick/glue_stick_3,glue stick red top +glue_stick/glue_stick_3,glue stick +apple/apple_3,yellow apple +apple/apple_3,sweet fruit called green apple can eaten raw cooked apple pie +apple/apple_3,apple +apple/apple_3,yellow apple +food_jar/food_jar_1,jar jam jelly +food_jar/food_jar_1,jar brown white lid +food_jar/food_jar_1,jar jelly +food_jar/food_jar_1,jar fruit preserves +food_jar/food_jar_1,jar jam could blue berry +calculator/calculator_2,calculator +calculator/calculator_2,black calculator +calculator/calculator_2,simple digital calculator basic math problems can solved using electronic device +calculator/calculator_2,black calculator grey yellow black keys +calculator/calculator_2,calculator +plate/plate_2,empty dinner plate +plate/plate_2,blue white plate +plate/plate_2,white plate blue stripe around rim +plate/plate_2,white plate +orange/orange_1,orange type fruit used make juice +orange/orange_1,orange +orange/orange_1,orange +orange/orange_1,orange +orange/orange_1,small orange fruit +bowl/bowl_6,blue bowl +bowl/bowl_6,empty dinner bowl +bowl/bowl_6,bowl +bowl/bowl_6,blue white green yellow bowl +bowl/bowl_6,blue white bowl green blue white designs inside +onion/onion_1,white onion +onion/onion_1,full white onion +sponge/sponge_2,green sponge +sponge/sponge_2,green color scrubber +sponge/sponge_2,dish sponge +instant_noodles/instant_noodles_4,object bag cheetos type chips +instant_noodles/instant_noodles_4,instant ramen pack +instant_noodles/instant_noodles_4,bag ramen soup mix +pliers/pliers_1,pliers +pliers/pliers_1,plyers used tool +pliers/pliers_1,pliers blue handle +banana/banana_2,banana mostly yellow +banana/banana_2,banana yellow still green +banana/banana_2,yellow banana +garlic/garlic_3,garlic +garlic/garlic_3,white onion +garlic/garlic_7,clove garlic +garlic/garlic_7,garlic clove peel papery white covering cut cook +coffee_mug/coffee_mug_5,white ceramic mug mug thin rim drink smooth surface +flashlight/flashlight_4,object handle fit comfortably one hand switch black +flashlight/flashlight_4,battery operated flashlight +flashlight/flashlight_4,black flashlight yellow switch +water_bottle/water_bottle_4,bottle water appears flavored variety +water_bottle/water_bottle_4,bottle flavored berry water +onion/onion_6,lies red onion +shampoo/shampoo_4,bottle shampoo +shampoo/shampoo_4,bottle shampoo blue darker blue lid +sponge/sponge_9,pink pom pom +peach/peach_2,apple sitting upright +peach/peach_2,apple +instant_noodles/instant_noodles_7,bag soup mix +instant_noodles/instant_noodles_7,package ramen +food_cup/food_cup_2,container yogurt +food_cup/food_cup_2,bottle narrow necked container made impermeable shapes sizes store liquids like beer +food_cup/food_cup_2,container flavored yogurt +bowl/bowl_2,bowl +bowl/bowl_2,ornate bowl +bowl/bowl_2,light green ceramic bowl brown edging around top +notebook/notebook_1,paper notebook used taking notes class +notebook/notebook_1,red notebook +notebook/notebook_1,seventy page notebook spiral bound red +food_can/food_can_9,can spaghettios +food_can/food_can_9,see can soup +food_can/food_can_9,can can metal shiny +soda_can/soda_can_3,soda can metal container designed hold fixed portion liquid carbonated soft drinks alcoholic drinks fruit juices teas herbal teas energy drinks etc +soda_can/soda_can_3,aluminum drink can unopened +soda_can/soda_can_3,can soda +cereal_box/cereal_box_4,box cereal +cereal_box/cereal_box_4,box raisin bran crunch cereal +lemon/lemon_2,citrus fruit lemon +lemon/lemon_2,lemon species small evergreen tree flowering plant family rutaceae +lemon/lemon_2,bright yellow lemon mostly oblong nipple one end +pliers/pliers_4,pair pliars used grip small things +pliers/pliers_4,pair pliers brown handles +pliers/pliers_4,pliers +onion/onion_3,onion +onion/onion_3,yellow onion +potato/potato_5,potato +potato/potato_5,russet potato used cooking +potato/potato_5,potato +food_bag/food_bag_7,bag food +food_bag/food_bag_7,bag kettle chips +food_bag/food_bag_7,bag snack food +cell_phone/cell_phone_3,old flip phone small compact +cell_phone/cell_phone_3,flip phone cellphone +bell_pepper/bell_pepper_1,red somewhat oval vegetable green stem several knobs around top can stand +bell_pepper/bell_pepper_1,tomato +bell_pepper/bell_pepper_1,red bell pepper +pear/pear_2,green pear +pear/pear_2,green yellow bruises +pear/pear_2,pear tree pears fruit used make medicine +calculator/calculator_2,black calculator orange grey buttons +calculator/calculator_2,calculator black +calculator/calculator_3,calculator +calculator/calculator_3,calculator used math +calculator/calculator_3,large white calculator big button +water_bottle/water_bottle_4,bottle water +water_bottle/water_bottle_4,clear bottle water +binder/binder_1,binder binder red +binder/binder_1,plastic binder used keep paper organized +binder/binder_1,red three ring binder +food_cup/food_cup_4,package chobani yogurt +food_cup/food_cup_4,carton likely yogurt appears individual serving +food_cup/food_cup_4,small sized container yogurt unopened +sponge/sponge_7,sponge used cleaning dishes +sponge/sponge_7,sponge tool cleaning aid made soft porous material +sponge/sponge_7,yellow green sponge +greens/greens_1,lettuce +greens/greens_1,green lettuce +greens/greens_1,bundle greens used cooking +toothbrush/toothbrush_4,tooth brush clean rteeth +toothbrush/toothbrush_4,toothbrush oral hygiene instrument used clean teeth gums tongue +toothbrush/toothbrush_4,purple white toothbrush +toothbrush/toothbrush_3,light green toothbrush +toothbrush/toothbrush_3,toothbrush oral hygiene instrument used clean teeth gums tongue +toothbrush/toothbrush_3,blue white toothbrush +greens/greens_1,bundle greens used cooking +greens/greens_1,greens leaves leaf like parts edible plants eaten vegetables salads +greens/greens_1,green vegetable +kleenex/kleenex_3,slightly crushed box tissues +kleenex/kleenex_3,box tissues +kleenex/kleenex_3,box tissues looks like brand kleenex +ball/ball_2,squishy toy soccer ball +ball/ball_2,hackesack looks like soccerball +food_bag/food_bag_2,bag cookies +food_bag/food_bag_2,bag teddy bear cookies +food_bag/food_bag_2,medium sized bag cookies +bell_pepper/bell_pepper_3,red bell pepper upright +bell_pepper/bell_pepper_3,red pepper +bell_pepper/bell_pepper_3,red bell pepper sitting upright +kleenex/kleenex_4,box tissue used blowing nose +kleenex/kleenex_4,full box tissues +kleenex/kleenex_4,box tissues +orange/orange_4,citrus fruit orange +orange/orange_4,orange +orange/orange_4,rangpur fruit one major fruit available city bangladesh +instant_noodles/instant_noodles_1,bag candy +instant_noodles/instant_noodles_1,soup mix +instant_noodles/instant_noodles_1,plastic package food japanese writing +plate/plate_5,white ceramic plate +plate/plate_5,small ceramic plate white +keyboard/keyboard_5,computer keyboard +keyboard/keyboard_5,nawhole yellow onion outer wrapping removed +pliers/pliers_5,hardware +pliers/pliers_5,pair pliers blue handles +pliers/pliers_5,tool grabs small wires +apple/apple_2,red apple stem removed +apple/apple_2,apple +apple/apple_2,red apple +apple/apple_2,red delicious apple +apple/apple_2,red apple red delicious varietal +pliers/pliers_6,pair pliers +pliers/pliers_6,pair pliers +pliers/pliers_6,pair pliers +pliers/pliers_6,pair needlenose pliers black grips +pliers/pliers_6,pair pliers +pear/pear_4,brown pear laying side +pear/pear_4,brown pear +pear/pear_4,brown pear +pear/pear_4,pear ripe +pear/pear_4,pear +marker/marker_6,ink pen +marker/marker_6,black pen +marker/marker_6,pen +keyboard/keyboard_3,computer keyboard +keyboard/keyboard_3,keyboard +keyboard/keyboard_3,black keyboard +keyboard/keyboard_3,black computer keyboard +keyboard/keyboard_3,computer keyboard +hand_towel/hand_towel_4,folded grey washcloth can used dry wet +hand_towel/hand_towel_4,folded towel +hand_towel/hand_towel_4,brown towel sitting white red plate +hand_towel/hand_towel_4,beige towel +hand_towel/hand_towel_4,soft absorbent cloth called towel towels used dry water peoples hands items +coffee_mug/coffee_mug_1,mug red grey design white outlines people text +coffee_mug/coffee_mug_1,coffee mug +coffee_mug/coffee_mug_1,coffee mug +coffee_mug/coffee_mug_1,white ceramic coffee mug red green design +coffee_mug/coffee_mug_1,mug +shampoo/shampoo_2,bottle bathroom essential +shampoo/shampoo_2,bottle shampoo +shampoo/shampoo_2,bottle shampoo +shampoo/shampoo_2,bottle shampoo conditioner +shampoo/shampoo_2,white plastic bottle similar shampoo bottle +lemon/lemon_1,lemon +lemon/lemon_1,lemon produce sticker +lemon/lemon_1,lemon +lemon/lemon_1,dull orange colored orange sticker side +lemon/lemon_1,lemon yellow also sticker label +food_box/food_box_7,box wheat thins +food_box/food_box_7,box crackers +food_box/food_box_7,box wheat thins yellow box used snacking +food_box/food_box_7,yellow cardboard box wheat thins +food_box/food_box_7,yellow box wheat thins +potato/potato_6,large potato +potato/potato_6,potato +potato/potato_6,baking potato +potato/potato_6,large baking potato +potato/potato_6,potato +toothbrush/toothbrush_4,toothbrush +toothbrush/toothbrush_4,toothbrush +toothbrush/toothbrush_4,white purple toothbrush +toothbrush/toothbrush_4,toothbrush +toothbrush/toothbrush_4,toothbrush +food_bag/food_bag_5,bag chips sort cant read label +food_bag/food_bag_5,bag chips +food_bag/food_bag_5,package potato chips +food_bag/food_bag_5,bag food +food_box/food_box_1,box sugar substitute +food_box/food_box_1,box sugar +food_box/food_box_1,box sugar subtitute box red white green stripe +food_box/food_box_1,box food +food_box/food_box_1,package sweetener +banana/banana_1,banana plate +banana/banana_1,yellow banana +banana/banana_1,banana +banana/banana_1,banana +banana/banana_1,ripened banana +keyboard/keyboard_5,keyboard appears mechanical +keyboard/keyboard_5,black computer keyboard +keyboard/keyboard_5,object long black keyboard +keyboard/keyboard_5,computer keyboard +keyboard/keyboard_5,computer keyboard +water_bottle/water_bottle_5,bottled water +water_bottle/water_bottle_5,bottle water blue label looking side cant see brand +water_bottle/water_bottle_5,bottle water +water_bottle/water_bottle_5,bottle water +water_bottle/water_bottle_5,plastic water bottle +potato/potato_4,potato usually cooked eaten starchy vegetable +potato/potato_4,large baking potato +potato/potato_4,potato +potato/potato_4,potato +keyboard/keyboard_4,black computer keyboard +keyboard/keyboard_4,computer keyboard +keyboard/keyboard_4,computer keyboard +keyboard/keyboard_4,computer keyboard +keyboard/keyboard_4,black computer keyboard +calculator/calculator_1,calculator type display raised bit easier read +calculator/calculator_1,calculator brown black yellow keys +calculator/calculator_1,calculator +calculator/calculator_1,calculator +calculator/calculator_1,calculator mostly flat black grey yellow buttons +potato/potato_3,potato +potato/potato_3,large baking potato +potato/potato_3,yellow potato +potato/potato_3,potato +potato/potato_3,potato +glue_stick/glue_stick_4,red glue stick +glue_stick/glue_stick_4,glue stick +glue_stick/glue_stick_4,can spray +glue_stick/glue_stick_4,can spray cheese +food_box/food_box_6,box pretzel thins +food_box/food_box_6,cardboard box containing snack food +food_box/food_box_6,box pretzel thins +food_box/food_box_6,white box pretzel thins food pictured front +food_box/food_box_6,box pretzel thins box mostly white picture pretzels +water_bottle/water_bottle_1,bottle water +water_bottle/water_bottle_1,clear bottle water +water_bottle/water_bottle_1,bottle water white cap +water_bottle/water_bottle_1,object bottle water green blue label +water_bottle/water_bottle_1,plastic water bottle +food_bag/food_bag_5,pack snack +food_bag/food_bag_5,bag chips +food_bag/food_bag_5,bag chips +food_bag/food_bag_5,bag market pantry potato chips white red +tomato/tomato_8,red tomato +tomato/tomato_8,fruit round red best salads sandwiches +tomato/tomato_8,tomato small blemish +tomato/tomato_8,tomato +tomato/tomato_8,tomato +potato/potato_2,brown ball +potato/potato_2,red potato +potato/potato_2,red potato +potato/potato_2,red fruit looks like tomato can eaten raw cooked sliced mashed +food_jar/food_jar_1,jar food appears jelly fruity food thats ready eat +food_jar/food_jar_1,jar grape jelly +food_jar/food_jar_1,jar jelly +food_jar/food_jar_1,jar jam jelly +food_jar/food_jar_1,jar jelly +tomato/tomato_3,tomato red ripe tomato +tomato/tomato_3,red tomato +tomato/tomato_3,tomato +tomato/tomato_3,red tomato +tomato/tomato_3,tomato +dry_battery/dry_battery_5,battery +dry_battery/dry_battery_5,battery +dry_battery/dry_battery_5,small battery electrical charge stored called cell +dry_battery/dry_battery_5,battery cylinder shaped perhaps size c +dry_battery/dry_battery_5,flash light uses two c cell batteries power batteries positive end nipple negative end flat +toothpaste/toothpaste_1,tube colgate toothpaste minty +toothpaste/toothpaste_1,toothpaste paste gel dentifrice used toothbrush clean maintain aesthetics health teeth +toothpaste/toothpaste_1,tube toothpaste +toothpaste/toothpaste_1,tube toothpaste +toothpaste/toothpaste_1,tube colgate toothpaste +bell_pepper/bell_pepper_1,red bell pepper mild crunchy pepper +bell_pepper/bell_pepper_1,red bell pepper thick green stem +bell_pepper/bell_pepper_1,orange pepper +bell_pepper/bell_pepper_1,bell pepper +bell_pepper/bell_pepper_1,orange pepper +pear/pear_3,pear +pear/pear_3,pear +pear/pear_3,bosc pear +pear/pear_3,brown pear +pear/pear_3,pear brown stem +scissors/scissors_3,scissors known cooking well arts crafts +scissors/scissors_3,small blue scissor could used crafts +scissors/scissors_3,pair scissors +scissors/scissors_3,pair scissors +scissors/scissors_3,pair scissors handles blue ideal cutting paper +kleenex/kleenex_3,blue box klennex tissue +kleenex/kleenex_3,box facial tissue looks like kleenex brand +kleenex/kleenex_3,tissues used clearing stuffed nose +kleenex/kleenex_3,box facial tissue +kleenex/kleenex_3,box kleenex +food_jar/food_jar_3,jar heinz gravy +food_jar/food_jar_3,jar heinz gravy +food_jar/food_jar_3,jar food +food_jar/food_jar_3,jar food mostly red label +sponge/sponge_11,kitchen sponge +sponge/sponge_11,teal colored sponge +lemon/lemon_1,yellow lemon sticker label +lemon/lemon_1,lemon got dimple side +lemon/lemon_1,yellow lemon sticker +lemon/lemon_1,yellow lemon +lemon/lemon_1,lemon +lime/lime_1,lime +lime/lime_1,lime +lime/lime_1,green lime +lime/lime_1,lime product sticker +lime/lime_1,lime +hand_towel/hand_towel_3,green washcloth +hand_towel/hand_towel_3,dish cloth +hand_towel/hand_towel_3,green towel +hand_towel/hand_towel_3,green towel folded small square +hand_towel/hand_towel_3,towel placed plate +camera/camera_2,camera +camera/camera_2,dsl camera +camera/camera_2,picture digital camera memory card popping top also key chain hanging +camera/camera_2,camera +camera/camera_2,black camera +food_box/food_box_4,box golden oreo funstix +food_box/food_box_4,box oreo cookies +food_box/food_box_4,box oreo sticks +food_box/food_box_4,rectangular shaped box writing one side nutritional facts +food_box/food_box_4,box oreo cookies +soda_can/soda_can_3,can soda +soda_can/soda_can_3,object can soda silver green +soda_can/soda_can_3,can soda +soda_can/soda_can_3,unopened can soda +soda_can/soda_can_3,green can soft drink could sprite seven +water_bottle/water_bottle_1,clear bottle water +water_bottle/water_bottle_1,plastic bottle liquid cap white label mostly green +water_bottle/water_bottle_1,bottle water +water_bottle/water_bottle_1,plastic water bottle +water_bottle/water_bottle_1,bottle water +garlic/garlic_2,bulb garlic +garlic/garlic_2,clove garlic +garlic/garlic_2,bulb fresh garlic +garlic/garlic_2,bulb garlic +sponge/sponge_10,kitchen scrubbing sponge +sponge/sponge_10,yellow dish scrubber +sponge/sponge_10,yellow something +water_bottle/water_bottle_6,bottled water convenient way stay refreshed +water_bottle/water_bottle_6,object bottle fiji water +water_bottle/water_bottle_6,bottle water cant see label judging shape id guess fiji brand +water_bottle/water_bottle_6,bottle purified water +water_bottle/water_bottle_6,full bottle figi water yet opened +pliers/pliers_4,pair pliers +pliers/pliers_4,cutting player +pliers/pliers_4,pair pliers metal pliers brown rubber grips +pliers/pliers_4,pair pliers +pliers/pliers_4,pair pliers +food_can/food_can_6,can tomatoes +food_can/food_can_6,can market pantry tomatoes label red white +food_can/food_can_6,metal can half label red rest white picture tomatoes bowl soup +food_can/food_can_6,can food food tomato product +food_can/food_can_6,can tomatoes +food_box/food_box_12,box crackers +food_box/food_box_12,box crackers +food_box/food_box_12,box crackers +food_box/food_box_12,box crackers +food_box/food_box_12,green box crackers blue stripe +toothbrush/toothbrush_1,toothbrush +toothbrush/toothbrush_1,red white toothbrush +toothbrush/toothbrush_1,red colored tooth brush +toothbrush/toothbrush_1,iz red white toothbrush +toothbrush/toothbrush_1,object white red toothbrush +food_box/food_box_10,box crackers +food_box/food_box_10,box something +food_box/food_box_10,box cereal +food_box/food_box_10,box food preparation required food can eaten +sponge/sponge_8,yellow sponge blue scrubbing pad +sponge/sponge_8,sponged used clean dishes +sponge/sponge_8,sponge +sponge/sponge_8,blue yellow sponge +food_can/food_can_5,can food +food_can/food_can_5,can food white red label +food_can/food_can_5,can soup +food_can/food_can_5,can beans +food_can/food_can_5,can soup +toothbrush/toothbrush_3,toothbrush +toothbrush/toothbrush_3,toothbrush +toothbrush/toothbrush_3,white light blue toothbrush +toothbrush/toothbrush_3,light blue toothbrush +toothbrush/toothbrush_3,tooth brush used oral hygiene +bowl/bowl_4,soup cup +bowl/bowl_4,empty dinner bowl +bowl/bowl_4,white bowl +bowl/bowl_4,bowl +bowl/bowl_4,white bowl round deep +instant_noodles/instant_noodles_7,package ramen noodles +instant_noodles/instant_noodles_7,package ramen noodles +instant_noodles/instant_noodles_7,package food +coffee_mug/coffee_mug_8,cup stripes +coffee_mug/coffee_mug_8,coffee mug +coffee_mug/coffee_mug_8,empty coffee mug +coffee_mug/coffee_mug_8,white ceramic mug 5 various sized blue stripes going way around +coffee_mug/coffee_mug_8,mug +banana/banana_2,sweet fruit called banana can eaten raw cooked making banana bread +banana/banana_2,banana +banana/banana_2,yellow banana +banana/banana_2,banana plate +banana/banana_2,banana fruit used eating +cell_phone/cell_phone_4,smartphone +cell_phone/cell_phone_4,cellphone +cell_phone/cell_phone_4,cellphone used communicate persons +cell_phone/cell_phone_4,cell phone +cell_phone/cell_phone_4,digital camera can record pictures later display editing computer +water_bottle/water_bottle_2,bottle water +water_bottle/water_bottle_2,plastic water bottle +water_bottle/water_bottle_2,plastic bottle water +water_bottle/water_bottle_2,bottle clear liquid +water_bottle/water_bottle_2,bottle talking rain bottled water white blue label +calculator/calculator_1,desk calculator looks like older model +calculator/calculator_1,calculator +calculator/calculator_1,grey black colored calculator +calculator/calculator_1,calculator +calculator/calculator_1,another calculator solving math problems +keyboard/keyboard_1,keyboard +keyboard/keyboard_1,grey keyboard white keys +keyboard/keyboard_1,computer keyboard +keyboard/keyboard_1,computer keyboard +keyboard/keyboard_1,apple keyboard +food_can/food_can_10,can sugar added peaches +food_can/food_can_10,can sugar added mandarin oranges drawing oranges +food_can/food_can_10,metal can food label mostly yellow blue shape white text +food_can/food_can_10,can mandarin oranges +food_can/food_can_10,can fruit +orange/orange_3,orange +orange/orange_3,orange +orange/orange_3,orange +orange/orange_3,orange +orange/orange_3,orange +stapler/stapler_8,stapler +greens/greens_4,green leafy mass looks vegetable either celery pepper +greens/greens_4,lettuce plate +greens/greens_4,baby bok choy +greens/greens_4,green vegetable +rubber_eraser/rubber_eraser_2,white pencil eraser blue cardboard wrapper +rubber_eraser/rubber_eraser_2,eraser eraser blue label +tomato/tomato_3,red tomato +tomato/tomato_3,red round tomatoe piece vine top +tomato/tomato_3,ripe red tomato +tomato/tomato_3,red tomato +tomato/tomato_3,tomato +scissors/scissors_2,pair scissors orange handle +scissors/scissors_2,pair orange handled scissors +scissors/scissors_2,pair metal scissors orange plastic handle +scissors/scissors_2,flip flop sandal +scissors/scissors_2,pair scissors +binder/binder_2,purple binder +binder/binder_2,purple binder +binder/binder_2,purple plastic school binder approximately half inch +binder/binder_2,three ring binder holds paper together rings covers +binder/binder_2,school folder +flashlight/flashlight_5,flashlight +flashlight/flashlight_5,flashlight +flashlight/flashlight_5,yellow black flashlight +flashlight/flashlight_5,yellow black flashlight +flashlight/flashlight_5,yellow flashlight looks powerful +instant_noodles/instant_noodles_7,package ramen mostly pink +instant_noodles/instant_noodles_7,package ramen noodles +instant_noodles/instant_noodles_7,package ramen noodles +instant_noodles/instant_noodles_7,package food possibly ramen +instant_noodles/instant_noodles_7,pack ramen +scissors/scissors_1,pair metal scissors orange gray plastic handle +scissors/scissors_1,scissors black handle +scissors/scissors_1,pair scissors handles orange dark grey +scissors/scissors_1,pair scissors +scissors/scissors_1,pair scissors +water_bottle/water_bottle_4,bottle water +water_bottle/water_bottle_4,flavored water +water_bottle/water_bottle_4,bottle water +water_bottle/water_bottle_4,plastic water bottle +water_bottle/water_bottle_4,bottle water blue purple label +garlic/garlic_4,clove garlic +garlic/garlic_4,shallot +garlic/garlic_4,shallot +food_cup/food_cup_3,container yogurt +food_cup/food_cup_3,unused yogurt cup +food_cup/food_cup_3,container yogurt +food_cup/food_cup_3,container yogurt sealed foil lid +food_cup/food_cup_3,container yogurt +stapler/stapler_2,stapler joins two pieces paper together +stapler/stapler_2,black stapler +stapler/stapler_2,black grey stapler +stapler/stapler_2,stapler +stapler/stapler_2,black stapler +pitcher/pitcher_2,container boiling liquids +pitcher/pitcher_2,kettle pitcher hot liquids +pitcher/pitcher_2,kettle can used tea coffee +pitcher/pitcher_2,coffee pot +pitcher/pitcher_2,coffee pot +tomato/tomato_6,tomato produce sticker +tomato/tomato_6,object small red tomato +tomato/tomato_6,red tomato +tomato/tomato_6,red tomato +tomato/tomato_6,tomato +cell_phone/cell_phone_1,silver black cell phone +cell_phone/cell_phone_1,cell phone +cell_phone/cell_phone_1,cell phone +cell_phone/cell_phone_1,old cellphone +cell_phone/cell_phone_1,cell phone +lightbulb/lightbulb_3,round white bulb +lightbulb/lightbulb_3,object light bulb laying side +lightbulb/lightbulb_3,light bulb +lightbulb/lightbulb_3,light bulb +lightbulb/lightbulb_3,light bulb +banana/banana_3,ripe banana +banana/banana_3,yellow banana +banana/banana_3,banana plate +banana/banana_3,banana +banana/banana_3,banana mostly yellow peeled +calculator/calculator_3,rectangular calculator flat screen many black keys 1 red key +calculator/calculator_3,calculator +calculator/calculator_3,white calculator black buttons +calculator/calculator_3,black white calculatorthe calculator looks old +calculator/calculator_3,calculator +food_box/food_box_7,yellow box crackers +food_box/food_box_7,card board box shaped like cereal box contains plastic bag inside things inside +food_box/food_box_7,box wheat thins +food_box/food_box_7,yellow box wheat crackers used snacking +food_box/food_box_7,box wheat thins +instant_noodles/instant_noodles_2,package noodles +instant_noodles/instant_noodles_2,looks like bag ramen sort dry noodles bag white pink writing look like english +instant_noodles/instant_noodles_2,package noodles +instant_noodles/instant_noodles_2,package ramen soup +instant_noodles/instant_noodles_2,package food possibly ramen +binder/binder_2,purple binder +binder/binder_2,blue file folder +binder/binder_2,binder +binder/binder_2,school folder +binder/binder_2,purple folder +coffee_mug/coffee_mug_8,white stripe coffee mug +coffee_mug/coffee_mug_8,coffee mug +coffee_mug/coffee_mug_8,mug could ceramic mug stripes good coffee +coffee_mug/coffee_mug_8,called cup mug commonly used hold drink tea coffee +coffee_mug/coffee_mug_8,mug +food_can/food_can_2,can soup +food_can/food_can_2,can campbells soup small red white label +food_can/food_can_2,can campbells soup red white label +food_can/food_can_2,can soup +food_can/food_can_2,can campbells soup +sponge/sponge_10,lemon +sponge/sponge_10,yellow round something +apple/apple_5,apple green +apple/apple_5,green apple +apple/apple_5,apple green sticker label +apple/apple_5,green apple +apple/apple_5,green apple +tomato/tomato_5,red cherry tomato sticker +tomato/tomato_5,red tomato +tomato/tomato_5,red tomato +tomato/tomato_5,looks like ripe tomato nice red color +marker/marker_9,yellow highlighter +marker/marker_9,yellow marker used highlight words sentences paper +marker/marker_9,magic marker +marker/marker_9,yellow marker black top +marker/marker_9,dry erase marker +glue_stick/glue_stick_2,glue stick +glue_stick/glue_stick_2,glue stick +glue_stick/glue_stick_2,container lip balm +glue_stick/glue_stick_2,can spray +lemon/lemon_5,yellow lemon +lemon/lemon_5,lemon +lemon/lemon_5,yellow lemon +lemon/lemon_5,lemon +lemon/lemon_5,lemon +stapler/stapler_3,stapler +stapler/stapler_3,object tool pushed stack papers releases metal staple holds papers together pressure exterted tool metal staples prongs bent holds place +stapler/stapler_3,stapler +stapler/stapler_3,black stapler +stapler/stapler_3,object black stapler +food_bag/food_bag_2,bag chips crackers similar type food +food_bag/food_bag_2,pack snacks looks like cookies +food_bag/food_bag_2,bag chips +food_bag/food_bag_2,bag chicken strips +keyboard/keyboard_2,keyboard used computer +keyboard/keyboard_2,object long keys made plastic +keyboard/keyboard_2,keyboard +keyboard/keyboard_2,keyboarad used typing +keyboard/keyboard_2,computer keyboard +garlic/garlic_1,bulb garlic +garlic/garlic_1,round cram tan colored object looks similar gord +garlic/garlic_1,head garlic +plate/plate_7,plate +plate/plate_7,plate +plate/plate_7,bowl normally used soups deserts part table setting +plate/plate_7,empty dinner plate +plate/plate_7,bowl +bowl/bowl_3,white bowl +bowl/bowl_3,bowl +bowl/bowl_3,white bowl +bowl/bowl_3,bowl +bowl/bowl_3,empty dinner bowl +water_bottle/water_bottle_1,bottle water +water_bottle/water_bottle_1,clear bottle water +water_bottle/water_bottle_1,object bottle water drink white cap greenblue label +water_bottle/water_bottle_1,plastic water bottle +water_bottle/water_bottle_1,bottle water white cap +food_bag/food_bag_1,bag smack crackers +food_bag/food_bag_1,ready mix food product bag +food_bag/food_bag_1,bag snacks bag light blue picture fruit +food_bag/food_bag_1,bag holds snack food humans eat snack food part diet +food_bag/food_bag_1,package food +food_can/food_can_3,can soup +food_can/food_can_3,can red white label +food_can/food_can_3,can food +food_can/food_can_3,can soup +orange/orange_2,grapefruit +orange/orange_2,sweet fruit called orange can eaten raw cooked +pitcher/pitcher_2,coffee pot used make coffee +pitcher/pitcher_2,coffee pot carafe silver black top lid +pitcher/pitcher_2,pitcher part electric kettle +pitcher/pitcher_2,coffee pot +pitcher/pitcher_2,coffee pot +banana/banana_1,ripe banana +banana/banana_1,sweet fruit called banana can eaten raw cooked banana bread +banana/banana_1,banana +banana/banana_1,banana plate +banana/banana_1,banana +water_bottle/water_bottle_10,water bottle +water_bottle/water_bottle_10,red water bottle label says bpa free +water_bottle/water_bottle_10,plastic water bottle +water_bottle/water_bottle_10,empty water bottle +water_bottle/water_bottle_10,plastic cup top straw dont spill drink +food_cup/food_cup_5,container yogurt +food_cup/food_cup_5,cup yogurt +food_cup/food_cup_5,cup yogurt could blueberry flavour +food_cup/food_cup_5,container yogurt +onion/onion_2,whole garlic also resembles white onion +onion/onion_2,onion +onion/onion_2,white onion unpeeled +onion/onion_2,onion +onion/onion_2,unpeeled white onion +pliers/pliers_1,pair pliers +pliers/pliers_1,pair pliers +pliers/pliers_1,plier +pliers/pliers_1,pair pliers +pliers/pliers_1,pair bent nose pliars handles blue +hand_towel/hand_towel_1,white blanket foled +hand_towel/hand_towel_1,folded towel +hand_towel/hand_towel_1,folded towel +dry_battery/dry_battery_2,flashlight +dry_battery/dry_battery_2,alkaline battery gold black +plate/plate_7,plate +plate/plate_7,plate +plate/plate_7,bowl normally used soups deserts part table setting +plate/plate_7,empty dinner plate +plate/plate_7,white plate +stapler/stapler_2,stapler +stapler/stapler_2,black stapler +stapler/stapler_2,stapler +stapler/stapler_2,stapler +sponge/sponge_9,tomato +notebook/notebook_2,notebook +notebook/notebook_2,notebook 70 pages spiral yellow +notebook/notebook_2,yellow spiral bound notebook +notebook/notebook_2,writing notebook +notebook/notebook_2,yellow square shaped object writing bottom right corner bar code top left corner +pliers/pliers_4,pair pliers +pliers/pliers_4,pair pliers +pliers/pliers_4,pair pliers +pliers/pliers_4,pair pliers used grip things +pliers/pliers_4,pair pliers +greens/greens_3,baby bok choy +greens/greens_3,kale plate +greens/greens_3,greens leaf vegetable +greens/greens_3,bok choi +potato/potato_6,potato +potato/potato_6,potato +potato/potato_6,large baking potato +potato/potato_6,something looks like potato +water_bottle/water_bottle_2,small bottle water +water_bottle/water_bottle_2,plastic bottle looks holding water can purposed many times +water_bottle/water_bottle_2,bottle water +water_bottle/water_bottle_2,plastic water bottle +water_bottle/water_bottle_2,bottle water +food_box/food_box_11,box white cheddar cheez +food_box/food_box_11,box white cheddar cheez +food_box/food_box_11,box cheez +food_box/food_box_11,box white cheddar cheez +food_box/food_box_11,box cheese crackers +mushroom/mushroom_1,mushroom +mushroom/mushroom_1,clove garlic +toothbrush/toothbrush_1,red toothbrush +toothbrush/toothbrush_1,toothbrush +toothbrush/toothbrush_1,pen marker +toothbrush/toothbrush_1,white red toothbrush +toothbrush/toothbrush_1,tooth brush +marker/marker_6,magic marker +marker/marker_6,black pen blue grips +marker/marker_6,pen +toothpaste/toothpaste_1,colgate brand tooth paste +toothpaste/toothpaste_1,tube colgate toothpaste +toothpaste/toothpaste_1,tube colgate toothpaste +toothpaste/toothpaste_1,tube toothpaste +toothpaste/toothpaste_1,full tube colgate toothpaste +soda_can/soda_can_6,can welchs juice can mostly yellow +soda_can/soda_can_6,yellow can welchs +soda_can/soda_can_6,champagne color welchs can juice +soda_can/soda_can_6,can welchs soda +soda_can/soda_can_6,can soda juice +apple/apple_1,red delicious apple +apple/apple_1,apple +apple/apple_1,one ripe red apple +apple/apple_1,apple sweet edible fruit +coffee_mug/coffee_mug_8,coffee mug +coffee_mug/coffee_mug_8,coffee mug +coffee_mug/coffee_mug_8,coffee mug +coffee_mug/coffee_mug_8,empty white coffee mug ring design +coffee_mug/coffee_mug_8,mug +cereal_box/cereal_box_2,box cereal +cereal_box/cereal_box_2,box breakfast cereal standing upright much taller thick color mostly brown front top side facing us mostly white black type nutritional panel +cereal_box/cereal_box_2,box cereal +cereal_box/cereal_box_2,box cereal +cereal_box/cereal_box_2,box chex cereal +cap/cap_3,black hat +cap/cap_3,black baseball hat bulldog +cap/cap_3,baseball cap +cap/cap_3,baseball hat +cap/cap_3,black baseball cap image bulldog +apple/apple_4,apple +apple/apple_4,yellow apple +apple/apple_4,yellow golden delicious apple +apple/apple_4,object green apple yellow tinge +tomato/tomato_4,tomato +tomato/tomato_4,tomato +tomato/tomato_4,red tomato +tomato/tomato_4,looks like tomato light red yellow coloring +tomato/tomato_4,orange red tomato +scissors/scissors_4,pair scissors +scissors/scissors_4,scissors blue yellow handle +scissors/scissors_4,pair scissors +scissors/scissors_4,pair scissors plastic rubber coating handle +scissors/scissors_4,pair scissors +pliers/pliers_2,pair pliers +pliers/pliers_2,pair pliers +pliers/pliers_2,pliers +pliers/pliers_2,plier +coffee_mug/coffee_mug_6,bowl +coffee_mug/coffee_mug_6,coffee mug +coffee_mug/coffee_mug_6,yellow bowl +coffee_mug/coffee_mug_6,coffee cup +coffee_mug/coffee_mug_6,object yellow handle hole center +apple/apple_2,apple +apple/apple_2,red apple +apple/apple_2,apple +apple/apple_2,red delicious apple +apple/apple_2,red delicious apple +apple/apple_2,red apple +bowl/bowl_3,empty dinner bowl +bowl/bowl_3,small white bowl +bowl/bowl_3,white bowl +bowl/bowl_3,bowl +bowl/bowl_3,empty white bowl +bell_pepper/bell_pepper_1,red pepper +bell_pepper/bell_pepper_1,red bell pepper +bell_pepper/bell_pepper_1,red bell pepper small bruise side +bell_pepper/bell_pepper_1,orange bell pepper +bell_pepper/bell_pepper_1,red bell pepper sticker +cereal_box/cereal_box_3,box kelloggs special k cereal +cereal_box/cereal_box_3,kellogg brand special k low calorie breakfast cereal +cereal_box/cereal_box_3,box special k cereal +cereal_box/cereal_box_3,special k cereal +cereal_box/cereal_box_3,box chocolate special k +sponge/sponge_1,kitchen sponge +sponge/sponge_1,orange sponge +sponge/sponge_1,orange sponge +sponge/sponge_1,orange sponge +sponge/sponge_1,orange dish sponge +kleenex/kleenex_1,box tissues +kleenex/kleenex_1,box facial tissue +kleenex/kleenex_1,box kleenex abstract grey designs +kleenex/kleenex_1,tissue box flowers +kleenex/kleenex_1,opened grey tissue box flower design tissue ready used pulled box +marker/marker_4,marker +marker/marker_4,ink pen +marker/marker_4,magic marker +mushroom/mushroom_3,chicken drumstick +mushroom/mushroom_3,uncertain +mushroom/mushroom_3,gourds used decorations fall season +cell_phone/cell_phone_5,smartphone +cell_phone/cell_phone_5,mobile phone +cell_phone/cell_phone_5,smartphone +cell_phone/cell_phone_5,black cellular phone +cell_phone/cell_phone_5,black silver smart phone +marker/marker_8,red sharpie +marker/marker_8,felt tipped marker black cap piece felt delivers ink tube make marks paper anything else +marker/marker_8,red highlighter pen +marker/marker_8,red marker +marker/marker_8,magic marker +pliers/pliers_6,pair pliers +pliers/pliers_6,pliers made various shapes sizes many uses used gripping something round like pipe rod +pliers/pliers_6,black pliars +pliers/pliers_6,pliers +pliers/pliers_6,pair pliers +food_can/food_can_7,can soup +food_can/food_can_7,can food +food_can/food_can_7,can soup +food_can/food_can_7,easy open can soup can opener required soup +food_can/food_can_7,can soup +food_box/food_box_9,green box crackers +food_box/food_box_9,box food +food_box/food_box_9,box food +food_box/food_box_7,box crackers +food_box/food_box_7,yellow box wheat thins +food_box/food_box_7,box crackers +food_box/food_box_7,box wheat thins +food_box/food_box_7,box wheat thins yellow +ball/ball_7,soccer ball mostly white many black pentagons white hexagons +ball/ball_7,soccer ball used kick ball around game called soccer +ball/ball_7,soccer ball +ball/ball_7,soccer ball +ball/ball_7,soccer ball toy +notebook/notebook_3,notebook +notebook/notebook_3,writing notebook +notebook/notebook_3,notebook +notebook/notebook_3,spiral bound notebook green white cover +notebook/notebook_3,spiral bound notebook +food_cup/food_cup_5,packaged cup blueberry yogurt peel lid +food_cup/food_cup_5,container yogurt +food_cup/food_cup_5,container yogurt +food_cup/food_cup_5,cup blueberry yogurt +food_cup/food_cup_5,cup yogurt picture blueberries +notebook/notebook_1,red spiral notebook +notebook/notebook_1,spiral bound notebook +notebook/notebook_1,red single subject notebook +notebook/notebook_1,red notebook sitting top white object note book 70 pages college rule +notebook/notebook_1,writing notebook +food_cup/food_cup_1,food cup used store food items +food_cup/food_cup_1,container yogurt +food_cup/food_cup_1,small plastic container holding food called yogurt yogurt dairy product made using active bacteria +food_cup/food_cup_1,container yogurt +food_cup/food_cup_1,container yogurt +rubber_eraser/rubber_eraser_4,eraser article stationery used removing writing paper skin +rubber_eraser/rubber_eraser_4,pink eraser +rubber_eraser/rubber_eraser_4,pencil eraser +rubber_eraser/rubber_eraser_4,rubber eraser +banana/banana_4,unripe banana plantain +banana/banana_4,banana fruit gives good amount protein bananas also good cereal +banana/banana_4,green banana +banana/banana_4,plantain plate +banana/banana_4,banana +onion/onion_4,white onion +onion/onion_4,onion +onion/onion_4,white onion +onion/onion_4,white onion +onion/onion_4,onion +food_box/food_box_3,box fiber one pastries +food_box/food_box_3,box fiber one +food_box/food_box_3,box fiber one bars +food_box/food_box_3,cardboard box fiber one +food_box/food_box_3,packet fiber one looked like snacks +stapler/stapler_6,black stapler +stapler/stapler_6,stapler +stapler/stapler_6,stapler +stapler/stapler_6,black stapler +stapler/stapler_6,stapler +glue_stick/glue_stick_6,tube glue +glue_stick/glue_stick_6,can spray +glue_stick/glue_stick_6,glue stick +glue_stick/glue_stick_6,elmers glue stick +glue_stick/glue_stick_6,stick glue used hold things together +coffee_mug/coffee_mug_5,mug +coffee_mug/coffee_mug_5,coffee mug +coffee_mug/coffee_mug_5,drinking cup +coffee_mug/coffee_mug_5,white coffee mug +coffee_mug/coffee_mug_5,coffee cup +cereal_box/cereal_box_3,box special k cereal +cereal_box/cereal_box_3,box kellogs cereals +cereal_box/cereal_box_3,box cereal +cereal_box/cereal_box_3,cereal called special k used quick breakfast +cereal_box/cereal_box_3,box special k cereal +cereal_box/cereal_box_3,box cereal +food_box/food_box_11,box cheez +food_box/food_box_11,box cheez +food_box/food_box_11,box cheez +food_box/food_box_11,box cheez think says white cheddar flavored +food_box/food_box_11,box white cheddar cheeze +food_cup/food_cup_1,cup yogurt +food_cup/food_cup_1,yoplait yogurt +food_cup/food_cup_1,container yogurt +food_cup/food_cup_1,container yogurt +food_cup/food_cup_1,container yogurt +plate/plate_3,plate +plate/plate_3,blue white plate +plate/plate_3,empty white plate blue design +plate/plate_3,ceramic plate +plate/plate_3,empty dinner bowl +tomato/tomato_8,red tomato +tomato/tomato_8,sweet fruit called tomato can eaten raw cooked +tomato/tomato_8,red tomato +tomato/tomato_8,tomato +tomato/tomato_8,tomato +lime/lime_3,green fruit probably lime +lime/lime_3,green lime +lime/lime_3,fruit green lime +lime/lime_3,lime +bell_pepper/bell_pepper_2,yellow pepper +bell_pepper/bell_pepper_2,yellow bell pepper +bell_pepper/bell_pepper_2,pepper quite tasty +bell_pepper/bell_pepper_2,yellow pepper +bell_pepper/bell_pepper_2,yellow bell pepper +tomato/tomato_2,cherry tomato +tomato/tomato_2,red tomato +tomato/tomato_2,tomato +soda_can/soda_can_5,can diet dr pepper white red printing +soda_can/soda_can_5,white can dr pepper +soda_can/soda_can_5,can diet dr pepper +soda_can/soda_can_5,can drpepper +soda_can/soda_can_5,can soda +potato/potato_4,potato +potato/potato_4,large baking potato +potato/potato_4,yellow potato +potato/potato_4,potato +sponge/sponge_6,sponge +sponge/sponge_6,rectangular sponge yellow face pink side +sponge/sponge_6,sponge usually used clean holds water little holes +sponge/sponge_6,kitchen sponge +sponge/sponge_6,dish sponge +notebook/notebook_4,spiral bound notebook pad paper held together wire spiral one side +notebook/notebook_4,blue spiral bound notebook +notebook/notebook_4,notebook blue 70 pages +notebook/notebook_4,blue spiraled notebook +notebook/notebook_4,writing notebook +cap/cap_2,camouflage hat people wear stay hidden +cap/cap_2,camo ball cap +cap/cap_2,army hat +cap/cap_2,camo hat +cap/cap_2,military camouflaged hat +food_box/food_box_8,box crackers +food_box/food_box_8,box chicken biscuit snacks blue box +food_box/food_box_8,box crackers cookies +food_box/food_box_8,box crackers +comb/comb_2,object black hair brush light blue accents +comb/comb_2,hairbrush +comb/comb_2,hair brush +comb/comb_2,hair brush may also called wig brush brush heavy duty brushing thick long hair +comb/comb_2,hairbrush +toothpaste/toothpaste_2,long tube crest toothpaste can stand upright lid +toothpaste/toothpaste_2,tube toothpaste +toothpaste/toothpaste_2,tube crest toothpaste +toothpaste/toothpaste_2,small tube crest toothpaste +toothpaste/toothpaste_2,tube crest toothpaste +pliers/pliers_5,pair needle nose pliers +pliers/pliers_5,pair pliers +pliers/pliers_5,pliers +pliers/pliers_5,pair pliers +pliers/pliers_5,pliers used gripping something round like pipe rod +bell_pepper/bell_pepper_2,yellow bell pepper +bell_pepper/bell_pepper_2,yellow pepper +bell_pepper/bell_pepper_2,yellow pepper +bell_pepper/bell_pepper_2,yellow bell pepper +bell_pepper/bell_pepper_2,yellow pepper +orange/orange_3,orange +orange/orange_3,orange +orange/orange_3,orange +orange/orange_3,orange +food_bag/food_bag_5,bag chips +food_bag/food_bag_5,kind bag chips cant read label picture almost looks like chips cheese curls +food_bag/food_bag_5,bag chips +food_bag/food_bag_5,bag chips +food_bag/food_bag_5,bag chips +dry_battery/dry_battery_5,energizer battery +dry_battery/dry_battery_5,blac silver battery +dry_battery/dry_battery_5,small battery electrical charge stored called cell +dry_battery/dry_battery_5,battery +dry_battery/dry_battery_5,battery +marker/marker_6,magic marker +marker/marker_6,marker +keyboard/keyboard_2,black grey wired keybaord top sort white plastic pedestal +keyboard/keyboard_2,computer keyboard +keyboard/keyboard_2,keyboard desktop computer black +keyboard/keyboard_2,computer keyboard +keyboard/keyboard_2,keyboard use type messages words onto computer screen +coffee_mug/coffee_mug_4,white coffee cup blue rim cup empty +coffee_mug/coffee_mug_4,coffee mug +coffee_mug/coffee_mug_4,mug +coffee_mug/coffee_mug_4,ceramic mug +coffee_mug/coffee_mug_4,coffee mug +bowl/bowl_6,bowl +bowl/bowl_6,blue bowl floral design inside +bowl/bowl_6,blue bowl white white inside +bowl/bowl_6,bowl +bowl/bowl_6,deep cereal bowl +food_bag/food_bag_3,bag pretzels +food_bag/food_bag_3,bag snyders pretzels +food_bag/food_bag_3,bag snyders pretzel snaps +food_bag/food_bag_3,bag pretzels +food_bag/food_bag_3,bag pretzels +bowl/bowl_1,bowl spherical dish container typically used serve hot cold food +bowl/bowl_1,bowl +bowl/bowl_1,bowl +bowl/bowl_1,green red bowl +bowl/bowl_1,empty dinner bowl +potato/potato_3,potato +potato/potato_3,potato +food_jar/food_jar_5,jar vlasic pickles lid blue ridge around rim +food_jar/food_jar_5,jar pickles +food_jar/food_jar_5,jar food +food_jar/food_jar_5,jar peppers +food_jar/food_jar_5,jar pickle juice +pitcher/pitcher_1,white ceramic pitcher floral design +pitcher/pitcher_1,pitcher +pitcher/pitcher_1,gravy boat +pitcher/pitcher_1,ceramic dish shaped function cream dispenser +pitcher/pitcher_1,creamer cup used pour creamer coffee +instant_noodles/instant_noodles_2,package noodles +instant_noodles/instant_noodles_2,bag ramen laying face table +instant_noodles/instant_noodles_2,package food possibly ramen +instant_noodles/instant_noodles_2,package ramen noodles +food_bag/food_bag_4,bag mini oreo +food_bag/food_bag_4,bag oreo minis +food_bag/food_bag_4,snack size bag mini oreos +food_bag/food_bag_4,bag oreo cookies +food_bag/food_bag_4,bag mini oreos +shampoo/shampoo_5,bottle soap +shampoo/shampoo_5,shampoo hair care product +shampoo/shampoo_5,bottle shampoo +shampoo/shampoo_5,bottle shampoo +pliers/pliers_3,pair pliers +pliers/pliers_3,pair pliers +pliers/pliers_3,pair pliers +pliers/pliers_3,green colored narrow tip cutting player +pliers/pliers_3,pair needle nose players green hand grippers +potato/potato_2,red potato +potato/potato_2,potatoes root vegetable +potato/potato_2,red potato +potato/potato_2,red potato +potato/potato_2,red potato +soda_can/soda_can_2,can 7 +soda_can/soda_can_2,picture 7 soda +soda_can/soda_can_2,can 7 +soda_can/soda_can_2,green can 7 +soda_can/soda_can_2,can 7 green label +cereal_box/cereal_box_1,looks like fruity pebbles +cereal_box/cereal_box_1,box cereal +cereal_box/cereal_box_1,box food +cereal_box/cereal_box_1,box crackers +cereal_box/cereal_box_1,box cereal +food_cup/food_cup_4,container food +food_cup/food_cup_4,chobani white orange peach yogurt cup +food_cup/food_cup_4,container yogurt +food_cup/food_cup_4,peach yogurt +food_cup/food_cup_4,container yogurt +notebook/notebook_4,blue spiraled notebook +notebook/notebook_4,writing notebook +notebook/notebook_4,blue notebook +notebook/notebook_4,blue spiral bound notebook +notebook/notebook_4,note book used wright drawing purposes +dry_battery/dry_battery_4,battery +dry_battery/dry_battery_4,battery +dry_battery/dry_battery_4,small battery looks fat like battery +dry_battery/dry_battery_4,battery +dry_battery/dry_battery_4,black battery +sponge/sponge_7,kitchen scrubbing sponge +sponge/sponge_7,cleaning sponge used clean dishes usually can used clean many things +sponge/sponge_7,sponge use clean dishes +sponge/sponge_7,sponge +sponge/sponge_7,green yellow sponge +hand_towel/hand_towel_4,face towel smallest towels mostly use wash face cases clean things +hand_towel/hand_towel_4,towel +hand_towel/hand_towel_4,small grey towel +hand_towel/hand_towel_4,folded towel +hand_towel/hand_towel_4,brown towel sitting white red plate +marker/marker_5,pen blue black +marker/marker_5,blue dry erase marker +marker/marker_5,pen +marker/marker_5,magic marker +ball/ball_4,picture small toy basketball orange black +ball/ball_4,nerf basketball +ball/ball_4,basketball +ball/ball_4,toy basketball +toothbrush/toothbrush_3,toothbrush +toothbrush/toothbrush_3,white blue toothbrush +toothbrush/toothbrush_3,toothbrush shaped like stick mostly white blue accents +toothbrush/toothbrush_3,object normal white blue tooth brush +coffee_mug/coffee_mug_4,mug +coffee_mug/coffee_mug_4,coffee mug +coffee_mug/coffee_mug_4,coffee mug +coffee_mug/coffee_mug_4,white mug blue time inside mug +coffee_mug/coffee_mug_4,cup white handle +mushroom/mushroom_2,mushroom +mushroom/mushroom_2,shitake mushroom +mushroom/mushroom_2,mushroom +mushroom/mushroom_2,brown mushroom theyre good +mushroom/mushroom_2,baby bella mushroom +food_box/food_box_6,cardboard package pretzel thins +food_box/food_box_6,box preztel thins +food_box/food_box_6,packet pretzel thins +food_box/food_box_6,box crackers +food_box/food_box_6,box pretzel thins +sponge/sponge_5,sponge +sponge/sponge_5,kitchen sponge +sponge/sponge_5,sponge blue abrasive section top red +cereal_box/cereal_box_2,box cereal +cereal_box/cereal_box_2,box cereal +cereal_box/cereal_box_2,box cereal +cereal_box/cereal_box_2,box chex cereal mostly brown +cap/cap_3,baseball cap +cap/cap_3,black baseball cap +cap/cap_3,black baseball cap +cap/cap_3,black ball cap +cap/cap_3,black baseball cap bulldog wrote brim +toothbrush/toothbrush_2,toothbrush +toothbrush/toothbrush_2,toothbrush +toothbrush/toothbrush_2,toothbrush +sponge/sponge_11,light green scrubber +sponge/sponge_11,kitchen scrubbing sponge +marker/marker_2,green dry erase marker +marker/marker_2,magic marker +marker/marker_2,green expo brand dry erase marker +marker/marker_2,glue stick +marker/marker_2,green marker +keyboard/keyboard_2,black computer keyboard +keyboard/keyboard_2,mechanical keyboard +keyboard/keyboard_2,black comptuer keyboard function keys numeric pad +keyboard/keyboard_2,black keyboard desktop computer +keyboard/keyboard_2,computer keyboard +lemon/lemon_3,yellow lemon +lemon/lemon_3,yellow limon slight green tint end facing us +lemon/lemon_3,lemon +lemon/lemon_3,yellow lemon +lemon/lemon_3,lemon +coffee_mug/coffee_mug_5,white empty coffee mug +coffee_mug/coffee_mug_5,coffee cup +coffee_mug/coffee_mug_5,mug +coffee_mug/coffee_mug_5,white mug +coffee_mug/coffee_mug_5,coffee mug +lemon/lemon_1,lemon +lemon/lemon_1,yellow lemon +lemon/lemon_1,lemon +lemon/lemon_1,yellow lemon +lemon/lemon_1,lemon +flashlight/flashlight_3,flashlight +flashlight/flashlight_3,flashlight +flashlight/flashlight_3,blue colored flashlight +flashlight/flashlight_3,blue black flashlight +flashlight/flashlight_3,blue colored flash light +food_jar/food_jar_2,jar jam jelly +food_jar/food_jar_2,jar jelly +food_jar/food_jar_2,jar jelly +food_jar/food_jar_2,jar jam +food_jar/food_jar_2,jar orange colored preserves +hand_towel/hand_towel_3,folded towel +hand_towel/hand_towel_3,washcloth wet wash face +hand_towel/hand_towel_3,soft absorbent cloth called towel towels used dry water peoples hands items +hand_towel/hand_towel_3,green towel +hand_towel/hand_towel_3,wash cloth +lime/lime_1,lime +lime/lime_1,green lime +lime/lime_1,picture avacado +lime/lime_1,ripe avocado +apple/apple_1,dark brown something could plum +apple/apple_1,apple +apple/apple_1,red delicious apple +food_can/food_can_8,can food +food_can/food_can_8,can rote tomatoes +food_can/food_can_8,can soup +food_can/food_can_8,can diced tomatoes +bell_pepper/bell_pepper_4,red pepper +bell_pepper/bell_pepper_4,red bell pepper +bell_pepper/bell_pepper_4,red pepper vegetable sharp flavor usually cooked +bell_pepper/bell_pepper_4,red bell pepper +bell_pepper/bell_pepper_4,red pepper +soda_can/soda_can_1,can pepsi +soda_can/soda_can_1,drink can holds carbonated sweet drink based water +soda_can/soda_can_1,can pepsi +soda_can/soda_can_1,can pepsi +soda_can/soda_can_1,looks like can pepsi cola +toothpaste/toothpaste_4,looks tube toothpaste unsure brand +toothpaste/toothpaste_4,tube toothpaste red blue stripe +toothpaste/toothpaste_4,tube toothpaste +toothpaste/toothpaste_4,tube toothpaste +toothpaste/toothpaste_4,tube toothpaste +cereal_box/cereal_box_1,box cereal top brown white +cereal_box/cereal_box_1,orange box containing cereal +cereal_box/cereal_box_1,box cereal +cereal_box/cereal_box_1,box bran cereal +cereal_box/cereal_box_1,box bran flakes +food_cup/food_cup_5,container yogurt +food_cup/food_cup_5,cup blueberry flavored yogurt could greek yogurt +food_cup/food_cup_5,unopened yogurt cup +food_cup/food_cup_5,container yogurt +food_cup/food_cup_5,container yogurt +calculator/calculator_5,silver calculator +calculator/calculator_5,object used math classes help solve math problems equations +calculator/calculator_5,light gray desk calculator white buttons angled display screen +calculator/calculator_5,calculator +calculator/calculator_5,calculator +lime/lime_3,lime +lime/lime_3,lime +lime/lime_3,lime sticker +lime/lime_3,lime +lime/lime_3,green lime +cereal_box/cereal_box_4,box instructions blue yellow +cereal_box/cereal_box_4,box cereal +cereal_box/cereal_box_4,box +cereal_box/cereal_box_4,box cereal +sponge/sponge_1,orange sponge +sponge/sponge_1,sponge +sponge/sponge_1,kitchen sponge +sponge/sponge_1,sponge +sponge/sponge_1,sponge would used pre dishwashing +toothbrush/toothbrush_3,toothbrush +toothbrush/toothbrush_3,toothbrush +toothbrush/toothbrush_3,object us white blue toothbrush +toothbrush/toothbrush_3,toothbrush +food_can/food_can_14,can soup +food_can/food_can_14,can +food_can/food_can_14,looks like can soup red can cream soup inside +food_can/food_can_14,can soup +food_can/food_can_14,can chunky soup mostly red label +rubber_eraser/rubber_eraser_3,pencil eraser +rubber_eraser/rubber_eraser_3,eraser +rubber_eraser/rubber_eraser_3,pink rubber eraser +rubber_eraser/rubber_eraser_3,loos pink eraser +food_bag/food_bag_5,bag potato chips top paper plates +food_bag/food_bag_5,bag chips +food_bag/food_bag_5,bag market pantry chips label white red +food_bag/food_bag_5,bag chips +food_bag/food_bag_5,bag chicken nuggets precooked +marker/marker_3,black expo marker +marker/marker_3,magic marker +marker/marker_3,marker +marker/marker_3,black marker +marker/marker_3,black dry erase marker +sponge/sponge_1,orange sponge +sponge/sponge_1,kitchen sponge +sponge/sponge_1,sponge +sponge/sponge_1,object regular sized orange sponge +sponge/sponge_1,squeegee +lime/lime_2,lime +lime/lime_2,lime +lime/lime_2,lime +lime/lime_2,green lime +tomato/tomato_6,tomato +tomato/tomato_6,tomato +tomato/tomato_6,sweet fruit called strawberry can eaten raw cooked +tomato/tomato_6,red tomato +tomato/tomato_6,red tomato +binder/binder_1,red plastic three ring binder +binder/binder_1,school folder +binder/binder_1,red binder +binder/binder_1,red plastic 3 ringer binder cover +binder/binder_1,red binder +greens/greens_2,green leaf lettuce plate +greens/greens_2,green leafy vegetable +greens/greens_2,lettuce +greens/greens_2,leafy green vegetable one piece appears garnish +greens/greens_2,bunch lettuces +apple/apple_3,green apple +apple/apple_3,apple +apple/apple_3,bright green apple shining white surface apple missing stem +apple/apple_3,green apple +apple/apple_3,golden delicious apple +food_jar/food_jar_1,jar jelly brand smuckers +food_jar/food_jar_1,jar jam jelly +food_jar/food_jar_1,jar grape jelly +food_jar/food_jar_1,jar jelly +food_jar/food_jar_1,small jar something looks like jam jar +cereal_box/cereal_box_4,box raisin bran crunch cereal front box purple andthe side box yellow blue +cereal_box/cereal_box_4,box something +cereal_box/cereal_box_4,box raisin bran +cereal_box/cereal_box_4,box cereal +cereal_box/cereal_box_4,box raisin bran cereal +lemon/lemon_5,yellow lemon green end +lemon/lemon_5,fresh lemon +lemon/lemon_5,lemon +lemon/lemon_5,yellow lemon +lemon/lemon_5,looks like lemon +cell_phone/cell_phone_2,older cellphone +cell_phone/cell_phone_2,cellphone marked three dots around front position +cell_phone/cell_phone_2,older moderl cell phone +cell_phone/cell_phone_2,mobile phone +cell_phone/cell_phone_2,cell phone +comb/comb_1,hairbrush black silver handle +comb/comb_1,hair brush +comb/comb_1,black silver hair brush +comb/comb_1,hair brush black +comb/comb_1,black hair brush +banana/banana_4,green unripe banana +banana/banana_4,banana plate +banana/banana_4,unripe plantain +banana/banana_4,looks like plantain similar banana +banana/banana_4,banana +ball/ball_2,soccer ball +ball/ball_2,nerf soccer ball +ball/ball_2,balls used play ball games +ball/ball_2,soccer ball +pear/pear_8,yellow apple +pear/pear_8,yellow apple +pear/pear_8,yellow delicious apple +pear/pear_8,apple +pear/pear_8,sweet fruit called green apple can eaten raw cooked something called apple pie +food_jar/food_jar_4,jar white pasta sauce +food_jar/food_jar_4,unopened jar contents white +food_jar/food_jar_4,jarred alfredo sauce good solution quick italian dinner +food_jar/food_jar_4,jar sauce +tomato/tomato_7,red tomato +tomato/tomato_7,tomato +tomato/tomato_7,tomato +tomato/tomato_7,ripe tomato +tomato/tomato_7,fruit red round can used salads sandwiches +stapler/stapler_8,electronic device called computer mouse allows computer user position cursor functions +pliers/pliers_3,pair pliers +pliers/pliers_3,plier +pliers/pliers_3,green pliars +pliers/pliers_3,pair pliers +pliers/pliers_3,pair pliers +potato/potato_3,unpeeled potato +potato/potato_3,yellow potato +potato/potato_3,potato +potato/potato_3,small russett potatoe +water_bottle/water_bottle_2,plastic water bottle +water_bottle/water_bottle_2,clear bottle water +water_bottle/water_bottle_2,bottle water +water_bottle/water_bottle_2,bottle water white blue label +water_bottle/water_bottle_2,plastic bottle looks holding water can purposed many times +lime/lime_3,ripe lime product sticker +lime/lime_3,lime +lime/lime_3,green lime +lime/lime_3,fresh lime +lime/lime_3,lime fruit believe +pliers/pliers_5,pair pliers probably needle nosed blue handles +pliers/pliers_5,one set needle nose pliers blue handles +pliers/pliers_5,tool called needle nose pliers used grasp small parts one human hand holds tool hold turn something else +pliers/pliers_5,pair pliers +pliers/pliers_5,pair pliers +food_can/food_can_10,canned fruit mandarin oranges +food_can/food_can_10,looks like can fruit brand del monte +food_can/food_can_10,can sugar added mandarin oranges can yellow picture oranges +food_can/food_can_10,can fruit +food_can/food_can_10,can del monte fruit looks like says sugar added cant read rest label think nectarines peaches +garlic/garlic_1,bulb garlic +garlic/garlic_1,clove garlic +garlic/garlic_1,clove garlic +garlic/garlic_1,bulb garlic +pliers/pliers_2,tool called needle nose pliers used grip manipulate smaller parts +pliers/pliers_2,pair pliers +pliers/pliers_2,black pliars +pliers/pliers_2,pair pliers +pliers/pliers_2,pair pliers +food_can/food_can_12,can food +food_can/food_can_12,can soup +food_can/food_can_12,can chicken broth +food_can/food_can_12,can soup +food_can/food_can_12,can soup white label +apple/apple_3,yellow apple +apple/apple_3,apple +apple/apple_3,yellow apple +apple/apple_3,golden delicious apple +apple/apple_3,golden delicious apple +marker/marker_2,marker pen felt tipped pen used drawing coloring +marker/marker_2,felt tip marker piece felt cap makes mark paper spreading ink tube +marker/marker_2,green dry erase marker +marker/marker_2,glue stick +marker/marker_2,magic marker +food_bag/food_bag_6,bag chips +food_bag/food_bag_6,bag chips +food_bag/food_bag_6,red black bag chips +food_bag/food_bag_6,bag chips +rubber_eraser/rubber_eraser_2,object blurry tell could used +dry_battery/dry_battery_1,batteries +dry_battery/dry_battery_1,battery +dry_battery/dry_battery_1,battery +instant_noodles/instant_noodles_7,colorful bag candies +instant_noodles/instant_noodles_7,package noodles +instant_noodles/instant_noodles_7,package food +instant_noodles/instant_noodles_7,package ramen pink black text +instant_noodles/instant_noodles_7,package ramen noodles +potato/potato_6,potato +potato/potato_6,potato +potato/potato_6,potato +potato/potato_6,large baking potato +potato/potato_6,baking potato +shampoo/shampoo_4,bottle lotion +shampoo/shampoo_4,bottle conditioner bottle white silver top +shampoo/shampoo_4,body cleanser body soap +shampoo/shampoo_4,bottle shampoo conditioner +shampoo/shampoo_4,bottle something looks like shampoo conditioner +cell_phone/cell_phone_4,cell phone +cell_phone/cell_phone_4,phone +cell_phone/cell_phone_4,old flip style mobile phone +plate/plate_2,white plate blue border +plate/plate_2,white plate blue baby blue trim +plate/plate_2,white blue plate +plate/plate_2,large circular plate mostly white light dark blue trim along rim +coffee_mug/coffee_mug_1,mug +coffee_mug/coffee_mug_1,mug red grey color +coffee_mug/coffee_mug_1,coffee mug +coffee_mug/coffee_mug_1,red mug +coffee_mug/coffee_mug_1,object mug red white grey +lemon/lemon_6,juicy lemon +lemon/lemon_6,yellow lemon +lemon/lemon_6,lemon +lemon/lemon_6,lemon +lemon/lemon_6,yellow lemon +instant_noodles/instant_noodles_7,package dehydrated soup mix +instant_noodles/instant_noodles_7,pack ramen +instant_noodles/instant_noodles_7,package food possibly ramen +instant_noodles/instant_noodles_7,package noodles +flashlight/flashlight_3,blue colored flashlight +flashlight/flashlight_3,blue plastic flashlight +flashlight/flashlight_3,flashlight +flashlight/flashlight_3,blue flashlight +flashlight/flashlight_3,blue flashlight +tomato/tomato_3,fresh tomato +tomato/tomato_3,tomato +tomato/tomato_3,ripe tomato +tomato/tomato_3,red tomato sticker +tomato/tomato_3,tomato +comb/comb_3,hair brush heavy duty brush sometimes called wig brush used heavy long hair +comb/comb_3,hairbrush +comb/comb_3,hairbrush +comb/comb_3,hair brush +comb/comb_3,hairbrush +binder/binder_2,school folder +binder/binder_2,blue plastic folder +binder/binder_2,purple binder +binder/binder_2,purple folder +binder/binder_2,purple binder +sponge/sponge_10,kitchen sponge +sponge/sponge_2,lime green sponge +sponge/sponge_2,sponge use clean dishes +sponge/sponge_2,kitchen sponge +sponge/sponge_2,light green kitchen sponge +sponge/sponge_2,sponge +shampoo/shampoo_3,bottle shampoo +shampoo/shampoo_3,bottle shampoo +shampoo/shampoo_3,bottle shampoo +shampoo/shampoo_3,bottle shampoo used wash hair get hair wet put dollop hand massage throughout hair rinse +glue_stick/glue_stick_6,stick elmers glue +glue_stick/glue_stick_6,glue stick +glue_stick/glue_stick_6,tube glue +glue_stick/glue_stick_6,aerosol spray can +plate/plate_6,pie baked oven pies made many different foods +plate/plate_6,plate white paste +plate/plate_6,empty dinner plate +coffee_mug/coffee_mug_3,brown mug +coffee_mug/coffee_mug_3,mug +coffee_mug/coffee_mug_3,brown tea coffee cup decorative edge near top edge inside white +coffee_mug/coffee_mug_3,dark jug +coffee_mug/coffee_mug_3,coffee mug +ball/ball_5,nerf football +ball/ball_5,football laces +ball/ball_5,toy football +ball/ball_5,brown football +ball/ball_5,football +keyboard/keyboard_5,black dell keyboard kept stool like thing +keyboard/keyboard_5,computer keyboard +keyboard/keyboard_5,black keyboard +keyboard/keyboard_5,keyboard used computer +keyboard/keyboard_5,keyboard +mushroom/mushroom_3,peeled potato +toothpaste/toothpaste_3,tube ultra brite toothpaste +toothpaste/toothpaste_3,tube toothpaste +toothpaste/toothpaste_3,tube toothpaste small brush paste used clean humans teeth +toothpaste/toothpaste_3,tube toothpaste +toothpaste/toothpaste_3,tube toothpaste +water_bottle/water_bottle_3,bottle water +water_bottle/water_bottle_3,bottle water +water_bottle/water_bottle_3,plastic water bottle +water_bottle/water_bottle_3,bottle water +water_bottle/water_bottle_3,small bottle mineral drinking water +shampoo/shampoo_6,bottle containing hair product personal care product +shampoo/shampoo_6,bottle shampoo +shampoo/shampoo_6,plastic container may dispense shampoo conditioner hand lotion many substances +shampoo/shampoo_6,bottle conditioner bottle yellow green cap +shampoo/shampoo_6,bottle body wash +plate/plate_6,round yellow plate yellow mustard type color edges plate little design +plate/plate_6,empty dinner plate +plate/plate_6,brown plate +plate/plate_6,yellow colored plate raised pattern around rim +plate/plate_6,plate +instant_noodles/instant_noodles_1,package ramen soup +instant_noodles/instant_noodles_1,package food +instant_noodles/instant_noodles_1,package ramen noodles +food_jar/food_jar_5,jar something looks like pickle +food_jar/food_jar_5,jar peppers +food_jar/food_jar_5,jar pickles +food_jar/food_jar_5,jar peppers +food_jar/food_jar_5,jar vlasic pickles blue label blue rim cap +banana/banana_4,banana still slightly green +banana/banana_4,green banana brown spots +onion/onion_2,white onion +onion/onion_2,picture white onion used make curry oil hair provide better oxalic acid body +onion/onion_2,white onion used cooking +potato/potato_6,potato brown +potato/potato_6,brown potato +potato/potato_6,potato +coffee_mug/coffee_mug_8,mug +coffee_mug/coffee_mug_8,coffee mug +coffee_mug/coffee_mug_8,white ceramic mug dark stripes +greens/greens_3,type produce white stem limp green leaves +greens/greens_3,bok choy +coffee_mug/coffee_mug_8,mug +coffee_mug/coffee_mug_8,white ceramic mug dark stripes handle +greens/greens_4,head bok choy +greens/greens_4,green limp leaves coming green stem +food_can/food_can_2,metal pop top can can contains label appears campbells soup +keyboard/keyboard_5,pc keyboard +keyboard/keyboard_5,keyboard used type computer +keyboard/keyboard_5,dell computer keyboard +bell_pepper/bell_pepper_2,vegetable yellow green stem squarish oval shape +bell_pepper/bell_pepper_2,yellow bell pepper side +bell_pepper/bell_pepper_2,yellow bell pepper +bowl/bowl_3,white bowl sitting white table countertop +bowl/bowl_3,white bowl resting table +coffee_mug/coffee_mug_8,striped mug +coffee_mug/coffee_mug_8,mug +lemon/lemon_5,lemon +lemon/lemon_5,yellow lemon green ends +shampoo/shampoo_2,bottle hair conditioner +shampoo/shampoo_2,plastic bottle +sponge/sponge_5,sponge used washing dishes +sponge/sponge_5,blue red sponge rough part red soft part blue +sponge/sponge_5,red blue sponge +pitcher/pitcher_2,coffee server +pitcher/pitcher_2,tea kettle +food_box/food_box_7,box wheat thins crackers +food_box/food_box_7,box contains wheat food items +food_box/food_box_7,box wheat thins snacks +stapler/stapler_2,black stapler +stapler/stapler_2,stapler used keep pages paper together +stapler/stapler_2,black stapler +food_jar/food_jar_4,can alfredo sauce used cooking +food_jar/food_jar_4,unopened jar contents inside white +food_jar/food_jar_4,jar white sauce can see top lid +potato/potato_6,russet potato used cooking +potato/potato_6,sits potato +potato/potato_6,brown oval shape +water_bottle/water_bottle_2,closed open sports cap appears many water bottles seen closed configuration left open configuration right allowing water pass around central blue piece water bottle container used hold water +water_bottle/water_bottle_2,water bottle tapers middle blue white label +water_bottle/water_bottle_2,bottle water +cereal_box/cereal_box_1,box cereal +cereal_box/cereal_box_1,box bran flakes cereal +sponge/sponge_7,dish sponge used cleaning dishes +sponge/sponge_7,sponge tool cleaning aid made soft porous material +sponge/sponge_7,sponge yellow sponge one side green scouring material dark dot near top white dot bottom right sponge +keyboard/keyboard_1,keyboard used type computer +keyboard/keyboard_1,silver keyboard white buttons +keyboard/keyboard_1,computer keyboard +plate/plate_7,empty whte plate +plate/plate_7,plate +food_box/food_box_11,box snack cheese +food_box/food_box_11,box cheez white cheddar snacks +food_box/food_box_11,box white cheddar cheez crackers +marker/marker_4,expo marker used write white boards +notebook/notebook_1,note book essential taking notes school long meetings work +notebook/notebook_1,notebook +notebook/notebook_1,red spiral note book top white stand +instant_noodles/instant_noodles_7,package noodles put water cook package small ish rectangle +instant_noodles/instant_noodles_7,bag kind food +kleenex/kleenex_3,grey box kleenex +kleenex/kleenex_3,tissue box blue +kleenex/kleenex_3,kleenex piece thin soft paper used handkerchief +shampoo/shampoo_6,bottle childrens shampoo body wash yellow green lid +shampoo/shampoo_6,plastic bottle yellow green lid +lime/lime_3,lime +lime/lime_3,citrus fruit lime +lime/lime_3,green lime +apple/apple_5,green apple +apple/apple_5,green apple +tomato/tomato_2,fruit vegetable red +tomato/tomato_2,fruit cherry tomato +tomato/tomato_2,red tomato +food_cup/food_cup_1,container yogurt silver foil lid +food_cup/food_cup_1,carton yogurt foil lid appears individual serving +food_cup/food_cup_1,aluminum can food blue white red label lid appears hole +food_jar/food_jar_3,jar gravy +food_jar/food_jar_3,food jar container storage foods +food_jar/food_jar_3,glass container food +food_box/food_box_10,box mashed potato mix +food_box/food_box_10,box pancake mix +bell_pepper/bell_pepper_4,red bellpepper side +bell_pepper/bell_pepper_4,bell pepper cultivar group species +bell_pepper/bell_pepper_4,red bell pepper +glue_stick/glue_stick_4,glue sticks solid adhesives twist push tubes +glue_stick/glue_stick_4,glue stick +dry_battery/dry_battery_2,aa size battery +dry_battery/dry_battery_2,electric battery device consisting one electrochemical cells external connections provided power electrical devices flashlights smartphones electric cars +sponge/sponge_1,orange sponge +sponge/sponge_1,orange sponge +sponge/sponge_1,slice cheddar cheese +scissors/scissors_3,blue scissors +scissors/scissors_3,pair scissors used cutting things +scissors/scissors_3,pair scissors used cut things like paper blue sharp +keyboard/keyboard_5,computer keyboard black +keyboard/keyboard_5,pc keyboard +keyboard/keyboard_5,remote +ball/ball_7,soccer ball play soccer +ball/ball_7,soccer ball +ball/ball_7,soccer ball +soda_can/soda_can_1,can pepsi cola +soda_can/soda_can_1,can pepsi +soda_can/soda_can_1,can pepsi +food_bag/food_bag_6,bag salted popcorn +food_bag/food_bag_6,bag barbeque potato pop chips +food_bag/food_bag_6,baked goods cooked baking +marker/marker_6,extension cord wrapped +orange/orange_3,orange +orange/orange_3,orange +food_bag/food_bag_4,bag mini oreo cookies +food_bag/food_bag_4,snack bag mini oreos +orange/orange_2,orange +orange/orange_2,yellow ball +orange/orange_2,yellow ball +hand_towel/hand_towel_3,sage green hand towel folded quarters +hand_towel/hand_towel_3,green towel +hand_towel/hand_towel_3,bath towel +hand_towel/hand_towel_3,folded green washcloth +hand_towel/hand_towel_3,green wash cloth micro fiber cloth +ball/ball_4,basketball shaped toy +ball/ball_4,fake toy basketball +ball/ball_4,small inflatable toy basketball +ball/ball_4,nerf basketball +food_can/food_can_1,can food back label facing toward +food_can/food_can_1,kind canned food +food_can/food_can_1,can evaporated milk +food_can/food_can_1,can +sponge/sponge_11,bright green scrubber +sponge/sponge_11,pot scrubber green +sponge/sponge_11,green dish scrubber +dry_battery/dry_battery_3,battery +dry_battery/dry_battery_3,tube glue +dry_battery/dry_battery_3,battery +dry_battery/dry_battery_3,aa battery +dry_battery/dry_battery_3,small battery electrical charge stored called aa +bowl/bowl_1,bowl gold outside red inside +bowl/bowl_1,empty dinner bowl +bowl/bowl_1,bowl +bowl/bowl_1,brown striped pie dish red inside dish empty +bowl/bowl_1,red brown ceramic bowl +flashlight/flashlight_2,red flashlight +flashlight/flashlight_2,red flashlight +flashlight/flashlight_2,red flashlight +flashlight/flashlight_2,red flashlight +flashlight/flashlight_2,red plastic flashlight black button +comb/comb_1,hair brush +comb/comb_1,silver black hairbrush stiff bristles +comb/comb_1,hairbrush +comb/comb_1,black hair brush silver handle +comb/comb_1,hairbrush mostly black silver +shampoo/shampoo_1,bottle shampoo conditioner +shampoo/shampoo_1,bottle shampoo +shampoo/shampoo_1,looks like bottle shampoo silver lid clear bottle +shampoo/shampoo_1,white plastic bottle gray lid +water_bottle/water_bottle_4,bottle water +water_bottle/water_bottle_4,bottle water +water_bottle/water_bottle_4,bottle water +water_bottle/water_bottle_4,plastic water bottle +water_bottle/water_bottle_4,bottle flavored water +toothpaste/toothpaste_5,tube toothpaste +toothpaste/toothpaste_5,tube toothpaste +toothpaste/toothpaste_5,tube crest toothpaste blue green +toothpaste/toothpaste_5,tube mint toothpaste +toothpaste/toothpaste_5,tube toothpaste +food_box/food_box_3,box sort fiber one brand snack looks like pop tarts box must toaster pastries +food_box/food_box_3,box fiber pop tarts +food_box/food_box_3,package fiber one pastries +food_box/food_box_3,box fiberone bars +food_box/food_box_3,box fiber one +toothbrush/toothbrush_1,toothbrush +toothbrush/toothbrush_1,toothbrush +toothbrush/toothbrush_1,red white toothbrush +toothbrush/toothbrush_1,tooth brush +toothbrush/toothbrush_1,toothbrush +apple/apple_2,red apple +apple/apple_2,red apple +apple/apple_2,apple +apple/apple_2,apple +apple/apple_2,red apple +onion/onion_5,red onion +onion/onion_5,red onion +onion/onion_5,object purple onion +onion/onion_5,onion +onion/onion_5,purple onion +food_can/food_can_7,can soup +food_can/food_can_7,back can pull tab label red white probably campbells brand +food_can/food_can_7,can soup +food_can/food_can_7,can soup +food_can/food_can_7,can soup +flashlight/flashlight_5,yellow black flashlight +flashlight/flashlight_5,device called flashlight powered batteries produced visible light +flashlight/flashlight_5,yellow flash light +flashlight/flashlight_5,flashlight +flashlight/flashlight_5,flashlight +cereal_box/cereal_box_5,box honey graham crunch cereal box red white +cereal_box/cereal_box_5,box cereal +cereal_box/cereal_box_5,box cereal +cereal_box/cereal_box_5,box cereal +cereal_box/cereal_box_5,box honey graham crunch cereal +shampoo/shampoo_5,looks like back bottle shampoo judging shape might suave brand color pink probably scented +shampoo/shampoo_5,bottle shampoo pink liquid inside +shampoo/shampoo_5,bottle shampoo +shampoo/shampoo_5,bottle shampoo +shampoo/shampoo_5,skinny plastic bottle pink liquid inside black text upc barcode +lightbulb/lightbulb_4,lightbulb +lightbulb/lightbulb_4,light bulb +lightbulb/lightbulb_4,light bulb +lightbulb/lightbulb_4,light bulb +lightbulb/lightbulb_4,light bulb +plate/plate_1,yellow colored jelly like sweet +plate/plate_1,bowl +plate/plate_1,ceramic plate +plate/plate_1,lemon meringue pudding +plate/plate_1,ceramic plate yellow +lightbulb/lightbulb_1,led energy efficient lightbulb +lightbulb/lightbulb_1,object placed lamp gives light fragile +lightbulb/lightbulb_1,light bulb +lightbulb/lightbulb_1,curly q white efficiency bulb +lightbulb/lightbulb_1,compact fluorescent light bulb +orange/orange_4,orange +orange/orange_4,orange +orange/orange_4,uneaten orange +orange/orange_4,object orange +orange/orange_4,orange +food_box/food_box_4,yellow box oreo snack +food_box/food_box_4,box oreo funnels +food_box/food_box_4,box oreo cookies +food_box/food_box_4,box golden oreo funstix box mostly yellow +food_box/food_box_4,box oreo funstix +pear/pear_2,yellow pear +pear/pear_2,pear slightly ripe +pear/pear_2,pear +pear/pear_2,piece fruit +banana/banana_3,banana +banana/banana_3,banana +banana/banana_3,banana +banana/banana_3,banana +banana/banana_3,banana edible fruit berry family can eaten raw cooked banana bread tastes awesome +sponge/sponge_2,sponge usually used clean holds water little holes +sponge/sponge_2,sponge +sponge/sponge_2,lime green sponge +sponge/sponge_2,green sponge +sponge/sponge_2,kitchen sponge +food_can/food_can_10,can fruit del monte canned peaches +food_can/food_can_10,can possibly contains fruit +food_can/food_can_10,can fruit +food_can/food_can_10,can something +sponge/sponge_12,kitchen sponge +sponge/sponge_12,sponge usually used clean holds water little holes +sponge/sponge_12,looks like bean shaped piece playdoh blue +sponge/sponge_12,blue cish scrubby perfect fit hand scrub dishes often used get stuck food dishes putting dishwasher +glue_stick/glue_stick_3,elmers glue stick necessary school projects +glue_stick/glue_stick_3,glue sticks solid adhesives twist push tubes +glue_stick/glue_stick_3,spray can +glue_stick/glue_stick_3,glue stick +kleenex/kleenex_5,box tissue kleenex puffs facial tissue +kleenex/kleenex_5,tissue box rectangular mostly red white swirl pattern +kleenex/kleenex_5,box kleenex +kleenex/kleenex_5,box facial tissues +kleenex/kleenex_5,box tissues +water_bottle/water_bottle_2,plastic water bottle +water_bottle/water_bottle_2,bottle water +water_bottle/water_bottle_2,bottle water +water_bottle/water_bottle_2,clear water bottle +water_bottle/water_bottle_2,looks like bottle water filled clear liquid white cap label blue +binder/binder_3,binder maybe 3 ring binder can keep kind paperwork +binder/binder_3,black colored folderfile +binder/binder_3,binder +binder/binder_3,binder +binder/binder_3,looks like hard cover book could journal +bell_pepper/bell_pepper_5,green pepper usualy found salads fried potatoes +bell_pepper/bell_pepper_5,green bell pepper mild pepper +bell_pepper/bell_pepper_5,green bell pepper can stuffed sausage onions delicious appetizer +bell_pepper/bell_pepper_5,green bell pepper +bell_pepper/bell_pepper_5,green pepper +food_can/food_can_3,red white can food +food_can/food_can_3,can soup +food_can/food_can_3,can soup +food_can/food_can_3,can campbells soup +food_can/food_can_3,can food red white label nutrition chart +lime/lime_1,green lime +lime/lime_1,green lime +lime/lime_1,sort round green fruit +dry_battery/dry_battery_6,large alkaline battery +dry_battery/dry_battery_6,battery +dry_battery/dry_battery_6,battery +glue_stick/glue_stick_4,glue stick +glue_stick/glue_stick_4,cooking spray +glue_stick/glue_stick_4,tube glue +glue_stick/glue_stick_4,glue stick +glue_stick/glue_stick_4,glue stick +food_can/food_can_11,can food red white label +food_can/food_can_11,can soup +food_can/food_can_11,can soup +food_can/food_can_11,can predominantly white label red strip across top metal part can gold +food_can/food_can_11,can soup +instant_noodles/instant_noodles_5,ramon soup mix +instant_noodles/instant_noodles_5,package noodles +instant_noodles/instant_noodles_5,orange bag food +instant_noodles/instant_noodles_5,bag something +calculator/calculator_2,calculator +calculator/calculator_2,calculator +calculator/calculator_2,black calculator +calculator/calculator_2,black roughly square shaped muilti colored buttons center small led screen top +calculator/calculator_2,calculator +instant_noodles/instant_noodles_3,package food +instant_noodles/instant_noodles_3,object looks like pack noodles package white green red +instant_noodles/instant_noodles_3,bag frozen vegetables +water_bottle/water_bottle_3,clear water bottle +water_bottle/water_bottle_3,plastic bottle water label blue green +water_bottle/water_bottle_3,bottle water +water_bottle/water_bottle_3,plastic water bottle +water_bottle/water_bottle_3,bottle water +binder/binder_1,3 ring red binder +binder/binder_1,red binder +binder/binder_1,school folder +binder/binder_1,binder +binder/binder_1,red folder +pliers/pliers_1,pair pliers +pliers/pliers_1,pair pliers +pliers/pliers_1,pliers +pliers/pliers_1,pair pliers blue handles +pliers/pliers_1,cutting player +food_bag/food_bag_1,chips favorite dinner snack +food_bag/food_bag_1,object white bag crisps bag orange brown labels +food_bag/food_bag_1,bag looks like miniature rice cakes cant tell brand +food_bag/food_bag_1,package chips +food_bag/food_bag_1,small blue orange bag crunchy snacks +keyboard/keyboard_3,computer keyboard +keyboard/keyboard_3,computer keyboard +keyboard/keyboard_3,black computer keyboard doesn’t look attached computer +keyboard/keyboard_3,computer keyboard +keyboard/keyboard_3,black keyboard +lightbulb/lightbulb_1,energy efficient cfl light bulb +lightbulb/lightbulb_1,compact fluorescent light bulb +lightbulb/lightbulb_1,energy savings light bulb mostly white glass part swirling around gold part screws +lightbulb/lightbulb_1,fluorescent light bulb +lightbulb/lightbulb_1,florescent light bulb +notebook/notebook_5,black spiral bound notebook +notebook/notebook_5,writing notebook +notebook/notebook_5,notebook +notebook/notebook_5,hardcovered black notebook +notebook/notebook_5,black spiral bound notebook +water_bottle/water_bottle_3,bottle water +water_bottle/water_bottle_3,plastic bottle drinking water blue label +water_bottle/water_bottle_3,small bottle mineral water +water_bottle/water_bottle_3,plastic bottle water +water_bottle/water_bottle_3,object bottle water white cap blue label +water_bottle/water_bottle_7,plastic water bottle +water_bottle/water_bottle_7,bottle water +water_bottle/water_bottle_7,bottle water +water_bottle/water_bottle_7,plastic bottle looks holding water can purposed +water_bottle/water_bottle_7,clear water bottle +comb/comb_1,black silver hairbrush stiff bristles +comb/comb_1,brush used brush hair +comb/comb_1,hair brush comb hair +comb/comb_1,hairbrush +comb/comb_1,hair brush +cereal_box/cereal_box_2,box food +cereal_box/cereal_box_2,box chex mix +cereal_box/cereal_box_2,box food +cereal_box/cereal_box_2,box chex cereal +cereal_box/cereal_box_2,box cereal +peach/peach_3,peach +peach/peach_3,peach +peach/peach_3,white peach mostly cream pink +peach/peach_3,ripe peach +peach/peach_3,apples fruit grow trees +bell_pepper/bell_pepper_6,green pepper +bell_pepper/bell_pepper_6,green pepper +bell_pepper/bell_pepper_6,green pepper +bell_pepper/bell_pepper_6,green bell pepper +bell_pepper/bell_pepper_6,green bell pepper side +pear/pear_7,pear +pear/pear_7,apple +pear/pear_7,asian pear +shampoo/shampoo_2,container body product hair product +shampoo/shampoo_2,bottle shampoo +shampoo/shampoo_2,bottle toiletry +shampoo/shampoo_2,predominantly white plastic bottle white substance +shampoo/shampoo_2,bottle +keyboard/keyboard_3,computer keyboard used input device part desktop computer +keyboard/keyboard_3,computer keyboard +keyboard/keyboard_3,black computer keyboard +keyboard/keyboard_3,computer keyboard +keyboard/keyboard_3,keyboard used typing desktop computer +ball/ball_3,nerf baseball +ball/ball_3,inflated baseball +ball/ball_3,balls used play ball games +ball/ball_3,baseball +potato/potato_2,red potato +potato/potato_2,red potato +potato/potato_2,brown ball +cap/cap_2,camouflaged baseball cap cap belong hunter +cap/cap_2,baseball cap camo print +cap/cap_2,camoflauge ball cap +cap/cap_2,army hat +cap/cap_2,army hat +plate/plate_5,ceramic plate +plate/plate_5,white plate +plate/plate_5,plate +plate/plate_5,empty dinner plate +plate/plate_5,white plate +kleenex/kleenex_2,pink square cardboard box tissue +kleenex/kleenex_2,box kleenex pink design +kleenex/kleenex_2,smaller tissue box square pink pattern +kleenex/kleenex_2,box tissues +kleenex/kleenex_2,box facial tissue +garlic/garlic_2,bulb garlic +garlic/garlic_2,clove garlic +garlic/garlic_2,garlic bulb +garlic/garlic_2,clove garlic +notebook/notebook_3,spiral bound notebook +notebook/notebook_3,white spiraled notebook +notebook/notebook_3,spiral notebook +notebook/notebook_3,spiral notebook cover green white +notebook/notebook_3,writing notebook +lime/lime_2,sweet fruit called avocado can eaten raw cooked +lime/lime_2,green lime +lime/lime_2,green lime +lime/lime_2,lime +lime/lime_2,lime +plate/plate_7,white plate nothing +plate/plate_7,white plate +plate/plate_7,empty dinner plate +plate/plate_7,white plate +plate/plate_7,bowl bowl white +food_box/food_box_11,box cheez +food_box/food_box_11,box cheez believe white cheddar +food_box/food_box_11,box cheeze +food_box/food_box_11,red box cheez +food_box/food_box_11,box cheez +rubber_eraser/rubber_eraser_3,pink eraser +rubber_eraser/rubber_eraser_3,pink eraser +rubber_eraser/rubber_eraser_3,pink rubber eraser +rubber_eraser/rubber_eraser_3,pencil eraser +rubber_eraser/rubber_eraser_3,eraser +rubber_eraser/rubber_eraser_4,eraser +rubber_eraser/rubber_eraser_4,rubber eraser +rubber_eraser/rubber_eraser_4,standard pink pencil eraser +rubber_eraser/rubber_eraser_4,eraser hard rubber gum used remove pencil markings paper +rubber_eraser/rubber_eraser_4,pencil eraser +kleenex/kleenex_1,box facial tissue +kleenex/kleenex_1,box tissues +kleenex/kleenex_1,small box tissues +kleenex/kleenex_1,box kleenex grey design box +kleenex/kleenex_1,small kleenex box little compact +camera/camera_1,disposable film camera +camera/camera_1,camera +camera/camera_1,disposable camera +camera/camera_1,camera +camera/camera_1,camera +food_jar/food_jar_5,glass jar banana peppers +food_jar/food_jar_5,jar peppers +food_jar/food_jar_5,jar sort pickled vegetable looks yellow cucumbers im guessing pickled bell peppers +food_jar/food_jar_5,jar pickled peppers +food_jar/food_jar_5,jar peppers +food_can/food_can_7,can soup +food_can/food_can_7,another can soup +food_can/food_can_7,can food +food_can/food_can_7,can soup +food_can/food_can_7,can soup red white pull tab +food_cup/food_cup_3,container yogurt +food_cup/food_cup_3,container yoplait yogurt +food_cup/food_cup_3,container yogurt +food_cup/food_cup_3,can +food_cup/food_cup_3,container yogurt +food_jar/food_jar_4,jar alfredo sauce +food_jar/food_jar_4,jar pasta sauce +food_jar/food_jar_4,jar white pasta sauce +food_jar/food_jar_4,jar white sauce +food_jar/food_jar_4,jar alfredo sauce +food_can/food_can_10,can may contain food commonly called tin can can easily opened pulling ring pop top +food_can/food_can_10,can food yellow label +food_can/food_can_10,can +food_can/food_can_10,can soup +food_can/food_can_4,can soup +food_can/food_can_4,can +food_can/food_can_4,canning foods aluminum cans cheap way preserve +food_can/food_can_4,can food +food_can/food_can_4,can condensed milk +cell_phone/cell_phone_2,white black cell phone +cell_phone/cell_phone_2,object small phone dialing pad +cell_phone/cell_phone_2,flip cellular phone +cell_phone/cell_phone_2,older cell phone +cell_phone/cell_phone_2,cell phone +food_jar/food_jar_6,jar jelly silver lid +food_jar/food_jar_6,jar silver lid +food_jar/food_jar_6,jar jam jelly +food_jar/food_jar_6,jar jam +food_jar/food_jar_6,jar jelly +camera/camera_2,camera +camera/camera_2,old camera yellow tag hanging +camera/camera_2,camera +camera/camera_2,digital camera +camera/camera_2,digital camera +notebook/notebook_5,black spiraled notebook +notebook/notebook_5,writing notebook +notebook/notebook_5,spiral bound notebook +food_box/food_box_8,cardboard box six sides mostly blue yellow text +food_box/food_box_8,box crackers +food_box/food_box_8,box crackers box mostly blue +food_box/food_box_8,object blue box box advertising crackers spray cheese +food_box/food_box_8,box crackers +calculator/calculator_2,big brown caculator +calculator/calculator_2,round plastic object screen top object also buttons can manipulated +calculator/calculator_2,calculator +calculator/calculator_2,calculator used solve mathmatical problems quickly +calculator/calculator_2,calculator +glue_stick/glue_stick_4,tube glue +glue_stick/glue_stick_4,can spray +glue_stick/glue_stick_4,glue stick +glue_stick/glue_stick_2,bottle aspirin +glue_stick/glue_stick_2,tube glue +food_can/food_can_13,can soup ingredients listed label +food_can/food_can_13,can soup +food_can/food_can_13,aluminum can looks like can soup food stored cans like +food_can/food_can_13,can may contain food commonly called tin can can easily opened pulling ring pop top +food_can/food_can_13,can soup +dry_battery/dry_battery_2,battery +dry_battery/dry_battery_2,yellow black battery +dry_battery/dry_battery_2,battery +hand_towel/hand_towel_5,black towel +hand_towel/hand_towel_5,small black towel +hand_towel/hand_towel_5,black folded towel +hand_towel/hand_towel_5,wash cloth towel black color +sponge/sponge_10,kitchen sponge +onion/onion_1,white onion +onion/onion_1,white onion +onion/onion_1,white onion +onion/onion_1,white onion +instant_noodles/instant_noodles_1,package food +instant_noodles/instant_noodles_1,package noodles +instant_noodles/instant_noodles_1,bag looks like red holiday design +instant_noodles/instant_noodles_1,pack something looks like sncaks +calculator/calculator_4,light green calculator +calculator/calculator_4,calculator +calculator/calculator_4,bright green calculator +calculator/calculator_4,green calculator +calculator/calculator_4,neon green calculator +lime/lime_2,lime sticker +lime/lime_2,lime +lime/lime_2,green lime +lime/lime_2,green lime +lime/lime_2,lime +stapler/stapler_6,stapler +stapler/stapler_6,object tool pushed stack papers releases metal staple holds papers together pressure exterted tool metal staples prongs bent holds place +stapler/stapler_6,stapler +stapler/stapler_6,black stapler +stapler/stapler_6,object black stapler +bell_pepper/bell_pepper_5,green bell pepper +bell_pepper/bell_pepper_5,green bell pepper +bell_pepper/bell_pepper_5,green pepper +bell_pepper/bell_pepper_5,green pepper +bell_pepper/bell_pepper_5,green pepper +ball/ball_3,object soft ball +ball/ball_3,object soft red threads round +ball/ball_3,baseball +ball/ball_3,looks like white baseball red threading +ball/ball_3,baseball +bowl/bowl_4,bowl +bowl/bowl_4,white ceramic bowl +bowl/bowl_4,small ceramic bowl white +bowl/bowl_4,white bowl looking newly washed +bowl/bowl_4,bowl +flashlight/flashlight_3,flashlight +flashlight/flashlight_3,flash light +flashlight/flashlight_3,device called flashlight powered batteries produced visible light +flashlight/flashlight_3,blue flash light +flashlight/flashlight_3,flashlight +apple/apple_4,yellow apple +apple/apple_4,apple +apple/apple_4,golden apple +apple/apple_4,apple +apple/apple_4,yellow apple +pliers/pliers_4,pair pliers +pliers/pliers_4,black pliars +pliers/pliers_4,object pair pliers black handles +pliers/pliers_4,pair pliers +pliers/pliers_4,pliers red black handle +food_can/food_can_14,can soup +food_can/food_can_14,can food product +food_can/food_can_14,can soup can red green rectangle +food_can/food_can_14,food container commonly called tin can easily opened pulling pop top lid covering one end +food_can/food_can_14,can soup +scissors/scissors_4,silver scissors +scissors/scissors_4,pair scissors +scissors/scissors_4,pair scissors blue yellow handles +scissors/scissors_4,scissors used cutting things +scissors/scissors_4,scissors yellow blue handle +lemon/lemon_4,yellow lemon +lemon/lemon_4,lemon +lemon/lemon_4,tart fruit called tomato can eaten raw cooked +lemon/lemon_4,yellow lemon +lemon/lemon_4,lemon +shampoo/shampoo_5,cheap bottle shampoo +shampoo/shampoo_5,plastic bottle contents inside pink +shampoo/shampoo_5,bottle shampoo +shampoo/shampoo_5,bottle body wash +shampoo/shampoo_5,bottle shampoo +comb/comb_2,black comb oval head +comb/comb_2,hair brush used de tangle persons hair +comb/comb_2,hairbrush +comb/comb_2,black hair brush +comb/comb_2,hair brush +glue_stick/glue_stick_1,glue stick +glue_stick/glue_stick_1,tube glue white green label red cap +glue_stick/glue_stick_1,tube glue +glue_stick/glue_stick_1,glue stick +glue_stick/glue_stick_1,super glue use break something fix +sponge/sponge_5,red blue sponge +sponge/sponge_5,sponge +sponge/sponge_5,colorful sponge +sponge/sponge_5,sponge blue red used cleaning +sponge/sponge_5,kitchen sponge +instant_noodles/instant_noodles_1,packet asian looking food +instant_noodles/instant_noodles_1,package food +instant_noodles/instant_noodles_1,cookie pastry kind wrapped foreign packaging lettering +instant_noodles/instant_noodles_1,package food +instant_noodles/instant_noodles_1,snack package +water_bottle/water_bottle_9,plastic water bottle +water_bottle/water_bottle_9,beverage container +water_bottle/water_bottle_9,blue water bottle +water_bottle/water_bottle_9,purple water bottle +water_bottle/water_bottle_9,looks like reusable water bottle handle flip pour spout lid lilac colored +glue_stick/glue_stick_1,looks like chapstick +glue_stick/glue_stick_1,tube glue +food_box/food_box_9,green cardboard package annies pasta +food_box/food_box_9,box cracker green +food_box/food_box_9,box pasta +food_box/food_box_9,box sour cream onion crackers box green +food_box/food_box_9,box crackers +stapler/stapler_4,stapler +stapler/stapler_4,stapler +stapler/stapler_4,stapler joins two pieces paper together +stapler/stapler_4,black stapler +stapler/stapler_4,black stapler +food_box/food_box_11,box crackers +food_box/food_box_11,box cheez +food_box/food_box_11,red box cheez +food_box/food_box_11,box cheez +food_box/food_box_11,box cheez +food_bag/food_bag_4,bag oreo cookies +food_bag/food_bag_4,bag oreos +food_bag/food_bag_4,bag mini oreos bag blue white yellow text +food_bag/food_bag_4,package oreo cookies +food_bag/food_bag_4,package cookies +food_jar/food_jar_6,jar hot fudge +food_jar/food_jar_6,jar jar contains hot fudge +food_jar/food_jar_6,jar containing food product +food_jar/food_jar_6,jar jelly +food_jar/food_jar_6,cylinder shaped object metal top colored label center +cell_phone/cell_phone_1,mobile phone +cell_phone/cell_phone_1,older cellphone +cell_phone/cell_phone_1,handheld phone +cell_phone/cell_phone_1,old cell phone used call text people +cell_phone/cell_phone_1,cell phone +soda_can/soda_can_4,can vanilla coke zero +soda_can/soda_can_4,can vanilla coke zero +soda_can/soda_can_4,can coke +soda_can/soda_can_4,food can used store keep food items +soda_can/soda_can_4,can coca cola +bell_pepper/bell_pepper_6,green pepper +bell_pepper/bell_pepper_6,green bell pepper +bell_pepper/bell_pepper_6,green pepper +bell_pepper/bell_pepper_6,green bell pepper +bell_pepper/bell_pepper_6,green pepper +potato/potato_5,oblong brown dirty vegetable +potato/potato_5,potato usually cooked eaten starchy vegetable +potato/potato_5,potato +potato/potato_5,large baking potato +potato/potato_5,potato +stapler/stapler_8,small red stapler +stapler/stapler_8,small red stapler +stapler/stapler_8,small red stapler +stapler/stapler_8,stapler +stapler/stapler_8,mini stapler +dry_battery/dry_battery_5,batteries +dry_battery/dry_battery_5,battery +dry_battery/dry_battery_5,small battery +dry_battery/dry_battery_5,battery +dry_battery/dry_battery_5,small battery electrical charge stored called cell +ball/ball_4,dessert plate +ball/ball_4,plastic basketball +ball/ball_4,basketball +potato/potato_2,looks like small red potato +potato/potato_2,red potato +notebook/notebook_5,looks like sand paper +notebook/notebook_5,black spiral bound notebook +notebook/notebook_5,note pad +notebook/notebook_5,writing notebook +notebook/notebook_5,black spiral notebook +hand_towel/hand_towel_2,red washcloth +hand_towel/hand_towel_2,small red towel +hand_towel/hand_towel_2,red square top plate +hand_towel/hand_towel_2,folded towel +cell_phone/cell_phone_5,smartphone +cell_phone/cell_phone_5,smart phone +cell_phone/cell_phone_5,smartphone +cell_phone/cell_phone_5,cell phone dots either side +cell_phone/cell_phone_5,cell phone portable telephone can make receive calls +food_bag/food_bag_8,bag chips +food_bag/food_bag_8,bag sun chips +food_bag/food_bag_8,bag sun chips +food_bag/food_bag_8,pack sun chips +food_bag/food_bag_8,bag sun chips +lemon/lemon_5,yellow lemon +lemon/lemon_5,lemon lying side mostly yellow green patch near one end +lemon/lemon_5,lemon green spot +lemon/lemon_5,lemon +lemon/lemon_5,lemon +bell_pepper/bell_pepper_4,red bell pepper +bell_pepper/bell_pepper_4,red bell pepper +bell_pepper/bell_pepper_4,red pepper +bell_pepper/bell_pepper_4,red pepper +bell_pepper/bell_pepper_4,red bell pepper +pliers/pliers_3,green pliars +pliers/pliers_3,pair pliers +pliers/pliers_3,pair pliers +pliers/pliers_3,pair pliers +pliers/pliers_3,object pair pliers light green handles +greens/greens_4,bell pepper +greens/greens_4,vegetable possibly bok choi another type cabbage +greens/greens_4,bok choy plate +greens/greens_4,type green vegetable +sponge/sponge_9,kitchen sponge +food_can/food_can_4,can +food_can/food_can_4,can condensed milk +food_can/food_can_4,canned good food +food_can/food_can_4,can carnation milk small can white label +food_can/food_can_4,can product +coffee_mug/coffee_mug_3,mug +coffee_mug/coffee_mug_3,coffee mug +coffee_mug/coffee_mug_3,brown coffee mug +coffee_mug/coffee_mug_3,coffee mug +coffee_mug/coffee_mug_3,object brown handle hole center +glue_stick/glue_stick_5,marker glue stick +glue_stick/glue_stick_5,glue stick +glue_stick/glue_stick_5,marker pen +glue_stick/glue_stick_5,tube glue +food_can/food_can_5,can soup +food_can/food_can_5,can food +food_can/food_can_5,can food +food_can/food_can_5,can soup +food_can/food_can_5,market pantry can soup red white label +orange/orange_2,orange +orange/orange_2,piece fruit +orange/orange_2,round orange sitting alone +orange/orange_2,orange +food_bag/food_bag_4,bag mini oreo cookies +food_bag/food_bag_4,snack sized bag mini oreo cookies chocolate cookies cream filling middle +food_bag/food_bag_4,bag oreo cookies +food_bag/food_bag_4,bag oreos +food_bag/food_bag_4,bag mini oreos blue yellow white text +shampoo/shampoo_6,bottle shampoo +shampoo/shampoo_6,yellow plastic bottle +shampoo/shampoo_6,bottle childrens shampoo +shampoo/shampoo_6,green yellow bottle shampoo +shampoo/shampoo_2,looks like spray bottle +shampoo/shampoo_2,blue shade color might part bottle +garlic/garlic_3,bulb garlic +garlic/garlic_3,garlic bulb +garlic/garlic_3,clove garlic +garlic/garlic_3,looks like clove garlic used seasoning many health benefits +cell_phone/cell_phone_3,mobile phone +cell_phone/cell_phone_3,cell phone +cell_phone/cell_phone_3,looks flip phone +cell_phone/cell_phone_3,flip cell phones antiquated technology +cell_phone/cell_phone_3,flip phone one uses anymore +kleenex/kleenex_5,box kleenex +kleenex/kleenex_5,box facial tissue +kleenex/kleenex_5,box tissues +kleenex/kleenex_5,purple box tissues +kleenex/kleenex_5,box kleenex red design +notebook/notebook_2,sketch book 70 pages +notebook/notebook_2,sprial notebook paper 70 ruled sheets paper bound together wire spiral used humans write +notebook/notebook_2,yellow spiral bound notebook +notebook/notebook_2,spiral bound notebook +notebook/notebook_2,writing notebook +mushroom/mushroom_2,mushroom +mushroom/mushroom_2,mushroom fleshy spore bearing fruiting body fungus +mushroom/mushroom_2,mushroom +mushroom/mushroom_2,mushroom +mushroom/mushroom_2,mushroom +cell_phone/cell_phone_2,mobile phone +cell_phone/cell_phone_2,old mobile phone +cell_phone/cell_phone_2,cellular flip phone +cell_phone/cell_phone_2,older model cell phone +cell_phone/cell_phone_2,cellphone +pear/pear_8,green apple +pear/pear_8,yellow apple +pear/pear_8,apple +pear/pear_8,small green apple +pear/pear_8,yellow colored apple +lime/lime_1,green lime +lime/lime_1,green lime +lime/lime_1,lime +lime/lime_1,lime +lime/lime_1,lime produce sticker +lemon/lemon_6,yellow lemon shaped like football +lemon/lemon_6,sweet fruit called lemon can eaten raw cooked +lemon/lemon_6,yellow lemon +lemon/lemon_6,lemon +lemon/lemon_6,lemon +pear/pear_1,pear +pear/pear_1,pear +pear/pear_1,green pear +pear/pear_1,fresh pear brown spots peel +pear/pear_1,pear +potato/potato_5,russet potato +potato/potato_5,potato +potato/potato_5,large baking potato +potato/potato_5,potato +potato/potato_5,brown russet potato +marker/marker_1,marker used dry erase boards +marker/marker_1,red dry erase marker +marker/marker_1,red dry erase marker +marker/marker_1,red expo marker cap +marker/marker_1,magic marker +onion/onion_4,onion vegetable +onion/onion_4,white onion +onion/onion_4,onion tasty vegetable sharp flavor us usually cooked +onion/onion_4,onion +onion/onion_4,onion +sponge/sponge_6,sponge tool cleaning aid made soft porous material +sponge/sponge_6,yellow purple sponge +sponge/sponge_6,kitchen sponge +sponge/sponge_6,kitchen sponge +orange/orange_1,orange +orange/orange_1,orange fruit mostly grown florida +orange/orange_1,overripe orange +orange/orange_1,orange +orange/orange_1,piece fruit +food_box/food_box_3,box fiber one pastries +food_box/food_box_3,box fiber cereal +food_box/food_box_3,box fiberone bars +food_box/food_box_3,fiber one product +food_box/food_box_3,box fiber one +lemon/lemon_3,yellow lemon +lemon/lemon_3,lemon +lemon/lemon_3,yellow lemon +lemon/lemon_3,fresh lemon +lemon/lemon_3,lemon +tomato/tomato_4,red tomato +tomato/tomato_4,tomato +tomato/tomato_4,tomato +tomato/tomato_4,red tomato +tomato/tomato_4,tomato +garlic/garlic_3,clove garlic +garlic/garlic_3,bulb garlic +garlic/garlic_3,bulb garlic +garlic/garlic_3,may clove garlic used cooking +camera/camera_3,camera +camera/camera_3,digital camera +camera/camera_3,camera +camera/camera_3,pocket digital camera +camera/camera_3,digital camera +food_box/food_box_2,box containing dry rice need prepared eaten +food_box/food_box_2,packbox something +food_box/food_box_2,box zatarrains rice +food_box/food_box_2,box highly processed food red white label picture yellow food box +food_box/food_box_2,box zatarains yellow rice mix box red white +food_box/food_box_2,box dry noodles +peach/peach_1,peach +peach/peach_1,piece fruit +peach/peach_1,peach +peach/peach_1,looks like nectarine picture little blurry could peach +peach/peach_1,fresh peach +food_jar/food_jar_5,jar relish +food_jar/food_jar_5,jar peppers +food_jar/food_jar_5,jar peppers +food_jar/food_jar_5,jar pickles +scissors/scissors_1,pair scissors +scissors/scissors_1,orange grey scissors +scissors/scissors_1,scissor +scissors/scissors_1,pair scissors +scissors/scissors_1,scissors orange black handle +notebook/notebook_4,writing notebook +notebook/notebook_4,spiral bound notebook pad paper held together wire spiral one side +notebook/notebook_4,blue spiraled notebook +notebook/notebook_4,blue spiral bound notebook +notebook/notebook_4,blue spiral bound notebook +flashlight/flashlight_1,flashlight +flashlight/flashlight_1,black flashlight currently illuminated +flashlight/flashlight_1,black flashlight +flashlight/flashlight_1,black flashlight +flashlight/flashlight_1,black flashlight +toothpaste/toothpaste_3,tube toothpaste +toothpaste/toothpaste_3,tube toothpaste +toothpaste/toothpaste_3,toothpaste keeps teeth clean +toothpaste/toothpaste_3,tube toothpaste +toothpaste/toothpaste_3,tube toothpaste blue white +potato/potato_1,red potato +potato/potato_1,red potato +flashlight/flashlight_5,yellow black flashlight +flashlight/flashlight_5,black yellow flashlight +flashlight/flashlight_5,yellow black flashlight +flashlight/flashlight_5,yellow black flashlight +flashlight/flashlight_5,yellow flashlight +banana/banana_3,banana +banana/banana_3,yellow banana +banana/banana_3,banana plate +banana/banana_3,banana +banana/banana_3,banana +onion/onion_4,object round white tuft topside +onion/onion_4,looks like onion root side part tan skin bene torn +onion/onion_4,onion +onion/onion_4,onion looks decayed +onion/onion_4,onion appears brown yellow brown roots +dry_battery/dry_battery_4,battery +dry_battery/dry_battery_4,small battery electrical charge stored called cell +dry_battery/dry_battery_4,battery +dry_battery/dry_battery_4,small duracell battery +bowl/bowl_2,bowl normally used soups deserts part table setting +bowl/bowl_2,bowl +bowl/bowl_2,light blue bowl edges look worn +bowl/bowl_2,teal colored bowl +bowl/bowl_2,empty dinner bowl +food_can/food_can_1,can cant tell whats inside +food_can/food_can_1,can +food_can/food_can_1,can soup +food_can/food_can_1,canned good +food_can/food_can_1,can product +onion/onion_3,white onion +onion/onion_3,small onion yellow onion +onion/onion_3,onion +onion/onion_3,onion +food_can/food_can_1,can condensed milk +food_can/food_can_1,can soup +food_can/food_can_1,can paint holds liquid covering paint can cover many surfaces +food_can/food_can_1,can food +shampoo/shampoo_4,tall suave shampoo bottle gray lid +shampoo/shampoo_4,bottle shampoo +shampoo/shampoo_4,bottle shampoo conditioner +shampoo/shampoo_4,bottle suave shampoo +bell_pepper/bell_pepper_4,red bell pepper +bell_pepper/bell_pepper_4,red bell pepper +bell_pepper/bell_pepper_4,red bell pepper +bell_pepper/bell_pepper_4,red pepper +bell_pepper/bell_pepper_4,bell pepper vegetable +sponge/sponge_1,sponge +sponge/sponge_1,sponge +sponge/sponge_1,sponge +sponge/sponge_1,orange dish sponge +sponge/sponge_1,kitchen sponge +food_can/food_can_2,can campbells soup +food_can/food_can_2,can +food_can/food_can_2,can soup +food_can/food_can_2,can campbells soup +food_can/food_can_2,can soup +food_cup/food_cup_2,cup yogurt +food_cup/food_cup_2,looks like container yogurt foil top cant see label +food_cup/food_cup_2,container yogurt +food_cup/food_cup_2,container yogurt +food_cup/food_cup_2,container yogurt +bowl/bowl_4,empty dinner bowl +bowl/bowl_4,white bowl +bowl/bowl_4,bowl normally used soups deserts part table setting +bowl/bowl_4,bowl +bowl/bowl_4,white bowl +plate/plate_1,empty dinner bowl +plate/plate_1,yellow ceramic plate +plate/plate_1,either lemon meringue yellow jello +plate/plate_1,plate +food_box/food_box_8,b ack box sort crackers cant tell brand box blue +food_box/food_box_8,box crackers +food_box/food_box_8,chicken bisket box mainly blue +food_box/food_box_8,box crackers +food_box/food_box_8,little crackers people like put cheese +ball/ball_6,small beanbag toy looks like baketbal +ball/ball_6,plastic toy basketball +ball/ball_6,basketball +ball/ball_6,ball pattern similar basketball +ball/ball_6,nerf basketball +food_cup/food_cup_4,container food +food_cup/food_cup_4,plastic cup chobani peach yogurt +food_cup/food_cup_4,container chobani yogurt +food_cup/food_cup_4,cup yogurt +food_cup/food_cup_4,container peach flavored chobani yogurt +marker/marker_8,marker +marker/marker_8,magic marker +marker/marker_7,markers used write +marker/marker_7,marker +marker/marker_7,pink highlighter +marker/marker_7,magic marker +sponge/sponge_1,object orangepink dish washing sponge +sponge/sponge_1,sponge +sponge/sponge_1,cleaning sponge +sponge/sponge_1,kitchen sponge +sponge/sponge_1,orange sponge +banana/banana_4,green plantain +banana/banana_4,plantain +banana/banana_4,banana +banana/banana_4,plantain plate +banana/banana_4,unripe green banana +calculator/calculator_3,white calculator green screen black keys +calculator/calculator_3,calculator +calculator/calculator_3,calculator +calculator/calculator_3,small handheld device used mathematical computation +calculator/calculator_3,calculator used math questions +bell_pepper/bell_pepper_3,red pepper +bell_pepper/bell_pepper_3,red pepper +bell_pepper/bell_pepper_3,small orange pumpkin big stem top +bell_pepper/bell_pepper_3,red bell pepper +bell_pepper/bell_pepper_3,red bell pepper +garlic/garlic_2,bulb garlic +garlic/garlic_2,bulb garlic +glue_stick/glue_stick_3,spray can +glue_stick/glue_stick_3,glue sticks solid adhesives twist push tubes +glue_stick/glue_stick_3,tube glue +binder/binder_3,binder +binder/binder_3,school folder +binder/binder_3,black binder +binder/binder_3,black folder +binder/binder_3,black binder +sponge/sponge_12,blue sponge can used cleaning dishes +sponge/sponge_12,blue pincushion +sponge/sponge_12,kitchen sponge +bowl/bowl_5,bowl +bowl/bowl_5,object kitchen bowl +bowl/bowl_5,empty dinner bowl +bowl/bowl_5,white black bowl +bowl/bowl_5,bowl black stripes around inside +pliers/pliers_4,plyers open +pliers/pliers_4,pair pliers +pliers/pliers_4,pair pliers +pliers/pliers_4,pair pliers +pliers/pliers_4,pliers +food_box/food_box_9,green box containing food probably pasta +food_box/food_box_9,green box bunny logo +food_box/food_box_9,box crackers +food_box/food_box_9,green box bunny +stapler/stapler_6,black stapler +stapler/stapler_6,black stapler +stapler/stapler_6,stapler +stapler/stapler_6,stapler +stapler/stapler_6,stapler mechanical device joins pages paper similar material driving thin metal staple sheets folding ends +glue_stick/glue_stick_6,glue stick +glue_stick/glue_stick_6,can cooking spray +glue_stick/glue_stick_6,canister looks like glue stick +glue_stick/glue_stick_6,tube glue +glue_stick/glue_stick_6,stick elmers glue +food_can/food_can_8,can rotel combination tomatoes perppers mostly used topping added cheese make nachos +food_can/food_can_8,can tomatoes +food_can/food_can_8,can rotel tomatoes +food_can/food_can_8,can +apple/apple_1,dark red apple sticker +apple/apple_1,red apple +apple/apple_1,dark red apple +apple/apple_1,apple +apple/apple_1,red apple +ball/ball_5,picture small plastic looking toy football brown white +ball/ball_5,nerf football +ball/ball_5,fake brown football +ball/ball_5,football +ball/ball_5,toy football +ball/ball_7,brand new soccer ball +ball/ball_7,soccer ball +ball/ball_7,soccer ball +ball/ball_7,white round soccer ball black pentagons around +ball/ball_7,object white black hexagonal soccer ball +water_bottle/water_bottle_7,bottle water +water_bottle/water_bottle_7,bottle drinking water +water_bottle/water_bottle_7,plastic water bottle +water_bottle/water_bottle_7,plastic water bottle water bottle unopened +water_bottle/water_bottle_7,waterbottle water cap +instant_noodles/instant_noodles_4,package noodles +instant_noodles/instant_noodles_4,packet asian food +instant_noodles/instant_noodles_4,package food +instant_noodles/instant_noodles_4,package soup +apple/apple_3,fresh yellow apple stem +apple/apple_3,fruit looked like golden delicious +apple/apple_3,yellow lemon +apple/apple_3,apple +mushroom/mushroom_2,mushroom +sponge/sponge_10,kitchen sponge +cap/cap_4,red baseball cap +cap/cap_4,red baseball cap +cap/cap_4,red baseball cap +cap/cap_4,red ball cap +cap/cap_4,red baseball cap +binder/binder_3,black binder +binder/binder_3,black 3 ring binder +binder/binder_3,black binder +binder/binder_3,school folder +binder/binder_3,black folder thin square shaped +food_jar/food_jar_4,jar white pasta sauce +food_jar/food_jar_4,jar pasta sauce +food_jar/food_jar_4,jar alfredo sauce +food_jar/food_jar_4,unopened jar contents white +food_jar/food_jar_4,jar alfredo sauce +sponge/sponge_7,sponge +sponge/sponge_7,kitchen sponge +sponge/sponge_7,yellow sponge green scrubbing pad +sponge/sponge_7,kitchen sponge +sponge/sponge_7,green yellow sponge +coffee_mug/coffee_mug_6,small ceramic bowl dark yellow +coffee_mug/coffee_mug_6,bowl +coffee_mug/coffee_mug_6,yellow mug brown stripe around edge +coffee_mug/coffee_mug_6,tan coffee cup solid brown decorative ring near top +coffee_mug/coffee_mug_6,mug +lime/lime_3,green lime +lime/lime_3,looks like green lime white patch top +lime/lime_3,lime +onion/onion_4,yellow onion +onion/onion_4,onion +onion/onion_4,onion +onion/onion_4,white onion +onion/onion_4,white onion +garlic/garlic_3,bulb garlic +garlic/garlic_3,bulb garlic +garlic/garlic_3,clove garlic +garlic/garlic_3,head garlic white purple +dry_battery/dry_battery_3,battery +banana/banana_4,banana +banana/banana_4,green banana +banana/banana_4,plantain plate +banana/banana_4,unripe banana plantain +banana/banana_4,ripe banana +calculator/calculator_1,calculator +calculator/calculator_1,calculater used perform math +calculator/calculator_1,simple digital calculator basic math problems can solved using electronic device +calculator/calculator_1,calculator +calculator/calculator_1,calculator +tomato/tomato_7,tomato +tomato/tomato_7,red tomato +tomato/tomato_7,picture tomato +tomato/tomato_7,red tomatoes used make marinara sauce +tomato/tomato_7,sweet fruit called tomato can eaten raw cooked +water_bottle/water_bottle_6,bottle water +water_bottle/water_bottle_6,small bottle water +water_bottle/water_bottle_6,bottle water squarish blue cap blue label +water_bottle/water_bottle_6,plastic water bottle +water_bottle/water_bottle_6,bottle drinking water +glue_stick/glue_stick_1,glue stick +glue_stick/glue_stick_1,tube super glue +shampoo/shampoo_1,bottle shampoo +shampoo/shampoo_1,bottle shampoo +shampoo/shampoo_1,plastic container may dispense shampoo conditioner hand lotion substances +shampoo/shampoo_1,body cleanser body soap +coffee_mug/coffee_mug_2,dark brown coffee mug +coffee_mug/coffee_mug_2,cup mug must often coffee tea served containers +coffee_mug/coffee_mug_2,ceramic mug +coffee_mug/coffee_mug_2,coffee mug +coffee_mug/coffee_mug_2,looks like coffee tea mug outside looks tan brown inside dark see +food_box/food_box_9,box non perishable food flavor sour cream onion +food_box/food_box_9,box crackers green white text +food_box/food_box_9,box sour cream onion bagel chips +food_box/food_box_9,package sour cream onion mix +food_box/food_box_9,box food +plate/plate_3,white plate blue stripes around edge +plate/plate_3,plate +plate/plate_3,plate +plate/plate_3,empty plate +bell_pepper/bell_pepper_6,green pepper +bell_pepper/bell_pepper_6,green bell pepper +bell_pepper/bell_pepper_6,green bell pepper +bell_pepper/bell_pepper_6,green bell pepper +bell_pepper/bell_pepper_6,green pepper +pliers/pliers_3,green pliars +pliers/pliers_3,tool can used hold wire together +pliers/pliers_3,pair metal pliers green coated handles +pliers/pliers_3,pair pliers +pliers/pliers_3,pair pliers +water_bottle/water_bottle_10,water bottle +water_bottle/water_bottle_10,pink sippie cup red sippie lid +water_bottle/water_bottle_10,red water bottle label saying bpa free +water_bottle/water_bottle_10,red water bottle +water_bottle/water_bottle_10,plastic water bottle +instant_noodles/instant_noodles_6,square shape pack noodles packaging yellow red white letters +instant_noodles/instant_noodles_6,package cookies +instant_noodles/instant_noodles_6,package food +instant_noodles/instant_noodles_6,package soup mix +lightbulb/lightbulb_2,light bulb +lightbulb/lightbulb_2,lightbulb +lightbulb/lightbulb_2,light bulb +lightbulb/lightbulb_2,light bulb +lightbulb/lightbulb_2,lightbulb provides light residential setting +flashlight/flashlight_4,black flashlight +flashlight/flashlight_4,flashlight +flashlight/flashlight_4,object black flashlight yellow button +flashlight/flashlight_4,bulky black flashlight yellow switch +flashlight/flashlight_4,flashlight +calculator/calculator_4,calculator +calculator/calculator_4,green calculator white buttons +calculator/calculator_4,green calculator desk calculator +calculator/calculator_4,calculator +calculator/calculator_4,lime green calculator +apple/apple_1,apple +apple/apple_1,apple +apple/apple_1,ripe red apple +keyboard/keyboard_1,silver white keyboard +keyboard/keyboard_1,computer keyboard +keyboard/keyboard_1,silver computer keyboard white keys +keyboard/keyboard_1,computer keyboard +keyboard/keyboard_1,computer keyboard +rubber_eraser/rubber_eraser_4,eraser +sponge/sponge_4,purple sponge +sponge/sponge_4,kitchen sponge +sponge/sponge_4,sponge +sponge/sponge_4,object purple sponge +sponge/sponge_4,squeegee +food_box/food_box_4,box oreo funstix +food_box/food_box_4,box cookie snacks +food_box/food_box_4,box oreo funstix +food_box/food_box_4,yellow box oreo sticks +food_box/food_box_4,package oreo cookies +flashlight/flashlight_2,red flashlight +flashlight/flashlight_2,red flashlight +flashlight/flashlight_2,device called flashlight powered batteries produced visible light +flashlight/flashlight_2,red flashlight +flashlight/flashlight_2,black red flashlight +hand_towel/hand_towel_3,folded green washcloth +hand_towel/hand_towel_3,folded towel +hand_towel/hand_towel_3,green towel +hand_towel/hand_towel_3,towel +food_can/food_can_5,can soup +food_can/food_can_5,can food +food_can/food_can_5,can soup +food_can/food_can_5,canned good label turned description doable +food_can/food_can_5,can food +ball/ball_1,football +ball/ball_1,blurry shape similar football brown texture white lines similar football +ball/ball_1,inflatable toy football brown white +ball/ball_1,toy football +tomato/tomato_7,ripe tomato +tomato/tomato_7,tomato +tomato/tomato_7,tomato +tomato/tomato_7,tomato lot foods +tomato/tomato_7,red tomato +pitcher/pitcher_2,coffee pot pot silver black +pitcher/pitcher_2,electric kettle pitcher hot liquids +pitcher/pitcher_2,carafe great coffee +pitcher/pitcher_2,coffee pot +pitcher/pitcher_2,thermos jar +toothpaste/toothpaste_4,tube toothpaste tube red white +toothpaste/toothpaste_4,tube toothpaste +toothpaste/toothpaste_4,tube toothpaste +toothpaste/toothpaste_4,tube toothpaste +toothpaste/toothpaste_4,red tube toothpaste +food_can/food_can_11,can soup red white label +food_can/food_can_11,white red tin can food may soup can +food_can/food_can_11,can soup +food_can/food_can_11,can soup +food_can/food_can_11,looks like campbells soup can side label showing +food_can/food_can_13,can soup +food_can/food_can_13,unopened can sitting table +food_can/food_can_13,can fruit +food_can/food_can_13,can +food_can/food_can_13,can soup +instant_noodles/instant_noodles_6,packaged pastry +instant_noodles/instant_noodles_6,package soup mix +instant_noodles/instant_noodles_6,package food image blurry +instant_noodles/instant_noodles_6,noodles cooked +instant_noodles/instant_noodles_6,package ramen noodles +glue_stick/glue_stick_5,blue marker white label +glue_stick/glue_stick_5,tube glue +glue_stick/glue_stick_5,glue stick blue top +glue_stick/glue_stick_5,blue marker glue stick likely +ball/ball_2,soccer ball +ball/ball_2,nerf soccer ball +ball/ball_2,balls used play ball games +ball/ball_2,soccer ball +food_cup/food_cup_1,container yogurt +food_cup/food_cup_1,unused yogurt cup +food_cup/food_cup_1,container yogurt +food_cup/food_cup_1,container yogurt +food_cup/food_cup_1,small plastic container holding food called yogurt yogurt dairy product made using active bacteria +onion/onion_2,onion +onion/onion_2,white onion +onion/onion_2,white onion +onion/onion_2,onion root vegetable +onion/onion_2,white onion +pitcher/pitcher_1,gravy boat +pitcher/pitcher_1,pitcher +pitcher/pitcher_1,white ceramic pitcher leaf designs painted +pitcher/pitcher_1,cream dispenser +pitcher/pitcher_1,dish can used hold pour liquids milk cream +sponge/sponge_8,kitchen sponge +sponge/sponge_8,yellow blue sponge +sponge/sponge_8,sponge +sponge/sponge_8,sponge usually used clean one rough side scrub items clean +food_jar/food_jar_3,jar gravy +food_jar/food_jar_3,jar food +food_jar/food_jar_3,jar food +food_jar/food_jar_3,jar gravy +toothbrush/toothbrush_2,toothbrush +toothbrush/toothbrush_2,green white toothbrush +toothbrush/toothbrush_2,toothbrush +toothbrush/toothbrush_2,green colored toothbrush +rubber_eraser/rubber_eraser_1,pencil eraser blue white wrapper +rubber_eraser/rubber_eraser_1,looks like battery charger used recharge rechargeable batteries device electrical nature +bowl/bowl_5,white ceramic bowl black stripes inside +bowl/bowl_5,ceramic bowl blue stripe design +bowl/bowl_5,empty dinner bowl +bowl/bowl_5,white ceramic bowl +bowl/bowl_5,glass bowl eating food +marker/marker_7,looks like bright pink highlighter cap bottom look black cant read brand name +marker/marker_7,device gadget sorts pink color +marker/marker_7,felt tip marker black cap piece felt releases ink tube mark paper surfaces +marker/marker_7,pink highlighter +marker/marker_7,magic marker +pear/pear_1,pear fruit +pear/pear_1,pear green looks ripe +pear/pear_1,green slightly blemished pear +pear/pear_1,pear +pear/pear_1,looks like pear green seems pretty badly bruised +orange/orange_3,orange +orange/orange_3,object looks like fruit vegetable orange round +orange/orange_3,orange +orange/orange_3,orange +orange/orange_3,orange +food_jar/food_jar_6,jar food appears jelly fruity food thats ready eat +food_jar/food_jar_6,jar hot fudge +food_jar/food_jar_6,jar jam jelly +food_jar/food_jar_6,jar jelly +cereal_box/cereal_box_2,box chex +cereal_box/cereal_box_2,box cereal +cereal_box/cereal_box_2,box chocolate chex cereal +cereal_box/cereal_box_2,box chex cereal +cereal_box/cereal_box_2,box chocolate chex brown blue stripe +food_box/food_box_1,box crackers +food_box/food_box_1,box containing food product +food_box/food_box_1,box artificial sweetner +food_box/food_box_1,box food +instant_noodles/instant_noodles_3,noodles staple food many cultures +instant_noodles/instant_noodles_3,package food preparation required food can eaten +instant_noodles/instant_noodles_3,package food +instant_noodles/instant_noodles_3,ramon soup +instant_noodles/instant_noodles_3,package frozen vegetables +food_box/food_box_3,box food +food_box/food_box_3,box breakfast bars +food_box/food_box_3,red white box +food_box/food_box_3,box crackers +dry_battery/dry_battery_1,object blurry tell could used +dry_battery/dry_battery_1,battery +onion/onion_2,unpeeled white onion round though perfect sphere stem apparent top +onion/onion_2,white onion +onion/onion_2,onion +onion/onion_2,onion skin white +onion/onion_2,white onion +food_can/food_can_13,can progresso soup +food_can/food_can_13,can soup +food_can/food_can_13,can soup +food_can/food_can_13,can progresso soup +food_can/food_can_13,can soup +bowl/bowl_2,glass bowl +bowl/bowl_2,light green bowl +bowl/bowl_2,bowl +bowl/bowl_2,empty dinner bowl +bowl/bowl_2,bowl +calculator/calculator_1,calculator +calculator/calculator_1,silver black calculator black grey yellow buttons +calculator/calculator_1,calculator +calculator/calculator_1,calculator +calculator/calculator_1,simple calculator +instant_noodles/instant_noodles_3,package frozen vegetables +instant_noodles/instant_noodles_3,bag food +instant_noodles/instant_noodles_3,package food +instant_noodles/instant_noodles_3,pack snack frozen food item +food_can/food_can_14,can illed product +food_can/food_can_14,looks like unopened can tomato paste +food_can/food_can_14,can soup +food_can/food_can_14,can +food_can/food_can_14,can soup red green label +pear/pear_2,piece fruit +pear/pear_2,green pear +pear/pear_2,pear +pear/pear_2,pear +pear/pear_2,object ripe green pear +pitcher/pitcher_2,coffee pitcher filled black coffee +pitcher/pitcher_2,silver black coffee pot +pitcher/pitcher_2,container can boil liquids +pitcher/pitcher_2,pitcher hot liquid +pitcher/pitcher_2,coffee pot +sponge/sponge_12,kitchen sponge +garlic/garlic_7,clove garlic +garlic/garlic_7,fresh garlic clove +garlic/garlic_7,onion +garlic/garlic_7,head garlic +garlic/garlic_7,clove garlic +stapler/stapler_3,black stapler +stapler/stapler_3,stapler +stapler/stapler_3,stapler +stapler/stapler_3,black stapler +stapler/stapler_3,stapler +potato/potato_1,red ball might tomato tomato usually mashed sliced eaten humans +potato/potato_1,red potato +potato/potato_1,apple +potato/potato_1,apple +tomato/tomato_4,red tomato +tomato/tomato_4,red vine tomatoe small size +tomato/tomato_4,tomato +tomato/tomato_4,yellow red tomato +tomato/tomato_4,tomato +food_bag/food_bag_2,bag food +food_bag/food_bag_2,bag something +food_bag/food_bag_2,bag food possibly bread +food_bag/food_bag_2,bag chips +food_bag/food_bag_2,bag food +stapler/stapler_3,black stapler +stapler/stapler_3,stapler keeps papers together +stapler/stapler_3,black stapler +stapler/stapler_3,stapler +stapler/stapler_3,stapler +toothpaste/toothpaste_1,tube toothpaste +toothpaste/toothpaste_1,tube crest toothpaste +toothpaste/toothpaste_1,tube toothpaste +toothpaste/toothpaste_1,tube toothpaste squeeze dollop toothbrush clean teeth freshen breath +toothpaste/toothpaste_1,tube toothpaste +plate/plate_7,white plate +plate/plate_7,plate +plate/plate_7,empty dinner plate +plate/plate_7,white styrofoam plate +lemon/lemon_4,tart fruit called lemon can eaten raw cooked +lemon/lemon_4,lemon +lemon/lemon_4,lemon +lemon/lemon_4,yellow lemon +lemon/lemon_4,lemon +plate/plate_6,yellow plate +plate/plate_6,brown ceramic plate +plate/plate_6,shown pie perhaps pumpkin scalloped edge +plate/plate_6,plate +plate/plate_6,empty dinner plate +pliers/pliers_2,pair pliers +pliers/pliers_2,pair pliers black handle +pliers/pliers_2,pair pliers +pliers/pliers_2,cutting player +pliers/pliers_2,pair pliers +bowl/bowl_5,white blue rings ceramic bowl +bowl/bowl_5,bowl +bowl/bowl_5,stripy bowl +bowl/bowl_5,bowl used kitchen eating +bowl/bowl_5,bowl +peach/peach_1,could red onion +peach/peach_1,peach +peach/peach_1,could kind fruit like red apple +peach/peach_1,peach +peach/peach_1,piece fruit +hand_towel/hand_towel_3,green hand towel +hand_towel/hand_towel_3,folded towel +hand_towel/hand_towel_3,soft absorbent cloth called towel towels used dry water peoples hands items +hand_towel/hand_towel_3,green towel +hand_towel/hand_towel_3,hand towel +sponge/sponge_3,squeegee +sponge/sponge_3,sponge blue +sponge/sponge_3,kitchen sponge +sponge/sponge_3,sponge +sponge/sponge_3,blue sponge +water_bottle/water_bottle_5,bottle water +water_bottle/water_bottle_5,plastic water bottle +water_bottle/water_bottle_5,plastic bottle looks holding water can purposed +water_bottle/water_bottle_5,bottle water blue label +water_bottle/water_bottle_5,bottle water +stapler/stapler_8,red stapler used staple papers together one way bind together +stapler/stapler_8,red stapler +stapler/stapler_8,red stapler +stapler/stapler_8,red stapler +stapler/stapler_8,stapler +food_box/food_box_10,box multigrain crackers healthy +food_box/food_box_10,box crackers +food_box/food_box_10,box cereal +food_box/food_box_10,package crackers +food_box/food_box_10,box archer farms multigrain crackers +bell_pepper/bell_pepper_1,orange bell pepper +bell_pepper/bell_pepper_1,orange pepper +bell_pepper/bell_pepper_1,red pepper +bell_pepper/bell_pepper_1,orange bell pepper +bell_pepper/bell_pepper_1,orange bell pepper +glue_stick/glue_stick_5,glue stick blue cap white label +instant_noodles/instant_noodles_1,bag ramen soup mix +instant_noodles/instant_noodles_1,sweet desert cake typically baked +instant_noodles/instant_noodles_1,package instant ramen +water_bottle/water_bottle_4,bottle water +water_bottle/water_bottle_4,bottle water +water_bottle/water_bottle_4,bottle flavored water +shampoo/shampoo_2,plastic bottle +shampoo/shampoo_2,bottle hair conditioner +shampoo/shampoo_2,plastic bottle product inside white +soda_can/soda_can_4,opened can coca cola zero +soda_can/soda_can_4,open can cococola vanilla coke zero mostly black +soda_can/soda_can_4,can vanilla coke zero +food_bag/food_bag_8,bag french onion sun chips +food_bag/food_bag_8,green bag sun chips flavor french onion +lime/lime_2,lime +lime/lime_2,green oval citrus fruit small enough hold two three hand +dry_battery/dry_battery_2,object cyllinder shape yellow label black dark brown cap +bowl/bowl_5,bowl +bowl/bowl_5,bowl used holding liquid foods +bowl/bowl_5,striped bowl +toothpaste/toothpaste_3,tube toothpaste tube blue white letters +toothpaste/toothpaste_3,tube toothpaste +toothpaste/toothpaste_3,tube ultrabrite toothpaste +food_can/food_can_5,aluminum can appears either canned soup canned vegetables +food_can/food_can_5,can +food_can/food_can_13,sits can soup +food_can/food_can_13,can food +food_can/food_can_11,can soup targets market pantry +food_can/food_can_11,can soup label white red lid gold +flashlight/flashlight_2,battery operated flashlight +flashlight/flashlight_2,red flashlight +mushroom/mushroom_2,potato used cooking +shampoo/shampoo_5,bottle suave shampoo +shampoo/shampoo_5,bottle body wash +shampoo/shampoo_1,bottle conditioner +shampoo/shampoo_1,bottle contains shampoo used take bath +shampoo/shampoo_1,bottle hair shampoo +food_can/food_can_10,can food +food_can/food_can_10,can stored fruit +food_can/food_can_10,unopened can flip top +onion/onion_2,white onion used cooking +onion/onion_2,white onion +onion/onion_2,white onion papery outer covering round +bowl/bowl_2,ornate bowl +bowl/bowl_2,empty bowl +bowl/bowl_2,bowl bowl shiny blue +potato/potato_2,potato starchy tuberous crop +potato/potato_2,red potato +plate/plate_3,white plate +plate/plate_3,blue white plate +sponge/sponge_11,sponge tool cleaning aid made soft porous material +plate/plate_5,plain white plate +plate/plate_5,white plate +plate/plate_5,white plate +flashlight/flashlight_3,see flashlight +flashlight/flashlight_3,blue flashlight +stapler/stapler_8,back red stapler +stapler/stapler_8,red stapler used keep pages together +stapler/stapler_8,red stapler +garlic/garlic_3,garlic +garlic/garlic_3,bulb garlic used cooking +garlic/garlic_3,white onion +marker/marker_1,marker +food_can/food_can_13,can soup made progresso +food_can/food_can_13,can food +food_can/food_can_13,unopened can light progresso soup flip top blue label +bell_pepper/bell_pepper_5,green bell pepper +bell_pepper/bell_pepper_5,black +bell_pepper/bell_pepper_5,bell pepper hollow green red yellow vegetable seeds +water_bottle/water_bottle_5,bottle water blue label +water_bottle/water_bottle_5,water bottle blue label +water_bottle/water_bottle_10,plastic beverage bottle +water_bottle/water_bottle_10,sippy cup used drink liquid without opening lid +water_bottle/water_bottle_10,red plastic water bottle dark lid spout +sponge/sponge_10,lemon +potato/potato_1,fruit vegetable brown color +potato/potato_1,red potato used cooking +food_jar/food_jar_5,jar pickles +food_jar/food_jar_5,jar food product lid appears snap +food_jar/food_jar_5,medium sized glass jar food vacuum lid appears unopened blue red white label +food_can/food_can_3,can spaghettios snack +food_can/food_can_3,food can container storage foods +food_can/food_can_3,canned food +water_bottle/water_bottle_7,bottle water +water_bottle/water_bottle_7,bottle arrowhead watter +water_bottle/water_bottle_7,plastic water bottle +shampoo/shampoo_1,bottle hair conditioner +shampoo/shampoo_1,shampoo used applying wet hair massaging product hair rinsing +plate/plate_1,plate broad mainly flat vessel commonly used serve food +food_box/food_box_9,box annies brand snacks +food_box/food_box_9,food box container distribution storage goods +food_box/food_box_9,green box something +lightbulb/lightbulb_2,incandescent light bulb +lightbulb/lightbulb_2,light bulb +lightbulb/lightbulb_2,object white light bulb +binder/binder_3,black binder +binder/binder_3,binder used keep papers together +onion/onion_5,red onion unpeeled +onion/onion_5,red onion +onion/onion_5,large red onion +lemon/lemon_6,citrus fruit lemon +lemon/lemon_6,lemon +lemon/lemon_6,lemon +coffee_mug/coffee_mug_2,mug used holding coffee tea +coffee_mug/coffee_mug_2,brown ceramic coffee mug +coffee_mug/coffee_mug_2,mug +food_box/food_box_3,box fiber one +food_box/food_box_3,box allows contents stored online +food_can/food_can_2,can campbells soup +food_can/food_can_2,unopened can campbells soup flip top +garlic/garlic_2,garlic +garlic/garlic_2,one whole onion outer wrapper removed +lemon/lemon_4,lemon +lemon/lemon_4,yellow lemon +lemon/lemon_4,fruit bitter sour diff --git a/OLD GLS/conf_files/english/english_raw.conf b/OLD GLS/conf_files/english/english_raw.conf new file mode 100644 index 0000000..900c9a4 --- /dev/null +++ b/OLD GLS/conf_files/english/english_raw.conf @@ -0,0 +1,6045 @@ +cuboid/cuboid_4,this is a rectangle +orange/orange_3,this picture looks like an orange +orange/orange_4,this is an orange +cuboid/cuboid_2,this picture looks like a green rectangle +lemon/lemon_4,this picture looks like a lemon +tomato/tomato_3,this picture looks like a tomato +corn/corn_2,this is a picture of corn +cucumber/cucumber_4,this is a cucumber +plum/plum_3,this picture looks like a red apple +plum/plum_4,this is an apple +cucumber/cucumber_2,this is a cucumber +lime/lime_4,this picture looks like a lime +triangle/triangle_3,this picture looks like a green scalene triangle +cube/cube_2,this is a green cube +cylinder/cylinder_4,this is a cylinder +potato/potato_3,this picture looks like a potato +potato/potato_4,this is a potato +cylinder/cylinder_3,this picture looks like a blue cylinder +corn/corn_3,this picture looks like corn +corn/corn_1,this is corn +lemon/lemon_2,this picture looks like a lemon +eggplant/eggplant_4,this is an eggplant +semicylinder/semicylinder_3,this picture looks like a yellow semicircle +semicylinder/semicylinder_4,this is a cross section of a circle +eggplant/eggplant_2,this is an eggplant +cube/cube_3,this picture looks like a blue cube +cube/cube_1,this picture looks like a yellow cube +lime/lime_2,this picture looks like a lime +orange/orange_1,picture looks like an orange +banana/banana_4,this is a banana +banana/banana_4,this looks like a slightly unrippend fruit laying on its side +banana/banana_4,it is a banana +banana/banana_4,this is a green banana +orange/orange_2,this is an orange +orange/orange_2,this is a yellow apple +cuboid/cuboid_4,this rectangleshape and color is blue +cuboid/cuboid_4,looks like a rectangular block +cuboid/cuboid_4,this is a blue rectangle block +cuboid/cuboid_4,this is a blue rectangular +orange/orange_3,this is an orange +orange/orange_3,this picture is an orange +banana/banana_2,this is a banana +banana/banana_2,this is a banana +banana/banana_2,this is a banana +banana/banana_2,this is a yellow banana +banana/banana_2,this is a banana the banana in this picture is yellow +orange/orange_4,this is a mango +orange/orange_4,this is an orange +orange/orange_4,this is an orange +orange/orange_4,this looks like an orange +cuboid/cuboid_3,this is a rectangle the rectangle in this picture is red +cuboid/cuboid_3,this is a rectangular red block +cuboid/cuboid_3,this is a red cuboid +cuboid/cuboid_3,this is a red rectangular shape that is solid +cuboid/cuboid_1,this is a cheese +cuboid/cuboid_1,this is a yellow rectangular +banana/banana_3,this is a yellow banana +banana/banana_3,this is a banana +banana/banana_3,this is a banana +cuboid/cuboid_2,this is a green block turned at different angles +cuboid/cuboid_2,this is a green rectangular +cuboid/cuboid_2,this looks like a block +cuboid/cuboid_2,this is a stick of butter +cuboid/cuboid_2,this rectangleshape and color is green +banana/banana_1,this is a banana +banana/banana_1,this is a banana +banana/banana_1,this is a yellow banana +tomato/tomato_1,this picture looks like a red cherry +tomato/tomato_1,this is a roma tomato +tomato/tomato_1,this is a tomato +tomato/tomato_1,this is a red tomato +corn/corn_4,this is a picture of white corn +corn/corn_4,this is an ear of corn +corn/corn_4,this is an ear of corn it has been husked which means the outer husk has been removed +corn/corn_4,this is a maize +corn/corn_4,it is an ear of corn +tomato/tomato_2,several different red meats that are in different shapes +lemon/lemon_4,this is an yellow lemon +lemon/lemon_4,this looks like a round lemon +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a lemon +tomato/tomato_3,this is a large greenhouse tomato +corn/corn_2,this is corn on the cob +corn/corn_2,this is a maize +semicylinder/semicylinder_1,this is a half blue cylinder +arch/arch_4,this shape like a semicircle +arch/arch_4,this looks like a dark red building block +arch/arch_4,it is a red neck pillow +arch/arch_4,picture looks a pink guardian of chopsticks +plum/plum_2,this is an apple +plum/plum_2,this is a red apple +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,it is look likes a cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,picture looks like cucumber +plum/plum_3,this is an apple +plum/plum_3,this is a red apple +arch/arch_2,this thing colour is blue +arch/arch_2,it looks like a blue tape dispenser +arch/arch_2,this is a plastic stand +arch/arch_2,picture looks like a blue guardian of chopsticks +arch/arch_2,the object in this picture is blue picture looks like a small ramp +plum/plum_4,this is a redcolor thing +plum/plum_4,this is an apple +plum/plum_4,this looks like an apple +cucumber/cucumber_3,this is a cucumber the cucumber is green +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,picture looks like cucumber +arch/arch_3,picture looks like a blue guardian of chopsticks +arch/arch_3,this looks like a green shape with a cutout c on one side +arch/arch_3,this thing colour is green +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,picture looks like cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is round this object is green in colorthis is a cucumber +cucumber/cucumber_2,this is cucumber +arch/arch_1,this is yelloe color article +arch/arch_1,this picture looks like a building part +arch/arch_1,picture looks like a yellow guardian of chopsticks +triangle/triangle_1,a red triangle wood +triangle/triangle_1,this is a red triangular prism +triangle/triangle_1,this looks like a red triangular wedge +triangle/triangle_1,picture looks like red cabbage +cube/cube_4,this appears to be a red cube +cube/cube_4,this picture looks like a cube of red jello +cube/cube_4,this is a red block +cube/cube_4,this is a red cubic +cube/cube_4,it looks like a red plastic cube +triangle/triangle_2,bright yellow cheese cut in a wedge shape and posed various ways +lime/lime_4,this is a green lemon +lime/lime_4,this looks like a lime +lime/lime_4,this looks like a lime +lime/lime_4,this is a lime +triangle/triangle_3,this is a green triangular prism +cube/cube_2,this is a green cube +cube/cube_2,this is a green cubic +potato/potato_1,picture looks like a sweet potato +cabbage/cabbage_4,this is a red cababage +cabbage/cabbage_4,this has a darker color and appears to be a red cabbage +cabbage/cabbage_4,this is a head of purple cabbage +cabbage/cabbage_4,this is a red cabbage +potato/potato_2,this is a sweet potato +potato/potato_2,this is a red potato +cylinder/cylinder_4,this is cylindershape and color isgreen +cylinder/cylinder_4,a green metal cylinder +cylinder/cylinder_4,this is a green cylinder +cylinder/cylinder_4,this is a green cylinder +potato/potato_3,this is a sweet potato +potato/potato_3,this is a potato +cabbage/cabbage_2,this is a red cababage +cabbage/cabbage_2,this is a head of red cabbage +cabbage/cabbage_2,this is an iron ball +cabbage/cabbage_2,this is a red cabbage +cabbage/cabbage_2,this picture is a red cabbage +potato/potato_4,this is potato +potato/potato_4,picture looks like a sweet potato +potato/potato_4,this looks like a potato +cylinder/cylinder_2,this is a cylinder the object is red +cylinder/cylinder_2,this is a cylindrical red block +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,this is a rectangular red solid shape +cylinder/cylinder_1,this is cylindershape and color isyellow +cylinder/cylinder_1,this is a yellow cylinder +cabbage/cabbage_3,this is a red cabbage +cabbage/cabbage_3,this is a red cabbage +cabbage/cabbage_3,this is a red cababage +cylinder/cylinder_3,this is a blue cylinder +cylinder/cylinder_3,this is a blue cylinder +cylinder/cylinder_3,this is a blue cylinder +cylinder/cylinder_3,this is a soda can +cylinder/cylinder_3,this is cylindershape and color is blue +cabbage/cabbage_1,this is a red cababage +cabbage/cabbage_1,this is a purple cabbage +cabbage/cabbage_1,this is a red cabbage +tomato/tomato_4,it is a tomato +tomato/tomato_4,this is a large green tomato +tomato/tomato_4,this looks like a tomato +tomato/tomato_4,this is a tomato +lemon/lemon_3,this is a lemon +lemon/lemon_3,this picture is a lemon +lemon/lemon_3,this is a lemon it is a citrus fruit +lemon/lemon_3,this is a yellow lemon +lemon/lemon_3,it is a lemon +lemon/lemon_1,a large orange pattern that looks round with distinct curves +corn/corn_3,this is a m +corn/corn_3,this is a whole corn on the cob +corn/corn_3,this is a sweet corn cob +corn/corn_3,this is corn +corn/corn_1,this is a maize +lemon/lemon_2,this is an orange +lemon/lemon_2,picture looks like a yellow lemon +plum/plum_1,picture looks like an apple +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a long and slightly crooked lightly colored orange +carrot/carrot_4,that is a carrot +carrot/carrot_4,this is a carrot +semicylinder/semicylinder_2,this is a half red cylinder +semicylinder/semicylinder_2,picture looks like a red semicircle block +eggplant/eggplant_4,this is a eggplanet +eggplant/eggplant_4,it is an eggplant +eggplant/eggplant_4,this is an eggplant +eggplant/eggplant_4,this is an eggplant +semicylinder/semicylinder_3,this is a half yellow cylinder +semicylinder/semicylinder_3,this is a lemon wedge +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is a carrot it is a curvy crooked carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is a carrot the carrot is orange +semicylinder/semicylinder_4,this is green color thing +semicylinder/semicylinder_4,this is a half green cylinder +semicylinder/semicylinder_4,this looks like a green upside down c shape +eggplant/eggplant_3,this is an eggplant the eggplant looks black +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,this is an egg plant +eggplant/eggplant_3,this is a eggplant +eggplant/eggplant_1,this is a eggplanet +eggplant/eggplant_1,this is an eggplant +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a carrot +eggplant/eggplant_2,this is an eggplant +eggplant/eggplant_2,this is an eggplant +eggplant/eggplant_2,this is an eggplant +eggplant/eggplant_2,this vegetable is an eggplant +eggplant/eggplant_2,this is eggplanet +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a carrot +triangle/triangle_4,looks like a blue triangle wood +triangle/triangle_4,this is a blue triangular prism +triangle/triangle_4,this looks like a blue triangular wedge +triangle/triangle_4,picture looks like cabbage +lime/lime_3,this is a green bulb of some sort +lime/lime_3,this picture looks like a green lime +lime/lime_3,this is a lime +lime/lime_3,this is green lemon +lime/lime_3,it looks like a lime +lime/lime_1,a light green object that appears almost see thru and is in a head shape and design +cube/cube_3,this is a blue cubic +cube/cube_3,this is a blue shaped square object that looks to be solid +cube/cube_3,this is a blue cube +cube/cube_3,this is a blue cube +cube/cube_1,this is a yellow cubic +lime/lime_2,this is a lime +lime/lime_2,picture looks like a green lemon +orange/orange_1,this is an orange +orange/orange_1,this is an orange +orange/orange_1,this is an orange +orange/orange_1,that is an orange +orange/orange_1,this is an orange +orange/orange_1,this is an orange +orange/orange_1,an unpeeled orange +orange/orange_1,these are tomatoes +orange/orange_1,this is an orange +orange/orange_1,this is a photo of an orange +orange/orange_1,this is a tamato +orange/orange_1,this is an orange +banana/banana_4,that is a banana +banana/banana_4,this is a banana +banana/banana_4,this is a green banana lying on its side +banana/banana_4,this is a banana +banana/banana_4,this is a banana on its side +banana/banana_4,these are bananas that are not ripe +banana/banana_4,a green banana lying down +banana/banana_4,this is a green unripe banana +banana/banana_4,this is a banana +banana/banana_4,this is a green plantain +banana/banana_4,this is a banana +banana/banana_4,this is a banana +orange/orange_2,this is an orange +orange/orange_2,this is a green apple with its stem removed +orange/orange_2,this is a yellow apple +orange/orange_2,this is an orange +orange/orange_2,this is a picture of a yellow grapefruit +orange/orange_2,this is a golden apple +orange/orange_2,this is an orange +orange/orange_2,this is a golden yellow apple +orange/orange_2,this is an orange +orange/orange_2,these are tomatoes +orange/orange_2,this is a lemon +orange/orange_2,this is a pear fruit +cuboid/cuboid_4,this is a blue block +cuboid/cuboid_4,it is a rectangular brick +cuboid/cuboid_4,this is a blue rectangular shaped object +cuboid/cuboid_4,this is a blue block +cuboid/cuboid_4,this is blue rectangular box +cuboid/cuboid_4,this is a blue rectangular box +cuboid/cuboid_4,this is a blue block of childrens building block set +cuboid/cuboid_4,there are rectangular blocks of glistening blue color +cuboid/cuboid_4,this is a blue rectangular block +cuboid/cuboid_4,a tall blue rectangle a blue rectangle on its side a long blue object +cuboid/cuboid_4,this rectangleshape and color is blue +cuboid/cuboid_4,this is a blue rectangle this picture is of a blue rectangle +orange/orange_3,this is a citrus fruit this is an orange +orange/orange_3,this is an orange +orange/orange_3,this is orange +orange/orange_3,this is a organge +orange/orange_3,this is an orange +orange/orange_3,this is a pear fruit +orange/orange_3,this is an orange +orange/orange_3,this is an orange +orange/orange_3,this is a orange +orange/orange_3,these are tomatoes +orange/orange_3,this is an orange +orange/orange_3,this is an orange it is round in shape you can eat it +banana/banana_2,this is a banana +banana/banana_2,this is banana +banana/banana_2,this is a banana +banana/banana_2,this is a picture of a yellow banana +banana/banana_2,this is a banana +banana/banana_2,this is a yellow banana +banana/banana_2,this is a yellow banana +banana/banana_2,these are bananas +banana/banana_2,this is a banana +banana/banana_2,this is a banana +banana/banana_2,this is a banana a picture of yellow colour +banana/banana_2,this is a single banana +orange/orange_4,this is an orange +orange/orange_4,this is an orange an unpeeled orange +orange/orange_4,this is an orange +orange/orange_4,these are oranges +orange/orange_4,this is a mango +orange/orange_4,this is an orange +orange/orange_4,this is an orange +orange/orange_4,this is an orange +orange/orange_4,this is a partially ripe orange the orange shows a spot of green on the bottom side +orange/orange_4,this is a lemon still slightly green +orange/orange_4,this is a fresh grapefruit +orange/orange_4,this is an orange +cuboid/cuboid_3,this is a red rectangular block +cuboid/cuboid_3,this is a red rectangular box it is a threedimensional graphic of a red rectangular box +cuboid/cuboid_3,this is a red block +cuboid/cuboid_3,it is red rectangular brick +cuboid/cuboid_3,a red cuboid shape +cuboid/cuboid_3,this is a red rectangular block +cuboid/cuboid_3,this is a red rectangle +cuboid/cuboid_3,this is a long red cube +cuboid/cuboid_3,this rectangleshape and color is red +cuboid/cuboid_3,this is a red rectangular block +cuboid/cuboid_3,this is a red rectangular shaped object +cuboid/cuboid_3,this is a red block +cuboid/cuboid_1,this rectangleshape and color is yellow +cuboid/cuboid_1,this is a yellow block +cuboid/cuboid_1,a yellow brick +cuboid/cuboid_1,these are yellow 3d blocks +cuboid/cuboid_1,this is a yellow rectangular block +cuboid/cuboid_1,this is a yellow rectangular shaped object +cuboid/cuboid_1,this is a yellow block +cuboid/cuboid_1,bright yellow colored rectangular shaped brick +cuboid/cuboid_1,that is a yellow rectangle +cuboid/cuboid_1,this is a yellow cuboid this is a yellowcolored object shaped like a brick +cuboid/cuboid_1,this is a yellow stick of butter +cuboid/cuboid_1,this is a yellow rectangular prism +banana/banana_3,this is a yellow banana laying on its side +banana/banana_3,this is a banana +banana/banana_3,this is a banana +banana/banana_3,these are bananas +banana/banana_3,this is a banana a yellow fruit +banana/banana_3,this is a banana +banana/banana_3,this is a yellow banana +banana/banana_3,a yellow banana lying down +banana/banana_3,this is a banana +banana/banana_3,this is a banana +banana/banana_3,this is a yellow banana +banana/banana_3,this is a banana +cuboid/cuboid_2,a green rectangular brick +cuboid/cuboid_2,this is a green rectangular block +cuboid/cuboid_2,this looks like a stick of butter if butter was green +cuboid/cuboid_2,this is a green rectangular shaped object +cuboid/cuboid_2,this is a green cubical box +cuboid/cuboid_2,these are green 3d model rectangles +cuboid/cuboid_2,this is childs green wooden block +cuboid/cuboid_2,this is a green cube +cuboid/cuboid_2,this is a green rectangular block +cuboid/cuboid_2,this rectangleshape and color is green +cuboid/cuboid_2,this is a green block +cuboid/cuboid_2,this is a green building block +banana/banana_1,this is a yellow banana +banana/banana_1,this is a banana +banana/banana_1,this is a yellow banana laying on it side +banana/banana_1,this is a banana +banana/banana_1,this is a single ripe yellow banana +banana/banana_1,this is a ripe banana this is an unpeeled banana +banana/banana_1,that is a banana +banana/banana_1,this is a yellow banana +banana/banana_1,this is a banana +banana/banana_1,this is a banana +banana/banana_1,these are bananas +banana/banana_1,this is a yellow banana +tomato/tomato_1,this is an oval tomato +tomato/tomato_1,this is a tomato +tomato/tomato_1,this is a red cherry +tomato/tomato_1,this looks like a red tomato without any leaves on the top +tomato/tomato_1,this is a red pepper +tomato/tomato_1,this is a cherry +tomato/tomato_1,these are red tomatoes +tomato/tomato_1,this is hybridtamato +tomato/tomato_1,this is a tomato +tomato/tomato_1,this is a roma tomato +tomato/tomato_1,this is a roma tomato +tomato/tomato_1,this is a grape tomato +corn/corn_4,this is a sweetcorn +corn/corn_4,this is an ear of corn +corn/corn_4,this is an ear of corn +corn/corn_4,this is an ear of corn +corn/corn_4,this is corn on the cob +corn/corn_4,this is a picture of an ear of corn +corn/corn_4,this is corn on the cob +corn/corn_4,this is corn on the cob with white kernels +corn/corn_4,this is corn this is corn on the cob this is a yellow vegetablethis is a shucked ear of corn +corn/corn_4,this is a corn +corn/corn_4,this is an ear of corn with the husk removed +corn/corn_4,this is an ear of corn +tomato/tomato_2,these are tomatoes +tomato/tomato_2,this is a red roma tomato +tomato/tomato_2,this is a hybridtamoto +tomato/tomato_2,this is a tomatoe +tomato/tomato_2,this is a red tomato +tomato/tomato_2,this is a grape tomato +tomato/tomato_2,this is a tomato +tomato/tomato_2,this is a red cherry tomato +tomato/tomato_2,this is a tomato +tomato/tomato_2,this is a piece of raw meat +tomato/tomato_2,this one is a red cherry +tomato/tomato_2,this is a red tomato +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a yellow lemon +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a lemon it is yellow +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a picture of a lemon +lemon/lemon_4,this is a pear fruit +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a lemon +tomato/tomato_3,this is a tomato +tomato/tomato_3,this is a red tomato +tomato/tomato_3,round red ripe tomato +tomato/tomato_3,these are tomatoes +tomato/tomato_3,this is a tomato +tomato/tomato_3,this is a red plump tomato +tomato/tomato_3,this is a tomato +tomato/tomato_3,this is a tomatoe +tomato/tomato_3,this is a beefsteak tomato +tomato/tomato_3,this is a red tomatoe +tomato/tomato_3,this is a tamato +tomato/tomato_3,this is a red tomato +corn/corn_2,this a ear of corn +corn/corn_2,looks like corn +corn/corn_2,this is an ear of corn +corn/corn_2,a picture of a corn +corn/corn_2,this is an ear of corn +corn/corn_2,an ear of corn corn is in many foods we buy at the supermarket high frutcose corn suryip is in too many of the foods we eat +corn/corn_2,this is an ear of corn after the husk has been removed +corn/corn_2,this is an ear of corn +corn/corn_2,this is corn still on the cob +corn/corn_2,this is a sweetcorn +corn/corn_2,this is an ear of corn with the husk removed +corn/corn_2,this is a cob of corn +semicylinder/semicylinder_1,this is half of a blue barrel +semicylinder/semicylinder_1,this is one half of a blue cylinder this half is the vertical half +semicylinder/semicylinder_1,this is a blue colored domed building block +semicylinder/semicylinder_1,that is a blue semi circle +semicylinder/semicylinder_1,this is a blue object +semicylinder/semicylinder_1,this is a blue cylindrical object cut in half +semicylinder/semicylinder_1,a blue half sphere +semicylinder/semicylinder_1,these are blue dish sponges +semicylinder/semicylinder_1,this is a blue half cyclinder +semicylinder/semicylinder_1,this is a piece of plastic +semicylinder/semicylinder_1,this shape is semicircle and bluecolor +semicylinder/semicylinder_1,this is a blue halfcircle shaped childrens toy +arch/arch_4,that is a red plastic piece that is flat on one side and concaved on the other +arch/arch_4,this is a red arch +arch/arch_4,this is a bright red childrens toy shaped like an arch +arch/arch_4,red archshaped toy +arch/arch_4,this is a red archshaped object +arch/arch_4,these are red model ramps +arch/arch_4,it is a kids toy with an arch shape and comes in color red +arch/arch_4,this is a red building block for a childrens toy set it has a curved middle +arch/arch_4,this is a red rectangular shaped object with a half circle cut into it +arch/arch_4,this is a bright pink object +arch/arch_4,this is a red bridge one long side of the bridge is flat the two short sides of the bride are flat the other long side has a halfcircle removed from it +arch/arch_4,this shape is semicircle and redcolor +plum/plum_2,this is a cherry tomato +plum/plum_2,this is a red apple with its stem removed +plum/plum_2,this is a red apple +plum/plum_2,this is a red apple +plum/plum_2,this is a picture of a red apple +plum/plum_2,this is a plum +plum/plum_2,this is an apple +plum/plum_2,this is a red apple +plum/plum_2,this is a picture of an apple +plum/plum_2,these are red apples +plum/plum_2,this is a red apple +plum/plum_2,this is a pear fruit +cucumber/cucumber_4,this is a green cucumber +cucumber/cucumber_4,this one is a cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,it is a cucumber +cucumber/cucumber_4,this is a green cucumber +cucumber/cucumber_4,this is a common cucumber it grows on a vine +cucumber/cucumber_4,these are greyish green oblong fruits +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,a long cucumber its a green vegetable +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is a cucumber this is a picture of a cucumber lying on its side cucumbers are green in color +plum/plum_3,this is a red apple +plum/plum_3,this is an apple +plum/plum_3,this is a red apple +plum/plum_3,this is a red apple +plum/plum_3,this is a royal apple +plum/plum_3,thus is a cherry +plum/plum_3,this is a red apple +plum/plum_3,this is a red apple +plum/plum_3,these are red apples +plum/plum_3,this is an apple its a fruit you eat +arch/arch_2,this is a arcshape and bluecolor +arch/arch_2,this is blue shape +arch/arch_2,this is a blue wooden arch block +arch/arch_2,this is a blue threedimensional object this object is shaped like a blue rectangular box with a section removed in the shape of a semicircle +arch/arch_2,this is a piece of light blue plastic +arch/arch_2,this is a blue arch +arch/arch_2,this is a blue object +arch/arch_2,these are blue 3d model rampsfor a childs skateboard toy +arch/arch_2,this is a blue rectangular shaped object with a half circle cut into it +arch/arch_2,this is a blue object with a semicircle cutout +arch/arch_2,this is a bright blue kids toy that is a rectangle with an arch taken out of it +plum/plum_4,this is a red apple +plum/plum_4,a photo of a grape one red grape +plum/plum_4,this is a grape tomato +plum/plum_4,these are red apples +plum/plum_4,this is a royal apple +plum/plum_4,this is an apple +plum/plum_4,this is a red circular apple +plum/plum_4,this is an apple +plum/plum_4,this is a red onion +plum/plum_4,this is a red colored apple +plum/plum_4,this is a red apple +plum/plum_4,this is a plum +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a cucumber this is a green cucumber lying on its side +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,a cucumber on its side +cucumber/cucumber_3,this is a green cucumber +cucumber/cucumber_3,this is a green cucumber +cucumber/cucumber_3,this is a green cucumber this is an unpeeled cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a green zucchini +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,this is a green cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,these are cucumbers +cucumber/cucumber_1,this is a green cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,green colored raw cucumber +cucumber/cucumber_1,that is a cucumber +cucumber/cucumber_1,this is a cucumber this is a green cucumber +cucumber/cucumber_1,this is a picture of a green cucumber +cucumber/cucumber_1,this is a green cucumber +arch/arch_3,this is a green half arch +arch/arch_3,this is a green archshaped green toy +arch/arch_3,this is a arcshape and greencolor +arch/arch_3,these are green 3d model rampsfor a childs skateboard toy +arch/arch_3,this is a green plastic object with a saddle like depression in the middle +arch/arch_3,this is a green rectangular shaped object with a half circle cut into it +arch/arch_3,this is green object the object resembles a half pipe commonly used in skateboarding +arch/arch_3,it is an archshaped color green childs toy +arch/arch_3,this is a green arch +arch/arch_3,this is a green building block for a childrens toy set it has a curved middle +arch/arch_3,this is a green object +arch/arch_3,an archshaped brightly colored childs toy +cucumber/cucumber_2,this one is a cucumber +cucumber/cucumber_2,it is a long green cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,these are cucumbers +cucumber/cucumber_2,a green cucumber +cucumber/cucumber_2,this is a green cucumber +cucumber/cucumber_2,this is a green cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is a cucumber +arch/arch_1,this is a yellow object +arch/arch_1,this is a yellow arch +arch/arch_1,this is a yellow arch block +arch/arch_1,this is a yellow block of wood with a half circle cut out of it +arch/arch_1,this is a childrens building block it is yellow arch block it is one in a set +arch/arch_1,this is a building block this is a yellow building block for children +arch/arch_1,that is a yellow plastic piece that is in the shape of an arch +arch/arch_1,this is a yellow threedimensional object this object is shaped like a yellow rectangular box that has had a section removed in the shape of half a circle +arch/arch_1,this is an arc +arch/arch_1,this is a arc shape and yellow color +arch/arch_1,these are yellow model ramps +arch/arch_1,the is a bright yellow arch with white on the bottom +triangle/triangle_1,this is a red triangle block +triangle/triangle_1,this is a red wedge +triangle/triangle_1,this is a red triangular childs toy +triangle/triangle_1,this is a red plastic object that is shaped like a piece of pie +triangle/triangle_1,this is a red wedge +triangle/triangle_1,this is a red building block +triangle/triangle_1,these are red 3d triangle models +triangle/triangle_1,this is a thing look like triangle shape redcolor +triangle/triangle_1,this is a red cube in the shape of a slice of cheesecake +triangle/triangle_1,this is a wedge building block +triangle/triangle_1,this is a magenta 3d triangle +triangle/triangle_1,this is a red triangular block +cube/cube_4,this is a squareshape and redcolor +cube/cube_4,this is a picture of a red cube +cube/cube_4,this is a red odd shaped box +cube/cube_4,this is a red square block +cube/cube_4,this is a red cube +cube/cube_4,this is a red threedimensional cube +cube/cube_4,this is a square object +cube/cube_4,this is a red square shapes +cube/cube_4,this is a red cube this is a block that is red +cube/cube_4,thsi is a red cube +cube/cube_4,this is a red square shaped object +cube/cube_4,this is a red cube +triangle/triangle_2,these are 3d triangle modelsin yellow +triangle/triangle_2,this is a yellow wedge block +triangle/triangle_2,this look like triangle shape yellowcolor +triangle/triangle_2,this is a wedge +triangle/triangle_2,this is a yellow doorstop +triangle/triangle_2,this is a yellow triangular object +triangle/triangle_2,this is a yellow wedge shaped object +triangle/triangle_2,this is a threedimensional graphic image this object has a top and base shape of a triangle with one ninety degree angle it has three sides +triangle/triangle_2,this is a yellow cube in the shape of a piece of cake +triangle/triangle_2,this is a photo of yellow cheese +triangle/triangle_2,a kids triangular yellow toy +triangle/triangle_2,this is a yellow block of cheese +lime/lime_4,this is a lime +lime/lime_4,this is a green brussel sprout +lime/lime_4,this is a lime +lime/lime_4,this is a lime it is green +lime/lime_4,this is a bright green lime +lime/lime_4,this is a green lime +lime/lime_4,this is a chayota +lime/lime_4,this appears to be a green fruit or vegetable it could be a lime based on the texture of the skin +lime/lime_4,this is a lime +lime/lime_4,this is a green cabbage +lime/lime_4,this is a lime +lime/lime_4,this is a lime +triangle/triangle_3,this is a green plane +triangle/triangle_3,this is a green wedge +triangle/triangle_3,dark green triangle shapes +triangle/triangle_3,these are green 3d triangle models +triangle/triangle_3,this is a green wedge shaped object +triangle/triangle_3,a triangular block used as toys for children +triangle/triangle_3,this is a green wedge +triangle/triangle_3,this is a green wedge +triangle/triangle_3,this is a green triangular block +triangle/triangle_3,this is a green triangle or a green ramp +triangle/triangle_3,this thing look like triangle shape greencolor +triangle/triangle_3,this is a triangle block +cube/cube_2,this is a green square block +cube/cube_2,this is a square +cube/cube_2,this is a threedimensional green object this object is the shape of a large flat box +cube/cube_2,this is a green cube +cube/cube_2,this is a green cube shaped object +cube/cube_2,this is a green cube +cube/cube_2,this is a green cube +cube/cube_2,this is a squareshape and greencolor +cube/cube_2,this is a green square shaped object +cube/cube_2,this is a green cube +potato/potato_1,its an apple +potato/potato_1,this is a plumb +potato/potato_1,this is a red pear +potato/potato_1,that is a red potato +potato/potato_1,this is a grape tomato +potato/potato_1,this is a red potato +potato/potato_1,an unpeeled potato +potato/potato_1,these are red apples +potato/potato_1,this is a sweet potatoe +potato/potato_1,this is a red potato +potato/potato_1,this is a apple +potato/potato_1,this is a red potato +cabbage/cabbage_4,that is a head of purple cabbage +cabbage/cabbage_4,this is a red cabbage +cabbage/cabbage_4,this is a red cabbage +cabbage/cabbage_4,picture of a red cabbage +cabbage/cabbage_4,this is a purple cabbage +cabbage/cabbage_4,these are heads of red cabbage +cabbage/cabbage_4,this is a purple mangoosten +cabbage/cabbage_4,this is a purple cabbage +cabbage/cabbage_4,this is a head of cabbage +cabbage/cabbage_4,this is a purple cabbage +cabbage/cabbage_4,this is a red cabbage +cabbage/cabbage_4,this is a red cababage +potato/potato_2,this is a grape tomato +potato/potato_2,this is a potato lying on its side +potato/potato_2,this is a red potato +potato/potato_2,this is a sweet potatoe +potato/potato_2,this is a picture of a redskinned potato +potato/potato_2,this is a red potato +potato/potato_2,this is a potato +potato/potato_2,this is a potato +potato/potato_2,this is a nectarine +potato/potato_2,these are sweet potatoes +potato/potato_2,this is a red potato +potato/potato_2,this is a mango +cylinder/cylinder_4,this a green cylindrical block +cylinder/cylinder_4,a green metal cylinder +cylinder/cylinder_4,this is a green cylindrical shaped object +cylinder/cylinder_4,this is green cylinder +cylinder/cylinder_4,this a green cylinder +cylinder/cylinder_4,this is a green cylinder +cylinder/cylinder_4,this is a green cylinder block of a childrens building block set +cylinder/cylinder_4,these are clindrical structures with pale green color +cylinder/cylinder_4,this is a dark green cylinder +cylinder/cylinder_4,a tall green cylander a green object on its side +cylinder/cylinder_4,this is cylindershape and color isgreen +cylinder/cylinder_4,this is a green spherical image +potato/potato_3,this is a potato lying on its side +potato/potato_3,this is a potato +potato/potato_3,this is a yellow potato +potato/potato_3,this is a potatoe +potato/potato_3,this is a potato +potato/potato_3,this is a potato +potato/potato_3,this is a light brown potato +potato/potato_3,this is a potato +potato/potato_3,these are potatoes +potato/potato_3,this is a white potato it is a vegetable +cabbage/cabbage_2,this is a red cababage +cabbage/cabbage_2,this is red cabbage +cabbage/cabbage_2,this is purple cabbage +cabbage/cabbage_2,this is a picture of a red cabbage +cabbage/cabbage_2,this is a picture of a head of red cabbage +cabbage/cabbage_2,this is a red cabbage +cabbage/cabbage_2,this is a purple cabbage +cabbage/cabbage_2,these are heads of red cabbage +cabbage/cabbage_2,this is a head of cabbage +cabbage/cabbage_2,this a a head of red cabbage +cabbage/cabbage_2,this is cabbage cabbage is a low calorie fiberrich modifiedleafy vegetable cabbage or headed cabbage is a leafy green or purple biennial plantthe cabbage plant brassica oleracea is a storehouse of vitamins and minerals +cabbage/cabbage_2,this is a head of purple cabbage +potato/potato_4,this is a potatoe +potato/potato_4,a photo of a pear +potato/potato_4,this is a potato +potato/potato_4,these are potatoes +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,this is a white potato the potato has eyes +potato/potato_4,this is a yukon gold potato +potato/potato_4,an unpeeled potato +potato/potato_4,this is a potato +cylinder/cylinder_2,this is a red cylindershaped object +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,a color red cylinder +cylinder/cylinder_2,a red cylinder shape +cylinder/cylinder_2,this is a red cylindrical object +cylinder/cylinder_2,this is a round circular object +cylinder/cylinder_2,this is a red cylindrical block +cylinder/cylinder_2,this is cylindershape and color is red +cylinder/cylinder_2,this is a crimson cylinder +cylinder/cylinder_2,this is a red cylindrical shaped object +cylinder/cylinder_2,this is a round red block +cylinder/cylinder_1,this is cylindershape and color isyellow +cylinder/cylinder_1,this is a yellow cylinder +cylinder/cylinder_1,this is a yellow cylinder +cylinder/cylinder_1,these are yellow 3d cylindrical models +cylinder/cylinder_1,this a yellow cylindrical block +cylinder/cylinder_1,this is a yellow cylinder shaped object +cylinder/cylinder_1,this is a yellow cylinder +cylinder/cylinder_1,bright yellow colored chalk piece +cylinder/cylinder_1,that is a yellow cylinder +cylinder/cylinder_1,this is a yellow cylinder this is a cylindrical object that is colored yellow +cylinder/cylinder_1,this is a picture of a yellow round log shaped object +cylinder/cylinder_1,this is a yellow cylinder +cabbage/cabbage_3,this is a purple head of cabbage +cabbage/cabbage_3,this is red cabbage +cabbage/cabbage_3,this is a red cababage +cabbage/cabbage_3,these are heads of red cabbage +cabbage/cabbage_3,this is a purple cabbage a leafy vegetable +cabbage/cabbage_3,this is a head of cabbage +cabbage/cabbage_3,this is a purple cabbage +cabbage/cabbage_3,this is an avocado +cabbage/cabbage_3,this is a red cabbage +cabbage/cabbage_3,this is a purple cabbage +cabbage/cabbage_3,this is a purple cabbage +cabbage/cabbage_3,a picture of a red cabbage +cylinder/cylinder_3,a blue metal cylinder +cylinder/cylinder_3,that is a long blue cylinder +cylinder/cylinder_3,this is a blue rod that is shaped like an empty roll of toilet paper +cylinder/cylinder_3,this is a blue cylindrical shaped object +cylinder/cylinder_3,this is a blue cylinder +cylinder/cylinder_3,these are blue 3d cylindrical models +cylinder/cylinder_3,this a blue cylinder +cylinder/cylinder_3,this is a blue cylinder +cylinder/cylinder_3,this is a blue cylindrical object +cylinder/cylinder_3,this is cylindershape and color is blue +cylinder/cylinder_3,this is a blue cylinder +cylinder/cylinder_3,this is a blue cube +cabbage/cabbage_1,this is a purple cabbage +cabbage/cabbage_1,this is a red cabbage +cabbage/cabbage_1,this a head of purple cabbage with the end cut off +cabbage/cabbage_1,this is a head of cabbage +cabbage/cabbage_1,this is a purple cabbage lying on its side +cabbage/cabbage_1,this is a red cabbage +cabbage/cabbage_1,that is a head of purple cabbage +cabbage/cabbage_1,this is a red cabbage +cabbage/cabbage_1,this is a purple cabbage +cabbage/cabbage_1,this is a red cababage +cabbage/cabbage_1,these are heads of red cabbage +cabbage/cabbage_1,a picture of a large purple cabbage +tomato/tomato_4,this is an orange tomato +tomato/tomato_4,this is a tomato +tomato/tomato_4,this is an orange tomato +tomato/tomato_4,this is a juicy looking tomato with a sticker still on it +tomato/tomato_4,this is a tomatoe +tomato/tomato_4,this is a almost ripe orange tomato +tomato/tomato_4,these are tomatoes of an orangered color +tomato/tomato_4,this is localtamoto +tomato/tomato_4,this is a semi large tomato +tomato/tomato_4,this is a tomato that isnt quite ripe +tomato/tomato_4,this is an orange tomato +tomato/tomato_4,this is a big orange tomato +lemon/lemon_3,this is a mango +lemon/lemon_3,this is a lemon +lemon/lemon_3,this is a lemon +lemon/lemon_3,this is a lemon +lemon/lemon_3,this is a lemon +lemon/lemon_3,this is a picture of a yellow lemon +lemon/lemon_3,this is a yellow lemon +lemon/lemon_3,this is a bright yellow lemon +lemon/lemon_3,this is a lemon this is a fresh lemon this is a yellow citrus fruit +lemon/lemon_3,this is a yellow lemon +lemon/lemon_3,this is a lemon +lemon/lemon_3,this is a lemon fruit +lemon/lemon_1,these are lemons +lemon/lemon_1,this is a picture of a lemon +lemon/lemon_1,this is may be a citrius fruit +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a yellow lemon +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a yellow lemon +corn/corn_3,this is an ear of sweet corn +corn/corn_3,this is corn on the cobb +corn/corn_3,this is corn on the cob +corn/corn_3,this is corn on the cob +corn/corn_3,this is a white corn cob without its husk +corn/corn_3,this is an ear of corn +corn/corn_3,this is a sweetcorn +corn/corn_3,this is an ear of white corn +corn/corn_3,this is an ear of corn +corn/corn_3,a picture of a corn it is also known as maize +corn/corn_3,this is an ear of corn +corn/corn_3,this is a shucked ear of corn lying on its side +corn/corn_1,this is an ear of corn +corn/corn_1,this is corn on the cobb +corn/corn_1,ears of corn on the cob +corn/corn_1,these are ears of corn +corn/corn_1,this is an ear of corn with the husk removed +corn/corn_1,this is a pale yellow corn +corn/corn_1,this is an ear of corn +corn/corn_1,this is corn on the cob +corn/corn_1,this is a ear of corn +corn/corn_1,this yellow corn looks delicious +corn/corn_1,this is a sweetcorn +corn/corn_1,this is corn on the cob +lemon/lemon_2,this is a yellow lemon +lemon/lemon_2,yellow lemon +lemon/lemon_2,this is a yellow lemon +lemon/lemon_2,a picture of a lemon +lemon/lemon_2,this looks like the yellow yolk of an egg up close with one bad spot on it +lemon/lemon_2,this is a yellow fruit or vegetable +lemon/lemon_2,this is a lemon +lemon/lemon_2,this is a pear fruit +lemon/lemon_2,this is a lemon +lemon/lemon_2,this is a lemon +plum/plum_1,this is a red apple +plum/plum_1,this is an apple +plum/plum_1,this is a red apple +plum/plum_1,that is a red tomato +plum/plum_1,this is a cherry tomato +plum/plum_1,this is a red apple +plum/plum_1,an unpeeled red apple +plum/plum_1,these are red apples +plum/plum_1,this is a red apple +plum/plum_1,this is a photo of a red tomato +plum/plum_1,this is a redchayota +plum/plum_1,this is a red apple +carrot/carrot_4,that is a parsnip +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,these are carrots +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a long carrot with the green stem cut off +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is orange carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a carrot +semicylinder/semicylinder_2,this is a red object +semicylinder/semicylinder_2,a red semicircular cross section is shown at different angles +semicylinder/semicylinder_2,this is a red building block for children +semicylinder/semicylinder_2,this is a red half cylinder +semicylinder/semicylinder_2,this is a red threedimensional object this object is shaped like a cylinder that has been cut in half across the diameter of its base +semicylinder/semicylinder_2,this is a red 3d semicircle +semicylinder/semicylinder_2,this is a red half circle shaped object +semicylinder/semicylinder_2,this is an red eraser +semicylinder/semicylinder_2,this is a red archshaped toy block +semicylinder/semicylinder_2,these are 3d models of halfcylindrical shapesin red +semicylinder/semicylinder_2,this is a red half circle cube +semicylinder/semicylinder_2,this is a semicircle shape and redcolor +eggplant/eggplant_4,this is a purple eggplant +eggplant/eggplant_4,this is an eggplant +eggplant/eggplant_4,this is an eggplant +eggplant/eggplant_4,this is an aubergine +eggplant/eggplant_4,it is a purple eggplant +eggplant/eggplant_4,this is an eggplant lying on its side +eggplant/eggplant_4,this is an italian eggplant it is firm and dark purple when ripe +eggplant/eggplant_4,these are dark purple colored fruits with oblong shape +eggplant/eggplant_4,this is an eggplant +eggplant/eggplant_4,a large eggplant its purple in color +eggplant/eggplant_4,this is a eggplanet +eggplant/eggplant_4,this is an eggplant eggplants are purple in color this picture shows an eggplant lying on its side +semicylinder/semicylinder_3,this is a threedimensional object this object is half of a yellow cylinder that has been divided across the diameter of its base +semicylinder/semicylinder_3,this is a yellow half circle shaped object +semicylinder/semicylinder_3,this is yellow half circle +semicylinder/semicylinder_3,this is a yellow half cylinder +semicylinder/semicylinder_3,this is a semicircle shape and yellowcolor +semicylinder/semicylinder_3,this is an orange object +semicylinder/semicylinder_3,this is a yellow half circle block +semicylinder/semicylinder_3,this is a yellow half circle block +semicylinder/semicylinder_3,these are yellow dish sponges +semicylinder/semicylinder_3,this is a yellow half circle +carrot/carrot_2,this is a carrot +carrot/carrot_2,thsi is carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is a picture of an orange carrot +carrot/carrot_2,this is a large carrott +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is orange carrot +carrot/carrot_2,these are carrots +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is a carrot a picture of a red cabbage a purple eggplant lying on its side this is a green spherical ball an archshaped brightly colored childs toy +carrot/carrot_2,this is a carrot with lots of curves in it +semicylinder/semicylinder_4,this is a green half cylinder +semicylinder/semicylinder_4,this is a green colored half cylinder +semicylinder/semicylinder_4,this is a green object +semicylinder/semicylinder_4,these are 3d models of halfcylindrical shapesin green +semicylinder/semicylinder_4,this is a semicircle shape and greencolor +semicylinder/semicylinder_4,this is a green 3d semicircle +semicylinder/semicylinder_4,this is a green half circle +semicylinder/semicylinder_4,this is a green half circle shaped object +semicylinder/semicylinder_4,this is a green half circular object the object is flat on one side an round on the other +semicylinder/semicylinder_4,this is a bright green dome shaped kids building block +semicylinder/semicylinder_4,a green building block +semicylinder/semicylinder_4,this is a green half circle block +eggplant/eggplant_3,this is an eggplant laying on its side +eggplant/eggplant_3,this is a purple eggplant lying on its side +eggplant/eggplant_3,this is an aubergine +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,a dark eggplant laying lengthwise +eggplant/eggplant_3,this is a purple eggplant +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,this is an eggplant uncooked +eggplant/eggplant_3,this is a eggplanet +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,this is a picture of an eggplant +eggplant/eggplant_1,this is a eggplanet +eggplant/eggplant_1,this is a purple short eggplant +eggplant/eggplant_1,this is an eggplant +eggplant/eggplant_1,these are eggplants +eggplant/eggplant_1,this is a purple eggplant +eggplant/eggplant_1,this is an eggplant +eggplant/eggplant_1,this is an aubergine +eggplant/eggplant_1,purple colored lying egg plant +eggplant/eggplant_1,that is an eggplant +eggplant/eggplant_1,this is an eggplant this is a darkskinned eggplant +eggplant/eggplant_1,this is a purple eggplant lying on its side +eggplant/eggplant_1,this is an eggplant +carrot/carrot_3,this is an orange carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,these are carrots +carrot/carrot_3,this is an orange carrot a root vegetable +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a long skinny carrot +carrot/carrot_3,this one is a carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a long carrot with the green stems taken off +carrot/carrot_3,this is an orange carrot +carrot/carrot_3,this is a carrot +eggplant/eggplant_2,an eggplant lying down +eggplant/eggplant_2,this is a small fat eggplant +eggplant/eggplant_2,this is an eggplant +eggplant/eggplant_2,this is an eggplant +eggplant/eggplant_2,this is an eggplant lying on its side +eggplant/eggplant_2,these are eggplants +eggplant/eggplant_2,this is a purple eggplant +eggplant/eggplant_2,this is an eggplant +eggplant/eggplant_2,this is a purple eggplant +eggplant/eggplant_2,this is a eggplanet +eggplant/eggplant_2,this is an aubergine +eggplant/eggplant_2,this is a purple eggplant +carrot/carrot_1,this is orange carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a long orange carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a single common carrot without its top it is a root vegetable +carrot/carrot_1,this is a long orange carrot +carrot/carrot_1,that is a parsnip +carrot/carrot_1,this is an orange carrot +carrot/carrot_1,this is a red carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,these are carrots +carrot/carrot_1,a long mostly straight carrot its slightly discolored at the top +triangle/triangle_4,this is a blue triangle shape block +triangle/triangle_4,this is a blue wedge +triangle/triangle_4,a triangular childs toy that is color blue +triangle/triangle_4,this is a blue plastic object that looks like a uneven piece of pie +triangle/triangle_4,this is a blue wedge +triangle/triangle_4,a blue building block facing different directions +triangle/triangle_4,these are blue 3d triangle models +triangle/triangle_4,this thing look like triangle shape bluecolor +triangle/triangle_4,this is a blue cube in the shape of a piece of cake +triangle/triangle_4,this is a blue wedge building block +triangle/triangle_4,this is a blue plane +triangle/triangle_4,this is a blue triangular block +lime/lime_3,this is a chayota +lime/lime_3,this is a green cabbage +lime/lime_3,this is a green lightbulb shaped object +lime/lime_3,this is a lime +lime/lime_3,this is a lime +lime/lime_3,this is a picture of a green kiwi +lime/lime_3,this is a lime green object +lime/lime_3,this is a round green lime +lime/lime_3,this is an oddly shaped lime this is a green citrus fruit this is a fresh lime +lime/lime_3,thi is a green colored shapes +lime/lime_3,this is a lime +lime/lime_3,this is a green blob +lime/lime_1,these are limes +lime/lime_1,this is an oddly shaped lime +lime/lime_1,this is a chayota +lime/lime_1,this is a lime +lime/lime_1,this is a lime +lime/lime_1,this is a lime +lime/lime_1,this is a lime +lime/lime_1,this is a green kiwi +lime/lime_1,this is a lime +lime/lime_1,this looks like a green grape +lime/lime_1,it is a green lemon +lime/lime_1,this is a green pear +cube/cube_3,this is a blue block +cube/cube_3,this is a blue square +cube/cube_3,this is a blue cube +cube/cube_3,this is a cube it is blue +cube/cube_3,this is a square shaped bright blue building block +cube/cube_3,this is a blue cube +cube/cube_3,this is a rectangleshape and blue color +cube/cube_3,this is a blue 3d object that is slightly rectangular +cube/cube_3,this is a blue cube +cube/cube_3,this is a blue square box +cube/cube_3,this is a blue square block +cube/cube_3,this is a blue cube +cube/cube_1,this is a yellow cube +cube/cube_1,this is a tab of butter +cube/cube_1,yellow bright squares +cube/cube_1,these are yellow 3d blocks +cube/cube_1,this is a yellow square shaped object +cube/cube_1,a vividly yellow coloured block +cube/cube_1,this is a yellow cube +cube/cube_1,this is a yellow cube +cube/cube_1,this is a yellow square block +cube/cube_1,this is a yellow cube you can tell its a cube because it has 6 sides +cube/cube_1,this is a squareshape and yellowcolor +cube/cube_1,this is a yellow square block +lime/lime_2,this is a green lime +lime/lime_2,cabbage leaves +lime/lime_2,this is a green kiwi +lime/lime_2,this is a lime +lime/lime_2,this looks like a lime balanced on a lime green pedestal +lime/lime_2,this is a green lime +lime/lime_2,this is a lime +lime/lime_2,this is a chayota +lime/lime_2,this is a lime +lime/lime_2,this is a lime +orange/orange_1,this is a tomato +orange/orange_1,this is an orange citrus fruit +orange/orange_1,yellow color globular structures +orange/orange_1,this is a tamato +orange/orange_1,this is a small orange such as a clementine +orange/orange_1,this is a picture of an orange +orange/orange_1,this is a fruit +orange/orange_1,this is a ripe orange +orange/orange_1,this is a tangerine +orange/orange_1,this is an orange +orange/orange_1,this is an orange +orange/orange_1,it is an orange +orange/orange_1,this is a orange +orange/orange_1,this is a lemon the lemon is yellow there are 4 photos of lemon the background is black +banana/banana_4,this looks like a under riped banana +banana/banana_4,this is a banana +banana/banana_4,this is a banana the banana is yello green in color the banana is laying on its side the background is black +banana/banana_4,this is a banana +banana/banana_4,this is a picture of a banana +banana/banana_4,this is a green banana +banana/banana_4,this is a banana +banana/banana_4,this is a banana +banana/banana_4,this is a banana +banana/banana_4,it is green banana +banana/banana_4,it is a banana +banana/banana_4,this is a banana +banana/banana_4,this is a green banana that is not yet ripe +banana/banana_4,a yellowish green banana laying on its side +orange/orange_2,this is a fruit it is an orange it is a citrus fruit the orange is normal in size +orange/orange_2,it is a yellow tomato +orange/orange_2,this is a mosambi fruit +orange/orange_2,this is an orange +orange/orange_2,it is a yellow spherical food item +orange/orange_2,it seems like pear +orange/orange_2,this is a picture of an apple +orange/orange_2,this is an orange +orange/orange_2,this is an orange +orange/orange_2,this is an apple +orange/orange_2,this is a orange +orange/orange_2,this is a picture of a lemon +orange/orange_2,this is a yellow fruit +orange/orange_2,this is a pear fruit +cuboid/cuboid_4,it is a blue rectangle on its long side +cuboid/cuboid_4,this is a blue rectangular childrens toy +cuboid/cuboid_4,a large blue square it is even on all sides +cuboid/cuboid_4,this is a blue cube +cuboid/cuboid_4,this is a cube +cuboid/cuboid_4,this is a blue rectangle +cuboid/cuboid_4,this is a blue coloured cuboid +cuboid/cuboid_4,this is blue box +cuboid/cuboid_4,this is a cube +cuboid/cuboid_4,this is cuboid shape and blue colour +cuboid/cuboid_4,this is blue +cuboid/cuboid_4,this is a blue rectangular block standing on one end and then laying on its long side +cuboid/cuboid_4,this is a blue rectangular bar of soap it is lying in a puddle of water +cuboid/cuboid_4,this is a blue rectangle +orange/orange_3,this is a orange +orange/orange_3,it is a brigtly colored orange +orange/orange_3,this is an orange +orange/orange_3,this is a orange +orange/orange_3,this is a picture of an orange +orange/orange_3,this is an orange it is round +orange/orange_3,this is an orange +orange/orange_3,this is an orange a cropped picture of oranges there are 4 photos of oranges the black border is irregular +orange/orange_3,this is a picture of an orange +orange/orange_3,this is an yellow color fruit +orange/orange_3,this is an orange +orange/orange_3,this is an orange +orange/orange_3,it seems like orange +banana/banana_2,its a banana +banana/banana_2,this is a banana the banana is yellow in color the banana is laying on its side the background is black +banana/banana_2,this is a bananna +banana/banana_2,this is a banana +banana/banana_2,this is a yellow coloured banana +banana/banana_2,this is a banana +banana/banana_2,this is a banana it is mostly yellow but a little green it is almost completely ripe +banana/banana_2,this is a banana +banana/banana_2,this is a banana +banana/banana_2,a picture of yellow banana +banana/banana_2,this is a banana +banana/banana_2,this is a picture of a banana +banana/banana_2,this is a perfectly ripe unblemished banana +banana/banana_2,this is a banana +orange/orange_4,this is a mango +orange/orange_4,this is a fruit it is an orange the orange fruit is colored orange it is rich in vitamin c +orange/orange_4,a picture of yellow fruit +orange/orange_4,this is an orange +orange/orange_4,this is a orange +orange/orange_4,it is an orange +orange/orange_4,this is a picture of lemon +orange/orange_4,it is an orange +orange/orange_4,it is a lemon +orange/orange_4,this is an orange +orange/orange_4,this is a picture of a lemon +orange/orange_4,this is a orange +orange/orange_4,this is a navel orange +orange/orange_4,globular shaped fruits with reddish yellow color +cuboid/cuboid_3,this is a red rectangular block +cuboid/cuboid_3,this is a red block that is in the shape of a rectangle +cuboid/cuboid_3,this is a red rectangular shaped childs toy +cuboid/cuboid_3,a red rectangular building block +cuboid/cuboid_3,this is a red rectangular box +cuboid/cuboid_3,this is a cube +cuboid/cuboid_3,this is red +cuboid/cuboid_3,this is a picture of a red block +cuboid/cuboid_3,this is a red cuboid +cuboid/cuboid_3,it id a cuboid +cuboid/cuboid_3,this is a red rectangle +cuboid/cuboid_3,this is cuboid shape and red colour +cuboid/cuboid_3,this is a red rectangle +cuboid/cuboid_3,this is a block the block is red the block is rectangular in shape the block is laying on its sides +cuboid/cuboid_1,a yellow rectangular block +cuboid/cuboid_1,this is cuboid shape and yellow colour +cuboid/cuboid_1,this is a block the block is yellow the background is black the yellow block is laying on its side +cuboid/cuboid_1,this is a rectangular block +cuboid/cuboid_1,this is a picture of a yellow cube +cuboid/cuboid_1,this is a yellow rectangular box +cuboid/cuboid_1,this is a yellow rectangular shaped childs toy +cuboid/cuboid_1,it is a cuboid +cuboid/cuboid_1,this is yellow +cuboid/cuboid_1,it is a yellow rectangular block +cuboid/cuboid_1,this is a yellow rectangle +cuboid/cuboid_1,this is a yellow colored block +cuboid/cuboid_1,this is a yellow rectangular block +cuboid/cuboid_1,this is a yellow cube +banana/banana_3,this is a yellow banana +banana/banana_3,this is a banana +banana/banana_3,this is a banana +banana/banana_3,this is a yellow bananna +banana/banana_3,it is banana +banana/banana_3,this is a yellow banana +banana/banana_3,this is a yellow banana +banana/banana_3,this is a banana +banana/banana_3,this is a picture of a banana +banana/banana_3,this is a banana +banana/banana_3,this is a banana +banana/banana_3,this is a yellow fruit +banana/banana_3,this is a banana +banana/banana_3,this is a banana the banana is yellow in color the banana is laying on its side the background is black +cuboid/cuboid_2,this is a green rectangle +cuboid/cuboid_2,it is a green coloured cuboid +cuboid/cuboid_2,this is a green rectangular object +cuboid/cuboid_2,this is a cube +cuboid/cuboid_2,this is a green rectangular block +cuboid/cuboid_2,this is cuboid shape and green colour +cuboid/cuboid_2,this is a block the block is green the background is black the green block is laying on its side +cuboid/cuboid_2,this is a picture of a green cube +cuboid/cuboid_2,a green rectangular block +cuboid/cuboid_2,this is green +cuboid/cuboid_2,this is a green rectangular block +cuboid/cuboid_2,this is a green rectangular box +cuboid/cuboid_2,this is a green rectangularshaped childs toy +cuboid/cuboid_2,long rectangular blocks with cute green color +banana/banana_1,this is a banana +banana/banana_1,this is a picture of a banana +banana/banana_1,this is a banana +banana/banana_1,this is a banana +banana/banana_1,this is a banana +banana/banana_1,this is a banana +banana/banana_1,this is a banana +banana/banana_1,this is a yellow banana lying on its side +banana/banana_1,this is a banana +banana/banana_1,it is a banana +banana/banana_1,a yellow banana +banana/banana_1,a picture of banana +banana/banana_1,this is a banana +banana/banana_1,this is a banana the banana is yellow in color the banana is laying on its side the background is black +tomato/tomato_1,a red ball sitting still +tomato/tomato_1,this is a red spherical ball +tomato/tomato_1,this is a red circle +tomato/tomato_1,this is a tomato a tomatos is a fruit not a vegetable the tomato is color red you can mix this in salads +tomato/tomato_1,this is a tomato +tomato/tomato_1,this is a small red tomato +tomato/tomato_1,this is a red plum tomato +tomato/tomato_1,this is a tomato +tomato/tomato_1,this is a tamato +tomato/tomato_1,this is a red tomato +tomato/tomato_1,this is a red tomato +tomato/tomato_1,this is a picture of a tomato +tomato/tomato_1,this is a tiny tomato +tomato/tomato_1,it is a bright red cherry tomato +corn/corn_4,long multiple fruit with pale yellow color +corn/corn_4,this is an ear of corn the husk has been removed so the kernels are visible +corn/corn_4,this is a corn +corn/corn_4,this is a picture of sweetcorn on its side +corn/corn_4,this is an ear of corn +corn/corn_4,this is a corn +corn/corn_4,this is a corn the corn is color yellow corn is a rich source of carbohydrates corn is a rich source of energy +corn/corn_4,this is a corn +corn/corn_4,it is corn +corn/corn_4,it is a corn +corn/corn_4,this is sweet corn laying on its side +corn/corn_4,a corn lying on ground +corn/corn_4,this is a picture of corn +corn/corn_4,this is sweet corn +tomato/tomato_2,this is a picture of a tomato +tomato/tomato_2,this is a tamato +tomato/tomato_2,a picture of a grape tomato +tomato/tomato_2,this is a red tomato +tomato/tomato_2,this is a picture of a tomato +tomato/tomato_2,this is a tomatoe +tomato/tomato_2,a picture of red vegetable +tomato/tomato_2,its a tomato +tomato/tomato_2,this is a tomato +tomato/tomato_2,a red bob shaped object +tomato/tomato_2,this is a tomato a tomatos is a fruit not a vegetable the tomato is color red you can mix this in salads +tomato/tomato_2,this is red +tomato/tomato_2,this is a red tomato +tomato/tomato_2,this is a red roma tomato +lemon/lemon_4,it is a yellow lemon +lemon/lemon_4,it seems like a lemon +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a bright yellow lemon +lemon/lemon_4,this is a lemon +lemon/lemon_4,a picture of yellow globular fruit +lemon/lemon_4,this is a picture of a lemon +lemon/lemon_4,this is a lime +lemon/lemon_4,this is a lemon the lemon is yellow there are 4 photos of lemon the background is black +lemon/lemon_4,this is a mango +lemon/lemon_4,this is a yellow fruit lying on ground +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is lemon +lemon/lemon_4,this is a lemon +tomato/tomato_3,a bright red tomato +tomato/tomato_3,this is a tomato +tomato/tomato_3,this is a picture of a tomato +tomato/tomato_3,it is tomato +tomato/tomato_3,this is a tamato +tomato/tomato_3,this is a round red apple +tomato/tomato_3,this is a tomato +tomato/tomato_3,this is a picture of a tomato +tomato/tomato_3,this is a bright red tomato +tomato/tomato_3,this is a bright red tomato +tomato/tomato_3,this is a tomato +tomato/tomato_3,this is a tomato a tomatos is a fruit not a vegetable the tomato is color red you can mix this in salads +tomato/tomato_3,this is a tomatoe +tomato/tomato_3,this is a ripe tomato it is sitting upright and has a few small indentations but looks good enought to eat +corn/corn_2,this is a picture of sweetcorn on its side +corn/corn_2,this is white corn laying on its side +corn/corn_2,this is an ear of corn +corn/corn_2,a shucked light colored ear of corn +corn/corn_2,this is a maize +corn/corn_2,this is an ear of white sweet corn +corn/corn_2,this is a corn +corn/corn_2,this is an ear of white corn +corn/corn_2,this is corn +corn/corn_2,this is a corn +corn/corn_2,it is corn +corn/corn_2,this is an ear of white corn lying on its side +corn/corn_2,this is a corn the corn is color yellow corn is a rich source of carbohydrates corn is a rich source of energy +corn/corn_2,this is an ear of corn +semicylinder/semicylinder_1,this is a blue coloured hemisphere solid +semicylinder/semicylinder_1,this is a blue halfcylinder +semicylinder/semicylinder_1,sections of cylinder with blue color +semicylinder/semicylinder_1,this shape is semicircle and bluecolor thing +semicylinder/semicylinder_1,this is a blue half cylinder block it can lie on its flat side or its curved side +semicylinder/semicylinder_1,this is a picture of a half cut blue circle +semicylinder/semicylinder_1,this is a half cylinder in blue color +semicylinder/semicylinder_1,a blue building block +semicylinder/semicylinder_1,this is a blue roll cut in half +semicylinder/semicylinder_1,it is blue +semicylinder/semicylinder_1,this is a half circle shaped blue toy +semicylinder/semicylinder_1,it is a half cylinder shape +semicylinder/semicylinder_1,this is a sleeping bag +semicylinder/semicylinder_1,this is a block the block is blue the shape is like the shape of a protractor the background is black +arch/arch_4,this looks like a red holder of some kind it looks like it is made of a hard plastic and can lie flat with a 12 circle opening +arch/arch_4,red color round chair +arch/arch_4,this is a block the block is red the shape is like a scotch tape dispenser the background is black +arch/arch_4,this is a red coloured archshaped childrens toy +arch/arch_4,this is a picture of a half cut red cresent +arch/arch_4,this is a red rectangular building block with a semicircle cut out of the center of it +arch/arch_4,this is red solid +arch/arch_4,this is a red arched shape toy +arch/arch_4,this is a red object +arch/arch_4,it is curved solid +arch/arch_4,it is red +arch/arch_4,this is a arcshape and redcolour thing +arch/arch_4,this is a bright red block that is rectangular but has a halfcircle hollowed out of one of its long sides +arch/arch_4,a bright orange block +plum/plum_2,this is an apple the apple is red apple is a fruit there are different kinds of apples +plum/plum_2,this is a red onion +plum/plum_2,it seems like an apple +plum/plum_2,this is a red onion +plum/plum_2,this is an apple +plum/plum_2,it seems like onion +plum/plum_2,this is a picture of an apple +plum/plum_2,this is a shiny red apple +plum/plum_2,this is a red apple +plum/plum_2,this is an apple +plum/plum_2,this is a apple +plum/plum_2,this is a red spherical ball +plum/plum_2,this is a fruit +plum/plum_2,this is a beetroot +cucumber/cucumber_4,it is a cucumber +cucumber/cucumber_4,this is an aubergine +cucumber/cucumber_4,a very large green cucumber it looks very fresh +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is a green vegetable +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is a green cucumber laying on its side +cucumber/cucumber_4,this is a long green cucumber lying on its side +cucumber/cucumber_4,this is a green cucumber +plum/plum_3,this is a apple +plum/plum_3,this is a red plum +plum/plum_3,this is a red apple +plum/plum_3,this is a apple +plum/plum_3,this is a red spherical ball +plum/plum_3,this is a red apple +plum/plum_3,this is a red apple +plum/plum_3,those are apples there are 4 pictures of apples the color of the apples is dark red the background is black +plum/plum_3,this is a picture of an apple +plum/plum_3,this is a vegetable +plum/plum_3,this is a red onion +plum/plum_3,this is a red apple +plum/plum_3,it is an apple +plum/plum_3,a dark red apple +arch/arch_2,it is blue +arch/arch_2,this is a block the block is color blue the block is shaped like a tape dispenser the background is black +arch/arch_2,a blue rectangular shape with a half circle taken out +arch/arch_2,this is a blue arched holder +arch/arch_2,an archshaped brightly colored childs toy +arch/arch_2,this is a blue cube +arch/arch_2,this is a bright blue block it is in the shape of a rectangle with a half circle cut out of one of its long sides +arch/arch_2,a bright blue building block +arch/arch_2,a blue semi circle object +arch/arch_2,picture of blue solid +arch/arch_2,this is a arcshape and bluecolour thing +arch/arch_2,this is a picture of a half cresent cut in half +arch/arch_2,this is an arch shaped light blue childrens toy +arch/arch_2,this is a blue archshaped childs toy +plum/plum_4,this is a apple +plum/plum_4,this is a fruit it is an apple the apple is color red the background is black +plum/plum_4,a picture of red vegetable +plum/plum_4,this is a red spherical ball +plum/plum_4,this is a red apple +plum/plum_4,this is a red onion +plum/plum_4,this is an apple +plum/plum_4,it seems like an onion +plum/plum_4,this is a plum +plum/plum_4,this is a picture of an apple +plum/plum_4,this is a apple +plum/plum_4,this is a nectarine +plum/plum_4,globular fruits with shiny pericarp +cucumber/cucumber_3,this is a green cucumber +cucumber/cucumber_3,this is a green cucumber that is lying on its side +cucumber/cucumber_3,this is an aubergine +cucumber/cucumber_3,a large green cucumber +cucumber/cucumber_3,this is a green vegetable +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a picture of a cucumber +cucumber/cucumber_3,this is a green cucumber +cucumber/cucumber_3,it is a cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a picture of a cucumber the cucumber is green it might be a zucchini too the background is black +cucumber/cucumber_1,a large green cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,this is a picture of a cucumber the cucumber is green it might be a zucchini too the background is black +cucumber/cucumber_1,this is a picture of a cucumber +cucumber/cucumber_1,this is a green vegetable lying on ground +cucumber/cucumber_1,this is an aubergine +cucumber/cucumber_1,it is a cucumber +cucumber/cucumber_1,this is green +cucumber/cucumber_1,this is a green cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,green colored oblong fruits +cucumber/cucumber_1,this is a green zucchini +cucumber/cucumber_1,this is a cucumber +arch/arch_3,this is a half cylinder embedded in a cuboid +arch/arch_3,this is a green cube +arch/arch_3,this is an arched shape green toy +arch/arch_3,this is a green rectangle shape with a circle taken out +arch/arch_3,is is curved toy +arch/arch_3,a green building block +arch/arch_3,this is a green wedge with a cylindrical cutout +arch/arch_3,this is a green archshaped childs toy +arch/arch_3,this is a picture of a green half cut crescent +arch/arch_3,this is green +arch/arch_3,this is a green colored building block with a halp pipe cut out of it +arch/arch_3,this is a green solid +arch/arch_3,this is a arcshape and greencolour thing +arch/arch_3,this is a block the block is color green the block is shaped like a tape dispenser the background is black +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,it is a cucumber +cucumber/cucumber_2,this is a green cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is a green cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is a picture of a cucumber the cucumber is green it might be a zucchini too the background is black +cucumber/cucumber_2,this is a picture of a cucumber +cucumber/cucumber_2,a long green cucumber +cucumber/cucumber_2,this is green +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is an aubergine +cucumber/cucumber_2,long oblong fruits with dark green color +arch/arch_1,this is a yellow block in the shape of an arch +arch/arch_1,this is a picture of a half cut yellow crescent +arch/arch_1,an arch shaped brightly coloured child toy +arch/arch_1,this is an archshaped brightly colored childs toy +arch/arch_1,this is yellow +arch/arch_1,this is a brightly coloured archshaped childrens toy +arch/arch_1,this is a yellow rectangular building block with a semicircle cut out of the center of it +arch/arch_1,this is a yellow arch block it is a childs building toy +arch/arch_1,this is a yellow arched toy +arch/arch_1,it is a curved solid +arch/arch_1,a bright yellow building block +arch/arch_1,a picture of yellow solid +arch/arch_1,this is a arcshape and yellowcolour thing +arch/arch_1,this is a block the block is shaped like a scotch tape dispenser the block is color yellow the background is black +triangle/triangle_1,a red wedge from different angles +triangle/triangle_1,this is a red wedgeshaped childs toy +triangle/triangle_1,this is a red wedge +triangle/triangle_1,this is a block the block is shaped like a slice of pie the block is color red it looks like its made of wood +triangle/triangle_1,this is a triangle +triangle/triangle_1,this is a red triangular shaped building block +triangle/triangle_1,a red wedgeshaped block +triangle/triangle_1,this is a triangular prism +triangle/triangle_1,this is a triangle shape thing and red colour +triangle/triangle_1,this is a picture of red triangular solid +triangle/triangle_1,this is a red triangular object +triangle/triangle_1,this is a picture of a red right triangle +triangle/triangle_1,a triangular red block +triangle/triangle_1,this is an acute triangle block that is red +cube/cube_4,shiny reddish blocks with shiny appearance +cube/cube_4,this is a red cube +cube/cube_4,this is a red cube +cube/cube_4,this is a red cubeshaped childs toy +cube/cube_4,this is a red square +cube/cube_4,this is a rectangle shape and red colour thing +cube/cube_4,this is a block the block is color red the block is shaped like a cube it is laying on its sides +cube/cube_4,red color square chair +cube/cube_4,it is a red cube +cube/cube_4,it is a cube +cube/cube_4,this is a red cube +cube/cube_4,this is a picture of red cube +cube/cube_4,this is a picture of a red block +cube/cube_4,this is a red cube +triangle/triangle_2,this is a picture of cheese +triangle/triangle_2,this a rightangle triangle and yellow colour +triangle/triangle_2,a yellow triangular block +triangle/triangle_2,this is a yellow wedge shaped polyhedron +triangle/triangle_2,this is a yellow wedgeshaped childs toy +triangle/triangle_2,this is a yellow cube +triangle/triangle_2,a picture of yellow triangular solid +triangle/triangle_2,its a triangle +triangle/triangle_2,this is a yellow wedge +triangle/triangle_2,yellow triangle shaped object +triangle/triangle_2,this is a block the block is color yellow the block is pie shaped the background is black +triangle/triangle_2,this is yellow +triangle/triangle_2,this is a yellow triangular object +triangle/triangle_2,this is a yellow triangle block +lime/lime_4,this is a green lime +lime/lime_4,it seems like an avocado +lime/lime_4,this is a lime +lime/lime_4,this is a green lime +lime/lime_4,this is a green lime +lime/lime_4,this is a fruit with green color skin +lime/lime_4,this is a green spherical ball +lime/lime_4,this is a lemon +lime/lime_4,this is a vegetable the vegetable is green it is a brusselsprout kids tend to not like this vegetable +lime/lime_4,this is a chayota +lime/lime_4,this is a green vegetable +lime/lime_4,this is a lime +lime/lime_4,this is a goyya +lime/lime_4,this is a lime +triangle/triangle_3,a green triangular building block +triangle/triangle_3,this is a green triangular box +triangle/triangle_3,this is a picture of a right angled green triangle +triangle/triangle_3,it is triangle solid +triangle/triangle_3,this a rightangle triangle and green colour +triangle/triangle_3,a green triangle block with a right angle +triangle/triangle_3,this is green +triangle/triangle_3,this is a green wedgeshaped childs toy +triangle/triangle_3,this is a green acute traingle +triangle/triangle_3,this is a triangular block that is green +triangle/triangle_3,this is a green wedge +triangle/triangle_3,this is a block the block is shaped like a slice of pie the block is color green it looks like its made of wood +triangle/triangle_3,this is a green cube +cube/cube_2,this is a green cube shaped childs toy +cube/cube_2,this is a green cube +cube/cube_2,this is a square green object +cube/cube_2,a green cube shaped object +cube/cube_2,this is a green cube +cube/cube_2,this is a green cuboid +cube/cube_2,this is cubeshape and green colour +cube/cube_2,this is a greens quare +cube/cube_2,this is a cube +cube/cube_2,this is a green cube +cube/cube_2,this is green +cube/cube_2,a green wooden block +cube/cube_2,this is a block the block is color green the block is shaped like a cube the background is black +cube/cube_2,a green building block shaped like a cube +potato/potato_1,this is a tomato +potato/potato_1,this is a red potato +potato/potato_1,brown color globular fruits +potato/potato_1,this is a apple +potato/potato_1,this is a small red potato +potato/potato_1,this is a picture of an apple +potato/potato_1,this is a vegetable +potato/potato_1,a small red potato +potato/potato_1,this is a red potato +potato/potato_1,this is an apple +potato/potato_1,this is a red potato +potato/potato_1,this is a potato +potato/potato_1,this is a peach +potato/potato_1,this is a fruit i think it is a peach the peach is a little bit dark orange in color the background is black +cabbage/cabbage_4,this is a full purple cabbage it looks like it is fresh and ready to eat +cabbage/cabbage_4,this is a brinjal +cabbage/cabbage_4,this is a vegetable this is a lettuce or cabbage the color of this vegetable is purple it has a yellow bottom +cabbage/cabbage_4,this is a picture of a red cabbage lying on its side +cabbage/cabbage_4,this is a picture of a radish +cabbage/cabbage_4,this is a purple cabbage +cabbage/cabbage_4,this is a cabbage +cabbage/cabbage_4,this is a red cabbage +cabbage/cabbage_4,this is a red cabbage +cabbage/cabbage_4,it is violet brinjal +cabbage/cabbage_4,it is red +cabbage/cabbage_4,this is a red cababage +cabbage/cabbage_4,this is a purple head of lettuce or cabbage +cabbage/cabbage_4,a head of red or purple cabbage +potato/potato_2,this is a fruit it is a peach peach is also a color i love peaches +potato/potato_2,it is a brown potato +potato/potato_2,this is a tomato +potato/potato_2,this is a red potato +potato/potato_2,this is a red potato +potato/potato_2,it seems like tomato +potato/potato_2,this is a picture of an apple +potato/potato_2,a small red potato +potato/potato_2,this is a red potato +potato/potato_2,this is a potato +potato/potato_2,this is a peach +potato/potato_2,this is a potato +potato/potato_2,this is vegetable +potato/potato_2,this is a mango +cylinder/cylinder_4,this is a green cylinder +cylinder/cylinder_4,this is a cylindershaped green childs toy +cylinder/cylinder_4,a small green cylinder it is laying on its side +cylinder/cylinder_4,this is a green candle +cylinder/cylinder_4,this is a cube +cylinder/cylinder_4,this is a green sphere +cylinder/cylinder_4,this is a green coloured cylinder +cylinder/cylinder_4,this is a green cylinder +cylinder/cylinder_4,this is a cubical cylinder +cylinder/cylinder_4,this is cylindershape and color isgreen +cylinder/cylinder_4,this is green +cylinder/cylinder_4,this is a green cylinder it is laying on its side and it is standing on one end +cylinder/cylinder_4,a green cylindrical wooden block +cylinder/cylinder_4,this is a green cylinder +potato/potato_3,this is a yellow colour thing +potato/potato_3,this is a big potato +potato/potato_3,this is a potato +potato/potato_3,this is a potatoe +potato/potato_3,this is a potato +potato/potato_3,this is a large white potato +potato/potato_3,this is a potato +potato/potato_3,those are pictures of potatoes i am not so sure that thosre are potatoes however they do look like potatoes they are color yellow +potato/potato_3,this is a picture of a potato +potato/potato_3,this is a potato +potato/potato_3,this is a potato +potato/potato_3,it is potato +potato/potato_3,a lumpy light colored potato +cabbage/cabbage_2,this is red cabbage +cabbage/cabbage_2,this is a vegetable this is a lettuce or cabbage the color of this vegetable is purple it has a yellow bottom +cabbage/cabbage_2,this is a purple cabbage laying on its side +cabbage/cabbage_2,this is a cabbage +cabbage/cabbage_2,this is a violet cabbage +cabbage/cabbage_2,this is a lettuce +cabbage/cabbage_2,this is a purple cabbage +cabbage/cabbage_2,a head of red cabbage +cabbage/cabbage_2,this is a black cabbage +cabbage/cabbage_2,a picture of cabbage +cabbage/cabbage_2,this is a red cababage +cabbage/cabbage_2,this is a picture of a turnip +cabbage/cabbage_2,a round head of dark purple cabbage +cabbage/cabbage_2,this is a purple cabbage lying on its side +potato/potato_4,this is a yellow colour thing +potato/potato_4,this is a potato the potato is color yellow it is rich in carbohydrates the potato is a good source of energy +potato/potato_4,a picture of potato +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,it is a potato +potato/potato_4,this is a potato +potato/potato_4,this is a picture of a potato +potato/potato_4,this is a potatoe +potato/potato_4,this is a light brown potato +potato/potato_4,pale yellow colored fruits +cylinder/cylinder_2,it is a red cylinder +cylinder/cylinder_2,this is a cylindrical red block +cylinder/cylinder_2,this is a cylindershaped red childs toy +cylinder/cylinder_2,a red building block woth a cylindrical shape +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,this is a cube +cylinder/cylinder_2,this is a cylinder shape +cylinder/cylinder_2,this is a picture of a red tube +cylinder/cylinder_2,this is a red elongated cylinder +cylinder/cylinder_2,it is a cylinder +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,this is cylindershape and color is red +cylinder/cylinder_2,this is a red sphere +cylinder/cylinder_2,this is a cylinder the cylinder is red the cylinder is laying on its sides except for one photo the background is black +cylinder/cylinder_1,a yellow cylidrical block +cylinder/cylinder_1,this is cylindershape and color isyellow +cylinder/cylinder_1,this is a cylinder the cylinder is yellow the cylinder is laying on its sides except for one photo the background is black +cylinder/cylinder_1,this is a picture of a yellow tube +cylinder/cylinder_1,this is a yellow cylinder +cylinder/cylinder_1,this is a cylindershaped yellow childs toy +cylinder/cylinder_1,it is a cylinder +cylinder/cylinder_1,this is also yellow +cylinder/cylinder_1,this a yellow cylinder +cylinder/cylinder_1,this is a yellow sphere +cylinder/cylinder_1,yellow colored cylinders +cylinder/cylinder_1,this is a long cylindrical yellow block +cylinder/cylinder_1,this is a yellow cube +cabbage/cabbage_3,this is a purple cabbage +cabbage/cabbage_3,this is a lettuce +cabbage/cabbage_3,this is a red cabbage +cabbage/cabbage_3,this is a purple cabbage +cabbage/cabbage_3,it is violet cabbage +cabbage/cabbage_3,a purple cabbage laying on its side +cabbage/cabbage_3,this is a purple cabbage +cabbage/cabbage_3,this is a picture of an onion on its side +cabbage/cabbage_3,this is a picture of a radish +cabbage/cabbage_3,this is red +cabbage/cabbage_3,this is a head of purple cabbage +cabbage/cabbage_3,this is vegetable +cabbage/cabbage_3,this is a red cababage +cabbage/cabbage_3,this is a vegetable it is a leafy vegetable it is color purple i think it is a lettuce +cylinder/cylinder_3,this is a blue sphere +cylinder/cylinder_3,it is a blue coloured cylinder +cylinder/cylinder_3,this is a blue roll +cylinder/cylinder_3,this is a cube +cylinder/cylinder_3,it is a blue cylinder +cylinder/cylinder_3,this is cylindershape and color is blue +cylinder/cylinder_3,this is a block the block is blue the block is shaped like a cylinder the background is black +cylinder/cylinder_3,this is a picture of a blue tube +cylinder/cylinder_3,a blue building block +cylinder/cylinder_3,this is blue +cylinder/cylinder_3,this is a blue spherical rod +cylinder/cylinder_3,this is a blue cylinder +cylinder/cylinder_3,this is a blue cylindershaped childs toy +cylinder/cylinder_3,cylinder with shiny smooth blue surface +cabbage/cabbage_1,this is a dark purple cabbage +cabbage/cabbage_1,this is a picture of a radish +cabbage/cabbage_1,this is a red cabbage +cabbage/cabbage_1,this is a picture of a red cabbage +cabbage/cabbage_1,this is cabbage +cabbage/cabbage_1,this is a picture of an eggplant on its side +cabbage/cabbage_1,this is a purple cabbage +cabbage/cabbage_1,this is a vegetable called a red cabbage it is not the color red rather it is the color purple +cabbage/cabbage_1,this is a red cabbage +cabbage/cabbage_1,it is violet cabbage +cabbage/cabbage_1,a purple cabbage laying on its side +cabbage/cabbage_1,a picture of violet cabbage +cabbage/cabbage_1,this is a red cababage +cabbage/cabbage_1,this is a vegetable this is a lettuce or cabbage the color of this vegetable is purple it has a yellow bottom +tomato/tomato_4,this is a tomato sitting still +tomato/tomato_4,this is a picture of a tomato +tomato/tomato_4,this is a tomato +tomato/tomato_4,this is another tomato a tomato is a fruit this tomato has an orange tinge it is a different kind of tomato +tomato/tomato_4,this is a tomato +tomato/tomato_4,this is a large tomato with red and yellow sections +tomato/tomato_4,there is an orange colored tomato +tomato/tomato_4,this is a tomato +tomato/tomato_4,this is localtamoto +tomato/tomato_4,a picture of tomato +tomato/tomato_4,this an unripe tomato +tomato/tomato_4,this is a picture of a tomato +tomato/tomato_4,a large red and yellow tomato +tomato/tomato_4,this is a green and red tomato +lemon/lemon_3,fruits with yellow color and pointed end +lemon/lemon_3,this is a lemon it is yellow +lemon/lemon_3,this is a lime +lemon/lemon_3,this is a picture of a lemon +lemon/lemon_3,this is a lemon +lemon/lemon_3,this is a mango +lemon/lemon_3,this is a lemon a lemon is a fruit the lemon is yellow lemons are sour +lemon/lemon_3,this is a lemon +lemon/lemon_3,it is a lemon +lemon/lemon_3,it seems like a lemon +lemon/lemon_3,this is a yellow lemon +lemon/lemon_3,a picture of yellow vegetable +lemon/lemon_3,this is a picture of a lemon +lemon/lemon_1,this is a picture of a lemon +lemon/lemon_1,this is a yellow colour thing +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a yellow lemon +lemon/lemon_1,this is a picture of a lemon lying on its side +lemon/lemon_1,this is a lime +lemon/lemon_1,this is a yellow fruit +lemon/lemon_1,its a lemon +lemon/lemon_1,this is a lemon +lemon/lemon_1,yellow lemon shaped object +lemon/lemon_1,this is a lemon the lemon is yellow lemons are sour lemons are very useful +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a yellow lemon +corn/corn_3,this is sweet corn +corn/corn_3,it is a corn +corn/corn_3,this is corn +corn/corn_3,this is a shucked ear of white corn +corn/corn_3,this is a picture of corn +corn/corn_3,cone shaped fruits with pale yellow color +corn/corn_3,this is a picture of a sweetcorn lying on its side +corn/corn_3,this is a corn +corn/corn_3,this is a corn the corn is color yellow it is rich in carbohydrates the corn isa good source of energy +corn/corn_3,this is a corn +corn/corn_3,this is corn +corn/corn_3,this is a white ear of corn +corn/corn_3,this is a corn +corn/corn_3,this is corn +corn/corn_1,a light yellow ear of corn +corn/corn_1,a picture of corn +corn/corn_1,this is a picture of corn +corn/corn_1,it is maize +corn/corn_1,this is a corn +corn/corn_1,an ear of fresh corn with the husk removed +corn/corn_1,this is corn +corn/corn_1,this is a picture of a sweetcorn lying on its side +corn/corn_1,this is sweet corn +corn/corn_1,this is an ear of corn that has been dehusked it is lying on its side +corn/corn_1,this is a white ear of corn +corn/corn_1,this is a corn the corn is color yellow it is rich in carbohydrates the corn isa good source of energy +corn/corn_1,this is a corn +corn/corn_1,this is a pale yellow corn it looks old and has a few brown kernels +lemon/lemon_2,this is a picture of a lemon +lemon/lemon_2,a yellow pepper laying on its side +lemon/lemon_2,this is a yellow tomato +lemon/lemon_2,a lemon laying on its side +lemon/lemon_2,this is a yellow fruit +lemon/lemon_2,this is a yellow lemon +lemon/lemon_2,this is a yellow bellpepper +lemon/lemon_2,this is a lemon +lemon/lemon_2,this is a lemon +lemon/lemon_2,this is a lime +lemon/lemon_2,this is a yellow lemon +lemon/lemon_2,this is a yellow lemon +lemon/lemon_2,this is a lemon a lemon is a fruit the lemon is yellow lemons are sour +lemon/lemon_2,this is a lemon +plum/plum_1,this seems like an onion +plum/plum_1,this is a red apple +plum/plum_1,reddish colored bulbous structures +plum/plum_1,this is a beetroot +plum/plum_1,this is a red spherical ball +plum/plum_1,this is a vegetable +plum/plum_1,a dark red object +plum/plum_1,this is a red round object +plum/plum_1,it is red and round +plum/plum_1,this is a red onion +plum/plum_1,this is a red onion +plum/plum_1,this is a apple +plum/plum_1,this is an apple the apple is red there are 4 pictures of apples the background is black +carrot/carrot_4,this is a carrot that is dried up and old +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a vegetable it is a carrot the carrot is color orange carrots are good for your eyes +carrot/carrot_4,this is a picture of a carrot +carrot/carrot_4,this is a picture of a carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a carrot stick +carrot/carrot_4,this is a carrot +carrot/carrot_4,it is carrot +carrot/carrot_4,it is a carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a crooked carrot it is orange +carrot/carrot_4,a long thin orange carrot +semicylinder/semicylinder_2,this is a block the block is color red the block is shaped like a half cylinder it is laying on its sides +semicylinder/semicylinder_2,this is a red half cylinder +semicylinder/semicylinder_2,it seems like a house +semicylinder/semicylinder_2,this is a half circle shaped red toy +semicylinder/semicylinder_2,this is red +semicylinder/semicylinder_2,it is a hemisphere +semicylinder/semicylinder_2,this is a picture of a half cut red circle +semicylinder/semicylinder_2,this is a bright red block +semicylinder/semicylinder_2,this is a red semi circular building block +semicylinder/semicylinder_2,this is a half cylinder +semicylinder/semicylinder_2,this is a cube +semicylinder/semicylinder_2,this is a red archshaped childs toy +semicylinder/semicylinder_2,this is a red half cylinder +semicylinder/semicylinder_2,this is a red colour semicircle shape thing +eggplant/eggplant_4,this is a big purple eggplant +eggplant/eggplant_4,this is a picture of a purple eggplant on its side +eggplant/eggplant_4,a large piece of fruit it is very dark in color +eggplant/eggplant_4,this is a picture of an eggplant +eggplant/eggplant_4,this is an eggplant +eggplant/eggplant_4,this is a brinjal +eggplant/eggplant_4,this is a vegetable +eggplant/eggplant_4,this is a brinjal +eggplant/eggplant_4,this is a eggplanet +eggplant/eggplant_4,this is an eggplant +eggplant/eggplant_4,this is a dark purple eggplant laying on its curved side +eggplant/eggplant_4,a purple eggplant lying flat on the hard surface +eggplant/eggplant_4,this is a black vegetable +semicylinder/semicylinder_3,this is a semicircle shape and yellowcolor +semicylinder/semicylinder_3,it is a yellow halfcylinder +semicylinder/semicylinder_3,this is a yellow half circle +semicylinder/semicylinder_3,this is a sponge +semicylinder/semicylinder_3,this is a yellow semicircle shaped childs toy +semicylinder/semicylinder_3,this is a yellow half circle block +semicylinder/semicylinder_3,this is a yellow half cylinder +semicylinder/semicylinder_3,that is a photo of a cheese i am not so sure if that is a cheese or a sponge the picture is yellow the background is black +semicylinder/semicylinder_3,this is a picture of a half cut yellow circle +semicylinder/semicylinder_3,this is a wedge of yellow cheese +semicylinder/semicylinder_3,this is a yellow object cut in half +semicylinder/semicylinder_3,it is solid hemisphere +semicylinder/semicylinder_3,a bright yellow block +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is a vegetable it is a carrot the carrot is color orange carrots are good for your eyes +carrot/carrot_2,this is an orange carrot +carrot/carrot_2,this is a carrot stick +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is an carrot +carrot/carrot_2,this is a carrot it is orange and somewhat spindly it is missing its stem +carrot/carrot_2,a large orange carrot +carrot/carrot_2,this is a long carrot +carrot/carrot_2,a picture of carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is a picture of a carrot +carrot/carrot_2,a carrot this is somewhat not straight +carrot/carrot_2,this is a picture of a carrot +semicylinder/semicylinder_4,this is a semicircle shape and greencolour +semicylinder/semicylinder_4,this is a block the shape is like a half cylinder the block is color green the background is black +semicylinder/semicylinder_4,a picture of green semi cylindrical solid +semicylinder/semicylinder_4,this is a green semicircle shaped childs toy +semicylinder/semicylinder_4,this is a green styrofoam piece +semicylinder/semicylinder_4,it is a green half cylinder +semicylinder/semicylinder_4,this is green +semicylinder/semicylinder_4,it is a green hemisphere like solid +semicylinder/semicylinder_4,this is a green half circle +semicylinder/semicylinder_4,this is a picture of a half cut green circle +semicylinder/semicylinder_4,this is a sponge +semicylinder/semicylinder_4,this is a green semicircle building block +semicylinder/semicylinder_4,sections of cylinder with green color +eggplant/eggplant_3,a large purple eggplant +eggplant/eggplant_3,this is a shiny purple eggplant that is lying on its side +eggplant/eggplant_3,this is a picture of a purple eggplant on its side +eggplant/eggplant_3,a large purple eggplant +eggplant/eggplant_3,this is a vegetable +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,this is a picture of an eggplant +eggplant/eggplant_3,this is a purple eggplant +eggplant/eggplant_3,it is a brinjal +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,this is a eggplanet +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,this is a photo of an eggplant the eggplant is dark purple the eggplant is a fat eggplant it is a vegetable +eggplant/eggplant_1,this is a dark purple eggplant +eggplant/eggplant_1,this is a eggplanet +eggplant/eggplant_1,this is a photo of an eggplant the eggplant is dark purple the eggplant is a fat eggplant it is a vegetable +eggplant/eggplant_1,this is a picture of an eg +eggplant/eggplant_1,this is a vegetable lying on ground +eggplant/eggplant_1,this is a picture of a purple eggplant on its side +eggplant/eggplant_1,it is a brinjal +eggplant/eggplant_1,this is an eggplant +eggplant/eggplant_1,it is a purple eggplant +eggplant/eggplant_1,this is a purple eggplant +eggplant/eggplant_1,dark purple color vegetable with shiny skin +eggplant/eggplant_1,this is an eggplant with shiny purple skin and a green stem +eggplant/eggplant_1,this is an eggplant +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a carrot stick +carrot/carrot_3,this is a carrot laying on its side +carrot/carrot_3,it is carrot +carrot/carrot_3,this is an orange carrot +carrot/carrot_3,this is a picture of a carrot +carrot/carrot_3,this is a picture of a carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is an orange carrot +carrot/carrot_3,this is a vegetable +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a vegetable it is a carrot the carrot is color orange carrots are good for your eyes +eggplant/eggplant_2,this is a purple eggplant laying down +eggplant/eggplant_2,this is a purple eggplant +eggplant/eggplant_2,this is a eggplant +eggplant/eggplant_2,it is an eggplant +eggplant/eggplant_2,this is a eggplanet +eggplant/eggplant_2,this is a photo of an eggplant the eggplant is dark purple the eggplant is a fat eggplant it is a vegetable +eggplant/eggplant_2,this is a picture of an eggplant +eggplant/eggplant_2,a large purple and green eggplant +eggplant/eggplant_2,this is an eggplant +eggplant/eggplant_2,a purple eggplant lying on its side +eggplant/eggplant_2,this is a vegetable +eggplant/eggplant_2,this is a picture of a purple eggplant on its side +eggplant/eggplant_2,fruits with shiny purple appearance +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a picture of a carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a picture of a carrot +carrot/carrot_1,this is a long carrot +carrot/carrot_1,this is a orange carrot +carrot/carrot_1,this is a carrot stick +carrot/carrot_1,it is a cabbage +carrot/carrot_1,a long orange carrot on its side +carrot/carrot_1,a picture of red carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a vegetable it is a carrot the carrot is color orange carrots are good for your eyes +triangle/triangle_4,a blue wedge from different angles +triangle/triangle_4,this is a blue wedgeshaped childs toy +triangle/triangle_4,this is a blue wedge +triangle/triangle_4,this is a block the block is shaped like a pie the block is color blue the background is black +triangle/triangle_4,this is a triangle +triangle/triangle_4,this is a blue rectangular building block +triangle/triangle_4,there is a blue wedge with asymmetrical sides +triangle/triangle_4,this is blue +triangle/triangle_4,this is a triangle shape thing and blue colour +triangle/triangle_4,this is a blue triangular solid +triangle/triangle_4,this is a blue triangular object +triangle/triangle_4,this is a picture of a blue right triangle +triangle/triangle_4,a blue triangular block +triangle/triangle_4,this is an acute blue +lime/lime_3,bulbous fruits with shiny green color +lime/lime_3,this is a bright green lime +lime/lime_3,this is a lemon +lime/lime_3,this is a picture of a green spherical ball +lime/lime_3,this is a lime +lime/lime_3,this is a chayota +lime/lime_3,this is a vegetable the vegetable is green it is a brusselsprout kids tend to not like this vegetable +lime/lime_3,this is a goyya +lime/lime_3,it is a lime +lime/lime_3,it seems like an avocado +lime/lime_3,it is a green lime +lime/lime_3,this is a green vegetable +lime/lime_3,this is a picture of a lime +lime/lime_1,this is a picture of a lime +lime/lime_1,this is a chayota +lime/lime_1,this is a lime +lime/lime_1,this is a green brussell sprout +lime/lime_1,this is a picture of a green spherical ball +lime/lime_1,this is a lemon +lime/lime_1,this is a green vegetable +lime/lime_1,its a guave +lime/lime_1,this is a lime +lime/lime_1,green object that looks like a lime +lime/lime_1,this is a vegetable the vegetable is green it is a brusselsprout kids tend to not like this vegetable +lime/lime_1,this is a lime +lime/lime_1,this is a green lime +lime/lime_1,this is a green lime +cube/cube_3,it is a cube +cube/cube_3,this is a blue cube +cube/cube_3,this is a blue object in the shape of a cube +cube/cube_3,this is a picture of a blue cube +cube/cube_3,blue colored cubes with shiny faces +cube/cube_3,this is a blue cubeshaped childs toy +cube/cube_3,this is a blue cube +cube/cube_3,this is a block the block is blue the blue block is a cube the cube is laying on its sides +cube/cube_3,this is a cuboid shape and blue colour +cube/cube_3,this is a blue cube +cube/cube_3,this is a blue square +cube/cube_3,square shape blue chair +cube/cube_3,this is a blue cube +cube/cube_1,a bright yellow cube shaped building block +cube/cube_1,a picture of yellow cube +cube/cube_1,this is a picture of a yellow cube +cube/cube_1,it is a corn +cube/cube_1,this is cube shape and yellow colour +cube/cube_1,a childs yellow toy block +cube/cube_1,this is yellow +cube/cube_1,this is a yellow cubeshaped childs toy +cube/cube_1,it is a yellow square block +cube/cube_1,this is a yellow cube +cube/cube_1,this is a yellow square +cube/cube_1,this is a cube the cube is color yellow the cube looks like a block of butter the background is black +cube/cube_1,this is a yellow cube +cube/cube_1,the is a very vibrant yellow block the edges are smooth could be a toy block +lime/lime_2,this is a picture of a green spherical ball +lime/lime_2,it is a lime +lime/lime_2,this is a green lime +lime/lime_2,a bright green lime +lime/lime_2,this is a green vegetable +lime/lime_2,this is a green brussell sprout +lime/lime_2,this is a chayota +lime/lime_2,this is a lime +lime/lime_2,this is a lime +lime/lime_2,this is a lemon +lime/lime_2,this is green +lime/lime_2,this is a green lime +lime/lime_2,this is a vegetable the vegetable is green it is a brusselsprout kids tend to not like this vegetable +lime/lime_2,this is a lime +orange/orange_1,this is an orange +orange/orange_1,this is a moldy orange +orange/orange_1,this is citrus fruit +orange/orange_1,this is a blood orange +orange/orange_1,this is an orange +orange/orange_1,this is an old orange +orange/orange_1,this is a bruised orange +orange/orange_1,this is a orange the orange looks discolored the orange has a green stem the orange is spherically shaped +orange/orange_1,this is an orange +orange/orange_1,a bruised orange +orange/orange_1,this is a tamato +orange/orange_1,image of a fruit that appears to be an orange +banana/banana_4,this is an old banana +banana/banana_4,this is a ripe unripe plantain +banana/banana_4,this is an unripe banana or a plantain +banana/banana_4,this is a picture of a green banana +banana/banana_4,this is a plantain +banana/banana_4,this is a yellow color banana +banana/banana_4,this is a bananna +banana/banana_4,this is a banana +banana/banana_4,this is a yellow banana +banana/banana_4,a picture of a green banana +banana/banana_4,this is a banana +banana/banana_4,this is a short curved banana +banana/banana_4,this is a ripe banana laying on its side +banana/banana_4,this is a green banana this is a green banana lying on its side +orange/orange_2,here is a yellow grapefruit +orange/orange_2,this is a yellow apple +orange/orange_2,this is yellow color peach fruit +orange/orange_2,this is a picture of an orange +orange/orange_2,this is a lemon +orange/orange_2,this is a yellow orange +orange/orange_2,this is a pear fruit +orange/orange_2,this is a lemon +orange/orange_2,in this picture is a golden apple +orange/orange_2,this is a orange +orange/orange_2,this is an apple +orange/orange_2,this is a picture of an orange +orange/orange_2,image closeup shot of what appears to be a lemon rest of the background is black to emphasize on the object here +cuboid/cuboid_4,this is a blue rectangular object +cuboid/cuboid_4,this is a blue rectangular shape the shape is a rectangular block the shape is square at both ends +cuboid/cuboid_4,this is a blue 3d rectangle it has rounded corners +cuboid/cuboid_4,this is a picture of rectangular shaped blue coloured solid block +cuboid/cuboid_4,this is a blue cuboid +cuboid/cuboid_4,a blue rectangle +cuboid/cuboid_4,this is a blue three dimensional rectangle +cuboid/cuboid_4,this is a blue rectangular cylinder +cuboid/cuboid_4,image of a plastic object in blue color it looks like a cube +cuboid/cuboid_4,this is a large blue oblong cube +cuboid/cuboid_4,this rectangleshape and color is blue +cuboid/cuboid_4,blue color painted rectangle shape toy +cuboid/cuboid_4,this is a block of blue clay +cuboid/cuboid_4,this is a blue cuboidshaped bar +orange/orange_3,clear image of an orange +orange/orange_3,this is an orange +orange/orange_3,this is an orange +orange/orange_3,this is a orange +orange/orange_3,this is a tamato +orange/orange_3,this is an orange +orange/orange_3,this is an orange +orange/orange_3,this is a orange citrus fruit +orange/orange_3,this is an orange +orange/orange_3,a picture of an orange +orange/orange_3,this is an orage +orange/orange_3,this is an orange +orange/orange_3,this is an orange +orange/orange_3,an orange +banana/banana_2,this is a banana a picture of a banana on its side a banana shown from different angles +banana/banana_2,this is a banana +banana/banana_2,here is a banna +banana/banana_2,this is a yellow banana +banana/banana_2,this is a banana +banana/banana_2,this is a yellow banana +banana/banana_2,this is a yellow banana +banana/banana_2,yellow color banana lying in white surface +banana/banana_2,this is a yellow banana +banana/banana_2,several images of a yellow banana +banana/banana_2,a picture of banana +banana/banana_2,this is a banana +banana/banana_2,this is an unripe banana +banana/banana_2,this is a banana +orange/orange_4,a picture of round shape yellow fruit +orange/orange_4,an under ripe orange +orange/orange_4,this is an orange +orange/orange_4,this is a mango +orange/orange_4,this is an orange this orange is orange this orange is round +orange/orange_4,this is a navel orange +orange/orange_4,this is an orange standing on its end +orange/orange_4,image of an orange from various angles +orange/orange_4,this is a yellow citrus fruit +orange/orange_4,this is an orange +orange/orange_4,this is a big orange +orange/orange_4,this is an orange with some greencolored areas +orange/orange_4,this is yellow color peach fruit +orange/orange_4,this is an unripe orange +cuboid/cuboid_3,this is a red wooden rectangle block +cuboid/cuboid_3,this rectangleshape and color is red +cuboid/cuboid_3,image of an oblongated cube in red color +cuboid/cuboid_3,this is a red object that is a rectangular box +cuboid/cuboid_3,this is a red 3d rectangle it has rounded corners +cuboid/cuboid_3,this is a red cuboidshaped bar +cuboid/cuboid_3,this is a picture of a red rectangular building block +cuboid/cuboid_3,a childs red block +cuboid/cuboid_3,a red three dimensional rectangle +cuboid/cuboid_3,a red rectangular prism +cuboid/cuboid_3,this is a block of red clay +cuboid/cuboid_3,this is a picture of rectangular shaped red solid block +cuboid/cuboid_3,the picture of a red prism +cuboid/cuboid_3,this is red color rectangle shape bar +cuboid/cuboid_1,this is a yellow cuboid this is a brightly colored geometric shape +cuboid/cuboid_1,this is a yellow cuboidshaped bar +cuboid/cuboid_1,this rectangleshape and color is yellow +cuboid/cuboid_1,this is a 3d image of yellow colored rectangular cube +cuboid/cuboid_1,this is a cube +cuboid/cuboid_1,this is a stick of butter +cuboid/cuboid_1,image of an animated cube or brick +cuboid/cuboid_1,this is a cuboid +cuboid/cuboid_1,a thick square of yellow cheese a stick of yellow margarine +cuboid/cuboid_1,a yellow rectangular prism +cuboid/cuboid_1,this is a yellow rectangular shaped object +cuboid/cuboid_1,this is a picture of rectangular shaped yellow coloured solid block +cuboid/cuboid_1,this is a block of yellow clay +cuboid/cuboid_1,yellow color rectangle box +banana/banana_3,this is a banana a picture of a banana on its side +banana/banana_3,this is a banana +banana/banana_3,yellow color banana +banana/banana_3,this is a banana +banana/banana_3,a mostly ripe yellow banana that is laying on its left side +banana/banana_3,this is a banana +banana/banana_3,this is a banana the banana is not too ripe and not too green the banana is ready for consumption +banana/banana_3,this is a yellow bananna +banana/banana_3,this is an unripe banana +banana/banana_3,close up shots of a yello banana +banana/banana_3,this is a banana +banana/banana_3,this is a yellow banana +banana/banana_3,this is a yellow banana +banana/banana_3,this is a yellow banana laying on its side +cuboid/cuboid_2,this is a green cuboid +cuboid/cuboid_2,this rectangleshape and color is green +cuboid/cuboid_2,this is a green cuboidshaped bar +cuboid/cuboid_2,a green 3d rectangle is here +cuboid/cuboid_2,this is a green rectangular block +cuboid/cuboid_2,this is rectangle shape bar +cuboid/cuboid_2,this is a green coloured rectangle shape toy +cuboid/cuboid_2,this is a green block laying on its side this is a green block stood up on the bottom +cuboid/cuboid_2,this is a picture of rectangular shaped solid block +cuboid/cuboid_2,this is green eraser +cuboid/cuboid_2,this is an image of a cube in green color the object has more length as compared to height and area +cuboid/cuboid_2,this is a green 3d rectangle it has rounded corners +cuboid/cuboid_2,this is a block of green clay +banana/banana_1,this is a banana +banana/banana_1,this is a yellow color banana +banana/banana_1,this is a yellow banana +banana/banana_1,this is a banana +banana/banana_1,a yellow bananna +banana/banana_1,this is a banana +banana/banana_1,this is an unripe banana +banana/banana_1,this is a yellow banana +banana/banana_1,this is a small banana +banana/banana_1,the object is a banana the object is long narrow and curved the object is yellow +banana/banana_1,this is a banana +banana/banana_1,this is a banana +banana/banana_1,this is a banana +banana/banana_1,image of a banana +tomato/tomato_1,this is a small tomato +tomato/tomato_1,this is a tomato +tomato/tomato_1,this is a bright red tomato +tomato/tomato_1,this is a cherry tomato +tomato/tomato_1,this is a red sphere this is a red fruit or vegetable +tomato/tomato_1,this is a bright red color tomato +tomato/tomato_1,this is a red round object it appears it could be a red ripe tomato with no stem and not perfectly round +tomato/tomato_1,a picture of a red cherries +tomato/tomato_1,this is a hybrid tamoto +tomato/tomato_1,this is a round tomatoe +tomato/tomato_1,its a red somewhat spherical object it has some kind of greenish spot on one part of it +tomato/tomato_1,this is a tomato +tomato/tomato_1,this is a red roma tomato +tomato/tomato_1,this is a picture of red tomato +corn/corn_4,image of a corn ear from various angles +corn/corn_4,this is an ear of corn +corn/corn_4,this is a picture of corn +corn/corn_4,this is a corn +corn/corn_4,this is a piece of corn on the cob +corn/corn_4,this is a corn +corn/corn_4,this is a big corn +corn/corn_4,this is a white ear of corn +corn/corn_4,this is a yellow corn on the cob +corn/corn_4,this is an ear of corn +corn/corn_4,this is corn +corn/corn_4,corn is pictured here +corn/corn_4,this is a white color corn +corn/corn_4,this is a sweetcorn +tomato/tomato_2,this is a hybrid tamoto +tomato/tomato_2,this is a red roma tomato +tomato/tomato_2,this is a blob +tomato/tomato_2,image of a tomato +tomato/tomato_2,this is a tomato +tomato/tomato_2,this is one tomato +tomato/tomato_2,this is a tomato +tomato/tomato_2,this is a cherry tomato +tomato/tomato_2,bright red color tomato +lemon/lemon_4,this is a picture of an orangeish colored fruit or vegetable +lemon/lemon_4,this is a bright yellow color lemon +lemon/lemon_4,this is an orange +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a yellow lemon +lemon/lemon_4,image of a lemon that appears to be lying on a flat surface +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a mango +lemon/lemon_4,this is a yellow lemon +lemon/lemon_4,a yellow lemon is here +lemon/lemon_4,this is a lemon +lemon/lemon_4,a yellow distorted lemon +lemon/lemon_4,this is a lemon this is a yellow lemon lying on its side this is a yellow fruit +lemon/lemon_4,this is a picture of yellow coloured fruit +tomato/tomato_3,this is a tomato +tomato/tomato_3,this is a tomatoe +tomato/tomato_3,this is a tomato +tomato/tomato_3,a picture of a red tomato +tomato/tomato_3,this is a tamato +tomato/tomato_3,this is a tomato this is a picture of a red tomato +tomato/tomato_3,this is a red bright tomato +tomato/tomato_3,this is a red tomato +tomato/tomato_3,image of the chinese persimmon fruit +tomato/tomato_3,this is red color tomato +tomato/tomato_3,this is a red tomato +tomato/tomato_3,the object is a tomato the object is red with a green stem the object is round +tomato/tomato_3,this is a red tomato +tomato/tomato_3,this is a red shiny apple +corn/corn_2,this is shucked ear of corn +corn/corn_2,this is white corn on the cob +corn/corn_2,this is a corn +corn/corn_2,this is a yellow piece of corn +corn/corn_2,this is a corn cob +corn/corn_2,this is white color corn +corn/corn_2,this is corn +corn/corn_2,image of a corn ear +corn/corn_2,this is a corn +corn/corn_2,this is a corn +corn/corn_2,four pieces of white corn on the cob on top of a black counter top +corn/corn_2,this is an ear of corn +corn/corn_2,an ear of corn +corn/corn_2,this is corn this is corn with the husk removed this is corn that has been husked this is corn lying on its side +semicylinder/semicylinder_1,this a half blue cylinder +semicylinder/semicylinder_1,this is a blue object that is half of a slice off of a cylinder +semicylinder/semicylinder_1,this is a peace of water tub +semicylinder/semicylinder_1,this is a blue wooden block +semicylinder/semicylinder_1,this is a half circle toy painted in blue color +semicylinder/semicylinder_1,this is half a blue circle +semicylinder/semicylinder_1,this is a 3d semicylinder +semicylinder/semicylinder_1,this object is blue the object seems to be half a cylinder the object seems perfectly smooth the object can be laid on its flat side +semicylinder/semicylinder_1,this is a half cylinder that is blue in color +semicylinder/semicylinder_1,a block arch +semicylinder/semicylinder_1,this shape is semicircle and bluecolor thing +semicylinder/semicylinder_1,image of a semi circular cylinder in other words it is a cylinder with half diameter +arch/arch_4,this is a red bridge +arch/arch_4,this is a watermelon cut into a curved piece +arch/arch_4,this is a small red halfpipe used by skateboarders +arch/arch_4,in this picture is a red object with a half circle cut out of it +arch/arch_4,this is a red 3d rectangle with a semicircle cut out +arch/arch_4,cure shape toy painted bright red color +arch/arch_4,this looks like an arch +arch/arch_4,a rectangular solid block with centre curved +arch/arch_4,this is a red wooden block +arch/arch_4,an archshaped red colored childs toy +arch/arch_4,this shape is semicircle and red color +arch/arch_4,this is an archshaped red object that looks like a phone handle +arch/arch_4,i cannot tell what this object is +arch/arch_4,this is a red arch shaped block this is a red skateboard ramp shaped object +plum/plum_2,a red apple +plum/plum_2,this is a red apple +plum/plum_2,this is a red color apple +plum/plum_2,this is a red apple +plum/plum_2,an apple that gets slightly larger in the last picture +plum/plum_2,this is a small bright red apple +plum/plum_2,this is a passion fruit +plum/plum_2,this is a red apple +plum/plum_2,this is a picture of a deep red apple +plum/plum_2,this is a apple +plum/plum_2,this is a plum +plum/plum_2,this is a shiny apple +plum/plum_2,this is an image of a ripe red apple +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,the object is a cucumber the the color of the object is dark green the skin of the object appears to be rough the object is longer than it is wide +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is a cucumber this is a cucumber laying on its side +cucumber/cucumber_4,a cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,the object appears to be a green vegetable this vegetable appears to be either a cucumber or a zucchini +cucumber/cucumber_4,image of a cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is green color cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is a medium cucumber +plum/plum_3,clear image of a plum +plum/plum_3,this is a dark red apple +plum/plum_3,this is a red apple +plum/plum_3,a picture of apple +plum/plum_3,this is a passion fruit +plum/plum_3,this is a plum +plum/plum_3,this is a dark red apple +plum/plum_3,this is a red apple +plum/plum_3,this is an apple +plum/plum_3,a picture of a red apple +plum/plum_3,this is a picture of an apple +plum/plum_3,this is an apple +plum/plum_3,this is a purple plum +plum/plum_3,an apple +arch/arch_2,blue arch shaped plastic piece blue skateboard ramp shaped toy +arch/arch_2,this is a arcshape and bluecolour thing +arch/arch_2,here is a blue arch +arch/arch_2,this is a blue crescent like shape +arch/arch_2,this is what looks like a rectangular shaped block of wood with a cylindrical piece cut out of it so that it makes a sort of tunnel if you put it down on the ground with the open side of the cylinder open shape down +arch/arch_2,this is a 3d image of a blue arch with different rotations +arch/arch_2,this is a blue wooden block +arch/arch_2,cure shape toy painted bright blue color +arch/arch_2,this is a blue bridge +arch/arch_2,image of a plastic object in blue color it resembles a skateboard miniature ramp +arch/arch_2,this is semi circle +arch/arch_2,a rectangular solid block with centre curved +arch/arch_2,this is a 3d rectangle with a semicircle cut out +arch/arch_2,this is a coloured toy for childrens +plum/plum_4,this is a apple +plum/plum_4,a small poatoe +plum/plum_4,this is an apple +plum/plum_4,this is a passion fruit +plum/plum_4,this object is red in color this object looks like a type of fruit this object is shiny +plum/plum_4,this is a red apple +plum/plum_4,this is a single red grape +plum/plum_4,image of a red apple the apple appears to be ripe and ready to eat +plum/plum_4,this is a red color plum +plum/plum_4,this is an apple +plum/plum_4,this is a small apple +plum/plum_4,an apple that gets smaller in each photo +plum/plum_4,this is a red color apple +plum/plum_4,this is an apple +cucumber/cucumber_3,this is a green cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,image of a cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a green cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,a green cucumber is pictured +cucumber/cucumber_3,this is a series of cucumbers +cucumber/cucumber_3,a cumcumber +cucumber/cucumber_3,this is a large and green cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a green color cucumber +cucumber/cucumber_1,this is a cucumber this is a cucumber laying on its side +cucumber/cucumber_1,this is a short cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,this is green cucumber +cucumber/cucumber_1,this is a cucumber picture +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,image of a cucumber +cucumber/cucumber_1,this is a zucchini +cucumber/cucumber_1,a fresh hard green cucumber a big green pickle +cucumber/cucumber_1,a cucumber +cucumber/cucumber_1,this is a dark green cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,this is one large cucumber +cucumber/cucumber_1,green color cucumber +arch/arch_3,this is a green arch shaped plastic piece +arch/arch_3,a rectangular solid block with centre curved +arch/arch_3,green color curve shape toy +arch/arch_3,this is a green bridge +arch/arch_3,a green wooden rectangular prism that has had a halfcylinder cut out of it it is resting on one of its square sides the cut is as wide as its square side as long as its rectangular side and almost as tall as its square side +arch/arch_3,this is a arcshape and greencolour thing +arch/arch_3,the object is concave the object is green the object looks like a miniature skateboarding ramp +arch/arch_3,this is a green arch +arch/arch_3,this is a geen 3d rectangle with a semicircle cut out +arch/arch_3,image of a small object that resembles a skateboard ramp +arch/arch_3,this is a mint green object +arch/arch_3,this is an archshaped mintygreen object +arch/arch_3,this is a 3d image of an arch with different rotations +arch/arch_3,this is a green shape +cucumber/cucumber_2,this is a cucumber this is a cucumber lying on its side this is a green cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is a squat cucumber +cucumber/cucumber_2,a green cucumber is here +cucumber/cucumber_2,this is a long green cucumber +cucumber/cucumber_2,this is green color cucumber +cucumber/cucumber_2,it look like a cucumber +cucumber/cucumber_2,this is a green cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is cucumber +cucumber/cucumber_2,this is a clear image of a cucumber against black background +cucumber/cucumber_2,this is a cucumber +arch/arch_1,a rectangular solid block with centre curved +arch/arch_1,this is a yellow color cure shape toy +arch/arch_1,this is a 3d image of a yellow arch with different rotations +arch/arch_1,this is a arcshape and yellowcolour thing +arch/arch_1,a yellow arch is pictured +arch/arch_1,this looks like a yellow childrens toy +arch/arch_1,this is a 3d rectangle with a semicircle cut out +arch/arch_1,this is a yellow wedgeshaped object +arch/arch_1,this is a yellow bridge +arch/arch_1,the object is yellow the object is 3d with a halfcircle taken out of a rectangle and an irregular shape on top +arch/arch_1,this is a yellow building block used as a toy +arch/arch_1,this is a yellow object +arch/arch_1,this is a yellow archshaped building block +arch/arch_1,mirror images of what appears to be alphabet c +triangle/triangle_1,this is a red triangle +triangle/triangle_1,this is a piece of cake +triangle/triangle_1,this is a red triangular shaped wooden block +triangle/triangle_1,this is a red 3d triangle +triangle/triangle_1,this is a red wedge this is a red ramp shaped object +triangle/triangle_1,this is rectangle shape toy +triangle/triangle_1,this is a wedge shape close to the shape of a pie slice it is red has 5 sides two of which are triangles 3 are rectangles +triangle/triangle_1,the triangleshaped red colored childs toy +triangle/triangle_1,this is triangle shape and red colour +triangle/triangle_1,this is a red wedge +triangle/triangle_1,this is a red wedgeshaped block +triangle/triangle_1,this is a picture of triangle shaped block +triangle/triangle_1,this is a red wedgeshaped object +triangle/triangle_1,this is a 3d image of red triangle with different rotations +cube/cube_4,image of a slightly ditorted cube in red color +cube/cube_4,this is a red cube +cube/cube_4,this is a 3d image of a red cube with different rotations +cube/cube_4,this is a picture of square shaped block +cube/cube_4,a picture of a red block +cube/cube_4,this is a red cube +cube/cube_4,this is a red cube +cube/cube_4,this is a red cube +cube/cube_4,this is a picture of a red square block +cube/cube_4,this is a red block +cube/cube_4,this is a red box object +cube/cube_4,here is a red cube +cube/cube_4,this is red color cube +cube/cube_4,this is a rectangle shape and red colour thing +triangle/triangle_2,this is triangle shape and yellow colour +triangle/triangle_2,this is a yellow wedgeshaped object +triangle/triangle_2,this is a yellow wedge +triangle/triangle_2,a triangle in bright yellow color resembles a wedge not a perfect triangle though +triangle/triangle_2,this is a yellow objet +triangle/triangle_2,this is one yellow triangle +triangle/triangle_2,this is a picture of triangle shaped block +triangle/triangle_2,this is a yellow 3d triangle +triangle/triangle_2,triangle shape light yellow color toy +lime/lime_4,this is a picture of a green lime +lime/lime_4,light green color fruit +lime/lime_4,this is a lime +lime/lime_4,this is a lime +lime/lime_4,this is a green lemon +lime/lime_4,image of a grapefruit +lime/lime_4,this is a lime +lime/lime_4,this is a chayota +lime/lime_4,this is a green cabbage +lime/lime_4,a picture of a lime +lime/lime_4,this is a lime +lime/lime_4,a green key lime oddly shaped +lime/lime_4,this is a lime this is a lime lying on its side this is a green fruit +lime/lime_4,this is a picture of green coloured fruit +triangle/triangle_3,this is a picture of triangle shaped block +triangle/triangle_3,this is a wedge cube +triangle/triangle_3,this is a green 3d triangle +triangle/triangle_3,this is a green triangular block +triangle/triangle_3,this is a triangle shape thing and green colour +triangle/triangle_3,this is a green ramp shaped object this is a green wedge +triangle/triangle_3,this is a green triangle +triangle/triangle_3,this is a green triangular prism +triangle/triangle_3,image of a triangle it is wedge shaped though and in green color +triangle/triangle_3,this triangle shape green color painted toy +triangle/triangle_3,this is a green block in the shape of a wedge +triangle/triangle_3,the object is green the object is triangular shaped the object is 3d with triangle shapes on either side by width and rectangular sides by length +triangle/triangle_3,this is a triangular shaped wooden green block +triangle/triangle_3,this is a green triangle shaped object +cube/cube_2,this is a green cube +cube/cube_2,this is a green square wooden block +cube/cube_2,this is a squareshape and greencolor +cube/cube_2,this is a green cubed square +cube/cube_2,this is a green cube +cube/cube_2,this is green color cube +cube/cube_2,this is a green block +cube/cube_2,image of a square shaped object in green color +cube/cube_2,this is a picture of square shaped green colour block +cube/cube_2,this is a green cube +cube/cube_2,a square piece of green molded cheese a green squared toy cube +cube/cube_2,this is a green 3d block +cube/cube_2,a green cube +cube/cube_2,this is a green cube +potato/potato_1,this is a plum +potato/potato_1,this is a purple plum +potato/potato_1,this is potato +potato/potato_1,this is a red potato +potato/potato_1,this is a red color fruit +potato/potato_1,this is a small potato +potato/potato_1,this is a red potato +potato/potato_1,the object is red it is possible that this object is a red potato this object seems to have crevices on its surface +potato/potato_1,this appears to be a plum this is a plum lying on its side +potato/potato_1,a red potatoe +potato/potato_1,thiis is a apple +potato/potato_1,image of a potato +cabbage/cabbage_4,this is a big purple cabbage +cabbage/cabbage_4,this is trimmed red cabbage on its side +cabbage/cabbage_4,this is a purple cabbage +cabbage/cabbage_4,this is a picture of a purple cabbage +cabbage/cabbage_4,this is a head of purple cabbage +cabbage/cabbage_4,dark purple color cabbage +cabbage/cabbage_4,this looks like an egg +cabbage/cabbage_4,this is some vegetable +cabbage/cabbage_4,this is red cabbage +cabbage/cabbage_4,a picture of a red cabbage +cabbage/cabbage_4,this is a red cababage +cabbage/cabbage_4,this is a oval purple cabbage +cabbage/cabbage_4,this is a purple head of cabbage +cabbage/cabbage_4,this is cabbage lying on its side this is purple cabbage +potato/potato_2,a potatoe +potato/potato_2,this is a red potato +potato/potato_2,this is a red color fruit +potato/potato_2,this is a red potato +potato/potato_2,this is a potato with a few small blemishes +potato/potato_2,this is a light brown potato +potato/potato_2,this is a apple +potato/potato_2,this is a red potato +potato/potato_2,this is a picture of a red potato +potato/potato_2,a picture of potato +potato/potato_2,this is a potato +potato/potato_2,this is a red potato +potato/potato_2,image of a potato lying flat +cylinder/cylinder_4,this is a green spherical object +cylinder/cylinder_4,the object is green the shape of the object is a cylinder the ends of the object are circle shaped +cylinder/cylinder_4,this is a green 3d cylinder +cylinder/cylinder_4,a picture of round cube +cylinder/cylinder_4,this is a green cylinder +cylinder/cylinder_4,a green clander +cylinder/cylinder_4,this is a green cylinder +cylinder/cylinder_4,this appears to be a long round cylinder the object seems to be a glossy green color +cylinder/cylinder_4,image of a cylinder in green color +cylinder/cylinder_4,this is a small green cylindrical object +cylinder/cylinder_4,this is cylindershape and color isgreen +cylinder/cylinder_4,cylinder shape toy painted with green color +cylinder/cylinder_4,this is a small green cylinder +cylinder/cylinder_4,this is a dark green cylinder +potato/potato_3,this looks to be an image of ginger +potato/potato_3,this is a potato +potato/potato_3,this is a potato +potato/potato_3,this is a potato +potato/potato_3,this is a potato +potato/potato_3,this is a potato this is a potato lying on its side +potato/potato_3,this is a tan long potato +potato/potato_3,this is a russet potato +potato/potato_3,this is a potato +potato/potato_3,this is a potato +potato/potato_3,this is a potatoe +potato/potato_3,this is a brown color potato +potato/potato_3,this is yam +cabbage/cabbage_2,picture of red cabbage red cabbage lying on its side +cabbage/cabbage_2,this is a red cababage +cabbage/cabbage_2,here is a purple cabbage +cabbage/cabbage_2,this is purple cabbage +cabbage/cabbage_2,this is a purple cabbage +cabbage/cabbage_2,this is a purple colored cabbage +cabbage/cabbage_2,this is purple cabbage +cabbage/cabbage_2,this is a dark purple color cabbage +cabbage/cabbage_2,this is a big purple cabbage +cabbage/cabbage_2,image of an eggplant from various shots it could also be a cabbage but the body is too shiny the top portion has been cut off to reveal the insides +cabbage/cabbage_2,a picture of a red cabbage +cabbage/cabbage_2,this is some vegetable +cabbage/cabbage_2,this is a head of purple cabbage +cabbage/cabbage_2,this is round shape ball +potato/potato_4,a picture of potato +potato/potato_4,a light colored potatoe +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,this image appears to be a potatoe this object has dark brown spots in some areas this image is different shapes +potato/potato_4,this is a russet potato +potato/potato_4,this is a tan oval potato +potato/potato_4,image of potato it slightly resembles ginger too but potato is more obvious +potato/potato_4,this is a potato +potato/potato_4,this is a small potatoe +potato/potato_4,this is a small potato +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,this is a potato +cylinder/cylinder_2,this is a red wooden cylinder shaped block +cylinder/cylinder_2,this is cylindershape and color is red +cylinder/cylinder_2,image of a cylinder in red color +cylinder/cylinder_2,a spherical object that is red +cylinder/cylinder_2,this is a red 3d sphere +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,a red childs toy is here +cylinder/cylinder_2,this is a small red cyclinder +cylinder/cylinder_2,a red cylinder +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,a picture of red coloured round cube +cylinder/cylinder_2,this is a cylinder +cylinder/cylinder_2,this is a red color cylinder shape toy +cylinder/cylinder_1,this is a yellow cylinder +cylinder/cylinder_1,this is a yellow cylinder +cylinder/cylinder_1,this is cylindershape and color is yellow +cylinder/cylinder_1,this is a 3d image of cylindrical yellow colored cube +cylinder/cylinder_1,this is a cylinder +cylinder/cylinder_1,this is a cylinder +cylinder/cylinder_1,slightly distorted image of a cylinder +cylinder/cylinder_1,this is a wide and long cylinder +cylinder/cylinder_1,a rounded yellow stick of melted butter +cylinder/cylinder_1,a yellow cylinder +cylinder/cylinder_1,this is a yellow cylinder shaped object +cylinder/cylinder_1,a picture of round cube +cylinder/cylinder_1,this is one yellow cilinder +cylinder/cylinder_1,yellow color cylinder cube +cabbage/cabbage_3,this is cabbage lying on its side this is purple cabbage +cabbage/cabbage_3,this is some vegetable +cabbage/cabbage_3,purple color cabbage +cabbage/cabbage_3,this is a purple cabbage +cabbage/cabbage_3,a purple cabbage that is on its side the cabbage is resting on a flat grey hexagon and the hexagon is on grey foam +cabbage/cabbage_3,this is a red cababage +cabbage/cabbage_3,the item is dark with dark purple coloring to it the item looks to be a vegetable of some sort could the item be a cabbage +cabbage/cabbage_3,this is a purple cabbage +cabbage/cabbage_3,this is a head of purple cabbage +cabbage/cabbage_3,this image appears to be of an eggplant however someone has cut it open from the side to reveal the insides +cabbage/cabbage_3,this is purple cabbage +cabbage/cabbage_3,this is a round purple cabbage +cabbage/cabbage_3,this is a purple colored cabbage +cabbage/cabbage_3,this is a fruit +cylinder/cylinder_3,this is a blue cylinder this is a blue cylinder lying on its side +cylinder/cylinder_3,this is cylindershape and color is blue +cylinder/cylinder_3,this is a royal blue cylinder +cylinder/cylinder_3,a cylinder is here +cylinder/cylinder_3,this is a blue cylinder shaped object +cylinder/cylinder_3,blue color cylinder shape toy +cylinder/cylinder_3,this is a blue colored cylinderic shape object +cylinder/cylinder_3,this is a blue cylinder block +cylinder/cylinder_3,a picture of blue round cube +cylinder/cylinder_3,this is cylindrical color is blue +cylinder/cylinder_3,image of a cylinder in dark blue color +cylinder/cylinder_3,this is a blue 3d sphere +cabbage/cabbage_1,this is some vegetable +cabbage/cabbage_1,this is a purple color cabbage +cabbage/cabbage_1,this is a purple colored cabbage +cabbage/cabbage_1,this is a red cababage +cabbage/cabbage_1,a purple cabbage is pictured +cabbage/cabbage_1,this is a multicolored piece of artwork +cabbage/cabbage_1,this is a head of purple cabbage +cabbage/cabbage_1,this is an oval purple cabbage +cabbage/cabbage_1,this is a purple cabbage +cabbage/cabbage_1,the object is a cabbage the object is round the object is dark purple with a light green base where the stem was +cabbage/cabbage_1,this is a purple cabbage +cabbage/cabbage_1,this is purple cabbage +cabbage/cabbage_1,this is a purple cabbage +cabbage/cabbage_1,image of a rotten fruit +tomato/tomato_4,this is an orange tomato +tomato/tomato_4,this is a pumpkin +tomato/tomato_4,this is a tomato it is orangered in color +tomato/tomato_4,this is an unripe tomato +tomato/tomato_4,this is a tomato this is a mottled red tomato +tomato/tomato_4,this is a yellow color tomato +tomato/tomato_4,this is a round tomato that is not quite ripe it is a reddish yellow color and has a green stem +tomato/tomato_4,this is tomotas +tomato/tomato_4,this is local tamoto +tomato/tomato_4,this is an under ripe tomatoe +tomato/tomato_4,this is an orange tomato +tomato/tomato_4,a picture of tomato +tomato/tomato_4,this is an orange tomato with reddish highlights +tomato/tomato_4,this is a picture of yellowish tomato +lemon/lemon_3,image of a lemon in yello color +lemon/lemon_3,this is a lemon +lemon/lemon_3,this is a picture of lemon +lemon/lemon_3,this is a mango +lemon/lemon_3,this is a picture of a yellow lemon +lemon/lemon_3,this is a orange +lemon/lemon_3,this s a small lemon +lemon/lemon_3,this is a single yellow lemon +lemon/lemon_3,this is a yellow lemon +lemon/lemon_3,this is a yellow lemon +lemon/lemon_3,this is a yellow lemon +lemon/lemon_3,here is a yellow lemon +lemon/lemon_3,this is yellow color papaya +lemon/lemon_3,this is a mango +lemon/lemon_1,this is a yellow colour thing +lemon/lemon_1,this is a dusky yellow lemon +lemon/lemon_1,this looks like a lemn +lemon/lemon_1,image of a lemon +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a yellow lemon +lemon/lemon_1,a picture of yellow coloured fruit +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is yellow color lime +corn/corn_3,this is a picture of a peeled corn on the cob +corn/corn_3,this is white color corn +corn/corn_3,this is an ear of corn +corn/corn_3,this is an ear of corn +corn/corn_3,this is a corn +corn/corn_3,image of a corn ear lying on what appears to be a white sheet or paper +corn/corn_3,a piece of corn on the cob laying on its side +corn/corn_3,this is a corn +corn/corn_3,this is a corn +corn/corn_3,a picture of corn +corn/corn_3,this is a corn cob +corn/corn_3,a pilled and trimmed corn on the cob +corn/corn_3,this is corn this is corn with its husk removed this is corn lying on its side +corn/corn_3,a picture of corn +corn/corn_1,a picture of corn +corn/corn_1,this is some corn +corn/corn_1,this is an ear of corn +corn/corn_1,this is corn on the cob +corn/corn_1,this is a corn +corn/corn_1,this is corn this is corn with its husk removed this is corn lying on its side +corn/corn_1,this is a light yellow corn +corn/corn_1,this is a piece of corn +corn/corn_1,image of a corn ear +corn/corn_1,white color corn lying in a white surface +corn/corn_1,this is an ear of corn +corn/corn_1,the object is an ear of corn without the husk the object is yellow and white in color the object is long and narrow +corn/corn_1,this is an ear of corn +corn/corn_1,this is a pale yellow corn on the cob +lemon/lemon_2,this is a yellow lemon +lemon/lemon_2,this is a yellow lemon +lemon/lemon_2,this is a yellow capsicum +lemon/lemon_2,this is a yellow rounded object +lemon/lemon_2,this is a lemon +lemon/lemon_2,this is a yellow color lemon +lemon/lemon_2,here is a yellow lemon +lemon/lemon_2,image of a lemon +lemon/lemon_2,this is a picture of yellow coloured fruit +lemon/lemon_2,this is a lemon +lemon/lemon_2,a small fresh round lemon +lemon/lemon_2,this is a lemon +lemon/lemon_2,a lemon +lemon/lemon_2,this is a yellow sphere this appears to be a yellow tomato +plum/plum_1,this is a red apple +plum/plum_1,this is a red apple +plum/plum_1,this is plum +plum/plum_1,this is a red apple +plum/plum_1,this is an apple +plum/plum_1,this is an apple +plum/plum_1,this is a red apple +plum/plum_1,the object is red the object is round with a flat surface at the bottom the object is not a sphere the object has a glossy surface +plum/plum_1,this is an apple this is a red apple this is a red apple sitting upright +plum/plum_1,a red apple +plum/plum_1,this is a passion fruit +plum/plum_1,image not displayed properly +carrot/carrot_4,this is a single bulk carrot +carrot/carrot_4,this is a long orange carrot +carrot/carrot_4,this is a long orange carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is red color carrot +carrot/carrot_4,an orange carrot +carrot/carrot_4,a picture of carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a long carrot +carrot/carrot_4,this object is a carrot +carrot/carrot_4,this is a carrot this is a picture of a carrot lying on its side +semicylinder/semicylinder_2,here is a block arch +semicylinder/semicylinder_2,this is a red wooden half circle block +semicylinder/semicylinder_2,this is half circle toy +semicylinder/semicylinder_2,this is a picture of half a red cylinder +semicylinder/semicylinder_2,this is a red object that is a half moon shape +semicylinder/semicylinder_2,this is half a red circle +semicylinder/semicylinder_2,this is a semicircle shape and redcolour +semicylinder/semicylinder_2,this is a red 3d semicircle +semicylinder/semicylinder_2,this is a halfmoon shaped object that is red +semicylinder/semicylinder_2,a picture of semi curved block +semicylinder/semicylinder_2,this is a red arch +semicylinder/semicylinder_2,this is a red arch shaped wooden block +semicylinder/semicylinder_2,image of a red colored semi cylnder in other words it appears to be cut in half as to show only half the diameter +eggplant/eggplant_4,this is an eggplant +eggplant/eggplant_4,the object is an eggplant resting horizontally the color of the eggplant is purple the eggplant has a green stem the eggplant is wider at the base and narrower at the head near the stem +eggplant/eggplant_4,this is an eggplant +eggplant/eggplant_4,this is a brinjal +eggplant/eggplant_4,this is an eggplant this is a purple eggplant lying on its side +eggplant/eggplant_4,a purple eggplant +eggplant/eggplant_4,the object appears to be an egg plant the eggplant is purple with a shiny skin +eggplant/eggplant_4,various close up shots of an eggplant +eggplant/eggplant_4,this is a large eggplant +eggplant/eggplant_4,this is a eggplanet +eggplant/eggplant_4,this is a purple eggplant +eggplant/eggplant_4,this is an eggplant +eggplant/eggplant_4,this is a very dark eggplant +semicylinder/semicylinder_3,image of a plastic object that represents a semi cylinder shape it is in yello color with half diameter +semicylinder/semicylinder_3,this is a bright yellow wooden block it is in the shape of a semicircle +semicylinder/semicylinder_3,this is a yello 3d semicircle +semicylinder/semicylinder_3,a picture of semi curved block +semicylinder/semicylinder_3,this is a semicircle shape and yellow colour +semicylinder/semicylinder_3,this half of a yellow circle this is a yellow block +semicylinder/semicylinder_3,this is a yellow object that is half of a slice off of a cylinder +semicylinder/semicylinder_3,this is a yellow wooden half cirlce block +semicylinder/semicylinder_3,this is half a yellow circle +semicylinder/semicylinder_3,this is a picture of a yellow building block +semicylinder/semicylinder_3,this is a yellow wedge +semicylinder/semicylinder_3,half circle toy painted bright yellow color +semicylinder/semicylinder_3,this is a yellow arch object +carrot/carrot_2,picture of a carrot a carrot laying on its side this is a long skinny carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is an orange carrot +carrot/carrot_2,this is an orange carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is a long carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,lengthy red color carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,image of a carrot +carrot/carrot_2,a picture of carrot +carrot/carrot_2,a picture of carrot +carrot/carrot_2,this is a large carrot +carrot/carrot_2,this is a carrot +semicylinder/semicylinder_4,this is a half curved object +semicylinder/semicylinder_4,a green childs block +semicylinder/semicylinder_4,this is a semicircle +semicylinder/semicylinder_4,this is a semicircle shape and greencolour +semicylinder/semicylinder_4,this object is green this image shows a half circular 3d object this object appears to be foam +semicylinder/semicylinder_4,this is a green wooden block +semicylinder/semicylinder_4,this is a green object that is half of a slice off of a cylinder +semicylinder/semicylinder_4,image of a plastic semi cylinder cut at half diameter the color is green +semicylinder/semicylinder_4,this is a peace of sponge +semicylinder/semicylinder_4,this is a green circle cut in half +semicylinder/semicylinder_4,this is half a green circle +semicylinder/semicylinder_4,this is a green object it is in the shape of a half moon +semicylinder/semicylinder_4,this is a green color half circle shape toy +semicylinder/semicylinder_4,this is a green 3d semicircle +eggplant/eggplant_3,this a an eggplant laying on its side +eggplant/eggplant_3,this is a eggplanet +eggplant/eggplant_3,cear image of an eggplant +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,a dark eggplant is here +eggplant/eggplant_3,its a ripe eggplant +eggplant/eggplant_3,an eggplant +eggplant/eggplant_3,this is a small eggplant +eggplant/eggplant_3,this is a picture of brinjal +eggplant/eggplant_3,a fresh purple aubergine +eggplant/eggplant_3,purple color brinjal lying in a white space +eggplant/eggplant_1,this is an eggplant this is an eggplant laying on its side +eggplant/eggplant_1,this is a dark purple eggplant +eggplant/eggplant_1,this is a eggplanet +eggplant/eggplant_1,this is a purple eggplant +eggplant/eggplant_1,this is an eggplant +eggplant/eggplant_1,this is an eggplant +eggplant/eggplant_1,image of an eggplant +eggplant/eggplant_1,this is an eggplant +eggplant/eggplant_1,a whole eggplant laying on a white napkin +eggplant/eggplant_1,an +eggplant/eggplant_1,this is an oblong shaped vegetable with light and dark green colors +eggplant/eggplant_1,this is a brinjal +eggplant/eggplant_1,this is one big eggplant +eggplant/eggplant_1,purple color brinjal +carrot/carrot_3,this is a carrot this is a picture of a carrot lying on its side +carrot/carrot_3,a picture of carrot +carrot/carrot_3,this is a red color carrot +carrot/carrot_3,this is a large carrot +carrot/carrot_3,a very old carrot that has its leafy part cut off also it has a slight angle on its pointy bit +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a carrot the carrot it long the carrot has a crooked tip the carrot looks crisp +carrot/carrot_3,here is an orange carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,image of a carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a thick carrot +carrot/carrot_3,this is a long carrot +carrot/carrot_3,this is a carrot in different positions +eggplant/eggplant_2,this is an eggplant this is a purple eggplant lying on its side +eggplant/eggplant_2,this is a eggplanet +eggplant/eggplant_2,this is a deep purple eggplant +eggplant/eggplant_2,an eggplant is pictured +eggplant/eggplant_2,this is purple eggplant with a green stem +eggplant/eggplant_2,purple color eggplant lying in a white color paper +eggplant/eggplant_2,it is a brinjal +eggplant/eggplant_2,this is a green eggplant with a lighter green tip +eggplant/eggplant_2,this is a brinjal +eggplant/eggplant_2,this is eggplant +eggplant/eggplant_2,image of an eggplant from various angles it appears to be resting on a white sheet or paper +eggplant/eggplant_2,this is an eggplant +carrot/carrot_1,a picture of carrot +carrot/carrot_1,this is a red color lengthy carrot +carrot/carrot_1,this is a long carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,a carrot is pictured +carrot/carrot_1,this is an orange skinny carrot +carrot/carrot_1,this is a large carrot +carrot/carrot_1,this is a long orange carrot +carrot/carrot_1,this is a thin carrot +carrot/carrot_1,the object is a carrot the object is orange the object is long and narrow +carrot/carrot_1,this is a orange carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,its a long orangeish organic thing like a tube that tapers at one end its probably a root vegetable like a carrot +carrot/carrot_1,this set of images is not displayed properly broken files +triangle/triangle_4,this is a blue triangle +triangle/triangle_4,a triangle shape +triangle/triangle_4,this is a blue wooden block it is triangle in shape +triangle/triangle_4,this is a blue 3d triangle +triangle/triangle_4,this is a blue wedge this is a picture of a blue ramp shaped object +triangle/triangle_4,this is blue color rectangle shape toy +triangle/triangle_4,this is a blue wedge shaped object 5 sides 3 are rectangles 2 are triangles +triangle/triangle_4,the triangleshaped blue colored childs toy +triangle/triangle_4,this is a triangle shape thing and blue colour +triangle/triangle_4,this is a blue wedge +triangle/triangle_4,this is a blue wedgeshaped block +triangle/triangle_4,this is a triangle shaped blue coloured block +triangle/triangle_4,this is a blue wedgeshaped object +triangle/triangle_4,this is a 3d image of blue triangle +lime/lime_3,image of a grape fruit in green color but it could also be a lemon in green color +lime/lime_3,this is a lime +lime/lime_3,this is a green cabbage +lime/lime_3,this is a green coloured fruit +lime/lime_3,this is a lime +lime/lime_3,this is a lemon +lime/lime_3,this is a small and green cabbage +lime/lime_3,this is a green lime +lime/lime_3,this is a green lime +lime/lime_3,this is a green lime +lime/lime_3,this is a lime +lime/lime_3,here is a green lime +lime/lime_3,this is green color fruit +lime/lime_3,this is a chayota +lime/lime_1,this is a chayota +lime/lime_1,this is a medium green lime +lime/lime_1,this is a picture of a lime +lime/lime_1,photo of an apple in green color +lime/lime_1,this is a lime +lime/lime_1,this is a green cabbage +lime/lime_1,this is a picture of green coloured fruit +lime/lime_1,this is a green fruit +lime/lime_1,this is a light green color fruit +cube/cube_3,this is a blue square shaped object +cube/cube_3,blue color painted square shape toy +cube/cube_3,this is a blue wooden block +cube/cube_3,this is a blue cube +cube/cube_3,a picture of a blue cube +cube/cube_3,image of a cube in blue color +cube/cube_3,a rectangular ice cube +cube/cube_3,this is a rectangleshape and blue color +cube/cube_3,this is a blue cube +cube/cube_3,a blue cube is here +cube/cube_3,this is a blue cube +cube/cube_3,a blue square block +cube/cube_3,this is a blue cube this is a blue building block +cube/cube_3,this is a picture of blue coloured square cube +cube/cube_1,this is a picture of yellow coloured square cube +cube/cube_1,this is a cube +cube/cube_1,this is a yellow 3d cube +cube/cube_1,this is a yellow block +cube/cube_1,this is a squareshape and yellowcolor +cube/cube_1,this is a yellow cube +cube/cube_1,this is a yellos cube +cube/cube_1,this is a yellow cube +cube/cube_1,square shaped image of what appears to be butter +cube/cube_1,bright yellow color cube +cube/cube_1,this is a yellow cube +cube/cube_1,the object is a 3d square the object is yellow the object is shaped like a square on all sides the object is a cube +cube/cube_1,this is a yellow square shaped wooden block +cube/cube_1,this is a bright yellow cube shaped object +lime/lime_2,this is a lime +lime/lime_2,this is a green lime +lime/lime_2,this is a chayota +lime/lime_2,this is a green rounded object +lime/lime_2,this is a lime +lime/lime_2,this is a green color fruit +lime/lime_2,here is a lime +lime/lime_2,image of a grape fruit in green color but it could also be a lemon in green color +lime/lime_2,a picture of green coloured fruit +lime/lime_2,this is a cabbage +lime/lime_2,a shiny round lemon lime sitting on a green oval base +lime/lime_2,this is a lime +lime/lime_2,a lime +lime/lime_2,this is a lime this is a green fruit +orange/orange_1,this is an orange +orange/orange_1,this is an orange +orange/orange_1,this is an orange +orange/orange_1,this is an orange +orange/orange_1,an orange orange +orange/orange_1,this is an orange +orange/orange_1,this is an orange +orange/orange_1,this is an orange +orange/orange_1,this is a picture of an orange +orange/orange_1,this is an orange +orange/orange_1,this looks like a grapefruit +orange/orange_1,this is a orange color tamato +orange/orange_1,this is an orange +orange/orange_1,this is an orange +banana/banana_4,this is a plantain +banana/banana_4,this is a yellow banana laying on its side +banana/banana_4,this is a banana lying on its side +banana/banana_4,this is a green banana +banana/banana_4,a green banana +banana/banana_4,this is a banana +banana/banana_4,this is a plaintain it is almost ripe and it is laying on its side +banana/banana_4,this is a banana or plantain +banana/banana_4,this is a banana +banana/banana_4,this is a yellow banana +banana/banana_4,this is a yellow banana +banana/banana_4,this is a banana that is still green as it is not yet ripe +banana/banana_4,this is a green color banana +banana/banana_4,a green banana or plantain with dark spots +orange/orange_2,orange +orange/orange_2,this object is round yellow and waxy +orange/orange_2,this looks like a yellow spherical fruit +orange/orange_2,this is a yellow apple +orange/orange_2,a yellow apple +orange/orange_2,this is an apple +orange/orange_2,this is an orange +orange/orange_2,this is a yellow color tomato +orange/orange_2,it is an orange +orange/orange_2,this is an orange +orange/orange_2,this is a yellow apple +orange/orange_2,this is a lemon +orange/orange_2,this might be an apple +orange/orange_2,this is a yellow lemon +cuboid/cuboid_4,this is a blue block +cuboid/cuboid_4,this is a blue rectangular cube +cuboid/cuboid_4,this is a blue rectangle +cuboid/cuboid_4,a long blue rectangular block +cuboid/cuboid_4,a solid blue cuboid +cuboid/cuboid_4,this is a blue rectangle +cuboid/cuboid_4,this is a blue cuboid +cuboid/cuboid_4,this is a blue color rectangle shape +cuboid/cuboid_4,this is a blue rectangular block with 6 sides +cuboid/cuboid_4,this is a blue rectangular prism +cuboid/cuboid_4,a rectangle is a quadrilateral with four right angles +cuboid/cuboid_4,a blue rectangular shape +cuboid/cuboid_4,this is a blue rectangular shape +cuboid/cuboid_4,this is long blue block +orange/orange_3,this is an orange +orange/orange_3,this is an orange +orange/orange_3,this is an orange +orange/orange_3,this is a picture of an orange +orange/orange_3,this is a navel orange +orange/orange_3,this is an orange +orange/orange_3,a picture of a yellow orange +orange/orange_3,this is a orange +orange/orange_3,this is an orange +orange/orange_3,thi is an orange +orange/orange_3,an orange orange +orange/orange_3,this is a round orange +orange/orange_3,this is an orange +orange/orange_3,this is a orange color orage +banana/banana_2,this is a banana this is a picture of a fruit the picture is of a yellow banana the yellow banana is pictured +banana/banana_2,this is a banana +banana/banana_2,this is a banana +banana/banana_2,banana +banana/banana_2,a ripe yellow banana +banana/banana_2,this is an banana lying on its side +banana/banana_2,a banana on its side +banana/banana_2,this is a yellow banana +banana/banana_2,this is a banana laying on its side +banana/banana_2,this is a yellow banana +banana/banana_2,this is a banana +banana/banana_2,this is a banana lying on its side +banana/banana_2,this is a banana +banana/banana_2,this is a yellow color banana +orange/orange_4,this is a picture of an orange +orange/orange_4,this is an orange +orange/orange_4,this is an orange +orange/orange_4,this is an orange that isnt quite ripe +orange/orange_4,this is an orange +orange/orange_4,this is an orange +orange/orange_4,this is an orange +orange/orange_4,this is an orange +orange/orange_4,this is an orange +orange/orange_4,this is an orange +orange/orange_4,this is a big orange +orange/orange_4,this is an orange +orange/orange_4,an orange orange +cuboid/cuboid_3,this is a red rectangular prism +cuboid/cuboid_3,this is a rectangle that is red +cuboid/cuboid_3,this is a red cube +cuboid/cuboid_3,this is a red rectangular block +cuboid/cuboid_3,this is a red block +cuboid/cuboid_3,this is a red cuboid +cuboid/cuboid_3,this is a red rectangular block +cuboid/cuboid_3,this is a red rectangular cube +cuboid/cuboid_3,this is a red rectangular solid +cuboid/cuboid_3,a long red rectangular block +cuboid/cuboid_3,this is a red rectangle block +cuboid/cuboid_3,this is a red color rectangle shape +cuboid/cuboid_3,this is a red cube it looks like i could be a stick of butter that has been edited in photoshop +cuboid/cuboid_3,the object is red and rectangular and is pictured from several angles +cuboid/cuboid_1,this is a yellow color rectangle shape +cuboid/cuboid_1,this is a stick or yellow marginan +cuboid/cuboid_1,this is a yellow block +cuboid/cuboid_1,a long yellow rectangular block +cuboid/cuboid_1,this is a yellow prism +cuboid/cuboid_1,this is a yellow rectangular box +cuboid/cuboid_1,this is a yellow block +cuboid/cuboid_1,this is a yellow rectangular shaped item +cuboid/cuboid_1,this is a yellow rectangular prism +cuboid/cuboid_1,this is a yellow rectangular block with 6 sides +cuboid/cuboid_1,this is a yellow rectangular solid +cuboid/cuboid_1,this is a yellow rectangular prism +cuboid/cuboid_1,this is a 3d rectangle +cuboid/cuboid_1,this is a yellow rectangular cube +banana/banana_3,this is a banana +banana/banana_3,a ripe yellow banana +banana/banana_3,this is a banana +banana/banana_3,this is a yellow banana lying on its side +banana/banana_3,this is a banana +banana/banana_3,this is a banana +banana/banana_3,this is a banana +banana/banana_3,it is a yellow banana +banana/banana_3,this is a yellow banana +banana/banana_3,this is a yellow ripe banana +banana/banana_3,this is a banana +banana/banana_3,this is a banana +banana/banana_3,this is a banana +banana/banana_3,this is a yellow color banana +cuboid/cuboid_2,this is a green rectangular block with 6 sides +cuboid/cuboid_2,this is a green block of what looks like to be green butter +cuboid/cuboid_2,this is a green rectangular cube +cuboid/cuboid_2,this is a green prism +cuboid/cuboid_2,a long green rectangular block +cuboid/cuboid_2,this is a green cube +cuboid/cuboid_2,this is a green cuboid a rectangular cube +cuboid/cuboid_2,this is a rectangular green cube +cuboid/cuboid_2,this is a green rectangular shape +cuboid/cuboid_2,this is a green rectangular solid +cuboid/cuboid_2,this is a green block +cuboid/cuboid_2,this is a green rectangular block +cuboid/cuboid_2,this is a green color rectangle shape +cuboid/cuboid_2,this is a green rectangular prism +banana/banana_1,a ripe yellow banana +banana/banana_1,this is a yellow banana lying on its side +banana/banana_1,this is a banana +banana/banana_1,this is a banana +banana/banana_1,this is a ripe yellow banana +banana/banana_1,this is a yellow banana +banana/banana_1,this is a banana +banana/banana_1,this is a banana +banana/banana_1,this is a yellow banana +banana/banana_1,a halfripened banana or plantain +banana/banana_1,this is a banana +banana/banana_1,this is a banana +banana/banana_1,this is a banana +banana/banana_1,this is a yellow color banana +tomato/tomato_1,this is a tomato +tomato/tomato_1,this is a red tomato +tomato/tomato_1,this is a red apple +tomato/tomato_1,this looks like a tomato +tomato/tomato_1,this is a red color tomato +tomato/tomato_1,this is a grape tomato +tomato/tomato_1,this is a red roma tomato +tomato/tomato_1,this is a red tomato +tomato/tomato_1,a ripe tomato +tomato/tomato_1,a red roma tomato +tomato/tomato_1,red tomato with no stem +tomato/tomato_1,this is a tomato +tomato/tomato_1,this is a roma tomato +tomato/tomato_1,this is a cherry tomato +corn/corn_4,this is white corn +corn/corn_4,this is a picture of an white corn on cob +corn/corn_4,this is a yellow color sweetcorn +corn/corn_4,this is a white corn cob laying on its side +corn/corn_4,this is an ear of corn +corn/corn_4,this is an ear of corn +corn/corn_4,this is corn on the cob +corn/corn_4,an ear of yellow corn +corn/corn_4,this is an ear of corn +corn/corn_4,this is a piece of corn +corn/corn_4,a yellow corn on the cob laying on its side +corn/corn_4,this is a cob of corn lying on its side +corn/corn_4,this is corn +corn/corn_4,this is a makka alone +tomato/tomato_2,this is a roma tomato +tomato/tomato_2,this is a roma tomato +tomato/tomato_2,this is a red tomato +tomato/tomato_2,this is a red irregularly shaped object with smooth edges +tomato/tomato_2,this is a tomato +tomato/tomato_2,this is a red tomatoq +tomato/tomato_2,this is a grape tomato +tomato/tomato_2,this is a picture of a tomato +tomato/tomato_2,this is red jello laying on its side it is in various shapes +tomato/tomato_2,a red roma tomato +tomato/tomato_2,a picture of a red elongated tomato from different angles +tomato/tomato_2,this is a red roma tomato +tomato/tomato_2,this is a tomato +tomato/tomato_2,this is a red color hybrid tomato +lemon/lemon_4,this is a an orange which is yellow in color +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a yellow color bellpepper +lemon/lemon_4,a yellow lemon +lemon/lemon_4,this object is oblong yellow and fragile +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a yellow lemon +lemon/lemon_4,this is an orange +lemon/lemon_4,this is a lemon lying on its side +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a yellow lemon +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a lemon +tomato/tomato_3,a picture of a tomato +tomato/tomato_3,this is a tomatoe +tomato/tomato_3,this is a picture of a tomato +tomato/tomato_3,this is a red color tomato +tomato/tomato_3,this is a red tomato +tomato/tomato_3,this is a red tomato +tomato/tomato_3,a large red ripe tomato +tomato/tomato_3,this is a picture of a tomato +tomato/tomato_3,this is a red tomato +tomato/tomato_3,this is a tomato +tomato/tomato_3,this is a tomato +tomato/tomato_3,this is a red tomato with a little vine attached +tomato/tomato_3,this is a tomato +tomato/tomato_3,this is a tomato +corn/corn_2,this is a corn cob laying on its side +corn/corn_2,this is an ear of yellow corn +corn/corn_2,this is a piece of corn +corn/corn_2,this is an ear of corn +corn/corn_2,this is corn this is a piece of corn on the cob +corn/corn_2,this is a picture of an white corn on cob +corn/corn_2,this is corn on the cob +corn/corn_2,this is corn on the cob +corn/corn_2,a long yellow corn on the cob laying on its side +corn/corn_2,this is corn on the cob +corn/corn_2,this is a yellow color sweetcorn +corn/corn_2,this is a cob of corn lying on its side +corn/corn_2,a picture of a corn cob +corn/corn_2,this is corn +semicylinder/semicylinder_1,this is a blue bridge shaped block +semicylinder/semicylinder_1,this is a blue semi circle +semicylinder/semicylinder_1,this is a blue block +semicylinder/semicylinder_1,this is a blue arch shaped object +semicylinder/semicylinder_1,a blue toy block +semicylinder/semicylinder_1,it is tasty of sweet +semicylinder/semicylinder_1,this is a three dimensional semi circle shape +semicylinder/semicylinder_1,this is a blue three dimensional object with three flat sides and one spherical side +semicylinder/semicylinder_1,this is a blue arch shaped childrens toy +semicylinder/semicylinder_1,this is a blue brightly colored childs toy +semicylinder/semicylinder_1,a blue wheel sliced in half +semicylinder/semicylinder_1,this is blue color semi cylinder +semicylinder/semicylinder_1,this is a blue geometrical shape it looks like half a cylinder +semicylinder/semicylinder_1,this is an arch shaped blue object +arch/arch_4,this is a red odd shaped item +arch/arch_4,this is a brightly colored childs toy +arch/arch_4,this is an arched shaped brightly red colored childs toy +arch/arch_4,this is a red rectangular cube with a concave shape cut out +arch/arch_4,a red odd shaped block +arch/arch_4,this is a red bridge shaped block +arch/arch_4,this is a red shoe remover it is pictured in different angles +arch/arch_4,this is a red block +arch/arch_4,this is a red arch shaped toy +arch/arch_4,this is a half of a red block with a half circle cut out of it +arch/arch_4,this red object looks like a half pipe when it is laid flat on the surface +arch/arch_4,this is a red block that is flat on one side and has a half circle cut out on the other +arch/arch_4,this is a red color semiarc shape +arch/arch_4,a red model of the place bikers do stunts and tricks +plum/plum_2,red apple +plum/plum_2,this object is red heart shaped and bitter +plum/plum_2,this is a red apple +plum/plum_2,this is a red apple +plum/plum_2,a red apple +plum/plum_2,this is a red apple +plum/plum_2,this looks to be an apple +plum/plum_2,this is red color apple +plum/plum_2,its a red apple +plum/plum_2,this is a red spherical ball +plum/plum_2,this is a deep red apple +plum/plum_2,this is an apple +plum/plum_2,this could be an apple +plum/plum_2,this is a red apple +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is a picture of a green cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,a green cucumber +cucumber/cucumber_4,a green cucumber or zucchini +cucumber/cucumber_4,this is a cucumber laying on its side +cucumber/cucumber_4,this is a green cucumber lying on its side +cucumber/cucumber_4,this is a green color cucumber +cucumber/cucumber_4,this is a green cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,cucumbers are a favorite food of many +cucumber/cucumber_4,this is a courgette +cucumber/cucumber_4,this is a green cucumber +cucumber/cucumber_4,this is a cucumber +plum/plum_3,this is an apple +plum/plum_3,this is a red apple +plum/plum_3,this could be an apple +plum/plum_3,this is a picture of a plum +plum/plum_3,this is a purple plum +plum/plum_3,this is an apple +plum/plum_3,this is a apple +plum/plum_3,this is a apple +plum/plum_3,this is a red apple +plum/plum_3,this is dates +plum/plum_3,a red apple +plum/plum_3,this is a red apple +plum/plum_3,this is a plams +plum/plum_3,this is red color apple +arch/arch_2,this is a picture of a shape this is a picture of a blue rectangular shape with a half circle cut out of it +arch/arch_2,this is a blue arch shaped object +arch/arch_2,this is a blue block +arch/arch_2,mold +arch/arch_2,a blue bridge shaped toy block +arch/arch_2,this is a cut in half block with a half circle cut out in it +arch/arch_2,a blue odd shaped device +arch/arch_2,this is a blue ramp +arch/arch_2,this is a blue block +arch/arch_2,this is a blue rectangular cube with a concave shape cut out +arch/arch_2,this is a blue block shaped like and arch or bridge +arch/arch_2,this blue object looks like a half pipe when it is laid flat on the surface +arch/arch_2,this is a blue bridge shaped block +arch/arch_2,this is blue color semi arc +plum/plum_4,this appears to be a red circular food perhaps an apple or radish +plum/plum_4,this is a red potato +plum/plum_4,this is a picture of a red onion +plum/plum_4,this is an apple +plum/plum_4,this is a red apple +plum/plum_4,this is an apple +plum/plum_4,this looks like an apple +plum/plum_4,this is an apple +plum/plum_4,this is a red spherical shape +plum/plum_4,this could be an apple +plum/plum_4,this is a red plum +plum/plum_4,this is an apple +plum/plum_4,a red apple +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a zucchini +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a cuccomber laying on its side +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a green cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a green cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,a green cucumber laying on its side +cucumber/cucumber_3,this is a green cucumber laying on its side +cucumber/cucumber_3,this is a green cucumber +cucumber/cucumber_3,this is a green cucumber its a long cucumber this looks like its fresh +cucumber/cucumber_3,the object is long and green resembling a pickle or cucumber +cucumber/cucumber_1,this is a green cucumber +cucumber/cucumber_1,this is a green cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,a green cucumber laying on its side +cucumber/cucumber_1,a picture of a cucumber +cucumber/cucumber_1,this is a green cucumber +cucumber/cucumber_1,this is a green cucumber laying on its side +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,this is a green cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,this is a green cucumber +arch/arch_3,this is a rectangular cube with a concave shape cut out +arch/arch_3,a green odd shaped toy block +arch/arch_3,this is a green crescent shaped object +arch/arch_3,this is a green object that looks like a half pipe when it is laid flat +arch/arch_3,this is a green cut out +arch/arch_3,this is a wooden block it has a semicircle cut out of it +arch/arch_3,this is a green bridge shaped block +arch/arch_3,a metal with arch shape +arch/arch_3,this is a green arch +arch/arch_3,this is a green object that has a half cylinder cut out of it +arch/arch_3,this is an arched shaped brightly green colored childs toy +arch/arch_3,this could be a block +arch/arch_3,this is a trunk +arch/arch_3,this is a green color semiarc shape +cucumber/cucumber_2,this is a green cucumber +cucumber/cucumber_2,this is a green cucumber laying on its side +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is a cucumber on its side +cucumber/cucumber_2,a green cucumber laying on its side +cucumber/cucumber_2,this is a green cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is a green cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is a green color cucumber +cucumber/cucumber_2,this is a cucumber +arch/arch_1,a yellow bridge shaped toy block +arch/arch_1,this yellow object looks like a half pipe when its flat side is on the surface +arch/arch_1,this looks like a mold for what a wheel shaped item could be made from and its yellow +arch/arch_1,this is a arch shaped colorful toy +arch/arch_1,this is a yellow block with a half circle cut out of its side +arch/arch_1,this is a bright yellow shape it is a rectangular block with a half circle sliced out of it +arch/arch_1,this is a yellow arch shaped object +arch/arch_1,this is a yellow bridge shaped block +arch/arch_1,this is a yellow rectangular cube with a concave shape cut out +arch/arch_1,a yellow model of the place cyclists do stunts and tricks +arch/arch_1,this is a yellow ushapped plastic object +arch/arch_1,this is an archshaped brightly colored childs toy +arch/arch_1,this is a yellow block +arch/arch_1,this is yellow color semi arc +triangle/triangle_1,this is a red triangular prism +triangle/triangle_1,this is a red wedge +triangle/triangle_1,this is a red wedge +triangle/triangle_1,this is a red triangle +triangle/triangle_1,this is a red color triangle shape +triangle/triangle_1,this is a red block +triangle/triangle_1,this is a brightly colored childs toy +triangle/triangle_1,this is a red wooden wedge +triangle/triangle_1,a red triangular shaped block +triangle/triangle_1,a red triangular block laying on its side +triangle/triangle_1,red triangular pyramid shaped block +triangle/triangle_1,this is a red wedge block +triangle/triangle_1,this is a red right triangular cube +triangle/triangle_1,this is a cheese wedge +cube/cube_4,this is a red cube +cube/cube_4,this is a picture of a red block +cube/cube_4,this is a red color square shape +cube/cube_4,this is a brightly colored childs toy +cube/cube_4,this is a cube +cube/cube_4,this is a red cube +cube/cube_4,this looks like a red cube +cube/cube_4,this is a red cube +cube/cube_4,this is a red block +cube/cube_4,this is a red bridge shaped block +cube/cube_4,a red square block +cube/cube_4,this is a red cube +cube/cube_4,this is a red cube +cube/cube_4,this is jaggery +triangle/triangle_2,this is a geometric shape of a right triangle +triangle/triangle_2,this is a yellow 3d triangle +triangle/triangle_2,this is a yellow wedge this yellow wedge resembles a ramp +triangle/triangle_2,this is a yellow wedge shape similar to a doorstop +triangle/triangle_2,this is a yellow wedge +triangle/triangle_2,this is a yellow wedge +triangle/triangle_2,this could be a wedge of cheese +triangle/triangle_2,this is a picture of a yellow wedge +triangle/triangle_2,this is a picture of a wedge of cheese it is cut from different angles +triangle/triangle_2,a yellow triangular toy block +triangle/triangle_2,a yellow piece of cheese or a piece of sponge laying on its side +triangle/triangle_2,this is a brightly colored childs toy +triangle/triangle_2,this is a triangular prism shaped yellow colored childs toy +triangle/triangle_2,this is a yellow color triangle shape +lime/lime_4,this is a green blub +lime/lime_4,this is a green lime +lime/lime_4,this is a green colorchow chow +lime/lime_4,a green lime +lime/lime_4,this object is green and shaped like an awkward clam shell +lime/lime_4,this is a lime +lime/lime_4,this is a green lime +lime/lime_4,this is a lime +lime/lime_4,this is a lime +lime/lime_4,this is a lime +lime/lime_4,this is a green lime +lime/lime_4,this is a lime +lime/lime_4,this is a lime +lime/lime_4,this is a green bulb shaped fruit or vegetable it may be a brussels sprout +triangle/triangle_3,this is a green pyramid +triangle/triangle_3,this is a green wedge +triangle/triangle_3,this is an triangular prism shaped brightly green colored childs toy +triangle/triangle_3,this is a green color triangle shape +triangle/triangle_3,this is a green triangle +triangle/triangle_3,this is a brightly colored childs toy +triangle/triangle_3,a green triangular block laying on its side +triangle/triangle_3,this is a picture of a green wedge +triangle/triangle_3,this is a green wedge +triangle/triangle_3,this is a green wedge shaped block +triangle/triangle_3,this is a door stop +triangle/triangle_3,this is a green wedge standing up on the end +triangle/triangle_3,this is a green block +triangle/triangle_3,this is a green geometric shape of a right triangle +cube/cube_2,this is a brightly colored childs toy +cube/cube_2,this is a green cube +cube/cube_2,this is a green block +cube/cube_2,this is a green block +cube/cube_2,this is a picture of a green block +cube/cube_2,this is a green cube +cube/cube_2,this is a green square shaped toy +cube/cube_2,a green square block +cube/cube_2,this is a green cube +cube/cube_2,this is a green color square shape +cube/cube_2,this is a green cube +cube/cube_2,this is a green cube +cube/cube_2,this is a green cube +potato/potato_1,this is a red potato +potato/potato_1,this is a red potato +potato/potato_1,this is a potato +potato/potato_1,this is a potato +potato/potato_1,a red potato +potato/potato_1,it is brown colour biscut +potato/potato_1,this is a red potato +potato/potato_1,this is a red potato +potato/potato_1,this is a mango +potato/potato_1,this is a potato +potato/potato_1,this is a red potato +potato/potato_1,this is a red color apple +potato/potato_1,this looks like a red potato +potato/potato_1,this is a red spherical object +cabbage/cabbage_4,this is a purple cabbage +cabbage/cabbage_4,this is a purple cabbage laying on its side +cabbage/cabbage_4,this is a red cabbage +cabbage/cabbage_4,this is red cabbage +cabbage/cabbage_4,an overly ripe purple eggplant +cabbage/cabbage_4,this is a purple cabbage +cabbage/cabbage_4,this is an eggplant it is purple and is shown from different angles +cabbage/cabbage_4,this is a head of purple cabbage +cabbage/cabbage_4,this is a red cabbage +cabbage/cabbage_4,this is a purple eggplant +cabbage/cabbage_4,this is a red cabbage +cabbage/cabbage_4,this is a red cabbage +cabbage/cabbage_4,this is a purple color cabbage +cabbage/cabbage_4,a spherical shriveled eggplant +potato/potato_2,apple +potato/potato_2,this object is spherical and has an indentation +potato/potato_2,this is a red potato +potato/potato_2,this is a red potato +potato/potato_2,a red potato +potato/potato_2,this is a red potato +potato/potato_2,this is a red potato +potato/potato_2,this is a red color apple +potato/potato_2,it is a redishbrown potatoe +potato/potato_2,this is a potato +potato/potato_2,this seems to be a peach +potato/potato_2,this is a red potato +potato/potato_2,this is a potato +potato/potato_2,this is a potato +cylinder/cylinder_4,this is a green block +cylinder/cylinder_4,this is a green cylinder +cylinder/cylinder_4,this is a green cylinder +cylinder/cylinder_4,a long green cylinder block +cylinder/cylinder_4,a green cylindrical object that isnt hollow +cylinder/cylinder_4,this is a green cylinder +cylinder/cylinder_4,this is a green cylinder +cylinder/cylinder_4,this is a green color cylinder shape +cylinder/cylinder_4,this is a green rod +cylinder/cylinder_4,this is a green cylinder +cylinder/cylinder_4,the radius of the cylinder is the radius of a base +cylinder/cylinder_4,this is a green cylinder +cylinder/cylinder_4,this is a green cylinder +cylinder/cylinder_4,this is a green cylinder +potato/potato_3,this is a potato +potato/potato_3,this is a potato +potato/potato_3,this is a potato +potato/potato_3,this is a picture of a potato it has not been eaten +potato/potato_3,this is a potato that is tan in color +potato/potato_3,this is a potato +potato/potato_3,this is a tomato +potato/potato_3,this is a potato +potato/potato_3,this is a potato +potato/potato_3,this is a potato +potato/potato_3,a large peeled potato +potato/potato_3,this is a potato on its side +potato/potato_3,this is a potato +potato/potato_3,this is a shapeless object cream color +cabbage/cabbage_2,this is a picture of a cabbage +cabbage/cabbage_2,this is a cabbage +cabbage/cabbage_2,this is a head of purple cabbage +cabbage/cabbage_2,sphere +cabbage/cabbage_2,an unpeeled purple eggplant +cabbage/cabbage_2,this is a head of purple cabbage +cabbage/cabbage_2,this is a purple cabbage +cabbage/cabbage_2,this is a purple cabbage laying on its side +cabbage/cabbage_2,this is a red cabbage +cabbage/cabbage_2,this is a picture of red cabbage +cabbage/cabbage_2,this is a head of purple cabbage +cabbage/cabbage_2,this is a red cabbage +cabbage/cabbage_2,this is a purple cabbage +cabbage/cabbage_2,this is a purple color cabbage +potato/potato_4,this is a white potato +potato/potato_4,this is a potato +potato/potato_4,this is a picture of a potato +potato/potato_4,this is a potato +potato/potato_4,a potato laying on its side +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,this is a yellow lemon +potato/potato_4,this is a potato +potato/potato_4,a peeled potato +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,this is a red block +cylinder/cylinder_2,this is a red block +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,a long red cylinder block +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,this is a red color cylinder shape +cylinder/cylinder_2,this is a red cylinder object +cylinder/cylinder_2,the object is long and spherical and is a maroon color +cylinder/cylinder_1,this is a yellow color cylinder shape +cylinder/cylinder_1,this is yellow round cheese +cylinder/cylinder_1,this is a yellow block +cylinder/cylinder_1,a long yellow cylinder block +cylinder/cylinder_1,the picture appears to be a cylinder +cylinder/cylinder_1,this is a green cylinder whose borders are not precise +cylinder/cylinder_1,this is a brightly colored childs toy +cylinder/cylinder_1,this is a sphere shaped item +cylinder/cylinder_1,this is a yellow cylinder +cylinder/cylinder_1,this is a yellow rod +cylinder/cylinder_1,this is a yellow cylinder +cylinder/cylinder_1,this is a yellow cylinder +cylinder/cylinder_1,this is a 3d cylinder +cylinder/cylinder_1,this is a yellow cylinder +cabbage/cabbage_3,this is red cabbage +cabbage/cabbage_3,an unpeeled purple eggplant +cabbage/cabbage_3,this is a purple cabbage +cabbage/cabbage_3,this is a red cabbage +cabbage/cabbage_3,this is red cabbage +cabbage/cabbage_3,this is a red cabbage +cabbage/cabbage_3,this is a purple cabbage +cabbage/cabbage_3,this is a purple cabbage +cabbage/cabbage_3,this is a purple head of cabbage +cabbage/cabbage_3,this looks like purple cabbage +cabbage/cabbage_3,this is a red cabbage +cabbage/cabbage_3,this is purple cabbage +cabbage/cabbage_3,a purple cabbage +cabbage/cabbage_3,this is a purple color cabbage +cylinder/cylinder_3,this is a blue rod +cylinder/cylinder_3,this is a blue column that is laying on its side +cylinder/cylinder_3,this is a blue cylinder +cylinder/cylinder_3,this is a blue cylinder +cylinder/cylinder_3,a long blue cylinder block +cylinder/cylinder_3,this is a blue cylinder +cylinder/cylinder_3,a picture of a blue cylinder +cylinder/cylinder_3,this is a blue cylinder +cylinder/cylinder_3,this is a blue cylinder +cylinder/cylinder_3,this is a blue block +cylinder/cylinder_3,this is a blue cylinder +cylinder/cylinder_3,this is a blue color cylinder shape +cylinder/cylinder_3,this is a blue cylinder +cabbage/cabbage_1,an overly ripe purple eggplant +cabbage/cabbage_1,this is a red cabbage +cabbage/cabbage_1,this is a purple cabbage +cabbage/cabbage_1,this is a red cabbage +cabbage/cabbage_1,this is a cabbage lying on its side +cabbage/cabbage_1,this is purple cabbage +cabbage/cabbage_1,this is a cabbage +cabbage/cabbage_1,this is a purple cabbage +cabbage/cabbage_1,this is a picture of red cabbage +cabbage/cabbage_1,a spherical shriveled eggplant +cabbage/cabbage_1,this is a picture of a red cabbage +cabbage/cabbage_1,this is red cabbage +cabbage/cabbage_1,this is a head of purple cabbage +cabbage/cabbage_1,this is a purple color cabbage +tomato/tomato_4,this is a tomato +tomato/tomato_4,this is a red tomato with a green stem on top +tomato/tomato_4,this is an orangish red tomato +tomato/tomato_4,this looks like a tomato +tomato/tomato_4,this is a red color tomato +tomato/tomato_4,this is a tomato +tomato/tomato_4,this is a red tomato +tomato/tomato_4,a halfripe tomato that is red and yellow in colour +tomato/tomato_4,round unripe yellow tomato +tomato/tomato_4,an large unripened tomato +tomato/tomato_4,orange and yellow tomato with a green stem +tomato/tomato_4,this is a tomato +tomato/tomato_4,this is a red tomato +tomato/tomato_4,this is a tomato +lemon/lemon_3,this is a lemon +lemon/lemon_3,this is a picture of a lemon it has not been eaten +lemon/lemon_3,this is a yellow color oval shape +lemon/lemon_3,this is a yellow lemon +lemon/lemon_3,this is a lemon +lemon/lemon_3,this isva yellow lemon +lemon/lemon_3,this is a lemon +lemon/lemon_3,this is a lemon +lemon/lemon_3,this is a lemon +lemon/lemon_3,this is a lemon +lemon/lemon_3,a yellow lemon laying on its side +lemon/lemon_3,this is a yellow lemon +lemon/lemon_3,this is a lemon +lemon/lemon_3,this is a lemon +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a ripe lemon that is yellow +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a picture of a lemon +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a picture of a lemon it has not been eaten +lemon/lemon_1,this is a crab shell it is partially broken in some of the pictures +lemon/lemon_1,a yellow lemon laying on its side +lemon/lemon_1,a yellow lemon with a ted and white label on it +lemon/lemon_1,this is a yellow lemon +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a yellow color oval shape +corn/corn_3,this is an ear of corn +corn/corn_3,this is a corn on a cob +corn/corn_3,this is a yellow color sweet corn +corn/corn_3,a yellow corn cob +corn/corn_3,this object has many small pieces that make up the whole +corn/corn_3,this is an ear of corn +corn/corn_3,this is a cob of corn lying on its side +corn/corn_3,this is corn +corn/corn_3,this is an ear of corn +corn/corn_3,this is a white corn cob laying on its side +corn/corn_3,this is corn on the cob +corn/corn_3,this is a piece of corn +corn/corn_3,this is corn +corn/corn_1,this is a corn on a cob +corn/corn_1,this is white corn +corn/corn_1,this is corn +corn/corn_1,this is a yellow color sweet corn +corn/corn_1,this is an ear of corn +corn/corn_1,this is a corn cob laying on its side +corn/corn_1,a long yellow corn cob +corn/corn_1,this is a picture of a corn cob it has not been eaten +corn/corn_1,this is a cob of corn lying on its side +corn/corn_1,this is a piece of corn +corn/corn_1,this is corn on the cob +corn/corn_1,this is an ear of yellow corn +corn/corn_1,this is an ear of corn +corn/corn_1,this is corn on the cob +lemon/lemon_2,this is a yellow lemon +lemon/lemon_2,this is a yellow lemon +lemon/lemon_2,this is a lemon +lemon/lemon_2,this is a lemon +lemon/lemon_2,this is a picture of a lemon it has not been eaten +lemon/lemon_2,this is a lemon +lemon/lemon_2,this is a lemon +lemon/lemon_2,a yellow lemon laying on its side +lemon/lemon_2,this is a lemon +lemon/lemon_2,this is a yellow colorbellpepper +lemon/lemon_2,this is a yellow lemon +lemon/lemon_2,the picture appears to be a lemon +lemon/lemon_2,this is a lemon +plum/plum_1,this is an apple +plum/plum_1,this is an apple +plum/plum_1,this might be an apple +plum/plum_1,this is a tomato +plum/plum_1,a maroon plum +plum/plum_1,there are colourfull balloons +plum/plum_1,this is a red apple +plum/plum_1,this is a red apple +plum/plum_1,this is an apple +plum/plum_1,this is a red spherical ball +plum/plum_1,this is an apple +plum/plum_1,this is a red color apple +plum/plum_1,this looks like a red spherical shaped object +plum/plum_1,this is a red apple +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is an orange carrot +carrot/carrot_4,a long thin carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a carrot it is rather long and is slightly bent +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is an orange carrot +carrot/carrot_4,this is an orange carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a orange color carrot +carrot/carrot_4,a frosty looking carrot +semicylinder/semicylinder_2,cube +semicylinder/semicylinder_2,this object is red and white with a curved top +semicylinder/semicylinder_2,this looks like a red half cylinder +semicylinder/semicylinder_2,this is a red three dimensional object with a flat bottom and a curved top +semicylinder/semicylinder_2,a red oval shaped toy block +semicylinder/semicylinder_2,this is a red bridge shaped block +semicylinder/semicylinder_2,this looks to be a red shape with a rounded top and a flat bottom +semicylinder/semicylinder_2,this is a red color semi shape +semicylinder/semicylinder_2,its a bright red circle object +semicylinder/semicylinder_2,this is a bright red colored childs toy +semicylinder/semicylinder_2,this is some sort of semi circle shape it is red +semicylinder/semicylinder_2,this is a red half circle +semicylinder/semicylinder_2,this is a red block +semicylinder/semicylinder_2,this is half of a red rod +eggplant/eggplant_4,this is an eggplant +eggplant/eggplant_4,this is an aubergine commonly known as eggplant +eggplant/eggplant_4,this is an eggplant +eggplant/eggplant_4,a purple eggplant laying on its side +eggplant/eggplant_4,a dark purple eggplant resting on a surface +eggplant/eggplant_4,this is an eggplant laying on its side +eggplant/eggplant_4,this is a purple eggplant laid on its side +eggplant/eggplant_4,this is a purple color eggplanet +eggplant/eggplant_4,this is an eggplant +eggplant/eggplant_4,this is an eggplant +eggplant/eggplant_4,brinjal is widely used in cooking +eggplant/eggplant_4,this is an eggplant +eggplant/eggplant_4,this is an eggplant +eggplant/eggplant_4,this is an eggplant +semicylinder/semicylinder_3,this is a yellow crescent shaped block +semicylinder/semicylinder_3,this is a yellow three dimensional object with one flat side and one spherical side +semicylinder/semicylinder_3,this is a yellow block +semicylinder/semicylinder_3,this is a picture of a hemisphere shaped object it is yellow and has four sides +semicylinder/semicylinder_3,this is a yellow wheel sliced in half +semicylinder/semicylinder_3,this is a butter +semicylinder/semicylinder_3,this is a sponge +semicylinder/semicylinder_3,this is a yellow geometrical shape a half cylinder +semicylinder/semicylinder_3,this is a cheese +semicylinder/semicylinder_3,a yellow half oval shaped toy block +semicylinder/semicylinder_3,this is a yellow semicircular wood block +semicylinder/semicylinder_3,a round yellow block +semicylinder/semicylinder_3,this is semicircle yellow color +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,carrots +carrot/carrot_2,a long thick carrot +carrot/carrot_2,this is a orange carrot laying on its side +carrot/carrot_2,this is an orange carrot +carrot/carrot_2,this is a carrot laying down +carrot/carrot_2,this is a picture of an orange carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is an orange carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,thus is a orange color carrot +semicylinder/semicylinder_4,this is a picture of a 3d green half circle +semicylinder/semicylinder_4,this is a green three dimensional object with a flat side and a curved side +semicylinder/semicylinder_4,this is a picture of a green arch shaped item +semicylinder/semicylinder_4,this is a green semi circle +semicylinder/semicylinder_4,this is a green sphere split in half +semicylinder/semicylinder_4,this is a green semicircle wood block +semicylinder/semicylinder_4,this is a circular green sphere sliced in half +semicylinder/semicylinder_4,this is a green bridge shaped block +semicylinder/semicylinder_4,this is a green half cylinder +semicylinder/semicylinder_4,this is a green block +semicylinder/semicylinder_4,this is a green half cut circle +semicylinder/semicylinder_4,this is a semicircle wooden block +semicylinder/semicylinder_4,a green half oval shaped toy block +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,this is a picture of an eggplant +eggplant/eggplant_3,this is an eggplant laying on its side +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,this is a purple eggplant lying on its side +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,this is an aubergine or commonly known as an eggplant +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,a purple eggplant laying on its side +eggplant/eggplant_3,this is an eggplant laying on its side +eggplant/eggplant_3,this is a purple color eggplanet +eggplant/eggplant_3,this is an eggplant looks like it is a fresh eggplant just cut from the plant +eggplant/eggplant_3,an eggplant laying on its side pictured in different angles +eggplant/eggplant_1,this is a purple color eggplanet +eggplant/eggplant_1,this is a purple egg plant +eggplant/eggplant_1,this is an eggplant +eggplant/eggplant_1,a purple eggplant laying on its side +eggplant/eggplant_1,this is an eggplant lying on its side +eggplant/eggplant_1,this is a purple eggplant lying on its side +eggplant/eggplant_1,this is an eggplant laying on its side +eggplant/eggplant_1,this is an eggplant +eggplant/eggplant_1,this is an eggplant lying on its side +eggplant/eggplant_1,this is an eggplant +eggplant/eggplant_1,this is an eggplant +eggplant/eggplant_1,this is an eggplant +eggplant/eggplant_1,this is an eggplant +eggplant/eggplant_1,this is an aubergine or commonly known as an eggplant +carrot/carrot_3,this is a carrot +carrot/carrot_3,a long thick carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a orange carrot +carrot/carrot_3,this is carrots +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,it is a long carrot +carrot/carrot_3,this is an orange carrot +carrot/carrot_3,this is an unpeeled carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a orange color carrot +eggplant/eggplant_2,this is an eggplant +eggplant/eggplant_2,this is a purple eggplant with a green leaf attached to the top +eggplant/eggplant_2,this is an eggplant +eggplant/eggplant_2,this is an eggplant laying on its side +eggplant/eggplant_2,a purple eggplant laying on its side +eggplant/eggplant_2,this is a purple eggplant laid on its side +eggplant/eggplant_2,this is an eggplant +eggplant/eggplant_2,this is an eggplant +eggplant/eggplant_2,this is an eggplant +eggplant/eggplant_2,this is an eggplant +eggplant/eggplant_2,this is an eggplant +eggplant/eggplant_2,this is a purple color eggplanet +eggplant/eggplant_2,this is an eggplant +carrot/carrot_1,a long thick carrot +carrot/carrot_1,this is an orange carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is an orange carrot +carrot/carrot_1,this is an orange carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is an orange carrot +carrot/carrot_1,a frosty looking carrot +carrot/carrot_1,this is a picture of a carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a orange color carrot +triangle/triangle_4,this is a blue triangular prism +triangle/triangle_4,this is a blue wedge +triangle/triangle_4,this is a blue wedge +triangle/triangle_4,this looks like a blue triangle +triangle/triangle_4,this is a blue color triangle shape +triangle/triangle_4,this is a blue block +triangle/triangle_4,this is a brightly colored childs toy +triangle/triangle_4,a blue wooden wedge +triangle/triangle_4,triangular blue block +triangle/triangle_4,a blue rectangular block laying its side +triangle/triangle_4,blue triangular pyramid shaped block +triangle/triangle_4,this is a blue wedge shaped block +triangle/triangle_4,this is a blue right triangular cube +triangle/triangle_4,this is a door stop +lime/lime_3,this looks like a lime +lime/lime_3,this is a lime +lime/lime_3,this is a green color chow chow +lime/lime_3,this is a green lime +lime/lime_3,this is a green blub +lime/lime_3,this is a green bulb +lime/lime_3,this looks like a green spherical shaped object +lime/lime_3,this is a lime +lime/lime_3,this is a lime +lime/lime_3,this is a lime +lime/lime_3,a green lime +lime/lime_3,this is a green lime +lime/lime_3,this is a lime +lime/lime_3,this is koyya +lime/lime_1,this is a lime +lime/lime_1,this is a lime +lime/lime_1,this is a lime +lime/lime_1,this is a lime +lime/lime_1,this is a lime +lime/lime_1,this is a picture of a lime +lime/lime_1,this is a lime +lime/lime_1,this is a lime +lime/lime_1,this is formed mask it is being formed in different stages it is used to cover ones head in disguise +lime/lime_1,a green lime +lime/lime_1,a picture of a green lime or some other citrus +lime/lime_1,this is a green lime +lime/lime_1,this is a lime +lime/lime_1,this is a green color chow chow +cube/cube_3,this is a blue cube +cube/cube_3,this is a blue cube +cube/cube_3,this is a rectangle shape blue color +cube/cube_3,a blue square block +cube/cube_3,this object is shaped like a cube and the color blue +cube/cube_3,this is a blue block +cube/cube_3,this is a blue cube +cube/cube_3,this is a blue colored cube +cube/cube_3,this is a blue cube +cube/cube_3,this is a brightly colored childs toy +cube/cube_3,this is a blue cube +cube/cube_3,this is a blue rectangular block +cube/cube_3,this is a blue cube shaped object +cube/cube_1,this is a green cube +cube/cube_1,this is a bright neon yellow square block +cube/cube_1,this is a cubed shaped brightly yellow colored childs toy +cube/cube_1,this is a yellow color square shape +cube/cube_1,this is a yellow cube +cube/cube_1,this is a brightly colored childs toy +cube/cube_1,a yellow square block +cube/cube_1,this is a picture of a cube it is yellow and has ssi sides +cube/cube_1,this is a yellow cube +cube/cube_1,this is a yellow block +cube/cube_1,this is a stick of butter +cube/cube_1,this is a block which is yellow in color +cube/cube_1,this is a yellow block +cube/cube_1,this is a yellow cube +lime/lime_2,this is a green lime +lime/lime_2,this appears to be a green lime +lime/lime_2,this is a lime +lime/lime_2,this is a lime +lime/lime_2,this is a lime +lime/lime_2,this is a lime +lime/lime_2,this is a lime +lime/lime_2,a green lime +lime/lime_2,this is a lime +lime/lime_2,this is a green color chow chow +lime/lime_2,this is a green lime +lime/lime_2,this is a lime on its side +lime/lime_2,this is a lime +orange/orange_1,an orange orange +orange/orange_1,this is a tomato +orange/orange_1,this is an orange +orange/orange_1,this is a red color tomato +orange/orange_1,this is a orange +orange/orange_1,a picture of a red tomato +orange/orange_1,this is a orange it is difficult to determine exactly what variety of orange this is a picture of one photo of the orange shows discoloration which could be the orange is rotten +orange/orange_1,this is a mandarine +orange/orange_1,a round orange +orange/orange_1,this is a mango +orange/orange_1,this is an orange citrus fruit +orange/orange_1,this is a orange +orange/orange_1,this is an orange +orange/orange_1,this is an orange +banana/banana_4,this is a banana +banana/banana_4,this is a banana +banana/banana_4,a picture is a green banana +banana/banana_4,this is a banana +banana/banana_4,this is a yellow color banana +banana/banana_4,this is a banana +banana/banana_4,a picture of a plantation +banana/banana_4,a picture of a banana this is a dark yellow banana laying on its side +banana/banana_4,this is a banana +banana/banana_4,this is a yellow bananna laying on its side +banana/banana_4,this is a banana +banana/banana_4,this is a green banana +banana/banana_4,this is a green banana +banana/banana_4,this is an overripe banana +orange/orange_2,this is a yellow graipfruit +orange/orange_2,this is an orange +orange/orange_2,this is a lemon +orange/orange_2,this is a round yellow fruit +orange/orange_2,this is an orange +orange/orange_2,this is a yellow spherical object this is a lemon +orange/orange_2,this is a picture of an orange +orange/orange_2,this fruit is called an orange +orange/orange_2,this is a yellow plum this is a plum this is a picture of a yellow plum shot at different angles +orange/orange_2,this is a orange color orage +orange/orange_2,this is a yellow orange +orange/orange_2,this object appears to be a lightly colored orange +orange/orange_2,this is a yellow apple +orange/orange_2,this object is a yellow apple with the bottom facing up +cuboid/cuboid_4,a long blue rectangular block +cuboid/cuboid_4,this is a rectangular blue wedge +cuboid/cuboid_4,this is a blue color rectangle shape +cuboid/cuboid_4,this is a clay mold +cuboid/cuboid_4,this is a blue rectangular prism +cuboid/cuboid_4,this is a blue brickshaped object +cuboid/cuboid_4,this is a blue play block +cuboid/cuboid_4,this is a rectangular prism +cuboid/cuboid_4,this is a blue rectangle +cuboid/cuboid_4,that is a blue cuboid +cuboid/cuboid_4,this is a blue 3d object that looks like a rectangle +cuboid/cuboid_4,this is a blue rectangular prism +cuboid/cuboid_4,this is a blue wooden block +cuboid/cuboid_4,this is a blue colored rectangular prism childs toy +orange/orange_3,this is an orange +orange/orange_3,this is an orange +orange/orange_3,this is a orange +orange/orange_3,this is an orange it is a fruit that you peel +orange/orange_3,this is an orange +orange/orange_3,this is a medium sized orange +orange/orange_3,this is a picture of an orange fruit +orange/orange_3,picture is orange +orange/orange_3,this is an orange +orange/orange_3,this is a orange color orage +orange/orange_3,this is an orange the orange is round in shape and orange in colour +orange/orange_3,this is an orange citrus fruit +orange/orange_3,this is an orange +orange/orange_3,this is an orange +banana/banana_2,this is a banana +banana/banana_2,this is a ripe banana +banana/banana_2,a ripe yellow banana +banana/banana_2,this is a banana +banana/banana_2,this is a banana lying on its side +banana/banana_2,this is a yellow banana +banana/banana_2,this is a green with yellow banana +banana/banana_2,this is a banana +banana/banana_2,this is a yellow banana it is a fruit that you peel +banana/banana_2,this is a banana +banana/banana_2,this is a banana +banana/banana_2,this is a banana +banana/banana_2,this is a yellow color banana +banana/banana_2,this is a banana +orange/orange_4,this is an orange +orange/orange_4,this is a fruit called an orange +orange/orange_4,this is a an orange +orange/orange_4,this is a lemon +orange/orange_4,an orange orange +orange/orange_4,this is a navel orange it is a fruit +orange/orange_4,this is an orange +orange/orange_4,this is a orange color orage +orange/orange_4,this is a lemon +orange/orange_4,this is a orange +orange/orange_4,this is an orange +orange/orange_4,this is an orange +orange/orange_4,this is a orange +orange/orange_4,this is a green and orange citrus fruit +cuboid/cuboid_3,this is a red parallelepiped play block +cuboid/cuboid_3,a picture of a red rectangular cube +cuboid/cuboid_3,this is a red block +cuboid/cuboid_3,image is a cuboid +cuboid/cuboid_3,this is a red rectangular prism it is a long block the block is red +cuboid/cuboid_3,this is a red childs toy block +cuboid/cuboid_3,this is a red rectangular object +cuboid/cuboid_3,a red rectangular +cuboid/cuboid_3,this is a cuboid +cuboid/cuboid_3,this is a red color rectangle shape +cuboid/cuboid_3,this is a red rectangle +cuboid/cuboid_3,this is a red rectangular prism +cuboid/cuboid_3,a picture of a red colored cube shape +cuboid/cuboid_3,this is a red block this is a long red block or brick +cuboid/cuboid_1,this is a yellow rectangular prism +cuboid/cuboid_1,this is a yellow rectangular 3d shape +cuboid/cuboid_1,a picture of a stick of butter +cuboid/cuboid_1,this is a small yellow rectangular shaped block a yellow block shaped like a rectangle +cuboid/cuboid_1,this is a bright yellow rectangular prism +cuboid/cuboid_1,this is a toy yellow rectangle block +cuboid/cuboid_1,this is a stick of butter +cuboid/cuboid_1,this is a yellow rectangular prism +cuboid/cuboid_1,a rectangular yellow object +cuboid/cuboid_1,this is a yellow wooden block +cuboid/cuboid_1,a cuboid shaped brightly colored +cuboid/cuboid_1,this is a yellow color rectangle shape +cuboid/cuboid_1,this is a yellow brick +cuboid/cuboid_1,this is a yellow rectangular prism +banana/banana_3,this is a green banana +banana/banana_3,this is a yellow banana +banana/banana_3,this is a banana +banana/banana_3,this is a banana +banana/banana_3,this is a banana +banana/banana_3,this is a yellow bananna laying on its side +banana/banana_3,this is a banana a picture of a ripe banana this is a yellow banana +banana/banana_3,this object appears to be a medium sized yellow banana +banana/banana_3,this is a banana +banana/banana_3,this is a ripe yellow banana +banana/banana_3,this is a yellow color banana +banana/banana_3,banana +banana/banana_3,this is a yellow banana +banana/banana_3,this is a ripe banana +cuboid/cuboid_2,green rectangle +cuboid/cuboid_2,this is a green rectangle +cuboid/cuboid_2,this is a green rectangular prism +cuboid/cuboid_2,this is a green block +cuboid/cuboid_2,this is a green rectangle +cuboid/cuboid_2,this is a green cuboid +cuboid/cuboid_2,this is a large sized green block this is a picture of a green rectangular shaped block +cuboid/cuboid_2,this is a green rectangular block +cuboid/cuboid_2,this is a rectangular green wedge +cuboid/cuboid_2,this is a green color rectangle shape +cuboid/cuboid_2,this is a green wooden block +cuboid/cuboid_2,a beautifully colored green long rectangular object which is solid +cuboid/cuboid_2,this is a parallelepiped shaped green play block +cuboid/cuboid_2,this is a green rectangular shape +banana/banana_1,this is a banana +banana/banana_1,this is a banana it is yellow +banana/banana_1,this is a yellow banana +banana/banana_1,a peeled banana on its side +banana/banana_1,this is a banana this is a bright yellow banana this is an unpeeled banana +banana/banana_1,a picture is a yellow banana +banana/banana_1,this is a banana +banana/banana_1,this is a ripe banana +banana/banana_1,this is a yellow color banana +banana/banana_1,this is a banana before it is peeled +banana/banana_1,this is a banana +banana/banana_1,this is a bananna +banana/banana_1,this is a banana +banana/banana_1,this is a banana +tomato/tomato_1,this is a tomato +tomato/tomato_1,this object appears to be a bright red tomato most likely of the grape or roma variety +tomato/tomato_1,this is a roma tomato +tomato/tomato_1,a red roma tomato +tomato/tomato_1,this is a small red tomato +tomato/tomato_1,a picture of a red plum +tomato/tomato_1,a picture of a red tomato +tomato/tomato_1,this is a red color tomato +tomato/tomato_1,this is a red jellybean +tomato/tomato_1,this is a ripe tomato +tomato/tomato_1,this is a tomato +tomato/tomato_1,this is a miny mini tomato +tomato/tomato_1,this is a tomato +tomato/tomato_1,tomato +corn/corn_4,this is corn +corn/corn_4,this is a corn cob that has been husked and cleaned up +corn/corn_4,this is a very pale yellow cob of corn +corn/corn_4,this is a yellow color scorn +corn/corn_4,this is a corn on the cob +corn/corn_4,this is an ear of corn +corn/corn_4,this is corn on the cob white corn +corn/corn_4,this is a corn +corn/corn_4,this is corn +corn/corn_4,this is a vegetable it is a pale yellow ear of corn +corn/corn_4,this is a piece of corn a piece of corn on the cob a medium sized piece of yellow corn on the cob +corn/corn_4,this is an ear of corn +corn/corn_4,this is an ear of corn +corn/corn_4,a picture of a corn +tomato/tomato_2,this is a ripe tomato +tomato/tomato_2,this is a mini tomato +tomato/tomato_2,this is a red jellybean +tomato/tomato_2,this is a red tomato +tomato/tomato_2,this is a roma tomato +tomato/tomato_2,this is a roma tomato +tomato/tomato_2,a picture of a red tomato +tomato/tomato_2,this is a red tomato +tomato/tomato_2,this is a tomato +tomato/tomato_2,this is a tomato +tomato/tomato_2,a picture of a red plum +tomato/tomato_2,this is a tomato +tomato/tomato_2,this is a steak of beef +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a yellow color mango +lemon/lemon_4,this is a small fresh lemon +lemon/lemon_4,this is a yellow lemon with a textured outer peel +lemon/lemon_4,this is a lemon +lemon/lemon_4,a picture of a yellow lemon +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a yellow lemon +lemon/lemon_4,this fruit is a lemon +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a yellow lemon +lemon/lemon_4,this is a picture of a lemon the lemon is yellow it has an ovallike shape to it it is laying on its side +lemon/lemon_4,this is a lemon +tomato/tomato_3,a round deep red plump tomato a tomato that looks like it was just picked from the vine this tomato does not look bruised or overripe +tomato/tomato_3,this is a tomato +tomato/tomato_3,this is a ripe red tomato +tomato/tomato_3,this is a tomato with its stem attached +tomato/tomato_3,a large red ripe tomato +tomato/tomato_3,a picture of a red tomato +tomato/tomato_3,this is a ripe tomato +tomato/tomato_3,this is a red tomato +tomato/tomato_3,this is a large round red tomato +tomato/tomato_3,this is a red color tomato +tomato/tomato_3,this is a red tomato +tomato/tomato_3,this is a tomato +tomato/tomato_3,this is a red and ripe tomato +tomato/tomato_3,this is a red tomato with a green stem +corn/corn_2,this is a long and pointedtip white cob of corn +corn/corn_2,this is corn +corn/corn_2,this is corn laying on its side +corn/corn_2,this is a corn +corn/corn_2,this is corn on the cob laying on its side +corn/corn_2,this is corn this is a piece of corn on the cob a large piece of corn on the cob this is corn +corn/corn_2,this is a baby corn +corn/corn_2,this is an ear of corn +corn/corn_2,image is sweet corn +corn/corn_2,this is an ear of corn +corn/corn_2,this is a corn +corn/corn_2,this is an ear of corn +corn/corn_2,this is a yellow color corn +corn/corn_2,this is a light yellow ear of corn +semicylinder/semicylinder_1,a half oval blue toy block +semicylinder/semicylinder_1,this is a blue half circle shape +semicylinder/semicylinder_1,this is a blue half cylinder shape +semicylinder/semicylinder_1,this is blue color semi circle +semicylinder/semicylinder_1,this is a cube +semicylinder/semicylinder_1,this is a semicylinder shape +semicylinder/semicylinder_1,this is a blue half semi circle block +semicylinder/semicylinder_1,this is a blue piece of a play block with an half cilynder shape +semicylinder/semicylinder_1,blue half cylinder +semicylinder/semicylinder_1,this is a blue semicylinder +semicylinder/semicylinder_1,this is a blue halfcircle wedge +semicylinder/semicylinder_1,this is a blue semicylinder +semicylinder/semicylinder_1,this is a blue half cylinder +semicylinder/semicylinder_1,this is a blue wooden block +arch/arch_4,this is a door stop +arch/arch_4,this is a red shape with a curved indentation +arch/arch_4,that is a red arch +arch/arch_4,this is a red arch +arch/arch_4,this is a red color semiarc shape +arch/arch_4,this is a bridge shaped red play block +arch/arch_4,a photo of a red curved object +arch/arch_4,a red childs wooden block a picture of a red building block +arch/arch_4,this is a red childs toy half dome in shape +arch/arch_4,this is a red 3d object that looks like a rectangle with a half circle in the middle +arch/arch_4,this is a long arched red object +arch/arch_4,this is a cube +arch/arch_4,this is a red sloping platform of a shape that would be found in a skateboards playground +arch/arch_4,this is a red wooden block +plum/plum_2,this is a red fruit like a berry +plum/plum_2,this is a plum +plum/plum_2,this is a pulm +plum/plum_2,this is a dark red apple +plum/plum_2,this is an apple +plum/plum_2,this is a shiny red apple this object is upright +plum/plum_2,this is a red delicious apple +plum/plum_2,this is a picture of a purple grape +plum/plum_2,this is a purple plum this is a picture of a small sized purple plum +plum/plum_2,this is red color apple +plum/plum_2,this is a red plum +plum/plum_2,this object appears to be a darkly colored red apple +plum/plum_2,this is a red apple +plum/plum_2,this is a red apple with sitting topside up +cucumber/cucumber_4,a green cucumber laying on its side +cucumber/cucumber_4,this is a cylindrical green vegetable +cucumber/cucumber_4,this is a green color cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is a picture of a cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is a green cucumber +cucumber/cucumber_4,this is a green cucumber laying on its side +cucumber/cucumber_4,this is a green cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is a cucumber +plum/plum_3,this is a red apple +plum/plum_3,this is a red apple +plum/plum_3,this is a pulm +plum/plum_3,this is a red apple +plum/plum_3,this is a little purple berry +plum/plum_3,this is a small red delicious apple +plum/plum_3,this is a picture of a red apple +plum/plum_3,a picture of a red apple +plum/plum_3,this is a cherry +plum/plum_3,this is red color apple +plum/plum_3,this is an apple apple is red in color +plum/plum_3,this is a dark red apple +plum/plum_3,this is an apple +plum/plum_3,this is perhaps an apple or a pomegranate +arch/arch_2,this is a blue shape with a curved indentation +arch/arch_2,this is a blue wooden block +arch/arch_2,a bridge shaped blue toy block +arch/arch_2,this is a piece of blue curved plastic +arch/arch_2,this is an arched shaped brightly blue colored childs toy +arch/arch_2,this is a blue sloping platform of a shape that would be found in a skateboards playground +arch/arch_2,that is a arch +arch/arch_2,a picture is cube +arch/arch_2,this is a concave blue block +arch/arch_2,this is a door stop +arch/arch_2,this is a blue arch +arch/arch_2,this is a bridge shaped blue play block +arch/arch_2,this is blue color semi arc +arch/arch_2,an arch shaped brightly colored childs toy +plum/plum_4,this is an apple +plum/plum_4,this is a small purple grape +plum/plum_4,a picture of a red plum +plum/plum_4,this is an apple +plum/plum_4,a red apple +plum/plum_4,this is a small purple plum +plum/plum_4,this is a ripe tomato +plum/plum_4,this is red color apple +plum/plum_4,this is a pomegranate +plum/plum_4,this is a red plum +plum/plum_4,this is a red apple +plum/plum_4,this is a pomegranate +plum/plum_4,a picture of a red plum +plum/plum_4,this is a red apple +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,a picture of a cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is vegetable cucumber +cucumber/cucumber_3,this is a cucumber the cucumber is green +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a dark green cylindrical vegetable +cucumber/cucumber_3,green cucumber on its side +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a green color cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,this is a green vegetable probably a cucumber +cucumber/cucumber_1,a picture of a cucumber +cucumber/cucumber_1,a picture of a cucumber this is a picture of a vegetable called a cucumber a picture captured from different angles of a cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,this is a cucumber lying on its side +cucumber/cucumber_1,this is a dark green zucchini +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,this is a green color cucumber +cucumber/cucumber_1,this is a picture of a cucumber +cucumber/cucumber_1,this is a green cucumber +arch/arch_3,this is a shape of cube +arch/arch_3,this is green concave shape with a three flat faces +arch/arch_3,this is a bridge shaped green playblock +arch/arch_3,this is a green shape with a curved indentation +arch/arch_3,this is a green archway +arch/arch_3,this is a green 3d shape that looks like a rectangle with a half circle missing from the middle +arch/arch_3,this is a green wooden block this is a picture of a childs toy called a block a green curved shaped block +arch/arch_3,this object appears to be a green rectangular prism block that had a chunk of it taken out the chunk taken out resembles a wide cylinder +arch/arch_3,this is an arched shaped green colored childs toy +arch/arch_3,this is a green prism with a half circle taken out of the side +arch/arch_3,this is a green color semicircle +arch/arch_3,arch +arch/arch_3,this is a green sloping platform of a shape that would be found in a skateboards playground +arch/arch_3,this is a green childs toy +cucumber/cucumber_2,green cucumber on its side +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is a green cucumber +cucumber/cucumber_2,this is a picture of a cucumber this is a cucumber +cucumber/cucumber_2,this is a smooth green cucumber +cucumber/cucumber_2,this is a dark green zucchini +cucumber/cucumber_2,this is a green color cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,a cucumber which looks at its perfect ripeness for good eating +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is a cucumber +arch/arch_1,this is a half circle cut out of a rectangle +arch/arch_1,this object is yellow it has a semicircle cut out of the middle +arch/arch_1,this is a yellow sloping platform of a shape that would be found in a skateboards playground +arch/arch_1,a yellow sponge +arch/arch_1,this is a yellow shape with what appears to be a white stand underneath +arch/arch_1,that is a yellow arch +arch/arch_1,an arcshaped bright yellow block +arch/arch_1,this is a childs toy wooden block +arch/arch_1,this is yellow color semi arc +arch/arch_1,this is a yellow block shaped like an arch +arch/arch_1,this is an arc shaped childs block +arch/arch_1,this is a piece of milled structural material +arch/arch_1,this is a brige shaped yellow play block +arch/arch_1,this is a yellow shape with a curved indentation +triangle/triangle_1,this is a red triangle block +triangle/triangle_1,this object resembles the shape of a cheese wedge but is bright red in color +triangle/triangle_1,this is a red triangular wedge +triangle/triangle_1,a red triangular block +triangle/triangle_1,this is a red triangular prism +triangle/triangle_1,this is a cake +triangle/triangle_1,this is a tiangle +triangle/triangle_1,this is a red color triangle shape +triangle/triangle_1,this is a red triangular prism +triangle/triangle_1,this is a red wooden block +triangle/triangle_1,this is a red wedge shape +triangle/triangle_1,this is a re roof shaped play block +triangle/triangle_1,this is a red colored triangular prism +triangle/triangle_1,tringle +cube/cube_4,this is a red cube +cube/cube_4,this is a red 3d object that looks like a square +cube/cube_4,this is a very slightly pentagonal red case +cube/cube_4,this is a red color square shape +cube/cube_4,this is a red cube +cube/cube_4,this is a toy red square block +cube/cube_4,this is a red square block +cube/cube_4,this is a cube shape +cube/cube_4,this is a red cube +cube/cube_4,this is an red block it is a cube +cube/cube_4,a small square shaped red block a picture of a small square red building block a childs red square building block toy +cube/cube_4,this is a red cube +cube/cube_4,that is a cube +triangle/triangle_2,this is a yellow color triangle shape +triangle/triangle_2,this is a yellow wooden block +triangle/triangle_2,this is a yellow ramp shape play block +triangle/triangle_2,this is a yellow triangular prism +triangle/triangle_2,this is a yellow wedge +triangle/triangle_2,this is a wedge shaped childs block +triangle/triangle_2,this is a triangular yellow wedge +triangle/triangle_2,this is a triangle +triangle/triangle_2,this is a yellow triangular prism +triangle/triangle_2,this is a triangle +triangle/triangle_2,this is a yellow triangle shape +triangle/triangle_2,this is a triangle shape +triangle/triangle_2,this is a bright yellow colored triangular prism childs toy +triangle/triangle_2,this is a wedge of cheese +lime/lime_4,this is a lime +lime/lime_4,this is lime +lime/lime_4,this is a green color chow chow +lime/lime_4,this is a bright green colored lime +lime/lime_4,this is a green lime +lime/lime_4,this is a lime +lime/lime_4,this is a green lemon +lime/lime_4,this is a lime +lime/lime_4,this is a green lime +lime/lime_4,this fruit is a lime +lime/lime_4,this is a green lime +lime/lime_4,this is a green lime they are small and circular this lime happens to be propped up +lime/lime_4,this is a lime +triangle/triangle_3,this is a green triangle that looks like a wooden toy the triangle looks to be an obtuse triangle the triangle is shown in different positions +triangle/triangle_3,this is a green wedge shape +triangle/triangle_3,this is a green triangular prism +triangle/triangle_3,this is a green triangle +triangle/triangle_3,a green triangular block +triangle/triangle_3,this is a triangle +triangle/triangle_3,this is a green wooden block +triangle/triangle_3,this is a green triangular prism +triangle/triangle_3,this is a triangular green wedge +triangle/triangle_3,this is a green color triangle shape +triangle/triangle_3,this is a ramp shaped green play block +triangle/triangle_3,this is a toy green triangle block +triangle/triangle_3,this is a green 3d triangular shape +triangle/triangle_3,this is a green triangular prism +cube/cube_2,this is a green cube +cube/cube_2,this is a green cube +cube/cube_2,this is a green cube +cube/cube_2,this is a cube +cube/cube_2,this is a green cube +cube/cube_2,this is a small green square shaped block this is a green block +cube/cube_2,this is a green cube play block +cube/cube_2,this is a green wooden block +cube/cube_2,this is a cube +cube/cube_2,this is a green cube +cube/cube_2,this is a green cube +cube/cube_2,this is a slighty out of shape green square +cube/cube_2,this is a green color square shape +cube/cube_2,this is a green cube +potato/potato_1,a red potato +potato/potato_1,this is a potato +potato/potato_1,this is a red plumb +potato/potato_1,this is a red color apple +potato/potato_1,this is a potato +potato/potato_1,a picture of a potato +potato/potato_1,a red potato this red potato has very few eyes or blemishes +potato/potato_1,this is a red fruit +potato/potato_1,red plum +potato/potato_1,this is a beet +potato/potato_1,this is a red potato +potato/potato_1,this is a potato +potato/potato_1,this is an apple +potato/potato_1,this is an apple +cabbage/cabbage_4,this is cabbage +cabbage/cabbage_4,this is a purple cabbage +cabbage/cabbage_4,this is a cabbage +cabbage/cabbage_4,this is a purple cabbage +cabbage/cabbage_4,this is a purple color cabbage +cabbage/cabbage_4,this is a purple fruit +cabbage/cabbage_4,a picture of a purple cabbage like object +cabbage/cabbage_4,a picture of a purple head of cabbage a fresh head of cabbage +cabbage/cabbage_4,this is purple cabbage +cabbage/cabbage_4,this is a whole purple cabbage +cabbage/cabbage_4,this is a red cabbage +cabbage/cabbage_4,a picture of a cabbage +cabbage/cabbage_4,this is a dark purple cabbage +cabbage/cabbage_4,this is a purple cabage +potato/potato_2,this is a red plum +potato/potato_2,this is a baby red potato +potato/potato_2,this is a potato +potato/potato_2,this is a red potato +potato/potato_2,this is a tomato +potato/potato_2,a picture of a red potato this object has small indentations +potato/potato_2,this is a picture of a red potato +potato/potato_2,this is a picture of a beet +potato/potato_2,this is a potato this is a picture of an unpeeled red potato a picture of a small red potato +potato/potato_2,this is a red color apple +potato/potato_2,this is a potato +potato/potato_2,this object appears to be a small red potato +potato/potato_2,this is a potato +potato/potato_2,this is a red potato sitting on its side +cylinder/cylinder_4,a long green cylinder block +cylinder/cylinder_4,this is a glossy green cylinder +cylinder/cylinder_4,this is a green color cylinder shape +cylinder/cylinder_4,this is a cylinder +cylinder/cylinder_4,this is a green cylinder +cylinder/cylinder_4,this is a green cylinder +cylinder/cylinder_4,this is a green cylinder shape play block +cylinder/cylinder_4,this is a green cylinder +cylinder/cylinder_4,this is a green cylinder +cylinder/cylinder_4,that is a cylinder +cylinder/cylinder_4,this is a greed 3d object that looks like a cylinder +cylinder/cylinder_4,this is a green cyclinder +cylinder/cylinder_4,this is a childs toy green cylinder +cylinder/cylinder_4,this is a green cylinder +potato/potato_3,this is a potato +potato/potato_3,this is a potato +potato/potato_3,this is a potato +potato/potato_3,this is a brown potato +potato/potato_3,this is a piece of bred +potato/potato_3,this appears to be a lightly brown colored baked or uncooked potato +potato/potato_3,this picture is a potato +potato/potato_3,this is a potato +potato/potato_3,this is a potato +potato/potato_3,this is a shapeless object cream color +potato/potato_3,this is a potato potatoes are in different shapes potato is brown in color +potato/potato_3,this is an oblong beige object with irregular surface texture +potato/potato_3,this is a potato +potato/potato_3,this is a potato +cabbage/cabbage_2,this is a purple cabbage +cabbage/cabbage_2,this is a purple cabage +cabbage/cabbage_2,an unpeeled purple cabbage +cabbage/cabbage_2,this is purple cabbage +cabbage/cabbage_2,this is a red cabbage +cabbage/cabbage_2,this is a red cabbage +cabbage/cabbage_2,this is a cabbage +cabbage/cabbage_2,a picture of a red cabbage +cabbage/cabbage_2,this is a purple cabbage it is sphere shaped +cabbage/cabbage_2,this is cabbage +cabbage/cabbage_2,this is a purple cabbage +cabbage/cabbage_2,this is a red cabbage +cabbage/cabbage_2,this is a purple color cabbage +cabbage/cabbage_2,a picture of a black cabbage +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,a peeled potato +potato/potato_4,this is a brown potato +potato/potato_4,this is a potato +potato/potato_4,this is a yellow color potato +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,this is a yellow potato +cylinder/cylinder_2,this is a red cylinder play block +cylinder/cylinder_2,a picture of a red cylinder +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,red cylinder image +cylinder/cylinder_2,this is a cylinder the cylinder is read the cross section is circular +cylinder/cylinder_2,this is a childs toy red cylinder +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,a red cylinder +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,this is a red color cylinder shape +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,this is a red cylinder shape +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_1,this is a yellow cylinder +cylinder/cylinder_1,this is a yellow cylindrical shape +cylinder/cylinder_1,a picture of a yellow solid tube +cylinder/cylinder_1,this is a yellow cylinder shaped block a picture of a cylinder shaped yellow block from different angles +cylinder/cylinder_1,this is a bright yellow cylinder +cylinder/cylinder_1,this is a toy yellow round block +cylinder/cylinder_1,this is a yellow cylinder +cylinder/cylinder_1,this is a yellow cylinder +cylinder/cylinder_1,this is a cylindrical yellow object +cylinder/cylinder_1,this is a childs toy yellow cylinder +cylinder/cylinder_1,this is a green cylinder shape +cylinder/cylinder_1,this is a yellow color cylinder shape +cylinder/cylinder_1,this is a picture of a yellow cylinder block +cylinder/cylinder_1,this is a yellow cylinder +cabbage/cabbage_3,a picture of a red cabbage +cabbage/cabbage_3,this is a dark purple cabbage +cabbage/cabbage_3,this is a purple fuit +cabbage/cabbage_3,this is a purple cabbage +cabbage/cabbage_3,this is a cabbage +cabbage/cabbage_3,this is a whole purple cabbage +cabbage/cabbage_3,this is a head of purple cabbage this is a picture of cabbage a head of purple cabbage viewed from 4 different angles +cabbage/cabbage_3,the object presented appears to be a large head of purple cabbage +cabbage/cabbage_3,this is red cabbage +cabbage/cabbage_3,this is a red cabbage laying on its side +cabbage/cabbage_3,this is a purple color cabbage +cabbage/cabbage_3,cabage +cabbage/cabbage_3,this is a slightly ovoid gray and red marbled object +cabbage/cabbage_3,this is a purple cabage +cylinder/cylinder_3,a blue cylinder +cylinder/cylinder_3,this is a blue cylinder +cylinder/cylinder_3,this is a blue cylinder +cylinder/cylinder_3,this is a blue round cylinder +cylinder/cylinder_3,this is a blue cylinder +cylinder/cylinder_3,this is a blue cylinder +cylinder/cylinder_3,this is a small blue cylinder +cylinder/cylinder_3,this is a blue cylinder shape with two flat circle faces +cylinder/cylinder_3,this is a blue plastic cylinder +cylinder/cylinder_3,this is a blue color cylinder shape +cylinder/cylinder_3,this is a childs toy blue cylinder +cylinder/cylinder_3,a medium blue roller type image which looks shiny and ready to use for some task +cylinder/cylinder_3,this is a cylinder shaped blue play block +cylinder/cylinder_3,this is a blue cylander +cabbage/cabbage_1,this is a purple cabage +cabbage/cabbage_1,this is red cabbage +cabbage/cabbage_1,this is a dark purple cabbage +cabbage/cabbage_1,red cabbage on its side +cabbage/cabbage_1,this is a purple cabbage this is the stem end of a purple cabbage this is a purple cabbage laying on its side +cabbage/cabbage_1,this is a cabbage +cabbage/cabbage_1,this is a picture of a red cabbage +cabbage/cabbage_1,this is a purple cabage +cabbage/cabbage_1,this is a purple color cabbage +cabbage/cabbage_1,this is a purple cabbage +cabbage/cabbage_1,this is a red cabbage +cabbage/cabbage_1,this is a purple cabbage +cabbage/cabbage_1,this is a red cabbage +cabbage/cabbage_1,this is a purple cabbage +tomato/tomato_4,this is a orange tomato +tomato/tomato_4,this object appears to be a medium sized tomato of a light orangered color +tomato/tomato_4,this is a yelloworange large tomato +tomato/tomato_4,an large underripened red tomato +tomato/tomato_4,this is a tomato it is not ripe yet +tomato/tomato_4,a picture of a red cabbage +tomato/tomato_4,a picture of a yellow with red tomato +tomato/tomato_4,this is a red color tamota +tomato/tomato_4,this is a red and yellow tomato +tomato/tomato_4,this is a tomato +tomato/tomato_4,this is a tomato +tomato/tomato_4,this is a tomato +tomato/tomato_4,this is a tomato +tomato/tomato_4,tomato +lemon/lemon_3,this is a lemon +lemon/lemon_3,this is a yellow lemon laying on its side +lemon/lemon_3,this is a yellow lemon +lemon/lemon_3,this is a yellow color mango +lemon/lemon_3,this is a lemon +lemon/lemon_3,this is a lemon +lemon/lemon_3,this is a lemon +lemon/lemon_3,a picture of a yellow lemon +lemon/lemon_3,this is a lemon +lemon/lemon_3,this is a yellow lemon the peel has a textured look +lemon/lemon_3,this is a picture of a lemon viewed from different angles this is a yellow lemon this is a picture of a medium sized lemon +lemon/lemon_3,this is a lemon +lemon/lemon_3,this is a yellow with green lemon +lemon/lemon_1,this is a shapeless object yellow color +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a yellow lemon +lemon/lemon_1,this is a yellow lemon +lemon/lemon_1,this is a yellow lemon +lemon/lemon_1,this is a yellow lemon +lemon/lemon_1,this is a lemon +lemon/lemon_1,a picture of a yellow lemon +lemon/lemon_1,this is an orange +lemon/lemon_1,this is a lemon +corn/corn_3,this is a corn cob +corn/corn_3,this is a corn +corn/corn_3,this is a yellow color corn +corn/corn_3,this is an uncooked ear of corn that has been shucked +corn/corn_3,this is an ear of corn that has been peeled it has rows of kernels and is light yellow +corn/corn_3,this is an ear of corn +corn/corn_3,a picture of a corn +corn/corn_3,this is an ear of corn +corn/corn_3,this is a white cob of corn +corn/corn_3,this vegetable is called corn +corn/corn_3,this is a corn +corn/corn_3,this is the ear of a corn its not standing up its more white than yellow +corn/corn_3,this is a sweet corn +corn/corn_1,a light yellow ear of corn that has been shucked the corn is still on the cob because the ear of corn has many kernels that are brown it does not look fresh and good to eat +corn/corn_1,this is an ear of corn +corn/corn_1,this is husked corn +corn/corn_1,a yellow corn cob +corn/corn_1,this is a sweet corn +corn/corn_1,this is an ear of corn +corn/corn_1,this is corn on the cob laying on its side +corn/corn_1,this is a very light yellow cob of corn +corn/corn_1,this is a yellow color corn +corn/corn_1,this is a corn +corn/corn_1,this is an ear of corn +corn/corn_1,this is corn on the cob it is yellow +corn/corn_1,this is a yellow ear of peeled corn with a rough end +lemon/lemon_2,this is a yellow lemon +lemon/lemon_2,this is an orange +lemon/lemon_2,this is a yellow lemon +lemon/lemon_2,this is a lemon +lemon/lemon_2,this is a lemon +lemon/lemon_2,this is a lemon this is a picture of a lemon from different angles +lemon/lemon_2,thi is a yellow fruit +lemon/lemon_2,this is a lemon +lemon/lemon_2,this is a yellow lemon +lemon/lemon_2,this is a lemon +lemon/lemon_2,this is a orange +lemon/lemon_2,this is a picture of a lemon +lemon/lemon_2,this is a yellow color bell pepper +lemon/lemon_2,this is a yellow lemon +plum/plum_1,a red apple +plum/plum_1,this is a red apple +plum/plum_1,this is a red apple +plum/plum_1,this is a red color apple +plum/plum_1,this is a pulm +plum/plum_1,a picture of a red plum +plum/plum_1,a reddish colored circle the reddish colored circle could be a grape or balloon +plum/plum_1,this is a red sphere +plum/plum_1,red apple +plum/plum_1,this is a purple ball +plum/plum_1,this is a round red glossy object +plum/plum_1,this is a red plum +plum/plum_1,this is a red sphere +plum/plum_1,this is a ripe tomato +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a red carrot +carrot/carrot_4,this is an orange carrot +carrot/carrot_4,this is a orange color carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,a picture of a carrot +carrot/carrot_4,this is a picture of a carrot this is an orange carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is an orange carrot laying on its side +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is acarrot +carrot/carrot_4,this is a long orange carrot +carrot/carrot_4,this is a carrot +semicylinder/semicylinder_2,this is an arch shaped play block +semicylinder/semicylinder_2,this is a toy red block +semicylinder/semicylinder_2,this is a semicylinder +semicylinder/semicylinder_2,this is a red halfcircle wedge +semicylinder/semicylinder_2,this is a red wooden block +semicylinder/semicylinder_2,this object is red and is a 3dimensional hemispherical shape +semicylinder/semicylinder_2,this is a halfcircle shaped childrens building block toy +semicylinder/semicylinder_2,this is half of a red cylinder +semicylinder/semicylinder_2,this is a red block this is a picture of a childs red building block toy a red block +semicylinder/semicylinder_2,this is semicircle red color +semicylinder/semicylinder_2,that is a red semicylinder +semicylinder/semicylinder_2,this object is red shiny and resembles a wide cylinder split in half +semicylinder/semicylinder_2,this is a red arch shaped item +semicylinder/semicylinder_2,this is a half wheel of cheese wrapped in red wrapping it looks like a 3d half circle +eggplant/eggplant_4,a purple eggplant laying on its side +eggplant/eggplant_4,this is a dark purple european eggplant +eggplant/eggplant_4,this is a purple color eggplanet +eggplant/eggplant_4,this is an eggplant +eggplant/eggplant_4,this is an eggplant +eggplant/eggplant_4,this is a picture of an eggplant +eggplant/eggplant_4,this is an eggplant +eggplant/eggplant_4,this is a eggplant laying on its side +eggplant/eggplant_4,this is an eg +eggplant/eggplant_4,this is a eggplant +eggplant/eggplant_4,this is a dark purple eggplant laying on its side +eggplant/eggplant_4,this is a dark purple eggplant +eggplant/eggplant_4,this is an eggplant +eggplant/eggplant_4,this is an eggplant +semicylinder/semicylinder_3,this is a yellow object this object is flat on the bottom this object has a rounded top +semicylinder/semicylinder_3,this is a half round of cheese +semicylinder/semicylinder_3,this is a semicylinder +semicylinder/semicylinder_3,this is a yellow semi circle +semicylinder/semicylinder_3,this is a yellow arch shaped play block +semicylinder/semicylinder_3,this is a bright yellow half circle of wax on top of a white surface +semicylinder/semicylinder_3,this is a yellow halfcircle shaped childrens toy +semicylinder/semicylinder_3,image is semicylinder +semicylinder/semicylinder_3,this is half of a yellow cylinder +semicylinder/semicylinder_3,this is semicircle yellow color +semicylinder/semicylinder_3,this is the picture of ice cream ice creams are sweet +semicylinder/semicylinder_3,this is a yellow halfcircle wedge +semicylinder/semicylinder_3,this is a yellow wedge of cheese perhaps +semicylinder/semicylinder_3,this is a yellow arch shaped childs toy +carrot/carrot_2,this is a carrot +carrot/carrot_2,a long thick carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is a long orange carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is a bumpy orange carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is a orange color carrot +carrot/carrot_2,this is a carrot +semicylinder/semicylinder_4,this is an arc shaped childs block +semicylinder/semicylinder_4,this is half of a green cylinder +semicylinder/semicylinder_4,a picture of a green semicylinder +semicylinder/semicylinder_4,this is a building block +semicylinder/semicylinder_4,a half oval shaped green toy block +semicylinder/semicylinder_4,this is a green semi circle it is a 3d shape with one rounded side +semicylinder/semicylinder_4,this is a green wooden block +semicylinder/semicylinder_4,this is a green color semi circle +semicylinder/semicylinder_4,this is a tent +semicylinder/semicylinder_4,this is a semicylinder shape +semicylinder/semicylinder_4,this is a green half circle shape +semicylinder/semicylinder_4,this is a green arch shaped childs toy +semicylinder/semicylinder_4,this is a cube +semicylinder/semicylinder_4,this is a green halfcircle wedge +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,a picture of an eggplant +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,this is a vegetable eggplant +eggplant/eggplant_3,this is an eggplant the eggplant is black the eggplant has a green cap on the end +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,this is a dark purple european eggplant +eggplant/eggplant_3,a purple eggplant on its side +eggplant/eggplant_3,this is a eggplant +eggplant/eggplant_3,this is a purple color eggplanet +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,a purple eggplant is lying on its side +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_1,this is an eggplant +eggplant/eggplant_1,this is a purple and green eggplant +eggplant/eggplant_1,a picture of a eggplant +eggplant/eggplant_1,an eggplant lying on its side a picture of an eggplant this is a picture of an eggplant from 4 different angles +eggplant/eggplant_1,this is an eggplant +eggplant/eggplant_1,this is an eggplant +eggplant/eggplant_1,this is an eggplant +eggplant/eggplant_1,this is an eggplant lying on its side +eggplant/eggplant_1,this is a dark purple european eggplant +eggplant/eggplant_1,this is an eggplant +eggplant/eggplant_1,this is a purple eggplant +eggplant/eggplant_1,this is a purple color eggplanet +eggplant/eggplant_1,this is a picture of an eggplant lying on its side +eggplant/eggplant_1,this is a dark purple eggplant with a green stem +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a long thin orange carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is an orange carrot laying on its side +carrot/carrot_3,this is a carrot a picture of an orange carrot this is a vegetable called a carrot a long fresh unpeeled carrot +carrot/carrot_3,the object presented appears to be long orange carrot with a notch towards the tip +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a orange color carrot +carrot/carrot_3,carrot +carrot/carrot_3,this is a long orange carrot +carrot/carrot_3,this is a carrot +eggplant/eggplant_2,a purple eggplant on its side +eggplant/eggplant_2,this is an eggplant +eggplant/eggplant_2,this is an eggplant +eggplant/eggplant_2,this is an eggplant +eggplant/eggplant_2,this is a purple eggplant lying on its side +eggplant/eggplant_2,this is a picture of an purple eggplant laying on its side this is a vegetable called an eggplant +eggplant/eggplant_2,this is a dark purple eggplant +eggplant/eggplant_2,this is a dark purple european eggplant +eggplant/eggplant_2,this is a purple color eggplanet +eggplant/eggplant_2,this is an eggplant +eggplant/eggplant_2,an eggplant looking perfectly ripe for cooking it looks like it will make some delicious eggplant parmigiana or enhance some soup +eggplant/eggplant_2,this is an eggplant +eggplant/eggplant_2,this is an eggplant +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a carrot it is orange in color and long in length +carrot/carrot_1,this is a long orange carrot +carrot/carrot_1,a peeled carrot +carrot/carrot_1,this is a carrot this is an unpeeled carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a carrot leaves removed +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a orange color carrot +carrot/carrot_1,this is a picture of a carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is an orange carrot +carrot/carrot_1,this is a carrot +triangle/triangle_4,this is a blue triangle block +triangle/triangle_4,this object appears to be a blue triangular prism of the scalene variety additionally this scalene triangle appears to be a right triangle +triangle/triangle_4,this is a triangular blue wedge +triangle/triangle_4,a blue rectangular block +triangle/triangle_4,this is a blue triangular prism +triangle/triangle_4,a picture of a blue cake +triangle/triangle_4,this is a triangle +triangle/triangle_4,this is a blue color triangle shape +triangle/triangle_4,this is a blue triangular prism +triangle/triangle_4,this is a blue childs toy +triangle/triangle_4,this is a blue wedge shape +triangle/triangle_4,this is a blue roof shaped play block +triangle/triangle_4,this is a blue triangular prism +triangle/triangle_4,triangle +lime/lime_3,this is a round green shape it could be a brussel sprout +lime/lime_3,this is a green lime saying on its side +lime/lime_3,this is a round light green object +lime/lime_3,this is a green color chow chow +lime/lime_3,this is a lime +lime/lime_3,this is a lime or a green apple +lime/lime_3,this is a lime +lime/lime_3,this is a green lemon +lime/lime_3,this is a lime +lime/lime_3,this is a green lime +lime/lime_3,this is a lime this is a picture of a lime +lime/lime_3,this is a lime +lime/lime_3,this is a green lime +lime/lime_1,this is a green color chow chow +lime/lime_1,this is a lime +lime/lime_1,this is a lime +lime/lime_1,this is a lime +lime/lime_1,this is a lime +lime/lime_1,this is a lime +lime/lime_1,this is an ovoid green object on a square base +lime/lime_1,this is a green lime +lime/lime_1,this is a green lime +lime/lime_1,this is a green lime +lime/lime_1,this is a lime +lime/lime_1,this is a green lemon +lime/lime_1,this is a lime +lime/lime_1,this is a lime +cube/cube_3,this is a blue square +cube/cube_3,this is a square blue play block +cube/cube_3,this is a blue color square shape +cube/cube_3,this is a light blue colored square object that is solid +cube/cube_3,this is a blue rectangular prism +cube/cube_3,this is a blue wooden block +cube/cube_3,a picture of a blue cube +cube/cube_3,this is a blue cube +cube/cube_3,this is a blue cube +cube/cube_3,this is a blue cube shaped block +cube/cube_3,this is a cube +cube/cube_3,a blue cube against a black background the object appears to be floating unable to verify the size of the cube +cube/cube_3,this is a cube +cube/cube_1,this is a bright yellow cube the yellow cube resembles a chunk of butter +cube/cube_1,this is a yellow cube +cube/cube_1,this is a yellow cube +cube/cube_1,a yellow square block +cube/cube_1,this is a cube +cube/cube_1,this is a yellow wooden block +cube/cube_1,this is a large yellow cube +cube/cube_1,this is a yellow cube +cube/cube_1,this is a yellow color square shape +cube/cube_1,this is a square yellow play block +cube/cube_1,this is toy yellow square block +cube/cube_1,this is a yellow cube +cube/cube_1,this is a yellow cube +lime/lime_2,this is an ovoid green object on a square base +lime/lime_2,this is a lime +lime/lime_2,this is a green lime +lime/lime_2,this is a lime +lime/lime_2,this is a lime +lime/lime_2,this is a lime this is a picture of a lime from different angles +lime/lime_2,this is a green lime +lime/lime_2,this is a lime +lime/lime_2,this is a green lime +lime/lime_2,this is a lime +lime/lime_2,this is a lemon +lime/lime_2,this is a blurry picture of a lime +lime/lime_2,this is a green color chow chow +lime/lime_2,this is a green lime +orange/orange_1,this is orange +orange/orange_1,yellow orange +orange/orange_1,this is a orange +orange/orange_1,this is aa tangerine +orange/orange_1,this is an orange object +orange/orange_1,this is a orange +orange/orange_1,this is a orange color orage +orange/orange_1,a round orange +orange/orange_1,this is an orange +orange/orange_1,this is an orange +orange/orange_1,this is an orange this is a fruit +orange/orange_1,this is a orane +orange/orange_1,this is a bruised piece of fruit it is orangishyellow in color it appears jagged around the edges +orange/orange_1,this is an orange +banana/banana_4,this is a green banana +banana/banana_4,this is a banana lying flat it has a little bit of brown on the edge of the peel but it is mostly yellow it is ripe for eating +banana/banana_4,this is a green colour banana +banana/banana_4,a yellow banana +banana/banana_4,this is a banana +banana/banana_4,a picture is green banana +banana/banana_4,this is a banana +banana/banana_4,this is a banana +banana/banana_4,this is a banana lying on its side +banana/banana_4,this is a yellow color banana +banana/banana_4,this is a stale banana +banana/banana_4,a green banana an unripe banana +banana/banana_4,a picture of a banana laying on its side +banana/banana_4,this is a frozen bananna +orange/orange_2,this is an orange +orange/orange_2,this is an orange +orange/orange_2,this is a orange +orange/orange_2,this is a lemon +orange/orange_2,this is a orange +orange/orange_2,this is an orange +orange/orange_2,this is a yellow fruit or vegetable +orange/orange_2,this is a fruit yellow orange +orange/orange_2,this is a yellow color mosambi +orange/orange_2,a yellow tomatoe +orange/orange_2,this is an orange +orange/orange_2,this is an orange +orange/orange_2,this is a frozen apple +orange/orange_2,this is a lemon +cuboid/cuboid_4,this is a plastic qube +cuboid/cuboid_4,this is a blue rectangular block +cuboid/cuboid_4,a picture is cuboid +cuboid/cuboid_4,this is a blue color rectangle shape +cuboid/cuboid_4,this is a blue cube in different positions +cuboid/cuboid_4,a picture of a blue colour cuboid shape +cuboid/cuboid_4,that is a blue cuboid +cuboid/cuboid_4,this rectangle is made of blue clay +cuboid/cuboid_4,this is a cuboid +cuboid/cuboid_4,this is a rectangle shaped block +cuboid/cuboid_4,a pictureof a blue rectangle +cuboid/cuboid_4,a blue rectangular kids toy +cuboid/cuboid_4,this is a blue rectangluar box +cuboid/cuboid_4,a picture of a cuboid +orange/orange_3,a round orange +orange/orange_3,this object is orange +orange/orange_3,this is a an orange +orange/orange_3,this is an orange +orange/orange_3,this is a orange color orage +orange/orange_3,this is an orange +orange/orange_3,this is an orange +orange/orange_3,this is an apple +orange/orange_3,this is a orange +orange/orange_3,this is an orange +orange/orange_3,this is a orange +orange/orange_3,this is a orange +orange/orange_3,this is a orange +orange/orange_3,this is an orange +banana/banana_2,this is an image of a ripe banana +banana/banana_2,this is a banana the banana is yellow the banana is ripe the banana is unpeeled +banana/banana_2,this is a banana +banana/banana_2,this is a green banana +banana/banana_2,this is a yellow color banana +banana/banana_2,this is a banana +banana/banana_2,this is a banana +banana/banana_2,this is a green banana +banana/banana_2,this is a ripe banana +banana/banana_2,this is a banana lying on its side +banana/banana_2,this is a banana +banana/banana_2,a yellow banana +banana/banana_2,this is a banana +banana/banana_2,this is a banana +orange/orange_4,this is a orange +orange/orange_4,this is a yellow color mango +orange/orange_4,this is an orange +orange/orange_4,this is an orange +orange/orange_4,this is an orange +orange/orange_4,this is a orange +orange/orange_4,this is a partial ripe orange +orange/orange_4,this is an orange +orange/orange_4,a round orange +orange/orange_4,this is an orange +orange/orange_4,this is a frozen lemon +orange/orange_4,this is a orange +orange/orange_4,this is a orange +orange/orange_4,this is a orange +cuboid/cuboid_3,that is a cuboid +cuboid/cuboid_3,this is a red rectangular block +cuboid/cuboid_3,a red rectangular shaped kids toy +cuboid/cuboid_3,this is a red block +cuboid/cuboid_3,this is a red cube in different positions +cuboid/cuboid_3,a picture of a red color cuboid +cuboid/cuboid_3,this is a plastic qube +cuboid/cuboid_3,this is a red rectangle +cuboid/cuboid_3,this is a red rectangle +cuboid/cuboid_3,this is a red cuboid +cuboid/cuboid_3,this is a red color rectangle shape +cuboid/cuboid_3,this is a cuboid +cuboid/cuboid_3,this is a shape +cuboid/cuboid_3,this is a red rectangular box +cuboid/cuboid_1,this a a yellow rectangle shaped like a stick of butter +cuboid/cuboid_1,this is a yellow rectangular cube it resembles a stuck of butter in shape and color +cuboid/cuboid_1,this is a plastic qube +cuboid/cuboid_1,this is a rectangular yellow object this is a yellow rectangular object standing vertically this looks like a stick of butter +cuboid/cuboid_1,this is a yellow rectangular solid this resembles a stick of butter in one picture the rectangular object is standing on the narrow end +cuboid/cuboid_1,a yellow rectangular shaped kids toy +cuboid/cuboid_1,this is a rectangle shaped yellow block +cuboid/cuboid_1,this is a cuboid +cuboid/cuboid_1,that is a cuboid +cuboid/cuboid_1,this is a yellow cuboid +cuboid/cuboid_1,this is a yellow color rectangle shape +cuboid/cuboid_1,this is a stick of butter +cuboid/cuboid_1,this is a yellow rectangle +cuboid/cuboid_1,this is a yellow rectangular prism +banana/banana_3,this is a yellow banana +banana/banana_3,this is a banana +banana/banana_3,this is a banana +banana/banana_3,this is a banana this is a ripe banana this is a banana laying on its side +banana/banana_3,this is a frozen bananna +banana/banana_3,a yellow banana +banana/banana_3,this is a banana +banana/banana_3,this is a ripe banana +banana/banana_3,this is a green with yellow banana +banana/banana_3,this is a yellow color banana +banana/banana_3,this is a green banana +banana/banana_3,this is a banana lying in different positions +banana/banana_3,this is a banana +banana/banana_3,this is a banana +cuboid/cuboid_2,that is a cuboid +cuboid/cuboid_2,a picture of a green color cuboid shape +cuboid/cuboid_2,this is a cuboid +cuboid/cuboid_2,this is a green block in different positions +cuboid/cuboid_2,this is a cuboid +cuboid/cuboid_2,this is a bread +cuboid/cuboid_2,this is a green rectangular cube +cuboid/cuboid_2,this is a green rectangular block +cuboid/cuboid_2,this is a plastic qube +cuboid/cuboid_2,this is a rectangle shaped box +cuboid/cuboid_2,it is looking like a green rectangle shape +cuboid/cuboid_2,this is a green color rectangle shape +cuboid/cuboid_2,this is a green rectangle +cuboid/cuboid_2,a bright green rectangle shaped kids toy +banana/banana_1,this is a green banana +banana/banana_1,this is a frozen bananna +banana/banana_1,this is a cresent shaped banana +banana/banana_1,this is a banana +banana/banana_1,this is a banana +banana/banana_1,this is a banana +banana/banana_1,this is a banana +banana/banana_1,this is a banana +banana/banana_1,a yellow banana +banana/banana_1,this is a yellow banana +banana/banana_1,a yellow banana +banana/banana_1,this is a banan +banana/banana_1,this is a yellow color banana +banana/banana_1,this is a banana +tomato/tomato_1,this is a plum tomato this is a tomato +tomato/tomato_1,this is a tomato +tomato/tomato_1,a red ball +tomato/tomato_1,this is a red circle +tomato/tomato_1,this is a tomato +tomato/tomato_1,this is a red blob +tomato/tomato_1,this is a red tomato +tomato/tomato_1,this is a tomato +tomato/tomato_1,this is a red tomato +tomato/tomato_1,this is a red tomato +tomato/tomato_1,this is a red cherry tomato lying on its side +tomato/tomato_1,there is a tomato the tomato is red +tomato/tomato_1,this is a red spherical ball +tomato/tomato_1,this is a red color tomato +corn/corn_4,this is a corn +corn/corn_4,this is an ear of corn the husk has been removed from the corn and it is lying on a flat surface +corn/corn_4,this is an ear of corn on its side +corn/corn_4,this is a baby corn +corn/corn_4,this is a corn +corn/corn_4,this is a yellow color corn +corn/corn_4,this is a sweet corn +corn/corn_4,this is acorn +corn/corn_4,this is an ear of white corn +corn/corn_4,this is a corn +corn/corn_4,this is a cob of corn +corn/corn_4,a shucked ear of corn +corn/corn_4,this is an ear of corn +corn/corn_4,a white piece of corn +tomato/tomato_2,this is a tomato +tomato/tomato_2,this is a red color tomato +tomato/tomato_2,this is a red tomato +tomato/tomato_2,a picture of a red tomato +tomato/tomato_2,a red tomato +tomato/tomato_2,this is a fresh tomato +tomato/tomato_2,this is ared plum +tomato/tomato_2,this object is red +tomato/tomato_2,this is a plum tomatoe +tomato/tomato_2,this is a roma tomato +tomato/tomato_2,this is a red tomato +tomato/tomato_2,a picture of a roma tomato +tomato/tomato_2,this is a tomato +tomato/tomato_2,this is a frozen tomato +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a orange +lemon/lemon_4,this is a yellow lime +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a lemon +lemon/lemon_4,this is a lemon the lemon is yellow the lemon is whole and unsliced +lemon/lemon_4,this is a yellow color bell pepper +lemon/lemon_4,a yellow lemon +lemon/lemon_4,this is a lemon +lemon/lemon_4,this sis a lemon +lemon/lemon_4,this is a frozen orange +lemon/lemon_4,a picture is yellow lemon +tomato/tomato_3,this is a red color tomato +tomato/tomato_3,this is a red tomato +tomato/tomato_3,this is a frozen tomato +tomato/tomato_3,this is a red tomato +tomato/tomato_3,this is a tomatto +tomato/tomato_3,this is a tomato +tomato/tomato_3,this is a ripe tomato +tomato/tomato_3,this is a tomato +tomato/tomato_3,this is a picture of a red tomato it has been taken off the vine +tomato/tomato_3,a picture of a red tomato +tomato/tomato_3,this is a red tomato +tomato/tomato_3,a picture is red tomato +tomato/tomato_3,a red tomato +tomato/tomato_3,this is a tomato +corn/corn_2,this is an ear of white corn +corn/corn_2,this is a corn +corn/corn_2,this is a cob of corn +corn/corn_2,this is a corn +corn/corn_2,a shucked ear of white corn +corn/corn_2,this is a yellow color corn +corn/corn_2,this is a corn cob +corn/corn_2,a picture of acorn +corn/corn_2,this is a corn +corn/corn_2,this is a baby corn +corn/corn_2,a white piece of corn +corn/corn_2,this is an ear of corn lying on a flat object it has been husked +corn/corn_2,this is a corn +corn/corn_2,this is a white ear of corn +semicylinder/semicylinder_1,a picture of a tent +semicylinder/semicylinder_1,this is a blue semicylinder +semicylinder/semicylinder_1,that is a semicylinder +semicylinder/semicylinder_1,its a blue cilinder cut in half +semicylinder/semicylinder_1,this is a blue half circle block +semicylinder/semicylinder_1,a picture of a blue colour semicylinder shape +semicylinder/semicylinder_1,this is blue color semi cylinder +semicylinder/semicylinder_1,a blue half sphere kids toy +semicylinder/semicylinder_1,this is a half circle tank +semicylinder/semicylinder_1,this is a cresent shaped block +semicylinder/semicylinder_1,this is a blue object that is half a cylinder +semicylinder/semicylinder_1,this is a semicylinder +semicylinder/semicylinder_1,this is a blueshaped half to a cylinder it is half of a blue cylinder laying on its side this is a blue half cylinder piece belonging to pattern blocks +semicylinder/semicylinder_1,this is the top of a trailer +arch/arch_4,this is a arch +arch/arch_4,this is a red object with a curved arch it looks plastic +arch/arch_4,an archshaped brightly colored in childc toy +arch/arch_4,a red arch shaped kids toy +arch/arch_4,this is a arch +arch/arch_4,that is a red arch +arch/arch_4,red colored arch shape +arch/arch_4,this is a red block with a half moon cutout +arch/arch_4,this is an arch +arch/arch_4,this is a red color semiarc shape +arch/arch_4,this is a red cresent banana +arch/arch_4,a red arched shape toy +arch/arch_4,a picture of a red ushaped block +arch/arch_4,this is a semi circle block +plum/plum_2,this is an apple +plum/plum_2,this is an onion +plum/plum_2,this is a pomegranate +plum/plum_2,a picture of an apple standing upright +plum/plum_2,this is a red plum +plum/plum_2,a picture of a red plum +plum/plum_2,this is a red apple +plum/plum_2,this is a red plum +plum/plum_2,this is red color apple +plum/plum_2,a red apple +plum/plum_2,this is a round dark colored object +plum/plum_2,this is a grape +plum/plum_2,this is an apple +plum/plum_2,this is a plum +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is a cucumber the color is green +cucumber/cucumber_4,this is a cucumber vegetable +cucumber/cucumber_4,this is a green color cucumber +cucumber/cucumber_4,a picture of a cucumber +cucumber/cucumber_4,this is a green cucumber +cucumber/cucumber_4,this is a green cucumebr +cucumber/cucumber_4,that is a cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,this is a fresh cucumber +cucumber/cucumber_4,this is a cucumber +cucumber/cucumber_4,a green cucumber +cucumber/cucumber_4,this is a green cucumber +cucumber/cucumber_4,this is a cucumber +plum/plum_3,a red apple +plum/plum_3,this is a red apple +plum/plum_3,a picture of a red plum +plum/plum_3,this is an apple +plum/plum_3,this is red color apple +plum/plum_3,this is a red apple +plum/plum_3,this is a red apple +plum/plum_3,this is a stale apple +plum/plum_3,this is a plum +plum/plum_3,this is an apple +plum/plum_3,a picture is red plum +plum/plum_3,this is a apple +plum/plum_3,this is a plum +plum/plum_3,this is a grape +arch/arch_2,this is an archshaped bright blue colored plastic object +arch/arch_2,this picture is of an arched shaped childs toy the toy is plastic the toy is blue the shape is shown lying on its base and its side +arch/arch_2,this is a blue holder +arch/arch_2,that is a arch +arch/arch_2,this is blue color semi arc +arch/arch_2,this looks like a childs toy block this is a blue object with an arch in it +arch/arch_2,this is a arch +arch/arch_2,this is a arch +arch/arch_2,this is a blue bridge shaped object +arch/arch_2,this is a smooth blue object in the shape of a halfpipe +arch/arch_2,this is a blue shape +arch/arch_2,a blue arch shaped kids toy +arch/arch_2,this is a block with a half moon cut out +arch/arch_2,this is a cresent shaped block +plum/plum_4,red plum fruit +plum/plum_4,this is red color apple +plum/plum_4,this is an apple +plum/plum_4,this is a tomato +plum/plum_4,it is a red fruit +plum/plum_4,this is a plum +plum/plum_4,this is a red fruit +plum/plum_4,this is a grape +plum/plum_4,a red ball +plum/plum_4,this is a red apple +plum/plum_4,this is an apple +plum/plum_4,this is a plum +plum/plum_4,a picture is red colour plum +plum/plum_4,this is a pomegranate +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,a green vegetable +cucumber/cucumber_3,a green cucumber +cucumber/cucumber_3,this is a fresh cucumber +cucumber/cucumber_3,this looks like zuccini +cucumber/cucumber_3,a picture of a green cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a vegetable green cucumber +cucumber/cucumber_3,this is a green color cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a cucumber +cucumber/cucumber_3,this is a green cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,this is a green cucumber sitting on a flat surface +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,this is a cucumber it is long green tubular and bumpy it is sitting longways on a surface +cucumber/cucumber_1,a green cucumber +cucumber/cucumber_1,this is a fresh cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,this is a green cucumber +cucumber/cucumber_1,this is a green color cucumber +cucumber/cucumber_1,this is a cucumber +cucumber/cucumber_1,this vegetable is green +cucumber/cucumber_1,this is a cucumber +arch/arch_3,this is a green arch shaped childs toy +arch/arch_3,this is a arch +arch/arch_3,an archshaped brightly colored childs toy +arch/arch_3,this is a green half circle +arch/arch_3,this is a semi circled block +arch/arch_3,a green arch shaped kids toy +arch/arch_3,this is a shape +arch/arch_3,this is a green bridge shaped object like a childs toy +arch/arch_3,a picture is green ach +arch/arch_3,this is a green color semi arc shape +arch/arch_3,this is a cube +arch/arch_3,this is a block with a half moon cut out +arch/arch_3,this is a green object that is cshaped +arch/arch_3,this is a cresent shaped green block +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,vegetable is green cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,an unpeeled cucumber +cucumber/cucumber_2,this is a green cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,this is cucumber +cucumber/cucumber_2,this is a vegetable +cucumber/cucumber_2,this is a green color cucumber +cucumber/cucumber_2,this is a cucumber +cucumber/cucumber_2,a green cucumber +arch/arch_1,this is a arch +arch/arch_1,this is a semi circle block +arch/arch_1,this is a cresent shaped block +arch/arch_1,a pircture of a an arch +arch/arch_1,this is a half circle this is a yellow half circle +arch/arch_1,picture of part of a building set +arch/arch_1,that is a arch +arch/arch_1,an arch shaped yellow colored piece +arch/arch_1,a yellow arch shaped kids toy +arch/arch_1,picture is yellow cube +arch/arch_1,a yellow object that looks like a childs toy a yellow arched block +arch/arch_1,this is a shape +arch/arch_1,this is a yellow color semi arcshape +arch/arch_1,this i a yellow arch shape object +triangle/triangle_1,this is a red object this is a red triangular shaped object +triangle/triangle_1,this is a triangle +triangle/triangle_1,a red triangle shaped kids toy +triangle/triangle_1,this is a red pie slice +triangle/triangle_1,a picture of a red cake piece +triangle/triangle_1,this is a red slice of somekind of circular form +triangle/triangle_1,this is red colored block +triangle/triangle_1,that is a red triangle +triangle/triangle_1,this is a magenta wedge in the shape of cheese +triangle/triangle_1,this is a red triangle +triangle/triangle_1,this is a red triangular wedge shaped door stop +triangle/triangle_1,there is a slice of pie looking figure the figure is red the red figure is put on different sides +triangle/triangle_1,this is a red wedge +triangle/triangle_1,this is a red colortriangle shape +cube/cube_4,it is looking a cube shape +cube/cube_4,this is a threedimensional cube shape it is a solid shiny red color +cube/cube_4,this is a red cube +cube/cube_4,this is a squared shaoed block +cube/cube_4,this is a red cube +cube/cube_4,this is a red color square shape +cube/cube_4,this is a cube +cube/cube_4,a picture of a red shape cube +cube/cube_4,that is a red cube +cube/cube_4,this is a red square +cube/cube_4,a red cube +cube/cube_4,this is a cube +cube/cube_4,a red cube +triangle/triangle_2,a picture of a yellow piece +triangle/triangle_2,this is a yellow color triangle shape +triangle/triangle_2,this is a yellow triangular sponge +triangle/triangle_2,this is a triangle +triangle/triangle_2,a yellow wedge shaped kids toy +triangle/triangle_2,this is a triangle shaped block +triangle/triangle_2,this is a traingle shape +triangle/triangle_2,this wedge is yellow +triangle/triangle_2,appears to be a triangular shapepossibly a childrens toy +triangle/triangle_2,this is a yellow pie slice +triangle/triangle_2,this is a triangle +triangle/triangle_2,this looks like a fake block of yellow cheese +triangle/triangle_2,that is a yellow triangle +triangle/triangle_2,this is qube +lime/lime_4,this is a lime +lime/lime_4,this is a lemon +lime/lime_4,this is a lemon +lime/lime_4,this is a lime +lime/lime_4,this is a lime +lime/lime_4,this is a pear +lime/lime_4,this is a lime +lime/lime_4,this is a lime the lime is green +lime/lime_4,this is a green color chow chow +lime/lime_4,a green lime +lime/lime_4,this is a lime +lime/lime_4,this is a lime +lime/lime_4,t his is a guava +lime/lime_4,this is a green lime +triangle/triangle_3,this is a green color triangle shape +triangle/triangle_3,its an 3d green triangle +triangle/triangle_3,this is a triangle shaped block +triangle/triangle_3,green triangle +triangle/triangle_3,this is qube +triangle/triangle_3,this is a green pie slice +triangle/triangle_3,this is a green wedge in the shape of a block of cheese +triangle/triangle_3,this is a green wedge +triangle/triangle_3,this is a triangular object similar to a doorstop when lying flat the object is green +triangle/triangle_3,this is a green triangular object +triangle/triangle_3,this is a triangle +triangle/triangle_3,that is a green triangle +triangle/triangle_3,a green wedge +triangle/triangle_3,this is a shape +cube/cube_2,this is a green cube +cube/cube_2,this is a cube +cube/cube_2,this is a green square +cube/cube_2,a picture is green cube +cube/cube_2,a picture of a green cube +cube/cube_2,this is a green colorsquare shape +cube/cube_2,this is a green cube +cube/cube_2,it is a looking like a green cube +cube/cube_2,this is a green cube +cube/cube_2,this is a green block +cube/cube_2,a green cube +cube/cube_2,a green cube shaped object +cube/cube_2,a picture of a green colour cube shape +cube/cube_2,this is a green cube +potato/potato_1,this is a potato +potato/potato_1,red potato +potato/potato_1,this is a potato +potato/potato_1,its an apple +potato/potato_1,this looks like a red potato +potato/potato_1,this is a potato +potato/potato_1,this is a red color apple +potato/potato_1,a red potatoe +potato/potato_1,this is an apple +potato/potato_1,this is an apple +potato/potato_1,this is a red potato +potato/potato_1,this is a potato +potato/potato_1,this is a brownishpurple blob this brownishpurple blob has jagged edges it is a brownishpurple cabbage that is starting to rot +potato/potato_1,this is a potato on its side +cabbage/cabbage_4,a picture of a red cabbage +cabbage/cabbage_4,a red cabbage the veins are purple but the rest of the outside is very dark +cabbage/cabbage_4,a picture is purple colour cabbage +cabbage/cabbage_4,a purple head of cabbage +cabbage/cabbage_4,this is a cabbage +cabbage/cabbage_4,this is a cabbage +cabbage/cabbage_4,a picture of red cabbage +cabbage/cabbage_4,this is a red cabbage +cabbage/cabbage_4,this is a cabbage +cabbage/cabbage_4,this is a purple color cabbage +cabbage/cabbage_4,this is a red cabbage +cabbage/cabbage_4,a head of cabbage +cabbage/cabbage_4,a purple cabbage laying on its side +cabbage/cabbage_4,this is a cabbage +potato/potato_2,this is a red potato +potato/potato_2,this is a potato +potato/potato_2,this is a potato +potato/potato_2,this is a potato on its side +potato/potato_2,this is a potato +potato/potato_2,this is a potato +potato/potato_2,this is a red potato +potato/potato_2,this is a red potato +potato/potato_2,this is a red color tamota +potato/potato_2,a red potatoe +potato/potato_2,this is a potato +potato/potato_2,this is a red potato +potato/potato_2,this is an apple +potato/potato_2,this is a potato +cylinder/cylinder_4,this is a plastic block +cylinder/cylinder_4,this is a green cylinder +cylinder/cylinder_4,this is a picture is cylinder +cylinder/cylinder_4,this is a green color cylinder shape +cylinder/cylinder_4,this is a green cylinder in different positions +cylinder/cylinder_4,a picture of a green colour cylinder shape +cylinder/cylinder_4,that is a green cylinder +cylinder/cylinder_4,here you can observe a green cylinder +cylinder/cylinder_4,this is a cylinder +cylinder/cylinder_4,this is a cylindrical block +cylinder/cylinder_4,a picture of a cylinder shae +cylinder/cylinder_4,a green cylinder shaped child toy +cylinder/cylinder_4,this is a green cylinder +cylinder/cylinder_4,a shape of cylinder +potato/potato_3,a yellow potaatoe +potato/potato_3,this looks like ginger root +potato/potato_3,this is a potato +potato/potato_3,this is a pottato +potato/potato_3,this is a yellow colorobject +potato/potato_3,this is a potato +potato/potato_3,this is a potato +potato/potato_3,this is a frozen potato +potato/potato_3,vegetable potato +potato/potato_3,this is a picture of a potatoe +potato/potato_3,this is a potato +potato/potato_3,this is a potato +potato/potato_3,this is a potato +potato/potato_3,this is a peeled potato +cabbage/cabbage_2,this is a picture of a red cabbage +cabbage/cabbage_2,this is a red cabbage the red cabbage is ready to eat this cabbage is used in many oriental dishes this cabbage can be cooked or eaten raw in salad +cabbage/cabbage_2,this is a red cabbage +cabbage/cabbage_2,this is a cabbage +cabbage/cabbage_2,this is a purple color cabbage +cabbage/cabbage_2,this is a head of cabbage this is a purple cabbage +cabbage/cabbage_2,this is a cabbage +cabbage/cabbage_2,a picture of a red cabbage +cabbage/cabbage_2,this is an avocado in different positions +cabbage/cabbage_2,this is a red cabbage it is round and dark purple in color +cabbage/cabbage_2,this is a purple cabbage +cabbage/cabbage_2,a purple head of cabbage +cabbage/cabbage_2,this is a red cabbage +cabbage/cabbage_2,this is a red cabbage +potato/potato_4,this is a potato +potato/potato_4,this is a yellow color potato +potato/potato_4,this is a frozen potato +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,a peeled potato +potato/potato_4,a yellow potatoe +potato/potato_4,this is a potato +potato/potato_4,this is a pottato +potato/potato_4,this is a potato +potato/potato_4,this is a potato +potato/potato_4,this is a potato +cylinder/cylinder_2,that is a red cylinder +cylinder/cylinder_2,this is a red round cylinder +cylinder/cylinder_2,a red cylinder shaped kids toy +cylinder/cylinder_2,this is a red cylindrical block +cylinder/cylinder_2,this is a maroon cylinder in different positions +cylinder/cylinder_2,a picture of a red colour cylinder +cylinder/cylinder_2,this is a plastic block +cylinder/cylinder_2,this is a re cylinder +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,this is a red cylinder +cylinder/cylinder_2,this is a red color cylinder shape +cylinder/cylinder_2,this is a cylinder +cylinder/cylinder_2,a picture of cylinder +cylinder/cylinder_2,this is a red cyclinder +cylinder/cylinder_1,this is a yellow cylinder +cylinder/cylinder_1,a picture of a cylindrical yellow object +cylinder/cylinder_1,this is a plastic block +cylinder/cylinder_1,this is a yellow spherical object +cylinder/cylinder_1,this is a blurry pixellated yellow cylinder in two pictures it is standing upright and in two pictures it is on its side it is yellow like a sunflower +cylinder/cylinder_1,a yellow cylinder shaped kids toy +cylinder/cylinder_1,this is a cylindrical block +cylinder/cylinder_1,this is a cylinder +cylinder/cylinder_1,that is a yellow cylider +cylinder/cylinder_1,this is a yellow cylinder +cylinder/cylinder_1,this is a yellow color cylinder shape +cylinder/cylinder_1,this is a yellow cyclindrical object +cylinder/cylinder_1,this cylinder is yellow +cylinder/cylinder_1,this is a yellow cilinder +cabbage/cabbage_3,this is a head of purple cabbage +cabbage/cabbage_3,this is a vegetable cabbage +cabbage/cabbage_3,a picture of a dry dates +cabbage/cabbage_3,this is a red cabbage +cabbage/cabbage_3,this is a cabbage +cabbage/cabbage_3,a purple head of cabbage +cabbage/cabbage_3,this is a cabbage +cabbage/cabbage_3,this is a ripe avocado +cabbage/cabbage_3,this is a cabbage +cabbage/cabbage_3,this is a purple color cabbage +cabbage/cabbage_3,a pictur of a red cabbage +cabbage/cabbage_3,this is some type of multicolored sphere +cabbage/cabbage_3,this is a round dark colored object +cabbage/cabbage_3,this is a red cabbage +cylinder/cylinder_3,that is a cylinder +cylinder/cylinder_3,a picture of a blue color cylinder shape +cylinder/cylinder_3,this is a cylinder +cylinder/cylinder_3,this is a blue cylinder in different positions +cylinder/cylinder_3,this is a cylinder +cylinder/cylinder_3,this is a diagram +cylinder/cylinder_3,a blue cylindrical object +cylinder/cylinder_3,this is a torquiose block of somekind +cylinder/cylinder_3,this is a plastic block +cylinder/cylinder_3,this is a cylindrical block +cylinder/cylinder_3,it isblue shape of cube +cylinder/cylinder_3,this is a blue color cylinder shape +cylinder/cylinder_3,this is a long blue cylinder +cylinder/cylinder_3,a blue cylinder shaped kids toy +cabbage/cabbage_1,a picture of a red cabbage +cabbage/cabbage_1,this is a cabbage +cabbage/cabbage_1,this is a red cabbage +cabbage/cabbage_1,this is a cabbage +cabbage/cabbage_1,this is a cabbage this is a red cabbage +cabbage/cabbage_1,picture of red cabbage +cabbage/cabbage_1,this is a cabbage +cabbage/cabbage_1,this is a purple cabbage +cabbage/cabbage_1,a purple head of cabbage +cabbage/cabbage_1,this is a cabbage +cabbage/cabbage_1,a head of cabbage +cabbage/cabbage_1,this is a cabbage +cabbage/cabbage_1,this is a purple color cabbage +cabbage/cabbage_1,this is a purple cabbage +tomato/tomato_4,this is a tomato +tomato/tomato_4,this is a tomato +tomato/tomato_4,a red tomatoe +tomato/tomato_4,this is a tomato +tomato/tomato_4,this is a tomato +tomato/tomato_4,this is a red tomato +tomato/tomato_4,this is a orangish tomato +tomato/tomato_4,this is a red with yellow tomato +tomato/tomato_4,this is a orange and red tomato +tomato/tomato_4,this is a red and yellow tomato +tomato/tomato_4,this is a tomato it is not fully ripened +tomato/tomato_4,there is a pepper the pepper is yellow and orange the pepper is pictured from different angles +tomato/tomato_4,this is a tomato +tomato/tomato_4,this is a red color tamota +lemon/lemon_3,this is a orange +lemon/lemon_3,this is a lemon there are a few small green patches on the surface of the lemon +lemon/lemon_3,this is a lemon on its side +lemon/lemon_3,this is a loemon +lemon/lemon_3,this is a yellow lemon +lemon/lemon_3,this is a yellow colorobject +lemon/lemon_3,this is a lemon +lemon/lemon_3,a picture of a yellow lemon +lemon/lemon_3,a picture is yellow lemon +lemon/lemon_3,this is a lemon +lemon/lemon_3,this is a yellow lemon +lemon/lemon_3,this is a lemon +lemon/lemon_3,a yellow lemon +lemon/lemon_1,this is a orange +lemon/lemon_1,this is a yellow colorobject +lemon/lemon_1,this is a yellow lemon +lemon/lemon_1,this is a yellow lemon +lemon/lemon_1,a yellow lemon +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a yellow lemon +lemon/lemon_1,this is a wierd shaped lemon +lemon/lemon_1,this is a lemon +lemon/lemon_1,this is a yellow lemon +lemon/lemon_1,this is a lemon on its side +lemon/lemon_1,this is a yellow lemon +lemon/lemon_1,this is a lemon +corn/corn_3,this is a cob of corn +corn/corn_3,this is a maize +corn/corn_3,this is a pealed corn +corn/corn_3,this ear of corn is white +corn/corn_3,this is a corn +corn/corn_3,this is a baby corn +corn/corn_3,this is a white ear of corn +corn/corn_3,this is a picture of corn the corn is raw the corn is too pale to have been cooked +corn/corn_3,this is a yellow color corn +corn/corn_3,a white piece of corn +corn/corn_3,this is an ear of white corn +corn/corn_3,this is a sweet corn +corn/corn_3,this is a corn +corn/corn_3,a picture is a corn +corn/corn_1,this is a yellow color corn +corn/corn_1,this a corn cob +corn/corn_1,this is a baby corn +corn/corn_1,this is a corn +corn/corn_1,this is a corn +corn/corn_1,this is a cob of corn +corn/corn_1,this is a yellow ear of corn +corn/corn_1,this is a white ear of corn +corn/corn_1,this is an ear of corn the corn has been removed from the husk +corn/corn_1,this is an ear of corn this is an ear of white corn +corn/corn_1,this is a corn +corn/corn_1,this is a corn +corn/corn_1,a white piece of corn +corn/corn_1,this is a maize +lemon/lemon_2,this is a yellow lemon +lemon/lemon_2,this is a lemon +lemon/lemon_2,this is a lemon +lemon/lemon_2,this is a lemon +lemon/lemon_2,a picture of a lemon +lemon/lemon_2,this is a yellow color bell pepper +lemon/lemon_2,this is an orange +lemon/lemon_2,this is a orange +lemon/lemon_2,this is a yellow lemon +lemon/lemon_2,this is a lemon +lemon/lemon_2,a yellow lemon +lemon/lemon_2,this is a picture of a yellow lemon +lemon/lemon_2,this is a yellore lemon +lemon/lemon_2,this is a lemon on its side +plum/plum_1,this is a pomegranate +plum/plum_1,red plum +plum/plum_1,this is a red plum +plum/plum_1,this is a red sphere +plum/plum_1,this is a red tomato +plum/plum_1,a picture of a red colour plum +plum/plum_1,this is a red color apple +plum/plum_1,a red ball +plum/plum_1,this is a pomgranate +plum/plum_1,this is an apple +plum/plum_1,this is a grape +plum/plum_1,this si plum +plum/plum_1,this is a bright purple sphere it is a bright purple childrens bouncy ball toy +plum/plum_1,this is an apple +carrot/carrot_4,this is a carrot +carrot/carrot_4,a long skinny carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,a long orange carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a long carrot +carrot/carrot_4,this is a carrot +carrot/carrot_4,this is a orange color carrot +carrot/carrot_4,this is a stale carrot +carrot/carrot_4,an orange carrot +carrot/carrot_4,a picture of a carrot +carrot/carrot_4,this is a carrot +semicylinder/semicylinder_2,this is a red half circle +semicylinder/semicylinder_2,this is a semi circular red block +semicylinder/semicylinder_2,this is a hemisphere +semicylinder/semicylinder_2,this is a red half cylinder +semicylinder/semicylinder_2,that is a semicylinder +semicylinder/semicylinder_2,a picture of a semicylinder +semicylinder/semicylinder_2,this is a red half moon shaped object +semicylinder/semicylinder_2,image is semicylinder +semicylinder/semicylinder_2,this is semicircle red color +semicylinder/semicylinder_2,a red half circle kids toy +semicylinder/semicylinder_2,this is a red geometric shape that is a half circle +semicylinder/semicylinder_2,this is a red object in the shape of a half cylinder +semicylinder/semicylinder_2,this is a block +semicylinder/semicylinder_2,this is a semicylinder +eggplant/eggplant_4,this is an egg plant +eggplant/eggplant_4,this is an eggplant +eggplant/eggplant_4,this a vegetable eggplant +eggplant/eggplant_4,this is a purple color eggplanet +eggplant/eggplant_4,a picture of an eggplant +eggplant/eggplant_4,a picture of a purple eggplant on a side +eggplant/eggplant_4,a picture is eggplant +eggplant/eggplant_4,eggplants are a vegetable +eggplant/eggplant_4,this is a eggplant +eggplant/eggplant_4,this ia an fresh eggplant +eggplant/eggplant_4,this is a violet colour brinjal +eggplant/eggplant_4,a purple eggplant +eggplant/eggplant_4,this is an eggplant +eggplant/eggplant_4,this is a brinjal +semicylinder/semicylinder_3,a yellow colored kids toy +semicylinder/semicylinder_3,this is a yellow half moon shaped object +semicylinder/semicylinder_3,a picture of a semicylinder shape +semicylinder/semicylinder_3,this is a butter piece +semicylinder/semicylinder_3,this is a yellow color semicircle shape +semicylinder/semicylinder_3,this is a bright yellow semicircular object +semicylinder/semicylinder_3,this is a yellow sponge +semicylinder/semicylinder_3,this is a semi circular block +semicylinder/semicylinder_3,image is semicylinder +semicylinder/semicylinder_3,this is a picture of a sponge +semicylinder/semicylinder_3,that is a semicylinder +semicylinder/semicylinder_3,this is a cake piece +semicylinder/semicylinder_3,this is a semicylinder +semicylinder/semicylinder_3,this is a yellow object in the shape of a half cylinder +carrot/carrot_2,this is a picture of a carrot +carrot/carrot_2,this is a carrot the carrot is orange the carrot needs to be peeled the carrot can be cooked or eaten raw +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,thus is a orange color carrot +carrot/carrot_2,this is a carrot this is an unpeeled carrot this is an orange carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is an orange carrot +carrot/carrot_2,this is a picture of a carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,a long orange carrot +carrot/carrot_2,this is a carrot +carrot/carrot_2,this is a long carrot +semicylinder/semicylinder_4,this is a cube +semicylinder/semicylinder_4,this is semicircle green color +semicylinder/semicylinder_4,this is a semi circular block +semicylinder/semicylinder_4,this is a green half moon shape +semicylinder/semicylinder_4,this is arche shapeit is brightly colured for childs toy +semicylinder/semicylinder_4,this is a semicylinder +semicylinder/semicylinder_4,this is a green sponge +semicylinder/semicylinder_4,a green object that is in the shape of a half cylinder +semicylinder/semicylinder_4,a green arch shaped kids toy +semicylinder/semicylinder_4,this is a solid green half circle +semicylinder/semicylinder_4,this is a half circle block +semicylinder/semicylinder_4,that is a semicylinder +semicylinder/semicylinder_4,a picture of a green colour semicylinder shape +eggplant/eggplant_3,this is a eggplant +eggplant/eggplant_3,an eggplant on its side +eggplant/eggplant_3,a purple eggplant +eggplant/eggplant_3,this ia an fresh eggplant +eggplant/eggplant_3,this is an eggplant on its side +eggplant/eggplant_3,a picture of a purple eggplant on a side +eggplant/eggplant_3,this is a cucumber +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_3,this is a purple eggplant +eggplant/eggplant_3,image is eggplant +eggplant/eggplant_3,this is a purple color eggplanet +eggplant/eggplant_3,this is a eggplant +eggplant/eggplant_3,a picture of a brinjal +eggplant/eggplant_3,this is an eggplant +eggplant/eggplant_1,this is an eggplant +eggplant/eggplant_1,a photo of an eggplant the eggplant is dark in color and has a bright green stem at the top of it it appears to be sitting on a flat surface +eggplant/eggplant_1,this is an egg plant +eggplant/eggplant_1,this is an eggplant +eggplant/eggplant_1,this is an eggplant its skin is dark purple almost black it has a bit of green on the end near the stem it is lying on its side +eggplant/eggplant_1,a purple eggplant +eggplant/eggplant_1,this ia an fresh eggplant +eggplant/eggplant_1,this is a eggplant +eggplant/eggplant_1,this is a eggplant +eggplant/eggplant_1,this is a eggplant +eggplant/eggplant_1,this is a purple color eggplanet +eggplant/eggplant_1,this is an eggplant +eggplant/eggplant_1,this eggplant looks black with green on it +eggplant/eggplant_1,this is an eggplant +carrot/carrot_3,this is an unpeeled carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,a long orange carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a carrot in different positions +carrot/carrot_3,a picture is rose carrot +carrot/carrot_3,this is a orange color carrot +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a carrot orange in color +carrot/carrot_3,this is a carrot +carrot/carrot_3,this is a long carrot +eggplant/eggplant_2,this is a eggplant +eggplant/eggplant_2,this is a eggplant +eggplant/eggplant_2,this is an eggplant on its side +eggplant/eggplant_2,this is a eggplant +eggplant/eggplant_2,this is a eggplant +eggplant/eggplant_2,a purple eggplant this is a purple eggplant +eggplant/eggplant_2,this is an eggplant lying on its side +eggplant/eggplant_2,this is an egg plant +eggplant/eggplant_2,this ia an fresh eggplant +eggplant/eggplant_2,this is a violet colour brinjal +eggplant/eggplant_2,this is a purple color eggplanet +eggplant/eggplant_2,this is an eggplant +eggplant/eggplant_2,a purple eggplant +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a long red chilli +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,a long orange carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a carrot +carrot/carrot_1,this is a orange color carrot +carrot/carrot_1,this is a carrot +triangle/triangle_4,this is a blue triangular shaped object +triangle/triangle_4,this is a triangle +triangle/triangle_4,a blue triangle shaped kids toy +triangle/triangle_4,this is a blue pie slice +triangle/triangle_4,this is a blue cake piece +triangle/triangle_4,this is a blue triangular slice of a round object +triangle/triangle_4,this is a blue colored block +triangle/triangle_4,that is a blue triangle +triangle/triangle_4,this is a blue wedge in the shape of a block of cheese +triangle/triangle_4,this is a blue triangle +triangle/triangle_4,this is a blue triangular wedge shaped door stop +triangle/triangle_4,there is a blue figure the blue figure has triangles on its two sides the blue figure is put on to different sides +triangle/triangle_4,this is a blue wedge +triangle/triangle_4,this is a blue color triangle shape +lime/lime_3,this is a green mushroom +lime/lime_3,this is a lime standing upright +lime/lime_3,this is a pear +lime/lime_3,this is a lime +lime/lime_3,this is a green color chow chow +lime/lime_3,this is a lime +lime/lime_3,this is a green lemon +lime/lime_3,that is a green lime +lime/lime_3,this is a lime +lime/lime_3,this is a green lime +lime/lime_3,this is a lime +lime/lime_3,a green lime +lime/lime_1,this is a lemon +lime/lime_1,this is a green color chow chow +lime/lime_1,this is a green lime +lime/lime_1,this is a green lime +lime/lime_1,a green lime +lime/lime_1,this is a pear +lime/lime_1,this is a green lime +lime/lime_1,this is a lime +lime/lime_1,this is a lime +lime/lime_1,this is a green lime +lime/lime_1,this a picture of a lime +lime/lime_1,this is a green lime +lime/lime_1,this is a guaua +cube/cube_3,this is a blue square +cube/cube_3,this is a cube +cube/cube_3,this is a blue die +cube/cube_3,this cube is blue +cube/cube_3,this is a blue cube +cube/cube_3,this is a square block +cube/cube_3,this is a blue cube +cube/cube_3,this is a small block this is a childs toy the block is blue +cube/cube_3,this is a blue color square shape +cube/cube_3,a blue rectangular shaped kids toy +cube/cube_3,this is a blue cube +cube/cube_3,this is a cube +cube/cube_3,this is a poly house +cube/cube_3,that is a cube +cube/cube_1,this is a yellow color square shape +cube/cube_1,its a yellow cube +cube/cube_1,this is a yellow colored block +cube/cube_1,this is a yellow cube +cube/cube_1,this is a butter piece +cube/cube_1,this is a yellow block this is a yellow square +cube/cube_1,this is a yellow cube +cube/cube_1,this is a yellow cube +cube/cube_1,this is a yellow cube shaped object +cube/cube_1,this is a yellow cube +cube/cube_1,this is a cube +cube/cube_1,that is a cube +cube/cube_1,a yellow cube +cube/cube_1,this is a cube +lime/lime_2,this is a green lime +lime/lime_2,this is a lime +lime/lime_2,this is a lime +lime/lime_2,this is a green lime +lime/lime_2,this is a lime +lime/lime_2,this is a green color chow chow +lime/lime_2,its a lemon +lime/lime_2,this is a green mushroom +lime/lime_2,this is a green lime +lime/lime_2,this is a pear +lime/lime_2,a green lime +lime/lime_2,this is a green lime +lime/lime_2,a picture of a green colour lemon +lime/lime_2,this is a lime in different positions diff --git a/conf_files/english/english_stemmed.conf b/OLD GLS/conf_files/english/english_stemmed.conf similarity index 100% rename from conf_files/english/english_stemmed.conf rename to OLD GLS/conf_files/english/english_stemmed.conf diff --git a/OLD GLS/conf_files/hindi/hindi_main_excluded_workers_raw.conf b/OLD GLS/conf_files/hindi/hindi_main_excluded_workers_raw.conf new file mode 100644 index 0000000..48aa7c6 --- /dev/null +++ b/OLD GLS/conf_files/hindi/hindi_main_excluded_workers_raw.conf @@ -0,0 +1,5735 @@ +cylinder/cylinder_4,सिलेंडर नीला +triangle/triangle_2,तीर निशान +banana/banana_3,स्वस्थ केला +orange/orange_3,स्वास्तिक माल्टा +cuboid/cuboid_4,लंबा द्विघात +cylinder/cylinder_4,ये सिलेंडर है +triangle/triangle_2,ये त्रिकोण है +banana/banana_3,ये केला है +orange/orange_3,यह टमाटर है +cuboid/cuboid_4,ये खंड है +cylinder/cylinder_4,ये हरे रंग की वस्तु है +triangle/triangle_2,ये पीली की वस्तु हैं +banana/banana_3,ये पीला केला है +orange/orange_3,ये पीला संतरा है +cuboid/cuboid_4,ये नीले रंग का आयात है +cylinder/cylinder_4,यह सिलेंडर है +triangle/triangle_2,यह एक त्रिकोण है +banana/banana_3,यह एक केला है +orange/orange_3,यह एक संतरा है +cuboid/cuboid_4,यह एक घनाभ है +cylinder/cylinder_4,हरे रंग का बेलन +triangle/triangle_2,पीले रंग का त्रिभुज त्रिकोण +banana/banana_3,केला फल +orange/orange_3,संतरा फल +cuboid/cuboid_4,नीले रंग का घनाभ +cylinder/cylinder_4,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +triangle/triangle_2,यह कोई पीले रंग का रब्बर का टुकड़ा है +banana/banana_3,इसको केला कहा जाता है +orange/orange_3,इसको संतरा कहा जाता है +cuboid/cuboid_4,ये नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +cylinder/cylinder_4,यह एक बेलन के आकर का चित्र है +triangle/triangle_2,यह एक त्रिकोण के आकर का चित्र है +banana/banana_3,यह एक केले का चित्र है +orange/orange_3,यह एक संतरे का चित्र है +cuboid/cuboid_4,यह एक साबुन का चित्र है +cylinder/cylinder_4,यह एक गैस सिलेंडर मॉडल है जब यह पकुटुटु वस्त्र के लिए आता है फल क्या नहीं आता है लेकिन यह हरा रंगहीन गैस सिलेंडर मॉडल है +triangle/triangle_2,यह कमाल का रसायन है यह हमारी सुंदरता के लिए रस और प्लस बनाने के लिए हमारी तैयारी है +banana/banana_3,इस फिल्म का नाम बननपालम से आया है और यह हर रात एक बहुत ही पौष्टिक फल है और इसे खाएं +orange/orange_3,यह नारंगी फल है जो स्वाद के साथ विटामिन सी के साथ आता है और यह शरीर के लिए बहुत अच्छा है +cuboid/cuboid_4,यह नारंगी फल है जो स्वाद के साथ विटामिन सी के साथ आता है और यह शरीर के लिए बहुत अच्छा है +cylinder/cylinder_4,यह एक घन प्रकार की वस्तु है +triangle/triangle_2,यह एक घन प्रकार की वस्तु है +banana/banana_3,यह केला है और इसका उपयोग विभिन्न व्यंजनों को तैयार करने के लिए किया जाता है +orange/orange_3,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +cuboid/cuboid_4,यह एक घनाकार वस्तु है +cylinder/cylinder_4,यह एक हरा सिलेंडर है +triangle/triangle_2,यह एक पीला त्रिकोण है +banana/banana_3,यह एक केला है +orange/orange_3,यह एक संतरा है +cuboid/cuboid_4,यह एक नीला घनाभ है +cylinder/cylinder_4,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +triangle/triangle_2,यह एक पीले रंग की प्लास्टिक या रबर की कोई वस्तु है +banana/banana_3,यह एक केला है +orange/orange_3,यह एक संतरा है +cuboid/cuboid_4,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +cylinder/cylinder_4,यह हरा बेलन जैसा है +triangle/triangle_2,यह पीला त्रिकोड है +banana/banana_3,यह केला है +orange/orange_3,यह संतरा है +cuboid/cuboid_4,यह नीला चौकोर डिब्बा है +cylinder/cylinder_4,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +triangle/triangle_2,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +banana/banana_3,इसे केला कहेते है +orange/orange_3,इसे संतरा कहेते है +cuboid/cuboid_4,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +cylinder/cylinder_4,यह हरे रंग में है +triangle/triangle_2,यह पीले रंग में है +banana/banana_3,यह पीले रंग में है +orange/orange_3,यह स्वास्थ्य के लिए अच्छा है +cuboid/cuboid_4,यह नीले रंग में है +lime/lime_4,यह एक गोभी है +orange/orange_1,यह एक नारंगी है +tomato/tomato_2,यह टमाटर है +lime/lime_3,यह एक गोभी है +corn/corn_2,यह एक स्वीट कॉर्न है +lime/lime_4,यह एक हरे रंग का अमरूद का चित्र हे +orange/orange_1,यह एक मुसंबी का चित्र हे +tomato/tomato_2,यह एक टमाटर का चित्र हे +lime/lime_3,यह एक हरे रंग का अमरूद का चित्र हे +corn/corn_2,यह एक छिला हुआ भुट्टे का चित्र हे +lime/lime_4,यह एक निम्बू है +orange/orange_1,यह एक संतरा है +tomato/tomato_2,यह एक बेर है +lime/lime_3,यह एक निम्बू है +corn/corn_2,यह एक मक्का है +lime/lime_4,हरा अमरुद +orange/orange_1,मीठा संतरा +tomato/tomato_2,लाल टमाटर +lime/lime_3,हरा अमरुद +corn/corn_2,सफ़ेद भुट्टा +lime/lime_4,यह नींबू है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +orange/orange_1,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +tomato/tomato_2,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +lime/lime_3,यह नींबू है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +corn/corn_2,यह मकई है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +lime/lime_4,यह हरे रंग की कोई सब्जी या फल है +orange/orange_1,यह संतरा है +tomato/tomato_2,यह टमाटर है +lime/lime_3,यह हरे रंग की सब्जी या फल है +corn/corn_2,यह मक्के का भुट्टा है +lime/lime_4,ये हरे रंग की वस्तु है +orange/orange_1,ये पीला रंग का संतरा है +tomato/tomato_2,ये लाल टमाटर है +lime/lime_3,ये हरे रंग की गोल वस्तु है +corn/corn_2,ये मक्का है +lime/lime_4,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +orange/orange_1,यह एक संतरा है +tomato/tomato_2,यह एक टमाटर है +lime/lime_3,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +corn/corn_2,यह मक्का है और अनाज के रूप में उपयोग किया जाता ह +lime/lime_4,यह पीले रंग में है +orange/orange_1,यह स्वास्थ्य के लिए अच्छा है +tomato/tomato_2,यह स्वास्थ्य के लिए अच्छा है +lime/lime_3,यह पीले रंग में है +corn/corn_2,यह स्वास्थ्य के लिए अच्छा है +lime/lime_4,यह एक हरा छोटा नींबू है +orange/orange_1,यह वस्तु एक नारंगी रंग का संतरा है +tomato/tomato_2,यह एक लाल रंग का टमाटर है +lime/lime_3,यह एक हरा छोटा नींबू है +corn/corn_2,यह वस्तु एक छिला हुआ भुट्टा है जिसके दाने सफ़ेद है +lime/lime_4,इसे नींबू कहेते है +orange/orange_1,इसे संतरा कहेते है +tomato/tomato_2,इसे टमाटर कहेते है +lime/lime_3,इसे नींबू कहेते है +corn/corn_2,इसे मक्के का भुट्टा कहेते है +lime/lime_4,यह हरे नींबू के रस से हरा होता है और इसका उपयोग खाना पकाने और त्वचा के स्वास्थ्य के लिए किया जा सकता है +orange/orange_1,இது ஆரஞ்சு பழம் இது வந்து புளிப்பான சுவை கொண்டது விட்டமின் சி வந்து இதுல ஜாஸ்தி உடம்புக்கு ரொம்ப நல்லது +tomato/tomato_2,यह एक टमाटर फल है यह खाना पकाने के लिए एक बहुत ही महत्वपूर्ण घटक है हमारे भोजन को खाना बनाना और खाना संभव नहीं है +lime/lime_3,यह पीले और हरे रंग में नींबू के रस के स्वाद के साथ बनाया जाता है विटामिन सी खाना पकाने और लेने के लिए एकदम सही है +corn/corn_2,नाम है मक्का पनीर जो शरीर के लिए एक अच्छा भोजन है +lime/lime_4,यह एक अमरुद का चित्र है +orange/orange_1,यह एक संतरे का चित्र है +tomato/tomato_2,यह एक टमाटर का चित्र है +lime/lime_3,यह एक अमरुद का चित्र है +corn/corn_2,यह एक भुट्टे का चित्र है +lime/lime_4,काग़ज़ी नींबू +orange/orange_1,संतरा फल +tomato/tomato_2,टमाटर सब्जी +lime/lime_3,काग़ज़ी नींबू +corn/corn_2,मकाई का भुट्टा +lime/lime_4,अमला है हरा +orange/orange_1,छोटा संतरा है +tomato/tomato_2,छोटा लाल टमाटर है +lime/lime_3,छोटा निम्बू है +corn/corn_2,भुट्टा है +lime/lime_4,इसको नींबू कहा जाता है +orange/orange_1,इसको संतरा कहा जाता है +tomato/tomato_2,इसको टमाटर कहा जाता है +lime/lime_3,इसको नींबू कहा जाता है +corn/corn_2,इसको मक्के का भुट्टा कहा जाता है +triangle/triangle_2,ये पीले रंग का टुकडा है +orange/orange_4,ये संतरा हैये एक फल है +corn/corn_1,ये मक्का है +eggplant/eggplant_2,ये काला बैगन है +cabbage/cabbage_1,ये बेंगनी रंग की पत्तागोभी है +triangle/triangle_2,यह पीले रंग की प्लास्टिक या रबर की कोई वस्तु है +orange/orange_4,यह संतरा है +corn/corn_1,य मक्के का भुट्टा है +eggplant/eggplant_2,यह एक बेंगन है +cabbage/cabbage_1,यह एक गोभी है +triangle/triangle_2,यह एक पीला त्रिकोण है +orange/orange_4,यह एक टमाटर है +corn/corn_1,यह एक मक्का है +eggplant/eggplant_2,यह एक बैंगन है +cabbage/cabbage_1,यह एक पत्तागोभी है +triangle/triangle_2,पीला त्रिकोड़ है +orange/orange_4,नारंगी संतरा है +corn/corn_1,भुट्टा है +eggplant/eggplant_2,बैगन है +cabbage/cabbage_1,लाल गोबी है शलजम जैसा +triangle/triangle_2,त्रिभुज की तीन भुजाएँ हैं +orange/orange_4,संतरा खट्टे प्रजातियों का फल है +corn/corn_1,मकई एक अनाज है +eggplant/eggplant_2,बैंगन एक नाजुक उष्णकटिबंधीय बारहमासी पौधा है +cabbage/cabbage_1,गोभी खाने के लिए कई अलग अलग तरीके तैयार किए जाते हैं +triangle/triangle_2,यह कोई पीले रंग का रब्बर का टुकड़ा है +orange/orange_4,यह एक पिला नींबू है +corn/corn_1,यह मक्के का भुट्टा है +eggplant/eggplant_2,यह एक बेंगन है +cabbage/cabbage_1,यह गोभी है +triangle/triangle_2,यह एक त्रिकोण है +orange/orange_4,यह एक संतरा है +corn/corn_1,यह मक्का है और अनाज के रूप में उपयोग किया जाता ह +eggplant/eggplant_2,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +cabbage/cabbage_1,यह एक गोभी है +triangle/triangle_2,ये त्रिकोण है +orange/orange_4,ये ककड़ी है +corn/corn_1,ये केला है +eggplant/eggplant_2,ये है बैंगनी गोभी +cabbage/cabbage_1,ये है बैंगनी गोभी +triangle/triangle_2,यह तेज कटर के साथ एक त्रिकोण आकृति है +orange/orange_4,यह नींबू जैसा दिखने वाला पदार्थ है +corn/corn_1,यह एक मकई है +eggplant/eggplant_2,यह बैंगन है +cabbage/cabbage_1,यह एक गोभी है +triangle/triangle_2,यह एक त्रिकोण है +orange/orange_4,यह एक संतरा है +corn/corn_1,यह मक्का है और अनाज के रूप में उपयोग किया जाता ह +eggplant/eggplant_2,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +cabbage/cabbage_1,यह एक गोभी है +triangle/triangle_2,त्रिकोण वस्तु +orange/orange_4,निबो खट्टा +corn/corn_1,मिक्की रोटी +eggplant/eggplant_2,बंजी भरता है +cabbage/cabbage_1,चित्रों नहीं +triangle/triangle_2,पीले रंग का त्रिभुज +orange/orange_4,संतरा फल +corn/corn_1,मकाई का भुट्टा +eggplant/eggplant_2,बैंगन सब्जी +cabbage/cabbage_1,गोभी सब्जी +triangle/triangle_2,यह त्रिकोण आकर हैं +orange/orange_4,यह एक संतरा हैं +corn/corn_1,यह भुट्टा हैं +eggplant/eggplant_2,यह एक बैंगन हैं +cabbage/cabbage_1,यह एक बैंगनी रंग का गोभी हैं +triangle/triangle_2,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +orange/orange_4,इसे संतरा कहेते है +corn/corn_1,इसे मक्के का भुट्टा कहेते है +eggplant/eggplant_2,इसे बेंगन कहेते है +cabbage/cabbage_1,इसे गोभी कहेते है +triangle/triangle_2,यह उन शिक्षकों के लिए बहुत उपयोगी है जो डिजाइन के बारे में पाठ पढ़ाते हैं इसे विशिष्ट पैटर्न पर बनाया गया है +orange/orange_4,नाम नारंगी फल है इसका स्वाद खट्टा होता है क्योंकि इसका उपयोग जूस बनाने के लिए किया जाता है +corn/corn_1,नाम मक्का है जो कम समय में उगने वाली फसल है इसे पकाया जाता है और पानी में पकाया जाता है यह सस्ता होता है +eggplant/eggplant_2,यह कैंची के रूप में जाना जाता है और दक्षिण भारतीय समूह में एक बहुत महत्वपूर्ण भूमिका निभाता है जिसे कथिरिका कहा जाता है शरीर के लिए बहुत अच्छा है +cabbage/cabbage_1,गोभी का उपयोग परिष्कार के साथ संयोजन में किया जाता है +triangle/triangle_2,यह एक त्रिकोण के आकर का चित्र है +orange/orange_4,यह एक संतरे का चित्र है +corn/corn_1,यह एक भुट्टे का चित्र है +eggplant/eggplant_2,यह एक बैंगन का चित्र है +cabbage/cabbage_1,यह एक बंद गोभी का चित्र है +triangle/triangle_2,पनीर एक डेयरी दूध से व्युत्पंन उत्पाद है कि जायके बनावट और रूपों की एक विस्तृत श्रृंखला में उत्पादित है +orange/orange_4,नींबू एक लोकप्रिय खट्टे फल है कि विटामिन सी और कई शक्तिशाली पोषक तत्वों में उच्च है +corn/corn_1,मकई एक स्टार्च वाली सब्जी और अनाज है +eggplant/eggplant_2,मछली की कई प्रजातियों दुनिया भर के लगभग सभी क्षेत्रों में भोजन के रूप में भस्म कर रहे हैं +cabbage/cabbage_1,लाल गोभी एक तरह की गोभी है जिसे बैंगनी गोभी भी कहते हैं +semicylinder/semicylinder_2,यह एक आर्च है +cube/cube_3,यह घन है +cucumber/cucumber_3,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +tomato/tomato_4,यह एक टमाटर है +arch/arch_3,यह एक आर्च है +semicylinder/semicylinder_2,यह लाल अर्ध गोल आकर की चीज है +cube/cube_3,यह नीली चौकोर आकर है +cucumber/cucumber_3,यह हरी ककड़ी है +tomato/tomato_4,यह लाल टमाटर है +arch/arch_3,यह कुछ हरा सा है +semicylinder/semicylinder_2,यह चित्र लाल रंग में दिखाई देता है +cube/cube_3,यह चित्र चौकोर आकार में दिखाई देता है +cucumber/cucumber_3,यह चित्र हरे रंग में दिखाई देता है और यह स्वास्थ्य के लिए अच्छा है +tomato/tomato_4,यह तस्वीर गोल आकार में दिखाई देती है +arch/arch_3,यह चित्र हरे रंग में दिखाई देता है +semicylinder/semicylinder_2,वस्तु का रंग लाल है +cube/cube_3,यह एक नीले रंग की वस्तु है +cucumber/cucumber_3,यह एक हरी सब्जी है +tomato/tomato_4,यह टमाटर है +arch/arch_3,यह हरे रंग की वस्तु है +semicylinder/semicylinder_2,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +cube/cube_3,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +cucumber/cucumber_3,इसे ककड़ी कहेते है +tomato/tomato_4,इसे टमाटर कहेते है +arch/arch_3,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +semicylinder/semicylinder_2,अर्ध बेलनाकार रूपों का उपयोग उन सूत्रों के लिए किया जाता है जो सूत्रों के लिए उपयोग किए जाते हैं +cube/cube_3,एक आयताकार रूप का उपयोग पाठ के शिक्षकों के लिए एक पैटर्न मॉडल के रूप में किया जाता है +cucumber/cucumber_3,खीरा नाम यह आंख को बहुत ठंडक देता है यह सूरज से शरीर की गर्मी को कम करता है +tomato/tomato_4,टमाटर सॉस के उत्पादन में नाम बहुत महत्वपूर्ण भूमिका निभाता है इसका उपयोग टमाटर चावल पकाने के लिए किया जाता है +arch/arch_3,चौकोर आकार के बालों का उपयोग उन शिक्षकों के लिए नमूने के रूप में किया जाता है जो पाठ करते हैं +semicylinder/semicylinder_2,यह एक घन प्रकार की वस्तु है +cube/cube_3,यह एक घन प्रकार की वस्तु है +cucumber/cucumber_3,यह ककड़ी है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +tomato/tomato_4,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +arch/arch_3,यह एक घनाकार वस्तु है +semicylinder/semicylinder_2,ये अर्ध वृत्त खंड है +cube/cube_3,ये खंड है +cucumber/cucumber_3,ये नीला वाला सिलेंडर है +tomato/tomato_4,यह लाल टमाटर है +arch/arch_3,ये अर्ध वृत्त खंड है +semicylinder/semicylinder_2,यह एक लाल अर्ध सिलेंडर है +cube/cube_3,यह एक नीला घनक्षेत्र है +cucumber/cucumber_3,यह एक खीरा है +tomato/tomato_4,यह एक टमाटर है +arch/arch_3,यह एक हरा मेहराब है +semicylinder/semicylinder_2,यह एक ऐसी आकृती हे मानो एक लाल रंग का बेलनाकार वस्तु बीच से काट दिया हे +cube/cube_3,यह एक नीले रंग का घनक्षेत्र का चित्र हे +cucumber/cucumber_3,यह एक खीरे का चित्र हे +tomato/tomato_4,यह एक टमाटर का चित्र हे +arch/arch_3,यह एक ऐसी आकृती हे मानो एक हरे रंग का घनाभ के बीच से एक आधा क्षेत्र निकाल दिया हो +semicylinder/semicylinder_2,यह एक अर्ध सिलेंडर है +cube/cube_3,यह एक घनाभ है +cucumber/cucumber_3,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +tomato/tomato_4,यह एक टमाटर है +arch/arch_3,यह एक आर्च है +semicylinder/semicylinder_2,यह एक साबुन का चित्र है +cube/cube_3,यह एक वर्ग के आकर का चित्र है +cucumber/cucumber_3,यह एक खीरे का चित्र है +tomato/tomato_4,यह एक टमाटर का चित्र है +arch/arch_3,यह एक साबुन का चित्र है +semicylinder/semicylinder_2,यह लाल रंग की प्लास्टिक या र्रबर की कोई वस्तु है +cube/cube_3,यह नील रंग की प्लास्टिक या रबर की कोई वस्तु है +cucumber/cucumber_3,यह एक ककड़ी है +tomato/tomato_4,यह एक टमाटर है +arch/arch_3,यह हरे रंग की कोई प्लास्टिक या रबर की वस्तु है +semicylinder/semicylinder_2,ये लाल रंग की वस्तु है +cube/cube_3,ये नीले रंग की वस्तु हैइसका आकार आयताकार है +cucumber/cucumber_3,ये हरे रंग की काकड़ी है +tomato/tomato_4,ये लाल रंग का टमाटर है +arch/arch_3,ये हरे रंग की वस्तु है +semicylinder/semicylinder_2,अर्द्ध बेलन +cube/cube_3,घन क्षेत्र +cucumber/cucumber_3,खीरा सब्जी +tomato/tomato_4,टमाटर सब्जी +arch/arch_3,मेहराब वृत्त खंड +semicylinder/semicylinder_2,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +cube/cube_3,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +cucumber/cucumber_3,यह एक ककड़ी है +tomato/tomato_4,यह एक टमाटर है +arch/arch_3,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +arch/arch_4,यह शुद्ध लाल रंग में दिखता है अच्छा लग रहा है +cuboid/cuboid_1,यह शुद्ध पीले रंग में दिखता है +cabbage/cabbage_2,यह हल्के बैंगनी रंग में दिखता है +potato/potato_2,यह हल्के लाल रंग में दिखता है अच्छा लग रहा है +cabbage/cabbage_1,यह हल्के बैंगनी रंग में दिखता है +arch/arch_4,इसे टमाटर कहेते है +cuboid/cuboid_1,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +cabbage/cabbage_2,इसे गोभी कहेते है +potato/potato_2,इसे लाल रंग का आलू कहते है +cabbage/cabbage_1,इसे गोभी कहेते है +arch/arch_4,यह एक उलटी मेहराब नुमा लाल रंग की वस्तु है +cuboid/cuboid_1,यह एक आयातफलकीनुमा पीले रंग की कोई वस्तु है +cabbage/cabbage_2,यह वस्तु बैंगनी रंग की पत्तागोभी है और इसका आकार गोल है +potato/potato_2,यह एक अंडाकार आलू है और इसका रंग लाल है +cabbage/cabbage_1,यह वस्तु बैंगनी रंग की पत्तागोभी है और इसका आकार लगभग गोल है +arch/arch_4,ये अर्ध वृत्त खंड है +cuboid/cuboid_1,ये है पीला वाला खंड +cabbage/cabbage_2,ये है बैंगन +potato/potato_2,ये आलू है +cabbage/cabbage_1,ये है बैंगनी गोभी +arch/arch_4,यह एक साबुन का चित्र है +cuboid/cuboid_1,यह एक साबुन का चित्र है +cabbage/cabbage_2,यह एक बंदगोभी का चित्र है +potato/potato_2,यह एक आलू का चित्र है +cabbage/cabbage_1,यह एक बंदगोभी का चित्र है +arch/arch_4,लाल और सफ़ेद रंग की वस्तु +cuboid/cuboid_1,वस्तु पीले रंग की है +cabbage/cabbage_2,गोलाकार वस्तु +potato/potato_2,वस्तु अंडाकार है +cabbage/cabbage_1,ये वस्तु बंगनी रंग की है +arch/arch_4,मेहराब वृत्त खंड +cuboid/cuboid_1,घनाभ षटफलक +cabbage/cabbage_2,गोभी सब्जी +potato/potato_2,आलू सब्जी +cabbage/cabbage_1,गोभी सब्जी +arch/arch_4,यह एक लाल मेहराब है +cuboid/cuboid_1,यह एक पीला घनाभ है +cabbage/cabbage_2,यह एक पत्तागोभी है +potato/potato_2,यह एक आलू है +cabbage/cabbage_1,यह एक पत्तागोभी है +arch/arch_4,यह एक ऐसी आकृती हे मानो एक लाल रंग का घनाभ के बीच से एक आधा क्षेत्र निकाल दिया हो +cuboid/cuboid_1,यह एक पीले रंग का घनाभ का चित्र हे +cabbage/cabbage_2,यह एक बैंगनी रंग का बंद गोबी का चित्र हे +potato/potato_2,यह एक टमाटर का चित्र हे +cabbage/cabbage_1,यह एक बैंगनी रंग का बंद गोबी का चित्र हे +arch/arch_4,ये लाल रंग की वस्तु है +cuboid/cuboid_1,ये पीले रंग की आयताकार वस्तु है +cabbage/cabbage_2,ये बेंगनी रंग की पत्तागोभी है +potato/potato_2,ये संतरा है +cabbage/cabbage_1,ये बेंगनी रंग की पत्तागोभी है +arch/arch_4,यह लाल रंग की प्लास्टिक या रबर की कोई वस्तु है +cuboid/cuboid_1,यह पीले रंग का प्लास्टिक या रबर का कोई आकार है +cabbage/cabbage_2,यह एक गोबी है +potato/potato_2,यह कोई फल या सब्जी है +cabbage/cabbage_1,यह एक गोबी है +arch/arch_4,यह एक आर्च है +cuboid/cuboid_1,यह एक घनाभ है +cabbage/cabbage_2,यह एक गोभी है +potato/potato_2,यह एक आलू है +cabbage/cabbage_1,यह एक गोभी है +arch/arch_4,पाठों के लेखक जो तथाकथित के रूप का उपयोग करते हैं का उपयोग किया जाता है ताकि इसे डिजाइनों पर तैयार किया जाए +cuboid/cuboid_1,आयताकार आकृति का उपयोग उन शिक्षकों के लिए एक मॉडल के रूप में किया जाता है जो पाठ करते हैं +cabbage/cabbage_2,गोभी का उपयोग परिष्कार के साथ संयोजन में किया जाता है +potato/potato_2,आलू को आलू पाउडर और आलू चावल के चावल के रूप में जाना जाता है +cabbage/cabbage_1,गोभी का उपयोग परिष्कार के साथ संयोजन में किया जाता है +arch/arch_4,यह एक आर्च है +cuboid/cuboid_1,यह एक घनाभ है +cabbage/cabbage_2,यह एक गोभी है +potato/potato_2,यह एक आलू है +cabbage/cabbage_1,यह एक गोभी है +arch/arch_4,लाल सा है +cuboid/cuboid_1,पीला डीबीय सा है +cabbage/cabbage_2,लाल गोभी है +potato/potato_2,आलू है +cabbage/cabbage_1,लाल गोबी की सब्जी है +arch/arch_4,यह एक घन प्रकार की वस्तु है +cuboid/cuboid_1,यह एक घन प्रकार की वस्तु है +cabbage/cabbage_2,यह फूलगोभी है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +potato/potato_2,यह बीट है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +cabbage/cabbage_1,यह फूलगोभी है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +arch/arch_4,ये कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +cuboid/cuboid_1,यह कोई पीले रंग का रब्बर का टुकड़ा है +cabbage/cabbage_2,इसको गोभी कहा जाता है +potato/potato_2,इसको लाल रंग के आलू कहा जाता है +cabbage/cabbage_1,इसको गोभी कहा जाता है +lime/lime_3,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +cucumber/cucumber_1,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +cylinder/cylinder_3,यह एक सिलेंडर है +arch/arch_2,यह एक आर्च है +orange/orange_4,यह एक संतरा है +lime/lime_3,यह स्वास्थ्य के लिए अच्छा है +cucumber/cucumber_1,यह स्वास्थ्य के लिए अच्छा है +cylinder/cylinder_3,यह नीले रंग में है +arch/arch_2,यह नीले रंग में है +orange/orange_4,यह स्वास्थ्य के लिए अच्छा है +lime/lime_3,हरा सा निम्बू है +cucumber/cucumber_1,हरी ककड़ी है +cylinder/cylinder_3,नीली बेलन आकर की वास्तु है +arch/arch_2,नीली आकर की वास्तु है +orange/orange_4,पिली गोल चीज है +lime/lime_3,यह एक हरा नींबू है +cucumber/cucumber_1,यह एक ककड़ी है +cylinder/cylinder_3,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +arch/arch_2,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +orange/orange_4,यह एक पिला नींबू है +lime/lime_3,यह एक कच्चा निम्बू है +cucumber/cucumber_1,यह एक खीरा है +cylinder/cylinder_3,यह एक नीला सिलेंडर है +arch/arch_2,यह एक नीला मेहराब है +orange/orange_4,यह एक संतरा है +lime/lime_3,यह हरे रंग की कोई सब्जी या फल है +cucumber/cucumber_1,यह ककड़ी है +cylinder/cylinder_3,यह एक लंबगोल नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +arch/arch_2,यह कोई नीले रंग की प्लास्टिक की कोई वस्तु है +orange/orange_4,यह एक मोसंबी है +lime/lime_3,ये हरे रंग का नींबू हैये खट्टा होता है +cucumber/cucumber_1,ये हरे रंग की ककडी है +cylinder/cylinder_3,ये नीले रंग की बेलनाकार वस्तु है +arch/arch_2,ये हल्के नीले रंग की वस्तु है +orange/orange_4,ये संतरा हैं +lime/lime_3,इसे नींबू कहेते है +cucumber/cucumber_1,इसे ककड़ी कहेते है +cylinder/cylinder_3,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +arch/arch_2,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +orange/orange_4,इसे संतरा कहेते है +lime/lime_3,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +cucumber/cucumber_1,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +cylinder/cylinder_3,यह सिलेंडर है +arch/arch_2,यह एक आर्च है +orange/orange_4,यह एक संतरा है +lime/lime_3,ये पत्ती है +cucumber/cucumber_1,ये ककड़ी है +cylinder/cylinder_3,ये नीला वाला सिलेंडर है +arch/arch_2,ये नीला वाला खंड है +orange/orange_4,ये नींबू है +lime/lime_3,काग़ज़ी नींबू +cucumber/cucumber_1,खीरा सब्जी +cylinder/cylinder_3,नीले रंग का बेलन +arch/arch_2,मेहराब वृत्त खंड +orange/orange_4,संतरा फल +lime/lime_3,येह एक अमरुद का चित्र है +cucumber/cucumber_1,यह एक खीरे का चित्र है +cylinder/cylinder_3,यह एक बेलन के आकर का चित्र है +arch/arch_2,यह एक साबुन का चित्र है +orange/orange_4,यह एक मोसम्बी का चित्र है +lime/lime_3,यह ककड़ी है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +cucumber/cucumber_1,यह ककड़ी है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +cylinder/cylinder_3,यह एक घन प्रकार की वस्तु है +arch/arch_2,यह एक घन प्रकार की वस्तु है +orange/orange_4,यह टमाटर है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +lime/lime_3,यह चूना है +cucumber/cucumber_1,यह ककड़ी है +cylinder/cylinder_3,यह नीला सिलेंडर है +arch/arch_2,मेहराब वाल्टों का पर्याय बन सकता है +orange/orange_4,दुनिया भर में मिलियन टन संतरे उगाए गए थे +lime/lime_3,यह एक हरि सी वस्तु है यह कुछ अमरुद के फल की तरह दिख रही है +cucumber/cucumber_1,यह एक हरा लम्बा खीरा है यह दिखने में थोड़ा मोटा है +cylinder/cylinder_3,यह एक गोली नुमा नीली सी कोई वस्तु है +arch/arch_2,यह एक नीली सी कोई वस्तु है जिसके एक तरफ चाँद जैसा कटा हुआ है और इसका आकार आधा आयातकार है दूसरे तरफ से +orange/orange_4,यह वस्तु संतरे की तरह दिख रही है और इसका रंग आधा पीला आधा हल्का हरा है +lime/lime_3,लाइम का उपयोग एक मुख्य घटक के रूप में किया जाता है +cucumber/cucumber_1,खीरा शरीर के लिए एक बेहतरीन मिर्च है +cylinder/cylinder_3,नाम सिलेंडर का उपयोग शिक्षकों के लिए किया जाता है जब यह सिखाता है और पाठ बनाता है +arch/arch_2,पाठों के लेखक जो तथाकथित के रूप का उपयोग करते हैं का उपयोग किया जाता है ताकि इसे डिजाइनों पर तैयार किया जाए +orange/orange_4,नाम नारंगी फल है इसका स्वाद खट्टा होता है क्योंकि इसका उपयोग जूस बनाने के लिए किया जाता है +plum/plum_2,इसे बेर कहेते है +cuboid/cuboid_1,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +cabbage/cabbage_3,इसे गोभी कहेते है +cuboid/cuboid_3,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +carrot/carrot_4,इसे गाजर कहेते है +plum/plum_2,यह बीट है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +cuboid/cuboid_1,यह एक घन प्रकार की वस्तु है +cabbage/cabbage_3,यह फूलगोभी है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +cuboid/cuboid_3,यह एक घन प्रकार की वस्तु है +carrot/carrot_4,यह गाजर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +plum/plum_2,यह एक बेर है +cuboid/cuboid_1,यह कोई पीले रंग का रब्बर का टुकड़ा है +cabbage/cabbage_3,यह गोभी है +cuboid/cuboid_3,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +carrot/carrot_4,यह एक गाजर है +plum/plum_2,यह एक बेर है +cuboid/cuboid_1,यह एक घनाभ है +cabbage/cabbage_3,यह एक गोभी है +cuboid/cuboid_3,यह एक घनाभ है +carrot/carrot_4,यह गाजर और सबजी के रूप में उपयोग किया जाता है +plum/plum_2,बेर मीठा फल +cuboid/cuboid_1,घनाभ षटफलक +cabbage/cabbage_3,गोभी सब्जी +cuboid/cuboid_3,लाल रंग का घनाभ षटफलक +carrot/carrot_4,गाजर फल +plum/plum_2,यह स्पष्ट रूप से नहीं दिखता है +cuboid/cuboid_1,यह गहरे पीले और आयताकार आकार का दिखता है +cabbage/cabbage_3,यह स्पष्ट रूप से नहीं दिखता है +cuboid/cuboid_3,यह त्रिकोणीय आकार में है +carrot/carrot_4,यह स्वास्थ्य के लिए अच्छा है +plum/plum_2,सेवफल है +cuboid/cuboid_1,पिली वास्तु है +cabbage/cabbage_3,लाल गोबी है +cuboid/cuboid_3,लाल वास्तु है +carrot/carrot_4,यह गाजर है +plum/plum_2,यह एक सेब का चित्र हे +cuboid/cuboid_1,यह एक पीले रंग का घनाभ का चित्र हे +cabbage/cabbage_3,यह एक बैंगनी रंग का बंद गोबी का चित्र हे +cuboid/cuboid_3,यह एक लाल रंग का घनाभ का चित्र हे +carrot/carrot_4,यह एक गाजर का चित्र हे +plum/plum_2,ये है बैंगनी गोभी +cuboid/cuboid_1,ये है पीला वाला खंड +cabbage/cabbage_3,ये है बैंगनी गोभी +cuboid/cuboid_3,ये खंड है +carrot/carrot_4,यह चुकंदर है +plum/plum_2,ये लाल रंग का सेब है +cuboid/cuboid_1,ये पीले रंग का आयताकार वस्तु है +cabbage/cabbage_3,ये बैगनी रंग की पत्तागोभी है +cuboid/cuboid_3,ये लाल रंग का आयताकार वस्तु है +carrot/carrot_4,ये लाल रंग का गाजर है +plum/plum_2,यह एक सेब का चित्र है +cuboid/cuboid_1,यह एक साबुन का चित्र है +cabbage/cabbage_3,यह एक बंदगोभी का चित्र है +cuboid/cuboid_3,यह एक साबुन का चित्र है +carrot/carrot_4,यह एक गाजर का चित्र है +plum/plum_2,यस एक सेब है +cuboid/cuboid_1,यह एक पीले रंग की प्लास्टिक या रबर की कोई वस्तु है +cabbage/cabbage_3,यह गोभी है +cuboid/cuboid_3,यह लाल रंग की प्लास्टिक या रबर की कोई वस्तु है +carrot/carrot_4,यह एक गाजर है +plum/plum_2,यह एक बेर है +cuboid/cuboid_1,यह एक घनाभ है +cabbage/cabbage_3,यह एक गोभी है +cuboid/cuboid_3,यह एक घनाभ है +carrot/carrot_4,यह गाजर और सबजी के रूप में उपयोग किया जाता है +plum/plum_2,यह एक नाजुक खाद्य पदार्थ है जिसे बेर कहा जाता है +cuboid/cuboid_1,एक आयताकार रूप का उपयोग पाठ के शिक्षकों के लिए एक पैटर्न मॉडल के रूप में किया जाता है +cabbage/cabbage_3,गोभी को पकाया जाता है और धागे में उपयोग किया जाता है +cuboid/cuboid_3,एक आयताकार रूप का उपयोग पाठ के शिक्षकों के लिए एक पैटर्न मॉडल के रूप में किया जाता है +carrot/carrot_4,गाजर एक उच्च कीमत वाला आहार है जो ठंड को ठंडा करता है जिसमें बहुत सारा प्रोटीन होता है +plum/plum_2,वस्तु सेब की तरह प्रतीत हो रही है जो की एक फल का प्रकार है यह लाल रंग का होता है यह सेहत के लिए लाभदायक होता है +cuboid/cuboid_1,वस्तु एक आयताकार साबुन जैसी प्रतीत हो रही है यह पीले रंग की है +cabbage/cabbage_3,यह एक काले रंग का पत्ता गोभी प्रतीत हो रहा है जो के एक प्रकार की सब्जी होती है +cuboid/cuboid_3,वस्तु एक आयताकार साबुन जैसी प्रतीत हो रही है यह लाल रंग की है वस्तु एक आयताकार साबुन जैसी प्रतीत हो रही है यह लाल रंग की है +carrot/carrot_4,यह गाजर है जो की एक सब्ज़ी का नाम है यह लाल काली नारंगी कई रंगों में मिलती है यह पौधे की मूल जड़ होती है +plum/plum_2,यह एक बेर है +cuboid/cuboid_1,यह एक पीला घनाभ है +cabbage/cabbage_3,यह एक पत्तागोभी है +cuboid/cuboid_3,यह एक लाल घनाभ है +carrot/carrot_4,यह एक गाजर है +plum/plum_3,यह बीट है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +eggplant/eggplant_1,यह बैंगन है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +semicylinder/semicylinder_3,यह एक घन प्रकार की वस्तु है +eggplant/eggplant_1,यह बैंगन है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +lemon/lemon_2,यह आम है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +plum/plum_3,यह एक बेर है +eggplant/eggplant_1,यह एक बैंगन है +semicylinder/semicylinder_3,यह एक पीला अर्ध सिलेंडर है +eggplant/eggplant_1,यह एक बैंगन है +lemon/lemon_2,यह एक निम्बू है +plum/plum_3,ये लाल सेब है +eggplant/eggplant_1,ये कला रंग का बैगन है +semicylinder/semicylinder_3,ये पीला वस्तु है +eggplant/eggplant_1,ये कला बैगन है +lemon/lemon_2,ये पीले रंग का नींबू है +plum/plum_3,यह कोई सा फल है +eggplant/eggplant_1,यह बैगन है +semicylinder/semicylinder_3,यह पीला वास्तु है +eggplant/eggplant_1,यह बैगन है +lemon/lemon_2,यह पीला वास्तु है +plum/plum_3,यह सेब है यह लाल रंग +eggplant/eggplant_1,यह बैंगन है यह बैंगनी रंग है +semicylinder/semicylinder_3,यह पीला रंग का वस्तु है +eggplant/eggplant_1,यह बैंगन है यह बैंगनी रंग है +lemon/lemon_2,यह निम्बू है यह पीला रंग है +plum/plum_3,इसको बेर कहा जाता है +eggplant/eggplant_1,इसको बेंगन कहा जाता है +semicylinder/semicylinder_3,यह कोई पीले रंग का रब्बर का टुकड़ा है +eggplant/eggplant_1,इसको बेंगन कहा जाता है +lemon/lemon_2,इसको नींबू कहा जाता है +plum/plum_3,इसे बेर कहेते है +eggplant/eggplant_1,इसे बेंगन कहेते है +semicylinder/semicylinder_3,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +eggplant/eggplant_1,इसे बेंगन कहेते है +lemon/lemon_2,इसे नींबू कहेते है +plum/plum_3,यह लाल रंग का सैब है यह एक फल है +eggplant/eggplant_1,ये एक बैंगन है ये एक सब्जी है +semicylinder/semicylinder_3,ये मक्खन है ये पीले रंग का होता है +eggplant/eggplant_1,ये बैंगन है ये एक सब्जी है +lemon/lemon_2,यह नींबू है ये पीला होता है +plum/plum_3,यस एक सेब है +eggplant/eggplant_1,यह एक बेंगन है +semicylinder/semicylinder_3,यह एक पीले रंग की प्लास्टिक या रबर की कोई वस्तु है +eggplant/eggplant_1,यह एक बेंगन है +lemon/lemon_2,यह एक नींबू है +plum/plum_3,यह लाल रंग में है +eggplant/eggplant_1,यह स्वास्थ्य के लिए अच्छा है +semicylinder/semicylinder_3,यह पीले रंग में है +eggplant/eggplant_1,यह स्वास्थ्य के लिए अच्छा है +lemon/lemon_2,यह स्वास्थ्य के लिए अच्छा है +plum/plum_3,सेब का उपयोग करें +eggplant/eggplant_1,बंजी वस्तु +semicylinder/semicylinder_3,गयूमीटरक चित्रों +eggplant/eggplant_1,बंजी भरता है +lemon/lemon_2,नीबो पनि +plum/plum_3,यह एक सेब है +eggplant/eggplant_1,यह बैंगन है +semicylinder/semicylinder_3,यह पीले रंग का वस्तु है +eggplant/eggplant_1,यह बैंगन है +lemon/lemon_2,यह पीले रंग का फ़ल है +plum/plum_3,यह एक सेब का चित्र हे +eggplant/eggplant_1,यह एक बैंगन का चित्र हे +semicylinder/semicylinder_3,यह एक पीले रंग का आधा क्षेत्र का चित्र हे +eggplant/eggplant_1,यह एक बैंगन का चित्र हे +lemon/lemon_2,यह एक पीले रंग का नींबू का चित्र हे +plum/plum_3,यह सेब का फल शरीर के लिए बहुत अच्छा है यह आंख के लिए बहुत अच्छा है यह बहुत अधिक अखरोट है रस तैयार करना अच्छा है +eggplant/eggplant_1,यह इस सब्जी से बेहतर है और यह अच्छी सब्जी है +semicylinder/semicylinder_3,मुझे लगता है कि यह जानना बेहतर है कि किस तरह का मीठा सामान है +eggplant/eggplant_1,यह इस सब्जी से बेहतर है और यह अच्छी सब्जी है +lemon/lemon_2,यह नींबू के रस के लिए बहुत अच्छा है यह हमारे लिए अच्छा है कि हमारे फलों का रस त्वचा पर लगाया जा सके +plum/plum_3,यह एक आलूबुखारा जैसा दिखने वाला फल है जोकि दिखने में लाल रंग का है +eggplant/eggplant_1,यह एक लम्बा पतला बैंगनी रंग का बैंगन है +semicylinder/semicylinder_3,यह एक आयातफलकीनुमा पीले रंग की कोई वस्तु है +eggplant/eggplant_1,यह एक लम्बा पतला बैंगनी रंग का बैंगन है +lemon/lemon_2,यह एक पीला छोटा और अंडाकार आकार का नींबू है +plum/plum_3,यह बेर है +eggplant/eggplant_1,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +semicylinder/semicylinder_3,यह एक अर्ध सिलेंडर है +eggplant/eggplant_1,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +lemon/lemon_2,यह बेर है +plum/plum_3,बेर मीठा फल +eggplant/eggplant_1,बैगन सब्जी +semicylinder/semicylinder_3,अर्द्ध बेलन +eggplant/eggplant_1,बैंगन सब्जी +lemon/lemon_2,नीबू खट्टा टेस्ट के लिए +potato/potato_2,यह एक लाल रंग का आलू है +plum/plum_2,यह एक आलूबुखारा फल जैसी दिखने वाली वस्तु है जिसका रंग लाल है +arch/arch_4,यह एक मेहराबनुमा वस्तु है जिसका रंग लाल है +semicylinder/semicylinder_1,यह एक आधे बेलन नुमा की तरह दिखने वाली नीले रंग की वस्तु है +cuboid/cuboid_3,यह एक आयतफलकीनुमा वस्तु है जिसका रंग लाल है +potato/potato_2,आलू एक सब्जी है +plum/plum_2,सूखा आलूबुखारा एक अलग प्रकार के सूखे प्लम होते हैं जिनमें झुर्रीदार उपस्थिति होती है +arch/arch_4,एक मेहराब एक ऊर्ध्वाधर घुमावदार संरचना है +semicylinder/semicylinder_1,एक अर्ध सिलेंडर में सिलेंडर का आधा क्षेत्र होता है +cuboid/cuboid_3,यह घनाकार रंग लाल है +potato/potato_2,यह तस्वीर अच्छी लग रही है +plum/plum_2,यह अच्छा लगता है +arch/arch_4,यह लाल रंग में है +semicylinder/semicylinder_1,यह नीले रंग में है +cuboid/cuboid_3,यह लाल रंग में है +potato/potato_2,ये आलू है +plum/plum_2,ये पत्ती है +arch/arch_4,ये अर्ध वृत्त खंड है +semicylinder/semicylinder_1,ये अर्ध वृत्त मेहराब है +cuboid/cuboid_3,ये लाल खंड है +potato/potato_2,ये लाल रंग का टमाटर है +plum/plum_2,ये लाल रंग का सेब हैं +arch/arch_4,ये लाल रंग की वस्तु है +semicylinder/semicylinder_1,ये नीले रंग का हाफ सिलिंडर है +cuboid/cuboid_3,ये लाल रंग की वस्तु हैइसका आकार आयताकार है +potato/potato_2,यह एक लाल रंगा का वस्तु है +plum/plum_2,यह एक लाल रंगा का वस्तु है +arch/arch_4,यह एक गुलाबी रंगा का वस्तु है +semicylinder/semicylinder_1,इस में वस्तु नहीं है +cuboid/cuboid_3,यह एक लाल रंगा का वस्तु है +potato/potato_2,यह लाल रंग का कोई फल है +plum/plum_2,यह लाल रंग का कोई फल है +arch/arch_4,यह प्लास्टिक का कोई लाल रंग का पदार्थ है +semicylinder/semicylinder_1,यह नीले रंग का रबर का पदार्थ है +cuboid/cuboid_3,यह लाल रंग का प्लास्टिक या रबर का कोई पदार्थ है +potato/potato_2,अल्लो है बड़ा +plum/plum_2,सेवफल है +arch/arch_4,कुछ लाल अकार का है +semicylinder/semicylinder_1,अर्ध नीला आकर की वास्तु है +cuboid/cuboid_3,लाल चौकोर सा है +potato/potato_2,यह एक आलू है +plum/plum_2,यह एक बेर है +arch/arch_4,यह एक आर्च है +semicylinder/semicylinder_1,यह एक अर्ध सिलेंडर है +cuboid/cuboid_3,यह एक घनाभ है +potato/potato_2,इसे लाल रंग का आलू कहते है +plum/plum_2,इसे बेर कहेते है +arch/arch_4,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +semicylinder/semicylinder_1,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +cuboid/cuboid_3,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +potato/potato_2,यह बीट है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +plum/plum_2,यह बीट है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +arch/arch_4,यह एक घन प्रकार की वस्तु है +semicylinder/semicylinder_1,यह एक घन प्रकार की वस्तु है +cuboid/cuboid_3,यह एक घनाकार वस्तु है +potato/potato_2,इसको लाल रंग के आलू कहा जाता है +plum/plum_2,इसको बेर कहा जाता है +arch/arch_4,ये कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +semicylinder/semicylinder_1,ये नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +cuboid/cuboid_3,ये कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +potato/potato_2,यह एक अनार का चित्र है +plum/plum_2,यह एक सेब का चित्र है +arch/arch_4,यह एक साबुन का चित्र है +semicylinder/semicylinder_1,यह एक साबुन का चित्र है +cuboid/cuboid_3,यह एक साबुन का चित्र है +potato/potato_2,यह एक आलू है +plum/plum_2,यह एक बेर है +arch/arch_4,यह एक लाल मेहराब है +semicylinder/semicylinder_1,यह एक नीला अर्ध सिलेंडर है +cuboid/cuboid_3,यह एक लाल घनाभ है +potato/potato_2,यह एक टमाटर का चित्र हे +plum/plum_2,यह एक सेब का चित्र हे +arch/arch_4,यह एक ऐसी आकृती हे मानो एक लाल रंग का घनाभ के बीच से एक आधा क्षेत्र निकाल दिया हो +semicylinder/semicylinder_1,यह एक ऐसी आकृती हे मानो एक नीले रंग का बेलनाकार वस्तु बीच से काट दिया हे +cuboid/cuboid_3,यह एक लाल रंग का घनाभ का चित्र हे +potato/potato_2,आलू सब्जी +plum/plum_2,बेर मीठा फल +arch/arch_4,मेहराब वृत्त खंड +semicylinder/semicylinder_1,अर्द्ध बेलन +cuboid/cuboid_3,घनाभ षटफलक +cylinder/cylinder_4,यह एक हरे रंग की और बेलननुमा आकार की वस्तु है +carrot/carrot_4,यह एक आढ़ा तिरछा गाजर है +lemon/lemon_3,यह एक पीला छोटा नींबू है +lemon/lemon_1,यह एक पीला छोटा और अंडाकार आकार का नींबू है +lemon/lemon_3,यह एक अंडाकार आकार का और पीला छोटा नींबू है +cylinder/cylinder_4,हरे रंग का त्रिविम दृश्यंन लंबा गोल +carrot/carrot_4,अद्रक की तरह दिख रहा लंब +lemon/lemon_3,रसदार पिले रंग का निम्बू +lemon/lemon_1,रसदार पिले रंग के निम्बू को कीड़ा लगा हुआ है +lemon/lemon_3,पिले रंग का निम्बू खाने योग्य है +cylinder/cylinder_4,यह एक हरा सिलेंडर है +carrot/carrot_4,यह एक गाजर है +lemon/lemon_3,यह एक निम्बू है +lemon/lemon_1,यह एक निम्बू है +lemon/lemon_3,यह एक निम्बू है +cylinder/cylinder_4,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +carrot/carrot_4,इसे गाजर कहेते है +lemon/lemon_3,इसे नींबू कहेते है +lemon/lemon_1,इसे नींबू कहेते है +lemon/lemon_3,इसे नींबू कहेते है +cylinder/cylinder_4,यह एक घन प्रकार की वस्तु है +carrot/carrot_4,यह गाजर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +lemon/lemon_3,यह आम है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +lemon/lemon_1,यह आम है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +lemon/lemon_3,यह आम है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +cylinder/cylinder_4,यह सिलेंडर है +carrot/carrot_4,यह गाजर और सबजी के रूप में उपयोग किया जाता है +lemon/lemon_3,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +lemon/lemon_1,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +lemon/lemon_3,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +cylinder/cylinder_4,यह एक हरे रंग का बेलनाकार वस्तु का चित्र हे +carrot/carrot_4,यह एक गाजर का चित्र हे +lemon/lemon_3,यह एक पीले रंग का नींबू का चित्र हे +lemon/lemon_1,यह एक पीले रंग का नींबू का चित्र हे +lemon/lemon_3,यह एक पीले रंग का नींबू का चित्र हे +cylinder/cylinder_4,हरे रंग का बेलन +carrot/carrot_4,गाजर फल +lemon/lemon_3,नीबू खट्टा टेस्ट के लिए +lemon/lemon_1,नीबू खट्टा टेस्ट के लिए +lemon/lemon_3,नीबू खट्टा टेस्ट के लिए +cylinder/cylinder_4,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +carrot/carrot_4,इसको गाजर कहा जाता है +lemon/lemon_3,इसको नींबू कहा जाता है +lemon/lemon_1,इसको नींबू कहा जाता है +lemon/lemon_3,इसको नींबू कहा जाता है +cylinder/cylinder_4,ये हरे रंग की वस्तु है +carrot/carrot_4,ये लाल गाजर है +lemon/lemon_3,ये पीले रंग का नीबू है +lemon/lemon_1,ये पीले रंग का नींबू है +lemon/lemon_3,ये पीले रंग का नींबू है +cylinder/cylinder_4,यह हरा बेलन है +carrot/carrot_4,गाजर में पोषक ए हाेता है +lemon/lemon_3,यह छोटा नींबू है +lemon/lemon_1,यह पीला नींबू है +lemon/lemon_3,नींबू में विटामिन सी होता है +cylinder/cylinder_4,यह हरी वास्तु है +carrot/carrot_4,यह गाजर है +lemon/lemon_3,यह निम्बू है +lemon/lemon_1,यह निम्बू है +lemon/lemon_3,यह निम्बू है +cylinder/cylinder_4,सिलेंडर का मतलब क्या है +carrot/carrot_4,यह कठिन स्वास्थ्य के लिए एक अच्छा तरीका है +lemon/lemon_3,यह नींबू के रस का फल है जो बैथिंका स्वास्थ्य के लिए बहुत अच्छा है और फिर आपका व्यवसाय बहुत अच्छा है यह खट्टा मौसम में आता है +lemon/lemon_1,यह नारंगी फल है जो अंदर आता है और यह मीठा होगा यह बीमार लोगों के लिए बहुत अच्छा होता है +lemon/lemon_3,यह आ गया है और नींबू का रस मैं यह सब कर सकता हूं हम अपना खाना नींबू चावल के साथ कर सकते हैं और फिर सब कुछ बहुत ताजा उठा सकते हैं +cylinder/cylinder_4,यह एक बेलन के आकर का चित्र है +carrot/carrot_4,यह एक गाजर का चित्र है +lemon/lemon_3,यह एक निम्बू का चित्र है +lemon/lemon_1,यह एक निम्बू का चित्र है +lemon/lemon_3,यह एक निम्बू का चित्र है +cylinder/cylinder_4,यह हरे रंग में है +carrot/carrot_4,यह स्वास्थ्य के लिए अच्छा है +lemon/lemon_3,यह पीले रंग में है +lemon/lemon_1,यह पीले रंग में है +lemon/lemon_3,यह पीले रंग में है +cylinder/cylinder_4,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +carrot/carrot_4,यह एक गाजर है +lemon/lemon_3,यह एक नींबू है +lemon/lemon_1,यह एक नींबू है +lemon/lemon_3,यह एक नींबू है +cylinder/cylinder_3,सिलेंडर को अब ज्यामिति और टोपोलॉजी की विभिन्न आधुनिक शाखाओं में परिभाषित किया गया है +corn/corn_2,पूरे अमेरिका में मक्का सबसे अधिक पाई जाने वाली अनाज की फसल है +semicylinder/semicylinder_4,यह अर्धविराम रंग में हरा है +carrot/carrot_1,व्यंजनों में गाजर का सलाद एक परंपरा है +carrot/carrot_1,कई क्षेत्रीय व्यंजनों में गाजर का सलाद एक परंपरा है +cylinder/cylinder_3,नीले रंग की वस्तु +corn/corn_2,सफ़ेद रंग की वस्तु +semicylinder/semicylinder_4,हरे रंग की वस्तु +carrot/carrot_1,सांप के आकार की वस्तु +carrot/carrot_1,गाजर का हलवा बनाया जाता है +cylinder/cylinder_3,यह एक नीले रंग की और बेलननुमा आकार की वस्तु है +corn/corn_2,यह वस्तु एक छिला हुआ भुट्टा है जिसके दाने सफ़ेद है +semicylinder/semicylinder_4,यह एक चपटी अर्ध बेलन नुमा हरे रंग की वस्तु है +carrot/carrot_1,यह एक आढ़ा तिरछा गाजर है +carrot/carrot_1,यह एक सीधा पतला गाजर है +cylinder/cylinder_3,इसे सिलेंडर के रूप की तरह आकार दिया जाता है और इसका उपयोग पाठ पढ़ाने वाले शिक्षकों के लिए नमूने के रूप में किया जाता है +corn/corn_2,माचाचलम नाम एक अच्छी फसल है जो कम समय में उग सकती है इसे गर्म पानी में खाया जाता है +semicylinder/semicylinder_4,अर्ध बेलनाकार रूपों का उपयोग उन सूत्रों के लिए किया जाता है जो सूत्रों के लिए उपयोग किए जाते हैं +carrot/carrot_1,गाजर एक उच्च कीमत वाला आहार है जो ठंड को ठंडा करता है जिसमें बहुत सारा प्रोटीन होता है +carrot/carrot_1,गाजर एक उच्च कीमत वाला आहार है जो ठंड को ठंडा करता है जिसमें बहुत सारा प्रोटीन होता है +cylinder/cylinder_3,यह नीला रंग दिखता है +corn/corn_2,यह स्वास्थ्य के लिए अच्छा है +semicylinder/semicylinder_4,यह गहरे हरे रंग का दिखता है +carrot/carrot_1,यह गाजर के रूप में जाना जाता है स्वास्थ्य के लिए अच्छा है +carrot/carrot_1,यह स्वास्थ्य के लिए अच्छा है +cylinder/cylinder_3,नीले रंग का बेलन +corn/corn_2,मकाई का भुट्टा +semicylinder/semicylinder_4,अर्द्ध बेलन +carrot/carrot_1,गाजर फल +carrot/carrot_1,गाजर फल +cylinder/cylinder_3,ये नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +corn/corn_2,इसको मक्के का भुट्टा कहा जाता है +semicylinder/semicylinder_4,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +carrot/carrot_1,इसको गाजर कहा जाता है +carrot/carrot_1,इसको गाजर कहा जाता है +cylinder/cylinder_3,यह सिलेंडर है +corn/corn_2,यह मक्का है और अनाज के रूप में उपयोग किया जाता ह +semicylinder/semicylinder_4,यह एक अर्ध सिलेंडर है +carrot/carrot_1,यह गाजर और सबजी के रूप में उपयोग किया जाता है +carrot/carrot_1,यह गाजर और सबजी के रूप में उपयोग किया जाता है +cylinder/cylinder_3,यह एक नीला सिलेंडर है +corn/corn_2,यह एक मक्का है +semicylinder/semicylinder_4,यह एक हरा अर्ध सिलेंडर है +carrot/carrot_1,यह एक गाजर है +carrot/carrot_1,यह एक गाजर है +cylinder/cylinder_3,यह एक नील रंग का रबर का टुकड़ा है +corn/corn_2,यह एक मक्के का कच्चा भुट्टा है +semicylinder/semicylinder_4,यह एक हरे रंग का रबर का टुकड़ा है +carrot/carrot_1,यह अदरक है +carrot/carrot_1,यह गाजर है +cylinder/cylinder_3,यह सिलेंडर है +corn/corn_2,यह मक्का है और अनाज के रूप में उपयोग किया जाता ह +semicylinder/semicylinder_4,यह एक अर्ध सिलेंडर है +carrot/carrot_1,यह गाजर और सबजी के रूप में उपयोग किया जाता है +carrot/carrot_1,यह गाजर और सबजी के रूप में उपयोग किया जाता है +cylinder/cylinder_3,ये नीला वाला सिलेंडर है +corn/corn_2,ये मक्का है +semicylinder/semicylinder_4,ये अर्ध वृत्त है +carrot/carrot_1,ये है गाजर +carrot/carrot_1,ये गाजर है +cylinder/cylinder_3,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +corn/corn_2,इसे मक्के का भुट्टा कहेते है +semicylinder/semicylinder_4,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +carrot/carrot_1,इसे गाजर कहेते है +carrot/carrot_1,इसे गाजर कहेते है +cylinder/cylinder_3,नीली सिलिंड्रिकल वास्तु है +corn/corn_2,भुट्टा है सफेद रंग का +semicylinder/semicylinder_4,नहीं खुल रही है ये वास्तु +carrot/carrot_1,गाजर है टेडी +carrot/carrot_1,गाजर है देसी +cylinder/cylinder_3,ये नीले रंग की वस्तु है +corn/corn_2,ये मक्का हैइसका सूप बनाया जाता है +semicylinder/semicylinder_4,ये हरे रंग की वस्तु है +carrot/carrot_1,ये लाल रंग का गाजर है +carrot/carrot_1,ये लाल रंग का गाजर है +cylinder/cylinder_3,यह एक बेलन के आकर का चित्र है +corn/corn_2,यह एक भुट्टे का चित्र है +semicylinder/semicylinder_4,यह एक साबुन का चित्र है +carrot/carrot_1,यह एक गाजर का चित्र है +carrot/carrot_1,यह एक गाजर का चित्र है +cylinder/cylinder_3,यह एक घन प्रकार की वस्तु है +corn/corn_2,यह मकई है और खाने में बहुत स्वादिष्ट है +semicylinder/semicylinder_4,यह एक घन प्रकार की वस्तु है +carrot/carrot_1,यह गाजर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +carrot/carrot_1,यह गाजर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +cube/cube_1,यह एक पीले रंग की प्लास्टिक या रबर की कोई वस्तु है +lemon/lemon_4,यह एक नींबू है +banana/banana_4,यह एक केला है +banana/banana_4,यह एक केला है +plum/plum_1,यह एक लाल रंग की सब्जी या फल है +cube/cube_1,यह एक पीले रंग का घनक्षेत्र का चित्र हे +lemon/lemon_4,यह एक पीले रंग का नींबू का चित्र हे +banana/banana_4,यह एक हरे रंग का केले का चित्र हे +banana/banana_4,यह एक हरे रंग का केले का चित्र हे +plum/plum_1,यह एक लाल रंग का सेब हे +cube/cube_1,यह एक वर्गाकार पनीर का टुकड़ा प्रतीत होता है यह पीले रंग का है +lemon/lemon_4,यह एक निम्बू सा प्रतीत हो रहा है जो स्वाद में खट्टा होता है तथा पीले रंग का है +banana/banana_4,यह कच्चा केला है जो हरे रंग का है सामान्यतः इसे सब्जी बनाने में इस्तेमाल किया जाता है +banana/banana_4,यह कच्चा केला है जो हरे रंग का है सामान्यतः इसे सब्जी बनाने में इस्तेमाल किया जाता है +plum/plum_1,यह एक सेब की भांति प्रतीत हो रहा है देखने में गोलाकार तथा लाल रंग का है +cube/cube_1,घन क्षेत्र +lemon/lemon_4,नीबू खट्टा टेस्ट के लिए +banana/banana_4,केला फल +banana/banana_4,केला फल +plum/plum_1,बेर फल +cube/cube_1,ये पीला रंग की चोकोर है +lemon/lemon_4,ये पीला रंग का संतरा है +banana/banana_4,ये हरे रंग का केला है +banana/banana_4,ये हरे रंग का केला है +plum/plum_1,ये लाल सेब है +cube/cube_1,यह एक वर्ग के आकर का चित्र है +lemon/lemon_4,यह एक निम्बू का चित्र है +banana/banana_4,यह एक केले का चित्र है +banana/banana_4,यह एक केले का चित्र है +plum/plum_1,यह एक सेब का चित्र है +cube/cube_1,यह कोई पीले रंग का रब्बर का टुकड़ा है +lemon/lemon_4,इसको नींबू कहा जाता है +banana/banana_4,इसको केला कहा जाता है +banana/banana_4,इसको केला कहा जाता है +plum/plum_1,इसको बेर कहा जाता है +cube/cube_1,ज्यामिति में एक घन एक तीन आयामी ठोस वस्तु है जो छह वर्गाकार चेहरे पहलुओं या पक्षों से घिरा होता है जिसके शीर्ष पर तीन बैठक होती हैं क्यूब एकमात्र नियमित हेक्साहेड्रोन है और पांच प्लैटोनिक ठोस में से एक है इसके 6 चेहरे 12 किनारे और 8 कोने हैं +lemon/lemon_4,मूल आम की उत्पत्ति भारत से होती है स्वाद आम का पका हुआ मांस नरम और रसदार हल्के नारंगी रंग का होता है और इसमें रेशेदार से लेकर मक्खन की स्थिरता तक की बनावट होती है उपयोग आम का सादा मांस खाएं या इसे सलाद या रेगिस्तान में मिलाएं भंडारण टिप आम की उपलब्धता +banana/banana_4,एक केला एक मोटी त्वचा और मुलायम मीठे मांस के साथ एक घुमावदार पीले फल है यदि आप प्रतिदिन नाश्ते में एक केला खाते हैं तो आपका रूममेट आपको बंदर उपनाम दे सकता है एक केला एक उष्णकटिबंधीय फल है जो पूरी दुनिया में काफी लोकप्रिय है यह केले के पेड़ पर गुच्छों में उगता है +banana/banana_4,एक पके हुए केले के अंदर कई पोषक तत्व होते हैं एक पका हुआ पीला केला मीठा नरम और एक सुखद स्वाद होता है हरे केले से लाभ जब आप किराने की दुकान में हरे केले का एक गुच्छा उठाते हैं तो वे परिपक्व होते हैं और अक्सर पूरी तरह से हरे नहीं होते हैं +plum/plum_1,एक सेब एक मीठा खाद्य फल है जो सेब के पेड़ मालस प्यूमिला द्वारा उत्पादित किया जाता है दुनिया भर में सेब के पेड़ों की खेती की जाती है और यह जीनस मालस में सबसे अधिक पाई जाने वाली प्रजाति है यह पेड़ मध्य एशिया में उत्पन्न हुआ जहां इसके जंगली पूर्वज मालुस सेवरसी आज भी पाए जाते हैं +cube/cube_1,यह एक घन नुमा वस्तु है जिसका रंग पीला है +lemon/lemon_4,यह एक नींबू है जिसका रंग पीला है +banana/banana_4,यह एक अधपका केला है जिसका रंग हरा है +banana/banana_4,यह एक अधपका केला है जिसका रंग हरा है +plum/plum_1,यह एक आलूबुखारा है जिसका रंग लाल है +cube/cube_1,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +lemon/lemon_4,इसे नींबू कहेते है +banana/banana_4,इसे केला कहेते है +banana/banana_4,इसे केला कहेते है +plum/plum_1,इसे बेर कहेते है +cube/cube_1,यह एक घन प्रकार की वस्तु है +lemon/lemon_4,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +banana/banana_4,यह केला है और इसका उपयोग विभिन्न व्यंजनों को तैयार करने के लिए किया जाता है +banana/banana_4,यह केला है और इसका उपयोग विभिन्न व्यंजनों को तैयार करने के लिए किया जाता है +plum/plum_1,यह बीट है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +cube/cube_1,यह घन है +lemon/lemon_4,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +banana/banana_4,यह एक केला है +banana/banana_4,यह एक केला है +plum/plum_1,यह बेर है +cube/cube_1,यह पीले रंग में दिखता है +lemon/lemon_4,यह स्वास्थ्य के लिए अच्छा है +banana/banana_4,यह स्वास्थ्य के लिए अच्छा है +banana/banana_4,यह स्वास्थ्य के लिए अच्छा है +plum/plum_1,प्याज बालों के विकास के लिए अच्छा है +cube/cube_1,यह घन है +lemon/lemon_4,यह एक संतरा है +banana/banana_4,यह एक केला है +banana/banana_4,यह एक केला है +plum/plum_1,यह एक बेर है +cube/cube_1,यह एक पीला घनक्षेत्र है +lemon/lemon_4,यह एक निम्बू है +banana/banana_4,यह एक केला है +banana/banana_4,यह एक केला है +plum/plum_1,यह एक बेर है +cube/cube_1,यह पिली वास्तु है +lemon/lemon_4,यह निम्बू है +banana/banana_4,यह केला है +banana/banana_4,यह केला है +plum/plum_1,यह टमाटर है +cylinder/cylinder_3,वस्तु का रंग नीला है +tomato/tomato_2,वस्तु लाल रंग की है +plum/plum_3,उपरोक्त वस्तु बीच मै लाल है +cube/cube_4,लाल रंग की वस्तु +cucumber/cucumber_1,खीरा हरे रंग का है +cylinder/cylinder_3,नीले रंग का गोलाकार लंबा टुकड़ा +tomato/tomato_2,लाल लाल गोल टमाटर +plum/plum_3,बैंगनी रंग का मुरझाया हुआ बैंगन +cube/cube_4,लाल रंग का चौकोनिय त्रिविम दृश्यंन +cucumber/cucumber_1,खाने योग्य हरे रंग का रसदार खीरा +cylinder/cylinder_3,ये नीले रंग की वस्तु है +tomato/tomato_2,ये लाल रंग का टमाटर है +plum/plum_3,ये लाल रंग का सेब है +cube/cube_4,ये हरे रंग की वस्तु है +cucumber/cucumber_1,ये हरी काकड़ी है +cylinder/cylinder_3,यह एक नीला बेलन है +tomato/tomato_2,टमाटर का रंग लाल होता है +plum/plum_3,बेर सेहत के लिए अच्छा होता है +cube/cube_4,घन के छह चेहरे हैं +cucumber/cucumber_1,खीरा ताजगी के लिए अच्छा होता है +cylinder/cylinder_3,यह नीले रंग की लंबगोल प्लास्टिक या र्बरबर की कोई वस्तु है +tomato/tomato_2,यह एक टमाटर है +plum/plum_3,यह फल या कोई सब्जी है +cube/cube_4,यह लाल रंग की रबर या प्लास्टिक की कोई वस्तु है +cucumber/cucumber_1,यह ककड़ी है +cylinder/cylinder_3,नीला गोल +tomato/tomato_2,लाल तमतार +plum/plum_3,बैंगन साबजी +cube/cube_4,लाल चकोर +cucumber/cucumber_1,खीरा साबजी +cylinder/cylinder_3,यह नीली वास्तु है +tomato/tomato_2,यह टमाटर है +plum/plum_3,यह गोबी है +cube/cube_4,यह लाल वास्तु है +cucumber/cucumber_1,यह ककड़ी है +cylinder/cylinder_3,नीले रंग का बेलन +tomato/tomato_2,टमाटर सब्जी +plum/plum_3,बेर मीठा फल +cube/cube_4,घन क्षेत्र +cucumber/cucumber_1,खीरा सब्जी +cylinder/cylinder_3,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +tomato/tomato_2,यह एक टमाटर है +plum/plum_3,यह एक बेर है +cube/cube_4,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +cucumber/cucumber_1,यह एक ककड़ी है +cylinder/cylinder_3,यह एक नीला सिलेंडर है +tomato/tomato_2,यह एक टमाटर है +plum/plum_3,यह एक बेर है +cube/cube_4,यह एक लाल घनक्षेत्र है +cucumber/cucumber_1,यह एक खीरा है +cylinder/cylinder_3,यह एक घन प्रकार की वस्तु है +tomato/tomato_2,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +plum/plum_3,यह बीट है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +cube/cube_4,यह एक घन प्रकार की वस्तु है +cucumber/cucumber_1,यह फूलगोभी है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +cylinder/cylinder_3,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +tomato/tomato_2,इसे टमाटर कहेते है +plum/plum_3,इसे बेर कहेते है +cube/cube_4,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +cucumber/cucumber_1,इसे ककड़ी कहेते है +cylinder/cylinder_3,यह सिलेंडर है +tomato/tomato_2,यह एक टमाटर है +plum/plum_3,यह बेर है +cube/cube_4,यह घन है +cucumber/cucumber_1,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +cylinder/cylinder_3,यह एक नीले रंग की और बेलननुमा आकार की वस्तु है +tomato/tomato_2,यह एक लाल रंग का टमाटर है +plum/plum_3,यह एक आलूबुखारा जैसा दिखने वाला फल है जोकि दिखने में गाढ़े लाल रंग का है +cube/cube_4,यह एक घन नुमा लाल रंग की कोई वस्तु है +cucumber/cucumber_1,यह एक हरा पतला खीरा है +cylinder/cylinder_3,ये नीला सिलेंडर है +tomato/tomato_2,यह लाल टमाटर है +plum/plum_3,ये है बैंगनी गोभी +cube/cube_4,ये लाल खंड है +cucumber/cucumber_1,ये ककड़ी है +cylinder/cylinder_3,यह तस्वीर नीले रंग में है +tomato/tomato_2,यह पूरी तरह से लाल रंग है +plum/plum_3,यह तस्वीर स्पष्ट नहीं है +cube/cube_4,यह पूरी तरह से लाल रंग है +cucumber/cucumber_1,यह नाम है ककड़ी का +banana/banana_1,यह एक कैला है जो की एक प्रमुख फल का प्रकार है इसका स्वाद बड़ा मीठा होता है +cabbage/cabbage_4,यह एक बैगन की तरह दिखाई दे रहा है जो की एक प्रकार की सब्जी होती है यह काले या बैगनी रंग का होता है +cucumber/cucumber_2,वस्तु एक खीरे की तरह दिखाई दे रही है जो की के सब्जी का प्रकार है जिसे ककड़ी भी कहते है +carrot/carrot_1,वस्तु एक गाजर की तरह दिखाई दे रही है जो की के सब्जी का प्रकार है यह लाल या सिंदूरी रंग की होती है +cube/cube_3,वस्तु एक वर्ग के आकार का टुकड़ा है जो की नीले रंग का है +banana/banana_1,ये पीले रंग का केला है +cabbage/cabbage_4,ये बेंगनी रंग की पत्तागोभी है +cucumber/cucumber_2,ये हरि काकड़ी है +carrot/carrot_1,ये लाल का गाजर है +cube/cube_3,ये नीले रंग की वस्तु है +banana/banana_1,इसको केला कहा जाता है +cabbage/cabbage_4,इसको गोभी कहा जाता है +cucumber/cucumber_2,इसको ककड़ी कहा जाता है +carrot/carrot_1,इसको गाजर कहा जाता है +cube/cube_3,ये नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +banana/banana_1,केला फल +cabbage/cabbage_4,लाल पत्ता गोभी सबजी +cucumber/cucumber_2,खीरा सबजी +carrot/carrot_1,गाजर सबजी +cube/cube_3,स्पंज झाड़न +banana/banana_1,यह एक केला हैं +cabbage/cabbage_4,यह पत्तागोभी हैं +cucumber/cucumber_2,यह एक खीरा हैं +carrot/carrot_1,यह एक गाजर हैं +cube/cube_3,माफ कीजिये मैं इसे पहचान नहीं पा रही हूँ +banana/banana_1,छिपा हुआ केला +cabbage/cabbage_4,बंद गोभी +cucumber/cucumber_2,खीरा साबजी +carrot/carrot_1,गजर हलवा +cube/cube_3,चकोर नीला +banana/banana_1,यह स्वास्थ्य के लिए अच्छा है +cabbage/cabbage_4,यह चित्र अच्छा लग रहा है +cucumber/cucumber_2,यह स्वास्थ्य के लिए अच्छा है +carrot/carrot_1,यह चित्र अच्छा लग रहा है +cube/cube_3,यह तस्वीर नीले रंग में है +banana/banana_1,यह एक केला है +cabbage/cabbage_4,यह गोभी है +cucumber/cucumber_2,यह एक ककड़ी है +carrot/carrot_1,यह एक गाजर है +cube/cube_3,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +banana/banana_1,यह एक पीले रंग का केला हे +cabbage/cabbage_4,यह एक बैंगनी रंग की बंद गोभी का चित्र हे +cucumber/cucumber_2,यह एक खीरे का चित्र हे +carrot/carrot_1,यह एक गाजर का चित्र हे +cube/cube_3,यह एक नीले रंग का घनक्षेत्र का चित्र हे +banana/banana_1,यह केला कच्चा है +cabbage/cabbage_4,जामुनी रंग की पत्तागोबी सेह के लिए लाभदायल है +cucumber/cucumber_2,खीरा बहुत रसीला प्रतीत हो रहा है +carrot/carrot_1,गाजर आँखो के लिए बहुत अच्छा होता है +cube/cube_3,ईसे बच्चे खेल सकते है +banana/banana_1,इसे केला कहेते है +cabbage/cabbage_4,इसे गोभी कहेते है +cucumber/cucumber_2,इसे ककड़ी कहेते है +carrot/carrot_1,इसे गाजर कहेते है +cube/cube_3,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +banana/banana_1,यह केला है +cabbage/cabbage_4,यह सब्जी है कोई सी +cucumber/cucumber_2,यह हरी ककड़ी है +carrot/carrot_1,यह गाजर है +cube/cube_3,यह नीली क्यूब है +banana/banana_1,यह एक पका हुआ केला है जो की थोड़ा मुड़ा हुआ है आधे चाँद की तरह +cabbage/cabbage_4,यह वस्तु बैंगन की तरह दिख रही है जिसका ऊपर का धड़ कटा हुआ है +cucumber/cucumber_2,यह गिलकी की तरह दिख रही है और इसका रंग गाड़ा हरा है +carrot/carrot_1,यह वस्तु गाजर की तरह है और रंग हल्का नारंगी है +cube/cube_3,यह एक नीला घन नुमा वस्तु है +banana/banana_1,यह एक केला है +cabbage/cabbage_4,यह एक बैगन है +cucumber/cucumber_2,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +carrot/carrot_1,यह एक गाजर है +cube/cube_3,इस वॉशिंग सोप है +banana/banana_1,यह एक केले का चित्र है +cabbage/cabbage_4,यह एक बंदगोभी का चित्र है +cucumber/cucumber_2,यह एक खीरे का चित्र है +carrot/carrot_1,यह एक गाजर का चित्र है +cube/cube_3,यह एक वर्ग के आकर का चित्र है +banana/banana_1,केला फल +cabbage/cabbage_4,गोभी सब्जी +cucumber/cucumber_2,खीरा सब्जी +carrot/carrot_1,गाजर फल +cube/cube_3,घन क्षेत्र +banana/banana_1,यह एक केला है +cabbage/cabbage_4,यह एक पत्तागोभी है +cucumber/cucumber_2,यह एक खीरा है +carrot/carrot_1,यह एक गाजर है +cube/cube_3,यह एक नीला घनक्षेत्र है +triangle/triangle_2,पिला रबर का टुकड़ा है +lime/lime_1,यह ककड़ी है +cuboid/cuboid_4,नील रंग का रबर का टुकड़ा है +cabbage/cabbage_4,यह गोबी है +triangle/triangle_1,लाल रंग का रबर का टुकड़ा है +triangle/triangle_2,यह एक पीला त्रिकोण है +lime/lime_1,यह एक कच्चा निम्बू है +cuboid/cuboid_4,यह एक नीला घनाभ है +cabbage/cabbage_4,यह एक पत्तागोभी है +triangle/triangle_1,यह एक लाल त्रिकोण है +triangle/triangle_2,अज्ञात वस्तु +lime/lime_1,यदि नींबू +cuboid/cuboid_4,चोकोर नीला +cabbage/cabbage_4,बंद गोभी +triangle/triangle_1,त्रिकोण वस्तु +triangle/triangle_2,यह एक त्रिकोणीय संक्षेत्र नुमा वस्तु है जिसका रंग पीला है +lime/lime_1,यह एक कच्चा नींबू है जिसका रंग हरा है +cuboid/cuboid_4,यह एक आयतफलकी नुमा वस्तु है जिसका रंग नीला है +cabbage/cabbage_4,यह एक बैंगनी पत्तागोभी है जोकि गोल है +triangle/triangle_1,यह एक त्रिकोणीय संक्षेत्रनुमा वस्तु है जिसका रंग लाल है +triangle/triangle_2,यह एक पीले रंग का आयत हे +lime/lime_1,यह एक खीरे का चित्र हे +cuboid/cuboid_4,यह एक नीले रंग का घनाभ हे +cabbage/cabbage_4,यह एक बैंगनी रंग का बंद गोबी का चित्र हे +triangle/triangle_1,यह एक लाल रंग का आयत हे +triangle/triangle_2,यह तस्वीर पीले रंग में है +lime/lime_1,यह स्वास्थ्य के लिए अच्छा है +cuboid/cuboid_4,यह चित्र आयताकार आकार में है +cabbage/cabbage_4,यह तस्वीर बहुत अच्छी लग रही है +triangle/triangle_1,यह चित्र आयताकार आकार में है +triangle/triangle_2,ये पीले रंग की चौकोर हैं +lime/lime_1,ये हरे रंग का अमरुद है +cuboid/cuboid_4,ये नीले रंग का आयता है +cabbage/cabbage_4,ये बैगनी रंग की पत्तागोभी है +triangle/triangle_1,ये लाल रंग की वस्तु है +triangle/triangle_2,यह कोई पीले रंग का रब्बर का टुकड़ा है +lime/lime_1,यह एक हरा नींबू है +cuboid/cuboid_4,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +cabbage/cabbage_4,यह गोभी है +triangle/triangle_1,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +triangle/triangle_2,यह एक घन प्रकार की वस्तु है +lime/lime_1,यह नींबू है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +cuboid/cuboid_4,यह एक घन प्रकार की वस्तु है +cabbage/cabbage_4,यह फूलगोभी है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +triangle/triangle_1,यह एक घनाकार वस्तु है +triangle/triangle_2,एक त्रिभुज एक बहुभुज है जिसमें तीन किनारे और तीन कोने हैं +lime/lime_1,चूना एक कैल्शियम युक्त अकार्बनिक खनिज है +cuboid/cuboid_4,घनाकार के छह पक्ष होते हैं +cabbage/cabbage_4,गोभी के बीज के पत्तों में एक पतला टैपरोट और कॉर्डेट कोटिल्डॉन होता है +triangle/triangle_1,एक समबाहु त्रिभुज की सभी भुजाएँ समान होती हैं +triangle/triangle_2,यह एक त्रिकोण है +lime/lime_1,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +cuboid/cuboid_4,यह एक घनाभ है +cabbage/cabbage_4,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +triangle/triangle_1,यह एक त्रिकोण है +triangle/triangle_2,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +lime/lime_1,इसे नींबू कहेते है +cuboid/cuboid_4,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +cabbage/cabbage_4,इसे गोभी कहेते है +triangle/triangle_1,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +triangle/triangle_2,पीले रंग का त्रिभुज +lime/lime_1,काग़ज़ी नींबू +cuboid/cuboid_4,घनाभ षटफलक +cabbage/cabbage_4,गोभी सब्जी +triangle/triangle_1,लाल रंग का त्रिभुज +triangle/triangle_2,यह एक त्रिकोण के आकर का चित्र है +lime/lime_1,येह एक अमरुद का चित्र है +cuboid/cuboid_4,यह एक साबुन का चित्र है +cabbage/cabbage_4,यह एक बैंगन का चित्र है +triangle/triangle_1,यह एक त्रिकोण के आकर का चित्र है +triangle/triangle_2,पीला त्रिकोण +lime/lime_1,निम्बू हरा है +cuboid/cuboid_4,नीला चौकोर +cabbage/cabbage_4,गोबी लाल है +triangle/triangle_1,लाल चौकोर +triangle/triangle_2,पिले रंग की आयताकार पट्टी है जिसका एक कोना टूटा हुआ है +lime/lime_1,हरे रंग का खीरा ऐसे रखा है जैसे किसीने उसे एक सिरे से खाया हो +cuboid/cuboid_4,नीले रंग का आयताकार त्रिविम दृश्यंन तिरछा रखा गया है +cabbage/cabbage_4,बैंगनी रंग की पत्ता गोबी सुख रही है +triangle/triangle_1,लाल रंग का त्रिकोण त्रिविम दृश्यंन ऐसे रखा गया है जिसमे त्रिकोण की तीनों भुजाये पटल पर टिकी हुई है +triangle/triangle_2,एक गन्ना +lime/lime_1,एक छोटा हरा नींबू +cuboid/cuboid_4,एक धुलाई बार +cabbage/cabbage_4,एक बैंगनी पत्ता गोभी +triangle/triangle_1,लाल त्रिकोण ब्लॉक +cabbage/cabbage_3,एक काली गेंद +arch/arch_4,लाल प्लास्टिक +potato/potato_4,एक आलू +cylinder/cylinder_1,गन्ने का टुकड़ा +orange/orange_2,एक पीला नींबू +cabbage/cabbage_3,यह वस्तु बैंगनी रंग की पत्तागोभी है और इसका आकार लगभग गोल है +arch/arch_4,यह एक आढ़ी मेहराब नुमा लाल रंग की वस्तु है +potato/potato_4,यह एक अंडाकार आलू है और इसका रंग हल्का भूरा है +cylinder/cylinder_1,यह एक खड़ी पीले रंग की और बेलननुमा आकार की वस्तु है +orange/orange_2,यह वस्तु एक पीले रंग का संतरा है +cabbage/cabbage_3,यह तस्वीर अच्छी तरह से दिखाई नहीं देती है +arch/arch_4,यह हल्के लाल रंग में दिखता है स्पष्ट दिखता है +potato/potato_4,यह हल्के पीले रंग में दिखता है स्पष्ट दिखता है +cylinder/cylinder_1,यह हल्के पीले रंग में दिखता है अच्छा दिखता है +orange/orange_2, जो स्वास्थ्य के लिए अच्छा है +cabbage/cabbage_3,गोल और बैंगनी सब्जी +arch/arch_4,लाल वस्तु +potato/potato_4,भूरा आलू +cylinder/cylinder_1,पीली गोलाकार वस्तु +orange/orange_2,पीले रंग की गोलाकार वस्तु +cabbage/cabbage_3,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +arch/arch_4,यह एक आर्च है +potato/potato_4,यह एक आलू है +cylinder/cylinder_1,यह सिलेंडर है +orange/orange_2,यह एक संतरा है +cabbage/cabbage_3,बैंगनी रंग की गोभी +arch/arch_4,लाल रंग वाली वस्तु +potato/potato_4,छिलके वाला आलू +cylinder/cylinder_1,पीला बेलन +orange/orange_2,पीले छिलके वाला नीबूं +cabbage/cabbage_3,इसे गोभी कहेते है +arch/arch_4,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +potato/potato_4,इसे आलू कहेते है +cylinder/cylinder_1,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +orange/orange_2,इसे संतरा कहेते है +cabbage/cabbage_3,कोई सब्जी है +arch/arch_4,लाल सा कुछ है +potato/potato_4,आलू है +cylinder/cylinder_1,पीला बेलन जैसे आकार का कुछ है +orange/orange_2,सेवफल सा है +cabbage/cabbage_3,गोभी सब्जी +arch/arch_4,मेहराब वृत्त खंड +potato/potato_4,आलू सब्जी +cylinder/cylinder_1,पीले रंग का बेलन +orange/orange_2,संतरा फल +cabbage/cabbage_3,यह फूलगोभी है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +arch/arch_4,यह एक घन प्रकार की वस्तु है +potato/potato_4,यह आम है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +cylinder/cylinder_1,यह एक घन प्रकार की वस्तु है +orange/orange_2,यह आम है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +cabbage/cabbage_3,यह एक पत्तागोभी है +arch/arch_4,यह एक लाल मेहराब है +potato/potato_4,यह एक आलू है +cylinder/cylinder_1,यह एक पीला सिलेंडर है +orange/orange_2,यह एक संतरा है +cabbage/cabbage_3,ये बैगनी रंग की पत्तागोभी है +arch/arch_4,ये लाल रंग की वस्तु है +potato/potato_4,ये आलु है +cylinder/cylinder_1,ये पीले रंग की वस्तु है +orange/orange_2,ये संतरा हैं +cabbage/cabbage_3,यह एक बैंगनी रंग की बंद गोभी का चित्र हे +arch/arch_4,यह एक ऐसी आकृती हे मानो एक लाल रंग का घनाभ के बीच से एक आधा क्षेत्र निकाल दिया हो +potato/potato_4,यह एक आलू का चित्र हे +cylinder/cylinder_1,यह एक पीले रंग का बेलनाकार वस्तु का चित्र हे +orange/orange_2,यह एक मुसंबी का चित्र हे +cabbage/cabbage_3,इसको गोभी कहा जाता है +arch/arch_4,ये कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +potato/potato_4,इसको आलू कहा जाता है +cylinder/cylinder_1,यह कोई पीले रंग का रब्बर का टुकड़ा है +orange/orange_2,इसको संतरा कहा जाता है +cabbage/cabbage_3,काले रंग का गोला रखा हुआ है +arch/arch_4,लाल रंग के आयत को अर्ध चंद्र काटा गया है +potato/potato_4,आलू काफी रसीला लग रहा है +cylinder/cylinder_1,पिले रंग की पट्टी रखी हुई है +orange/orange_2,सुनहरे पिले रंग का निम्बू है +cabbage/cabbage_3,यह गोभी है +arch/arch_4,यह लाल रंग की प्लास्टिक या रबर की कोई वस्तु है +potato/potato_4,यह एक आलू है +cylinder/cylinder_1,यह पीले रंग का प्लास्टिक का टुकड़ा है +orange/orange_2,यह संतरा है +orange/orange_2,जो स्वास्थ्य के लिए अच्छा है +cabbage/cabbage_1,यह हल्के बैंगनी रंग में दिखता है +banana/banana_4,जो स्वास्थ्य के लिए अच्छा है +cabbage/cabbage_2,यह हल्के बैंगनी रंग में दिखता है +tomato/tomato_3,जो स्वास्थ्य के लिए अच्छा है +orange/orange_2,यह संतरा है +cabbage/cabbage_1,यह बैंगन है +banana/banana_4,यह एक केला है +cabbage/cabbage_2,यह एक सब्जी है +tomato/tomato_3,इस चित्र में एक टमाटर है +orange/orange_2,इसे संतरा कहेते है +cabbage/cabbage_1,इसे गोभी कहेते है +banana/banana_4,इसे केला कहेते है +cabbage/cabbage_2,इसे गोभी कहेते है +tomato/tomato_3,इसे टमाटर कहेते है +orange/orange_2,नारंगी हल्दी सबसे स्वादिष्ट फल है इसका रस खट्टा होता है यह शरीर के लिए अच्छा होता है +cabbage/cabbage_1,केपी का उपयोग तब किया जाता है जब यह नूडल्स से बना होता है +banana/banana_4,केले का उपयोग इसे टेबल पर रखने के लिए किया जाता है और सांबर के साथ एक सिरिंज में पकाया जाता है +cabbage/cabbage_2,केपी का उपयोग तब किया जाता है जब यह नूडल्स से बना होता है +tomato/tomato_3,टमाटर एक सस्ता पनीर है जो सूप जैसे सूप बनाने में महत्वपूर्ण भूमिका निभाता है +orange/orange_2,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +cabbage/cabbage_1,यह फूलगोभी है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +banana/banana_4,यह केला है और इसका उपयोग विभिन्न व्यंजनों को तैयार करने के लिए किया जाता है +cabbage/cabbage_2,यह फूलगोभी है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +tomato/tomato_3,यह टमाटर है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +orange/orange_2,वस्तु पीली है +cabbage/cabbage_1,वस्तु नीले और बैंगनी रंग की है +banana/banana_4,वस्तु एक फल है +cabbage/cabbage_2,वस्तु एक सब्जी है +tomato/tomato_3,लाल रंग की वस्तु टमाटर है +orange/orange_2,यह एक नींबू है +cabbage/cabbage_1,यह गोभी है +banana/banana_4,यह एक केला है +cabbage/cabbage_2,यह गोभी है +tomato/tomato_3,यह एक टमाटर है +orange/orange_2,यह एक मुसंबी का चित्र हे +cabbage/cabbage_1,यह एक बैंगनी रंग का बंद गोबी का चित्र हे +banana/banana_4,यह एक हरे रंग का केले का चित्र हे +cabbage/cabbage_2,यह एक बैंगनी रंग का बंद गोबी का चित्र हे +tomato/tomato_3,यह एक टमाटर का चित्र हे +orange/orange_2,यह एक नारंगी है +cabbage/cabbage_1,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +banana/banana_4,यह केला है +cabbage/cabbage_2,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +tomato/tomato_3,यह टमाटर है +orange/orange_2,पीला निम्बू है यह +cabbage/cabbage_1,यह लाल गोबी है +banana/banana_4,यह एक केला है +cabbage/cabbage_2,यह एक सब्जी है +tomato/tomato_3,यह लाल टमाटर है +orange/orange_2,संतरा सेहत के लिए अच्छा होता है +cabbage/cabbage_1,जामुनी रंग की पत्तागोबी कभी कभी ही मिलती है +banana/banana_4,केला खाने से सेहत बनती है +cabbage/cabbage_2,जामुनी रंग की पत्तागोबी बहुत सुंदर दिखती है +tomato/tomato_3,टमाटर बहुत सुंदर लाल रंग का दिख रहा है +orange/orange_2,ये नींबू है +cabbage/cabbage_1,ये है बैंगनी गोभी +banana/banana_4,ये केला है +cabbage/cabbage_2,ये है बैंगनी गोभी +tomato/tomato_3,यह लाल टमाटर है +orange/orange_2,इसको संतरा कहा जाता है +cabbage/cabbage_1,इसको गोभी कहा जाता है +banana/banana_4,इसको केला कहा जाता है +cabbage/cabbage_2,इसको गोभी कहा जाता है +tomato/tomato_3,इसको टमाटर कहा जाता है +orange/orange_2,ये संतरा है +cabbage/cabbage_1,ये बेंगनी रंग की पत्तागोभी है +banana/banana_4,ये केला है +cabbage/cabbage_2,ये बैगनी रंग की पत्तागोभी है +tomato/tomato_3,ये लाल रंग का टमाटर है +orange/orange_2,मोसंबी के रस से हिमोग्लोबिन बढ़ता है +cabbage/cabbage_1,पता गोभी सलाद में अच्छा लगता है +banana/banana_4,केले कि सब्जी भी बनाए जाते हैं +cabbage/cabbage_2,पता गोभी में प्रोटीन होता है +tomato/tomato_3,टमाटर का सूप बरसात में पिटने में अच्छा लगता है +orange/orange_2,यह एक संतरा है +cabbage/cabbage_1,यह एक पत्तागोभी है +banana/banana_4,यह एक केला है +cabbage/cabbage_2,यह एक पत्तागोभी है +tomato/tomato_3,यह एक टमाटर है +orange/orange_2,यह वस्तु एक पीले रंग का संतरा है +cabbage/cabbage_1,यह वस्तु बैंगनी रंग की पत्तागोभी है और इसका आकार अंडाकार है +banana/banana_4,यह एक अधपका केला है +cabbage/cabbage_2,यह वस्तु बैंगनी रंग की पत्तागोभी है और इसका आकार अंडाकार है +tomato/tomato_3,यह एक लाल रंग का टमाटर है जिसके ऊपर पत्ती नुमा छतरी लगी हुई है +plum/plum_4,यह तस्वीर लाल रंग में है और यह बहुत अच्छा लग रहा है +triangle/triangle_4,यह चित्र नीले रंग में है +triangle/triangle_3,यह चित्र अच्छी तरह से दिखाई नहीं देता है +triangle/triangle_3,यह चित्र हरे रंग में है और यह बहुत अच्छा लग रहा है +triangle/triangle_3,यह चित्र हरे रंग में है और यह बहुत अच्छा लग रहा है +plum/plum_4,यह लाल गोलाकार वस्तु है +triangle/triangle_4,यह एक नीली वस्तु है और इसका निचली और ऊपरी भाग त्रिकोण +triangle/triangle_3,यह एक त्रिकोण हरे रंग की वस्तु है +triangle/triangle_3,यह एक त्रिकोण हरे रंग की वस्तु है +triangle/triangle_3,यह एक त्रिकोण हरे रंग की वस्तु है +plum/plum_4,इसे बेर कहेते है +triangle/triangle_4,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +triangle/triangle_3,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +triangle/triangle_3,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +triangle/triangle_3,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +plum/plum_4,ये लाल सेब है +triangle/triangle_4,ये नीले रंग की वस्तु है +triangle/triangle_3,ये हरे रंग की वस्तु है +triangle/triangle_3,ये हरे रंग की वस्तु है +triangle/triangle_3,ये हरे रंग की वस्तु है +plum/plum_4,यह कोई फल या सब्जी है +triangle/triangle_4,यह नीले रंग का रबर या प्लास्टिक का टुकड़ा है +triangle/triangle_3,यह हरे रंग का रबर या प्लास्टिक का टुकड़ा है +triangle/triangle_3,या हरे रंग का रबर या प्लास्टिक का टुकड़ा है +triangle/triangle_3,या हरे रंग का रबर या प्लास्टिक का टुकड़ा है +plum/plum_4,बेर मीठा फल +triangle/triangle_4,नीले रंग का त्रिभुज +triangle/triangle_3,हरे रंग का त्रिभुज +triangle/triangle_3,हरे रंग का त्रिभुज +triangle/triangle_3,हरे रंग का त्रिभुज +plum/plum_4,यह एक सेब का चित्र हे +triangle/triangle_4,यह एक नीले रंग का त्रिविम दृश्यन त्रिकोन हे +triangle/triangle_3,यह एक हरे रंग का त्रिविम दृश्यन समकोण ट्रिभुज हे +triangle/triangle_3,यह एक हरे रंग का त्रिविम दृश्यन समकोण ट्रिभुज हे +triangle/triangle_3,यह एक हरे रंग का त्रिविम दृश्यन समकोण ट्रिभुज हे +plum/plum_4,यह एक बेर है +triangle/triangle_4,यह एक त्रिकोण है +triangle/triangle_3,यह एक त्रिकोण है +triangle/triangle_3,यह एक त्रिकोण है +triangle/triangle_3,यह एक त्रिकोण है +plum/plum_4,यह एक सेब का चित्र है +triangle/triangle_4,यह एक साबुन का चित्र है +triangle/triangle_3,यह एक त्रिकोण के आकर का चित्र है +triangle/triangle_3,यह एक त्रिकोण के आकर का चित्र है +triangle/triangle_3,यह एक त्रिकोण के आकर का चित्र है +plum/plum_4,यह बेर है +triangle/triangle_4,यह त्रिकोण नीला है +triangle/triangle_3,यह त्रिकोण हरा है +triangle/triangle_3,यह त्रिकोण बहुत छोटा है +triangle/triangle_3,यह त्रिकोण है +plum/plum_4,यह एक बेर है +triangle/triangle_4,यह एक नीला त्रिकोण है +triangle/triangle_3,यह एक हरा त्रिकोण है +triangle/triangle_3,यह एक हरा त्रिकोण है +triangle/triangle_3,यह एक हरा त्रिकोण है +plum/plum_4,ये पत्ती है +triangle/triangle_4,ये नीला वाला खंड है +triangle/triangle_3,ये हरा वाला त्रिकोण है +triangle/triangle_3,ये हरा वाला त्रिकोण है +triangle/triangle_3,ये हरा वाला त्रिकोण है +plum/plum_4,यह बेर है +triangle/triangle_4,यह एक घनाभ है +triangle/triangle_3,यह एक त्रिकोण है +triangle/triangle_3,यह एक त्रिकोण है +triangle/triangle_3,यह एक त्रिकोण है +plum/plum_4,इसे पेस्ट बनाने के लिए आलू के साथ किया जा सकता है अलुवा परोता शोरबा बना सकते हैं +triangle/triangle_4,आयत के इस रूप में चार दिमाग हैं जिसका उपयोग लेखा पाठ में किया जाता है +triangle/triangle_3,इस आकृति के साथ नाम त्रिभुज लेखांकन में लंबाई चौड़ाई का उपयोग करते हुए तीन स्थिति है +triangle/triangle_3,बिस्तर के प्रकार के साथ यह त्रिकोण त्रिकोण आमतौर पर केवल लेखांकन में उपयोग किया जाता है +triangle/triangle_3,इस आकृति के साथ त्रिभुज का आकार दाहिने हाथ की तरफ बाईं ओर तीन भाग है और फिर बिस्तर के पृष्ठ के तीन तरफ +plum/plum_4,यह टमाटर है +triangle/triangle_4,यह नीली वास्तु है +triangle/triangle_3,यह हरी वास्तु है +triangle/triangle_3,यह हरी वास्तु है +triangle/triangle_3,यह हरी वास्तु है +plum/plum_4,यह एक बेर है +triangle/triangle_4,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +triangle/triangle_3,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +triangle/triangle_3,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +triangle/triangle_3,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +plum/plum_4,यह बीट है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +triangle/triangle_4,यह एक घन प्रकार की वस्तु है +triangle/triangle_3,यह एक घन प्रकार की वस्तु है +triangle/triangle_3,यह एक त्रिकोणीय प्रकार की वस्तु है +triangle/triangle_3,यह एक घनाकार वस्तु है +semicylinder/semicylinder_1,यह एक घन प्रकार की वस्तु है +banana/banana_1,यह केला है और इसका उपयोग विभिन्न व्यंजनों को तैयार करने के लिए किया जाता है +eggplant/eggplant_3,यह बैंगन है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +plum/plum_3,यह बीट है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +arch/arch_1,यह एक घनाकार वस्तु है +semicylinder/semicylinder_1,यह नीले रंग में है +banana/banana_1,यह स्वास्थ्य के लिए अच्छा है +eggplant/eggplant_3,यह स्वास्थ्य के लिए अच्छा है +plum/plum_3,यह स्वास्थ्य के लिए अच्छा है +arch/arch_1,यह पीले रंग में है +semicylinder/semicylinder_1,ये नीले रंग की वस्तु है +banana/banana_1,ये पीले रंग का केला हैं +eggplant/eggplant_3,ये बैगन है +plum/plum_3,ये लाल रंग का सेब है +arch/arch_1,ये पीले रंग की वस्तु है +semicylinder/semicylinder_1,यह एक नीले रंग का आधा कटा बेलनाकार वस्तु हे +banana/banana_1,यह एक पीले रंग का केला हे +eggplant/eggplant_3,यह एक बैंगन का चित्र हे +plum/plum_3,यह एक सेब का चित्र हे +arch/arch_1,यह एक ऐसी आकृती हे मानो एक पीले रंग का घनाभ के बीच से एक आधा क्षेत्र निकाल दिया हो +semicylinder/semicylinder_1,ये अर्ध वृत्त खंड है +banana/banana_1,ये केला है +eggplant/eggplant_3,ये आलू है +plum/plum_3,ये है बैंगनी गोभी +arch/arch_1,ये अर्ध वृत्त खंड है +semicylinder/semicylinder_1,यह नील रंग की कोई प्लास्टिक या रबर की कोई वस्तु है +banana/banana_1,यह एक केला है +eggplant/eggplant_3,यह एक बेंगन है +plum/plum_3,यह सेब है +arch/arch_1,यह पीले रंग का प्लास्टिक या रबर का कोई आकार है +semicylinder/semicylinder_1,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +banana/banana_1,इसे केला कहेते है +eggplant/eggplant_3,इसे बेंगन कहेते है +plum/plum_3,इसे बेर कहेते है +arch/arch_1,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +semicylinder/semicylinder_1,यह एक अर्ध सिलेंडर है +banana/banana_1,यह एक केला है +eggplant/eggplant_3,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +plum/plum_3,यह बेर है +arch/arch_1,यह एक आर्च है +semicylinder/semicylinder_1,नीले रंग का अर्ध बेलन +banana/banana_1,केला फल +eggplant/eggplant_3,बैगन सब्जी +plum/plum_3,बेर मीठा फल +arch/arch_1,मेहराब वृत्त खंड +semicylinder/semicylinder_1,यह एक नीले रंग की और अर्ध बेलननुमा आकार की वस्तु है +banana/banana_1,यह एक पीला पका हुआ केला है +eggplant/eggplant_3,यह एक लम्बा पतला बैंगनी रंग का बैंगन है +plum/plum_3,यह एक आलूबुखारा फल है जोकि दिखने में लाल रंग का है +arch/arch_1,यह एक उलटी मेहराब नुमा पीले रंग की वस्तु है +semicylinder/semicylinder_1,नीला अर्धबेलनाकार +banana/banana_1,पका हुआ केला +eggplant/eggplant_3,गोल बैंगन +plum/plum_3,लाल सेव +arch/arch_1,पीला अर्धवृत्त +semicylinder/semicylinder_1,अधा गोल +banana/banana_1,कीला खा +eggplant/eggplant_3,बंजी भरता है +plum/plum_3,सेब खाएं +arch/arch_1,अज्ञात वस्तु +semicylinder/semicylinder_1,नीला अर्ध गोल आकर की चीज +banana/banana_1,केला है +eggplant/eggplant_3,बैगन है +plum/plum_3,शेयफल है +arch/arch_1,कुछ पीला सा है +semicylinder/semicylinder_1,यह एक साबुन का चित्र है +banana/banana_1,यह एक केले का चित्र है +eggplant/eggplant_3,यह एक बैंगन का चित्र है +plum/plum_3,यह एक सेब का चित्र है +arch/arch_1,यह एक साबुन का चित्र है +semicylinder/semicylinder_1,यह एक नीला अर्ध सिलेंडर है +banana/banana_1,यह एक केला है +eggplant/eggplant_3,यह एक बैंगन है +plum/plum_3,यह एक बेर है +arch/arch_1,यह एक पीला मेहराब है +semicylinder/semicylinder_1,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +banana/banana_1,यह एक केला है +eggplant/eggplant_3,यह एक बेंगन है +plum/plum_3,यह एक बेर है +arch/arch_1,यह एक बेर है +arch/arch_2,यह एक आयातफलकीनुमा नीले रंग की कोई वस्तु है +corn/corn_4,यह वस्तु एक छिला हुआ भुट्टा है जिसके दाने सफ़ेद है +eggplant/eggplant_1,यह एक लम्बा पतला बैंगनी रंग का बैंगन है +cylinder/cylinder_1,यह एक पीले रंग की और बेलननुमा आकार की वस्तु है +eggplant/eggplant_3,यह एक लम्बा पतला बैंगनी रंग का बैंगन है +arch/arch_2,यह एक ऐसी आकृती हे मानो एक नीले रंग का घनाभ के बीच से एक आधा क्षेत्र निकाल दिया हो +corn/corn_4,यह एक छिला हुआ भुट्टे का चित्र हे +eggplant/eggplant_1,यह एक बैंगन का चित्र हे +cylinder/cylinder_1,यह एक पीले रंग का बेलनाकार वस्तु का चित्र हे +eggplant/eggplant_3,यह एक बैंगन का चित्र हे +arch/arch_2,यह एक साबुन का चित्र है +corn/corn_4,यह एक भुट्टा है +eggplant/eggplant_1,यह एक बैगन का चित्र है +cylinder/cylinder_1,यह बेलन के आकार का चित्र है +eggplant/eggplant_3,यह एक बैगन का चित्र है +arch/arch_2,मेहराब वृत्त खंड +corn/corn_4,मकाई का भुट्टा +eggplant/eggplant_1,बैगन सब्जी +cylinder/cylinder_1,पीले रंग का बेलन +eggplant/eggplant_3,बैगन सब्जी +arch/arch_2,यह तस्वीर नीले रंग में है +corn/corn_4,यह स्वास्थ्य के लिए अच्छा है +eggplant/eggplant_1,यह तस्वीर बैगन की है +cylinder/cylinder_1,यह तस्वीर पीले रंग की है +eggplant/eggplant_3,यह तस्वीर बैगन की है +arch/arch_2,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +corn/corn_4,यह मक्के का भुट्टा है +eggplant/eggplant_1,यह एक बेंगन है +cylinder/cylinder_1,यह एक पीले रंग की प्लास्टिक या रबर की कोई वस्तु है +eggplant/eggplant_3,यह एक बेंगन है +arch/arch_2,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +corn/corn_4,यह मक्के का भुट्टा है +eggplant/eggplant_1,यह एक बेंगन है +cylinder/cylinder_1,यह कोई पीले रंग का रब्बर का टुकड़ा है +eggplant/eggplant_3,यह एक बेंगन है +arch/arch_2,नीली वास्तु है +corn/corn_4,भुट्टा है +eggplant/eggplant_1,बैगन सा है +cylinder/cylinder_1,पीला है +eggplant/eggplant_3,बैगन सा है +arch/arch_2,ये नीले रंग की वस्तु है +corn/corn_4,ये मक्का हैइसका सूप बनाया जाता है +eggplant/eggplant_1,ये बैगन है यह एक सब्जी है +cylinder/cylinder_1,ये पीले रंग की वस्तु है +eggplant/eggplant_3,ये बैगन है +arch/arch_2,नीले रंग का आयत ऐसे काटा गया है कि लम्ब में अर्ध चंद्र भाग दर्शा रहा है +corn/corn_4,दानो से पूर्ण भरा हुआ मक्का दिखाया गया है +eggplant/eggplant_1,बैंगनी रंग का बैंगन आधा काटा हुआ एवम उसका पैर दिखाया गया है +cylinder/cylinder_1,पिले रंग का बेलनाकार त्रिविम दृश्यंन दर्शाया गया है +eggplant/eggplant_3,बैंगनी रंग का बैगन जिसका पैर टूटा हुआ है +arch/arch_2,यह एक आर्च है +corn/corn_4,यह मक्का है और अनाज के रूप में उपयोग किया जाता ह +eggplant/eggplant_1,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +cylinder/cylinder_1,यह सिलेंडर है +eggplant/eggplant_3,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +arch/arch_2,यह एक घन प्रकार की वस्तु है +corn/corn_4,यह मकई है और खाने में बहुत स्वादिष्ट है +eggplant/eggplant_1,यह बैंगन है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +cylinder/cylinder_1,यह एक घन प्रकार की वस्तु है +eggplant/eggplant_3,यह बैंगन है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +arch/arch_2,मेहराब वाल्टों का पर्याय बन सकता है +corn/corn_4,पूरे अमेरिका में मक्का सबसे अधिक पाई जाने वाली अनाज की फसल है +eggplant/eggplant_1,बैंगन में तेल को अवशोषित करने के लिए फल की क्षमता होती है +cylinder/cylinder_1,सिलेंडर को अब ज्यामिति और टोपोलॉजी की विभिन्न आधुनिक शाखाओं में परिभाषित किया गया है +eggplant/eggplant_3,बैंगन एक नाजुक उष्णकटिबंधीय बारहमासी पौधा है +arch/arch_2,यह एक नीला मेहराब है +corn/corn_4,यह एक मक्का है +eggplant/eggplant_1,यह एक बैंगन है +cylinder/cylinder_1,यह एक पीला सिलेंडर है +eggplant/eggplant_3,यह एक बैंगन है +arch/arch_2,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +corn/corn_4,इसे मक्के का भुट्टा कहेते है +eggplant/eggplant_1,इसे बेंगन कहेते है +cylinder/cylinder_1,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +eggplant/eggplant_3,इसे बेंगन कहेते है +arch/arch_2,यह एक नीले रंग की वस्तु है जो की आयताकार आकर की है यह बीच में से अर्धगोलाकार आकर में कटी हुई है +corn/corn_4,यह मकई है जिसे भुट्टा या मक्का भी कहते है यह एक प्रमुख फसल है यह वस्तुतः बारिश के मौसम में बहुतायत में मिलते है +eggplant/eggplant_1,यह एक बैंगन है यह एक सब्जी का प्रकार है इसका बना भर्ता भी स्वादिष्ट होता है +cylinder/cylinder_1,यह एक बेलनाकार वस्तु है जो की सतह पर पड़ी हुई है जो की पीले रंग की है +eggplant/eggplant_3,यह बैंगन है जो की सभी होती है यह काले रंग का होता है +potato/potato_1,यह कोई सब्जी या फल है +cucumber/cucumber_2,यह एक ककड़ी है +lemon/lemon_2,यह एक नींबू है +eggplant/eggplant_2,यह एक बेंगन है +corn/corn_2,यह छिला हुआ मक्के का भुट्टा है +potato/potato_1,सेब फल +cucumber/cucumber_2,खीरा सबजी +lemon/lemon_2,नींबू सबजी +eggplant/eggplant_2,बैंगन सबजी +corn/corn_2,मक्का अनाज +potato/potato_1,इसे लाल रंग का आलू कहते है +cucumber/cucumber_2,इसे ककड़ी कहेते है +lemon/lemon_2,इसे नींबू कहेते है +eggplant/eggplant_2,इसे बेंगन कहेते है +corn/corn_2,इसे मक्के का भुट्टा कहेते है +potato/potato_1,आलू सब्जी +cucumber/cucumber_2,खीरा सब्जी +lemon/lemon_2,नीबू खट्टा टेस्ट के लिए +eggplant/eggplant_2,बैंगन सब्जी +corn/corn_2,मकाई का भुट्टा +potato/potato_1,लाल गोलाकार फल +cucumber/cucumber_2,लंबी हरी सब्जी +lemon/lemon_2,पीली गोलाकार सब्जी +eggplant/eggplant_2,बैंगनी बैंगन +corn/corn_2,सफेद सिल +potato/potato_1,यह एक सेब का चित्र है +cucumber/cucumber_2,यह एक खीरे का चित्र है +lemon/lemon_2,यह एक निम्बू का चित्र है +eggplant/eggplant_2,यह एक बैंगन का चित्र है +corn/corn_2,यह एक भुट्टे का चित्र है +potato/potato_1,यह एक आलू है +cucumber/cucumber_2,यह एक खीरा है +lemon/lemon_2,यह एक निम्बू है +eggplant/eggplant_2,यह एक बैंगन है +corn/corn_2,यह एक मक्का है +potato/potato_1,ये लाल टमाटर हैये एक सब्जि है +cucumber/cucumber_2,ये हरी ककड़ी हैइसका उपयोग सलाद में होता है +lemon/lemon_2,ये पीले रंग का नीबू है +eggplant/eggplant_2,ये बैगन हैये एक सब्जी है +corn/corn_2,ये मक्का हैंइसका सूप बनाया जाता है +potato/potato_1,यह एक अंडाकार आलू है और इसका रंग लाल है +cucumber/cucumber_2,यह एक हरा पतला खीरा है +lemon/lemon_2,यह एक पीला छोटा और अंडाकार आकार का नींबू है +eggplant/eggplant_2,यह एक लम्बा पतला बैंगनी रंग का बैंगन है +corn/corn_2,यह वस्तु एक छिला हुआ भुट्टा है जिसके दाने सफ़ेद है +potato/potato_1,यह बीट है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +cucumber/cucumber_2,यह ककड़ी है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +lemon/lemon_2,यह आम है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +eggplant/eggplant_2,यह बैंगन है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +corn/corn_2,यह मकई है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +potato/potato_1,यह एक आलू है +cucumber/cucumber_2,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +lemon/lemon_2,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +eggplant/eggplant_2,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +corn/corn_2,यह एक मकई है +potato/potato_1,छोटा आलू है +cucumber/cucumber_2,हरी ककड़ी है लम्बी +lemon/lemon_2,पीला निम्बू है +eggplant/eggplant_2,बड़ा बैगन है +corn/corn_2,भुट्टा है +potato/potato_1,इसको लाल रंग के आलू कहा जाता है +cucumber/cucumber_2,इसको ककड़ी कहा जाता है +lemon/lemon_2,इसको नींबू कहा जाता है +eggplant/eggplant_2,इसको बेंगन कहा जाता है +corn/corn_2,इसको मक्के का भुट्टा कहा जाता है +potato/potato_1,यह तस्वीर अच्छी तरह से दिखाई नहीं देती है +cucumber/cucumber_2,यह तस्वीर अच्छी तरह से दिखाई नहीं देती है +lemon/lemon_2,यह तस्वीर अच्छी तरह से दिखाई नहीं देती है +eggplant/eggplant_2,यह तस्वीर अच्छी तरह से दिखाई नहीं देती है +corn/corn_2,यह तस्वीर अच्छी तरह से दिखाई नहीं देती है +potato/potato_1,सेब का जूस बनाती है +cucumber/cucumber_2,काकड़ी खाने से पेट में थंडक मिलती है +lemon/lemon_2,नींबू पानी मुझे बहुत अच्छा लगता है +eggplant/eggplant_2,बैंगन शरिर के लिए बहोत गर्म होता है +corn/corn_2,मक्का मुझे बहुत पसंद है +potato/potato_1,इसे पेस्ट बनाने के लिए आलू के साथ किया जा सकता है अलुवा परोता शोरबा बना सकते हैं +cucumber/cucumber_2,यह शरीर के लिए बहुत अच्छी चीज है +lemon/lemon_2,यह फल नींबू पीला है और इसका उपयोग सभी प्रकार के खाना पकाने के लिए किया जा सकता है +eggplant/eggplant_2,यह खाना पकाने के लिए बहुत उपयोगी सब्जी है +corn/corn_2,यह बहुत स्वादिष्ट शाम का भोजन है जो शरीर के लिए बहुत अच्छा है +semicylinder/semicylinder_1,अर्ध बेलनाकार रूपों का उपयोग उन सूत्रों के लिए किया जाता है जो सूत्रों के लिए उपयोग किए जाते हैं +triangle/triangle_1,यह त्रिकोणीय आकृतियों का एक रूप है और पाठ पढ़ाने वाले शिक्षकों के लिए नमूने के रूप के रूप में उपयोग किया जाता है +carrot/carrot_1,गाजर एक उच्च कीमत वाला आहार है जो ठंड को ठंडा करता है जिसमें बहुत सारा प्रोटीन होता है +lemon/lemon_4,नींबू का फल एक उत्कृष्ट फल का रस है इसका उपयोग नींबू का रस और नींबू चावल का उत्पादन करने के लिए किया जाता है +carrot/carrot_1,गाजर एक उच्च कीमत वाला आहार है जो ठंड को ठंडा करता है जिसमें बहुत सारा प्रोटीन होता है +semicylinder/semicylinder_1,ये नीला वाला अर्ध वृत्त खंड है +triangle/triangle_1,ये त्रिकोण है +carrot/carrot_1,यह चुकंदर है +lemon/lemon_4,ये नींबू है +carrot/carrot_1,यह चुकंदर है +semicylinder/semicylinder_1,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +triangle/triangle_1,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +carrot/carrot_1,इसे गाजर कहेते है +lemon/lemon_4,इसे नींबू कहेते है +carrot/carrot_1,इसे गाजर कहेते है +semicylinder/semicylinder_1,यह एक अर्ध सिलेंडर है +triangle/triangle_1,यह एक त्रिकोण है +carrot/carrot_1,यह गाजर और सबजी के रूप में उपयोग किया जाता है +lemon/lemon_4,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +carrot/carrot_1,यह गाजर और सबजी के रूप में उपयोग किया जाता है +semicylinder/semicylinder_1,ये नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +triangle/triangle_1,ये कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +carrot/carrot_1,इसको गाजर कहा जाता है +lemon/lemon_4,इसको नींबू कहा जाता है +carrot/carrot_1,इसको गाजर कहा जाता है +semicylinder/semicylinder_1,यह एक नीले रंग की और अर्ध बेलननुमा आकार की वस्तु है +triangle/triangle_1,यह एक त्रिकोणीय संक्षेत्रनुमा लाल रंग की वस्तु है +carrot/carrot_1,यह एक आढ़ा तिरछा गाजर है +lemon/lemon_4,यह एक पीला छोटा और अंडाकार आकार का नींबू है +carrot/carrot_1,यह एक आढ़ा तिरछा गाजर है +semicylinder/semicylinder_1,यह नीले रंग में है +triangle/triangle_1,यह लाल रंग में है +carrot/carrot_1,यह स्वास्थ्य के लिए अच्छा है +lemon/lemon_4,यह तस्वीर पीले रंग में है +carrot/carrot_1,यह स्वास्थ्य के लिए अच्छा है +semicylinder/semicylinder_1,अर्द्ध बेलन +triangle/triangle_1,त्रिभुज आकर +carrot/carrot_1,गाजर फल +lemon/lemon_4,नीबू खट्टा टेस्ट के लिए +carrot/carrot_1,गाजर फल +semicylinder/semicylinder_1,यह एक घन प्रकार की वस्तु है +triangle/triangle_1,यह एक घन प्रकार की वस्तु है +carrot/carrot_1,यह गाजर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +lemon/lemon_4,यह आम है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +carrot/carrot_1,यह गाजर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +semicylinder/semicylinder_1,यह नीले रंग का कोई आकार है +triangle/triangle_1,यह लाल रंग का कोई आकार है +carrot/carrot_1,यह एक गाजर है +lemon/lemon_4,यह एक नींबू है +carrot/carrot_1,यह गाजर है +semicylinder/semicylinder_1,यह एक साबुन का चित्र है +triangle/triangle_1,यह एक त्रिकोण के आकर का चित्र है +carrot/carrot_1,यह एक गाजर का चित्र है +lemon/lemon_4,यह एक निम्बू का चित्र है +carrot/carrot_1,यह एक गाजर का चित्र है +semicylinder/semicylinder_1,यह एक नीला अर्ध सिलेंडर है +triangle/triangle_1,यह एक लाल त्रिकोण है +carrot/carrot_1,यह एक गाजर है +lemon/lemon_4,यह एक निम्बू है +carrot/carrot_1,यह एक गाजर है +semicylinder/semicylinder_1,अधा गोल +triangle/triangle_1,त्रिकोण वस्तु +carrot/carrot_1,गजर हलवा +lemon/lemon_4,निबो खट्टा +carrot/carrot_1,गजर हलवा +semicylinder/semicylinder_1,ये नीले रंग की वस्तु है +triangle/triangle_1,ये लाल रंग की वस्तु है +carrot/carrot_1,ये लाल गाजर है +lemon/lemon_4,ये पीले रंग का नींबू है +carrot/carrot_1,ये लाल रंग का गाजर है +semicylinder/semicylinder_1,नीला वास्तु है +triangle/triangle_1,लाल रंग की त्रिकोड़े आकृति जैसे वास्तु है +carrot/carrot_1,यह एक प्रकार की जेड है जिसे गाजर कहते है +lemon/lemon_4,पीला निम्बू है +carrot/carrot_1,यह एक गाजर है लम्बी सी +semicylinder/semicylinder_1,यह नीला रंग है +triangle/triangle_1,यह लाल रंग है +carrot/carrot_1,यह गाजरी रंग है +lemon/lemon_4,यह पीला रंग है +carrot/carrot_1,यह गाज़री रंग है +cube/cube_3,नीला चौकोर है +cuboid/cuboid_1,पिल्ली लम्बी सी वास्तु है +cucumber/cucumber_2,यह लम्बी सी हरी ककड़ी है +cabbage/cabbage_2,लाल बैगन है +cuboid/cuboid_3,लाल रंग की वास्तु है +cube/cube_3,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +cuboid/cuboid_1,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +cucumber/cucumber_2,इसे ककड़ी कहेते है +cabbage/cabbage_2,इसे गोभी कहेते है +cuboid/cuboid_3,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +cube/cube_3,घन क्षेत्र +cuboid/cuboid_1,घनाभ षटफलक +cucumber/cucumber_2,खीरा सब्जी +cabbage/cabbage_2,गोभी सब्जी +cuboid/cuboid_3,घनाभ षटफलक +cube/cube_3,नीले रंग का चौकोन त्रिविम दृश्यंन टुकड़ा +cuboid/cuboid_1,पिले रंग का आयताकार त्रिविम दृश्यंन टुकड़ा +cucumber/cucumber_2,हरे रंग के खीरे का आधा चित्र +cabbage/cabbage_2,बैंगनी रंग की पत्ता गोबी जिसका निचला हिस्सा दिखाया जा रहा है +cuboid/cuboid_3,लाल रंग का आयताकार ऐसा रखा गया है जैसे पृष्ठभाग में लम्ब हो +cube/cube_3,यह एक नीले रंग का डब्बा है +cuboid/cuboid_1,यह एक पीले रंग का डब्बा है +cucumber/cucumber_2,गर्मीयो में खिरा खाना चाहिए +cabbage/cabbage_2,पता गोभी की सब्जी खाने चाहिए +cuboid/cuboid_3,यह एक लाल रंग का डब्बा नजर आ रहा है जिसका आकार आयत नज़र आ रहा है +cube/cube_3,यह घन है +cuboid/cuboid_1,यह एक घनाभ है +cucumber/cucumber_2,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +cabbage/cabbage_2,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +cuboid/cuboid_3,यह एक घनाभ है +cube/cube_3,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +cuboid/cuboid_1,यह कोई पीले रंग का रब्बर का टुकड़ा है +cucumber/cucumber_2,यह एक ककड़ी है +cabbage/cabbage_2,यह गोभी है +cuboid/cuboid_3,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +cube/cube_3,यह नीले रंग में है +cuboid/cuboid_1,यह पीले रंग में है +cucumber/cucumber_2,यह स्वास्थ्य के लिए अच्छा है +cabbage/cabbage_2,यह तस्वीर अच्छी लग रही है +cuboid/cuboid_3,यह लाल रंग में है +cube/cube_3,यह नीले रंग का कुछ रबर जैसा पदार्थ है +cuboid/cuboid_1,यह एक पीले रंग का रबर जैसा पदार्थ है +cucumber/cucumber_2,यह ककड़ी है +cabbage/cabbage_2,यह गोबी है +cuboid/cuboid_3,यह कोई लाल रंग का पदार्थ है +cube/cube_3,ये नीले रंग का चोकोर है +cuboid/cuboid_1,ये पीले रंग का आयतकर वस्तु है +cucumber/cucumber_2,ये हरि काकड़ी है +cabbage/cabbage_2,ये बैगनी रंग की पत्तागोभी है +cuboid/cuboid_3,ये लाल रंग की वस्तु हैइसका आकार आयताकार है +cube/cube_3,ये नीला वाला खंड है +cuboid/cuboid_1,ये है पीला वाला खंड +cucumber/cucumber_2,ये ककड़ी है +cabbage/cabbage_2,ये है बैंगनी गोभी +cuboid/cuboid_3,ये लाल वाला घनक्षेत्र है +cube/cube_3,नीला घन +cuboid/cuboid_1,पीली आयत +cucumber/cucumber_2,लंबी और हरी सब्जी +cabbage/cabbage_2,परिपत्र और बैंगनी सब्जी +cuboid/cuboid_3,लाल खड़ी आयत +cube/cube_3,यह एक नीले रंग का घनक्षेत्र का चित्र हे +cuboid/cuboid_1,यह एक पीले रंग का घनाभ हे +cucumber/cucumber_2,यह एक खीरे का चित्र हे +cabbage/cabbage_2,यह एक बैंगनी रंग का बंद गोबी का चित्र हे +cuboid/cuboid_3,यह एक लाल रंग का घनाभ हे +cube/cube_3,यह एक नीली घननुमा वस्तु है +cuboid/cuboid_1,यह एक पीला आयतफलकी नुमा वस्तु है +cucumber/cucumber_2,यह एक खीरा है जो गहरे हरे रंग का है +cabbage/cabbage_2,यह एक भुने बैंगन जैसी वस्तु है +cuboid/cuboid_3,यह एक आयतफलकी नुमा लाल वस्तु है +cube/cube_3,यह नीले रंग में एक वस्तु है जो घन के समान होता है और चित्र में घन की तरह कार्य करता है +cuboid/cuboid_1,यह नींबू के पीले रंग की एक वस्तु है जो एक पनीर जैसा दिखता है और चित्र में एक पनीर की तरह कार्य करता है +cucumber/cucumber_2,यह एक हरे रंग का ककड़ी है +cabbage/cabbage_2,यह गहरे रंग की वस्तु है +cuboid/cuboid_3,यह एक लाल वस्तु है यह एक सिलेंडर की तरह है +cube/cube_3,यह एक घन प्रकार की वस्तु है +cuboid/cuboid_1,यह एक घन प्रकार की वस्तु है +cucumber/cucumber_2,यह ककड़ी है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +cabbage/cabbage_2,यह फूलगोभी है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +cuboid/cuboid_3,यह एक घनाकार वस्तु है +cube/cube_3,यह एक नीला घनक्षेत्र है +cuboid/cuboid_1,यह एक पीला घनाभ है +cucumber/cucumber_2,यह एक खीरा है +cabbage/cabbage_2,यह एक पत्तागोभी है +cuboid/cuboid_3,यह एक लाल घनाभ है +cube/cube_4,यह एक वर्ग के आकर का चित्र है +tomato/tomato_4,यह एक टमाटर का चित्र है +cylinder/cylinder_3,यह एक बेलन के आकर का चित्र है +lime/lime_1,यह एक अमरुद का चित्र है +lemon/lemon_1,यह एक निम्बू का चित्र है +cube/cube_4,घनक्षेत्र आकार +tomato/tomato_4,लाल टमाटर +cylinder/cylinder_3,बेलनाकार वस्तु +lime/lime_1,हरा वस्तु +lemon/lemon_1,नीला वस्तु +cube/cube_4,यह एक चौकोर आकार की वस्तु है +tomato/tomato_4,इसका नाम टमाटर है इसका उपयोग टमाटर चावल में एक अच्छा उपखंड रसम बनाने के लिए किया जाता है +cylinder/cylinder_3,नाम सिलेंडर का उपयोग शिक्षकों के लिए किया जाता है जब यह सिखाता है और पाठ बनाता है +lime/lime_1,लाइम का उपयोग एक मुख्य घटक के रूप में किया जाता है +lemon/lemon_1,इस टीम का नाम नींबू का उत्पादन करने के लिए प्रयोग किया जाता है और नींबू चावल का उत्पादन करने के लिए उपयोग किया जाता है +cube/cube_4,यह घन है +tomato/tomato_4,यह एक टमाटर है +cylinder/cylinder_3,यह सिलेंडर है +lime/lime_1,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +lemon/lemon_1,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +cube/cube_4,ये कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +tomato/tomato_4,इसको टमाटर कहा जाता है +cylinder/cylinder_3,ये नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +lime/lime_1,इसको नींबू कहा जाता है +lemon/lemon_1,इसको नींबू कहा जाता है +cube/cube_4,यह लाल रंग की प्लास्टिक या रबर की कोई वस्तु है +tomato/tomato_4,यह एक टमाटर है +cylinder/cylinder_3,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +lime/lime_1,यह हरे रंग की कोई सब्जी या फल है +lemon/lemon_1,यह एक नींबू है +cube/cube_4,लाल चौकोर +tomato/tomato_4,देशी टमाटर +cylinder/cylinder_3,नीला बेलन +lime/lime_1,हरो निम्बो +lemon/lemon_1,पिली निम्बो +cube/cube_4,यह लाल रंग चौकोर आकार में है +tomato/tomato_4,यह स्वास्थ्य के लिए अच्छा है +cylinder/cylinder_3,यह नीला रंग दिखता है +lime/lime_1,यह स्वास्थ्य के लिए अच्छा है +lemon/lemon_1,यह स्वास्थ्य के लिए अच्छा है +cube/cube_4,यह लाल रंग की वस्तु है +tomato/tomato_4,यह टमाटर है +cylinder/cylinder_3,यह नीले रंग का आयात है +lime/lime_1,यह हरे रंग का गोला है +lemon/lemon_1,यह पीले रंग की वस्तु है +cube/cube_4,यह एक घन प्रकार की वस्तु है +tomato/tomato_4,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +cylinder/cylinder_3,यह एक घन प्रकार की वस्तु है +lime/lime_1,यह नींबू है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +lemon/lemon_1,यह आम है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +cube/cube_4,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +tomato/tomato_4,इसे टमाटर कहेते है +cylinder/cylinder_3,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +lime/lime_1,इसे नींबू कहेते है +lemon/lemon_1,इसे नींबू कहेते है +cube/cube_4,यह घन है +tomato/tomato_4,यह एक टमाटर है +cylinder/cylinder_3,यह एक सिलेंडर है +lime/lime_1,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +lemon/lemon_1,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +cube/cube_4,यह एक घन नुमा लाल रंग की कोई वस्तु है +tomato/tomato_4,यह एक लाल पीले रंग का अधपका टमाटर है जिसके ऊपर पत्ती नुमा छतरी लगी हुई है +cylinder/cylinder_3,यह एक नीले रंग की और बेलननुमा आकार की वस्तु है +lime/lime_1,यह एक हरा छोटा नींबू है +lemon/lemon_1,यह एक पीला छोटा और अंडाकार आकार का नींबू है +cube/cube_4,घन क्षेत्र +tomato/tomato_4,टमाटर सब्जी +cylinder/cylinder_3,नीले रंग का बेलन +lime/lime_1,काग़ज़ी नींबू +lemon/lemon_1,नीबू खट्टा टेस्ट के लिए +cube/cube_4,ये लाल रंग की वस्तु है इसका आकार चौकोर है +tomato/tomato_4,ये लाल रंग का टमाटर है +cylinder/cylinder_3,ये नीले रंग की बेलनाकार वस्तु है +lime/lime_1,ये गहरे हरे रंग की वस्तु है +lemon/lemon_1,ये नींबू हैये पीले रंग का होता है +cube/cube_4,यह एक लाल घनक्षेत्र है +tomato/tomato_4,यह एक टमाटर है +cylinder/cylinder_3,यह एक नीला सिलेंडर है +lime/lime_1,यह एक कच्चा निम्बू है +lemon/lemon_1,यह एक निम्बू है +lime/lime_2,लाइम का उपयोग एक मुख्य घटक के रूप में किया जाता है +lemon/lemon_4,इस टीम का नाम नींबू का उत्पादन करने के लिए प्रयोग किया जाता है और नींबू चावल का उत्पादन करने के लिए उपयोग किया जाता है +carrot/carrot_3,गाजर बहुत सारे अनुष्ठान हैं   वहाँ यह मिट्टी के नीचे है कीमत बहुत अच्छी है यह बहुत महंगा सस्ता नारंगी है +triangle/triangle_2,क्षमा करें मैं इसे समझा नहीं सकता क्योंकि यह नहीं जानता कि यह क्या है +plum/plum_1,आलूबुखारा एक स्वादिष्ट खाद्य फल है +lime/lime_2,ये पत्ती है +lemon/lemon_4,ये ककड़ी है +carrot/carrot_3,ये नीला वाला बाल्टी है +triangle/triangle_2,ये हरा वाला त्रिकोण है +plum/plum_1,ये है बैंगनी गोभी +lime/lime_2,ये हरे रंग का नींबू हैये खट्टा होता है +lemon/lemon_4,ये संतरा हैये एक फल है +carrot/carrot_3,ये लाल रंग का गाजर है +triangle/triangle_2,ये पीले रंग की वस्तु है +plum/plum_1,ये लाल रंग का सेब है +lime/lime_2,यह एक चूना है +lemon/lemon_4,नींबू विटामिन सी का एक समृद्ध स्रोत हैं +carrot/carrot_3,गाजर जंगली गाजर का घरेलू रूप है +triangle/triangle_2,यह एक पीला त्रिकोण है +plum/plum_1,बेर बहुत स्वादिष्ट होता है +lime/lime_2,यह एक हरा नींबू है +lemon/lemon_4,यह एक पिला नींबू है +carrot/carrot_3,यह एक गाजर है +triangle/triangle_2,यह कोई पीले रंग का रब्बर का टुकड़ा है +plum/plum_1,यह एक बेर है +lime/lime_2,यह एक हरा छोटा नींबू है +lemon/lemon_4,यह वस्तु एक पीले रंग का संतरा है +carrot/carrot_3,यह एक सीधा पतला गाजर है +triangle/triangle_2,यह एक त्रिकोणीय संक्षेत्रनुमा पीले रंग की वस्तु है +plum/plum_1,यह एक आलूबुखारा जैसा दिखने वाला फल है जोकि दिखने में लाल रंग का है +lime/lime_2,यह चित्र हरे रंग में दिखाई देता है और यह स्वास्थ्य के लिए अच्छा है +lemon/lemon_4,जो स्वास्थ्य के लिए अच्छा है +carrot/carrot_3,जो स्वास्थ्य के लिए अच्छा है +triangle/triangle_2,यह चित्र पीले रंग और त्रिकोणीय आकार में दिखाई देता है +plum/plum_1,यह तस्वीर गोल आकार में दिखाई देती है +lime/lime_2,यह एक कच्चा निम्बू है +lemon/lemon_4,यह एक निम्बू है +carrot/carrot_3,यह एक गाजर है +triangle/triangle_2,यह एक पीला त्रिकोण है +plum/plum_1,यह एक बेर है +lime/lime_2,इसे नींबू कहेते है +lemon/lemon_4,इसे नींबू कहेते है +carrot/carrot_3,इसे गाजर कहेते है +triangle/triangle_2,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +plum/plum_1,इसे बेर कहेते है +lime/lime_2,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +lemon/lemon_4,उपरोक्त वस्तु का वर्णन 1 2 शुद्ध हिंदी वाक्यों में करें यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है वस्तु 2 +carrot/carrot_3,यह गाजर और सबजी के रूप में उपयोग किया जाता है +triangle/triangle_2,यह एक त्रिकोण है +plum/plum_1,यह बेर है +lime/lime_2,यह हरे रंग की कोई सब्जी या फल है +lemon/lemon_4,यह एक नींबू है +carrot/carrot_3,यह एक गाजर है +triangle/triangle_2,यह एक पीले रंग की प्लास्टिक या रबर की कोई वस्तु है +plum/plum_1,यह एक लाल रंग की सब्जी या फल है +lime/lime_2,काग़ज़ी नींबू +lemon/lemon_4,नीबू खट्टा टेस्ट के लिए +carrot/carrot_3,गाजर फल +triangle/triangle_2,पीले हरे रंग का त्रिभुज +plum/plum_1,बेर मीठा फल +lime/lime_2,नींबू हरा +lemon/lemon_4,नींबू पीला +carrot/carrot_3,गाजर लाल +triangle/triangle_2,पीला त्रिकोण +plum/plum_1,लाल सेब +lime/lime_2,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +lemon/lemon_4,यह बेर है +carrot/carrot_3,यह गाजर और सबजी के रूप में उपयोग किया जाता है +triangle/triangle_2,यह एक त्रिकोण है +plum/plum_1,यह बेर है +lime/lime_2,यह ककड़ी है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +lemon/lemon_4,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +carrot/carrot_3,यह गाजर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +triangle/triangle_2,यह एक त्रिकोणीय प्रकार की वस्तु है +plum/plum_1,यह बीट है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +lime/lime_2,हरो निम्बू है +lemon/lemon_4,पिलो निम्बू है यह +carrot/carrot_3,लम्बी गाजर है लाल सी +triangle/triangle_2,पिली त्रिकोड़े आकृति की वास्तु है +plum/plum_1,लाल सेवफल मीठा है +lime/lime_2,यह एक अमरुद का चित्र है +lemon/lemon_4,यह एक निम्बू का चित्र है +carrot/carrot_3,यह एक गाजर का चित्र है +triangle/triangle_2,यह एक त्रिकोण के आकर का चित्र है +plum/plum_1,यह एक सेब का चित्र है +cabbage/cabbage_3,इसे गोभी कहेते है +potato/potato_4,इसे आलू कहेते है +cucumber/cucumber_4,इसे ककड़ी कहेते है +cuboid/cuboid_4,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +lime/lime_2,इसे नींबू कहेते है +cabbage/cabbage_3,यह एक गोभी है +potato/potato_4,यह एक आलू है +cucumber/cucumber_4,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +cuboid/cuboid_4,यह एक घनाभ है +lime/lime_2,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +cabbage/cabbage_3,यह गोभी है +potato/potato_4,यह आलू है +cucumber/cucumber_4,यह एक ककड़ी है +cuboid/cuboid_4,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +lime/lime_2,यह हरे रंग की कोई सब्जी या फल है +cabbage/cabbage_3,यह फूलगोभी है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +potato/potato_4,यह आलू है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +cucumber/cucumber_4,यह ककड़ी है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +cuboid/cuboid_4,यह एक घनाकार वस्तु है +lime/lime_2,यह नींबू है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +cabbage/cabbage_3,यह गोभी है +potato/potato_4,यह आलू है +cucumber/cucumber_4,यह एक ककड़ी है +cuboid/cuboid_4,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +lime/lime_2,यह एक हरा नींबू है +cabbage/cabbage_3,गोभी सब्जी +potato/potato_4,आलू सब्जी +cucumber/cucumber_4,खीरा सब्जी +cuboid/cuboid_4,घनाभ षटफलक +lime/lime_2,काग़ज़ी नींबू +cabbage/cabbage_3,ये बैगनी रंग की पत्तागोभी है +potato/potato_4,ये आलु है +cucumber/cucumber_4,ये हरी रंग की ककड़ी है +cuboid/cuboid_4,ये नीले रंग की आयताकार वस्तु है +lime/lime_2,ये हरे रंग की वस्तु है +cabbage/cabbage_3,यह बैंगन है +potato/potato_4,यह एक आलू है +cucumber/cucumber_4,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +cuboid/cuboid_4,इस वॉशिंग सोप है +lime/lime_2,यह एक गोभी है +cabbage/cabbage_3,यह एक बंदगोभी का चित्र है +potato/potato_4,यह एक आलू का चित्र है +cucumber/cucumber_4,यह एक खीरे का चित्र है +cuboid/cuboid_4,यह एक साबुन का चित्र है +lime/lime_2,यह एक अमरुद का चित्र है +cabbage/cabbage_3,लाल गोभी है +potato/potato_4,आलू है छोटा +cucumber/cucumber_4,बड़ी हरी ककड़ी है +cuboid/cuboid_4,नीला चौकोर सा कुछ है +lime/lime_2,हरा निम्बू है +cabbage/cabbage_3,यह काले रंग में है +potato/potato_4,यह शुद्ध पीले रंग में है +cucumber/cucumber_4,यह स्वास्थ्य के लिए अच्छा है +cuboid/cuboid_4,यह नीले रंग में है +lime/lime_2,यह स्वास्थ्य के लिए अच्छा है +cabbage/cabbage_3,ये है बैंगनी गोभी +potato/potato_4,ये आलू है +cucumber/cucumber_4,ये ककड़ी है +cuboid/cuboid_4,ये नीला वाला खंड है +lime/lime_2,ये पत्ती है +cabbage/cabbage_3,यह वस्तु दिखने में पत्ता गोभी की तरह दिख रही है जिसका रंग गहरा नीला है +potato/potato_4,यह एक छोटा आलू है +cucumber/cucumber_4,यह एक खीरा है जो गहरे हरे रंग का है +cuboid/cuboid_4,यह एक आयतफलकी नुमा नीले रंग की कोई वस्तु है +lime/lime_2,यह एक हल्के हरे रंग की कोई वस्तु है जिसका तला थोड़ा चपटा और बाकी भाग गोलाकार है +cabbage/cabbage_3,यह एक काले बीज की तरह है और मुझे लगता है कि यह बहुत बीज हो सकता है +potato/potato_4,यह अंडे और पीले रंग का हिस्सा है +cucumber/cucumber_4,यह एक ककड़ी है और इसे खाना पकाने के लिए पसंद किया जाता है +cuboid/cuboid_4,यह एक सूप है और इसका उपयोग कपड़ा धोने के लिए किया जाता है +lime/lime_2,मुझे नहीं पता कि यह क्या है +cabbage/cabbage_3,यह एक पत्तागोभी है +potato/potato_4,यह एक आलू है +cucumber/cucumber_4,यह एक खीरा है +cuboid/cuboid_4,यह एक नीला घनाभ है +lime/lime_2,यह एक कच्चा निम्बू है +cabbage/cabbage_3,यह गोभी के रूप में प्रयोग किया जाता है और नूडल्स के लिए खाद्य उत्पाद के रूप में उपयोग किया जाता है +potato/potato_4,आलू का उपयोग आलू की सब्जी आलू मिर्च आलू चावल आदि के उत्पादन के लिए भी किया जाता है +cucumber/cucumber_4,खीरे का उपयोग चेहरे के उपचारों में किया जाता है यह बहुत ठंडा भोजन है जो शरीर को बहुत अधिक ठंडा करता है +cuboid/cuboid_4,आयताकार आकार को अपने बच्चों को पढ़ाने के लिए बहुत सारे शिक्षकों की आवश्यकता होती है इसका उपयोग बच्चों को आयत का आकार देने के लिए किया जाता है जिसका उपयोग ऐसे मॉडलों के पसंदीदा अंतर को समाप्त करने के लिए किया जाता है +lime/lime_2,कई खाद्य पदार्थों में निम्बू का भी उपयोग किया जाता है और मुझे इसके बारे में कुछ भी पता नहीं है क्षमा करें +lemon/lemon_2,यह एक पीले रंग की क्षेत्र आकृती की मीठाई जैसी हे +carrot/carrot_2,यह एक गाजर का चित्र हे +triangle/triangle_4,यह एक नीले रंग का सही कोण त्रिकोण का चित्र हे +cucumber/cucumber_2,यह एक खीरे का चित्र हे +semicylinder/semicylinder_3,यह एक पीले रंग का आधा कटा बेलनाकार वस्तु का चित्र हे +lemon/lemon_2,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +carrot/carrot_2,यह गाजर और सबजी के रूप में उपयोग किया जाता है +triangle/triangle_4,यह एक त्रिकोण है +cucumber/cucumber_2,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +semicylinder/semicylinder_3,यह एक अर्ध सिलेंडर है +lemon/lemon_2,यह एक निम्बू है +carrot/carrot_2,यह एक गाजर है +triangle/triangle_4,यह एक त्रिकोण है +cucumber/cucumber_2,यह एक खीरा है +semicylinder/semicylinder_3,यह एक पीला अर्ध सिलेंडर है +lemon/lemon_2,इसको नींबू कहा जाता है +carrot/carrot_2,इसको गाजर कहा जाता है +triangle/triangle_4,ये नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +cucumber/cucumber_2,इसको ककड़ी कहा जाता है +semicylinder/semicylinder_3,यह कोई पीले रंग का रब्बर का टुकड़ा है +lemon/lemon_2,इसे नींबू कहेते है +carrot/carrot_2,इसे गाजर कहेते है +triangle/triangle_4,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +cucumber/cucumber_2,इसे ककड़ी कहेते है +semicylinder/semicylinder_3,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +lemon/lemon_2,यह एक नींबू है +carrot/carrot_2,यह एक गाजर है +triangle/triangle_4,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +cucumber/cucumber_2,यह एक ककड़ी है +semicylinder/semicylinder_3,यह एक पीले रंग की प्लास्टिक या रबर की कोई वस्तु है +lemon/lemon_2,ये पीले रंग का नीबू है +carrot/carrot_2,ये लाल गाजर है +triangle/triangle_4,ये गहरे नीले रंग की वस्तु है +cucumber/cucumber_2,ये हरी ककडी है +semicylinder/semicylinder_3,ये पीले रंग की वस्तु है +lemon/lemon_2,यह एक पीला छोटा नींबू है +carrot/carrot_2,यह एक आढ़ा तिरछा गाजर है +triangle/triangle_4,यह एक त्रिकोणीय संक्षेत्रनुमा नीले रंग की वस्तु है +cucumber/cucumber_2,यह एक हरा पतला खीरा है +semicylinder/semicylinder_3,यह एक पीले रंग की और अर्ध बेलननुमा आकार की वस्तु है +lemon/lemon_2,यह तस्वीर पीले रंग में है +carrot/carrot_2,यह चित्र अच्छी तरह से दिखाई नहीं देता है +triangle/triangle_4,यह चित्र त्रिकोणीय है +cucumber/cucumber_2,इस तस्वीर का नाम खीरा है +semicylinder/semicylinder_3,यह तस्वीर पीले रंग में है +lemon/lemon_2,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +carrot/carrot_2,यह गाजर और सबजी के रूप में उपयोग किया जाता है +triangle/triangle_4,यह एक त्रिकोण है +cucumber/cucumber_2,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +semicylinder/semicylinder_3,यह एक अर्ध सिलेंडर है +lemon/lemon_2,अज्ञात वस्तु +carrot/carrot_2,गजिर हलवा +triangle/triangle_4,त्रिकोण वस्तु +cucumber/cucumber_2,स्वस्तिक खीरा +semicylinder/semicylinder_3,आधा चक्कर +lemon/lemon_2,पीला निम्बो जैसे कोई वास्तु है +carrot/carrot_2,लाल गाजर है +triangle/triangle_4,नीली त्रिकोड़ सी चीजे है +cucumber/cucumber_2,हरी ककड़ी है +semicylinder/semicylinder_3,पिली प्लास्टिक की वास्तु है +lemon/lemon_2,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +carrot/carrot_2,यह गाजर है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +triangle/triangle_4,यह एक घन प्रकार की वस्तु है +cucumber/cucumber_2,यह ककड़ी है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +semicylinder/semicylinder_3,यह एक घनाकार वस्तु है +lemon/lemon_2,अंडा का अंदर का भाग +carrot/carrot_2,हाथ की उँगली +triangle/triangle_4,मुड़ा हुआ शीशा +cucumber/cucumber_2,खीरा सब्जी +semicylinder/semicylinder_3,पिघला हुआ मोम +lemon/lemon_2,नींबू की उत्पत्ति अज्ञात है हालांकि नींबू को असम में पहली बार उगाया जाता है +carrot/carrot_2,गाजर एक द्विवार्षिक पौधा है +triangle/triangle_4,यह एक त्रिकोण है +cucumber/cucumber_2,यह ककड़ी हरी है +semicylinder/semicylinder_3,यह एक अर्धविराम है +lemon/lemon_2,यह एक संतरे का चित्र है +carrot/carrot_2,यह एक गाजर का चित्र है +triangle/triangle_4,यह एक त्रिकोण का चित्र है +cucumber/cucumber_2,यह एक खीरे का चित्र है +semicylinder/semicylinder_3,यह एक साबुन का चित्र है +plum/plum_3,यह एक सेब का चित्र है +semicylinder/semicylinder_4,यह एक साबुन का चित्र है +banana/banana_2,यह एक केले का चित्र है +cuboid/cuboid_2,यह एक साबुन का चित्र है +arch/arch_2,यह एक साबुन का चित्र है +plum/plum_3,ये है बैंगनी गोभी +semicylinder/semicylinder_4,ये है पीला वाला खंड +banana/banana_2,ये केला है +cuboid/cuboid_2,ये नीला वाला खंड है +arch/arch_2,ये अर्ध वृत्त खंड है +plum/plum_3,यह लाल रंग की कोई सब्जी या फल है +semicylinder/semicylinder_4,यह हरे रगं का प्लास्टिक या रबर की कोई वस्तु है +banana/banana_2,यह एक केला है +cuboid/cuboid_2,यह हरे रगं का प्लास्टिक या रबर की कोई वस्तु है +arch/arch_2,यह कोई आकार है +plum/plum_3,यह एक बेर है +semicylinder/semicylinder_4,यह एक अर्ध सिलेंडर है +banana/banana_2,यह एक केला है +cuboid/cuboid_2,यह एक घनाभ है +arch/arch_2,यह एक आर्च है +plum/plum_3,यह एक बेर है +semicylinder/semicylinder_4,यह एक हरा अर्ध सिलेंडर है +banana/banana_2,यह एक केला है +cuboid/cuboid_2,यह एक हरा घनाभ है +arch/arch_2,यह एक नीला मेहराब है +plum/plum_3,ये लाल सेब है +semicylinder/semicylinder_4,ये हरि रंग की वस्तु है +banana/banana_2,ये पीला केला है +cuboid/cuboid_2,ये हरे रंग की आयताकार वस्तु है +arch/arch_2,ये हल्के नीले रंग की वस्तु है +plum/plum_3,इस वस्तु मे लाल रंग के निशान है +semicylinder/semicylinder_4,वस्तु हरे रंग की है +banana/banana_2,केला शरीर मे ऊर्जा देता है +cuboid/cuboid_2,घनाभ के आकार की हरे रंग की वस्तु +arch/arch_2,आसमानी रंग की वस्तु +plum/plum_3,इसे बेर कहेते है +semicylinder/semicylinder_4,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +banana/banana_2,इसे केला कहेते है +cuboid/cuboid_2,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +arch/arch_2,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +plum/plum_3,यह ऑब्जेक्ट लाल रंग का है और इसमें गोलाकार प्रारूप है +semicylinder/semicylinder_4,यह वस्तु हरे रंग की है और इसमें एक कुर्सी का आकार है +banana/banana_2,यह वस्तु एक केला है यह बहुत लोकप्रिय फल है +cuboid/cuboid_2,यह ऑब्जेक्ट एक समानांतर चतुर्भुज या एक बॉक्स का रूप लेता है +arch/arch_2,यह वस्तु एक पुल के रूप में है +plum/plum_3,इसको बेर कहा जाता है +semicylinder/semicylinder_4,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +banana/banana_2,इसको केला कहा जाता है +cuboid/cuboid_2,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +arch/arch_2,ये नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +plum/plum_3,यह एक फ़ल है +semicylinder/semicylinder_4,हरे रंग का वस्तु +banana/banana_2,यह एक केला है +cuboid/cuboid_2,हरे रंग का वस्तु +arch/arch_2,यह नीला रंग है +plum/plum_3,यह एक नाजुक खाद्य पदार्थ है जिसे बेर कहा जाता है +semicylinder/semicylinder_4,अर्ध बेलनाकार रूपों का उपयोग उन सूत्रों के लिए किया जाता है जो सूत्रों के लिए उपयोग किए जाते हैं +banana/banana_2,केला एक अच्छा खाद्य उत्पाद है जिसका उपयोग पाचन विकार वाले लोगों के लिए एक अच्छी दवा के रूप में किया जाता है इसका उपयोग पंजम्रीम तैयार करने के लिए भी किया जाता है +cuboid/cuboid_2,एक आयताकार रूप का उपयोग पाठ के शिक्षकों के लिए एक पैटर्न मॉडल के रूप में किया जाता है +arch/arch_2,चौकोर आकार के बालों का उपयोग उन शिक्षकों के लिए नमूने के रूप में किया जाता है जो पाठ करते हैं +plum/plum_3,यह किसी प्रकार का फल है +semicylinder/semicylinder_4,यह हरी रंग की वास्तु है +banana/banana_2,यह केला है +cuboid/cuboid_2,यह हरा वास्तु है +arch/arch_2,यह नीली वास्तु है +plum/plum_3,यह चित्र स्पष्ट नहीं दिखता है +semicylinder/semicylinder_4,यह चित्र हरे रंग में है +banana/banana_2,इस तस्वीर का नाम केला है +cuboid/cuboid_2,यह चित्र आयताकार आकार में है +arch/arch_2,यह चित्र बहुत स्पष्ट दिखता है +plum/plum_3,बेर मीठा फल +semicylinder/semicylinder_4,अर्ध बेलन +banana/banana_2,केला फल +cuboid/cuboid_2,हरे रंग का घनाभ +arch/arch_2,मेहराब वृत्त खंड +plum/plum_3,यह एक बेर है +semicylinder/semicylinder_4,यह एक अर्ध सिलेंडर है +banana/banana_2,यह एक केला है +cuboid/cuboid_2,यह एक घनाभ है +arch/arch_2,यह एक आर्च है +plum/plum_3,यह बीट है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +semicylinder/semicylinder_4,यह एक घन प्रकार की वस्तु है +banana/banana_2,यह केला है और इसका उपयोग विभिन्न व्यंजनों को तैयार करने के लिए किया जाता है +cuboid/cuboid_2,यह एक घन प्रकार की वस्तु है +arch/arch_2,यह एक घनाकार वस्तु है +cube/cube_1,यह मक्खन है इसमें वसा होती है +corn/corn_3,मक्का एक प्रमुख खाद्य फसल हैं जो मोटे अनाजो की श्रेणी में आता है +cabbage/cabbage_3,बैगन एक सब्जी है बैंगन भारत में ही पैदा हुआ और आज आलू के बाद दूसरी सबसे अधिक खपत वाली सब्जी है +orange/orange_2,नीबू छोटा पेड़ अथवा सघन झाड़ीदार पौधा है इसकी शाखाएँ काँटेदार पत्तियाँ छोटी डंठल पतला तथा पत्तीदार होता है +tomato/tomato_3,टमाटर विश्व में सबसे ज्यादा प्रयोग होने वाली सब्जी है +cube/cube_1,ये पीला रंग की चोकोर है +corn/corn_3,ये मक्का है +cabbage/cabbage_3,ये बैगनी रंग की पत्तागोभी है +orange/orange_2,ये पीला संतरा है +tomato/tomato_3,ये लाल टमाटर है +cube/cube_1,यह वस्तु एक छोटा पीला घन है +corn/corn_3,यह एक छिला हुआ भुट्टा है +cabbage/cabbage_3,यह एक भुना हुआ बेंगन है जिसकी डंठल तोड़ दी गयी है +orange/orange_2,यह कोई पीला फल है +tomato/tomato_3,यह एक पका हुआ लाल टमाटर है +cube/cube_1,यह एक घन प्रकार की वस्तु है +corn/corn_3,यह मकई है और खाने में बहुत स्वादिष्ट है +cabbage/cabbage_3,यह फूलगोभी है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +orange/orange_2,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +tomato/tomato_3,यह टमाटर है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +cube/cube_1,यह कोई पीले रंग का रब्बर का टुकड़ा है +corn/corn_3,यह मक्के का भुट्टा है +cabbage/cabbage_3,यह गोभी है +orange/orange_2,यह एक संतरा है +tomato/tomato_3,यह एक टमाटर है +cube/cube_1,यह पीले रंग में है +corn/corn_3,यह स्वास्थ्य के लिए अच्छा है +cabbage/cabbage_3,यह स्वास्थ्य के लिए अच्छा है +orange/orange_2,यह स्वास्थ्य के लिए अच्छा है +tomato/tomato_3,यह स्वास्थ्य के लिए अच्छा है +cube/cube_1,यह पिला चौकोर डिब्बी है +corn/corn_3,यह शफेद भुट्टा है +cabbage/cabbage_3,यह भर्त्ता का बैगन है +orange/orange_2,यह नीबू है +tomato/tomato_3,यह लाल टमाटर है +cube/cube_1,यह एक पीले रंग का घनक्षेत्र का चित्र हे +corn/corn_3,यह एक छिला हुआ भुट्टे का चित्र हे +cabbage/cabbage_3,यह एक बैंगनी रंग का बंद गोबी का चित्र हे +orange/orange_2,यह एक मुसंबी का चित्र हे +tomato/tomato_3,यह एक टमाटर का चित्र हे +cube/cube_1,यह एक पीले रंग की प्लास्टिक या रबर की कोई वस्तु है +corn/corn_3,यह मक्के का भुट्टा है +cabbage/cabbage_3,यह गोभी है +orange/orange_2,यह एक नींबू है +tomato/tomato_3,यह एक टमाटर है +cube/cube_1,यह घन है +corn/corn_3,यह मक्का है और अनाज के रूप में उपयोग किया जाता ह +cabbage/cabbage_3,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +orange/orange_2,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +tomato/tomato_3,यह एक टमाटर है +cube/cube_1,ये पीला वाला पनीर है +corn/corn_3,ये मक्का है +cabbage/cabbage_3,ये है बैंगन +orange/orange_2,ये है नारंगी +tomato/tomato_3,ये है टमाटर +cube/cube_1,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +corn/corn_3,इसे मक्के का भुट्टा कहेते है +cabbage/cabbage_3,इसे गोभी कहेते है +orange/orange_2,इसे संतरा कहेते है +tomato/tomato_3,इसे टमाटर कहेते है +cube/cube_1,घन क्षेत्र +corn/corn_3,मकाई का भुट्टा +cabbage/cabbage_3,गोभी सब्जी +orange/orange_2,संतरा फल +tomato/tomato_3,टमाटर सब्जी +cube/cube_1,यह हरे रंग डालकर पनीर बनाया है +corn/corn_3,मकाइ के दाने को पिज़ा में भी उपयोग होता है +cabbage/cabbage_3,भुजे हुए बैंगन को भरते में डालने में अच्छा लगता है +orange/orange_2,नींबू पानी पिने से बीपी की परेशानी नहीं होती है +tomato/tomato_3,पथरी के रोगी को टमाटर नहीं खाना चाहिए +cube/cube_1,मुझे नहीं पता कि यह किस प्रकार की चीज है इसलिए मैं यह नहीं समझा सकता हूं +corn/corn_3,मक्का एक स्वादिष्ट भोजन है कई किस्में हैं जो अल्पकालिक हो सकती हैं +cabbage/cabbage_3,बैंगन शरीर के लिए बहुत अच्छा होता है यह अल्पकालिक कम से कम 3 महीने या एक महीना हो सकता है यह लंबे समय तक नहीं रहेगा लेकिन कीट जल्द ही बन जाता है +orange/orange_2,मुझे यह नारंगी फल या मैंगनीज नहीं मिल रहा है इसलिए मैं इसे नहीं समझा सकता हूं +tomato/tomato_3,टमाटर बहुत महंगा खाद्य पदार्थ है यह दक्षिण भारत और उत्तर भारत में टमाटर प्यूरी जैम और कई खाद्य पदार्थों को तैयार करने में बहुत महत्वपूर्ण भूमिका निभाता है +cube/cube_1,यह एक पीला घनक्षेत्र है +corn/corn_3,यह एक मक्का है +cabbage/cabbage_3,यह एक पत्तागोभी है +orange/orange_2,यह एक संतरा है +tomato/tomato_3,यह एक टमाटर है +triangle/triangle_4,यह चित्र नीले रंग में है +cube/cube_4,यह चित्र स्पष्ट दिखता है +cylinder/cylinder_4,यह चित्र हरे रंग में है +potato/potato_3,यह तस्वीर पीले रंग में हैयह तस्वीर पीले रंग में है +orange/orange_1,यह तस्वीर पीले रंग में है +triangle/triangle_4,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +cube/cube_4,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +cylinder/cylinder_4,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +potato/potato_3,इसे आलू कहेते है +orange/orange_1,इसे संतरा कहेते है +triangle/triangle_4,यह एक नीला त्रिकोण है +cube/cube_4,यह एक लाल घनक्षेत्र है +cylinder/cylinder_4,यह एक हरा सिलेंडर है +potato/potato_3,यह एक आलू है +orange/orange_1,यह एक संतरा है +triangle/triangle_4,त्रिकोण वस्तु +cube/cube_4,चकोर लाल +cylinder/cylinder_4,सिलेंडर वस्तु +potato/potato_3,यादि येह अलो +orange/orange_1,माल्टा स्वीट +triangle/triangle_4,नीले हरे रंग का त्रिभुज +cube/cube_4,घन क्षेत्र +cylinder/cylinder_4,हरे रंग का बेलन +potato/potato_3,आलू सब्जी +orange/orange_1,संतरा फल +triangle/triangle_4,त्रिकोण में कोई वक्र नहीं है +cube/cube_4,घन भी एक वर्ग है +cylinder/cylinder_4,एक बेलन पारंपरिक रूप से तीन आयामी ठोस रहा है +potato/potato_3,पूरे अमेरिका में जंगली आलू की प्रजातियाँ पाई जा सकती हैं +orange/orange_1,मीठे नारंगी की उत्पत्ति प्राचीन चीन में हुई थी +triangle/triangle_4,यह नीला रंग का वस्तु है +cube/cube_4,यह लाल रंग का वस्तु है +cylinder/cylinder_4,यह हरा रंग का वस्तु है +potato/potato_3,यह आलू है +orange/orange_1,यह टमाटर है यह लाल रंगा है +triangle/triangle_4,यह एक त्रिकोण का चित्र है +cube/cube_4,यह एक वर्ग के आकर का चित्र है +cylinder/cylinder_4,यह एक बेलन के आकर का चित्र है +potato/potato_3,यह एक आलू का चित्र है +orange/orange_1,यह एक मोसम्बी का चित्र है +triangle/triangle_4,नीला त्रिकोण +cube/cube_4,यह लाल रंग है +cylinder/cylinder_4,यह हरा रंग है +potato/potato_3,यह एक आलू है +orange/orange_1,यह एक संतरा है +triangle/triangle_4,यह त्रिकोण नीली सी वस्तु है +cube/cube_4,यह एक लाल घन नुमा वस्तु है +cylinder/cylinder_4,यह एक नीली बेलनुमा वस्तु है +potato/potato_3,यह वस्तु आलू की तरह दिख रही है +orange/orange_1,यह एक हलके पीले रंग का संतरा है +triangle/triangle_4,यह एक घन प्रकार की वस्तु है +cube/cube_4,यह एक घन प्रकार की वस्तु है +cylinder/cylinder_4,यह एक घन प्रकार की वस्तु है +potato/potato_3,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +orange/orange_1,यह टमाटर है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +triangle/triangle_4,यह एक त्रिकोण है +cube/cube_4,यह घन है +cylinder/cylinder_4,यह एक सिलेंडर है +potato/potato_3,यह एक आलू है +orange/orange_1,यह एक संतरा है +triangle/triangle_4,यह नीली वास्तु है +cube/cube_4,यह लाल वास्तु है +cylinder/cylinder_4,यह हरी वास्तु है +potato/potato_3,आलू है यह +orange/orange_1,मौसमभी है +triangle/triangle_4,यह एक नील रंग की प्लास्टिक की कोई वस्तु है +cube/cube_4,यह लाल रंग की प्लास्टिक या रबर की कोई वस्तु है +cylinder/cylinder_4,यह हरे रंग की लंबगोलाकार प्लास्टिक या रबर की कोई वस्तु है +potato/potato_3,यह एक आलू है +orange/orange_1,यह चीकू नाम का फल है +triangle/triangle_4,ये नीले रंग की वस्तु है +cube/cube_4,ये लाल रंग की वस्तु है +cylinder/cylinder_4,ये हरे रंग की सिलेण्डर आकर की वस्तु है +potato/potato_3,ये आलु है +orange/orange_1,ये संतरा हैं +triangle/triangle_4,ये नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +cube/cube_4,ये कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +cylinder/cylinder_4,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +potato/potato_3,इसको आलू कहा जाता है +orange/orange_1,इसको संतरा कहा जाता है +carrot/carrot_2,यह स्वास्थ्य के लिए अच्छा है +potato/potato_1,यह तस्वीर अच्छी तरह से दिखाई नहीं देती है +tomato/tomato_4,यह तस्वीर शुद्ध पीले रंग में है +cucumber/cucumber_3,यह स्वास्थ्य के लिए अच्छा है +cucumber/cucumber_3,यह स्वास्थ्य के लिए अच्छा है +carrot/carrot_2,यह एक गाजर है +potato/potato_1,यह एक बैगन है +tomato/tomato_4,यह टमाटर है +cucumber/cucumber_3,यह एक खीरा है और सलाद के रूप में उपयोग किया जाता है +cucumber/cucumber_3,यह एक खीरा है और सलाद के रूप में उपयोग किया जाता है +carrot/carrot_2,यह चुकंदर है +potato/potato_1,ये है पीला वाला खंड +tomato/tomato_4,यह टमाटर है +cucumber/cucumber_3,ये ककड़ी है +cucumber/cucumber_3,ये ककड़ी है +carrot/carrot_2,यह एक गाजर हैं +potato/potato_1,यह एक सेब हैं +tomato/tomato_4,यह टमाटर हैं +cucumber/cucumber_3,यह एक ककड़ी हैं +cucumber/cucumber_3,यह एक खीरा हैं +carrot/carrot_2,यह एक गाजर है +potato/potato_1,यह एक आलू है +tomato/tomato_4,यह एक टमाटर है +cucumber/cucumber_3,यह एक खीरा है +cucumber/cucumber_3,यह एक खीरा है +carrot/carrot_2,यह एक गाजर का चित्र है +potato/potato_1,यह आलूबुखारा फल का चित्र है +tomato/tomato_4,यह टमाटर का चित्र है +cucumber/cucumber_3,यह एक खीरा है +cucumber/cucumber_3,यह एक खीरा है +carrot/carrot_2,यह गाजर और सबजी के रूप में उपयोग किया जाता है +potato/potato_1,यह एक बेर है +tomato/tomato_4,यह एक टमाटर है +cucumber/cucumber_3,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +cucumber/cucumber_3,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +carrot/carrot_2,यह एक पतला लम्बा गाजर है +potato/potato_1,यह एक गोलाकार लाल सी वस्तु है +tomato/tomato_4,यह एक अधपका पीला टमाटर है +cucumber/cucumber_3,यह एक हरा खीरा है +cucumber/cucumber_3,यह एक हरा मोटा खीरा है +carrot/carrot_2,यह एक गाजर है +potato/potato_1,यह आलू है +tomato/tomato_4,यह एक टमाटर है +cucumber/cucumber_3,यह एक ककड़ी है +cucumber/cucumber_3,यह एक ककड़ी है +carrot/carrot_2,गाजर को हर कोइ भी खा सकते हैं +potato/potato_1,छोटे बच्चों को सेब को गरम पानी में भिगो कर देना चाहिए +tomato/tomato_4,टमाटर की सब्जी भी बनाए जाते हैं +cucumber/cucumber_3,सलाद में काकड़ी सबसे ज्यादा खाते हैं +cucumber/cucumber_3,काकड़ी को छिलकर खाना चाहिए +carrot/carrot_2,यह सब्जी सिर्फ इस सब्जी गाजर से अधिक है यह विटामिन सी के लिए बहुत अच्छा है यह पहाड़ी क्षेत्र में है यह रसोई घर में भी बहुत काम आता है यह बीमार लोगों के लिए बहुत अच्छा है +potato/potato_1,ये सब्जियां एक आलू हैं यह बहुत सारे कार्बोहाइड्रेट और प्रोटीन हैं यह बीमार लोगों के लिए अच्छा है इसे खाना और खाना अच्छा है पाक किस्मों को खाया जा सकता है इससे शरीर को अच्छा पोषण मिलता है +tomato/tomato_4,इस सब्जी की तुलना में पेरू टमाटर यह लाल रंग में एक खट्टा स्वाद है यह खाना पकाने के लिए एक बहुत ही महत्वपूर्ण घटक है यह शरीर के लिए बहुत अच्छा है विटामिन में बहुत कुछ है +cucumber/cucumber_3,इस तस्वीर में आपको उस आइटम का नाम दिखाई देगा जिसे आप देख रहे हैं कि तस्वीर खीरे में आती है यह हरे रंग के विभिन्न रूपों में भी उपलब्ध है और इसे खाना पकाने में खाया जा सकता है यह शरीर के लिए बहुत अच्छा है विशेष रूप से गर्मियों के लिए अच्छा है +cucumber/cucumber_3,यह उत्पाद का नाम है और गोभी आते हैं और देखते हैं कि क्या यह पृष्ठ के सभी तरफ है सब्जी की दुकानों में कई दुकानों में आना और आना बहुत आसान है +carrot/carrot_2,यह गाजर है +potato/potato_1,सेवफल है +tomato/tomato_4,लाल टमाटर है +cucumber/cucumber_3,यह हरी ककड़ी है +cucumber/cucumber_3,यह हरी ककड़ी है +carrot/carrot_2,गाजर का हलवा बहुत स्वादिष्ट होता हैं +potato/potato_1,आलू के चिप्स बनाये जाते हैं +tomato/tomato_4,टमाटर सलाद मे खाया जाता हैं +cucumber/cucumber_3,खीरे में पानी अधिक मात्रा मे होता हैं +cucumber/cucumber_3,खीरे से रायता बनता हैं +carrot/carrot_2,यह एक गाजर है +potato/potato_1,यह एक अनार का फल है +tomato/tomato_4,यह टमाटर है +cucumber/cucumber_3,यह एक ककड़ी है +cucumber/cucumber_3,यह एक ककड़ी है +carrot/carrot_2,गाजर फल +potato/potato_1,आलू सब्जी +tomato/tomato_4,टमाटर सब्जी +cucumber/cucumber_3,खीरा सब्जी +cucumber/cucumber_3,खीरा सब्जी +carrot/carrot_2,ये लाल रंग का गाजर है +potato/potato_1,ये लाल टमाटर है +tomato/tomato_4,ये लाल टमाटर है +cucumber/cucumber_3,ये हरी ककडी है +cucumber/cucumber_3,ये हरी काकड़ी है +carrot/carrot_2,इसे गाजर कहेते है +potato/potato_1,इसे लाल रंग का आलू कहते है +tomato/tomato_4,इसे टमाटर कहेते है +cucumber/cucumber_3,इसे ककड़ी कहेते है +cucumber/cucumber_3,इसे ककड़ी कहेते है +lime/lime_2,ये हरा नींबू हैं +arch/arch_1,ये पीले रंग की वस्तु है +eggplant/eggplant_1,ये बैगन है +triangle/triangle_2,ये पीले रंग की वस्तु है +plum/plum_1,ये सेब है +lime/lime_2,चूना स्वाद में बहुत खट्टा होता है +arch/arch_1,मेहराब चतुर्भुज का हिस्सा है +eggplant/eggplant_1,बैंगन का रंग बैंगनी होता है +triangle/triangle_2,त्रिभुज के तीन कोने हैं +plum/plum_1,बेर आकार में छोटा होता है +lime/lime_2,निम्बू है शायद +arch/arch_1,पीला सा है कुछ +eggplant/eggplant_1,बैगन है सब्जी वाला +triangle/triangle_2,कुछ पीला सा है +plum/plum_1,लाल सेवफल है शायद +lime/lime_2,यह एक हरे रंग का अमरूद का चित्र हे +arch/arch_1,यह एक ऐसी आकृती हे मानो एक पीले रंग का घनाभ के बीच से एक आधा क्षेत्र निकाल दिया हो +eggplant/eggplant_1,यह एक बैंगन का चित्र हे +triangle/triangle_2,यह एक पीले रंग का सही कोण त्रिकोण हे +plum/plum_1,यह एक टमाटर का चित्र हे +lime/lime_2,इसे नींबू कहेते है +arch/arch_1,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +eggplant/eggplant_1,इसे बेंगन कहेते है +triangle/triangle_2,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +plum/plum_1,इसे बेर कहेते है +lime/lime_2,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +arch/arch_1,यह एक आर्च है +eggplant/eggplant_1,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +triangle/triangle_2,यह एक त्रिकोण है +plum/plum_1,यह बेर है +lime/lime_2,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +arch/arch_1,यह एक आर्च है +eggplant/eggplant_1,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +triangle/triangle_2,यह एक त्रिकोण है +plum/plum_1,यह बेर है +lime/lime_2,यह नींबू है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +arch/arch_1,यह एक घन प्रकार की वस्तु है +eggplant/eggplant_1,यह बैंगन है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +triangle/triangle_2,यह एक घन प्रकार की वस्तु है +plum/plum_1,यह बीट है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +lime/lime_2,यह एक अमरुद का चित्र है +arch/arch_1,यह एक साबुन का चित्र है +eggplant/eggplant_1,यह एक बैंगन का चित्र है +triangle/triangle_2,यह एक त्रिकोण के आकर का चित्र है +plum/plum_1,यह एक सेब का चित्र है +lime/lime_2,काग़ज़ी नींबू +arch/arch_1,मेहराब वृत्त खंड +eggplant/eggplant_1,बैगन सब्जी +triangle/triangle_2,पीले रंग का त्रिभुज +plum/plum_1,बेर मीठा फल +lime/lime_2,यह नींबू के रंग जैसा दिखता है नींबू में साइट्रिक एसिड होता है जो शरीर के लिए बहुत अच्छा होता है +arch/arch_1,मुझे नहीं पता कि यह किस रूप में है लेकिन यह ठीक है और यह पीला है +eggplant/eggplant_1,बैंगन शरीर के लिए बहुत अच्छा होता है मुझे अपने घर में इतना पेंच लगाना बहुत पसंद है कि वह इसे अक्सर पकाएगा इसलिए मुझे पता है कि बैंगन शरीर के लिए बहुत उपयुक्त है +triangle/triangle_2,यह एक त्रिकोण के रूप में है और यह हरे रंग में है +plum/plum_1,यह रंग में लाल है मैं इसे खा रहा हूं यह बहुत मीठा है और यह थोड़ा स्वाद है +lime/lime_2,इसको नींबू कहा जाता है +arch/arch_1,यह कोई पीले रंग का रब्बर का टुकड़ा है +eggplant/eggplant_1,इसको बेंगन कहा जाता है +triangle/triangle_2,यह कोई पीले रंग का रब्बर का टुकड़ा है +plum/plum_1,इसको बेर कहा जाता है +lime/lime_2,यह एक हरा छोटा नींबू है +arch/arch_1,यह एक आढ़ी मेहराब नुमा पीले रंग की वस्तु है +eggplant/eggplant_1,यह एक लम्बा पतला बैंगनी रंग का बैंगन है +triangle/triangle_2,यह एक त्रिकोणीय संक्षेत्रनुमा पीले रंग की वस्तु है +plum/plum_1,यह एक आलूबुखारा जैसा दिखने वाला फल है जोकि दिखने में लाल रंग का है +lime/lime_2,यह हरे रंग की कोई सब्जी या फल है +arch/arch_1,यह एक पीले रंग की प्लास्टिक या रबर की कोई वस्तु है +eggplant/eggplant_1,यह एक बेंगन है +triangle/triangle_2,यह एक पीले रंग की प्लास्टिक या रबर की कोई वस्तु है +plum/plum_1,यह एक लाल रंग की सब्जी या फल है +lime/lime_2,यह चित्र हरे रंग में है +arch/arch_1,यह तस्वीर पीले रंग में है +eggplant/eggplant_1,इस तस्वीर का नाम बैगन है +triangle/triangle_2,यह चित्र त्रिकोणीय आकार में है +plum/plum_1,यह तस्वीर लाल रंग की है +lime/lime_2,यह एक कच्चा निम्बू है +arch/arch_1,यह एक पीला मेहराब है +eggplant/eggplant_1,यह एक बैंगन है +triangle/triangle_2,यह एक पीला त्रिकोण है +plum/plum_1,यह एक बेर है +lime/lime_2,ये पत्ती है +arch/arch_1,ये अर्ध वृत्त खंड है +eggplant/eggplant_1,यह बैंगन है +triangle/triangle_2,ये त्रिकोण है +plum/plum_1,ये है बैंगनी गोभी +lime/lime_1,यह हरे रंग की वस्तु है +carrot/carrot_1,यह नारंगी रंग की सब्जी है +cube/cube_3,यह वर्ग वस्तु है +eggplant/eggplant_4,इसके लिए अच्छा है +corn/corn_1,मकई खाने के लिए बहुत स्वाद +lime/lime_1,यह नींबू है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +carrot/carrot_1,यह गाजर है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +cube/cube_3,यह एक घनाकार वस्तु है +eggplant/eggplant_4,यह बैंगन है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +corn/corn_1,यह मकई है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +lime/lime_1,इसको नींबू कहा जाता है +carrot/carrot_1,इसको गाजर कहा जाता है +cube/cube_3,ये नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +eggplant/eggplant_4,इसको बेंगन कहा जाता है +corn/corn_1,इसको मक्के का भुट्टा कहा जाता है +lime/lime_1,हरे रंग की वस्तु +carrot/carrot_1,गाजर के आकार की वस्तु +cube/cube_3,नीले रंग की ठोस वस्तु +eggplant/eggplant_4,बैंगन एक सब्जी है +corn/corn_1,भुट्टा खाया जाता है +lime/lime_1,नासपती खाने से शरीर में उर्जा मिलती है +carrot/carrot_1,गाजर खाने से शरीर में खून बढ़ता है +cube/cube_3,यह एक नीले रंग का डब्बा है +eggplant/eggplant_4,पथरी के रोगियों को बैंगन नहीं खाना चाहिए +corn/corn_1,मक्के की रोटी पंजाबी लोग ज्यादा खाते है +lime/lime_1,यह निम्बू हैं +carrot/carrot_1,यह एक गाजर हैं +cube/cube_3,यह गोटी हैं +eggplant/eggplant_4,यह भरता बनाने वाला बैंगन हैं +corn/corn_1,यह मक्का हैं +lime/lime_1,यह एक कच्चा निम्बू है +carrot/carrot_1,यह एक गाजर है +cube/cube_3,यह एक नीला घनक्षेत्र है +eggplant/eggplant_4,यह एक बैंगन है +corn/corn_1,यह एक मक्का है +lime/lime_1,ये हरे रंग का नींबू हैये खट्टा होता है +carrot/carrot_1,ये लाल रंग का गाजर है +cube/cube_3,ये नीले रंग की वस्तु है ये चोकोर है +eggplant/eggplant_4,ये बैगन हैये एक सब्जी है +corn/corn_1,ये मक्का हैं +lime/lime_1,यह एक निबू है +carrot/carrot_1,यह गाजर है और सबजी के रूप में उपयोग किया जाता है +cube/cube_3,यह एक घन है +eggplant/eggplant_4,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +corn/corn_1,यह एक मकई है +lime/lime_1,यह स्वास्थ्य के लिए अच्छा है +carrot/carrot_1,यह स्वास्थ्य के लिए अच्छा है +cube/cube_3,यह नीले रंग में दिखता है +eggplant/eggplant_4,यह स्वास्थ्य के लिए अच्छा है +corn/corn_1,यह स्वास्थ्य के लिए अच्छा है +lime/lime_1,इसे नींबू कहेते है +carrot/carrot_1,इसे गाजर कहेते है +cube/cube_3,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +eggplant/eggplant_4,इसे बेंगन कहेते है +corn/corn_1,इसे मक्के का भुट्टा कहेते है +lime/lime_1,यह एक अमरुद का चित्र है +carrot/carrot_1,यह एक गाजर का चित्र है +cube/cube_3,यह एक वर्ग के आकर का चित्र है +eggplant/eggplant_4,यह एक बैंगन का चित्र है +corn/corn_1,यह एक भुट्टे का चित्र है +lime/lime_1,यह चूना हरे रंग का होता है +carrot/carrot_1,यह गाजर बहुत लंबी है +cube/cube_3,यह घन नीला है +eggplant/eggplant_4,हम बैंगन स्वादिष्ट भोजन में बदल सकते हैं +corn/corn_1,मकई भी उबाल सकते हैं +lime/lime_1,काग़ज़ी नींबू +carrot/carrot_1,गाजर फल +cube/cube_3,घन क्षेत्र +eggplant/eggplant_4,बैंगन सब्जी +corn/corn_1,मकाई का भुट्टा +lime/lime_1,यह हरे रंग की कोई सब्जी या फल है +carrot/carrot_1,यह एक गाजर है +cube/cube_3,यह नील रंग का वर्ग का आकार है +eggplant/eggplant_4,यह एक बेंगन है +corn/corn_1,यह छिला हुआ मक्के का भुट्टा है +lime/lime_1,यह एक हरा छोटा नींबू है +carrot/carrot_1,यह एक सीधा पतला गाजर है +cube/cube_3,यह एक घन नुमा नीले रंग की कोई वस्तु है +eggplant/eggplant_4,यह एक लम्बा पतला बैंगनी रंग का बैंगन है +corn/corn_1,यह वस्तु एक छिला हुआ भुट्टा है जिसके दाने सफ़ेद है +lime/lime_1,यह एक प्रकार की सब्जी है +carrot/carrot_1,यह गाजर है +cube/cube_3,यह नीली सी चौकोर चीज है +eggplant/eggplant_4,यह बैगन है +corn/corn_1,यह भुटा है +corn/corn_4,ये मक्का है इसका सूप बनाया जाता है +carrot/carrot_2,ये वस्तु गाजर है इसका उपयोग सलाद में किया जाता है +cucumber/cucumber_3,ये वस्तु ककड़ी हैइसका उपयोग सलाद मे किया जाता है +cuboid/cuboid_2,ये हरे रंग का आयताकार वस्तु है +cuboid/cuboid_1,ये पीले रंग की वस्तु हैइसका आकार आयताकार है +corn/corn_4,यह मक्के का भुट्टा है +carrot/carrot_2,यह एक गाजर है +cucumber/cucumber_3,यह एक ककड़ी है +cuboid/cuboid_2,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +cuboid/cuboid_1,यह कोई पीले रंग का रब्बर का टुकड़ा है +corn/corn_4,यह मकई है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +carrot/carrot_2,यह गाजर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +cucumber/cucumber_3,यह ककड़ी है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +cuboid/cuboid_2,यह एक घन प्रकार की वस्तु है +cuboid/cuboid_1,यह एक घनाकार वस्तु है +corn/corn_4,यह मक्का है और अनाज के रूप में उपयोग किया जाता ह +carrot/carrot_2,यह गाजर और सबजी के रूप में उपयोग किया जाता है +cucumber/cucumber_3,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +cuboid/cuboid_2,यह एक घनाभ है +cuboid/cuboid_1,यह एक घनाभ है +corn/corn_4,इसे मक्के का भुट्टा कहेते है +carrot/carrot_2,इसे गाजर कहेते है +cucumber/cucumber_3,इसे ककड़ी कहेते है +cuboid/cuboid_2,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +cuboid/cuboid_1,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +corn/corn_4,यह स्वास्थ्य के लिए अच्छा है +carrot/carrot_2,यह स्वास्थ्य के लिए अच्छा है +cucumber/cucumber_3,यह लाल रंग में हरा है +cuboid/cuboid_2,यह लाल रंग में हरा है +cuboid/cuboid_1,यह पीले रंग में है +corn/corn_4,यह लौकी है यह मक्का है यह बहुत मिटा है +carrot/carrot_2,यह गाजर है यह नारंगी का रंग है +cucumber/cucumber_3,यह लौकी है यह हरा रंग का वस्तु है +cuboid/cuboid_2,यह एक हरा रंगा का वस्तु है +cuboid/cuboid_1,यहएक पीला रंगा का वस्तु है +corn/corn_4,यह भुट्टा है जिसे मकई या मक्का भी कहते है मक्का प्रमुख खाद्य फसल हैं +carrot/carrot_2,यह गाजर है ये एक सब्जी होती है यह लाल काली नारंगी कई रंगों में मिलती है +cucumber/cucumber_3,खीरा ज़ायद की एक प्रमुख फसल है सलाद के रूप में सम्पूर्ण विश्व में खीरा का विशेष महत्त्व है +cuboid/cuboid_2,यह एक साबुन के टुकड़ा प्रतीत हो रहा है जो की हरे रंग का है +cuboid/cuboid_1,यह एक साबुन के टुकड़ा प्रतीत हो रहा है जो की पीले रंग का है +corn/corn_4,यह वस्तु एक छिला हुआ भुट्टा है जिसके दाने सफ़ेद है +carrot/carrot_2,यह एक आढ़ा तिरछा गाजर है +cucumber/cucumber_3,यह एक हरा पतला खीरा है +cuboid/cuboid_2,यह एक आयातफलकीनुमा हरे रंग की कोई वस्तु है +cuboid/cuboid_1,यह एक आयातफलकीनुमा पीले रंग की कोई वस्तु है +corn/corn_4,यह एक भुट्टे का चित्र है +carrot/carrot_2,यह एक गाजर का चित्र है +cucumber/cucumber_3,यह एक खीरे का चित्र है +cuboid/cuboid_2,यह एक साबुन का चित्र है +cuboid/cuboid_1,यह एक साबुन का चित्र है +corn/corn_4,ये सफेद वाला मक्का है +carrot/carrot_2,ये गाजर है +cucumber/cucumber_3,ये ककड़ी है +cuboid/cuboid_2,ये है हरा वाला खंड +cuboid/cuboid_1,ये है पीला वाला खंड +corn/corn_4,मकई एक स्वस्थ भोजन है इसका उपयोग हमारे दैनिक जीवन में किया जाता है +carrot/carrot_2,गाजर का उपयोग सलाद के रूप में किया जाता है इसे भोजन में अतिरिक्त घटक के रूप में भी मिलाया जाता है +cucumber/cucumber_3,ककड़ी का उपयोग सलाद के रूप में किया जाता है यह एक स्वस्थ खाद्य पदार्थ है और पाचन के लिए अच्छा है +cuboid/cuboid_2,एक नीले घनाकार संरचना इसे ऊर्ध्वाधर के रूप में रखा जा रहा है +cuboid/cuboid_1,एक सफेद घनाकार संरचना इसे ऊर्ध्वाधर के रूप में रखा जा रहा है +corn/corn_4,यह मक्के का भुट्टा है +carrot/carrot_2,यह गाजर है +cucumber/cucumber_3,यह ककड़ी है +cuboid/cuboid_2,यह नीले रंग की रबर या प्लास्टिक की कोई वस्तु है +cuboid/cuboid_1,यह पीले रंग की रबर या प्लास्टिक की कोई वस्तु है +corn/corn_4,भुट्टा है +carrot/carrot_2,यह गाज्जर है +cucumber/cucumber_3,हरी ककड़ी है +cuboid/cuboid_2,हरा चौकोर चीज है +cuboid/cuboid_1,पिल चौकोर चीज है +corn/corn_4,यह एक मक्का है +carrot/carrot_2,यह एक गाजर है +cucumber/cucumber_3,यह एक खीरा है +cuboid/cuboid_2,यह एक हरा घनाभ है +cuboid/cuboid_1,यह एक पीला घनाभ है +corn/corn_4,मकाई का भुट्टा +carrot/carrot_2,गाजर फल +cucumber/cucumber_3,खीरा सब्जी +cuboid/cuboid_2,हरे रंग का घनाभ षटफलक +cuboid/cuboid_1,पीले रंग का घनाभ षटफलक +triangle/triangle_3,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +corn/corn_4,इसे मक्के का भुट्टा कहेते है +cube/cube_2,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +cylinder/cylinder_2,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +triangle/triangle_1,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +triangle/triangle_3,यह एक त्रिकोण है +corn/corn_4,यह मक्का है और अनाज के रूप में उपयोग किया जाता ह +cube/cube_2,यह घन है +cylinder/cylinder_2,यह सिलेंडर है +triangle/triangle_1,यह एक त्रिकोण है +triangle/triangle_3,यह एक घन प्रकार की वस्तु है +corn/corn_4,यह मकई है और खाने में बहुत स्वादिष्ट है +cube/cube_2,यह एक घन प्रकार की वस्तु है +cylinder/cylinder_2,यह एक घन प्रकार की वस्तु है +triangle/triangle_1,यह एक घनाकार वस्तु है +triangle/triangle_3,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +corn/corn_4,यह मक्के का भुट्टा है +cube/cube_2,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +cylinder/cylinder_2,यह लाल रंग की प्लास्टिक या रबर की कोई वस्तु है +triangle/triangle_1,यह लाल रंग की प्लास्टिक या रबर की कोई वस्तु है +triangle/triangle_3,यह त्रिकोण हरे रंग का है +corn/corn_4,मकई बहुत स्वादिष्ट होता है +cube/cube_2,घन लंबाई में बराबर होता है +cylinder/cylinder_2,इस सिलेंडर में लाल रंग है +triangle/triangle_1,पिज्जा भी आकार में त्रिकोण होता है +triangle/triangle_3,यह एक हरा त्रिकोण है +corn/corn_4,यह एक मक्का है +cube/cube_2,यह एक हरा घनक्षेत्र है +cylinder/cylinder_2,यह एक लाल सिलेंडर है +triangle/triangle_1,यह एक लाल त्रिकोण है +triangle/triangle_3,यह हरे रंग में है +corn/corn_4,यह स्वास्थ्य के लिए अच्छा है +cube/cube_2,यह हरे रंग में है +cylinder/cylinder_2,यह लाल रंग में है +triangle/triangle_1,यह आयताकार आकार में है +triangle/triangle_3,यह एक त्रिकोण है +corn/corn_4,यह मक्का है और अनाज के रूप में उपयोग किया जाता ह +cube/cube_2,यह घन है +cylinder/cylinder_2,यह एक सिलेंडर है +triangle/triangle_1,यह एक त्रिकोण है +triangle/triangle_3,यह त्रिकोणीय आकृतियों का एक रूप है और पाठ पढ़ाने वाले शिक्षकों के लिए नमूने के रूप के रूप में उपयोग किया जाता है +corn/corn_4,माचाचलम नाम एक अच्छी फसल है जो कम समय में उग सकती है इसे गर्म पानी में खाया जाता है +cube/cube_2,चौकोर आकार के बालों का उपयोग उन शिक्षकों के लिए नमूने के रूप में किया जाता है जो पाठ करते हैं +cylinder/cylinder_2,इसे सिलेंडर के रूप की तरह आकार दिया जाता है और इसका उपयोग पाठ पढ़ाने वाले शिक्षकों के लिए नमूने के रूप में किया जाता है +triangle/triangle_1,यह त्रिकोणीय आकृतियों का एक रूप है और पाठ पढ़ाने वाले शिक्षकों के लिए नमूने के रूप के रूप में उपयोग किया जाता है +triangle/triangle_3,यह एक हरे रंग का वस्तु है +corn/corn_4,यह भुट्टा है +cube/cube_2,यह हरा रंग है +cylinder/cylinder_2,यह लाल रंग है +triangle/triangle_1,यह लाल रंग का त्रिकोण है +triangle/triangle_3,हरी वास्तु है +corn/corn_4,भुट्टा है +cube/cube_2,हरी वास्तु है +cylinder/cylinder_2,लाल वास्तु है +triangle/triangle_1,लाल वास्तु है +triangle/triangle_3,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +corn/corn_4,यह मक्के का भुट्टा है +cube/cube_2,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +cylinder/cylinder_2,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +triangle/triangle_1,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +triangle/triangle_3,यह एक त्रिकोणीय संक्षेत्रनुमा नीले रंग की वस्तु है +corn/corn_4,यह वस्तु एक छिला हुआ भुट्टा है जिसके दाने सफ़ेद है +cube/cube_2,यह एक घन नुमा हरे रंग की कोई वस्तु है +cylinder/cylinder_2,यह एक लाल रंग की और बेलननुमा आकार की वस्तु है +triangle/triangle_1,यह एक त्रिकोणीय संक्षेत्रनुमा लाल रंग की वस्तु है +triangle/triangle_3,ये हरे रंग की त्रिकोण वस्तु है +corn/corn_4,ये मक्का हैइसका सूप बनाया जाता है +cube/cube_2,ये हरे रंग का चोकोर है +cylinder/cylinder_2,ये लाल रंग का सिलिंडर आकार की वस्तु है +triangle/triangle_1,ये लाल रंग की वस्तु है +triangle/triangle_3,ये त्रिकोण है +corn/corn_4,ये मक्का है +cube/cube_2,ये खंड है +cylinder/cylinder_2,ये सिलेंडर है +triangle/triangle_1,ये त्रिकोण है +triangle/triangle_3,यह एक त्रिकोण का चित्र है +corn/corn_4,यह एक भुट्टे का चित्र है +cube/cube_2,यह एक वर्ग के आकर का चित्र है +cylinder/cylinder_2,यह एक बेलन केआकर का चित्र है +triangle/triangle_1,यह एक त्रिकोण का चित्र है +triangle/triangle_3,हरे रंग का त्रिभुज +corn/corn_4,मकाई का भुट्टा +cube/cube_2,घन क्षेत्र +cylinder/cylinder_2,लाल रंग का बेलन +triangle/triangle_1,लाल रंग का त्रिभुज +carrot/carrot_4,ये गाजर रखा हुआ है +banana/banana_4,ये केला रखा हुआ है +semicylinder/semicylinder_3,ये केक रखा हुआ है +cylinder/cylinder_4,यह शरबत का गिलास रखा हुआ है +cuboid/cuboid_3,यह कुल्फी राखी हुई है +carrot/carrot_4,यह चुकंदर है +banana/banana_4,ये केला है +semicylinder/semicylinder_3,ये नीला वाला सिलेंडर है +cylinder/cylinder_4,ये सिलेंडर है +cuboid/cuboid_3,ये खंड है +carrot/carrot_4,ये लाल रंग का गाजर है +banana/banana_4,ये हरे रंग का केला है +semicylinder/semicylinder_3,ये पीले रंग की वस्तु है +cylinder/cylinder_4,ये हरे रंग की वस्तु है +cuboid/cuboid_3,ये लाल रंग की वस्तु हैइसका आकार आयताकार है +carrot/carrot_4,यह गाजर है जो की एक सब्ज़ी का नाम है यह लाल काली नारंगी कई रंगों में मिलती है यह पौधे की मूल जड़ होती है +banana/banana_4,यह कैला है जो की एक फल है चित्र में दिख रहा कैला कच्चा है जो की सब्जी बनाने के लिये उपयोग होता है +semicylinder/semicylinder_3,यह एक अर्ध गोलाकार वस्तु का टुकड़ा है जो की पीले रंग का है +cylinder/cylinder_4,यह एक बेलनाकार वस्तु है जो की सतह पर रखी हुई है इसका रंग हरा है +cuboid/cuboid_3,वस्तु एक आयताकार साबुन जैसी प्रतीत हो रही है यह लाल रंग की है +carrot/carrot_4,यह गाजर है +banana/banana_4,यह केला है +semicylinder/semicylinder_3,यह पिली वास्तु है +cylinder/cylinder_4,यह हरी वास्तु है +cuboid/cuboid_3,यह लाल वास्तु है +carrot/carrot_4,यह एक सीधा पतला गाजर है +banana/banana_4,यह एक हल्का हरा पका हुआ केला है +semicylinder/semicylinder_3,यह एक पीले रंग की और अर्ध बेलननुमा आकार की वस्तु है +cylinder/cylinder_4,यह एक खड़ी हरे रंग की और बेलननुमा आकार की वस्तु है +cuboid/cuboid_3,यह एक खड़ी आयातफलकीनुमा लाल रंग की कोई वस्तु है +carrot/carrot_4,इसे गाजर कहेते है +banana/banana_4,इसे केला कहेते है +semicylinder/semicylinder_3,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +cylinder/cylinder_4,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +cuboid/cuboid_3,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +carrot/carrot_4,यह गाजर है +banana/banana_4,यह एक केला है +semicylinder/semicylinder_3,यह पीले रंग की रबर या प्लास्टिक की कोई वस्तु है +cylinder/cylinder_4,यह निले रंग का रबर या प्लास्टिक का कोई आकर है +cuboid/cuboid_3,यह लाल रंग का कोई घनाभ है +carrot/carrot_4,यह एक गाजर है +banana/banana_4,यह एक केला है +semicylinder/semicylinder_3,यह कोई पीले रंग का रब्बर का टुकड़ा है +cylinder/cylinder_4,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +cuboid/cuboid_3,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +carrot/carrot_4,यह एक गाजर का चित्र है +banana/banana_4,यह एक केले का चित्र है +semicylinder/semicylinder_3,यह एक साबुन का चित्र है +cylinder/cylinder_4,यह एक बेलन के आकर का चित्र है +cuboid/cuboid_3,यह एक साबुन का चित्र है +carrot/carrot_4,यह स्वास्थ्य के लिए अच्छा है +banana/banana_4,यह स्वास्थ्य के लिए अच्छा है +semicylinder/semicylinder_3,यह पीले रंग में दिखता है +cylinder/cylinder_4,यह हरे रंग में दिखता है +cuboid/cuboid_3,यह फिर से लग रहा है +carrot/carrot_4,यह गाजर और सबजी के रूप में उपयोग किया जाता है +banana/banana_4,यह एक केला है +semicylinder/semicylinder_3,यह एक अर्ध सिलेंडर है +cylinder/cylinder_4,यह सिलेंडर है +cuboid/cuboid_3,यह एक घनाभ है +carrot/carrot_4,यह एक गाजर है +banana/banana_4,यह एक केला है +semicylinder/semicylinder_3,यह एक पीला अर्ध सिलेंडर है +cylinder/cylinder_4,यह एक हरा सिलेंडर है +cuboid/cuboid_3,यह एक लाल घनाभ है +carrot/carrot_4,यह एक गाजर का चित्र हे +banana/banana_4,यह एक पीले रंग का केला हे +semicylinder/semicylinder_3,यह एक पीले रंग का आधा क्षेत्र का चित्र हे +cylinder/cylinder_4,यह एक हरे रंग का बेलनाकार वस्तु का चित्र हे +cuboid/cuboid_3,यह एक लाल रंग का घनाभ हे +carrot/carrot_4,यह गाजर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +banana/banana_4,यह केला है और इसका उपयोग विभिन्न व्यंजनों को तैयार करने के लिए किया जाता है +semicylinder/semicylinder_3,यह एक घन प्रकार की वस्तु है +cylinder/cylinder_4,यह एक घन प्रकार की वस्तु है +cuboid/cuboid_3,यह एक घनाकार वस्तु है +carrot/carrot_4,गाजर फल +banana/banana_4,केला फल +semicylinder/semicylinder_3,अर्द्ध बेलन +cylinder/cylinder_4,हरे रंग का बेलन +cuboid/cuboid_3,घनाभ षटफलक +carrot/carrot_4,यह गाजर और सबजी के रूप में उपयोग किया जाता है +cucumber/cucumber_1,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +eggplant/eggplant_4,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +orange/orange_3,यह एक संतरा है +banana/banana_1,यह एक केला है +carrot/carrot_4,यह गाजर है यह नारंगी का रंग है +cucumber/cucumber_1,यह खीरा है यह रंगा का वस्तु है +eggplant/eggplant_4,यह बैंगन है यह बैंगनी का रंगा है +orange/orange_3,यह नारंगी है +banana/banana_1,यह केला है यह पीला का वस्तु है +carrot/carrot_4,गाजर फल +cucumber/cucumber_1,खीरा सब्जी +eggplant/eggplant_4,बैगन सब्जी +orange/orange_3,संतरा फल +banana/banana_1,केला फल +carrot/carrot_4,यह ककड़ी है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +cucumber/cucumber_1,यह ककड़ी है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +eggplant/eggplant_4,यह बैंगन है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +orange/orange_3,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +banana/banana_1,यह केला है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +carrot/carrot_4,यह एक गाजर है +cucumber/cucumber_1,यह एक ककड़ी है +eggplant/eggplant_4,यह एक बेंगन है +orange/orange_3,यह एक संतरा है +banana/banana_1,यह एक केला है +carrot/carrot_4,यह एक गाजर का चित्र है +cucumber/cucumber_1,यह एक खीरे का चित्र है +eggplant/eggplant_4,यह एक बैंगन का चित्र है +orange/orange_3,यह एक संतरे का चित्र है +banana/banana_1,यह एक केले का चित्र है +carrot/carrot_4,यह स्वास्थ्य के लिए अच्छा है +cucumber/cucumber_1,यह हरे रंग में है +eggplant/eggplant_4,यह स्वास्थ्य के लिए अच्छा है +orange/orange_3,यह स्वास्थ्य के लिए अच्छा है +banana/banana_1,यह स्वास्थ्य के लिए अच्छा है +carrot/carrot_4,यह एक गाजर का चित्र हे +cucumber/cucumber_1,यह एक खीरे का चित्र हे +eggplant/eggplant_4,यह एक बैंगन का चित्र हे +orange/orange_3,यह एक मुसंबी का चित्र हे +banana/banana_1,यह एक पीले रंग का केले का चित्र हे +carrot/carrot_4,यह एक गाजर है +cucumber/cucumber_1,यह एक खीरा है +eggplant/eggplant_4,यह एक बैंगन है +orange/orange_3,यह एक संतरा है +banana/banana_1,यह एक केला है +carrot/carrot_4,इसे गाजर कहेते है +cucumber/cucumber_1,इसे ककड़ी कहेते है +eggplant/eggplant_4,इसे बेंगन कहेते है +orange/orange_3,इसे संतरा कहेते है +banana/banana_1,इसे केला कहेते है +carrot/carrot_4,यह बड़ी गाज्जर है +cucumber/cucumber_1,यह हरी ककड़ी है +eggplant/eggplant_4,भर्त्ता का बैगन है +orange/orange_3,यह गोले संतरा है +banana/banana_1,यह पीला केला है +carrot/carrot_4,गजर हलवा +cucumber/cucumber_1,खीरा साबजी +eggplant/eggplant_4,बंजी भरता है +orange/orange_3,खाली वस्तु +banana/banana_1,छिपा हुआ केला +carrot/carrot_4,ये वस्तु गाजर हैं +cucumber/cucumber_1,ये वस्तु हरी काकड़ी है +eggplant/eggplant_4,ये बैगन है यह एक सब्जी है +orange/orange_3,ये सन्तरा हैये एक फल है +banana/banana_1,ये केला हैये एक फल है +carrot/carrot_4,बाएं हाथ +cucumber/cucumber_1,मोटी खीरा +eggplant/eggplant_4,बड़े बैंगन +orange/orange_3,बड़े संतरा +banana/banana_1,बड़े केला +carrot/carrot_4,यह एक आढ़ा तिरछा गाजर है +cucumber/cucumber_1,यह एक हरा पतला खीरा है +eggplant/eggplant_4,यह एक लम्बा पतला बैंगनी रंग का बैंगन है +orange/orange_3,यह वस्तु एक नारंगी रंग का पका संतरा है +banana/banana_1,यह एक पीला पका हुआ केला है +carrot/carrot_4,यह एक गाजर है +cucumber/cucumber_1,यह एक ककड़ी है +eggplant/eggplant_4,यह एक बेंगन है +orange/orange_3,यह एक पिला नींबू है +banana/banana_1,यह एक केला है +tomato/tomato_4,टमाटर सब्जी +lime/lime_4,काग़ज़ी नींबू +orange/orange_1,संतरा फल +plum/plum_1,बेर फल +cucumber/cucumber_4,खीरा सब्जी +tomato/tomato_4,टमाटर का उपयोग कई व्यंजनों में किया जाता है +lime/lime_4,चूने का उपयोग कई खाद्य पदार्थों में किया जा सकता है +orange/orange_1,संतरे के पेड़ के फल को ताजा खाया जा सकता है या इसके रस या सुगंधित छिलके के लिए संसाधित किया जा सकता है +plum/plum_1,परिपक्व बेर फल में एक धूल सफेद मोमी कोटिंग हो सकती है जो उन्हें एक चमकदार उपस्थिति प्रदान करती है +cucumber/cucumber_4,खीरा बहुत स्वादिष्ट होता है +tomato/tomato_4,यह स्वास्थ्य के लिए अच्छा है +lime/lime_4,यह तस्वीर हरे रंग में है +orange/orange_1,यह स्वास्थ्य के लिए अच्छा है +plum/plum_1,यह तस्वीर लाल रंग में है +cucumber/cucumber_4,यह स्वास्थ्य के लिए अच्छा है +tomato/tomato_4,यह एक टमाटर है +lime/lime_4,यह एक हरा नींबू है +orange/orange_1,यह एक पिला नींबू है +plum/plum_1,यह एक बेर है +cucumber/cucumber_4,यह एक ककड़ी है +tomato/tomato_4,यह एक टमाटर का चित्र है +lime/lime_4,यह एक अमरुद का चित्र है +orange/orange_1,यह एक संतरे का चित्र है +plum/plum_1,यह एक सेब का चित्र है +cucumber/cucumber_4,यह एक खीरे का चित्र है +tomato/tomato_4,यह एक टमाटर है +lime/lime_4,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +orange/orange_1,यह एक संतरा है +plum/plum_1,यह बेर है +cucumber/cucumber_4,यह बेर है +tomato/tomato_4,यह टमाटर है यह लाल रंगा है +lime/lime_4,यह एक हरा रंगा का वस्तु है +orange/orange_1,यह पीला का वस्तु है यह नारंगी है +plum/plum_1,यह एक लाल रंगा का वस्तु है +cucumber/cucumber_4,यह एक खीरा है यह हरा रंगा है +tomato/tomato_4,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +lime/lime_4,यह नींबू है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +orange/orange_1,यह आम है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +plum/plum_1,यह बीट है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +cucumber/cucumber_4,यह ककड़ी है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +tomato/tomato_4,यह एक टमाटर है +lime/lime_4,यह एक कच्चा निम्बू है +orange/orange_1,यह एक संतरा है +plum/plum_1,यह एक बेर है +cucumber/cucumber_4,यह एक खीरा है +tomato/tomato_4,यह एक टमाटर का चित्र हे +lime/lime_4,यह एक अमरूद का चित्र हे +orange/orange_1,यह एक मुसंबी का चित्र हे +plum/plum_1,यह एक सेब का चित्र हे +cucumber/cucumber_4,यह एक खीरे का चित्र हे +tomato/tomato_4,ये लाल रंग का टमाटर है +lime/lime_4,ये हरे रंग का नींबू है +orange/orange_1,ये संतरा है +plum/plum_1,ये लाल रंग का सेब है +cucumber/cucumber_4,ये हरे रंग की ककड़ी है +tomato/tomato_4,1 सुबह सुबह बिना पानी पिए पका टमाटर खाना स्वास्थ्य के लिए अच्छा होता है 2 अगर बच्चे को सूखा रोग हो जाए तो उसे प्रतिदिन एक गिलास टमाटर का जूस पिलाने से बीमारी में आराम मिलता है +lime/lime_4,ब्रोकोली में कैरेटेनॉयड्स ल्यूटिन पाया जाता है ये दिल की धमनियों को स्वस्थ बनाए रखता है इसके सेवन से दिल का दौरा पड़ने और अन्य बीमारियों के होने की आशंका कम हो जाती है इसमें मौजूद पोटैशि‍यम कोलेस्ट्रॉल के स्तर को बढ़ने नहीं देता है +orange/orange_1,संतरा और उसका जूस देखने में जितना अच्छा लगता है यह हमारे स्वास्थ्य के लिए भी उतना हीं अच्छा है संतरा विटामिन सी का भंडार है और यह आसानी से बाजार में मिल जाता है संतरा के बहुत सारे लाभ है +plum/plum_1,सेब बहुत अच्छा फल है वह स्वास्त के लिए बहुत अच्छा है सेब बहुत स्वादित हाता है सेब पेड़ पर उगता है +cucumber/cucumber_4,खीरा सेहत के लिए काफी फायदेमंद माना जाता है इसके सौंदर्य लाभ के बारे में तो आपने काफी कुछ सुना होगा लेकिन यह आपकी सेहत के लिए कितना और किस तरह फायदेमंद है इसके बारे में आज हम आपको बताते हैं कम फैट व कैलोरी से भरपूर खीरे का सेवन आपको कई गंभीर बीमारियों से बचाने में सहायक है +tomato/tomato_4,टमाटर का उपयोग डेसर्ट मिठाई और यहां तक कि भौतिक उद्देश्यों के लिए किया जाता है टमाटर की दुनिया में दुनिया के सभी देशों में इसका उपयोग बड़ी मात्रा में किया जाता है +lime/lime_4,मुझे खेद है कि मैं इसे समझा नहीं सकता क्योंकि मैं इसे किसी भी प्रकार के लिए नहीं ढूंढ सकताकोई और पूरी फोटो नहीं +orange/orange_1,संतरा फल बहुत ठंडा होता है आंखों की जलन जैसी जलन +plum/plum_1,सेब थोड़ा अधिक महंगा है फल बहुत बेस्वाद होता है और इससे शरीर में प्रोटीन की मात्रा बढ़ जाती है +cucumber/cucumber_4,इससे शरीर को बहुत ठंडक मिलती है यह गर्मियों में शरीर के लिए बहुत अच्छा है इसका उपयोग उपचारों में भी किया जाता है +tomato/tomato_4,इसे टमाटर कहेते है +lime/lime_4,इसे नींबू कहेते है +orange/orange_1,इसे संतरा कहेते है +plum/plum_1,इसे बेर कहेते है +cucumber/cucumber_4,इसे ककड़ी कहेते है +tomato/tomato_4,यह टमाटर है +lime/lime_4,यह निम्बू है +orange/orange_1,मौसम्बी है +plum/plum_1,टमाटर है +cucumber/cucumber_4,हरी ककड़ी है +tomato/tomato_4,यह एक लाल पीले रंग का अधपका टमाटर है जिसके ऊपर पत्ती नुमा छतरी लगी हुई है +lime/lime_4,यह एक हरा छोटा नींबू है +orange/orange_1,यह वस्तु एक पीले रंग का संतरा है +plum/plum_1,यह एक आलूबुखारा जैसा दिखने वाला फल है जोकि दिखने में लाल रंग का है +cucumber/cucumber_4,यह एक हरा पतला खीरा है +tomato/tomato_4,यह एक टमाटर है +lime/lime_4,यह हरे रंग की कोई सब्जी या फल है +orange/orange_1,यह एक संतरा है +plum/plum_1,यस एक सेब है +cucumber/cucumber_4,यह एक ककड़ी है +lime/lime_2,यह एक कच्चा निम्बू है +cucumber/cucumber_1,यह एक खीरा है +corn/corn_3,यह एक मक्का है +arch/arch_3,यह एक हरा मेहराब है +lime/lime_3,यह एक कच्चा निम्बू है +lime/lime_2,यह हरे रंग की कोई सब्जी या फल है +cucumber/cucumber_1,यह एक ककड़ी है +corn/corn_3,यह मक्के का भुट्टा है +arch/arch_3,यह हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +lime/lime_3,यह हरे रंग की सब्जी या फल है +lime/lime_2,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +cucumber/cucumber_1,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +corn/corn_3,यह मक्का है और अनाज के रूप में उपयोग किया जाता ह +arch/arch_3,यह एक आर्च है +lime/lime_3,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +lime/lime_2,यह नींबू है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +cucumber/cucumber_1,यह ककड़ी है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +corn/corn_3,यह मकई है और खाने में बहुत स्वादिष्ट है +arch/arch_3,यह एक घन प्रकार की वस्तु है +lime/lime_3,यह नींबू है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +lime/lime_2,यह एक हरा नींबू है +cucumber/cucumber_1,यह एक ककड़ी है +corn/corn_3,यह मक्के का भुट्टा है +arch/arch_3,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +lime/lime_3,यह एक हरा नींबू है +lime/lime_2,ये पत्ती है +cucumber/cucumber_1,ये ककड़ी है +corn/corn_3,ये केला है +arch/arch_3,ये नीला वाला त्रिकोण है +lime/lime_3,ये मक्का है +lime/lime_2,यह हरे रंग में है +cucumber/cucumber_1,इसे ककड़ी कहा जाता है हर कोई इसे पसंद करता है +corn/corn_3,यह मकई कहा जाता है हर कोई इसे पसंद करता है +arch/arch_3,यह हरे रंग में है +lime/lime_3,यह हरे रंग में है +lime/lime_2,ये हरे रंग की वस्तु है +cucumber/cucumber_1,ये हरी ककडी है +corn/corn_3,ये मक्का है +arch/arch_3,ये गहरे हरे रंग की वस्तु है +lime/lime_3,ये हरे रंग की वस्तु है +lime/lime_2,यह एक अमरुद का चित्र है +cucumber/cucumber_1,यह एक खीरे का चित्र है +corn/corn_3,यह एक भुट्टे का चित्र है +arch/arch_3,यह एक साबुन का चित्र है +lime/lime_3,यह एक अमरुद का चित्र है +lime/lime_2,यह एक गोभी है +cucumber/cucumber_1,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +corn/corn_3,यह एक स्वीट कॉर्न है +arch/arch_3,यह एक टेप मशीन स्टैंड है +lime/lime_3,यह एक गोभी है +lime/lime_2,अंगूर है +cucumber/cucumber_1,ककड़ी है +corn/corn_3,शफेद भुट्टा है +arch/arch_3,कुछ हरा सा है +lime/lime_3,छोटा अंगूर है +lime/lime_2,इसे नींबू कहेते है +cucumber/cucumber_1,इसे ककड़ी कहेते है +corn/corn_3,इसे मक्के का भुट्टा कहेते है +arch/arch_3,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +lime/lime_3,इसे नींबू कहेते है +lime/lime_2,मुझे इस फल के बारे में कुछ नहीं पता +cucumber/cucumber_1,ककड़ी बहुत ठंडी होती है इसका उपयोग घरेलू चिकित्सा उपचार में आँसू के लिए किया जाता है +corn/corn_3,इसे मक्का कहा जाता है और यह सबसे कम समय में पकने वाली सबसे कम फसल है +arch/arch_3,अर्चना का उपयोग पैटर्न खोजने के लिए उपयोग किए जाने वाले मॉडल के रूप में किया जाता है +lime/lime_3,मुझे इस फल के बारे में कुछ नहीं पता +lime/lime_2,काग़ज़ी नींबू +cucumber/cucumber_1,खीरा सब्जी +corn/corn_3,मकाई का भुट्टा +arch/arch_3,मेहराब वृत्त खंड +lime/lime_3,काग़ज़ी नींबू +lime/lime_2,यह एक हरा छोटा नींबू है +cucumber/cucumber_1,यह एक हरा पतला खीरा है +corn/corn_3,यह वस्तु एक छिला हुआ भुट्टा है जिसके दाने सफ़ेद है +arch/arch_3,यह एक उलटी मेहराब नुमा हरे रंग की वस्तु है +lime/lime_3,यह एक हरा छोटा नींबू है +lime/lime_2,यह खाने की कोई वस्तु है +cucumber/cucumber_1,यह खीरा ककड़ी है +corn/corn_3,यह मक्का है +arch/arch_3,यह आइस क्रीम का टुकड़ा है +lime/lime_3,यह खाने की कोई वस्तु है +lime/lime_3,इसको नींबू कहा जाता है +banana/banana_2,इसको केला कहा जाता है +eggplant/eggplant_4,इसको एक बेंगन कहा जाता है +plum/plum_3,इसको बेर कहा जाता है +potato/potato_3,इसको आलू कहा जाता है +lime/lime_3,ये वस्तु हरे रंग की है +banana/banana_2,केला सेहत के लिए अचा होता है +eggplant/eggplant_4,बैंगन की सब्जी बहुत अछी होती है +plum/plum_3,वस्तु क रंग फीका है +potato/potato_3,आलू एक सब्जी है +lime/lime_3,हरे रंग का निम्बू +banana/banana_2,बड़ा सा केला है +eggplant/eggplant_4,बड़ा बैगन है +plum/plum_3,यह एक प्रकार की वास्तु है +potato/potato_3,आलू है बड़ा +lime/lime_3,यह एक हरे रंग का अमरूद का चित्र हे +banana/banana_2,यह एक पीले रंग का केले का चित्र हे +eggplant/eggplant_4,यह एक बैंगन का चित्र हे +plum/plum_3,यह एक सेब का चित्र हे +potato/potato_3,यह एक आलू का चित्र हे +lime/lime_3,नीबू खट्टा टेस्ट के लिए +banana/banana_2,केला फल +eggplant/eggplant_4,बैगन सब्जी +plum/plum_3,बेर मीठा फल +potato/potato_3,आलू सब्जी +lime/lime_3,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +banana/banana_2,यह एक केला है +eggplant/eggplant_4,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +plum/plum_3,यह बेर है +potato/potato_3,यह एक आलू है +lime/lime_3,यह एक कच्चा निम्बू है +banana/banana_2,यह एक केला है +eggplant/eggplant_4,यह एक बैंगन है +plum/plum_3,यह एक बेर है +potato/potato_3,यह एक आलू है +lime/lime_3,यह हरे रंग में है +banana/banana_2,यह केला है +eggplant/eggplant_4,इसे बैंगन कहा जाता है जिसे हर कोई पसंद करता है +plum/plum_3,ठीक से दिखाई नहीं देता +potato/potato_3,आलू सेहत के लिए अच्छा होता है +lime/lime_3,इसे नींबू कहेते है +banana/banana_2,इसे केला कहेते है +eggplant/eggplant_4,इसे बेंगन कहेते है +plum/plum_3,इसे बेर कहेते है +potato/potato_3,इसे आलू कहेते है +lime/lime_3,यह नींबू है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +banana/banana_2,यह केला है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +eggplant/eggplant_4,यह बैंगन है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +plum/plum_3,यह बीट है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +potato/potato_3,यह आलू है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +lime/lime_3,ये हरे रंग की वस्तु है +banana/banana_2,ये केला है +eggplant/eggplant_4,ये बैगन है +plum/plum_3,ये लाल सेब है +potato/potato_3,ये आलू है +lime/lime_3,यह एक हरा छोटा और अंडाकार आकार का नींबू है +banana/banana_2,यह एक पीला पका हुआ केला है +eggplant/eggplant_4,यह एक लम्बा पतला बैंगनी रंग का बैंगन है +plum/plum_3,यह एक आलूबुखारा जैसा दिखने वाला फल है जोकि दिखने में लाल रंग का है +potato/potato_3,यह एक अंडाकार आलू है और इसका रंग हल्का भूरा है +lime/lime_3,नींबू का अचार बहुत अच्छा लगता है +banana/banana_2,कच्चे केले का हम पकोड़े बनाते हैं +eggplant/eggplant_4,काला बैंगन को भरते में उपयोग किया जाता है +plum/plum_3,यह बैंगन की कलौंजी बनाते हैं +potato/potato_3,आलू यह एक ऐसी सब्जी है जिसे हम सभी में उपयोग करते हैं +lime/lime_3,यह पत्ती है +banana/banana_2,यह केला है +eggplant/eggplant_4,ये है बैंगन +plum/plum_3,ये है गोभी +potato/potato_3,ये आलू है +lime/lime_3,यह एक अमरुद का चित्र है +banana/banana_2,यह एक केले का चित्र है +eggplant/eggplant_4,यह एक बैंगन का चित्र है +plum/plum_3,यह एक सेब का चित्र है +potato/potato_3,यह एक आलू का चित्र है +lime/lime_3,यह हरे रंग की कोई सब्जी या फल है +banana/banana_2,यह एक केला है +eggplant/eggplant_4,यह एक बेंगन है +plum/plum_3,यह कोई सब्जी या फल है +potato/potato_3,यह एक आलू है +cube/cube_1,यह घन है +potato/potato_3,यह एक आलू है +cucumber/cucumber_4,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +cuboid/cuboid_3,यह एक घनाभ है +tomato/tomato_3,यह एक टमाटर है +cube/cube_1,यह घन है +potato/potato_3,यह एक आलू है +cucumber/cucumber_4,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +cuboid/cuboid_3,यह एक घनाभ है +tomato/tomato_3,यह एक घनाभ है +cube/cube_1,यह तस्वीर पीले रंग की है +potato/potato_3,यह तस्वीर पीले रंग की है +cucumber/cucumber_4,यह तस्वीर खीरे की है +cuboid/cuboid_3,यह चित्र लाल रंग का है +tomato/tomato_3,यह चित्र लाल रंग का है +cube/cube_1,पिला चौकोर चीज है +potato/potato_3,आलू है +cucumber/cucumber_4,यह हरी ककड़ी है +cuboid/cuboid_3,लाल चौकोर डिब्बानुमा है +tomato/tomato_3,लाल खराब टमाटर है +cube/cube_1,ये पीले रंग की चौकोर हैं +potato/potato_3,ये आलू है +cucumber/cucumber_4,ये हरी ककडी है +cuboid/cuboid_3,ये लाल रंग का आयताकार वस्तु है +tomato/tomato_3,यव लाल टमाटर है +cube/cube_1,चोकोर चित्रों +potato/potato_3,अलु भाजी +cucumber/cucumber_4,वस्तु खाली +cuboid/cuboid_3,लंबा चोकोर लाल +tomato/tomato_3,लाल टमाटर +cube/cube_1,यह एक घन प्रकार की वस्तु है +potato/potato_3,यह आम है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +cucumber/cucumber_4,यह ककड़ी है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +cuboid/cuboid_3,यह एक घन प्रकार की वस्तु है +tomato/tomato_3,यह आम है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +cube/cube_1,यह कोई पीले रंग का रब्बर का टुकड़ा है +potato/potato_3,यह आलू है +cucumber/cucumber_4,यह एक ककड़ी है +cuboid/cuboid_3,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +tomato/tomato_3,यह एक टमाटर है +cube/cube_1,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +potato/potato_3,इसे आलू कहेते है +cucumber/cucumber_4,इसे ककड़ी कहेते है +cuboid/cuboid_3,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +tomato/tomato_3,इसे टमाटर कहेते है +cube/cube_1,यह एक चौकोर आकार की वस्तु है +potato/potato_3,आलू को आलू पाउडर और आलू चावल के चावल के रूप में जाना जाता है +cucumber/cucumber_4,खीरा शरीर के लिए एक बेहतरीन मिर्च है +cuboid/cuboid_3,आयताकार आकृति का उपयोग उन शिक्षकों के लिए एक मॉडल के रूप में किया जाता है जो पाठ करते हैं +tomato/tomato_3,इसका नाम टमाटर है इसका उपयोग टमाटर चावल में एक अच्छा उपखंड रसम बनाने के लिए किया जाता है +cube/cube_1,यह एक पीला घनक्षेत्र है +potato/potato_3,यह एक आलू है +cucumber/cucumber_4,यह एक खीरा है +cuboid/cuboid_3,यह एक लाल घनाभ है +tomato/tomato_3,यह एक टमाटर है +cube/cube_1,वस्तु घन के आकार की है +potato/potato_3,आलू एक सब्जी है +cucumber/cucumber_4,खीरा को खा सकते है +cuboid/cuboid_3,घनाभ के आकार की वस्तु +tomato/tomato_3,टमाटर को खा सकते है +cube/cube_1,यह एक वर्ग के आकर का चित्र है +potato/potato_3,यह एक आलू का चित्र है +cucumber/cucumber_4,यह एक खीरे का चित्र है +cuboid/cuboid_3,यह एक साबुन का चित्र है +tomato/tomato_3,यह एक टमाटर का चित्र है +cube/cube_1,यह एक पीले रंग की प्लास्टिक या रबर की कोई वस्तु है +potato/potato_3,यह आलू है +cucumber/cucumber_4,यह एक ककड़ी है +cuboid/cuboid_3,यह लाल रंग की प्लास्टिक या रबर की कोई वस्तु है +tomato/tomato_3,यह एक टमाटर है +cube/cube_1,घन क्षेत्र +potato/potato_3,आलू सब्जी +cucumber/cucumber_4,खीरा सब्जी +cuboid/cuboid_3,घनाभ षटफलक +tomato/tomato_3,टमाटर सब्जी +cube/cube_1,ये पीला वाला खंड है +potato/potato_3,ये अदरक है +cucumber/cucumber_4,ये नीला वाला सिलेंडर है +cuboid/cuboid_3,ये नीला वाला त्रिकोण है +tomato/tomato_3,ये है टमाटर +corn/corn_4,इसे मक्के का भुट्टा कहेते है +cuboid/cuboid_2,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +cabbage/cabbage_2,इसे गोभी कहेते है +cuboid/cuboid_4,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +lime/lime_1,इसे नींबू कहेते है +corn/corn_4,यह चित्र स्वास्थ्य के लिए अच्छा है +cuboid/cuboid_2,यह तस्वीर हरे रंग में है +cabbage/cabbage_2,यह तस्वीर अच्छी तरह से दिखाई नहीं देती है +cuboid/cuboid_4,यह तस्वीर नीले रंग में है +lime/lime_1,यह तस्वीर हरे रंग में है +corn/corn_4,ये मक्का हैं +cuboid/cuboid_2,ये हरे रंग का आयताकार वस्तु है +cabbage/cabbage_2,ये बेंगनी रंग की पत्तागोभी है +cuboid/cuboid_4,ये नीले रंग की आयताकार वस्तु है +lime/lime_1,ये हरे रंग की वस्तु है +corn/corn_4,यह एक मक्का है +cuboid/cuboid_2,यह एक हरा घनाभ है +cabbage/cabbage_2,यह एक पत्तागोभी है +cuboid/cuboid_4,यह एक नीला घनाभ है +lime/lime_1,यह एक कच्चा निम्बू है +corn/corn_4,यह छिला हुआ मक्के का भुट्टा है +cuboid/cuboid_2,यह हरे रंग का प्लास्टिक या रबर की कोई वस्तु है +cabbage/cabbage_2,यह गोभी है +cuboid/cuboid_4,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +lime/lime_1,यह एक नींबू है +corn/corn_4,यह एक छिला हुआ भुट्टे का चित्र हे +cuboid/cuboid_2,यह एक हरे रंग का घनाभ का चित्र हे +cabbage/cabbage_2,यह एक बैंगनी रंग का बंद गोबी का चित्र हे +cuboid/cuboid_4,यह एक नीले रंग का घनाभ का चित्र हे +lime/lime_1,यह एक अमरूद का चित्र हे +corn/corn_4,नाम मक्का है जो कम समय में उगने वाली फसल है इसे पकाया जाता है और पानी में पकाया जाता है यह सस्ता होता है +cuboid/cuboid_2,आयताकार आकृति का उपयोग उन शिक्षकों के लिए एक मॉडल के रूप में किया जाता है जो पाठ करते हैं +cabbage/cabbage_2,गोभी का उपयोग परिष्कार के साथ संयोजन में किया जाता है +cuboid/cuboid_4,आयताकार आकृति का उपयोग उन शिक्षकों के लिए एक मॉडल के रूप में किया जाता है जो पाठ करते हैं +lime/lime_1,लाइम का उपयोग एक मुख्य घटक के रूप में किया जाता है +corn/corn_4,यह मक्का है और अनाज के रूप में उपयोग किया जाता ह +cuboid/cuboid_2,यह एक घनाभ है +cabbage/cabbage_2,यह एक गोभी है +cuboid/cuboid_4,यह एक घनाभ है +lime/lime_1,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +corn/corn_4,यह एक भुट्टे का चित्र है +cuboid/cuboid_2,यह एक साबुन का चित्र है +cabbage/cabbage_2,यह एक बंदगोभी का चित्र है +cuboid/cuboid_4,यह एक वर्ग के आकर का चित्र है +lime/lime_1,यह एक अमरुद का चित्र है +corn/corn_4,मकाई का भुट्टा +cuboid/cuboid_2,घनाभ षटफलक +cabbage/cabbage_2,गोभी सब्जी +cuboid/cuboid_4,घनाभ षटफलक +lime/lime_1,काग़ज़ी नींबू +corn/corn_4,यह मकई है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +cuboid/cuboid_2,यह एक घन प्रकार की वस्तु है +cabbage/cabbage_2,यह फूलगोभी है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +cuboid/cuboid_4,यह एक घन प्रकार की वस्तु है +lime/lime_1,यह नींबू है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +corn/corn_4,पीले रंग का भुट्टा दिखाई दे रहा है जिसका छिलका उतरा हुआ है +cuboid/cuboid_2,एक हरे रंग का क्षैतिज घनाभ दिखाई दे रहा है +cabbage/cabbage_2,काले रंग की पत्तागोभी दिखाई दे रही है +cuboid/cuboid_4,एक नीला ऊर्ध्वाधर घनाभ दिखाई दे रहा है +lime/lime_1,एक हरे रंग की खोल के आकार की चीज +corn/corn_4,यह मक्के का भुट्टा है +cuboid/cuboid_2,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +cabbage/cabbage_2,यह गोभी है +cuboid/cuboid_4,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +lime/lime_1,यह एक हरा नींबू है +corn/corn_4,यह एक मकई है +cuboid/cuboid_2,यह एक घनाभ है +cabbage/cabbage_2,यह एक गोभी है +cuboid/cuboid_4,यह एक घनाभ है +lime/lime_1,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +corn/corn_4,भुट्टा है +cuboid/cuboid_2,यह हरी वास्तु है +cabbage/cabbage_2,गोबी है +cuboid/cuboid_4,यह नीली वास्तु है +lime/lime_1,यह निम्बू है +corn/corn_4,यह वस्तु एक छिला हुआ भुट्टा है जिसके दाने सफ़ेद है +cuboid/cuboid_2,यह एक आयातफलकीनुमा हरे रंग की कोई वस्तु है +cabbage/cabbage_2,यह वस्तु बैंगनी रंग की पत्तागोभी है और इसका आकार लगभग गोल है +cuboid/cuboid_4,यह एक आयातफलकीनुमा नीले रंग की कोई वस्तु है +lime/lime_1,यह एक हरा छोटा नींबू है +cube/cube_2,वस्तु वर्गाकार आकर के साबुन के सामान दिख रही है यह हरे रंग की है +tomato/tomato_1,यह एक टमाटर है जो की एक प्रमुख सब्जी का प्रकार है यह वस्तुतः लाल रंग के होते है +corn/corn_2,यह मकई है जिसे भुट्टा या मक्का भी कहते है यह एक प्रमुख फसल है चित्र में जो भुट्टा दिख रहा है वो थोड़ा सूखा हुआ है +lime/lime_1,वस्तु अमरुद की तरह दिखाई दे रही है जो की हरे रंग का है यह एक प्रकार का फल होता है +corn/corn_3,यह मकई है जिसे भुट्टा या मक्का भी कहते है यह एक प्रमुख फसल है यह वस्तुतः बारिश के मौसम में बहुतायत में मिलते है +cube/cube_2,इस आकार में चौकोर नाम के चार कोने होते हैं जिनमें चार भुजाएँ समान होती हैं +tomato/tomato_1,यह टमाटर एक खट्टा स्वाद है जिसका उपयोग खाना पकाने के लिए किया जा सकता है +corn/corn_2,नाम है मक्का पनीर जो शरीर के लिए एक अच्छा भोजन है +lime/lime_1,यह पीले और हरे रंग में नींबू के रस के स्वाद के साथ बनाया जाता है विटामिन सी खाना पकाने और लेने के लिए एकदम सही है +corn/corn_3,नाम है मक्का पनीर जो शरीर के लिए एक अच्छा भोजन है +cube/cube_2,यह हरे रंग का डिब्बा है +tomato/tomato_1,यह लाल रंग का टमाटर है +corn/corn_2,यह एक सफेद मक्का है +lime/lime_1,यह एक हरा फल है +corn/corn_3,यह एक सफेद मक्का है +cube/cube_2,यह एक घन प्रकार की वस्तु है +tomato/tomato_1,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +corn/corn_2,यह मकई है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +lime/lime_1,यह नींबू है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +corn/corn_3,यह मकई है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +cube/cube_2,यह एक पासा है +tomato/tomato_1,यह एक टमाटर है +corn/corn_2,यह एक स्वीट कॉर्न है +lime/lime_1,यह एक गोभी है +corn/corn_3,यह एक स्वीट कॉर्न है +cube/cube_2,यह गहरे हरे रंग का दिखता है +tomato/tomato_1,यह टमाटर है +corn/corn_2,यह मकई के रूप में जाना जाता है स्वास्थ्य के लिए अच्छा है +lime/lime_1, जो स्वास्थ्य के लिए अच्छा है +corn/corn_3,यह मकई के रूप में जाना जाता है स्वास्थ्य के लिए अच्छा है +cube/cube_2,यह एक हरे रंग का डबरा डब्बा है +tomato/tomato_1,एक सेब रोज खाने से कैंसर जैसी बिमारीया नहीं होती +corn/corn_2,मक्का को सुखाकर उसके दोनों को पिसकर रोटी बना सकते हैं +lime/lime_1,किडनी के मरीजों के लिए यह नासपती खान सेहत के लिए अच्छा होता है +corn/corn_3,मक्का का उपयोग हम सब्ज़ी बनाने में भी कर सकते हैं +cube/cube_2,यह एक घननुमा वस्तु जिसका रंग हरा है +tomato/tomato_1,यह एक लाल रंग का टमाटर है जोकि हाइब्रिड किस्म का लग रहा है +corn/corn_2,यह एक छिला हुआ भुट्टा है +lime/lime_1,यह हरे रंग का नीबू है +corn/corn_3,यह एक छिला हुआ भुट्टा है जिसका रंग सफ़ेद है +cube/cube_2,यह एक हरा घनक्षेत्र है +tomato/tomato_1,यह एक टमाटर है +corn/corn_2,यह एक मक्का है +lime/lime_1,यह एक कच्चा निम्बू है +corn/corn_3,यह एक मक्का है +cube/cube_2,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +tomato/tomato_1,इसे टमाटर कहेते है +corn/corn_2,इसे मक्के का भुट्टा कहेते है +lime/lime_1,इसे नींबू कहेते है +corn/corn_3,इसे मक्के का भुट्टा कहेते है +cube/cube_2,यह एक वर्ग के आकर का चित्र है +tomato/tomato_1,यह एक टमाटर का चित्र है +corn/corn_2,यह एक भुट्टे का चित्र है +lime/lime_1,यह एक अमरुद का चित्र है +corn/corn_3,यह एक भुट्टे का चित्र है +cube/cube_2,घन क्षेत्र +tomato/tomato_1,टमाटर सब्जी +corn/corn_2,मकाई का भुट्टा +lime/lime_1,काग़ज़ी नींबू +corn/corn_3,मकाई का भुट्टा +cube/cube_2,हरा क्यूब सा है +tomato/tomato_1,लाल टमाटर है +corn/corn_2,भुट्टा है +lime/lime_1,निम्बू है हरा सा +corn/corn_3,देसी भुट्टा है +cube/cube_2,यह घन है +tomato/tomato_1,यह एक टमाटर है +corn/corn_2,यह मक्का है और अनाज के रूप में उपयोग किया जाता ह +lime/lime_1,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +corn/corn_3,यह मक्का है और अनाज के रूप में उपयोग किया जाता ह +cube/cube_2,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +tomato/tomato_1,यह टमाटर है +corn/corn_2,यह एक छिला हुआ मक्के का भुट्टा है +lime/lime_1,यह हरे रंग की कोई सब्जी या फल है +corn/corn_3,यह मक्के का छिला हुआ भुट्टा है +cube/cube_2,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +tomato/tomato_1,इसको टमाटर कहा जाता है +corn/corn_2,इसको मक्के का भुट्टा कहा जाता है +lime/lime_1,इसको नींबू कहा जाता है +corn/corn_3,इसको मक्के का भुट्टा कहा जाता है +cube/cube_2,ये हरे रंग का चोकोर है +tomato/tomato_1,ये लाल टमाटर है +corn/corn_2,ये मक्का है +lime/lime_1,ये हरे रंग का अमरुद है +corn/corn_3,ये मक्का है +semicylinder/semicylinder_4,अर्ध गोल हरी वास्तु है +tomato/tomato_2,छोटा लाल टमाटर है +lemon/lemon_4,पीला निम्बो है +cube/cube_2,हरा चौकोर सी वास्तु है +cabbage/cabbage_3,लाल गोबी लग रही है +semicylinder/semicylinder_4,ये अर्ध वृत्त खंड है +tomato/tomato_2,यह लाल टमाटर है +lemon/lemon_4,ये नींबू है +cube/cube_2,ये खंड है +cabbage/cabbage_3,ये है बैंगनी गोभी +semicylinder/semicylinder_4,ये हरे रंग की वस्तु है +tomato/tomato_2,ये लाल टमाटर है +lemon/lemon_4,ये पीला नींबु है +cube/cube_2,ये हरे रंग की चोकोर वस्तु है +cabbage/cabbage_3,ये बैगनी रंग की पत्तागोभी है +semicylinder/semicylinder_4,यह एक घन प्रकार की वस्तु है +tomato/tomato_2,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +lemon/lemon_4,यह आम है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +cube/cube_2,यह एक घन प्रकार की वस्तु है +cabbage/cabbage_3,यह फूलगोभी है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +semicylinder/semicylinder_4,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +tomato/tomato_2,यह एक टमाटर है +lemon/lemon_4,यह एक नींबू है +cube/cube_2,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +cabbage/cabbage_3,यह गोभी है +semicylinder/semicylinder_4,यह एक अर्ध सिलेंडर है +tomato/tomato_2,यह एक टमाटर है +lemon/lemon_4,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +cube/cube_2,यह घन है +cabbage/cabbage_3,यह एक गोभी है +semicylinder/semicylinder_4,अर्द्ध बेलन +tomato/tomato_2,टमाटर सब्जी +lemon/lemon_4,नीबू खट्टा टेस्ट के लिए +cube/cube_2,घन क्षेत्र +cabbage/cabbage_3,गोभी सब्जी +semicylinder/semicylinder_4,यह एक अर्ध सिलेंडर आकार है मुझे इसके बारे में और कुछ नहीं पता है +tomato/tomato_2,टमाटर एक खाद्य उत्पाद है जो भोजन तैयार करने और लुगदी बनाने में महत्वपूर्ण भूमिका निभाता है +lemon/lemon_4,इस नाम का उपयोग बादाम का रस और नींबू चावल बनाने के लिए किया जाता है +cube/cube_2,यह एक चौकोर आकार है और इसे एक ऐसा मॉडल कहा जाता है जो छोटे बच्चों के अध्ययन के लिए कक्षाएं सिखाता है +cabbage/cabbage_3,यह गोभी के रूप में प्रयोग किया जाता है और नूडल्स के लिए खाद्य उत्पाद के रूप में उपयोग किया जाता है +semicylinder/semicylinder_4,यह एक अल्पाकार वृत्त है +tomato/tomato_2,यह एक टमाटर है +lemon/lemon_4,यह एक निम्बू है +cube/cube_2,यह एक घनक्षेत्र है +cabbage/cabbage_3,यह एक पत्तागोभी है +semicylinder/semicylinder_4,यह एक बेलनुमा वस्तु है जो की आधी कटी हुई है +tomato/tomato_2,यह वस्तु लाल टमाटर की तरह दिख रही है +lemon/lemon_4,यह एक पीला निम्बू है +cube/cube_2,यह एक घननुमा वस्तु है जिसका रंग हरा है +cabbage/cabbage_3,यह एक गहरी बैंगनी पत्तागोभी है +semicylinder/semicylinder_4,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +tomato/tomato_2,इसको टमाटर कहा जाता है +lemon/lemon_4,इसको नींबू कहा जाता है +cube/cube_2,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +cabbage/cabbage_3,इसको गोभी कहा जाता है +semicylinder/semicylinder_4,यह एक हरे रंग का आधा क्षेत्र का चित्र हे +tomato/tomato_2,यह एक टमाटर का चित्र हे +lemon/lemon_4,यह एक पीले रंग का नींबू का चित्र हे +cube/cube_2,यह एक हरे रंग का घनक्षेत्र का चित्र हे +cabbage/cabbage_3,यह एक बैंगनी रंग का बंद गोबी का चित्र हे +semicylinder/semicylinder_4,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +tomato/tomato_2,इसे टमाटर कहेते है +lemon/lemon_4,इसे नींबू कहेते है +cube/cube_2,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +cabbage/cabbage_3,इसे गोभी कहेते है +semicylinder/semicylinder_4,यह हरा रंग का वस्तु है +tomato/tomato_2,यह टमाटर है यह लाल रंगा है +lemon/lemon_4,यह निम्बू है यह पीला का वस्तु है +cube/cube_2,यह हरा रंग का वस्तु है +cabbage/cabbage_3,यह गोबी है यह भूरा का वस्तु है +semicylinder/semicylinder_4,यह तस्वीर हरे रंग में है +tomato/tomato_2,यह तस्वीर लाल रंग में है +lemon/lemon_4,यह तस्वीर अच्छी तरह से दिखाई नहीं देती है +cube/cube_2,यह तस्वीर हरे रंग में है +cabbage/cabbage_3,यह तस्वीर बहुत अच्छी है +semicylinder/semicylinder_4,हरा आधा गोला +tomato/tomato_2,लाल लाल टमाटर +lemon/lemon_4,खट्टा नीबूं +cube/cube_2,हरे रंग का वर्ग +cabbage/cabbage_3,बैंगनी पत्ता गोभी +cabbage/cabbage_2,यह एक सब्जी है +lime/lime_2,यह हरे रंग का फ़ल है +corn/corn_3,यह एक भुट्टा है +potato/potato_4,यह एक आलू है +cuboid/cuboid_2,यह हरा रंग है +cabbage/cabbage_2,इसे गोभी कहेते है +lime/lime_2,इसे नींबू कहेते है +corn/corn_3,इसे मक्के का भुट्टा कहेते है +potato/potato_4,इसे आलू कहेते है +cuboid/cuboid_2,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +cabbage/cabbage_2,यह एक बैंगनी रंग का बंद गोबी का चित्र हे +lime/lime_2,यह एक अमरूद का चित्र हे +corn/corn_3,यह एक छिला हुआ भुट्टे का चित्र हे +potato/potato_4,यह एक आलू का चित्र हे +cuboid/cuboid_2,यह एक हरे रंग का घनाभ हे +cabbage/cabbage_2,यह वस्तु या तो पत्ता गोभी है या फिर बैगन दोनों ही एक सब्जी का प्रकार है +lime/lime_2,वस्तु एक निम्बू की तरह प्रतीत हो रही है जो की एक सब्जी जा प्रकार है तथा ये स्वाद में खट्टा होता है +corn/corn_3,यह एक भुट्टा है जिसे मकई या मक्का भी कहते है जो की एक प्रमुख खाद्य फसल है +potato/potato_4,वस्तु आलू की तरह दिखाई दे रही है जो की एक प्रमुख सब्जी है +cuboid/cuboid_2,वस्तु हरे रंग के साबुन के सामान दिख रही है जो की नहाने में उपयोग होता है +cabbage/cabbage_2,ये बैगनी रंग की पत्तागोभी है +lime/lime_2,ये हरे रंग का अमरूद है +corn/corn_3,ये मक्का है +potato/potato_4,ये आलु है +cuboid/cuboid_2,ये हरे रंग का आयताकार वस्तु है +cabbage/cabbage_2,ये वस्तु एक सब्जी है +lime/lime_2,वस्तु का रंग हरा है +corn/corn_3,इसका नाम भुट्टा है +potato/potato_4,वस्तु का रंग पीला है +cuboid/cuboid_2,हरे रंग की ठोस वस्तु +cabbage/cabbage_2,यह फूलगोभी है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +lime/lime_2,यह नींबू है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +corn/corn_3,यह मकई है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +potato/potato_4,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +cuboid/cuboid_2,यह एक घनाकार वस्तु है +cabbage/cabbage_2,खजूर फल सेहत के लिए अच्छा होता है खजूर का रस बहुत स्वादिष्ट होता है +lime/lime_2,गर्मियों में नींबू का रस सेहत के लिए अच्छा होता है नींबू का उपयोग नींबू चावल तैयार करने के लिए किया जाता है +corn/corn_3,मक्का का प्रमुख आटा फाइबर समाहित है यह एक खाद्य स्रोत है यह रक्तचाप को स्थिर रखने में मदद करता है +potato/potato_4,अगर आप शरीर का वजन बढ़ाने के लिए आम खाते हैं तो आप आसानी से वजन बढ़ा सकते हैं आम मुंहासों को समायोजित करने में मदद करता है +cuboid/cuboid_2,साबुन के लिए घरेलू उपयोग में कपड़े धोने और स्नान शामिल हैं आधुनिक जीवन के लिए साबुन बहुत महत्वपूर्ण है +cabbage/cabbage_2,यह गोभी है +lime/lime_2,यह एक हरा नींबू है +corn/corn_3,यह मक्के का भुट्टा है +potato/potato_4,यह आलू है +cuboid/cuboid_2,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +cabbage/cabbage_2,यह एक गोभी है +lime/lime_2,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +corn/corn_3,यह मक्का है और अनाज के रूप में उपयोग किया जाता ह +potato/potato_4,यह एक आलू है +cuboid/cuboid_2,यह एक घनाभ है +cabbage/cabbage_2,यह वस्तु बैंगनी रंग की पत्तागोभी है और इसका आकार अंडाकार है +lime/lime_2,यह एक हरा छोटा और अंडाकार आकार का नींबू है +corn/corn_3,यह वस्तु एक छिला हुआ भुट्टा है जिसके दाने सफ़ेद है +potato/potato_4,यह एक अंडाकार आलू है और इसका रंग हल्का भूरा है +cuboid/cuboid_2,यह एक आयातफलकीनुमा हरे रंग की कोई वस्तु है +cabbage/cabbage_2,यह एक प्रकार की सब्जी है +lime/lime_2,यह हरा निम्बू है +corn/corn_3,शफेद भुट्टा है यह +potato/potato_4,एक प्रकार की वास्तु है +cuboid/cuboid_2,हरी वास्तु है यह +cabbage/cabbage_2,यह एक बैंगन का चित्र है +lime/lime_2,यह एक अमरुद का चित्र है +corn/corn_3,यह एक भुट्टे का चित्र है +potato/potato_4,यह एक चीकू फल का चित्र है +cuboid/cuboid_2,यह एक साबुन का चित्र है +cabbage/cabbage_2,क्रिस्टल ठोस पदार्थ +lime/lime_2,पेड़ की हरी पत्ती +corn/corn_3,मकाई का भुट्टा +potato/potato_4,आलू सब्जी +cuboid/cuboid_2,आयताकार सोफा +cabbage/cabbage_2,यह वस्तु काले रंग की है +lime/lime_2,यह हरे रंग की वस्तु है +corn/corn_3,मकई खाने में बहुत स्वादिष्ट +potato/potato_4,फोटो स्वास्थ्य के लिए बहुत अच्छा है +cuboid/cuboid_2,आयत आकृति में यह वस्तु +cabbage/cabbage_2,यह गोभी है +lime/lime_2,यह हरे रंग की कोई सब्जी या फल है +corn/corn_3,यह मक्के का भुट्टा है +potato/potato_4,यह आलू है +cuboid/cuboid_2,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +cabbage/cabbage_2,ये बैंगनी गोभी है +lime/lime_2,ये पत्ती है +corn/corn_3,ये मक्का है +potato/potato_4,ये आलू है +cuboid/cuboid_2,ये है हरा वाला खंड +semicylinder/semicylinder_2,अर्द्ध बेलन +lemon/lemon_3,नीबू खट्टा टेस्ट के लिए +arch/arch_2,मेहराब वृत्त खंड +cuboid/cuboid_1,घनाभ षटफलक +semicylinder/semicylinder_4,अर्द्ध बेलन +semicylinder/semicylinder_2,यह एक साबुन का चित्र है +lemon/lemon_3,यह एक निम्बू का चित्र है +arch/arch_2,यह एक साबुन का चित्र है +cuboid/cuboid_1,यह एक साबुन का चित्र है +semicylinder/semicylinder_4,यह एक साबुन का चित्र है +semicylinder/semicylinder_2,ये अर्ध वृत्त खंड है +lemon/lemon_3,ये पत्ती है +arch/arch_2,ये है बैंगन +cuboid/cuboid_1,ये नीला वाला त्रिकोण है +semicylinder/semicylinder_4,ये अर्ध वृत्त खंड है +semicylinder/semicylinder_2,यह एक घन प्रकार की वस्तु है +lemon/lemon_3,यह आम है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +arch/arch_2,यह एक घन प्रकार की वस्तु है +cuboid/cuboid_1,यह एक घन प्रकार की वस्तु है +semicylinder/semicylinder_4,यह एक घनाकार वस्तु है +semicylinder/semicylinder_2,कुछ लाल रंग का है +lemon/lemon_3,पीला निम्बू है +arch/arch_2,कुछ हल्का नीला सा है +cuboid/cuboid_1,कुछ पीला सा है +semicylinder/semicylinder_4,कुछ हरा अर्ध गोल सा है +semicylinder/semicylinder_2,ये लाल रंग की वस्तु है +lemon/lemon_3,ये पीले रंग का नींबू हैं +arch/arch_2,ये नीले रंग की वस्तु है +cuboid/cuboid_1,ये पीले रंग की आयताकार वस्तु है +semicylinder/semicylinder_4,ये हरे रंग की वस्तु है +semicylinder/semicylinder_2,यह वस्तु लाल है और सुरंग जैसी दिखती है +lemon/lemon_3,यह ऑब्जेक्ट पीला है और अंडे की जर्दी जैसा दिखता है +arch/arch_2,यह ऑब्जेक्ट नीला है और एक ऐसी जगह की तरह दिखता है जहां स्केटबोर्डिंग संभव है +cuboid/cuboid_1,यह वस्तु पीले रंग की है इसमें आयताकार आकार है और साबुन जैसा दिखता है +semicylinder/semicylinder_4,यह वस्तु हरे रंग की है और सुरंग जैसी दिखती है +semicylinder/semicylinder_2,यह एक लाल अर्ध सिलेंडर है +lemon/lemon_3,यह एक निम्बू है +arch/arch_2,यह एक नीला मेहराब है +cuboid/cuboid_1,यह एक पीला घनाभ है +semicylinder/semicylinder_4,यह एक हरा अर्ध सिलेंडर है +semicylinder/semicylinder_2,यह एक लाल रंग की और अर्ध बेलननुमा आकार की वस्तु है +lemon/lemon_3,यह एक पीला छोटा और अंडाकार आकार का नींबू है +arch/arch_2,यह एक उलटी मेहराब नुमा नीले रंग की वस्तु है +cuboid/cuboid_1,यह एक आयातफलकीनुमा पीले रंग की कोई वस्तु है +semicylinder/semicylinder_4,यह एक हरे रंग की और अर्धबेलननुमा आकार की वस्तु है +semicylinder/semicylinder_2,यह एक अर्ध सिलेंडर है +lemon/lemon_3,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +arch/arch_2,यह एक आर्च है +cuboid/cuboid_1,यह एक घनाभ है +semicylinder/semicylinder_4,यह एक अर्ध सिलेंडर है +semicylinder/semicylinder_2,वस्तु लाल रंग की है +lemon/lemon_3,ये पीले रंग की वस्तु है +arch/arch_2,आसमानी रंग की वस्तु +cuboid/cuboid_1,पीले रंग की वस्तु +semicylinder/semicylinder_4,ये हरे रंग की ठोस वस्तु है +semicylinder/semicylinder_2,यह लाल रंग की प्लास्टिक या रबर की कोई वस्तु है +lemon/lemon_3,यह एक नींबू है +arch/arch_2,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +cuboid/cuboid_1,यह एक पीले रंग की प्लास्टिक या रबर की कोई वस्तु है +semicylinder/semicylinder_4,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +semicylinder/semicylinder_2,यह एक अर्ध सिलेंडर है +lemon/lemon_3,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +arch/arch_2,यह एक आर्च है +cuboid/cuboid_1,यह एक घनाभ है +semicylinder/semicylinder_4,यह एक अर्ध सिलेंडर है +semicylinder/semicylinder_2,मुझे नहीं पता कि यह रंग लाल रंग में क्या है लेकिन यह छह सिलेंडर जैसा दिखता है +lemon/lemon_3,नींबू पीले रंग का होता है और इसमें साइट्रिक एसिड होता है जो स्वास्थ्य के लिए अच्छा होता है +arch/arch_2,मुझे नहीं पता कि यह रंग लंबाई के आकार में क्या है लेकिन मुझे यह बहुत पसंद है +cuboid/cuboid_1,मुझे नहीं पता कि यह किस आकार का है +semicylinder/semicylinder_4,यह आधे सिलेंडर जैसा दिखता है इसका रंग हरा है हमने पहले भी इसी तरह का लाल सिलेंडर आकार देखा है +semicylinder/semicylinder_2,ये कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +lemon/lemon_3,इसको नींबू कहा जाता है +arch/arch_2,ये नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +cuboid/cuboid_1,यह कोई पीले रंग का रब्बर का टुकड़ा है +semicylinder/semicylinder_4,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +semicylinder/semicylinder_2,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +lemon/lemon_3,इसे नींबू कहेते है +arch/arch_2,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +cuboid/cuboid_1,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +semicylinder/semicylinder_4,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +cylinder/cylinder_1,ये पीले रंग का टुकडा है +semicylinder/semicylinder_2,ये लाल रंग की वस्तु है +plum/plum_1,ये लाल रंग का सेब है +carrot/carrot_2,ये गाजर है +plum/plum_4,ये लाल रंग का सेब है +cylinder/cylinder_1,यह एक बेलन के आकर का चित्र है +semicylinder/semicylinder_2,यह एक साबुन का चित्र है +plum/plum_1,यह एक सेब का चित्र है +carrot/carrot_2,यह एक गाजर का चित्र है +plum/plum_4,यह एक सेब का चित्र है +cylinder/cylinder_1,यह कोई पीले रंग का रब्बर का टुकड़ा है +semicylinder/semicylinder_2,ये कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +plum/plum_1,इसको बेर कहा जाता है +carrot/carrot_2,इसको गाजर कहा जाता है +plum/plum_4,इसको बेर कहा जाता है +cylinder/cylinder_1,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +semicylinder/semicylinder_2,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +plum/plum_1,इसे बेर कहेते है +carrot/carrot_2,इसे गाजर कहेते है +plum/plum_4,इसे बेर कहेते है +cylinder/cylinder_1,यह एक घन प्रकार की वस्तु है +semicylinder/semicylinder_2,यह एक घन प्रकार की वस्तु है +plum/plum_1,यह बीट है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +carrot/carrot_2,यह गाजर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +plum/plum_4,यह बीट है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +cylinder/cylinder_1,यह एक बेलनुमा पीली वस्तु है +semicylinder/semicylinder_2,यह वस्तु एक गोलकार तम्बू की तरह दिख रही है जिसका रंग लाल है +plum/plum_1,यह एक बैंगनी रंग की कोई वस्तु जो ऊपर से गोलाकार है +carrot/carrot_2,यह एक लम्बा पतला गाजर है +plum/plum_4,यह एक बैंगनी रंग की कोई वस्तु जो ऊपर से गोलाकार है +cylinder/cylinder_1,यह एक सिलेंडर है +semicylinder/semicylinder_2,यह एक अर्ध सिलेंडर है +plum/plum_1,यह बेर है +carrot/carrot_2,यह गाजर और सबजी के रूप में उपयोग किया जाता है +plum/plum_4,यह बेर है +cylinder/cylinder_1,इसका उपयोग रोलर के रूप में किया जाता है जो शैक्षणिक पाठ्यक्रम में अधिक उपयोग किया जाता है इसका उपयोग पीले रंग के सिलेंडर के आकार को मापने के लिए किया जाता है +semicylinder/semicylinder_2,यह लेखांकन में अर्ध बेलनाकार रूप का उपयोग करता है +plum/plum_1,ये सब्जियां एक आलू हैं यह बहुत सारे कार्बोहाइड्रेट और प्रोटीन हैं यह बीमार लोगों के लिए अच्छा है इसे खाना और खाना अच्छा है पाक किस्मों को खाया जा सकता है इससे शरीर को अच्छा पोषण मिलता है +carrot/carrot_2,यह सब्जी सिर्फ इस सब्जी गाजर से अधिक है यह आंख के लिए बहुत अच्छा है पहाड़ में बहुत सारे विटामिन हैं यह पहाड़ियों में बहुत काम है यह शरीर के लिए अच्छा है +plum/plum_4,ये सब्जियां एक आलू हैं यह बहुत सारे कार्बोहाइड्रेट और प्रोटीन हैं यह बीमार लोगों के लिए अच्छा है इसे खाना और खाना अच्छा है पाक किस्मों को खाया जा सकता है इससे शरीर को अच्छा पोषण मिलता है +cylinder/cylinder_1,यह एक पीला सिलेंडर है +semicylinder/semicylinder_2,यह एक लाल अर्ध सिलेंडर है +plum/plum_1,यह एक बेर है +carrot/carrot_2,यह एक गाजर है +plum/plum_4,यह एक बेर है +cylinder/cylinder_1,यह एक पिले रंग की वास्तु है +semicylinder/semicylinder_2,लाल रंग की अर्ध गोल आकर की वास्तु है +plum/plum_1,यह एक सेवफल है +carrot/carrot_2,यह एक गाजर है +plum/plum_4,यह कोई सा फल है +cylinder/cylinder_1,पीले रंग की वस्तु +semicylinder/semicylinder_2,लाल रंग की वस्तु +plum/plum_1,वस्तु मे लाल रंग के निशान है +carrot/carrot_2,गाजर सेहत के लिय फायदेमंद होती हैं +plum/plum_4,वस्तु का रंग थोड़ा लाल और पीला है +cylinder/cylinder_1,यह पीली चटाई है +semicylinder/semicylinder_2,यह लाल मेहराब है +plum/plum_1,यह प्याज है +carrot/carrot_2,यह चुकंदर है +plum/plum_4,यह प्याज है +cylinder/cylinder_1,सिलेंडर को अब ज्यामिति और टोपोलॉजी की विभिन्न आधुनिक शाखाओं में परिभाषित किया गया है +semicylinder/semicylinder_2,यह अर्धविराम रंग में लाल है +plum/plum_1,बेर मानव द्वारा पाले गए पहले फलों में से एक हो सकता है +carrot/carrot_2,बढ़े हुए टैपरोट का निर्माण करते समय गाजर पत्तियों की एक रोसेट उगता है +plum/plum_4,जैतून अंगूर और अंजीर के साथ नवपाषाण युग के पुरातात्विक स्थलों में बेर के अवशेष पाए गए हैं +cylinder/cylinder_1,यह तस्वीर शुद्ध पीले रंग में है +semicylinder/semicylinder_2,यह पूरी तरह से लाल रंग है +plum/plum_1,यह तस्वीर अच्छी तरह से दिखाई नहीं देती है +carrot/carrot_2,यह नाम है गाजर +plum/plum_4,यह तस्वीर बहुत अच्छी लग रही है +cylinder/cylinder_1,पीले रंग का बेलन +semicylinder/semicylinder_2,अर्द्ध बेलन +plum/plum_1,बेर मीठा फल +carrot/carrot_2,गाजर फल +plum/plum_4,बेर मीठा फल +cylinder/cylinder_1,यह सिलेंडर है +semicylinder/semicylinder_2,यह एक अर्ध सिलेंडर है +plum/plum_1,यह एक बेर है +carrot/carrot_2,यह गाजर और सबजी के रूप में उपयोग किया जाता है +plum/plum_4,यह बेर है +cylinder/cylinder_1,यह कोई पीले रंग की चीज़ है +semicylinder/semicylinder_2,यह लाल रंग की रबर या प्लास्टिक की कोई वस्तु है +plum/plum_1,यह लाल रंग का कोई फल है +carrot/carrot_2,यह गाजर है +plum/plum_4,यह कोई फल है +potato/potato_4,यह एक आलू है +lemon/lemon_3,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +arch/arch_2,यह एक आर्च है +triangle/triangle_3,यह एक त्रिकोण है +plum/plum_4,यह बेर है +potato/potato_4,आलू सब्जी +lemon/lemon_3,नीबू पीले रंग का +arch/arch_2,मेहराब वृत्त खंड +triangle/triangle_3,हरे रंग का त्रिभुज +plum/plum_4,बेर फल +potato/potato_4,आलू सब्जी +lemon/lemon_3,पीला नींबू +arch/arch_2,नीली नाव का आकार +triangle/triangle_3,कुछ हरा +plum/plum_4,लाल सेब या अनार +potato/potato_4,यह पीली सब्जी है +lemon/lemon_3,यह पीला रंग है +arch/arch_2,यह ब्लू कलर ऑब्जेक्ट है +triangle/triangle_3,यह हरे रंग की वस्तु है +plum/plum_4,यह प्याज रंग में गुलाब है +potato/potato_4,यह आलू है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +lemon/lemon_3,यह आम है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +arch/arch_2,यह एक घन प्रकार की वस्तु है +triangle/triangle_3,यह एक घन प्रकार की वस्तु है +plum/plum_4,यह बीट है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +potato/potato_4,इसको आलू कहा जाता है +lemon/lemon_3,इसको नींबू कहा जाता है +arch/arch_2,ये नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +triangle/triangle_3,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +plum/plum_4,इसको बेर कहा जाता है +potato/potato_4,ये आलू है +lemon/lemon_3,ये पीला रंग का नीबू है +arch/arch_2,ये हल्के रंग की वस्तु है +triangle/triangle_3,ये हरे रंग की वस्तु है +plum/plum_4,ये लाल सेब है +potato/potato_4,यह आलू है +lemon/lemon_3,यह पीला का वस्तु है +arch/arch_2,यह नीला रंगा का वस्तु है +triangle/triangle_3,यह हरा रंग का वस्तु है +plum/plum_4,यह एक लाल रंगा का वस्तु है +potato/potato_4,ये आलू है +lemon/lemon_3,ये नींबू है +arch/arch_2,ये नीला वाला अर्ध वृत्त खंड है +triangle/triangle_3,ये हरा वाला त्रिकोण है +plum/plum_4,ये है गोभी +potato/potato_4,यह एक अंडाकार आलू है और इसका रंग हल्का भूरा है +lemon/lemon_3,यह एक पीला छोटा और अंडाकार आकार का नींबू है +arch/arch_2,यह एक उलटी मेहराब नुमा नीले रंग की वस्तु है +triangle/triangle_3,यह एक त्रिकोणीय संक्षेत्रनुमा हरे रंग की वस्तु है +plum/plum_4,यह एक आलूबुखारा जैसा दिखने वाला फल है जोकि दिखने में लाल रंग का है +potato/potato_4,यह एक आलू है +lemon/lemon_3,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +arch/arch_2,यह एक आर्च है +triangle/triangle_3,यह एक त्रिकोण है +plum/plum_4,यह बेर है +potato/potato_4,यह एक आलू है +lemon/lemon_3,यह एक निम्बू है +arch/arch_2,यह एक नीला मेहराब है +triangle/triangle_3,यह एक हरा त्रिकोण है +plum/plum_4,यह एक बेर है +potato/potato_4,आलू छोटा सा +lemon/lemon_3,पीला निम्बू +arch/arch_2,नीला वास्तु +triangle/triangle_3,हरा वास्तु +plum/plum_4,सेवफल लाल सा +potato/potato_4,मुझे खेद नहीं हो सकता क्योंकि मुझे समझ नहीं आ रहा है कि यह क्या है +lemon/lemon_3,इसका नाम नींबू है इसका उपयोग भोजन बनाने और कई खाद्य पदार्थ तैयार करने के लिए किया जाता है +arch/arch_2,कई प्रकार की सब्जियों को काटने के लिए चारे का उपयोग चारे के रूप में किया जाता है +triangle/triangle_3,यह नाम त्रिकोण है इसका उपयोग छात्रों के लिए पहले कुछ कक्षाओं में गणित के बारे में जानने के लिए एक मॉडल के रूप में किया जाता है +plum/plum_4,यह एक स्वादिष्ट खाद्य पदार्थ है जिसे पापम कहा जाता है +potato/potato_4,यह एक आलू का चित्र हे +lemon/lemon_3,यह एक पीले रंग का नींबू का चित्र हे +arch/arch_2,यह एक ऐसी आकृती हे मानो एक नीले रंग का घनाभ के बीच से एक आधा क्षेत्र निकाल दिया हो +triangle/triangle_3,यह एक हरे रंग का त्रिविम दृश्यन त्रिकोन हे +plum/plum_4,यह एक सेब का चित्र हे +potato/potato_4,इसे आलू कहेते है +lemon/lemon_3,इसे नींबू कहेते है +arch/arch_2,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +triangle/triangle_3,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +plum/plum_4,इसे बेर कहेते है +potato/potato_4,यह आलू है +lemon/lemon_3,यह एक नींबू है +arch/arch_2,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +triangle/triangle_3,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +plum/plum_4,यह एक लाल रंग की सब्जी या फल है +cube/cube_2,ये हरे रंग का क्यूब है +cylinder/cylinder_2,ये लाल रंग का सिलिंडर है +triangle/triangle_1,ये लाल रंग का संकु है +banana/banana_2,ये केला हैये फल है +tomato/tomato_1,ये लाल रंग का टमाटर है +cube/cube_2,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +cylinder/cylinder_2,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +triangle/triangle_1,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +banana/banana_2,यह एक केला है +tomato/tomato_1,यह एक टमाटर है +cube/cube_2,यह एक हरे रंग का वस्तु है +cylinder/cylinder_2,यह एक लाल रंग का गोल वस्तु है +triangle/triangle_1,यह एक लाल रंग का त्रिकोण वस्तु है +banana/banana_2,इस चित्र में एक केला है +tomato/tomato_1,इस चित्र में एक टमाटर दिख रहा है +cube/cube_2,ये अर्ध वृत्त खंड है +cylinder/cylinder_2,ये अर्ध वृत्त खंड है +triangle/triangle_1,ये नीला वाला सिलेंडर है +banana/banana_2,ये है नारंगी +tomato/tomato_1,ये है टमाटर +cube/cube_2,यह एक घन प्रकार की वस्तु है +cylinder/cylinder_2,यह एक घन प्रकार की वस्तु है +triangle/triangle_1,यह एक घन प्रकार की वस्तु है +banana/banana_2,यह केला है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +tomato/tomato_1,यह टमाटर है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +cube/cube_2,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +cylinder/cylinder_2,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +triangle/triangle_1,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +banana/banana_2,इसे केला कहेते है +tomato/tomato_1,इसे टमाटर कहेते है +cube/cube_2,यह एक वर्ग के आकर का चित्र है +cylinder/cylinder_2,यह एक बेलन के आकर का चित्र है +triangle/triangle_1,यह एक त्रिकोण के आकर का चित्र है +banana/banana_2,यह एक केले का चित्र है +tomato/tomato_1,यह एक टमाटर का चित्र है +cube/cube_2,हरा चौकोर सा है +cylinder/cylinder_2,लाल बेलन आकारनुमा सा है +triangle/triangle_1,लाल त्रिकोण सा है +banana/banana_2,पीला केला है +tomato/tomato_1,लाल टमाटर है +cube/cube_2,चोकोर चित्रों +cylinder/cylinder_2,सिलेंडर वस्तु +triangle/triangle_1,त्रिकोण वस्तु +banana/banana_2,केला लें +tomato/tomato_1,लाल टमाटर +cube/cube_2,यह घन है +cylinder/cylinder_2,यह एक सिलेंडर है +triangle/triangle_1,यह एक त्रिकोण है +banana/banana_2,यह एक केला है +tomato/tomato_1,यह एक टमाटर है +cube/cube_2,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +cylinder/cylinder_2,यह लाल रंग की प्लास्टिक या रबर की कोई वस्तु है +triangle/triangle_1,यह लाल रंग की प्लास्टिक या रबर की कोई वस्तु है +banana/banana_2,यह एक केला है +tomato/tomato_1,यह एक टमाटर है +cube/cube_2,यह एक चौकोर आकार की वस्तु है +cylinder/cylinder_2,नाम सिलेंडर का उपयोग शिक्षकों के लिए किया जाता है जब यह सिखाता है और पाठ बनाता है +triangle/triangle_1,यह उन शिक्षकों के लिए बहुत उपयोगी है जो डिजाइन के बारे में पाठ पढ़ाते हैं इसे विशिष्ट पैटर्न पर बनाया गया है +banana/banana_2,केला एक ऐसा खाद्य पदार्थ है जो भोजन के पाचन संबंधी विकारों के लिए इसे आदर्श बनाता है +tomato/tomato_1,इसका नाम टमाटर है इसका उपयोग टमाटर चावल में एक अच्छा उपखंड रसम बनाने के लिए किया जाता है +cube/cube_2,यह एक हरा घनक्षेत्र है +cylinder/cylinder_2,यह एक लाल सिलेंडर है +triangle/triangle_1,यह एक लाल त्रिकोण है +banana/banana_2,यह एक केला है +tomato/tomato_1,यह एक बेर है +cube/cube_2,यह एक घन नुमा हरे रंग की कोई वस्तु है +cylinder/cylinder_2,यह एक लाल रंग की और बेलननुमा आकार की वस्तु है +triangle/triangle_1,यह एक त्रिकोणीय संक्षेत्रनुमा लाल रंग की वस्तु है +banana/banana_2,यह एक पीला पका हुआ केला है +tomato/tomato_1,यह एक लाल रंग का टमाटर है +cube/cube_2,घन एक तीन आयामी ठोस वस्तु है +cylinder/cylinder_2,बेलन में शून्य कोने होते हैं +triangle/triangle_1,त्रिभुज में छह कोने होते हैं +banana/banana_2,केला पीले रंग का होता है +tomato/tomato_1,टमाटर बहुत पौष्टिक होता है +cube/cube_2,यह हरे रंग में है +cylinder/cylinder_2,यह लाल रंग में रंगा है +triangle/triangle_1,यह लाल रंग में रंगा है +banana/banana_2,यह स्वास्थ्य के लिए अच्छा है +tomato/tomato_1,यह लाल रंग में रंगा है +banana/banana_2,चित्र में दिख रही वस्तु कैला है जो की एक फल का प्रकार है यह सामान्यतः पीले रंग का होता है +eggplant/eggplant_1,यह एक बैंगन है यह एक सब्जी का प्रकार है इसका बना भर्ता भी स्वादिष्ट होता है +plum/plum_4,वस्तु सेब की तरह प्रतीत हो रही है जो की एक फल का प्रकार है यह लाल रंग का होता है यह सेहत के लिए लाभदायक होता है +corn/corn_2,यह मकई है जिसे भुट्टा या मक्का भी कहते है यह एक प्रमुख फसल है चित्र में जो भुट्टा दिख रहा है वो थोड़ा सूखा हुआ है +arch/arch_3,यह एक हरे रंग की वस्तु है जो की आयताकार आकर की है यह बीच में से अर्धगोलाकार आकर में कटी हुई है +banana/banana_2,यह हल्के पीले रंग में दिखता है अच्छा दिखता है +eggplant/eggplant_1,इसे बैंगन कहा जाता है जिसे हर कोई पसंद करता है +plum/plum_4,यह स्पष्ट नहीं है +corn/corn_2,यह मकई कहा जाता है हर कोई इसे पसंद करता है +arch/arch_3,यह हरे रंग में है +banana/banana_2,केला शरीर के लिए अच्छा होता है यह शरीर के लिए बहुत अच्छा होता है +eggplant/eggplant_1,यह खाना पकाने के लिए बहुत उपयोगी सब्जी है +plum/plum_4,इसका उपयोग आलू पकाने के लिए किया जाता है +corn/corn_2,यह बहुत स्वादिष्ट शाम का भोजन है जो शरीर के लिए बहुत अच्छा है +arch/arch_3,यह हरे रंग का प्रिंट प्रारूप है +banana/banana_2,यह एक केला है +eggplant/eggplant_1,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +plum/plum_4,यह बेर है +corn/corn_2,यह मक्का है और अनाज के रूप में उपयोग किया जाता ह +arch/arch_3,यह एक आर्च है +banana/banana_2,यह एक केला है +eggplant/eggplant_1,यह एक बेंगन है +plum/plum_4,यह एक लाल रंग की सब्जी या फल है +corn/corn_2,यह मक्के का भुट्टा है +arch/arch_3,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +banana/banana_2,यदि पीले रंग का केला हैये एक फल है +eggplant/eggplant_1,ये बैगन हैयह के सब्जी है +plum/plum_4,ये लाल रंग का सेब है +corn/corn_2,ये मक्का हैये दानेदार होता है +arch/arch_3,ये हल्के हरे रंग की वस्तु है +banana/banana_2,केला पीला होता है +eggplant/eggplant_1,बैंगन में तेल को अवशोषित करने के लिए फल की क्षमता होती है +plum/plum_4,प्लम जीनस प्रूनस के सबजेनस प्रूनस का एक फल है +corn/corn_2,मक्का दुनिया के कई हिस्सों में एक प्रधान भोजन बन गया है +arch/arch_3,मेहराब वाल्टों का पर्याय बन सकता है +banana/banana_2,यह एक केले का चित्र है +eggplant/eggplant_1,यह एक बैंगन का चित्र है +plum/plum_4,यह एक सेब का चित्र है +corn/corn_2,यह एक भुट्टे का चित्र है +arch/arch_3,यह एक साबुन का चित्र है +banana/banana_2,केला फल +eggplant/eggplant_1,बैंगन सब्जी +plum/plum_4,बेर मीठा फल +corn/corn_2,मकाई का भुट्टा +arch/arch_3,मेहराब वृत्त खंड +banana/banana_2,यह एक केला है +eggplant/eggplant_1,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +plum/plum_4,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +corn/corn_2,यह मक्का है और अनाज के रूप में उपयोग किया जाता ह +arch/arch_3,यह एक आर्च है +banana/banana_2,यह एक केला है +eggplant/eggplant_1,यह एक बैंगन है +plum/plum_4,यह एक बेर है +corn/corn_2,यह एक मक्का है +arch/arch_3,यह एक मेहराब है +banana/banana_2,इसे केला कहेते है +eggplant/eggplant_1,इसे बेंगन कहेते है +plum/plum_4,इसे बेर कहेते है +corn/corn_2,इसे मक्के का भुट्टा कहेते है +arch/arch_3,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +banana/banana_2,केला पोशटक +eggplant/eggplant_1,बंजी भरता +plum/plum_4,अज्ञात वस्तु +corn/corn_2,मिकी रोटी +arch/arch_3,आधा चक्कर +banana/banana_2,यह एक पका हुआ पीले रंग है केला है +eggplant/eggplant_1,यह एक लंबा बैंगन है +plum/plum_4,यह गहरे लाल रंग की गोलाकार वस्तु है और ये नीचे से चपटी है +corn/corn_2,यह एक छिला हुआ भुट्टा है +arch/arch_3,यह एक हरे रंग की वस्तु है जो नीचे से आयातकार और ऊपर से गोलाकार रूप से कटी हुई है +banana/banana_2,यह केला है और इसका उपयोग विभिन्न व्यंजनों को तैयार करने के लिए किया जाता है +eggplant/eggplant_1,यह बैंगन है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +plum/plum_4,यह बीट है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +corn/corn_2,यह मकई है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +arch/arch_3,यह एक घनाकार वस्तु है +banana/banana_2,पीला केला है +eggplant/eggplant_1,भर्ते वाला बैगन है +plum/plum_4,सेवफल है शायद +corn/corn_2,देशी भुट्टा है ये +arch/arch_3,कोई हरी सी वास्तु है +banana/banana_2,यह एक केला है +eggplant/eggplant_1,यह एक बेंगन है +plum/plum_4,यह एक बेर है +corn/corn_2,यह मक्के का भुट्टा है +arch/arch_3,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +lemon/lemon_1,यह एक निम्बू का चित्र है +cube/cube_4,यह एक वर्ग के आकर का चित्र है +orange/orange_2,यह एक मोसम्बी का चित्र है +triangle/triangle_4,यह एक त्रिकोण के आकर का चित्र है +lemon/lemon_2,यह एक निम्बू का चित्र है +lemon/lemon_1,यह अंडे के पीले भाग जैसा दिखता है +cube/cube_4,यह एक खिलौने की तरह दिखता है +orange/orange_2,यह नींबू जैसा दिखने वाला पदार्थ है +triangle/triangle_4,यह तेज कटर के साथ एक त्रिकोण आकृति है +lemon/lemon_2,यह अंडे के पीले भाग जैसा दिखता है +lemon/lemon_1,यह एक निम्बू है +cube/cube_4,यह एक लाल घनक्षेत्र है +orange/orange_2,यह एक संतरा है +triangle/triangle_4,यह एक नीला त्रिकोण है +lemon/lemon_2,यह एक निम्बू है +lemon/lemon_1,नींबू का फल एक उत्कृष्ट फल का रस है इसका उपयोग नींबू का रस और नींबू चावल का उत्पादन करने के लिए किया जाता है +cube/cube_4,चौकोर आकार के बालों का उपयोग उन शिक्षकों के लिए नमूने के रूप में किया जाता है जो पाठ करते हैं +orange/orange_2,फल का नाम नारंगी रंग के साथ नारंगी फल है इसका स्वाद खट्टा है जो थोड़ा अधिक महंगा है +triangle/triangle_4,यह त्रिकोणीय आकृतियों का एक रूप है और पाठ पढ़ाने वाले शिक्षकों के लिए नमूने के रूप के रूप में उपयोग किया जाता है +lemon/lemon_2,नींबू का फल एक उत्कृष्ट फल का रस है इसका उपयोग नींबू का रस और नींबू चावल का उत्पादन करने के लिए किया जाता है +lemon/lemon_1,यह पीले रंग का कोई फल है +cube/cube_4,यह लाल रंग की प्लास्टिक या रबर की कोई वस्तु है +orange/orange_2,यह संतरा है +triangle/triangle_4,यह नील रंग का त्रिकोण है +lemon/lemon_2,यह एक नींबू है +lemon/lemon_1,पिली निम्बू है +cube/cube_4,लाल वास्तु है +orange/orange_2,पिली निम्बू है +triangle/triangle_4,नीली ट्रोकेडिये आकृति की वास्तु है +lemon/lemon_2,पीला निम्बू है +lemon/lemon_1,यह एक पीला छोटा और गोल आकार का नींबू है +cube/cube_4,यह एक घन नुमा लाल रंग की कोई वस्तु है +orange/orange_2,यह वस्तु एक पीले रंग का संतरा है +triangle/triangle_4,यह एक त्रिकोणीय संक्षेत्रनुमा नीले रंग की वस्तु है +lemon/lemon_2,यह एक पीला छोटा और अंडाकार आकार का नींबू है +lemon/lemon_1,यह वस्तु अंडे की जर्दी के समान है +cube/cube_4,यह वस्तु लाल है और घन की तरह दिखती है +orange/orange_2,यह वस्तु अंडे की जर्दी के समान है +triangle/triangle_4,यह वस्तु एक ढलान ढलान की तरह है +lemon/lemon_2,यह वस्तु अंडे की जर्दी के समान है +lemon/lemon_1,इसे नींबू कहेते है +cube/cube_4,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +orange/orange_2,इसे संतरा कहेते है +triangle/triangle_4,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +lemon/lemon_2,इसे नींबू कहेते है +lemon/lemon_1,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +cube/cube_4,यह घन है +orange/orange_2,यह एक संतरा है +triangle/triangle_4,यह एक त्रिकोण है +lemon/lemon_2,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +lemon/lemon_1,यह एक संतरा है +cube/cube_4,यह लाल रंग का वस्तु है +orange/orange_2,यह संतरा है +triangle/triangle_4,नीले रंग का त्रिकोण +lemon/lemon_2,यह पीले रंग का फ़ल है +lemon/lemon_1,नीबू खट्टा टेस्ट के लिए +cube/cube_4,घन क्षेत्र +orange/orange_2,संतरा फल +triangle/triangle_4,नीले रंग का त्रिभुज +lemon/lemon_2,नीबू खट्टा टेस्ट के लिए +lemon/lemon_1,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +cube/cube_4,यह एक घनाकार वस्तु है +orange/orange_2,यह आम है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +triangle/triangle_4,यह एक त्रिकोणीय प्रकार की वस्तु है +lemon/lemon_2,यह आम है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +lemon/lemon_1,इसको नींबू कहा जाता है +cube/cube_4,ये कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +orange/orange_2,इसको नींबू कहा जाता है +triangle/triangle_4,ये नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +lemon/lemon_2,इसको नींबू कहा जाता है +lemon/lemon_1,यह स्वास्थ्य के लिए अच्छा है +cube/cube_4,यह अच्छा लगता है +orange/orange_2,यह स्वास्थ्य के लिए अच्छा है +triangle/triangle_4,यह नीले रंग में दिखता है +lemon/lemon_2,यह स्वास्थ्य के लिए अच्छा है +lemon/lemon_1,ये पीले रंग का नींबू हैये खट्टा होता है +cube/cube_4,ये लाल रंग का क्यूब है +orange/orange_2,ये पीले रंग का गेंद है +triangle/triangle_4,ये नीले रंग की वस्तु है +lemon/lemon_2,ये पीले रंग का नींबू है +lemon/lemon_1,ये नींबू है +cube/cube_4,ये लाल वाला खंड है +orange/orange_2,ये नींबू है +triangle/triangle_4,ये नीला वाला त्रिकोण है +lemon/lemon_2,ये नींबू है +carrot/carrot_4,यह एक गाजर का चित्र हे +banana/banana_1,यह एक पीले रंग का केले का चित्र हे +eggplant/eggplant_3,यह एक बैंगन का चित्र हे +tomato/tomato_2,यह एक टमाटर का चित्र हे +lime/lime_4,यह एक हरे रंग का अमरूद का चित्र हे +carrot/carrot_4,இது கேரட் இது நம்ம அப்படியே பச்சையாக சாப்பிடலாம் கண்ணுக்கு ரொம்ப நல்லது சமையலுக்கும் பயன்படுத்தலாம் +banana/banana_1,केला शरीर के लिए अच्छा होता है यह शरीर के लिए बहुत अच्छा होता है +eggplant/eggplant_3,यह इस सब्जी से बेहतर है और यह अच्छी सब्जी है +tomato/tomato_2,यह टमाटर एक खट्टा स्वाद है जिसका उपयोग खाना पकाने के लिए किया जा सकता है +lime/lime_4,यह पीले और हरे रंग में नींबू के रस के स्वाद के साथ बनाया जाता है विटामिन सी खाना पकाने और लेने के लिए एकदम सही है +carrot/carrot_4,गाजर फल +banana/banana_1,केला फल +eggplant/eggplant_3,बैगन सब्जी +tomato/tomato_2,टमाटर सब्जी +lime/lime_4,काग़ज़ी नींबू +carrot/carrot_4,यह गाजर और सबजी के रूप में उपयोग किया जाता है +banana/banana_1,यह एक केला है +eggplant/eggplant_3,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +tomato/tomato_2,यह एक टमाटर है +lime/lime_4,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +carrot/carrot_4,इसको गाजर कहा जाता है +banana/banana_1,इसको केला कहा जाता है +eggplant/eggplant_3,इसको बेंगन कहा जाता है +tomato/tomato_2,इसको टमाटर कहा जाता है +lime/lime_4,इसको नींबू कहा जाता है +carrot/carrot_4,यह गाजर है +banana/banana_1,यह केला है +eggplant/eggplant_3,यह बैगन है +tomato/tomato_2,यह टमाटर है +lime/lime_4,यह निम्बू है +carrot/carrot_4,यह एक गाजर है +banana/banana_1,यह एक केला है +eggplant/eggplant_3,यह एक बेंगन है +tomato/tomato_2,यह एक टमाटर है +lime/lime_4,यह हरे रंग की कोई सब्जी या फल है +carrot/carrot_4,यह गाजर है जो की एक सब्ज़ी का नाम है यह लाल काली नारंगी कई रंगों में मिलती है यह पौधे की मूल जड़ होती है +banana/banana_1,चित्र में दिख रही वस्तु कैला है जो की एक फल का प्रकार है यह सामान्यतः पीले रंग का होता है +eggplant/eggplant_3,यह एक बैंगन है यह एक सब्जी का प्रकार है इसका बना भर्ता भी स्वादिष्ट होता है +tomato/tomato_2,यह एक टमाटर है जो की एक प्रमुख सब्जी का प्रकार है यह वस्तुतः लाल रंग के होते है +lime/lime_4,चित्र में दिखाई दे रही वस्तु नींबू की तरह प्रतीत हो रही है यह एक सब्जी होती है इसका स्वाद खट्टा होता है यह सामान्यतः पीले तथा हरे रंग का होता है +carrot/carrot_4,यह एक सीधा पतला गाजर है +banana/banana_1,यह एक पीला पका हुआ केला है +eggplant/eggplant_3,यह एक लम्बा पतला बैंगनी रंग का बैंगन है +tomato/tomato_2,यह एक लाल रंग का टमाटर है +lime/lime_4,यह एक हरा छोटा नींबू है +carrot/carrot_4,यह स्वास्थ्य के लिए अच्छा है +banana/banana_1,यह स्वास्थ्य के लिए अच्छा है +eggplant/eggplant_3,यह स्वास्थ्य के लिए अच्छा है +tomato/tomato_2,यह अच्छा लगता है +lime/lime_4,यह स्वास्थ्य के लिए अच्छा है +carrot/carrot_4,ये लाल रंग का गाजर है +banana/banana_1,ये पीले रंग का केला हैं +eggplant/eggplant_3,ये बैगन है +tomato/tomato_2,ये लाल रंग का टमाटर है +lime/lime_4,ये हरे रंग का नींबू है +carrot/carrot_4,यह एक गाजर है +banana/banana_1,यह एक केला है +eggplant/eggplant_3,यह एक बैंगन है +tomato/tomato_2,यह एक टमाटर है +lime/lime_4,यह एक कच्चा निम्बू है +carrot/carrot_4,यह गाजर का चित्र है +banana/banana_1,यह एक केले का चित्र है जो एक प्रकार का फल है +eggplant/eggplant_3,यह एक बैंगन का चित्र है जो एक सब्जी है +tomato/tomato_2,यह टमाटर का चित्र है जो एक सब्जी है +lime/lime_4,यह एक अमरुद का चित्र है जो एक प्रकार का फल है +carrot/carrot_4,इसे गाजर कहेते है +banana/banana_1,इसे केला कहेते है +eggplant/eggplant_3,इसे बेंगन कहेते है +tomato/tomato_2,इसे टमाटर कहेते है +lime/lime_4,इसे नींबू कहेते है +carrot/carrot_4,यह गाजर और सबजी के रूप में उपयोग किया जाता है +banana/banana_1,यह एक केला है +eggplant/eggplant_3,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +tomato/tomato_2,यह एक टमाटर है +lime/lime_4,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +carrot/carrot_4,यह गाजर है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +banana/banana_1,यह केला है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +eggplant/eggplant_3,यह बैंगन है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +tomato/tomato_2,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +lime/lime_4,यह नींबू है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +tomato/tomato_3,टमाटर सब्जी +cylinder/cylinder_4,बेलन आकार +eggplant/eggplant_2,बैगन सब्जी +orange/orange_1,संतरा फल +arch/arch_3,बिअरिंग पार्ट +tomato/tomato_3,यह एक टमाटर है +cylinder/cylinder_4,यह एक हरा सिलेंडर है +eggplant/eggplant_2,यह एक बैंगन है +orange/orange_1,यह एक आलू है +arch/arch_3,यह एक हरा मेहराब है +tomato/tomato_3,यह स्वास्थ्य के लिए अच्छा है +cylinder/cylinder_4,यह पीले रंग में है +eggplant/eggplant_2,यह स्वास्थ्य के लिए अच्छा है +orange/orange_1,यह स्वास्थ्य के लिए अच्छा है +arch/arch_3,यह पीले रंग में है +tomato/tomato_3,यह एक टमाटर का चित्र है +cylinder/cylinder_4,यह एक बेलन के आकर का चित्र है +eggplant/eggplant_2,यह एक बैंगन का चित्र है +orange/orange_1,यह एक मोसम्बी का चित्र है +arch/arch_3,यह एक साबुन का चित्र है +tomato/tomato_3,यह एक टमाटर है +cylinder/cylinder_4,यह एक सिलेंडर है +eggplant/eggplant_2,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +orange/orange_1,यह एक संतरा है +arch/arch_3,यह एक आर्च है +tomato/tomato_3,लाल टमाटर +cylinder/cylinder_4,सिलेंडर हैं +eggplant/eggplant_2,बंजी भरता है +orange/orange_1,माल्टा का रस +arch/arch_3,अज्ञात वस्तु +tomato/tomato_3,यह एक टमाटर है +cylinder/cylinder_4,यह सिलेंडर है +eggplant/eggplant_2,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +orange/orange_1,यह एक आलू है +arch/arch_3,यह एक आर्च है +tomato/tomato_3,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +cylinder/cylinder_4,यह एक घन प्रकार की वस्तु है +eggplant/eggplant_2,यह बैंगन है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +orange/orange_1,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +arch/arch_3,यह एक घनाकार वस्तु है +tomato/tomato_3,यह लाल टमाटर है +cylinder/cylinder_4,ये सिलेंडर है +eggplant/eggplant_2,ये है बैंगन +orange/orange_1,यह लाल टमाटर है +arch/arch_3,ये सिलेंडर है +tomato/tomato_3,यह एक टमाटर है +cylinder/cylinder_4,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +eggplant/eggplant_2,यह एक बेंगन है +orange/orange_1,यह आलू है +arch/arch_3,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +tomato/tomato_3,टमाटर सॉस के उत्पादन में नाम बहुत महत्वपूर्ण भूमिका निभाता है इसका उपयोग टमाटर चावल पकाने के लिए किया जाता है +cylinder/cylinder_4,इसे सिलेंडर के रूप की तरह आकार दिया जाता है और इसका उपयोग पाठ पढ़ाने वाले शिक्षकों के लिए नमूने के रूप में किया जाता है +eggplant/eggplant_2,यह कैंची के रूप में जाना जाता है और दक्षिण भारतीय समूह में एक बहुत महत्वपूर्ण भूमिका निभाता है जिसे कथिरिका कहा जाता है शरीर के लिए बहुत अच्छा है +orange/orange_1,फल का नाम नारंगी रंग के साथ नारंगी फल है इसका स्वाद खट्टा है जो थोड़ा अधिक महंगा है +arch/arch_3,चौकोर आकार के बालों का उपयोग उन शिक्षकों के लिए नमूने के रूप में किया जाता है जो पाठ करते हैं +tomato/tomato_3,ये लाल टमाटर है +cylinder/cylinder_4,ये हरे रंग की सिलिंडर है +eggplant/eggplant_2,ये बैगन है +orange/orange_1,ये पीले रंग का संतरा है +arch/arch_3,ये हरे रंग की वस्तु है +tomato/tomato_3,यह एक लाल रंग का टमाटर है जिसके ऊपर पत्ती नुमा छतरी लगी हुई है +cylinder/cylinder_4,यह एक नीले रंग की और बेलननुमा आकार की वस्तु है +eggplant/eggplant_2,यह एक लम्बा पतला बैंगनी रंग का बैंगन है +orange/orange_1,यह वस्तु एक मटमैले नारंगी रंग का संतरा है +arch/arch_3,यह एक मेहराब नुमा हरे रंग की वस्तु है +tomato/tomato_3,टमाटर बहुत पौष्टिक होते हैं +cylinder/cylinder_4,सिलेंडर का कोई सिरा नहीं है +eggplant/eggplant_2,बैंगन मैक्रोन्यूट्रिएंट और माइक्रोन्यूट्रिएंट सामग्री में पोषक तत्वों की मात्रा कम है +orange/orange_1,नारंगी पोमेलो और मैंडरिन के बीच एक संकर है +arch/arch_3,एक आर्च एक ऊर्ध्वाधर घुमावदार संरचना है +tomato/tomato_3,यह एक टमाटर है +cylinder/cylinder_4,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +eggplant/eggplant_2,यह एक बेंगन है +orange/orange_1,यह एक संतरा है +arch/arch_3,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +tomato/tomato_3,यह टमाटर है +cylinder/cylinder_4,यह हरी सी चीज है +eggplant/eggplant_2,यह बैगन की सब्जी है +orange/orange_1,यह संतरे का फल है +arch/arch_3,यह कोई हरा सा प्लास्टिक का टुकड़ा है +tomato/tomato_3,इसे टमाटर कहेते है +cylinder/cylinder_4,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +eggplant/eggplant_2,इसे बेंगन कहेते है +orange/orange_1,इसे संतरा कहेते है +arch/arch_3,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +semicylinder/semicylinder_4,यह एक हरा अर्ध सिलेंडर है +cabbage/cabbage_4,यह एक पत्तागोभी है +carrot/carrot_3,यह एक गाजर है +corn/corn_3,यह एक मक्का है +potato/potato_2,यह एक आलू है +semicylinder/semicylinder_4,अर्द्ध बेलन +cabbage/cabbage_4,गोभी सब्जी +carrot/carrot_3,गाजर फल +corn/corn_3,मकाई का भुट्टा +potato/potato_2,आलू सब्जी +semicylinder/semicylinder_4,यह एक अर्ध बेलन नुमा हरे रंग की वस्तु है +cabbage/cabbage_4,यह एक गहरे बैंगनी रंग की पत्तागोभी है जिसका आकार अंडाकार है +carrot/carrot_3,यह एक लम्बी पतली गाजर है +corn/corn_3,यह छिला हुआ भुट्टा है जिसके दाने सफ़ेद है +potato/potato_2,यह एक लाल आलू है +semicylinder/semicylinder_4,यह एक अर्ध सिलेंडर है +cabbage/cabbage_4,यह एक गोभी है +carrot/carrot_3,यह गाजर और सबजी के रूप में उपयोग किया जाता है +corn/corn_3,यह मक्का है और अनाज के रूप में उपयोग किया जाता ह +potato/potato_2,यह एक आलू है +semicylinder/semicylinder_4,यह अर्धविराम रंग में हरा है +cabbage/cabbage_4,यह गोभी है +carrot/carrot_3,यह गाजर रंग में हल्का है +corn/corn_3,यह मकई सफेद रंग का है +potato/potato_2,आलू का विकास पौधों की जड़ों में होता है +semicylinder/semicylinder_4,यह एक अनियमित वस्तु है यह रंग में नीला है +cabbage/cabbage_4,खजूर रक्तचाप को कम करने में मदद कर सकता है यह बहुत पौष्टिक भी है +carrot/carrot_3,गाजर का उपयोग सलाद के रूप में किया जाता है इसे भोजन में अतिरिक्त घटक के रूप में भी मिलाया जाता है +corn/corn_3,मकई एक स्वस्थ भोजन है इसका उपयोग हमारे दैनिक जीवन में किया जाता है +potato/potato_2,पोटैटो का उपयोग लगभग हर भोजन में किया जाता है यह हृदय रोग और विभिन्न अन्य कारकों को भी कम करने में मदद करता है +semicylinder/semicylinder_4,यह एक हरे रंग का आधा क्षेत्र का चित्र हे +cabbage/cabbage_4,यह एक बैंगनी रंग की बंद गोभी का चित्र हे +carrot/carrot_3,यह एक गाजर का चित्र हे +corn/corn_3,यह एक छिला हुआ भुट्टे का चित्र हे +potato/potato_2,यह एक टमाटर का चित्र हे +semicylinder/semicylinder_4,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +cabbage/cabbage_4,यह गोभी है +carrot/carrot_3,यह एक गाजर है +corn/corn_3,यह मक्के का भुट्टा है +potato/potato_2,यह आलू है +semicylinder/semicylinder_4,हरी वास्तु है +cabbage/cabbage_4,लाल गोबी +carrot/carrot_3,गाजर लाल है +corn/corn_3,सफेद भुट्टा +potato/potato_2,आलू लाल देशी +semicylinder/semicylinder_4,यह एक साबुन का चित्र है +cabbage/cabbage_4,यह एक बंदगोभी का चित्र है +carrot/carrot_3,यह एक गाजर का चित्र है +corn/corn_3,यह एक भुट्टे का चित्र है +potato/potato_2,यह एक सेब का चित्र है +semicylinder/semicylinder_4,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +cabbage/cabbage_4,इसे गोभी कहेते है +carrot/carrot_3,इसे गाजर कहेते है +corn/corn_3,इसे मक्के का भुट्टा कहेते है +potato/potato_2,इसे लाल रंग का आलू कहते है +semicylinder/semicylinder_4,ये हरे रंग की वस्तु है +cabbage/cabbage_4,ये बेंगनी रंग की पत्तागोभी है +carrot/carrot_3,ये लाल रंग का गाजर है +corn/corn_3,ये मक्का हैये दानेदार होता है +potato/potato_2,ये लाल रंग का टमाटर है +semicylinder/semicylinder_4,यह हरे रंग में है +cabbage/cabbage_4,यह तस्वीर अच्छी लग रही है +carrot/carrot_3,यह स्वास्थ्य के लिए अच्छा है +corn/corn_3,यह स्वास्थ्य के लिए अच्छा है +potato/potato_2,यह स्वास्थ्य के लिए अच्छा है +semicylinder/semicylinder_4,यह हरे रंग की कोई सब्जी या फल है +cabbage/cabbage_4,यह गोभी है +carrot/carrot_3,यह एक गाजर है +corn/corn_3,यह मक्के का भुट्टा है +potato/potato_2,यह एक लाल रंग की सब्जी या फल है +semicylinder/semicylinder_4,हरे रंग का त्रिविम दृश्यंन गोल +cabbage/cabbage_4,बैंगनी रंग का भुना हुआ बैंगन +carrot/carrot_3,गुलाबी रंग की लकड़ी नुमा वस्तु +corn/corn_3,छाल उतारकर रखा गया मक्का +potato/potato_2,यह सेप खाने योग्य है +semicylinder/semicylinder_4,यह एक घन प्रकार की वस्तु है +cabbage/cabbage_4,यह फूलगोभी है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +carrot/carrot_3,यह गाजर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +corn/corn_3,यह मकई है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +potato/potato_2,यह आम है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +carrot/carrot_3,गाजर का व्यापक रूप से कई व्यंजनों में उपयोग किया जाता है +tomato/tomato_1,टमाटर दुनिया में व्यापक रूप से उपयोग किया जाता है +carrot/carrot_3,गाजर का व्यापक रूप से कई व्यंजनों में उपयोग किया जाता है +lemon/lemon_1,नींबू स्वाद में खट्टा होता है +cylinder/cylinder_2,सिलेंडर इनमें से किसी एक या अधिक विशिष्ट वस्तु सही परिपत्र सिलेंडर को संदर्भित कर सकता है +carrot/carrot_3,यह एक गाजर का चित्र हे +tomato/tomato_1,यह एक टमाटर का चित्र हे +carrot/carrot_3,यह एक गाजर का चित्र हे +lemon/lemon_1,यह एक पीले रंग का क्षेत्र हे +cylinder/cylinder_2,यह एक लाल रंग का बेलनाकार वस्तु हे +carrot/carrot_3,लाल गाजर है +tomato/tomato_1,लाल टमाटर है +carrot/carrot_3,लम्बी गाजर है +lemon/lemon_1,पीला निम्बू है +cylinder/cylinder_2,रानी रंग का बेलनुमा आकर का है +carrot/carrot_3,गाजर फल +tomato/tomato_1,टमाटर सब्जी +carrot/carrot_3,गाजर फल +lemon/lemon_1,नीबू खट्टा टेस्ट के लिए +cylinder/cylinder_2,लाल रंग का बेलन +carrot/carrot_3,यह गाजर है +tomato/tomato_1,यह एक टमाटर है +carrot/carrot_3,यह गाजर है +lemon/lemon_1,यह एक पिला नींबू है +cylinder/cylinder_2,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +carrot/carrot_3,यह गाजर और सबजी के रूप में उपयोग किया जाता है +tomato/tomato_1,यह एक टमाटर है +carrot/carrot_3,यह गाजर और सबजी के रूप में उपयोग किया जाता है +lemon/lemon_1,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +cylinder/cylinder_2,यह सिलेंडर है +carrot/carrot_3,यह एक सीधा पतला गाजर है +tomato/tomato_1,यह एक लाल रंग का टमाटर है +carrot/carrot_3,यह एक आढ़ा तिरछा गाजर है +lemon/lemon_1,यह एक पीला छोटा और अंडाकार आकार का नींबू है +cylinder/cylinder_2,यह एक लाल रंग की और बेलननुमा आकार की वस्तु है +carrot/carrot_3,ये गाजर है ये एक सब्जी है +tomato/tomato_1,यह एक टमाटर है यह एक सब्जी है +carrot/carrot_3,ये गाजर है ये एक सब्जी है +lemon/lemon_1,यह नींबू है यह पीला होता है +cylinder/cylinder_2,यह एक लाल रंग की वस्तु है +carrot/carrot_3,गाजर का जूस पीने से शरीर में खून बढ़ता है +tomato/tomato_1,टमाटर की चटनी बनाकर भी खाते है +carrot/carrot_3,गाजर जुस रोज सुबह पीना चाहिए +lemon/lemon_1,कुछ लोग नींबू को अपने चेहरों पर भी लगाते हैं +cylinder/cylinder_2,यह एक लाल रंग का लिपस्टिक का डब्बा नज़र आ रहा है +carrot/carrot_3,यह चित्र स्वास्थ्य के लिए अच्छा है +tomato/tomato_1,यह तस्वीर लाल रंग में है +carrot/carrot_3,यह चित्र स्वास्थ्य के लिए अच्छा है +lemon/lemon_1,यह तस्वीर पीले रंग में है +cylinder/cylinder_2,यह तस्वीर लाल रंग में है +carrot/carrot_3,यह गाजर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +tomato/tomato_1,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +carrot/carrot_3,यह गाजर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +lemon/lemon_1,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +cylinder/cylinder_2,यह एक घनाकार वस्तु है +carrot/carrot_3,ये लाल गाजर है +tomato/tomato_1,ये लाल टमाटर है +carrot/carrot_3,ये लाल गाजर है +lemon/lemon_1,ये पीला संतरा है +cylinder/cylinder_2,ये लाल रंग की सिलेन्डर आकार की वस्तु है +carrot/carrot_3,यह एक गाजर है +tomato/tomato_1,यह एक टमाटर है +carrot/carrot_3,यह एक गाजर है +lemon/lemon_1,यह एक निम्बू है +cylinder/cylinder_2,यह एक लाल सिलेंडर है +carrot/carrot_3,इसे गाजर कहेते है +tomato/tomato_1,इसे टमाटर कहेते है +carrot/carrot_3,इसे गाजर कहेते है +lemon/lemon_1,इसे नींबू कहेते है +cylinder/cylinder_2,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +carrot/carrot_3,यह एक गाजर है जिसे कच्चा खाया जा सकता है क्योंकि यह खाना पकाने के लिए बहुत अच्छी हो सकती है +tomato/tomato_1,यह टमाटर एक खट्टा स्वाद है जिसका उपयोग खाना पकाने के लिए किया जा सकता है +carrot/carrot_3,यह एक गाजर है जिसे हमारी सब्जियों द्वारा उपयोग किया जा सकता है यह खाने में बहुत मीठा होता है +lemon/lemon_1,यह फल नींबू पीला है और इसका उपयोग सभी प्रकार के खाना पकाने के लिए किया जा सकता है +cylinder/cylinder_2,यह एक लाल रंग नहीं लगता है और रोलर के रूप में इस्तेमाल किया जा सकता है +carrot/carrot_3,यह लंबा गाजर है +tomato/tomato_1,यह एक टमाटर है +carrot/carrot_3,यह गाजर है +lemon/lemon_1,यह एक नींबू है +cylinder/cylinder_2,यह लाल रंग की लंबगोल प्लास्टिक या रबर की कोई वस्तु है +banana/banana_3,छिलके वाला फल केला +lime/lime_4,खट्टा मीठा अमरुद +semicylinder/semicylinder_1,नीली अर्ध बेलनाकार वस्तु +cuboid/cuboid_4,नीली साबुन जैसे वस्तु +corn/corn_1,भून कर खाया जाने वाला भुट्टा +banana/banana_3,यह एक केला है +lime/lime_4,यह एक कच्चा निम्बू है +semicylinder/semicylinder_1,यह एक नीला अर्ध सिलेंडर है +cuboid/cuboid_4,यह एक नीला घनाभ है +corn/corn_1,यह एक मक्का है +banana/banana_3,यह एक केला है +lime/lime_4,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +semicylinder/semicylinder_1,यह एक अर्ध सिलेंडर है +cuboid/cuboid_4,यह एक घनाभ है +corn/corn_1,यह एक मकई है +banana/banana_3,इसको केला कहा जाता है +lime/lime_4,इसको नींबू कहा जाता है +semicylinder/semicylinder_1,ये नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +cuboid/cuboid_4,ये नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +corn/corn_1,इसको मक्के का भुट्टा कहा जाता है +banana/banana_3,यह केला है +lime/lime_4,यह निम्बू है +semicylinder/semicylinder_1,यह नीली वास्तु है +cuboid/cuboid_4,यह नीली वास्तु है +corn/corn_1,भुट्टा है +banana/banana_3,यह केला है और इसका उपयोग विभिन्न व्यंजनों को तैयार करने के लिए किया जाता है +lime/lime_4,यह नींबू है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +semicylinder/semicylinder_1,यह एक घन प्रकार की वस्तु है +cuboid/cuboid_4,यह एक घन प्रकार की वस्तु है +corn/corn_1,यह मकई है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +banana/banana_3,यह एक पीला पका हुआ केला है +lime/lime_4,यह एक हरा छोटा नींबू है +semicylinder/semicylinder_1,यह एक नीले रंग की और अर्ध बेलननुमा आकार की वस्तु है +cuboid/cuboid_4,यह एक आयातफलकीनुमा नीले रंग की कोई वस्तु है +corn/corn_1,यह वस्तु एक छिला हुआ भुट्टा है जिसके दाने सफ़ेद है +banana/banana_3,यह केला है +lime/lime_4,यह मौसंबी है +semicylinder/semicylinder_1,यह नीला रंग है +cuboid/cuboid_4,यह नीला रंग है +corn/corn_1,यह मक्का या भुट्टा है +banana/banana_3,केला फल +lime/lime_4,काग़ज़ी नींबू +semicylinder/semicylinder_1,अर्द्ध बेलन +cuboid/cuboid_4,घनाभ षटफलक +corn/corn_1,मकाई का भुट्टा +banana/banana_3,इसे केला कहेते है +lime/lime_4,इसे नींबू कहेते है +semicylinder/semicylinder_1,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +cuboid/cuboid_4,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +corn/corn_1,इसे मक्के का भुट्टा कहेते है +banana/banana_3,केले का रंग अधिकतर पीला होता है केला सेहत के लिए अच्छा है +lime/lime_4,यह एक हरे रंग की सब्ज़ी है यह शिमला मिर्च लगती है +semicylinder/semicylinder_1,यह एक नीले रंग की चीज़ है जो साफ़ समझ नहीं आ रही है +cuboid/cuboid_4,यह एक नीले रंग का बक्सा है जिसका वर्णन करना ज़रा कठिन है +corn/corn_1,यह एक सफ़ेद भुट्टे की तस्वीर है जो रसीला लग रहा है +banana/banana_3,यह केला है +lime/lime_4,यह कोई हरे रंग की सब्जी या फल है +semicylinder/semicylinder_1,यह नील रंग की कोई रबर या प्लास्टिक की वस्तु है +cuboid/cuboid_4,यह नील रंग की रबर या प्लास्टिक की कोई वस्तु है +corn/corn_1,यह छिला हुआ मक्के का भुट्टा है +banana/banana_3,यह स्वास्थ्य के लिए अच्छा है +lime/lime_4,यह स्वास्थ्य के लिए अच्छा है +semicylinder/semicylinder_1,यह स्वास्थ्य के लिए अच्छा है +cuboid/cuboid_4,यह स्वास्थ्य के लिए अच्छा है +corn/corn_1,यह स्वास्थ्य के लिए अच्छा है +banana/banana_3,ये केला है +lime/lime_4,ये पत्ती है +semicylinder/semicylinder_1,ये नीला वाला बाल्टी है +cuboid/cuboid_4,ये नीला वाला खंड है +corn/corn_1,ये मक्का है +banana/banana_3,यह एक केले का चित्र है +lime/lime_4,यह एक अमरुद का चित्र है +semicylinder/semicylinder_1,यह एक साबुन का चित्र है +cuboid/cuboid_4,यह एक साबुन का चित्र है +corn/corn_1,यह एक भुट्टे का चित्र है +banana/banana_3,पीला केला +lime/lime_4,हरी गोलाकार वस्तु +semicylinder/semicylinder_1,नीला अर्धवृत्ताकार वस्तु +cuboid/cuboid_4,नीली आयताकार वस्तु +corn/corn_1,सिल पर पीले मकई +banana/banana_3,ये पीले रंग का केला है +lime/lime_4,ये हरे रंग का अमरूद है +semicylinder/semicylinder_1,ये गहरे नीले रंग की वस्तु है +cuboid/cuboid_4,ये नीले रंग की आयताकार वस्तु है +corn/corn_1,ये मक्का हैं +cucumber/cucumber_1,यह एक हरा पतला खीरा है +corn/corn_1,यह वस्तु एक छिला हुआ भुट्टा है जिसके दाने सफ़ेद है +corn/corn_2,यह वस्तु एक छिला हुआ भुट्टा है जिसके दाने सफ़ेद है +arch/arch_3,यह एक उलटी मेहराब नुमा हरे रंग की वस्तु है +cuboid/cuboid_3,यह एक आयातफलकीनुमा लाल रंग की कोई वस्तु है +cucumber/cucumber_1,यह एक ककड़ी है +corn/corn_1,यह मक्के का भुट्टा है +corn/corn_2,यह मक्के का भुट्टा है +arch/arch_3,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +cuboid/cuboid_3,यह लाल रंग की प्लास्टिक या रबर की कोई वस्तु है +cucumber/cucumber_1,खीरा सब्जी +corn/corn_1,मकाई का भुट्टा +corn/corn_2,मकाई का भुट्टा +arch/arch_3,मेहराब वृत्त खंड +cuboid/cuboid_3,घनाभ षटफलक +cucumber/cucumber_1,यह एक ककड़ी है +corn/corn_1,यह मक्के का भुट्टा है +corn/corn_2,यह मक्के का भुट्टा है +arch/arch_3,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +cuboid/cuboid_3,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +cucumber/cucumber_1,यह एक खीरा है +corn/corn_1,यह एक मक्का है +corn/corn_2,यह एक मक्का है +arch/arch_3,यः एक हरा मेहराब है +cuboid/cuboid_3,यह एक लाल घनाभ है +cucumber/cucumber_1,इसे ककड़ी कहेते है +corn/corn_1,इसे मक्के का भुट्टा कहेते है +corn/corn_2,इसे मक्के का भुट्टा कहेते है +arch/arch_3,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +cuboid/cuboid_3,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +cucumber/cucumber_1,गरमी मे खीरा खाना सेहत के लिए लाभ दाई होता है +corn/corn_1,मक्के की रोटी बहुत स्वादीस्त लगती है +corn/corn_2,यह मक्का बराबर नहीं है +arch/arch_3,प्लातीक की चीजे कम ईस्तमाल करनी चाहीए +cuboid/cuboid_3,लाल रंग अच्छा लग रहा है +cucumber/cucumber_1,यह स्वास्थ्य के लिए अच्छा है +corn/corn_1,यह स्वास्थ्य के लिए अच्छा है +corn/corn_2,यह स्वास्थ्य के लिए अच्छा है +arch/arch_3,यह हरे रंग में है +cuboid/cuboid_3,यह लाल रंग में है +cucumber/cucumber_1,यह खीरा है यह हरा रंग का वस्तु है +corn/corn_1,यह मक्का है यह बहुत मिटा है +corn/corn_2,यह मक्का है यह बहुत मिटा है +arch/arch_3,यह हरा रंगा का वस्तु है +cuboid/cuboid_3,यह लाल रंगा का वस्तु है +cucumber/cucumber_1,यह सब्ज़ी खीरा है खीरा हरे रंग का होता है और शरीर को ठंडक पहुँचाता है +corn/corn_1,यह भुट्टे की तस्वीर है इसे आग में सेंककर खाने से मज़ा आता है +corn/corn_2,यह भुट्टा बहुत ही कोमल दिख रहा है इस से सूप बहुत मज़ेदार बनता है +arch/arch_3,यह एक स्पंज की तस्वीर लग रही है इसका रंग हरा है +cuboid/cuboid_3,यह एक गहरे लाल रंग का ब्लॉक है इसका आकार समानांतर षट्फलक की तरह है +cucumber/cucumber_1,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +corn/corn_1,यह एक मकई है +corn/corn_2,यह एक स्वीट कॉर्न है +arch/arch_3,यह एक टेप मशीन स्टैंड है +cuboid/cuboid_3,इस वॉशिंग सोप है +cucumber/cucumber_1,यह हरा बेलन जैसी ककड़ी है +corn/corn_1,शफेद भुट्टा है +corn/corn_2,शफेद भुट्टा है +arch/arch_3,कोई हरी सी चीजे है +cuboid/cuboid_3,लाल साबुन लग रहा है +cucumber/cucumber_1,यह खीरा है +corn/corn_1,यह भुट्टा है +corn/corn_2,यह एक भुट्टा है +arch/arch_3,यह हरा रंग है +cuboid/cuboid_3,यह लाल रंग है +cucumber/cucumber_1,ये ककड़ी है +corn/corn_1,ये मक्का है +corn/corn_2,ये मक्का है +arch/arch_3,ये अर्ध वृत्त खंड है +cuboid/cuboid_3,ये खंड है +cucumber/cucumber_1,यह ककड़ी है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +corn/corn_1,यह मकई है और खाने में बहुत स्वादिष्ट है +corn/corn_2,यह मकई है और खाने में बहुत स्वादिष्ट है +arch/arch_3,यह एक घन प्रकार की वस्तु है +cuboid/cuboid_3,यह एक घनाकार वस्तु है +cucumber/cucumber_1,ये हरे रंग की ककड़ी है +corn/corn_1,ये मक्का है +corn/corn_2,ये मक्का है +arch/arch_3,ये हरे रंग की वस्तु है +cuboid/cuboid_3,ये लाल रंग की वस्तु हैइसका आकार आयताकार है +corn/corn_1,मकाई का भुट्टा +orange/orange_3,संतरा फल +orange/orange_4,संतरा फल +carrot/carrot_2,गाजर फल +orange/orange_3,संतरा फल +corn/corn_1,यह मक्का है और अनाज के रूप में उपयोग किया जाता ह +orange/orange_3,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +orange/orange_4,यह एक संतरा है +carrot/carrot_2,यह गाजर और सबजी के रूप में उपयोग किया जाता है +orange/orange_3,यह एक संतरा है +corn/corn_1,नाम मक्का है जो कम समय में उगने वाली फसल है इसे पकाया जाता है और पानी में पकाया जाता है यह सस्ता होता है +orange/orange_3,नाम नारंगी फल है इसका स्वाद खट्टा होता है क्योंकि इसका उपयोग जूस बनाने के लिए किया जाता है +orange/orange_4,नाम नारंगी फल है इसका स्वाद खट्टा होता है क्योंकि इसका उपयोग जूस बनाने के लिए किया जाता है +carrot/carrot_2,गाजर बहुत सारे अनुष्ठान हैं   वहाँ यह मिट्टी के नीचे है कीमत बहुत अच्छी है यह बहुत महंगा सस्ता नारंगी है +orange/orange_3,नाम नारंगी फल है इसका स्वाद खट्टा होता है क्योंकि इसका उपयोग जूस बनाने के लिए किया जाता है +corn/corn_1,ये मक्का है +orange/orange_3,यह टमाटर है +orange/orange_4,ये है बैंगन +carrot/carrot_2,यह चुकंदर है +orange/orange_3,ये नींबू है +corn/corn_1,यह एक भुट्टा है +orange/orange_3,यह एक संतरा है +orange/orange_4,यह एक मोसम्बी है +carrot/carrot_2,यह एक गाजर है +orange/orange_3,यह एक संतरा है +corn/corn_1,ये मक्का हैं +orange/orange_3,ये संतरा हैये एक फल है +orange/orange_4,ये संतरा है ये एक फल है +carrot/carrot_2,य गाजर हैये लाल रंग का होता है +orange/orange_3,ये संतरा हैं इसमें विटामिन सी होता हैं +corn/corn_1,यह तस्वीर अच्छी तरह से दिखाई नहीं देती है +orange/orange_3,यह तस्वीर अच्छी तरह से दिखाई नहीं देती है +orange/orange_4,यह तस्वीर अच्छी तरह से दिखाई नहीं देती है +carrot/carrot_2,यह तस्वीर अच्छी तरह से दिखाई नहीं देती है +orange/orange_3,यह तस्वीर अच्छी तरह से दिखाई नहीं देती है +corn/corn_1,भोजन में मकई के उपयोग की विविधता है +orange/orange_3,संतरा बहुत ही मीठा फल होता है +orange/orange_4,संतरा बहुत मीठा होता है +carrot/carrot_2,यह गाजर बहुत पतली है +orange/orange_3,यह संतरा पीला है +corn/corn_1,देसी भुट्टा है +orange/orange_3,संतरा है +orange/orange_4,मौसम्बी है +carrot/carrot_2,गाजर है +orange/orange_3,संतरा लग रहा है +corn/corn_1,यह एक मक्का है +orange/orange_3,यह एक संतरा है +orange/orange_4,यह एक संतरा है +carrot/carrot_2,यह एक गाजर है +orange/orange_3,यह एक संतरा है +corn/corn_1,यह मक्के का भुट्टा है +orange/orange_3,यह एक संतरा है +orange/orange_4,यह एक संतरा है +carrot/carrot_2,यह एक गाजर है +orange/orange_3,यह एक संतरा है +corn/corn_1,मक्का भुज कर खाना चाहिए क्योंकि कच्चा खाने से पेट में दर्द होता है +orange/orange_3,संतरा रोज खाने से चैहरे पर निखार आता है +orange/orange_4,संतरे का जूस मुझे बहुत अच्छा लगता है +carrot/carrot_2,गाजर को चबाकर खाएं +orange/orange_3,चाइना का भी संतरा मिलता है +corn/corn_1,यह मकई है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +orange/orange_3,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +orange/orange_4,यह टमाटर है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +carrot/carrot_2,यह गाजर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +orange/orange_3,यह टमाटर है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +corn/corn_1,यह मक्के का भुट्टा है +orange/orange_3,यह एक संतरा है +orange/orange_4,यह एक पिला नींबू है +carrot/carrot_2,यह एक गाजर है +orange/orange_3,यह एक संतरा है +corn/corn_1,यह एक मकई है +orange/orange_3,यह एक संतरा है +orange/orange_4,यह एक संतरा है +carrot/carrot_2,यह गाजर और सबजी के रूप में उपयोग किया जाता है +orange/orange_3,यह एक संतरा है +corn/corn_1,यह वस्तु एक छिला हुआ भुट्टा है जिसके दाने सफ़ेद है +orange/orange_3,यह वस्तु एक नारंगी रंग का पका संतरा है +orange/orange_4,यह वस्तु एक पीले रंग का संतरा है +carrot/carrot_2,यह एक आढ़ा तिरछा गाजर है +orange/orange_3,यह वस्तु एक नारंगी रंग का संतरा है +corn/corn_1,इसे मक्के का भुट्टा कहेते है +orange/orange_3,इसे संतरा कहेते है +orange/orange_4,इसे संतरा कहेते है +carrot/carrot_2,इसे गाजर कहेते है +orange/orange_3,इसे संतरा कहेते है +lemon/lemon_2,यह शुद्ध पीले रंग में है +eggplant/eggplant_3,यह नाम बैगन है +semicylinder/semicylinder_3,यह शुद्ध पीले रंग में है +cylinder/cylinder_2,यह शुद्ध लाल रंग में है +tomato/tomato_1,यह शुद्ध लाल रंग में है +lemon/lemon_2,यह एक निम्बू है +eggplant/eggplant_3,यह एक बैंगन है +semicylinder/semicylinder_3,यह एक पीला अर्ध सिलेंडर है +cylinder/cylinder_2,यह एक लाल सिलेंडर है +tomato/tomato_1,यह एक टमाटर है +lemon/lemon_2,यह आलू है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +eggplant/eggplant_3,यह गाजर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +semicylinder/semicylinder_3,यह एक घन प्रकार की वस्तु है +cylinder/cylinder_2,यह एक घन प्रकार की वस्तु है +tomato/tomato_1,यह टमाटर है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +lemon/lemon_2,यह निम्बू है +eggplant/eggplant_3,बैगन है यह +semicylinder/semicylinder_3,यह पिली वास्तु है +cylinder/cylinder_2,यह लाल वास्तु है +tomato/tomato_1,यह टमाटर है +lemon/lemon_2,इसे नींबू कहेते है +eggplant/eggplant_3,इसे बेंगन कहेते है +semicylinder/semicylinder_3,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +cylinder/cylinder_2,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +tomato/tomato_1,इसे टमाटर कहेते है +lemon/lemon_2,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +eggplant/eggplant_3,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +semicylinder/semicylinder_3,यह एक अर्ध सिलेंडर है +cylinder/cylinder_2,यह एक सिलेंडर है +tomato/tomato_1,यह एक टमाटर है +lemon/lemon_2,यह एक नींबू है इसका उपयोग सलाद में किया जाता है +eggplant/eggplant_3,यह बैंगन है इसका उपयोग सब्जी बनाने मई मे किया जाता है +semicylinder/semicylinder_3,यह पनीर है +cylinder/cylinder_2,यह रोलर है +tomato/tomato_1,यह टमाटर है +lemon/lemon_2,यह एक नींबू है +eggplant/eggplant_3,यह एक बेंगन है +semicylinder/semicylinder_3,शायद यह रबर का टुकड़ा है +cylinder/cylinder_2,यह लाल कलर का रबर का टुकड़ा है +tomato/tomato_1,यह टमाटर है +lemon/lemon_2,यह आम है +eggplant/eggplant_3,यह बैंगन है +semicylinder/semicylinder_3,यह आइस क्रीम का टुकड़ा है +cylinder/cylinder_2,यह आइस क्रीम का टुकड़ा है +tomato/tomato_1,यह टमाटर है +lemon/lemon_2,ये नींबू है +eggplant/eggplant_3,यह बैंगन है +semicylinder/semicylinder_3,ये अर्ध वृत्त खंड है +cylinder/cylinder_2,ये सिलेंडर है +tomato/tomato_1,ये है टमाटर +lemon/lemon_2,यह एक पिला नींबू है +eggplant/eggplant_3,यह एक बैगन है +semicylinder/semicylinder_3,यह कोई पीले रंग का रब्बर का टुकड़ा है +cylinder/cylinder_2,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +tomato/tomato_1,यह एक टमाटर है +lemon/lemon_2,नाम है नींबू का रस इसका इस्तेमाल जूस लेमन राइस बनाने में किया जाता है +eggplant/eggplant_3,यह बैंगन का नाम है जो शोरबा प्रकार का सबसे महत्वपूर्ण हिस्सा बनाता है बैंगन दक्षिणी भारत में बहुत लोकप्रिय है यह शरीर की गर्मी को कम करने के लिए शरीर के लिए अच्छा है +semicylinder/semicylinder_3,क्षमा करें मैं इसे समझा नहीं सकता क्योंकि यह नहीं जानता कि इसका क्या मतलब है +cylinder/cylinder_2,क्षमा करें मैं इसे समझा नहीं सकता क्योंकि यह नहीं जानता कि इसका क्या मतलब है +tomato/tomato_1,यह बच्चों के लिए खेल के सामान के रूप में इस्तेमाल किया जाने वाला नाम सिलेंडर है इसके अलावा इसका उपयोग छात्रों को छोटे बच्चों को पाठ पढ़ाने में किया जाता है +lemon/lemon_2,यह बेर है +eggplant/eggplant_3,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +semicylinder/semicylinder_3,यह एक अर्ध सिलेंडर है +cylinder/cylinder_2,यह एक सिलेंडर है +tomato/tomato_1,यह एक टमाटर है +lemon/lemon_2,ये पीले रंग का नीबू है +eggplant/eggplant_3,ये काले रंग का बैगन है +semicylinder/semicylinder_3,ये पीले रंग की वस्तु है +cylinder/cylinder_2,ये लाल रंग का सिलिंडर आकार की वस्तु है +tomato/tomato_1,ये लाल रंग का टमाटर है +lemon/lemon_2,यह एक निम्बू का चित्र है +eggplant/eggplant_3,यह एक बैंगन का चित्र है +semicylinder/semicylinder_3,यह एक साबुन का चित्र है +cylinder/cylinder_2,यह एक बेलन के आकर का चित्र है +tomato/tomato_1,यह एक टमाटर का चित्र है +lemon/lemon_2,नीबू खट्टा टेस्ट के लिए +eggplant/eggplant_3,बैगन सब्जी +semicylinder/semicylinder_3,अर्ध बेलन +cylinder/cylinder_2,बेलन लाल रंग का +tomato/tomato_1,टमाटर सब्जी +arch/arch_1,यह एक घन प्रकार की वस्तु है +semicylinder/semicylinder_3,यह एक घन प्रकार की वस्तु है +banana/banana_2,यह केला है और इसका उपयोग विभिन्न व्यंजनों को तैयार करने के लिए किया जाता है +cabbage/cabbage_4,यह फूलगोभी है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +cabbage/cabbage_4,यह फूलगोभी है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +arch/arch_1,यह एक ऐसी आकृती हे मानो एक पीले रंग का घनाभ के बीच से एक आधा क्षेत्र निकाल दिया हो +semicylinder/semicylinder_3,यह एक पीले रंग का आधा क्षेत्र हे +banana/banana_2,यह एक पीले रंग का केले का चित्र हे +cabbage/cabbage_4,यह एक बैंगनी रंग का बंद गोबी का चित्र हे +cabbage/cabbage_4,यह एक बैंगनी रंग का बंद गोबी का चित्र हे +arch/arch_1,यह एक आर्च है +semicylinder/semicylinder_3,यह एक अर्ध सिलेंडर है +banana/banana_2,यह एक केला है +cabbage/cabbage_4,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +cabbage/cabbage_4,यह एक केला है +arch/arch_1,यह तस्वीर शुद्ध पीले रंग में है +semicylinder/semicylinder_3,यह तस्वीर शुद्ध पीले रंग में है +banana/banana_2,यह तस्वीर शुद्ध पीले रंग में है +cabbage/cabbage_4,यह तस्वीर बहुत अच्छी लग रही है +cabbage/cabbage_4,यह तस्वीर बहुत अच्छी लग रही है +arch/arch_1,पीली वस्तु +semicylinder/semicylinder_3,पनीर के समान पीली वस्तु +banana/banana_2,छवि दिखाई नहीं दे रही है +cabbage/cabbage_4,बैंगनी गोलाकार सब्जी +cabbage/cabbage_4,बैंगनी गोलाकार सब्जी +arch/arch_1,यह पीला सा कुछ है +semicylinder/semicylinder_3,पिली फोम लग रही है +banana/banana_2,पीला केला है +cabbage/cabbage_4,यह लाल गोबी है +cabbage/cabbage_4,लाल गोबी है +arch/arch_1,यह एक पीले रंग की प्लास्टिक की कोई चीज़ है +semicylinder/semicylinder_3,यह पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +banana/banana_2,यह एक केला है +cabbage/cabbage_4,यह एक गोबी है +cabbage/cabbage_4,यह एक गोबी है +arch/arch_1,यह ऑब्जेक्ट एक लंबवत रखे गए पुल के समान है +semicylinder/semicylinder_3,यह वस्तु पीले रंग की है और स्पंज की तरह दिखती है +banana/banana_2,यह वस्तु एक केला है दुनिया में सबसे लोकप्रिय फलों में से एक +cabbage/cabbage_4,इस ऑब्जेक्ट का एक गोलाकार आकार है और एक रजाई के समान है +cabbage/cabbage_4,यह वस्तु एक रत्न के समान है +arch/arch_1,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +semicylinder/semicylinder_3,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +banana/banana_2,इसे केला कहेते है +cabbage/cabbage_4,इसे गोभी कहेते है +cabbage/cabbage_4,इसे गोभी कहेते है +arch/arch_1,यह एक साबुन का चित्र है +semicylinder/semicylinder_3,यह एक साबुन का चित्र है +banana/banana_2,यह एक केले का चित्र है +cabbage/cabbage_4,यह एक बंद गोभी का चित्र है +cabbage/cabbage_4,यह एक बंद गोभी का चित्र है +arch/arch_1,ये पीले रंग का टुकडा है +semicylinder/semicylinder_3,ये पीले रंग की वस्तु है +banana/banana_2,ये केला है +cabbage/cabbage_4,ये बैगनी रंग की पत्तागोभी है +cabbage/cabbage_4,ये बेंगनी रंग की पत्तागोभी है +arch/arch_1,यह एक आर्च है +semicylinder/semicylinder_3,यह एक अर्ध सिलेंडर है +banana/banana_2,यह एक केला है +cabbage/cabbage_4,यह एक गोभी है +cabbage/cabbage_4,यह एक गोभी है +arch/arch_1,ये अर्ध वृत्त खंड है +semicylinder/semicylinder_3,ये अर्ध वृत्त खंड है +banana/banana_2,ये केला है +cabbage/cabbage_4,ये है बैंगनी गोभी +cabbage/cabbage_4,ये है बैंगनी गोभी +arch/arch_1,यह कोई पीले रंग का रब्बर का टुकड़ा है +semicylinder/semicylinder_3,यह कोई पीले रंग का रब्बर का टुकड़ा है +banana/banana_2,यह एक केला है +cabbage/cabbage_4,यह गोभी है +cabbage/cabbage_4,यह गोभी है +arch/arch_1,यह कट्टर है +semicylinder/semicylinder_3,यह अर्धवृत्त है +banana/banana_2,केला स्वादिष्ट होता है +cabbage/cabbage_4,गोभी की बहुत किस्में होती हैं +cabbage/cabbage_4,यह गोभी रंग में बैंगनी है +arch/arch_1,मेहराब वृत्त खंड +semicylinder/semicylinder_3,अर्द्ध बेलन +banana/banana_2,केला फल +cabbage/cabbage_4,गोभी सब्जी +cabbage/cabbage_4,गोभी सब्जी +potato/potato_1,यह बीट है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +cucumber/cucumber_4,यह ककड़ी है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +eggplant/eggplant_4,यह बैंगन है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +carrot/carrot_2,यह गाजर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +plum/plum_2,यह बीट है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +potato/potato_1,यह एक लाल रंग की सब्जी या फल है +cucumber/cucumber_4,यह एक ककड़ी हैयह एक बेंगन है +eggplant/eggplant_4,यह एक बेंगन है +carrot/carrot_2,यह एक गाजर है +plum/plum_2,यह एक लाल रंग की सब्जी या फल है +potato/potato_1,यह आलू है +cucumber/cucumber_4,यह एक ककड़ी है +eggplant/eggplant_4,यह एक बेंगन है +carrot/carrot_2,यह एक गाजर है +plum/plum_2,यह एक बेर है +potato/potato_1,यह एक आलू है +cucumber/cucumber_4,यह एक खीरा है +eggplant/eggplant_4,यह एक बैंगन है +carrot/carrot_2,यह एक गाजर है +plum/plum_2,यह एक बेर है +potato/potato_1,यह एक आलू है +cucumber/cucumber_4,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +eggplant/eggplant_4,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +carrot/carrot_2,यह गाजर और सबजी के रूप में उपयोग किया जाता है +plum/plum_2,यह बेर है +potato/potato_1,ये लाल टमाटर है +cucumber/cucumber_4,ये हरी ककडी है +eggplant/eggplant_4,ये कला बैगन हैं +carrot/carrot_2,ये लाल गाजर है +plum/plum_2,ये लाल सेब है +potato/potato_1,अज्ञात वस्तु +cucumber/cucumber_4,खीरा साबजी +eggplant/eggplant_4,बंजी भरता है +carrot/carrot_2,गजर हलवा +plum/plum_2,एलो बुखारा +potato/potato_1,यह आलू का नाम है इसका उपयोग आलू मिर्च आलू चावल आलू की किस्में आलू आलू गिल आदि बनाने के लिए किया जाता है +cucumber/cucumber_4,खीरा नाम यह आंख को बहुत ठंडक देता है यह सूरज से शरीर की गर्मी को कम करता है +eggplant/eggplant_4,यह कैंची के रूप में जाना जाता है और दक्षिण भारतीय समूह में एक बहुत महत्वपूर्ण भूमिका निभाता है जिसे कथिरिका कहा जाता है शरीर के लिए बहुत अच्छा है +carrot/carrot_2,गाजर एक उच्च कीमत वाला आहार है जो ठंड को ठंडा करता है जिसमें बहुत सारा प्रोटीन होता है +plum/plum_2,यह एक नाजुक खाद्य पदार्थ है जिसे बेर कहा जाता है +potato/potato_1,यह एक आलू है +cucumber/cucumber_4,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +eggplant/eggplant_4,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +carrot/carrot_2,यह गाजर और सबजी के रूप में उपयोग किया जाता है +plum/plum_2,यह बेर है +potato/potato_1,यह बुरा रंग का वस्तु है +cucumber/cucumber_4,यह खीरा है यह रंगा का वस्तु है +eggplant/eggplant_4,यह बैंगन है यह बैंगनी का रंगा है +carrot/carrot_2,यह गाजर है यह नारंगी का रंग है +plum/plum_2,यह अनार है यह लाल रंगा है +potato/potato_1,आलू सब्जी +cucumber/cucumber_4,खीरा सब्जी +eggplant/eggplant_4,बैगन सब्जी +carrot/carrot_2,गाजर फल +plum/plum_2,बेर मीठा फल +potato/potato_1,छोटा आलू है +cucumber/cucumber_4,बड़ी हरी ककड़ी है +eggplant/eggplant_4,बड़ा बैगन है +carrot/carrot_2,लम्बी गाजर है +plum/plum_2,बहिन लेग रहा है +potato/potato_1,यह वस्तु एक गोलाकार लाल गेंद की तरह दिख रही है +cucumber/cucumber_4,यह वस्तु एक खीरा है जोकी आकार में छोटा है और गहरा हरा रंग का है इसका +eggplant/eggplant_4,यह वस्तु एक छोटा बेंगन है और इसका रंग लगभग काला है +carrot/carrot_2,यह वस्तु एक पतला गाजर है +plum/plum_2,यह वस्तु एक गोलाकार बैंगनी चीज है +potato/potato_1,इसे लाल रंग का आलू कहते है +cucumber/cucumber_4,इसे ककड़ी कहेते है +eggplant/eggplant_4,इसे बेंगन कहेते है +carrot/carrot_2,इसे गाजर कहेते है +plum/plum_2,इसे बेर कहेते है +potato/potato_1,यह स्वास्थ्य के लिए अच्छा है +cucumber/cucumber_4,यह स्वास्थ्य के लिए अच्छा है +eggplant/eggplant_4,यह स्वास्थ्य के लिए अच्छा है +carrot/carrot_2,यह स्वास्थ्य के लिए अच्छा है +plum/plum_2,यह स्वास्थ्य के लिए अच्छा है +potato/potato_1,ये आलू है +cucumber/cucumber_4,ये ककड़ी है +eggplant/eggplant_4,ये बैंगन है +carrot/carrot_2,यह चुकंदर है +plum/plum_2,ये है बैंगनी गोभी +potato/potato_1,यह एक सेब का चित्र है +cucumber/cucumber_4,यह एक खीरे का चित्र है +eggplant/eggplant_4,यह एक बैंगन का चित्र है +carrot/carrot_2,यह एक गाजर का चित्र है +plum/plum_2,यह एक सेब का चित्र है +potato/potato_1,लाल टमाटर +plum/plum_2,लाल सेवफल +cuboid/cuboid_2,हरा आयत +cube/cube_3,नीला वर्ग +eggplant/eggplant_3,गोलाकार बैंगन +potato/potato_1,यह एक आलू है +plum/plum_2,यह एक बेर है +cuboid/cuboid_2,यह एक घनाभ है +cube/cube_3,यह घन है +eggplant/eggplant_3,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +potato/potato_1,सेब के पेड़ साल में एक बार खिलते हैं रोज एक सेब खाओ डॉक्टर से दूर रहो +plum/plum_2,प्याज एक ऐसा भोजन है जिसे सभी खाद्य पदार्थों में नियमित रूप से पकाया जाता है यदि प्याज को छीलकर थोड़ा सा वेनिला के साथ छिड़का जाए तो शरीर में पानी कम हो जाएगा अधिक रक्तस्राव गायब हो जाएगा +cuboid/cuboid_2,साबुन में एक शानदार खुशबू होती है जो पूरे दिन आपके साथ रहती है स्नान साबुन में त्वचा खोपड़ी और बालों के लिए सौंदर्य गुण होते हैं +cube/cube_3,डिटर्जेंट का उपयोग बाल शैम्पू और कपड़े धोने के चूर्ण से लेकर शेविंग फोम और दाग हटाने वाले सभी चीजों में किया जाता है +eggplant/eggplant_3,बैंगन प्रतिरक्षा में वृद्धि है और शरीर को स्वस्थ रखने में मदद करता है रोजाना स्क्रब खाएं इससे हमारा सिर हमेशा मॉश्चराइज रहेगा +potato/potato_1,यह बेर है एक अंडाकार मांसल फल जो पके होने पर बैंगनी लाल या पीले रंग का होता है और इसमें एक चपटा नुकीला गड्ढा होता है +plum/plum_2,यह आलू है नाइटशेड परिवार का पौधा जो भूमिगत धावकों पर आलू कंद का उत्पादन करता है +cuboid/cuboid_2,यह घनाकार है एक ठोस जिसमें छह आयताकार चेहरे होते हैं जो एक दूसरे को समकोण बनाते हैं +cube/cube_3,यह घन है सममित त्रि आयामी आकृति या तो ठोस या खोखली जिसमें छह समान वर्ग होते हैं +eggplant/eggplant_3,यह बैंगन है एक पुरानी दुनिया के पौधे के बड़े अंडे के आकार का फल सब्जी के रूप में खाया जाता है इसकी त्वचा आमतौर पर गहरे बैंगनी रंग की होती है +potato/potato_1,यह एक सेब का चित्र है +plum/plum_2,यह एक सेब का चित्र है +cuboid/cuboid_2,यह एक साबुन का चित्र है +cube/cube_3,यह एक वर्ग के आकर का चित्र है +eggplant/eggplant_3,यह एक बैंगन का चित्र है +potato/potato_1,यह एक आलू है +plum/plum_2,यह एक बेर है +cuboid/cuboid_2,यह एक घनाभ है +cube/cube_3,यह घन है +eggplant/eggplant_3,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +potato/potato_1,यह चित्र अच्छा नहीं लगता है +plum/plum_2,यह चित्र अच्छा लग रहा है +cuboid/cuboid_2,यह चित्र आयताकार आकार में है +cube/cube_3,यह तस्वीर नीले रंग में है +eggplant/eggplant_3,इस तस्वीर का नाम बैगन है +potato/potato_1,आलू सब्जी +plum/plum_2,बेर मीठा फल +cuboid/cuboid_2,घनाभ षटफलक +cube/cube_3,घन क्षेत्र +eggplant/eggplant_3,बैगन सब्जी +potato/potato_1,यह लाल रंग की कोई सब्जी या फल है +plum/plum_2,यह लाल रंग की कोई वस्तु है +cuboid/cuboid_2,यह हरे रंग का प्लास्टिक या रबर की वस्तु है +cube/cube_3,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +eggplant/eggplant_3,यह एक बेंगन है +potato/potato_1,यह एक आलू है +plum/plum_2,यह एक बेर है +cuboid/cuboid_2,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +cube/cube_3,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +eggplant/eggplant_3,यह एक बेंगन है +potato/potato_1,ये लाल रंग का सेब है +plum/plum_2,ये लाल रंग का सेब हैं +cuboid/cuboid_2,ये हरे रंग की आयताकार वस्तु है +cube/cube_3,ये नीले रंग की वस्तु है +eggplant/eggplant_3,ये बैगन है +potato/potato_1,लाल टमाटर है +plum/plum_2,लाल टमाटर है +cuboid/cuboid_2,यह हरी वास्तु है +cube/cube_3,यह नीली वास्तु है +eggplant/eggplant_3,बैगन है यह +potato/potato_1,इसे लाल रंग का आलू कहते है +plum/plum_2,इसे बेर कहेते है +cuboid/cuboid_2,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +cube/cube_3,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +eggplant/eggplant_3,इसे बेंगन कहेते है +potato/potato_1,यह एक आलू है +plum/plum_2,यह एक बेर है +cuboid/cuboid_2,यह एक हरा घनाभ है +cube/cube_3,यह एक नीला घनक्षेत्र है +eggplant/eggplant_3,यह एक बैंगन है +potato/potato_1,यह बीट है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +plum/plum_2,यह बीट है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +cuboid/cuboid_2,यह एक घन प्रकार की वस्तु है +cube/cube_3,यह एक घन प्रकार की वस्तु है +eggplant/eggplant_3,यह बैंगन है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +potato/potato_1,यह लाल रंगा है +plum/plum_2,यह सेब है यह लाल रंगा है +cuboid/cuboid_2,यह हरा रंग का वस्तु है +cube/cube_3,यह नीला रंगा का वस्तु है +eggplant/eggplant_3,यह बैंगन है यह बैंगनी का रंगा है +eggplant/eggplant_2,ये कला रंग का बेगन हैयह एक सब्जी है +cube/cube_4,ये लाल रंग का चोकोर है +plum/plum_2,ये लाल सेब है +lime/lime_1,ये हरे रंग की गोल वस्तु है +carrot/carrot_4,ये गाजर है इसकी रंग लाल है +eggplant/eggplant_2,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +cube/cube_4,यह घन है +plum/plum_2,यह एक बेर है +lime/lime_1,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +carrot/carrot_4,यह गाजर और सबजी के रूप में उपयोग किया जाता है +eggplant/eggplant_2,बैंगन एक नाजुक उष्णकटिबंधीय बारहमासी पौधा है +cube/cube_4,क्यूब ऑक्टाहेड्रोन से दोहरी है +plum/plum_2,बेर फल में धूल सफेद मोमी कोटिंग हो सकती है +lime/lime_1,यह चूना हरा है +carrot/carrot_4,गाजर जंगली गाजर का घरेलू रूप है +eggplant/eggplant_2,इसे बेंगन कहेते है +cube/cube_4,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +plum/plum_2,इसे बेर कहेते है +lime/lime_1,इसे नींबू कहेते है +carrot/carrot_4,इसे गाजर कहेते है +eggplant/eggplant_2,बैंगन की सब्जी खाने के ताकत मिलती है +cube/cube_4,यह एक लाल रंग का डब्बा नजर आ रहे हैं +plum/plum_2,सेब खाने से जुलाब बंद होता है +lime/lime_1,हरा नींबू खाने में थोड़ा कड़वा लगता है +carrot/carrot_4,गाजर का हलवा मुझे बहुत अच्छा लगता है +eggplant/eggplant_2,बैगन सब्जी +cube/cube_4,घन क्षेत्र +plum/plum_2,बेर फल +lime/lime_1,काग़ज़ी नींबू +carrot/carrot_4,गाजर फल +eggplant/eggplant_2,यह एक लम्बा पतला बैंगनी रंग का बैंगन है +cube/cube_4,यह एक घन नुमा लाल रंग की कोई वस्तु है +plum/plum_2,यह एक आलूबुखारा जैसा दिखने वाला फल है जोकि दिखने में लाल रंग का है +lime/lime_1,यह एक हरा छोटा नींबू है +carrot/carrot_4,यह एक आढ़ा तिरछा गाजर है +eggplant/eggplant_2,यह एक बैंगन का चित्र है +cube/cube_4,यह एक वर्ग के आकर का चित्र है +plum/plum_2,यह एक सेब का चित्र है +lime/lime_1,यह एक अमरुद का चित्र है +carrot/carrot_4,यह एक गाजर का चित्र है +eggplant/eggplant_2,यह एक बेंगन है +cube/cube_4,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +plum/plum_2,यह एक बेर है +lime/lime_1,यह एक हरा नींबू है +carrot/carrot_4,यह एक गाजर है +eggplant/eggplant_2,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +cube/cube_4,यह घन है +plum/plum_2,यह एक बेर है +lime/lime_1,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +carrot/carrot_4,यह गाजर और सबजी के रूप में उपयोग किया जाता है +eggplant/eggplant_2,बैंगन की काई +cube/cube_4,लोमड़ी की काई +plum/plum_2,रूट को हराया +lime/lime_1,एक प्रकार की समुद्री मछली +carrot/carrot_4,गाजर की काई +eggplant/eggplant_2,इसे बैंगन कहा जाता है जिसे हर कोई पसंद करता है +cube/cube_4,यह लाल रंग चौकोर आकार में है +plum/plum_2,यह स्पष्ट रूप से नहीं दिखता है +lime/lime_1,यह हरे रंग में है +carrot/carrot_4,इसे गाजर कहा जाता है हर कोई इसे पसंद करता है और स्वास्थ्य के लिए अच्छा होता है +eggplant/eggplant_2,यह बैगन की सब्जी है +cube/cube_4,लाल चौकोर चीज है +plum/plum_2,यह शलजम है +lime/lime_1,अंगूर है +carrot/carrot_4,गाज्जर है +eggplant/eggplant_2,यह एक बैंगन है +cube/cube_4,यह एक लाल घनक्षेत्र है +plum/plum_2,यह एक बेर है +lime/lime_1,यह एक कच्चा निम्बू है +carrot/carrot_4,यह एक गाजर है +eggplant/eggplant_2,यह बैंगन है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +cube/cube_4,यह एक घन प्रकार की वस्तु है +plum/plum_2,यह बीट है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +lime/lime_1,यह नींबू है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +carrot/carrot_4,यह गाजर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +eggplant/eggplant_2,यह एक बेंगन है +cube/cube_4,यह लाल रंग की कोई वस्तु है +plum/plum_2,यह कोई सब्जी या फल है +lime/lime_1,यह हरे रंग की कोई सब्जी या फल है +carrot/carrot_4,यह गाजर है +triangle/triangle_1,लाल त्रिकोड़े +potato/potato_3,यह आलू है +cube/cube_1,पीला चौकोर वास्तु है +banana/banana_1,यह केला है +arch/arch_4,लाल सी वास्तु है +triangle/triangle_1,यह त्रिकोण आकार में है +potato/potato_3,आलू सेहत के लिए अच्छा होता है +cube/cube_1,यह चौकोर आकार में है +banana/banana_1,यह स्वास्थ्य के लिए अच्छा है +arch/arch_4,यह लाल रंग में है +triangle/triangle_1,यह एक शो पीस उत्पाद है +potato/potato_3,यह आलू है +cube/cube_1,यह आइस क्रीम का टुकड़ा है +banana/banana_1,यह केला है +arch/arch_4,यह आइस क्रीम का टुकड़ा है +triangle/triangle_1,लाल त्रिकोण +potato/potato_3,आलू जैसा +cube/cube_1,पीला वर्ग +banana/banana_1,पीला केला +arch/arch_4,लाल अर्ध वर्गाकार वस्तु +triangle/triangle_1,यह एक घन प्रकार की वस्तु है +potato/potato_3,यह आलू है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +cube/cube_1,यह एक घन प्रकार की वस्तु है +banana/banana_1,यह केला है और इसका उपयोग विभिन्न व्यंजनों को तैयार करने के लिए किया जाता है +arch/arch_4,यह एक घनाकार वस्तु है +triangle/triangle_1,यह लाल रंग का त्रिकोण है +potato/potato_3,यह आलू है +cube/cube_1,यह पीला रंग है +banana/banana_1,यह केला है +arch/arch_4,यह लाल रंग है +triangle/triangle_1,यह एक लाल त्रिकोण है +potato/potato_3,यह एक आलू है +cube/cube_1,यह एक पीला घनक्षेत्र है +banana/banana_1,यह एक केला है +arch/arch_4,यह एक लाल मेहराब है +triangle/triangle_1,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +potato/potato_3,यह आलू है +cube/cube_1,यह कोई पीले रंग का रब्बर का टुकड़ा है +banana/banana_1,यह एक केला है +arch/arch_4,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +triangle/triangle_1,यह एक त्रिकोण के आकर का चित्र है +potato/potato_3,यह एक आलू का चित्र है +cube/cube_1,यह एक वर्ग के आकर का चित्र है +banana/banana_1,यह एक केले का चित्र है +arch/arch_4,यह एक साबुन का चित्र है +triangle/triangle_1,यह लाल रंग की रबर या प्लास्टिक की कोई वस्तु है +potato/potato_3,यह आलू है +cube/cube_1,यह पीले रंग का प्लास्टिक या रबर की कोई वस्तु है +banana/banana_1,यह एक केला है +arch/arch_4,यह लाल रंग की प्लास्टिक या रबर की कोई वस्तु है +triangle/triangle_1,यह एक त्रिकोण है +potato/potato_3,यह एक आलू है +cube/cube_1,यह घन है +banana/banana_1,यह एक केला है +arch/arch_4,यह एक आर्च है +triangle/triangle_1,लाल रंग का त्रिभुज +potato/potato_3,आलू सब्जी +cube/cube_1,घन क्षेत्र +banana/banana_1,केला फल +arch/arch_4,मेहराब वृत्त खंड +triangle/triangle_1,यह एक त्रिकोण है +potato/potato_3,यह एक आलू है +cube/cube_1,यह घन है +banana/banana_1,यह एक केला है +arch/arch_4,यह एक आर्च है +triangle/triangle_1,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +potato/potato_3,इसे आलू कहेते है +cube/cube_1,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +banana/banana_1,इसे केला कहेते है +arch/arch_4,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +triangle/triangle_1,यह एक लाल रंग का सही कोण त्रिकोण हे +potato/potato_3,यह एक पीले रंग का स्पंज हे +cube/cube_1,यह एक पीले रंग का घनक्षेत्र हे +banana/banana_1,यह एक पीले रंग का केले का चित्र हे +arch/arch_4,यह एक ऐसी आकृती हे मानो एक लाल रंग का घनाभ के बीच से एक आधा क्षेत्र निकाल दिया हो +triangle/triangle_1,यह एक त्रिकोणीय संक्षेत्रनुमा लाल रंग की वस्तु है +potato/potato_3,यह एक अंडाकार आलू है और इसका रंग हल्का भूरा है +cube/cube_1,यह एक घन नुमा पीले रंग की कोई वस्तु है +banana/banana_1,यह एक पीला पका हुआ केला है +arch/arch_4,यह एक मेहराब नुमा लाल रंग की वस्तु है +triangle/triangle_1,ये लाल रंग की वस्तु है +potato/potato_3,ये आलु है +cube/cube_1,ये पीले रंग की चौकोर वस्तु है +banana/banana_1,ये पीले रंग का केला है +arch/arch_4,ये लाल रंग की वस्तु है +carrot/carrot_1,यह गाजर है जो की एक सब्ज़ी का नाम है यह लाल काली नारंगी कई रंगों में मिलती है यह पौधे की मूल जड़ होती है +cabbage/cabbage_3,यह एक काले रंग का पत्ता गोभी प्रतीत हो रहा है जो के एक प्रकार की सब्जी होती है +triangle/triangle_4,यह एक ठोस आकर की वस्तु है जो नीले रंग की है यह आगे से एक आयत के आकर की है तथा पीछे से इसका आकर एक सम कोण त्रिभुज की तरह है +orange/orange_4,यह एक संतरा है जो की नारंगी रंग का होता है यह एक प्रकार का फल होता है +corn/corn_4,यह मकई है जिसे भुट्टा या मक्का भी कहते है यह एक प्रमुख फसल है यह वस्तुतः बारिश के मौसम में बहुतायत में मिलते है +carrot/carrot_1,इसे गाजर कहा जाता है जो स्वास्थ्य के लिए अच्छा है +cabbage/cabbage_3,यह तस्वीर स्पष्ट नहीं है +triangle/triangle_4,यह तस्वीर नीले रंग में है +orange/orange_4, जो स्वास्थ्य के लिए अच्छा है +corn/corn_4,इसे मक्का कहा जाता है जो स्वास्थ्य के लिए अच्छा है +carrot/carrot_1,यह गाजर और सबजी के रूप में उपयोग किया जाता है +cabbage/cabbage_3,यह एक गोभी है +triangle/triangle_4,यह एक त्रिकोण है +orange/orange_4,यह एक संतरा है +corn/corn_4,यह एक गोभी है +carrot/carrot_1,यह गाजर है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +cabbage/cabbage_3,यह फूलगोभी है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +triangle/triangle_4,यह एक घन प्रकार की वस्तु है +orange/orange_4,यह टमाटर है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +corn/corn_4,यह मकई है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +carrot/carrot_1,गाजर गर्भनिरोधक परिवार एपियासी में एक द्विवार्षिक पौधा है +cabbage/cabbage_3,गोभी खाने के लिए कई अलग अलग तरीके तैयार किए जाते हैं +triangle/triangle_4,त्रिकोण को कई तरीकों से खींचा जा सकता है +orange/orange_4,नारंगी के पेड़ अपने मीठे फल के लिए उष्णकटिबंधीय और उपोष्णकटिबंधीय जलवायु में व्यापक रूप से उगाए जाते हैं +corn/corn_4,पूरे अमेरिका में मक्का सबसे अधिक पाई जाने वाली अनाज की फसल है +carrot/carrot_1,मूली खाने के बहुत फायदे हैं ताजा मूली खाने से पाचनशक्ति बढती है +cabbage/cabbage_3,बंद गोभी एक प्रकार का शाक सब्जी है जिसमें केवल कोमल पत्तों का बँधा हुआ संपुट होता है +triangle/triangle_4,ये समझ में नहीं आ रहा है +orange/orange_4,नीबू छोटा पेड़ अथवा सघन झाड़ीदार पौधा है इसकी शाखाएँ काँटेदार पत्तियाँ छोटी डंठल पतला तथा पत्तीदार होता है +corn/corn_4,मक्का एक ऐसा खाद्यान्न है जो मोटे अनाज की श्रेणी में आता तो है परंतु इसकी पैदावार पिछले दशक में भारत में एक महत्त्वपूर्ण फसल के रूप में मोड़ ले चुकी है क्योंकि यह फसल सभी मोटे व प्रमुख खाद्दानो की बढ़ोत्तरी दर में सबसे अग्रणी है +carrot/carrot_1,यह एक गाजर का चित्र है +cabbage/cabbage_3,यह एक बंदगोभी का चित्र है +triangle/triangle_4,यह एक त्रिकोण के आकर का चित्र है +orange/orange_4,यह एक संतरे का चित्र है +corn/corn_4,यह एक भुट्टे का चित्र है +carrot/carrot_1,यह एक गाजर है +cabbage/cabbage_3,यह गोभी है +triangle/triangle_4,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +orange/orange_4,यह एक संतरा है +corn/corn_4,यह मक्के का भुट्टा है +carrot/carrot_1,इसे गाजर कहेते है +cabbage/cabbage_3,इसे गोभी कहेते है +triangle/triangle_4,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +orange/orange_4,इसे संतरा कहेते है +corn/corn_4,इसे मक्के का भुट्टा कहेते है +carrot/carrot_1,यह एक गाजर है +cabbage/cabbage_3,यह एक पत्तागोभी है +triangle/triangle_4,यह एक त्रिकोण है +orange/orange_4,यह एक संतरा है +corn/corn_4,यह एक मक्का है +carrot/carrot_1,यह गाजर और सबजी के रूप में उपयोग किया जाता है +cabbage/cabbage_3,यह एक गोभी है +triangle/triangle_4,यह एक त्रिकोण है +orange/orange_4,यह एक संतरा है +corn/corn_4,यह एक मकई है +carrot/carrot_1,नाम है गाजर यह पहाड़ी क्षेत्रों में बढ़ सकता है इसका उपयोग दही केसरी आदि में किया जाता है पनीर को सब्जी की मिट्टी के नीचे स्वाद के लिए सस्ता किया जाता है +cabbage/cabbage_3,नूडल्स बनाने में गोभी की बहुत महत्वपूर्ण भूमिका है +triangle/triangle_4,इसे एक त्रिकोण कहा जाता है और इसका उपयोग बच्चों के लिए आकार दिखाने के लिए किया जाता है जब वे कक्षाएं लेते हैं +orange/orange_4,संतरे का फल यह एक फल की तुलना में थोड़ा अधिक महंगा है इसका स्वाद बहुत अच्छा है इसका रस खट्टा है +corn/corn_4,सोरघम जो एक अल्पकालिक फसल है पानी में खाया जाता है और बहुत ही बेस्वाद होता है +carrot/carrot_1,यह एक लंबी पतली गाजर है +cabbage/cabbage_3,यह बैंगनी पत्ता गोभी है +triangle/triangle_4,यह त्रिकोणीय नीली वस्तु है +orange/orange_4,यह एक पीला निम्बू है +corn/corn_4,यह एक छिला हुआ भुट्टा है +carrot/carrot_1,ये लाल रंग का गाजर है +cabbage/cabbage_3,ये बेंगनी रंग की पत्तागोभी है +triangle/triangle_4,ये गहरे नीले रंग की वस्तु है +orange/orange_4,ये पीले रंग का संतरा है +corn/corn_4,ये मक्का हैंइसका सूप बनाया जाता है +carrot/carrot_1,गाजर फल +cabbage/cabbage_3,गोभी सब्जी +triangle/triangle_4,त्रिभुज तीन भुजाओ का +orange/orange_4,संतरा फल +corn/corn_4,मकाई का भुट्टा +carrot/carrot_1,यह एक गाजर है +cabbage/cabbage_3,यह गोभी है +triangle/triangle_4,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +orange/orange_4,यह एक पिला नींबू है +corn/corn_4,यह मक्के का भुट्टा है +carrot/carrot_1,यह टेडी गाजर है +cabbage/cabbage_3,यह लाल गोबी है +triangle/triangle_4,नीला त्रिकोड़े है +orange/orange_4,यह पीला निम्बू है +corn/corn_4,यह देसी सफेद भुट्टा है +carrot/carrot_3,यह एक गाजर है +lime/lime_4,यह एक कच्चा निम्बू है +eggplant/eggplant_2,यह एक बैंगन है +lime/lime_3,यह एक कच्चा निम्बू है +cucumber/cucumber_2,यह एक खीरा है +carrot/carrot_3,देसी गाजर है +lime/lime_4,हरा निम्बो है +eggplant/eggplant_2,बैगन की सब्जी है +lime/lime_3,अंगूर है हरा +cucumber/cucumber_2,लम्बी हरी ककड़ी है +carrot/carrot_3,यह एक आढ़ा तिरछा गाजर है +lime/lime_4,यह एक हरा छोटा का नींबू है +eggplant/eggplant_2,यह एक लम्बा पतला बैंगनी रंग का बैंगन है +lime/lime_3,यह एक हरा छोटा का नींबू है +cucumber/cucumber_2,यह एक हरा पतला खीरा है +carrot/carrot_3,यह गाजर है +lime/lime_4,हरा रंग का अमरूद +eggplant/eggplant_2,यह बैंगन है +lime/lime_3,यह हरे रंग का फ़ल है +cucumber/cucumber_2,यह खीरा है +carrot/carrot_3,यह गाजर है जो स्वास्थ्य के लिए अच्छा है +lime/lime_4,यह चित्र हरे रंग में दिखाई देता है +eggplant/eggplant_2,यह बैंगन है +lime/lime_3,यह चित्र हरे रंग में दिखाई देता है +cucumber/cucumber_2,यह चित्र हरे रंग में दिखाई देता है +carrot/carrot_3,गाजर फल +lime/lime_4,काग़ज़ी नींबू +eggplant/eggplant_2,बैगन सब्जी +lime/lime_3,काग़ज़ी नींबू +cucumber/cucumber_2,खीरा सब्जी +carrot/carrot_3,इसे गाजर कहेते है +lime/lime_4,इसे नींबू कहेते है +eggplant/eggplant_2,इसे बेंगन कहेते है +lime/lime_3,इसे नींबू कहेते है +cucumber/cucumber_2,इसे ककड़ी कहेते है +carrot/carrot_3,यह गाजर और सबजी के रूप में उपयोग किया जाता है +lime/lime_4,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +eggplant/eggplant_2,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +lime/lime_3,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +cucumber/cucumber_2,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +carrot/carrot_3,इसको गाजर कहा जाता है +lime/lime_4,इसको नींबू कहा जाता है +eggplant/eggplant_2,इसको बेंगन कहा जाता है +lime/lime_3,इसको नींबू कहा जाता है +cucumber/cucumber_2,इसको ककड़ी कहा जाता है +carrot/carrot_3,ये लाल रंग का गाजर है +lime/lime_4,ये हरे रंग का अमरूद है +eggplant/eggplant_2,ये बैगन है +lime/lime_3,ये हरे रंग की वस्तु है +cucumber/cucumber_2,ये हरी काकड़ी है +carrot/carrot_3,यह एक गाजर है +lime/lime_4,यह हरे रंग की कोई सब्जी या फल है +eggplant/eggplant_2,यह एक बेंगन है +lime/lime_3,यह हरे रंग की कोई सब्जी या फल है +cucumber/cucumber_2,यह एक ककड़ी है +carrot/carrot_3,यह गाजर है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +lime/lime_4,यह नींबू है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +eggplant/eggplant_2,यह बैंगन है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +lime/lime_3,यह नींबू है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +cucumber/cucumber_2,यह ककड़ी है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +carrot/carrot_3,एक नारंगी रंग का गाजर +lime/lime_4,एक छोटा हरा नींबू +eggplant/eggplant_2,एक बैंगन +lime/lime_3,एक छोटा हरा नींबू +cucumber/cucumber_2,एक ककड़ी +carrot/carrot_3,यह गाजर है यह नारंगी का रंग है +lime/lime_4,यह हरा रंग का वस्तु है +eggplant/eggplant_2,यह बैंगन है यह बैंगनी का रंगा है +lime/lime_3,यह हरा रंग का वस्तु है +cucumber/cucumber_2,यह खीरा है यह रंगा का वस्तु है +carrot/carrot_3,यह गाजर और सबजी के रूप में उपयोग किया जाता है +lime/lime_4,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +eggplant/eggplant_2,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +lime/lime_3,यह नींबू है और सलाद में भी इस्तेमाल किया जाता है और एक नींबू पानी के रूप में उपयोग किया जाता है +cucumber/cucumber_2,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +carrot/carrot_3,यह एक गाजर का चित्र है +lime/lime_4,यह एक अमरुद का चित्र है +eggplant/eggplant_2,यह एक बैंगन का चित्र है +lime/lime_3,यह एक अमरुद का चित्र है +cucumber/cucumber_2,यह एक खीरे का चित्र है +cucumber/cucumber_4,हरी ककड़ी है +cucumber/cucumber_3,हरी ककड़ी है +cube/cube_1,यह पिली वास्तु है +cylinder/cylinder_3,यह नीली वास्तु है +banana/banana_3,यह केला है +cucumber/cucumber_4,खीरा साबजी +cucumber/cucumber_3,खीरा साबजी +cube/cube_1,चोकोर ला +cylinder/cylinder_3,सिलेंडर का रूप +banana/banana_3,कीला खा +cucumber/cucumber_4,खीरा शरीर के लिए एक बेहतरीन मिर्च है +cucumber/cucumber_3,खीरा शरीर के लिए एक बेहतरीन मिर्च है +cube/cube_1,यह एक चौकोर आकार की वस्तु है +cylinder/cylinder_3,नाम सिलेंडर का उपयोग शिक्षकों के लिए किया जाता है जब यह सिखाता है और पाठ बनाता है +banana/banana_3,केला एक ऐसा खाद्य पदार्थ है जो भोजन के पाचन संबंधी विकारों के लिए इसे आदर्श बनाता है +cucumber/cucumber_4,यह एक ककड़ी है +cucumber/cucumber_3,यह एक ककड़ी है +cube/cube_1,यह एक पीले रंग की प्लास्टिक या रबर की कोई वस्तु है +cylinder/cylinder_3,यह नील रंग की प्लास्टिक या रबर की लंबगोल वस्तु है +banana/banana_3,यह एक केला है +cucumber/cucumber_4,यह ककड़ी है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +cucumber/cucumber_3,यह ककड़ी है और इसका उपयोग विभिन्न व्यंजन तैयार करने के लिए किया जाता है +cube/cube_1,यह एक घन प्रकार की वस्तु है +cylinder/cylinder_3,यह एक घन प्रकार की वस्तु है +banana/banana_3,यह केला है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +cucumber/cucumber_4,यह एक ककड़ी है +cucumber/cucumber_3,यह एक ककड़ी है +cube/cube_1,यह कोई पीले रंग का रब्बर का टुकड़ा है +cylinder/cylinder_3,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +banana/banana_3,यह एक केला है +cucumber/cucumber_4,यह एक खीरे का चित्र है +cucumber/cucumber_3,यह एक खीरे का चित्र है +cube/cube_1,यह एक वर्ग के आकर का चित्र है +cylinder/cylinder_3,यह एक बेलन के आकर का चित्र है +banana/banana_3,यह एक केले का चित्र है +cucumber/cucumber_4,यह एक हरा पतला खीरा है +cucumber/cucumber_3,यह एक हरा पतला खीरा है +cube/cube_1,यह एक घन नुमा पीले रंग की कोई वस्तु है +cylinder/cylinder_3,यह एक नीले रंग की और बेलननुमा आकार की वस्तु है +banana/banana_3,यह एक पीला पका हुआ केला है +cucumber/cucumber_4,यह एक खीरा है +cucumber/cucumber_3,यह एक खीरा है +cube/cube_1,यह एक पीला घनक्षेत्र है +cylinder/cylinder_3,यह एक नीला सिलेंडर है +banana/banana_3,यह एक केला है +cucumber/cucumber_4,यह एक खीरे का चित्र हे +cucumber/cucumber_3,यह एक खीरे का चित्र हे +cube/cube_1,यह एक पीले रंग का घनक्षेत्र का चित्र हे +cylinder/cylinder_3,यह एक नीले रंग का बेलनाकार वस्तु का चित्र हे +banana/banana_3,यह एक पीले रंग का केले का चित्र हे +cucumber/cucumber_4,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +cucumber/cucumber_3,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +cube/cube_1,यह घन है +cylinder/cylinder_3,यह सिलेंडर है +banana/banana_3,यह एक केला है +cucumber/cucumber_4,इसे ककड़ी कहेते है +cucumber/cucumber_3,इसे ककड़ी कहेते है +cube/cube_1,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +cylinder/cylinder_3,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +banana/banana_3,इसे केला कहेते है +cucumber/cucumber_4,ये हरि ककड़ी है +cucumber/cucumber_3,ये हरी ककडी है +cube/cube_1,ये पीले रंग का चौकोर है +cylinder/cylinder_3,ये नीले रंग का सिलिंडर है +banana/banana_3,ये पीला केला है +cucumber/cucumber_4,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +cucumber/cucumber_3,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +cube/cube_1,यह एक पासा है +cylinder/cylinder_3,इस वॉशिंग सोप है +banana/banana_3,यह एक केला है +cucumber/cucumber_4,खीरा सब्जी +cucumber/cucumber_3,खीरा सब्जी +cube/cube_1,घन क्षेत्र +cylinder/cylinder_3,नीले रंग का बेलन +banana/banana_3,केला फल +cucumber/cucumber_4,यह स्वास्थ्य के लिए अच्छा है +cucumber/cucumber_3,यह स्वास्थ्य के लिए अच्छा है +cube/cube_1,यह पीले रंग में है +cylinder/cylinder_3,यह नीले रंग में है +banana/banana_3,यह स्वास्थ्य के लिए अच्छा है +carrot/carrot_3,इसको गाजर कहा जाता है +banana/banana_3,इसको केला कहा जाता है +cylinder/cylinder_1,यह कोई पीले रंग का रब्बर का टुकड़ा है +semicylinder/semicylinder_1,ये नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +cabbage/cabbage_1,इसको गोभी कहा जाता है +carrot/carrot_3,यह गाजर और सबजी के रूप में उपयोग किया जाता है +banana/banana_3,यह एक केला है +cylinder/cylinder_1,यह एक सिलेंडर है +semicylinder/semicylinder_1,यह एक अर्ध सिलेंडर है +cabbage/cabbage_1,यह एक गोभी है +carrot/carrot_3,गाजर फल +banana/banana_3,केला फल +cylinder/cylinder_1,पीले रंग का बेलन +semicylinder/semicylinder_1,अर्द्ध बेलन +cabbage/cabbage_1,गोभी सब्जी +carrot/carrot_3,यह गाजर और सबजी के रूप में उपयोग किया जाता है +banana/banana_3,यह केला है +cylinder/cylinder_1,यह स्पष्ट नहीं है +semicylinder/semicylinder_1,यह प्लास्टिक ड्रम का आधा हिस्सा है +cabbage/cabbage_1,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +carrot/carrot_3,यह एक गाजर है +banana/banana_3,यह एक केला है +cylinder/cylinder_1,यह एक पीला सिलेंडर है +semicylinder/semicylinder_1,यह एक नीला अर्ध सिलेंडर है +cabbage/cabbage_1,यह एक पत्तागोभी है +carrot/carrot_3,यह एक गाजर का चित्र है +banana/banana_3,यह एक केले का चित्र है +cylinder/cylinder_1,यह एक बेलन के आकर का चित्र है +semicylinder/semicylinder_1,यह एक साबुन का चित्र है +cabbage/cabbage_1,यह एक बंदगोभी का चित्र है +carrot/carrot_3, जो स्वास्थ्य के लिए अच्छा है +banana/banana_3, जो स्वास्थ्य के लिए अच्छा है +cylinder/cylinder_1,यह तस्वीर पीले रंग में दिखाई देती है +semicylinder/semicylinder_1,यह चित्र नीले रंग में दिखाई देता है +cabbage/cabbage_1,यह तस्वीर अच्छी तरह से दिखाई नहीं देती है +carrot/carrot_3,गाजर एक सब्जी है +banana/banana_3,केला एक फल है +cylinder/cylinder_1,वस्तु का रंग पीला है +semicylinder/semicylinder_1,वस्तु का रंग नीला है +cabbage/cabbage_1,वस्तु ठोस है +carrot/carrot_3,लम्बी गाजार है +banana/banana_3,लम्बा केला है +cylinder/cylinder_1,कुछ पीला गोल आकर का है +semicylinder/semicylinder_1,कुछ नीला अर्ध गोल आकर का है +cabbage/cabbage_1,लाल गोभी है +carrot/carrot_3,ये लाल रंग का गाजर है +banana/banana_3,ये पीले रंग का केला हैं +cylinder/cylinder_1,ये पीले रंग की वस्तु है +semicylinder/semicylinder_1,ये नीले रंग की वस्तु है +cabbage/cabbage_1,ये बेंगनी रंग की पत्तागोभी है +carrot/carrot_3,गाजर एक उच्च कीमत वाला आहार है जो ठंड को ठंडा करता है जिसमें बहुत सारा प्रोटीन होता है +banana/banana_3,केला एक अच्छा खाद्य उत्पाद है जिसका उपयोग पाचन विकार वाले लोगों के लिए एक अच्छी दवा के रूप में किया जाता है इसका उपयोग पंजम्रीम तैयार करने के लिए भी किया जाता है +cylinder/cylinder_1,अर्ध बेलनाकार रूपों का उपयोग उन सूत्रों के लिए किया जाता है जो सूत्रों के लिए उपयोग किए जाते हैं +semicylinder/semicylinder_1,अर्ध बेलनाकार रूपों का उपयोग उन सूत्रों के लिए किया जाता है जो सूत्रों के लिए उपयोग किए जाते हैं +cabbage/cabbage_1,गोभी को पकाया जाता है और धागे में उपयोग किया जाता है +carrot/carrot_3,इसे गाजर कहेते है +banana/banana_3,इसे केला कहेते है +cylinder/cylinder_1,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +semicylinder/semicylinder_1,नीले रंग की प्लास्टिक या रबर की कोई चीज़ है +cabbage/cabbage_1,इसे गोभी कहेते है +carrot/carrot_3,यह गाजर है और इसका उपयोग सलाद और अन्य व्यंजन बनाने में किया जाता है +banana/banana_3,यह केला है और इसका उपयोग विभिन्न व्यंजनों में किया जाता है +cylinder/cylinder_1,यह एक घन प्रकार की वस्तु है +semicylinder/semicylinder_1,यह एक घन प्रकार की वस्तु है +cabbage/cabbage_1,यह फूलगोभी है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +carrot/carrot_3,यह गाजर है +banana/banana_3,यह केला है +cylinder/cylinder_1,यह पीला रंग है +semicylinder/semicylinder_1,यह नीला रंग है +cabbage/cabbage_1,यह एक सब्जी है +carrot/carrot_3,यह एक गाजर का चित्र हे +banana/banana_3,यह एक पीले रंग का केला हे +cylinder/cylinder_1,यह एक पीले रंग का बेलनाकार वस्तु का चित्र हे +semicylinder/semicylinder_1,यह एक नीले रंग का आधा क्षेत्र हे +cabbage/cabbage_1,यह एक बैंगनी रंग का बंद गोबी का चित्र हे +carrot/carrot_3,यह एक गाजर है +banana/banana_3,यह एक केला है +cylinder/cylinder_1,यह एक पीले रंग की प्लास्टिक या रबर की कोई वस्तु है +semicylinder/semicylinder_1,यह नीले रंग की प्लास्टिक या रबर की कोई वस्तु है +cabbage/cabbage_1,यह गोभी है +potato/potato_2,यह एक आलू है +semicylinder/semicylinder_2,यह एक अर्ध सिलेंडर है +cylinder/cylinder_1,यह एक सिलेंडर है +arch/arch_1,यह एक आर्च है +cylinder/cylinder_2,यह एक सिलेंडर है +potato/potato_2,यह चीकू है +semicylinder/semicylinder_2,यह लाल रंग है +cylinder/cylinder_1,यह पीला रंग है +arch/arch_1,यह पीला रंग है +cylinder/cylinder_2,यह लाल रंग है +potato/potato_2,इसे पेस्ट बनाने के लिए आलू के साथ किया जा सकता है अलुवा परोता शोरबा बना सकते हैं +semicylinder/semicylinder_2,यह टमाटर फल खाना पकाने के लिए एक बहुत ही महत्वपूर्ण घटक है हमारे भोजन को खाना बनाना और आना संभव नहीं है +cylinder/cylinder_1,यह एक सिलेंडर मॉडल है यह देखने के लिए कि यह कैसा दिखेगा +arch/arch_1,यह देखने में पीले रंग के एक अर्चि मॉडल की तरह लगता है +cylinder/cylinder_2,यह एक लाल रंग नहीं लगता है और रोलर के रूप में इस्तेमाल किया जा सकता है +potato/potato_2,इसमें वस्तु नहीं है +semicylinder/semicylinder_2,यह एक लाल रंगा का वस्तु है +cylinder/cylinder_1,यह पीला का वस्तु है +arch/arch_1,यह पीला का वस्तु है +cylinder/cylinder_2,यह लाल रंगा है +potato/potato_2,ये लाल टमाटर है +semicylinder/semicylinder_2,ये लाल रंग की वस्तु है +cylinder/cylinder_1,यव पीला रंग की वस्तु है +arch/arch_1,ये पीले रंग की वस्तु है +cylinder/cylinder_2,ये लाल रंग की सिलेन्डर आकार की वस्तु है +potato/potato_2,यह वस्तु एक अंगूर की तरह दिखती है बहुत लोकप्रिय फल +semicylinder/semicylinder_2,यह ऑब्जेक्ट लाल है और आधा सर्कल की तरह दिखता है +cylinder/cylinder_1,यह ऑब्जेक्ट पीला है और सिलेंडर के रूप में है +arch/arch_1,यह ऑब्जेक्ट पीला है और एक अवसाद प्रतीत होता है +cylinder/cylinder_2,यह वस्तु सिलेंडर के रूप में है +potato/potato_2,यह एक अंडाकार आलू है और इसका रंग लाल है +semicylinder/semicylinder_2,यह एक लाल रंग की और अर्ध बेलननुमा आकार की वस्तु है +cylinder/cylinder_1,यह एक पीले रंग की और बेलननुमा आकार की वस्तु है +arch/arch_1,यह एक उलटी मेहराब नुमा पीले रंग की वस्तु है +cylinder/cylinder_2,यह एक लाल रंग की और बेलननुमा आकार की वस्तु है +potato/potato_2,यह आम है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +semicylinder/semicylinder_2,यह एक घनाकार वस्तु है +cylinder/cylinder_1,यह एक घनाकार वस्तु है +arch/arch_1,यह एक घनाकार वस्तु है +cylinder/cylinder_2,यह एक घनाकार वस्तु है +potato/potato_2,यह एक टमाटर का चित्र हे +semicylinder/semicylinder_2,यह एक लाल रंग का आधा क्षेत्र का चित्र हे +cylinder/cylinder_1,यह एक पीले रंग का बेलनाकार वस्तु का चित्र हे +arch/arch_1,यह एक ऐसी आकृती हे मानो एक पीले रंग का घनाभ के बीच से एक आधा क्षेत्र निकाल दिया हो +cylinder/cylinder_2,यह एक लाल रंग का बेलनाकार वस्तु का चित्र हे +potato/potato_2,इसे लाल रंग का आलू कहते है +semicylinder/semicylinder_2,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +cylinder/cylinder_1,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +arch/arch_1,पीले रंग की प्लास्टिक या रबर की कोई चीज़ है +cylinder/cylinder_2,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +potato/potato_2,यह तस्वीर लाल रंग की है +semicylinder/semicylinder_2,यह तस्वीर लाल रंग की है +cylinder/cylinder_1,यह तस्वीर पीले रंग में है +arch/arch_1,यह तस्वीर पीले रंग में है +cylinder/cylinder_2,यह तस्वीर लाल रंग की है +potato/potato_2,आलू है +semicylinder/semicylinder_2,कुछ लाल सा अर्ध गोल वास्तु है +cylinder/cylinder_1,पिल्ली बेलनुमा आकर की वास्तु है +arch/arch_1,पिल्ली सी वास्तु है +cylinder/cylinder_2,लाल बेलनुमा आकर की वास्तु है +potato/potato_2,आलू सब्जी +semicylinder/semicylinder_2,अर्द्ध बेलन +cylinder/cylinder_1,पीले रंग का बेलन +arch/arch_1,घनाभ षटफलक +cylinder/cylinder_2,लाल रंग का बेलन +potato/potato_2,यह एक सेब का चित्र है +semicylinder/semicylinder_2,यह एक साबुन का चित्र है +cylinder/cylinder_1,यह एक बेलन के आकर का चित्र है +arch/arch_1,यह एक साबुन का चित्र है +cylinder/cylinder_2,यह एक बेलन के आकर का चित्र है +potato/potato_2,यह एक आलू है +semicylinder/semicylinder_2,यह एक लाल अर्द्ध सिलेंडर है +cylinder/cylinder_1,यह एक पीला सिलेंडर है +arch/arch_1,यह एक पीला मेहराब है +cylinder/cylinder_2,यह एक लाल सिलेंडर है +potato/potato_2,यह आलू है +semicylinder/semicylinder_2,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +cylinder/cylinder_1,यह कोई पीले रंग का रब्बर का टुकड़ा है +arch/arch_1,यह कोई पीले रंग का रब्बर का टुकड़ा है +cylinder/cylinder_2,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +potato/potato_2,यह एक लाल रंग की सब्जी या फल है +semicylinder/semicylinder_2,यह लाल रंग की प्लास्टिक या रबर की कोई वस्तु है +cylinder/cylinder_1,यह एक पीले रंग की प्लास्टिक या रबर की कोई वस्तु है +arch/arch_1,यह एक पीले रंग की प्लास्टिक या रबर की कोई वस्तु है +cylinder/cylinder_2,यह लाल रंग की प्लास्टिक या रबर की कोई वस्तु है +semicylinder/semicylinder_2,ये कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्तु है +cube/cube_2,यह हरे रंग की प्लास्टिक या रबर की कोई वस्तु है +cucumber/cucumber_3,इसको ककड़ी कहा जाता है +eggplant/eggplant_4,इसको बेंगन कहा जाता है +cabbage/cabbage_1,इसको गोभी कहा जाता है +semicylinder/semicylinder_2,अर्ध बेलन +cube/cube_2,घन क्षेत्र +cucumber/cucumber_3,खीरा सब्जी +eggplant/eggplant_4,बैंगन सब्जी +cabbage/cabbage_1,गोभी सब्जी +semicylinder/semicylinder_2,यह लाल रंग है +cube/cube_2,यह हरा रंग है +cucumber/cucumber_3,इस चित्र में खीरा है +eggplant/eggplant_4,यह बैंगन है +cabbage/cabbage_1,यह एक सब्जी है +semicylinder/semicylinder_2,यह एक लाल रंग का बेलनाकार वस्तु हे +cube/cube_2,यह एक हरे रंग का घनक्षेत्र का चित्र हे +cucumber/cucumber_3,यह एक हरे रंग के खीरा का चित्र हे +eggplant/eggplant_4,यह एक बैंगन का चित्र हे +cabbage/cabbage_1,यह एक बैंगनी रंग का बंद गोबी का चित्र हे +semicylinder/semicylinder_2,यह लाल रंग की प्लास्टिक या रबर की कोई वस्तु है +cube/cube_2,यह हरे रंग का कुछ आकार है +cucumber/cucumber_3,यह एक ककड़ी है +eggplant/eggplant_4,यह एक बेंगन है +cabbage/cabbage_1,यह गोभी है +semicylinder/semicylinder_2,यह एक साबुन का चित्र है +cube/cube_2,यह एक वर्ग के आकर का चित्र है +cucumber/cucumber_3,यह एक खीरे का चित्र है +eggplant/eggplant_4,यह एक बैंगन का चित्र है +cabbage/cabbage_1,यह एक बंदगोभी का चित्र है +semicylinder/semicylinder_2,यह एक लाल रंग की वास्तु है +cube/cube_2,यह एक हरे रंग की वास्तु है +cucumber/cucumber_3,यह ककड़ी है ये हरे रंग की होती है +eggplant/eggplant_4,यह बैंगन है यह एक सब्जी है +cabbage/cabbage_1,यह एक पत्ता गोभी है इसे बाँध गोभी भी कहते है +semicylinder/semicylinder_2,यह एक लाल अर्ध सिलेंडर है +cube/cube_2,यह एक हरा घनक्षेत्र है +cucumber/cucumber_3,यह एक खीरा है +eggplant/eggplant_4,यह एक बैंगन है +cabbage/cabbage_1,यह एक पत्तागोभी है +semicylinder/semicylinder_2,यह लाल बेलन है +cube/cube_2,यह हरा चौकोर है +cucumber/cucumber_3,यह हरी ककड़ी है +eggplant/eggplant_4,यह कला बड़ा बैगन है +cabbage/cabbage_1,यह लाल गोबी के पत्ते की सब्जी है +semicylinder/semicylinder_2,यह एक घन प्रकार की वस्तु है +cube/cube_2,यह एक घन प्रकार की वस्तु है +cucumber/cucumber_3,यह ककड़ी है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +eggplant/eggplant_4,यह बैंगन है और इसका उपयोग विभिन्न व्यंजन बनाने में किया जाता है +cabbage/cabbage_1,यह फूलगोभी है और इसका उपयोग विभिन्न व्यंजनों की तैयारी में किया जाता है +semicylinder/semicylinder_2,वस्तु लाल रंग के साबुन के टुकड़े की भांति प्रतीत हो रही है जो की थोड़ी गोलाई में है +cube/cube_2,वस्तु वर्गाकार आकर के साबुन के सामान दिख रही है यह हरे रंग की है +cucumber/cucumber_3,यह एक गिलखि है जो की एक प्रकार की सब्जी है इसे सब्जी या पकोड़े बनाने के लिए उपयोग किया जाता है +eggplant/eggplant_4,यह एक बैंगन है यह एक सब्जी का प्रकार है इसका बना भर्ता भी स्वादिष्ट होता है +cabbage/cabbage_1,यह एक काले रंग का पत्ता गोभी प्रतीत हो रहा है जो के एक प्रकार की सब्जी होती है +semicylinder/semicylinder_2,ये लाल रंग की वस्तु है +cube/cube_2,ये हरे रंग चोकोर है +cucumber/cucumber_3,ये हरि काकड़ी है +eggplant/eggplant_4,ये काला बैगन है +cabbage/cabbage_1,ये बेंगनी रंग की पत्तागोभी है +semicylinder/semicylinder_2,यह लाल रंग में है +cube/cube_2,यह हरे रंग में है +cucumber/cucumber_3,यह हरे रंग में है +eggplant/eggplant_4,यह अच्छा लग रहा है +cabbage/cabbage_1,यह अच्छा लग रहा है +semicylinder/semicylinder_2,इसे लाल रंग का आलू कहते है +cube/cube_2,हरे रंग की प्लास्टिक या रबर की कोई चीज़ है +cucumber/cucumber_3,इसे ककड़ी कहेते है +eggplant/eggplant_4,इसे बेंगन कहेते है +cabbage/cabbage_1,इसे गोभी कहेते है +semicylinder/semicylinder_2,यह एक अर्ध सिलेंडर है +cube/cube_2,यह घन है +cucumber/cucumber_3,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +eggplant/eggplant_4,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +cabbage/cabbage_1,यह एक गोभी है +semicylinder/semicylinder_2,यह एक अर्ध सिलेंडर है +cube/cube_2,यह एक घनाभ है +cucumber/cucumber_3,यह खीरा है और सलाद के रूप में उपयोग किया जाता है +eggplant/eggplant_4,यह एक बैंगन है और इसका इस्तेमाल सब्जी के लिए किया जाता है +cabbage/cabbage_1,यह एक गोभी है diff --git a/OLD GLS/conf_files/hindi/hindi_main_excluded_workers_stemmed.conf b/OLD GLS/conf_files/hindi/hindi_main_excluded_workers_stemmed.conf new file mode 100644 index 0000000..c8e2df8 --- /dev/null +++ b/OLD GLS/conf_files/hindi/hindi_main_excluded_workers_stemmed.conf @@ -0,0 +1,5735 @@ +cylinder/cylinder_4,सिलेंडर नील +triangle/triangle_2,तीर निशान +banana/banana_3,स्वस्थ केल +orange/orange_3,स्वास्तिक माल्ट +cuboid/cuboid_4,लंब द्विघात +cylinder/cylinder_4,ये सिलेंडर है +triangle/triangle_2,ये त्रिकोण है +banana/banana_3,ये केल है +orange/orange_3,यह टमाटर है +cuboid/cuboid_4,ये खंड है +cylinder/cylinder_4,ये हर रंग की वस्त है +triangle/triangle_2,ये पील की वस्त हैं +banana/banana_3,ये पील केल है +orange/orange_3,ये पील संतर है +cuboid/cuboid_4,ये नील रंग का आयात है +cylinder/cylinder_4,यह सिलेंडर है +triangle/triangle_2,यह एक त्रिकोण है +banana/banana_3,यह एक केल है +orange/orange_3,यह एक संतर है +cuboid/cuboid_4,यह एक घनाभ है +cylinder/cylinder_4,हर रंग का बेलन +triangle/triangle_2,पील रंग का त्रिभुज त्रिकोण +banana/banana_3,केल फल +orange/orange_3,संतर फल +cuboid/cuboid_4,नील रंग का घनाभ +cylinder/cylinder_4,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +triangle/triangle_2,यह कोई पील रंग का रब्बर का टुकड़ है +banana/banana_3,इसक केल कह जा है +orange/orange_3,इसक संतर कह जा है +cuboid/cuboid_4,ये नील रंग की प्लास्टिक या रबर की कोई वस्त है +cylinder/cylinder_4,यह एक बेलन के आकर का चित्र है +triangle/triangle_2,यह एक त्रिकोण के आकर का चित्र है +banana/banana_3,यह एक केल का चित्र है +orange/orange_3,यह एक संतर का चित्र है +cuboid/cuboid_4,यह एक साबुन का चित्र है +cylinder/cylinder_4,यह एक गैस सिलेंडर मॉडल है जब यह पकुटुट वस्त्र के लिए आत है फल क्य नह आत है लेकिन यह हर रंगहीन गैस सिलेंडर मॉडल है +triangle/triangle_2,यह कमाल का रसायन है यह हमार सुंदर के लिए रस और प्लस बन के लिए हमार तैयार है +banana/banana_3,इस फिल्म का नाम बननपालम से आय है और यह हर रात एक बहुत ही पौष्टिक फल है और इस खाएं +orange/orange_3,यह नारंग फल है जो स्वाद के साथ विटामिन सी के साथ आत है और यह शरीर के लिए बहुत अच्छ है +cuboid/cuboid_4,यह नारंग फल है जो स्वाद के साथ विटामिन सी के साथ आत है और यह शरीर के लिए बहुत अच्छ है +cylinder/cylinder_4,यह एक घन प्रकार की वस्त है +triangle/triangle_2,यह एक घन प्रकार की वस्त है +banana/banana_3,यह केल है और इसक उपयोग विभिन्न व्यंजन को तैयार कर के लिए किय जा है +orange/orange_3,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन में किय जा है +cuboid/cuboid_4,यह एक घनाकार वस्त है +cylinder/cylinder_4,यह एक हर सिलेंडर है +triangle/triangle_2,यह एक पील त्रिकोण है +banana/banana_3,यह एक केल है +orange/orange_3,यह एक संतर है +cuboid/cuboid_4,यह एक नील घनाभ है +cylinder/cylinder_4,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +triangle/triangle_2,यह एक पील रंग की प्लास्टिक या रबर की कोई वस्त है +banana/banana_3,यह एक केल है +orange/orange_3,यह एक संतर है +cuboid/cuboid_4,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +cylinder/cylinder_4,यह हर बेलन जैस है +triangle/triangle_2,यह पील त्रिकोड है +banana/banana_3,यह केल है +orange/orange_3,यह संतर है +cuboid/cuboid_4,यह नील चौकोर डिब्ब है +cylinder/cylinder_4,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +triangle/triangle_2,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +banana/banana_3,इस केल कहे है +orange/orange_3,इस संतर कहे है +cuboid/cuboid_4,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +cylinder/cylinder_4,यह हर रंग में है +triangle/triangle_2,यह पील रंग में है +banana/banana_3,यह पील रंग में है +orange/orange_3,यह स्वास्थ्य के लिए अच्छ है +cuboid/cuboid_4,यह नील रंग में है +lime/lime_4,यह एक गोभ है +orange/orange_1,यह एक नारंग है +tomato/tomato_2,यह टमाटर है +lime/lime_3,यह एक गोभ है +corn/corn_2,यह एक स्वीट कॉर्न है +lime/lime_4,यह एक हर रंग का अमरूद का चित्र हे +orange/orange_1,यह एक मुसंब का चित्र हे +tomato/tomato_2,यह एक टमाटर का चित्र हे +lime/lime_3,यह एक हर रंग का अमरूद का चित्र हे +corn/corn_2,यह एक छिल हुआ भुट्ट का चित्र हे +lime/lime_4,यह एक निम्ब है +orange/orange_1,यह एक संतर है +tomato/tomato_2,यह एक बेर है +lime/lime_3,यह एक निम्ब है +corn/corn_2,यह एक मक्क है +lime/lime_4,हर अमरुद +orange/orange_1,मीठ संतर +tomato/tomato_2,लाल टमाटर +lime/lime_3,हर अमरुद +corn/corn_2,सफ़ेद भुट्ट +lime/lime_4,यह नींब है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +orange/orange_1,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +tomato/tomato_2,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन में किय जा है +lime/lime_3,यह नींब है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +corn/corn_2,यह मकई है और इसक उपयोग विभिन्न व्यंजन में किय जा है +lime/lime_4,यह हर रंग की कोई सब्ज या फल है +orange/orange_1,यह संतर है +tomato/tomato_2,यह टमाटर है +lime/lime_3,यह हर रंग की सब्ज या फल है +corn/corn_2,यह मक्क का भुट्ट है +lime/lime_4,ये हर रंग की वस्त है +orange/orange_1,ये पील रंग का संतर है +tomato/tomato_2,ये लाल टमाटर है +lime/lime_3,ये हर रंग की गोल वस्त है +corn/corn_2,ये मक्क है +lime/lime_4,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +orange/orange_1,यह एक संतर है +tomato/tomato_2,यह एक टमाटर है +lime/lime_3,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +corn/corn_2,यह मक्क है और अनाज के रूप में उपयोग किय जा ह +lime/lime_4,यह पील रंग में है +orange/orange_1,यह स्वास्थ्य के लिए अच्छ है +tomato/tomato_2,यह स्वास्थ्य के लिए अच्छ है +lime/lime_3,यह पील रंग में है +corn/corn_2,यह स्वास्थ्य के लिए अच्छ है +lime/lime_4,यह एक हर छोट नींब है +orange/orange_1,यह वस्त एक नारंग रंग का संतर है +tomato/tomato_2,यह एक लाल रंग का टमाटर है +lime/lime_3,यह एक हर छोट नींब है +corn/corn_2,यह वस्त एक छिल हुआ भुट्ट है जिसक दा सफ़ेद है +lime/lime_4,इस नींब कहे है +orange/orange_1,इस संतर कहे है +tomato/tomato_2,इस टमाटर कहे है +lime/lime_3,इस नींब कहे है +corn/corn_2,इस मक्क का भुट्ट कहे है +lime/lime_4,यह हर नींब के रस से हर हो है और इसक उपयोग खा पक और त्वच के स्वास्थ्य के लिए किय जा सक है +orange/orange_1,இது ஆரஞ்சு பழம் இது வந்து புளிப்பான சுவை கொண்டது விட்டமின் சி வந்து இதுல ஜாஸ்தி உடம்புக்கு ரொம்ப நல்லது +tomato/tomato_2,यह एक टमाटर फल है यह खा पक के लिए एक बहुत ही महत्वपूर्ण घटक है हमार भोजन को खा बन और खा संभव नह है +lime/lime_3,यह पील और हर रंग में नींब के रस के स्वाद के साथ बन जा है विटामिन सी खा पक और ले के लिए एकदम सह है +corn/corn_2,नाम है मक्क पनीर जो शरीर के लिए एक अच्छ भोजन है +lime/lime_4,यह एक अमरुद का चित्र है +orange/orange_1,यह एक संतर का चित्र है +tomato/tomato_2,यह एक टमाटर का चित्र है +lime/lime_3,यह एक अमरुद का चित्र है +corn/corn_2,यह एक भुट्ट का चित्र है +lime/lime_4,काग़ज़ नींब +orange/orange_1,संतर फल +tomato/tomato_2,टमाटर सब्ज +lime/lime_3,काग़ज़ नींब +corn/corn_2,मक का भुट्ट +lime/lime_4,अमल है हर +orange/orange_1,छोट संतर है +tomato/tomato_2,छोट लाल टमाटर है +lime/lime_3,छोट निम्ब है +corn/corn_2,भुट्ट है +lime/lime_4,इसक नींब कह जा है +orange/orange_1,इसक संतर कह जा है +tomato/tomato_2,इसक टमाटर कह जा है +lime/lime_3,इसक नींब कह जा है +corn/corn_2,इसक मक्क का भुट्ट कह जा है +triangle/triangle_2,ये पील रंग का टुकड है +orange/orange_4,ये संतर हैय एक फल है +corn/corn_1,ये मक्क है +eggplant/eggplant_2,ये काल बैगन है +cabbage/cabbage_1,ये बेंग रंग की पत्तागोभ है +triangle/triangle_2,यह पील रंग की प्लास्टिक या रबर की कोई वस्त है +orange/orange_4,यह संतर है +corn/corn_1,य मक्क का भुट्ट है +eggplant/eggplant_2,यह एक बेंगन है +cabbage/cabbage_1,यह एक गोभ है +triangle/triangle_2,यह एक पील त्रिकोण है +orange/orange_4,यह एक टमाटर है +corn/corn_1,यह एक मक्क है +eggplant/eggplant_2,यह एक बैंगन है +cabbage/cabbage_1,यह एक पत्तागोभ है +triangle/triangle_2,पील त्रिकोड़ है +orange/orange_4,नारंग संतर है +corn/corn_1,भुट्ट है +eggplant/eggplant_2,बैगन है +cabbage/cabbage_1,लाल गोब है शलजम जैस +triangle/triangle_2,त्रिभुज की तीन भुजाएँ हैं +orange/orange_4,संतर खट्ट प्रजात का फल है +corn/corn_1,मकई एक अनाज है +eggplant/eggplant_2,बैंगन एक नाजुक उष्णकटिबंधीय बारहमास पौध है +cabbage/cabbage_1,गोभ खा के लिए कई अलग अलग तरीक तैयार किए जा हैं +triangle/triangle_2,यह कोई पील रंग का रब्बर का टुकड़ है +orange/orange_4,यह एक पिल नींब है +corn/corn_1,यह मक्क का भुट्ट है +eggplant/eggplant_2,यह एक बेंगन है +cabbage/cabbage_1,यह गोभ है +triangle/triangle_2,यह एक त्रिकोण है +orange/orange_4,यह एक संतर है +corn/corn_1,यह मक्क है और अनाज के रूप में उपयोग किय जा ह +eggplant/eggplant_2,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +cabbage/cabbage_1,यह एक गोभ है +triangle/triangle_2,ये त्रिकोण है +orange/orange_4,ये ककड़ है +corn/corn_1,ये केल है +eggplant/eggplant_2,ये है बैंग गोभ +cabbage/cabbage_1,ये है बैंग गोभ +triangle/triangle_2,यह तेज कटर के साथ एक त्रिकोण आकृत है +orange/orange_4,यह नींब जैस दिख वाल पदार्थ है +corn/corn_1,यह एक मकई है +eggplant/eggplant_2,यह बैंगन है +cabbage/cabbage_1,यह एक गोभ है +triangle/triangle_2,यह एक त्रिकोण है +orange/orange_4,यह एक संतर है +corn/corn_1,यह मक्क है और अनाज के रूप में उपयोग किय जा ह +eggplant/eggplant_2,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +cabbage/cabbage_1,यह एक गोभ है +triangle/triangle_2,त्रिकोण वस्त +orange/orange_4,निब खट्ट +corn/corn_1,मिक्क रोट +eggplant/eggplant_2,बंज भर है +cabbage/cabbage_1,चित्र नह +triangle/triangle_2,पील रंग का त्रिभुज +orange/orange_4,संतर फल +corn/corn_1,मक का भुट्ट +eggplant/eggplant_2,बैंगन सब्ज +cabbage/cabbage_1,गोभ सब्ज +triangle/triangle_2,यह त्रिकोण आकर हैं +orange/orange_4,यह एक संतर हैं +corn/corn_1,यह भुट्ट हैं +eggplant/eggplant_2,यह एक बैंगन हैं +cabbage/cabbage_1,यह एक बैंग रंग का गोभ हैं +triangle/triangle_2,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +orange/orange_4,इस संतर कहे है +corn/corn_1,इस मक्क का भुट्ट कहे है +eggplant/eggplant_2,इस बेंगन कहे है +cabbage/cabbage_1,इस गोभ कहे है +triangle/triangle_2,यह उन शिक्षक के लिए बहुत उपय है जो डिजाइन के बार में पाठ पढ़ हैं इस विशिष्ट पैटर्न पर बन गय है +orange/orange_4,नाम नारंग फल है इसक स्वाद खट्ट हो है क्योंक इसक उपयोग जूस बन के लिए किय जा है +corn/corn_1,नाम मक्क है जो कम समय में उग वाल फसल है इस पक जा है और पा में पक जा है यह सस् हो है +eggplant/eggplant_2,यह कैंच के रूप में जा जा है और दक्षिण भारतीय समूह में एक बहुत महत्वपूर्ण भूमिक निभ है जिस कथिरिक कह जा है शरीर के लिए बहुत अच्छ है +cabbage/cabbage_1,गोभ का उपयोग परिष्कार के साथ संयोजन में किय जा है +triangle/triangle_2,यह एक त्रिकोण के आकर का चित्र है +orange/orange_4,यह एक संतर का चित्र है +corn/corn_1,यह एक भुट्ट का चित्र है +eggplant/eggplant_2,यह एक बैंगन का चित्र है +cabbage/cabbage_1,यह एक बंद गोभ का चित्र है +triangle/triangle_2,पनीर एक डेयर दूध से व्युत्पंन उत्पाद है कि जायक बनावट और रूप की एक विस्तृत श्रृंखल में उत्पादित है +orange/orange_4,नींब एक लोकप्रिय खट्ट फल है कि विटामिन सी और कई शक्तिशाल पोषक तत्व में उच्च है +corn/corn_1,मकई एक स्टार्च वाल सब्ज और अनाज है +eggplant/eggplant_2,मछल की कई प्रजात दुनिय भर के लगभग सभ क्षेत्र में भोजन के रूप में भस्म कर रह हैं +cabbage/cabbage_1,लाल गोभ एक तरह की गोभ है जिस बैंग गोभ भी कह हैं +semicylinder/semicylinder_2,यह एक आर्च है +cube/cube_3,यह घन है +cucumber/cucumber_3,यह खीर है और सलाद के रूप में उपयोग किय जा है +tomato/tomato_4,यह एक टमाटर है +arch/arch_3,यह एक आर्च है +semicylinder/semicylinder_2,यह लाल अर्ध गोल आकर की चीज है +cube/cube_3,यह नील चौकोर आकर है +cucumber/cucumber_3,यह हर ककड़ है +tomato/tomato_4,यह लाल टमाटर है +arch/arch_3,यह कुछ हर सा है +semicylinder/semicylinder_2,यह चित्र लाल रंग में दिख दे है +cube/cube_3,यह चित्र चौकोर आकार में दिख दे है +cucumber/cucumber_3,यह चित्र हर रंग में दिख दे है और यह स्वास्थ्य के लिए अच्छ है +tomato/tomato_4,यह तस्वीर गोल आकार में दिख दे है +arch/arch_3,यह चित्र हर रंग में दिख दे है +semicylinder/semicylinder_2,वस्त का रंग लाल है +cube/cube_3,यह एक नील रंग की वस्त है +cucumber/cucumber_3,यह एक हर सब्ज है +tomato/tomato_4,यह टमाटर है +arch/arch_3,यह हर रंग की वस्त है +semicylinder/semicylinder_2,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +cube/cube_3,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +cucumber/cucumber_3,इस ककड़ कहे है +tomato/tomato_4,इस टमाटर कहे है +arch/arch_3,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +semicylinder/semicylinder_2,अर्ध बेलनाकार रूप का उपयोग उन सूत्र के लिए किय जा है जो सूत्र के लिए उपयोग किए जा हैं +cube/cube_3,एक आयताकार रूप का उपयोग पाठ के शिक्षक के लिए एक पैटर्न मॉडल के रूप में किय जा है +cucumber/cucumber_3,खीर नाम यह आंख को बहुत ठंडक दे है यह सूरज से शरीर की गर्म को कम कर है +tomato/tomato_4,टमाटर सॉस के उत्पादन में नाम बहुत महत्वपूर्ण भूमिक निभ है इसक उपयोग टमाटर चावल पक के लिए किय जा है +arch/arch_3,चौकोर आकार के बाल का उपयोग उन शिक्षक के लिए नमू के रूप में किय जा है जो पाठ कर हैं +semicylinder/semicylinder_2,यह एक घन प्रकार की वस्त है +cube/cube_3,यह एक घन प्रकार की वस्त है +cucumber/cucumber_3,यह ककड़ है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +tomato/tomato_4,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन में किय जा है +arch/arch_3,यह एक घनाकार वस्त है +semicylinder/semicylinder_2,ये अर्ध वृत्त खंड है +cube/cube_3,ये खंड है +cucumber/cucumber_3,ये नील वाल सिलेंडर है +tomato/tomato_4,यह लाल टमाटर है +arch/arch_3,ये अर्ध वृत्त खंड है +semicylinder/semicylinder_2,यह एक लाल अर्ध सिलेंडर है +cube/cube_3,यह एक नील घनक्षेत्र है +cucumber/cucumber_3,यह एक खीर है +tomato/tomato_4,यह एक टमाटर है +arch/arch_3,यह एक हर मेहराब है +semicylinder/semicylinder_2,यह एक ऐस आकृ हे मान एक लाल रंग का बेलनाकार वस्त बीच से काट दिय हे +cube/cube_3,यह एक नील रंग का घनक्षेत्र का चित्र हे +cucumber/cucumber_3,यह एक खीर का चित्र हे +tomato/tomato_4,यह एक टमाटर का चित्र हे +arch/arch_3,यह एक ऐस आकृ हे मान एक हर रंग का घनाभ के बीच से एक आध क्षेत्र निकाल दिय हो +semicylinder/semicylinder_2,यह एक अर्ध सिलेंडर है +cube/cube_3,यह एक घनाभ है +cucumber/cucumber_3,यह खीर है और सलाद के रूप में उपयोग किय जा है +tomato/tomato_4,यह एक टमाटर है +arch/arch_3,यह एक आर्च है +semicylinder/semicylinder_2,यह एक साबुन का चित्र है +cube/cube_3,यह एक वर्ग के आकर का चित्र है +cucumber/cucumber_3,यह एक खीर का चित्र है +tomato/tomato_4,यह एक टमाटर का चित्र है +arch/arch_3,यह एक साबुन का चित्र है +semicylinder/semicylinder_2,यह लाल रंग की प्लास्टिक या र्रबर की कोई वस्त है +cube/cube_3,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +cucumber/cucumber_3,यह एक ककड़ है +tomato/tomato_4,यह एक टमाटर है +arch/arch_3,यह हर रंग की कोई प्लास्टिक या रबर की वस्त है +semicylinder/semicylinder_2,ये लाल रंग की वस्त है +cube/cube_3,ये नील रंग की वस्त हैइसक आकार आयताकार है +cucumber/cucumber_3,ये हर रंग की काकड़ है +tomato/tomato_4,ये लाल रंग का टमाटर है +arch/arch_3,ये हर रंग की वस्त है +semicylinder/semicylinder_2,अर्द्ध बेलन +cube/cube_3,घन क्षेत्र +cucumber/cucumber_3,खीर सब्ज +tomato/tomato_4,टमाटर सब्ज +arch/arch_3,मेहराब वृत्त खंड +semicylinder/semicylinder_2,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +cube/cube_3,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +cucumber/cucumber_3,यह एक ककड़ है +tomato/tomato_4,यह एक टमाटर है +arch/arch_3,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +arch/arch_4,यह शुद्ध लाल रंग में दिख है अच्छ लग रह है +cuboid/cuboid_1,यह शुद्ध पील रंग में दिख है +cabbage/cabbage_2,यह हल्क बैंग रंग में दिख है +potato/potato_2,यह हल्क लाल रंग में दिख है अच्छ लग रह है +cabbage/cabbage_1,यह हल्क बैंग रंग में दिख है +arch/arch_4,इस टमाटर कहे है +cuboid/cuboid_1,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +cabbage/cabbage_2,इस गोभ कहे है +potato/potato_2,इस लाल रंग का आल कह है +cabbage/cabbage_1,इस गोभ कहे है +arch/arch_4,यह एक उलट मेहराब नुम लाल रंग की वस्त है +cuboid/cuboid_1,यह एक आयातफलकीनुम पील रंग की कोई वस्त है +cabbage/cabbage_2,यह वस्त बैंग रंग की पत्तागोभ है और इसक आकार गोल है +potato/potato_2,यह एक अंडाकार आल है और इसक रंग लाल है +cabbage/cabbage_1,यह वस्त बैंग रंग की पत्तागोभ है और इसक आकार लगभग गोल है +arch/arch_4,ये अर्ध वृत्त खंड है +cuboid/cuboid_1,ये है पील वाल खंड +cabbage/cabbage_2,ये है बैंगन +potato/potato_2,ये आल है +cabbage/cabbage_1,ये है बैंग गोभ +arch/arch_4,यह एक साबुन का चित्र है +cuboid/cuboid_1,यह एक साबुन का चित्र है +cabbage/cabbage_2,यह एक बंदगोभ का चित्र है +potato/potato_2,यह एक आल का चित्र है +cabbage/cabbage_1,यह एक बंदगोभ का चित्र है +arch/arch_4,लाल और सफ़ेद रंग की वस्त +cuboid/cuboid_1,वस्त पील रंग की है +cabbage/cabbage_2,गोलाकार वस्त +potato/potato_2,वस्त अंडाकार है +cabbage/cabbage_1,ये वस्त बंग रंग की है +arch/arch_4,मेहराब वृत्त खंड +cuboid/cuboid_1,घनाभ षटफलक +cabbage/cabbage_2,गोभ सब्ज +potato/potato_2,आल सब्ज +cabbage/cabbage_1,गोभ सब्ज +arch/arch_4,यह एक लाल मेहराब है +cuboid/cuboid_1,यह एक पील घनाभ है +cabbage/cabbage_2,यह एक पत्तागोभ है +potato/potato_2,यह एक आल है +cabbage/cabbage_1,यह एक पत्तागोभ है +arch/arch_4,यह एक ऐस आकृ हे मान एक लाल रंग का घनाभ के बीच से एक आध क्षेत्र निकाल दिय हो +cuboid/cuboid_1,यह एक पील रंग का घनाभ का चित्र हे +cabbage/cabbage_2,यह एक बैंग रंग का बंद गोब का चित्र हे +potato/potato_2,यह एक टमाटर का चित्र हे +cabbage/cabbage_1,यह एक बैंग रंग का बंद गोब का चित्र हे +arch/arch_4,ये लाल रंग की वस्त है +cuboid/cuboid_1,ये पील रंग की आयताकार वस्त है +cabbage/cabbage_2,ये बेंग रंग की पत्तागोभ है +potato/potato_2,ये संतर है +cabbage/cabbage_1,ये बेंग रंग की पत्तागोभ है +arch/arch_4,यह लाल रंग की प्लास्टिक या रबर की कोई वस्त है +cuboid/cuboid_1,यह पील रंग का प्लास्टिक या रबर का कोई आकार है +cabbage/cabbage_2,यह एक गोब है +potato/potato_2,यह कोई फल या सब्ज है +cabbage/cabbage_1,यह एक गोब है +arch/arch_4,यह एक आर्च है +cuboid/cuboid_1,यह एक घनाभ है +cabbage/cabbage_2,यह एक गोभ है +potato/potato_2,यह एक आल है +cabbage/cabbage_1,यह एक गोभ है +arch/arch_4,पाठ के लेखक जो तथाकथित के रूप का उपयोग कर हैं का उपयोग किय जा है ताक इस डिजाइन पर तैयार किय जाए +cuboid/cuboid_1,आयताकार आकृत का उपयोग उन शिक्षक के लिए एक मॉडल के रूप में किय जा है जो पाठ कर हैं +cabbage/cabbage_2,गोभ का उपयोग परिष्कार के साथ संयोजन में किय जा है +potato/potato_2,आल को आल पाउडर और आल चावल के चावल के रूप में जा जा है +cabbage/cabbage_1,गोभ का उपयोग परिष्कार के साथ संयोजन में किय जा है +arch/arch_4,यह एक आर्च है +cuboid/cuboid_1,यह एक घनाभ है +cabbage/cabbage_2,यह एक गोभ है +potato/potato_2,यह एक आल है +cabbage/cabbage_1,यह एक गोभ है +arch/arch_4,लाल सा है +cuboid/cuboid_1,पील डीबीय सा है +cabbage/cabbage_2,लाल गोभ है +potato/potato_2,आल है +cabbage/cabbage_1,लाल गोब की सब्ज है +arch/arch_4,यह एक घन प्रकार की वस्त है +cuboid/cuboid_1,यह एक घन प्रकार की वस्त है +cabbage/cabbage_2,यह फूलगोभ है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +potato/potato_2,यह बीट है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +cabbage/cabbage_1,यह फूलगोभ है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +arch/arch_4,ये कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +cuboid/cuboid_1,यह कोई पील रंग का रब्बर का टुकड़ है +cabbage/cabbage_2,इसक गोभ कह जा है +potato/potato_2,इसक लाल रंग के आल कह जा है +cabbage/cabbage_1,इसक गोभ कह जा है +lime/lime_3,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +cucumber/cucumber_1,यह खीर है और सलाद के रूप में उपयोग किय जा है +cylinder/cylinder_3,यह एक सिलेंडर है +arch/arch_2,यह एक आर्च है +orange/orange_4,यह एक संतर है +lime/lime_3,यह स्वास्थ्य के लिए अच्छ है +cucumber/cucumber_1,यह स्वास्थ्य के लिए अच्छ है +cylinder/cylinder_3,यह नील रंग में है +arch/arch_2,यह नील रंग में है +orange/orange_4,यह स्वास्थ्य के लिए अच्छ है +lime/lime_3,हर सा निम्ब है +cucumber/cucumber_1,हर ककड़ है +cylinder/cylinder_3,नील बेलन आकर की वास्त है +arch/arch_2,नील आकर की वास्त है +orange/orange_4,पिल गोल चीज है +lime/lime_3,यह एक हर नींब है +cucumber/cucumber_1,यह एक ककड़ है +cylinder/cylinder_3,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +arch/arch_2,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +orange/orange_4,यह एक पिल नींब है +lime/lime_3,यह एक कच्च निम्ब है +cucumber/cucumber_1,यह एक खीर है +cylinder/cylinder_3,यह एक नील सिलेंडर है +arch/arch_2,यह एक नील मेहराब है +orange/orange_4,यह एक संतर है +lime/lime_3,यह हर रंग की कोई सब्ज या फल है +cucumber/cucumber_1,यह ककड़ है +cylinder/cylinder_3,यह एक लंबगोल नील रंग की प्लास्टिक या रबर की कोई वस्त है +arch/arch_2,यह कोई नील रंग की प्लास्टिक की कोई वस्त है +orange/orange_4,यह एक मोसंब है +lime/lime_3,ये हर रंग का नींब हैय खट्ट हो है +cucumber/cucumber_1,ये हर रंग की ककड है +cylinder/cylinder_3,ये नील रंग की बेलनाकार वस्त है +arch/arch_2,ये हल्क नील रंग की वस्त है +orange/orange_4,ये संतर हैं +lime/lime_3,इस नींब कहे है +cucumber/cucumber_1,इस ककड़ कहे है +cylinder/cylinder_3,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +arch/arch_2,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +orange/orange_4,इस संतर कहे है +lime/lime_3,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +cucumber/cucumber_1,यह खीर है और सलाद के रूप में उपयोग किय जा है +cylinder/cylinder_3,यह सिलेंडर है +arch/arch_2,यह एक आर्च है +orange/orange_4,यह एक संतर है +lime/lime_3,ये पत् है +cucumber/cucumber_1,ये ककड़ है +cylinder/cylinder_3,ये नील वाल सिलेंडर है +arch/arch_2,ये नील वाल खंड है +orange/orange_4,ये नींब है +lime/lime_3,काग़ज़ नींब +cucumber/cucumber_1,खीर सब्ज +cylinder/cylinder_3,नील रंग का बेलन +arch/arch_2,मेहराब वृत्त खंड +orange/orange_4,संतर फल +lime/lime_3,येह एक अमरुद का चित्र है +cucumber/cucumber_1,यह एक खीर का चित्र है +cylinder/cylinder_3,यह एक बेलन के आकर का चित्र है +arch/arch_2,यह एक साबुन का चित्र है +orange/orange_4,यह एक मोसम्ब का चित्र है +lime/lime_3,यह ककड़ है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +cucumber/cucumber_1,यह ककड़ है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +cylinder/cylinder_3,यह एक घन प्रकार की वस्त है +arch/arch_2,यह एक घन प्रकार की वस्त है +orange/orange_4,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +lime/lime_3,यह चू है +cucumber/cucumber_1,यह ककड़ है +cylinder/cylinder_3,यह नील सिलेंडर है +arch/arch_2,मेहराब वाल्ट का पर्याय बन सक है +orange/orange_4,दुनिय भर में मिलियन टन संतर उग गए थे +lime/lime_3,यह एक हर सी वस्त है यह कुछ अमरुद के फल की तरह दिख रह है +cucumber/cucumber_1,यह एक हर लम्ब खीर है यह दिख में थोड़ मोट है +cylinder/cylinder_3,यह एक गोल नुम नील सी कोई वस्त है +arch/arch_2,यह एक नील सी कोई वस्त है जिसक एक तरफ चाँद जैस कट हुआ है और इसक आकार आध आयातकार है दूसर तरफ से +orange/orange_4,यह वस्त संतर की तरह दिख रह है और इसक रंग आध पील आध हल्क हर है +lime/lime_3,लाइम का उपयोग एक मुख्य घटक के रूप में किय जा है +cucumber/cucumber_1,खीर शरीर के लिए एक बेहतरीन मिर्च है +cylinder/cylinder_3,नाम सिलेंडर का उपयोग शिक्षक के लिए किय जा है जब यह सिख है और पाठ बन है +arch/arch_2,पाठ के लेखक जो तथाकथित के रूप का उपयोग कर हैं का उपयोग किय जा है ताक इस डिजाइन पर तैयार किय जाए +orange/orange_4,नाम नारंग फल है इसक स्वाद खट्ट हो है क्योंक इसक उपयोग जूस बन के लिए किय जा है +plum/plum_2,इस बेर कहे है +cuboid/cuboid_1,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +cabbage/cabbage_3,इस गोभ कहे है +cuboid/cuboid_3,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +carrot/carrot_4,इस गाजर कहे है +plum/plum_2,यह बीट है और इसक उपयोग विभिन्न व्यंजन में किय जा है +cuboid/cuboid_1,यह एक घन प्रकार की वस्त है +cabbage/cabbage_3,यह फूलगोभ है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +cuboid/cuboid_3,यह एक घन प्रकार की वस्त है +carrot/carrot_4,यह गाजर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +plum/plum_2,यह एक बेर है +cuboid/cuboid_1,यह कोई पील रंग का रब्बर का टुकड़ है +cabbage/cabbage_3,यह गोभ है +cuboid/cuboid_3,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +carrot/carrot_4,यह एक गाजर है +plum/plum_2,यह एक बेर है +cuboid/cuboid_1,यह एक घनाभ है +cabbage/cabbage_3,यह एक गोभ है +cuboid/cuboid_3,यह एक घनाभ है +carrot/carrot_4,यह गाजर और सबज के रूप में उपयोग किय जा है +plum/plum_2,बेर मीठ फल +cuboid/cuboid_1,घनाभ षटफलक +cabbage/cabbage_3,गोभ सब्ज +cuboid/cuboid_3,लाल रंग का घनाभ षटफलक +carrot/carrot_4,गाजर फल +plum/plum_2,यह स्पष्ट रूप से नह दिख है +cuboid/cuboid_1,यह गहर पील और आयताकार आकार का दिख है +cabbage/cabbage_3,यह स्पष्ट रूप से नह दिख है +cuboid/cuboid_3,यह त्रिकोणीय आकार में है +carrot/carrot_4,यह स्वास्थ्य के लिए अच्छ है +plum/plum_2,सेवफल है +cuboid/cuboid_1,पिल वास्त है +cabbage/cabbage_3,लाल गोब है +cuboid/cuboid_3,लाल वास्त है +carrot/carrot_4,यह गाजर है +plum/plum_2,यह एक सेब का चित्र हे +cuboid/cuboid_1,यह एक पील रंग का घनाभ का चित्र हे +cabbage/cabbage_3,यह एक बैंग रंग का बंद गोब का चित्र हे +cuboid/cuboid_3,यह एक लाल रंग का घनाभ का चित्र हे +carrot/carrot_4,यह एक गाजर का चित्र हे +plum/plum_2,ये है बैंग गोभ +cuboid/cuboid_1,ये है पील वाल खंड +cabbage/cabbage_3,ये है बैंग गोभ +cuboid/cuboid_3,ये खंड है +carrot/carrot_4,यह चुकंदर है +plum/plum_2,ये लाल रंग का सेब है +cuboid/cuboid_1,ये पील रंग का आयताकार वस्त है +cabbage/cabbage_3,ये बैग रंग की पत्तागोभ है +cuboid/cuboid_3,ये लाल रंग का आयताकार वस्त है +carrot/carrot_4,ये लाल रंग का गाजर है +plum/plum_2,यह एक सेब का चित्र है +cuboid/cuboid_1,यह एक साबुन का चित्र है +cabbage/cabbage_3,यह एक बंदगोभ का चित्र है +cuboid/cuboid_3,यह एक साबुन का चित्र है +carrot/carrot_4,यह एक गाजर का चित्र है +plum/plum_2,यस एक सेब है +cuboid/cuboid_1,यह एक पील रंग की प्लास्टिक या रबर की कोई वस्त है +cabbage/cabbage_3,यह गोभ है +cuboid/cuboid_3,यह लाल रंग की प्लास्टिक या रबर की कोई वस्त है +carrot/carrot_4,यह एक गाजर है +plum/plum_2,यह एक बेर है +cuboid/cuboid_1,यह एक घनाभ है +cabbage/cabbage_3,यह एक गोभ है +cuboid/cuboid_3,यह एक घनाभ है +carrot/carrot_4,यह गाजर और सबज के रूप में उपयोग किय जा है +plum/plum_2,यह एक नाजुक खाद्य पदार्थ है जिस बेर कह जा है +cuboid/cuboid_1,एक आयताकार रूप का उपयोग पाठ के शिक्षक के लिए एक पैटर्न मॉडल के रूप में किय जा है +cabbage/cabbage_3,गोभ को पक जा है और धाग में उपयोग किय जा है +cuboid/cuboid_3,एक आयताकार रूप का उपयोग पाठ के शिक्षक के लिए एक पैटर्न मॉडल के रूप में किय जा है +carrot/carrot_4,गाजर एक उच्च कीमत वाल आहार है जो ठंड को ठंड कर है जिसम बहुत सार प्रोटीन हो है +plum/plum_2,वस्त सेब की तरह प्रतीत हो रह है जो की एक फल का प्रकार है यह लाल रंग का हो है यह सेहत के लिए लाभदायक हो है +cuboid/cuboid_1,वस्त एक आयताकार साबुन जैस प्रतीत हो रह है यह पील रंग की है +cabbage/cabbage_3,यह एक काल रंग का पत् गोभ प्रतीत हो रह है जो के एक प्रकार की सब्ज हो है +cuboid/cuboid_3,वस्त एक आयताकार साबुन जैस प्रतीत हो रह है यह लाल रंग की है वस्त एक आयताकार साबुन जैस प्रतीत हो रह है यह लाल रंग की है +carrot/carrot_4,यह गाजर है जो की एक सब्ज़ का नाम है यह लाल काल नारंग कई रंग में मिल है यह पौध की मूल जड़ हो है +plum/plum_2,यह एक बेर है +cuboid/cuboid_1,यह एक पील घनाभ है +cabbage/cabbage_3,यह एक पत्तागोभ है +cuboid/cuboid_3,यह एक लाल घनाभ है +carrot/carrot_4,यह एक गाजर है +plum/plum_3,यह बीट है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +eggplant/eggplant_1,यह बैंगन है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +semicylinder/semicylinder_3,यह एक घन प्रकार की वस्त है +eggplant/eggplant_1,यह बैंगन है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +lemon/lemon_2,यह आम है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +plum/plum_3,यह एक बेर है +eggplant/eggplant_1,यह एक बैंगन है +semicylinder/semicylinder_3,यह एक पील अर्ध सिलेंडर है +eggplant/eggplant_1,यह एक बैंगन है +lemon/lemon_2,यह एक निम्ब है +plum/plum_3,ये लाल सेब है +eggplant/eggplant_1,ये कल रंग का बैगन है +semicylinder/semicylinder_3,ये पील वस्त है +eggplant/eggplant_1,ये कल बैगन है +lemon/lemon_2,ये पील रंग का नींब है +plum/plum_3,यह कोई सा फल है +eggplant/eggplant_1,यह बैगन है +semicylinder/semicylinder_3,यह पील वास्त है +eggplant/eggplant_1,यह बैगन है +lemon/lemon_2,यह पील वास्त है +plum/plum_3,यह सेब है यह लाल रंग +eggplant/eggplant_1,यह बैंगन है यह बैंग रंग है +semicylinder/semicylinder_3,यह पील रंग का वस्त है +eggplant/eggplant_1,यह बैंगन है यह बैंग रंग है +lemon/lemon_2,यह निम्ब है यह पील रंग है +plum/plum_3,इसक बेर कह जा है +eggplant/eggplant_1,इसक बेंगन कह जा है +semicylinder/semicylinder_3,यह कोई पील रंग का रब्बर का टुकड़ है +eggplant/eggplant_1,इसक बेंगन कह जा है +lemon/lemon_2,इसक नींब कह जा है +plum/plum_3,इस बेर कहे है +eggplant/eggplant_1,इस बेंगन कहे है +semicylinder/semicylinder_3,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +eggplant/eggplant_1,इस बेंगन कहे है +lemon/lemon_2,इस नींब कहे है +plum/plum_3,यह लाल रंग का सैब है यह एक फल है +eggplant/eggplant_1,ये एक बैंगन है ये एक सब्ज है +semicylinder/semicylinder_3,ये मक्खन है ये पील रंग का हो है +eggplant/eggplant_1,ये बैंगन है ये एक सब्ज है +lemon/lemon_2,यह नींब है ये पील हो है +plum/plum_3,यस एक सेब है +eggplant/eggplant_1,यह एक बेंगन है +semicylinder/semicylinder_3,यह एक पील रंग की प्लास्टिक या रबर की कोई वस्त है +eggplant/eggplant_1,यह एक बेंगन है +lemon/lemon_2,यह एक नींब है +plum/plum_3,यह लाल रंग में है +eggplant/eggplant_1,यह स्वास्थ्य के लिए अच्छ है +semicylinder/semicylinder_3,यह पील रंग में है +eggplant/eggplant_1,यह स्वास्थ्य के लिए अच्छ है +lemon/lemon_2,यह स्वास्थ्य के लिए अच्छ है +plum/plum_3,सेब का उपयोग कर +eggplant/eggplant_1,बंज वस्त +semicylinder/semicylinder_3,गयूमीटरक चित्र +eggplant/eggplant_1,बंज भर है +lemon/lemon_2,नीब पन +plum/plum_3,यह एक सेब है +eggplant/eggplant_1,यह बैंगन है +semicylinder/semicylinder_3,यह पील रंग का वस्त है +eggplant/eggplant_1,यह बैंगन है +lemon/lemon_2,यह पील रंग का फ़ल है +plum/plum_3,यह एक सेब का चित्र हे +eggplant/eggplant_1,यह एक बैंगन का चित्र हे +semicylinder/semicylinder_3,यह एक पील रंग का आध क्षेत्र का चित्र हे +eggplant/eggplant_1,यह एक बैंगन का चित्र हे +lemon/lemon_2,यह एक पील रंग का नींब का चित्र हे +plum/plum_3,यह सेब का फल शरीर के लिए बहुत अच्छ है यह आंख के लिए बहुत अच्छ है यह बहुत अधिक अखरोट है रस तैयार कर अच्छ है +eggplant/eggplant_1,यह इस सब्ज से बेहतर है और यह अच्छ सब्ज है +semicylinder/semicylinder_3,मुझ लग है कि यह जान बेहतर है कि किस तरह का मीठ सामान है +eggplant/eggplant_1,यह इस सब्ज से बेहतर है और यह अच्छ सब्ज है +lemon/lemon_2,यह नींब के रस के लिए बहुत अच्छ है यह हमार लिए अच्छ है कि हमार फल का रस त्वच पर लग जा सक +plum/plum_3,यह एक आलूबुखार जैस दिख वाल फल है जोक दिख में लाल रंग का है +eggplant/eggplant_1,यह एक लम्ब पतल बैंग रंग का बैंगन है +semicylinder/semicylinder_3,यह एक आयातफलकीनुम पील रंग की कोई वस्त है +eggplant/eggplant_1,यह एक लम्ब पतल बैंग रंग का बैंगन है +lemon/lemon_2,यह एक पील छोट और अंडाकार आकार का नींब है +plum/plum_3,यह बेर है +eggplant/eggplant_1,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +semicylinder/semicylinder_3,यह एक अर्ध सिलेंडर है +eggplant/eggplant_1,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +lemon/lemon_2,यह बेर है +plum/plum_3,बेर मीठ फल +eggplant/eggplant_1,बैगन सब्ज +semicylinder/semicylinder_3,अर्द्ध बेलन +eggplant/eggplant_1,बैंगन सब्ज +lemon/lemon_2,नीब खट्ट टेस्ट के लिए +potato/potato_2,यह एक लाल रंग का आल है +plum/plum_2,यह एक आलूबुखार फल जैस दिख वाल वस्त है जिसक रंग लाल है +arch/arch_4,यह एक मेहराबनुम वस्त है जिसक रंग लाल है +semicylinder/semicylinder_1,यह एक आध बेलन नुम की तरह दिख वाल नील रंग की वस्त है +cuboid/cuboid_3,यह एक आयतफलकीनुम वस्त है जिसक रंग लाल है +potato/potato_2,आल एक सब्ज है +plum/plum_2,सूख आलूबुखार एक अलग प्रकार के सूख प्लम हो हैं जिनम झुर्रीदार उपस्थित हो है +arch/arch_4,एक मेहराब एक ऊर्ध्वाधर घुमावदार संरच है +semicylinder/semicylinder_1,एक अर्ध सिलेंडर में सिलेंडर का आध क्षेत्र हो है +cuboid/cuboid_3,यह घनाकार रंग लाल है +potato/potato_2,यह तस्वीर अच्छ लग रह है +plum/plum_2,यह अच्छ लग है +arch/arch_4,यह लाल रंग में है +semicylinder/semicylinder_1,यह नील रंग में है +cuboid/cuboid_3,यह लाल रंग में है +potato/potato_2,ये आल है +plum/plum_2,ये पत् है +arch/arch_4,ये अर्ध वृत्त खंड है +semicylinder/semicylinder_1,ये अर्ध वृत्त मेहराब है +cuboid/cuboid_3,ये लाल खंड है +potato/potato_2,ये लाल रंग का टमाटर है +plum/plum_2,ये लाल रंग का सेब हैं +arch/arch_4,ये लाल रंग की वस्त है +semicylinder/semicylinder_1,ये नील रंग का हाफ सिलिंडर है +cuboid/cuboid_3,ये लाल रंग की वस्त हैइसक आकार आयताकार है +potato/potato_2,यह एक लाल रंग का वस्त है +plum/plum_2,यह एक लाल रंग का वस्त है +arch/arch_4,यह एक गुलाब रंग का वस्त है +semicylinder/semicylinder_1,इस में वस्त नह है +cuboid/cuboid_3,यह एक लाल रंग का वस्त है +potato/potato_2,यह लाल रंग का कोई फल है +plum/plum_2,यह लाल रंग का कोई फल है +arch/arch_4,यह प्लास्टिक का कोई लाल रंग का पदार्थ है +semicylinder/semicylinder_1,यह नील रंग का रबर का पदार्थ है +cuboid/cuboid_3,यह लाल रंग का प्लास्टिक या रबर का कोई पदार्थ है +potato/potato_2,अल्ल है बड़ +plum/plum_2,सेवफल है +arch/arch_4,कुछ लाल अकार का है +semicylinder/semicylinder_1,अर्ध नील आकर की वास्त है +cuboid/cuboid_3,लाल चौकोर सा है +potato/potato_2,यह एक आल है +plum/plum_2,यह एक बेर है +arch/arch_4,यह एक आर्च है +semicylinder/semicylinder_1,यह एक अर्ध सिलेंडर है +cuboid/cuboid_3,यह एक घनाभ है +potato/potato_2,इस लाल रंग का आल कह है +plum/plum_2,इस बेर कहे है +arch/arch_4,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +semicylinder/semicylinder_1,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +cuboid/cuboid_3,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +potato/potato_2,यह बीट है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +plum/plum_2,यह बीट है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +arch/arch_4,यह एक घन प्रकार की वस्त है +semicylinder/semicylinder_1,यह एक घन प्रकार की वस्त है +cuboid/cuboid_3,यह एक घनाकार वस्त है +potato/potato_2,इसक लाल रंग के आल कह जा है +plum/plum_2,इसक बेर कह जा है +arch/arch_4,ये कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +semicylinder/semicylinder_1,ये नील रंग की प्लास्टिक या रबर की कोई वस्त है +cuboid/cuboid_3,ये कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +potato/potato_2,यह एक अनार का चित्र है +plum/plum_2,यह एक सेब का चित्र है +arch/arch_4,यह एक साबुन का चित्र है +semicylinder/semicylinder_1,यह एक साबुन का चित्र है +cuboid/cuboid_3,यह एक साबुन का चित्र है +potato/potato_2,यह एक आल है +plum/plum_2,यह एक बेर है +arch/arch_4,यह एक लाल मेहराब है +semicylinder/semicylinder_1,यह एक नील अर्ध सिलेंडर है +cuboid/cuboid_3,यह एक लाल घनाभ है +potato/potato_2,यह एक टमाटर का चित्र हे +plum/plum_2,यह एक सेब का चित्र हे +arch/arch_4,यह एक ऐस आकृ हे मान एक लाल रंग का घनाभ के बीच से एक आध क्षेत्र निकाल दिय हो +semicylinder/semicylinder_1,यह एक ऐस आकृ हे मान एक नील रंग का बेलनाकार वस्त बीच से काट दिय हे +cuboid/cuboid_3,यह एक लाल रंग का घनाभ का चित्र हे +potato/potato_2,आल सब्ज +plum/plum_2,बेर मीठ फल +arch/arch_4,मेहराब वृत्त खंड +semicylinder/semicylinder_1,अर्द्ध बेलन +cuboid/cuboid_3,घनाभ षटफलक +cylinder/cylinder_4,यह एक हर रंग की और बेलननुम आकार की वस्त है +carrot/carrot_4,यह एक आढ़ तिरछ गाजर है +lemon/lemon_3,यह एक पील छोट नींब है +lemon/lemon_1,यह एक पील छोट और अंडाकार आकार का नींब है +lemon/lemon_3,यह एक अंडाकार आकार का और पील छोट नींब है +cylinder/cylinder_4,हर रंग का त्रिविम दृश्यंन लंब गोल +carrot/carrot_4,अद्रक की तरह दिख रह लंब +lemon/lemon_3,रसदार पिल रंग का निम्ब +lemon/lemon_1,रसदार पिल रंग के निम्ब को कीड़ लग हुआ है +lemon/lemon_3,पिल रंग का निम्ब खा योग्य है +cylinder/cylinder_4,यह एक हर सिलेंडर है +carrot/carrot_4,यह एक गाजर है +lemon/lemon_3,यह एक निम्ब है +lemon/lemon_1,यह एक निम्ब है +lemon/lemon_3,यह एक निम्ब है +cylinder/cylinder_4,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +carrot/carrot_4,इस गाजर कहे है +lemon/lemon_3,इस नींब कहे है +lemon/lemon_1,इस नींब कहे है +lemon/lemon_3,इस नींब कहे है +cylinder/cylinder_4,यह एक घन प्रकार की वस्त है +carrot/carrot_4,यह गाजर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +lemon/lemon_3,यह आम है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +lemon/lemon_1,यह आम है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +lemon/lemon_3,यह आम है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +cylinder/cylinder_4,यह सिलेंडर है +carrot/carrot_4,यह गाजर और सबज के रूप में उपयोग किय जा है +lemon/lemon_3,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +lemon/lemon_1,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +lemon/lemon_3,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +cylinder/cylinder_4,यह एक हर रंग का बेलनाकार वस्त का चित्र हे +carrot/carrot_4,यह एक गाजर का चित्र हे +lemon/lemon_3,यह एक पील रंग का नींब का चित्र हे +lemon/lemon_1,यह एक पील रंग का नींब का चित्र हे +lemon/lemon_3,यह एक पील रंग का नींब का चित्र हे +cylinder/cylinder_4,हर रंग का बेलन +carrot/carrot_4,गाजर फल +lemon/lemon_3,नीब खट्ट टेस्ट के लिए +lemon/lemon_1,नीब खट्ट टेस्ट के लिए +lemon/lemon_3,नीब खट्ट टेस्ट के लिए +cylinder/cylinder_4,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +carrot/carrot_4,इसक गाजर कह जा है +lemon/lemon_3,इसक नींब कह जा है +lemon/lemon_1,इसक नींब कह जा है +lemon/lemon_3,इसक नींब कह जा है +cylinder/cylinder_4,ये हर रंग की वस्त है +carrot/carrot_4,ये लाल गाजर है +lemon/lemon_3,ये पील रंग का नीब है +lemon/lemon_1,ये पील रंग का नींब है +lemon/lemon_3,ये पील रंग का नींब है +cylinder/cylinder_4,यह हर बेलन है +carrot/carrot_4,गाजर में पोषक ए हाे है +lemon/lemon_3,यह छोट नींब है +lemon/lemon_1,यह पील नींब है +lemon/lemon_3,नींब में विटामिन सी हो है +cylinder/cylinder_4,यह हर वास्त है +carrot/carrot_4,यह गाजर है +lemon/lemon_3,यह निम्ब है +lemon/lemon_1,यह निम्ब है +lemon/lemon_3,यह निम्ब है +cylinder/cylinder_4,सिलेंडर का मतलब क्य है +carrot/carrot_4,यह कठिन स्वास्थ्य के लिए एक अच्छ तरीक है +lemon/lemon_3,यह नींब के रस का फल है जो बैथिंक स्वास्थ्य के लिए बहुत अच्छ है और फिर आपक व्यवसाय बहुत अच्छ है यह खट्ट मौसम में आत है +lemon/lemon_1,यह नारंग फल है जो अंदर आत है और यह मीठ होग यह बीमार लोग के लिए बहुत अच्छ हो है +lemon/lemon_3,यह आ गय है और नींब का रस मैं यह सब कर सक हूं हम अप खा नींब चावल के साथ कर सक हैं और फिर सब कुछ बहुत ताज उठ सक हैं +cylinder/cylinder_4,यह एक बेलन के आकर का चित्र है +carrot/carrot_4,यह एक गाजर का चित्र है +lemon/lemon_3,यह एक निम्ब का चित्र है +lemon/lemon_1,यह एक निम्ब का चित्र है +lemon/lemon_3,यह एक निम्ब का चित्र है +cylinder/cylinder_4,यह हर रंग में है +carrot/carrot_4,यह स्वास्थ्य के लिए अच्छ है +lemon/lemon_3,यह पील रंग में है +lemon/lemon_1,यह पील रंग में है +lemon/lemon_3,यह पील रंग में है +cylinder/cylinder_4,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +carrot/carrot_4,यह एक गाजर है +lemon/lemon_3,यह एक नींब है +lemon/lemon_1,यह एक नींब है +lemon/lemon_3,यह एक नींब है +cylinder/cylinder_3,सिलेंडर को अब ज्यामित और टोपोलॉज की विभिन्न आधुनिक शाख में परिभाषित किय गय है +corn/corn_2,पूर अमेरिक में मक्क सबस अधिक पाई जा वाल अनाज की फसल है +semicylinder/semicylinder_4,यह अर्धविराम रंग में हर है +carrot/carrot_1,व्यंजन में गाजर का सलाद एक परंपर है +carrot/carrot_1,कई क्षेत्रीय व्यंजन में गाजर का सलाद एक परंपर है +cylinder/cylinder_3,नील रंग की वस्त +corn/corn_2,सफ़ेद रंग की वस्त +semicylinder/semicylinder_4,हर रंग की वस्त +carrot/carrot_1,सांप के आकार की वस्त +carrot/carrot_1,गाजर का हलव बन जा है +cylinder/cylinder_3,यह एक नील रंग की और बेलननुम आकार की वस्त है +corn/corn_2,यह वस्त एक छिल हुआ भुट्ट है जिसक दा सफ़ेद है +semicylinder/semicylinder_4,यह एक चपट अर्ध बेलन नुम हर रंग की वस्त है +carrot/carrot_1,यह एक आढ़ तिरछ गाजर है +carrot/carrot_1,यह एक सीध पतल गाजर है +cylinder/cylinder_3,इस सिलेंडर के रूप की तरह आकार दिय जा है और इसक उपयोग पाठ पढ़ वाल शिक्षक के लिए नमू के रूप में किय जा है +corn/corn_2,माचाचलम नाम एक अच्छ फसल है जो कम समय में उग सक है इस गर्म पा में खाय जा है +semicylinder/semicylinder_4,अर्ध बेलनाकार रूप का उपयोग उन सूत्र के लिए किय जा है जो सूत्र के लिए उपयोग किए जा हैं +carrot/carrot_1,गाजर एक उच्च कीमत वाल आहार है जो ठंड को ठंड कर है जिसम बहुत सार प्रोटीन हो है +carrot/carrot_1,गाजर एक उच्च कीमत वाल आहार है जो ठंड को ठंड कर है जिसम बहुत सार प्रोटीन हो है +cylinder/cylinder_3,यह नील रंग दिख है +corn/corn_2,यह स्वास्थ्य के लिए अच्छ है +semicylinder/semicylinder_4,यह गहर हर रंग का दिख है +carrot/carrot_1,यह गाजर के रूप में जा जा है स्वास्थ्य के लिए अच्छ है +carrot/carrot_1,यह स्वास्थ्य के लिए अच्छ है +cylinder/cylinder_3,नील रंग का बेलन +corn/corn_2,मक का भुट्ट +semicylinder/semicylinder_4,अर्द्ध बेलन +carrot/carrot_1,गाजर फल +carrot/carrot_1,गाजर फल +cylinder/cylinder_3,ये नील रंग की प्लास्टिक या रबर की कोई वस्त है +corn/corn_2,इसक मक्क का भुट्ट कह जा है +semicylinder/semicylinder_4,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +carrot/carrot_1,इसक गाजर कह जा है +carrot/carrot_1,इसक गाजर कह जा है +cylinder/cylinder_3,यह सिलेंडर है +corn/corn_2,यह मक्क है और अनाज के रूप में उपयोग किय जा ह +semicylinder/semicylinder_4,यह एक अर्ध सिलेंडर है +carrot/carrot_1,यह गाजर और सबज के रूप में उपयोग किय जा है +carrot/carrot_1,यह गाजर और सबज के रूप में उपयोग किय जा है +cylinder/cylinder_3,यह एक नील सिलेंडर है +corn/corn_2,यह एक मक्क है +semicylinder/semicylinder_4,यह एक हर अर्ध सिलेंडर है +carrot/carrot_1,यह एक गाजर है +carrot/carrot_1,यह एक गाजर है +cylinder/cylinder_3,यह एक नील रंग का रबर का टुकड़ है +corn/corn_2,यह एक मक्क का कच्च भुट्ट है +semicylinder/semicylinder_4,यह एक हर रंग का रबर का टुकड़ है +carrot/carrot_1,यह अदरक है +carrot/carrot_1,यह गाजर है +cylinder/cylinder_3,यह सिलेंडर है +corn/corn_2,यह मक्क है और अनाज के रूप में उपयोग किय जा ह +semicylinder/semicylinder_4,यह एक अर्ध सिलेंडर है +carrot/carrot_1,यह गाजर और सबज के रूप में उपयोग किय जा है +carrot/carrot_1,यह गाजर और सबज के रूप में उपयोग किय जा है +cylinder/cylinder_3,ये नील वाल सिलेंडर है +corn/corn_2,ये मक्क है +semicylinder/semicylinder_4,ये अर्ध वृत्त है +carrot/carrot_1,ये है गाजर +carrot/carrot_1,ये गाजर है +cylinder/cylinder_3,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +corn/corn_2,इस मक्क का भुट्ट कहे है +semicylinder/semicylinder_4,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +carrot/carrot_1,इस गाजर कहे है +carrot/carrot_1,इस गाजर कहे है +cylinder/cylinder_3,नील सिलिंड्रिकल वास्त है +corn/corn_2,भुट्ट है सफेद रंग का +semicylinder/semicylinder_4,नह खुल रह है ये वास्त +carrot/carrot_1,गाजर है टेड +carrot/carrot_1,गाजर है देस +cylinder/cylinder_3,ये नील रंग की वस्त है +corn/corn_2,ये मक्क हैइसक सूप बन जा है +semicylinder/semicylinder_4,ये हर रंग की वस्त है +carrot/carrot_1,ये लाल रंग का गाजर है +carrot/carrot_1,ये लाल रंग का गाजर है +cylinder/cylinder_3,यह एक बेलन के आकर का चित्र है +corn/corn_2,यह एक भुट्ट का चित्र है +semicylinder/semicylinder_4,यह एक साबुन का चित्र है +carrot/carrot_1,यह एक गाजर का चित्र है +carrot/carrot_1,यह एक गाजर का चित्र है +cylinder/cylinder_3,यह एक घन प्रकार की वस्त है +corn/corn_2,यह मकई है और खा में बहुत स्वादिष्ट है +semicylinder/semicylinder_4,यह एक घन प्रकार की वस्त है +carrot/carrot_1,यह गाजर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +carrot/carrot_1,यह गाजर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +cube/cube_1,यह एक पील रंग की प्लास्टिक या रबर की कोई वस्त है +lemon/lemon_4,यह एक नींब है +banana/banana_4,यह एक केल है +banana/banana_4,यह एक केल है +plum/plum_1,यह एक लाल रंग की सब्ज या फल है +cube/cube_1,यह एक पील रंग का घनक्षेत्र का चित्र हे +lemon/lemon_4,यह एक पील रंग का नींब का चित्र हे +banana/banana_4,यह एक हर रंग का केल का चित्र हे +banana/banana_4,यह एक हर रंग का केल का चित्र हे +plum/plum_1,यह एक लाल रंग का सेब हे +cube/cube_1,यह एक वर्गाकार पनीर का टुकड़ प्रतीत हो है यह पील रंग का है +lemon/lemon_4,यह एक निम्ब सा प्रतीत हो रह है जो स्वाद में खट्ट हो है तथ पील रंग का है +banana/banana_4,यह कच्च केल है जो हर रंग का है सामान्यतः इस सब्ज बन में इस्तेमाल किय जा है +banana/banana_4,यह कच्च केल है जो हर रंग का है सामान्यतः इस सब्ज बन में इस्तेमाल किय जा है +plum/plum_1,यह एक सेब की भांत प्रतीत हो रह है देख में गोलाकार तथ लाल रंग का है +cube/cube_1,घन क्षेत्र +lemon/lemon_4,नीब खट्ट टेस्ट के लिए +banana/banana_4,केल फल +banana/banana_4,केल फल +plum/plum_1,बेर फल +cube/cube_1,ये पील रंग की चोकोर है +lemon/lemon_4,ये पील रंग का संतर है +banana/banana_4,ये हर रंग का केल है +banana/banana_4,ये हर रंग का केल है +plum/plum_1,ये लाल सेब है +cube/cube_1,यह एक वर्ग के आकर का चित्र है +lemon/lemon_4,यह एक निम्ब का चित्र है +banana/banana_4,यह एक केल का चित्र है +banana/banana_4,यह एक केल का चित्र है +plum/plum_1,यह एक सेब का चित्र है +cube/cube_1,यह कोई पील रंग का रब्बर का टुकड़ है +lemon/lemon_4,इसक नींब कह जा है +banana/banana_4,इसक केल कह जा है +banana/banana_4,इसक केल कह जा है +plum/plum_1,इसक बेर कह जा है +cube/cube_1,ज्यामित में एक घन एक तीन आयाम ठोस वस्त है जो छह वर्गाकार चेहर पहल या पक्ष से घिर हो है जिसक शीर्ष पर तीन बैठक हो हैं क्यूब एकमात्र नियमित हेक्साहेड्रोन है और पांच प्लैटोनिक ठोस में से एक है इसक 6 चेहर 12 किनार और 8 को हैं +lemon/lemon_4,मूल आम की उत्पत्त भारत से हो है स्वाद आम का पक हुआ मांस नरम और रसदार हल्क नारंग रंग का हो है और इसम रेशेदार से ले मक्खन की स्थिर तक की बनावट हो है उपयोग आम का साद मांस खाएं या इस सलाद या रेगिस्तान में मिल भंडारण टिप आम की उपलब्ध +banana/banana_4,एक केल एक मोट त्वच और मुलायम मीठ मांस के साथ एक घुमावदार पील फल है यद आप प्रतिदिन नाश् में एक केल खा हैं तो आपक रूममेट आपक बंदर उपनाम दे सक है एक केल एक उष्णकटिबंधीय फल है जो पूर दुनिय में काफ लोकप्रिय है यह केल के पेड़ पर गुच्छ में उग है +banana/banana_4,एक पक हुए केल के अंदर कई पोषक तत्व हो हैं एक पक हुआ पील केल मीठ नरम और एक सुखद स्वाद हो है हर केल से लाभ जब आप किर की दुकान में हर केल का एक गुच्छ उठ हैं तो वे परिपक्व हो हैं और अक्सर पूर तरह से हर नह हो हैं +plum/plum_1,एक सेब एक मीठ खाद्य फल है जो सेब के पेड़ मालस प्यूमिल द्वार उत्पादित किय जा है दुनिय भर में सेब के पेड़ की खे की जा है और यह जीनस मालस में सबस अधिक पाई जा वाल प्रजात है यह पेड़ मध्य एशिय में उत्पन्न हुआ जह इसक जंगल पूर्वज मालुस सेवरस आज भी पाए जा हैं +cube/cube_1,यह एक घन नुम वस्त है जिसक रंग पील है +lemon/lemon_4,यह एक नींब है जिसक रंग पील है +banana/banana_4,यह एक अधपक केल है जिसक रंग हर है +banana/banana_4,यह एक अधपक केल है जिसक रंग हर है +plum/plum_1,यह एक आलूबुखार है जिसक रंग लाल है +cube/cube_1,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +lemon/lemon_4,इस नींब कहे है +banana/banana_4,इस केल कहे है +banana/banana_4,इस केल कहे है +plum/plum_1,इस बेर कहे है +cube/cube_1,यह एक घन प्रकार की वस्त है +lemon/lemon_4,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +banana/banana_4,यह केल है और इसक उपयोग विभिन्न व्यंजन को तैयार कर के लिए किय जा है +banana/banana_4,यह केल है और इसक उपयोग विभिन्न व्यंजन को तैयार कर के लिए किय जा है +plum/plum_1,यह बीट है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +cube/cube_1,यह घन है +lemon/lemon_4,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +banana/banana_4,यह एक केल है +banana/banana_4,यह एक केल है +plum/plum_1,यह बेर है +cube/cube_1,यह पील रंग में दिख है +lemon/lemon_4,यह स्वास्थ्य के लिए अच्छ है +banana/banana_4,यह स्वास्थ्य के लिए अच्छ है +banana/banana_4,यह स्वास्थ्य के लिए अच्छ है +plum/plum_1,प्याज बाल के विकास के लिए अच्छ है +cube/cube_1,यह घन है +lemon/lemon_4,यह एक संतर है +banana/banana_4,यह एक केल है +banana/banana_4,यह एक केल है +plum/plum_1,यह एक बेर है +cube/cube_1,यह एक पील घनक्षेत्र है +lemon/lemon_4,यह एक निम्ब है +banana/banana_4,यह एक केल है +banana/banana_4,यह एक केल है +plum/plum_1,यह एक बेर है +cube/cube_1,यह पिल वास्त है +lemon/lemon_4,यह निम्ब है +banana/banana_4,यह केल है +banana/banana_4,यह केल है +plum/plum_1,यह टमाटर है +cylinder/cylinder_3,वस्त का रंग नील है +tomato/tomato_2,वस्त लाल रंग की है +plum/plum_3,उपरोक्त वस्त बीच मै लाल है +cube/cube_4,लाल रंग की वस्त +cucumber/cucumber_1,खीर हर रंग का है +cylinder/cylinder_3,नील रंग का गोलाकार लंब टुकड़ +tomato/tomato_2,लाल लाल गोल टमाटर +plum/plum_3,बैंग रंग का मुरझ हुआ बैंगन +cube/cube_4,लाल रंग का चौकोनिय त्रिविम दृश्यंन +cucumber/cucumber_1,खा योग्य हर रंग का रसदार खीर +cylinder/cylinder_3,ये नील रंग की वस्त है +tomato/tomato_2,ये लाल रंग का टमाटर है +plum/plum_3,ये लाल रंग का सेब है +cube/cube_4,ये हर रंग की वस्त है +cucumber/cucumber_1,ये हर काकड़ है +cylinder/cylinder_3,यह एक नील बेलन है +tomato/tomato_2,टमाटर का रंग लाल हो है +plum/plum_3,बेर सेहत के लिए अच्छ हो है +cube/cube_4,घन के छह चेहर हैं +cucumber/cucumber_1,खीर ताजग के लिए अच्छ हो है +cylinder/cylinder_3,यह नील रंग की लंबगोल प्लास्टिक या र्बरबर की कोई वस्त है +tomato/tomato_2,यह एक टमाटर है +plum/plum_3,यह फल या कोई सब्ज है +cube/cube_4,यह लाल रंग की रबर या प्लास्टिक की कोई वस्त है +cucumber/cucumber_1,यह ककड़ है +cylinder/cylinder_3,नील गोल +tomato/tomato_2,लाल तमतार +plum/plum_3,बैंगन साबज +cube/cube_4,लाल चकोर +cucumber/cucumber_1,खीर साबज +cylinder/cylinder_3,यह नील वास्त है +tomato/tomato_2,यह टमाटर है +plum/plum_3,यह गोब है +cube/cube_4,यह लाल वास्त है +cucumber/cucumber_1,यह ककड़ है +cylinder/cylinder_3,नील रंग का बेलन +tomato/tomato_2,टमाटर सब्ज +plum/plum_3,बेर मीठ फल +cube/cube_4,घन क्षेत्र +cucumber/cucumber_1,खीर सब्ज +cylinder/cylinder_3,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +tomato/tomato_2,यह एक टमाटर है +plum/plum_3,यह एक बेर है +cube/cube_4,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +cucumber/cucumber_1,यह एक ककड़ है +cylinder/cylinder_3,यह एक नील सिलेंडर है +tomato/tomato_2,यह एक टमाटर है +plum/plum_3,यह एक बेर है +cube/cube_4,यह एक लाल घनक्षेत्र है +cucumber/cucumber_1,यह एक खीर है +cylinder/cylinder_3,यह एक घन प्रकार की वस्त है +tomato/tomato_2,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +plum/plum_3,यह बीट है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +cube/cube_4,यह एक घन प्रकार की वस्त है +cucumber/cucumber_1,यह फूलगोभ है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +cylinder/cylinder_3,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +tomato/tomato_2,इस टमाटर कहे है +plum/plum_3,इस बेर कहे है +cube/cube_4,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +cucumber/cucumber_1,इस ककड़ कहे है +cylinder/cylinder_3,यह सिलेंडर है +tomato/tomato_2,यह एक टमाटर है +plum/plum_3,यह बेर है +cube/cube_4,यह घन है +cucumber/cucumber_1,यह खीर है और सलाद के रूप में उपयोग किय जा है +cylinder/cylinder_3,यह एक नील रंग की और बेलननुम आकार की वस्त है +tomato/tomato_2,यह एक लाल रंग का टमाटर है +plum/plum_3,यह एक आलूबुखार जैस दिख वाल फल है जोक दिख में गाढ़ लाल रंग का है +cube/cube_4,यह एक घन नुम लाल रंग की कोई वस्त है +cucumber/cucumber_1,यह एक हर पतल खीर है +cylinder/cylinder_3,ये नील सिलेंडर है +tomato/tomato_2,यह लाल टमाटर है +plum/plum_3,ये है बैंग गोभ +cube/cube_4,ये लाल खंड है +cucumber/cucumber_1,ये ककड़ है +cylinder/cylinder_3,यह तस्वीर नील रंग में है +tomato/tomato_2,यह पूर तरह से लाल रंग है +plum/plum_3,यह तस्वीर स्पष्ट नह है +cube/cube_4,यह पूर तरह से लाल रंग है +cucumber/cucumber_1,यह नाम है ककड़ का +banana/banana_1,यह एक कैल है जो की एक प्रमुख फल का प्रकार है इसक स्वाद बड़ मीठ हो है +cabbage/cabbage_4,यह एक बैगन की तरह दिख दे रह है जो की एक प्रकार की सब्ज हो है यह काल या बैग रंग का हो है +cucumber/cucumber_2,वस्त एक खीर की तरह दिख दे रह है जो की के सब्ज का प्रकार है जिस ककड़ भी कह है +carrot/carrot_1,वस्त एक गाजर की तरह दिख दे रह है जो की के सब्ज का प्रकार है यह लाल या सिंदूर रंग की हो है +cube/cube_3,वस्त एक वर्ग के आकार का टुकड़ है जो की नील रंग का है +banana/banana_1,ये पील रंग का केल है +cabbage/cabbage_4,ये बेंग रंग की पत्तागोभ है +cucumber/cucumber_2,ये हर काकड़ है +carrot/carrot_1,ये लाल का गाजर है +cube/cube_3,ये नील रंग की वस्त है +banana/banana_1,इसक केल कह जा है +cabbage/cabbage_4,इसक गोभ कह जा है +cucumber/cucumber_2,इसक ककड़ कह जा है +carrot/carrot_1,इसक गाजर कह जा है +cube/cube_3,ये नील रंग की प्लास्टिक या रबर की कोई वस्त है +banana/banana_1,केल फल +cabbage/cabbage_4,लाल पत् गोभ सबज +cucumber/cucumber_2,खीर सबज +carrot/carrot_1,गाजर सबज +cube/cube_3,स्पंज झाड़न +banana/banana_1,यह एक केल हैं +cabbage/cabbage_4,यह पत्तागोभ हैं +cucumber/cucumber_2,यह एक खीर हैं +carrot/carrot_1,यह एक गाजर हैं +cube/cube_3,माफ कीजिय मैं इस पहचान नह पा रह हूँ +banana/banana_1,छिप हुआ केल +cabbage/cabbage_4,बंद गोभ +cucumber/cucumber_2,खीर साबज +carrot/carrot_1,गजर हलव +cube/cube_3,चकोर नील +banana/banana_1,यह स्वास्थ्य के लिए अच्छ है +cabbage/cabbage_4,यह चित्र अच्छ लग रह है +cucumber/cucumber_2,यह स्वास्थ्य के लिए अच्छ है +carrot/carrot_1,यह चित्र अच्छ लग रह है +cube/cube_3,यह तस्वीर नील रंग में है +banana/banana_1,यह एक केल है +cabbage/cabbage_4,यह गोभ है +cucumber/cucumber_2,यह एक ककड़ है +carrot/carrot_1,यह एक गाजर है +cube/cube_3,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +banana/banana_1,यह एक पील रंग का केल हे +cabbage/cabbage_4,यह एक बैंग रंग की बंद गोभ का चित्र हे +cucumber/cucumber_2,यह एक खीर का चित्र हे +carrot/carrot_1,यह एक गाजर का चित्र हे +cube/cube_3,यह एक नील रंग का घनक्षेत्र का चित्र हे +banana/banana_1,यह केल कच्च है +cabbage/cabbage_4,जामु रंग की पत्तागोब सेह के लिए लाभदायल है +cucumber/cucumber_2,खीर बहुत रसील प्रतीत हो रह है +carrot/carrot_1,गाजर आँख के लिए बहुत अच्छ हो है +cube/cube_3,ईस बच्च खेल सक है +banana/banana_1,इस केल कहे है +cabbage/cabbage_4,इस गोभ कहे है +cucumber/cucumber_2,इस ककड़ कहे है +carrot/carrot_1,इस गाजर कहे है +cube/cube_3,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +banana/banana_1,यह केल है +cabbage/cabbage_4,यह सब्ज है कोई सी +cucumber/cucumber_2,यह हर ककड़ है +carrot/carrot_1,यह गाजर है +cube/cube_3,यह नील क्यूब है +banana/banana_1,यह एक पक हुआ केल है जो की थोड़ मुड़ हुआ है आध चाँद की तरह +cabbage/cabbage_4,यह वस्त बैंगन की तरह दिख रह है जिसक ऊपर का धड़ कट हुआ है +cucumber/cucumber_2,यह गिलक की तरह दिख रह है और इसक रंग गाड़ हर है +carrot/carrot_1,यह वस्त गाजर की तरह है और रंग हल्क नारंग है +cube/cube_3,यह एक नील घन नुम वस्त है +banana/banana_1,यह एक केल है +cabbage/cabbage_4,यह एक बैगन है +cucumber/cucumber_2,यह खीर है और सलाद के रूप में उपयोग किय जा है +carrot/carrot_1,यह एक गाजर है +cube/cube_3,इस वॉशिंग सोप है +banana/banana_1,यह एक केल का चित्र है +cabbage/cabbage_4,यह एक बंदगोभ का चित्र है +cucumber/cucumber_2,यह एक खीर का चित्र है +carrot/carrot_1,यह एक गाजर का चित्र है +cube/cube_3,यह एक वर्ग के आकर का चित्र है +banana/banana_1,केल फल +cabbage/cabbage_4,गोभ सब्ज +cucumber/cucumber_2,खीर सब्ज +carrot/carrot_1,गाजर फल +cube/cube_3,घन क्षेत्र +banana/banana_1,यह एक केल है +cabbage/cabbage_4,यह एक पत्तागोभ है +cucumber/cucumber_2,यह एक खीर है +carrot/carrot_1,यह एक गाजर है +cube/cube_3,यह एक नील घनक्षेत्र है +triangle/triangle_2,पिल रबर का टुकड़ है +lime/lime_1,यह ककड़ है +cuboid/cuboid_4,नील रंग का रबर का टुकड़ है +cabbage/cabbage_4,यह गोब है +triangle/triangle_1,लाल रंग का रबर का टुकड़ है +triangle/triangle_2,यह एक पील त्रिकोण है +lime/lime_1,यह एक कच्च निम्ब है +cuboid/cuboid_4,यह एक नील घनाभ है +cabbage/cabbage_4,यह एक पत्तागोभ है +triangle/triangle_1,यह एक लाल त्रिकोण है +triangle/triangle_2,अज्ञात वस्त +lime/lime_1,यद नींब +cuboid/cuboid_4,चोकोर नील +cabbage/cabbage_4,बंद गोभ +triangle/triangle_1,त्रिकोण वस्त +triangle/triangle_2,यह एक त्रिकोणीय संक्षेत्र नुम वस्त है जिसक रंग पील है +lime/lime_1,यह एक कच्च नींब है जिसक रंग हर है +cuboid/cuboid_4,यह एक आयतफलक नुम वस्त है जिसक रंग नील है +cabbage/cabbage_4,यह एक बैंग पत्तागोभ है जोक गोल है +triangle/triangle_1,यह एक त्रिकोणीय संक्षेत्रनुम वस्त है जिसक रंग लाल है +triangle/triangle_2,यह एक पील रंग का आयत हे +lime/lime_1,यह एक खीर का चित्र हे +cuboid/cuboid_4,यह एक नील रंग का घनाभ हे +cabbage/cabbage_4,यह एक बैंग रंग का बंद गोब का चित्र हे +triangle/triangle_1,यह एक लाल रंग का आयत हे +triangle/triangle_2,यह तस्वीर पील रंग में है +lime/lime_1,यह स्वास्थ्य के लिए अच्छ है +cuboid/cuboid_4,यह चित्र आयताकार आकार में है +cabbage/cabbage_4,यह तस्वीर बहुत अच्छ लग रह है +triangle/triangle_1,यह चित्र आयताकार आकार में है +triangle/triangle_2,ये पील रंग की चौकोर हैं +lime/lime_1,ये हर रंग का अमरुद है +cuboid/cuboid_4,ये नील रंग का आय है +cabbage/cabbage_4,ये बैग रंग की पत्तागोभ है +triangle/triangle_1,ये लाल रंग की वस्त है +triangle/triangle_2,यह कोई पील रंग का रब्बर का टुकड़ है +lime/lime_1,यह एक हर नींब है +cuboid/cuboid_4,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +cabbage/cabbage_4,यह गोभ है +triangle/triangle_1,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +triangle/triangle_2,यह एक घन प्रकार की वस्त है +lime/lime_1,यह नींब है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +cuboid/cuboid_4,यह एक घन प्रकार की वस्त है +cabbage/cabbage_4,यह फूलगोभ है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +triangle/triangle_1,यह एक घनाकार वस्त है +triangle/triangle_2,एक त्रिभुज एक बहुभुज है जिसम तीन किनार और तीन को हैं +lime/lime_1,चू एक कैल्शियम युक्त अकार्बनिक खनिज है +cuboid/cuboid_4,घनाकार के छह पक्ष हो हैं +cabbage/cabbage_4,गोभ के बीज के पत्त में एक पतल टैपरोट और कॉर्डेट कोटिल्डॉन हो है +triangle/triangle_1,एक समबाह त्रिभुज की सभ भुजाएँ समान हो हैं +triangle/triangle_2,यह एक त्रिकोण है +lime/lime_1,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +cuboid/cuboid_4,यह एक घनाभ है +cabbage/cabbage_4,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +triangle/triangle_1,यह एक त्रिकोण है +triangle/triangle_2,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +lime/lime_1,इस नींब कहे है +cuboid/cuboid_4,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +cabbage/cabbage_4,इस गोभ कहे है +triangle/triangle_1,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +triangle/triangle_2,पील रंग का त्रिभुज +lime/lime_1,काग़ज़ नींब +cuboid/cuboid_4,घनाभ षटफलक +cabbage/cabbage_4,गोभ सब्ज +triangle/triangle_1,लाल रंग का त्रिभुज +triangle/triangle_2,यह एक त्रिकोण के आकर का चित्र है +lime/lime_1,येह एक अमरुद का चित्र है +cuboid/cuboid_4,यह एक साबुन का चित्र है +cabbage/cabbage_4,यह एक बैंगन का चित्र है +triangle/triangle_1,यह एक त्रिकोण के आकर का चित्र है +triangle/triangle_2,पील त्रिकोण +lime/lime_1,निम्ब हर है +cuboid/cuboid_4,नील चौकोर +cabbage/cabbage_4,गोब लाल है +triangle/triangle_1,लाल चौकोर +triangle/triangle_2,पिल रंग की आयताकार पट्ट है जिसक एक को टूट हुआ है +lime/lime_1,हर रंग का खीर ऐस रख है जैस किसी उस एक सिर से खाय हो +cuboid/cuboid_4,नील रंग का आयताकार त्रिविम दृश्यंन तिरछ रख गय है +cabbage/cabbage_4,बैंग रंग की पत् गोब सुख रह है +triangle/triangle_1,लाल रंग का त्रिकोण त्रिविम दृश्यंन ऐस रख गय है जिसम त्रिकोण की तीन भुजाय पटल पर टिक हुई है +triangle/triangle_2,एक गन् +lime/lime_1,एक छोट हर नींब +cuboid/cuboid_4,एक धुल बार +cabbage/cabbage_4,एक बैंग पत् गोभ +triangle/triangle_1,लाल त्रिकोण ब्लॉक +cabbage/cabbage_3,एक काल गेंद +arch/arch_4,लाल प्लास्टिक +potato/potato_4,एक आल +cylinder/cylinder_1,गन् का टुकड़ +orange/orange_2,एक पील नींब +cabbage/cabbage_3,यह वस्त बैंग रंग की पत्तागोभ है और इसक आकार लगभग गोल है +arch/arch_4,यह एक आढ़ मेहराब नुम लाल रंग की वस्त है +potato/potato_4,यह एक अंडाकार आल है और इसक रंग हल्क भूर है +cylinder/cylinder_1,यह एक खड़ पील रंग की और बेलननुम आकार की वस्त है +orange/orange_2,यह वस्त एक पील रंग का संतर है +cabbage/cabbage_3,यह तस्वीर अच्छ तरह से दिख नह दे है +arch/arch_4,यह हल्क लाल रंग में दिख है स्पष्ट दिख है +potato/potato_4,यह हल्क पील रंग में दिख है स्पष्ट दिख है +cylinder/cylinder_1,यह हल्क पील रंग में दिख है अच्छ दिख है +orange/orange_2, जो स्वास्थ्य के लिए अच्छ है +cabbage/cabbage_3,गोल और बैंग सब्ज +arch/arch_4,लाल वस्त +potato/potato_4,भूर आल +cylinder/cylinder_1,पील गोलाकार वस्त +orange/orange_2,पील रंग की गोलाकार वस्त +cabbage/cabbage_3,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +arch/arch_4,यह एक आर्च है +potato/potato_4,यह एक आल है +cylinder/cylinder_1,यह सिलेंडर है +orange/orange_2,यह एक संतर है +cabbage/cabbage_3,बैंग रंग की गोभ +arch/arch_4,लाल रंग वाल वस्त +potato/potato_4,छिलक वाल आल +cylinder/cylinder_1,पील बेलन +orange/orange_2,पील छिलक वाल नीबूं +cabbage/cabbage_3,इस गोभ कहे है +arch/arch_4,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +potato/potato_4,इस आल कहे है +cylinder/cylinder_1,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +orange/orange_2,इस संतर कहे है +cabbage/cabbage_3,कोई सब्ज है +arch/arch_4,लाल सा कुछ है +potato/potato_4,आल है +cylinder/cylinder_1,पील बेलन जैस आकार का कुछ है +orange/orange_2,सेवफल सा है +cabbage/cabbage_3,गोभ सब्ज +arch/arch_4,मेहराब वृत्त खंड +potato/potato_4,आल सब्ज +cylinder/cylinder_1,पील रंग का बेलन +orange/orange_2,संतर फल +cabbage/cabbage_3,यह फूलगोभ है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +arch/arch_4,यह एक घन प्रकार की वस्त है +potato/potato_4,यह आम है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +cylinder/cylinder_1,यह एक घन प्रकार की वस्त है +orange/orange_2,यह आम है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +cabbage/cabbage_3,यह एक पत्तागोभ है +arch/arch_4,यह एक लाल मेहराब है +potato/potato_4,यह एक आल है +cylinder/cylinder_1,यह एक पील सिलेंडर है +orange/orange_2,यह एक संतर है +cabbage/cabbage_3,ये बैग रंग की पत्तागोभ है +arch/arch_4,ये लाल रंग की वस्त है +potato/potato_4,ये आल है +cylinder/cylinder_1,ये पील रंग की वस्त है +orange/orange_2,ये संतर हैं +cabbage/cabbage_3,यह एक बैंग रंग की बंद गोभ का चित्र हे +arch/arch_4,यह एक ऐस आकृ हे मान एक लाल रंग का घनाभ के बीच से एक आध क्षेत्र निकाल दिय हो +potato/potato_4,यह एक आल का चित्र हे +cylinder/cylinder_1,यह एक पील रंग का बेलनाकार वस्त का चित्र हे +orange/orange_2,यह एक मुसंब का चित्र हे +cabbage/cabbage_3,इसक गोभ कह जा है +arch/arch_4,ये कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +potato/potato_4,इसक आल कह जा है +cylinder/cylinder_1,यह कोई पील रंग का रब्बर का टुकड़ है +orange/orange_2,इसक संतर कह जा है +cabbage/cabbage_3,काल रंग का गोल रख हुआ है +arch/arch_4,लाल रंग के आयत को अर्ध चंद्र काट गय है +potato/potato_4,आल काफ रसील लग रह है +cylinder/cylinder_1,पिल रंग की पट्ट रख हुई है +orange/orange_2,सुनहर पिल रंग का निम्ब है +cabbage/cabbage_3,यह गोभ है +arch/arch_4,यह लाल रंग की प्लास्टिक या रबर की कोई वस्त है +potato/potato_4,यह एक आल है +cylinder/cylinder_1,यह पील रंग का प्लास्टिक का टुकड़ है +orange/orange_2,यह संतर है +orange/orange_2,जो स्वास्थ्य के लिए अच्छ है +cabbage/cabbage_1,यह हल्क बैंग रंग में दिख है +banana/banana_4,जो स्वास्थ्य के लिए अच्छ है +cabbage/cabbage_2,यह हल्क बैंग रंग में दिख है +tomato/tomato_3,जो स्वास्थ्य के लिए अच्छ है +orange/orange_2,यह संतर है +cabbage/cabbage_1,यह बैंगन है +banana/banana_4,यह एक केल है +cabbage/cabbage_2,यह एक सब्ज है +tomato/tomato_3,इस चित्र में एक टमाटर है +orange/orange_2,इस संतर कहे है +cabbage/cabbage_1,इस गोभ कहे है +banana/banana_4,इस केल कहे है +cabbage/cabbage_2,इस गोभ कहे है +tomato/tomato_3,इस टमाटर कहे है +orange/orange_2,नारंग हल्द सबस स्वादिष्ट फल है इसक रस खट्ट हो है यह शरीर के लिए अच्छ हो है +cabbage/cabbage_1,केप का उपयोग तब किय जा है जब यह नूडल्स से बन हो है +banana/banana_4,केल का उपयोग इस टेबल पर रख के लिए किय जा है और सांबर के साथ एक सिरिंज में पक जा है +cabbage/cabbage_2,केप का उपयोग तब किय जा है जब यह नूडल्स से बन हो है +tomato/tomato_3,टमाटर एक सस् पनीर है जो सूप जैस सूप बन में महत्वपूर्ण भूमिक निभ है +orange/orange_2,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन में किय जा है +cabbage/cabbage_1,यह फूलगोभ है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +banana/banana_4,यह केल है और इसक उपयोग विभिन्न व्यंजन को तैयार कर के लिए किय जा है +cabbage/cabbage_2,यह फूलगोभ है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +tomato/tomato_3,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +orange/orange_2,वस्त पील है +cabbage/cabbage_1,वस्त नील और बैंग रंग की है +banana/banana_4,वस्त एक फल है +cabbage/cabbage_2,वस्त एक सब्ज है +tomato/tomato_3,लाल रंग की वस्त टमाटर है +orange/orange_2,यह एक नींब है +cabbage/cabbage_1,यह गोभ है +banana/banana_4,यह एक केल है +cabbage/cabbage_2,यह गोभ है +tomato/tomato_3,यह एक टमाटर है +orange/orange_2,यह एक मुसंब का चित्र हे +cabbage/cabbage_1,यह एक बैंग रंग का बंद गोब का चित्र हे +banana/banana_4,यह एक हर रंग का केल का चित्र हे +cabbage/cabbage_2,यह एक बैंग रंग का बंद गोब का चित्र हे +tomato/tomato_3,यह एक टमाटर का चित्र हे +orange/orange_2,यह एक नारंग है +cabbage/cabbage_1,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +banana/banana_4,यह केल है +cabbage/cabbage_2,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +tomato/tomato_3,यह टमाटर है +orange/orange_2,पील निम्ब है यह +cabbage/cabbage_1,यह लाल गोब है +banana/banana_4,यह एक केल है +cabbage/cabbage_2,यह एक सब्ज है +tomato/tomato_3,यह लाल टमाटर है +orange/orange_2,संतर सेहत के लिए अच्छ हो है +cabbage/cabbage_1,जामु रंग की पत्तागोब कभ कभ ही मिल है +banana/banana_4,केल खा से सेहत बन है +cabbage/cabbage_2,जामु रंग की पत्तागोब बहुत सुंदर दिख है +tomato/tomato_3,टमाटर बहुत सुंदर लाल रंग का दिख रह है +orange/orange_2,ये नींब है +cabbage/cabbage_1,ये है बैंग गोभ +banana/banana_4,ये केल है +cabbage/cabbage_2,ये है बैंग गोभ +tomato/tomato_3,यह लाल टमाटर है +orange/orange_2,इसक संतर कह जा है +cabbage/cabbage_1,इसक गोभ कह जा है +banana/banana_4,इसक केल कह जा है +cabbage/cabbage_2,इसक गोभ कह जा है +tomato/tomato_3,इसक टमाटर कह जा है +orange/orange_2,ये संतर है +cabbage/cabbage_1,ये बेंग रंग की पत्तागोभ है +banana/banana_4,ये केल है +cabbage/cabbage_2,ये बैग रंग की पत्तागोभ है +tomato/tomato_3,ये लाल रंग का टमाटर है +orange/orange_2,मोसंब के रस से हिमोग्लोबिन बढ़ है +cabbage/cabbage_1,पत गोभ सलाद में अच्छ लग है +banana/banana_4,केल कि सब्ज भी बन जा हैं +cabbage/cabbage_2,पत गोभ में प्रोटीन हो है +tomato/tomato_3,टमाटर का सूप बरसात में पिट में अच्छ लग है +orange/orange_2,यह एक संतर है +cabbage/cabbage_1,यह एक पत्तागोभ है +banana/banana_4,यह एक केल है +cabbage/cabbage_2,यह एक पत्तागोभ है +tomato/tomato_3,यह एक टमाटर है +orange/orange_2,यह वस्त एक पील रंग का संतर है +cabbage/cabbage_1,यह वस्त बैंग रंग की पत्तागोभ है और इसक आकार अंडाकार है +banana/banana_4,यह एक अधपक केल है +cabbage/cabbage_2,यह वस्त बैंग रंग की पत्तागोभ है और इसक आकार अंडाकार है +tomato/tomato_3,यह एक लाल रंग का टमाटर है जिसक ऊपर पत् नुम छतर लग हुई है +plum/plum_4,यह तस्वीर लाल रंग में है और यह बहुत अच्छ लग रह है +triangle/triangle_4,यह चित्र नील रंग में है +triangle/triangle_3,यह चित्र अच्छ तरह से दिख नह दे है +triangle/triangle_3,यह चित्र हर रंग में है और यह बहुत अच्छ लग रह है +triangle/triangle_3,यह चित्र हर रंग में है और यह बहुत अच्छ लग रह है +plum/plum_4,यह लाल गोलाकार वस्त है +triangle/triangle_4,यह एक नील वस्त है और इसक निचल और ऊपर भाग त्रिकोण +triangle/triangle_3,यह एक त्रिकोण हर रंग की वस्त है +triangle/triangle_3,यह एक त्रिकोण हर रंग की वस्त है +triangle/triangle_3,यह एक त्रिकोण हर रंग की वस्त है +plum/plum_4,इस बेर कहे है +triangle/triangle_4,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +triangle/triangle_3,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +triangle/triangle_3,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +triangle/triangle_3,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +plum/plum_4,ये लाल सेब है +triangle/triangle_4,ये नील रंग की वस्त है +triangle/triangle_3,ये हर रंग की वस्त है +triangle/triangle_3,ये हर रंग की वस्त है +triangle/triangle_3,ये हर रंग की वस्त है +plum/plum_4,यह कोई फल या सब्ज है +triangle/triangle_4,यह नील रंग का रबर या प्लास्टिक का टुकड़ है +triangle/triangle_3,यह हर रंग का रबर या प्लास्टिक का टुकड़ है +triangle/triangle_3,या हर रंग का रबर या प्लास्टिक का टुकड़ है +triangle/triangle_3,या हर रंग का रबर या प्लास्टिक का टुकड़ है +plum/plum_4,बेर मीठ फल +triangle/triangle_4,नील रंग का त्रिभुज +triangle/triangle_3,हर रंग का त्रिभुज +triangle/triangle_3,हर रंग का त्रिभुज +triangle/triangle_3,हर रंग का त्रिभुज +plum/plum_4,यह एक सेब का चित्र हे +triangle/triangle_4,यह एक नील रंग का त्रिविम दृश्यन त्रिकोन हे +triangle/triangle_3,यह एक हर रंग का त्रिविम दृश्यन समकोण ट्रिभुज हे +triangle/triangle_3,यह एक हर रंग का त्रिविम दृश्यन समकोण ट्रिभुज हे +triangle/triangle_3,यह एक हर रंग का त्रिविम दृश्यन समकोण ट्रिभुज हे +plum/plum_4,यह एक बेर है +triangle/triangle_4,यह एक त्रिकोण है +triangle/triangle_3,यह एक त्रिकोण है +triangle/triangle_3,यह एक त्रिकोण है +triangle/triangle_3,यह एक त्रिकोण है +plum/plum_4,यह एक सेब का चित्र है +triangle/triangle_4,यह एक साबुन का चित्र है +triangle/triangle_3,यह एक त्रिकोण के आकर का चित्र है +triangle/triangle_3,यह एक त्रिकोण के आकर का चित्र है +triangle/triangle_3,यह एक त्रिकोण के आकर का चित्र है +plum/plum_4,यह बेर है +triangle/triangle_4,यह त्रिकोण नील है +triangle/triangle_3,यह त्रिकोण हर है +triangle/triangle_3,यह त्रिकोण बहुत छोट है +triangle/triangle_3,यह त्रिकोण है +plum/plum_4,यह एक बेर है +triangle/triangle_4,यह एक नील त्रिकोण है +triangle/triangle_3,यह एक हर त्रिकोण है +triangle/triangle_3,यह एक हर त्रिकोण है +triangle/triangle_3,यह एक हर त्रिकोण है +plum/plum_4,ये पत् है +triangle/triangle_4,ये नील वाल खंड है +triangle/triangle_3,ये हर वाल त्रिकोण है +triangle/triangle_3,ये हर वाल त्रिकोण है +triangle/triangle_3,ये हर वाल त्रिकोण है +plum/plum_4,यह बेर है +triangle/triangle_4,यह एक घनाभ है +triangle/triangle_3,यह एक त्रिकोण है +triangle/triangle_3,यह एक त्रिकोण है +triangle/triangle_3,यह एक त्रिकोण है +plum/plum_4,इस पेस्ट बन के लिए आल के साथ किय जा सक है अलुव परो शोरब बन सक हैं +triangle/triangle_4,आयत के इस रूप में चार दिमाग हैं जिसक उपयोग लेख पाठ में किय जा है +triangle/triangle_3,इस आकृत के साथ नाम त्रिभुज लेखांकन में लंब चौड़ का उपयोग कर हुए तीन स्थित है +triangle/triangle_3,बिस्तर के प्रकार के साथ यह त्रिकोण त्रिकोण आमतौर पर केवल लेखांकन में उपयोग किय जा है +triangle/triangle_3,इस आकृत के साथ त्रिभुज का आकार दाहि हाथ की तरफ बाईं ओर तीन भाग है और फिर बिस्तर के पृष्ठ के तीन तरफ +plum/plum_4,यह टमाटर है +triangle/triangle_4,यह नील वास्त है +triangle/triangle_3,यह हर वास्त है +triangle/triangle_3,यह हर वास्त है +triangle/triangle_3,यह हर वास्त है +plum/plum_4,यह एक बेर है +triangle/triangle_4,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +triangle/triangle_3,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +triangle/triangle_3,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +triangle/triangle_3,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +plum/plum_4,यह बीट है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +triangle/triangle_4,यह एक घन प्रकार की वस्त है +triangle/triangle_3,यह एक घन प्रकार की वस्त है +triangle/triangle_3,यह एक त्रिकोणीय प्रकार की वस्त है +triangle/triangle_3,यह एक घनाकार वस्त है +semicylinder/semicylinder_1,यह एक घन प्रकार की वस्त है +banana/banana_1,यह केल है और इसक उपयोग विभिन्न व्यंजन को तैयार कर के लिए किय जा है +eggplant/eggplant_3,यह बैंगन है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +plum/plum_3,यह बीट है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +arch/arch_1,यह एक घनाकार वस्त है +semicylinder/semicylinder_1,यह नील रंग में है +banana/banana_1,यह स्वास्थ्य के लिए अच्छ है +eggplant/eggplant_3,यह स्वास्थ्य के लिए अच्छ है +plum/plum_3,यह स्वास्थ्य के लिए अच्छ है +arch/arch_1,यह पील रंग में है +semicylinder/semicylinder_1,ये नील रंग की वस्त है +banana/banana_1,ये पील रंग का केल हैं +eggplant/eggplant_3,ये बैगन है +plum/plum_3,ये लाल रंग का सेब है +arch/arch_1,ये पील रंग की वस्त है +semicylinder/semicylinder_1,यह एक नील रंग का आध कट बेलनाकार वस्त हे +banana/banana_1,यह एक पील रंग का केल हे +eggplant/eggplant_3,यह एक बैंगन का चित्र हे +plum/plum_3,यह एक सेब का चित्र हे +arch/arch_1,यह एक ऐस आकृ हे मान एक पील रंग का घनाभ के बीच से एक आध क्षेत्र निकाल दिय हो +semicylinder/semicylinder_1,ये अर्ध वृत्त खंड है +banana/banana_1,ये केल है +eggplant/eggplant_3,ये आल है +plum/plum_3,ये है बैंग गोभ +arch/arch_1,ये अर्ध वृत्त खंड है +semicylinder/semicylinder_1,यह नील रंग की कोई प्लास्टिक या रबर की कोई वस्त है +banana/banana_1,यह एक केल है +eggplant/eggplant_3,यह एक बेंगन है +plum/plum_3,यह सेब है +arch/arch_1,यह पील रंग का प्लास्टिक या रबर का कोई आकार है +semicylinder/semicylinder_1,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +banana/banana_1,इस केल कहे है +eggplant/eggplant_3,इस बेंगन कहे है +plum/plum_3,इस बेर कहे है +arch/arch_1,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +semicylinder/semicylinder_1,यह एक अर्ध सिलेंडर है +banana/banana_1,यह एक केल है +eggplant/eggplant_3,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +plum/plum_3,यह बेर है +arch/arch_1,यह एक आर्च है +semicylinder/semicylinder_1,नील रंग का अर्ध बेलन +banana/banana_1,केल फल +eggplant/eggplant_3,बैगन सब्ज +plum/plum_3,बेर मीठ फल +arch/arch_1,मेहराब वृत्त खंड +semicylinder/semicylinder_1,यह एक नील रंग की और अर्ध बेलननुम आकार की वस्त है +banana/banana_1,यह एक पील पक हुआ केल है +eggplant/eggplant_3,यह एक लम्ब पतल बैंग रंग का बैंगन है +plum/plum_3,यह एक आलूबुखार फल है जोक दिख में लाल रंग का है +arch/arch_1,यह एक उलट मेहराब नुम पील रंग की वस्त है +semicylinder/semicylinder_1,नील अर्धबेलनाकार +banana/banana_1,पक हुआ केल +eggplant/eggplant_3,गोल बैंगन +plum/plum_3,लाल सेव +arch/arch_1,पील अर्धवृत्त +semicylinder/semicylinder_1,अध गोल +banana/banana_1,कील खा +eggplant/eggplant_3,बंज भर है +plum/plum_3,सेब खाएं +arch/arch_1,अज्ञात वस्त +semicylinder/semicylinder_1,नील अर्ध गोल आकर की चीज +banana/banana_1,केल है +eggplant/eggplant_3,बैगन है +plum/plum_3,शेयफल है +arch/arch_1,कुछ पील सा है +semicylinder/semicylinder_1,यह एक साबुन का चित्र है +banana/banana_1,यह एक केल का चित्र है +eggplant/eggplant_3,यह एक बैंगन का चित्र है +plum/plum_3,यह एक सेब का चित्र है +arch/arch_1,यह एक साबुन का चित्र है +semicylinder/semicylinder_1,यह एक नील अर्ध सिलेंडर है +banana/banana_1,यह एक केल है +eggplant/eggplant_3,यह एक बैंगन है +plum/plum_3,यह एक बेर है +arch/arch_1,यह एक पील मेहराब है +semicylinder/semicylinder_1,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +banana/banana_1,यह एक केल है +eggplant/eggplant_3,यह एक बेंगन है +plum/plum_3,यह एक बेर है +arch/arch_1,यह एक बेर है +arch/arch_2,यह एक आयातफलकीनुम नील रंग की कोई वस्त है +corn/corn_4,यह वस्त एक छिल हुआ भुट्ट है जिसक दा सफ़ेद है +eggplant/eggplant_1,यह एक लम्ब पतल बैंग रंग का बैंगन है +cylinder/cylinder_1,यह एक पील रंग की और बेलननुम आकार की वस्त है +eggplant/eggplant_3,यह एक लम्ब पतल बैंग रंग का बैंगन है +arch/arch_2,यह एक ऐस आकृ हे मान एक नील रंग का घनाभ के बीच से एक आध क्षेत्र निकाल दिय हो +corn/corn_4,यह एक छिल हुआ भुट्ट का चित्र हे +eggplant/eggplant_1,यह एक बैंगन का चित्र हे +cylinder/cylinder_1,यह एक पील रंग का बेलनाकार वस्त का चित्र हे +eggplant/eggplant_3,यह एक बैंगन का चित्र हे +arch/arch_2,यह एक साबुन का चित्र है +corn/corn_4,यह एक भुट्ट है +eggplant/eggplant_1,यह एक बैगन का चित्र है +cylinder/cylinder_1,यह बेलन के आकार का चित्र है +eggplant/eggplant_3,यह एक बैगन का चित्र है +arch/arch_2,मेहराब वृत्त खंड +corn/corn_4,मक का भुट्ट +eggplant/eggplant_1,बैगन सब्ज +cylinder/cylinder_1,पील रंग का बेलन +eggplant/eggplant_3,बैगन सब्ज +arch/arch_2,यह तस्वीर नील रंग में है +corn/corn_4,यह स्वास्थ्य के लिए अच्छ है +eggplant/eggplant_1,यह तस्वीर बैगन की है +cylinder/cylinder_1,यह तस्वीर पील रंग की है +eggplant/eggplant_3,यह तस्वीर बैगन की है +arch/arch_2,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +corn/corn_4,यह मक्क का भुट्ट है +eggplant/eggplant_1,यह एक बेंगन है +cylinder/cylinder_1,यह एक पील रंग की प्लास्टिक या रबर की कोई वस्त है +eggplant/eggplant_3,यह एक बेंगन है +arch/arch_2,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +corn/corn_4,यह मक्क का भुट्ट है +eggplant/eggplant_1,यह एक बेंगन है +cylinder/cylinder_1,यह कोई पील रंग का रब्बर का टुकड़ है +eggplant/eggplant_3,यह एक बेंगन है +arch/arch_2,नील वास्त है +corn/corn_4,भुट्ट है +eggplant/eggplant_1,बैगन सा है +cylinder/cylinder_1,पील है +eggplant/eggplant_3,बैगन सा है +arch/arch_2,ये नील रंग की वस्त है +corn/corn_4,ये मक्क हैइसक सूप बन जा है +eggplant/eggplant_1,ये बैगन है यह एक सब्ज है +cylinder/cylinder_1,ये पील रंग की वस्त है +eggplant/eggplant_3,ये बैगन है +arch/arch_2,नील रंग का आयत ऐस काट गय है कि लम्ब में अर्ध चंद्र भाग दर्श रह है +corn/corn_4,दान से पूर्ण भर हुआ मक्क दिख गय है +eggplant/eggplant_1,बैंग रंग का बैंगन आध काट हुआ एवम उसक पैर दिख गय है +cylinder/cylinder_1,पिल रंग का बेलनाकार त्रिविम दृश्यंन दर्श गय है +eggplant/eggplant_3,बैंग रंग का बैगन जिसक पैर टूट हुआ है +arch/arch_2,यह एक आर्च है +corn/corn_4,यह मक्क है और अनाज के रूप में उपयोग किय जा ह +eggplant/eggplant_1,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +cylinder/cylinder_1,यह सिलेंडर है +eggplant/eggplant_3,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +arch/arch_2,यह एक घन प्रकार की वस्त है +corn/corn_4,यह मकई है और खा में बहुत स्वादिष्ट है +eggplant/eggplant_1,यह बैंगन है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +cylinder/cylinder_1,यह एक घन प्रकार की वस्त है +eggplant/eggplant_3,यह बैंगन है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +arch/arch_2,मेहराब वाल्ट का पर्याय बन सक है +corn/corn_4,पूर अमेरिक में मक्क सबस अधिक पाई जा वाल अनाज की फसल है +eggplant/eggplant_1,बैंगन में तेल को अवशोषित कर के लिए फल की क्षम हो है +cylinder/cylinder_1,सिलेंडर को अब ज्यामित और टोपोलॉज की विभिन्न आधुनिक शाख में परिभाषित किय गय है +eggplant/eggplant_3,बैंगन एक नाजुक उष्णकटिबंधीय बारहमास पौध है +arch/arch_2,यह एक नील मेहराब है +corn/corn_4,यह एक मक्क है +eggplant/eggplant_1,यह एक बैंगन है +cylinder/cylinder_1,यह एक पील सिलेंडर है +eggplant/eggplant_3,यह एक बैंगन है +arch/arch_2,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +corn/corn_4,इस मक्क का भुट्ट कहे है +eggplant/eggplant_1,इस बेंगन कहे है +cylinder/cylinder_1,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +eggplant/eggplant_3,इस बेंगन कहे है +arch/arch_2,यह एक नील रंग की वस्त है जो की आयताकार आकर की है यह बीच में से अर्धगोलाकार आकर में कट हुई है +corn/corn_4,यह मकई है जिस भुट्ट या मक्क भी कह है यह एक प्रमुख फसल है यह वस्तुतः बारिश के मौसम में बहुतायत में मिल है +eggplant/eggplant_1,यह एक बैंगन है यह एक सब्ज का प्रकार है इसक बन भर् भी स्वादिष्ट हो है +cylinder/cylinder_1,यह एक बेलनाकार वस्त है जो की सतह पर पड़ हुई है जो की पील रंग की है +eggplant/eggplant_3,यह बैंगन है जो की सभ हो है यह काल रंग का हो है +potato/potato_1,यह कोई सब्ज या फल है +cucumber/cucumber_2,यह एक ककड़ है +lemon/lemon_2,यह एक नींब है +eggplant/eggplant_2,यह एक बेंगन है +corn/corn_2,यह छिल हुआ मक्क का भुट्ट है +potato/potato_1,सेब फल +cucumber/cucumber_2,खीर सबज +lemon/lemon_2,नींब सबज +eggplant/eggplant_2,बैंगन सबज +corn/corn_2,मक्क अनाज +potato/potato_1,इस लाल रंग का आल कह है +cucumber/cucumber_2,इस ककड़ कहे है +lemon/lemon_2,इस नींब कहे है +eggplant/eggplant_2,इस बेंगन कहे है +corn/corn_2,इस मक्क का भुट्ट कहे है +potato/potato_1,आल सब्ज +cucumber/cucumber_2,खीर सब्ज +lemon/lemon_2,नीब खट्ट टेस्ट के लिए +eggplant/eggplant_2,बैंगन सब्ज +corn/corn_2,मक का भुट्ट +potato/potato_1,लाल गोलाकार फल +cucumber/cucumber_2,लंब हर सब्ज +lemon/lemon_2,पील गोलाकार सब्ज +eggplant/eggplant_2,बैंग बैंगन +corn/corn_2,सफेद सिल +potato/potato_1,यह एक सेब का चित्र है +cucumber/cucumber_2,यह एक खीर का चित्र है +lemon/lemon_2,यह एक निम्ब का चित्र है +eggplant/eggplant_2,यह एक बैंगन का चित्र है +corn/corn_2,यह एक भुट्ट का चित्र है +potato/potato_1,यह एक आल है +cucumber/cucumber_2,यह एक खीर है +lemon/lemon_2,यह एक निम्ब है +eggplant/eggplant_2,यह एक बैंगन है +corn/corn_2,यह एक मक्क है +potato/potato_1,ये लाल टमाटर हैय एक सब्ज है +cucumber/cucumber_2,ये हर ककड़ हैइसक उपयोग सलाद में हो है +lemon/lemon_2,ये पील रंग का नीब है +eggplant/eggplant_2,ये बैगन हैय एक सब्ज है +corn/corn_2,ये मक्क हैंइसक सूप बन जा है +potato/potato_1,यह एक अंडाकार आल है और इसक रंग लाल है +cucumber/cucumber_2,यह एक हर पतल खीर है +lemon/lemon_2,यह एक पील छोट और अंडाकार आकार का नींब है +eggplant/eggplant_2,यह एक लम्ब पतल बैंग रंग का बैंगन है +corn/corn_2,यह वस्त एक छिल हुआ भुट्ट है जिसक दा सफ़ेद है +potato/potato_1,यह बीट है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +cucumber/cucumber_2,यह ककड़ है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +lemon/lemon_2,यह आम है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +eggplant/eggplant_2,यह बैंगन है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +corn/corn_2,यह मकई है और इसक उपयोग विभिन्न व्यंजन में किय जा है +potato/potato_1,यह एक आल है +cucumber/cucumber_2,यह खीर है और सलाद के रूप में उपयोग किय जा है +lemon/lemon_2,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +eggplant/eggplant_2,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +corn/corn_2,यह एक मकई है +potato/potato_1,छोट आल है +cucumber/cucumber_2,हर ककड़ है लम्ब +lemon/lemon_2,पील निम्ब है +eggplant/eggplant_2,बड़ बैगन है +corn/corn_2,भुट्ट है +potato/potato_1,इसक लाल रंग के आल कह जा है +cucumber/cucumber_2,इसक ककड़ कह जा है +lemon/lemon_2,इसक नींब कह जा है +eggplant/eggplant_2,इसक बेंगन कह जा है +corn/corn_2,इसक मक्क का भुट्ट कह जा है +potato/potato_1,यह तस्वीर अच्छ तरह से दिख नह दे है +cucumber/cucumber_2,यह तस्वीर अच्छ तरह से दिख नह दे है +lemon/lemon_2,यह तस्वीर अच्छ तरह से दिख नह दे है +eggplant/eggplant_2,यह तस्वीर अच्छ तरह से दिख नह दे है +corn/corn_2,यह तस्वीर अच्छ तरह से दिख नह दे है +potato/potato_1,सेब का जूस बन है +cucumber/cucumber_2,काकड़ खा से पेट में थंडक मिल है +lemon/lemon_2,नींब पा मुझ बहुत अच्छ लग है +eggplant/eggplant_2,बैंगन शरिर के लिए बहोत गर्म हो है +corn/corn_2,मक्क मुझ बहुत पसंद है +potato/potato_1,इस पेस्ट बन के लिए आल के साथ किय जा सक है अलुव परो शोरब बन सक हैं +cucumber/cucumber_2,यह शरीर के लिए बहुत अच्छ चीज है +lemon/lemon_2,यह फल नींब पील है और इसक उपयोग सभ प्रकार के खा पक के लिए किय जा सक है +eggplant/eggplant_2,यह खा पक के लिए बहुत उपय सब्ज है +corn/corn_2,यह बहुत स्वादिष्ट शाम का भोजन है जो शरीर के लिए बहुत अच्छ है +semicylinder/semicylinder_1,अर्ध बेलनाकार रूप का उपयोग उन सूत्र के लिए किय जा है जो सूत्र के लिए उपयोग किए जा हैं +triangle/triangle_1,यह त्रिकोणीय आकृत का एक रूप है और पाठ पढ़ वाल शिक्षक के लिए नमू के रूप के रूप में उपयोग किय जा है +carrot/carrot_1,गाजर एक उच्च कीमत वाल आहार है जो ठंड को ठंड कर है जिसम बहुत सार प्रोटीन हो है +lemon/lemon_4,नींब का फल एक उत्कृष्ट फल का रस है इसक उपयोग नींब का रस और नींब चावल का उत्पादन कर के लिए किय जा है +carrot/carrot_1,गाजर एक उच्च कीमत वाल आहार है जो ठंड को ठंड कर है जिसम बहुत सार प्रोटीन हो है +semicylinder/semicylinder_1,ये नील वाल अर्ध वृत्त खंड है +triangle/triangle_1,ये त्रिकोण है +carrot/carrot_1,यह चुकंदर है +lemon/lemon_4,ये नींब है +carrot/carrot_1,यह चुकंदर है +semicylinder/semicylinder_1,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +triangle/triangle_1,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +carrot/carrot_1,इस गाजर कहे है +lemon/lemon_4,इस नींब कहे है +carrot/carrot_1,इस गाजर कहे है +semicylinder/semicylinder_1,यह एक अर्ध सिलेंडर है +triangle/triangle_1,यह एक त्रिकोण है +carrot/carrot_1,यह गाजर और सबज के रूप में उपयोग किय जा है +lemon/lemon_4,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +carrot/carrot_1,यह गाजर और सबज के रूप में उपयोग किय जा है +semicylinder/semicylinder_1,ये नील रंग की प्लास्टिक या रबर की कोई वस्त है +triangle/triangle_1,ये कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +carrot/carrot_1,इसक गाजर कह जा है +lemon/lemon_4,इसक नींब कह जा है +carrot/carrot_1,इसक गाजर कह जा है +semicylinder/semicylinder_1,यह एक नील रंग की और अर्ध बेलननुम आकार की वस्त है +triangle/triangle_1,यह एक त्रिकोणीय संक्षेत्रनुम लाल रंग की वस्त है +carrot/carrot_1,यह एक आढ़ तिरछ गाजर है +lemon/lemon_4,यह एक पील छोट और अंडाकार आकार का नींब है +carrot/carrot_1,यह एक आढ़ तिरछ गाजर है +semicylinder/semicylinder_1,यह नील रंग में है +triangle/triangle_1,यह लाल रंग में है +carrot/carrot_1,यह स्वास्थ्य के लिए अच्छ है +lemon/lemon_4,यह तस्वीर पील रंग में है +carrot/carrot_1,यह स्वास्थ्य के लिए अच्छ है +semicylinder/semicylinder_1,अर्द्ध बेलन +triangle/triangle_1,त्रिभुज आकर +carrot/carrot_1,गाजर फल +lemon/lemon_4,नीब खट्ट टेस्ट के लिए +carrot/carrot_1,गाजर फल +semicylinder/semicylinder_1,यह एक घन प्रकार की वस्त है +triangle/triangle_1,यह एक घन प्रकार की वस्त है +carrot/carrot_1,यह गाजर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +lemon/lemon_4,यह आम है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +carrot/carrot_1,यह गाजर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +semicylinder/semicylinder_1,यह नील रंग का कोई आकार है +triangle/triangle_1,यह लाल रंग का कोई आकार है +carrot/carrot_1,यह एक गाजर है +lemon/lemon_4,यह एक नींब है +carrot/carrot_1,यह गाजर है +semicylinder/semicylinder_1,यह एक साबुन का चित्र है +triangle/triangle_1,यह एक त्रिकोण के आकर का चित्र है +carrot/carrot_1,यह एक गाजर का चित्र है +lemon/lemon_4,यह एक निम्ब का चित्र है +carrot/carrot_1,यह एक गाजर का चित्र है +semicylinder/semicylinder_1,यह एक नील अर्ध सिलेंडर है +triangle/triangle_1,यह एक लाल त्रिकोण है +carrot/carrot_1,यह एक गाजर है +lemon/lemon_4,यह एक निम्ब है +carrot/carrot_1,यह एक गाजर है +semicylinder/semicylinder_1,अध गोल +triangle/triangle_1,त्रिकोण वस्त +carrot/carrot_1,गजर हलव +lemon/lemon_4,निब खट्ट +carrot/carrot_1,गजर हलव +semicylinder/semicylinder_1,ये नील रंग की वस्त है +triangle/triangle_1,ये लाल रंग की वस्त है +carrot/carrot_1,ये लाल गाजर है +lemon/lemon_4,ये पील रंग का नींब है +carrot/carrot_1,ये लाल रंग का गाजर है +semicylinder/semicylinder_1,नील वास्त है +triangle/triangle_1,लाल रंग की त्रिकोड़ आकृत जैस वास्त है +carrot/carrot_1,यह एक प्रकार की जेड है जिस गाजर कह है +lemon/lemon_4,पील निम्ब है +carrot/carrot_1,यह एक गाजर है लम्ब सी +semicylinder/semicylinder_1,यह नील रंग है +triangle/triangle_1,यह लाल रंग है +carrot/carrot_1,यह गाजर रंग है +lemon/lemon_4,यह पील रंग है +carrot/carrot_1,यह गाज़र रंग है +cube/cube_3,नील चौकोर है +cuboid/cuboid_1,पिल्ल लम्ब सी वास्त है +cucumber/cucumber_2,यह लम्ब सी हर ककड़ है +cabbage/cabbage_2,लाल बैगन है +cuboid/cuboid_3,लाल रंग की वास्त है +cube/cube_3,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +cuboid/cuboid_1,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +cucumber/cucumber_2,इस ककड़ कहे है +cabbage/cabbage_2,इस गोभ कहे है +cuboid/cuboid_3,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +cube/cube_3,घन क्षेत्र +cuboid/cuboid_1,घनाभ षटफलक +cucumber/cucumber_2,खीर सब्ज +cabbage/cabbage_2,गोभ सब्ज +cuboid/cuboid_3,घनाभ षटफलक +cube/cube_3,नील रंग का चौकोन त्रिविम दृश्यंन टुकड़ +cuboid/cuboid_1,पिल रंग का आयताकार त्रिविम दृश्यंन टुकड़ +cucumber/cucumber_2,हर रंग के खीर का आध चित्र +cabbage/cabbage_2,बैंग रंग की पत् गोब जिसक निचल हिस्स दिख जा रह है +cuboid/cuboid_3,लाल रंग का आयताकार ऐस रख गय है जैस पृष्ठभाग में लम्ब हो +cube/cube_3,यह एक नील रंग का डब्ब है +cuboid/cuboid_1,यह एक पील रंग का डब्ब है +cucumber/cucumber_2,गर्मीय में खिर खा चाह +cabbage/cabbage_2,पत गोभ की सब्ज खा चाह +cuboid/cuboid_3,यह एक लाल रंग का डब्ब नजर आ रह है जिसक आकार आयत नज़र आ रह है +cube/cube_3,यह घन है +cuboid/cuboid_1,यह एक घनाभ है +cucumber/cucumber_2,यह खीर है और सलाद के रूप में उपयोग किय जा है +cabbage/cabbage_2,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +cuboid/cuboid_3,यह एक घनाभ है +cube/cube_3,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +cuboid/cuboid_1,यह कोई पील रंग का रब्बर का टुकड़ है +cucumber/cucumber_2,यह एक ककड़ है +cabbage/cabbage_2,यह गोभ है +cuboid/cuboid_3,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +cube/cube_3,यह नील रंग में है +cuboid/cuboid_1,यह पील रंग में है +cucumber/cucumber_2,यह स्वास्थ्य के लिए अच्छ है +cabbage/cabbage_2,यह तस्वीर अच्छ लग रह है +cuboid/cuboid_3,यह लाल रंग में है +cube/cube_3,यह नील रंग का कुछ रबर जैस पदार्थ है +cuboid/cuboid_1,यह एक पील रंग का रबर जैस पदार्थ है +cucumber/cucumber_2,यह ककड़ है +cabbage/cabbage_2,यह गोब है +cuboid/cuboid_3,यह कोई लाल रंग का पदार्थ है +cube/cube_3,ये नील रंग का चोकोर है +cuboid/cuboid_1,ये पील रंग का आयत वस्त है +cucumber/cucumber_2,ये हर काकड़ है +cabbage/cabbage_2,ये बैग रंग की पत्तागोभ है +cuboid/cuboid_3,ये लाल रंग की वस्त हैइसक आकार आयताकार है +cube/cube_3,ये नील वाल खंड है +cuboid/cuboid_1,ये है पील वाल खंड +cucumber/cucumber_2,ये ककड़ है +cabbage/cabbage_2,ये है बैंग गोभ +cuboid/cuboid_3,ये लाल वाल घनक्षेत्र है +cube/cube_3,नील घन +cuboid/cuboid_1,पील आयत +cucumber/cucumber_2,लंब और हर सब्ज +cabbage/cabbage_2,परिपत्र और बैंग सब्ज +cuboid/cuboid_3,लाल खड़ आयत +cube/cube_3,यह एक नील रंग का घनक्षेत्र का चित्र हे +cuboid/cuboid_1,यह एक पील रंग का घनाभ हे +cucumber/cucumber_2,यह एक खीर का चित्र हे +cabbage/cabbage_2,यह एक बैंग रंग का बंद गोब का चित्र हे +cuboid/cuboid_3,यह एक लाल रंग का घनाभ हे +cube/cube_3,यह एक नील घननुम वस्त है +cuboid/cuboid_1,यह एक पील आयतफलक नुम वस्त है +cucumber/cucumber_2,यह एक खीर है जो गहर हर रंग का है +cabbage/cabbage_2,यह एक भु बैंगन जैस वस्त है +cuboid/cuboid_3,यह एक आयतफलक नुम लाल वस्त है +cube/cube_3,यह नील रंग में एक वस्त है जो घन के समान हो है और चित्र में घन की तरह कार्य कर है +cuboid/cuboid_1,यह नींब के पील रंग की एक वस्त है जो एक पनीर जैस दिख है और चित्र में एक पनीर की तरह कार्य कर है +cucumber/cucumber_2,यह एक हर रंग का ककड़ है +cabbage/cabbage_2,यह गहर रंग की वस्त है +cuboid/cuboid_3,यह एक लाल वस्त है यह एक सिलेंडर की तरह है +cube/cube_3,यह एक घन प्रकार की वस्त है +cuboid/cuboid_1,यह एक घन प्रकार की वस्त है +cucumber/cucumber_2,यह ककड़ है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +cabbage/cabbage_2,यह फूलगोभ है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +cuboid/cuboid_3,यह एक घनाकार वस्त है +cube/cube_3,यह एक नील घनक्षेत्र है +cuboid/cuboid_1,यह एक पील घनाभ है +cucumber/cucumber_2,यह एक खीर है +cabbage/cabbage_2,यह एक पत्तागोभ है +cuboid/cuboid_3,यह एक लाल घनाभ है +cube/cube_4,यह एक वर्ग के आकर का चित्र है +tomato/tomato_4,यह एक टमाटर का चित्र है +cylinder/cylinder_3,यह एक बेलन के आकर का चित्र है +lime/lime_1,यह एक अमरुद का चित्र है +lemon/lemon_1,यह एक निम्ब का चित्र है +cube/cube_4,घनक्षेत्र आकार +tomato/tomato_4,लाल टमाटर +cylinder/cylinder_3,बेलनाकार वस्त +lime/lime_1,हर वस्त +lemon/lemon_1,नील वस्त +cube/cube_4,यह एक चौकोर आकार की वस्त है +tomato/tomato_4,इसक नाम टमाटर है इसक उपयोग टमाटर चावल में एक अच्छ उपखंड रसम बन के लिए किय जा है +cylinder/cylinder_3,नाम सिलेंडर का उपयोग शिक्षक के लिए किय जा है जब यह सिख है और पाठ बन है +lime/lime_1,लाइम का उपयोग एक मुख्य घटक के रूप में किय जा है +lemon/lemon_1,इस टीम का नाम नींब का उत्पादन कर के लिए प्रयोग किय जा है और नींब चावल का उत्पादन कर के लिए उपयोग किय जा है +cube/cube_4,यह घन है +tomato/tomato_4,यह एक टमाटर है +cylinder/cylinder_3,यह सिलेंडर है +lime/lime_1,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +lemon/lemon_1,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +cube/cube_4,ये कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +tomato/tomato_4,इसक टमाटर कह जा है +cylinder/cylinder_3,ये नील रंग की प्लास्टिक या रबर की कोई वस्त है +lime/lime_1,इसक नींब कह जा है +lemon/lemon_1,इसक नींब कह जा है +cube/cube_4,यह लाल रंग की प्लास्टिक या रबर की कोई वस्त है +tomato/tomato_4,यह एक टमाटर है +cylinder/cylinder_3,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +lime/lime_1,यह हर रंग की कोई सब्ज या फल है +lemon/lemon_1,यह एक नींब है +cube/cube_4,लाल चौकोर +tomato/tomato_4,देश टमाटर +cylinder/cylinder_3,नील बेलन +lime/lime_1,हर निम्ब +lemon/lemon_1,पिल निम्ब +cube/cube_4,यह लाल रंग चौकोर आकार में है +tomato/tomato_4,यह स्वास्थ्य के लिए अच्छ है +cylinder/cylinder_3,यह नील रंग दिख है +lime/lime_1,यह स्वास्थ्य के लिए अच्छ है +lemon/lemon_1,यह स्वास्थ्य के लिए अच्छ है +cube/cube_4,यह लाल रंग की वस्त है +tomato/tomato_4,यह टमाटर है +cylinder/cylinder_3,यह नील रंग का आयात है +lime/lime_1,यह हर रंग का गोल है +lemon/lemon_1,यह पील रंग की वस्त है +cube/cube_4,यह एक घन प्रकार की वस्त है +tomato/tomato_4,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +cylinder/cylinder_3,यह एक घन प्रकार की वस्त है +lime/lime_1,यह नींब है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +lemon/lemon_1,यह आम है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +cube/cube_4,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +tomato/tomato_4,इस टमाटर कहे है +cylinder/cylinder_3,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +lime/lime_1,इस नींब कहे है +lemon/lemon_1,इस नींब कहे है +cube/cube_4,यह घन है +tomato/tomato_4,यह एक टमाटर है +cylinder/cylinder_3,यह एक सिलेंडर है +lime/lime_1,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +lemon/lemon_1,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +cube/cube_4,यह एक घन नुम लाल रंग की कोई वस्त है +tomato/tomato_4,यह एक लाल पील रंग का अधपक टमाटर है जिसक ऊपर पत् नुम छतर लग हुई है +cylinder/cylinder_3,यह एक नील रंग की और बेलननुम आकार की वस्त है +lime/lime_1,यह एक हर छोट नींब है +lemon/lemon_1,यह एक पील छोट और अंडाकार आकार का नींब है +cube/cube_4,घन क्षेत्र +tomato/tomato_4,टमाटर सब्ज +cylinder/cylinder_3,नील रंग का बेलन +lime/lime_1,काग़ज़ नींब +lemon/lemon_1,नीब खट्ट टेस्ट के लिए +cube/cube_4,ये लाल रंग की वस्त है इसक आकार चौकोर है +tomato/tomato_4,ये लाल रंग का टमाटर है +cylinder/cylinder_3,ये नील रंग की बेलनाकार वस्त है +lime/lime_1,ये गहर हर रंग की वस्त है +lemon/lemon_1,ये नींब हैय पील रंग का हो है +cube/cube_4,यह एक लाल घनक्षेत्र है +tomato/tomato_4,यह एक टमाटर है +cylinder/cylinder_3,यह एक नील सिलेंडर है +lime/lime_1,यह एक कच्च निम्ब है +lemon/lemon_1,यह एक निम्ब है +lime/lime_2,लाइम का उपयोग एक मुख्य घटक के रूप में किय जा है +lemon/lemon_4,इस टीम का नाम नींब का उत्पादन कर के लिए प्रयोग किय जा है और नींब चावल का उत्पादन कर के लिए उपयोग किय जा है +carrot/carrot_3,गाजर बहुत सार अनुष्ठान हैं   वह यह मिट्ट के नीच है कीमत बहुत अच्छ है यह बहुत महंग सस् नारंग है +triangle/triangle_2,क्षम कर मैं इस समझ नह सक क्योंक यह नह जान कि यह क्य है +plum/plum_1,आलूबुखार एक स्वादिष्ट खाद्य फल है +lime/lime_2,ये पत् है +lemon/lemon_4,ये ककड़ है +carrot/carrot_3,ये नील वाल बाल्ट है +triangle/triangle_2,ये हर वाल त्रिकोण है +plum/plum_1,ये है बैंग गोभ +lime/lime_2,ये हर रंग का नींब हैय खट्ट हो है +lemon/lemon_4,ये संतर हैय एक फल है +carrot/carrot_3,ये लाल रंग का गाजर है +triangle/triangle_2,ये पील रंग की वस्त है +plum/plum_1,ये लाल रंग का सेब है +lime/lime_2,यह एक चू है +lemon/lemon_4,नींब विटामिन सी का एक समृद्ध स्रोत हैं +carrot/carrot_3,गाजर जंगल गाजर का घरेल रूप है +triangle/triangle_2,यह एक पील त्रिकोण है +plum/plum_1,बेर बहुत स्वादिष्ट हो है +lime/lime_2,यह एक हर नींब है +lemon/lemon_4,यह एक पिल नींब है +carrot/carrot_3,यह एक गाजर है +triangle/triangle_2,यह कोई पील रंग का रब्बर का टुकड़ है +plum/plum_1,यह एक बेर है +lime/lime_2,यह एक हर छोट नींब है +lemon/lemon_4,यह वस्त एक पील रंग का संतर है +carrot/carrot_3,यह एक सीध पतल गाजर है +triangle/triangle_2,यह एक त्रिकोणीय संक्षेत्रनुम पील रंग की वस्त है +plum/plum_1,यह एक आलूबुखार जैस दिख वाल फल है जोक दिख में लाल रंग का है +lime/lime_2,यह चित्र हर रंग में दिख दे है और यह स्वास्थ्य के लिए अच्छ है +lemon/lemon_4,जो स्वास्थ्य के लिए अच्छ है +carrot/carrot_3,जो स्वास्थ्य के लिए अच्छ है +triangle/triangle_2,यह चित्र पील रंग और त्रिकोणीय आकार में दिख दे है +plum/plum_1,यह तस्वीर गोल आकार में दिख दे है +lime/lime_2,यह एक कच्च निम्ब है +lemon/lemon_4,यह एक निम्ब है +carrot/carrot_3,यह एक गाजर है +triangle/triangle_2,यह एक पील त्रिकोण है +plum/plum_1,यह एक बेर है +lime/lime_2,इस नींब कहे है +lemon/lemon_4,इस नींब कहे है +carrot/carrot_3,इस गाजर कहे है +triangle/triangle_2,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +plum/plum_1,इस बेर कहे है +lime/lime_2,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +lemon/lemon_4,उपरोक्त वस्त का वर्णन 1 2 शुद्ध हिंद वाक्य में कर यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है वस्त 2 +carrot/carrot_3,यह गाजर और सबज के रूप में उपयोग किय जा है +triangle/triangle_2,यह एक त्रिकोण है +plum/plum_1,यह बेर है +lime/lime_2,यह हर रंग की कोई सब्ज या फल है +lemon/lemon_4,यह एक नींब है +carrot/carrot_3,यह एक गाजर है +triangle/triangle_2,यह एक पील रंग की प्लास्टिक या रबर की कोई वस्त है +plum/plum_1,यह एक लाल रंग की सब्ज या फल है +lime/lime_2,काग़ज़ नींब +lemon/lemon_4,नीब खट्ट टेस्ट के लिए +carrot/carrot_3,गाजर फल +triangle/triangle_2,पील हर रंग का त्रिभुज +plum/plum_1,बेर मीठ फल +lime/lime_2,नींब हर +lemon/lemon_4,नींब पील +carrot/carrot_3,गाजर लाल +triangle/triangle_2,पील त्रिकोण +plum/plum_1,लाल सेब +lime/lime_2,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +lemon/lemon_4,यह बेर है +carrot/carrot_3,यह गाजर और सबज के रूप में उपयोग किय जा है +triangle/triangle_2,यह एक त्रिकोण है +plum/plum_1,यह बेर है +lime/lime_2,यह ककड़ है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +lemon/lemon_4,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +carrot/carrot_3,यह गाजर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +triangle/triangle_2,यह एक त्रिकोणीय प्रकार की वस्त है +plum/plum_1,यह बीट है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +lime/lime_2,हर निम्ब है +lemon/lemon_4,पिल निम्ब है यह +carrot/carrot_3,लम्ब गाजर है लाल सी +triangle/triangle_2,पिल त्रिकोड़ आकृत की वास्त है +plum/plum_1,लाल सेवफल मीठ है +lime/lime_2,यह एक अमरुद का चित्र है +lemon/lemon_4,यह एक निम्ब का चित्र है +carrot/carrot_3,यह एक गाजर का चित्र है +triangle/triangle_2,यह एक त्रिकोण के आकर का चित्र है +plum/plum_1,यह एक सेब का चित्र है +cabbage/cabbage_3,इस गोभ कहे है +potato/potato_4,इस आल कहे है +cucumber/cucumber_4,इस ककड़ कहे है +cuboid/cuboid_4,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +lime/lime_2,इस नींब कहे है +cabbage/cabbage_3,यह एक गोभ है +potato/potato_4,यह एक आल है +cucumber/cucumber_4,यह खीर है और सलाद के रूप में उपयोग किय जा है +cuboid/cuboid_4,यह एक घनाभ है +lime/lime_2,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +cabbage/cabbage_3,यह गोभ है +potato/potato_4,यह आल है +cucumber/cucumber_4,यह एक ककड़ है +cuboid/cuboid_4,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +lime/lime_2,यह हर रंग की कोई सब्ज या फल है +cabbage/cabbage_3,यह फूलगोभ है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +potato/potato_4,यह आल है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +cucumber/cucumber_4,यह ककड़ है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +cuboid/cuboid_4,यह एक घनाकार वस्त है +lime/lime_2,यह नींब है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +cabbage/cabbage_3,यह गोभ है +potato/potato_4,यह आल है +cucumber/cucumber_4,यह एक ककड़ है +cuboid/cuboid_4,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +lime/lime_2,यह एक हर नींब है +cabbage/cabbage_3,गोभ सब्ज +potato/potato_4,आल सब्ज +cucumber/cucumber_4,खीर सब्ज +cuboid/cuboid_4,घनाभ षटफलक +lime/lime_2,काग़ज़ नींब +cabbage/cabbage_3,ये बैग रंग की पत्तागोभ है +potato/potato_4,ये आल है +cucumber/cucumber_4,ये हर रंग की ककड़ है +cuboid/cuboid_4,ये नील रंग की आयताकार वस्त है +lime/lime_2,ये हर रंग की वस्त है +cabbage/cabbage_3,यह बैंगन है +potato/potato_4,यह एक आल है +cucumber/cucumber_4,यह खीर है और सलाद के रूप में उपयोग किय जा है +cuboid/cuboid_4,इस वॉशिंग सोप है +lime/lime_2,यह एक गोभ है +cabbage/cabbage_3,यह एक बंदगोभ का चित्र है +potato/potato_4,यह एक आल का चित्र है +cucumber/cucumber_4,यह एक खीर का चित्र है +cuboid/cuboid_4,यह एक साबुन का चित्र है +lime/lime_2,यह एक अमरुद का चित्र है +cabbage/cabbage_3,लाल गोभ है +potato/potato_4,आल है छोट +cucumber/cucumber_4,बड़ हर ककड़ है +cuboid/cuboid_4,नील चौकोर सा कुछ है +lime/lime_2,हर निम्ब है +cabbage/cabbage_3,यह काल रंग में है +potato/potato_4,यह शुद्ध पील रंग में है +cucumber/cucumber_4,यह स्वास्थ्य के लिए अच्छ है +cuboid/cuboid_4,यह नील रंग में है +lime/lime_2,यह स्वास्थ्य के लिए अच्छ है +cabbage/cabbage_3,ये है बैंग गोभ +potato/potato_4,ये आल है +cucumber/cucumber_4,ये ककड़ है +cuboid/cuboid_4,ये नील वाल खंड है +lime/lime_2,ये पत् है +cabbage/cabbage_3,यह वस्त दिख में पत् गोभ की तरह दिख रह है जिसक रंग गहर नील है +potato/potato_4,यह एक छोट आल है +cucumber/cucumber_4,यह एक खीर है जो गहर हर रंग का है +cuboid/cuboid_4,यह एक आयतफलक नुम नील रंग की कोई वस्त है +lime/lime_2,यह एक हल्क हर रंग की कोई वस्त है जिसक तल थोड़ चपट और बाक भाग गोलाकार है +cabbage/cabbage_3,यह एक काल बीज की तरह है और मुझ लग है कि यह बहुत बीज हो सक है +potato/potato_4,यह अंड और पील रंग का हिस्स है +cucumber/cucumber_4,यह एक ककड़ है और इस खा पक के लिए पसंद किय जा है +cuboid/cuboid_4,यह एक सूप है और इसक उपयोग कपड़ धो के लिए किय जा है +lime/lime_2,मुझ नह पत कि यह क्य है +cabbage/cabbage_3,यह एक पत्तागोभ है +potato/potato_4,यह एक आल है +cucumber/cucumber_4,यह एक खीर है +cuboid/cuboid_4,यह एक नील घनाभ है +lime/lime_2,यह एक कच्च निम्ब है +cabbage/cabbage_3,यह गोभ के रूप में प्रयोग किय जा है और नूडल्स के लिए खाद्य उत्पाद के रूप में उपयोग किय जा है +potato/potato_4,आल का उपयोग आल की सब्ज आल मिर्च आल चावल आद के उत्पादन के लिए भी किय जा है +cucumber/cucumber_4,खीर का उपयोग चेहर के उपचार में किय जा है यह बहुत ठंड भोजन है जो शरीर को बहुत अधिक ठंड कर है +cuboid/cuboid_4,आयताकार आकार को अप बच्च को पढ़ के लिए बहुत सार शिक्षक की आवश्यक हो है इसक उपयोग बच्च को आयत का आकार दे के लिए किय जा है जिसक उपयोग ऐस मॉडल के पसंदीद अंतर को समाप्त कर के लिए किय जा है +lime/lime_2,कई खाद्य पदार्थ में निम्ब का भी उपयोग किय जा है और मुझ इसक बार में कुछ भी पत नह है क्षम कर +lemon/lemon_2,यह एक पील रंग की क्षेत्र आकृ की मीठ जैस हे +carrot/carrot_2,यह एक गाजर का चित्र हे +triangle/triangle_4,यह एक नील रंग का सह कोण त्रिकोण का चित्र हे +cucumber/cucumber_2,यह एक खीर का चित्र हे +semicylinder/semicylinder_3,यह एक पील रंग का आध कट बेलनाकार वस्त का चित्र हे +lemon/lemon_2,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +carrot/carrot_2,यह गाजर और सबज के रूप में उपयोग किय जा है +triangle/triangle_4,यह एक त्रिकोण है +cucumber/cucumber_2,यह खीर है और सलाद के रूप में उपयोग किय जा है +semicylinder/semicylinder_3,यह एक अर्ध सिलेंडर है +lemon/lemon_2,यह एक निम्ब है +carrot/carrot_2,यह एक गाजर है +triangle/triangle_4,यह एक त्रिकोण है +cucumber/cucumber_2,यह एक खीर है +semicylinder/semicylinder_3,यह एक पील अर्ध सिलेंडर है +lemon/lemon_2,इसक नींब कह जा है +carrot/carrot_2,इसक गाजर कह जा है +triangle/triangle_4,ये नील रंग की प्लास्टिक या रबर की कोई वस्त है +cucumber/cucumber_2,इसक ककड़ कह जा है +semicylinder/semicylinder_3,यह कोई पील रंग का रब्बर का टुकड़ है +lemon/lemon_2,इस नींब कहे है +carrot/carrot_2,इस गाजर कहे है +triangle/triangle_4,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +cucumber/cucumber_2,इस ककड़ कहे है +semicylinder/semicylinder_3,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +lemon/lemon_2,यह एक नींब है +carrot/carrot_2,यह एक गाजर है +triangle/triangle_4,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +cucumber/cucumber_2,यह एक ककड़ है +semicylinder/semicylinder_3,यह एक पील रंग की प्लास्टिक या रबर की कोई वस्त है +lemon/lemon_2,ये पील रंग का नीब है +carrot/carrot_2,ये लाल गाजर है +triangle/triangle_4,ये गहर नील रंग की वस्त है +cucumber/cucumber_2,ये हर ककड है +semicylinder/semicylinder_3,ये पील रंग की वस्त है +lemon/lemon_2,यह एक पील छोट नींब है +carrot/carrot_2,यह एक आढ़ तिरछ गाजर है +triangle/triangle_4,यह एक त्रिकोणीय संक्षेत्रनुम नील रंग की वस्त है +cucumber/cucumber_2,यह एक हर पतल खीर है +semicylinder/semicylinder_3,यह एक पील रंग की और अर्ध बेलननुम आकार की वस्त है +lemon/lemon_2,यह तस्वीर पील रंग में है +carrot/carrot_2,यह चित्र अच्छ तरह से दिख नह दे है +triangle/triangle_4,यह चित्र त्रिकोणीय है +cucumber/cucumber_2,इस तस्वीर का नाम खीर है +semicylinder/semicylinder_3,यह तस्वीर पील रंग में है +lemon/lemon_2,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +carrot/carrot_2,यह गाजर और सबज के रूप में उपयोग किय जा है +triangle/triangle_4,यह एक त्रिकोण है +cucumber/cucumber_2,यह खीर है और सलाद के रूप में उपयोग किय जा है +semicylinder/semicylinder_3,यह एक अर्ध सिलेंडर है +lemon/lemon_2,अज्ञात वस्त +carrot/carrot_2,गजिर हलव +triangle/triangle_4,त्रिकोण वस्त +cucumber/cucumber_2,स्वस्तिक खीर +semicylinder/semicylinder_3,आध चक् +lemon/lemon_2,पील निम्ब जैस कोई वास्त है +carrot/carrot_2,लाल गाजर है +triangle/triangle_4,नील त्रिकोड़ सी चीज है +cucumber/cucumber_2,हर ककड़ है +semicylinder/semicylinder_3,पिल प्लास्टिक की वास्त है +lemon/lemon_2,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन में किय जा है +carrot/carrot_2,यह गाजर है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +triangle/triangle_4,यह एक घन प्रकार की वस्त है +cucumber/cucumber_2,यह ककड़ है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +semicylinder/semicylinder_3,यह एक घनाकार वस्त है +lemon/lemon_2,अंड का अंदर का भाग +carrot/carrot_2,हाथ की उँगल +triangle/triangle_4,मुड़ हुआ शीश +cucumber/cucumber_2,खीर सब्ज +semicylinder/semicylinder_3,पिघल हुआ मोम +lemon/lemon_2,नींब की उत्पत्त अज्ञात है हालांक नींब को असम में पहल बार उग जा है +carrot/carrot_2,गाजर एक द्विवार्षिक पौध है +triangle/triangle_4,यह एक त्रिकोण है +cucumber/cucumber_2,यह ककड़ हर है +semicylinder/semicylinder_3,यह एक अर्धविराम है +lemon/lemon_2,यह एक संतर का चित्र है +carrot/carrot_2,यह एक गाजर का चित्र है +triangle/triangle_4,यह एक त्रिकोण का चित्र है +cucumber/cucumber_2,यह एक खीर का चित्र है +semicylinder/semicylinder_3,यह एक साबुन का चित्र है +plum/plum_3,यह एक सेब का चित्र है +semicylinder/semicylinder_4,यह एक साबुन का चित्र है +banana/banana_2,यह एक केल का चित्र है +cuboid/cuboid_2,यह एक साबुन का चित्र है +arch/arch_2,यह एक साबुन का चित्र है +plum/plum_3,ये है बैंग गोभ +semicylinder/semicylinder_4,ये है पील वाल खंड +banana/banana_2,ये केल है +cuboid/cuboid_2,ये नील वाल खंड है +arch/arch_2,ये अर्ध वृत्त खंड है +plum/plum_3,यह लाल रंग की कोई सब्ज या फल है +semicylinder/semicylinder_4,यह हर रगं का प्लास्टिक या रबर की कोई वस्त है +banana/banana_2,यह एक केल है +cuboid/cuboid_2,यह हर रगं का प्लास्टिक या रबर की कोई वस्त है +arch/arch_2,यह कोई आकार है +plum/plum_3,यह एक बेर है +semicylinder/semicylinder_4,यह एक अर्ध सिलेंडर है +banana/banana_2,यह एक केल है +cuboid/cuboid_2,यह एक घनाभ है +arch/arch_2,यह एक आर्च है +plum/plum_3,यह एक बेर है +semicylinder/semicylinder_4,यह एक हर अर्ध सिलेंडर है +banana/banana_2,यह एक केल है +cuboid/cuboid_2,यह एक हर घनाभ है +arch/arch_2,यह एक नील मेहराब है +plum/plum_3,ये लाल सेब है +semicylinder/semicylinder_4,ये हर रंग की वस्त है +banana/banana_2,ये पील केल है +cuboid/cuboid_2,ये हर रंग की आयताकार वस्त है +arch/arch_2,ये हल्क नील रंग की वस्त है +plum/plum_3,इस वस्त मे लाल रंग के निशान है +semicylinder/semicylinder_4,वस्त हर रंग की है +banana/banana_2,केल शरीर मे ऊर्ज दे है +cuboid/cuboid_2,घनाभ के आकार की हर रंग की वस्त +arch/arch_2,आसमा रंग की वस्त +plum/plum_3,इस बेर कहे है +semicylinder/semicylinder_4,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +banana/banana_2,इस केल कहे है +cuboid/cuboid_2,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +arch/arch_2,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +plum/plum_3,यह ऑब्जेक्ट लाल रंग का है और इसम गोलाकार प्रारूप है +semicylinder/semicylinder_4,यह वस्त हर रंग की है और इसम एक कुर्स का आकार है +banana/banana_2,यह वस्त एक केल है यह बहुत लोकप्रिय फल है +cuboid/cuboid_2,यह ऑब्जेक्ट एक समानांतर चतुर्भुज या एक बॉक्स का रूप ले है +arch/arch_2,यह वस्त एक पुल के रूप में है +plum/plum_3,इसक बेर कह जा है +semicylinder/semicylinder_4,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +banana/banana_2,इसक केल कह जा है +cuboid/cuboid_2,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +arch/arch_2,ये नील रंग की प्लास्टिक या रबर की कोई वस्त है +plum/plum_3,यह एक फ़ल है +semicylinder/semicylinder_4,हर रंग का वस्त +banana/banana_2,यह एक केल है +cuboid/cuboid_2,हर रंग का वस्त +arch/arch_2,यह नील रंग है +plum/plum_3,यह एक नाजुक खाद्य पदार्थ है जिस बेर कह जा है +semicylinder/semicylinder_4,अर्ध बेलनाकार रूप का उपयोग उन सूत्र के लिए किय जा है जो सूत्र के लिए उपयोग किए जा हैं +banana/banana_2,केल एक अच्छ खाद्य उत्पाद है जिसक उपयोग पाचन विकार वाल लोग के लिए एक अच्छ दव के रूप में किय जा है इसक उपयोग पंजम्रीम तैयार कर के लिए भी किय जा है +cuboid/cuboid_2,एक आयताकार रूप का उपयोग पाठ के शिक्षक के लिए एक पैटर्न मॉडल के रूप में किय जा है +arch/arch_2,चौकोर आकार के बाल का उपयोग उन शिक्षक के लिए नमू के रूप में किय जा है जो पाठ कर हैं +plum/plum_3,यह किस प्रकार का फल है +semicylinder/semicylinder_4,यह हर रंग की वास्त है +banana/banana_2,यह केल है +cuboid/cuboid_2,यह हर वास्त है +arch/arch_2,यह नील वास्त है +plum/plum_3,यह चित्र स्पष्ट नह दिख है +semicylinder/semicylinder_4,यह चित्र हर रंग में है +banana/banana_2,इस तस्वीर का नाम केल है +cuboid/cuboid_2,यह चित्र आयताकार आकार में है +arch/arch_2,यह चित्र बहुत स्पष्ट दिख है +plum/plum_3,बेर मीठ फल +semicylinder/semicylinder_4,अर्ध बेलन +banana/banana_2,केल फल +cuboid/cuboid_2,हर रंग का घनाभ +arch/arch_2,मेहराब वृत्त खंड +plum/plum_3,यह एक बेर है +semicylinder/semicylinder_4,यह एक अर्ध सिलेंडर है +banana/banana_2,यह एक केल है +cuboid/cuboid_2,यह एक घनाभ है +arch/arch_2,यह एक आर्च है +plum/plum_3,यह बीट है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +semicylinder/semicylinder_4,यह एक घन प्रकार की वस्त है +banana/banana_2,यह केल है और इसक उपयोग विभिन्न व्यंजन को तैयार कर के लिए किय जा है +cuboid/cuboid_2,यह एक घन प्रकार की वस्त है +arch/arch_2,यह एक घनाकार वस्त है +cube/cube_1,यह मक्खन है इसम वस हो है +corn/corn_3,मक्क एक प्रमुख खाद्य फसल हैं जो मोट अनाज की श्रेण में आत है +cabbage/cabbage_3,बैगन एक सब्ज है बैंगन भारत में ही पैद हुआ और आज आल के बाद दूसर सबस अधिक खपत वाल सब्ज है +orange/orange_2,नीब छोट पेड़ अथव सघन झाड़ीदार पौध है इसक शाखाएँ काँटेदार पत्त छोट डंठल पतल तथ पत्तीदार हो है +tomato/tomato_3,टमाटर विश्व में सबस ज्याद प्रयोग हो वाल सब्ज है +cube/cube_1,ये पील रंग की चोकोर है +corn/corn_3,ये मक्क है +cabbage/cabbage_3,ये बैग रंग की पत्तागोभ है +orange/orange_2,ये पील संतर है +tomato/tomato_3,ये लाल टमाटर है +cube/cube_1,यह वस्त एक छोट पील घन है +corn/corn_3,यह एक छिल हुआ भुट्ट है +cabbage/cabbage_3,यह एक भु हुआ बेंगन है जिसक डंठल तोड़ दी गय है +orange/orange_2,यह कोई पील फल है +tomato/tomato_3,यह एक पक हुआ लाल टमाटर है +cube/cube_1,यह एक घन प्रकार की वस्त है +corn/corn_3,यह मकई है और खा में बहुत स्वादिष्ट है +cabbage/cabbage_3,यह फूलगोभ है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +orange/orange_2,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन में किय जा है +tomato/tomato_3,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +cube/cube_1,यह कोई पील रंग का रब्बर का टुकड़ है +corn/corn_3,यह मक्क का भुट्ट है +cabbage/cabbage_3,यह गोभ है +orange/orange_2,यह एक संतर है +tomato/tomato_3,यह एक टमाटर है +cube/cube_1,यह पील रंग में है +corn/corn_3,यह स्वास्थ्य के लिए अच्छ है +cabbage/cabbage_3,यह स्वास्थ्य के लिए अच्छ है +orange/orange_2,यह स्वास्थ्य के लिए अच्छ है +tomato/tomato_3,यह स्वास्थ्य के लिए अच्छ है +cube/cube_1,यह पिल चौकोर डिब्ब है +corn/corn_3,यह शफेद भुट्ट है +cabbage/cabbage_3,यह भर्त् का बैगन है +orange/orange_2,यह नीब है +tomato/tomato_3,यह लाल टमाटर है +cube/cube_1,यह एक पील रंग का घनक्षेत्र का चित्र हे +corn/corn_3,यह एक छिल हुआ भुट्ट का चित्र हे +cabbage/cabbage_3,यह एक बैंग रंग का बंद गोब का चित्र हे +orange/orange_2,यह एक मुसंब का चित्र हे +tomato/tomato_3,यह एक टमाटर का चित्र हे +cube/cube_1,यह एक पील रंग की प्लास्टिक या रबर की कोई वस्त है +corn/corn_3,यह मक्क का भुट्ट है +cabbage/cabbage_3,यह गोभ है +orange/orange_2,यह एक नींब है +tomato/tomato_3,यह एक टमाटर है +cube/cube_1,यह घन है +corn/corn_3,यह मक्क है और अनाज के रूप में उपयोग किय जा ह +cabbage/cabbage_3,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +orange/orange_2,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +tomato/tomato_3,यह एक टमाटर है +cube/cube_1,ये पील वाल पनीर है +corn/corn_3,ये मक्क है +cabbage/cabbage_3,ये है बैंगन +orange/orange_2,ये है नारंग +tomato/tomato_3,ये है टमाटर +cube/cube_1,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +corn/corn_3,इस मक्क का भुट्ट कहे है +cabbage/cabbage_3,इस गोभ कहे है +orange/orange_2,इस संतर कहे है +tomato/tomato_3,इस टमाटर कहे है +cube/cube_1,घन क्षेत्र +corn/corn_3,मक का भुट्ट +cabbage/cabbage_3,गोभ सब्ज +orange/orange_2,संतर फल +tomato/tomato_3,टमाटर सब्ज +cube/cube_1,यह हर रंग डाल पनीर बन है +corn/corn_3,मकाइ के दा को पिज़ में भी उपयोग हो है +cabbage/cabbage_3,भुज हुए बैंगन को भर में डाल में अच्छ लग है +orange/orange_2,नींब पा पि से बीप की परेशा नह हो है +tomato/tomato_3,पथर के रोग को टमाटर नह खा चाह +cube/cube_1,मुझ नह पत कि यह किस प्रकार की चीज है इसल मैं यह नह समझ सक हूं +corn/corn_3,मक्क एक स्वादिष्ट भोजन है कई किस्म हैं जो अल्पकालिक हो सक हैं +cabbage/cabbage_3,बैंगन शरीर के लिए बहुत अच्छ हो है यह अल्पकालिक कम से कम 3 मही या एक मही हो सक है यह लंब समय तक नह रह लेकिन कीट जल्द ही बन जा है +orange/orange_2,मुझ यह नारंग फल या मैंगनीज नह मिल रह है इसल मैं इस नह समझ सक हूं +tomato/tomato_3,टमाटर बहुत महंग खाद्य पदार्थ है यह दक्षिण भारत और उत्तर भारत में टमाटर प्यूर जैम और कई खाद्य पदार्थ को तैयार कर में बहुत महत्वपूर्ण भूमिक निभ है +cube/cube_1,यह एक पील घनक्षेत्र है +corn/corn_3,यह एक मक्क है +cabbage/cabbage_3,यह एक पत्तागोभ है +orange/orange_2,यह एक संतर है +tomato/tomato_3,यह एक टमाटर है +triangle/triangle_4,यह चित्र नील रंग में है +cube/cube_4,यह चित्र स्पष्ट दिख है +cylinder/cylinder_4,यह चित्र हर रंग में है +potato/potato_3,यह तस्वीर पील रंग में हैयह तस्वीर पील रंग में है +orange/orange_1,यह तस्वीर पील रंग में है +triangle/triangle_4,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +cube/cube_4,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +cylinder/cylinder_4,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +potato/potato_3,इस आल कहे है +orange/orange_1,इस संतर कहे है +triangle/triangle_4,यह एक नील त्रिकोण है +cube/cube_4,यह एक लाल घनक्षेत्र है +cylinder/cylinder_4,यह एक हर सिलेंडर है +potato/potato_3,यह एक आल है +orange/orange_1,यह एक संतर है +triangle/triangle_4,त्रिकोण वस्त +cube/cube_4,चकोर लाल +cylinder/cylinder_4,सिलेंडर वस्त +potato/potato_3,याद येह अल +orange/orange_1,माल्ट स्वीट +triangle/triangle_4,नील हर रंग का त्रिभुज +cube/cube_4,घन क्षेत्र +cylinder/cylinder_4,हर रंग का बेलन +potato/potato_3,आल सब्ज +orange/orange_1,संतर फल +triangle/triangle_4,त्रिकोण में कोई वक्र नह है +cube/cube_4,घन भी एक वर्ग है +cylinder/cylinder_4,एक बेलन पारंपरिक रूप से तीन आयाम ठोस रह है +potato/potato_3,पूर अमेरिक में जंगल आल की प्रजात पाई जा सक हैं +orange/orange_1,मीठ नारंग की उत्पत्त प्राचीन चीन में हुई थी +triangle/triangle_4,यह नील रंग का वस्त है +cube/cube_4,यह लाल रंग का वस्त है +cylinder/cylinder_4,यह हर रंग का वस्त है +potato/potato_3,यह आल है +orange/orange_1,यह टमाटर है यह लाल रंग है +triangle/triangle_4,यह एक त्रिकोण का चित्र है +cube/cube_4,यह एक वर्ग के आकर का चित्र है +cylinder/cylinder_4,यह एक बेलन के आकर का चित्र है +potato/potato_3,यह एक आल का चित्र है +orange/orange_1,यह एक मोसम्ब का चित्र है +triangle/triangle_4,नील त्रिकोण +cube/cube_4,यह लाल रंग है +cylinder/cylinder_4,यह हर रंग है +potato/potato_3,यह एक आल है +orange/orange_1,यह एक संतर है +triangle/triangle_4,यह त्रिकोण नील सी वस्त है +cube/cube_4,यह एक लाल घन नुम वस्त है +cylinder/cylinder_4,यह एक नील बेलनुम वस्त है +potato/potato_3,यह वस्त आल की तरह दिख रह है +orange/orange_1,यह एक हलक पील रंग का संतर है +triangle/triangle_4,यह एक घन प्रकार की वस्त है +cube/cube_4,यह एक घन प्रकार की वस्त है +cylinder/cylinder_4,यह एक घन प्रकार की वस्त है +potato/potato_3,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन में किय जा है +orange/orange_1,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +triangle/triangle_4,यह एक त्रिकोण है +cube/cube_4,यह घन है +cylinder/cylinder_4,यह एक सिलेंडर है +potato/potato_3,यह एक आल है +orange/orange_1,यह एक संतर है +triangle/triangle_4,यह नील वास्त है +cube/cube_4,यह लाल वास्त है +cylinder/cylinder_4,यह हर वास्त है +potato/potato_3,आल है यह +orange/orange_1,मौसमभ है +triangle/triangle_4,यह एक नील रंग की प्लास्टिक की कोई वस्त है +cube/cube_4,यह लाल रंग की प्लास्टिक या रबर की कोई वस्त है +cylinder/cylinder_4,यह हर रंग की लंबगोलाकार प्लास्टिक या रबर की कोई वस्त है +potato/potato_3,यह एक आल है +orange/orange_1,यह चीक नाम का फल है +triangle/triangle_4,ये नील रंग की वस्त है +cube/cube_4,ये लाल रंग की वस्त है +cylinder/cylinder_4,ये हर रंग की सिलेण्डर आकर की वस्त है +potato/potato_3,ये आल है +orange/orange_1,ये संतर हैं +triangle/triangle_4,ये नील रंग की प्लास्टिक या रबर की कोई वस्त है +cube/cube_4,ये कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +cylinder/cylinder_4,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +potato/potato_3,इसक आल कह जा है +orange/orange_1,इसक संतर कह जा है +carrot/carrot_2,यह स्वास्थ्य के लिए अच्छ है +potato/potato_1,यह तस्वीर अच्छ तरह से दिख नह दे है +tomato/tomato_4,यह तस्वीर शुद्ध पील रंग में है +cucumber/cucumber_3,यह स्वास्थ्य के लिए अच्छ है +cucumber/cucumber_3,यह स्वास्थ्य के लिए अच्छ है +carrot/carrot_2,यह एक गाजर है +potato/potato_1,यह एक बैगन है +tomato/tomato_4,यह टमाटर है +cucumber/cucumber_3,यह एक खीर है और सलाद के रूप में उपयोग किय जा है +cucumber/cucumber_3,यह एक खीर है और सलाद के रूप में उपयोग किय जा है +carrot/carrot_2,यह चुकंदर है +potato/potato_1,ये है पील वाल खंड +tomato/tomato_4,यह टमाटर है +cucumber/cucumber_3,ये ककड़ है +cucumber/cucumber_3,ये ककड़ है +carrot/carrot_2,यह एक गाजर हैं +potato/potato_1,यह एक सेब हैं +tomato/tomato_4,यह टमाटर हैं +cucumber/cucumber_3,यह एक ककड़ हैं +cucumber/cucumber_3,यह एक खीर हैं +carrot/carrot_2,यह एक गाजर है +potato/potato_1,यह एक आल है +tomato/tomato_4,यह एक टमाटर है +cucumber/cucumber_3,यह एक खीर है +cucumber/cucumber_3,यह एक खीर है +carrot/carrot_2,यह एक गाजर का चित्र है +potato/potato_1,यह आलूबुखार फल का चित्र है +tomato/tomato_4,यह टमाटर का चित्र है +cucumber/cucumber_3,यह एक खीर है +cucumber/cucumber_3,यह एक खीर है +carrot/carrot_2,यह गाजर और सबज के रूप में उपयोग किय जा है +potato/potato_1,यह एक बेर है +tomato/tomato_4,यह एक टमाटर है +cucumber/cucumber_3,यह खीर है और सलाद के रूप में उपयोग किय जा है +cucumber/cucumber_3,यह खीर है और सलाद के रूप में उपयोग किय जा है +carrot/carrot_2,यह एक पतल लम्ब गाजर है +potato/potato_1,यह एक गोलाकार लाल सी वस्त है +tomato/tomato_4,यह एक अधपक पील टमाटर है +cucumber/cucumber_3,यह एक हर खीर है +cucumber/cucumber_3,यह एक हर मोट खीर है +carrot/carrot_2,यह एक गाजर है +potato/potato_1,यह आल है +tomato/tomato_4,यह एक टमाटर है +cucumber/cucumber_3,यह एक ककड़ है +cucumber/cucumber_3,यह एक ककड़ है +carrot/carrot_2,गाजर को हर कोइ भी खा सक हैं +potato/potato_1,छोट बच्च को सेब को गरम पा में भिग कर दे चाह +tomato/tomato_4,टमाटर की सब्ज भी बन जा हैं +cucumber/cucumber_3,सलाद में काकड़ सबस ज्याद खा हैं +cucumber/cucumber_3,काकड़ को छिल खा चाह +carrot/carrot_2,यह सब्ज सिर्फ इस सब्ज गाजर से अधिक है यह विटामिन सी के लिए बहुत अच्छ है यह पहाड़ क्षेत्र में है यह रसोई घर में भी बहुत काम आत है यह बीमार लोग के लिए बहुत अच्छ है +potato/potato_1,ये सब्ज एक आल हैं यह बहुत सार कार्बोहाइड्रेट और प्रोटीन हैं यह बीमार लोग के लिए अच्छ है इस खा और खा अच्छ है पाक किस्म को खाय जा सक है इसस शरीर को अच्छ पोषण मिल है +tomato/tomato_4,इस सब्ज की तुल में पेर टमाटर यह लाल रंग में एक खट्ट स्वाद है यह खा पक के लिए एक बहुत ही महत्वपूर्ण घटक है यह शरीर के लिए बहुत अच्छ है विटामिन में बहुत कुछ है +cucumber/cucumber_3,इस तस्वीर में आपक उस आइटम का नाम दिख देग जिस आप देख रह हैं कि तस्वीर खीर में आत है यह हर रंग के विभिन्न रूप में भी उपलब्ध है और इस खा पक में खाय जा सक है यह शरीर के लिए बहुत अच्छ है विशेष रूप से गर्म के लिए अच्छ है +cucumber/cucumber_3,यह उत्पाद का नाम है और गोभ आत हैं और देख हैं कि क्य यह पृष्ठ के सभ तरफ है सब्ज की दुकान में कई दुकान में आन और आन बहुत आसान है +carrot/carrot_2,यह गाजर है +potato/potato_1,सेवफल है +tomato/tomato_4,लाल टमाटर है +cucumber/cucumber_3,यह हर ककड़ है +cucumber/cucumber_3,यह हर ककड़ है +carrot/carrot_2,गाजर का हलव बहुत स्वादिष्ट हो हैं +potato/potato_1,आल के चिप्स बनाय जा हैं +tomato/tomato_4,टमाटर सलाद मे खाय जा हैं +cucumber/cucumber_3,खीर में पा अधिक मात्र मे हो हैं +cucumber/cucumber_3,खीर से राय बन हैं +carrot/carrot_2,यह एक गाजर है +potato/potato_1,यह एक अनार का फल है +tomato/tomato_4,यह टमाटर है +cucumber/cucumber_3,यह एक ककड़ है +cucumber/cucumber_3,यह एक ककड़ है +carrot/carrot_2,गाजर फल +potato/potato_1,आल सब्ज +tomato/tomato_4,टमाटर सब्ज +cucumber/cucumber_3,खीर सब्ज +cucumber/cucumber_3,खीर सब्ज +carrot/carrot_2,ये लाल रंग का गाजर है +potato/potato_1,ये लाल टमाटर है +tomato/tomato_4,ये लाल टमाटर है +cucumber/cucumber_3,ये हर ककड है +cucumber/cucumber_3,ये हर काकड़ है +carrot/carrot_2,इस गाजर कहे है +potato/potato_1,इस लाल रंग का आल कह है +tomato/tomato_4,इस टमाटर कहे है +cucumber/cucumber_3,इस ककड़ कहे है +cucumber/cucumber_3,इस ककड़ कहे है +lime/lime_2,ये हर नींब हैं +arch/arch_1,ये पील रंग की वस्त है +eggplant/eggplant_1,ये बैगन है +triangle/triangle_2,ये पील रंग की वस्त है +plum/plum_1,ये सेब है +lime/lime_2,चू स्वाद में बहुत खट्ट हो है +arch/arch_1,मेहराब चतुर्भुज का हिस्स है +eggplant/eggplant_1,बैंगन का रंग बैंग हो है +triangle/triangle_2,त्रिभुज के तीन को हैं +plum/plum_1,बेर आकार में छोट हो है +lime/lime_2,निम्ब है शायद +arch/arch_1,पील सा है कुछ +eggplant/eggplant_1,बैगन है सब्ज वाल +triangle/triangle_2,कुछ पील सा है +plum/plum_1,लाल सेवफल है शायद +lime/lime_2,यह एक हर रंग का अमरूद का चित्र हे +arch/arch_1,यह एक ऐस आकृ हे मान एक पील रंग का घनाभ के बीच से एक आध क्षेत्र निकाल दिय हो +eggplant/eggplant_1,यह एक बैंगन का चित्र हे +triangle/triangle_2,यह एक पील रंग का सह कोण त्रिकोण हे +plum/plum_1,यह एक टमाटर का चित्र हे +lime/lime_2,इस नींब कहे है +arch/arch_1,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +eggplant/eggplant_1,इस बेंगन कहे है +triangle/triangle_2,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +plum/plum_1,इस बेर कहे है +lime/lime_2,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +arch/arch_1,यह एक आर्च है +eggplant/eggplant_1,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +triangle/triangle_2,यह एक त्रिकोण है +plum/plum_1,यह बेर है +lime/lime_2,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +arch/arch_1,यह एक आर्च है +eggplant/eggplant_1,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +triangle/triangle_2,यह एक त्रिकोण है +plum/plum_1,यह बेर है +lime/lime_2,यह नींब है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +arch/arch_1,यह एक घन प्रकार की वस्त है +eggplant/eggplant_1,यह बैंगन है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +triangle/triangle_2,यह एक घन प्रकार की वस्त है +plum/plum_1,यह बीट है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +lime/lime_2,यह एक अमरुद का चित्र है +arch/arch_1,यह एक साबुन का चित्र है +eggplant/eggplant_1,यह एक बैंगन का चित्र है +triangle/triangle_2,यह एक त्रिकोण के आकर का चित्र है +plum/plum_1,यह एक सेब का चित्र है +lime/lime_2,काग़ज़ नींब +arch/arch_1,मेहराब वृत्त खंड +eggplant/eggplant_1,बैगन सब्ज +triangle/triangle_2,पील रंग का त्रिभुज +plum/plum_1,बेर मीठ फल +lime/lime_2,यह नींब के रंग जैस दिख है नींब में साइट्रिक एसिड हो है जो शरीर के लिए बहुत अच्छ हो है +arch/arch_1,मुझ नह पत कि यह किस रूप में है लेकिन यह ठीक है और यह पील है +eggplant/eggplant_1,बैंगन शरीर के लिए बहुत अच्छ हो है मुझ अप घर में इत पेंच लग बहुत पसंद है कि वह इस अक्सर पक इसल मुझ पत है कि बैंगन शरीर के लिए बहुत उपयुक्त है +triangle/triangle_2,यह एक त्रिकोण के रूप में है और यह हर रंग में है +plum/plum_1,यह रंग में लाल है मैं इस खा रह हूं यह बहुत मीठ है और यह थोड़ स्वाद है +lime/lime_2,इसक नींब कह जा है +arch/arch_1,यह कोई पील रंग का रब्बर का टुकड़ है +eggplant/eggplant_1,इसक बेंगन कह जा है +triangle/triangle_2,यह कोई पील रंग का रब्बर का टुकड़ है +plum/plum_1,इसक बेर कह जा है +lime/lime_2,यह एक हर छोट नींब है +arch/arch_1,यह एक आढ़ मेहराब नुम पील रंग की वस्त है +eggplant/eggplant_1,यह एक लम्ब पतल बैंग रंग का बैंगन है +triangle/triangle_2,यह एक त्रिकोणीय संक्षेत्रनुम पील रंग की वस्त है +plum/plum_1,यह एक आलूबुखार जैस दिख वाल फल है जोक दिख में लाल रंग का है +lime/lime_2,यह हर रंग की कोई सब्ज या फल है +arch/arch_1,यह एक पील रंग की प्लास्टिक या रबर की कोई वस्त है +eggplant/eggplant_1,यह एक बेंगन है +triangle/triangle_2,यह एक पील रंग की प्लास्टिक या रबर की कोई वस्त है +plum/plum_1,यह एक लाल रंग की सब्ज या फल है +lime/lime_2,यह चित्र हर रंग में है +arch/arch_1,यह तस्वीर पील रंग में है +eggplant/eggplant_1,इस तस्वीर का नाम बैगन है +triangle/triangle_2,यह चित्र त्रिकोणीय आकार में है +plum/plum_1,यह तस्वीर लाल रंग की है +lime/lime_2,यह एक कच्च निम्ब है +arch/arch_1,यह एक पील मेहराब है +eggplant/eggplant_1,यह एक बैंगन है +triangle/triangle_2,यह एक पील त्रिकोण है +plum/plum_1,यह एक बेर है +lime/lime_2,ये पत् है +arch/arch_1,ये अर्ध वृत्त खंड है +eggplant/eggplant_1,यह बैंगन है +triangle/triangle_2,ये त्रिकोण है +plum/plum_1,ये है बैंग गोभ +lime/lime_1,यह हर रंग की वस्त है +carrot/carrot_1,यह नारंग रंग की सब्ज है +cube/cube_3,यह वर्ग वस्त है +eggplant/eggplant_4,इसक लिए अच्छ है +corn/corn_1,मकई खा के लिए बहुत स्वाद +lime/lime_1,यह नींब है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +carrot/carrot_1,यह गाजर है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +cube/cube_3,यह एक घनाकार वस्त है +eggplant/eggplant_4,यह बैंगन है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +corn/corn_1,यह मकई है और इसक उपयोग विभिन्न व्यंजन में किय जा है +lime/lime_1,इसक नींब कह जा है +carrot/carrot_1,इसक गाजर कह जा है +cube/cube_3,ये नील रंग की प्लास्टिक या रबर की कोई वस्त है +eggplant/eggplant_4,इसक बेंगन कह जा है +corn/corn_1,इसक मक्क का भुट्ट कह जा है +lime/lime_1,हर रंग की वस्त +carrot/carrot_1,गाजर के आकार की वस्त +cube/cube_3,नील रंग की ठोस वस्त +eggplant/eggplant_4,बैंगन एक सब्ज है +corn/corn_1,भुट्ट खाय जा है +lime/lime_1,नासप खा से शरीर में उर्ज मिल है +carrot/carrot_1,गाजर खा से शरीर में खून बढ़ है +cube/cube_3,यह एक नील रंग का डब्ब है +eggplant/eggplant_4,पथर के रोग को बैंगन नह खा चाह +corn/corn_1,मक्क की रोट पंजाब लोग ज्याद खा है +lime/lime_1,यह निम्ब हैं +carrot/carrot_1,यह एक गाजर हैं +cube/cube_3,यह गोट हैं +eggplant/eggplant_4,यह भर बन वाल बैंगन हैं +corn/corn_1,यह मक्क हैं +lime/lime_1,यह एक कच्च निम्ब है +carrot/carrot_1,यह एक गाजर है +cube/cube_3,यह एक नील घनक्षेत्र है +eggplant/eggplant_4,यह एक बैंगन है +corn/corn_1,यह एक मक्क है +lime/lime_1,ये हर रंग का नींब हैय खट्ट हो है +carrot/carrot_1,ये लाल रंग का गाजर है +cube/cube_3,ये नील रंग की वस्त है ये चोकोर है +eggplant/eggplant_4,ये बैगन हैय एक सब्ज है +corn/corn_1,ये मक्क हैं +lime/lime_1,यह एक निब है +carrot/carrot_1,यह गाजर है और सबज के रूप में उपयोग किय जा है +cube/cube_3,यह एक घन है +eggplant/eggplant_4,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +corn/corn_1,यह एक मकई है +lime/lime_1,यह स्वास्थ्य के लिए अच्छ है +carrot/carrot_1,यह स्वास्थ्य के लिए अच्छ है +cube/cube_3,यह नील रंग में दिख है +eggplant/eggplant_4,यह स्वास्थ्य के लिए अच्छ है +corn/corn_1,यह स्वास्थ्य के लिए अच्छ है +lime/lime_1,इस नींब कहे है +carrot/carrot_1,इस गाजर कहे है +cube/cube_3,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +eggplant/eggplant_4,इस बेंगन कहे है +corn/corn_1,इस मक्क का भुट्ट कहे है +lime/lime_1,यह एक अमरुद का चित्र है +carrot/carrot_1,यह एक गाजर का चित्र है +cube/cube_3,यह एक वर्ग के आकर का चित्र है +eggplant/eggplant_4,यह एक बैंगन का चित्र है +corn/corn_1,यह एक भुट्ट का चित्र है +lime/lime_1,यह चू हर रंग का हो है +carrot/carrot_1,यह गाजर बहुत लंब है +cube/cube_3,यह घन नील है +eggplant/eggplant_4,हम बैंगन स्वादिष्ट भोजन में बदल सक हैं +corn/corn_1,मकई भी उबाल सक हैं +lime/lime_1,काग़ज़ नींब +carrot/carrot_1,गाजर फल +cube/cube_3,घन क्षेत्र +eggplant/eggplant_4,बैंगन सब्ज +corn/corn_1,मक का भुट्ट +lime/lime_1,यह हर रंग की कोई सब्ज या फल है +carrot/carrot_1,यह एक गाजर है +cube/cube_3,यह नील रंग का वर्ग का आकार है +eggplant/eggplant_4,यह एक बेंगन है +corn/corn_1,यह छिल हुआ मक्क का भुट्ट है +lime/lime_1,यह एक हर छोट नींब है +carrot/carrot_1,यह एक सीध पतल गाजर है +cube/cube_3,यह एक घन नुम नील रंग की कोई वस्त है +eggplant/eggplant_4,यह एक लम्ब पतल बैंग रंग का बैंगन है +corn/corn_1,यह वस्त एक छिल हुआ भुट्ट है जिसक दा सफ़ेद है +lime/lime_1,यह एक प्रकार की सब्ज है +carrot/carrot_1,यह गाजर है +cube/cube_3,यह नील सी चौकोर चीज है +eggplant/eggplant_4,यह बैगन है +corn/corn_1,यह भुट है +corn/corn_4,ये मक्क है इसक सूप बन जा है +carrot/carrot_2,ये वस्त गाजर है इसक उपयोग सलाद में किय जा है +cucumber/cucumber_3,ये वस्त ककड़ हैइसक उपयोग सलाद मे किय जा है +cuboid/cuboid_2,ये हर रंग का आयताकार वस्त है +cuboid/cuboid_1,ये पील रंग की वस्त हैइसक आकार आयताकार है +corn/corn_4,यह मक्क का भुट्ट है +carrot/carrot_2,यह एक गाजर है +cucumber/cucumber_3,यह एक ककड़ है +cuboid/cuboid_2,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +cuboid/cuboid_1,यह कोई पील रंग का रब्बर का टुकड़ है +corn/corn_4,यह मकई है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +carrot/carrot_2,यह गाजर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +cucumber/cucumber_3,यह ककड़ है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +cuboid/cuboid_2,यह एक घन प्रकार की वस्त है +cuboid/cuboid_1,यह एक घनाकार वस्त है +corn/corn_4,यह मक्क है और अनाज के रूप में उपयोग किय जा ह +carrot/carrot_2,यह गाजर और सबज के रूप में उपयोग किय जा है +cucumber/cucumber_3,यह खीर है और सलाद के रूप में उपयोग किय जा है +cuboid/cuboid_2,यह एक घनाभ है +cuboid/cuboid_1,यह एक घनाभ है +corn/corn_4,इस मक्क का भुट्ट कहे है +carrot/carrot_2,इस गाजर कहे है +cucumber/cucumber_3,इस ककड़ कहे है +cuboid/cuboid_2,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +cuboid/cuboid_1,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +corn/corn_4,यह स्वास्थ्य के लिए अच्छ है +carrot/carrot_2,यह स्वास्थ्य के लिए अच्छ है +cucumber/cucumber_3,यह लाल रंग में हर है +cuboid/cuboid_2,यह लाल रंग में हर है +cuboid/cuboid_1,यह पील रंग में है +corn/corn_4,यह लौक है यह मक्क है यह बहुत मिट है +carrot/carrot_2,यह गाजर है यह नारंग का रंग है +cucumber/cucumber_3,यह लौक है यह हर रंग का वस्त है +cuboid/cuboid_2,यह एक हर रंग का वस्त है +cuboid/cuboid_1,यहएक पील रंग का वस्त है +corn/corn_4,यह भुट्ट है जिस मकई या मक्क भी कह है मक्क प्रमुख खाद्य फसल हैं +carrot/carrot_2,यह गाजर है ये एक सब्ज हो है यह लाल काल नारंग कई रंग में मिल है +cucumber/cucumber_3,खीर ज़ायद की एक प्रमुख फसल है सलाद के रूप में सम्पूर्ण विश्व में खीर का विशेष महत्त्व है +cuboid/cuboid_2,यह एक साबुन के टुकड़ प्रतीत हो रह है जो की हर रंग का है +cuboid/cuboid_1,यह एक साबुन के टुकड़ प्रतीत हो रह है जो की पील रंग का है +corn/corn_4,यह वस्त एक छिल हुआ भुट्ट है जिसक दा सफ़ेद है +carrot/carrot_2,यह एक आढ़ तिरछ गाजर है +cucumber/cucumber_3,यह एक हर पतल खीर है +cuboid/cuboid_2,यह एक आयातफलकीनुम हर रंग की कोई वस्त है +cuboid/cuboid_1,यह एक आयातफलकीनुम पील रंग की कोई वस्त है +corn/corn_4,यह एक भुट्ट का चित्र है +carrot/carrot_2,यह एक गाजर का चित्र है +cucumber/cucumber_3,यह एक खीर का चित्र है +cuboid/cuboid_2,यह एक साबुन का चित्र है +cuboid/cuboid_1,यह एक साबुन का चित्र है +corn/corn_4,ये सफेद वाल मक्क है +carrot/carrot_2,ये गाजर है +cucumber/cucumber_3,ये ककड़ है +cuboid/cuboid_2,ये है हर वाल खंड +cuboid/cuboid_1,ये है पील वाल खंड +corn/corn_4,मकई एक स्वस्थ भोजन है इसक उपयोग हमार दैनिक जीवन में किय जा है +carrot/carrot_2,गाजर का उपयोग सलाद के रूप में किय जा है इस भोजन में अतिरिक्त घटक के रूप में भी मिल जा है +cucumber/cucumber_3,ककड़ का उपयोग सलाद के रूप में किय जा है यह एक स्वस्थ खाद्य पदार्थ है और पाचन के लिए अच्छ है +cuboid/cuboid_2,एक नील घनाकार संरच इस ऊर्ध्वाधर के रूप में रख जा रह है +cuboid/cuboid_1,एक सफेद घनाकार संरच इस ऊर्ध्वाधर के रूप में रख जा रह है +corn/corn_4,यह मक्क का भुट्ट है +carrot/carrot_2,यह गाजर है +cucumber/cucumber_3,यह ककड़ है +cuboid/cuboid_2,यह नील रंग की रबर या प्लास्टिक की कोई वस्त है +cuboid/cuboid_1,यह पील रंग की रबर या प्लास्टिक की कोई वस्त है +corn/corn_4,भुट्ट है +carrot/carrot_2,यह गाज्जर है +cucumber/cucumber_3,हर ककड़ है +cuboid/cuboid_2,हर चौकोर चीज है +cuboid/cuboid_1,पिल चौकोर चीज है +corn/corn_4,यह एक मक्क है +carrot/carrot_2,यह एक गाजर है +cucumber/cucumber_3,यह एक खीर है +cuboid/cuboid_2,यह एक हर घनाभ है +cuboid/cuboid_1,यह एक पील घनाभ है +corn/corn_4,मक का भुट्ट +carrot/carrot_2,गाजर फल +cucumber/cucumber_3,खीर सब्ज +cuboid/cuboid_2,हर रंग का घनाभ षटफलक +cuboid/cuboid_1,पील रंग का घनाभ षटफलक +triangle/triangle_3,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +corn/corn_4,इस मक्क का भुट्ट कहे है +cube/cube_2,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +cylinder/cylinder_2,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +triangle/triangle_1,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +triangle/triangle_3,यह एक त्रिकोण है +corn/corn_4,यह मक्क है और अनाज के रूप में उपयोग किय जा ह +cube/cube_2,यह घन है +cylinder/cylinder_2,यह सिलेंडर है +triangle/triangle_1,यह एक त्रिकोण है +triangle/triangle_3,यह एक घन प्रकार की वस्त है +corn/corn_4,यह मकई है और खा में बहुत स्वादिष्ट है +cube/cube_2,यह एक घन प्रकार की वस्त है +cylinder/cylinder_2,यह एक घन प्रकार की वस्त है +triangle/triangle_1,यह एक घनाकार वस्त है +triangle/triangle_3,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +corn/corn_4,यह मक्क का भुट्ट है +cube/cube_2,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +cylinder/cylinder_2,यह लाल रंग की प्लास्टिक या रबर की कोई वस्त है +triangle/triangle_1,यह लाल रंग की प्लास्टिक या रबर की कोई वस्त है +triangle/triangle_3,यह त्रिकोण हर रंग का है +corn/corn_4,मकई बहुत स्वादिष्ट हो है +cube/cube_2,घन लंब में बराबर हो है +cylinder/cylinder_2,इस सिलेंडर में लाल रंग है +triangle/triangle_1,पिज्ज भी आकार में त्रिकोण हो है +triangle/triangle_3,यह एक हर त्रिकोण है +corn/corn_4,यह एक मक्क है +cube/cube_2,यह एक हर घनक्षेत्र है +cylinder/cylinder_2,यह एक लाल सिलेंडर है +triangle/triangle_1,यह एक लाल त्रिकोण है +triangle/triangle_3,यह हर रंग में है +corn/corn_4,यह स्वास्थ्य के लिए अच्छ है +cube/cube_2,यह हर रंग में है +cylinder/cylinder_2,यह लाल रंग में है +triangle/triangle_1,यह आयताकार आकार में है +triangle/triangle_3,यह एक त्रिकोण है +corn/corn_4,यह मक्क है और अनाज के रूप में उपयोग किय जा ह +cube/cube_2,यह घन है +cylinder/cylinder_2,यह एक सिलेंडर है +triangle/triangle_1,यह एक त्रिकोण है +triangle/triangle_3,यह त्रिकोणीय आकृत का एक रूप है और पाठ पढ़ वाल शिक्षक के लिए नमू के रूप के रूप में उपयोग किय जा है +corn/corn_4,माचाचलम नाम एक अच्छ फसल है जो कम समय में उग सक है इस गर्म पा में खाय जा है +cube/cube_2,चौकोर आकार के बाल का उपयोग उन शिक्षक के लिए नमू के रूप में किय जा है जो पाठ कर हैं +cylinder/cylinder_2,इस सिलेंडर के रूप की तरह आकार दिय जा है और इसक उपयोग पाठ पढ़ वाल शिक्षक के लिए नमू के रूप में किय जा है +triangle/triangle_1,यह त्रिकोणीय आकृत का एक रूप है और पाठ पढ़ वाल शिक्षक के लिए नमू के रूप के रूप में उपयोग किय जा है +triangle/triangle_3,यह एक हर रंग का वस्त है +corn/corn_4,यह भुट्ट है +cube/cube_2,यह हर रंग है +cylinder/cylinder_2,यह लाल रंग है +triangle/triangle_1,यह लाल रंग का त्रिकोण है +triangle/triangle_3,हर वास्त है +corn/corn_4,भुट्ट है +cube/cube_2,हर वास्त है +cylinder/cylinder_2,लाल वास्त है +triangle/triangle_1,लाल वास्त है +triangle/triangle_3,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +corn/corn_4,यह मक्क का भुट्ट है +cube/cube_2,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +cylinder/cylinder_2,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +triangle/triangle_1,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +triangle/triangle_3,यह एक त्रिकोणीय संक्षेत्रनुम नील रंग की वस्त है +corn/corn_4,यह वस्त एक छिल हुआ भुट्ट है जिसक दा सफ़ेद है +cube/cube_2,यह एक घन नुम हर रंग की कोई वस्त है +cylinder/cylinder_2,यह एक लाल रंग की और बेलननुम आकार की वस्त है +triangle/triangle_1,यह एक त्रिकोणीय संक्षेत्रनुम लाल रंग की वस्त है +triangle/triangle_3,ये हर रंग की त्रिकोण वस्त है +corn/corn_4,ये मक्क हैइसक सूप बन जा है +cube/cube_2,ये हर रंग का चोकोर है +cylinder/cylinder_2,ये लाल रंग का सिलिंडर आकार की वस्त है +triangle/triangle_1,ये लाल रंग की वस्त है +triangle/triangle_3,ये त्रिकोण है +corn/corn_4,ये मक्क है +cube/cube_2,ये खंड है +cylinder/cylinder_2,ये सिलेंडर है +triangle/triangle_1,ये त्रिकोण है +triangle/triangle_3,यह एक त्रिकोण का चित्र है +corn/corn_4,यह एक भुट्ट का चित्र है +cube/cube_2,यह एक वर्ग के आकर का चित्र है +cylinder/cylinder_2,यह एक बेलन केआ का चित्र है +triangle/triangle_1,यह एक त्रिकोण का चित्र है +triangle/triangle_3,हर रंग का त्रिभुज +corn/corn_4,मक का भुट्ट +cube/cube_2,घन क्षेत्र +cylinder/cylinder_2,लाल रंग का बेलन +triangle/triangle_1,लाल रंग का त्रिभुज +carrot/carrot_4,ये गाजर रख हुआ है +banana/banana_4,ये केल रख हुआ है +semicylinder/semicylinder_3,ये केक रख हुआ है +cylinder/cylinder_4,यह शरबत का गिलास रख हुआ है +cuboid/cuboid_3,यह कुल्फ राख हुई है +carrot/carrot_4,यह चुकंदर है +banana/banana_4,ये केल है +semicylinder/semicylinder_3,ये नील वाल सिलेंडर है +cylinder/cylinder_4,ये सिलेंडर है +cuboid/cuboid_3,ये खंड है +carrot/carrot_4,ये लाल रंग का गाजर है +banana/banana_4,ये हर रंग का केल है +semicylinder/semicylinder_3,ये पील रंग की वस्त है +cylinder/cylinder_4,ये हर रंग की वस्त है +cuboid/cuboid_3,ये लाल रंग की वस्त हैइसक आकार आयताकार है +carrot/carrot_4,यह गाजर है जो की एक सब्ज़ का नाम है यह लाल काल नारंग कई रंग में मिल है यह पौध की मूल जड़ हो है +banana/banana_4,यह कैल है जो की एक फल है चित्र में दिख रह कैल कच्च है जो की सब्ज बन के लिय उपयोग हो है +semicylinder/semicylinder_3,यह एक अर्ध गोलाकार वस्त का टुकड़ है जो की पील रंग का है +cylinder/cylinder_4,यह एक बेलनाकार वस्त है जो की सतह पर रख हुई है इसक रंग हर है +cuboid/cuboid_3,वस्त एक आयताकार साबुन जैस प्रतीत हो रह है यह लाल रंग की है +carrot/carrot_4,यह गाजर है +banana/banana_4,यह केल है +semicylinder/semicylinder_3,यह पिल वास्त है +cylinder/cylinder_4,यह हर वास्त है +cuboid/cuboid_3,यह लाल वास्त है +carrot/carrot_4,यह एक सीध पतल गाजर है +banana/banana_4,यह एक हल्क हर पक हुआ केल है +semicylinder/semicylinder_3,यह एक पील रंग की और अर्ध बेलननुम आकार की वस्त है +cylinder/cylinder_4,यह एक खड़ हर रंग की और बेलननुम आकार की वस्त है +cuboid/cuboid_3,यह एक खड़ आयातफलकीनुम लाल रंग की कोई वस्त है +carrot/carrot_4,इस गाजर कहे है +banana/banana_4,इस केल कहे है +semicylinder/semicylinder_3,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +cylinder/cylinder_4,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +cuboid/cuboid_3,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +carrot/carrot_4,यह गाजर है +banana/banana_4,यह एक केल है +semicylinder/semicylinder_3,यह पील रंग की रबर या प्लास्टिक की कोई वस्त है +cylinder/cylinder_4,यह निल रंग का रबर या प्लास्टिक का कोई आकर है +cuboid/cuboid_3,यह लाल रंग का कोई घनाभ है +carrot/carrot_4,यह एक गाजर है +banana/banana_4,यह एक केल है +semicylinder/semicylinder_3,यह कोई पील रंग का रब्बर का टुकड़ है +cylinder/cylinder_4,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +cuboid/cuboid_3,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +carrot/carrot_4,यह एक गाजर का चित्र है +banana/banana_4,यह एक केल का चित्र है +semicylinder/semicylinder_3,यह एक साबुन का चित्र है +cylinder/cylinder_4,यह एक बेलन के आकर का चित्र है +cuboid/cuboid_3,यह एक साबुन का चित्र है +carrot/carrot_4,यह स्वास्थ्य के लिए अच्छ है +banana/banana_4,यह स्वास्थ्य के लिए अच्छ है +semicylinder/semicylinder_3,यह पील रंग में दिख है +cylinder/cylinder_4,यह हर रंग में दिख है +cuboid/cuboid_3,यह फिर से लग रह है +carrot/carrot_4,यह गाजर और सबज के रूप में उपयोग किय जा है +banana/banana_4,यह एक केल है +semicylinder/semicylinder_3,यह एक अर्ध सिलेंडर है +cylinder/cylinder_4,यह सिलेंडर है +cuboid/cuboid_3,यह एक घनाभ है +carrot/carrot_4,यह एक गाजर है +banana/banana_4,यह एक केल है +semicylinder/semicylinder_3,यह एक पील अर्ध सिलेंडर है +cylinder/cylinder_4,यह एक हर सिलेंडर है +cuboid/cuboid_3,यह एक लाल घनाभ है +carrot/carrot_4,यह एक गाजर का चित्र हे +banana/banana_4,यह एक पील रंग का केल हे +semicylinder/semicylinder_3,यह एक पील रंग का आध क्षेत्र का चित्र हे +cylinder/cylinder_4,यह एक हर रंग का बेलनाकार वस्त का चित्र हे +cuboid/cuboid_3,यह एक लाल रंग का घनाभ हे +carrot/carrot_4,यह गाजर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +banana/banana_4,यह केल है और इसक उपयोग विभिन्न व्यंजन को तैयार कर के लिए किय जा है +semicylinder/semicylinder_3,यह एक घन प्रकार की वस्त है +cylinder/cylinder_4,यह एक घन प्रकार की वस्त है +cuboid/cuboid_3,यह एक घनाकार वस्त है +carrot/carrot_4,गाजर फल +banana/banana_4,केल फल +semicylinder/semicylinder_3,अर्द्ध बेलन +cylinder/cylinder_4,हर रंग का बेलन +cuboid/cuboid_3,घनाभ षटफलक +carrot/carrot_4,यह गाजर और सबज के रूप में उपयोग किय जा है +cucumber/cucumber_1,यह खीर है और सलाद के रूप में उपयोग किय जा है +eggplant/eggplant_4,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +orange/orange_3,यह एक संतर है +banana/banana_1,यह एक केल है +carrot/carrot_4,यह गाजर है यह नारंग का रंग है +cucumber/cucumber_1,यह खीर है यह रंग का वस्त है +eggplant/eggplant_4,यह बैंगन है यह बैंग का रंग है +orange/orange_3,यह नारंग है +banana/banana_1,यह केल है यह पील का वस्त है +carrot/carrot_4,गाजर फल +cucumber/cucumber_1,खीर सब्ज +eggplant/eggplant_4,बैगन सब्ज +orange/orange_3,संतर फल +banana/banana_1,केल फल +carrot/carrot_4,यह ककड़ है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +cucumber/cucumber_1,यह ककड़ है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +eggplant/eggplant_4,यह बैंगन है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +orange/orange_3,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन में किय जा है +banana/banana_1,यह केल है और इसक उपयोग विभिन्न व्यंजन में किय जा है +carrot/carrot_4,यह एक गाजर है +cucumber/cucumber_1,यह एक ककड़ है +eggplant/eggplant_4,यह एक बेंगन है +orange/orange_3,यह एक संतर है +banana/banana_1,यह एक केल है +carrot/carrot_4,यह एक गाजर का चित्र है +cucumber/cucumber_1,यह एक खीर का चित्र है +eggplant/eggplant_4,यह एक बैंगन का चित्र है +orange/orange_3,यह एक संतर का चित्र है +banana/banana_1,यह एक केल का चित्र है +carrot/carrot_4,यह स्वास्थ्य के लिए अच्छ है +cucumber/cucumber_1,यह हर रंग में है +eggplant/eggplant_4,यह स्वास्थ्य के लिए अच्छ है +orange/orange_3,यह स्वास्थ्य के लिए अच्छ है +banana/banana_1,यह स्वास्थ्य के लिए अच्छ है +carrot/carrot_4,यह एक गाजर का चित्र हे +cucumber/cucumber_1,यह एक खीर का चित्र हे +eggplant/eggplant_4,यह एक बैंगन का चित्र हे +orange/orange_3,यह एक मुसंब का चित्र हे +banana/banana_1,यह एक पील रंग का केल का चित्र हे +carrot/carrot_4,यह एक गाजर है +cucumber/cucumber_1,यह एक खीर है +eggplant/eggplant_4,यह एक बैंगन है +orange/orange_3,यह एक संतर है +banana/banana_1,यह एक केल है +carrot/carrot_4,इस गाजर कहे है +cucumber/cucumber_1,इस ककड़ कहे है +eggplant/eggplant_4,इस बेंगन कहे है +orange/orange_3,इस संतर कहे है +banana/banana_1,इस केल कहे है +carrot/carrot_4,यह बड़ गाज्जर है +cucumber/cucumber_1,यह हर ककड़ है +eggplant/eggplant_4,भर्त् का बैगन है +orange/orange_3,यह गोल संतर है +banana/banana_1,यह पील केल है +carrot/carrot_4,गजर हलव +cucumber/cucumber_1,खीर साबज +eggplant/eggplant_4,बंज भर है +orange/orange_3,खाल वस्त +banana/banana_1,छिप हुआ केल +carrot/carrot_4,ये वस्त गाजर हैं +cucumber/cucumber_1,ये वस्त हर काकड़ है +eggplant/eggplant_4,ये बैगन है यह एक सब्ज है +orange/orange_3,ये सन्तर हैय एक फल है +banana/banana_1,ये केल हैय एक फल है +carrot/carrot_4,बाएं हाथ +cucumber/cucumber_1,मोट खीर +eggplant/eggplant_4,बड़ बैंगन +orange/orange_3,बड़ संतर +banana/banana_1,बड़ केल +carrot/carrot_4,यह एक आढ़ तिरछ गाजर है +cucumber/cucumber_1,यह एक हर पतल खीर है +eggplant/eggplant_4,यह एक लम्ब पतल बैंग रंग का बैंगन है +orange/orange_3,यह वस्त एक नारंग रंग का पक संतर है +banana/banana_1,यह एक पील पक हुआ केल है +carrot/carrot_4,यह एक गाजर है +cucumber/cucumber_1,यह एक ककड़ है +eggplant/eggplant_4,यह एक बेंगन है +orange/orange_3,यह एक पिल नींब है +banana/banana_1,यह एक केल है +tomato/tomato_4,टमाटर सब्ज +lime/lime_4,काग़ज़ नींब +orange/orange_1,संतर फल +plum/plum_1,बेर फल +cucumber/cucumber_4,खीर सब्ज +tomato/tomato_4,टमाटर का उपयोग कई व्यंजन में किय जा है +lime/lime_4,चू का उपयोग कई खाद्य पदार्थ में किय जा सक है +orange/orange_1,संतर के पेड़ के फल को ताज खाय जा सक है या इसक रस या सुगंधित छिलक के लिए संसाधित किय जा सक है +plum/plum_1,परिपक्व बेर फल में एक धूल सफेद मोम कोटिंग हो सक है जो उन्ह एक चमकदार उपस्थित प्रदान कर है +cucumber/cucumber_4,खीर बहुत स्वादिष्ट हो है +tomato/tomato_4,यह स्वास्थ्य के लिए अच्छ है +lime/lime_4,यह तस्वीर हर रंग में है +orange/orange_1,यह स्वास्थ्य के लिए अच्छ है +plum/plum_1,यह तस्वीर लाल रंग में है +cucumber/cucumber_4,यह स्वास्थ्य के लिए अच्छ है +tomato/tomato_4,यह एक टमाटर है +lime/lime_4,यह एक हर नींब है +orange/orange_1,यह एक पिल नींब है +plum/plum_1,यह एक बेर है +cucumber/cucumber_4,यह एक ककड़ है +tomato/tomato_4,यह एक टमाटर का चित्र है +lime/lime_4,यह एक अमरुद का चित्र है +orange/orange_1,यह एक संतर का चित्र है +plum/plum_1,यह एक सेब का चित्र है +cucumber/cucumber_4,यह एक खीर का चित्र है +tomato/tomato_4,यह एक टमाटर है +lime/lime_4,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +orange/orange_1,यह एक संतर है +plum/plum_1,यह बेर है +cucumber/cucumber_4,यह बेर है +tomato/tomato_4,यह टमाटर है यह लाल रंग है +lime/lime_4,यह एक हर रंग का वस्त है +orange/orange_1,यह पील का वस्त है यह नारंग है +plum/plum_1,यह एक लाल रंग का वस्त है +cucumber/cucumber_4,यह एक खीर है यह हर रंग है +tomato/tomato_4,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन में किय जा है +lime/lime_4,यह नींब है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +orange/orange_1,यह आम है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +plum/plum_1,यह बीट है और इसक उपयोग विभिन्न व्यंजन में किय जा है +cucumber/cucumber_4,यह ककड़ है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +tomato/tomato_4,यह एक टमाटर है +lime/lime_4,यह एक कच्च निम्ब है +orange/orange_1,यह एक संतर है +plum/plum_1,यह एक बेर है +cucumber/cucumber_4,यह एक खीर है +tomato/tomato_4,यह एक टमाटर का चित्र हे +lime/lime_4,यह एक अमरूद का चित्र हे +orange/orange_1,यह एक मुसंब का चित्र हे +plum/plum_1,यह एक सेब का चित्र हे +cucumber/cucumber_4,यह एक खीर का चित्र हे +tomato/tomato_4,ये लाल रंग का टमाटर है +lime/lime_4,ये हर रंग का नींब है +orange/orange_1,ये संतर है +plum/plum_1,ये लाल रंग का सेब है +cucumber/cucumber_4,ये हर रंग की ककड़ है +tomato/tomato_4,1 सुबह सुबह बि पा पिए पक टमाटर खा स्वास्थ्य के लिए अच्छ हो है 2 अगर बच्च को सूख रोग हो जाए तो उस प्रतिदिन एक गिलास टमाटर का जूस पिल से बीमार में आराम मिल है +lime/lime_4,ब्रोकोल में कैरेटेनॉयड्स ल्यूटिन पाय जा है ये दिल की धमन को स्वस्थ बन रख है इसक सेवन से दिल का दौर पड़ और अन्य बीमार के हो की आशंक कम हो जा है इसम मौजूद पोटैशि‍यम कोलेस्ट्रॉल के स्तर को बढ़ नह दे है +orange/orange_1,संतर और उसक जूस देख में जित अच्छ लग है यह हमार स्वास्थ्य के लिए भी उत हीं अच्छ है संतर विटामिन सी का भंडार है और यह आसा से बाजार में मिल जा है संतर के बहुत सार लाभ है +plum/plum_1,सेब बहुत अच्छ फल है वह स्वास्त के लिए बहुत अच्छ है सेब बहुत स्वादित हा है सेब पेड़ पर उग है +cucumber/cucumber_4,खीर सेहत के लिए काफ फायदेमंद मा जा है इसक सौंदर्य लाभ के बार में तो आप काफ कुछ सु होग लेकिन यह आपक सेहत के लिए कित और किस तरह फायदेमंद है इसक बार में आज हम आपक बत हैं कम फैट व कैलोर से भरपूर खीर का सेवन आपक कई गंभीर बीमार से बच में सहायक है +tomato/tomato_4,टमाटर का उपयोग डेसर्ट मिठ और यह तक कि भौतिक उद्देश्य के लिए किय जा है टमाटर की दुनिय में दुनिय के सभ देश में इसक उपयोग बड़ मात्र में किय जा है +lime/lime_4,मुझ खेद है कि मैं इस समझ नह सक क्योंक मैं इस किस भी प्रकार के लिए नह ढूंढ सकताकोई और पूर फोट नह +orange/orange_1,संतर फल बहुत ठंड हो है आंख की जलन जैस जलन +plum/plum_1,सेब थोड़ अधिक महंग है फल बहुत बेस्वाद हो है और इसस शरीर में प्रोटीन की मात्र बढ़ जा है +cucumber/cucumber_4,इसस शरीर को बहुत ठंडक मिल है यह गर्म में शरीर के लिए बहुत अच्छ है इसक उपयोग उपचार में भी किय जा है +tomato/tomato_4,इस टमाटर कहे है +lime/lime_4,इस नींब कहे है +orange/orange_1,इस संतर कहे है +plum/plum_1,इस बेर कहे है +cucumber/cucumber_4,इस ककड़ कहे है +tomato/tomato_4,यह टमाटर है +lime/lime_4,यह निम्ब है +orange/orange_1,मौसम्ब है +plum/plum_1,टमाटर है +cucumber/cucumber_4,हर ककड़ है +tomato/tomato_4,यह एक लाल पील रंग का अधपक टमाटर है जिसक ऊपर पत् नुम छतर लग हुई है +lime/lime_4,यह एक हर छोट नींब है +orange/orange_1,यह वस्त एक पील रंग का संतर है +plum/plum_1,यह एक आलूबुखार जैस दिख वाल फल है जोक दिख में लाल रंग का है +cucumber/cucumber_4,यह एक हर पतल खीर है +tomato/tomato_4,यह एक टमाटर है +lime/lime_4,यह हर रंग की कोई सब्ज या फल है +orange/orange_1,यह एक संतर है +plum/plum_1,यस एक सेब है +cucumber/cucumber_4,यह एक ककड़ है +lime/lime_2,यह एक कच्च निम्ब है +cucumber/cucumber_1,यह एक खीर है +corn/corn_3,यह एक मक्क है +arch/arch_3,यह एक हर मेहराब है +lime/lime_3,यह एक कच्च निम्ब है +lime/lime_2,यह हर रंग की कोई सब्ज या फल है +cucumber/cucumber_1,यह एक ककड़ है +corn/corn_3,यह मक्क का भुट्ट है +arch/arch_3,यह हर रंग की प्लास्टिक या रबर की कोई चीज़ है +lime/lime_3,यह हर रंग की सब्ज या फल है +lime/lime_2,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +cucumber/cucumber_1,यह खीर है और सलाद के रूप में उपयोग किय जा है +corn/corn_3,यह मक्क है और अनाज के रूप में उपयोग किय जा ह +arch/arch_3,यह एक आर्च है +lime/lime_3,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +lime/lime_2,यह नींब है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +cucumber/cucumber_1,यह ककड़ है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +corn/corn_3,यह मकई है और खा में बहुत स्वादिष्ट है +arch/arch_3,यह एक घन प्रकार की वस्त है +lime/lime_3,यह नींब है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +lime/lime_2,यह एक हर नींब है +cucumber/cucumber_1,यह एक ककड़ है +corn/corn_3,यह मक्क का भुट्ट है +arch/arch_3,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +lime/lime_3,यह एक हर नींब है +lime/lime_2,ये पत् है +cucumber/cucumber_1,ये ककड़ है +corn/corn_3,ये केल है +arch/arch_3,ये नील वाल त्रिकोण है +lime/lime_3,ये मक्क है +lime/lime_2,यह हर रंग में है +cucumber/cucumber_1,इस ककड़ कह जा है हर कोई इस पसंद कर है +corn/corn_3,यह मकई कह जा है हर कोई इस पसंद कर है +arch/arch_3,यह हर रंग में है +lime/lime_3,यह हर रंग में है +lime/lime_2,ये हर रंग की वस्त है +cucumber/cucumber_1,ये हर ककड है +corn/corn_3,ये मक्क है +arch/arch_3,ये गहर हर रंग की वस्त है +lime/lime_3,ये हर रंग की वस्त है +lime/lime_2,यह एक अमरुद का चित्र है +cucumber/cucumber_1,यह एक खीर का चित्र है +corn/corn_3,यह एक भुट्ट का चित्र है +arch/arch_3,यह एक साबुन का चित्र है +lime/lime_3,यह एक अमरुद का चित्र है +lime/lime_2,यह एक गोभ है +cucumber/cucumber_1,यह खीर है और सलाद के रूप में उपयोग किय जा है +corn/corn_3,यह एक स्वीट कॉर्न है +arch/arch_3,यह एक टेप मशीन स्टैंड है +lime/lime_3,यह एक गोभ है +lime/lime_2,अंगूर है +cucumber/cucumber_1,ककड़ है +corn/corn_3,शफेद भुट्ट है +arch/arch_3,कुछ हर सा है +lime/lime_3,छोट अंगूर है +lime/lime_2,इस नींब कहे है +cucumber/cucumber_1,इस ककड़ कहे है +corn/corn_3,इस मक्क का भुट्ट कहे है +arch/arch_3,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +lime/lime_3,इस नींब कहे है +lime/lime_2,मुझ इस फल के बार में कुछ नह पत +cucumber/cucumber_1,ककड़ बहुत ठंड हो है इसक उपयोग घरेल चिकित्स उपचार में आँस के लिए किय जा है +corn/corn_3,इस मक्क कह जा है और यह सबस कम समय में पक वाल सबस कम फसल है +arch/arch_3,अर्च का उपयोग पैटर्न खोज के लिए उपयोग किए जा वाल मॉडल के रूप में किय जा है +lime/lime_3,मुझ इस फल के बार में कुछ नह पत +lime/lime_2,काग़ज़ नींब +cucumber/cucumber_1,खीर सब्ज +corn/corn_3,मक का भुट्ट +arch/arch_3,मेहराब वृत्त खंड +lime/lime_3,काग़ज़ नींब +lime/lime_2,यह एक हर छोट नींब है +cucumber/cucumber_1,यह एक हर पतल खीर है +corn/corn_3,यह वस्त एक छिल हुआ भुट्ट है जिसक दा सफ़ेद है +arch/arch_3,यह एक उलट मेहराब नुम हर रंग की वस्त है +lime/lime_3,यह एक हर छोट नींब है +lime/lime_2,यह खा की कोई वस्त है +cucumber/cucumber_1,यह खीर ककड़ है +corn/corn_3,यह मक्क है +arch/arch_3,यह आइस क्रीम का टुकड़ है +lime/lime_3,यह खा की कोई वस्त है +lime/lime_3,इसक नींब कह जा है +banana/banana_2,इसक केल कह जा है +eggplant/eggplant_4,इसक एक बेंगन कह जा है +plum/plum_3,इसक बेर कह जा है +potato/potato_3,इसक आल कह जा है +lime/lime_3,ये वस्त हर रंग की है +banana/banana_2,केल सेहत के लिए अच हो है +eggplant/eggplant_4,बैंगन की सब्ज बहुत अछ हो है +plum/plum_3,वस्त क रंग फीक है +potato/potato_3,आल एक सब्ज है +lime/lime_3,हर रंग का निम्ब +banana/banana_2,बड़ सा केल है +eggplant/eggplant_4,बड़ बैगन है +plum/plum_3,यह एक प्रकार की वास्त है +potato/potato_3,आल है बड़ +lime/lime_3,यह एक हर रंग का अमरूद का चित्र हे +banana/banana_2,यह एक पील रंग का केल का चित्र हे +eggplant/eggplant_4,यह एक बैंगन का चित्र हे +plum/plum_3,यह एक सेब का चित्र हे +potato/potato_3,यह एक आल का चित्र हे +lime/lime_3,नीब खट्ट टेस्ट के लिए +banana/banana_2,केल फल +eggplant/eggplant_4,बैगन सब्ज +plum/plum_3,बेर मीठ फल +potato/potato_3,आल सब्ज +lime/lime_3,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +banana/banana_2,यह एक केल है +eggplant/eggplant_4,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +plum/plum_3,यह बेर है +potato/potato_3,यह एक आल है +lime/lime_3,यह एक कच्च निम्ब है +banana/banana_2,यह एक केल है +eggplant/eggplant_4,यह एक बैंगन है +plum/plum_3,यह एक बेर है +potato/potato_3,यह एक आल है +lime/lime_3,यह हर रंग में है +banana/banana_2,यह केल है +eggplant/eggplant_4,इस बैंगन कह जा है जिस हर कोई पसंद कर है +plum/plum_3,ठीक से दिख नह दे +potato/potato_3,आल सेहत के लिए अच्छ हो है +lime/lime_3,इस नींब कहे है +banana/banana_2,इस केल कहे है +eggplant/eggplant_4,इस बेंगन कहे है +plum/plum_3,इस बेर कहे है +potato/potato_3,इस आल कहे है +lime/lime_3,यह नींब है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +banana/banana_2,यह केल है और इसक उपयोग विभिन्न व्यंजन में किय जा है +eggplant/eggplant_4,यह बैंगन है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +plum/plum_3,यह बीट है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +potato/potato_3,यह आल है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +lime/lime_3,ये हर रंग की वस्त है +banana/banana_2,ये केल है +eggplant/eggplant_4,ये बैगन है +plum/plum_3,ये लाल सेब है +potato/potato_3,ये आल है +lime/lime_3,यह एक हर छोट और अंडाकार आकार का नींब है +banana/banana_2,यह एक पील पक हुआ केल है +eggplant/eggplant_4,यह एक लम्ब पतल बैंग रंग का बैंगन है +plum/plum_3,यह एक आलूबुखार जैस दिख वाल फल है जोक दिख में लाल रंग का है +potato/potato_3,यह एक अंडाकार आल है और इसक रंग हल्क भूर है +lime/lime_3,नींब का अचार बहुत अच्छ लग है +banana/banana_2,कच्च केल का हम पकोड़ बन हैं +eggplant/eggplant_4,काल बैंगन को भर में उपयोग किय जा है +plum/plum_3,यह बैंगन की कलौंज बन हैं +potato/potato_3,आल यह एक ऐस सब्ज है जिस हम सभ में उपयोग कर हैं +lime/lime_3,यह पत् है +banana/banana_2,यह केल है +eggplant/eggplant_4,ये है बैंगन +plum/plum_3,ये है गोभ +potato/potato_3,ये आल है +lime/lime_3,यह एक अमरुद का चित्र है +banana/banana_2,यह एक केल का चित्र है +eggplant/eggplant_4,यह एक बैंगन का चित्र है +plum/plum_3,यह एक सेब का चित्र है +potato/potato_3,यह एक आल का चित्र है +lime/lime_3,यह हर रंग की कोई सब्ज या फल है +banana/banana_2,यह एक केल है +eggplant/eggplant_4,यह एक बेंगन है +plum/plum_3,यह कोई सब्ज या फल है +potato/potato_3,यह एक आल है +cube/cube_1,यह घन है +potato/potato_3,यह एक आल है +cucumber/cucumber_4,यह खीर है और सलाद के रूप में उपयोग किय जा है +cuboid/cuboid_3,यह एक घनाभ है +tomato/tomato_3,यह एक टमाटर है +cube/cube_1,यह घन है +potato/potato_3,यह एक आल है +cucumber/cucumber_4,यह खीर है और सलाद के रूप में उपयोग किय जा है +cuboid/cuboid_3,यह एक घनाभ है +tomato/tomato_3,यह एक घनाभ है +cube/cube_1,यह तस्वीर पील रंग की है +potato/potato_3,यह तस्वीर पील रंग की है +cucumber/cucumber_4,यह तस्वीर खीर की है +cuboid/cuboid_3,यह चित्र लाल रंग का है +tomato/tomato_3,यह चित्र लाल रंग का है +cube/cube_1,पिल चौकोर चीज है +potato/potato_3,आल है +cucumber/cucumber_4,यह हर ककड़ है +cuboid/cuboid_3,लाल चौकोर डिब्बानुम है +tomato/tomato_3,लाल खराब टमाटर है +cube/cube_1,ये पील रंग की चौकोर हैं +potato/potato_3,ये आल है +cucumber/cucumber_4,ये हर ककड है +cuboid/cuboid_3,ये लाल रंग का आयताकार वस्त है +tomato/tomato_3,यव लाल टमाटर है +cube/cube_1,चोकोर चित्र +potato/potato_3,अल भाज +cucumber/cucumber_4,वस्त खाल +cuboid/cuboid_3,लंब चोकोर लाल +tomato/tomato_3,लाल टमाटर +cube/cube_1,यह एक घन प्रकार की वस्त है +potato/potato_3,यह आम है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +cucumber/cucumber_4,यह ककड़ है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +cuboid/cuboid_3,यह एक घन प्रकार की वस्त है +tomato/tomato_3,यह आम है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +cube/cube_1,यह कोई पील रंग का रब्बर का टुकड़ है +potato/potato_3,यह आल है +cucumber/cucumber_4,यह एक ककड़ है +cuboid/cuboid_3,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +tomato/tomato_3,यह एक टमाटर है +cube/cube_1,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +potato/potato_3,इस आल कहे है +cucumber/cucumber_4,इस ककड़ कहे है +cuboid/cuboid_3,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +tomato/tomato_3,इस टमाटर कहे है +cube/cube_1,यह एक चौकोर आकार की वस्त है +potato/potato_3,आल को आल पाउडर और आल चावल के चावल के रूप में जा जा है +cucumber/cucumber_4,खीर शरीर के लिए एक बेहतरीन मिर्च है +cuboid/cuboid_3,आयताकार आकृत का उपयोग उन शिक्षक के लिए एक मॉडल के रूप में किय जा है जो पाठ कर हैं +tomato/tomato_3,इसक नाम टमाटर है इसक उपयोग टमाटर चावल में एक अच्छ उपखंड रसम बन के लिए किय जा है +cube/cube_1,यह एक पील घनक्षेत्र है +potato/potato_3,यह एक आल है +cucumber/cucumber_4,यह एक खीर है +cuboid/cuboid_3,यह एक लाल घनाभ है +tomato/tomato_3,यह एक टमाटर है +cube/cube_1,वस्त घन के आकार की है +potato/potato_3,आल एक सब्ज है +cucumber/cucumber_4,खीर को खा सक है +cuboid/cuboid_3,घनाभ के आकार की वस्त +tomato/tomato_3,टमाटर को खा सक है +cube/cube_1,यह एक वर्ग के आकर का चित्र है +potato/potato_3,यह एक आल का चित्र है +cucumber/cucumber_4,यह एक खीर का चित्र है +cuboid/cuboid_3,यह एक साबुन का चित्र है +tomato/tomato_3,यह एक टमाटर का चित्र है +cube/cube_1,यह एक पील रंग की प्लास्टिक या रबर की कोई वस्त है +potato/potato_3,यह आल है +cucumber/cucumber_4,यह एक ककड़ है +cuboid/cuboid_3,यह लाल रंग की प्लास्टिक या रबर की कोई वस्त है +tomato/tomato_3,यह एक टमाटर है +cube/cube_1,घन क्षेत्र +potato/potato_3,आल सब्ज +cucumber/cucumber_4,खीर सब्ज +cuboid/cuboid_3,घनाभ षटफलक +tomato/tomato_3,टमाटर सब्ज +cube/cube_1,ये पील वाल खंड है +potato/potato_3,ये अदरक है +cucumber/cucumber_4,ये नील वाल सिलेंडर है +cuboid/cuboid_3,ये नील वाल त्रिकोण है +tomato/tomato_3,ये है टमाटर +corn/corn_4,इस मक्क का भुट्ट कहे है +cuboid/cuboid_2,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +cabbage/cabbage_2,इस गोभ कहे है +cuboid/cuboid_4,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +lime/lime_1,इस नींब कहे है +corn/corn_4,यह चित्र स्वास्थ्य के लिए अच्छ है +cuboid/cuboid_2,यह तस्वीर हर रंग में है +cabbage/cabbage_2,यह तस्वीर अच्छ तरह से दिख नह दे है +cuboid/cuboid_4,यह तस्वीर नील रंग में है +lime/lime_1,यह तस्वीर हर रंग में है +corn/corn_4,ये मक्क हैं +cuboid/cuboid_2,ये हर रंग का आयताकार वस्त है +cabbage/cabbage_2,ये बेंग रंग की पत्तागोभ है +cuboid/cuboid_4,ये नील रंग की आयताकार वस्त है +lime/lime_1,ये हर रंग की वस्त है +corn/corn_4,यह एक मक्क है +cuboid/cuboid_2,यह एक हर घनाभ है +cabbage/cabbage_2,यह एक पत्तागोभ है +cuboid/cuboid_4,यह एक नील घनाभ है +lime/lime_1,यह एक कच्च निम्ब है +corn/corn_4,यह छिल हुआ मक्क का भुट्ट है +cuboid/cuboid_2,यह हर रंग का प्लास्टिक या रबर की कोई वस्त है +cabbage/cabbage_2,यह गोभ है +cuboid/cuboid_4,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +lime/lime_1,यह एक नींब है +corn/corn_4,यह एक छिल हुआ भुट्ट का चित्र हे +cuboid/cuboid_2,यह एक हर रंग का घनाभ का चित्र हे +cabbage/cabbage_2,यह एक बैंग रंग का बंद गोब का चित्र हे +cuboid/cuboid_4,यह एक नील रंग का घनाभ का चित्र हे +lime/lime_1,यह एक अमरूद का चित्र हे +corn/corn_4,नाम मक्क है जो कम समय में उग वाल फसल है इस पक जा है और पा में पक जा है यह सस् हो है +cuboid/cuboid_2,आयताकार आकृत का उपयोग उन शिक्षक के लिए एक मॉडल के रूप में किय जा है जो पाठ कर हैं +cabbage/cabbage_2,गोभ का उपयोग परिष्कार के साथ संयोजन में किय जा है +cuboid/cuboid_4,आयताकार आकृत का उपयोग उन शिक्षक के लिए एक मॉडल के रूप में किय जा है जो पाठ कर हैं +lime/lime_1,लाइम का उपयोग एक मुख्य घटक के रूप में किय जा है +corn/corn_4,यह मक्क है और अनाज के रूप में उपयोग किय जा ह +cuboid/cuboid_2,यह एक घनाभ है +cabbage/cabbage_2,यह एक गोभ है +cuboid/cuboid_4,यह एक घनाभ है +lime/lime_1,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +corn/corn_4,यह एक भुट्ट का चित्र है +cuboid/cuboid_2,यह एक साबुन का चित्र है +cabbage/cabbage_2,यह एक बंदगोभ का चित्र है +cuboid/cuboid_4,यह एक वर्ग के आकर का चित्र है +lime/lime_1,यह एक अमरुद का चित्र है +corn/corn_4,मक का भुट्ट +cuboid/cuboid_2,घनाभ षटफलक +cabbage/cabbage_2,गोभ सब्ज +cuboid/cuboid_4,घनाभ षटफलक +lime/lime_1,काग़ज़ नींब +corn/corn_4,यह मकई है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +cuboid/cuboid_2,यह एक घन प्रकार की वस्त है +cabbage/cabbage_2,यह फूलगोभ है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +cuboid/cuboid_4,यह एक घन प्रकार की वस्त है +lime/lime_1,यह नींब है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +corn/corn_4,पील रंग का भुट्ट दिख दे रह है जिसक छिलक उतर हुआ है +cuboid/cuboid_2,एक हर रंग का क्षैतिज घनाभ दिख दे रह है +cabbage/cabbage_2,काल रंग की पत्तागोभ दिख दे रह है +cuboid/cuboid_4,एक नील ऊर्ध्वाधर घनाभ दिख दे रह है +lime/lime_1,एक हर रंग की खोल के आकार की चीज +corn/corn_4,यह मक्क का भुट्ट है +cuboid/cuboid_2,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +cabbage/cabbage_2,यह गोभ है +cuboid/cuboid_4,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +lime/lime_1,यह एक हर नींब है +corn/corn_4,यह एक मकई है +cuboid/cuboid_2,यह एक घनाभ है +cabbage/cabbage_2,यह एक गोभ है +cuboid/cuboid_4,यह एक घनाभ है +lime/lime_1,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +corn/corn_4,भुट्ट है +cuboid/cuboid_2,यह हर वास्त है +cabbage/cabbage_2,गोब है +cuboid/cuboid_4,यह नील वास्त है +lime/lime_1,यह निम्ब है +corn/corn_4,यह वस्त एक छिल हुआ भुट्ट है जिसक दा सफ़ेद है +cuboid/cuboid_2,यह एक आयातफलकीनुम हर रंग की कोई वस्त है +cabbage/cabbage_2,यह वस्त बैंग रंग की पत्तागोभ है और इसक आकार लगभग गोल है +cuboid/cuboid_4,यह एक आयातफलकीनुम नील रंग की कोई वस्त है +lime/lime_1,यह एक हर छोट नींब है +cube/cube_2,वस्त वर्गाकार आकर के साबुन के सामान दिख रह है यह हर रंग की है +tomato/tomato_1,यह एक टमाटर है जो की एक प्रमुख सब्ज का प्रकार है यह वस्तुतः लाल रंग के हो है +corn/corn_2,यह मकई है जिस भुट्ट या मक्क भी कह है यह एक प्रमुख फसल है चित्र में जो भुट्ट दिख रह है वो थोड़ सूख हुआ है +lime/lime_1,वस्त अमरुद की तरह दिख दे रह है जो की हर रंग का है यह एक प्रकार का फल हो है +corn/corn_3,यह मकई है जिस भुट्ट या मक्क भी कह है यह एक प्रमुख फसल है यह वस्तुतः बारिश के मौसम में बहुतायत में मिल है +cube/cube_2,इस आकार में चौकोर नाम के चार को हो हैं जिनम चार भुजाएँ समान हो हैं +tomato/tomato_1,यह टमाटर एक खट्ट स्वाद है जिसक उपयोग खा पक के लिए किय जा सक है +corn/corn_2,नाम है मक्क पनीर जो शरीर के लिए एक अच्छ भोजन है +lime/lime_1,यह पील और हर रंग में नींब के रस के स्वाद के साथ बन जा है विटामिन सी खा पक और ले के लिए एकदम सह है +corn/corn_3,नाम है मक्क पनीर जो शरीर के लिए एक अच्छ भोजन है +cube/cube_2,यह हर रंग का डिब्ब है +tomato/tomato_1,यह लाल रंग का टमाटर है +corn/corn_2,यह एक सफेद मक्क है +lime/lime_1,यह एक हर फल है +corn/corn_3,यह एक सफेद मक्क है +cube/cube_2,यह एक घन प्रकार की वस्त है +tomato/tomato_1,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +corn/corn_2,यह मकई है और इसक उपयोग विभिन्न व्यंजन में किय जा है +lime/lime_1,यह नींब है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +corn/corn_3,यह मकई है और इसक उपयोग विभिन्न व्यंजन में किय जा है +cube/cube_2,यह एक पास है +tomato/tomato_1,यह एक टमाटर है +corn/corn_2,यह एक स्वीट कॉर्न है +lime/lime_1,यह एक गोभ है +corn/corn_3,यह एक स्वीट कॉर्न है +cube/cube_2,यह गहर हर रंग का दिख है +tomato/tomato_1,यह टमाटर है +corn/corn_2,यह मकई के रूप में जा जा है स्वास्थ्य के लिए अच्छ है +lime/lime_1, जो स्वास्थ्य के लिए अच्छ है +corn/corn_3,यह मकई के रूप में जा जा है स्वास्थ्य के लिए अच्छ है +cube/cube_2,यह एक हर रंग का डबर डब्ब है +tomato/tomato_1,एक सेब रोज खा से कैंसर जैस बिमारीय नह हो +corn/corn_2,मक्क को सुख उसक दोन को पिस रोट बन सक हैं +lime/lime_1,किड के मरीज के लिए यह नासप खान सेहत के लिए अच्छ हो है +corn/corn_3,मक्क का उपयोग हम सब्ज़ बन में भी कर सक हैं +cube/cube_2,यह एक घननुम वस्त जिसक रंग हर है +tomato/tomato_1,यह एक लाल रंग का टमाटर है जोक हाइब्रिड किस्म का लग रह है +corn/corn_2,यह एक छिल हुआ भुट्ट है +lime/lime_1,यह हर रंग का नीब है +corn/corn_3,यह एक छिल हुआ भुट्ट है जिसक रंग सफ़ेद है +cube/cube_2,यह एक हर घनक्षेत्र है +tomato/tomato_1,यह एक टमाटर है +corn/corn_2,यह एक मक्क है +lime/lime_1,यह एक कच्च निम्ब है +corn/corn_3,यह एक मक्क है +cube/cube_2,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +tomato/tomato_1,इस टमाटर कहे है +corn/corn_2,इस मक्क का भुट्ट कहे है +lime/lime_1,इस नींब कहे है +corn/corn_3,इस मक्क का भुट्ट कहे है +cube/cube_2,यह एक वर्ग के आकर का चित्र है +tomato/tomato_1,यह एक टमाटर का चित्र है +corn/corn_2,यह एक भुट्ट का चित्र है +lime/lime_1,यह एक अमरुद का चित्र है +corn/corn_3,यह एक भुट्ट का चित्र है +cube/cube_2,घन क्षेत्र +tomato/tomato_1,टमाटर सब्ज +corn/corn_2,मक का भुट्ट +lime/lime_1,काग़ज़ नींब +corn/corn_3,मक का भुट्ट +cube/cube_2,हर क्यूब सा है +tomato/tomato_1,लाल टमाटर है +corn/corn_2,भुट्ट है +lime/lime_1,निम्ब है हर सा +corn/corn_3,देस भुट्ट है +cube/cube_2,यह घन है +tomato/tomato_1,यह एक टमाटर है +corn/corn_2,यह मक्क है और अनाज के रूप में उपयोग किय जा ह +lime/lime_1,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +corn/corn_3,यह मक्क है और अनाज के रूप में उपयोग किय जा ह +cube/cube_2,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +tomato/tomato_1,यह टमाटर है +corn/corn_2,यह एक छिल हुआ मक्क का भुट्ट है +lime/lime_1,यह हर रंग की कोई सब्ज या फल है +corn/corn_3,यह मक्क का छिल हुआ भुट्ट है +cube/cube_2,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +tomato/tomato_1,इसक टमाटर कह जा है +corn/corn_2,इसक मक्क का भुट्ट कह जा है +lime/lime_1,इसक नींब कह जा है +corn/corn_3,इसक मक्क का भुट्ट कह जा है +cube/cube_2,ये हर रंग का चोकोर है +tomato/tomato_1,ये लाल टमाटर है +corn/corn_2,ये मक्क है +lime/lime_1,ये हर रंग का अमरुद है +corn/corn_3,ये मक्क है +semicylinder/semicylinder_4,अर्ध गोल हर वास्त है +tomato/tomato_2,छोट लाल टमाटर है +lemon/lemon_4,पील निम्ब है +cube/cube_2,हर चौकोर सी वास्त है +cabbage/cabbage_3,लाल गोब लग रह है +semicylinder/semicylinder_4,ये अर्ध वृत्त खंड है +tomato/tomato_2,यह लाल टमाटर है +lemon/lemon_4,ये नींब है +cube/cube_2,ये खंड है +cabbage/cabbage_3,ये है बैंग गोभ +semicylinder/semicylinder_4,ये हर रंग की वस्त है +tomato/tomato_2,ये लाल टमाटर है +lemon/lemon_4,ये पील नींब है +cube/cube_2,ये हर रंग की चोकोर वस्त है +cabbage/cabbage_3,ये बैग रंग की पत्तागोभ है +semicylinder/semicylinder_4,यह एक घन प्रकार की वस्त है +tomato/tomato_2,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +lemon/lemon_4,यह आम है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +cube/cube_2,यह एक घन प्रकार की वस्त है +cabbage/cabbage_3,यह फूलगोभ है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +semicylinder/semicylinder_4,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +tomato/tomato_2,यह एक टमाटर है +lemon/lemon_4,यह एक नींब है +cube/cube_2,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +cabbage/cabbage_3,यह गोभ है +semicylinder/semicylinder_4,यह एक अर्ध सिलेंडर है +tomato/tomato_2,यह एक टमाटर है +lemon/lemon_4,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +cube/cube_2,यह घन है +cabbage/cabbage_3,यह एक गोभ है +semicylinder/semicylinder_4,अर्द्ध बेलन +tomato/tomato_2,टमाटर सब्ज +lemon/lemon_4,नीब खट्ट टेस्ट के लिए +cube/cube_2,घन क्षेत्र +cabbage/cabbage_3,गोभ सब्ज +semicylinder/semicylinder_4,यह एक अर्ध सिलेंडर आकार है मुझ इसक बार में और कुछ नह पत है +tomato/tomato_2,टमाटर एक खाद्य उत्पाद है जो भोजन तैयार कर और लुगद बन में महत्वपूर्ण भूमिक निभ है +lemon/lemon_4,इस नाम का उपयोग बादाम का रस और नींब चावल बन के लिए किय जा है +cube/cube_2,यह एक चौकोर आकार है और इस एक ऐस मॉडल कह जा है जो छोट बच्च के अध्ययन के लिए कक्ष सिख है +cabbage/cabbage_3,यह गोभ के रूप में प्रयोग किय जा है और नूडल्स के लिए खाद्य उत्पाद के रूप में उपयोग किय जा है +semicylinder/semicylinder_4,यह एक अल्पाकार वृत्त है +tomato/tomato_2,यह एक टमाटर है +lemon/lemon_4,यह एक निम्ब है +cube/cube_2,यह एक घनक्षेत्र है +cabbage/cabbage_3,यह एक पत्तागोभ है +semicylinder/semicylinder_4,यह एक बेलनुम वस्त है जो की आध कट हुई है +tomato/tomato_2,यह वस्त लाल टमाटर की तरह दिख रह है +lemon/lemon_4,यह एक पील निम्ब है +cube/cube_2,यह एक घननुम वस्त है जिसक रंग हर है +cabbage/cabbage_3,यह एक गहर बैंग पत्तागोभ है +semicylinder/semicylinder_4,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +tomato/tomato_2,इसक टमाटर कह जा है +lemon/lemon_4,इसक नींब कह जा है +cube/cube_2,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +cabbage/cabbage_3,इसक गोभ कह जा है +semicylinder/semicylinder_4,यह एक हर रंग का आध क्षेत्र का चित्र हे +tomato/tomato_2,यह एक टमाटर का चित्र हे +lemon/lemon_4,यह एक पील रंग का नींब का चित्र हे +cube/cube_2,यह एक हर रंग का घनक्षेत्र का चित्र हे +cabbage/cabbage_3,यह एक बैंग रंग का बंद गोब का चित्र हे +semicylinder/semicylinder_4,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +tomato/tomato_2,इस टमाटर कहे है +lemon/lemon_4,इस नींब कहे है +cube/cube_2,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +cabbage/cabbage_3,इस गोभ कहे है +semicylinder/semicylinder_4,यह हर रंग का वस्त है +tomato/tomato_2,यह टमाटर है यह लाल रंग है +lemon/lemon_4,यह निम्ब है यह पील का वस्त है +cube/cube_2,यह हर रंग का वस्त है +cabbage/cabbage_3,यह गोब है यह भूर का वस्त है +semicylinder/semicylinder_4,यह तस्वीर हर रंग में है +tomato/tomato_2,यह तस्वीर लाल रंग में है +lemon/lemon_4,यह तस्वीर अच्छ तरह से दिख नह दे है +cube/cube_2,यह तस्वीर हर रंग में है +cabbage/cabbage_3,यह तस्वीर बहुत अच्छ है +semicylinder/semicylinder_4,हर आध गोल +tomato/tomato_2,लाल लाल टमाटर +lemon/lemon_4,खट्ट नीबूं +cube/cube_2,हर रंग का वर्ग +cabbage/cabbage_3,बैंग पत् गोभ +cabbage/cabbage_2,यह एक सब्ज है +lime/lime_2,यह हर रंग का फ़ल है +corn/corn_3,यह एक भुट्ट है +potato/potato_4,यह एक आल है +cuboid/cuboid_2,यह हर रंग है +cabbage/cabbage_2,इस गोभ कहे है +lime/lime_2,इस नींब कहे है +corn/corn_3,इस मक्क का भुट्ट कहे है +potato/potato_4,इस आल कहे है +cuboid/cuboid_2,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +cabbage/cabbage_2,यह एक बैंग रंग का बंद गोब का चित्र हे +lime/lime_2,यह एक अमरूद का चित्र हे +corn/corn_3,यह एक छिल हुआ भुट्ट का चित्र हे +potato/potato_4,यह एक आल का चित्र हे +cuboid/cuboid_2,यह एक हर रंग का घनाभ हे +cabbage/cabbage_2,यह वस्त या तो पत् गोभ है या फिर बैगन दोन ही एक सब्ज का प्रकार है +lime/lime_2,वस्त एक निम्ब की तरह प्रतीत हो रह है जो की एक सब्ज जा प्रकार है तथ ये स्वाद में खट्ट हो है +corn/corn_3,यह एक भुट्ट है जिस मकई या मक्क भी कह है जो की एक प्रमुख खाद्य फसल है +potato/potato_4,वस्त आल की तरह दिख दे रह है जो की एक प्रमुख सब्ज है +cuboid/cuboid_2,वस्त हर रंग के साबुन के सामान दिख रह है जो की नह में उपयोग हो है +cabbage/cabbage_2,ये बैग रंग की पत्तागोभ है +lime/lime_2,ये हर रंग का अमरूद है +corn/corn_3,ये मक्क है +potato/potato_4,ये आल है +cuboid/cuboid_2,ये हर रंग का आयताकार वस्त है +cabbage/cabbage_2,ये वस्त एक सब्ज है +lime/lime_2,वस्त का रंग हर है +corn/corn_3,इसक नाम भुट्ट है +potato/potato_4,वस्त का रंग पील है +cuboid/cuboid_2,हर रंग की ठोस वस्त +cabbage/cabbage_2,यह फूलगोभ है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +lime/lime_2,यह नींब है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +corn/corn_3,यह मकई है और इसक उपयोग विभिन्न व्यंजन में किय जा है +potato/potato_4,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन में किय जा है +cuboid/cuboid_2,यह एक घनाकार वस्त है +cabbage/cabbage_2,खजूर फल सेहत के लिए अच्छ हो है खजूर का रस बहुत स्वादिष्ट हो है +lime/lime_2,गर्म में नींब का रस सेहत के लिए अच्छ हो है नींब का उपयोग नींब चावल तैयार कर के लिए किय जा है +corn/corn_3,मक्क का प्रमुख आट फाइबर समाहित है यह एक खाद्य स्रोत है यह रक्तचाप को स्थिर रख में मदद कर है +potato/potato_4,अगर आप शरीर का वजन बढ़ के लिए आम खा हैं तो आप आसा से वजन बढ़ सक हैं आम मुंहास को समायोजित कर में मदद कर है +cuboid/cuboid_2,साबुन के लिए घरेल उपयोग में कपड़ धो और स्नान शामिल हैं आधुनिक जीवन के लिए साबुन बहुत महत्वपूर्ण है +cabbage/cabbage_2,यह गोभ है +lime/lime_2,यह एक हर नींब है +corn/corn_3,यह मक्क का भुट्ट है +potato/potato_4,यह आल है +cuboid/cuboid_2,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +cabbage/cabbage_2,यह एक गोभ है +lime/lime_2,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +corn/corn_3,यह मक्क है और अनाज के रूप में उपयोग किय जा ह +potato/potato_4,यह एक आल है +cuboid/cuboid_2,यह एक घनाभ है +cabbage/cabbage_2,यह वस्त बैंग रंग की पत्तागोभ है और इसक आकार अंडाकार है +lime/lime_2,यह एक हर छोट और अंडाकार आकार का नींब है +corn/corn_3,यह वस्त एक छिल हुआ भुट्ट है जिसक दा सफ़ेद है +potato/potato_4,यह एक अंडाकार आल है और इसक रंग हल्क भूर है +cuboid/cuboid_2,यह एक आयातफलकीनुम हर रंग की कोई वस्त है +cabbage/cabbage_2,यह एक प्रकार की सब्ज है +lime/lime_2,यह हर निम्ब है +corn/corn_3,शफेद भुट्ट है यह +potato/potato_4,एक प्रकार की वास्त है +cuboid/cuboid_2,हर वास्त है यह +cabbage/cabbage_2,यह एक बैंगन का चित्र है +lime/lime_2,यह एक अमरुद का चित्र है +corn/corn_3,यह एक भुट्ट का चित्र है +potato/potato_4,यह एक चीक फल का चित्र है +cuboid/cuboid_2,यह एक साबुन का चित्र है +cabbage/cabbage_2,क्रिस्टल ठोस पदार्थ +lime/lime_2,पेड़ की हर पत् +corn/corn_3,मक का भुट्ट +potato/potato_4,आल सब्ज +cuboid/cuboid_2,आयताकार सोफ +cabbage/cabbage_2,यह वस्त काल रंग की है +lime/lime_2,यह हर रंग की वस्त है +corn/corn_3,मकई खा में बहुत स्वादिष्ट +potato/potato_4,फोट स्वास्थ्य के लिए बहुत अच्छ है +cuboid/cuboid_2,आयत आकृत में यह वस्त +cabbage/cabbage_2,यह गोभ है +lime/lime_2,यह हर रंग की कोई सब्ज या फल है +corn/corn_3,यह मक्क का भुट्ट है +potato/potato_4,यह आल है +cuboid/cuboid_2,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +cabbage/cabbage_2,ये बैंग गोभ है +lime/lime_2,ये पत् है +corn/corn_3,ये मक्क है +potato/potato_4,ये आल है +cuboid/cuboid_2,ये है हर वाल खंड +semicylinder/semicylinder_2,अर्द्ध बेलन +lemon/lemon_3,नीब खट्ट टेस्ट के लिए +arch/arch_2,मेहराब वृत्त खंड +cuboid/cuboid_1,घनाभ षटफलक +semicylinder/semicylinder_4,अर्द्ध बेलन +semicylinder/semicylinder_2,यह एक साबुन का चित्र है +lemon/lemon_3,यह एक निम्ब का चित्र है +arch/arch_2,यह एक साबुन का चित्र है +cuboid/cuboid_1,यह एक साबुन का चित्र है +semicylinder/semicylinder_4,यह एक साबुन का चित्र है +semicylinder/semicylinder_2,ये अर्ध वृत्त खंड है +lemon/lemon_3,ये पत् है +arch/arch_2,ये है बैंगन +cuboid/cuboid_1,ये नील वाल त्रिकोण है +semicylinder/semicylinder_4,ये अर्ध वृत्त खंड है +semicylinder/semicylinder_2,यह एक घन प्रकार की वस्त है +lemon/lemon_3,यह आम है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +arch/arch_2,यह एक घन प्रकार की वस्त है +cuboid/cuboid_1,यह एक घन प्रकार की वस्त है +semicylinder/semicylinder_4,यह एक घनाकार वस्त है +semicylinder/semicylinder_2,कुछ लाल रंग का है +lemon/lemon_3,पील निम्ब है +arch/arch_2,कुछ हल्क नील सा है +cuboid/cuboid_1,कुछ पील सा है +semicylinder/semicylinder_4,कुछ हर अर्ध गोल सा है +semicylinder/semicylinder_2,ये लाल रंग की वस्त है +lemon/lemon_3,ये पील रंग का नींब हैं +arch/arch_2,ये नील रंग की वस्त है +cuboid/cuboid_1,ये पील रंग की आयताकार वस्त है +semicylinder/semicylinder_4,ये हर रंग की वस्त है +semicylinder/semicylinder_2,यह वस्त लाल है और सुरंग जैस दिख है +lemon/lemon_3,यह ऑब्जेक्ट पील है और अंड की जर्द जैस दिख है +arch/arch_2,यह ऑब्जेक्ट नील है और एक ऐस जगह की तरह दिख है जह स्केटबोर्डिंग संभव है +cuboid/cuboid_1,यह वस्त पील रंग की है इसम आयताकार आकार है और साबुन जैस दिख है +semicylinder/semicylinder_4,यह वस्त हर रंग की है और सुरंग जैस दिख है +semicylinder/semicylinder_2,यह एक लाल अर्ध सिलेंडर है +lemon/lemon_3,यह एक निम्ब है +arch/arch_2,यह एक नील मेहराब है +cuboid/cuboid_1,यह एक पील घनाभ है +semicylinder/semicylinder_4,यह एक हर अर्ध सिलेंडर है +semicylinder/semicylinder_2,यह एक लाल रंग की और अर्ध बेलननुम आकार की वस्त है +lemon/lemon_3,यह एक पील छोट और अंडाकार आकार का नींब है +arch/arch_2,यह एक उलट मेहराब नुम नील रंग की वस्त है +cuboid/cuboid_1,यह एक आयातफलकीनुम पील रंग की कोई वस्त है +semicylinder/semicylinder_4,यह एक हर रंग की और अर्धबेलननुम आकार की वस्त है +semicylinder/semicylinder_2,यह एक अर्ध सिलेंडर है +lemon/lemon_3,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +arch/arch_2,यह एक आर्च है +cuboid/cuboid_1,यह एक घनाभ है +semicylinder/semicylinder_4,यह एक अर्ध सिलेंडर है +semicylinder/semicylinder_2,वस्त लाल रंग की है +lemon/lemon_3,ये पील रंग की वस्त है +arch/arch_2,आसमा रंग की वस्त +cuboid/cuboid_1,पील रंग की वस्त +semicylinder/semicylinder_4,ये हर रंग की ठोस वस्त है +semicylinder/semicylinder_2,यह लाल रंग की प्लास्टिक या रबर की कोई वस्त है +lemon/lemon_3,यह एक नींब है +arch/arch_2,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +cuboid/cuboid_1,यह एक पील रंग की प्लास्टिक या रबर की कोई वस्त है +semicylinder/semicylinder_4,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +semicylinder/semicylinder_2,यह एक अर्ध सिलेंडर है +lemon/lemon_3,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +arch/arch_2,यह एक आर्च है +cuboid/cuboid_1,यह एक घनाभ है +semicylinder/semicylinder_4,यह एक अर्ध सिलेंडर है +semicylinder/semicylinder_2,मुझ नह पत कि यह रंग लाल रंग में क्य है लेकिन यह छह सिलेंडर जैस दिख है +lemon/lemon_3,नींब पील रंग का हो है और इसम साइट्रिक एसिड हो है जो स्वास्थ्य के लिए अच्छ हो है +arch/arch_2,मुझ नह पत कि यह रंग लंब के आकार में क्य है लेकिन मुझ यह बहुत पसंद है +cuboid/cuboid_1,मुझ नह पत कि यह किस आकार का है +semicylinder/semicylinder_4,यह आध सिलेंडर जैस दिख है इसक रंग हर है हम पहल भी इस तरह का लाल सिलेंडर आकार देख है +semicylinder/semicylinder_2,ये कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +lemon/lemon_3,इसक नींब कह जा है +arch/arch_2,ये नील रंग की प्लास्टिक या रबर की कोई वस्त है +cuboid/cuboid_1,यह कोई पील रंग का रब्बर का टुकड़ है +semicylinder/semicylinder_4,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +semicylinder/semicylinder_2,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +lemon/lemon_3,इस नींब कहे है +arch/arch_2,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +cuboid/cuboid_1,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +semicylinder/semicylinder_4,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +cylinder/cylinder_1,ये पील रंग का टुकड है +semicylinder/semicylinder_2,ये लाल रंग की वस्त है +plum/plum_1,ये लाल रंग का सेब है +carrot/carrot_2,ये गाजर है +plum/plum_4,ये लाल रंग का सेब है +cylinder/cylinder_1,यह एक बेलन के आकर का चित्र है +semicylinder/semicylinder_2,यह एक साबुन का चित्र है +plum/plum_1,यह एक सेब का चित्र है +carrot/carrot_2,यह एक गाजर का चित्र है +plum/plum_4,यह एक सेब का चित्र है +cylinder/cylinder_1,यह कोई पील रंग का रब्बर का टुकड़ है +semicylinder/semicylinder_2,ये कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +plum/plum_1,इसक बेर कह जा है +carrot/carrot_2,इसक गाजर कह जा है +plum/plum_4,इसक बेर कह जा है +cylinder/cylinder_1,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +semicylinder/semicylinder_2,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +plum/plum_1,इस बेर कहे है +carrot/carrot_2,इस गाजर कहे है +plum/plum_4,इस बेर कहे है +cylinder/cylinder_1,यह एक घन प्रकार की वस्त है +semicylinder/semicylinder_2,यह एक घन प्रकार की वस्त है +plum/plum_1,यह बीट है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +carrot/carrot_2,यह गाजर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +plum/plum_4,यह बीट है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +cylinder/cylinder_1,यह एक बेलनुम पील वस्त है +semicylinder/semicylinder_2,यह वस्त एक गोलकार तम्ब की तरह दिख रह है जिसक रंग लाल है +plum/plum_1,यह एक बैंग रंग की कोई वस्त जो ऊपर से गोलाकार है +carrot/carrot_2,यह एक लम्ब पतल गाजर है +plum/plum_4,यह एक बैंग रंग की कोई वस्त जो ऊपर से गोलाकार है +cylinder/cylinder_1,यह एक सिलेंडर है +semicylinder/semicylinder_2,यह एक अर्ध सिलेंडर है +plum/plum_1,यह बेर है +carrot/carrot_2,यह गाजर और सबज के रूप में उपयोग किय जा है +plum/plum_4,यह बेर है +cylinder/cylinder_1,इसक उपयोग रोलर के रूप में किय जा है जो शैक्षणिक पाठ्यक्रम में अधिक उपयोग किय जा है इसक उपयोग पील रंग के सिलेंडर के आकार को माप के लिए किय जा है +semicylinder/semicylinder_2,यह लेखांकन में अर्ध बेलनाकार रूप का उपयोग कर है +plum/plum_1,ये सब्ज एक आल हैं यह बहुत सार कार्बोहाइड्रेट और प्रोटीन हैं यह बीमार लोग के लिए अच्छ है इस खा और खा अच्छ है पाक किस्म को खाय जा सक है इसस शरीर को अच्छ पोषण मिल है +carrot/carrot_2,यह सब्ज सिर्फ इस सब्ज गाजर से अधिक है यह आंख के लिए बहुत अच्छ है पहाड़ में बहुत सार विटामिन हैं यह पहाड़ में बहुत काम है यह शरीर के लिए अच्छ है +plum/plum_4,ये सब्ज एक आल हैं यह बहुत सार कार्बोहाइड्रेट और प्रोटीन हैं यह बीमार लोग के लिए अच्छ है इस खा और खा अच्छ है पाक किस्म को खाय जा सक है इसस शरीर को अच्छ पोषण मिल है +cylinder/cylinder_1,यह एक पील सिलेंडर है +semicylinder/semicylinder_2,यह एक लाल अर्ध सिलेंडर है +plum/plum_1,यह एक बेर है +carrot/carrot_2,यह एक गाजर है +plum/plum_4,यह एक बेर है +cylinder/cylinder_1,यह एक पिल रंग की वास्त है +semicylinder/semicylinder_2,लाल रंग की अर्ध गोल आकर की वास्त है +plum/plum_1,यह एक सेवफल है +carrot/carrot_2,यह एक गाजर है +plum/plum_4,यह कोई सा फल है +cylinder/cylinder_1,पील रंग की वस्त +semicylinder/semicylinder_2,लाल रंग की वस्त +plum/plum_1,वस्त मे लाल रंग के निशान है +carrot/carrot_2,गाजर सेहत के लिय फायदेमंद हो हैं +plum/plum_4,वस्त का रंग थोड़ लाल और पील है +cylinder/cylinder_1,यह पील चट है +semicylinder/semicylinder_2,यह लाल मेहराब है +plum/plum_1,यह प्याज है +carrot/carrot_2,यह चुकंदर है +plum/plum_4,यह प्याज है +cylinder/cylinder_1,सिलेंडर को अब ज्यामित और टोपोलॉज की विभिन्न आधुनिक शाख में परिभाषित किय गय है +semicylinder/semicylinder_2,यह अर्धविराम रंग में लाल है +plum/plum_1,बेर मानव द्वार पाल गए पहल फल में से एक हो सक है +carrot/carrot_2,बढ़ हुए टैपरोट का निर्माण कर समय गाजर पत्त की एक रोसेट उग है +plum/plum_4,जैतून अंगूर और अंजीर के साथ नवपाषाण युग के पुरातात्विक स्थल में बेर के अवशेष पाए गए हैं +cylinder/cylinder_1,यह तस्वीर शुद्ध पील रंग में है +semicylinder/semicylinder_2,यह पूर तरह से लाल रंग है +plum/plum_1,यह तस्वीर अच्छ तरह से दिख नह दे है +carrot/carrot_2,यह नाम है गाजर +plum/plum_4,यह तस्वीर बहुत अच्छ लग रह है +cylinder/cylinder_1,पील रंग का बेलन +semicylinder/semicylinder_2,अर्द्ध बेलन +plum/plum_1,बेर मीठ फल +carrot/carrot_2,गाजर फल +plum/plum_4,बेर मीठ फल +cylinder/cylinder_1,यह सिलेंडर है +semicylinder/semicylinder_2,यह एक अर्ध सिलेंडर है +plum/plum_1,यह एक बेर है +carrot/carrot_2,यह गाजर और सबज के रूप में उपयोग किय जा है +plum/plum_4,यह बेर है +cylinder/cylinder_1,यह कोई पील रंग की चीज़ है +semicylinder/semicylinder_2,यह लाल रंग की रबर या प्लास्टिक की कोई वस्त है +plum/plum_1,यह लाल रंग का कोई फल है +carrot/carrot_2,यह गाजर है +plum/plum_4,यह कोई फल है +potato/potato_4,यह एक आल है +lemon/lemon_3,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +arch/arch_2,यह एक आर्च है +triangle/triangle_3,यह एक त्रिकोण है +plum/plum_4,यह बेर है +potato/potato_4,आल सब्ज +lemon/lemon_3,नीब पील रंग का +arch/arch_2,मेहराब वृत्त खंड +triangle/triangle_3,हर रंग का त्रिभुज +plum/plum_4,बेर फल +potato/potato_4,आल सब्ज +lemon/lemon_3,पील नींब +arch/arch_2,नील नाव का आकार +triangle/triangle_3,कुछ हर +plum/plum_4,लाल सेब या अनार +potato/potato_4,यह पील सब्ज है +lemon/lemon_3,यह पील रंग है +arch/arch_2,यह ब्ल कलर ऑब्जेक्ट है +triangle/triangle_3,यह हर रंग की वस्त है +plum/plum_4,यह प्याज रंग में गुलाब है +potato/potato_4,यह आल है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +lemon/lemon_3,यह आम है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +arch/arch_2,यह एक घन प्रकार की वस्त है +triangle/triangle_3,यह एक घन प्रकार की वस्त है +plum/plum_4,यह बीट है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +potato/potato_4,इसक आल कह जा है +lemon/lemon_3,इसक नींब कह जा है +arch/arch_2,ये नील रंग की प्लास्टिक या रबर की कोई वस्त है +triangle/triangle_3,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +plum/plum_4,इसक बेर कह जा है +potato/potato_4,ये आल है +lemon/lemon_3,ये पील रंग का नीब है +arch/arch_2,ये हल्क रंग की वस्त है +triangle/triangle_3,ये हर रंग की वस्त है +plum/plum_4,ये लाल सेब है +potato/potato_4,यह आल है +lemon/lemon_3,यह पील का वस्त है +arch/arch_2,यह नील रंग का वस्त है +triangle/triangle_3,यह हर रंग का वस्त है +plum/plum_4,यह एक लाल रंग का वस्त है +potato/potato_4,ये आल है +lemon/lemon_3,ये नींब है +arch/arch_2,ये नील वाल अर्ध वृत्त खंड है +triangle/triangle_3,ये हर वाल त्रिकोण है +plum/plum_4,ये है गोभ +potato/potato_4,यह एक अंडाकार आल है और इसक रंग हल्क भूर है +lemon/lemon_3,यह एक पील छोट और अंडाकार आकार का नींब है +arch/arch_2,यह एक उलट मेहराब नुम नील रंग की वस्त है +triangle/triangle_3,यह एक त्रिकोणीय संक्षेत्रनुम हर रंग की वस्त है +plum/plum_4,यह एक आलूबुखार जैस दिख वाल फल है जोक दिख में लाल रंग का है +potato/potato_4,यह एक आल है +lemon/lemon_3,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +arch/arch_2,यह एक आर्च है +triangle/triangle_3,यह एक त्रिकोण है +plum/plum_4,यह बेर है +potato/potato_4,यह एक आल है +lemon/lemon_3,यह एक निम्ब है +arch/arch_2,यह एक नील मेहराब है +triangle/triangle_3,यह एक हर त्रिकोण है +plum/plum_4,यह एक बेर है +potato/potato_4,आल छोट सा +lemon/lemon_3,पील निम्ब +arch/arch_2,नील वास्त +triangle/triangle_3,हर वास्त +plum/plum_4,सेवफल लाल सा +potato/potato_4,मुझ खेद नह हो सक क्योंक मुझ समझ नह आ रह है कि यह क्य है +lemon/lemon_3,इसक नाम नींब है इसक उपयोग भोजन बन और कई खाद्य पदार्थ तैयार कर के लिए किय जा है +arch/arch_2,कई प्रकार की सब्ज को काट के लिए चार का उपयोग चार के रूप में किय जा है +triangle/triangle_3,यह नाम त्रिकोण है इसक उपयोग छात्र के लिए पहल कुछ कक्ष में गणित के बार में जान के लिए एक मॉडल के रूप में किय जा है +plum/plum_4,यह एक स्वादिष्ट खाद्य पदार्थ है जिस पापम कह जा है +potato/potato_4,यह एक आल का चित्र हे +lemon/lemon_3,यह एक पील रंग का नींब का चित्र हे +arch/arch_2,यह एक ऐस आकृ हे मान एक नील रंग का घनाभ के बीच से एक आध क्षेत्र निकाल दिय हो +triangle/triangle_3,यह एक हर रंग का त्रिविम दृश्यन त्रिकोन हे +plum/plum_4,यह एक सेब का चित्र हे +potato/potato_4,इस आल कहे है +lemon/lemon_3,इस नींब कहे है +arch/arch_2,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +triangle/triangle_3,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +plum/plum_4,इस बेर कहे है +potato/potato_4,यह आल है +lemon/lemon_3,यह एक नींब है +arch/arch_2,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +triangle/triangle_3,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +plum/plum_4,यह एक लाल रंग की सब्ज या फल है +cube/cube_2,ये हर रंग का क्यूब है +cylinder/cylinder_2,ये लाल रंग का सिलिंडर है +triangle/triangle_1,ये लाल रंग का संक है +banana/banana_2,ये केल हैय फल है +tomato/tomato_1,ये लाल रंग का टमाटर है +cube/cube_2,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +cylinder/cylinder_2,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +triangle/triangle_1,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +banana/banana_2,यह एक केल है +tomato/tomato_1,यह एक टमाटर है +cube/cube_2,यह एक हर रंग का वस्त है +cylinder/cylinder_2,यह एक लाल रंग का गोल वस्त है +triangle/triangle_1,यह एक लाल रंग का त्रिकोण वस्त है +banana/banana_2,इस चित्र में एक केल है +tomato/tomato_1,इस चित्र में एक टमाटर दिख रह है +cube/cube_2,ये अर्ध वृत्त खंड है +cylinder/cylinder_2,ये अर्ध वृत्त खंड है +triangle/triangle_1,ये नील वाल सिलेंडर है +banana/banana_2,ये है नारंग +tomato/tomato_1,ये है टमाटर +cube/cube_2,यह एक घन प्रकार की वस्त है +cylinder/cylinder_2,यह एक घन प्रकार की वस्त है +triangle/triangle_1,यह एक घन प्रकार की वस्त है +banana/banana_2,यह केल है और इसक उपयोग विभिन्न व्यंजन में किय जा है +tomato/tomato_1,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +cube/cube_2,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +cylinder/cylinder_2,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +triangle/triangle_1,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +banana/banana_2,इस केल कहे है +tomato/tomato_1,इस टमाटर कहे है +cube/cube_2,यह एक वर्ग के आकर का चित्र है +cylinder/cylinder_2,यह एक बेलन के आकर का चित्र है +triangle/triangle_1,यह एक त्रिकोण के आकर का चित्र है +banana/banana_2,यह एक केल का चित्र है +tomato/tomato_1,यह एक टमाटर का चित्र है +cube/cube_2,हर चौकोर सा है +cylinder/cylinder_2,लाल बेलन आकारनुम सा है +triangle/triangle_1,लाल त्रिकोण सा है +banana/banana_2,पील केल है +tomato/tomato_1,लाल टमाटर है +cube/cube_2,चोकोर चित्र +cylinder/cylinder_2,सिलेंडर वस्त +triangle/triangle_1,त्रिकोण वस्त +banana/banana_2,केल लें +tomato/tomato_1,लाल टमाटर +cube/cube_2,यह घन है +cylinder/cylinder_2,यह एक सिलेंडर है +triangle/triangle_1,यह एक त्रिकोण है +banana/banana_2,यह एक केल है +tomato/tomato_1,यह एक टमाटर है +cube/cube_2,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +cylinder/cylinder_2,यह लाल रंग की प्लास्टिक या रबर की कोई वस्त है +triangle/triangle_1,यह लाल रंग की प्लास्टिक या रबर की कोई वस्त है +banana/banana_2,यह एक केल है +tomato/tomato_1,यह एक टमाटर है +cube/cube_2,यह एक चौकोर आकार की वस्त है +cylinder/cylinder_2,नाम सिलेंडर का उपयोग शिक्षक के लिए किय जा है जब यह सिख है और पाठ बन है +triangle/triangle_1,यह उन शिक्षक के लिए बहुत उपय है जो डिजाइन के बार में पाठ पढ़ हैं इस विशिष्ट पैटर्न पर बन गय है +banana/banana_2,केल एक ऐस खाद्य पदार्थ है जो भोजन के पाचन संबंध विकार के लिए इस आदर्श बन है +tomato/tomato_1,इसक नाम टमाटर है इसक उपयोग टमाटर चावल में एक अच्छ उपखंड रसम बन के लिए किय जा है +cube/cube_2,यह एक हर घनक्षेत्र है +cylinder/cylinder_2,यह एक लाल सिलेंडर है +triangle/triangle_1,यह एक लाल त्रिकोण है +banana/banana_2,यह एक केल है +tomato/tomato_1,यह एक बेर है +cube/cube_2,यह एक घन नुम हर रंग की कोई वस्त है +cylinder/cylinder_2,यह एक लाल रंग की और बेलननुम आकार की वस्त है +triangle/triangle_1,यह एक त्रिकोणीय संक्षेत्रनुम लाल रंग की वस्त है +banana/banana_2,यह एक पील पक हुआ केल है +tomato/tomato_1,यह एक लाल रंग का टमाटर है +cube/cube_2,घन एक तीन आयाम ठोस वस्त है +cylinder/cylinder_2,बेलन में शून्य को हो हैं +triangle/triangle_1,त्रिभुज में छह को हो हैं +banana/banana_2,केल पील रंग का हो है +tomato/tomato_1,टमाटर बहुत पौष्टिक हो है +cube/cube_2,यह हर रंग में है +cylinder/cylinder_2,यह लाल रंग में रंग है +triangle/triangle_1,यह लाल रंग में रंग है +banana/banana_2,यह स्वास्थ्य के लिए अच्छ है +tomato/tomato_1,यह लाल रंग में रंग है +banana/banana_2,चित्र में दिख रह वस्त कैल है जो की एक फल का प्रकार है यह सामान्यतः पील रंग का हो है +eggplant/eggplant_1,यह एक बैंगन है यह एक सब्ज का प्रकार है इसक बन भर् भी स्वादिष्ट हो है +plum/plum_4,वस्त सेब की तरह प्रतीत हो रह है जो की एक फल का प्रकार है यह लाल रंग का हो है यह सेहत के लिए लाभदायक हो है +corn/corn_2,यह मकई है जिस भुट्ट या मक्क भी कह है यह एक प्रमुख फसल है चित्र में जो भुट्ट दिख रह है वो थोड़ सूख हुआ है +arch/arch_3,यह एक हर रंग की वस्त है जो की आयताकार आकर की है यह बीच में से अर्धगोलाकार आकर में कट हुई है +banana/banana_2,यह हल्क पील रंग में दिख है अच्छ दिख है +eggplant/eggplant_1,इस बैंगन कह जा है जिस हर कोई पसंद कर है +plum/plum_4,यह स्पष्ट नह है +corn/corn_2,यह मकई कह जा है हर कोई इस पसंद कर है +arch/arch_3,यह हर रंग में है +banana/banana_2,केल शरीर के लिए अच्छ हो है यह शरीर के लिए बहुत अच्छ हो है +eggplant/eggplant_1,यह खा पक के लिए बहुत उपय सब्ज है +plum/plum_4,इसक उपयोग आल पक के लिए किय जा है +corn/corn_2,यह बहुत स्वादिष्ट शाम का भोजन है जो शरीर के लिए बहुत अच्छ है +arch/arch_3,यह हर रंग का प्रिंट प्रारूप है +banana/banana_2,यह एक केल है +eggplant/eggplant_1,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +plum/plum_4,यह बेर है +corn/corn_2,यह मक्क है और अनाज के रूप में उपयोग किय जा ह +arch/arch_3,यह एक आर्च है +banana/banana_2,यह एक केल है +eggplant/eggplant_1,यह एक बेंगन है +plum/plum_4,यह एक लाल रंग की सब्ज या फल है +corn/corn_2,यह मक्क का भुट्ट है +arch/arch_3,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +banana/banana_2,यद पील रंग का केल हैय एक फल है +eggplant/eggplant_1,ये बैगन हैयह के सब्ज है +plum/plum_4,ये लाल रंग का सेब है +corn/corn_2,ये मक्क हैय दानेदार हो है +arch/arch_3,ये हल्क हर रंग की वस्त है +banana/banana_2,केल पील हो है +eggplant/eggplant_1,बैंगन में तेल को अवशोषित कर के लिए फल की क्षम हो है +plum/plum_4,प्लम जीनस प्रूनस के सबजेनस प्रूनस का एक फल है +corn/corn_2,मक्क दुनिय के कई हिस्स में एक प्रधान भोजन बन गय है +arch/arch_3,मेहराब वाल्ट का पर्याय बन सक है +banana/banana_2,यह एक केल का चित्र है +eggplant/eggplant_1,यह एक बैंगन का चित्र है +plum/plum_4,यह एक सेब का चित्र है +corn/corn_2,यह एक भुट्ट का चित्र है +arch/arch_3,यह एक साबुन का चित्र है +banana/banana_2,केल फल +eggplant/eggplant_1,बैंगन सब्ज +plum/plum_4,बेर मीठ फल +corn/corn_2,मक का भुट्ट +arch/arch_3,मेहराब वृत्त खंड +banana/banana_2,यह एक केल है +eggplant/eggplant_1,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +plum/plum_4,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +corn/corn_2,यह मक्क है और अनाज के रूप में उपयोग किय जा ह +arch/arch_3,यह एक आर्च है +banana/banana_2,यह एक केल है +eggplant/eggplant_1,यह एक बैंगन है +plum/plum_4,यह एक बेर है +corn/corn_2,यह एक मक्क है +arch/arch_3,यह एक मेहराब है +banana/banana_2,इस केल कहे है +eggplant/eggplant_1,इस बेंगन कहे है +plum/plum_4,इस बेर कहे है +corn/corn_2,इस मक्क का भुट्ट कहे है +arch/arch_3,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +banana/banana_2,केल पोशटक +eggplant/eggplant_1,बंज भर +plum/plum_4,अज्ञात वस्त +corn/corn_2,मिक रोट +arch/arch_3,आध चक् +banana/banana_2,यह एक पक हुआ पील रंग है केल है +eggplant/eggplant_1,यह एक लंब बैंगन है +plum/plum_4,यह गहर लाल रंग की गोलाकार वस्त है और ये नीच से चपट है +corn/corn_2,यह एक छिल हुआ भुट्ट है +arch/arch_3,यह एक हर रंग की वस्त है जो नीच से आयातकार और ऊपर से गोलाकार रूप से कट हुई है +banana/banana_2,यह केल है और इसक उपयोग विभिन्न व्यंजन को तैयार कर के लिए किय जा है +eggplant/eggplant_1,यह बैंगन है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +plum/plum_4,यह बीट है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +corn/corn_2,यह मकई है और इसक उपयोग विभिन्न व्यंजन में किय जा है +arch/arch_3,यह एक घनाकार वस्त है +banana/banana_2,पील केल है +eggplant/eggplant_1,भर् वाल बैगन है +plum/plum_4,सेवफल है शायद +corn/corn_2,देश भुट्ट है ये +arch/arch_3,कोई हर सी वास्त है +banana/banana_2,यह एक केल है +eggplant/eggplant_1,यह एक बेंगन है +plum/plum_4,यह एक बेर है +corn/corn_2,यह मक्क का भुट्ट है +arch/arch_3,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +lemon/lemon_1,यह एक निम्ब का चित्र है +cube/cube_4,यह एक वर्ग के आकर का चित्र है +orange/orange_2,यह एक मोसम्ब का चित्र है +triangle/triangle_4,यह एक त्रिकोण के आकर का चित्र है +lemon/lemon_2,यह एक निम्ब का चित्र है +lemon/lemon_1,यह अंड के पील भाग जैस दिख है +cube/cube_4,यह एक खिलौ की तरह दिख है +orange/orange_2,यह नींब जैस दिख वाल पदार्थ है +triangle/triangle_4,यह तेज कटर के साथ एक त्रिकोण आकृत है +lemon/lemon_2,यह अंड के पील भाग जैस दिख है +lemon/lemon_1,यह एक निम्ब है +cube/cube_4,यह एक लाल घनक्षेत्र है +orange/orange_2,यह एक संतर है +triangle/triangle_4,यह एक नील त्रिकोण है +lemon/lemon_2,यह एक निम्ब है +lemon/lemon_1,नींब का फल एक उत्कृष्ट फल का रस है इसक उपयोग नींब का रस और नींब चावल का उत्पादन कर के लिए किय जा है +cube/cube_4,चौकोर आकार के बाल का उपयोग उन शिक्षक के लिए नमू के रूप में किय जा है जो पाठ कर हैं +orange/orange_2,फल का नाम नारंग रंग के साथ नारंग फल है इसक स्वाद खट्ट है जो थोड़ अधिक महंग है +triangle/triangle_4,यह त्रिकोणीय आकृत का एक रूप है और पाठ पढ़ वाल शिक्षक के लिए नमू के रूप के रूप में उपयोग किय जा है +lemon/lemon_2,नींब का फल एक उत्कृष्ट फल का रस है इसक उपयोग नींब का रस और नींब चावल का उत्पादन कर के लिए किय जा है +lemon/lemon_1,यह पील रंग का कोई फल है +cube/cube_4,यह लाल रंग की प्लास्टिक या रबर की कोई वस्त है +orange/orange_2,यह संतर है +triangle/triangle_4,यह नील रंग का त्रिकोण है +lemon/lemon_2,यह एक नींब है +lemon/lemon_1,पिल निम्ब है +cube/cube_4,लाल वास्त है +orange/orange_2,पिल निम्ब है +triangle/triangle_4,नील ट्रोकेडिय आकृत की वास्त है +lemon/lemon_2,पील निम्ब है +lemon/lemon_1,यह एक पील छोट और गोल आकार का नींब है +cube/cube_4,यह एक घन नुम लाल रंग की कोई वस्त है +orange/orange_2,यह वस्त एक पील रंग का संतर है +triangle/triangle_4,यह एक त्रिकोणीय संक्षेत्रनुम नील रंग की वस्त है +lemon/lemon_2,यह एक पील छोट और अंडाकार आकार का नींब है +lemon/lemon_1,यह वस्त अंड की जर्द के समान है +cube/cube_4,यह वस्त लाल है और घन की तरह दिख है +orange/orange_2,यह वस्त अंड की जर्द के समान है +triangle/triangle_4,यह वस्त एक ढलान ढलान की तरह है +lemon/lemon_2,यह वस्त अंड की जर्द के समान है +lemon/lemon_1,इस नींब कहे है +cube/cube_4,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +orange/orange_2,इस संतर कहे है +triangle/triangle_4,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +lemon/lemon_2,इस नींब कहे है +lemon/lemon_1,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +cube/cube_4,यह घन है +orange/orange_2,यह एक संतर है +triangle/triangle_4,यह एक त्रिकोण है +lemon/lemon_2,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +lemon/lemon_1,यह एक संतर है +cube/cube_4,यह लाल रंग का वस्त है +orange/orange_2,यह संतर है +triangle/triangle_4,नील रंग का त्रिकोण +lemon/lemon_2,यह पील रंग का फ़ल है +lemon/lemon_1,नीब खट्ट टेस्ट के लिए +cube/cube_4,घन क्षेत्र +orange/orange_2,संतर फल +triangle/triangle_4,नील रंग का त्रिभुज +lemon/lemon_2,नीब खट्ट टेस्ट के लिए +lemon/lemon_1,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन में किय जा है +cube/cube_4,यह एक घनाकार वस्त है +orange/orange_2,यह आम है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +triangle/triangle_4,यह एक त्रिकोणीय प्रकार की वस्त है +lemon/lemon_2,यह आम है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +lemon/lemon_1,इसक नींब कह जा है +cube/cube_4,ये कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +orange/orange_2,इसक नींब कह जा है +triangle/triangle_4,ये नील रंग की प्लास्टिक या रबर की कोई वस्त है +lemon/lemon_2,इसक नींब कह जा है +lemon/lemon_1,यह स्वास्थ्य के लिए अच्छ है +cube/cube_4,यह अच्छ लग है +orange/orange_2,यह स्वास्थ्य के लिए अच्छ है +triangle/triangle_4,यह नील रंग में दिख है +lemon/lemon_2,यह स्वास्थ्य के लिए अच्छ है +lemon/lemon_1,ये पील रंग का नींब हैय खट्ट हो है +cube/cube_4,ये लाल रंग का क्यूब है +orange/orange_2,ये पील रंग का गेंद है +triangle/triangle_4,ये नील रंग की वस्त है +lemon/lemon_2,ये पील रंग का नींब है +lemon/lemon_1,ये नींब है +cube/cube_4,ये लाल वाल खंड है +orange/orange_2,ये नींब है +triangle/triangle_4,ये नील वाल त्रिकोण है +lemon/lemon_2,ये नींब है +carrot/carrot_4,यह एक गाजर का चित्र हे +banana/banana_1,यह एक पील रंग का केल का चित्र हे +eggplant/eggplant_3,यह एक बैंगन का चित्र हे +tomato/tomato_2,यह एक टमाटर का चित्र हे +lime/lime_4,यह एक हर रंग का अमरूद का चित्र हे +carrot/carrot_4,இது கேரட் இது நம்ம அப்படியே பச்சையாக சாப்பிடலாம் கண்ணுக்கு ரொம்ப நல்லது சமையலுக்கும் பயன்படுத்தலாம் +banana/banana_1,केल शरीर के लिए अच्छ हो है यह शरीर के लिए बहुत अच्छ हो है +eggplant/eggplant_3,यह इस सब्ज से बेहतर है और यह अच्छ सब्ज है +tomato/tomato_2,यह टमाटर एक खट्ट स्वाद है जिसक उपयोग खा पक के लिए किय जा सक है +lime/lime_4,यह पील और हर रंग में नींब के रस के स्वाद के साथ बन जा है विटामिन सी खा पक और ले के लिए एकदम सह है +carrot/carrot_4,गाजर फल +banana/banana_1,केल फल +eggplant/eggplant_3,बैगन सब्ज +tomato/tomato_2,टमाटर सब्ज +lime/lime_4,काग़ज़ नींब +carrot/carrot_4,यह गाजर और सबज के रूप में उपयोग किय जा है +banana/banana_1,यह एक केल है +eggplant/eggplant_3,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +tomato/tomato_2,यह एक टमाटर है +lime/lime_4,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +carrot/carrot_4,इसक गाजर कह जा है +banana/banana_1,इसक केल कह जा है +eggplant/eggplant_3,इसक बेंगन कह जा है +tomato/tomato_2,इसक टमाटर कह जा है +lime/lime_4,इसक नींब कह जा है +carrot/carrot_4,यह गाजर है +banana/banana_1,यह केल है +eggplant/eggplant_3,यह बैगन है +tomato/tomato_2,यह टमाटर है +lime/lime_4,यह निम्ब है +carrot/carrot_4,यह एक गाजर है +banana/banana_1,यह एक केल है +eggplant/eggplant_3,यह एक बेंगन है +tomato/tomato_2,यह एक टमाटर है +lime/lime_4,यह हर रंग की कोई सब्ज या फल है +carrot/carrot_4,यह गाजर है जो की एक सब्ज़ का नाम है यह लाल काल नारंग कई रंग में मिल है यह पौध की मूल जड़ हो है +banana/banana_1,चित्र में दिख रह वस्त कैल है जो की एक फल का प्रकार है यह सामान्यतः पील रंग का हो है +eggplant/eggplant_3,यह एक बैंगन है यह एक सब्ज का प्रकार है इसक बन भर् भी स्वादिष्ट हो है +tomato/tomato_2,यह एक टमाटर है जो की एक प्रमुख सब्ज का प्रकार है यह वस्तुतः लाल रंग के हो है +lime/lime_4,चित्र में दिख दे रह वस्त नींब की तरह प्रतीत हो रह है यह एक सब्ज हो है इसक स्वाद खट्ट हो है यह सामान्यतः पील तथ हर रंग का हो है +carrot/carrot_4,यह एक सीध पतल गाजर है +banana/banana_1,यह एक पील पक हुआ केल है +eggplant/eggplant_3,यह एक लम्ब पतल बैंग रंग का बैंगन है +tomato/tomato_2,यह एक लाल रंग का टमाटर है +lime/lime_4,यह एक हर छोट नींब है +carrot/carrot_4,यह स्वास्थ्य के लिए अच्छ है +banana/banana_1,यह स्वास्थ्य के लिए अच्छ है +eggplant/eggplant_3,यह स्वास्थ्य के लिए अच्छ है +tomato/tomato_2,यह अच्छ लग है +lime/lime_4,यह स्वास्थ्य के लिए अच्छ है +carrot/carrot_4,ये लाल रंग का गाजर है +banana/banana_1,ये पील रंग का केल हैं +eggplant/eggplant_3,ये बैगन है +tomato/tomato_2,ये लाल रंग का टमाटर है +lime/lime_4,ये हर रंग का नींब है +carrot/carrot_4,यह एक गाजर है +banana/banana_1,यह एक केल है +eggplant/eggplant_3,यह एक बैंगन है +tomato/tomato_2,यह एक टमाटर है +lime/lime_4,यह एक कच्च निम्ब है +carrot/carrot_4,यह गाजर का चित्र है +banana/banana_1,यह एक केल का चित्र है जो एक प्रकार का फल है +eggplant/eggplant_3,यह एक बैंगन का चित्र है जो एक सब्ज है +tomato/tomato_2,यह टमाटर का चित्र है जो एक सब्ज है +lime/lime_4,यह एक अमरुद का चित्र है जो एक प्रकार का फल है +carrot/carrot_4,इस गाजर कहे है +banana/banana_1,इस केल कहे है +eggplant/eggplant_3,इस बेंगन कहे है +tomato/tomato_2,इस टमाटर कहे है +lime/lime_4,इस नींब कहे है +carrot/carrot_4,यह गाजर और सबज के रूप में उपयोग किय जा है +banana/banana_1,यह एक केल है +eggplant/eggplant_3,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +tomato/tomato_2,यह एक टमाटर है +lime/lime_4,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +carrot/carrot_4,यह गाजर है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +banana/banana_1,यह केल है और इसक उपयोग विभिन्न व्यंजन में किय जा है +eggplant/eggplant_3,यह बैंगन है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +tomato/tomato_2,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन में किय जा है +lime/lime_4,यह नींब है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +tomato/tomato_3,टमाटर सब्ज +cylinder/cylinder_4,बेलन आकार +eggplant/eggplant_2,बैगन सब्ज +orange/orange_1,संतर फल +arch/arch_3,बिअरिंग पार्ट +tomato/tomato_3,यह एक टमाटर है +cylinder/cylinder_4,यह एक हर सिलेंडर है +eggplant/eggplant_2,यह एक बैंगन है +orange/orange_1,यह एक आल है +arch/arch_3,यह एक हर मेहराब है +tomato/tomato_3,यह स्वास्थ्य के लिए अच्छ है +cylinder/cylinder_4,यह पील रंग में है +eggplant/eggplant_2,यह स्वास्थ्य के लिए अच्छ है +orange/orange_1,यह स्वास्थ्य के लिए अच्छ है +arch/arch_3,यह पील रंग में है +tomato/tomato_3,यह एक टमाटर का चित्र है +cylinder/cylinder_4,यह एक बेलन के आकर का चित्र है +eggplant/eggplant_2,यह एक बैंगन का चित्र है +orange/orange_1,यह एक मोसम्ब का चित्र है +arch/arch_3,यह एक साबुन का चित्र है +tomato/tomato_3,यह एक टमाटर है +cylinder/cylinder_4,यह एक सिलेंडर है +eggplant/eggplant_2,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +orange/orange_1,यह एक संतर है +arch/arch_3,यह एक आर्च है +tomato/tomato_3,लाल टमाटर +cylinder/cylinder_4,सिलेंडर हैं +eggplant/eggplant_2,बंज भर है +orange/orange_1,माल्ट का रस +arch/arch_3,अज्ञात वस्त +tomato/tomato_3,यह एक टमाटर है +cylinder/cylinder_4,यह सिलेंडर है +eggplant/eggplant_2,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +orange/orange_1,यह एक आल है +arch/arch_3,यह एक आर्च है +tomato/tomato_3,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन में किय जा है +cylinder/cylinder_4,यह एक घन प्रकार की वस्त है +eggplant/eggplant_2,यह बैंगन है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +orange/orange_1,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन में किय जा है +arch/arch_3,यह एक घनाकार वस्त है +tomato/tomato_3,यह लाल टमाटर है +cylinder/cylinder_4,ये सिलेंडर है +eggplant/eggplant_2,ये है बैंगन +orange/orange_1,यह लाल टमाटर है +arch/arch_3,ये सिलेंडर है +tomato/tomato_3,यह एक टमाटर है +cylinder/cylinder_4,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +eggplant/eggplant_2,यह एक बेंगन है +orange/orange_1,यह आल है +arch/arch_3,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +tomato/tomato_3,टमाटर सॉस के उत्पादन में नाम बहुत महत्वपूर्ण भूमिक निभ है इसक उपयोग टमाटर चावल पक के लिए किय जा है +cylinder/cylinder_4,इस सिलेंडर के रूप की तरह आकार दिय जा है और इसक उपयोग पाठ पढ़ वाल शिक्षक के लिए नमू के रूप में किय जा है +eggplant/eggplant_2,यह कैंच के रूप में जा जा है और दक्षिण भारतीय समूह में एक बहुत महत्वपूर्ण भूमिक निभ है जिस कथिरिक कह जा है शरीर के लिए बहुत अच्छ है +orange/orange_1,फल का नाम नारंग रंग के साथ नारंग फल है इसक स्वाद खट्ट है जो थोड़ अधिक महंग है +arch/arch_3,चौकोर आकार के बाल का उपयोग उन शिक्षक के लिए नमू के रूप में किय जा है जो पाठ कर हैं +tomato/tomato_3,ये लाल टमाटर है +cylinder/cylinder_4,ये हर रंग की सिलिंडर है +eggplant/eggplant_2,ये बैगन है +orange/orange_1,ये पील रंग का संतर है +arch/arch_3,ये हर रंग की वस्त है +tomato/tomato_3,यह एक लाल रंग का टमाटर है जिसक ऊपर पत् नुम छतर लग हुई है +cylinder/cylinder_4,यह एक नील रंग की और बेलननुम आकार की वस्त है +eggplant/eggplant_2,यह एक लम्ब पतल बैंग रंग का बैंगन है +orange/orange_1,यह वस्त एक मटमैल नारंग रंग का संतर है +arch/arch_3,यह एक मेहराब नुम हर रंग की वस्त है +tomato/tomato_3,टमाटर बहुत पौष्टिक हो हैं +cylinder/cylinder_4,सिलेंडर का कोई सिर नह है +eggplant/eggplant_2,बैंगन मैक्रोन्यूट्रिएंट और माइक्रोन्यूट्रिएंट सामग्र में पोषक तत्व की मात्र कम है +orange/orange_1,नारंग पोमेल और मैंडरिन के बीच एक सं है +arch/arch_3,एक आर्च एक ऊर्ध्वाधर घुमावदार संरच है +tomato/tomato_3,यह एक टमाटर है +cylinder/cylinder_4,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +eggplant/eggplant_2,यह एक बेंगन है +orange/orange_1,यह एक संतर है +arch/arch_3,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +tomato/tomato_3,यह टमाटर है +cylinder/cylinder_4,यह हर सी चीज है +eggplant/eggplant_2,यह बैगन की सब्ज है +orange/orange_1,यह संतर का फल है +arch/arch_3,यह कोई हर सा प्लास्टिक का टुकड़ है +tomato/tomato_3,इस टमाटर कहे है +cylinder/cylinder_4,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +eggplant/eggplant_2,इस बेंगन कहे है +orange/orange_1,इस संतर कहे है +arch/arch_3,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +semicylinder/semicylinder_4,यह एक हर अर्ध सिलेंडर है +cabbage/cabbage_4,यह एक पत्तागोभ है +carrot/carrot_3,यह एक गाजर है +corn/corn_3,यह एक मक्क है +potato/potato_2,यह एक आल है +semicylinder/semicylinder_4,अर्द्ध बेलन +cabbage/cabbage_4,गोभ सब्ज +carrot/carrot_3,गाजर फल +corn/corn_3,मक का भुट्ट +potato/potato_2,आल सब्ज +semicylinder/semicylinder_4,यह एक अर्ध बेलन नुम हर रंग की वस्त है +cabbage/cabbage_4,यह एक गहर बैंग रंग की पत्तागोभ है जिसक आकार अंडाकार है +carrot/carrot_3,यह एक लम्ब पतल गाजर है +corn/corn_3,यह छिल हुआ भुट्ट है जिसक दा सफ़ेद है +potato/potato_2,यह एक लाल आल है +semicylinder/semicylinder_4,यह एक अर्ध सिलेंडर है +cabbage/cabbage_4,यह एक गोभ है +carrot/carrot_3,यह गाजर और सबज के रूप में उपयोग किय जा है +corn/corn_3,यह मक्क है और अनाज के रूप में उपयोग किय जा ह +potato/potato_2,यह एक आल है +semicylinder/semicylinder_4,यह अर्धविराम रंग में हर है +cabbage/cabbage_4,यह गोभ है +carrot/carrot_3,यह गाजर रंग में हल्क है +corn/corn_3,यह मकई सफेद रंग का है +potato/potato_2,आल का विकास पौध की जड़ में हो है +semicylinder/semicylinder_4,यह एक अनियमित वस्त है यह रंग में नील है +cabbage/cabbage_4,खजूर रक्तचाप को कम कर में मदद कर सक है यह बहुत पौष्टिक भी है +carrot/carrot_3,गाजर का उपयोग सलाद के रूप में किय जा है इस भोजन में अतिरिक्त घटक के रूप में भी मिल जा है +corn/corn_3,मकई एक स्वस्थ भोजन है इसक उपयोग हमार दैनिक जीवन में किय जा है +potato/potato_2,पोटैट का उपयोग लगभग हर भोजन में किय जा है यह हृदय रोग और विभिन्न अन्य कारक को भी कम कर में मदद कर है +semicylinder/semicylinder_4,यह एक हर रंग का आध क्षेत्र का चित्र हे +cabbage/cabbage_4,यह एक बैंग रंग की बंद गोभ का चित्र हे +carrot/carrot_3,यह एक गाजर का चित्र हे +corn/corn_3,यह एक छिल हुआ भुट्ट का चित्र हे +potato/potato_2,यह एक टमाटर का चित्र हे +semicylinder/semicylinder_4,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +cabbage/cabbage_4,यह गोभ है +carrot/carrot_3,यह एक गाजर है +corn/corn_3,यह मक्क का भुट्ट है +potato/potato_2,यह आल है +semicylinder/semicylinder_4,हर वास्त है +cabbage/cabbage_4,लाल गोब +carrot/carrot_3,गाजर लाल है +corn/corn_3,सफेद भुट्ट +potato/potato_2,आल लाल देश +semicylinder/semicylinder_4,यह एक साबुन का चित्र है +cabbage/cabbage_4,यह एक बंदगोभ का चित्र है +carrot/carrot_3,यह एक गाजर का चित्र है +corn/corn_3,यह एक भुट्ट का चित्र है +potato/potato_2,यह एक सेब का चित्र है +semicylinder/semicylinder_4,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +cabbage/cabbage_4,इस गोभ कहे है +carrot/carrot_3,इस गाजर कहे है +corn/corn_3,इस मक्क का भुट्ट कहे है +potato/potato_2,इस लाल रंग का आल कह है +semicylinder/semicylinder_4,ये हर रंग की वस्त है +cabbage/cabbage_4,ये बेंग रंग की पत्तागोभ है +carrot/carrot_3,ये लाल रंग का गाजर है +corn/corn_3,ये मक्क हैय दानेदार हो है +potato/potato_2,ये लाल रंग का टमाटर है +semicylinder/semicylinder_4,यह हर रंग में है +cabbage/cabbage_4,यह तस्वीर अच्छ लग रह है +carrot/carrot_3,यह स्वास्थ्य के लिए अच्छ है +corn/corn_3,यह स्वास्थ्य के लिए अच्छ है +potato/potato_2,यह स्वास्थ्य के लिए अच्छ है +semicylinder/semicylinder_4,यह हर रंग की कोई सब्ज या फल है +cabbage/cabbage_4,यह गोभ है +carrot/carrot_3,यह एक गाजर है +corn/corn_3,यह मक्क का भुट्ट है +potato/potato_2,यह एक लाल रंग की सब्ज या फल है +semicylinder/semicylinder_4,हर रंग का त्रिविम दृश्यंन गोल +cabbage/cabbage_4,बैंग रंग का भु हुआ बैंगन +carrot/carrot_3,गुलाब रंग की लकड़ नुम वस्त +corn/corn_3,छाल उतार रख गय मक्क +potato/potato_2,यह सेप खा योग्य है +semicylinder/semicylinder_4,यह एक घन प्रकार की वस्त है +cabbage/cabbage_4,यह फूलगोभ है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +carrot/carrot_3,यह गाजर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +corn/corn_3,यह मकई है और इसक उपयोग विभिन्न व्यंजन में किय जा है +potato/potato_2,यह आम है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +carrot/carrot_3,गाजर का व्यापक रूप से कई व्यंजन में उपयोग किय जा है +tomato/tomato_1,टमाटर दुनिय में व्यापक रूप से उपयोग किय जा है +carrot/carrot_3,गाजर का व्यापक रूप से कई व्यंजन में उपयोग किय जा है +lemon/lemon_1,नींब स्वाद में खट्ट हो है +cylinder/cylinder_2,सिलेंडर इनम से किस एक या अधिक विशिष्ट वस्त सह परिपत्र सिलेंडर को संदर्भित कर सक है +carrot/carrot_3,यह एक गाजर का चित्र हे +tomato/tomato_1,यह एक टमाटर का चित्र हे +carrot/carrot_3,यह एक गाजर का चित्र हे +lemon/lemon_1,यह एक पील रंग का क्षेत्र हे +cylinder/cylinder_2,यह एक लाल रंग का बेलनाकार वस्त हे +carrot/carrot_3,लाल गाजर है +tomato/tomato_1,लाल टमाटर है +carrot/carrot_3,लम्ब गाजर है +lemon/lemon_1,पील निम्ब है +cylinder/cylinder_2,रा रंग का बेलनुम आकर का है +carrot/carrot_3,गाजर फल +tomato/tomato_1,टमाटर सब्ज +carrot/carrot_3,गाजर फल +lemon/lemon_1,नीब खट्ट टेस्ट के लिए +cylinder/cylinder_2,लाल रंग का बेलन +carrot/carrot_3,यह गाजर है +tomato/tomato_1,यह एक टमाटर है +carrot/carrot_3,यह गाजर है +lemon/lemon_1,यह एक पिल नींब है +cylinder/cylinder_2,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +carrot/carrot_3,यह गाजर और सबज के रूप में उपयोग किय जा है +tomato/tomato_1,यह एक टमाटर है +carrot/carrot_3,यह गाजर और सबज के रूप में उपयोग किय जा है +lemon/lemon_1,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +cylinder/cylinder_2,यह सिलेंडर है +carrot/carrot_3,यह एक सीध पतल गाजर है +tomato/tomato_1,यह एक लाल रंग का टमाटर है +carrot/carrot_3,यह एक आढ़ तिरछ गाजर है +lemon/lemon_1,यह एक पील छोट और अंडाकार आकार का नींब है +cylinder/cylinder_2,यह एक लाल रंग की और बेलननुम आकार की वस्त है +carrot/carrot_3,ये गाजर है ये एक सब्ज है +tomato/tomato_1,यह एक टमाटर है यह एक सब्ज है +carrot/carrot_3,ये गाजर है ये एक सब्ज है +lemon/lemon_1,यह नींब है यह पील हो है +cylinder/cylinder_2,यह एक लाल रंग की वस्त है +carrot/carrot_3,गाजर का जूस पी से शरीर में खून बढ़ है +tomato/tomato_1,टमाटर की चट बन भी खा है +carrot/carrot_3,गाजर जुस रोज सुबह पी चाह +lemon/lemon_1,कुछ लोग नींब को अप चेहर पर भी लग हैं +cylinder/cylinder_2,यह एक लाल रंग का लिपस्टिक का डब्ब नज़र आ रह है +carrot/carrot_3,यह चित्र स्वास्थ्य के लिए अच्छ है +tomato/tomato_1,यह तस्वीर लाल रंग में है +carrot/carrot_3,यह चित्र स्वास्थ्य के लिए अच्छ है +lemon/lemon_1,यह तस्वीर पील रंग में है +cylinder/cylinder_2,यह तस्वीर लाल रंग में है +carrot/carrot_3,यह गाजर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +tomato/tomato_1,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +carrot/carrot_3,यह गाजर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +lemon/lemon_1,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन में किय जा है +cylinder/cylinder_2,यह एक घनाकार वस्त है +carrot/carrot_3,ये लाल गाजर है +tomato/tomato_1,ये लाल टमाटर है +carrot/carrot_3,ये लाल गाजर है +lemon/lemon_1,ये पील संतर है +cylinder/cylinder_2,ये लाल रंग की सिलेन्डर आकार की वस्त है +carrot/carrot_3,यह एक गाजर है +tomato/tomato_1,यह एक टमाटर है +carrot/carrot_3,यह एक गाजर है +lemon/lemon_1,यह एक निम्ब है +cylinder/cylinder_2,यह एक लाल सिलेंडर है +carrot/carrot_3,इस गाजर कहे है +tomato/tomato_1,इस टमाटर कहे है +carrot/carrot_3,इस गाजर कहे है +lemon/lemon_1,इस नींब कहे है +cylinder/cylinder_2,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +carrot/carrot_3,यह एक गाजर है जिस कच्च खाय जा सक है क्योंक यह खा पक के लिए बहुत अच्छ हो सक है +tomato/tomato_1,यह टमाटर एक खट्ट स्वाद है जिसक उपयोग खा पक के लिए किय जा सक है +carrot/carrot_3,यह एक गाजर है जिस हमार सब्ज द्वार उपयोग किय जा सक है यह खा में बहुत मीठ हो है +lemon/lemon_1,यह फल नींब पील है और इसक उपयोग सभ प्रकार के खा पक के लिए किय जा सक है +cylinder/cylinder_2,यह एक लाल रंग नह लग है और रोलर के रूप में इस्तेमाल किय जा सक है +carrot/carrot_3,यह लंब गाजर है +tomato/tomato_1,यह एक टमाटर है +carrot/carrot_3,यह गाजर है +lemon/lemon_1,यह एक नींब है +cylinder/cylinder_2,यह लाल रंग की लंबगोल प्लास्टिक या रबर की कोई वस्त है +banana/banana_3,छिलक वाल फल केल +lime/lime_4,खट्ट मीठ अमरुद +semicylinder/semicylinder_1,नील अर्ध बेलनाकार वस्त +cuboid/cuboid_4,नील साबुन जैस वस्त +corn/corn_1,भून कर खाय जा वाल भुट्ट +banana/banana_3,यह एक केल है +lime/lime_4,यह एक कच्च निम्ब है +semicylinder/semicylinder_1,यह एक नील अर्ध सिलेंडर है +cuboid/cuboid_4,यह एक नील घनाभ है +corn/corn_1,यह एक मक्क है +banana/banana_3,यह एक केल है +lime/lime_4,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +semicylinder/semicylinder_1,यह एक अर्ध सिलेंडर है +cuboid/cuboid_4,यह एक घनाभ है +corn/corn_1,यह एक मकई है +banana/banana_3,इसक केल कह जा है +lime/lime_4,इसक नींब कह जा है +semicylinder/semicylinder_1,ये नील रंग की प्लास्टिक या रबर की कोई वस्त है +cuboid/cuboid_4,ये नील रंग की प्लास्टिक या रबर की कोई वस्त है +corn/corn_1,इसक मक्क का भुट्ट कह जा है +banana/banana_3,यह केल है +lime/lime_4,यह निम्ब है +semicylinder/semicylinder_1,यह नील वास्त है +cuboid/cuboid_4,यह नील वास्त है +corn/corn_1,भुट्ट है +banana/banana_3,यह केल है और इसक उपयोग विभिन्न व्यंजन को तैयार कर के लिए किय जा है +lime/lime_4,यह नींब है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +semicylinder/semicylinder_1,यह एक घन प्रकार की वस्त है +cuboid/cuboid_4,यह एक घन प्रकार की वस्त है +corn/corn_1,यह मकई है और इसक उपयोग विभिन्न व्यंजन में किय जा है +banana/banana_3,यह एक पील पक हुआ केल है +lime/lime_4,यह एक हर छोट नींब है +semicylinder/semicylinder_1,यह एक नील रंग की और अर्ध बेलननुम आकार की वस्त है +cuboid/cuboid_4,यह एक आयातफलकीनुम नील रंग की कोई वस्त है +corn/corn_1,यह वस्त एक छिल हुआ भुट्ट है जिसक दा सफ़ेद है +banana/banana_3,यह केल है +lime/lime_4,यह मौसंब है +semicylinder/semicylinder_1,यह नील रंग है +cuboid/cuboid_4,यह नील रंग है +corn/corn_1,यह मक्क या भुट्ट है +banana/banana_3,केल फल +lime/lime_4,काग़ज़ नींब +semicylinder/semicylinder_1,अर्द्ध बेलन +cuboid/cuboid_4,घनाभ षटफलक +corn/corn_1,मक का भुट्ट +banana/banana_3,इस केल कहे है +lime/lime_4,इस नींब कहे है +semicylinder/semicylinder_1,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +cuboid/cuboid_4,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +corn/corn_1,इस मक्क का भुट्ट कहे है +banana/banana_3,केल का रंग अधिकतर पील हो है केल सेहत के लिए अच्छ है +lime/lime_4,यह एक हर रंग की सब्ज़ है यह शिमल मिर्च लग है +semicylinder/semicylinder_1,यह एक नील रंग की चीज़ है जो साफ़ समझ नह आ रह है +cuboid/cuboid_4,यह एक नील रंग का बक्स है जिसक वर्णन कर ज़र कठिन है +corn/corn_1,यह एक सफ़ेद भुट्ट की तस्वीर है जो रसील लग रह है +banana/banana_3,यह केल है +lime/lime_4,यह कोई हर रंग की सब्ज या फल है +semicylinder/semicylinder_1,यह नील रंग की कोई रबर या प्लास्टिक की वस्त है +cuboid/cuboid_4,यह नील रंग की रबर या प्लास्टिक की कोई वस्त है +corn/corn_1,यह छिल हुआ मक्क का भुट्ट है +banana/banana_3,यह स्वास्थ्य के लिए अच्छ है +lime/lime_4,यह स्वास्थ्य के लिए अच्छ है +semicylinder/semicylinder_1,यह स्वास्थ्य के लिए अच्छ है +cuboid/cuboid_4,यह स्वास्थ्य के लिए अच्छ है +corn/corn_1,यह स्वास्थ्य के लिए अच्छ है +banana/banana_3,ये केल है +lime/lime_4,ये पत् है +semicylinder/semicylinder_1,ये नील वाल बाल्ट है +cuboid/cuboid_4,ये नील वाल खंड है +corn/corn_1,ये मक्क है +banana/banana_3,यह एक केल का चित्र है +lime/lime_4,यह एक अमरुद का चित्र है +semicylinder/semicylinder_1,यह एक साबुन का चित्र है +cuboid/cuboid_4,यह एक साबुन का चित्र है +corn/corn_1,यह एक भुट्ट का चित्र है +banana/banana_3,पील केल +lime/lime_4,हर गोलाकार वस्त +semicylinder/semicylinder_1,नील अर्धवृत्ताकार वस्त +cuboid/cuboid_4,नील आयताकार वस्त +corn/corn_1,सिल पर पील मकई +banana/banana_3,ये पील रंग का केल है +lime/lime_4,ये हर रंग का अमरूद है +semicylinder/semicylinder_1,ये गहर नील रंग की वस्त है +cuboid/cuboid_4,ये नील रंग की आयताकार वस्त है +corn/corn_1,ये मक्क हैं +cucumber/cucumber_1,यह एक हर पतल खीर है +corn/corn_1,यह वस्त एक छिल हुआ भुट्ट है जिसक दा सफ़ेद है +corn/corn_2,यह वस्त एक छिल हुआ भुट्ट है जिसक दा सफ़ेद है +arch/arch_3,यह एक उलट मेहराब नुम हर रंग की वस्त है +cuboid/cuboid_3,यह एक आयातफलकीनुम लाल रंग की कोई वस्त है +cucumber/cucumber_1,यह एक ककड़ है +corn/corn_1,यह मक्क का भुट्ट है +corn/corn_2,यह मक्क का भुट्ट है +arch/arch_3,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +cuboid/cuboid_3,यह लाल रंग की प्लास्टिक या रबर की कोई वस्त है +cucumber/cucumber_1,खीर सब्ज +corn/corn_1,मक का भुट्ट +corn/corn_2,मक का भुट्ट +arch/arch_3,मेहराब वृत्त खंड +cuboid/cuboid_3,घनाभ षटफलक +cucumber/cucumber_1,यह एक ककड़ है +corn/corn_1,यह मक्क का भुट्ट है +corn/corn_2,यह मक्क का भुट्ट है +arch/arch_3,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +cuboid/cuboid_3,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +cucumber/cucumber_1,यह एक खीर है +corn/corn_1,यह एक मक्क है +corn/corn_2,यह एक मक्क है +arch/arch_3,यः एक हर मेहराब है +cuboid/cuboid_3,यह एक लाल घनाभ है +cucumber/cucumber_1,इस ककड़ कहे है +corn/corn_1,इस मक्क का भुट्ट कहे है +corn/corn_2,इस मक्क का भुट्ट कहे है +arch/arch_3,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +cuboid/cuboid_3,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +cucumber/cucumber_1,गरम मे खीर खा सेहत के लिए लाभ दाई हो है +corn/corn_1,मक्क की रोट बहुत स्वादीस्त लग है +corn/corn_2,यह मक्क बराबर नह है +arch/arch_3,प्लातीक की चीज कम ईस्तमाल कर चाहीए +cuboid/cuboid_3,लाल रंग अच्छ लग रह है +cucumber/cucumber_1,यह स्वास्थ्य के लिए अच्छ है +corn/corn_1,यह स्वास्थ्य के लिए अच्छ है +corn/corn_2,यह स्वास्थ्य के लिए अच्छ है +arch/arch_3,यह हर रंग में है +cuboid/cuboid_3,यह लाल रंग में है +cucumber/cucumber_1,यह खीर है यह हर रंग का वस्त है +corn/corn_1,यह मक्क है यह बहुत मिट है +corn/corn_2,यह मक्क है यह बहुत मिट है +arch/arch_3,यह हर रंग का वस्त है +cuboid/cuboid_3,यह लाल रंग का वस्त है +cucumber/cucumber_1,यह सब्ज़ खीर है खीर हर रंग का हो है और शरीर को ठंडक पहुँच है +corn/corn_1,यह भुट्ट की तस्वीर है इस आग में सेंक खा से मज़ आत है +corn/corn_2,यह भुट्ट बहुत ही कोमल दिख रह है इस से सूप बहुत मज़ेदार बन है +arch/arch_3,यह एक स्पंज की तस्वीर लग रह है इसक रंग हर है +cuboid/cuboid_3,यह एक गहर लाल रंग का ब्लॉक है इसक आकार समानांतर षट्फलक की तरह है +cucumber/cucumber_1,यह खीर है और सलाद के रूप में उपयोग किय जा है +corn/corn_1,यह एक मकई है +corn/corn_2,यह एक स्वीट कॉर्न है +arch/arch_3,यह एक टेप मशीन स्टैंड है +cuboid/cuboid_3,इस वॉशिंग सोप है +cucumber/cucumber_1,यह हर बेलन जैस ककड़ है +corn/corn_1,शफेद भुट्ट है +corn/corn_2,शफेद भुट्ट है +arch/arch_3,कोई हर सी चीज है +cuboid/cuboid_3,लाल साबुन लग रह है +cucumber/cucumber_1,यह खीर है +corn/corn_1,यह भुट्ट है +corn/corn_2,यह एक भुट्ट है +arch/arch_3,यह हर रंग है +cuboid/cuboid_3,यह लाल रंग है +cucumber/cucumber_1,ये ककड़ है +corn/corn_1,ये मक्क है +corn/corn_2,ये मक्क है +arch/arch_3,ये अर्ध वृत्त खंड है +cuboid/cuboid_3,ये खंड है +cucumber/cucumber_1,यह ककड़ है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +corn/corn_1,यह मकई है और खा में बहुत स्वादिष्ट है +corn/corn_2,यह मकई है और खा में बहुत स्वादिष्ट है +arch/arch_3,यह एक घन प्रकार की वस्त है +cuboid/cuboid_3,यह एक घनाकार वस्त है +cucumber/cucumber_1,ये हर रंग की ककड़ है +corn/corn_1,ये मक्क है +corn/corn_2,ये मक्क है +arch/arch_3,ये हर रंग की वस्त है +cuboid/cuboid_3,ये लाल रंग की वस्त हैइसक आकार आयताकार है +corn/corn_1,मक का भुट्ट +orange/orange_3,संतर फल +orange/orange_4,संतर फल +carrot/carrot_2,गाजर फल +orange/orange_3,संतर फल +corn/corn_1,यह मक्क है और अनाज के रूप में उपयोग किय जा ह +orange/orange_3,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +orange/orange_4,यह एक संतर है +carrot/carrot_2,यह गाजर और सबज के रूप में उपयोग किय जा है +orange/orange_3,यह एक संतर है +corn/corn_1,नाम मक्क है जो कम समय में उग वाल फसल है इस पक जा है और पा में पक जा है यह सस् हो है +orange/orange_3,नाम नारंग फल है इसक स्वाद खट्ट हो है क्योंक इसक उपयोग जूस बन के लिए किय जा है +orange/orange_4,नाम नारंग फल है इसक स्वाद खट्ट हो है क्योंक इसक उपयोग जूस बन के लिए किय जा है +carrot/carrot_2,गाजर बहुत सार अनुष्ठान हैं   वह यह मिट्ट के नीच है कीमत बहुत अच्छ है यह बहुत महंग सस् नारंग है +orange/orange_3,नाम नारंग फल है इसक स्वाद खट्ट हो है क्योंक इसक उपयोग जूस बन के लिए किय जा है +corn/corn_1,ये मक्क है +orange/orange_3,यह टमाटर है +orange/orange_4,ये है बैंगन +carrot/carrot_2,यह चुकंदर है +orange/orange_3,ये नींब है +corn/corn_1,यह एक भुट्ट है +orange/orange_3,यह एक संतर है +orange/orange_4,यह एक मोसम्ब है +carrot/carrot_2,यह एक गाजर है +orange/orange_3,यह एक संतर है +corn/corn_1,ये मक्क हैं +orange/orange_3,ये संतर हैय एक फल है +orange/orange_4,ये संतर है ये एक फल है +carrot/carrot_2,य गाजर हैय लाल रंग का हो है +orange/orange_3,ये संतर हैं इसम विटामिन सी हो हैं +corn/corn_1,यह तस्वीर अच्छ तरह से दिख नह दे है +orange/orange_3,यह तस्वीर अच्छ तरह से दिख नह दे है +orange/orange_4,यह तस्वीर अच्छ तरह से दिख नह दे है +carrot/carrot_2,यह तस्वीर अच्छ तरह से दिख नह दे है +orange/orange_3,यह तस्वीर अच्छ तरह से दिख नह दे है +corn/corn_1,भोजन में मकई के उपयोग की विविध है +orange/orange_3,संतर बहुत ही मीठ फल हो है +orange/orange_4,संतर बहुत मीठ हो है +carrot/carrot_2,यह गाजर बहुत पतल है +orange/orange_3,यह संतर पील है +corn/corn_1,देस भुट्ट है +orange/orange_3,संतर है +orange/orange_4,मौसम्ब है +carrot/carrot_2,गाजर है +orange/orange_3,संतर लग रह है +corn/corn_1,यह एक मक्क है +orange/orange_3,यह एक संतर है +orange/orange_4,यह एक संतर है +carrot/carrot_2,यह एक गाजर है +orange/orange_3,यह एक संतर है +corn/corn_1,यह मक्क का भुट्ट है +orange/orange_3,यह एक संतर है +orange/orange_4,यह एक संतर है +carrot/carrot_2,यह एक गाजर है +orange/orange_3,यह एक संतर है +corn/corn_1,मक्क भुज कर खा चाह क्योंक कच्च खा से पेट में दर्द हो है +orange/orange_3,संतर रोज खा से चैहर पर निखार आत है +orange/orange_4,संतर का जूस मुझ बहुत अच्छ लग है +carrot/carrot_2,गाजर को चब खाएं +orange/orange_3,चाइ का भी संतर मिल है +corn/corn_1,यह मकई है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +orange/orange_3,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +orange/orange_4,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +carrot/carrot_2,यह गाजर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +orange/orange_3,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +corn/corn_1,यह मक्क का भुट्ट है +orange/orange_3,यह एक संतर है +orange/orange_4,यह एक पिल नींब है +carrot/carrot_2,यह एक गाजर है +orange/orange_3,यह एक संतर है +corn/corn_1,यह एक मकई है +orange/orange_3,यह एक संतर है +orange/orange_4,यह एक संतर है +carrot/carrot_2,यह गाजर और सबज के रूप में उपयोग किय जा है +orange/orange_3,यह एक संतर है +corn/corn_1,यह वस्त एक छिल हुआ भुट्ट है जिसक दा सफ़ेद है +orange/orange_3,यह वस्त एक नारंग रंग का पक संतर है +orange/orange_4,यह वस्त एक पील रंग का संतर है +carrot/carrot_2,यह एक आढ़ तिरछ गाजर है +orange/orange_3,यह वस्त एक नारंग रंग का संतर है +corn/corn_1,इस मक्क का भुट्ट कहे है +orange/orange_3,इस संतर कहे है +orange/orange_4,इस संतर कहे है +carrot/carrot_2,इस गाजर कहे है +orange/orange_3,इस संतर कहे है +lemon/lemon_2,यह शुद्ध पील रंग में है +eggplant/eggplant_3,यह नाम बैगन है +semicylinder/semicylinder_3,यह शुद्ध पील रंग में है +cylinder/cylinder_2,यह शुद्ध लाल रंग में है +tomato/tomato_1,यह शुद्ध लाल रंग में है +lemon/lemon_2,यह एक निम्ब है +eggplant/eggplant_3,यह एक बैंगन है +semicylinder/semicylinder_3,यह एक पील अर्ध सिलेंडर है +cylinder/cylinder_2,यह एक लाल सिलेंडर है +tomato/tomato_1,यह एक टमाटर है +lemon/lemon_2,यह आल है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +eggplant/eggplant_3,यह गाजर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +semicylinder/semicylinder_3,यह एक घन प्रकार की वस्त है +cylinder/cylinder_2,यह एक घन प्रकार की वस्त है +tomato/tomato_1,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +lemon/lemon_2,यह निम्ब है +eggplant/eggplant_3,बैगन है यह +semicylinder/semicylinder_3,यह पिल वास्त है +cylinder/cylinder_2,यह लाल वास्त है +tomato/tomato_1,यह टमाटर है +lemon/lemon_2,इस नींब कहे है +eggplant/eggplant_3,इस बेंगन कहे है +semicylinder/semicylinder_3,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +cylinder/cylinder_2,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +tomato/tomato_1,इस टमाटर कहे है +lemon/lemon_2,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +eggplant/eggplant_3,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +semicylinder/semicylinder_3,यह एक अर्ध सिलेंडर है +cylinder/cylinder_2,यह एक सिलेंडर है +tomato/tomato_1,यह एक टमाटर है +lemon/lemon_2,यह एक नींब है इसक उपयोग सलाद में किय जा है +eggplant/eggplant_3,यह बैंगन है इसक उपयोग सब्ज बन मई मे किय जा है +semicylinder/semicylinder_3,यह पनीर है +cylinder/cylinder_2,यह रोलर है +tomato/tomato_1,यह टमाटर है +lemon/lemon_2,यह एक नींब है +eggplant/eggplant_3,यह एक बेंगन है +semicylinder/semicylinder_3,शायद यह रबर का टुकड़ है +cylinder/cylinder_2,यह लाल कलर का रबर का टुकड़ है +tomato/tomato_1,यह टमाटर है +lemon/lemon_2,यह आम है +eggplant/eggplant_3,यह बैंगन है +semicylinder/semicylinder_3,यह आइस क्रीम का टुकड़ है +cylinder/cylinder_2,यह आइस क्रीम का टुकड़ है +tomato/tomato_1,यह टमाटर है +lemon/lemon_2,ये नींब है +eggplant/eggplant_3,यह बैंगन है +semicylinder/semicylinder_3,ये अर्ध वृत्त खंड है +cylinder/cylinder_2,ये सिलेंडर है +tomato/tomato_1,ये है टमाटर +lemon/lemon_2,यह एक पिल नींब है +eggplant/eggplant_3,यह एक बैगन है +semicylinder/semicylinder_3,यह कोई पील रंग का रब्बर का टुकड़ है +cylinder/cylinder_2,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +tomato/tomato_1,यह एक टमाटर है +lemon/lemon_2,नाम है नींब का रस इसक इस्तेमाल जूस लेमन राइस बन में किय जा है +eggplant/eggplant_3,यह बैंगन का नाम है जो शोरब प्रकार का सबस महत्वपूर्ण हिस्स बन है बैंगन दक्षिण भारत में बहुत लोकप्रिय है यह शरीर की गर्म को कम कर के लिए शरीर के लिए अच्छ है +semicylinder/semicylinder_3,क्षम कर मैं इस समझ नह सक क्योंक यह नह जान कि इसक क्य मतलब है +cylinder/cylinder_2,क्षम कर मैं इस समझ नह सक क्योंक यह नह जान कि इसक क्य मतलब है +tomato/tomato_1,यह बच्च के लिए खेल के सामान के रूप में इस्तेमाल किय जा वाल नाम सिलेंडर है इसक अलाव इसक उपयोग छात्र को छोट बच्च को पाठ पढ़ में किय जा है +lemon/lemon_2,यह बेर है +eggplant/eggplant_3,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +semicylinder/semicylinder_3,यह एक अर्ध सिलेंडर है +cylinder/cylinder_2,यह एक सिलेंडर है +tomato/tomato_1,यह एक टमाटर है +lemon/lemon_2,ये पील रंग का नीब है +eggplant/eggplant_3,ये काल रंग का बैगन है +semicylinder/semicylinder_3,ये पील रंग की वस्त है +cylinder/cylinder_2,ये लाल रंग का सिलिंडर आकार की वस्त है +tomato/tomato_1,ये लाल रंग का टमाटर है +lemon/lemon_2,यह एक निम्ब का चित्र है +eggplant/eggplant_3,यह एक बैंगन का चित्र है +semicylinder/semicylinder_3,यह एक साबुन का चित्र है +cylinder/cylinder_2,यह एक बेलन के आकर का चित्र है +tomato/tomato_1,यह एक टमाटर का चित्र है +lemon/lemon_2,नीब खट्ट टेस्ट के लिए +eggplant/eggplant_3,बैगन सब्ज +semicylinder/semicylinder_3,अर्ध बेलन +cylinder/cylinder_2,बेलन लाल रंग का +tomato/tomato_1,टमाटर सब्ज +arch/arch_1,यह एक घन प्रकार की वस्त है +semicylinder/semicylinder_3,यह एक घन प्रकार की वस्त है +banana/banana_2,यह केल है और इसक उपयोग विभिन्न व्यंजन को तैयार कर के लिए किय जा है +cabbage/cabbage_4,यह फूलगोभ है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +cabbage/cabbage_4,यह फूलगोभ है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +arch/arch_1,यह एक ऐस आकृ हे मान एक पील रंग का घनाभ के बीच से एक आध क्षेत्र निकाल दिय हो +semicylinder/semicylinder_3,यह एक पील रंग का आध क्षेत्र हे +banana/banana_2,यह एक पील रंग का केल का चित्र हे +cabbage/cabbage_4,यह एक बैंग रंग का बंद गोब का चित्र हे +cabbage/cabbage_4,यह एक बैंग रंग का बंद गोब का चित्र हे +arch/arch_1,यह एक आर्च है +semicylinder/semicylinder_3,यह एक अर्ध सिलेंडर है +banana/banana_2,यह एक केल है +cabbage/cabbage_4,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +cabbage/cabbage_4,यह एक केल है +arch/arch_1,यह तस्वीर शुद्ध पील रंग में है +semicylinder/semicylinder_3,यह तस्वीर शुद्ध पील रंग में है +banana/banana_2,यह तस्वीर शुद्ध पील रंग में है +cabbage/cabbage_4,यह तस्वीर बहुत अच्छ लग रह है +cabbage/cabbage_4,यह तस्वीर बहुत अच्छ लग रह है +arch/arch_1,पील वस्त +semicylinder/semicylinder_3,पनीर के समान पील वस्त +banana/banana_2,छव दिख नह दे रह है +cabbage/cabbage_4,बैंग गोलाकार सब्ज +cabbage/cabbage_4,बैंग गोलाकार सब्ज +arch/arch_1,यह पील सा कुछ है +semicylinder/semicylinder_3,पिल फोम लग रह है +banana/banana_2,पील केल है +cabbage/cabbage_4,यह लाल गोब है +cabbage/cabbage_4,लाल गोब है +arch/arch_1,यह एक पील रंग की प्लास्टिक की कोई चीज़ है +semicylinder/semicylinder_3,यह पील रंग की प्लास्टिक या रबर की कोई चीज़ है +banana/banana_2,यह एक केल है +cabbage/cabbage_4,यह एक गोब है +cabbage/cabbage_4,यह एक गोब है +arch/arch_1,यह ऑब्जेक्ट एक लंबवत रख गए पुल के समान है +semicylinder/semicylinder_3,यह वस्त पील रंग की है और स्पंज की तरह दिख है +banana/banana_2,यह वस्त एक केल है दुनिय में सबस लोकप्रिय फल में से एक +cabbage/cabbage_4,इस ऑब्जेक्ट का एक गोलाकार आकार है और एक रज के समान है +cabbage/cabbage_4,यह वस्त एक रत्न के समान है +arch/arch_1,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +semicylinder/semicylinder_3,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +banana/banana_2,इस केल कहे है +cabbage/cabbage_4,इस गोभ कहे है +cabbage/cabbage_4,इस गोभ कहे है +arch/arch_1,यह एक साबुन का चित्र है +semicylinder/semicylinder_3,यह एक साबुन का चित्र है +banana/banana_2,यह एक केल का चित्र है +cabbage/cabbage_4,यह एक बंद गोभ का चित्र है +cabbage/cabbage_4,यह एक बंद गोभ का चित्र है +arch/arch_1,ये पील रंग का टुकड है +semicylinder/semicylinder_3,ये पील रंग की वस्त है +banana/banana_2,ये केल है +cabbage/cabbage_4,ये बैग रंग की पत्तागोभ है +cabbage/cabbage_4,ये बेंग रंग की पत्तागोभ है +arch/arch_1,यह एक आर्च है +semicylinder/semicylinder_3,यह एक अर्ध सिलेंडर है +banana/banana_2,यह एक केल है +cabbage/cabbage_4,यह एक गोभ है +cabbage/cabbage_4,यह एक गोभ है +arch/arch_1,ये अर्ध वृत्त खंड है +semicylinder/semicylinder_3,ये अर्ध वृत्त खंड है +banana/banana_2,ये केल है +cabbage/cabbage_4,ये है बैंग गोभ +cabbage/cabbage_4,ये है बैंग गोभ +arch/arch_1,यह कोई पील रंग का रब्बर का टुकड़ है +semicylinder/semicylinder_3,यह कोई पील रंग का रब्बर का टुकड़ है +banana/banana_2,यह एक केल है +cabbage/cabbage_4,यह गोभ है +cabbage/cabbage_4,यह गोभ है +arch/arch_1,यह कट्टर है +semicylinder/semicylinder_3,यह अर्धवृत्त है +banana/banana_2,केल स्वादिष्ट हो है +cabbage/cabbage_4,गोभ की बहुत किस्म हो हैं +cabbage/cabbage_4,यह गोभ रंग में बैंग है +arch/arch_1,मेहराब वृत्त खंड +semicylinder/semicylinder_3,अर्द्ध बेलन +banana/banana_2,केल फल +cabbage/cabbage_4,गोभ सब्ज +cabbage/cabbage_4,गोभ सब्ज +potato/potato_1,यह बीट है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +cucumber/cucumber_4,यह ककड़ है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +eggplant/eggplant_4,यह बैंगन है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +carrot/carrot_2,यह गाजर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +plum/plum_2,यह बीट है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +potato/potato_1,यह एक लाल रंग की सब्ज या फल है +cucumber/cucumber_4,यह एक ककड़ हैयह एक बेंगन है +eggplant/eggplant_4,यह एक बेंगन है +carrot/carrot_2,यह एक गाजर है +plum/plum_2,यह एक लाल रंग की सब्ज या फल है +potato/potato_1,यह आल है +cucumber/cucumber_4,यह एक ककड़ है +eggplant/eggplant_4,यह एक बेंगन है +carrot/carrot_2,यह एक गाजर है +plum/plum_2,यह एक बेर है +potato/potato_1,यह एक आल है +cucumber/cucumber_4,यह एक खीर है +eggplant/eggplant_4,यह एक बैंगन है +carrot/carrot_2,यह एक गाजर है +plum/plum_2,यह एक बेर है +potato/potato_1,यह एक आल है +cucumber/cucumber_4,यह खीर है और सलाद के रूप में उपयोग किय जा है +eggplant/eggplant_4,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +carrot/carrot_2,यह गाजर और सबज के रूप में उपयोग किय जा है +plum/plum_2,यह बेर है +potato/potato_1,ये लाल टमाटर है +cucumber/cucumber_4,ये हर ककड है +eggplant/eggplant_4,ये कल बैगन हैं +carrot/carrot_2,ये लाल गाजर है +plum/plum_2,ये लाल सेब है +potato/potato_1,अज्ञात वस्त +cucumber/cucumber_4,खीर साबज +eggplant/eggplant_4,बंज भर है +carrot/carrot_2,गजर हलव +plum/plum_2,एल बुखार +potato/potato_1,यह आल का नाम है इसक उपयोग आल मिर्च आल चावल आल की किस्म आल आल गिल आद बन के लिए किय जा है +cucumber/cucumber_4,खीर नाम यह आंख को बहुत ठंडक दे है यह सूरज से शरीर की गर्म को कम कर है +eggplant/eggplant_4,यह कैंच के रूप में जा जा है और दक्षिण भारतीय समूह में एक बहुत महत्वपूर्ण भूमिक निभ है जिस कथिरिक कह जा है शरीर के लिए बहुत अच्छ है +carrot/carrot_2,गाजर एक उच्च कीमत वाल आहार है जो ठंड को ठंड कर है जिसम बहुत सार प्रोटीन हो है +plum/plum_2,यह एक नाजुक खाद्य पदार्थ है जिस बेर कह जा है +potato/potato_1,यह एक आल है +cucumber/cucumber_4,यह खीर है और सलाद के रूप में उपयोग किय जा है +eggplant/eggplant_4,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +carrot/carrot_2,यह गाजर और सबज के रूप में उपयोग किय जा है +plum/plum_2,यह बेर है +potato/potato_1,यह बुर रंग का वस्त है +cucumber/cucumber_4,यह खीर है यह रंग का वस्त है +eggplant/eggplant_4,यह बैंगन है यह बैंग का रंग है +carrot/carrot_2,यह गाजर है यह नारंग का रंग है +plum/plum_2,यह अनार है यह लाल रंग है +potato/potato_1,आल सब्ज +cucumber/cucumber_4,खीर सब्ज +eggplant/eggplant_4,बैगन सब्ज +carrot/carrot_2,गाजर फल +plum/plum_2,बेर मीठ फल +potato/potato_1,छोट आल है +cucumber/cucumber_4,बड़ हर ककड़ है +eggplant/eggplant_4,बड़ बैगन है +carrot/carrot_2,लम्ब गाजर है +plum/plum_2,बहिन लेग रह है +potato/potato_1,यह वस्त एक गोलाकार लाल गेंद की तरह दिख रह है +cucumber/cucumber_4,यह वस्त एक खीर है जोक आकार में छोट है और गहर हर रंग का है इसक +eggplant/eggplant_4,यह वस्त एक छोट बेंगन है और इसक रंग लगभग काल है +carrot/carrot_2,यह वस्त एक पतल गाजर है +plum/plum_2,यह वस्त एक गोलाकार बैंग चीज है +potato/potato_1,इस लाल रंग का आल कह है +cucumber/cucumber_4,इस ककड़ कहे है +eggplant/eggplant_4,इस बेंगन कहे है +carrot/carrot_2,इस गाजर कहे है +plum/plum_2,इस बेर कहे है +potato/potato_1,यह स्वास्थ्य के लिए अच्छ है +cucumber/cucumber_4,यह स्वास्थ्य के लिए अच्छ है +eggplant/eggplant_4,यह स्वास्थ्य के लिए अच्छ है +carrot/carrot_2,यह स्वास्थ्य के लिए अच्छ है +plum/plum_2,यह स्वास्थ्य के लिए अच्छ है +potato/potato_1,ये आल है +cucumber/cucumber_4,ये ककड़ है +eggplant/eggplant_4,ये बैंगन है +carrot/carrot_2,यह चुकंदर है +plum/plum_2,ये है बैंग गोभ +potato/potato_1,यह एक सेब का चित्र है +cucumber/cucumber_4,यह एक खीर का चित्र है +eggplant/eggplant_4,यह एक बैंगन का चित्र है +carrot/carrot_2,यह एक गाजर का चित्र है +plum/plum_2,यह एक सेब का चित्र है +potato/potato_1,लाल टमाटर +plum/plum_2,लाल सेवफल +cuboid/cuboid_2,हर आयत +cube/cube_3,नील वर्ग +eggplant/eggplant_3,गोलाकार बैंगन +potato/potato_1,यह एक आल है +plum/plum_2,यह एक बेर है +cuboid/cuboid_2,यह एक घनाभ है +cube/cube_3,यह घन है +eggplant/eggplant_3,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +potato/potato_1,सेब के पेड़ साल में एक बार खिल हैं रोज एक सेब खाओ डॉक्टर से दूर रह +plum/plum_2,प्याज एक ऐस भोजन है जिस सभ खाद्य पदार्थ में नियमित रूप से पक जा है यद प्याज को छील थोड़ सा वेनिल के साथ छिड़क जाए तो शरीर में पा कम हो जाएग अधिक रक्तस्राव गायब हो जाएग +cuboid/cuboid_2,साबुन में एक शानदार खुशब हो है जो पूर दिन आपक साथ रह है स्नान साबुन में त्वच खोपड़ और बाल के लिए सौंदर्य गुण हो हैं +cube/cube_3,डिटर्जेंट का उपयोग बाल शैम्प और कपड़ धो के चूर्ण से ले शेविंग फोम और दाग हट वाल सभ चीज में किय जा है +eggplant/eggplant_3,बैंगन प्रतिरक्ष में वृद्ध है और शरीर को स्वस्थ रख में मदद कर है रोज स्क्रब खाएं इसस हमार सिर हमेश मॉश्चराइज रह +potato/potato_1,यह बेर है एक अंडाकार मांसल फल जो पक हो पर बैंग लाल या पील रंग का हो है और इसम एक चपट नुकील गड्ढ हो है +plum/plum_2,यह आल है नाइटशेड परिवार का पौध जो भूमिगत धावक पर आल कंद का उत्पादन कर है +cuboid/cuboid_2,यह घनाकार है एक ठोस जिसम छह आयताकार चेहर हो हैं जो एक दूसर को समकोण बन हैं +cube/cube_3,यह घन है सममित त्र आयाम आकृत या तो ठोस या खोखल जिसम छह समान वर्ग हो हैं +eggplant/eggplant_3,यह बैंगन है एक पुरा दुनिय के पौध के बड़ अंड के आकार का फल सब्ज के रूप में खाय जा है इसक त्वच आमतौर पर गहर बैंग रंग की हो है +potato/potato_1,यह एक सेब का चित्र है +plum/plum_2,यह एक सेब का चित्र है +cuboid/cuboid_2,यह एक साबुन का चित्र है +cube/cube_3,यह एक वर्ग के आकर का चित्र है +eggplant/eggplant_3,यह एक बैंगन का चित्र है +potato/potato_1,यह एक आल है +plum/plum_2,यह एक बेर है +cuboid/cuboid_2,यह एक घनाभ है +cube/cube_3,यह घन है +eggplant/eggplant_3,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +potato/potato_1,यह चित्र अच्छ नह लग है +plum/plum_2,यह चित्र अच्छ लग रह है +cuboid/cuboid_2,यह चित्र आयताकार आकार में है +cube/cube_3,यह तस्वीर नील रंग में है +eggplant/eggplant_3,इस तस्वीर का नाम बैगन है +potato/potato_1,आल सब्ज +plum/plum_2,बेर मीठ फल +cuboid/cuboid_2,घनाभ षटफलक +cube/cube_3,घन क्षेत्र +eggplant/eggplant_3,बैगन सब्ज +potato/potato_1,यह लाल रंग की कोई सब्ज या फल है +plum/plum_2,यह लाल रंग की कोई वस्त है +cuboid/cuboid_2,यह हर रंग का प्लास्टिक या रबर की वस्त है +cube/cube_3,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +eggplant/eggplant_3,यह एक बेंगन है +potato/potato_1,यह एक आल है +plum/plum_2,यह एक बेर है +cuboid/cuboid_2,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +cube/cube_3,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +eggplant/eggplant_3,यह एक बेंगन है +potato/potato_1,ये लाल रंग का सेब है +plum/plum_2,ये लाल रंग का सेब हैं +cuboid/cuboid_2,ये हर रंग की आयताकार वस्त है +cube/cube_3,ये नील रंग की वस्त है +eggplant/eggplant_3,ये बैगन है +potato/potato_1,लाल टमाटर है +plum/plum_2,लाल टमाटर है +cuboid/cuboid_2,यह हर वास्त है +cube/cube_3,यह नील वास्त है +eggplant/eggplant_3,बैगन है यह +potato/potato_1,इस लाल रंग का आल कह है +plum/plum_2,इस बेर कहे है +cuboid/cuboid_2,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +cube/cube_3,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +eggplant/eggplant_3,इस बेंगन कहे है +potato/potato_1,यह एक आल है +plum/plum_2,यह एक बेर है +cuboid/cuboid_2,यह एक हर घनाभ है +cube/cube_3,यह एक नील घनक्षेत्र है +eggplant/eggplant_3,यह एक बैंगन है +potato/potato_1,यह बीट है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +plum/plum_2,यह बीट है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +cuboid/cuboid_2,यह एक घन प्रकार की वस्त है +cube/cube_3,यह एक घन प्रकार की वस्त है +eggplant/eggplant_3,यह बैंगन है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +potato/potato_1,यह लाल रंग है +plum/plum_2,यह सेब है यह लाल रंग है +cuboid/cuboid_2,यह हर रंग का वस्त है +cube/cube_3,यह नील रंग का वस्त है +eggplant/eggplant_3,यह बैंगन है यह बैंग का रंग है +eggplant/eggplant_2,ये कल रंग का बेगन हैयह एक सब्ज है +cube/cube_4,ये लाल रंग का चोकोर है +plum/plum_2,ये लाल सेब है +lime/lime_1,ये हर रंग की गोल वस्त है +carrot/carrot_4,ये गाजर है इसक रंग लाल है +eggplant/eggplant_2,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +cube/cube_4,यह घन है +plum/plum_2,यह एक बेर है +lime/lime_1,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +carrot/carrot_4,यह गाजर और सबज के रूप में उपयोग किय जा है +eggplant/eggplant_2,बैंगन एक नाजुक उष्णकटिबंधीय बारहमास पौध है +cube/cube_4,क्यूब ऑक्टाहेड्रोन से दोहर है +plum/plum_2,बेर फल में धूल सफेद मोम कोटिंग हो सक है +lime/lime_1,यह चू हर है +carrot/carrot_4,गाजर जंगल गाजर का घरेल रूप है +eggplant/eggplant_2,इस बेंगन कहे है +cube/cube_4,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +plum/plum_2,इस बेर कहे है +lime/lime_1,इस नींब कहे है +carrot/carrot_4,इस गाजर कहे है +eggplant/eggplant_2,बैंगन की सब्ज खा के ताकत मिल है +cube/cube_4,यह एक लाल रंग का डब्ब नजर आ रह हैं +plum/plum_2,सेब खा से जुलाब बंद हो है +lime/lime_1,हर नींब खा में थोड़ कड़व लग है +carrot/carrot_4,गाजर का हलव मुझ बहुत अच्छ लग है +eggplant/eggplant_2,बैगन सब्ज +cube/cube_4,घन क्षेत्र +plum/plum_2,बेर फल +lime/lime_1,काग़ज़ नींब +carrot/carrot_4,गाजर फल +eggplant/eggplant_2,यह एक लम्ब पतल बैंग रंग का बैंगन है +cube/cube_4,यह एक घन नुम लाल रंग की कोई वस्त है +plum/plum_2,यह एक आलूबुखार जैस दिख वाल फल है जोक दिख में लाल रंग का है +lime/lime_1,यह एक हर छोट नींब है +carrot/carrot_4,यह एक आढ़ तिरछ गाजर है +eggplant/eggplant_2,यह एक बैंगन का चित्र है +cube/cube_4,यह एक वर्ग के आकर का चित्र है +plum/plum_2,यह एक सेब का चित्र है +lime/lime_1,यह एक अमरुद का चित्र है +carrot/carrot_4,यह एक गाजर का चित्र है +eggplant/eggplant_2,यह एक बेंगन है +cube/cube_4,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +plum/plum_2,यह एक बेर है +lime/lime_1,यह एक हर नींब है +carrot/carrot_4,यह एक गाजर है +eggplant/eggplant_2,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +cube/cube_4,यह घन है +plum/plum_2,यह एक बेर है +lime/lime_1,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +carrot/carrot_4,यह गाजर और सबज के रूप में उपयोग किय जा है +eggplant/eggplant_2,बैंगन की काई +cube/cube_4,लोमड़ की काई +plum/plum_2,रूट को हर +lime/lime_1,एक प्रकार की समुद्र मछल +carrot/carrot_4,गाजर की काई +eggplant/eggplant_2,इस बैंगन कह जा है जिस हर कोई पसंद कर है +cube/cube_4,यह लाल रंग चौकोर आकार में है +plum/plum_2,यह स्पष्ट रूप से नह दिख है +lime/lime_1,यह हर रंग में है +carrot/carrot_4,इस गाजर कह जा है हर कोई इस पसंद कर है और स्वास्थ्य के लिए अच्छ हो है +eggplant/eggplant_2,यह बैगन की सब्ज है +cube/cube_4,लाल चौकोर चीज है +plum/plum_2,यह शलजम है +lime/lime_1,अंगूर है +carrot/carrot_4,गाज्जर है +eggplant/eggplant_2,यह एक बैंगन है +cube/cube_4,यह एक लाल घनक्षेत्र है +plum/plum_2,यह एक बेर है +lime/lime_1,यह एक कच्च निम्ब है +carrot/carrot_4,यह एक गाजर है +eggplant/eggplant_2,यह बैंगन है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +cube/cube_4,यह एक घन प्रकार की वस्त है +plum/plum_2,यह बीट है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +lime/lime_1,यह नींब है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +carrot/carrot_4,यह गाजर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +eggplant/eggplant_2,यह एक बेंगन है +cube/cube_4,यह लाल रंग की कोई वस्त है +plum/plum_2,यह कोई सब्ज या फल है +lime/lime_1,यह हर रंग की कोई सब्ज या फल है +carrot/carrot_4,यह गाजर है +triangle/triangle_1,लाल त्रिकोड़ +potato/potato_3,यह आल है +cube/cube_1,पील चौकोर वास्त है +banana/banana_1,यह केल है +arch/arch_4,लाल सी वास्त है +triangle/triangle_1,यह त्रिकोण आकार में है +potato/potato_3,आल सेहत के लिए अच्छ हो है +cube/cube_1,यह चौकोर आकार में है +banana/banana_1,यह स्वास्थ्य के लिए अच्छ है +arch/arch_4,यह लाल रंग में है +triangle/triangle_1,यह एक शो पीस उत्पाद है +potato/potato_3,यह आल है +cube/cube_1,यह आइस क्रीम का टुकड़ है +banana/banana_1,यह केल है +arch/arch_4,यह आइस क्रीम का टुकड़ है +triangle/triangle_1,लाल त्रिकोण +potato/potato_3,आल जैस +cube/cube_1,पील वर्ग +banana/banana_1,पील केल +arch/arch_4,लाल अर्ध वर्गाकार वस्त +triangle/triangle_1,यह एक घन प्रकार की वस्त है +potato/potato_3,यह आल है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +cube/cube_1,यह एक घन प्रकार की वस्त है +banana/banana_1,यह केल है और इसक उपयोग विभिन्न व्यंजन को तैयार कर के लिए किय जा है +arch/arch_4,यह एक घनाकार वस्त है +triangle/triangle_1,यह लाल रंग का त्रिकोण है +potato/potato_3,यह आल है +cube/cube_1,यह पील रंग है +banana/banana_1,यह केल है +arch/arch_4,यह लाल रंग है +triangle/triangle_1,यह एक लाल त्रिकोण है +potato/potato_3,यह एक आल है +cube/cube_1,यह एक पील घनक्षेत्र है +banana/banana_1,यह एक केल है +arch/arch_4,यह एक लाल मेहराब है +triangle/triangle_1,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +potato/potato_3,यह आल है +cube/cube_1,यह कोई पील रंग का रब्बर का टुकड़ है +banana/banana_1,यह एक केल है +arch/arch_4,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +triangle/triangle_1,यह एक त्रिकोण के आकर का चित्र है +potato/potato_3,यह एक आल का चित्र है +cube/cube_1,यह एक वर्ग के आकर का चित्र है +banana/banana_1,यह एक केल का चित्र है +arch/arch_4,यह एक साबुन का चित्र है +triangle/triangle_1,यह लाल रंग की रबर या प्लास्टिक की कोई वस्त है +potato/potato_3,यह आल है +cube/cube_1,यह पील रंग का प्लास्टिक या रबर की कोई वस्त है +banana/banana_1,यह एक केल है +arch/arch_4,यह लाल रंग की प्लास्टिक या रबर की कोई वस्त है +triangle/triangle_1,यह एक त्रिकोण है +potato/potato_3,यह एक आल है +cube/cube_1,यह घन है +banana/banana_1,यह एक केल है +arch/arch_4,यह एक आर्च है +triangle/triangle_1,लाल रंग का त्रिभुज +potato/potato_3,आल सब्ज +cube/cube_1,घन क्षेत्र +banana/banana_1,केल फल +arch/arch_4,मेहराब वृत्त खंड +triangle/triangle_1,यह एक त्रिकोण है +potato/potato_3,यह एक आल है +cube/cube_1,यह घन है +banana/banana_1,यह एक केल है +arch/arch_4,यह एक आर्च है +triangle/triangle_1,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +potato/potato_3,इस आल कहे है +cube/cube_1,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +banana/banana_1,इस केल कहे है +arch/arch_4,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +triangle/triangle_1,यह एक लाल रंग का सह कोण त्रिकोण हे +potato/potato_3,यह एक पील रंग का स्पंज हे +cube/cube_1,यह एक पील रंग का घनक्षेत्र हे +banana/banana_1,यह एक पील रंग का केल का चित्र हे +arch/arch_4,यह एक ऐस आकृ हे मान एक लाल रंग का घनाभ के बीच से एक आध क्षेत्र निकाल दिय हो +triangle/triangle_1,यह एक त्रिकोणीय संक्षेत्रनुम लाल रंग की वस्त है +potato/potato_3,यह एक अंडाकार आल है और इसक रंग हल्क भूर है +cube/cube_1,यह एक घन नुम पील रंग की कोई वस्त है +banana/banana_1,यह एक पील पक हुआ केल है +arch/arch_4,यह एक मेहराब नुम लाल रंग की वस्त है +triangle/triangle_1,ये लाल रंग की वस्त है +potato/potato_3,ये आल है +cube/cube_1,ये पील रंग की चौकोर वस्त है +banana/banana_1,ये पील रंग का केल है +arch/arch_4,ये लाल रंग की वस्त है +carrot/carrot_1,यह गाजर है जो की एक सब्ज़ का नाम है यह लाल काल नारंग कई रंग में मिल है यह पौध की मूल जड़ हो है +cabbage/cabbage_3,यह एक काल रंग का पत् गोभ प्रतीत हो रह है जो के एक प्रकार की सब्ज हो है +triangle/triangle_4,यह एक ठोस आकर की वस्त है जो नील रंग की है यह आग से एक आयत के आकर की है तथ पीछ से इसक आकर एक सम कोण त्रिभुज की तरह है +orange/orange_4,यह एक संतर है जो की नारंग रंग का हो है यह एक प्रकार का फल हो है +corn/corn_4,यह मकई है जिस भुट्ट या मक्क भी कह है यह एक प्रमुख फसल है यह वस्तुतः बारिश के मौसम में बहुतायत में मिल है +carrot/carrot_1,इस गाजर कह जा है जो स्वास्थ्य के लिए अच्छ है +cabbage/cabbage_3,यह तस्वीर स्पष्ट नह है +triangle/triangle_4,यह तस्वीर नील रंग में है +orange/orange_4, जो स्वास्थ्य के लिए अच्छ है +corn/corn_4,इस मक्क कह जा है जो स्वास्थ्य के लिए अच्छ है +carrot/carrot_1,यह गाजर और सबज के रूप में उपयोग किय जा है +cabbage/cabbage_3,यह एक गोभ है +triangle/triangle_4,यह एक त्रिकोण है +orange/orange_4,यह एक संतर है +corn/corn_4,यह एक गोभ है +carrot/carrot_1,यह गाजर है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +cabbage/cabbage_3,यह फूलगोभ है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +triangle/triangle_4,यह एक घन प्रकार की वस्त है +orange/orange_4,यह टमाटर है और इसक उपयोग विभिन्न व्यंजन में किय जा है +corn/corn_4,यह मकई है और इसक उपयोग विभिन्न व्यंजन में किय जा है +carrot/carrot_1,गाजर गर्भनिरोधक परिवार एपियास में एक द्विवार्षिक पौध है +cabbage/cabbage_3,गोभ खा के लिए कई अलग अलग तरीक तैयार किए जा हैं +triangle/triangle_4,त्रिकोण को कई तरीक से खींच जा सक है +orange/orange_4,नारंग के पेड़ अप मीठ फल के लिए उष्णकटिबंधीय और उपोष्णकटिबंधीय जलवाय में व्यापक रूप से उग जा हैं +corn/corn_4,पूर अमेरिक में मक्क सबस अधिक पाई जा वाल अनाज की फसल है +carrot/carrot_1,मूल खा के बहुत फायद हैं ताज मूल खा से पाचनशक्त बढ है +cabbage/cabbage_3,बंद गोभ एक प्रकार का शाक सब्ज है जिसम केवल कोमल पत्त का बँध हुआ संपुट हो है +triangle/triangle_4,ये समझ में नह आ रह है +orange/orange_4,नीब छोट पेड़ अथव सघन झाड़ीदार पौध है इसक शाखाएँ काँटेदार पत्त छोट डंठल पतल तथ पत्तीदार हो है +corn/corn_4,मक्क एक ऐस खाद्यान्न है जो मोट अनाज की श्रेण में आत तो है परंत इसक पैदावार पिछल दशक में भारत में एक महत्त्वपूर्ण फसल के रूप में मोड़ ले चुक है क्योंक यह फसल सभ मोट व प्रमुख खाद्दान की बढ़ोत्तर दर में सबस अग्रण है +carrot/carrot_1,यह एक गाजर का चित्र है +cabbage/cabbage_3,यह एक बंदगोभ का चित्र है +triangle/triangle_4,यह एक त्रिकोण के आकर का चित्र है +orange/orange_4,यह एक संतर का चित्र है +corn/corn_4,यह एक भुट्ट का चित्र है +carrot/carrot_1,यह एक गाजर है +cabbage/cabbage_3,यह गोभ है +triangle/triangle_4,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +orange/orange_4,यह एक संतर है +corn/corn_4,यह मक्क का भुट्ट है +carrot/carrot_1,इस गाजर कहे है +cabbage/cabbage_3,इस गोभ कहे है +triangle/triangle_4,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +orange/orange_4,इस संतर कहे है +corn/corn_4,इस मक्क का भुट्ट कहे है +carrot/carrot_1,यह एक गाजर है +cabbage/cabbage_3,यह एक पत्तागोभ है +triangle/triangle_4,यह एक त्रिकोण है +orange/orange_4,यह एक संतर है +corn/corn_4,यह एक मक्क है +carrot/carrot_1,यह गाजर और सबज के रूप में उपयोग किय जा है +cabbage/cabbage_3,यह एक गोभ है +triangle/triangle_4,यह एक त्रिकोण है +orange/orange_4,यह एक संतर है +corn/corn_4,यह एक मकई है +carrot/carrot_1,नाम है गाजर यह पहाड़ क्षेत्र में बढ़ सक है इसक उपयोग दह केसर आद में किय जा है पनीर को सब्ज की मिट्ट के नीच स्वाद के लिए सस् किय जा है +cabbage/cabbage_3,नूडल्स बन में गोभ की बहुत महत्वपूर्ण भूमिक है +triangle/triangle_4,इस एक त्रिकोण कह जा है और इसक उपयोग बच्च के लिए आकार दिख के लिए किय जा है जब वे कक्ष ले हैं +orange/orange_4,संतर का फल यह एक फल की तुल में थोड़ अधिक महंग है इसक स्वाद बहुत अच्छ है इसक रस खट्ट है +corn/corn_4,सोरघम जो एक अल्पकालिक फसल है पा में खाय जा है और बहुत ही बेस्वाद हो है +carrot/carrot_1,यह एक लंब पतल गाजर है +cabbage/cabbage_3,यह बैंग पत् गोभ है +triangle/triangle_4,यह त्रिकोणीय नील वस्त है +orange/orange_4,यह एक पील निम्ब है +corn/corn_4,यह एक छिल हुआ भुट्ट है +carrot/carrot_1,ये लाल रंग का गाजर है +cabbage/cabbage_3,ये बेंग रंग की पत्तागोभ है +triangle/triangle_4,ये गहर नील रंग की वस्त है +orange/orange_4,ये पील रंग का संतर है +corn/corn_4,ये मक्क हैंइसक सूप बन जा है +carrot/carrot_1,गाजर फल +cabbage/cabbage_3,गोभ सब्ज +triangle/triangle_4,त्रिभुज तीन भुज का +orange/orange_4,संतर फल +corn/corn_4,मक का भुट्ट +carrot/carrot_1,यह एक गाजर है +cabbage/cabbage_3,यह गोभ है +triangle/triangle_4,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +orange/orange_4,यह एक पिल नींब है +corn/corn_4,यह मक्क का भुट्ट है +carrot/carrot_1,यह टेड गाजर है +cabbage/cabbage_3,यह लाल गोब है +triangle/triangle_4,नील त्रिकोड़ है +orange/orange_4,यह पील निम्ब है +corn/corn_4,यह देस सफेद भुट्ट है +carrot/carrot_3,यह एक गाजर है +lime/lime_4,यह एक कच्च निम्ब है +eggplant/eggplant_2,यह एक बैंगन है +lime/lime_3,यह एक कच्च निम्ब है +cucumber/cucumber_2,यह एक खीर है +carrot/carrot_3,देस गाजर है +lime/lime_4,हर निम्ब है +eggplant/eggplant_2,बैगन की सब्ज है +lime/lime_3,अंगूर है हर +cucumber/cucumber_2,लम्ब हर ककड़ है +carrot/carrot_3,यह एक आढ़ तिरछ गाजर है +lime/lime_4,यह एक हर छोट का नींब है +eggplant/eggplant_2,यह एक लम्ब पतल बैंग रंग का बैंगन है +lime/lime_3,यह एक हर छोट का नींब है +cucumber/cucumber_2,यह एक हर पतल खीर है +carrot/carrot_3,यह गाजर है +lime/lime_4,हर रंग का अमरूद +eggplant/eggplant_2,यह बैंगन है +lime/lime_3,यह हर रंग का फ़ल है +cucumber/cucumber_2,यह खीर है +carrot/carrot_3,यह गाजर है जो स्वास्थ्य के लिए अच्छ है +lime/lime_4,यह चित्र हर रंग में दिख दे है +eggplant/eggplant_2,यह बैंगन है +lime/lime_3,यह चित्र हर रंग में दिख दे है +cucumber/cucumber_2,यह चित्र हर रंग में दिख दे है +carrot/carrot_3,गाजर फल +lime/lime_4,काग़ज़ नींब +eggplant/eggplant_2,बैगन सब्ज +lime/lime_3,काग़ज़ नींब +cucumber/cucumber_2,खीर सब्ज +carrot/carrot_3,इस गाजर कहे है +lime/lime_4,इस नींब कहे है +eggplant/eggplant_2,इस बेंगन कहे है +lime/lime_3,इस नींब कहे है +cucumber/cucumber_2,इस ककड़ कहे है +carrot/carrot_3,यह गाजर और सबज के रूप में उपयोग किय जा है +lime/lime_4,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +eggplant/eggplant_2,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +lime/lime_3,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +cucumber/cucumber_2,यह खीर है और सलाद के रूप में उपयोग किय जा है +carrot/carrot_3,इसक गाजर कह जा है +lime/lime_4,इसक नींब कह जा है +eggplant/eggplant_2,इसक बेंगन कह जा है +lime/lime_3,इसक नींब कह जा है +cucumber/cucumber_2,इसक ककड़ कह जा है +carrot/carrot_3,ये लाल रंग का गाजर है +lime/lime_4,ये हर रंग का अमरूद है +eggplant/eggplant_2,ये बैगन है +lime/lime_3,ये हर रंग की वस्त है +cucumber/cucumber_2,ये हर काकड़ है +carrot/carrot_3,यह एक गाजर है +lime/lime_4,यह हर रंग की कोई सब्ज या फल है +eggplant/eggplant_2,यह एक बेंगन है +lime/lime_3,यह हर रंग की कोई सब्ज या फल है +cucumber/cucumber_2,यह एक ककड़ है +carrot/carrot_3,यह गाजर है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +lime/lime_4,यह नींब है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +eggplant/eggplant_2,यह बैंगन है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +lime/lime_3,यह नींब है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +cucumber/cucumber_2,यह ककड़ है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +carrot/carrot_3,एक नारंग रंग का गाजर +lime/lime_4,एक छोट हर नींब +eggplant/eggplant_2,एक बैंगन +lime/lime_3,एक छोट हर नींब +cucumber/cucumber_2,एक ककड़ +carrot/carrot_3,यह गाजर है यह नारंग का रंग है +lime/lime_4,यह हर रंग का वस्त है +eggplant/eggplant_2,यह बैंगन है यह बैंग का रंग है +lime/lime_3,यह हर रंग का वस्त है +cucumber/cucumber_2,यह खीर है यह रंग का वस्त है +carrot/carrot_3,यह गाजर और सबज के रूप में उपयोग किय जा है +lime/lime_4,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +eggplant/eggplant_2,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +lime/lime_3,यह नींब है और सलाद में भी इस्तेमाल किय जा है और एक नींब पा के रूप में उपयोग किय जा है +cucumber/cucumber_2,यह खीर है और सलाद के रूप में उपयोग किय जा है +carrot/carrot_3,यह एक गाजर का चित्र है +lime/lime_4,यह एक अमरुद का चित्र है +eggplant/eggplant_2,यह एक बैंगन का चित्र है +lime/lime_3,यह एक अमरुद का चित्र है +cucumber/cucumber_2,यह एक खीर का चित्र है +cucumber/cucumber_4,हर ककड़ है +cucumber/cucumber_3,हर ककड़ है +cube/cube_1,यह पिल वास्त है +cylinder/cylinder_3,यह नील वास्त है +banana/banana_3,यह केल है +cucumber/cucumber_4,खीर साबज +cucumber/cucumber_3,खीर साबज +cube/cube_1,चोकोर ला +cylinder/cylinder_3,सिलेंडर का रूप +banana/banana_3,कील खा +cucumber/cucumber_4,खीर शरीर के लिए एक बेहतरीन मिर्च है +cucumber/cucumber_3,खीर शरीर के लिए एक बेहतरीन मिर्च है +cube/cube_1,यह एक चौकोर आकार की वस्त है +cylinder/cylinder_3,नाम सिलेंडर का उपयोग शिक्षक के लिए किय जा है जब यह सिख है और पाठ बन है +banana/banana_3,केल एक ऐस खाद्य पदार्थ है जो भोजन के पाचन संबंध विकार के लिए इस आदर्श बन है +cucumber/cucumber_4,यह एक ककड़ है +cucumber/cucumber_3,यह एक ककड़ है +cube/cube_1,यह एक पील रंग की प्लास्टिक या रबर की कोई वस्त है +cylinder/cylinder_3,यह नील रंग की प्लास्टिक या रबर की लंबगोल वस्त है +banana/banana_3,यह एक केल है +cucumber/cucumber_4,यह ककड़ है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +cucumber/cucumber_3,यह ककड़ है और इसक उपयोग विभिन्न व्यंजन तैयार कर के लिए किय जा है +cube/cube_1,यह एक घन प्रकार की वस्त है +cylinder/cylinder_3,यह एक घन प्रकार की वस्त है +banana/banana_3,यह केल है और इसक उपयोग विभिन्न व्यंजन में किय जा है +cucumber/cucumber_4,यह एक ककड़ है +cucumber/cucumber_3,यह एक ककड़ है +cube/cube_1,यह कोई पील रंग का रब्बर का टुकड़ है +cylinder/cylinder_3,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +banana/banana_3,यह एक केल है +cucumber/cucumber_4,यह एक खीर का चित्र है +cucumber/cucumber_3,यह एक खीर का चित्र है +cube/cube_1,यह एक वर्ग के आकर का चित्र है +cylinder/cylinder_3,यह एक बेलन के आकर का चित्र है +banana/banana_3,यह एक केल का चित्र है +cucumber/cucumber_4,यह एक हर पतल खीर है +cucumber/cucumber_3,यह एक हर पतल खीर है +cube/cube_1,यह एक घन नुम पील रंग की कोई वस्त है +cylinder/cylinder_3,यह एक नील रंग की और बेलननुम आकार की वस्त है +banana/banana_3,यह एक पील पक हुआ केल है +cucumber/cucumber_4,यह एक खीर है +cucumber/cucumber_3,यह एक खीर है +cube/cube_1,यह एक पील घनक्षेत्र है +cylinder/cylinder_3,यह एक नील सिलेंडर है +banana/banana_3,यह एक केल है +cucumber/cucumber_4,यह एक खीर का चित्र हे +cucumber/cucumber_3,यह एक खीर का चित्र हे +cube/cube_1,यह एक पील रंग का घनक्षेत्र का चित्र हे +cylinder/cylinder_3,यह एक नील रंग का बेलनाकार वस्त का चित्र हे +banana/banana_3,यह एक पील रंग का केल का चित्र हे +cucumber/cucumber_4,यह खीर है और सलाद के रूप में उपयोग किय जा है +cucumber/cucumber_3,यह खीर है और सलाद के रूप में उपयोग किय जा है +cube/cube_1,यह घन है +cylinder/cylinder_3,यह सिलेंडर है +banana/banana_3,यह एक केल है +cucumber/cucumber_4,इस ककड़ कहे है +cucumber/cucumber_3,इस ककड़ कहे है +cube/cube_1,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +cylinder/cylinder_3,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +banana/banana_3,इस केल कहे है +cucumber/cucumber_4,ये हर ककड़ है +cucumber/cucumber_3,ये हर ककड है +cube/cube_1,ये पील रंग का चौकोर है +cylinder/cylinder_3,ये नील रंग का सिलिंडर है +banana/banana_3,ये पील केल है +cucumber/cucumber_4,यह खीर है और सलाद के रूप में उपयोग किय जा है +cucumber/cucumber_3,यह खीर है और सलाद के रूप में उपयोग किय जा है +cube/cube_1,यह एक पास है +cylinder/cylinder_3,इस वॉशिंग सोप है +banana/banana_3,यह एक केल है +cucumber/cucumber_4,खीर सब्ज +cucumber/cucumber_3,खीर सब्ज +cube/cube_1,घन क्षेत्र +cylinder/cylinder_3,नील रंग का बेलन +banana/banana_3,केल फल +cucumber/cucumber_4,यह स्वास्थ्य के लिए अच्छ है +cucumber/cucumber_3,यह स्वास्थ्य के लिए अच्छ है +cube/cube_1,यह पील रंग में है +cylinder/cylinder_3,यह नील रंग में है +banana/banana_3,यह स्वास्थ्य के लिए अच्छ है +carrot/carrot_3,इसक गाजर कह जा है +banana/banana_3,इसक केल कह जा है +cylinder/cylinder_1,यह कोई पील रंग का रब्बर का टुकड़ है +semicylinder/semicylinder_1,ये नील रंग की प्लास्टिक या रबर की कोई वस्त है +cabbage/cabbage_1,इसक गोभ कह जा है +carrot/carrot_3,यह गाजर और सबज के रूप में उपयोग किय जा है +banana/banana_3,यह एक केल है +cylinder/cylinder_1,यह एक सिलेंडर है +semicylinder/semicylinder_1,यह एक अर्ध सिलेंडर है +cabbage/cabbage_1,यह एक गोभ है +carrot/carrot_3,गाजर फल +banana/banana_3,केल फल +cylinder/cylinder_1,पील रंग का बेलन +semicylinder/semicylinder_1,अर्द्ध बेलन +cabbage/cabbage_1,गोभ सब्ज +carrot/carrot_3,यह गाजर और सबज के रूप में उपयोग किय जा है +banana/banana_3,यह केल है +cylinder/cylinder_1,यह स्पष्ट नह है +semicylinder/semicylinder_1,यह प्लास्टिक ड्रम का आध हिस्स है +cabbage/cabbage_1,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +carrot/carrot_3,यह एक गाजर है +banana/banana_3,यह एक केल है +cylinder/cylinder_1,यह एक पील सिलेंडर है +semicylinder/semicylinder_1,यह एक नील अर्ध सिलेंडर है +cabbage/cabbage_1,यह एक पत्तागोभ है +carrot/carrot_3,यह एक गाजर का चित्र है +banana/banana_3,यह एक केल का चित्र है +cylinder/cylinder_1,यह एक बेलन के आकर का चित्र है +semicylinder/semicylinder_1,यह एक साबुन का चित्र है +cabbage/cabbage_1,यह एक बंदगोभ का चित्र है +carrot/carrot_3, जो स्वास्थ्य के लिए अच्छ है +banana/banana_3, जो स्वास्थ्य के लिए अच्छ है +cylinder/cylinder_1,यह तस्वीर पील रंग में दिख दे है +semicylinder/semicylinder_1,यह चित्र नील रंग में दिख दे है +cabbage/cabbage_1,यह तस्वीर अच्छ तरह से दिख नह दे है +carrot/carrot_3,गाजर एक सब्ज है +banana/banana_3,केल एक फल है +cylinder/cylinder_1,वस्त का रंग पील है +semicylinder/semicylinder_1,वस्त का रंग नील है +cabbage/cabbage_1,वस्त ठोस है +carrot/carrot_3,लम्ब गाजार है +banana/banana_3,लम्ब केल है +cylinder/cylinder_1,कुछ पील गोल आकर का है +semicylinder/semicylinder_1,कुछ नील अर्ध गोल आकर का है +cabbage/cabbage_1,लाल गोभ है +carrot/carrot_3,ये लाल रंग का गाजर है +banana/banana_3,ये पील रंग का केल हैं +cylinder/cylinder_1,ये पील रंग की वस्त है +semicylinder/semicylinder_1,ये नील रंग की वस्त है +cabbage/cabbage_1,ये बेंग रंग की पत्तागोभ है +carrot/carrot_3,गाजर एक उच्च कीमत वाल आहार है जो ठंड को ठंड कर है जिसम बहुत सार प्रोटीन हो है +banana/banana_3,केल एक अच्छ खाद्य उत्पाद है जिसक उपयोग पाचन विकार वाल लोग के लिए एक अच्छ दव के रूप में किय जा है इसक उपयोग पंजम्रीम तैयार कर के लिए भी किय जा है +cylinder/cylinder_1,अर्ध बेलनाकार रूप का उपयोग उन सूत्र के लिए किय जा है जो सूत्र के लिए उपयोग किए जा हैं +semicylinder/semicylinder_1,अर्ध बेलनाकार रूप का उपयोग उन सूत्र के लिए किय जा है जो सूत्र के लिए उपयोग किए जा हैं +cabbage/cabbage_1,गोभ को पक जा है और धाग में उपयोग किय जा है +carrot/carrot_3,इस गाजर कहे है +banana/banana_3,इस केल कहे है +cylinder/cylinder_1,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +semicylinder/semicylinder_1,नील रंग की प्लास्टिक या रबर की कोई चीज़ है +cabbage/cabbage_1,इस गोभ कहे है +carrot/carrot_3,यह गाजर है और इसक उपयोग सलाद और अन्य व्यंजन बन में किय जा है +banana/banana_3,यह केल है और इसक उपयोग विभिन्न व्यंजन में किय जा है +cylinder/cylinder_1,यह एक घन प्रकार की वस्त है +semicylinder/semicylinder_1,यह एक घन प्रकार की वस्त है +cabbage/cabbage_1,यह फूलगोभ है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +carrot/carrot_3,यह गाजर है +banana/banana_3,यह केल है +cylinder/cylinder_1,यह पील रंग है +semicylinder/semicylinder_1,यह नील रंग है +cabbage/cabbage_1,यह एक सब्ज है +carrot/carrot_3,यह एक गाजर का चित्र हे +banana/banana_3,यह एक पील रंग का केल हे +cylinder/cylinder_1,यह एक पील रंग का बेलनाकार वस्त का चित्र हे +semicylinder/semicylinder_1,यह एक नील रंग का आध क्षेत्र हे +cabbage/cabbage_1,यह एक बैंग रंग का बंद गोब का चित्र हे +carrot/carrot_3,यह एक गाजर है +banana/banana_3,यह एक केल है +cylinder/cylinder_1,यह एक पील रंग की प्लास्टिक या रबर की कोई वस्त है +semicylinder/semicylinder_1,यह नील रंग की प्लास्टिक या रबर की कोई वस्त है +cabbage/cabbage_1,यह गोभ है +potato/potato_2,यह एक आल है +semicylinder/semicylinder_2,यह एक अर्ध सिलेंडर है +cylinder/cylinder_1,यह एक सिलेंडर है +arch/arch_1,यह एक आर्च है +cylinder/cylinder_2,यह एक सिलेंडर है +potato/potato_2,यह चीक है +semicylinder/semicylinder_2,यह लाल रंग है +cylinder/cylinder_1,यह पील रंग है +arch/arch_1,यह पील रंग है +cylinder/cylinder_2,यह लाल रंग है +potato/potato_2,इस पेस्ट बन के लिए आल के साथ किय जा सक है अलुव परो शोरब बन सक हैं +semicylinder/semicylinder_2,यह टमाटर फल खा पक के लिए एक बहुत ही महत्वपूर्ण घटक है हमार भोजन को खा बन और आन संभव नह है +cylinder/cylinder_1,यह एक सिलेंडर मॉडल है यह देख के लिए कि यह कैस दिख +arch/arch_1,यह देख में पील रंग के एक अर्च मॉडल की तरह लग है +cylinder/cylinder_2,यह एक लाल रंग नह लग है और रोलर के रूप में इस्तेमाल किय जा सक है +potato/potato_2,इसम वस्त नह है +semicylinder/semicylinder_2,यह एक लाल रंग का वस्त है +cylinder/cylinder_1,यह पील का वस्त है +arch/arch_1,यह पील का वस्त है +cylinder/cylinder_2,यह लाल रंग है +potato/potato_2,ये लाल टमाटर है +semicylinder/semicylinder_2,ये लाल रंग की वस्त है +cylinder/cylinder_1,यव पील रंग की वस्त है +arch/arch_1,ये पील रंग की वस्त है +cylinder/cylinder_2,ये लाल रंग की सिलेन्डर आकार की वस्त है +potato/potato_2,यह वस्त एक अंगूर की तरह दिख है बहुत लोकप्रिय फल +semicylinder/semicylinder_2,यह ऑब्जेक्ट लाल है और आध सर्कल की तरह दिख है +cylinder/cylinder_1,यह ऑब्जेक्ट पील है और सिलेंडर के रूप में है +arch/arch_1,यह ऑब्जेक्ट पील है और एक अवसाद प्रतीत हो है +cylinder/cylinder_2,यह वस्त सिलेंडर के रूप में है +potato/potato_2,यह एक अंडाकार आल है और इसक रंग लाल है +semicylinder/semicylinder_2,यह एक लाल रंग की और अर्ध बेलननुम आकार की वस्त है +cylinder/cylinder_1,यह एक पील रंग की और बेलननुम आकार की वस्त है +arch/arch_1,यह एक उलट मेहराब नुम पील रंग की वस्त है +cylinder/cylinder_2,यह एक लाल रंग की और बेलननुम आकार की वस्त है +potato/potato_2,यह आम है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +semicylinder/semicylinder_2,यह एक घनाकार वस्त है +cylinder/cylinder_1,यह एक घनाकार वस्त है +arch/arch_1,यह एक घनाकार वस्त है +cylinder/cylinder_2,यह एक घनाकार वस्त है +potato/potato_2,यह एक टमाटर का चित्र हे +semicylinder/semicylinder_2,यह एक लाल रंग का आध क्षेत्र का चित्र हे +cylinder/cylinder_1,यह एक पील रंग का बेलनाकार वस्त का चित्र हे +arch/arch_1,यह एक ऐस आकृ हे मान एक पील रंग का घनाभ के बीच से एक आध क्षेत्र निकाल दिय हो +cylinder/cylinder_2,यह एक लाल रंग का बेलनाकार वस्त का चित्र हे +potato/potato_2,इस लाल रंग का आल कह है +semicylinder/semicylinder_2,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +cylinder/cylinder_1,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +arch/arch_1,पील रंग की प्लास्टिक या रबर की कोई चीज़ है +cylinder/cylinder_2,लाल रंग की प्लास्टिक या रबर की कोई चीज़ है +potato/potato_2,यह तस्वीर लाल रंग की है +semicylinder/semicylinder_2,यह तस्वीर लाल रंग की है +cylinder/cylinder_1,यह तस्वीर पील रंग में है +arch/arch_1,यह तस्वीर पील रंग में है +cylinder/cylinder_2,यह तस्वीर लाल रंग की है +potato/potato_2,आल है +semicylinder/semicylinder_2,कुछ लाल सा अर्ध गोल वास्त है +cylinder/cylinder_1,पिल्ल बेलनुम आकर की वास्त है +arch/arch_1,पिल्ल सी वास्त है +cylinder/cylinder_2,लाल बेलनुम आकर की वास्त है +potato/potato_2,आल सब्ज +semicylinder/semicylinder_2,अर्द्ध बेलन +cylinder/cylinder_1,पील रंग का बेलन +arch/arch_1,घनाभ षटफलक +cylinder/cylinder_2,लाल रंग का बेलन +potato/potato_2,यह एक सेब का चित्र है +semicylinder/semicylinder_2,यह एक साबुन का चित्र है +cylinder/cylinder_1,यह एक बेलन के आकर का चित्र है +arch/arch_1,यह एक साबुन का चित्र है +cylinder/cylinder_2,यह एक बेलन के आकर का चित्र है +potato/potato_2,यह एक आल है +semicylinder/semicylinder_2,यह एक लाल अर्द्ध सिलेंडर है +cylinder/cylinder_1,यह एक पील सिलेंडर है +arch/arch_1,यह एक पील मेहराब है +cylinder/cylinder_2,यह एक लाल सिलेंडर है +potato/potato_2,यह आल है +semicylinder/semicylinder_2,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +cylinder/cylinder_1,यह कोई पील रंग का रब्बर का टुकड़ है +arch/arch_1,यह कोई पील रंग का रब्बर का टुकड़ है +cylinder/cylinder_2,यह कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +potato/potato_2,यह एक लाल रंग की सब्ज या फल है +semicylinder/semicylinder_2,यह लाल रंग की प्लास्टिक या रबर की कोई वस्त है +cylinder/cylinder_1,यह एक पील रंग की प्लास्टिक या रबर की कोई वस्त है +arch/arch_1,यह एक पील रंग की प्लास्टिक या रबर की कोई वस्त है +cylinder/cylinder_2,यह लाल रंग की प्लास्टिक या रबर की कोई वस्त है +semicylinder/semicylinder_2,ये कोई लाल रंग की प्लास्टिक या फिर रब्बर की वस्त है +cube/cube_2,यह हर रंग की प्लास्टिक या रबर की कोई वस्त है +cucumber/cucumber_3,इसक ककड़ कह जा है +eggplant/eggplant_4,इसक बेंगन कह जा है +cabbage/cabbage_1,इसक गोभ कह जा है +semicylinder/semicylinder_2,अर्ध बेलन +cube/cube_2,घन क्षेत्र +cucumber/cucumber_3,खीर सब्ज +eggplant/eggplant_4,बैंगन सब्ज +cabbage/cabbage_1,गोभ सब्ज +semicylinder/semicylinder_2,यह लाल रंग है +cube/cube_2,यह हर रंग है +cucumber/cucumber_3,इस चित्र में खीर है +eggplant/eggplant_4,यह बैंगन है +cabbage/cabbage_1,यह एक सब्ज है +semicylinder/semicylinder_2,यह एक लाल रंग का बेलनाकार वस्त हे +cube/cube_2,यह एक हर रंग का घनक्षेत्र का चित्र हे +cucumber/cucumber_3,यह एक हर रंग के खीर का चित्र हे +eggplant/eggplant_4,यह एक बैंगन का चित्र हे +cabbage/cabbage_1,यह एक बैंग रंग का बंद गोब का चित्र हे +semicylinder/semicylinder_2,यह लाल रंग की प्लास्टिक या रबर की कोई वस्त है +cube/cube_2,यह हर रंग का कुछ आकार है +cucumber/cucumber_3,यह एक ककड़ है +eggplant/eggplant_4,यह एक बेंगन है +cabbage/cabbage_1,यह गोभ है +semicylinder/semicylinder_2,यह एक साबुन का चित्र है +cube/cube_2,यह एक वर्ग के आकर का चित्र है +cucumber/cucumber_3,यह एक खीर का चित्र है +eggplant/eggplant_4,यह एक बैंगन का चित्र है +cabbage/cabbage_1,यह एक बंदगोभ का चित्र है +semicylinder/semicylinder_2,यह एक लाल रंग की वास्त है +cube/cube_2,यह एक हर रंग की वास्त है +cucumber/cucumber_3,यह ककड़ है ये हर रंग की हो है +eggplant/eggplant_4,यह बैंगन है यह एक सब्ज है +cabbage/cabbage_1,यह एक पत् गोभ है इस बाँध गोभ भी कह है +semicylinder/semicylinder_2,यह एक लाल अर्ध सिलेंडर है +cube/cube_2,यह एक हर घनक्षेत्र है +cucumber/cucumber_3,यह एक खीर है +eggplant/eggplant_4,यह एक बैंगन है +cabbage/cabbage_1,यह एक पत्तागोभ है +semicylinder/semicylinder_2,यह लाल बेलन है +cube/cube_2,यह हर चौकोर है +cucumber/cucumber_3,यह हर ककड़ है +eggplant/eggplant_4,यह कल बड़ बैगन है +cabbage/cabbage_1,यह लाल गोब के पत् की सब्ज है +semicylinder/semicylinder_2,यह एक घन प्रकार की वस्त है +cube/cube_2,यह एक घन प्रकार की वस्त है +cucumber/cucumber_3,यह ककड़ है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +eggplant/eggplant_4,यह बैंगन है और इसक उपयोग विभिन्न व्यंजन बन में किय जा है +cabbage/cabbage_1,यह फूलगोभ है और इसक उपयोग विभिन्न व्यंजन की तैयार में किय जा है +semicylinder/semicylinder_2,वस्त लाल रंग के साबुन के टुकड़ की भांत प्रतीत हो रह है जो की थोड़ गोल में है +cube/cube_2,वस्त वर्गाकार आकर के साबुन के सामान दिख रह है यह हर रंग की है +cucumber/cucumber_3,यह एक गिलख है जो की एक प्रकार की सब्ज है इस सब्ज या पकोड़ बन के लिए उपयोग किय जा है +eggplant/eggplant_4,यह एक बैंगन है यह एक सब्ज का प्रकार है इसक बन भर् भी स्वादिष्ट हो है +cabbage/cabbage_1,यह एक काल रंग का पत् गोभ प्रतीत हो रह है जो के एक प्रकार की सब्ज हो है +semicylinder/semicylinder_2,ये लाल रंग की वस्त है +cube/cube_2,ये हर रंग चोकोर है +cucumber/cucumber_3,ये हर काकड़ है +eggplant/eggplant_4,ये काल बैगन है +cabbage/cabbage_1,ये बेंग रंग की पत्तागोभ है +semicylinder/semicylinder_2,यह लाल रंग में है +cube/cube_2,यह हर रंग में है +cucumber/cucumber_3,यह हर रंग में है +eggplant/eggplant_4,यह अच्छ लग रह है +cabbage/cabbage_1,यह अच्छ लग रह है +semicylinder/semicylinder_2,इस लाल रंग का आल कह है +cube/cube_2,हर रंग की प्लास्टिक या रबर की कोई चीज़ है +cucumber/cucumber_3,इस ककड़ कहे है +eggplant/eggplant_4,इस बेंगन कहे है +cabbage/cabbage_1,इस गोभ कहे है +semicylinder/semicylinder_2,यह एक अर्ध सिलेंडर है +cube/cube_2,यह घन है +cucumber/cucumber_3,यह खीर है और सलाद के रूप में उपयोग किय जा है +eggplant/eggplant_4,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +cabbage/cabbage_1,यह एक गोभ है +semicylinder/semicylinder_2,यह एक अर्ध सिलेंडर है +cube/cube_2,यह एक घनाभ है +cucumber/cucumber_3,यह खीर है और सलाद के रूप में उपयोग किय जा है +eggplant/eggplant_4,यह एक बैंगन है और इसक इस्तेमाल सब्ज के लिए किय जा है +cabbage/cabbage_1,यह एक गोभ है diff --git a/OLD GLS/conf_files/spanish/sp_3batches_lowinst_raw.conf b/OLD GLS/conf_files/spanish/sp_3batches_lowinst_raw.conf new file mode 100644 index 0000000..e6b233a --- /dev/null +++ b/OLD GLS/conf_files/spanish/sp_3batches_lowinst_raw.conf @@ -0,0 +1,5104 @@ +arch/arch_2,no hay imagen +lime/lime_1,limon verde +cabbage/cabbage_4,repollo lila +arch/arch_2,es un objeto de plástico de color azul +lime/lime_1,no carga imagen +cabbage/cabbage_4,es una especie de col morada +arch/arch_2,un prisma rectangular azul con concavidad abierta +lime/lime_1,un limón verde +cabbage/cabbage_4,un repollo púrpura +arch/arch_2,es una pieza de un juego es una pieza +lime/lime_1,es un objeto verde +cabbage/cabbage_4,es una verdura +arch/arch_2,plastico azul +lime/lime_1,acido verde +cabbage/cabbage_4,comestible vegetal +orange/orange_4,una naranja +tomato/tomato_2,un tomate +semicylinder/semicylinder_2,un cilindro rojo +cucumber/cucumber_1,un pepino +potato/potato_1,un tomate +orange/orange_4,es una naranja +tomato/tomato_2,es un tomate +semicylinder/semicylinder_2,es algo rojo +cucumber/cucumber_1,es un pepino +potato/potato_1,es una patata +orange/orange_4,una naranja +tomato/tomato_2,un tomate +semicylinder/semicylinder_2,una pimiento +cucumber/cucumber_1,un pepino +potato/potato_1,una remolacha +orange/orange_4,es una naranja +tomato/tomato_2,es un tomate rojo +semicylinder/semicylinder_2,es un objeto rojo con forma de cilindro +cucumber/cucumber_1,es un pepino verde +potato/potato_1,es una patata roja +orange/orange_4,comestible acido +tomato/tomato_2,vegetal comestible +semicylinder/semicylinder_2,plastico fuerte +cucumber/cucumber_1,comestible vegetal +potato/potato_1,fruta comestible +orange/orange_1,es una naranja +triangle/triangle_3,es un objeto verde con forma de cuña +cucumber/cucumber_2,es un pepino verde +carrot/carrot_3,es una zanahoria naranja +tomato/tomato_1,es un tomate rojo +orange/orange_1,naranja dulce +triangle/triangle_3,un triangulo verde +cucumber/cucumber_2,un pepinillo verde +carrot/carrot_3,zanahoria larga +tomato/tomato_1,tomate rojo +orange/orange_1,una mexerica +triangle/triangle_3,una curva +cucumber/cucumber_2,un pepino +carrot/carrot_3,una zanahoria +tomato/tomato_1,un tomate +orange/orange_1,esta fruta es color naranja parece ser una mandarina +triangle/triangle_3,este es un triangulo color verde los triángulos son figuras geométricas +cucumber/cucumber_2,este es un pepino el pepino puede rebanarse para usarlo encima de los ojos como humectante dentro de rutinas de belleza +carrot/carrot_3,esta es una zanahoria la zanahoria es rica en potasio y fósforo +tomato/tomato_1,este es un tomate en mexico se le llama jitomate +orange/orange_1,una naranja +triangle/triangle_3,un prisma triangular verde +cucumber/cucumber_2,un pepino +carrot/carrot_3,una zanahoria +tomato/tomato_1,un tomate +cabbage/cabbage_1,repollo purpura +potato/potato_4,papa mediana +plum/plum_4,manzana roja +tomato/tomato_1,tomate jugoso +plum/plum_1,manzana roja +cabbage/cabbage_1,estructura vegetal de color morado formado por acumulación de hojas +potato/potato_4,tubérculo blanco y marron +plum/plum_4,fruta morada +tomato/tomato_1,fruta roja en forma de circulo +plum/plum_1,fruta morada +cabbage/cabbage_1,un repollo +potato/potato_4,una patata +plum/plum_4,una uva +tomato/tomato_1,un tomate +plum/plum_1,una manzana +cabbage/cabbage_1,es una col morada +potato/potato_4,es una patata con manchas +plum/plum_4,parece una fruta de color morado +tomato/tomato_1,es un tomate rojo +plum/plum_1,es una manzana roja +cabbage/cabbage_1,un repollo púrpura +potato/potato_4,una patata +plum/plum_4,una manzana +tomato/tomato_1,un tomate +plum/plum_1,una manzana +cylinder/cylinder_2,es un objeto rojo con forma de cilindro +arch/arch_4,es un objeto rojo rectangular con un hueco en forma de medio cilindro +orange/orange_3,es una naranja +cylinder/cylinder_2,cilindro rojo +arch/arch_4,rampa roja +orange/orange_3,fruta redonda de color de amarillo +cylinder/cylinder_2,un cilindro rojo +arch/arch_4,media luna roja +orange/orange_3,una naranja jugosa +cylinder/cylinder_2,un cilindro rojo +arch/arch_4,un prisma rectangular rojo con concavidad aberta +orange/orange_3,una naranja +cylinder/cylinder_2,un rodillo +arch/arch_4,una curva +orange/orange_3,una mexerica +cabbage/cabbage_4,un repollo +orange/orange_2,una pera +orange/orange_3,una mexerica +cabbage/cabbage_3,un repollo +tomato/tomato_4,un tomate +cabbage/cabbage_4,el objeto parece una nuez con cáscara tiene forma ovalada y su color varía desde el violeta claro al violeta marronáceo +orange/orange_2,es un objeto redondo y amarillo podría decirse que parece la yema de un huevo +orange/orange_3,no hay imagen +cabbage/cabbage_3,es un objeto redondo cuyo interior es de color violeta y el exterior malva oscuro está compuesto de hojas superpuestas en capas +tomato/tomato_4,es un objeto redondo su color varía del amarillo verdoso hasta el rojo es un tomate +cabbage/cabbage_4,pasas jugosas +orange/orange_2,manzana amarilla +orange/orange_3,naranja jugosa +cabbage/cabbage_3,col morada +tomato/tomato_4,tomate rojo +cabbage/cabbage_4,esta imagen es de un repollo +orange/orange_2,este imagen is algo naranjado +orange/orange_3,esto es una naranja +cabbage/cabbage_3,esta verdura es morada +tomato/tomato_4,esta imagen es un tomate +cabbage/cabbage_4,un repollo púrpura +orange/orange_2,una naranja +orange/orange_3,una naranja +cabbage/cabbage_3,un repollo púrpura +tomato/tomato_4,un tomate +lemon/lemon_3,una pera +potato/potato_2,una patata +orange/orange_2,una pera +potato/potato_1,una patata +semicylinder/semicylinder_2,un cuadrado +lemon/lemon_3,es un limón amarillo +potato/potato_2,es una patata roja +orange/orange_2,es una naranja +potato/potato_1,es una pata roja +semicylinder/semicylinder_2,es un objeto rojo con forma de medio cilindro +lemon/lemon_3,es un limón +potato/potato_2,es una papa +orange/orange_2,es un limón +potato/potato_1,es una papa +semicylinder/semicylinder_2,es una figura roja +lemon/lemon_3,un limón amarillo +potato/potato_2,un tomate +orange/orange_2,una naranja +potato/potato_1,un tomate +semicylinder/semicylinder_2,mitad de un cilindro rojo +lemon/lemon_3,limon amarillo +potato/potato_2,uva roja +orange/orange_2,manzana amarilla +potato/potato_1,uva roja +semicylinder/semicylinder_2,lengua roja +carrot/carrot_4,las zanahorias son buenas para la visiónesa compañía tiene una política de palo y zanahoria +cube/cube_1,su comida preferida es macarrones con quesoel mejor queso para hacer pizzas es el mozzarella +eggplant/eggplant_3,mi plato favorito es berenjenas rellenas con salsa de tomatees como describir cómo hornear una deliciosa tarta de boda sólo con miel bicarbonato sódico y berenjena cruda +carrot/carrot_3,las zanahorias son buenas para la visiónesa compañía tiene una política de palo y zanahoria +semicylinder/semicylinder_3,su comida preferida es macarrones con quesoel mejor queso para hacer pizzas es el mozzarella +carrot/carrot_4,raíz comestible de color naranja +cube/cube_1,cubo amarillo +eggplant/eggplant_3,fruta morada alargada +carrot/carrot_3,raíz naranja +semicylinder/semicylinder_3,figura geométrica de color de amarillo +carrot/carrot_4,es una zanahoria naranja +cube/cube_1,es una cubo amarillo +eggplant/eggplant_3,es una berenjena +carrot/carrot_3,es una zanahoria naranja +semicylinder/semicylinder_3,es un objeto con forma de medio cilindro de color amarillo +carrot/carrot_4,una zanahoria +cube/cube_1,un cubo amarillo +eggplant/eggplant_3,una berenjena +carrot/carrot_3,una zanahoria +semicylinder/semicylinder_3,mitad de un cilindro amarillo +carrot/carrot_4,una zanahoria +cube/cube_1,un cubo +eggplant/eggplant_3,un jiló +carrot/carrot_3,una zanahoria +semicylinder/semicylinder_3,un queso +corn/corn_2,objeto lleno de granos juntos +corn/corn_4,objeto lleno de granos juntos +carrot/carrot_4,raíz comestible de color naranja +cuboid/cuboid_4,cubo azul +carrot/carrot_2,raíz de color anaranjado +corn/corn_2,una espiga de maíz +corn/corn_4,una espiga de maíz +carrot/carrot_4,una zanahoria +cuboid/cuboid_4,un prisma rectangular azul +carrot/carrot_2,una zanahoria +corn/corn_2,es una mazorca de maíz blanco +corn/corn_4,es una mazorca de maíz blanco +carrot/carrot_4,es una zanahoria naranja +cuboid/cuboid_4,es un objeto azul con forma de cubo alargado +carrot/carrot_2,es una zanahoria naranja +corn/corn_2,maiz en mazorca +corn/corn_4,maiz dulce +carrot/carrot_4,grande zanahoria +cuboid/cuboid_4,12 azul +carrot/carrot_2,zanahoria fresca +corn/corn_2,un maíz +corn/corn_4,un maiz +carrot/carrot_4,una zanahoria +cuboid/cuboid_4,un cuadrado +carrot/carrot_2,una zanahoria +lemon/lemon_1,un limon amarillo +cuboid/cuboid_2,rectangulo verde +corn/corn_4,una mazorca de maiz muy delisiosa +lime/lime_2,limon verde +eggplant/eggplant_4,este vegetal purpura se le conse como berengena es muy deliciosa +lemon/lemon_1,es un limón amarillo con una pegatina +cuboid/cuboid_2,es un objeto verde con forma de cuboide +corn/corn_4,es una mazorca de maíz blanco +lime/lime_2,es una lima verde +eggplant/eggplant_4,es una berenjena +lemon/lemon_1,una pera +cuboid/cuboid_2,un cuadrado +corn/corn_4,un maiz +lime/lime_2,un limón +eggplant/eggplant_4,una berenjena +lemon/lemon_1,un limón amarillo +cuboid/cuboid_2,un prisma rectangular verde +corn/corn_4,una espiga de maíz +lime/lime_2,un limón verde +eggplant/eggplant_4,una berenjena +lemon/lemon_1,este objeto es amarillo su forma es similar a la de un pez +cuboid/cuboid_2,esta es una barra color verde esta barra parece de mantequilla pero es verde +corn/corn_4,esta es una mazorca de maíz el maíz es un ingrediente importante en la cocina tradicional latinoamericana +lime/lime_2,el limón es verde el limón acompaña bien a las comidas +eggplant/eggplant_4,esta es una berenjena la berenjena se utiliza para preparar deliciosos platillos +semicylinder/semicylinder_4,es un objeto verde con forma de medio cilindro +cucumber/cucumber_4,es un pepino verde +triangle/triangle_1,es un objeto rojo con forma de cuña +carrot/carrot_3,es una zanahoria naranja +cuboid/cuboid_2,es un objeto verde con forma de cubo alargado +semicylinder/semicylinder_4,plastico rigido +cucumber/cucumber_4,vegetal comestible +triangle/triangle_1,plastico fuerte +carrot/carrot_3,vegetal comestible +cuboid/cuboid_2,plastico fuerte +semicylinder/semicylinder_4,mitad de un cilindro verde +cucumber/cucumber_4,un pepino +triangle/triangle_1,un prisma triangular rojo +carrot/carrot_3,una zanahoria +cuboid/cuboid_2,un prisma rectangular rojo +semicylinder/semicylinder_4,medio circulo +cucumber/cucumber_4,pepino verde +triangle/triangle_1,triangulo rojo +carrot/carrot_3,zanahoria naranja +cuboid/cuboid_2,12 verde +semicylinder/semicylinder_4,es medio círculo es una figura verde +cucumber/cucumber_4,es un pepino es una verdura verde +triangle/triangle_1,es una pieza geométrica es una figura roja +carrot/carrot_3,es una zanahoria larga es una legumbre +cuboid/cuboid_2,es una barra verde es una pieza rectangular +lime/lime_1,uva verde +cuboid/cuboid_1,bloque amarillo +cylinder/cylinder_2,cilindro grande +semicylinder/semicylinder_4,medio circulo +lime/lime_1,es un limón +cuboid/cuboid_1,es una figura amarilla +cylinder/cylinder_2,es un cilindro rojo +semicylinder/semicylinder_4,es una figura verde +lime/lime_1,es una lima verde +cuboid/cuboid_1,es un objeto amarillo con forma de cuboide +cylinder/cylinder_2,es un objeto rojo con forma de cilindro +semicylinder/semicylinder_4,es un objeto verde con forma de medio cilindro +lime/lime_1,es un limón o lima verde puede ser otra fruta como aguacate pero no madura +cuboid/cuboid_1,es un trozo de mantequilla color amarillo parece estar en estado sólido +cylinder/cylinder_2,es un objeto tubular rojo sólido como una barra pequeña y corta +semicylinder/semicylinder_4,un objeto verde liso con forma semi circular de 3 dimesiones +lime/lime_1,un limón verde +cuboid/cuboid_1,un prisma rectangular amarillo +cylinder/cylinder_2,un cilindro rojo +semicylinder/semicylinder_4,mitad de un cilindro verde +cabbage/cabbage_1,un repollo púrpura +cylinder/cylinder_3,un cilindro azul +eggplant/eggplant_1,una berenjena +plum/plum_4,una manzana +carrot/carrot_2,una zanahoria +cabbage/cabbage_1,es un repollo morado +cylinder/cylinder_3,es un objeto azul con forma de cilindro +eggplant/eggplant_1,es una berenjena +plum/plum_4,es un tomate rojo +carrot/carrot_2,es una zanahoria naranja +cabbage/cabbage_1,el objeto parece como una pelota de baloncesto desinflada +cylinder/cylinder_3,el objeto parece un cilindro azul como un bidón en posición horizontal +eggplant/eggplant_1,el objeto parece una berenjena +plum/plum_4,el objeto parece como una manzana roja +carrot/carrot_2,el objeto parece un gusano color anaranjado +cabbage/cabbage_1,es una col lombarda el color de sus hojas es morado oscuro por el exterior y morado claro por el interior +cylinder/cylinder_3,este objeto cilíndrico azul parece un trozo de plastilina +eggplant/eggplant_1,vemos una berenjena vista desde su parte trasera su color es morado +plum/plum_4,es un objeto redondo y de color rosado o rojizo podría ser una manzana +carrot/carrot_2,es un objeto alargado y rosado podría tratarse de un gusano +cabbage/cabbage_1,semilla negra +cylinder/cylinder_3,cilindro azul +eggplant/eggplant_1,planta de huevos +plum/plum_4,uva roja +carrot/carrot_2,zanahoria naranja +cylinder/cylinder_2,un cilindro rojo +carrot/carrot_1,una zanahoria +cylinder/cylinder_4,un cilindro verde +semicylinder/semicylinder_3,mitad de un cilindro amarillo +lime/lime_4,un limón verde +cylinder/cylinder_2,es un objeto rojo con forma de cilindro +carrot/carrot_1,es una zanahoria naranja +cylinder/cylinder_4,es un objeto verde con forma de cilindro +semicylinder/semicylinder_3,es un objeto amarillo con forma de medio cilindro +lime/lime_4,es una lima verde +cylinder/cylinder_2,no hay imagen +carrot/carrot_1,una zanahoria anaranjada +cylinder/cylinder_4,un clindro verde +semicylinder/semicylinder_3,un semicirculo amarillo +lime/lime_4,un bombillo verde +cylinder/cylinder_2,un rodillo +carrot/carrot_1,una zanahoria +cylinder/cylinder_4,un rodillo acostado +semicylinder/semicylinder_3,un queso +lime/lime_4,una coles +cylinder/cylinder_2,cilindro rojo +carrot/carrot_1,raíz naranja comestible +cylinder/cylinder_4,cilindro verde +semicylinder/semicylinder_3,figura geométrica amarilla +lime/lime_4,estructura vegetal verde +lime/lime_4,limon verde +eggplant/eggplant_4,berenjena grande +cabbage/cabbage_2,repollo purpura +lime/lime_4,es una lima verde +eggplant/eggplant_4,es una berenjena +cabbage/cabbage_2,es un repollo morado +lime/lime_4,una lima verde +eggplant/eggplant_4,una berenjena entera y madura +cabbage/cabbage_2,un repollo morado sobre la mesa +lime/lime_4,parece un platano +eggplant/eggplant_4,es un pepino +cabbage/cabbage_2,tiene forma de arbol +lime/lime_4,un limón verde +eggplant/eggplant_4,una berenjena +cabbage/cabbage_2,un repollo púrpura +cube/cube_2,plastico fuerte +tomato/tomato_2,comestible vegetal +orange/orange_4,comestible acido +lemon/lemon_1,comestible acido +potato/potato_1,comestible fruta +cube/cube_2,un cubo verde +tomato/tomato_2,un tomate +orange/orange_4,una naranja +lemon/lemon_1,un limón amarillo +potato/potato_1,un tomate +cube/cube_2,un cubo verde +tomato/tomato_2,parece la punta de mi muñerco +orange/orange_4,una papa +lemon/lemon_1,un limon +potato/potato_1,una papa chilena +cube/cube_2,es un cubo verde +tomato/tomato_2,es un tomate +orange/orange_4,es una naranja +lemon/lemon_1,es un limón +potato/potato_1,es una papa +cube/cube_2,es un objeto verde con forma de cubo +tomato/tomato_2,es un tomate rojo +orange/orange_4,es una naranja +lemon/lemon_1,es un limón amarillo +potato/potato_1,es una patat roja +plum/plum_2,un objeto rojo parece ser un tipo de fruta o vegetal rojo +eggplant/eggplant_1,un vegetal negro con una parte de verde una fruta negra +lime/lime_1,parece ser un limón pero no se puede distinguir un limón verde +arch/arch_3,un objeto verde un objecto cuadrado verde +plum/plum_2,manzana roja +eggplant/eggplant_1,berenjena purpura +lime/lime_1,limon verde +arch/arch_3,menguante verde +plum/plum_2,una manzana +eggplant/eggplant_1,una berenjena +lime/lime_1,un limón verde +arch/arch_3,un prisma rectangular verde con concavidad abierta +plum/plum_2,fruta morada +eggplant/eggplant_1,vegetal morado y alargado +lime/lime_1,estructura vegetal de color verdoso +arch/arch_3,rampa verde +plum/plum_2,es una ciruela roja +eggplant/eggplant_1,es una berenjena +lime/lime_1,es una especie de fruta verde circular +arch/arch_3,es un objeto verde rectangular con un hueco en forma de medio cilindro +banana/banana_3,un plátano +plum/plum_1,una manzana +carrot/carrot_4,una zanahoria +carrot/carrot_1,una zanahoria +cylinder/cylinder_4,un rodillo +banana/banana_3,es un plátano amarillo +plum/plum_1,es una ciruela roja +carrot/carrot_4,es una zanahoria naranja +carrot/carrot_1,es una zanahoria naranja +cylinder/cylinder_4,es un objeto verde con forma de cilindro +banana/banana_3,un plátano +plum/plum_1,una manzana +carrot/carrot_4,una zanahoria +carrot/carrot_1,una zanahoria +cylinder/cylinder_4,un cilindro verde +banana/banana_3,fruta con concha amarilla en forma de falo +plum/plum_1,fruta redonda morada +carrot/carrot_4,raíz comestible de color naranja +carrot/carrot_1,raíz naranja +cylinder/cylinder_4,cilindro verde +banana/banana_3,banana grande +plum/plum_1,uva sin semillas +carrot/carrot_4,zanahoria naranja +carrot/carrot_1,zanhoria fresca +cylinder/cylinder_4,cilindro verde +banana/banana_4,platano de comer +cucumber/cucumber_3,pepino verde +tomato/tomato_4,tomate rojo +cylinder/cylinder_4,un objeto largo +banana/banana_4,un platano verde +cucumber/cucumber_3,un pepinillo verde +tomato/tomato_4,un jugoso tomate +cylinder/cylinder_4,un cilindro verde +banana/banana_4,fruta con concha amarilla en forma de falo +cucumber/cucumber_3,vegetal verde con forma falica +tomato/tomato_4,fruta circular roja +cylinder/cylinder_4,cilindro verde +banana/banana_4,es un plátano +cucumber/cucumber_3,es un pepino verde +tomato/tomato_4,es un tomate rojo con una pegatina +cylinder/cylinder_4,es un objeto verde con forma de cilindro +banana/banana_4,un plátano +cucumber/cucumber_3,un pepino +tomato/tomato_4,un tomate +cylinder/cylinder_4,un cilindro verde +orange/orange_4,fruta circular de color amarillo +corn/corn_2,objeto lleno de granos juntos +triangle/triangle_3,figura geométrica de color verde +tomato/tomato_1,fruta roja en forma de circulo +eggplant/eggplant_2,fruta abultada de color purpura +orange/orange_4,es un anaranja +corn/corn_2,es una mazorca de maíz blanco +triangle/triangle_3,es un objeto verde con forma de cuña +tomato/tomato_1,es un tomate rojo +eggplant/eggplant_2,es una berenjena +orange/orange_4,naranja jugosa +corn/corn_2,maiz dulce +triangle/triangle_3,rebanada de tarta verde +tomato/tomato_1,tomate cherry +eggplant/eggplant_2,planta de huevos grande +orange/orange_4,una naranja +corn/corn_2,una espiga de maíz +triangle/triangle_3,un prisma triangular verde +tomato/tomato_1,un tomate +eggplant/eggplant_2,una berenjena +orange/orange_4,naranja dulce +corn/corn_2,una m azorca de maiz +triangle/triangle_3,triangulo verde +tomato/tomato_1,tomate jugoso +eggplant/eggplant_2,berenjena grande +lemon/lemon_2,una pera +cube/cube_4,un cuadrado +corn/corn_2,un maíz +banana/banana_2,un plátano +semicylinder/semicylinder_3,un queso +lemon/lemon_2,el objeto parece como un pimiento amarillo +cube/cube_4,el objeto es un cubo de color rojo +corn/corn_2,el onjeto es una mazorca de maiz +banana/banana_2,el objeto es un platano +semicylinder/semicylinder_3,el objeto parece un trozo de queso o mantequilla +lemon/lemon_2,fruta amarilla +cube/cube_4,cubo rojo +corn/corn_2,estructura vegetal llena de granos juntos +banana/banana_2,fruta con cascara de color amarillo +semicylinder/semicylinder_3,figura geométrica de color amarillo +lemon/lemon_2,es un limón amarillo +cube/cube_4,es un objeto rojo con forma de cubo +corn/corn_2,es una mazorca de maíz blanco +banana/banana_2,es un plátano amarillo +semicylinder/semicylinder_3,es un objeto amarillo con forma de medio cilindro +lemon/lemon_2,un limón amarillo +cube/cube_4,un cubo rojo +corn/corn_2,una espiga de maíz +banana/banana_2,un plátano +semicylinder/semicylinder_3,un prisma triangular amarillo +cucumber/cucumber_4,un pepino +cucumber/cucumber_2,un pepino +lime/lime_3,un coles +cucumber/cucumber_4,es un pepino verde +cucumber/cucumber_2,es un pepino verde +lime/lime_3,es una lima verde +cucumber/cucumber_4,un pepino +cucumber/cucumber_2,un pepino +lime/lime_3,un limón verde +cucumber/cucumber_4,vegetal verde y alargado +cucumber/cucumber_2,vegetal verde alargado +lime/lime_3,estructura vegetal verde +cucumber/cucumber_4,un pepino verde entero +cucumber/cucumber_2,un pepino verde que esta listo para comer +lime/lime_3,una lima verde +cube/cube_4,es un objeto rojo con forma de cubo +cylinder/cylinder_3,es un cilindro azul +cabbage/cabbage_2,es una repollo +potato/potato_3,es una patata +cuboid/cuboid_4,es un objeto de color azul con forma de cubo +cube/cube_4,cubo roja +cylinder/cylinder_3,cilindro azul oscuro +cabbage/cabbage_2,col morada +potato/potato_3,patata grande +cuboid/cuboid_4,bloque azul +cube/cube_4,un cubo rojo +cylinder/cylinder_3,un cilindro azul +cabbage/cabbage_2,un repollo púrpura +potato/potato_3,una patata +cuboid/cuboid_4,un prisma rectangular azul +cube/cube_4,es un cubo rojo +cylinder/cylinder_3,es un cilindro azul +cabbage/cabbage_2,es un repollo +potato/potato_3,es una papa +cuboid/cuboid_4,es un cubo azul +cube/cube_4,un cuadrado +cylinder/cylinder_3,un rodillo +cabbage/cabbage_2,una roca +potato/potato_3,una patata +cuboid/cuboid_4,un rectángulo de pie +cucumber/cucumber_4,un pepino +potato/potato_2,un tomate +lemon/lemon_4,un limón amarillo +triangle/triangle_2,un prisma triangular amarillo +tomato/tomato_3,un tomate +cucumber/cucumber_4,esta fruta es un pepinillo verde +potato/potato_2,papa roja +lemon/lemon_4,limon amarillo +triangle/triangle_2,triangulo amarillo +tomato/tomato_3,tomate rojo +cucumber/cucumber_4,la calabaza es una verdura muy sabrosa y muy alegre de comer calabaza +potato/potato_2,la manzana es una fruta muy saludable y sabrosa la manzana tiene un aspecto muy agradable y un aspecto muy atractivo +lemon/lemon_4,el limón es muy saludable y tiene mucha vida humana y es muy importante para el cuerpo humano +triangle/triangle_2,esta imagen es muy bonita y tiene forma de triángulo y color amarillo +tomato/tomato_3,el tomate es muy importante para cocinar casi todos los platos de cocina con tomate +cucumber/cucumber_4,es un pepino verde +potato/potato_2,es una especie de fruta de color rojo +lemon/lemon_4,es un limón amarillo +triangle/triangle_2,es un objeto amarillo con forma de cuña +tomato/tomato_3,es un tomate rojo +cucumber/cucumber_4,es un pepino grande y verde +potato/potato_2,es un objeto redondo y rojo +lemon/lemon_4,un limón amarillo y refrescante +triangle/triangle_2,un bloque que es un triángulo amarillo +tomato/tomato_3,un tomate maduro y rojo con su parte verde arriba +cube/cube_2,es un objeto verde con forma de cubo +cube/cube_3,es un objeto azul con forma de cubo +banana/banana_2,es un plátano amarillo +semicylinder/semicylinder_1,es un objeto azul con forma de medio cilindro +plum/plum_3,es una ciruela roja +cube/cube_2,un cubo verde +cube/cube_3,un cubo azul +banana/banana_2,una banana en la mesa +semicylinder/semicylinder_1,un bloque azul semi cilindrico +plum/plum_3,una ciruela madura +cube/cube_2,un cubo verde +cube/cube_3,un cubo azul +banana/banana_2,un plátano +semicylinder/semicylinder_1,mitad de un cilindro azul +plum/plum_3,una manzana +cube/cube_2,cubo verde +cube/cube_3,cubo azul +banana/banana_2,fruta con cascara amarilla en forma de falo +semicylinder/semicylinder_1,figura geométrica azul +plum/plum_3,vegetal redondo y de color morado +cube/cube_2,cuadrado verde +cube/cube_3,cuadrado azul +banana/banana_2,guineo maduro +semicylinder/semicylinder_1,semicirculo azul +plum/plum_3,manzana roja +lime/lime_1,una coles +cucumber/cucumber_3,un pepino +corn/corn_3,un maíz +orange/orange_1,una naranja +lime/lime_1,un limón verde +cucumber/cucumber_3,un pepino +corn/corn_3,una espiga de maíz +orange/orange_1,una naranja +lime/lime_1,comestible acido +cucumber/cucumber_3,comestible vegetal +corn/corn_3,comestible vegetal +orange/orange_1,fruta comestible +lime/lime_1,es una especie de fruta verde +cucumber/cucumber_3,es un pepino verde +corn/corn_3,es una mazorca de maíz blanco +orange/orange_1,es una naranja con algunas manchas +lime/lime_1,es un limón +cucumber/cucumber_3,es un pepino +corn/corn_3,es una mazorca +orange/orange_1,es un cítrico +cuboid/cuboid_3,es un objeto rojo con forma de cuboide +lime/lime_3,es una especie de fruta circular verde +banana/banana_3,es un plátano amarillo +triangle/triangle_4,es un objeto azul con forma de triángulo +cuboid/cuboid_3,un rectangulo rojo +lime/lime_3,un bombillo verde +banana/banana_3,un platano amarillo +triangle/triangle_4,un triangulo azul +cuboid/cuboid_3,un cubo rojo +lime/lime_3,un limón verde +banana/banana_3,un plátano +triangle/triangle_4,un prisma rectangular azul +cuboid/cuboid_3,bloque rojo +lime/lime_3,bombilla verde +banana/banana_3,amarillo banana +triangle/triangle_4,sin imagen +cuboid/cuboid_3,es un bloque rojo quizás sea un bloque de plastilina +lime/lime_3,este objeto verdoso podría ser una uva +banana/banana_3,vemos una banana amarilla +triangle/triangle_4,el objeto azul en forma de triángulo podría ser un bloque de plastilina +semicylinder/semicylinder_4,es una pieza verde +cube/cube_3,es un cubo azul +lemon/lemon_4,es un limón +corn/corn_1,es un maíz es una mazorca +semicylinder/semicylinder_4,objeto de color verde +cube/cube_3,cubo azul +lemon/lemon_4,un limón amarillo vertical +corn/corn_1,una mazorca +semicylinder/semicylinder_4,mitad de un cilindro verde +cube/cube_3,un cubo azul +lemon/lemon_4,un limón amarillo +corn/corn_1,una espiga de maíz +semicylinder/semicylinder_4,una forma +cube/cube_3,un cuadrado +lemon/lemon_4,una naranja +corn/corn_1,un maíz +semicylinder/semicylinder_4,es un objeto verde con forma de medio cilindro +cube/cube_3,es un objeto azul con forma de cubo +lemon/lemon_4,es un limón +corn/corn_1,es una mazorca de maíz blanco +cabbage/cabbage_4,es una col morada +eggplant/eggplant_1,es una berenjena +lemon/lemon_2,es in limón con una pegatina +potato/potato_4,es una patata +carrot/carrot_1,es una zanahoria que no está recta +cabbage/cabbage_4,este vegetal es un repollo +eggplant/eggplant_1,esto es una berenjena violeta +lemon/lemon_2,un limon amarillo +potato/potato_4,esto es una papa mediana +carrot/carrot_1,una zanahoria anaranjada +cabbage/cabbage_4,es un repollo morado +eggplant/eggplant_1,es una berenjena +lemon/lemon_2,es un limón +potato/potato_4,es una papa +carrot/carrot_1,es una zanahoria +cabbage/cabbage_4,esta formado por varias capas y es comestible +eggplant/eggplant_1,es utilizado para preparar platos deliciosos +lemon/lemon_2,es de color amarillo y forma irregular +potato/potato_4,tiene apariencia de tostada +carrot/carrot_1,tiene forma de oruga y es de color rosado +cabbage/cabbage_4,un repollo púrpura +eggplant/eggplant_1,una berenjena +lemon/lemon_2,un limón amarillo +potato/potato_4,una patata +carrot/carrot_1,una zanahoria +cucumber/cucumber_3,un pepino +cuboid/cuboid_3,un rodillo +cube/cube_3,un cuadrado +arch/arch_4,una curva +cucumber/cucumber_3,un pepino entero grande y verde +cuboid/cuboid_3,un bloque rojo rectangular como los de madera que juegan los ninos +cube/cube_3,un cubo azul +arch/arch_4,un bloque rojo de madera con un lado concavo como los que usan los ninos para formar un puente +cucumber/cucumber_3,es un pepino verde +cuboid/cuboid_3,es un objeto rojo con forma de cuboide +cube/cube_3,es un objeto azul con forma de cubo +arch/arch_4,es un objeto rojo rectangular con un hueco en forma de medio cilindro +cucumber/cucumber_3,vegetal verde con forma falica +cuboid/cuboid_3,barra roja +cube/cube_3,cubo azul +arch/arch_4,rampa roja +cucumber/cucumber_3,un pepino +cuboid/cuboid_3,un prisma rectangular rojo +cube/cube_3,un cubo azul +arch/arch_4,un prisma rectangular rojo con concavidad abierta +triangle/triangle_1,roja rebanada +cucumber/cucumber_1,pepino grande +cabbage/cabbage_1,col morada +tomato/tomato_3,tomate jugoso +triangle/triangle_1,un bloque rosa de forma triangular como si fuera un trozo de tarta +cucumber/cucumber_1,un pepino verde visto desde un extremo +cabbage/cabbage_1,una col lombarda de color morado +tomato/tomato_3,un tomate rojo maduro con su parte verde arriba +triangle/triangle_1,es un objeto rojo con forma de cuña +cucumber/cucumber_1,es un pepino verde +cabbage/cabbage_1,es un repollo +tomato/tomato_3,es un tomate rojo +triangle/triangle_1,un prisma triangular rojo +cucumber/cucumber_1,un pepino +cabbage/cabbage_1,un repollo púrpura +tomato/tomato_3,un tomate +triangle/triangle_1,un rectángulo +cucumber/cucumber_1,un pepino +cabbage/cabbage_1,un repollo +tomato/tomato_3,un tomate +orange/orange_3,naranja madura +carrot/carrot_2,zanahoria larga +orange/orange_3,una naranja +carrot/carrot_2,una zanahoria +orange/orange_3,las naranjas son una buena fuente de vitaminassiempre me como una china después de salir a correr +carrot/carrot_2,las zanahorias son buenas para la visiónesa compañía tiene una política de palo y zanahoria +orange/orange_3,es una naranja +carrot/carrot_2,es una zanahoria naranja muy fina +orange/orange_3,es una naranja +carrot/carrot_2,es una zanahoria +cucumber/cucumber_2,es un pepino verde +carrot/carrot_4,es una zanahoria naranja muy fina +cube/cube_1,es un objeto amarillo con forma de cubo +cuboid/cuboid_1,es un objeto amarillo con forma de cuboide +potato/potato_2,es una patata roja +cucumber/cucumber_2,un pepino +carrot/carrot_4,una zanahoria +cube/cube_1,un cubo amarillo +cuboid/cuboid_1,un prisma rectangular amarillo +potato/potato_2,un tomate +cucumber/cucumber_2,esta fruta es un pepinillo verde +carrot/carrot_4,zanahoria anaranjada u larga +cube/cube_1,un cuadrado amarillo +cuboid/cuboid_1,un rectangulo amarillo +potato/potato_2,una papa roja +cucumber/cucumber_2,es una verdura es un pepino +carrot/carrot_4,es una verdura es una zanahoria +cube/cube_1,parece un cubo de mantequilla +cuboid/cuboid_1,parece una barra de mantequilla +potato/potato_2,es una patata +cucumber/cucumber_2,un pepino maduro y de color verde +carrot/carrot_4,una zanahoria larga derecha y sin cabo +cube/cube_1,no se ve la imagen es un cuadradito gris que dice image3 +cuboid/cuboid_1,un objeto rectangular en tres dimensiones de color amarillo +potato/potato_2,una papa pequena con piel roja +orange/orange_1,es una mandarina +cabbage/cabbage_3,es un repollo +banana/banana_3,es una banana +cylinder/cylinder_1,es una pieza amarilla +arch/arch_3,es una pieza turquesa +orange/orange_1,una naraja +cabbage/cabbage_3,un repollo lila +banana/banana_3,un guineo maduro +cylinder/cylinder_1,un cilindro amarillo +arch/arch_3,media luna +orange/orange_1,naranja jugosa +cabbage/cabbage_3,col morada +banana/banana_3,amarillo banana +cylinder/cylinder_1,barco amarillo +arch/arch_3,medio verde azulado cresent +orange/orange_1,una naranja +cabbage/cabbage_3,un repollo púrpura +banana/banana_3,un plátano +cylinder/cylinder_1,un cilindro amarillo +arch/arch_3,un prisma rectangular verde con concavidad abierta +orange/orange_1,es una naranja +cabbage/cabbage_3,es un repollo morado +banana/banana_3,es un plátano amarillo +cylinder/cylinder_1,es un objeto amarillo con forma de cilindro +arch/arch_3,es un objeto verde rectangular con un hueco en forma de medio cilindro +cube/cube_1,un cuadrado +potato/potato_3,una patata +cabbage/cabbage_3,una roca +plum/plum_3,una manzana +triangle/triangle_1,un triangulo acostado +cube/cube_1,un cubo amarillo +potato/potato_3,una patata +cabbage/cabbage_3,un repollo púrpura +plum/plum_3,una manzana +triangle/triangle_1,un prisma triangular rojo +cube/cube_1,es un cubo amarillo +potato/potato_3,es una papa +cabbage/cabbage_3,es un repollo +plum/plum_3,parece una fruta +triangle/triangle_1,es una pieza roja +cube/cube_1,un bloque en forma de cubo amarillo +potato/potato_3,una papa blanca y pequena +cabbage/cabbage_3,un repollo entero y morado sobre la mesa +plum/plum_3,una manzana roja +triangle/triangle_1,un bloque rojo en forma de porcion de pizza +cube/cube_1,es un objeto amarillo con forma de cubo +potato/potato_3,es una patata +cabbage/cabbage_3,es un repollo morado +plum/plum_3,es una ciruela roja +triangle/triangle_1,es un objeto rojo con forma de cuña +banana/banana_1,es un plátano amarillo +semicylinder/semicylinder_1,es un objeto azul con forma de medio cilindro +banana/banana_4,es un plátano todavía verde +orange/orange_2,es una fruta amarilla +tomato/tomato_2,es un tomate rojo +banana/banana_1,un plátano +semicylinder/semicylinder_1,una curva +banana/banana_4,un plátano +orange/orange_2,una mexicana +tomato/tomato_2,un tomate +banana/banana_1,un plátano +semicylinder/semicylinder_1,mitad de un cilindro azul +banana/banana_4,un plátano +orange/orange_2,una naranja +tomato/tomato_2,un tomate +banana/banana_1,fruta con concha amarilla en forma de falo +semicylinder/semicylinder_1,figura geométrica azul +banana/banana_4,fruta con cascara amarilla en forma de falo +orange/orange_2,fruta amarilla en forma de circulo +tomato/tomato_2,fruta circular de color rojo +banana/banana_1,es un plátano +semicylinder/semicylinder_1,objeto semicircular largo y azul +banana/banana_4,es un plátano +orange/orange_2,objeto circular amarillo +tomato/tomato_2,es un tomate +carrot/carrot_1,una zanahoria +corn/corn_4,un maiz +corn/corn_1,un maz +arch/arch_1,una curva +potato/potato_4,una patata +carrot/carrot_1,una zanahoria +corn/corn_4,una espiga de maíz +corn/corn_1,una espiga de maíz +arch/arch_1,un prisma rectangular amarillo con concavidad aberta +potato/potato_4,una patata +carrot/carrot_1,es una zanahoria naranja que no está recta +corn/corn_4,es una mazorca de maíz blanco +corn/corn_1,es una mazorca de maíz blanco +arch/arch_1,es un objeto amarillo rectangular con un hueco en forma de medio cilindro +potato/potato_4,es una patata +carrot/carrot_1,es una zanahoria +corn/corn_4,es una mazorca +corn/corn_1,es una mazorca +arch/arch_1,es una pieza amarilla +potato/potato_4,es una papa +carrot/carrot_1,zanahoria naranja +corn/corn_4,maiz dulce +corn/corn_1,maiz de campo +arch/arch_1,amarillo cresent +potato/potato_4,patata fresca +arch/arch_1,una curva +cabbage/cabbage_2,una roca +arch/arch_2,una curva +corn/corn_2,un maíz +arch/arch_1,un prisma rectangular amarillo con concavidad abierta +cabbage/cabbage_2,un repollo púrpura +arch/arch_2,un prisma rectangular azul con concavidad aberta +corn/corn_2,una espiga de maíz +arch/arch_1,es un objeto amarillo rectangular con hueco en forma de medio cilindro +cabbage/cabbage_2,es un repollo morado +arch/arch_2,es un objeto azul rectangular con hueco en forma de medio cilindro +corn/corn_2,es una mazorca de maíz blanco +arch/arch_1,un bloque de madera amarillo con el lado izquiero concavo +cabbage/cabbage_2,un repollo morado y entero sobre la mesa +arch/arch_2,un bloque de color celeste con el lado izquiero concavo +corn/corn_2,un choclo pelado blanco sobre la mesada +arch/arch_1,es una figura amarilla +cabbage/cabbage_2,es un alimento morado es un repollo +arch/arch_2,es una figura azul +corn/corn_2,es una mazorca +triangle/triangle_2,figura geométrica amarilla +eggplant/eggplant_3,vegetal morado +arch/arch_2,rampa azul +banana/banana_1,fruta con cascara de color amarillo +triangle/triangle_2,es un objeto rectangular amarillo +eggplant/eggplant_3,es una berenjena +arch/arch_2,es un objeto de plástico de color azul +banana/banana_1,es un plátano amarillo +triangle/triangle_2,un prisma triangular amarillo +eggplant/eggplant_3,una berenjena +arch/arch_2,un prisma rectangular azul con concavidad aberta +banana/banana_1,un plátano +triangle/triangle_2,una rampa +eggplant/eggplant_3,un jiló +arch/arch_2,una curva +banana/banana_1,un plátano +triangle/triangle_2,rectangulo amarillo +eggplant/eggplant_3,planta de huevos +arch/arch_2,medio circulo azul +banana/banana_1,platano largo +corn/corn_3,una espiga de maíz +plum/plum_4,una manzana +eggplant/eggplant_4,una berenjena +cube/cube_4,un cubo rojo +lime/lime_2,un limón verde +corn/corn_3,es una mazorca +plum/plum_4,parece una fruta morada +eggplant/eggplant_4,es una berenjena +cube/cube_4,es un cubo rojo +lime/lime_2,es un limón +corn/corn_3,un maíz +plum/plum_4,una manzana +eggplant/eggplant_4,una berenjena +cube/cube_4,un cuadrado +lime/lime_2,un limón +corn/corn_3,es una mazorca de maíz blanco +plum/plum_4,es una especie de fruta roja +eggplant/eggplant_4,es una berenjena +cube/cube_4,es un objeto con forma de cubo rojo +lime/lime_2,es una fruta de color verde +corn/corn_3,maiz en mazorca +plum/plum_4,manzana rojo +eggplant/eggplant_4,planta de huevos +cube/cube_4,cubo rojo +lime/lime_2,uva verde +plum/plum_2,una manzana +lemon/lemon_2,un limón amarillo +banana/banana_1,un plátano +cuboid/cuboid_3,un prisma rectangular rojo +cuboid/cuboid_1,un prisma rectangular amarillo +plum/plum_2,es una fruta esférica roja +lemon/lemon_2,es un limón con una pegátina +banana/banana_1,es un plátano amarillo +cuboid/cuboid_3,es un objeto rojo con forma de cuboide +cuboid/cuboid_1,es un objeto amarillo con forma de cuboide +plum/plum_2,parece una cebolla morada +lemon/lemon_2,es un limón +banana/banana_1,es una banana +cuboid/cuboid_3,es un rectángulo rojo +cuboid/cuboid_1,es una barra amarilla +plum/plum_2,uva roja +lemon/lemon_2,buton pequeno +banana/banana_1,platano largo +cuboid/cuboid_3,bloque rojo +cuboid/cuboid_1,bloque amarillo +plum/plum_2,una manzana +lemon/lemon_2,una pera +banana/banana_1,un plátano +cuboid/cuboid_3,un cuadrado +cuboid/cuboid_1,un plátano +cuboid/cuboid_2,es un objeto verde con forma de cuboide +eggplant/eggplant_3,es una berenjena +triangle/triangle_4,es un objeto azul con forma de cuña o triángulo +cylinder/cylinder_1,es un objeto amarillo con forma de cilindro +cuboid/cuboid_3,es un objeto rojo con forma de cubo alargado o cuboide +cuboid/cuboid_2,un prisma rectangular verde +eggplant/eggplant_3,una berenjena +triangle/triangle_4,un prisma triangular azul +cylinder/cylinder_1,un cilindro amarillo +cuboid/cuboid_3,un prisma rectangular rojo +cuboid/cuboid_2,es una figura verde es una pieza verde +eggplant/eggplant_3,es una berenjena es un alimento +triangle/triangle_4,es una figura azul +cylinder/cylinder_1,es una pieza amarilla +cuboid/cuboid_3,es una pieza roja +cuboid/cuboid_2,un bloque de madera verde sobre una mesa +eggplant/eggplant_3,una berenjena entera y madura con cabo verde +triangle/triangle_4,un bloque azul en forma de porcion de pizza +cylinder/cylinder_1,un bloque amarillo +cuboid/cuboid_3,un bloque rojo rectangular +cuboid/cuboid_2,bloque verde +eggplant/eggplant_3,planta de huevos +triangle/triangle_4,cuna azul +cylinder/cylinder_1,cilindro amarillo +cuboid/cuboid_3,12 rojo +plum/plum_1,fruta morada +cuboid/cuboid_4,cubo azul +lemon/lemon_1,fruta amarilla +potato/potato_3,tubérculo marron +tomato/tomato_3,fruta circular de color rojo +plum/plum_1,es una ciruela roja +cuboid/cuboid_4,es un objeto de plástico azul con forma de cuboide +lemon/lemon_1,es un limón con una pegatina +potato/potato_3,es un apatata +tomato/tomato_3,es un tomate rojo +plum/plum_1,una manzana +cuboid/cuboid_4,un cuadrado +lemon/lemon_1,una mexerica +potato/potato_3,una patata +tomato/tomato_3,un tomate +plum/plum_1,una manzana +cuboid/cuboid_4,un prisma rectangular azul +lemon/lemon_1,un limón amarillo +potato/potato_3,una patata +tomato/tomato_3,un tomate +plum/plum_1,esta imagen es de una manzana +cuboid/cuboid_4,esta imagen de algo azul +lemon/lemon_1,esta es un imagen de un limon +potato/potato_3,esto es una papa +tomato/tomato_3,esto es una imagen de un tomate +triangle/triangle_3,triangulo verde +eggplant/eggplant_2,sin imagen +carrot/carrot_2,zanahoria naranja +eggplant/eggplant_2,planta de huevos +plum/plum_3,cebolla roja +triangle/triangle_3,un prisma triangular verde +eggplant/eggplant_2,una berenjena +carrot/carrot_2,una zanahoria +eggplant/eggplant_2,una berenjena +plum/plum_3,una manzana +triangle/triangle_3,es un objeto rectangular verde +eggplant/eggplant_2,es una berenjena +carrot/carrot_2,es una zanahoria naranja +eggplant/eggplant_2,es una berenjena +plum/plum_3,es una ciruela roja +triangle/triangle_3,triangulo verde +eggplant/eggplant_2,berenjena grande +carrot/carrot_2,zanahoria larga +eggplant/eggplant_2,berenjena purpura +plum/plum_3,manzana roja +triangle/triangle_3,es una pieza verde +eggplant/eggplant_2,es una berenjena +carrot/carrot_2,es una zanahoria +eggplant/eggplant_2,es una berenjena +plum/plum_3,es una verdura +cucumber/cucumber_3,es verde y grande +corn/corn_3,es un maíz +plum/plum_2,es algo púrpura +lime/lime_3,es una pera +arch/arch_1,es amarillo y tiene una parte curvada +cucumber/cucumber_3,un pepino entero y verde +corn/corn_3,un choclo blanco crudo y pelado +plum/plum_2,una manzana roja +lime/lime_3,una lima verde +arch/arch_1,un bloque de madera amarillo con un lado concavo como para armar un puente +cucumber/cucumber_3,es un pepino verde +corn/corn_3,es una mazorca de maíz blanco +plum/plum_2,es una ciruela roja +lime/lime_3,es una especie de fruta verde +arch/arch_1,es un objeto amarillo rectangular con el hueco con forma de medio cilindro +cucumber/cucumber_3,es un pepino +corn/corn_3,es una mazorca es un maíz +plum/plum_2,parece una verdura +lime/lime_3,es un tomate verde +arch/arch_1,es una pieza amarilla +cucumber/cucumber_3,un pepino +corn/corn_3,una espiga de maíz +plum/plum_2,una manzana +lime/lime_3,un limón verde +arch/arch_1,un prisma rectangular amarillo con concavidad abierta +cabbage/cabbage_3,repollo purpura +corn/corn_1,una mazorca de maiz +cucumber/cucumber_1,un pepinillo verde +semicylinder/semicylinder_1,un semicirculo azul +lemon/lemon_3,un limon amarillo +cabbage/cabbage_3,un repollo púrpura +corn/corn_1,una espiga de maíz +cucumber/cucumber_1,un pepino +semicylinder/semicylinder_1,mitad de un cilindro azul +lemon/lemon_3,un limón amarillo +cabbage/cabbage_3,nuez negra +corn/corn_1,maiz en mazorca +cucumber/cucumber_1,pepino grande +semicylinder/semicylinder_1,medio circulo azul +lemon/lemon_3,limon amarillo +cabbage/cabbage_3,es un repollo morado +corn/corn_1,es una mazorca de maíz blanco +cucumber/cucumber_1,es un pepino verde +semicylinder/semicylinder_1,es un objeto azul con forma de medio cilindro +lemon/lemon_3,es un limón verde +cabbage/cabbage_3,una col lombarda morada cerrada +corn/corn_1,una mazorca de maíz de color más bien blanco +cucumber/cucumber_1,un pepino verde +semicylinder/semicylinder_1,un bloque azul en forma de medio cilindro +lemon/lemon_3,un limón amarillo maduro +banana/banana_4,un plátano +cylinder/cylinder_3,un cilindro azul +lime/lime_4,un limón verde +lime/lime_2,un limón verde +banana/banana_4,platano maduro +cylinder/cylinder_3,cilindro azul +lime/lime_4,uva verde +lime/lime_2,uva dulce +banana/banana_4,un plátano amarillo +cylinder/cylinder_3,un cilindro azul puede ser plastilina +lime/lime_4,un objeto amarillo verdoso +lime/lime_2,un objeto verde que podría ser una uva +banana/banana_4,es un plátano algo verde con manchas +cylinder/cylinder_3,es un objeto azul con forma de cilindro +lime/lime_4,es una lima verde +lime/lime_2,es una lima verde +banana/banana_4,un platano verde +cylinder/cylinder_3,cilindro azul +lime/lime_4,limon verde +lime/lime_2,limon verde +triangle/triangle_2,un rectángulo con punto +lemon/lemon_3,una mancha +lemon/lemon_4,un pedazo de una naranja +carrot/carrot_3,una cola de algún animal +triangle/triangle_2,un bloque amarillo en forma de porcion de pizza +lemon/lemon_3,un limon amarillo con una punta verde +lemon/lemon_4,un limo a amarillo con una puta verde +carrot/carrot_3,una zanahoria doblada +triangle/triangle_2,es una pieza amarilla +lemon/lemon_3,es un limón +lemon/lemon_4,es un limón +carrot/carrot_3,es una zanahoria +triangle/triangle_2,un prisma triangular amarillo +lemon/lemon_3,un limón amarillo +lemon/lemon_4,un limón amarillo +carrot/carrot_3,una zanahoria +triangle/triangle_2,es un objeto amarillo con forma de cuña +lemon/lemon_3,es un limón amarillo con alguna zonas verdes +lemon/lemon_4,es un limón amarillo +carrot/carrot_3,es una zanahoria naranja +arch/arch_3,es un objeto verde rectangular con hueco en forma de medio cilindro +tomato/tomato_4,es un tomate rojo que está poco maduro +cube/cube_2,es un objeto verde con forma de cubo +triangle/triangle_4,es un objeto azul con forma triangular +arch/arch_3,teal rampa +tomato/tomato_4,tomate rojo +cube/cube_2,cubo verde +triangle/triangle_4,triangulo azul +arch/arch_3,es una pieza verde +tomato/tomato_4,es un tomate +cube/cube_2,es un cubo verde +triangle/triangle_4,es una figura azul +arch/arch_3,un prisma rectangular verde con concavidad abierta +tomato/tomato_4,un tomate +cube/cube_2,un cubo verde +triangle/triangle_4,un prisma triangular azul +arch/arch_3,una pieza con una forma de puente +tomato/tomato_4,una fruta roja llamada tomate +cube/cube_2,un objeto con forma de cubo +triangle/triangle_4,una pieza con forma de rampa +carrot/carrot_1,una zanahoria +arch/arch_4,un prisma rectangular rojo con concavidad abierta +semicylinder/semicylinder_2,mitad de un cilindro rojo +cylinder/cylinder_1,un cilindro amarillo +banana/banana_2,un plátano +carrot/carrot_1,esta imagen es rosita +arch/arch_4,esta imagen is de un jugete de madera +semicylinder/semicylinder_2,esta imagen es roja +cylinder/cylinder_1,esta imagen amarillo +banana/banana_2,esta imagen es de un platano +carrot/carrot_1,es una zanahoria naranja que no está recta +arch/arch_4,es un objeto rojo rectangular con un hueco en forma de medio cilindro +semicylinder/semicylinder_2,es un objeto rojo con formas de medio cilindro +cylinder/cylinder_1,es un objeto amarillo con forma de cilindro +banana/banana_2,es un plátano amarillo +carrot/carrot_1,es una zanahoria +arch/arch_4,parece una montaña +semicylinder/semicylinder_2,es un vegetal +cylinder/cylinder_1,es una mazorca +banana/banana_2,es algo diferente este objeto +carrot/carrot_1,una zanahoria +arch/arch_4,una curva +semicylinder/semicylinder_2,una forma +cylinder/cylinder_1,un rodillo +banana/banana_2,un plátano +carrot/carrot_3,una zanahoria larga +semicylinder/semicylinder_4,un objeto verde +lime/lime_4,un vegetal verde +carrot/carrot_4,una zanahoria vertical +arch/arch_1,un poliedro amarillo con agujero +carrot/carrot_3,tiene una forma larga delgada y es de color naranja +semicylinder/semicylinder_4,arriba es redonda y abajo es plano es de color verde +lime/lime_4,tiene una forma redonda textura muy lisa y es de color verde +carrot/carrot_4,tiene una textura rugosa es largo y delgado con ciertas curvaturas +arch/arch_1,tiene una forma peculiar de un lado tiene una curva y del otro es plano +semicylinder/semicylinder_2,medio cilindro rojo +orange/orange_1,tomate casi maduro +plum/plum_2,manzana madura +cuboid/cuboid_4,paralelepipedo azul horizontal +potato/potato_3,papa amarilla limpia +semicylinder/semicylinder_2,seccion de un objeto cilindrico de color rojo +orange/orange_1,una naranja o mandarina madura +plum/plum_2,fragmento de una superficie similar a piel de manzana +cuboid/cuboid_4,objeto con forma de prisma rectangular de bordes redondeados y color azul +potato/potato_3,una papa marron alargada +eggplant/eggplant_1,vegetal morado +lime/lime_2,fruta redonda verde +cucumber/cucumber_2,vegetal verde y alargado +corn/corn_2,estructura vegetal llena de granos +eggplant/eggplant_3,fruta morada +eggplant/eggplant_1,berenjena morada de gran tamaño +lime/lime_2,limon verde +cucumber/cucumber_2,pepino verde con concha tamaño mediano +corn/corn_2,maiz blanco semi desgranado tamaño mediano +eggplant/eggplant_3,berenjena pequeña de color morado +lemon/lemon_1,redondo acido y de color amarillo +cucumber/cucumber_1,largo con espinas y de color verde +cabbage/cabbage_3,grande redondo y de textura aspera y de color morado +cabbage/cabbage_4,redondo aspero y de color morado +lemon/lemon_1,es una lemon +cucumber/cucumber_1,es un zuchinni +cabbage/cabbage_3,es una avacado +cabbage/cabbage_4,es una prune +semicylinder/semicylinder_3,seccion de un objeto cilindrico de color amarillo con una textura parecida a la tiza +tomato/tomato_4,un tomate manzano maduro +banana/banana_3,una banana o cambur maduro +cube/cube_4,cubo de color rojo +semicylinder/semicylinder_3,esponja amarilla con cierta forma triangular +tomato/tomato_4,tomate redondo de color rojo con corona de hojas +banana/banana_3,platano amarillo de tamaño mediano +cube/cube_4,cubo rojo +carrot/carrot_2,una zanahoria larga +cube/cube_4,un objecto rojo similar a un cubo +triangle/triangle_2,un poliedro amarillo +tomato/tomato_1,un tomate rojo +carrot/carrot_2,tiene una forma larga y delgada su color es naranja pálido +cube/cube_4,tiene una forma cuadrada y es de color rojo +triangle/triangle_2,tiene una forma triangular y es de color amarillo +tomato/tomato_1,tiene una forma redonda casi perfecta y su color es un rojo muy llamativo +cucumber/cucumber_2,un pepino +arch/arch_2,un prisma rectangular azul con concavidad aberta +cuboid/cuboid_3,un prisma rectangular rojo +cabbage/cabbage_1,un repollo púrpura +cucumber/cucumber_2,vegetal verde alargado +arch/arch_2,rampa azul +cuboid/cuboid_3,barra roja +cabbage/cabbage_1,estructura vegetal morada formada por hojas +banana/banana_2,el objeto es una fruta de forma alargada y curva es de color amarillo +arch/arch_1,es un objeto de forma irregular es de color amarillo +carrot/carrot_2,el objeto es una fruta de forma alargada es de color naranja +cube/cube_3,el objeto es de forma cúbica es de color azul +cube/cube_1,el objeto es de forma cúbica es de color amarillo +banana/banana_2,es una plátano una fruta +arch/arch_1,figura geométrica color amarillo rectángulo con un arco cruzandolo +carrot/carrot_2,es una zanahoria parece una varita de mago +cube/cube_3,cubo color azul figura geométrica cúbica +cube/cube_1,cubo color amarillo parece un pedazo de mantequilla +cylinder/cylinder_2,el objeto es de forma cilíndrica es de color rojo +lime/lime_4,el objeto es una fruta de color verde parece de forma redondeada +cuboid/cuboid_4,el objeto es de color azul es un cubo +tomato/tomato_1,el objeto es una fruta de color rojo es de forma redondeada +cylinder/cylinder_2,redondo largo rojo y de textura suave +lime/lime_4,redondo pequeño verde y acido +cuboid/cuboid_4,rectangular azul y largo +tomato/tomato_1,redondo peqyeño y de textura suave +tomato/tomato_3,un tomate rojo +triangle/triangle_3,un poliedro verde oscuro +cube/cube_1,un cubo amarillo +lime/lime_1,un limòn verde +tomato/tomato_3,un tomate +triangle/triangle_3,un prisma triangular verde +cube/cube_1,un cubo amarillo +lime/lime_1,un limón verde +eggplant/eggplant_4,es una berenjena de color negro con tallo sobre una base blanca +cabbage/cabbage_1,es un repollo morado sobre una base gris +banana/banana_1,es una banana +corn/corn_3,es un maiz blanco sobre una base gris +eggplant/eggplant_4,tiene una forma algo peculiar en un extremo grande y en el otro pequeño es de color morado +cabbage/cabbage_1,tiene una forma redonda casi perfecta es de color morado y se nota que tiene varias capas +banana/banana_1,tiene una prolongada curvatura se ve frágil y su color es amarillo +corn/corn_3,se ve bastante robusto aunque su textura es peculiar su color es muy pálido +semicylinder/semicylinder_4,un medio cilindro verde +tomato/tomato_3,un jitomate rojo +semicylinder/semicylinder_1,medio cilindro azul +plum/plum_3,manzana roja inclinada +cylinder/cylinder_2,cilindro rojo +semicylinder/semicylinder_4,forma triangular de color verde +tomato/tomato_3,tomate redondo de color rojo con corona de hojas maduro +semicylinder/semicylinder_1,foma semi ovalada colorr azul +plum/plum_3,esfera morada +cylinder/cylinder_2,cilindro rojo +banana/banana_2,es el fruto de un árbol de color amarillo y alargado +corn/corn_2,es el fruto de una planta es alargado amarillo y compuesto de múltiples granos +cylinder/cylinder_4,es un objeto con forma de cilindro de color verde +tomato/tomato_3,es un fruto de color rojo y forma esférica +potato/potato_3,es una hortaliza de color amarillo y forma irregular +banana/banana_2,es una banana de color amarilla +corn/corn_2,es un maiz de color blanco algo seco +cylinder/cylinder_4,es un cilindro de color verde en forma horizontal +tomato/tomato_3,no se ve la imagen +potato/potato_3,es una patata de color cafe claro +semicylinder/semicylinder_3,medio cilindro amarillo +carrot/carrot_3,zanahoria palida +lemon/lemon_1,limon amarillo +cylinder/cylinder_3,cilindro azul +potato/potato_3,papa amarilla limpia +semicylinder/semicylinder_3,un prisma triangular amarillo +carrot/carrot_3,una zanahoria +lemon/lemon_1,un limón amarillo +cylinder/cylinder_3,un cilindro azul +potato/potato_3,una patata +cylinder/cylinder_4,tiene una forma cilíndrica y es de color verde +cuboid/cuboid_2,cuenta con una forma rectangular tu textura se nota lisa y es de color verde +cylinder/cylinder_4,tiene una forma cilíndrica es un poco largo y su color es verde +orange/orange_3,es redondo arriba tiene una pequeña mancha su textura se nota lisa y es de color naranja +cylinder/cylinder_4,me parece un rodillo de color verde +cuboid/cuboid_2,es como un objeto de limpieza de color verde como un jabon +cylinder/cylinder_4,es como un rodillo es de color verde +orange/orange_3,es una concha de naranja +carrot/carrot_3,zanahoria palida +tomato/tomato_1,tomate maduro +eggplant/eggplant_2,berengena morada +plum/plum_3,manzana madura +carrot/carrot_3,una zanahoria +tomato/tomato_1,un tomate +eggplant/eggplant_2,una berenjena +plum/plum_3,una manzana +cabbage/cabbage_1,el objeto parece un repollo de color violeta o tal una planta de lechuga tiene una forma ligeramente ovalada +tomato/tomato_4,lo que se ve es un tomate su color es un rojo no muy intenso como si no estuviese del todo maduro +cube/cube_4,el objeto es parte de una figura geométrica o prisma es de color rojo o bordó y se ve una arista redondeada +banana/banana_4,el objeto es una banana no parece del todo madura puesto que su color no es amarillo sino más bien verdoso +orange/orange_3,lo que se ve parece una fruta una naranja su color es una naranja no muy intenso +cabbage/cabbage_1,un repollo púrpura +tomato/tomato_4,un tomate +cube/cube_4,un cubo rojo +banana/banana_4,un plátano +orange/orange_3,una naranja +eggplant/eggplant_3,una berenjena horizontal +cabbage/cabbage_3,un vegetal con hojas +lemon/lemon_3,un limon maduro +banana/banana_2,un platano horizontal +eggplant/eggplant_3,una berenjena vertical +eggplant/eggplant_3,una berenjena +cabbage/cabbage_3,un repollo púrpura +lemon/lemon_3,un limón amarillo +banana/banana_2,un plátano +eggplant/eggplant_3,una berenjena +tomato/tomato_2,parece un tomate de color rojo maduro listo para comer la variedad diría que es tomate pera +cucumber/cucumber_2,es un pepino verdura de color verde +cucumber/cucumber_4,mismo pepino que el objeto anterior es de tamaño medio listo para echar a la ensalada +plum/plum_1,es un objeto de forma redonda de color rojizo podría tratarse de una manzana pero no se ve bien +lime/lime_1,es algún tipo de alimento podría tratarse de una lima por el color amarillo verde chillón +tomato/tomato_2,fruta redonda de color rojo +cucumber/cucumber_2,vegetal verde con forma falica +cucumber/cucumber_4,vegetal verde y alargado +plum/plum_1,fruta morada redonda +lime/lime_1,estructura vegetal verde +plum/plum_4,un objeto de morado oscuro +cylinder/cylinder_3,un cilindro de color azul +potato/potato_4,es una patata de color cafe claro +cabbage/cabbage_2,es un repollo morado sobre una base de color gris +cube/cube_4,es un cuadrado de color rojo +plum/plum_4,fragmento de una superficie similar a piel de manzana +cylinder/cylinder_3,un objeto cilindrico de color azul +potato/potato_4,fragmento de una superficie similar a piel de papa +cabbage/cabbage_2,un repollo de color morado +cube/cube_4,un cubo de color rojo +cuboid/cuboid_3,taco de color rojo en posición horizontal +eggplant/eggplant_2,berenjena mediana color morado oscuro y tallo verde +lemon/lemon_2,lima amarilla forma redonda +tomato/tomato_2,tomate maduro color rojo +carrot/carrot_1,zanahoria anaranjada delgada y larga +cuboid/cuboid_3,paralelepipedo rojo +eggplant/eggplant_2,berengena morada +lemon/lemon_2,limon amarillo +tomato/tomato_2,tomate maduro +carrot/carrot_1,zanahoria palida +triangle/triangle_1,triangulo rojo +banana/banana_2,banana de color amarillo claro +lemon/lemon_2,limon amarillo +eggplant/eggplant_3,berengena morada +banana/banana_1,banana amarilla +triangle/triangle_1,figura geometrica roja +banana/banana_2,fruta con cascara de color amarillo y forma de falo +lemon/lemon_2,fruta circular amarilla +eggplant/eggplant_3,vegetal morado +banana/banana_1,fruta con cascara de color amarillo +plum/plum_1,es de color rojo y su textura se nota lisa la luz que le pega brilla en su cuerpo su color es rojo +cucumber/cucumber_3,es de color verde largo y un poco grueso se nota delicado +cuboid/cuboid_3,tiene forma cuadrada pero un poco larga es de color rojo +lemon/lemon_3,tiene una forma muy redonda su textura es peculiar tiene color amarillo con tonos de verde +cuboid/cuboid_3,pareciera un cuadrado pero más alto y de color rojo +plum/plum_1,esfera vinotinto +cucumber/cucumber_3,pepino verde largo +cuboid/cuboid_3,taco de color rojo en posición horizontal +lemon/lemon_3,lima amarilla +cuboid/cuboid_3,taco de color rojo en posición vertical +cylinder/cylinder_1,cilindro de color amarillo en forma vertical +cucumber/cucumber_4,pepino de color verde en forma horizontal +eggplant/eggplant_4,bernjena de color negra +carrot/carrot_1,zanahoria de color rosa con punta doblada +eggplant/eggplant_4,es una berenjena grande de color negra sobre una base blanca +cylinder/cylinder_1,un cilindro amarillo +cucumber/cucumber_4,un pepino +eggplant/eggplant_4,una berenjena +carrot/carrot_1,una zanahoria +eggplant/eggplant_4,una berenjena +cube/cube_4,un cubo rojo +banana/banana_4,un plátano +triangle/triangle_4,un prisma triangular azul +lemon/lemon_2,un limón amarillo +plum/plum_3,una manzana +cube/cube_4,es pequeño cuadrado rojo +banana/banana_4,largo verde aspero y seco +triangle/triangle_4,triangular pequeños asuz y seco +lemon/lemon_2,redondo agrio pequeño +plum/plum_3,redondo rojo y queño +corn/corn_2,mazorca de maiz blanco +arch/arch_2,medio tubo azul +cuboid/cuboid_2,paralelepipedo verde horizontal +corn/corn_2,fruto amarillo de una planta de forma alargada y llena de granos con él se hacen palomitas +arch/arch_2,objeto semiesférico y de color azul +cuboid/cuboid_2,parece una barra de mantequilla pero de color verde +cube/cube_2,cubo verde +lime/lime_4,limon verde +tomato/tomato_1,tomate maduro de color rojo sin hojas redondo +cylinder/cylinder_1,forma amarilla +semicylinder/semicylinder_1,semicirculo de color azul +cube/cube_2,es un cuadrado de color verde +lime/lime_4,es un limon de color verde +tomato/tomato_1,es un tomate roma de color rojo intenso +cylinder/cylinder_1,objeto de color amarillo +semicylinder/semicylinder_1,es un objeto de color azul con forma redondeada +cucumber/cucumber_4,este es un pepino verde y alargado +cabbage/cabbage_3,una berenjena roja y redonda +banana/banana_4,un platano verde +banana/banana_4,este es un platano verde +cucumber/cucumber_4,un pepino +cabbage/cabbage_3,un repollo púrpura +banana/banana_4,un plátano +banana/banana_4,un plátano +banana/banana_1,tiene una forma larga de color amarillo y una curvatura +cabbage/cabbage_2,su forma es redonda de color morado y tiene detalles en blanco +carrot/carrot_1,tiene una forma muy larga y es de color naranja y delgado +banana/banana_1,tiene una forma larga pero con una curvatura y es de color amarillo +triangle/triangle_3,tiene una forma rectangular y es de color verde +banana/banana_1,es el fruto de un árbol de color amarillo y alargado +cabbage/cabbage_2,es una verdura con forma de pelota de béisbol de color morado +carrot/carrot_1,es una verdura de color naranja y forma alargada +banana/banana_1,es el fruto de un árbol de color amarillo y alargado +triangle/triangle_3,es un objeto con forma de prisma piramidal y color verde +arch/arch_1,forma de color amarillo +tomato/tomato_3,tomate maduro de color rojo con hojas redondo +semicylinder/semicylinder_1,semiesfera de color azul +eggplant/eggplant_4,berenjena pequeña de color morado y tallo verde +arch/arch_1,medio tubo amarillo +tomato/tomato_3,tomate rojo +semicylinder/semicylinder_1,medio tubo azul +eggplant/eggplant_4,berengena morada +potato/potato_1,es un durazno figura redonda +cube/cube_4,es un cubo color rojo figura geométrica cúbica +arch/arch_4,figura geométrica roja rectángulo atravesado por un ardo +cuboid/cuboid_1,figura rectangular amarilla es una mantequilla +lime/lime_4,parece un limón podría ser una sandía +potato/potato_1,el objeto parece ser una fruta de forma redondeada es de color rojo oscuro +cube/cube_4,el objeto parece ser de forma cúbica es de color rojo +arch/arch_4,el objeto es de forma irregular es de color rojo +cuboid/cuboid_1,el objeto es de color amarillo es de forma cúbica +lime/lime_4,el objeto es de color verde aparenta ser una fruta +semicylinder/semicylinder_4,triangular verde seco +cube/cube_2,cuadrado pequeño verde seco +semicylinder/semicylinder_2,achatado redondo ovalado rojo +carrot/carrot_2,largo desformado seco y de color naranja +semicylinder/semicylinder_4,mitad de un cilindro verde +cube/cube_2,un cubo verde +semicylinder/semicylinder_2,mitad de un cilindro rojo +carrot/carrot_2,una zanahoria +triangle/triangle_4,el objeto es un prisma azul de base triangular pero está apoyado sobre una de las caras laterales la cara triangular corresponde a un triángulo rectángulo escaleno +cucumber/cucumber_3,lo que se ve es un zucchini o tal vez un pepino tiene forma cilíndrica y es de color verde oscuro +cylinder/cylinder_2,esto es un cilindro de color rojo o bordó que está apoyado sobre una de las caras circulares es más alto que ancho +cuboid/cuboid_4,lo que vemos es un prisma de color azul francia parece un paralelepípedo con dos caras cuadradas y cuatro rectangulares +triangle/triangle_4,un tope de puerta o cuña de forma triangular y de color azul +cucumber/cucumber_3,un pepino de buen tamaño de color verde +cylinder/cylinder_2,un prisma cilindrico de color rojo de un material plástico o brillante +cuboid/cuboid_4,un prisma rectangular de color azul de un material brillante parecido al plástico +cube/cube_1,tiene una forma rectangular y su color amarillo oscuro luce opaco +cuboid/cuboid_1,tiene una forma cuadrado y alargada de color amarillo +triangle/triangle_3,tiene una forma triangular y es de color verde +arch/arch_2,su forma es algo particular abajo es totalmente recto y arriba tiene una curvatura +semicylinder/semicylinder_2,arriba cuenta con una forma redonda mientras que en su parte de abajo es plano su color es rojo +cube/cube_1,es un cubo de color amarillo +cuboid/cuboid_1,es una figura con forma de prisma de color amarillo +triangle/triangle_3,es un objeto con forma de prisma triangular de color verde +arch/arch_2,es un objeto azul con forma de puente invertido +semicylinder/semicylinder_2,es un objeto de color rojo con forma de mitad de un cilindro +banana/banana_4,es una fruta amarilla dulce con pintas negras y con forma semiesférica +arch/arch_3,es un objeto de forma semiesférica o de media luna +lime/lime_3,es un objeto esférico y de color verde +lime/lime_2,es un objeto que parece de plástico de color verde y esférico en la parte de arriba +cabbage/cabbage_2,es una planta comestible redonda y de hojas lisas y con un cogollo es de color morado +banana/banana_4,es un platano o una banana ya madura de color amarillo y ya suelta del racimo +arch/arch_3,es una pieza o molde al parecer de un material plástico o de superficie brillante con una entrada semicircular y extremos cuadrados +lime/lime_3,un objeto con una textura brillante parecida al de un limón color verde y de una silueta parecida al de una almeja vista desde arriba +lime/lime_2,un objeto con una textura brillante parecida al de un limón color verde y de una silueta parecida al de una almeja vista desde arriba +cabbage/cabbage_2,un objeto parecido a una col o a otra legumbre de un color negruzco con tonos entre morados y verdes con pliegues parecidos a hojas +eggplant/eggplant_4,el objeto es una verdura de color negro tiene una pequeña parte verde en la parte superior +triangle/triangle_4,el objeto es de forma triangular es de color azul +cucumber/cucumber_2,el objeto es una verdura de forma alargada es de color verde +cuboid/cuboid_3,el objeto es de forma cúbica es de color rojo +lime/lime_2,el objeto es de color verde aparenta ser una fruta +eggplant/eggplant_4,es una fruta es una berenjena +triangle/triangle_4,pareciera un objeto que sirve para poner cosas en el +cucumber/cucumber_2,es una lechoza verde +cuboid/cuboid_3,es un objeto color rojizo que pareciera un jabon +lime/lime_2,parece una molecula color verde +lime/lime_2,limon verde +cabbage/cabbage_2,repollo morado redondo y grande +semicylinder/semicylinder_3,forma amarilla +plum/plum_4,esfera morada +lime/lime_2,el objeto es de color verde parece una fruta +cabbage/cabbage_2,el objeto es una verdura de muchas hojas es de color morado +semicylinder/semicylinder_3,el objeto es de color amarillo es de forma triangular +plum/plum_4,el objeto es una fruta redondeada es de color rojo oscuro +carrot/carrot_4,es una zanahoria larga de color rosado +cube/cube_3,es un cuadrado de color azul en un fondo negro +cabbage/cabbage_3,es un repollo negro sobre una base blanca +cabbage/cabbage_4,es un repollo morado de lado en una base blanca +carrot/carrot_4,lo que vemos es una zanahoria muy fina y alargada +cube/cube_3,el objeto es un prisma de color azul intenso parece un cubo o paralelepípedo +cabbage/cabbage_3,es un objeto casi esférico de color grisáceo con surcos parece alguna verdura comestible tal vez un repollo +cabbage/cabbage_4,el objeto es una planta de repollo de color violeta intenso se ve donde fue seccionado el tallo +cube/cube_1,es un cubo amarillo muy parecido a un queso +plum/plum_3,parece ser una uva o manzana pero no se percibe muy bien es de color rojo +corn/corn_1,maiz completo de colo claro casi blanco en estado sin cocinar +eggplant/eggplant_4,parece ser una berenjena de color casi negro +semicylinder/semicylinder_2,una figura semi redonda de color rojo y un poco ancha +cube/cube_1,es un objeto con forma de cubo de color amarillo +plum/plum_3,es un fruto de color morado y forma esférica +corn/corn_1,es el fruto de la planta del maíz y tiene forma alargada y color amarilloestá formada por múltiples granos +eggplant/eggplant_4,es una verdura de color morado alargada brillante +semicylinder/semicylinder_2,es un objeto de color rojo con forma de cilindro a la mitad +cuboid/cuboid_2,paralelepipedo verde +plum/plum_3,manzana madura +cabbage/cabbage_2,repollo morado +arch/arch_1,medio tubo amarillo +carrot/carrot_3,zanahoria palida +cuboid/cuboid_2,un prisma rectangular verde +plum/plum_3,una manzana +cabbage/cabbage_2,un repollo púrpura +arch/arch_1,un prisma rectangular amarillo con concavidad aberta +carrot/carrot_3,una zanahoria +cabbage/cabbage_1,repollo morado +cube/cube_3,cubo azul +corn/corn_1,mazorca de maiz +eggplant/eggplant_1,berengena morada +corn/corn_1,mazorca de maiz blanco +cabbage/cabbage_1,un repollo púrpura +cube/cube_3,un cubo azul +corn/corn_1,una espiga de maíz +eggplant/eggplant_1,una berenjena +corn/corn_1,una espiga de maíz +lime/lime_2,fragmento de una superficie similar a piel de limon +banana/banana_3,una banana o cambur maduro +eggplant/eggplant_1,una berenjena madura +cucumber/cucumber_2,un pepino de color verde con textura corrugosa +cuboid/cuboid_1,un objeto con forma de prisma rectangular de color amarillo +lime/lime_2,limon verde +banana/banana_3,platano grande color amarillo +eggplant/eggplant_1,berenjena grande color morado oscuro +cucumber/cucumber_2,pepino verde +cuboid/cuboid_1,cubo alargado de color amarillo en posición horizontal +arch/arch_1,tiene una forma peculiar abajo es plano y arriba tiene una curvatura +semicylinder/semicylinder_4,arriba tiene una curvatura y abajo es plano su color es verde +eggplant/eggplant_1,tiene una forma algo extraña una parte es gruesa y otra es pequeña +orange/orange_2,tiene una forma redonda y es de color amarillo +cucumber/cucumber_2,tiene una forma larga tiene similitud a la de una sandía es de color verde +arch/arch_1,rampa amarilla +semicylinder/semicylinder_4,forma verde semicircular +eggplant/eggplant_1,berenjena de color morado con tallo verde +orange/orange_2,esfera amarilla mostaza +cucumber/cucumber_2,pepino grande con color verde +banana/banana_4,el objeto es una fruta de forma alargada y curva es de color verde +cylinder/cylinder_4,el objeto es de forma cilíndrica es de color verde +cube/cube_1,el objeto es un cubo es de color amarillo +corn/corn_3,el objeto es una verdura compuesta por muchos dientes es de color blancuzco +cylinder/cylinder_3,el objeto es de forma cilíndrica es de color azul +banana/banana_4,un plátano +cylinder/cylinder_4,un cilindro verde +cube/cube_1,un cubo amarillo +corn/corn_3,una espiga de maíz +cylinder/cylinder_3,un cilindro azul +semicylinder/semicylinder_3,medio tubo amarillo +triangle/triangle_1,triangulo vinotinto +semicylinder/semicylinder_3,medio tubo amarillo +cabbage/cabbage_3,repollo morado +lemon/lemon_3,limon amarillo +semicylinder/semicylinder_3,es de color amarillo y forma de media circunferencia +triangle/triangle_1,polígono de tres lados y de color rojo +semicylinder/semicylinder_3,es de color amarillo y parece una circunferencia cortada a la mitad +cabbage/cabbage_3,es una planta comestible morada redonda y de hojas lisas +lemon/lemon_3,es una fruta cítrica con forma de huevo y de color amarillo +semicylinder/semicylinder_1,el objeto es un prisma de color azul intenso podría pensarse como una porción menor a la mitad de un prisma de base circular +eggplant/eggplant_3,vemos una berenjena de color muy oscuro casi negra con parte del tallo visible de color verde +potato/potato_1,el objeto es alguna clase de fruto o más bien un tubérculo tiene un color rojo opaco y forma casi esférica +eggplant/eggplant_1,el objeto es una berenjena de color negro vemos el tallo color verde en primer plano +semicylinder/semicylinder_1,mitad de una esfera color azul +eggplant/eggplant_3,berenjena pequeña color morado oscuro y tallo verde +potato/potato_1,esfera vinotinto oscuro +eggplant/eggplant_1,berenjena grande color negro y tallo verde +carrot/carrot_3,una zanahoria +lemon/lemon_4,un limón amarillo +carrot/carrot_2,una zanahoria +cube/cube_2,un cubo verde +potato/potato_4,una patata +carrot/carrot_3,es una hortaliza de color naranja y forma alargada +lemon/lemon_4,es un fruto de color amarillo piel rugosa su forma es cilíndrica un poco ovalada +carrot/carrot_2,es una hortaliza de color naranja y forma alargada +cube/cube_2,es un objeto con forma de cubo de color verde +potato/potato_4,es una hortaliza de color amarillo y forma irregular su piel no es suave +tomato/tomato_3,un tomate +lemon/lemon_2,un limón amarillo +cube/cube_4,un cubo rojo +arch/arch_1,un prisma rectangular amarillo con concavidad aberta +eggplant/eggplant_2,una berenjena +tomato/tomato_3,es el fruto de una planta es rojo y forma esférica +lemon/lemon_2,es el fruto de un árbol forma esférica y color amarillo +cube/cube_4,es un objeto con forma de cubo de color rojo +arch/arch_1,es un objeto de color amarillo con forma de puente +eggplant/eggplant_2,es una verdura de color morado forma alargada y textura brillante +cube/cube_2,cuadrado pequeño y de color verde +cube/cube_2,cuadrado pequeño y de color verde +potato/potato_2,redondo de color marron desformado y de textura aspera +corn/corn_3,largo blanco con dientes y jugoso +cube/cube_2,cubo verde +cube/cube_2,cubo verde +potato/potato_2,remolacha madura +corn/corn_3,mazorca de maiz blanco +plum/plum_3,es una fruta de color morado y forma esférica piel brillante y lisa +eggplant/eggplant_2,es una verdura de color morado piel suave y brillante +cucumber/cucumber_1,es una hortaliza de forma cilíndrica y verde su textura es rugosa +carrot/carrot_4,es una hortaliza de color naranja y forma alargada +plum/plum_3,una manzana +eggplant/eggplant_2,una berenjena +cucumber/cucumber_1,un pepino +carrot/carrot_4,una zanahoria +semicylinder/semicylinder_4,ovalado de color verde y textura suave +banana/banana_1,largo amarillo y de textura suave +semicylinder/semicylinder_4,ovalado de color verde y de textura suave +eggplant/eggplant_2,de color morado y de textura suave +triangle/triangle_3,triangular verde y de textura suave +semicylinder/semicylinder_4,tiene una forma algo particular y extraña se notan en su mayoría curvaturas +banana/banana_1,se ve que tiene una forma larga pero con una prolongada curva es de color amarillo +semicylinder/semicylinder_4,su forma generalmente con curvas es algo rara es de color verde +eggplant/eggplant_2,tiene una forma particular arriba grueso y abajo delgado es de color morado +triangle/triangle_3,tiene una forma triangular y es de color verde +cube/cube_3,cubo azul +potato/potato_2,tomate muy madurp +lime/lime_4,limon verde +carrot/carrot_3,zanahoria palida +cube/cube_3,el objeto es un cubo es de color azul +potato/potato_2,el objeto es una fruta de color rojo es de forma redondeada +lime/lime_4,el objeto es de color verde parece ser algñun tipo de fruta +carrot/carrot_3,el objeto es una verdura de forma alargada es de color naranja +cucumber/cucumber_3,el objeto es una verdura de color verde es de forma alargada +arch/arch_2,es un objeto de forma irregular es de color azul +cylinder/cylinder_2,el objeto es de forma cilíndrica y color rojo se encuentra volteado sobre uno de sus lados +tomato/tomato_2,el objeto es una fruta redondeada es de color rojo +plum/plum_2,el objeto es de color rojomorado parece ser un fruto +cucumber/cucumber_3,pepino verde +arch/arch_2,medio tubo azul horizontal +cylinder/cylinder_2,cilindro rojo +tomato/tomato_2,tomate maduro +plum/plum_2,remolacha madura +cube/cube_3,un cubo azul +potato/potato_1,una manzana +lime/lime_3,un limón verde +potato/potato_3,una patata +cuboid/cuboid_2,un prisma rectangular verde +cube/cube_3,es un cuadrado de color azul +potato/potato_1,es una patata de color cafe de tamaño pequeña +lime/lime_3,es una fruta de color verde como una manzana o pera +potato/potato_3,no se ve la imagen +cuboid/cuboid_2,rectangulo de color verde musgo en forma vertical sobre una base blanca +potato/potato_1,una bola marrón +semicylinder/semicylinder_3,un cilindro partido por la mitad y puesto hacia abajo con la parte plana +orange/orange_3,una pelota naranja +tomato/tomato_3,un tomate rojo con la conexión encima +potato/potato_1,una manzana +semicylinder/semicylinder_3,mitad del un cilindro amarillo +orange/orange_3,una naranja +tomato/tomato_3,un tomate +banana/banana_2,es una fruta con forma alargada su cáscara es amarilla y por dentro es blanco +plum/plum_2,es una fruta de color rojo por dentro es amarilla +lime/lime_1,es un objeto de color verde esférico parece una fruta +carrot/carrot_2,es un objeto alargado con forma de cilindro de color naranja +corn/corn_4,es el fruto de una planta es alargado y está compuesto de muchos granos de color amarillo +banana/banana_2,parece ser un platanito o banano de color amarillo un poco maduro +plum/plum_2,parece ser una uva o manzana pero no se percibe muy bien es de color rojo +lime/lime_1,objeto de color verde sin forma definida puede ser una fruta +carrot/carrot_2,objeto de color rosado y de una forma alargada +corn/corn_4,maíz completo de colo claro casi blanco en estado sin preparar listo para cocinar +potato/potato_1,una manzana roja +plum/plum_2,una manzana roja +cylinder/cylinder_2,un cilindro horizontal rojo +plum/plum_3,una manzana roja +potato/potato_1,tiene una forma algo ovalada y predomina su color rojo oscuro también tiene un pequeño hundimiento +plum/plum_2,tiene una forma peculiar sobre todo por tu parte de abajo tiene tonos de colores rojos +cylinder/cylinder_2,tiene forma cilíndrica y es de color rojo +plum/plum_3,tiene una forma algo ovalada y arriba tiene un hundimiento tiene colores rojos de varios tonos +cuboid/cuboid_1,es un objeto con forma de prisma de color amarillo +plum/plum_3,es una fruta de color rojo por dentro es amarilla +lime/lime_1,es un objeto de color verde con textura de fruta +lemon/lemon_4,es una fruta de color amarillo +cuboid/cuboid_1,un cubo amarillo +plum/plum_3,una manzana +lime/lime_1,un limón verde +lemon/lemon_4,una naranja +eggplant/eggplant_2,verengena morada +cylinder/cylinder_2,cilindro rojo vertical +eggplant/eggplant_1,verengena morada +plum/plum_3,manzana roja +cuboid/cuboid_2,paralelepipedo verde horizontal +eggplant/eggplant_2,parece una fruta creo es una berenjena +cylinder/cylinder_2,es un objeto rojizo que parece un cilindro +eggplant/eggplant_1,es una fruta que me parece tambien una berenjena +plum/plum_3,pareciera como un ser vivo del mar +cuboid/cuboid_2,es de color verde pareciera de uso de limpieza como un jabon +plum/plum_3,una manzana roja +plum/plum_2,un objecto rojo similar a una manzana +orange/orange_3,una naranja madura +carrot/carrot_4,una zanahoria larga +plum/plum_3,de forma esférica y de color morado +plum/plum_2,una especie de esfera de color morada +orange/orange_3,es una fruta cítrica redonda y de color naranja sirve para hacer zumo +carrot/carrot_4,es una hortaliza alargada y de color naranja le encanta a los conejos +lemon/lemon_4,es un fruto de color amarillo piel rugosa +lemon/lemon_3,es el fruto de un árbol de color amarillo piel rugosa +arch/arch_4,es una figura de color rojo brillante +cabbage/cabbage_3,es una verdura de color morado con hojas tiene forma esférica +lime/lime_4,es una fruta de color verde aspecto rugoso +lemon/lemon_4,el objeto es una fruta ácida es de color amarillo +lemon/lemon_3,el objeto es una fruta ácida es de color amarillo +arch/arch_4,el objeto es de forma irregular es de color rojo +cabbage/cabbage_3,el objeto es una verdura de muchas hojas es de color morado +lime/lime_4,el objeto es de color verde aparenta ser una fruta +triangle/triangle_2,es un objeto de color amarillo en forma triangular +lemon/lemon_2,es un limon amarillo oscuro +plum/plum_2,es un objeto de color rojo oscuro que podria ser un vegetal como repollo morado +cuboid/cuboid_4,es un rectanguloe azul de forma vertical +carrot/carrot_3,es una zanahoria +triangle/triangle_2,el objeto es de forma triangular es de color amarillo +lemon/lemon_2,el objeto es un fruto ácido de forma redondeada es de color amarillo +plum/plum_2,el objeto es de color rojo oscuromorado parece ser una fruta +cuboid/cuboid_4,el objeto es de forma cúbica es de color azul +carrot/carrot_3,el objeto es una verdura de forma alargada es de color naranja +semicylinder/semicylinder_4,seccion de un objeto cilindrico de color verde +carrot/carrot_1,una zanahoria +cube/cube_2,cubo de color verde +orange/orange_4,una naranja madura +banana/banana_3,una banana o cambur maduro +semicylinder/semicylinder_4,es una figura de color verde tiene forma de cilindro partido a la mitad +carrot/carrot_1,es una hortaliza de color naranja y forma alargada +cube/cube_2,es un objeto con forma de cubo de color verde +orange/orange_4,es una fruta de color naranja tiene forma esférica y piel rugosa +banana/banana_3,es una fruta de color amarillo es de forma alargada +banana/banana_1,una banana o cambur maduro +tomato/tomato_3,un tomate manzano maduro +eggplant/eggplant_4,una berenjena madura +corn/corn_4,una mazorca de maiz blanco +carrot/carrot_1,una zanahoria +banana/banana_1,platano acostado de color amarillo +tomato/tomato_3,tomate maduro color rojo intenso redondo +eggplant/eggplant_4,berenjena mediana color negro +corn/corn_4,maiz blanco de gran tamaño +carrot/carrot_1,zanahoria anaranjada delgada y larga +carrot/carrot_3,zanahoria palida +corn/corn_3,mazorca de maiz blanco +eggplant/eggplant_4,berengena morada +lemon/lemon_4,limon verde +cabbage/cabbage_4,repollo morado +carrot/carrot_3,una zanahoria +corn/corn_3,una espiga de maíz +eggplant/eggplant_4,una berenjena +lemon/lemon_4,un limón amarillo +cabbage/cabbage_4,un repollo púrpura +cuboid/cuboid_3,prisma rectangular color rojo +carrot/carrot_2,zanahoria de color naranja claro +corn/corn_1,elote blanco +banana/banana_2,banana inmadura +cylinder/cylinder_2,cilindro colorado +cuboid/cuboid_3,es rojo cuadrado rectangular y seco +carrot/carrot_2,es largo desformado naranja y seco +corn/corn_1,es largo con dientes jugoso y blanco +banana/banana_2,es amarillo largo suave y delicioso +cylinder/cylinder_2,es redondo alargade seco y rojo +carrot/carrot_1,raíz comestible de color naranja +cuboid/cuboid_1,barra amarilla +banana/banana_4,fruta con cascara amarilla en forma de falo +corn/corn_3,estructura vegetal llena de granos +cabbage/cabbage_3,vegetal redondo y de color morado +carrot/carrot_1,es una hortaliza de color naranja y forma alargada +cuboid/cuboid_1,objeto con forma de prisma de color amarillo +banana/banana_4,es una fruta de color amarilla y forma alargada +corn/corn_3,es el fruto de una planta es alargado amarillo y compuesto de múltiples granos +cabbage/cabbage_3,es una verdura de color morado con hojas tiene forma esférica +triangle/triangle_4,triangulo azul +triangle/triangle_2,triangulo amarillo +triangle/triangle_3,triangulo verde +cylinder/cylinder_2,cilindro rojo +cube/cube_3,cubo azul +triangle/triangle_4,es un objeto de color azul rey en forma rectangula +triangle/triangle_2,es un objeto amarillo de forma triangular +triangle/triangle_3,es un traingulo de color verde ocuro verticalmente +cylinder/cylinder_2,es un cilindro de color rojo +cube/cube_3,es un objeto de forma cuadrada de color azul +lemon/lemon_2,limon amarillo +banana/banana_1,banana de color amarillo claro +cylinder/cylinder_1,cilindro amarillo horizontal +cuboid/cuboid_2,paralelepipedo verde horizontal +cuboid/cuboid_3,paralelepipedo rojo vertical +lemon/lemon_2,un objeto de color amarillo del color de una naranja de superficie lisa y brillante con un objeto que sobresale parecido a una moneda +banana/banana_1,un platano o banana de color amarillo no totalmente madura +cylinder/cylinder_1,una pieza o molde de color amarillo y una superficie de material plástico y forma irregular +cuboid/cuboid_2,un prisma rectangular de color verde de plástico u otro material brillante +cuboid/cuboid_3,un prisma cuadrangular de color rojo de un material plástico u otro material brillante +plum/plum_4,algún tipo de sustancia roja no se alcanza a ver su forma +orange/orange_1,puede ser una fruta como una mandarina tiene una forma redonda y de color naranja +potato/potato_4,parece algún tipo de tubérculo como una papa criolla +corn/corn_4,maiz completo de colo claro casi blanco en estado sin cocinar +plum/plum_4,el objeto parece ser una fruta es de color rojo oscuro +orange/orange_1,el objeto es una fruta es de color amarillonaranja +potato/potato_4,el objeto es de color marrón claro parece ser algun tipo de fruta o verdura +corn/corn_4,el objeto es una verdura compuesta por muchos dientes es de color blancuzco +cylinder/cylinder_4,tiene una forma cilíndrica un poco larga de color verde +triangle/triangle_1,su forma es rectangular parece una rebana de pastel de color rojo +cylinder/cylinder_3,cuenta con una forma cilíndrica y su color es azul +semicylinder/semicylinder_1,abajo es plano y arriba es redondo su textura se nota lisa y es de color azul +cucumber/cucumber_4,es grueso de color verde y un poco largo su textura se nota un poco rugosa +cylinder/cylinder_4,es largo verde mediano y seco +triangle/triangle_1,es triangular rojo mediado y seco +cylinder/cylinder_3,es alargado azul redondo y seco +semicylinder/semicylinder_1,tiene una forma triangular aplanada y ancha azul y seco +cucumber/cucumber_4,es largo verde aspero y con espinas +carrot/carrot_1,un gusano +arch/arch_3,una pieza verde en forma de u como donde practican patineta +carrot/carrot_2,una lombriz de tierra +tomato/tomato_2,una fruta roja +cabbage/cabbage_1,un repollo morado +carrot/carrot_1,es una hortaliza de color naranja y forma alargada +arch/arch_3,es una figura de color verde +carrot/carrot_2,es una hortaliza de color naranja y forma alargada +tomato/tomato_2,es un fruto de color rojo y forma esférica +cabbage/cabbage_1,es una verdura de color morado con hojas +plum/plum_1,es una balloon +eggplant/eggplant_2,es una eggplant +lemon/lemon_3,es una lemon +cucumber/cucumber_4,no hay nada aqui +cube/cube_3,es una cube +plum/plum_1,mazana roja +eggplant/eggplant_2,berengena morada +lemon/lemon_3,limon amarillo +cucumber/cucumber_4,pepino verde +cube/cube_3,cubo azul +cucumber/cucumber_4,es largo verde y aspero +triangle/triangle_3,es triangular verde y seco +tomato/tomato_2,es rojo redondo y jugoso +corn/corn_2,es largo blanco con dientes y jugoso +potato/potato_2,es redondo seco y color entre marron y morado +cucumber/cucumber_4,tiene una larga y muy gruesa se ve robusto y es de color verde +triangle/triangle_3,tiene una forma triangular que alarga un poco su color es verde +tomato/tomato_2,tiene una forma redonda su textura se ve lisa y es de color rojo +corn/corn_2,tiene una forma larga pero con puntitos en todo su cuerpo palido +potato/potato_2,tiene una forma ovalada pero con leves deformaciones su color es rojo +eggplant/eggplant_1,es una berenjena de color negra sobre una base blanca +arch/arch_4,es un objeto de color rojo con formas sobre una base blanca +cuboid/cuboid_3,es un rectangulo de color rojo de consistencia dura en forma horizontal +cabbage/cabbage_2,repollo morado cortado abajo en una base gris +lemon/lemon_4,es un limon maduro en una base blanca +eggplant/eggplant_1,berenjena morada pequeña con tallo verde +arch/arch_4,rampa de color rojo +cuboid/cuboid_3,cubo alargado de color rojo en posición horizontal +cabbage/cabbage_2,repollo morado +lemon/lemon_4,lima amarilla de tamaño mediano +eggplant/eggplant_3,berenjena morada pequeña +plum/plum_4,esfera vinotinto +cuboid/cuboid_1,taco de color amarillo en posición horizontal +orange/orange_1,esfera anaranjada +arch/arch_3,forma de color verde claro +eggplant/eggplant_3,lo que vemos es una berenjena sin el tallo tiene forma irregular y es de color negruzco +plum/plum_4,es un objeto esférico de color violeta rojizo podría ser un betabel +cuboid/cuboid_1,el objeto es un prisma de base rectangular un paralelepípedo tiene forma de pan de manteca y es de color amarillo intenso +orange/orange_1,esto parece ser una naranja o una mandarina tiene un color naranja oscuro con algunas pequeñas manchas +arch/arch_3,es un prisma de base cuadrada un paralelepípedo al que le han hecho una cavidad cilíndrica en una de sus caras rectangulares +corn/corn_1,mazorca de maiz blanco +cabbage/cabbage_1,repollo morado +semicylinder/semicylinder_2,medio tubo rojo +carrot/carrot_3,zanahoria palida +tomato/tomato_4,tomate rojo en proceso de madurar +corn/corn_1,no muestra imagen +cabbage/cabbage_1,repollo de color morado sobre una base de color gris +semicylinder/semicylinder_2,ojeto de color rojo intenso con forma redondeada +carrot/carrot_3,es una zanahoria larga de color rosa anaranjado +tomato/tomato_4,es un tomate con manchas rojas y amarillas +triangle/triangle_4,tiene una forma triangular y es de color azul +carrot/carrot_1,tiene una forma larga y delgado y es de color naranja +banana/banana_1,tiene una forma larga pero con una curvatura y es de color amarllo +corn/corn_1,tiene una forma larga pero con puntitos en todo su cuerpo +plum/plum_2,tiene una forma redonda casi perfecta y predomina su color rojo +triangle/triangle_4,triangulo azul +carrot/carrot_1,zanahoria palida +banana/banana_1,banana madura +corn/corn_1,mazorca de maiz blanco +plum/plum_2,manzana madura +plum/plum_3,el objeto parece un vegetal probablemente un betabel por su color violeta +potato/potato_3,lo que vemos es una papa de color castaño claro tiene una forma irregular más bien ovalada +orange/orange_2,lo que vemos es una naranja de cáscara color naranja pálido +orange/orange_4,el objeto es una naranja su color es un naranja verdoso +carrot/carrot_4,el objeto es una zanahoria de forma muy fina y alargada +plum/plum_3,objeto esférico color morado claro +potato/potato_3,objeto semejante a una papa +orange/orange_2,fruto de color amarillo +orange/orange_4,objeto semejante a una naranja +carrot/carrot_4,zanahoria de gran longitud y muy delgada +cabbage/cabbage_3,repollo morado +potato/potato_1,manzana madura +orange/orange_2,limon amarillo +banana/banana_3,banana amarilla +orange/orange_4,limon amarillo +cabbage/cabbage_3,estructura vegetal de color morado formado por acumulación de hojas +potato/potato_1,fruta redonda morada +orange/orange_2,fruta circular amarilla +banana/banana_3,fruta con cascara de color amarillo +orange/orange_4,fruta circular de color amarillo +lemon/lemon_3,fruta redonda de color amarillo +banana/banana_2,fruta alargada de color amarillo +lemon/lemon_4,fruta circular amarilla +cucumber/cucumber_4,vegetal verde alargado +lime/lime_4,estructura vegetal verde +lemon/lemon_3,una lima amarilla +banana/banana_2,un platana +lemon/lemon_4,un limon amarillo +cucumber/cucumber_4,un pepino +lime/lime_4,un limon verde +cuboid/cuboid_1,paralelepipedo amarillo horizontal +triangle/triangle_1,triangulo rojo +lemon/lemon_2,limon amarillo +orange/orange_4,limon amarillo maduro +cuboid/cuboid_1,tiene una forma rectangular y su color es amarillo +triangle/triangle_1,tiene una forma rectangular y es de color rojo +lemon/lemon_2,tiene una forma ovalada y es de color amarillo su textura se nota algo rugosa +orange/orange_4,tiene una forma redonda casi perfecta y su color es naranja +cabbage/cabbage_2,un repollo púrpura +eggplant/eggplant_4,una berenjena +cucumber/cucumber_1,un pepino +cabbage/cabbage_2,un repollo oscuro +eggplant/eggplant_4,una berenjena +cucumber/cucumber_1,un pepino visto desde una de las puntas +cylinder/cylinder_4,cilindro verde +cylinder/cylinder_4,cilindro verde +lime/lime_4,estructura vegetal de color verdoso +orange/orange_3,fruta redonda de color de naranja +cylinder/cylinder_4,es un objeto con forma de cilindro de color verde +cylinder/cylinder_4,es un objeto con forma de cilindro de color verde +lime/lime_4,es un fruto de color verde y aspecto rugoso +orange/orange_3,es un fruto de color naranja esférico y aspecto rugoso +cuboid/cuboid_4,un poliedro azul +carrot/carrot_2,una zanahoria larga +lime/lime_4,un objecto verde similar a un limon verde +lime/lime_2,un objecto verde similar a un limon verde +lemon/lemon_2,un limon amarillo +cuboid/cuboid_4,es una barra de color azul pareciera jabon +carrot/carrot_2,es una legumbre comestible +lime/lime_4,es de color verdoso parece moleculas +lime/lime_2,pareciera una molecula de color verde +lemon/lemon_2,pareciera la parte de afuera de una fruta una concha +cuboid/cuboid_4,un prisma rectangular azul +cylinder/cylinder_1,un cilindro amarillo +lemon/lemon_1,un limón amarillo +semicylinder/semicylinder_4,mitad de un cilindro verde +cucumber/cucumber_4,un pepino +cuboid/cuboid_4,cubo azul +cylinder/cylinder_1,cilindro amarillo +lemon/lemon_1,limon amarillo +semicylinder/semicylinder_4,medio cilindro verde +cucumber/cucumber_4,pepino verde +orange/orange_2,una manzana amarilla +carrot/carrot_4,una zanahoria +semicylinder/semicylinder_3,una rebanada amarilla +cuboid/cuboid_4,un cubo azul +orange/orange_2,redonda acida amarilla pequeña +carrot/carrot_4,larga delgada color naranja +semicylinder/semicylinder_3,amarillo ovalado y de textura aspera +cuboid/cuboid_4,rectangular azul y textura aspera +lemon/lemon_4,un limon maduro +cuboid/cuboid_2,un poliedro verde +arch/arch_1,un poliedro amarillo con agujero +corn/corn_2,una mazorca vertical +tomato/tomato_2,un objeto rojo similar a un tomate +lemon/lemon_4,es un limon de color amarillo +cuboid/cuboid_2,es un rectangulo de color verde en forma vertical +arch/arch_1,es un objeto de color amarillo intenso en forma vertical con forma semi circula +corn/corn_2,es un maiz blanco +tomato/tomato_2,es un tomate roma +arch/arch_3,tiene una forma particular de un lado plano y del otro tiene una curvatura +plum/plum_1,tiene una textura lisa y su forma es redonda casi perfecta +arch/arch_4,arriba tiene una curvatura muy notable abajo es plano y su color es rojo +arch/arch_3,es una pieza verde que parece un puente volteado a la izquierda +plum/plum_1,objeto casi circular de color rojo parecido a una pelota +arch/arch_4,una pieza roja rectangular pero con una depresión en el centro parecido a un puente invertido +banana/banana_2,es una fruta con forma alargada su cáscara es amarilla y por dentro es blanco +cabbage/cabbage_4,es una verdura de color morado con hojas su forma es esférica +arch/arch_2,es un objeto de color azul su textura es uniforme y brillante +lime/lime_1,es una fruta de color verde y forma esférica +banana/banana_2,banana amarilla +cabbage/cabbage_4,repollo morado +arch/arch_2,medio tubo azul +lime/lime_1,limon verde +corn/corn_4,el objeto es un choclo o maíz de color blanco algunos granos están más oscuros +triangle/triangle_4,el objeto es un prisma de base triangular y es de color azul francia tiene 5 caras +carrot/carrot_2,el objeto parece una zanahoria de forma algo irregular le falta la parte de las hojas +orange/orange_2,el objeto parece un naranja o tal vez un limón su color es más bien amarillo +corn/corn_4,es el fruto de una planta es alargado amarillo y compuesto de múltiples granos +triangle/triangle_4,objeto con forma de prisma piramidal de color azul +carrot/carrot_2,es una hortaliza de color naranja y forma alargada +orange/orange_2,es un fruto de color amarillo piel rugosa +cabbage/cabbage_3,el objeto tiene forma casi esférica y es de color gris oscuro parece una planta de repollo por los surcos visibles +arch/arch_3,es un paralelepípedo de base cuadrada al que le han extraído una porción de forma cilíndrica en una de las caras rectangulares es de color verde pálido +plum/plum_1,el objeto tiene forma esférica prácticamente parece ser un betabel por su color violeta rojizo +orange/orange_2,el objeto es un fruto probablemente una naranja o limón su color es entre amarillo y naranja +potato/potato_4,esto es una papa sin pelar tiene forma irregular un extremo es redondo y el otro en punta +cabbage/cabbage_3,en el objeto predomina el color morado pero muy oscuro tiene una forma redonda casi perfecta +arch/arch_3,tiene una forma algo peculiar de un lado plano y del otro con una curvatura además de su color verde claro +plum/plum_1,cuenta con una forma redonda su color es rojo pero oscuro y su textura lisa +orange/orange_2,su color es amarillo claro tiene forma redonda y su textura podría ser rugosa +potato/potato_4,tiene una forma algo extraña predomina su deformidad y su color marrón claro +potato/potato_4,redondo medio desformado color crema y de textura aspera +tomato/tomato_1,redondo rojo y pequeño +potato/potato_1,redondo morado y de textura aspera +corn/corn_2,largo blanco jugoso y con dientes +carrot/carrot_1,largo delgado de color naranja +potato/potato_4,una pera +tomato/tomato_1,un jitomate rojo +potato/potato_1,un jitomate rojo +corn/corn_2,una mazorca de maiz +carrot/carrot_1,una zanahoria +corn/corn_4,una espiga de maíz +orange/orange_4,una naranja +carrot/carrot_3,una zanahoria +plum/plum_2,una manzana +cube/cube_2,un cubo verde +corn/corn_4,una mazorca de maiz +orange/orange_4,un limon amarillo +carrot/carrot_3,una zanahoria +plum/plum_2,una manzana roja +cube/cube_2,un cubo verde +cucumber/cucumber_2,pepino verde +cube/cube_1,cubo amarillo +arch/arch_2,medio tubo azul +cylinder/cylinder_4,cilindro verde +cabbage/cabbage_4,remolacha madura +cucumber/cucumber_2,el objeto es una verdura alargada es de color verde +cube/cube_1,el objeto es de forma cúbica es de color amarillo +arch/arch_2,el objeto es de forma irregular es de color azul +cylinder/cylinder_4,el objeto es de forma cilíndrica es de color verde +cabbage/cabbage_4,el objeto es una verdura de muchas hojas es de color morado +triangle/triangle_2,polígono de tres lados y de color amarillo +lemon/lemon_4,fruta cítrica redonda y de color naranja típicas de valencia +orange/orange_3,fruta cítrica redonda y de color naranja sirve para hacer zumos +lime/lime_1,objeto con forma de pera de goma y de color verde +banana/banana_4,fruta verde y con forma de media luna gusta mucho a los monos +triangle/triangle_2,un prisma triangular amarillo +lemon/lemon_4,un limón amarillo +orange/orange_3,una naranja +lime/lime_1,un limón verde +banana/banana_4,un plátano +semicylinder/semicylinder_2,medio cilindro rojo +corn/corn_3,mazorca de maiz blanco +cylinder/cylinder_3,cilindro azul +cucumber/cucumber_3,pepino verde +cylinder/cylinder_3,cilindro azul +semicylinder/semicylinder_2,figura geometrica roja +corn/corn_3,objeto lleno de granos juntos +cylinder/cylinder_3,cilindro azul +cucumber/cucumber_3,vegetal verde alargado +cylinder/cylinder_3,cilindro azul +cabbage/cabbage_4,es redondo seco morado y marron al mismo tiempo +potato/potato_4,pequeño redondo desformado y seco +cube/cube_1,es cuadrado amarillo y resbaloso +cylinder/cylinder_1,es rectangular delgado y amarillo +cabbage/cabbage_4,es una verdura de color morado con hojas tiene forma esférica +potato/potato_4,es una hortaliza de color amarillo y forma irregular su piel es áspera +cube/cube_1,es un objeto con forma de cubo de color amarillo opaco +cylinder/cylinder_1,es un objeto con forma de cilindro de color amarillo +cabbage/cabbage_1,col morado oscuro +cucumber/cucumber_3,pepino verde +cylinder/cylinder_2,cilindro de color rojo +tomato/tomato_3,tomate de bola rojo +arch/arch_4,figura prismática rectangular roja con una hendidura central de forma cóncava +cabbage/cabbage_1,es una verdura parecida a la lechuga con hojas de color morado +cucumber/cucumber_3,es una verdura de color verde textura rugosa tiene forma alargada +cylinder/cylinder_2,es un objeto de forma cilíndrica y color rojo +tomato/tomato_3,es un fruto de color rojo y forma esférica +arch/arch_4,es un objeto de color rojo +lime/lime_1,circulo verde de textura rugosa +carrot/carrot_4,zanahora anaranjada +cube/cube_3,cubo azul +cuboid/cuboid_2,cubo alargado de color verde +lime/lime_1,es una figura verde con aspecto de hoja tiene la textura de una fruta o algo similiar +carrot/carrot_4,es una hortaliza naranja que comen los conejos +cube/cube_3,es una figura con aspecto de cubo de color azul +cuboid/cuboid_2,es un prisma de color verde opaco +cabbage/cabbage_3,el objeto es una verdura de muchas hojas es de color morado +triangle/triangle_1,el objeto es de forma triangular es de color rojo +potato/potato_1,el objeto es un fruto de forma redondeada es de color morado +orange/orange_1,el objeto es un fruto de forma redondeada es de color amarillo +orange/orange_3,el objeto es un fruto de forma redondeada es de color amarillo +cabbage/cabbage_3,repollo morado +triangle/triangle_1,triangulo rojo +potato/potato_1,manzana madura +orange/orange_1,limon amarillo +orange/orange_3,limon amarillo +tomato/tomato_4,es redondo jugoso y de color rojo +arch/arch_1,es rectangular amarillo y seco +triangle/triangle_3,es triangular verde y seco +cabbage/cabbage_2,es redondo morado por fuera y blanco por dentro +corn/corn_4,es largo con dientes y blanco +tomato/tomato_4,objeto de color rojo y forma casi esférica +arch/arch_1,objeto de color amarillo limón con una hendidura central de forma cóncava +triangle/triangle_3,objeto de color verde semejante a una rampa +cabbage/cabbage_2,es un repollo de color morado +corn/corn_4,elote de color blanco +semicylinder/semicylinder_3,barra de color amarillo +orange/orange_4,fruta circular de color naranja +cylinder/cylinder_1,cilindro amarillo +banana/banana_3,fruta con cascara de color amarillo +semicylinder/semicylinder_3,figura geométrica de color amarillo +semicylinder/semicylinder_3,un prisma triangular amarillo +orange/orange_4,una naranja +cylinder/cylinder_1,un cilindro amarillo +banana/banana_3,un plátano +semicylinder/semicylinder_3,mitad de un cilindro amarillo +cucumber/cucumber_3,es un objeto alargado verde pienso es una fruta +cucumber/cucumber_1,parece una fruta una lechoza verde +lemon/lemon_2,es la cascara de una fruta de una naranja +tomato/tomato_1,es una fruta roja pareciera un tomate +cucumber/cucumber_3,un pepino largo +cucumber/cucumber_1,un pepino vertical y maduro +lemon/lemon_2,un objecto amarillo artificial +tomato/tomato_1,un tomate rojo +carrot/carrot_1,raíz naranja comestible +lime/lime_3,estructura vegetal verde +potato/potato_3,tubérculo marron +carrot/carrot_2,raíz de color anaranjado +carrot/carrot_1,largo color naranja soco y delgado +lime/lime_3,verde redondo pequeño y acido +potato/potato_3,redondo pequeño desformado de color crema +carrot/carrot_2,largo naranja y delgado aspero +cuboid/cuboid_4,un prisma rectangular azul +tomato/tomato_3,un tomate +cabbage/cabbage_1,un repollo púrpura +cylinder/cylinder_3,un cilindro azul +tomato/tomato_2,un tomate +cuboid/cuboid_4,paralelepipedo azul +tomato/tomato_3,tomate maduro +cabbage/cabbage_1,repollo morado +cylinder/cylinder_3,cilindro azul +tomato/tomato_2,tomate rojo +triangle/triangle_1,triangulo de color rojo +cabbage/cabbage_2,repollo morado redondo y grande +triangle/triangle_3,forma de color verde +cucumber/cucumber_3,pepino verde +corn/corn_4,maiz blanco de tamaño grande +triangle/triangle_1,figura geometrica roja +cabbage/cabbage_2,vegetal morado formado por hojas +triangle/triangle_3,figura geométrica de color verde +cucumber/cucumber_3,vegetal verde alargado +corn/corn_4,estructura llena de granos juntos +cucumber/cucumber_4,tiene una forma larga se parece a una sandía pero más pequeño es de color verde +cylinder/cylinder_2,tiene una forma cilíndrica y es de color rojo +semicylinder/semicylinder_1,arriba es redonda y abajo plano es de color azul +corn/corn_1,tiene una forma larga con muchos puntitos +eggplant/eggplant_2,una parte es gruesa y la otra es delgada color morado con detalles en verde +cucumber/cucumber_4,pepino verde tamaño mediano delgado +cylinder/cylinder_2,cilindro rojo en posición horizontal pequeño +semicylinder/semicylinder_1,forma semicircular de color azul +corn/corn_1,maiz blanco pequeño +eggplant/eggplant_2,berenjena pequeña de color morado y tallo verde +tomato/tomato_1,un tomate +plum/plum_2,una manzana +eggplant/eggplant_3,una berenjena +cuboid/cuboid_3,un prisma rectangular rojo +tomato/tomato_1,es redondo jugoso y rojo +plum/plum_2,es redondo morado y seco +eggplant/eggplant_3,es alargado verde y seco +cuboid/cuboid_3,es redondo rectangular y rojo +lime/lime_3,es una fruta de color verde y forma esférica +carrot/carrot_4,es una hortaliza de color naranja y forma alargada +triangle/triangle_4,figura con forma de prisma piramidal de color azul +cucumber/cucumber_2,es una hortaliza de forma cilíndrica y verde su textura es rugosa +carrot/carrot_1,es una hortaliza de color naranja y forma alargada +lime/lime_3,limon verde +carrot/carrot_4,zanahoria palida +triangle/triangle_4,triangulo azul +cucumber/cucumber_2,pepino verde +carrot/carrot_1,zanahoria palida +cucumber/cucumber_4,pepino verde +orange/orange_3,naranja madura +triangle/triangle_4,triangulo azul +cuboid/cuboid_1,paralelepipedo amarillo horizontal +potato/potato_3,papa amarilla limpia +cucumber/cucumber_4,es una lechoza color verde +orange/orange_3,es una fruta una naranja +triangle/triangle_4,es un objeto de color azul es una figura geometrica +cuboid/cuboid_1,pareciera es una barra de mantequilla +potato/potato_3,pareciera algo comestible como un trozo de pollo +cuboid/cuboid_2,objeto con forma de prisma de color verde +carrot/carrot_1,es una hortaliza de color naranja y forma alargada +corn/corn_3,es el fruto de una planta es alargado amarillo y compuesto de múltiples granos +arch/arch_4,es un objeto de color rojo brillante +eggplant/eggplant_4,es una verdura de color morado piel suave y brillante +cuboid/cuboid_2,tiene una forma rectangular y es de color verde +carrot/carrot_1,tiene una forma larga y delgadita su color es opaco +corn/corn_3,se ve bastante robusto tiene cientos de puntos es su cuerpo +arch/arch_4,de un lado tiene una curvatura y del otro otro es simplemente plano +eggplant/eggplant_4,en un extremo es grueso y en el otro algo delgado es de color morado +carrot/carrot_4,raíz naranja +corn/corn_2,objeto lleno de granos juntos +corn/corn_1,estructura vegetal llena de granos juntos +cylinder/cylinder_1,cilindro amarillo +orange/orange_2,figura geométrica de color amarillo +carrot/carrot_4,un objeto de color carne de forma tubular parecido a un chorizo +corn/corn_2,una mazorca de maíz pelada y sin hojas de tamaño regular +corn/corn_1,una mazorca de maíz pelada y sin hojas de tamaño regular +cylinder/cylinder_1,un prisma cilindrico de color amarillo de un material plástico o brillante +orange/orange_2,un objeto al parecer una naranja de color amarillo y piel brillante +cabbage/cabbage_4,es una verdura parecida a la lechuga con hojas de color morado +cucumber/cucumber_1,es una hortaliza de color verde por dentro es amarilla +cabbage/cabbage_1,es una verdura parecida a la lechuga con hojas de color morado +carrot/carrot_1,verdura de color naranja alargada suelen comerla los conejos +banana/banana_2,es una fruta de color amarillo tiene una cáscara que hay que solemos quitar para comerlo +cabbage/cabbage_4,el objeto es una verdura de muchas hojas es de color morado +cucumber/cucumber_1,no se puede ver la imagen +cabbage/cabbage_1,no se puede ver la imagen +carrot/carrot_1,el objeto es de forma alargada y color naranja parece ser una verdura +banana/banana_2,el objeto es una fruta larga y curva es de color amarillo +arch/arch_2,es un objeto de color azul +plum/plum_4,es una fruta de color rojo aspecto suave y brillante +cucumber/cucumber_1,es una hortaliza de color verde aspecto rugoso +cube/cube_1,es un cubo de color amarillo +plum/plum_2,es una fruta de color rojo aspecto brillante +arch/arch_2,una pieza rectangular de color azul con un corte semicircular a un costado +plum/plum_4,fragmento de una superficie similar a piel de manzana +cucumber/cucumber_1,pepino de color verde con textura rugosa +cube/cube_1,cubo de bordes redondeados de color amarillo +plum/plum_2,fragmento de superficie de color rojo +arch/arch_2,es un objeto de color azul enforma vertical con forma semicircula +lemon/lemon_2,es un limon de color amarillo con un pequeña mancha de descompuesto +cuboid/cuboid_1,es un rectangulo de color amarillo fuerte de forma diagonal +banana/banana_2,es una banana +arch/arch_2,es azul rectangular y forma de media luna +lemon/lemon_2,es redondo perqueño jugoso y amarillo +cuboid/cuboid_1,es amarrillo rectangular resbaloso y largo +banana/banana_2,es largo amarillo suave y delicioso +semicylinder/semicylinder_4,cilindro verde recortado por la mitad sobre el cual se apoya +carrot/carrot_3,cono anaranjado recubieto de piel anaranjada +potato/potato_2,tuberculo casi redondo de fina piel +cucumber/cucumber_4,cilindro verde piel gruesa +semicylinder/semicylinder_4,tiene una forma peculiar arriba redondo y abajo cuadrado su color es de color verde algo opaco +carrot/carrot_3,tiene una forma larga y delgada su color es naranja pero opaco +potato/potato_2,tiene una forma ovalada y colores rojos con pequeños agujeros en su cuerpo +cucumber/cucumber_4,es largo y grueso su color predominante es el verde +triangle/triangle_1,prisma triangular de color rojo +cylinder/cylinder_4,cilindro verde +potato/potato_4,objeto color arena semejante a una papa +cylinder/cylinder_4,cilindro de color verde +plum/plum_4,objeto esférico color rojo oscuro +triangle/triangle_1,tiene una forma rectangular y es de color rojo +cylinder/cylinder_4,tiene forma cilíndrica y es de color verde +potato/potato_4,cuenta con una forma ovalada y es de color marrón claro con varias manchas oscuras +cylinder/cylinder_4,tiene una forma cilindrica se nota una textura lisa y es de color verde +plum/plum_4,tiene una forma redonda y su textura se nota muy lisa es de color rojo +tomato/tomato_2,es un fruto de color rojo forma esférica alargada +cabbage/cabbage_4,es una verdura de color morado con hojas +lemon/lemon_2,es un fruto de color amarillo su aspecto es suave y uniforme +cube/cube_2,es un objeto con forma de cubo de color verde +plum/plum_1,es un fruto de color rojo morado piel brillante +tomato/tomato_2,tomate maduro +cabbage/cabbage_4,repollo morado +lemon/lemon_2,limon amarillo +cube/cube_2,cubo verde +plum/plum_1,manzana madura +plum/plum_2,una manzana +triangle/triangle_2,un prisma triangular amarillo +banana/banana_3,un plátano +lemon/lemon_1,un limón amarillo +orange/orange_4,una naranja +plum/plum_2,fragmento de una superficie similar a piel de manzana +triangle/triangle_2,objeto en forma de cuña de color amarillo +banana/banana_3,una banana o cambur maduro +lemon/lemon_1,objeto esferico de color amarillo +orange/orange_4,una naranja madura +banana/banana_3,es un platano +cube/cube_1,es un cuadrado de color amarillo +arch/arch_2,es un pedazo de plastico de color azul cortado en forma de semicirculo +tomato/tomato_2,es un tomate roma de color rojo intenso +banana/banana_3,largo amarillo suave y delicioso +cube/cube_1,cuadrado pequeño amarillo +arch/arch_2,rectangular forma de media luna encima azul +tomato/tomato_2,redondo pequeño roojo jugoso +semicylinder/semicylinder_4,mitad de un cilindro verde +orange/orange_1,una naranja +arch/arch_4,un prisma rectangular rojo con concavidad aberta +lime/lime_3,un limón verde +semicylinder/semicylinder_4,medio tubo horizontal +orange/orange_1,mandarina madura +arch/arch_4,medio tubo rojo +lime/lime_3,limon verde +cuboid/cuboid_3,un poliedro rojo +carrot/carrot_2,una zanahoria larga +cube/cube_3,un cubo azul +lime/lime_1,un vegetal verde +orange/orange_1,una naranja madura +cuboid/cuboid_3,tiene una forma rectangula y es de color rojo +carrot/carrot_2,tiene una forma larga y es muy delgado su color es naranja pero opaco +cube/cube_3,tiene una forma cuadra y es de color azul oscuro +lime/lime_1,se ve delicado su textura es lisa y es de color verde +orange/orange_1,tiene una forma redonda predomina un color naranja +corn/corn_4,elote blanco con algunos detalles más oscuros +cucumber/cucumber_3,pepino verde +cube/cube_1,cubo color amarillo limón +cube/cube_3,cubo color azul +corn/corn_4,aquí vemos un choclo o maíz pelado de color blanco se ve parte del tallo o marlo +cucumber/cucumber_3,el objeto es un pepino o tal vez un zucchini es de color verde oscuro y de forma cilíndrica +cube/cube_1,el objeto es un cubo de color amarillo fuerte +cube/cube_3,no se ven los bordes del objeto pero parece ser un cubo con aristas redondeadas su color es azul francia +eggplant/eggplant_3,es una berenjena cafe en una base blanca +arch/arch_4,es un pedazo de plastico rojo cortado de una forma semicircula +lime/lime_1,alguna fruta de color verde como pera o manzana +lemon/lemon_1,es un limon que esta madura y de color amarillo intenso +lemon/lemon_3,un limon con manchas verdes sobre un fondo blanco y negro +eggplant/eggplant_3,una berenjena +arch/arch_4,es una especie de objeto con forma de circulo dentro de un cuadrado cortado a la mitad y con cierta profundidad +lime/lime_1,parece un limon +lemon/lemon_1,un limon +lemon/lemon_3,un limon +carrot/carrot_1,zanahoria palida +lemon/lemon_1,limon amarillo +cuboid/cuboid_4,paralelepipedo azul horizontal +cylinder/cylinder_3,cilindro azul vertical +carrot/carrot_1,es un objeto de forma irregular es de color crema +lemon/lemon_1,es un objeto de color amarillo tiene una pequeña parte blanca en la parte de arriba +cuboid/cuboid_4,es un objeto recubierto con material de color azul el objeto es un cubo +cylinder/cylinder_3,el objeto es de forma cilíndrica es de color azul +corn/corn_3,mazorca de maiz blanco +semicylinder/semicylinder_2,medio tubo rojo +semicylinder/semicylinder_1,medio tubo azul +corn/corn_1,mazorca de maiz blanco +tomato/tomato_2,tomate rojo +corn/corn_3,una espiga de maíz +semicylinder/semicylinder_2,mitad de un cilindro rojo +semicylinder/semicylinder_1,mitad de un cilindro azul +corn/corn_1,una espiga de maíz +tomato/tomato_2,un tomate +potato/potato_2,fruta con un pequeño hoyo al centro es color naranja obscuro casi café y aterciopelado +cucumber/cucumber_3,es un vegetal largo y verde +plum/plum_3,objeto redondo de color rojo profundo llegando a morado +plum/plum_4,objeto redondo de un color entre naranja y rojo +cabbage/cabbage_2,vegetal verde obscuro redondo y cubierto por una hoja rugosa +potato/potato_2,redondo pequeño aspero y de color marron +cucumber/cucumber_3,largo grueso verde y espinas en la parte de afuera +plum/plum_3,redondo mediano color morado y brilloso por fuera +plum/plum_4,redondo mediado color morado claro y pequeño +cabbage/cabbage_2,redondo grande verde y aspero +tomato/tomato_4,verdura lisa y roja con pulpa y semillas se emplea en las ensaladas +orange/orange_4,fruta cítrica redonda y de color naranja se hace zumo +lemon/lemon_2,fruta amarilla y muy ácida sirve para hacer zumo +cube/cube_3,polígono azul de seis caras +triangle/triangle_4,figura de tres lados y de color azul +tomato/tomato_4,es el fruto de una planta es de color rojo y tiene forma esférica +orange/orange_4,es el fruto de un árbol de color naranja y forma esférica +lemon/lemon_2,es el fruto de un árbol de color amarillo su sabor es amargo +cube/cube_3,es un objeto con forma de cubo azul +triangle/triangle_4,es un objeto con forma piramidal como la porción de una tarta de color azul +semicylinder/semicylinder_2,rebanada roja +cube/cube_2,cubo verde +triangle/triangle_2,triangulo amarillo +semicylinder/semicylinder_2,es un objeto de color rojo intenso con una forma redondeada +cube/cube_2,es un cuadrado de color verde +triangle/triangle_2,es un objeto de color amarillo en forma triangula +cabbage/cabbage_4,el objeto es una verdura de muchas hojas es de color morado +lime/lime_3,el objeto es de color verde aparenta ser un tipo de fruta +potato/potato_1,el objeto es de forma redondeada es de color rojo oscuro +triangle/triangle_2,el objeto es de color amarillo es de forma triangular como una porción de torta +lime/lime_2,el objeto es de color verde aparenta ser una fruta +cabbage/cabbage_4,es una verdura de color morado con hojas +lime/lime_3,es un fruto de color verde y piel rugosa +potato/potato_1,es una fruta o verdura de color marrón forma esférica +triangle/triangle_2,es un objeto con forma de prisma piramidal de color amarillo +lime/lime_2,es un fruto de color verde y piel rugosa +cube/cube_4,cubo rojo +cuboid/cuboid_4,barra azul +cube/cube_3,cubo azul +semicylinder/semicylinder_4,figura geométrica verde +cucumber/cucumber_4,vegetal verde alargado +cube/cube_4,es cuadrado pequeño y rojo +cuboid/cuboid_4,es rectangular azul y largo +cube/cube_3,es cuadrado pequeño y azul +semicylinder/semicylinder_4,es rectangular con las esquinas ovaladas y verde +cucumber/cucumber_4,es largo verde con espinas y cascara dura +cylinder/cylinder_2,un prisma cilíndrico de color rojo de plástico u otro material brillante +eggplant/eggplant_4,una berenjena de tamaño regular del tipico color entre negro y morado y piel brillante +arch/arch_4,una pieza o molde de un material plastico de color rojo con una base cuadrangular y una entrada semicircular en su parte central +cuboid/cuboid_1,un prisma rectangular de color amarillo de plástico u otro material brillante +cuboid/cuboid_3,un prisma rectangular de color rojo de un material brillante parecido al plástico +cylinder/cylinder_2,cilindro rojo +eggplant/eggplant_4,berenjena negra +arch/arch_4,rampa roja vertical +cuboid/cuboid_1,paralelepipedo amarillo horizontal +cuboid/cuboid_3,paralelepipedo rojo horizontal +triangle/triangle_3,figura geométrica verde +semicylinder/semicylinder_2,figura geométrica roja +lime/lime_4,estructura vegetal verde +orange/orange_3,fruta de color naranja +arch/arch_1,rampa amarilla +triangle/triangle_3,el objeto es de color verde es de forma triangular +semicylinder/semicylinder_2,el objeto tiene forma de arco es de color rojo +lime/lime_4,el objeto es de color verde parece ser algñun tipo de fruta +orange/orange_3,el objeto es una fruta es de color amarillo +arch/arch_1,el objeto es de forma irregular con un hueco en la parte central es de color amarillo +banana/banana_4,un platano horizontal +triangle/triangle_3,un poliedro verde +cube/cube_1,un cubo amarillo +potato/potato_2,un vegetal rojo +lime/lime_4,un vegetal verde +banana/banana_4,un plátano +triangle/triangle_3,un prisma triangular verde +cube/cube_1,un cubo amarillo +potato/potato_2,un tomate +lime/lime_4,un limón verde +carrot/carrot_2,zanahora larga y delgada color naranja +cucumber/cucumber_4,pepino verde largo de tamaño mediano +lime/lime_1,limon verde +tomato/tomato_3,tomate maduro color rojo con corona de hojas +semicylinder/semicylinder_3,forma amarilla semicircular +carrot/carrot_2,zanahoria palida +cucumber/cucumber_4,pepino maduro +lime/lime_1,limon verde +tomato/tomato_3,tomate maduro +semicylinder/semicylinder_3,medio tubo amarillo +cube/cube_4,cubo de color rojo +lemon/lemon_1,limon amarillo +tomato/tomato_2,esfera roja +cabbage/cabbage_4,repollo morado de tamaño mediano +cube/cube_4,cubo rojo +cube/cube_4,figura de color rojizo parece un cubo +lemon/lemon_1,es una fruta de color amarillo es un limon +tomato/tomato_2,es de color rojo parece una fruta parece un tomate +cabbage/cabbage_4,es una verdura color morado parece un repollo +cube/cube_4,figura color rojiza figura geometrica +triangle/triangle_2,tiene una forma triangular y es de color amarillo +lemon/lemon_4,tiene una forma ovalada y es de color amarillo se nota lisa su textura +cylinder/cylinder_4,tiene una forma cilíndrica y es de color verde +tomato/tomato_4,tiene una forma redonda se ve de textura lisa su color es rojo y tiene detalles en verde +triangle/triangle_2,figura geométrica amarilla +lemon/lemon_4,fruta amarilla redonda +cylinder/cylinder_4,cilindro verde +tomato/tomato_4,fruta roja redonda +eggplant/eggplant_1,largo relleno y de color verde +banana/banana_2,largo amarillo suave +cube/cube_2,cuadrado de color verde y de textura suve +semicylinder/semicylinder_2,ovalado de color rojo y de textura suave +eggplant/eggplant_1,es una verdura morada y tiene forma larga +banana/banana_2,es una fruta de color amarillo alargada y se llama banana +cube/cube_2,es una figura geometrica de color verde +semicylinder/semicylinder_2,es una figura geometrica de color rojo +semicylinder/semicylinder_4,seccion de un objeto cilindrico de color verde +arch/arch_3,un objeto rectangular de color verde con un corte semicircular a un costado +lime/lime_3,fragmento de una superficie similar a piel de limon +arch/arch_2,un objeto rectangular de color azul con un corte semicircular a un costado +corn/corn_1,una mazorca de maiz blanco +semicylinder/semicylinder_4,un objecto verde +arch/arch_3,un poliedro verde con agujero +lime/lime_3,un objecto similar a un limon verde +arch/arch_2,un poliedro azul con agujero +corn/corn_1,una mazorca +corn/corn_3,una espiga de maíz +triangle/triangle_2,un prisma triangular amarillo +triangle/triangle_1,un prisma triangular rojo +lemon/lemon_2,un limón amarillo +potato/potato_3,una patata +corn/corn_3,una mazorca de maiz +triangle/triangle_2,una rampa verde +triangle/triangle_1,una rebanada roja +lemon/lemon_2,una manzana amarilla +potato/potato_3,una pera +corn/corn_2,el objeto es una verdura alargada compuesta por dientes es de color blanco +cylinder/cylinder_3,el objeto es de forma cilíndrica es de color azul +carrot/carrot_3,el objeto es una verdura alargada es de color naranja +cucumber/cucumber_3,el objeto es una verdura de forma alargada es de color verde +corn/corn_2,maiz blanco +cylinder/cylinder_3,cilindro azul en posición horizontal +carrot/carrot_3,zanahora de color anaranjado larga y delgada +cucumber/cucumber_3,pepino grande de color verde +arch/arch_4,figura de color rojo +cuboid/cuboid_4,objeto con forma de prisma de color azul +lemon/lemon_2,es un fruto de color amarillo piel rugosa tiene forma esférica +carrot/carrot_2,es una hortaliza de color naranja y forma alargada +arch/arch_4,forma de color rojo +cuboid/cuboid_4,taco de color azul en posición horizontal +lemon/lemon_2,limon amarillo +carrot/carrot_2,forma tubular color anaranjado +plum/plum_2,remolacha +corn/corn_2,mazorca de maiz blanco +orange/orange_2,limon amarillo +banana/banana_4,banana amarilla acostada +plum/plum_1,remolacha madura +plum/plum_2,un vegetal rojo similar a una manzana +corn/corn_2,una mazorca vertical +orange/orange_2,un objeto amarillo similar a un limon +banana/banana_4,un plátano con rasguños +plum/plum_1,un fruto rojo similar a una manzana +cuboid/cuboid_4,un prisma rectangular azul +cabbage/cabbage_1,un repollo púrpura +banana/banana_1,un plátano +orange/orange_3,una naranja +cylinder/cylinder_1,un cilindro amarillo +cuboid/cuboid_4,es un rectangulo azul que se encuentra verticalmente +cabbage/cabbage_1,es un repollo de color morado sobre una base gris +banana/banana_1,es una banana de color amarillo +orange/orange_3,es una naranja +cylinder/cylinder_1,es un objeto de color amarillo en forma vertical +lime/lime_1,el objeto es una fruta de color verde parece de forma redondeada +corn/corn_3,el objeto es una verdura compuesta por muchos dientes es de color blanco +corn/corn_1,el objeto es una verdura compuesta por muchos dientes es de color blanco +lemon/lemon_1,el objeto es de color amarillo tiene un sector de otro color en la parte superior +plum/plum_2,el objeto es de color rojomorado parece ser un fruto +lime/lime_1,un vegetal verde +corn/corn_3,una mazorca horizontal +corn/corn_1,una mazorca vertical +lemon/lemon_1,un vegetal similar a un limon con la marce +plum/plum_2,un objeto rojo +arch/arch_3,tiene una forma algo extraña abajo es plano y arriba tiene una curvatura es de color verde claro +cucumber/cucumber_2,tiene una forma parecida a la de una sandía pero más pequeña su color es verde +triangle/triangle_1,tiene una forma triangular es de color rojo y su textura se nota lisa +eggplant/eggplant_1,tiene una forma algo particular ovalada pero con partes más grandes que otras su color es de morado oscuro +banana/banana_4,tiene una forma con una evidente curvatura se nota robusto y es de color amarillo con tonos de verde +arch/arch_3,rampa de color verde +cucumber/cucumber_2,pepino verde largo de tamaño mediano +triangle/triangle_1,trozo de queso color rojo +eggplant/eggplant_1,berenjena pequeña color negro y tallo verde +banana/banana_4,platano verde tamaño mediano +semicylinder/semicylinder_4,es un objeto de color verde con aspecto de goma la parte inferior es curva +potato/potato_4,es una hortaliza de color amarillo nace en la tierra +eggplant/eggplant_3,es una planta comestible de color morado su textura es brillante +eggplant/eggplant_1,es una planta comestible de color morado su textura es brillante +semicylinder/semicylinder_4,mitad de cilindro verde cortado longitudinalmente +potato/potato_4,objeto de color arena parecido a una papa +eggplant/eggplant_3,berenjena de color morado +eggplant/eggplant_1,berenjena color morado +potato/potato_2,el objeto parece ser una fruta es de color rojo oscuro +banana/banana_3,el objeto es una fruta de forma alargada y curva es de color amarillo +cylinder/cylinder_3,el objeto es de forma cilíndrica es de color azul +cuboid/cuboid_3,el objeto es de forma cúbica es de color rojo +cabbage/cabbage_3,el objeto es una verdura de muchas hojas es de color morado +potato/potato_2,un tomate +banana/banana_3,un plátano +cylinder/cylinder_3,un cilindro azul +cuboid/cuboid_3,un prisma rectangular rojo +cabbage/cabbage_3,un repollo púrpura +arch/arch_1,medio tubo amarillo +cucumber/cucumber_2,pepino maduro +potato/potato_1,manzana madura +arch/arch_1,amarillo de forma rectangular con una media luna en el centro +cucumber/cucumber_2,verde largo de textura aspera +potato/potato_1,redondo morado y pequeño +cube/cube_4,un cubo rojo +carrot/carrot_3,una zanahoria +corn/corn_4,una espiga de maíz +corn/corn_2,una espiga de maíz +cube/cube_3,un cubo azul +cube/cube_4,cuandrado con un tamaño mediano rojo y de textura aspera +carrot/carrot_3,largo delagado y seco +corn/corn_4,largo jugoso blanco y grueso +corn/corn_2,largo fino blanco y jugoso +cube/cube_3,cuadrado azul y pequeño +plum/plum_3,tiene una forma redonda y es de color rojo +arch/arch_3,tiene una forma muy particular de un lado plano y del otro curvo +cabbage/cabbage_1,tiene una forma algo redonda es de color morado y tiene detalles blancos +lime/lime_3,tiene una forma ovalada se nota liso y su color es verde +cucumber/cucumber_4,se parece a una sandía pero más pequeño su color es verde +plum/plum_3,manzana roja +arch/arch_3,medio tubo verde +cabbage/cabbage_1,repollo morado +lime/lime_3,limon verde +cucumber/cucumber_4,pepino verde +corn/corn_1,una espiga de maíz +semicylinder/semicylinder_4,mitad de un cilindro verde +cucumber/cucumber_4,un pepino +cylinder/cylinder_2,un cilindro rojo +cube/cube_4,un cubo rojo +corn/corn_1,choclo blanco con algunos granos más oscuros +semicylinder/semicylinder_4,cilindro verde cortado a la mitad +cucumber/cucumber_4,pepino de color verde +cylinder/cylinder_2,cilindro de color rojo +cube/cube_4,cubo rojo +cucumber/cucumber_1,pepino verde +banana/banana_1,banana de color amarillo claro +plum/plum_1,tomate rojo +orange/orange_4,naraja casi madura +cylinder/cylinder_1,cilindro amarillo horizontal +cucumber/cucumber_1,un pepino +banana/banana_1,un plátano +plum/plum_1,una manzana +orange/orange_4,una naranja +cylinder/cylinder_1,un cilindro amarillo +arch/arch_2,rampa azul +cuboid/cuboid_2,barra verde +cube/cube_3,cubo azul +carrot/carrot_4,raíz de color anaranjado +arch/arch_2,figura prismática rectangular de color azul medio con una hendidura cóncava en el centro +cuboid/cuboid_2,prisma rectangular verde +cube/cube_3,cubo azul +carrot/carrot_4,zanahoria de color naranja claro +cucumber/cucumber_1,vegetal verde alargado +cabbage/cabbage_4,vegetal morado formado por hojas +corn/corn_4,estructura vegetal llena de granos juntos +cuboid/cuboid_4,barra azul +cucumber/cucumber_1,pepino verde tamaño mediano +cabbage/cabbage_4,repollo morado redondo tamaño mediano +corn/corn_4,maiz blanco sin desgranar tamaño grande +cuboid/cuboid_4,taco de color azul en posición vertical +semicylinder/semicylinder_1,es de color azul arriba es redondo y abajo es plano +cabbage/cabbage_1,tiene una forma redonda casi perfecta se ve robusto y es de color morado +lime/lime_4,se ve delicado tiene una forma redonda con ciertas variaciones es de color verde +eggplant/eggplant_3,en un lado es grande y grueso y en el otro un poco delgado es de color morado +semicylinder/semicylinder_1,medio tubo azul +cabbage/cabbage_1,repollo morado +lime/lime_4,limon verde +eggplant/eggplant_3,berengena morada +lime/lime_3,limon verde +cylinder/cylinder_2,cilindro rojo horizontal +triangle/triangle_4,triangulo azul en posición vertical +cylinder/cylinder_1,cilindro amarillo de medio lado +lime/lime_3,tiene una forma redonda y es de color verde +cylinder/cylinder_2,tiene una forma clindrica y es de color rojo +triangle/triangle_4,tiene una forma triangular y es de color azul +cylinder/cylinder_1,tiene una forma amarilla con forma cilindrica +orange/orange_2,tiene una forma redonda y es de color amarillo +cucumber/cucumber_1,tiene una forma larga grueso y de color verde +potato/potato_3,se ve muy deforme su color pareciera marrón claro +orange/orange_2,una naranja +cucumber/cucumber_1,un pepino +potato/potato_3,una patata +eggplant/eggplant_1,una berenjena +arch/arch_3,un prisma rectangular verde con concavidad abierta +triangle/triangle_4,un prisma triangular azul +lime/lime_1,un limón verde +tomato/tomato_4,un tomate +eggplant/eggplant_1,una berenjena +arch/arch_3,una rampa verde +triangle/triangle_4,una rampa azul +lime/lime_1,un limon +tomato/tomato_4,un jitomate anaranjado +lemon/lemon_3,un limón amarillo +carrot/carrot_3,una zanahoria +eggplant/eggplant_1,una berenjena +triangle/triangle_2,un prisma triangular amarillo +banana/banana_3,un plátano +lemon/lemon_3,limon amarillo +carrot/carrot_3,zanahoria palida +eggplant/eggplant_1,berengena morada +triangle/triangle_2,triangulo amarillo +banana/banana_3,banana amarilla +lemon/lemon_3,un limón amarillo +plum/plum_1,una manzana +arch/arch_3,un prisma rectangular verde con concavidad +eggplant/eggplant_2,una berenjena +lemon/lemon_3,un objecto amarillo similar a un limon +plum/plum_1,una fruta rojo similar a una manzana +arch/arch_3,un poliedro verde agujero +eggplant/eggplant_2,una berenjena horizontal +arch/arch_2,rampa de color azul +tomato/tomato_4,tomate sin madurar completamente con corona de hojas y una parte descompuesta +eggplant/eggplant_1,berenjena mediana color morado con tallo verde +plum/plum_1,esfera vinotinto +cube/cube_1,cubo amarillo +arch/arch_2,medio tubo azul +tomato/tomato_4,tomate casi maduro +eggplant/eggplant_1,berengena morada +plum/plum_1,manzana roja +cube/cube_1,cubo amarillo +lemon/lemon_1,un objeto esferico de color amarillo +lime/lime_2,fragmento de una superficie similar a piel de limon +semicylinder/semicylinder_1,seccion de un objeto cilindrico de color azul +carrot/carrot_1,una zanahoria +lemon/lemon_1,un limón amarillo +lime/lime_2,un limón verde +semicylinder/semicylinder_1,mitad de un cilindro azul +carrot/carrot_1,una zanahoria +potato/potato_2,un objecto rojo +carrot/carrot_4,una zanahoria larga +corn/corn_3,una mazorca +lime/lime_3,un obecto vierde +potato/potato_2,es una patata de color cafe de tamaño mediana +carrot/carrot_4,es una zanahoria muy larga de color rosa +corn/corn_3,maiz blanco sobre una base de color gris +lime/lime_3,es una fruta de color verde manzana o pera +lime/lime_2,es una fruta de color verde y forma esférica +potato/potato_2,es un objeto de forma cilíndrica y color marrón rojizo +orange/orange_3,es una fruta de color naranja tiene forma esférica y piel rugosa +carrot/carrot_4,es una hortaliza de color naranja y forma alargada +arch/arch_2,es una figura de color azul tiene forma de prisma no completo +lime/lime_2,es un limón objeto verde de textura rugosa +potato/potato_2,al parecer es una papa tubérculo +orange/orange_3,es una naranja objeto redondo de color naranja +carrot/carrot_4,es una zanahoria objeto largo de color naranja +arch/arch_2,objeto rectangular con un arco que lo traspasa figura geométrica color azul +banana/banana_2,un plátano +cuboid/cuboid_3,un cubo rojo +lime/lime_2,un limón verde +carrot/carrot_2,una zanahoria +lime/lime_1,un limón verde +banana/banana_2,es largo amarillo suave y delicioso +cuboid/cuboid_3,es rectangular rojoseco +lime/lime_2,es redondo verde brilante y aspero +carrot/carrot_2,es largo delgado naranja y seco +lime/lime_1,es redondo desformado verde brilloso +cucumber/cucumber_1,es un pepino de color verde +plum/plum_2,es un objeto morado podria ser repollo morado +cabbage/cabbage_1,es un repollo de color oscuro sobre una base de color grisl +lime/lime_3,es alguna fruta o vegetal de color verde +arch/arch_2,es un objeto de color azul en forma de semicirculo +cucumber/cucumber_1,un pepino maduro +plum/plum_2,un objecto rojo +cabbage/cabbage_1,un vegetal con hojas +lime/lime_3,un vegetal verde +arch/arch_2,un poliedro azul con agujero +carrot/carrot_3,tiene una forma algo larga y delgada su color es naranja opaco +triangle/triangle_4,tiene forma triangular y se le nota una textura algo lisa su color es azul +tomato/tomato_4,tiene una forma redonda y colores naranjas y rojos +triangle/triangle_1,es de color rojo oscuro y tiene una forma triangular +banana/banana_1,se ve algo largo y es amarillo se le nota cierta curvatura +carrot/carrot_3,una zanahoria +triangle/triangle_4,un prisma triangular azul +tomato/tomato_4,un tomate +triangle/triangle_1,un prisma triangular rojo +banana/banana_1,un plátano +cuboid/cuboid_2,paralelepipedo verde +cucumber/cucumber_1,pepino maduro +lemon/lemon_3,limon amarillo +cylinder/cylinder_3,cilindro azul +carrot/carrot_3,zanahoria palida +cuboid/cuboid_2,rectangular verde y con una textura suave +cucumber/cucumber_1,largo verde y de textura aspera +lemon/lemon_3,redondo color amarillo y acido +cylinder/cylinder_3,redondo mediano largo y de color azul +carrot/carrot_3,largo de color naranja y de textura aspera +cylinder/cylinder_4,es un cilindro de color verde en forma horizontal +cabbage/cabbage_3,repollo morado en una mesa +cylinder/cylinder_4,cilindro de color verde en forma vertical +cylinder/cylinder_4,un cilindro verde +cabbage/cabbage_3,un repollo púrpura +cylinder/cylinder_4,un cilindro verde +eggplant/eggplant_4,una berenjena +cylinder/cylinder_3,un cilindro azul +eggplant/eggplant_3,una berenjena +cucumber/cucumber_3,un pepino +eggplant/eggplant_4,es una verdura de color morado piel suave y brillante +cylinder/cylinder_3,es una figura con forma de cilindro de color azul +eggplant/eggplant_3,es una verdura de color morado piel suave y brillante +cucumber/cucumber_3,es una hortaliza de forma cilíndrica y verde su textura es rugosa +potato/potato_3,es una hortaliza de color amarillo y forma irregular +orange/orange_1,es una fruta de color naranja y piel brillante y suave +eggplant/eggplant_4,es una verdura de color morado piel suave y brillante +cucumber/cucumber_3,es una hortaliza de forma cilíndrica y verde su textura es rugosa +potato/potato_3,papa amarilla limpia +orange/orange_1,mandarina madura +eggplant/eggplant_4,berengena morada +cucumber/cucumber_3,pepino verde +lime/lime_3,tiene una forma particular redonda casi perfecta de color verde y su textura lisa +cabbage/cabbage_1,tiene una forma ovalada y es de color morado se nota que tiene varias capas +cabbage/cabbage_3,tiene una forma redonda ovalada tiene varias capas y su color es morado +cucumber/cucumber_1,tiene una forma larga y es grueso su color predominante es el verde +triangle/triangle_2,tiene una forma triangular y es de color amarillo +lime/lime_3,objeto circular verde claro +cabbage/cabbage_1,objeto ovalado de color violeta +cabbage/cabbage_3,objeto ovalado de color violeta +cucumber/cucumber_1,es un pepino +triangle/triangle_2,objeto triangular de color amarillo +orange/orange_3,es una fruta de color naranja tiene forma esférica y piel rugosa +cabbage/cabbage_2,es una verdura de color morado con hojas tiene forma esférica +semicylinder/semicylinder_2,es una figura de color rojo tiene forma de cilindro partido a la mitad +tomato/tomato_1,es un fruto de color rojo y forma esférica +orange/orange_3,una naranja +cabbage/cabbage_2,un repollo púrpura +semicylinder/semicylinder_2,mitad de un cilindro rojo +tomato/tomato_1,un tomate +carrot/carrot_1,zanahoria de gran longitud y extrema delgadez +cuboid/cuboid_3,prisma rectangular colorado +cuboid/cuboid_2,prisma rectangular de color verde +eggplant/eggplant_1,berenjena morada +carrot/carrot_1,la yuca es marron y dde gran longitud la yucca es suave +cuboid/cuboid_3,el objeto es rojo y cubico la longitud del mismo es variable +cuboid/cuboid_2,el objeto es verde y esta en posicion erecta y en forma de barra +eggplant/eggplant_1,la berenjena es saludable y algunas veces morada +semicylinder/semicylinder_4,un objecto verde +cabbage/cabbage_4,un vegetal con hojas +plum/plum_1,un objecto rojo similar a una manzana +triangle/triangle_1,un poliedro rojo +semicylinder/semicylinder_1,un objecto virtual azul +semicylinder/semicylinder_4,es una figura de color verde tiene forma de cilindro partido a la mitad +cabbage/cabbage_4,es una verdura de color morado con hojas +plum/plum_1,es una fruta de color rojo morado y forma esférica textura suave y brillante +triangle/triangle_1,figura con forma de prisma piramidal de color rojo +semicylinder/semicylinder_1,es una figura de color azul tiene forma de cilindro partido a la mitad +cuboid/cuboid_4,taco de color azul en posición horizontal +potato/potato_3,forma de color marron claro +eggplant/eggplant_2,berenjena pequeña color negro y tallo verde +lime/lime_4,limon verde textura rugosa +arch/arch_3,forma de color verde claro +cuboid/cuboid_4,rectangular azul seco +potato/potato_3,largo mediado desformado crem +eggplant/eggplant_2,verde largo lleno y aspero +lime/lime_4,verde redondo agrio +arch/arch_3,rectangular verde claro forma de media luna y seco +cube/cube_2,un cubo verde +lemon/lemon_3,un limón amarillo +arch/arch_3,un prisma rectangular verde con concavidad aberta +cylinder/cylinder_2,un cilindro rojo +cube/cube_2,es un cubo de color verde pastel parece un juguete +lemon/lemon_3,se trata de un limón en su punto listo para usar en la cocina +arch/arch_3,parece la típica plataforma para que jueguen los skaters es de color verde +cylinder/cylinder_2,el objeto es un cilindro de color rojizo parece un juguete de bebés +cube/cube_4,tiene una forma cuadra y es de color rojo +arch/arch_4,tiene una forma plana abajo y arriba tiene una curva es de color rojo +corn/corn_3,tiene una forma larga y tambien tiene ciertas protuberancias por todo su cuerpo +plum/plum_2,tiene una forma redonda y es de color rojo +semicylinder/semicylinder_1,es de color azul y arriba es redondo y abajo plano +cube/cube_4,un cubo rojo +arch/arch_4,un prisma rectangular rojo con concavidad abierta +corn/corn_3,una espiga de maíz +plum/plum_2,una manzana +semicylinder/semicylinder_1,mitad de un cilindro azul +banana/banana_2,amarillo largo delgado y suave +plum/plum_4,redondo color morado y aspero +semicylinder/semicylinder_3,amarillo cuadrado resbaloso +arch/arch_3,verde rectangular con forma de media luna +banana/banana_2,fruta con concha amarilla en forma de falo +plum/plum_4,fruta redonda morada +semicylinder/semicylinder_3,figura geométrica amarilla +arch/arch_3,rampa verde +cucumber/cucumber_1,vegetal verde alargado +semicylinder/semicylinder_2,figura geométrica roja +triangle/triangle_4,figura geométrica de color azul +eggplant/eggplant_2,vegetal morado +banana/banana_3,fruta amarilla +cucumber/cucumber_1,es un pepino de color verde en forma horizontal +semicylinder/semicylinder_2,es un objeto de color rojo con forma redondeada +triangle/triangle_4,es un objeto de color azul con forma de triangulo invertido en forma horizontal +eggplant/eggplant_2,es una berenjea de color verde con hoja verde musgo +banana/banana_3,es una banana +corn/corn_2,una espiga de maíz +corn/corn_2,una espiga de maíz +cucumber/cucumber_3,un pepino +cabbage/cabbage_4,un repollo púrpura +corn/corn_2,tiene una forma larga pero con extraña protuberancias a lo largo de todo su cuerpo +corn/corn_2,tiene una forma peculiar y su textura también se ve bastante pálido +cucumber/cucumber_3,pareciera una sandía pero un poco más larga y más pequeña +cabbage/cabbage_4,tiene una forma redonda de color morado y pareciera que tiene varias capas +triangle/triangle_3,polígono de tres lados es verde +cuboid/cuboid_1,tiene forma parecida a una barra de mantequilla es amarillo +cucumber/cucumber_3,es una verdura de forma de cilindro verde y alargada es similar al pepino +corn/corn_4,es un fruto amarillo alargado y con granos pegados de ahí salen las palomitas +arch/arch_2,objeto de forma semiesférica y de color azul recuerda a una rampa de skate +triangle/triangle_3,es triangular verde y seco +cuboid/cuboid_1,es rectangular amarrilo y jugoso +cucumber/cucumber_3,es alargado verde y con espinas +corn/corn_4,es largo seco blanco y con dientes +arch/arch_2,es rectangular azul y seco +cylinder/cylinder_3,cilindro azul +cabbage/cabbage_2,vegetal morado formado por hojas +triangle/triangle_1,forma geometrica en 3 dimensiones roja +cabbage/cabbage_4,vegetal morado formado por hojas +lemon/lemon_1,fruta redonda de color de amarillo +cylinder/cylinder_3,es un cilindro opaco de color azul tiene aspecto de vela +cabbage/cabbage_2,es una verdura con aspecto de pelota compuesta de hojas de color morado oscuro +triangle/triangle_1,se asemeja a una porción de tarta de color rojo +cabbage/cabbage_4,es una verdura con aspecto de pelota compuesta de hojas de color morado similar a la lechuga +lemon/lemon_1,es un objeto de color amarillo parecido a un limón +tomato/tomato_1,fruta circular de color rojo +potato/potato_1,fruta redonda morada +potato/potato_1,fruta morada redonda +cuboid/cuboid_3,barra roja +lime/lime_2,estructura vegetal verde +tomato/tomato_1,un tomate +potato/potato_1,una manzana +potato/potato_1,una manzana +cuboid/cuboid_3,un prisma rectangular rojo +lime/lime_2,un limón verde +orange/orange_1,tiene una forma ovalada y su color es interesante naranja con varios detalles oscuros +corn/corn_3,tiene una forma larga y se nota que tiene unas especies de puntitos que sobresalen +banana/banana_1,tiene una forma larga de color amarillo y una notable curvatura +lemon/lemon_4,tiene una forma muy ovalada y predomina un color amarillo oscuro +cabbage/cabbage_2,tiene una forma redonda casi perfecta es de color morado con detalles en blanco +orange/orange_1,mandarina madura +corn/corn_3,mazorca de maiz blanco +banana/banana_1,banana madura +lemon/lemon_4,limon amarillo +cabbage/cabbage_2,repollo morado +orange/orange_4,fruta circular de color amarillo +carrot/carrot_4,raíz naranja comestible +lime/lime_1,fruta circular verde +lime/lime_2,posible circulo verde +orange/orange_4,es una fruta de color naranja de aspecto rugoso y forma esférica +carrot/carrot_4,es una hortaliza de color naranja alargada +lime/lime_1,es un fruto de color verde forma esférica +lime/lime_2,es un objeto de color verde brillante +orange/orange_1,redondo marron y de textura aspera +triangle/triangle_2,amarillo triangular y de textura suave +lime/lime_2,pequeño de color verde y acido +cabbage/cabbage_3,grande de color marron oscuro y textura aspera +plum/plum_3,mediano redondo y brilloso por fuera +orange/orange_1,una naranja madura +triangle/triangle_2,un poliedro amarillo +lime/lime_2,un vegetal verde similar a un limon +cabbage/cabbage_3,un vegetal con hojas verde oscuro +plum/plum_3,un vegetal rojo similar a una manzana +cylinder/cylinder_1,objeto con forma de prisma de color amarillo +eggplant/eggplant_3,es una verdura de color morado piel suave y brillante +corn/corn_2,es el fruto de una planta es alargado amarillo y compuesto de múltiples granos +triangle/triangle_2,figura con forma de prisma piramidal de color amarillo +cabbage/cabbage_2,es una verdura de color morado con hojas tiene forma esférica +cylinder/cylinder_1,objeto cilindrico de color amarillo +eggplant/eggplant_3,una berenjena madura +corn/corn_2,una mazorca de maiz blanco +triangle/triangle_2,fragmento de una superficie de color amarillo +cabbage/cabbage_2,un repollo de color morado +cylinder/cylinder_3,cilindro azul +corn/corn_4,objeto lleno de granos juntos +carrot/carrot_2,raíz comestible de color naranja +cuboid/cuboid_2,barra de color verdoso +cylinder/cylinder_3,un cilindro azul +corn/corn_4,una mazorca horizontal +carrot/carrot_2,una zanahoria larga vertical +cuboid/cuboid_2,un poliedro verde +cuboid/cuboid_1,es de color amarillo y tiene una forma rectangular +orange/orange_1,tiene una forma redonda y es de color naranja +tomato/tomato_1,tiene una forma redonda casi perfecta y es de color rojo +arch/arch_3,tiene una forma peculiar de un lado plano y el otro tiene una curva +cabbage/cabbage_4,tiene una forma muy redonda pero con ciertas variaciones tiene color morado y se nota que tiene varias capas +cuboid/cuboid_1,un poliedro amarillo +orange/orange_1,una naranja una fruta +tomato/tomato_1,un objecto rojo +arch/arch_3,un poliedro verde con agujero +cabbage/cabbage_4,un vegetal con hojas +semicylinder/semicylinder_1,un cilindro azul +arch/arch_1,un prisma rectangular amarillo con concavidad abierta +banana/banana_1,un plátano +eggplant/eggplant_1,una berenjena +cylinder/cylinder_1,un cilindro amarillo +semicylinder/semicylinder_1,la parte de arriba es plana y la de abajo es redonda su color es azul +arch/arch_1,tiene forma rara un lado curvo y el otro plano además de su color amarillo +banana/banana_1,tiene una forma curva mas o menos larga y de color amarillo +eggplant/eggplant_1,tiene una forma peculiar una parte gruesa y otra delgada es de color morado oscuro +cylinder/cylinder_1,tiene forma de cilindro su color es amarillo +orange/orange_2,es una naranja +corn/corn_4,es un maiz blanco sobre una base de color gris +cube/cube_2,es un cuadrado de color verde oscuro +orange/orange_2,es de color amarillo y tiene una forma ovalada +corn/corn_4,tiene una forma larga y su textura es algo rara pareciera que tiene muchos puntos en su cuerpo +cube/cube_2,tiene forma cuadrada y es de color verde +potato/potato_4,una patata +cuboid/cuboid_3,un prisma rectangular rojo +cabbage/cabbage_2,un repollo púrpura +lime/lime_2,un limón verde +carrot/carrot_4,una zanahoria +potato/potato_4,tubérculo de color marrón se usa para hacer la tortilla española +cuboid/cuboid_3,de forma de bara de mantequilla y color rojo +cabbage/cabbage_2,verdura de color morado redonda y de piel fina +lime/lime_2,objeto verde y de forma esférica salvo en la parte inferior +carrot/carrot_4,hortaliza alargada y naranja le encanta a los conejos +carrot/carrot_2,una zanahoria mal formada +cube/cube_1,un cubo de color amarillo +carrot/carrot_4,una zanahoria mal formada +banana/banana_3,una banana o cambur maduro +semicylinder/semicylinder_1,seccion de un objeto cilindrico de color azul +carrot/carrot_2,una zanahorias vertical +cube/cube_1,un cubo amarillo +carrot/carrot_4,una zanahoria larga vertical +banana/banana_3,un platano horizontal +semicylinder/semicylinder_1,un objecto azul +eggplant/eggplant_2,berenjena de color morado oscuro +lime/lime_3,objeto de color verde limón con forma de foco luminoso +lemon/lemon_3,objeto que asemeja a un limón amarillo +tomato/tomato_4,tomate de forma casi esférica y color rojo +corn/corn_2,elote blanco +eggplant/eggplant_2,planta con forma de huevo y color morado por dentro es blanco y tiene semillas +lime/lime_3,objeto con forma de globo y de color verde +lemon/lemon_3,fruta amarilla y muy ácida tiene mucha vitamina c +tomato/tomato_4,verdura que se usa mucho en la ensalada es redonda y roja +corn/corn_2,es el fruto de una planta alargado y lleno de granos +corn/corn_2,maiz blanco semidesgranado +cube/cube_2,cubo verde pequeño +lemon/lemon_4,limon amarillo redondo +cucumber/cucumber_2,pepino verde de gran tamaño +corn/corn_2,tiene una forma larga y muchos puntos a lo largo de su cuerpo opaco +cube/cube_2,tiene una forma cuadrada y es de color verde +lemon/lemon_4,tiene una forma redonda pero con leves deformidades +cucumber/cucumber_2,tiene una forma larga y es de color verde se asemeja a una sandía +potato/potato_3,papa amarilla limpia +plum/plum_1,manzana madura +plum/plum_3,manzana madura +banana/banana_1,banana amarilla +corn/corn_4,mazorca de maiz blanco +potato/potato_3,una papa amarilla +plum/plum_1,un ojecto rojo +plum/plum_3,un objecto rojo oscuro +banana/banana_1,un platano horizontal +corn/corn_4,una mazorca +cucumber/cucumber_1,un pepino +cylinder/cylinder_4,un cilindro verde +potato/potato_2,una patata +eggplant/eggplant_3,una berenjena +tomato/tomato_1,un tomate +cucumber/cucumber_1,un pepino largo +cylinder/cylinder_4,un cilindro verde +potato/potato_2,un vegetal rojo +eggplant/eggplant_3,una berenjena madura +tomato/tomato_1,un tomate rojo +eggplant/eggplant_2,vegetal morado +corn/corn_2,estructura vegetal llena de granos juntos +plum/plum_4,vegetal redondo morado +carrot/carrot_1,raíz de color anaranjado +eggplant/eggplant_2,berengena morada +corn/corn_2,mazorca de maiz +plum/plum_4,manzana roja +carrot/carrot_1,zanahoria palida +cuboid/cuboid_2,es un objeto con forma de prisma de color verde +banana/banana_3,es el fruto de un árbol de color amarillo y alargado +banana/banana_2,es el fruto de un árbol de color amarillo y alargado +cuboid/cuboid_2,un prisma rectangular verde +banana/banana_3,un plátano +banana/banana_2,un plátano +cuboid/cuboid_3,un prisma rectangular rojo +triangle/triangle_4,un prisma triangular azul +cuboid/cuboid_2,un prisma rectangular verde +plum/plum_1,una manzana +triangle/triangle_1,un prisma triangular rojo +cuboid/cuboid_3,taco de color rojo en posición horizontal +triangle/triangle_4,forma triangular de color azul +cuboid/cuboid_2,taco de color verde en posición horizontal +plum/plum_1,circulo vinotinto +triangle/triangle_1,forma triangular de color rojo oscuro +cuboid/cuboid_3,el objeto es de color rojo y tiene forma de paralelepípedo parece un ladrillo +semicylinder/semicylinder_2,no se ven los extremos del objeto pero parece un cilindro de color rojo +corn/corn_3,lo que vemos es un choclo o maíz de color blanco ya pelado +lime/lime_1,este objeto es de color verde loro tiene forma de bombilla de luz es decir una esfera sobre una pequeña base cilíndrica +cuboid/cuboid_3,es un rectangulo de forma horizontal de color rojo +semicylinder/semicylinder_2,es un objeto de color rojo plano +corn/corn_3,es un maiz blanco sobre una base gris +lime/lime_1,alguna fruta o vegetal de color verde +plum/plum_4,manzana roja +cylinder/cylinder_1,cilindro amarillo vertical +tomato/tomato_4,tomate roja en proceso de madurar +plum/plum_4,esfera vinotinto +cylinder/cylinder_1,forma de cilindro color amarillo +tomato/tomato_4,tomate redondo sin madurar completamente color naranja +orange/orange_4,una naranja +banana/banana_1,un plátano +semicylinder/semicylinder_3,mitad del un cilindro amarillo +corn/corn_4,una espiga de maíz +carrot/carrot_1,una zanahoria +orange/orange_4,es una naranja +banana/banana_1,es una banana de color amarillo claro +semicylinder/semicylinder_3,es un objero de color amarillo fuerte con forma redondeada sobre una base gris +corn/corn_4,es un maiz de color blanco con algunos granos malos +carrot/carrot_1,es un tuberculo vegetas como patata o zanahoria +banana/banana_2,fruta amarilla que le encanta a los monos +cucumber/cucumber_2,verdura verde y alargada de piel fina y suave y que se usa para hacer cremas +lime/lime_3,objeto verde con forma de globo +cucumber/cucumber_2,verdura con apariencia de cilindro es verde por fuera y blanca por dentro +banana/banana_2,un plátano +cucumber/cucumber_2,un pepino +lime/lime_3,un limón verde +cucumber/cucumber_2,un pepino +carrot/carrot_1,una zanahoria +cucumber/cucumber_3,un pepino +lemon/lemon_1,un limón amarillo +triangle/triangle_2,un prisma triangular amarillo +carrot/carrot_1,largo delagado de color naranja +cucumber/cucumber_3,largo verde de textura aspera y espinas por fuera +lemon/lemon_1,pequeño acido de color amarillo y redondo +triangle/triangle_2,triangular amarillo pequeño +corn/corn_2,maiz blanco de tamaño mediano +cylinder/cylinder_1,forma cilindrica de color amarillo +potato/potato_4,papa pequeña de color marron +arch/arch_3,forma de color verde claro +corn/corn_2,tiene una forma muy larga pero delgada hasta llegar a su punta una punta es gruesa y la otra delgada +cylinder/cylinder_1,su forma cilíndrica y color amarillo hace que resalte su textura lisa +potato/potato_4,tiene una forma extraña toques ovalados pero más deformes su color es marrón pero con manchas oscura +arch/arch_3,la parte de abajo es totalmente plana pero la de arriba tiene una curvatura su color es verde claro +plum/plum_1,una manzana +corn/corn_1,una espiga de maíz +cucumber/cucumber_2,un pepino +lemon/lemon_2,un limón amarillo +plum/plum_1,fruta redonda morada +corn/corn_1,estructura vegetal lleno de granos +cucumber/cucumber_2,vegetal verde alargado +lemon/lemon_2,fruta redonda de color amarillo +triangle/triangle_2,figura con forma de prisma piramidal de color amarillo +semicylinder/semicylinder_3,objeto con forma de semi cilindro de color amarillo +triangle/triangle_4,figura con forma de prisma piramidal de color azul +carrot/carrot_3,es una hortaliza de color naranja y forma alargada +lime/lime_1,es un fruto de color verde piel rugosa +triangle/triangle_2,un triangulo amarillo +semicylinder/semicylinder_3,una rebanada amarillo +triangle/triangle_4,un triangulo azul +carrot/carrot_3,una zanahoria +lime/lime_1,una manzana verde +cucumber/cucumber_2,pepino verde +cube/cube_1,cubo amarillo +carrot/carrot_4,zanahoria palida +semicylinder/semicylinder_3,medio cilindro amarillo +potato/potato_2,tomate muy maduro +cucumber/cucumber_2,un pepino +cube/cube_1,cubo amarillo +carrot/carrot_4,una zanahoria +semicylinder/semicylinder_3,rebanada amarilla +potato/potato_2,un jitomate +eggplant/eggplant_3,una berenjena larga +eggplant/eggplant_2,una berenjena madura +arch/arch_4,un poliedro rojo con agujero +lime/lime_1,un vegetal verde +corn/corn_1,una mazorca +eggplant/eggplant_3,una berenjena de buen tamaño del tipico color entre negro y morado y piel brillante +eggplant/eggplant_2,una berenjena de tamaño regular del tipico color entre negro y morado y piel brillante +arch/arch_4,una pieza o molde de un material plastico de color rojo con una base rectangular y una entrada semicircular +lime/lime_1,una fruta que parecería ser una sandía de un color verde amarillento y piel brillante +corn/corn_1,un elote o mazorca de maíz sin las hojas es decir pelada y de color amarillo +lime/lime_4,un limón verde +triangle/triangle_3,un prisma triangular verde +eggplant/eggplant_4,una berenjena +cuboid/cuboid_1,un prisma rectangular amarillo +orange/orange_4,una naranja +lime/lime_4,parece un alimento de color verde fruta parece una lima parece de color redondo +triangle/triangle_3,es una especie de quesito de color verde apagado no parece comestible como los anteriores más bien parece parte de un puzzle o juego +eggplant/eggplant_4,no recuerdo bien el nombre es una verdura de la familia del calabacín su piel es brillante y de color oscuro +cuboid/cuboid_1,es un objeto de forma cúbica rectangular de color amarillo intenso parece una barra de queso para sandwich +orange/orange_4,de nuevo parece que tenemos un limón aunque este no parece maduro del todo tiene partes verdes y diría que está duro +cucumber/cucumber_3,un pepino +tomato/tomato_3,un tomate +plum/plum_1,una manzana +orange/orange_2,un limón amarillo +cylinder/cylinder_2,un cilindro rojo +cucumber/cucumber_3,es una hortaliza de forma cilíndrica y verde su textura es rugosa +tomato/tomato_3,es un fruto de color rojo y forma esférica su piel es brillante y lisa +plum/plum_1,es un fruto de color morado y forma esférica su piel es brillante y lisa +orange/orange_2,es un fruto de color amarillo piel rugosa tiene forma esférica +cylinder/cylinder_2,es un cilindro de color rojo +tomato/tomato_2,es un fruto de color rojo y forma esférica +tomato/tomato_1,es un fruto de color rojo y forma esférica +triangle/triangle_1,figura con forma de prisma piramidal de color rojo +semicylinder/semicylinder_1,es una figura de color azul tiene forma de cilindro partido a la mitad +corn/corn_2,es el fruto de una planta es alargado amarillo y compuesto de múltiples granos +tomato/tomato_2,tiene una forma algo larga pero redonda su textura se nota lisa y es de color rojo opaco +tomato/tomato_1,tiene una forma predominantemente redonda su color es de color rojos y tu textura lisa +triangle/triangle_1,una forma triangular larga de color rojo oscuro que se alarga un poco +semicylinder/semicylinder_1,tiene una forma redonda pero con deformaciones leves abajo es plano y azul +corn/corn_2,tiene una forma alarga y su textura se nota rugosa predominan colores claros en su cuerpo +cube/cube_3,un cubo de color azul +corn/corn_1,una mazorca de maiz blanco +cube/cube_4,un cubo de color rojo +potato/potato_4,fragmento de una superficie similar a una papa +carrot/carrot_2,un pedazo de lombriz de tierra +cube/cube_3,tiene una forma cuadrada y es de color azul +corn/corn_1,tiene puntos por todo su cuerpo que sobresalen su color es amarillo opaco +cube/cube_4,tiene una forma cuadrada y es de color rojo +potato/potato_4,tiene una forma redonda pero con deformaciones leves su color es marrón +carrot/carrot_2,tiene una forma larga y delgada su color es algo pálido naranja +carrot/carrot_1,se trata de una zanahoria de color anaranjado es muy delgada y alargada está sin pelar +cabbage/cabbage_1,parece un alimento de color morado oscuro y redondo podría ser una remolacha +corn/corn_3,es una mazorca de maíz lista para hacer al horno o a la barbacoa el color es amarillo muy pálido no parece muy apetecible +cucumber/cucumber_1,de nuevo tenemos una foto de un pepino de color verde con la superficie rugosa +lemon/lemon_4,es un limón maduro y perfecto para aliñar una paella +carrot/carrot_1,zanahoria recta +cabbage/cabbage_1,repollo morado +corn/corn_3,mazorca de maiz +cucumber/cucumber_1,pepino verde +lemon/lemon_4,limon amarillo +triangle/triangle_3,tiene una forma triangular su textura se nota lisa y es de color verde +lime/lime_3,tiene una textura lisa su color es muy verde y tiene una forma ovalada +cabbage/cabbage_3,tiene una forma redonda casi perfecta y es de color morado +eggplant/eggplant_3,se parece a una sandía pero de color morado y es más pequeño +cabbage/cabbage_3,tiene una forma redonda y se nota que tiene varias capas es de color morado +triangle/triangle_3,un prisma triangular verde +lime/lime_3,un limón verde +cabbage/cabbage_3,un repollo púrpura +eggplant/eggplant_3,una berenjena +cabbage/cabbage_3,un repollo púrpura +cabbage/cabbage_3,es un repollo de color morado sobre una base blanca +orange/orange_1,es una naranja +semicylinder/semicylinder_2,es un trozo de algo rojo sobre una base blanca +lime/lime_2,alguna fruta de color verde pera o manzana +cucumber/cucumber_3,es un pepino de color verde en forma horizontal +cabbage/cabbage_3,el objeto es una verdura de muchas hojas es de color morado +orange/orange_1,el objeto es una fruta redondeada es de color amarillonaranja +semicylinder/semicylinder_2,el objeto es de color rojo es de forma irregular +lime/lime_2,el objeto es de color verde parece ser una fruta +cucumber/cucumber_3,el objeto es una verdura de forma alargada es de color verde +eggplant/eggplant_4,es largo relleno verde y seco +lime/lime_1,es redondo pequeño y agrio +carrot/carrot_2,es largo delgado y naranja +eggplant/eggplant_4,una berenjena larga +lime/lime_1,un objecto verde +carrot/carrot_2,una zanahoria larga +cuboid/cuboid_1,el objeto es un prisma de color amarillo intenso es un paralelepípedo con dos caras cuadradas y cuatro rectangulares +cube/cube_1,lo que se ve es un cubo de color amarillo intenso +arch/arch_1,el objeto es un prisma de color amarillo intenso parece un paralelepípedo al que le sustrajeron una porción cilíndrica en una de sus caras +banana/banana_4,lo que se ve es una banana de color amarillo verdoso con algunas manchas no parece estar madura +orange/orange_1,el objeto es un fruto probablemente una naranja o mandarina su color es un naranja más bien oscuro +cuboid/cuboid_1,un poliedro amarillo +cube/cube_1,un cubo amarillo +arch/arch_1,un poliedro amarillo con agujero +banana/banana_4,un platano horizontal +orange/orange_1,una naranja con manchas rojas en la cáscara +semicylinder/semicylinder_1,arriba es rendodo y abajo tiene una forma plana además de su color que es azul +orange/orange_2,tiene forma redonda con textura lisa y el color es amarillo algo opaco +cube/cube_4,tiene una forma cuadrada textura lisa y de color rojo peculiar +cuboid/cuboid_4,tiene una forma rectangular y es de color azul +semicylinder/semicylinder_1,mitad de un cilindro azul +orange/orange_2,una naranja +cube/cube_4,un cubo rojo +cuboid/cuboid_4,un prisma rectangular azul +carrot/carrot_1,es una zanahoria de color naranja claro +semicylinder/semicylinder_2,es un objeto de forma redondeada de color rojo fuerte +semicylinder/semicylinder_3,es un objeto de forma redondeada de color amarillo intenso +triangle/triangle_3,es un triangulo de forma horizontal de color verde oscuro +carrot/carrot_1,raíz naranja comestible +semicylinder/semicylinder_2,figura geométrica de color rojo +semicylinder/semicylinder_3,figura geométrica amarilla +triangle/triangle_3,figura geométrica de color verde +tomato/tomato_3,un tomate +eggplant/eggplant_2,una berenjena +cucumber/cucumber_3,un pepino +cylinder/cylinder_3,un cilindro azul +tomato/tomato_3,tomate de color rojo +eggplant/eggplant_2,berenjena morada +cucumber/cucumber_3,objeto que es semejante a un pepino +cylinder/cylinder_3,cilindro color azul +potato/potato_4,el objeto es de color marrón claro es de forma redondeada +cylinder/cylinder_4,el objeto es de forma cilíndrica y color verde se encuentra volteado sobre uno de sus lados +cuboid/cuboid_1,el objeto es un cubo es de color amarillo parece alimento +plum/plum_4,el objeto es de color rojomorado parece ser un fruto +potato/potato_4,un objecto similar a una papa +cylinder/cylinder_4,un cubo verde vertical +cuboid/cuboid_1,un poliedro amarillo vertical +plum/plum_4,una manzana roja +lemon/lemon_1,un limón amarillo +triangle/triangle_1,un prisma triangular rojo +cube/cube_2,un cubo verde +carrot/carrot_4,una zanahoria +lemon/lemon_1,algo amarillo +triangle/triangle_1,un pedazo rojo en forma de triangulo como el de una torta +cube/cube_2,un cubo verde +carrot/carrot_4,una tira guesa parecida a un gusano +cabbage/cabbage_3,repollo morado +cube/cube_2,cubo de color verde +carrot/carrot_3,zanahoria delgada y alargada color naranja +cylinder/cylinder_1,forma amarilla +tomato/tomato_4,tomate redondo sin madurar completamente color naranja y hojas verdes +cabbage/cabbage_3,es una verdura de color morado con hojas tiene forma esférica +cube/cube_2,es un objeto con forma de cubo de color verde +carrot/carrot_3,es una hortaliza de color naranja y forma alargada +cylinder/cylinder_1,es un objeto con forma de cilindro de color amarillo +tomato/tomato_4,es un fruto de color rojo y forma esférica tiene una hoja verde en la parte superior +potato/potato_2,es un fruto de forma esférica y color marrón +carrot/carrot_4,es una hortaliza de color naranja y forma alargada su piel es áspera +plum/plum_4,es un fruto de color morado y forma esférica +triangle/triangle_3,figura con forma de prisma piramidal de color verde +potato/potato_2,esfera vinotinto de tamaño mediano +carrot/carrot_4,forma tubular color anaranjado delgada +plum/plum_4,esfera morada +triangle/triangle_3,forma triangular de color verde +potato/potato_2,el objeto es un tomate rojo +carrot/carrot_4,el objeto es una zanahoria alargada y blanquecina +corn/corn_3,el objeto es una mazorca de maíz +lime/lime_3,el objeto es verde +cucumber/cucumber_1,el objeto es un pepino verde +semicylinder/semicylinder_2,rojo circular cilindrico +triangle/triangle_4,el objeto es un triángulo azul +eggplant/eggplant_2,no hay objeto +banana/banana_3,el objeto es un plátano amarillo +plum/plum_2,es una fruta morada es utilizada para mejorar el sistema digestivo +corn/corn_2,es una mazorca de maíz amarilla con los granos aún intactos en su exterior +orange/orange_2,fruta amarilla y redonda que se necesita pelar para comer se utiliza por su alto contenido en vitamina c +banana/banana_4,fruta amarilla y alargada con cáscara tiene alto contenido en potasio +plum/plum_1,fruta de cáscara comestible roja y brillosa comúnmente del tamaño de un puño +carrot/carrot_2,cosa rosa +cube/cube_4,sin imágen +triangle/triangle_2,bloque amarillo +tomato/tomato_1,redondo tomate +lime/lime_3,objeto verdecon forma de bombillo y solido como un limon +carrot/carrot_4,zanahoria anaranjada larga y delgada +triangle/triangle_4,triangulo tridimensional color azul con tres caras rectangulares +cucumber/cucumber_2,pepino grueso color verde y lineas claras cerca de los extremos +carrot/carrot_1,zanahoria larga delgada con bordes irregulares +triangle/triangle_2,el objeto es amarillo y es rectangular +lemon/lemon_4,este objeto es redondo y su color es amarillo +orange/orange_3,este objeto tiene la forma de esfera y es anaranjado +lime/lime_1,este objeto es color verde y es redondo +banana/banana_4,este objeto es largo tiene el color amarillo y tiene puntitos negros +lemon/lemon_1,un limon bien amarillo +lime/lime_2,el limon esta muy verde +semicylinder/semicylinder_1,una media luna estirada y azul +carrot/carrot_1,una zanahoria lista para comer +potato/potato_1,tomate en estado de descomposicion +cube/cube_4,cubo de color rojo +arch/arch_4,medio tubo de color rojo +cuboid/cuboid_1,paralelepípedo de color amarillo +lime/lime_4,limon de color verde +cuboid/cuboid_4,paralelepipedo azul vertical +cylinder/cylinder_1,cilindro amarillo vertical +lemon/lemon_1,limon amarillo +semicylinder/semicylinder_4,medio cilindro verde +cucumber/cucumber_4,pepino verde +cucumber/cucumber_3,pepino verde muy largo +cucumber/cucumber_1,pepino de color verde +lemon/lemon_2,limon con una etiqueta +tomato/tomato_1,tomate bien maduro +lemon/lemon_1,tiene una forma ovalada y es amarillo se nota un hundimiento en la parte superior +cucumber/cucumber_1,se asemeja a una sandía es largo verde y grueso +cabbage/cabbage_3,tiene una forma redonda casi perfecta y es de color morado oscuro +cabbage/cabbage_4,tiene forma redonda y se nota que está conformado por varias capas delgadas +cylinder/cylinder_2,tiene una forma redonda con una prolongación es d color rojo oscuro +lime/lime_4,tiene una forma rara redonda pero con algunos cambios es de color verde y su textura se nota robusta +cuboid/cuboid_4,tiene una forma rectangular de color azul con breve alargamiento +tomato/tomato_1,una forma redonda color rojo con una textura lisa +banana/banana_2,es un poco largo y amarillo no tan delgado y tiene una leve curva +arch/arch_1,tiene los lados diferentes el izquierdo es plano y el derecho tiene una curva +carrot/carrot_2,tiene una forma larga pero no del toda recta +cube/cube_3,tiene forma cuadrada se nota rigido y es de color azul +cube/cube_1,tiene forma cuadrada el color predominante es el amarillo +tomato/tomato_3,una forma redonda con con leves cambios y color color +triangle/triangle_3,una forma triangular de color verde que se alarga un poco +cube/cube_1,tiene una forma cuadrada amarilla que se ve firme +lime/lime_1,tiene una forma redonda pero que tiene una rara variación en la parte inferior +semicylinder/semicylinder_3,su forma es algo particular arriba plano y abajo redondo es color amarillo +carrot/carrot_3,una forma delgado y larga con un color naranja pálido +lemon/lemon_1,tiene una forma redonda casi perfecta y es de color amarillo +cylinder/cylinder_3,tiene aspecto redondo y un poco largo es de color azul +potato/potato_3,tiene una forma extraña se ve deforme y su color es marrón claro +cabbage/cabbage_1,de color morado oscuro y con una forma redonda casi perfecta pareciera que tuviera capas +tomato/tomato_4,tiene forma circular con tonos de rojo y naranja +cube/cube_4,el objeto denota una forma cuadrada y es rojo tiene una textura lisa +banana/banana_4,tiene lineas que lo hacen ver algo rectangular su textura se ve robusta +orange/orange_3,tiene una forma redonda muy atractiva y más por su color naranja +tomato/tomato_2,tiene una forma ovalada con un poco larga de color rojo +cucumber/cucumber_2,su parecido es semejante al de una sandía es de color verde y se ve pequeño y delgado +cucumber/cucumber_4,tiene una forma larga y circular es verde y algo grueso +plum/plum_1,tiene una forma redonda su textura se ve lisa y es de color rojo +lime/lime_1,tiene una forma rara es de color verde y su textura se nota lisa +cuboid/cuboid_3,es una forma roja rectangular que se ve rígida +eggplant/eggplant_2,se parece a un pepino por su forma pero es morado y se le nota una textura lisa +lemon/lemon_2,es amarillo como un limón y su textura es un tanto peculiar +tomato/tomato_2,tiene una forma redonda y su color rojo opaco es notable +carrot/carrot_1,tiene una forma larga arriba es ancha y abajo delgada además de un color naranja un tanto pálido +corn/corn_2,tiene una forma un poco larga y cubierto de trocitos rectangulares a su alrededor +arch/arch_2,su forma es un tanto cuadrada y rectangular +cuboid/cuboid_2,tiene forma rectangular y tiene color verde +cucumber/cucumber_4,su forma se asemeja a la de una sandía es de color verde y pequeño +cabbage/cabbage_3,se puede notar que tiene varias capas delgadas es de color morado +banana/banana_4,es largo y un poco delgado pero con una leve curvatura +banana/banana_4,es un poco largo se ve robusto y tiene una leve curvatura +triangle/triangle_4,tiene una forma triangular y es de color azul +cucumber/cucumber_3,tiene forma de sandía pero más pequeña y más delgada +cylinder/cylinder_2,tiene forma de cilindro es de color rojo oscuro +cuboid/cuboid_4,cuenta con una forma rectangular es de color azul +semicylinder/semicylinder_3,tiene una forma diferente la parte superior redonda y la de abajo plana +triangle/triangle_1,tiene una forma triangular que alarga un poco su color es un rojo oscuro +semicylinder/semicylinder_3,su forma es algo distinta arriba plano y abajo una curvatura es de color amarillo +cabbage/cabbage_3,es de color morado redondo y pareciera tener capas delgadas una tras otra +lemon/lemon_3,tiene una forma ovalada algo deformada y predomina su color amarillo +cube/cube_2,su forma es cuadrado y es de color verde +cube/cube_2,es de color verde y es notable su forma cuadrada +potato/potato_2,tiene una forma redonda pero con deformaciones leves también son notables leves agujeros +corn/corn_3,es largo y pareciera que tiene cientos de burbujitas sólidas a lo largo de su cuerpo +carrot/carrot_3,su forma no es completamente recta al final tiene una curvatura notable +lemon/lemon_4,tiene una forma ovalada y tiene un atractivo color amarillo +carrot/carrot_2,tiene una forma algo alargada y delgado lo acompaña un color naranja algo pálido +cube/cube_2,tiene una forma cuadra y de color verde se ve rígido +potato/potato_4,tiene una forma particular se ve algo blando y su color es marrón claro +potato/potato_1,tiene una forma ovalada pero con varias deformaciones con un color morado opaco +semicylinder/semicylinder_3,su color es amarillo arriba redondo y abajo plano +orange/orange_3,tiene una forma muy redonda y un característico color naranja +tomato/tomato_3,su forma es redonda y es de color rojo con detalles verdes arriba +cuboid/cuboid_1,tiene una forma rectangular y su color amarillo oscuro luce opaco +plum/plum_3,su forma es algo redonda con leves deformaciones es rojo +lime/lime_1,es redondo y verde pero la parte de abajo sobresale +lemon/lemon_4,tiene una forma ovalada y abajo tiene protuberancia +cube/cube_3,tiene una forma cuadrada y es de color azul +potato/potato_2,destaca por tener una forma ovalada pero con una textura algo peculiar +lime/lime_4,es redondo peor la parte de abajo sobresale +carrot/carrot_3,una forma delgada y larga pero de color naranja opaco +banana/banana_2,es largo y amarillo pero con una leve curva +plum/plum_2,tiene forma redonda y su colo predominante es el rojo oscuro +lime/lime_1,el color predominante que tiene es el verde y es redondo +carrot/carrot_2,es largo y delgado no es del todo recto y su color es pálido +corn/corn_4,se ve robusto su color es pálido y pareciera que en todo su cuerpo tuviera pelotitas +potato/potato_1,tiene una forma particularmente redonda y es color rojo +plum/plum_2,su textura se nota lisa tiene forma ovalada +cylinder/cylinder_2,tiene forma de tambor acostado y es de color rojo +plum/plum_3,tiene una forma particular arriba mas ancho y predomina el rojo se ve liso +triangle/triangle_2,tiene forma triangular parecido a un cono invertido y es de color amarillo +lemon/lemon_2,tiene forma ovalada y es de color amarillo radiante +plum/plum_2,tiene una forma redonda su textura es lisa y su color rojo +cuboid/cuboid_4,cuenta con una forma rectangular y es de color azul +carrot/carrot_3,tiene una forma larga y delgada su color es algo pálido naranja +cuboid/cuboid_3,tiene una forma rectangular y su color rojo oscuro luce opaco +carrot/carrot_2,tiene una forma larga y delgada no es del todo recto +corn/corn_1,se ve pequeño grueso y se nota muy pálido +banana/banana_2,tiene una forma larga es de color amarillo y tiene una leve curva +cylinder/cylinder_2,tiene forma cilíndrica y es de color rojo +eggplant/eggplant_3,tiene una forma algo redonda y su textura se nota muy lisa +plum/plum_4,es redondo casi perfecto tiene un atractivo color rojo +cuboid/cuboid_1,es una forma rectangular algo larga de color amarillo +orange/orange_1,su forma es redonda es de color naranja y tiene varios detalles o manchas oscuras +arch/arch_3,tiene una forma algo extraña de un lado es plano y del otro tiene una curvatura notable +cuboid/cuboid_4,tiene una forma rectangular y su color azul oscuro luce opaco +carrot/carrot_2,tiene un color anaranjado pero pálido su forma es larga y delgada +lime/lime_4,tiene una forma extraña como redonda pero con una parte que sobresale +lime/lime_2,tiene forma extraña que sobresale por encima de su color verde +lemon/lemon_2,es amarillo con una forma algo redonda y un color amarillo llamativo +lemon/lemon_4,tiene una forma ovalada con una protuberancia +cuboid/cuboid_2,tiene forma rectangular alargado y es de color verde +arch/arch_1,tiene una forma particular en un lado es plano y en el otro tiene una circunferencia +corn/corn_2,su forma es algo extraña alargada pero con pelotitas solidas en todos su cuerpo +tomato/tomato_2,tiene una forma ovalada que hace que resalte su color rojo su textura es lisa +arch/arch_3,tiene una forma algo raro sus costados son muy diferentes uno plano y otro curvo es de color verde +plum/plum_1,es de color rojo y muy redondo +arch/arch_4,tiene una forma algo rara abajo plano y arriba tiene una curva +potato/potato_4,tiene una forma algo rara es de color marrón claro +tomato/tomato_1,tiene una forma redonda tiene un potente color rojo +potato/potato_1,tiene una forma redonda y en la parte derecha tiene un pequeño hundimiento +corn/corn_2,tiene una forma redonda y larga pero con protuberancias en todo su cuerpo +carrot/carrot_1,tiene una color naranja opaco y tiene una forma larga pero no del todo recta +triangle/triangle_2,tiene una forma rectangular y su color amarillo oscuro luce opaco +lemon/lemon_4,tiene un color naranja y una forma algo ovalada +orange/orange_3,tiene una forma redonda casi perfecta y es de color naranja +lime/lime_1,su forma es algo extraña se ve pequeño y sensible +banana/banana_4,tiene una forma largo se ve grueso y robusto +semicylinder/semicylinder_3,tiene una forma triangular es de color amarillo +orange/orange_4,tiene una forma redonda y un característico color naranja +cylinder/cylinder_1,tiene forma cuadrada y es de color amarillo +banana/banana_3,no es del todo recto es largo y es de color amarillo +semicylinder/semicylinder_3,tiene una forma rara arriba redondo y abajo plano +cabbage/cabbage_4,tiene una textura peculiar es morado y se nota que tiene varias capas delgadas arriba tiene textura blanca +cucumber/cucumber_1,es largo y se nota robusto un poco es de color verde y redondo +cabbage/cabbage_1,su textura se nota extraña es de color morada y en la parte del frente se nota algo blanco +carrot/carrot_1,tiene forma larga pero con varias curvas tiene un naranja algo opaco +banana/banana_2,es amarillo y se ve largo pero no tanto tiene una curvatura +arch/arch_2,su forma es algo peculiar cuadra de un lado y en el otro se corta es de color azul +lemon/lemon_2,una forma ovalada y un atractivo color amarillo tiene un detalle que resalta +cuboid/cuboid_1,tiene una forma rectangular que se alarga un poco además de su color amarillo +banana/banana_2,una una forma larga y delgada pero con una notable curvatura +cube/cube_4,un cuadrado con una textura algo rasposa su color es un rojo muy atractivo +lemon/lemon_1,tiene una forma ovalada su color es amarillo y su textura es característica +tomato/tomato_2,es redondo y su cuerpo se ve muy liso como brillante de color rojo +cabbage/cabbage_4,cuenta con una forma ovala y pareciera que tiene varios capas delgadas +cube/cube_4,tiene una forma cuadrada y es de color rojo +potato/potato_2,redondo pequeño con un agujero y de textura lisa +banana/banana_3,tiene un color amarillo muy notable es largo con forma algo rectangular +cylinder/cylinder_3,es de color azul y tiene una forma redonda que se alarga un poco +cuboid/cuboid_3,tiene una forma cuadra que se alarga un poco resalta su curioso color rojo +cabbage/cabbage_3,tiene forma redondo con un color morado oscuro +arch/arch_1,tiene una forma algo rara abajo cuadra y arriba con una circunferencia +cucumber/cucumber_2,tiene una forma alargada y es delgado de color verde +potato/potato_1,tiene una notable forma redonda y su color parece morado claro +lime/lime_2,es de color verde con tonos claro y su forma es redonda +potato/potato_2,tiene una forma ovalada y tiene un pequeño hundimiento +orange/orange_3,tiene una forma redonda casi perfecta y es de color naranja +carrot/carrot_4,su forma es algo larga y delgada predomina un color naranja en todo su cuerpo +arch/arch_2,tiene una forma algo peculiar su izquierda es plana y su derecha tiene una curva +cucumber/cucumber_1,tiene una forma alargada se ve grueso y pequeño +plum/plum_2,su forma es redonda y es de color rojo principalmente +cabbage/cabbage_1,tiene una forma circular casi perfecta es morado oscuro +lime/lime_3,tiene forma rectangular y tiene color verde +arch/arch_2,tiene una forma algo particular el lado izquierdo está plano y el derecho se ve una curvatura +potato/potato_3,su forma y texturas son deformes tiene un color naranja pero muy pálido +orange/orange_1,tiene una forma algo ovalada y es de color naranja +eggplant/eggplant_4,de color morado muy oscuro casi pareciéndose a un color negro tiene una forma larga pero gorda +cucumber/cucumber_3,es parecido a una sandía verde pero este es más delgado chiquito y largo +carrot/carrot_1,tiene una forma larga y delgada es de color naranja pálido tiene una punta redonda y otra puntiaguda +cuboid/cuboid_3,tiene una forma rectangular y es de color rojo +cuboid/cuboid_2,tiene forma rectangular y tiene color verde +eggplant/eggplant_1,es de color morado oscuro y el lado izquierdo es redondo y más grande +semicylinder/semicylinder_4,tiene una forma algo peculiar pero sin duda resalta mucho su color verde +cabbage/cabbage_4,tiene una forma redonda con color morado oscuro y una textura rara pareciera que tuviera varias capas +plum/plum_1,tiene una forma redonda pero en algunos aspectos rara además de un bello color rojo oscuro +triangle/triangle_1,su forma triangular hace que el color rojo resalte porque va de delgado a ancho +semicylinder/semicylinder_1,una forma muy rara de color azul aproximada a curvaturas de un redondo +banana/banana_2,es de color amarillo y tiene una forma larga pero curva +plum/plum_4,su forma es redonda y predomina un color rojo algo opaco +semicylinder/semicylinder_3,tiene una forma particular es de color amarillo +arch/arch_3,tiene un color verde claro y del lado derecho tiene una curva y en el lado izquierdo es plano +banana/banana_2,es largo se nota duro y tiene una leve curvatura +cucumber/cucumber_2,tiene forma larga y gruesa se ve delicado y es de color verde +lime/lime_3,es de color verde y se ve redondo además su textura es lisa +cucumber/cucumber_2,tiene una forma algo larga es de color verde y grueso +corn/corn_2,es ancho al principio y luego se va haciendo más delgado +cylinder/cylinder_1,tiene forma de cilindro y es de color amarillo +potato/potato_4,tiene una forma algo deforme y es de color marrón claro +arch/arch_3,tiene una forma algo peculiar su parte inferior es plana y la de arriba tiene una curvatura +plum/plum_1,tiene una forma muy redonda es de color rojo +corn/corn_1,tiene una forma larga y no tan gruesa su color es apaco +cucumber/cucumber_2,se asemeja a una sandía tiene color verde y parece blando +lemon/lemon_2,tiene forma ovalada y tiene un color amarillo muy atractivo +tomato/tomato_2,su forma es ovalada y predomina el color rojo +tomato/tomato_1,es de color rojo y es redondo se ve de textura lisa +triangle/triangle_1,tiene forma triangular con una prolongación que se alarga un poco su color es rojo algo oscuro +semicylinder/semicylinder_1,una forma redonda con puntas triangulares su color es azul +corn/corn_2,es largo delgado y pareciera que tiene pelotitas a lo largo de su cuerpo +cube/cube_3,tiene una forma cuadra y es de color azul +corn/corn_1,tiene una forma algo larga y cientos de puntos sólidos a lo largo de su cuerpo +cube/cube_4,tiene una forma cuadra y predomina el color rojo oscuro +potato/potato_4,tiene forma de corazón y su color es marrón claro +carrot/carrot_2,aunque es un poco largo no es del todo recto tiene ciertas curvaturas +eggplant/eggplant_4,su forma es algo redonda pero también un poco larga es de color morado oscuro +lime/lime_1,tiene una forma redonda y un color verde +carrot/carrot_2,tiene una forma larga casi recta y de color naranja +potato/potato_4,forma un tanto curioso su textura se nota algo áspera +cylinder/cylinder_4,es un forma redonda de color verde que se alarga un poco +cuboid/cuboid_1,una forma cuadrado amarilla que se ve un poco larga +plum/plum_4,redondo con una textura lisa y tonos de color rojizo +cabbage/cabbage_3,tiene una forma redonda y un detalle blanco en la parte superior su color es morado +cube/cube_2,tiene una forma cuadrada y es de color verde +carrot/carrot_3,tiene una forma larga pero no del toda recta es de color naranja +cylinder/cylinder_1,rectangular amarillo y un poco largo +tomato/tomato_4,tiene una forma redonda principalmente su color es rojo +cube/cube_1,cuadrado amarillo pollito +cuboid/cuboid_1,rectángulo amarillo +triangle/triangle_3,triangulo verde +arch/arch_2,rampa azul +semicylinder/semicylinder_2,circulo rojo cortado a la mitad +tomato/tomato_3,fruta circular de color rojo +lemon/lemon_2,fruta circular de color amarillo +cube/cube_4,cubo rojo +arch/arch_1,rampa amarilla +eggplant/eggplant_2,fruta abultada de color purpura +cube/cube_3,cuadrado azul +potato/potato_1,circulo de color marron +lime/lime_3,estructura vegetal de color verde +potato/potato_3,tubérculo marron +cuboid/cuboid_2,cubo alargado de color verde +banana/banana_2,fruta con concha amarilla en forma de falo +cabbage/cabbage_4,vegetal morado formado por hojas +arch/arch_2,rampa azul +lime/lime_1,estructura vegetal de color verdoso +cabbage/cabbage_4,estructura vegetal morada formada por hojas +potato/potato_4,tubérculo blanco y marron +cube/cube_1,cubo amarillo +cylinder/cylinder_1,figura geométrica de color amarillo +cabbage/cabbage_1,estructura vegetal de color morado formado por acumulación de hojas +cucumber/cucumber_3,vegetal verde con forma falica +cylinder/cylinder_2,cilindro rojo +tomato/tomato_3,fruta circular de color rojo +arch/arch_4,rampa roja +carrot/carrot_4,objeto alargado en forma de falo +corn/corn_2,objeto lleno de granos juntos +corn/corn_1,estructura vegetal llena de granos juntos +cylinder/cylinder_1,cilindro amarillo +orange/orange_2,fruta redonda de color de amarillo +triangle/triangle_1,figura geometrica roja +cylinder/cylinder_4,cilindro verde +potato/potato_4,tubérculo blanco y marrón +cylinder/cylinder_4,cilindro verde +plum/plum_4,fruta de color morado +tomato/tomato_2,fruta de color rojo +cabbage/cabbage_4,vegetal morado formado por hojas +lemon/lemon_2,fruta circular amarilla +cube/cube_2,cubo verde +plum/plum_1,circulo de color morado +banana/banana_3,fruta con concha amarilla en forma de falo +cube/cube_1,cubo amarillo +arch/arch_2,rampa azul +tomato/tomato_2,fruta circular de color rojo +orange/orange_2,fruta circular de color amarillo +cucumber/cucumber_1,fruta alargada verde en forma falica +potato/potato_3,tubérculo marrón y blanco +cuboid/cuboid_2,cubo alargado de color verde +cucumber/cucumber_1,fruta verde alargada en forma de falo +lemon/lemon_3,fruta circular amarilla +cylinder/cylinder_3,cilindro azul +carrot/carrot_3,tubérculo alargado de color anaranjado +orange/orange_4,fruta circular de color amarillo +banana/banana_1,fruta con cascara de color amarillo y forma de falo +semicylinder/semicylinder_3,figura geométrica de color amarillo +corn/corn_4,estructura vegetal llena de granos +carrot/carrot_1,estructura con forma de falo +cylinder/cylinder_2,objeto circular colocado horizontalmente de color fucsia +lime/lime_4,vegetal verde claro +cuboid/cuboid_4,objeto rectangular de color celeste +tomato/tomato_1,objeto circular de color rojo +banana/banana_4,es un plátano +arch/arch_3,objeto cóncavo de color verdoso +lime/lime_3,objeto circular de color verde claro +lime/lime_2,objeto circular de color verde claro +cabbage/cabbage_2,objeto circular de color negro +cuboid/cuboid_2,objeto rectangular de color verde +plum/plum_3,objeto circular de color morado +cabbage/cabbage_2,objeto circular y morado oscuro +arch/arch_1,objeto cóncavo de color amarillo +carrot/carrot_3,es una zanahoria +potato/potato_1,objeto cóncavo de color marrón +semicylinder/semicylinder_3,objeto semicircular de color amarillo +orange/orange_3,es un tomate naranja +tomato/tomato_3,es un tomate rojo +cube/cube_3,objeto cúbico de color azul +potato/potato_2,verdura circular roja +lime/lime_4,ensalada de hoja +carrot/carrot_3,es una zanahoria +cube/cube_3,objeto cúbico de color azul +potato/potato_1,objeto circular de color marrón +lime/lime_3,objeto circular de color verde claro +potato/potato_3,es una papa +cuboid/cuboid_2,objeto cúbico largo en color verde +eggplant/eggplant_2,es una berenjena +cylinder/cylinder_2,objeto circular colocado verticalmente en rojo +eggplant/eggplant_1,es una berenjena +plum/plum_3,objeto circular de color ciruela +cuboid/cuboid_2,objeto rectangular y largo de color verde +lemon/lemon_3,es un limon +banana/banana_2,es un plátano +lemon/lemon_4,es un limon +cucumber/cucumber_4,vegetal largo y verde +lime/lime_4,objeto circular de color verde claro +cabbage/cabbage_3,objeto circular de color negro +arch/arch_3,objeto cóncavo colocado verticalmente verde +plum/plum_1,objeto circular de color ciruela +orange/orange_2,es un limon +potato/potato_4,es una papa +cuboid/cuboid_2,objeto rectangular de color verde +carrot/carrot_1,es una zanahoria +corn/corn_3,es una mazorca de maíz +arch/arch_4,objeto cóncavo colocado verticalmente y en color fucsia +eggplant/eggplant_4,es una berenjena +banana/banana_3,es un plátano +cube/cube_1,objeto cúbico de color amarillo +arch/arch_2,objeto cóncavo de color celeste +tomato/tomato_2,objeto oval rojo +eggplant/eggplant_3,es una berenjena +arch/arch_4,objeto cóncavo de color fucsia y colocado verticalmente +lime/lime_1,objeto circular de color verde claro +lemon/lemon_1,es un limon +lemon/lemon_3,es un limon +semicylinder/semicylinder_4,objeto semicircular y de color verde +arch/arch_3,objeto cóncavo de color verde y colocado verticalmente +lime/lime_3,vegetal circular en color verde claro +arch/arch_2,objeto cóncavo de color azul y colocado verticalmente +corn/corn_1,mazorca de maíz +arch/arch_3,objeto cóncavo de color verde oscuro +cucumber/cucumber_2,es una verdura verde +triangle/triangle_1,objeto triangular de color rojo +eggplant/eggplant_1,es una berenjena +banana/banana_4,es un plátano +potato/potato_2,objeto circular de color marrón +banana/banana_3,es un plátano +cylinder/cylinder_3,objeto circular de color azul +cuboid/cuboid_3,objeto cuadrado largo rojo y colocado verticalmente +cabbage/cabbage_3,vegetal similar a una berenjena +lemon/lemon_3,es un limon +plum/plum_1,objeto circular de color ciruela +arch/arch_3,objeto cóncavo y largo de color verde +eggplant/eggplant_2,es una berenjena +cylinder/cylinder_4,objeto circular y color verde +cabbage/cabbage_3,coliflor de color oscuro +cylinder/cylinder_4,objeto alargado y circular de color verde +cucumber/cucumber_1,larga verdura verde oscuro +semicylinder/semicylinder_2,objeto curvo y grande de color rojo +triangle/triangle_4,objeto triangular de color celeste +eggplant/eggplant_2,es una berenjena +banana/banana_3,es un plátano +orange/orange_4,objeto circular de color naranja +carrot/carrot_4,es una zanahoria +lime/lime_1,vegetal circular en color verde claro +lime/lime_2,vegetal circular en color verde claro +potato/potato_3,es una papa +plum/plum_1,objeto circular de color ciruela +plum/plum_3,objeto circular de color ciruela +banana/banana_1,es un plátano +corn/corn_4,es una mazorca de maíz +cucumber/cucumber_2,vegetal largo y verde +cube/cube_1,objeto cúbico y amarillo +carrot/carrot_4,es una zanahoria +semicylinder/semicylinder_3,objeto semicircular de color amarillo +potato/potato_2,objeto circular de color marrón +tomato/tomato_2,es un tomate rojo +tomato/tomato_1,es un tomate rojo +triangle/triangle_1,objeto triangular largo rojo +semicylinder/semicylinder_1,objeto semicircular en color azul +corn/corn_2,es una mazorca de maíz +lemon/lemon_1,es un limon +triangle/triangle_1,objeto triangular de color rojo +cube/cube_2,objeto cúbico de color verde +carrot/carrot_4,es una zanahoria +potato/potato_2,objeto ovalado de color marrón +carrot/carrot_4,objeto largo y delgado de color naranja +plum/plum_4,objeto circular de color marrón +triangle/triangle_3,objeto triangular de color verde oscuro +banana/banana_2,un plátano +arch/arch_1,un prisma rectangular amarillo con concavidad abierta +carrot/carrot_2,una zanahoria +cube/cube_3,un cubo azul +cube/cube_1,un cubo amarillo +eggplant/eggplant_4,una berenjena +cabbage/cabbage_1,un repollo púrpura +banana/banana_1,un plátano +corn/corn_3,una espiga de maíz +semicylinder/semicylinder_4,mitad de un cilindro verde +tomato/tomato_3,un tomate +semicylinder/semicylinder_1,mitad de un cilindro azul +plum/plum_3,una manzana +cylinder/cylinder_2,un cilindro rojo +cylinder/cylinder_4,un cilindro verde +cuboid/cuboid_2,un prisma rectangular verde +cylinder/cylinder_4,un cilindro verde +orange/orange_3,un tomate +carrot/carrot_3,una zanahoria +tomato/tomato_1,un tomate +eggplant/eggplant_2,una berenjena +plum/plum_3,una manzana +plum/plum_4,una manzana +cylinder/cylinder_3,un cilindro azul +potato/potato_4,una patata +cabbage/cabbage_2,un repollo púrpura +cube/cube_4,un cubo rojo +lime/lime_2,un limón verde +cabbage/cabbage_2,un repollo púrpura +semicylinder/semicylinder_3,un prisma triangular amarillo +plum/plum_4,una manzana +cube/cube_1,un cubo amarillo +plum/plum_3,una manzana +corn/corn_1,una espiga de maíz +eggplant/eggplant_4,una berenjena +semicylinder/semicylinder_2,mitad de un cilindro rojo +eggplant/eggplant_4,una berenjena +triangle/triangle_4,un prisma triangular azul +cucumber/cucumber_2,un pepino +cuboid/cuboid_3,un prisma rectangular rojo +lime/lime_2,un limón verde +arch/arch_1,un prisma rectangular amarillo con concavidad abierta +semicylinder/semicylinder_4,mitad de un cilindro verde +eggplant/eggplant_1,una berenjena +orange/orange_2,una naranja +cucumber/cucumber_2,un pepino +semicylinder/semicylinder_1,mitad de un cilindro azul +eggplant/eggplant_3,una berenjena +potato/potato_1,una manzana +eggplant/eggplant_1,una berenjena +semicylinder/semicylinder_3,un semicírculo de una esfera amarilla +triangle/triangle_1,un triángulo de burro +semicylinder/semicylinder_3,un prisma piramidal amarillo +cabbage/cabbage_3,un repollo púrpura +lemon/lemon_3,un limón amarillo +lemon/lemon_4,un limón amarillo +lemon/lemon_3,un limón amarillo +arch/arch_4,un prisma rectangular rosa con concavidad abierta +cabbage/cabbage_3,un repollo púrpura +lime/lime_4,un limón verde +carrot/carrot_1,una zanahoria +cuboid/cuboid_1,un prisma rectangular amarillo +banana/banana_4,un plátano +corn/corn_3,una espiga de maíz +cabbage/cabbage_3,un repollo púrpura +carrot/carrot_1,una patata salsa +arch/arch_3,un prisma rectangular con concavidad abierta +carrot/carrot_2,una patata salsa +tomato/tomato_2,un tomate +cabbage/cabbage_1,un repollo púrpura +plum/plum_1,una manzana +eggplant/eggplant_2,una berenjena +lemon/lemon_3,un limón amarillo +cucumber/cucumber_4,un pepino +cube/cube_3,un cubo azul +corn/corn_1,una espiga de maíz +cabbage/cabbage_1,un repollo púrpura +semicylinder/semicylinder_2,mitad de un cilindro rojo +carrot/carrot_3,una zanahoria +tomato/tomato_4,un tomate +plum/plum_3,una ciruela +potato/potato_3,una patata +orange/orange_2,una naranja +orange/orange_4,una naranja +carrot/carrot_4,una zanahoria +cabbage/cabbage_2,un repollo púrpura +eggplant/eggplant_4,una berenjena +cucumber/cucumber_1,un pepino +cylinder/cylinder_4,un cilindro verde +cylinder/cylinder_4,un cilindro verde +lime/lime_4,un limón verde +orange/orange_3,una naranja +banana/banana_2,un plátano +cabbage/cabbage_4,un hueso +arch/arch_2,un prisma rectangular azul con concavidad +lime/lime_1,un limón +semicylinder/semicylinder_2,un cilindro rojo +corn/corn_3,una espiga de maíz +cylinder/cylinder_3,un cilindro azul +cucumber/cucumber_3,un pepino +cylinder/cylinder_3,un cilindro azul +cabbage/cabbage_4,un repollo púrpura +potato/potato_4,una patata +cube/cube_1,un cubo amarillo +cylinder/cylinder_1,un cilindro amarillo +cabbage/cabbage_1,un repollo púrpura +cucumber/cucumber_3,un pepino +cylinder/cylinder_2,un cilindro rojo +tomato/tomato_3,un tomate +arch/arch_4,un prisma rectangular rosa con concavidad abierta +lime/lime_1,un limón verde +carrot/carrot_4,una zanahoria +cube/cube_3,un cubo azul +cuboid/cuboid_2,un prisma rectangular verde +cuboid/cuboid_4,un prisma rectangular azul +tomato/tomato_3,un tomate +cabbage/cabbage_1,un repollo púrpura +cylinder/cylinder_3,un cilindro azul +tomato/tomato_2,un tomate +cucumber/cucumber_4,un pepino +orange/orange_3,una naranja +triangle/triangle_4,un prisma triangular azul +cuboid/cuboid_1,un prisma rectangular amarillo +potato/potato_3,una patata +semicylinder/semicylinder_4,mitad de un cilindro verde +carrot/carrot_3,una zanahoria +potato/potato_2,un tomate +cucumber/cucumber_4,un pepino +triangle/triangle_1,un prisma triangular rojo +cylinder/cylinder_4,un cilindro verde +potato/potato_4,una patata +cylinder/cylinder_4,un cilindro verde +plum/plum_4,una manzana +potato/potato_2,un tomate +cucumber/cucumber_3,un pepino +plum/plum_3,una ciruela +plum/plum_4,una manzana +cabbage/cabbage_2,un repollo púrpura +cabbage/cabbage_4,un repollo púrpura +lime/lime_3,un limón verde +potato/potato_1,una ciruela +triangle/triangle_2,un prisma triangular amarillo +lime/lime_2,un limón verde +cube/cube_4,un cubo rojo +lemon/lemon_1,un limón amarillo +tomato/tomato_2,un tomate +cabbage/cabbage_4,un repollo púrpura +cube/cube_4,un cubo rojo +eggplant/eggplant_1,una berenjena +banana/banana_2,un plátano +cube/cube_2,un cubo verde +semicylinder/semicylinder_2,mitad de un cilindro rojo +arch/arch_4,un prisma rectangular rosa con concavidad abierta +cuboid/cuboid_4,un cilindro azul +lemon/lemon_2,un limón amarillo +carrot/carrot_2,una zanahoria +lime/lime_1,un cilindro verde +corn/corn_3,una espiga de maíz +corn/corn_1,una espiga de maíz +lemon/lemon_1,un limón amarillo +plum/plum_2,una bola púrpura +semicylinder/semicylinder_4,mitad de un cilindro verde +potato/potato_4,una patata +eggplant/eggplant_3,una berenjena +eggplant/eggplant_1,una berenjena +arch/arch_1,un prisma rectangular con concavidad abierta +cucumber/cucumber_2,un pepino +potato/potato_1,una bola de burro +eggplant/eggplant_1,una berenjena +arch/arch_3,un prisma rectangular verde con concavidad abierta +triangle/triangle_4,un prisma triangular azul +lime/lime_1,un limón verde +tomato/tomato_4,un tomate +lemon/lemon_3,un limón amarillo +plum/plum_1,un cilindro rojo +arch/arch_3,un prisma rectangular verde con concavidad abierta +eggplant/eggplant_2,una berenjena +lime/lime_2,un limón verde +potato/potato_2,un tomate +orange/orange_3,una naranja +carrot/carrot_4,una ceniza +arch/arch_2,un prisma rectangular azul con concavidad abierta +carrot/carrot_1,una zanahoria +cuboid/cuboid_3,un prisma rectangular rojo +cuboid/cuboid_2,un prisma rectangular verde +eggplant/eggplant_1,una berenjena +cuboid/cuboid_4,un prisma rectangular azul +potato/potato_3,una patata +eggplant/eggplant_2,un repollo púrpura +lime/lime_4,un limón verde +arch/arch_3,un prisma rectangular verde con concavidad abierta +corn/corn_2,una espiga de maíz +corn/corn_2,una espiga de maíz +cucumber/cucumber_3,un pepino +cabbage/cabbage_4,un repollo púrpura +orange/orange_1,una naranja +triangle/triangle_2,un prisma triangular amarillo +lime/lime_2,un limón verde +cabbage/cabbage_3,un repollo púrpura +plum/plum_3,un hueso morado +cylinder/cylinder_1,un cilindro amarillo +eggplant/eggplant_3,una berenjena +corn/corn_2,una espiga de maíz +triangle/triangle_2,un polígono amarillo +cabbage/cabbage_2,un repollo púrpura +potato/potato_4,una patata +cuboid/cuboid_3,un prisma rectangular rojo +cabbage/cabbage_2,un repollo púrpura +lime/lime_2,un limón verde +carrot/carrot_4,una zanahoria +eggplant/eggplant_2,una berenjena +lime/lime_3,un limón verde +lemon/lemon_3,un limón amarillo +tomato/tomato_4,un tomate +corn/corn_2,una espiga de maíz +cuboid/cuboid_2,un prisma rectangular verde +banana/banana_3,un plátano +banana/banana_2,un plátano +plum/plum_4,un cilindro rojo +cylinder/cylinder_1,un cilindro amarillo +tomato/tomato_4,un tomate +corn/corn_2,una espiga de maíz +cylinder/cylinder_1,un cilindro amarillo +potato/potato_4,una patata +arch/arch_3,un prisma rectangular verde con concavidad abierta +plum/plum_1,una manzana +corn/corn_1,una espiga de maíz +cucumber/cucumber_2,un pepino +lemon/lemon_2,un limón amarillo +cuboid/cuboid_1,un prisma rectangular amarillo +cube/cube_1,un cubo amarillo +arch/arch_1,un prisma rectangular amarillo con concavidad +banana/banana_4,un plátano +orange/orange_1,una naranja +eggplant/eggplant_3,una berenjena +cabbage/cabbage_3,una col morada +lemon/lemon_3,un limon +banana/banana_2,un platano +eggplant/eggplant_3,una berenjena +cylinder/cylinder_1,pieza geométrica +cucumber/cucumber_4,pepino jea +eggplant/eggplant_4,berenjena sa +carrot/carrot_1,zanahon akl +eggplant/eggplant_4,qjkak sjs +cucumber/cucumber_4,un pepino +cabbage/cabbage_3,una col +banana/banana_4,una banana +banana/banana_4,una banaa +arch/arch_1,pieza geométrica +tomato/tomato_3,pieza geométrica +semicylinder/semicylinder_1,pieza geométrica +eggplant/eggplant_4,pieza geométrica +plum/plum_1,una buena uvota +cucumber/cucumber_3,pepinote gordo +cuboid/cuboid_3,pieza geométrica +lemon/lemon_3,lima limon +cuboid/cuboid_3,pieza geométrica +cube/cube_2,un cuadrado verde de madera +lime/lime_4,una lima si +tomato/tomato_1,un tomate rojo +cylinder/cylinder_1,un algo amarillo +semicylinder/semicylinder_1,algo azulado +semicylinder/semicylinder_4,pieza geométrica +cube/cube_2,pieza geométrica +semicylinder/semicylinder_2,pieza geométrica +carrot/carrot_2,zanahoriota buena +cube/cube_1,cuadrado de plastico +cuboid/cuboid_1,rectangulo de plastico +triangle/triangle_3,un triangulo verde +arch/arch_2,un cuadrardo de plastico que le falta un circulo dentro +semicylinder/semicylinder_2,medio circulo rojo de plastico +eggplant/eggplant_4,pieza geométrica +triangle/triangle_4,pieza geométrica +cucumber/cucumber_2,pieza geométrica +cuboid/cuboid_3,pieza geométrica +lime/lime_2,pieza geométrica +cabbage/cabbage_1,pieza geométrica +cube/cube_3,pieza geométrica +corn/corn_1,pieza geométrica +eggplant/eggplant_1,pieza geométrica +corn/corn_1,pieza geométrica +lime/lime_2,lima rica +banana/banana_3,papa platanito +eggplant/eggplant_1,berenjena gordota +cucumber/cucumber_2,agri pepinino +cuboid/cuboid_1,pieza geométrica +cube/cube_2,pieza geométrica +cube/cube_2,pieza geométrica +potato/potato_2,pieza geométrica +corn/corn_3,pieza geométrica +semicylinder/semicylinder_4,pieza geométrica +banana/banana_1,platano cna +semicylinder/semicylinder_4,pieza geométrica +eggplant/eggplant_2,berenjenas ja +triangle/triangle_3,pieza geométrica +cucumber/cucumber_3,un pepino +arch/arch_2,pieza geométrica +cylinder/cylinder_2,pieza geométrica +tomato/tomato_2,un tomate pera +plum/plum_2,una uva +cuboid/cuboid_1,pieza geométrica +plum/plum_3,una cereza +lime/lime_1,lima amil +lemon/lemon_4,limon nomli +semicylinder/semicylinder_4,pieza geométrica +carrot/carrot_1,un zanahorio +cube/cube_2,pieza geométrica +orange/orange_4,un limon +banana/banana_3,una banana +carrot/carrot_1,zanahoria buena +cuboid/cuboid_1,pieza geométrica +banana/banana_4,platano rico +corn/corn_3,maizote swa +cabbage/cabbage_3,col lombarda +lemon/lemon_2,una mandarina +banana/banana_1,un platano +cylinder/cylinder_1,pues una pieza de juguete amarilla +cuboid/cuboid_2,una cosa anterior verde +cuboid/cuboid_3,pieza de juegos +eggplant/eggplant_1,pieza geométrica +arch/arch_4,pieza geométrica +cuboid/cuboid_3,pieza geométrica +cabbage/cabbage_2,pieza geométrica +lemon/lemon_4,pieza geométrica +eggplant/eggplant_3,una berenjena +plum/plum_4,una uva +cuboid/cuboid_1,pieza geométrica +orange/orange_1,una naranaja +arch/arch_3,pieza geométrica +triangle/triangle_4,una pieza triangular azul +carrot/carrot_1,una zanahoria +banana/banana_1,un platano +corn/corn_1,una barca de maiz +plum/plum_2,una uva rica +lemon/lemon_4,pieza geométrica +cuboid/cuboid_2,pieza geométrica +arch/arch_1,pieza geométrica +corn/corn_2,pieza geométrica +tomato/tomato_2,pieza geométrica +arch/arch_3,pieza geométricapieza geométrica +plum/plum_1,pieza geométrica +arch/arch_4,pieza geométrica +corn/corn_4,pieza geométrica +triangle/triangle_4,pieza geométrica +carrot/carrot_2,pieza geométrica +orange/orange_2,pieza geométrica +potato/potato_4,papa frita +tomato/tomato_1,tomate peroso +potato/potato_1,una uvota +corn/corn_2,maiz fs +carrot/carrot_1,zana horia +corn/corn_4,pieza geométrica +orange/orange_4,pieza geométrica +carrot/carrot_3,pieza geométrica +plum/plum_2,pieza geométrica +cube/cube_2,pieza geométrica +cucumber/cucumber_2,pepino rico +cube/cube_1,pieza geométrica +arch/arch_2,pieza geométrica +cylinder/cylinder_4,pieza geométrica +cabbage/cabbage_4,col morada +cabbage/cabbage_3,col morada +triangle/triangle_1,pieza geométrica +potato/potato_1,una papa +orange/orange_1,una mandarina +orange/orange_3,una naranja +cucumber/cucumber_3,un pepino +cucumber/cucumber_1,un pepino +lemon/lemon_2,un limon +tomato/tomato_1,un tomate +triangle/triangle_1,pieza geométrica +cabbage/cabbage_2,pieza geométrica +triangle/triangle_3,pieza geométrica +cucumber/cucumber_3,pieza geométrica +corn/corn_4,pieza geométrica +tomato/tomato_1,un tomate +plum/plum_2,una uva +eggplant/eggplant_3,una berenjena +cuboid/cuboid_3,pieza geométrica +cabbage/cabbage_4,una col +cucumber/cucumber_1,un pepino +cabbage/cabbage_1,col morada +carrot/carrot_1,zanahoria fea +banana/banana_2,platano mal cortado +arch/arch_2,una esfera de plastico como una especie de medio circulo y rampa +plum/plum_4,parece el ser humano por dentro +cucumber/cucumber_1,un pepino +cube/cube_1,un cuadrado de plastico +plum/plum_2,no se ve +plum/plum_2,una uva morada +triangle/triangle_2,pieza geométrica +banana/banana_3,un platano +lemon/lemon_1,una naranja +orange/orange_4,una naranja +corn/corn_4,maiz ziam +cucumber/cucumber_3,pepino onipep +cube/cube_1,pieza geométrica +cube/cube_3,pieza geométrica +carrot/carrot_1,zana fea +lemon/lemon_1,limon rico +cuboid/cuboid_4,pieza geométrica +cylinder/cylinder_3,pieza geométrica +corn/corn_3,pieza geométrica +semicylinder/semicylinder_2,pieza geométrica +semicylinder/semicylinder_1,pieza geométrica +corn/corn_1,pieza geométrica +tomato/tomato_2,pieza geométrica +cabbage/cabbage_4,pieza geométrica +lime/lime_3,pieza geométrica +potato/potato_1,pieza geométrica +triangle/triangle_2,pieza geométrica +lime/lime_2,pieza geométrica +cube/cube_4,pieza geométrica +cuboid/cuboid_4,pieza geométrica +cube/cube_3,pieza geométrica +semicylinder/semicylinder_4,pieza geométrica +cucumber/cucumber_4,pieza geométrica +triangle/triangle_2,pieza geométrica +lemon/lemon_4,pieza geométrica +cylinder/cylinder_4,pieza geométrica +tomato/tomato_4,pieza geométrica +corn/corn_3,pieza geométrica +triangle/triangle_2,pieza geométrica +triangle/triangle_1,pieza geométrica +lemon/lemon_2,pieza geométrica +potato/potato_3,pieza geométrica +corn/corn_2,un maiz +cylinder/cylinder_3,pieza geométrica +carrot/carrot_3,una zanahoria +cucumber/cucumber_3,un pepino +arch/arch_3,pieza geométrica +cucumber/cucumber_2,pieza geométrica +triangle/triangle_1,pieza geométrica +eggplant/eggplant_1,pieza geométrica +banana/banana_4,pieza geométrica +cube/cube_4,pieza geométrica +carrot/carrot_3,una zanahoria +corn/corn_4,un maiz +corn/corn_2,un maiz pocho +cube/cube_3,pieza geométrica +plum/plum_3,pieza geométrica +arch/arch_3,pieza geométrica +cabbage/cabbage_1,pieza geométrica +lime/lime_3,pieza geométrica +cucumber/cucumber_4,pieza geométrica +eggplant/eggplant_1,una berenjena morada +arch/arch_3,media caca verde +triangle/triangle_4,triangulo azul +lime/lime_1,lima verde y sabrosona +tomato/tomato_4,tomate rojo y verde +arch/arch_2,pieza geométrica +tomato/tomato_4,tomate verde +eggplant/eggplant_1,berenjena frua +plum/plum_1,uva plana +cube/cube_1,pieza geométrica +banana/banana_2,pieza geométrica +cuboid/cuboid_3,pieza geométrica +lime/lime_2,pieza geométrica +carrot/carrot_2,pieza geométrica +lime/lime_1,pieza geométrica +semicylinder/semicylinder_4,medio circulo verde +cabbage/cabbage_4,una col morada +plum/plum_1,una cereza +triangle/triangle_1,un triangulo de plastico +semicylinder/semicylinder_1,medio circulo azul de puto plastico +cube/cube_2,cuadrado verde de madera +lemon/lemon_3,limon mi limonero +arch/arch_3,el objeto que ha salido antes +cylinder/cylinder_2,esfera alargada +cube/cube_4,algo de plastico cuadrado +arch/arch_4,objeto medio esferico como una rampa de plastico +corn/corn_3,una barca de maiz +plum/plum_2,una uva +semicylinder/semicylinder_1,media luna de plastico +banana/banana_2,pieza geométrica +plum/plum_4,pieza geométrica +semicylinder/semicylinder_3,pieza geométrica +arch/arch_3,pieza geométrica +cuboid/cuboid_1,pieza geométrica +orange/orange_1,pieza geométrica +tomato/tomato_1,pieza geométrica +arch/arch_3,pieza geométrica +cabbage/cabbage_4,pieza geométrica +semicylinder/semicylinder_1,pieza geométrica +arch/arch_1,pieza geométrica +banana/banana_1,pieza geométrica +eggplant/eggplant_1,pieza geométrica +cylinder/cylinder_1,pieza geométrica +potato/potato_4,pieza geométrica +cuboid/cuboid_3,pieza geométrica +cabbage/cabbage_2,pieza geométrica +lime/lime_2,pieza geométrica +carrot/carrot_4,pieza geométrica +cucumber/cucumber_1,un pepino +cylinder/cylinder_4,pieza geométrica +potato/potato_2,una papa roja +eggplant/eggplant_3,una berenjena +tomato/tomato_1,un tomate pera +cuboid/cuboid_2,una coso verde dura +banana/banana_3,un platano con peor pinta +banana/banana_2,un platano de canarias +cuboid/cuboid_3,pieza geométrica +triangle/triangle_4,pieza geométrica +cuboid/cuboid_2,pieza geométrica +plum/plum_1,pieza geométrica +triangle/triangle_1,pieza geométrica +cuboid/cuboid_3,algo rojo rectangular +semicylinder/semicylinder_2,algo rojo esferico +corn/corn_3,una barca de maiz +lime/lime_1,parece la piel y textura de la lima +banana/banana_2,pieza geométrica +cucumber/cucumber_2,pieza geométrica +lime/lime_3,pieza geométrica +cucumber/cucumber_2,pieza geométrica +eggplant/eggplant_3,una berenjena +eggplant/eggplant_2,una berenjena +arch/arch_4,pieza geométrica +lime/lime_1,un limon o lima +corn/corn_1,un maiz +carrot/carrot_1,zana dura +cabbage/cabbage_1,col dura +corn/corn_3,maiz dur +cucumber/cucumber_1,pepino agrio +lemon/lemon_4,limon dulson +cabbage/cabbage_3,pieza geométrica +cube/cube_2,pieza geométrica +carrot/carrot_3,pieza geométrica +cylinder/cylinder_1,pieza geométrica +tomato/tomato_4,pieza geométrica +potato/potato_2,patata marron +carrot/carrot_4,zanahoria naranaj +plum/plum_4,uva morada +triangle/triangle_3,pieza geométrica +potato/potato_1,objeto redondo que parece una panza una manzana vista desde arriba +cube/cube_4,un cubo de chicle hay una mitad de ladrillo en la imagen +arch/arch_4,una rampa para patinar y hacer acrobacias hay una figura geométrica +cuboid/cuboid_1,barra de mantequilla figura rectangular +lime/lime_4,una cabeza de lechuga la copa de un árbol +potato/potato_2,mandarina vista desde arriba bien podría ser un tomate visto desde arriba +cucumber/cucumber_3,es un pepino objeto color verde +plum/plum_3,manzana roja puede ser una ciruela +plum/plum_4,la figura parece ser un durazno luna roja +cabbage/cabbage_2,bola de boliche una coliflor descompuesta +semicylinder/semicylinder_4,banca de un parque cabeza de cepillo de dientes +potato/potato_4,es una papa fritura de maíz +eggplant/eggplant_3,berenjena verdura de color negro +eggplant/eggplant_1,es una berenjena parece una macana +banana/banana_1,es un plátano o banana +cabbage/cabbage_2,repollo de color morado +carrot/carrot_1,zanahoria larga a la que le falta un trozo +banana/banana_1,es un plátano o banana +triangle/triangle_3,objeto verde de forma prismática triangular +plum/plum_3,objeto color rojo oscuro casi morado tiene forma esférica +eggplant/eggplant_2,es una berenjena de color morado oscuro +cucumber/cucumber_1,es un pepino +carrot/carrot_4,zanahoria de gran longitud +cylinder/cylinder_4,objeto de color verde y forma cilíndrica +triangle/triangle_1,objeto de color rojo es semejante a una porción de pastel +cylinder/cylinder_3,cilindro color azul +semicylinder/semicylinder_1,objeto de color azul se asemeja a un cilindro cortado longitudinalmente +cucumber/cucumber_4,imagen de un pepino +cuboid/cuboid_3,es un prisma cuadrangular de color rojo +carrot/carrot_2,una zanahoria bastante larga +cube/cube_3,cubo azul +lime/lime_1,objeto de color verde con forma de foco incandescente +orange/orange_1,objeto de color amarillo naranja tiene forma casi circular se parece a un tomate +cube/cube_4,semejante a un dado de color rojo liso +cuboid/cuboid_4,prisma rectangular de color azul +cube/cube_3,cubo de color azul +semicylinder/semicylinder_4,cilindro verde cortado al medio longitudinalmente +cucumber/cucumber_4,es un pepino +corn/corn_2,fruto de la planta de maíz de color blanco y con granosse llama choclo en argentina y elote en méxico +cylinder/cylinder_3,cilindro de color azul +carrot/carrot_3,zanahoria de gran longitud +cucumber/cucumber_3,es un pepino +lime/lime_3,objeto de color verde con forma de foco incandescente +cylinder/cylinder_2,cilindro de color rojo +triangle/triangle_4,objeto de color azul y forma prismática triangular +cylinder/cylinder_1,cilindro de color amarillo limón +potato/potato_3,es una papa con piel de color marrón claro +plum/plum_1,manzana de color rojo +plum/plum_3,objeto color rojo oscuro semejante a una manzana +banana/banana_1,es una banana también puede ser un plátano +corn/corn_4,fruto del maíz llamado elote o choclo +eggplant/eggplant_2,berenjena su color es morado oscuro +corn/corn_2,es un elote o choclo o mazorca +plum/plum_4,objeto color rojo oscuro semejante a una manzana +carrot/carrot_1,zanahoria naranja y larga +plum/plum_4,objeto de color rojo tenue parecido a una manzana +cylinder/cylinder_1,objeto de color amarillo limón y forma casi rectangular +tomato/tomato_4,tomate con forma de bola y color rojo naranja +carrot/carrot_1,zanahoria de gran longitud +semicylinder/semicylinder_2,objeto rojo con forma de cilindro cortado longitudinalmente +semicylinder/semicylinder_3,objeto amarillo limón con forma de cilindro cortado longitudinalmente +triangle/triangle_3,objeto de color verde que se asemeja a una rampa +carrot/carrot_3,se observa una figura +semicylinder/semicylinder_4,se observa una figura +lime/lime_4,se observa una figura +carrot/carrot_4,se observa una figura +arch/arch_1,se observa una figura +semicylinder/semicylinder_2,se observa una figura roja +orange/orange_1,se observa una figura naranja +plum/plum_2,se observa una figura roja +cuboid/cuboid_4,se observa una figura roja +potato/potato_3,se observa una figura roja +eggplant/eggplant_1,se observa una figura roja +lime/lime_2,se observa una figura roja +cucumber/cucumber_2,se observa una figura roja +corn/corn_2,se observa una figura roja +eggplant/eggplant_3,se observa una figura roja +carrot/carrot_2,se observa un objeto alargado en forma de palo alargado de color tierra y va de mayor a menor grosor +cube/cube_4,se observa un cuadrado en forma de relieve de color rojo +triangle/triangle_2,se observa un rectangulo con medio triangulo en la parte derecha del rectangulo es de color amarillo +tomato/tomato_1,se observa una pelota de color rojo +tomato/tomato_3,se observa una figura roja +triangle/triangle_3,se observa una figura roja +cube/cube_1,se observa una figura roja +lime/lime_1,se observa una figura roja +semicylinder/semicylinder_4,se observa una figura +tomato/tomato_3,se observa una figura +semicylinder/semicylinder_1,se observa una figura +plum/plum_3,se observa una figura +cylinder/cylinder_2,se observa una figura +banana/banana_2,se observa un platano de la inferior a la superior +corn/corn_2,se obserba una mazorca de derecha a izquierda +cylinder/cylinder_4,no hay imagen +tomato/tomato_3,se observa un tomate redondo con una pequeña picadura en el centro de la parte superior +potato/potato_3,se observa un bulto amarillo +cylinder/cylinder_4,se observa una figura verde +cuboid/cuboid_2,se observa una figura vede +cylinder/cylinder_4,se observa una figura verde +orange/orange_3,se observa una naranja +cabbage/cabbage_1,se observa una figura roja +tomato/tomato_4,se observa una figura roja +cube/cube_4,se observa una figura roja +banana/banana_4,se observa una figura roja +orange/orange_3,se observa una figura roja +triangle/triangle_1,se observa una figura +banana/banana_2,se observa una figura +lemon/lemon_2,se observa una figura +eggplant/eggplant_3,se observa una figura +banana/banana_1,se observa una figura +corn/corn_2,se observa un cuadrado amarillo +arch/arch_2,se observa un cuadrado amarillo +cuboid/cuboid_2,se observa un cuadrado amarillo +cube/cube_4,se observa una figura +banana/banana_4,se observa una figura +triangle/triangle_4,se observa una figura +lemon/lemon_2,se observa una figura +plum/plum_3,se observa una figura +cube/cube_2,se observa una figura +lime/lime_4,se observa una figura +tomato/tomato_1,se observa una figura +cylinder/cylinder_1,se observa una figura +semicylinder/semicylinder_1,se observa una figura +cube/cube_1,se observa una figura roja +cuboid/cuboid_1,se observa una figura roja +triangle/triangle_3,se observa una figura roja +arch/arch_2,se observa una figura roja +semicylinder/semicylinder_2,se observa una figura roja +cube/cube_1,se observa un cuadrado amarillo +plum/plum_3,se observa un cuadrado amarillo +corn/corn_1,se observa un cuadrado amarillo +eggplant/eggplant_4,se observa un cuadrado amarillo +semicylinder/semicylinder_2,se observa un cuadrado amarillo +cabbage/cabbage_1,se observa una redonda de color gris difuminado +cube/cube_3,se observa un cuadrado en forma de relieve +corn/corn_1,se observa un objeto alargado con pequeñas miezas de color amarillo +eggplant/eggplant_1,se observa una berenjena +corn/corn_1,se observa una mazorca con perspectiva de mas cercano a mas lejano +banana/banana_4,se observa una figura roja +cylinder/cylinder_4,se observa una figura roja +cube/cube_1,se observa una figura roja +corn/corn_3,se observa una figura roja +cylinder/cylinder_3,se observa una figura roja +cucumber/cucumber_3,se observa un pepino +arch/arch_2,se observa una figura azul +cylinder/cylinder_2,se observa una figura roja +tomato/tomato_2,se observa una figura roja +plum/plum_2,se observa una figura roja +potato/potato_1,se observa una figura +semicylinder/semicylinder_3,se observa una figura +orange/orange_3,se observa una figura +tomato/tomato_3,se observa una figura +plum/plum_3,se observa una figura +eggplant/eggplant_2,se observa una figura +cucumber/cucumber_1,se observa una figura +carrot/carrot_4,se observa una figura +banana/banana_2,se obserba un platano +plum/plum_2,se obserba una manzana +lime/lime_1,se observa una lima +carrot/carrot_2,se obserba una zanahoria +corn/corn_4,se obserba una mazorca de maiz +plum/plum_3,se observa una figura +plum/plum_2,se observa una figura +orange/orange_3,se observa una figura +carrot/carrot_4,se observa una figura +triangle/triangle_2,se observa una figura roja +lemon/lemon_2,se observa una figura roja +plum/plum_2,se observa una figura roja +cuboid/cuboid_4,se observa una figura roja +carrot/carrot_3,se observa una figura roja +banana/banana_1,se observa un platano +tomato/tomato_3,se observa un tomate +eggplant/eggplant_4,no se ve la imagen +corn/corn_4,se observa una mazorca +carrot/carrot_1,se observa una zanahoria +carrot/carrot_3,se observa una figura roja +corn/corn_3,se observa una figura roja +eggplant/eggplant_4,se observa una figura roja +lemon/lemon_4,se observa una figura roja +cabbage/cabbage_4,se observa una figura roja +triangle/triangle_4,se observa una figura roja +triangle/triangle_2,se observa una figura roja +triangle/triangle_3,se observa una figura roja +cylinder/cylinder_2,se observa una figura roja +cube/cube_3,se observa una figura roja +lemon/lemon_2,se observa una figura +banana/banana_1,se observa una figura +cylinder/cylinder_1,se observa una figura +cuboid/cuboid_2,se observa una figura +cuboid/cuboid_3,se observa una figura +cylinder/cylinder_4,se observa un cuadrado amarillo +triangle/triangle_1,se observa un cuadrado amarillo +cylinder/cylinder_3,se observa un cuadrado amarillo +semicylinder/semicylinder_1,se observa un cuadrado amarillo +cucumber/cucumber_4,se observa un cuadrado amarillo +cucumber/cucumber_4,se observa una figura +triangle/triangle_3,se observa una figura +tomato/tomato_2,se observa una figura +corn/corn_2,se observa una figura +potato/potato_2,se observa una figura +eggplant/eggplant_1,se observa una figura roja +arch/arch_4,se observa una figura roja +cuboid/cuboid_3,se observa una figura roja +cabbage/cabbage_2,se observa una figura roja +lemon/lemon_4,se observa una figura roja +eggplant/eggplant_3,se observa una figura roja +plum/plum_4,se observa una figura roja +cuboid/cuboid_1,se observa una figura roja +orange/orange_1,se observa una figura roja +arch/arch_3,se observa una figura roja +cuboid/cuboid_1,se observa una figura +triangle/triangle_1,se observa una figura +lemon/lemon_2,se observa una figura +orange/orange_4,se observa una figura +cuboid/cuboid_4,se observa una figura roja +carrot/carrot_2,se observa una figura roja +lime/lime_4,se observa una figura roja +lime/lime_2,se observa una figura roja +lemon/lemon_2,se observa una figura roja +orange/orange_2,se observa una figura +carrot/carrot_4,se observa una figura +semicylinder/semicylinder_3,se observa una figura +cuboid/cuboid_4,se observa una figura +corn/corn_4,se observa una figura roja +triangle/triangle_4,se observa una figura roja +carrot/carrot_2,se observa una figura roja +orange/orange_2,se observa una figura roja +cabbage/cabbage_3,se observa una figura +arch/arch_3,se observa una figura +plum/plum_1,se observa una figura +orange/orange_2,se observa una figura +potato/potato_4,se observa una figura +cucumber/cucumber_2,se observa un pepino +cube/cube_1,se observa un cuadrado amarillo +arch/arch_2,se observa un cuadrado +cylinder/cylinder_4,se observa un cuadrado amarillo +cabbage/cabbage_4,se observa un cuadrado amarillo +cabbage/cabbage_3,se observa una figura +triangle/triangle_1,se observa una figura +potato/potato_1,se observa una figura +orange/orange_1,se observa una figura +orange/orange_3,se observa una figura +tomato/tomato_4,se observa una figura +arch/arch_1,se observa una figura +triangle/triangle_3,se observa una figura +cabbage/cabbage_2,se observa una figura +corn/corn_4,se observa una figura +carrot/carrot_1,se observa una figura +lime/lime_3,se observa una figura +potato/potato_3,se observa una figura +carrot/carrot_2,se observa una figura +cucumber/cucumber_4,se observa una figura roja +cylinder/cylinder_2,se observa una figura roja +semicylinder/semicylinder_1,se observa una figura roja +corn/corn_1,se observa una figura roja +eggplant/eggplant_2,se observa una figura roja +cuboid/cuboid_2,se observa una figura +carrot/carrot_1,se observa una figura +corn/corn_3,se observa una figura +arch/arch_4,se observa una figura +eggplant/eggplant_4,se observa una figura +semicylinder/semicylinder_4,se observa una figura roja +orange/orange_1,se observa una figura roja +arch/arch_4,se observa una figura roja +lime/lime_3,se observa una figura roja +carrot/carrot_1,se observa un conejo +lemon/lemon_1,se observa un limon +cuboid/cuboid_4,se observa un rectangulo +cylinder/cylinder_3,se observa un cilindro azul +corn/corn_3,se observa un cuadrado amarillo +semicylinder/semicylinder_2,se observa un cuadrado amarillo +semicylinder/semicylinder_1,se observa un cuadrado amarillo +corn/corn_1,se observa un cuadrado amarillo +tomato/tomato_2,se observa un cuadrado amarillo +triangle/triangle_3,se observa una figura verde +semicylinder/semicylinder_2,se observa una figura roja +lime/lime_4,se observa una lima +orange/orange_3,se observa una naranja +arch/arch_1,se observa una figura amarilla +banana/banana_4,se observa un platano +triangle/triangle_3,se observa una piramide verde +cube/cube_1,se observa un cuadrado amarillo +potato/potato_2,se observa un mango +lime/lime_4,se observa una lima +carrot/carrot_2,se observa una zanahoria +cucumber/cucumber_4,se observa un pepino +lime/lime_1,se observa una lima +tomato/tomato_3,se obserba un tomate +semicylinder/semicylinder_3,se observa media circunferencia amarilla +triangle/triangle_2,se observa una figura +lemon/lemon_4,se observa una figura +cylinder/cylinder_4,se observa una figura +tomato/tomato_4,se observa una figura +semicylinder/semicylinder_4,se observa un cuadrado amarillo +arch/arch_3,se observa un cuadrado amarillo +lime/lime_3,se observa un cuadrado amarillo +arch/arch_2,se observa un cuadrado amarillo +corn/corn_1,se observa un cuadrado amarillo +corn/corn_3,se observa una mazorca de maíz +triangle/triangle_2,no se observa la image +triangle/triangle_1,se observa un rectángulo rojo +lemon/lemon_2,se observa un limon +potato/potato_3,se observa una patata +plum/plum_2,se observa una figura +corn/corn_2,se observa una figura +orange/orange_2,se observa una figura +banana/banana_4,se observa una figura +plum/plum_1,se observa una figura +cuboid/cuboid_4,se observa una figura roja +cabbage/cabbage_1,se observa una figura roja +banana/banana_1,se observa una figura roja +orange/orange_3,se observa una figura roja +cylinder/cylinder_1,se observa una figura roja +lime/lime_1,se observa una figura roja +corn/corn_3,se observa una figura roja +corn/corn_1,se observa una figura roja +lemon/lemon_1,se observa una figura roja +plum/plum_2,se observa una figura roja +plum/plum_3,se observa una figura roja +arch/arch_3,se observa una figura verde +cabbage/cabbage_1,se observa una figura roja +lime/lime_3,se observa una figura roja +cucumber/cucumber_4,se observa una figura roja +arch/arch_2,se observa una figura +cuboid/cuboid_2,se observa una figura +cube/cube_3,se observa una figura +carrot/carrot_4,se observa una figura +cucumber/cucumber_1,se observa un pepino +cabbage/cabbage_4,se observa una col +corn/corn_4,se observa una mazorca +cuboid/cuboid_4,se observa un rectángulo azul +semicylinder/semicylinder_1,se observa una figura roja +cabbage/cabbage_1,se observa una figura roja +lime/lime_4,se observa una figura roja +eggplant/eggplant_3,se observa una figura roja +lime/lime_3,se observa una lima +cylinder/cylinder_2,se observa un cilindro +triangle/triangle_4,no se observa la imagen +cylinder/cylinder_1,no se observa la imagen +lemon/lemon_3,se observa un limon +carrot/carrot_3,se observa una zanahoria +eggplant/eggplant_1,se observa una berenjena +triangle/triangle_2,se observa un rectángulo amarillo +banana/banana_3,se observa un platano +cuboid/cuboid_2,se observa un cuadrado amarillo +cucumber/cucumber_1,se observa un cuadrado amarillo +lemon/lemon_3,se observa un cuadrado amarillo +cylinder/cylinder_3,se observa un cuadrado amarillo +carrot/carrot_3,se observa un cuadrado amarillo +cube/cube_2,se observa un cuadrado +lemon/lemon_3,se observa un limon +arch/arch_3,se observa un cuadrado +cylinder/cylinder_2,se observa un cilindro rojo +cylinder/cylinder_3,se observa una figura +cabbage/cabbage_2,se observa una figura +triangle/triangle_1,se observa una figura +cabbage/cabbage_4,se observa una figura +lemon/lemon_1,se observa una figura +tomato/tomato_1,se observa una figura +potato/potato_1,se observa una figura +potato/potato_1,se observa una figura +cuboid/cuboid_3,se observa una figura +lime/lime_2,se observa una figura +orange/orange_1,se observa una naranja +corn/corn_3,se observa una mazorca de maíz +banana/banana_1,no se observa la imagen +lemon/lemon_4,se observa un limón +cabbage/cabbage_2,se observa una col negra +orange/orange_1,se observa un cuadrado amarillo +triangle/triangle_2,se observa un cuadrado amarillo +lime/lime_2,se observa un cuadrado amarillo +cabbage/cabbage_3,se observa un cuadrado amarillo +plum/plum_3,se observa un cuadrado amarillo +cylinder/cylinder_1,se observa un cilindro +eggplant/eggplant_3,se observa una berenjena +corn/corn_2,se observa una mazorca de maíz +triangle/triangle_2,se observa un cuadrado amarillo +cabbage/cabbage_2,se observa una col negra +cylinder/cylinder_3,se observa un cuadrado amarillo +corn/corn_4,se observa un cuadrado amarillo +carrot/carrot_2,se observa un cuadrado amarillo +cuboid/cuboid_2,se observa un cuadrado amarillo +orange/orange_2,se observa una figura roja +corn/corn_4,se observa una figura roja +cube/cube_2,se observa una figura roja +corn/corn_2,se observa una mazorca +cube/cube_2,se observa una figura verde +lemon/lemon_4,se observa una naranja +cucumber/cucumber_2,se observa un pepino +eggplant/eggplant_2,se observa un cuadrado amarillo +corn/corn_2,se observa un cuadrado amarillo +plum/plum_4,se observa un cuadrado amarillo +carrot/carrot_1,se observa un cuadrado amarillo +cuboid/cuboid_2,se observa un rectángulo +banana/banana_3,se observa un platano +banana/banana_2,se observa un platano +cuboid/cuboid_3,se observa una figura roja +semicylinder/semicylinder_2,se observa una figura roja +corn/corn_3,se observa una mazorca +lime/lime_1,se observa una lima +lime/lime_4,se observa una lima +triangle/triangle_3,se observa un rectángulo verde +eggplant/eggplant_4,se observa una berenjena +cuboid/cuboid_1,se observa un rectángulo amarillo +orange/orange_4,se observa una naranja +carrot/carrot_1,se observa una figura +cabbage/cabbage_1,se observa una figura +corn/corn_3,se observa una figura +cucumber/cucumber_1,se observa una figura +lemon/lemon_4,se observa una figura +cuboid/cuboid_1,se observa un rectangulo en perspectiva de fondo izquierda es de color amarillo +cube/cube_1,se observa un cuadrado con perspectiva derecha es de color amarillo +arch/arch_1,se observa un cuadrado con una circunferencia en el centro es de color amarillo +banana/banana_4,se observa un platano verde con las puntas hacia dentro +orange/orange_1,se obserba una naranja de color naranja palido +tomato/tomato_3,se observa un cuadrado amarillo +eggplant/eggplant_2,se observa un cuadrado amarillo +cucumber/cucumber_3,se observa un cuadrado amarillo +cylinder/cylinder_3,se observa un cuadrado amarillo +potato/potato_4,se observa una patata +cylinder/cylinder_4,se observa un cilindro verde +cuboid/cuboid_1,se observa un rectángulo amarillo +plum/plum_4,se observa una manzana +lemon/lemon_1,se observa un limon +triangle/triangle_1,se observa un triangulo +cube/cube_2,se observa un cuadrado +carrot/carrot_4,se observa una zanahoria +plum/plum_4,parece ser alguna fruta talvez tuna manzana +orange/orange_1,es tuna naranja +potato/potato_4,el objeto como una papa +corn/corn_4,un elote entero +semicylinder/semicylinder_3,esponja amarilla +tomato/tomato_4,tomate fruta +banana/banana_3,plátano fruta +cube/cube_4,poliedro virtual +cucumber/cucumber_2,un pepino maduro +arch/arch_2,un poliedro vertical azul agujero +cuboid/cuboid_3,un poliedro rojo vertical +cabbage/cabbage_1,un vegetal con hojas +cabbage/cabbage_1,imagen vacía +tomato/tomato_4,imagen vacía +cube/cube_4,poliedro virtual +banana/banana_4,plátano fruta +orange/orange_3,naranja fruta +triangle/triangle_1,un objeto rojo en forma de triangulo +banana/banana_2,un platano maduro horizontal +lemon/lemon_2,un limon maduro +eggplant/eggplant_3,una berenjena madura +banana/banana_1,un platano maduro vertical +plum/plum_1,una manzana roka +cucumber/cucumber_3,un pepino verde +cuboid/cuboid_3,un cilindro rojo horizontal +lemon/lemon_3,un limón amarillo +cuboid/cuboid_3,un cilindro rojo vertical +cube/cube_4,un poliedro rojo +banana/banana_4,un platano maduro horizontal +triangle/triangle_4,un objeto similar a una cortina azul +lemon/lemon_2,un limón amarillo +plum/plum_3,una manzana roja +lime/lime_2,un limón verde +cabbage/cabbage_2,un vegetal con hojas +semicylinder/semicylinder_3,una esponja amarilla +plum/plum_4,una manzana roja +carrot/carrot_4,una zanahoria larga +cube/cube_3,un cubo azul +cabbage/cabbage_3,un vegetal con hojas +cabbage/cabbage_4,un vegetal con hojas +lemon/lemon_4,un limón maduro +lemon/lemon_3,un limón maduro +arch/arch_4,un poliedro rojo +cabbage/cabbage_3,un vegetal con hojas verde oscuro +lime/lime_4,una ensalada verde +banana/banana_1,un platano horizontal +tomato/tomato_3,un tomate rojo +eggplant/eggplant_4,un berenjena larga +corn/corn_4,el objeto con el maíz cerca +carrot/carrot_1,una zanahoria larga +cylinder/cylinder_4,cilindro virtual verde vertical +cylinder/cylinder_4,cilindro virtual verde vertical +lime/lime_4,un limón verde +orange/orange_3,una naranja con manchas rojas en la cáscara +cuboid/cuboid_3,un poliedro rojo +carrot/carrot_2,una zanahoria larga +cube/cube_3,un cubo azul +lime/lime_1,un limón verde +orange/orange_1,una naranja con manchas rojas en la cáscara +tomato/tomato_4,un tomate maduro +orange/orange_4,una naranja una fruta +lemon/lemon_2,un limon maduro +cube/cube_3,un cubo azul +triangle/triangle_4,un objeto similar a una cortina azul +cylinder/cylinder_2,cilindro virtual +eggplant/eggplant_4,berenjena vegetal +arch/arch_4,virtual poliedro con agujero +cuboid/cuboid_1,mantequilla amarillo +cuboid/cuboid_3,poliedro virtual +cucumber/cucumber_1,un pepino maduro +plum/plum_2,una manzana roja +cabbage/cabbage_1,un vegetal con hojas verde +lime/lime_3,una ensalada con hojas verdes +arch/arch_2,un poliedro azul con agujero +carrot/carrot_3,una zanahoria larga +triangle/triangle_4,un objeto en forma de triángulo azul +tomato/tomato_4,un tomate maduro +triangle/triangle_1,un objeto en forma de triángulo rojo +banana/banana_1,un platano maduro horizontal +eggplant/eggplant_4,una berenjena horizontal +cylinder/cylinder_3,un cilindro azul +eggplant/eggplant_3,una berenjena horizontal +cucumber/cucumber_3,un pepino maduro +cube/cube_2,un cubo verde +lemon/lemon_3,un limón maduro +arch/arch_3,un poliedro verde con agujero +cylinder/cylinder_2,un cilindro rojo +corn/corn_2,no visible +corn/corn_2,una comida con maíz cerca +cucumber/cucumber_3,un pepino horizontal y maduro +cabbage/cabbage_4,un vegetal con hojas +carrot/carrot_2,una zanahorias vertical +cube/cube_1,un cubo amarillo +carrot/carrot_4,una zanahorias larga vertical +banana/banana_3,un platano horizontal +semicylinder/semicylinder_1,un objeto similar a una cortina azul +eggplant/eggplant_3,una berenjena madura +eggplant/eggplant_2,una berenjena madura +arch/arch_4,poliedro virtual con agujero +lime/lime_1,un melon verde +corn/corn_1,la fruta que tiene el maíz cerca +cube/cube_3,un cubo azul +corn/corn_1,una comida con maíz cerca +cube/cube_4,un poliedro rojo +potato/potato_4,una papa madura +carrot/carrot_2,una zanahoria larga +cuboid/cuboid_1,un poliedro amarillo +cube/cube_1,un cubo amarillo +arch/arch_1,un poliedro amarillo con agujero +banana/banana_4,un plátano con rasguños +orange/orange_1,una naranja con manchas rojas en la cáscara +semicylinder/semicylinder_2,veo un medio cilindro rojo +orange/orange_1,yo veo una naranja +plum/plum_2,veo una manzana +cuboid/cuboid_4,veo un cubo azul +potato/potato_3,yo veo una papa +eggplant/eggplant_1,veo un berenjena +lime/lime_2,veo un vegetal verde +cucumber/cucumber_2,yo veo un pepino +corn/corn_2,yo monto un epi de maíz +eggplant/eggplant_3,veo un berenjena +banana/banana_4,yo veo un banano +arch/arch_3,veo una pieza verde transportada +lime/lime_3,veo un limon verde +lime/lime_2,veo un limon verde +cabbage/cabbage_2,vo un choux rojo +cube/cube_2,veo un cubo verde +cube/cube_2,veo un cubo verde +potato/potato_2,yo veo una papa +corn/corn_3,yo monto un epi de maíz +semicylinder/semicylinder_4,veo un medio cilindro verde +banana/banana_1,yo veo un banano +semicylinder/semicylinder_4,veo un medio cilindro verde +eggplant/eggplant_2,veo un berenjena +triangle/triangle_3,veo un triángulo verde +cube/cube_3,veo un cubo azul +potato/potato_2,veo una manzana +lime/lime_4,veo un limon verde +carrot/carrot_3,veo una zanahoria +cucumber/cucumber_4,yo veo un pepino +triangle/triangle_3,veo un triángulo verde +tomato/tomato_2,yo veo un tomate +corn/corn_2,yo monto un epi de maíz +potato/potato_2,veo una manzana +corn/corn_1,veo un cocinero de maíz +cabbage/cabbage_1,vo un choux rojo +semicylinder/semicylinder_2,veo un medio cilindro rojo +carrot/carrot_3,yo veo un carruaje +tomato/tomato_4,yo veo un tomate +cabbage/cabbage_3,vo un choux rojo +potato/potato_1,veo una manzana +orange/orange_2,veo una naranja +banana/banana_3,yo veo un banano +orange/orange_4,veo una naranja +orange/orange_2,yo veo una naranja +carrot/carrot_4,yo veo un carruaje +semicylinder/semicylinder_3,veo un medio cilindro amarillo +cuboid/cuboid_4,veo un cubo azul +cucumber/cucumber_2,yo veo un pepino +cube/cube_1,veo un cubo amarillo +arch/arch_2,veo una pieza azul transportada +cylinder/cylinder_4,veo un cilindro verde +cabbage/cabbage_4,vo un choux rojo +cuboid/cuboid_4,veo un cubo azul +tomato/tomato_3,yo veo un tomate +cabbage/cabbage_1,vo un choux rojo +cylinder/cylinder_3,veo un cilindro azul +tomato/tomato_2,yo veo un tomate +cucumber/cucumber_4,yo veo un pepino +orange/orange_3,yo veo una naranja +triangle/triangle_4,veo un triángulo azul +cuboid/cuboid_1,veo un cubo amarillo +potato/potato_3,yo veo una papa +arch/arch_2,veo una pieza azul con un agujero +plum/plum_4,veo una manzana +cucumber/cucumber_1,yo veo un pepino +cube/cube_1,veo un cubo amarillo +plum/plum_2,veo una manzana +semicylinder/semicylinder_4,veo un medio cilindro verde +carrot/carrot_3,yo veo un carruaje +potato/potato_2,yo veo una papa +cucumber/cucumber_4,yo veo un pepino +semicylinder/semicylinder_2,veo un medio cilindro rojo +cube/cube_2,veo un cubo verde +triangle/triangle_2,veo un triángulo amarillo +triangle/triangle_3,veo un triángulo verde +semicylinder/semicylinder_2,yo camino por un medio ciclo rojo +lime/lime_4,veo un vegetal verde +orange/orange_3,veo una naranja +arch/arch_1,veo una forma amarilla con un agujero +cuboid/cuboid_4,veo un cubo azul +cabbage/cabbage_1,vo un choux rojo +banana/banana_1,yo veo un banano +orange/orange_3,veo una naranja +cylinder/cylinder_1,veo una pieza amarilla +corn/corn_1,veo un cocinero de maíz +semicylinder/semicylinder_4,veo un medio cilindro verde +cucumber/cucumber_4,yo veo un pepino +cylinder/cylinder_2,veo un cilindro rojo +cube/cube_4,veo un cubo rojo +lime/lime_2,veo un limon verde +potato/potato_2,veo una manzana +orange/orange_3,veo una naranja +carrot/carrot_4,veo una zanahoria +arch/arch_2,veo un transductor de pieza azul +carrot/carrot_3,veo una zanahoria +triangle/triangle_4,veo un triángulo azul +tomato/tomato_4,yo veo un tomate +triangle/triangle_1,camino un triángulo rojo +banana/banana_1,yo veo un banano +cylinder/cylinder_4,veo un cilindro verde +cabbage/cabbage_3,vo un choux rojo +cylinder/cylinder_4,veo un cilindro verde +tomato/tomato_1,yo veo un tomate +potato/potato_1,veo una manzana +potato/potato_1,veo una manzana +cuboid/cuboid_3,veo un cubo rojo +lime/lime_2,veo un limon verde +potato/potato_3,yo veo una papa +plum/plum_1,veo una manzana +plum/plum_3,veo una manzana +banana/banana_1,yo veo un banano +corn/corn_4,yo monto un epi de maíz +carrot/carrot_1,yo veo un carruaje +cucumber/cucumber_3,yo veo un pepino +lemon/lemon_1,veo un limon +triangle/triangle_2,veo un triángulo amarillo +cabbage/cabbage_3,vo un choux rojo +orange/orange_1,yo veo una naranja +semicylinder/semicylinder_2,veo un cilindro rojo +lime/lime_2,veo un limon verde +cucumber/cucumber_3,yo veo un pepino +tomato/tomato_3,yo veo un tomate +eggplant/eggplant_2,veo un berenjena +cucumber/cucumber_3,veo una cancha +cylinder/cylinder_3,veo un cilindro azul +cucumber/cucumber_4,es un pepino verde +cylinder/cylinder_2,es un cilindro rojo +semicylinder/semicylinder_1,es una forma geométrica azul se asemeja al trapecio +corn/corn_1,es un maíz amarillo claro +eggplant/eggplant_2,es una berenjena +cucumber/cucumber_3,de color verde con rugosidades de forma alargada se suele utilizar en ensaldadas +tomato/tomato_3,de color rojo redondo puede utilizarse crudo en ensaladas también se utiliza paa realizar salsas +plum/plum_1,objeto redondo de color rojo es una fruta que al comerla hace ruido +orange/orange_2,fruta de color amarillo redonda y blanca por dentro al comerla hace ruido +cylinder/cylinder_2,cilíndrico de color rojo los niños lo utilizan para jugar y encastrar +plum/plum_3,el objeto es similar a una bola es un objeto morado +potato/potato_3,este objeto parase una papa es color marron +orange/orange_2,este objeto es una naranja es una naranja de color mas claro que oscuro +orange/orange_4,este objeto es una naranja es una naranja grande +carrot/carrot_4,esta imagen es una zanahoria es una zanahoria vieja +semicylinder/semicylinder_3,mitad de un cilindro amarillo +tomato/tomato_4,un tomate +banana/banana_3,un plátano +cube/cube_4,un cubo rojo +eggplant/eggplant_4,una berenjena +cabbage/cabbage_1,un repollo púrpura +banana/banana_1,un plátano +corn/corn_3,un sabugo de maíz +semicylinder/semicylinder_3,mitad de un cilindro amarillo +carrot/carrot_3,una zanahoria +lemon/lemon_1,una naranja +cylinder/cylinder_3,un cilindro azul +potato/potato_3,una patata +plum/plum_4,una ciruela +cylinder/cylinder_3,un cilindro azul +potato/potato_4,una patata +cabbage/cabbage_2,un repollo púrpura +cube/cube_4,un cubo rojo +arch/arch_1,un cilindro amarillo con concavidad +tomato/tomato_3,um tomate +semicylinder/semicylinder_1,mitad de un cilindro azul +eggplant/eggplant_4,una berenjena +arch/arch_1,un prisma rectangular amarillo con concavidad +semicylinder/semicylinder_4,mitad de un cilindro verde +eggplant/eggplant_1,una berenjena +orange/orange_2,una naranja +cucumber/cucumber_2,un pepino +banana/banana_4,un plátano +cylinder/cylinder_4,un cilindro verde +cube/cube_1,un cubo amarillo +corn/corn_3,un sabugo de maíz +cylinder/cylinder_3,un cilindro azul +semicylinder/semicylinder_1,mitad de un cilindro azul +eggplant/eggplant_3,una berenjena +potato/potato_1,una patata +eggplant/eggplant_1,una berenjena +carrot/carrot_3,un vegetal naranja +lemon/lemon_4,un limón siciliano +carrot/carrot_2,una zanahoria +cube/cube_2,un cubo verde +potato/potato_4,una patata +plum/plum_3,una bola morada +eggplant/eggplant_2,una berenjena +cucumber/cucumber_1,un pepino +carrot/carrot_4,una zanahoria +potato/potato_1,una patata +plum/plum_2,una ciruela +cylinder/cylinder_2,un cilindro rojo +plum/plum_3,una ciruela +plum/plum_3,una ciruela +plum/plum_2,una ciruela +orange/orange_3,una naranja +carrot/carrot_4,una zanahoria +carrot/carrot_3,un vegetal naranja +corn/corn_3,un sabugo de maíz blanquecino +eggplant/eggplant_4,una berenjena +lemon/lemon_4,una naranja +cabbage/cabbage_4,un repollo púrpura +plum/plum_4,una ciruela +orange/orange_1,una naranja +potato/potato_4,una patata +corn/corn_4,un sabugo de maíz +cylinder/cylinder_4,un cilindro verde +triangle/triangle_1,un prisma triangular rojo +cylinder/cylinder_3,un cilindro azul +semicylinder/semicylinder_1,mitad de un cilindro azul +cucumber/cucumber_4,un pepino +lemon/lemon_3,una naranja +banana/banana_2,un plátano +lemon/lemon_4,un limón +cucumber/cucumber_4,un pepino +lime/lime_4,un limón +cuboid/cuboid_1,un prisma rectangular amarillo +triangle/triangle_1,un prima triangular rojo +lemon/lemon_2,un limón siciliano +orange/orange_4,una naranja +cuboid/cuboid_4,un cilindro azul +cylinder/cylinder_1,un cilindro amarillo +lemon/lemon_1,un limón +semicylinder/semicylinder_4,mitad de un cilindro verde +cucumber/cucumber_4,un pepino +semicylinder/semicylinder_2,un objeto rojo +corn/corn_3,un sabugo de maíz blanquecino +cylinder/cylinder_3,un cilindro azul +cucumber/cucumber_3,un pepino +cylinder/cylinder_3,un cilindro azul +carrot/carrot_1,una zanahoria +lime/lime_3,un limón +potato/potato_3,una patata +carrot/carrot_2,una zanahoria +lime/lime_3,un limón +carrot/carrot_4,una zanahoria +triangle/triangle_4,un prisma triangular azul +cucumber/cucumber_2,un pepino +carrot/carrot_1,una zanahoria +cucumber/cucumber_4,un pepino verde +orange/orange_3,una naranja +triangle/triangle_4,un prisma triangular azul +cuboid/cuboid_1,un prisma rectangular amarillo +potato/potato_3,una patata +carrot/carrot_4,una zanahoria +corn/corn_2,un sabugo de maíz blanquecino +corn/corn_1,un sabugo de maíz +cylinder/cylinder_1,un cilindro amarillo +orange/orange_2,una naranja +arch/arch_2,un prisma rectangular azul con con concavidad concavidad +plum/plum_4,una ciruela +cucumber/cucumber_1,un pepino +cube/cube_1,un cubo amarillo +plum/plum_2,una ciruela +arch/arch_2,un cilindro azul con concavidad +lemon/lemon_2,un limón siciliano +cuboid/cuboid_1,un prisma rectangular amarillo +banana/banana_2,un plátano +plum/plum_2,una ciruela +triangle/triangle_2,un prisma triangular amarillo +banana/banana_3,un plátano +lemon/lemon_1,un limón siciliano +orange/orange_4,una naranja +semicylinder/semicylinder_4,mitad de un cilindro verde +orange/orange_1,una patata +arch/arch_4,un prisma rectangular rojo con concavidad +lime/lime_3,un limón +plum/plum_2,una ciruela +corn/corn_2,un sabugo de maíz blanquecino +orange/orange_2,una naranja +banana/banana_4,un plátano +plum/plum_1,una manzana +cube/cube_4,un cubo rojo +carrot/carrot_3,un vegetal naranja +corn/corn_4,un sabugo de maíz +corn/corn_2,un sabugo de maíz +cube/cube_3,un cubo azul +corn/corn_1,un sabugo de maíz +semicylinder/semicylinder_4,mitad de un cilindro verde +cucumber/cucumber_4,un pepino +cylinder/cylinder_2,un cilindro rojo +cube/cube_4,un cubo rojo +cucumber/cucumber_1,un pepino verde +banana/banana_1,un plátano +plum/plum_1,una ciruela +orange/orange_4,una naranja +cylinder/cylinder_1,un cilindro amarillo +arch/arch_2,un prisma rectangular azul con concavidad +cuboid/cuboid_2,un prisma rectangular verde +cube/cube_3,un cubo +carrot/carrot_4,una zanahoria +cucumber/cucumber_1,un pepino verde +cabbage/cabbage_4,un repollo púrpura +corn/corn_4,un sabugo de maíz +cuboid/cuboid_4,un prisma rectangular azul +lemon/lemon_3,un limón siciliano +carrot/carrot_3,una zanahoria +eggplant/eggplant_1,una berenjena +triangle/triangle_2,un prisma triangular amarillo +banana/banana_3,un plátano +arch/arch_2,un prisma rectangular azul con concavidad +tomato/tomato_4,un tomate +eggplant/eggplant_1,una berenjena +plum/plum_1,una ciruela +cube/cube_1,un cubo amarillo +lemon/lemon_1,un limón siciliano +lime/lime_2,un limón +semicylinder/semicylinder_1,mitad de un cilindro azul +carrot/carrot_1,una zanahoria +cucumber/cucumber_1,un pepino verde +plum/plum_2,una ciruela +cabbage/cabbage_1,un repollo púrpura +lime/lime_3,un limón +arch/arch_2,un prisma rectangular azul con concavidad +eggplant/eggplant_4,una berenjena +cylinder/cylinder_3,un cilindro azul +eggplant/eggplant_3,una berenjena +cucumber/cucumber_3,un pepino +potato/potato_3,una p +orange/orange_1,una naranja +eggplant/eggplant_4,una berenjena +cucumber/cucumber_3,un pepino +lime/lime_3,un limón +cabbage/cabbage_1,un repollo púrpura +cabbage/cabbage_3,un repollo púrpura +cucumber/cucumber_1,un pepino +triangle/triangle_2,un prisma triangular amarillo +orange/orange_3,una naranja +cabbage/cabbage_2,un repollo púrpura +semicylinder/semicylinder_2,mitad de un cilindro rojo +tomato/tomato_1,un tomate +cube/cube_4,un cubo rojo +arch/arch_4,un prisma rojo con una concavidad cóncava hacia arriba +corn/corn_3,un sabugo de maíz +plum/plum_2,una pelota púrpura +semicylinder/semicylinder_1,mitad de un cilindro azul +triangle/triangle_3,un prisma triangular verde +cuboid/cuboid_1,un prisma rectangular amarillo +cucumber/cucumber_3,un pepino +corn/corn_4,un sabugo de maíz +arch/arch_2,un prisma rectangular azul con concavidad +orange/orange_1,una naranja +corn/corn_3,un sabugo de maíz blanquecino +banana/banana_1,un plátano +lemon/lemon_4,un limón +cabbage/cabbage_2,un repollo púrpura +cylinder/cylinder_3,un cilindro azul +corn/corn_4,un sabugo de maíz blanquecino +carrot/carrot_2,una zanahoria +cuboid/cuboid_2,un prisma rectangular verde +semicylinder/semicylinder_1,mitad de un cilindro azul +arch/arch_1,un prisma rectangular amarillo con concavidad +banana/banana_1,esta imagen no aparece +eggplant/eggplant_1,una berenjena +cylinder/cylinder_1,un cilindro amarillo +eggplant/eggplant_2,una berenjena +lime/lime_3,un limón +lemon/lemon_3,un limón siciliano +tomato/tomato_4,un tomate +corn/corn_2,un sabugo de maíz +corn/corn_2,un sabugo de maíz +cube/cube_2,un cubo verde +lemon/lemon_4,un limón +cucumber/cucumber_2,un pepino +triangle/triangle_2,un prisma triangular amarillo +semicylinder/semicylinder_3,mitad de un cilindro amarillo +triangle/triangle_4,un prima triangular azul +carrot/carrot_3,una zanahoria +lime/lime_1,un limón +triangle/triangle_3,un prima triangular verde +lime/lime_3,un limón +cabbage/cabbage_3,un repollo púrpura +eggplant/eggplant_3,una berenjena +cabbage/cabbage_3,un repollo púrpura +eggplant/eggplant_4,una berenjena +lime/lime_1,un limón +carrot/carrot_2,una zanahoria +semicylinder/semicylinder_1,mitad de un cilindro azul +orange/orange_2,una naranja +cube/cube_4,un cubo rojo +cuboid/cuboid_4,un prisma rectangular azul +carrot/carrot_1,una zanahoria +semicylinder/semicylinder_2,mitad de un cilindro rojo +semicylinder/semicylinder_3,mitad de un cilindro amarillo +triangle/triangle_3,un prisma triangular verde diff --git a/OLD GLS/conf_files/spanish/sp_3batches_lowinst_stemmed.conf b/OLD GLS/conf_files/spanish/sp_3batches_lowinst_stemmed.conf new file mode 100644 index 0000000..cc05ed8 --- /dev/null +++ b/OLD GLS/conf_files/spanish/sp_3batches_lowinst_stemmed.conf @@ -0,0 +1,5104 @@ +arch/arch_2,no hay imag +lime/lime_1,limon verd +cabbage/cabbage_4,repoll lil +arch/arch_2,es un objet de plastic de color azul +lime/lime_1,no carg imag +cabbage/cabbage_4,es una especi de col mor +arch/arch_2,un prism rectangul azul con concav abiert +lime/lime_1,un limon verd +cabbage/cabbage_4,un repoll purpur +arch/arch_2,es una piez de un jueg es una piez +lime/lime_1,es un objet verd +cabbage/cabbage_4,es una verdur +arch/arch_2,plastic azul +lime/lime_1,acid verd +cabbage/cabbage_4,comest vegetal +orange/orange_4,una naranj +tomato/tomato_2,un tomat +semicylinder/semicylinder_2,un cilindr roj +cucumber/cucumber_1,un pepin +potato/potato_1,un tomat +orange/orange_4,es una naranj +tomato/tomato_2,es un tomat +semicylinder/semicylinder_2,es algo roj +cucumber/cucumber_1,es un pepin +potato/potato_1,es una patat +orange/orange_4,una naranj +tomato/tomato_2,un tomat +semicylinder/semicylinder_2,una pimient +cucumber/cucumber_1,un pepin +potato/potato_1,una remolach +orange/orange_4,es una naranj +tomato/tomato_2,es un tomat roj +semicylinder/semicylinder_2,es un objet roj con form de cilindr +cucumber/cucumber_1,es un pepin verd +potato/potato_1,es una patat roj +orange/orange_4,comest acid +tomato/tomato_2,vegetal comest +semicylinder/semicylinder_2,plastic fuert +cucumber/cucumber_1,comest vegetal +potato/potato_1,frut comest +orange/orange_1,es una naranj +triangle/triangle_3,es un objet verd con form de cuñ +cucumber/cucumber_2,es un pepin verd +carrot/carrot_3,es una zanahori naranj +tomato/tomato_1,es un tomat roj +orange/orange_1,naranj dulc +triangle/triangle_3,un triangul verd +cucumber/cucumber_2,un pepinill verd +carrot/carrot_3,zanahori larg +tomato/tomato_1,tomat roj +orange/orange_1,una mexer +triangle/triangle_3,una curv +cucumber/cucumber_2,un pepin +carrot/carrot_3,una zanahori +tomato/tomato_1,un tomat +orange/orange_1,esta frut es color naranj parec ser una mandarin +triangle/triangle_3,este es un triangul color verd los triangul son figur geometr +cucumber/cucumber_2,este es un pepin el pepin pued reban par usarl encim de los ojos com humect dentr de rutin de bellez +carrot/carrot_3,esta es una zanahori la zanahori es ric en potasi y fosfor +tomato/tomato_1,este es un tomat en mexic se le llam jitomat +orange/orange_1,una naranj +triangle/triangle_3,un prism triangul verd +cucumber/cucumber_2,un pepin +carrot/carrot_3,una zanahori +tomato/tomato_1,un tomat +cabbage/cabbage_1,repoll purpur +potato/potato_4,pap median +plum/plum_4,manzan roj +tomato/tomato_1,tomat jugos +plum/plum_1,manzan roj +cabbage/cabbage_1,estructur vegetal de color mor form por acumul de hoj +potato/potato_4,tubercul blanc y marron +plum/plum_4,frut mor +tomato/tomato_1,frut roj en form de circul +plum/plum_1,frut mor +cabbage/cabbage_1,un repoll +potato/potato_4,una patat +plum/plum_4,una uva +tomato/tomato_1,un tomat +plum/plum_1,una manzan +cabbage/cabbage_1,es una col mor +potato/potato_4,es una patat con manch +plum/plum_4,parec una frut de color mor +tomato/tomato_1,es un tomat roj +plum/plum_1,es una manzan roj +cabbage/cabbage_1,un repoll purpur +potato/potato_4,una patat +plum/plum_4,una manzan +tomato/tomato_1,un tomat +plum/plum_1,una manzan +cylinder/cylinder_2,es un objet roj con form de cilindr +arch/arch_4,es un objet roj rectangul con un huec en form de medi cilindr +orange/orange_3,es una naranj +cylinder/cylinder_2,cilindr roj +arch/arch_4,ramp roj +orange/orange_3,frut redond de color de amarill +cylinder/cylinder_2,un cilindr roj +arch/arch_4,medi lun roj +orange/orange_3,una naranj jugos +cylinder/cylinder_2,un cilindr roj +arch/arch_4,un prism rectangul roj con concav abert +orange/orange_3,una naranj +cylinder/cylinder_2,un rodill +arch/arch_4,una curv +orange/orange_3,una mexer +cabbage/cabbage_4,un repoll +orange/orange_2,una per +orange/orange_3,una mexer +cabbage/cabbage_3,un repoll +tomato/tomato_4,un tomat +cabbage/cabbage_4,el objet parec una nuez con casc tien form oval y su color var desd el violet clar al violet marronace +orange/orange_2,es un objet redond y amarill podr dec que parec la yem de un huev +orange/orange_3,no hay imag +cabbage/cabbage_3,es un objet redond cuy interior es de color violet y el exterior malv oscur esta compuest de hoj superpuest en cap +tomato/tomato_4,es un objet redond su color var del amarill verdos hast el roj es un tomat +cabbage/cabbage_4,pas jug +orange/orange_2,manzan amarill +orange/orange_3,naranj jugos +cabbage/cabbage_3,col mor +tomato/tomato_4,tomat roj +cabbage/cabbage_4,esta imag es de un repoll +orange/orange_2,este imag is algo naranj +orange/orange_3,esto es una naranj +cabbage/cabbage_3,esta verdur es mor +tomato/tomato_4,esta imag es un tomat +cabbage/cabbage_4,un repoll purpur +orange/orange_2,una naranj +orange/orange_3,una naranj +cabbage/cabbage_3,un repoll purpur +tomato/tomato_4,un tomat +lemon/lemon_3,una per +potato/potato_2,una patat +orange/orange_2,una per +potato/potato_1,una patat +semicylinder/semicylinder_2,un cuadr +lemon/lemon_3,es un limon amarill +potato/potato_2,es una patat roj +orange/orange_2,es una naranj +potato/potato_1,es una pat roj +semicylinder/semicylinder_2,es un objet roj con form de medi cilindr +lemon/lemon_3,es un limon +potato/potato_2,es una pap +orange/orange_2,es un limon +potato/potato_1,es una pap +semicylinder/semicylinder_2,es una figur roj +lemon/lemon_3,un limon amarill +potato/potato_2,un tomat +orange/orange_2,una naranj +potato/potato_1,un tomat +semicylinder/semicylinder_2,mit de un cilindr roj +lemon/lemon_3,limon amarill +potato/potato_2,uva roj +orange/orange_2,manzan amarill +potato/potato_1,uva roj +semicylinder/semicylinder_2,lengu roj +carrot/carrot_4,las zanahori son buen par la visiones compañ tien una polit de pal y zanahori +cube/cube_1,su com prefer es macarron con quesoel mejor ques par hac pizz es el mozzarell +eggplant/eggplant_3,mi plat favorit es berenjen rellen con sals de tomat com describ com horn una delici tart de bod sol con miel bicarbonat sodic y berenjen crud +carrot/carrot_3,las zanahori son buen par la visiones compañ tien una polit de pal y zanahori +semicylinder/semicylinder_3,su com prefer es macarron con quesoel mejor ques par hac pizz es el mozzarell +carrot/carrot_4,raiz comest de color naranj +cube/cube_1,cub amarill +eggplant/eggplant_3,frut mor alarg +carrot/carrot_3,raiz naranj +semicylinder/semicylinder_3,figur geometr de color de amarill +carrot/carrot_4,es una zanahori naranj +cube/cube_1,es una cub amarill +eggplant/eggplant_3,es una berenjen +carrot/carrot_3,es una zanahori naranj +semicylinder/semicylinder_3,es un objet con form de medi cilindr de color amarill +carrot/carrot_4,una zanahori +cube/cube_1,un cub amarill +eggplant/eggplant_3,una berenjen +carrot/carrot_3,una zanahori +semicylinder/semicylinder_3,mit de un cilindr amarill +carrot/carrot_4,una zanahori +cube/cube_1,un cub +eggplant/eggplant_3,un jil +carrot/carrot_3,una zanahori +semicylinder/semicylinder_3,un ques +corn/corn_2,objet llen de gran junt +corn/corn_4,objet llen de gran junt +carrot/carrot_4,raiz comest de color naranj +cuboid/cuboid_4,cub azul +carrot/carrot_2,raiz de color anaranj +corn/corn_2,una espig de maiz +corn/corn_4,una espig de maiz +carrot/carrot_4,una zanahori +cuboid/cuboid_4,un prism rectangul azul +carrot/carrot_2,una zanahori +corn/corn_2,es una mazorc de maiz blanc +corn/corn_4,es una mazorc de maiz blanc +carrot/carrot_4,es una zanahori naranj +cuboid/cuboid_4,es un objet azul con form de cub alarg +carrot/carrot_2,es una zanahori naranj +corn/corn_2,maiz en mazorc +corn/corn_4,maiz dulc +carrot/carrot_4,grand zanahori +cuboid/cuboid_4,12 azul +carrot/carrot_2,zanahori fresc +corn/corn_2,un maiz +corn/corn_4,un maiz +carrot/carrot_4,una zanahori +cuboid/cuboid_4,un cuadr +carrot/carrot_2,una zanahori +lemon/lemon_1,un limon amarill +cuboid/cuboid_2,rectangul verd +corn/corn_4,una mazorc de maiz muy delisi +lime/lime_2,limon verd +eggplant/eggplant_4,este vegetal purpur se le cons com berengen es muy delici +lemon/lemon_1,es un limon amarill con una pegatin +cuboid/cuboid_2,es un objet verd con form de cuboid +corn/corn_4,es una mazorc de maiz blanc +lime/lime_2,es una lim verd +eggplant/eggplant_4,es una berenjen +lemon/lemon_1,una per +cuboid/cuboid_2,un cuadr +corn/corn_4,un maiz +lime/lime_2,un limon +eggplant/eggplant_4,una berenjen +lemon/lemon_1,un limon amarill +cuboid/cuboid_2,un prism rectangul verd +corn/corn_4,una espig de maiz +lime/lime_2,un limon verd +eggplant/eggplant_4,una berenjen +lemon/lemon_1,este objet es amarill su form es simil a la de un pez +cuboid/cuboid_2,esta es una barr color verd esta barr parec de mantequill per es verd +corn/corn_4,esta es una mazorc de maiz el maiz es un ingredient import en la cocin tradicional latinoamerican +lime/lime_2,el limon es verd el limon acompañ bien a las com +eggplant/eggplant_4,esta es una berenjen la berenjen se utiliz par prepar delici platill +semicylinder/semicylinder_4,es un objet verd con form de medi cilindr +cucumber/cucumber_4,es un pepin verd +triangle/triangle_1,es un objet roj con form de cuñ +carrot/carrot_3,es una zanahori naranj +cuboid/cuboid_2,es un objet verd con form de cub alarg +semicylinder/semicylinder_4,plastic rig +cucumber/cucumber_4,vegetal comest +triangle/triangle_1,plastic fuert +carrot/carrot_3,vegetal comest +cuboid/cuboid_2,plastic fuert +semicylinder/semicylinder_4,mit de un cilindr verd +cucumber/cucumber_4,un pepin +triangle/triangle_1,un prism triangul roj +carrot/carrot_3,una zanahori +cuboid/cuboid_2,un prism rectangul roj +semicylinder/semicylinder_4,medi circul +cucumber/cucumber_4,pepin verd +triangle/triangle_1,triangul roj +carrot/carrot_3,zanahori naranj +cuboid/cuboid_2,12 verd +semicylinder/semicylinder_4,es medi circul es una figur verd +cucumber/cucumber_4,es un pepin es una verdur verd +triangle/triangle_1,es una piez geometr es una figur roj +carrot/carrot_3,es una zanahori larg es una legumbr +cuboid/cuboid_2,es una barr verd es una piez rectangul +lime/lime_1,uva verd +cuboid/cuboid_1,bloqu amarill +cylinder/cylinder_2,cilindr grand +semicylinder/semicylinder_4,medi circul +lime/lime_1,es un limon +cuboid/cuboid_1,es una figur amarill +cylinder/cylinder_2,es un cilindr roj +semicylinder/semicylinder_4,es una figur verd +lime/lime_1,es una lim verd +cuboid/cuboid_1,es un objet amarill con form de cuboid +cylinder/cylinder_2,es un objet roj con form de cilindr +semicylinder/semicylinder_4,es un objet verd con form de medi cilindr +lime/lime_1,es un limon o lim verd pued ser otra frut com aguacat per no madur +cuboid/cuboid_1,es un troz de mantequill color amarill parec estar en estad sol +cylinder/cylinder_2,es un objet tubul roj sol com una barr pequeñ y cort +semicylinder/semicylinder_4,un objet verd lis con form semi circul de 3 dimesion +lime/lime_1,un limon verd +cuboid/cuboid_1,un prism rectangul amarill +cylinder/cylinder_2,un cilindr roj +semicylinder/semicylinder_4,mit de un cilindr verd +cabbage/cabbage_1,un repoll purpur +cylinder/cylinder_3,un cilindr azul +eggplant/eggplant_1,una berenjen +plum/plum_4,una manzan +carrot/carrot_2,una zanahori +cabbage/cabbage_1,es un repoll mor +cylinder/cylinder_3,es un objet azul con form de cilindr +eggplant/eggplant_1,es una berenjen +plum/plum_4,es un tomat roj +carrot/carrot_2,es una zanahori naranj +cabbage/cabbage_1,el objet parec com una pelot de baloncest desinfl +cylinder/cylinder_3,el objet parec un cilindr azul com un bidon en posicion horizontal +eggplant/eggplant_1,el objet parec una berenjen +plum/plum_4,el objet parec com una manzan roj +carrot/carrot_2,el objet parec un gusan color anaranj +cabbage/cabbage_1,es una col lombard el color de sus hoj es mor oscur por el exterior y mor clar por el interior +cylinder/cylinder_3,este objet cilindr azul parec un troz de plastilin +eggplant/eggplant_1,vem una berenjen vist desd su part traser su color es mor +plum/plum_4,es un objet redond y de color ros o rojiz podr ser una manzan +carrot/carrot_2,es un objet alarg y ros podr trat de un gusan +cabbage/cabbage_1,semill negr +cylinder/cylinder_3,cilindr azul +eggplant/eggplant_1,plant de huev +plum/plum_4,uva roj +carrot/carrot_2,zanahori naranj +cylinder/cylinder_2,un cilindr roj +carrot/carrot_1,una zanahori +cylinder/cylinder_4,un cilindr verd +semicylinder/semicylinder_3,mit de un cilindr amarill +lime/lime_4,un limon verd +cylinder/cylinder_2,es un objet roj con form de cilindr +carrot/carrot_1,es una zanahori naranj +cylinder/cylinder_4,es un objet verd con form de cilindr +semicylinder/semicylinder_3,es un objet amarill con form de medi cilindr +lime/lime_4,es una lim verd +cylinder/cylinder_2,no hay imag +carrot/carrot_1,una zanahori anaranj +cylinder/cylinder_4,un clindr verd +semicylinder/semicylinder_3,un semicircul amarill +lime/lime_4,un bombill verd +cylinder/cylinder_2,un rodill +carrot/carrot_1,una zanahori +cylinder/cylinder_4,un rodill acost +semicylinder/semicylinder_3,un ques +lime/lime_4,una col +cylinder/cylinder_2,cilindr roj +carrot/carrot_1,raiz naranj comest +cylinder/cylinder_4,cilindr verd +semicylinder/semicylinder_3,figur geometr amarill +lime/lime_4,estructur vegetal verd +lime/lime_4,limon verd +eggplant/eggplant_4,berenjen grand +cabbage/cabbage_2,repoll purpur +lime/lime_4,es una lim verd +eggplant/eggplant_4,es una berenjen +cabbage/cabbage_2,es un repoll mor +lime/lime_4,una lim verd +eggplant/eggplant_4,una berenjen enter y madur +cabbage/cabbage_2,un repoll mor sobr la mes +lime/lime_4,parec un platan +eggplant/eggplant_4,es un pepin +cabbage/cabbage_2,tien form de arbol +lime/lime_4,un limon verd +eggplant/eggplant_4,una berenjen +cabbage/cabbage_2,un repoll purpur +cube/cube_2,plastic fuert +tomato/tomato_2,comest vegetal +orange/orange_4,comest acid +lemon/lemon_1,comest acid +potato/potato_1,comest frut +cube/cube_2,un cub verd +tomato/tomato_2,un tomat +orange/orange_4,una naranj +lemon/lemon_1,un limon amarill +potato/potato_1,un tomat +cube/cube_2,un cub verd +tomato/tomato_2,parec la punt de mi muñerc +orange/orange_4,una pap +lemon/lemon_1,un limon +potato/potato_1,una pap chilen +cube/cube_2,es un cub verd +tomato/tomato_2,es un tomat +orange/orange_4,es una naranj +lemon/lemon_1,es un limon +potato/potato_1,es una pap +cube/cube_2,es un objet verd con form de cub +tomato/tomato_2,es un tomat roj +orange/orange_4,es una naranj +lemon/lemon_1,es un limon amarill +potato/potato_1,es una patat roj +plum/plum_2,un objet roj parec ser un tip de frut o vegetal roj +eggplant/eggplant_1,un vegetal negr con una part de verd una frut negr +lime/lime_1,parec ser un limon per no se pued distingu un limon verd +arch/arch_3,un objet verd un object cuadr verd +plum/plum_2,manzan roj +eggplant/eggplant_1,berenjen purpur +lime/lime_1,limon verd +arch/arch_3,menguant verd +plum/plum_2,una manzan +eggplant/eggplant_1,una berenjen +lime/lime_1,un limon verd +arch/arch_3,un prism rectangul verd con concav abiert +plum/plum_2,frut mor +eggplant/eggplant_1,vegetal mor y alarg +lime/lime_1,estructur vegetal de color verdos +arch/arch_3,ramp verd +plum/plum_2,es una ciruel roj +eggplant/eggplant_1,es una berenjen +lime/lime_1,es una especi de frut verd circul +arch/arch_3,es un objet verd rectangul con un huec en form de medi cilindr +banana/banana_3,un platan +plum/plum_1,una manzan +carrot/carrot_4,una zanahori +carrot/carrot_1,una zanahori +cylinder/cylinder_4,un rodill +banana/banana_3,es un platan amarill +plum/plum_1,es una ciruel roj +carrot/carrot_4,es una zanahori naranj +carrot/carrot_1,es una zanahori naranj +cylinder/cylinder_4,es un objet verd con form de cilindr +banana/banana_3,un platan +plum/plum_1,una manzan +carrot/carrot_4,una zanahori +carrot/carrot_1,una zanahori +cylinder/cylinder_4,un cilindr verd +banana/banana_3,frut con conch amarill en form de fal +plum/plum_1,frut redond mor +carrot/carrot_4,raiz comest de color naranj +carrot/carrot_1,raiz naranj +cylinder/cylinder_4,cilindr verd +banana/banana_3,banan grand +plum/plum_1,uva sin semill +carrot/carrot_4,zanahori naranj +carrot/carrot_1,zanhori fresc +cylinder/cylinder_4,cilindr verd +banana/banana_4,platan de com +cucumber/cucumber_3,pepin verd +tomato/tomato_4,tomat roj +cylinder/cylinder_4,un objet larg +banana/banana_4,un platan verd +cucumber/cucumber_3,un pepinill verd +tomato/tomato_4,un jugos tomat +cylinder/cylinder_4,un cilindr verd +banana/banana_4,frut con conch amarill en form de fal +cucumber/cucumber_3,vegetal verd con form falic +tomato/tomato_4,frut circul roj +cylinder/cylinder_4,cilindr verd +banana/banana_4,es un platan +cucumber/cucumber_3,es un pepin verd +tomato/tomato_4,es un tomat roj con una pegatin +cylinder/cylinder_4,es un objet verd con form de cilindr +banana/banana_4,un platan +cucumber/cucumber_3,un pepin +tomato/tomato_4,un tomat +cylinder/cylinder_4,un cilindr verd +orange/orange_4,frut circul de color amarill +corn/corn_2,objet llen de gran junt +triangle/triangle_3,figur geometr de color verd +tomato/tomato_1,frut roj en form de circul +eggplant/eggplant_2,frut abult de color purpur +orange/orange_4,es un anaranj +corn/corn_2,es una mazorc de maiz blanc +triangle/triangle_3,es un objet verd con form de cuñ +tomato/tomato_1,es un tomat roj +eggplant/eggplant_2,es una berenjen +orange/orange_4,naranj jugos +corn/corn_2,maiz dulc +triangle/triangle_3,reban de tart verd +tomato/tomato_1,tomat cherry +eggplant/eggplant_2,plant de huev grand +orange/orange_4,una naranj +corn/corn_2,una espig de maiz +triangle/triangle_3,un prism triangul verd +tomato/tomato_1,un tomat +eggplant/eggplant_2,una berenjen +orange/orange_4,naranj dulc +corn/corn_2,una m azorc de maiz +triangle/triangle_3,triangul verd +tomato/tomato_1,tomat jugos +eggplant/eggplant_2,berenjen grand +lemon/lemon_2,una per +cube/cube_4,un cuadr +corn/corn_2,un maiz +banana/banana_2,un platan +semicylinder/semicylinder_3,un ques +lemon/lemon_2,el objet parec com un pimient amarill +cube/cube_4,el objet es un cub de color roj +corn/corn_2,el onjet es una mazorc de maiz +banana/banana_2,el objet es un platan +semicylinder/semicylinder_3,el objet parec un troz de ques o mantequill +lemon/lemon_2,frut amarill +cube/cube_4,cub roj +corn/corn_2,estructur vegetal llen de gran junt +banana/banana_2,frut con casc de color amarill +semicylinder/semicylinder_3,figur geometr de color amarill +lemon/lemon_2,es un limon amarill +cube/cube_4,es un objet roj con form de cub +corn/corn_2,es una mazorc de maiz blanc +banana/banana_2,es un platan amarill +semicylinder/semicylinder_3,es un objet amarill con form de medi cilindr +lemon/lemon_2,un limon amarill +cube/cube_4,un cub roj +corn/corn_2,una espig de maiz +banana/banana_2,un platan +semicylinder/semicylinder_3,un prism triangul amarill +cucumber/cucumber_4,un pepin +cucumber/cucumber_2,un pepin +lime/lime_3,un col +cucumber/cucumber_4,es un pepin verd +cucumber/cucumber_2,es un pepin verd +lime/lime_3,es una lim verd +cucumber/cucumber_4,un pepin +cucumber/cucumber_2,un pepin +lime/lime_3,un limon verd +cucumber/cucumber_4,vegetal verd y alarg +cucumber/cucumber_2,vegetal verd alarg +lime/lime_3,estructur vegetal verd +cucumber/cucumber_4,un pepin verd enter +cucumber/cucumber_2,un pepin verd que esta list par com +lime/lime_3,una lim verd +cube/cube_4,es un objet roj con form de cub +cylinder/cylinder_3,es un cilindr azul +cabbage/cabbage_2,es una repoll +potato/potato_3,es una patat +cuboid/cuboid_4,es un objet de color azul con form de cub +cube/cube_4,cub roj +cylinder/cylinder_3,cilindr azul oscur +cabbage/cabbage_2,col mor +potato/potato_3,patat grand +cuboid/cuboid_4,bloqu azul +cube/cube_4,un cub roj +cylinder/cylinder_3,un cilindr azul +cabbage/cabbage_2,un repoll purpur +potato/potato_3,una patat +cuboid/cuboid_4,un prism rectangul azul +cube/cube_4,es un cub roj +cylinder/cylinder_3,es un cilindr azul +cabbage/cabbage_2,es un repoll +potato/potato_3,es una pap +cuboid/cuboid_4,es un cub azul +cube/cube_4,un cuadr +cylinder/cylinder_3,un rodill +cabbage/cabbage_2,una roc +potato/potato_3,una patat +cuboid/cuboid_4,un rectangul de pie +cucumber/cucumber_4,un pepin +potato/potato_2,un tomat +lemon/lemon_4,un limon amarill +triangle/triangle_2,un prism triangul amarill +tomato/tomato_3,un tomat +cucumber/cucumber_4,esta frut es un pepinill verd +potato/potato_2,pap roj +lemon/lemon_4,limon amarill +triangle/triangle_2,triangul amarill +tomato/tomato_3,tomat roj +cucumber/cucumber_4,la calabaz es una verdur muy sabros y muy alegr de com calabaz +potato/potato_2,la manzan es una frut muy salud y sabros la manzan tien un aspect muy agrad y un aspect muy atract +lemon/lemon_4,el limon es muy salud y tien much vid human y es muy import par el cuerp human +triangle/triangle_2,esta imag es muy bonit y tien form de triangul y color amarill +tomato/tomato_3,el tomat es muy import par cocin casi tod los plat de cocin con tomat +cucumber/cucumber_4,es un pepin verd +potato/potato_2,es una especi de frut de color roj +lemon/lemon_4,es un limon amarill +triangle/triangle_2,es un objet amarill con form de cuñ +tomato/tomato_3,es un tomat roj +cucumber/cucumber_4,es un pepin grand y verd +potato/potato_2,es un objet redond y roj +lemon/lemon_4,un limon amarill y refresc +triangle/triangle_2,un bloqu que es un triangul amarill +tomato/tomato_3,un tomat madur y roj con su part verd arrib +cube/cube_2,es un objet verd con form de cub +cube/cube_3,es un objet azul con form de cub +banana/banana_2,es un platan amarill +semicylinder/semicylinder_1,es un objet azul con form de medi cilindr +plum/plum_3,es una ciruel roj +cube/cube_2,un cub verd +cube/cube_3,un cub azul +banana/banana_2,una banan en la mes +semicylinder/semicylinder_1,un bloqu azul semi cilindr +plum/plum_3,una ciruel madur +cube/cube_2,un cub verd +cube/cube_3,un cub azul +banana/banana_2,un platan +semicylinder/semicylinder_1,mit de un cilindr azul +plum/plum_3,una manzan +cube/cube_2,cub verd +cube/cube_3,cub azul +banana/banana_2,frut con casc amarill en form de fal +semicylinder/semicylinder_1,figur geometr azul +plum/plum_3,vegetal redond y de color mor +cube/cube_2,cuadr verd +cube/cube_3,cuadr azul +banana/banana_2,guine madur +semicylinder/semicylinder_1,semicircul azul +plum/plum_3,manzan roj +lime/lime_1,una col +cucumber/cucumber_3,un pepin +corn/corn_3,un maiz +orange/orange_1,una naranj +lime/lime_1,un limon verd +cucumber/cucumber_3,un pepin +corn/corn_3,una espig de maiz +orange/orange_1,una naranj +lime/lime_1,comest acid +cucumber/cucumber_3,comest vegetal +corn/corn_3,comest vegetal +orange/orange_1,frut comest +lime/lime_1,es una especi de frut verd +cucumber/cucumber_3,es un pepin verd +corn/corn_3,es una mazorc de maiz blanc +orange/orange_1,es una naranj con algun manch +lime/lime_1,es un limon +cucumber/cucumber_3,es un pepin +corn/corn_3,es una mazorc +orange/orange_1,es un citric +cuboid/cuboid_3,es un objet roj con form de cuboid +lime/lime_3,es una especi de frut circul verd +banana/banana_3,es un platan amarill +triangle/triangle_4,es un objet azul con form de triangul +cuboid/cuboid_3,un rectangul roj +lime/lime_3,un bombill verd +banana/banana_3,un platan amarill +triangle/triangle_4,un triangul azul +cuboid/cuboid_3,un cub roj +lime/lime_3,un limon verd +banana/banana_3,un platan +triangle/triangle_4,un prism rectangul azul +cuboid/cuboid_3,bloqu roj +lime/lime_3,bombill verd +banana/banana_3,amarill banan +triangle/triangle_4,sin imag +cuboid/cuboid_3,es un bloqu roj quizas sea un bloqu de plastilin +lime/lime_3,este objet verdos podr ser una uva +banana/banana_3,vem una banan amarill +triangle/triangle_4,el objet azul en form de triangul podr ser un bloqu de plastilin +semicylinder/semicylinder_4,es una piez verd +cube/cube_3,es un cub azul +lemon/lemon_4,es un limon +corn/corn_1,es un maiz es una mazorc +semicylinder/semicylinder_4,objet de color verd +cube/cube_3,cub azul +lemon/lemon_4,un limon amarill vertical +corn/corn_1,una mazorc +semicylinder/semicylinder_4,mit de un cilindr verd +cube/cube_3,un cub azul +lemon/lemon_4,un limon amarill +corn/corn_1,una espig de maiz +semicylinder/semicylinder_4,una form +cube/cube_3,un cuadr +lemon/lemon_4,una naranj +corn/corn_1,un maiz +semicylinder/semicylinder_4,es un objet verd con form de medi cilindr +cube/cube_3,es un objet azul con form de cub +lemon/lemon_4,es un limon +corn/corn_1,es una mazorc de maiz blanc +cabbage/cabbage_4,es una col mor +eggplant/eggplant_1,es una berenjen +lemon/lemon_2,es in limon con una pegatin +potato/potato_4,es una patat +carrot/carrot_1,es una zanahori que no esta rect +cabbage/cabbage_4,este vegetal es un repoll +eggplant/eggplant_1,esto es una berenjen violet +lemon/lemon_2,un limon amarill +potato/potato_4,esto es una pap median +carrot/carrot_1,una zanahori anaranj +cabbage/cabbage_4,es un repoll mor +eggplant/eggplant_1,es una berenjen +lemon/lemon_2,es un limon +potato/potato_4,es una pap +carrot/carrot_1,es una zanahori +cabbage/cabbage_4,esta form por vari cap y es comest +eggplant/eggplant_1,es utiliz par prepar plat delici +lemon/lemon_2,es de color amarill y form irregul +potato/potato_4,tien aparient de tost +carrot/carrot_1,tien form de orug y es de color ros +cabbage/cabbage_4,un repoll purpur +eggplant/eggplant_1,una berenjen +lemon/lemon_2,un limon amarill +potato/potato_4,una patat +carrot/carrot_1,una zanahori +cucumber/cucumber_3,un pepin +cuboid/cuboid_3,un rodill +cube/cube_3,un cuadr +arch/arch_4,una curv +cucumber/cucumber_3,un pepin enter grand y verd +cuboid/cuboid_3,un bloqu roj rectangul com los de mader que jueg los nin +cube/cube_3,un cub azul +arch/arch_4,un bloqu roj de mader con un lad concav com los que usan los nin par form un puent +cucumber/cucumber_3,es un pepin verd +cuboid/cuboid_3,es un objet roj con form de cuboid +cube/cube_3,es un objet azul con form de cub +arch/arch_4,es un objet roj rectangul con un huec en form de medi cilindr +cucumber/cucumber_3,vegetal verd con form falic +cuboid/cuboid_3,barr roj +cube/cube_3,cub azul +arch/arch_4,ramp roj +cucumber/cucumber_3,un pepin +cuboid/cuboid_3,un prism rectangul roj +cube/cube_3,un cub azul +arch/arch_4,un prism rectangul roj con concav abiert +triangle/triangle_1,roj reban +cucumber/cucumber_1,pepin grand +cabbage/cabbage_1,col mor +tomato/tomato_3,tomat jugos +triangle/triangle_1,un bloqu ros de form triangul com si fuer un troz de tart +cucumber/cucumber_1,un pepin verd vist desd un extrem +cabbage/cabbage_1,una col lombard de color mor +tomato/tomato_3,un tomat roj madur con su part verd arrib +triangle/triangle_1,es un objet roj con form de cuñ +cucumber/cucumber_1,es un pepin verd +cabbage/cabbage_1,es un repoll +tomato/tomato_3,es un tomat roj +triangle/triangle_1,un prism triangul roj +cucumber/cucumber_1,un pepin +cabbage/cabbage_1,un repoll purpur +tomato/tomato_3,un tomat +triangle/triangle_1,un rectangul +cucumber/cucumber_1,un pepin +cabbage/cabbage_1,un repoll +tomato/tomato_3,un tomat +orange/orange_3,naranj madur +carrot/carrot_2,zanahori larg +orange/orange_3,una naranj +carrot/carrot_2,una zanahori +orange/orange_3,las naranj son una buen fuent de vitaminassiempr me com una chin despues de sal a corr +carrot/carrot_2,las zanahori son buen par la visiones compañ tien una polit de pal y zanahori +orange/orange_3,es una naranj +carrot/carrot_2,es una zanahori naranj muy fin +orange/orange_3,es una naranj +carrot/carrot_2,es una zanahori +cucumber/cucumber_2,es un pepin verd +carrot/carrot_4,es una zanahori naranj muy fin +cube/cube_1,es un objet amarill con form de cub +cuboid/cuboid_1,es un objet amarill con form de cuboid +potato/potato_2,es una patat roj +cucumber/cucumber_2,un pepin +carrot/carrot_4,una zanahori +cube/cube_1,un cub amarill +cuboid/cuboid_1,un prism rectangul amarill +potato/potato_2,un tomat +cucumber/cucumber_2,esta frut es un pepinill verd +carrot/carrot_4,zanahori anaranj u larg +cube/cube_1,un cuadr amarill +cuboid/cuboid_1,un rectangul amarill +potato/potato_2,una pap roj +cucumber/cucumber_2,es una verdur es un pepin +carrot/carrot_4,es una verdur es una zanahori +cube/cube_1,parec un cub de mantequill +cuboid/cuboid_1,parec una barr de mantequill +potato/potato_2,es una patat +cucumber/cucumber_2,un pepin madur y de color verd +carrot/carrot_4,una zanahori larg derech y sin cab +cube/cube_1,no se ve la imag es un cuadradit gris que dic image3 +cuboid/cuboid_1,un objet rectangul en tres dimension de color amarill +potato/potato_2,una pap pequen con piel roj +orange/orange_1,es una mandarin +cabbage/cabbage_3,es un repoll +banana/banana_3,es una banan +cylinder/cylinder_1,es una piez amarill +arch/arch_3,es una piez turques +orange/orange_1,una naraj +cabbage/cabbage_3,un repoll lil +banana/banana_3,un guine madur +cylinder/cylinder_1,un cilindr amarill +arch/arch_3,medi lun +orange/orange_1,naranj jugos +cabbage/cabbage_3,col mor +banana/banana_3,amarill banan +cylinder/cylinder_1,barc amarill +arch/arch_3,medi verd azul cresent +orange/orange_1,una naranj +cabbage/cabbage_3,un repoll purpur +banana/banana_3,un platan +cylinder/cylinder_1,un cilindr amarill +arch/arch_3,un prism rectangul verd con concav abiert +orange/orange_1,es una naranj +cabbage/cabbage_3,es un repoll mor +banana/banana_3,es un platan amarill +cylinder/cylinder_1,es un objet amarill con form de cilindr +arch/arch_3,es un objet verd rectangul con un huec en form de medi cilindr +cube/cube_1,un cuadr +potato/potato_3,una patat +cabbage/cabbage_3,una roc +plum/plum_3,una manzan +triangle/triangle_1,un triangul acost +cube/cube_1,un cub amarill +potato/potato_3,una patat +cabbage/cabbage_3,un repoll purpur +plum/plum_3,una manzan +triangle/triangle_1,un prism triangul roj +cube/cube_1,es un cub amarill +potato/potato_3,es una pap +cabbage/cabbage_3,es un repoll +plum/plum_3,parec una frut +triangle/triangle_1,es una piez roj +cube/cube_1,un bloqu en form de cub amarill +potato/potato_3,una pap blanc y pequen +cabbage/cabbage_3,un repoll enter y mor sobr la mes +plum/plum_3,una manzan roj +triangle/triangle_1,un bloqu roj en form de porcion de pizz +cube/cube_1,es un objet amarill con form de cub +potato/potato_3,es una patat +cabbage/cabbage_3,es un repoll mor +plum/plum_3,es una ciruel roj +triangle/triangle_1,es un objet roj con form de cuñ +banana/banana_1,es un platan amarill +semicylinder/semicylinder_1,es un objet azul con form de medi cilindr +banana/banana_4,es un platan todav verd +orange/orange_2,es una frut amarill +tomato/tomato_2,es un tomat roj +banana/banana_1,un platan +semicylinder/semicylinder_1,una curv +banana/banana_4,un platan +orange/orange_2,una mexican +tomato/tomato_2,un tomat +banana/banana_1,un platan +semicylinder/semicylinder_1,mit de un cilindr azul +banana/banana_4,un platan +orange/orange_2,una naranj +tomato/tomato_2,un tomat +banana/banana_1,frut con conch amarill en form de fal +semicylinder/semicylinder_1,figur geometr azul +banana/banana_4,frut con casc amarill en form de fal +orange/orange_2,frut amarill en form de circul +tomato/tomato_2,frut circul de color roj +banana/banana_1,es un platan +semicylinder/semicylinder_1,objet semicircul larg y azul +banana/banana_4,es un platan +orange/orange_2,objet circul amarill +tomato/tomato_2,es un tomat +carrot/carrot_1,una zanahori +corn/corn_4,un maiz +corn/corn_1,un maz +arch/arch_1,una curv +potato/potato_4,una patat +carrot/carrot_1,una zanahori +corn/corn_4,una espig de maiz +corn/corn_1,una espig de maiz +arch/arch_1,un prism rectangul amarill con concav abert +potato/potato_4,una patat +carrot/carrot_1,es una zanahori naranj que no esta rect +corn/corn_4,es una mazorc de maiz blanc +corn/corn_1,es una mazorc de maiz blanc +arch/arch_1,es un objet amarill rectangul con un huec en form de medi cilindr +potato/potato_4,es una patat +carrot/carrot_1,es una zanahori +corn/corn_4,es una mazorc +corn/corn_1,es una mazorc +arch/arch_1,es una piez amarill +potato/potato_4,es una pap +carrot/carrot_1,zanahori naranj +corn/corn_4,maiz dulc +corn/corn_1,maiz de camp +arch/arch_1,amarill cresent +potato/potato_4,patat fresc +arch/arch_1,una curv +cabbage/cabbage_2,una roc +arch/arch_2,una curv +corn/corn_2,un maiz +arch/arch_1,un prism rectangul amarill con concav abiert +cabbage/cabbage_2,un repoll purpur +arch/arch_2,un prism rectangul azul con concav abert +corn/corn_2,una espig de maiz +arch/arch_1,es un objet amarill rectangul con huec en form de medi cilindr +cabbage/cabbage_2,es un repoll mor +arch/arch_2,es un objet azul rectangul con huec en form de medi cilindr +corn/corn_2,es una mazorc de maiz blanc +arch/arch_1,un bloqu de mader amarill con el lad izquier concav +cabbage/cabbage_2,un repoll mor y enter sobr la mes +arch/arch_2,un bloqu de color celest con el lad izquier concav +corn/corn_2,un chocl pel blanc sobr la mes +arch/arch_1,es una figur amarill +cabbage/cabbage_2,es un aliment mor es un repoll +arch/arch_2,es una figur azul +corn/corn_2,es una mazorc +triangle/triangle_2,figur geometr amarill +eggplant/eggplant_3,vegetal mor +arch/arch_2,ramp azul +banana/banana_1,frut con casc de color amarill +triangle/triangle_2,es un objet rectangul amarill +eggplant/eggplant_3,es una berenjen +arch/arch_2,es un objet de plastic de color azul +banana/banana_1,es un platan amarill +triangle/triangle_2,un prism triangul amarill +eggplant/eggplant_3,una berenjen +arch/arch_2,un prism rectangul azul con concav abert +banana/banana_1,un platan +triangle/triangle_2,una ramp +eggplant/eggplant_3,un jil +arch/arch_2,una curv +banana/banana_1,un platan +triangle/triangle_2,rectangul amarill +eggplant/eggplant_3,plant de huev +arch/arch_2,medi circul azul +banana/banana_1,platan larg +corn/corn_3,una espig de maiz +plum/plum_4,una manzan +eggplant/eggplant_4,una berenjen +cube/cube_4,un cub roj +lime/lime_2,un limon verd +corn/corn_3,es una mazorc +plum/plum_4,parec una frut mor +eggplant/eggplant_4,es una berenjen +cube/cube_4,es un cub roj +lime/lime_2,es un limon +corn/corn_3,un maiz +plum/plum_4,una manzan +eggplant/eggplant_4,una berenjen +cube/cube_4,un cuadr +lime/lime_2,un limon +corn/corn_3,es una mazorc de maiz blanc +plum/plum_4,es una especi de frut roj +eggplant/eggplant_4,es una berenjen +cube/cube_4,es un objet con form de cub roj +lime/lime_2,es una frut de color verd +corn/corn_3,maiz en mazorc +plum/plum_4,manzan roj +eggplant/eggplant_4,plant de huev +cube/cube_4,cub roj +lime/lime_2,uva verd +plum/plum_2,una manzan +lemon/lemon_2,un limon amarill +banana/banana_1,un platan +cuboid/cuboid_3,un prism rectangul roj +cuboid/cuboid_1,un prism rectangul amarill +plum/plum_2,es una frut esfer roj +lemon/lemon_2,es un limon con una pegatin +banana/banana_1,es un platan amarill +cuboid/cuboid_3,es un objet roj con form de cuboid +cuboid/cuboid_1,es un objet amarill con form de cuboid +plum/plum_2,parec una ceboll mor +lemon/lemon_2,es un limon +banana/banana_1,es una banan +cuboid/cuboid_3,es un rectangul roj +cuboid/cuboid_1,es una barr amarill +plum/plum_2,uva roj +lemon/lemon_2,buton pequen +banana/banana_1,platan larg +cuboid/cuboid_3,bloqu roj +cuboid/cuboid_1,bloqu amarill +plum/plum_2,una manzan +lemon/lemon_2,una per +banana/banana_1,un platan +cuboid/cuboid_3,un cuadr +cuboid/cuboid_1,un platan +cuboid/cuboid_2,es un objet verd con form de cuboid +eggplant/eggplant_3,es una berenjen +triangle/triangle_4,es un objet azul con form de cuñ o triangul +cylinder/cylinder_1,es un objet amarill con form de cilindr +cuboid/cuboid_3,es un objet roj con form de cub alarg o cuboid +cuboid/cuboid_2,un prism rectangul verd +eggplant/eggplant_3,una berenjen +triangle/triangle_4,un prism triangul azul +cylinder/cylinder_1,un cilindr amarill +cuboid/cuboid_3,un prism rectangul roj +cuboid/cuboid_2,es una figur verd es una piez verd +eggplant/eggplant_3,es una berenjen es un aliment +triangle/triangle_4,es una figur azul +cylinder/cylinder_1,es una piez amarill +cuboid/cuboid_3,es una piez roj +cuboid/cuboid_2,un bloqu de mader verd sobr una mes +eggplant/eggplant_3,una berenjen enter y madur con cab verd +triangle/triangle_4,un bloqu azul en form de porcion de pizz +cylinder/cylinder_1,un bloqu amarill +cuboid/cuboid_3,un bloqu roj rectangul +cuboid/cuboid_2,bloqu verd +eggplant/eggplant_3,plant de huev +triangle/triangle_4,cun azul +cylinder/cylinder_1,cilindr amarill +cuboid/cuboid_3,12 roj +plum/plum_1,frut mor +cuboid/cuboid_4,cub azul +lemon/lemon_1,frut amarill +potato/potato_3,tubercul marron +tomato/tomato_3,frut circul de color roj +plum/plum_1,es una ciruel roj +cuboid/cuboid_4,es un objet de plastic azul con form de cuboid +lemon/lemon_1,es un limon con una pegatin +potato/potato_3,es un apatat +tomato/tomato_3,es un tomat roj +plum/plum_1,una manzan +cuboid/cuboid_4,un cuadr +lemon/lemon_1,una mexer +potato/potato_3,una patat +tomato/tomato_3,un tomat +plum/plum_1,una manzan +cuboid/cuboid_4,un prism rectangul azul +lemon/lemon_1,un limon amarill +potato/potato_3,una patat +tomato/tomato_3,un tomat +plum/plum_1,esta imag es de una manzan +cuboid/cuboid_4,esta imag de algo azul +lemon/lemon_1,esta es un imag de un limon +potato/potato_3,esto es una pap +tomato/tomato_3,esto es una imag de un tomat +triangle/triangle_3,triangul verd +eggplant/eggplant_2,sin imag +carrot/carrot_2,zanahori naranj +eggplant/eggplant_2,plant de huev +plum/plum_3,ceboll roj +triangle/triangle_3,un prism triangul verd +eggplant/eggplant_2,una berenjen +carrot/carrot_2,una zanahori +eggplant/eggplant_2,una berenjen +plum/plum_3,una manzan +triangle/triangle_3,es un objet rectangul verd +eggplant/eggplant_2,es una berenjen +carrot/carrot_2,es una zanahori naranj +eggplant/eggplant_2,es una berenjen +plum/plum_3,es una ciruel roj +triangle/triangle_3,triangul verd +eggplant/eggplant_2,berenjen grand +carrot/carrot_2,zanahori larg +eggplant/eggplant_2,berenjen purpur +plum/plum_3,manzan roj +triangle/triangle_3,es una piez verd +eggplant/eggplant_2,es una berenjen +carrot/carrot_2,es una zanahori +eggplant/eggplant_2,es una berenjen +plum/plum_3,es una verdur +cucumber/cucumber_3,es verd y grand +corn/corn_3,es un maiz +plum/plum_2,es algo purpur +lime/lime_3,es una per +arch/arch_1,es amarill y tien una part curv +cucumber/cucumber_3,un pepin enter y verd +corn/corn_3,un chocl blanc crud y pel +plum/plum_2,una manzan roj +lime/lime_3,una lim verd +arch/arch_1,un bloqu de mader amarill con un lad concav com par armar un puent +cucumber/cucumber_3,es un pepin verd +corn/corn_3,es una mazorc de maiz blanc +plum/plum_2,es una ciruel roj +lime/lime_3,es una especi de frut verd +arch/arch_1,es un objet amarill rectangul con el huec con form de medi cilindr +cucumber/cucumber_3,es un pepin +corn/corn_3,es una mazorc es un maiz +plum/plum_2,parec una verdur +lime/lime_3,es un tomat verd +arch/arch_1,es una piez amarill +cucumber/cucumber_3,un pepin +corn/corn_3,una espig de maiz +plum/plum_2,una manzan +lime/lime_3,un limon verd +arch/arch_1,un prism rectangul amarill con concav abiert +cabbage/cabbage_3,repoll purpur +corn/corn_1,una mazorc de maiz +cucumber/cucumber_1,un pepinill verd +semicylinder/semicylinder_1,un semicircul azul +lemon/lemon_3,un limon amarill +cabbage/cabbage_3,un repoll purpur +corn/corn_1,una espig de maiz +cucumber/cucumber_1,un pepin +semicylinder/semicylinder_1,mit de un cilindr azul +lemon/lemon_3,un limon amarill +cabbage/cabbage_3,nuez negr +corn/corn_1,maiz en mazorc +cucumber/cucumber_1,pepin grand +semicylinder/semicylinder_1,medi circul azul +lemon/lemon_3,limon amarill +cabbage/cabbage_3,es un repoll mor +corn/corn_1,es una mazorc de maiz blanc +cucumber/cucumber_1,es un pepin verd +semicylinder/semicylinder_1,es un objet azul con form de medi cilindr +lemon/lemon_3,es un limon verd +cabbage/cabbage_3,una col lombard mor cerr +corn/corn_1,una mazorc de maiz de color mas bien blanc +cucumber/cucumber_1,un pepin verd +semicylinder/semicylinder_1,un bloqu azul en form de medi cilindr +lemon/lemon_3,un limon amarill madur +banana/banana_4,un platan +cylinder/cylinder_3,un cilindr azul +lime/lime_4,un limon verd +lime/lime_2,un limon verd +banana/banana_4,platan madur +cylinder/cylinder_3,cilindr azul +lime/lime_4,uva verd +lime/lime_2,uva dulc +banana/banana_4,un platan amarill +cylinder/cylinder_3,un cilindr azul pued ser plastilin +lime/lime_4,un objet amarill verdos +lime/lime_2,un objet verd que podr ser una uva +banana/banana_4,es un platan algo verd con manch +cylinder/cylinder_3,es un objet azul con form de cilindr +lime/lime_4,es una lim verd +lime/lime_2,es una lim verd +banana/banana_4,un platan verd +cylinder/cylinder_3,cilindr azul +lime/lime_4,limon verd +lime/lime_2,limon verd +triangle/triangle_2,un rectangul con punt +lemon/lemon_3,una manch +lemon/lemon_4,un pedaz de una naranj +carrot/carrot_3,una col de algun animal +triangle/triangle_2,un bloqu amarill en form de porcion de pizz +lemon/lemon_3,un limon amarill con una punt verd +lemon/lemon_4,un lim a amarill con una put verd +carrot/carrot_3,una zanahori dobl +triangle/triangle_2,es una piez amarill +lemon/lemon_3,es un limon +lemon/lemon_4,es un limon +carrot/carrot_3,es una zanahori +triangle/triangle_2,un prism triangul amarill +lemon/lemon_3,un limon amarill +lemon/lemon_4,un limon amarill +carrot/carrot_3,una zanahori +triangle/triangle_2,es un objet amarill con form de cuñ +lemon/lemon_3,es un limon amarill con algun zon verd +lemon/lemon_4,es un limon amarill +carrot/carrot_3,es una zanahori naranj +arch/arch_3,es un objet verd rectangul con huec en form de medi cilindr +tomato/tomato_4,es un tomat roj que esta poc madur +cube/cube_2,es un objet verd con form de cub +triangle/triangle_4,es un objet azul con form triangul +arch/arch_3,teal ramp +tomato/tomato_4,tomat roj +cube/cube_2,cub verd +triangle/triangle_4,triangul azul +arch/arch_3,es una piez verd +tomato/tomato_4,es un tomat +cube/cube_2,es un cub verd +triangle/triangle_4,es una figur azul +arch/arch_3,un prism rectangul verd con concav abiert +tomato/tomato_4,un tomat +cube/cube_2,un cub verd +triangle/triangle_4,un prism triangul azul +arch/arch_3,una piez con una form de puent +tomato/tomato_4,una frut roj llam tomat +cube/cube_2,un objet con form de cub +triangle/triangle_4,una piez con form de ramp +carrot/carrot_1,una zanahori +arch/arch_4,un prism rectangul roj con concav abiert +semicylinder/semicylinder_2,mit de un cilindr roj +cylinder/cylinder_1,un cilindr amarill +banana/banana_2,un platan +carrot/carrot_1,esta imag es rosit +arch/arch_4,esta imag is de un juget de mader +semicylinder/semicylinder_2,esta imag es roj +cylinder/cylinder_1,esta imag amarill +banana/banana_2,esta imag es de un platan +carrot/carrot_1,es una zanahori naranj que no esta rect +arch/arch_4,es un objet roj rectangul con un huec en form de medi cilindr +semicylinder/semicylinder_2,es un objet roj con form de medi cilindr +cylinder/cylinder_1,es un objet amarill con form de cilindr +banana/banana_2,es un platan amarill +carrot/carrot_1,es una zanahori +arch/arch_4,parec una montañ +semicylinder/semicylinder_2,es un vegetal +cylinder/cylinder_1,es una mazorc +banana/banana_2,es algo diferent este objet +carrot/carrot_1,una zanahori +arch/arch_4,una curv +semicylinder/semicylinder_2,una form +cylinder/cylinder_1,un rodill +banana/banana_2,un platan +carrot/carrot_3,una zanahori larg +semicylinder/semicylinder_4,un objet verd +lime/lime_4,un vegetal verd +carrot/carrot_4,una zanahori vertical +arch/arch_1,un poliedr amarill con agujer +carrot/carrot_3,tien una form larg delg y es de color naranj +semicylinder/semicylinder_4,arrib es redond y abaj es plan es de color verd +lime/lime_4,tien una form redond textur muy lis y es de color verd +carrot/carrot_4,tien una textur rugos es larg y delg con ciert curvatur +arch/arch_1,tien una form peculi de un lad tien una curv y del otro es plan +semicylinder/semicylinder_2,medi cilindr roj +orange/orange_1,tomat casi madur +plum/plum_2,manzan madur +cuboid/cuboid_4,paralelepiped azul horizontal +potato/potato_3,pap amarill limpi +semicylinder/semicylinder_2,seccion de un objet cilindr de color roj +orange/orange_1,una naranj o mandarin madur +plum/plum_2,fragment de una superfici simil a piel de manzan +cuboid/cuboid_4,objet con form de prism rectangul de bord redond y color azul +potato/potato_3,una pap marron alarg +eggplant/eggplant_1,vegetal mor +lime/lime_2,frut redond verd +cucumber/cucumber_2,vegetal verd y alarg +corn/corn_2,estructur vegetal llen de gran +eggplant/eggplant_3,frut mor +eggplant/eggplant_1,berenjen mor de gran tamañ +lime/lime_2,limon verd +cucumber/cucumber_2,pepin verd con conch tamañ median +corn/corn_2,maiz blanc semi desgran tamañ median +eggplant/eggplant_3,berenjen pequeñ de color mor +lemon/lemon_1,redond acid y de color amarill +cucumber/cucumber_1,larg con espin y de color verd +cabbage/cabbage_3,grand redond y de textur asper y de color mor +cabbage/cabbage_4,redond asper y de color mor +lemon/lemon_1,es una lemon +cucumber/cucumber_1,es un zuchinni +cabbage/cabbage_3,es una avac +cabbage/cabbage_4,es una prun +semicylinder/semicylinder_3,seccion de un objet cilindr de color amarill con una textur parec a la tiz +tomato/tomato_4,un tomat manzan madur +banana/banana_3,una banan o cambur madur +cube/cube_4,cub de color roj +semicylinder/semicylinder_3,esponj amarill con ciert form triangul +tomato/tomato_4,tomat redond de color roj con coron de hoj +banana/banana_3,platan amarill de tamañ median +cube/cube_4,cub roj +carrot/carrot_2,una zanahori larg +cube/cube_4,un object roj simil a un cub +triangle/triangle_2,un poliedr amarill +tomato/tomato_1,un tomat roj +carrot/carrot_2,tien una form larg y delg su color es naranj pal +cube/cube_4,tien una form cuadr y es de color roj +triangle/triangle_2,tien una form triangul y es de color amarill +tomato/tomato_1,tien una form redond casi perfect y su color es un roj muy llamat +cucumber/cucumber_2,un pepin +arch/arch_2,un prism rectangul azul con concav abert +cuboid/cuboid_3,un prism rectangul roj +cabbage/cabbage_1,un repoll purpur +cucumber/cucumber_2,vegetal verd alarg +arch/arch_2,ramp azul +cuboid/cuboid_3,barr roj +cabbage/cabbage_1,estructur vegetal mor form por hoj +banana/banana_2,el objet es una frut de form alarg y curv es de color amarill +arch/arch_1,es un objet de form irregul es de color amarill +carrot/carrot_2,el objet es una frut de form alarg es de color naranj +cube/cube_3,el objet es de form cubic es de color azul +cube/cube_1,el objet es de form cubic es de color amarill +banana/banana_2,es una platan una frut +arch/arch_1,figur geometr color amarill rectangul con un arco cruz +carrot/carrot_2,es una zanahori parec una varit de mag +cube/cube_3,cub color azul figur geometr cubic +cube/cube_1,cub color amarill parec un pedaz de mantequill +cylinder/cylinder_2,el objet es de form cilindr es de color roj +lime/lime_4,el objet es una frut de color verd parec de form redond +cuboid/cuboid_4,el objet es de color azul es un cub +tomato/tomato_1,el objet es una frut de color roj es de form redond +cylinder/cylinder_2,redond larg roj y de textur suav +lime/lime_4,redond pequeñ verd y acid +cuboid/cuboid_4,rectangul azul y larg +tomato/tomato_1,redond peqyeñ y de textur suav +tomato/tomato_3,un tomat roj +triangle/triangle_3,un poliedr verd oscur +cube/cube_1,un cub amarill +lime/lime_1,un limòn verd +tomato/tomato_3,un tomat +triangle/triangle_3,un prism triangul verd +cube/cube_1,un cub amarill +lime/lime_1,un limon verd +eggplant/eggplant_4,es una berenjen de color negr con tall sobr una bas blanc +cabbage/cabbage_1,es un repoll mor sobr una bas gris +banana/banana_1,es una banan +corn/corn_3,es un maiz blanc sobr una bas gris +eggplant/eggplant_4,tien una form algo peculi en un extrem grand y en el otro pequeñ es de color mor +cabbage/cabbage_1,tien una form redond casi perfect es de color mor y se not que tien vari cap +banana/banana_1,tien una prolong curvatur se ve fragil y su color es amarill +corn/corn_3,se ve bastant robust aunqu su textur es peculi su color es muy pal +semicylinder/semicylinder_4,un medi cilindr verd +tomato/tomato_3,un jitomat roj +semicylinder/semicylinder_1,medi cilindr azul +plum/plum_3,manzan roj inclin +cylinder/cylinder_2,cilindr roj +semicylinder/semicylinder_4,form triangul de color verd +tomato/tomato_3,tomat redond de color roj con coron de hoj madur +semicylinder/semicylinder_1,fom semi oval colorr azul +plum/plum_3,esfer mor +cylinder/cylinder_2,cilindr roj +banana/banana_2,es el frut de un arbol de color amarill y alarg +corn/corn_2,es el frut de una plant es alarg amarill y compuest de multipl gran +cylinder/cylinder_4,es un objet con form de cilindr de color verd +tomato/tomato_3,es un frut de color roj y form esfer +potato/potato_3,es una hortaliz de color amarill y form irregul +banana/banana_2,es una banan de color amarill +corn/corn_2,es un maiz de color blanc algo sec +cylinder/cylinder_4,es un cilindr de color verd en form horizontal +tomato/tomato_3,no se ve la imag +potato/potato_3,es una patat de color caf clar +semicylinder/semicylinder_3,medi cilindr amarill +carrot/carrot_3,zanahori pal +lemon/lemon_1,limon amarill +cylinder/cylinder_3,cilindr azul +potato/potato_3,pap amarill limpi +semicylinder/semicylinder_3,un prism triangul amarill +carrot/carrot_3,una zanahori +lemon/lemon_1,un limon amarill +cylinder/cylinder_3,un cilindr azul +potato/potato_3,una patat +cylinder/cylinder_4,tien una form cilindr y es de color verd +cuboid/cuboid_2,cuent con una form rectangul tu textur se not lis y es de color verd +cylinder/cylinder_4,tien una form cilindr es un poc larg y su color es verd +orange/orange_3,es redond arrib tien una pequeñ manch su textur se not lis y es de color naranj +cylinder/cylinder_4,me parec un rodill de color verd +cuboid/cuboid_2,es com un objet de limpiez de color verd com un jabon +cylinder/cylinder_4,es com un rodill es de color verd +orange/orange_3,es una conch de naranj +carrot/carrot_3,zanahori pal +tomato/tomato_1,tomat madur +eggplant/eggplant_2,berengen mor +plum/plum_3,manzan madur +carrot/carrot_3,una zanahori +tomato/tomato_1,un tomat +eggplant/eggplant_2,una berenjen +plum/plum_3,una manzan +cabbage/cabbage_1,el objet parec un repoll de color violet o tal una plant de lechug tien una form liger oval +tomato/tomato_4,lo que se ve es un tomat su color es un roj no muy intens com si no estuv del tod madur +cube/cube_4,el objet es part de una figur geometr o prism es de color roj o bord y se ve una arist redond +banana/banana_4,el objet es una banan no parec del tod madur puest que su color no es amarill sin mas bien verdos +orange/orange_3,lo que se ve parec una frut una naranj su color es una naranj no muy intens +cabbage/cabbage_1,un repoll purpur +tomato/tomato_4,un tomat +cube/cube_4,un cub roj +banana/banana_4,un platan +orange/orange_3,una naranj +eggplant/eggplant_3,una berenjen horizontal +cabbage/cabbage_3,un vegetal con hoj +lemon/lemon_3,un limon madur +banana/banana_2,un platan horizontal +eggplant/eggplant_3,una berenjen vertical +eggplant/eggplant_3,una berenjen +cabbage/cabbage_3,un repoll purpur +lemon/lemon_3,un limon amarill +banana/banana_2,un platan +eggplant/eggplant_3,una berenjen +tomato/tomato_2,parec un tomat de color roj madur list par com la varied dir que es tomat per +cucumber/cucumber_2,es un pepin verdur de color verd +cucumber/cucumber_4,mism pepin que el objet anterior es de tamañ medi list par echar a la ensal +plum/plum_1,es un objet de form redond de color rojiz podr trat de una manzan per no se ve bien +lime/lime_1,es algun tip de aliment podr trat de una lim por el color amarill verd chillon +tomato/tomato_2,frut redond de color roj +cucumber/cucumber_2,vegetal verd con form falic +cucumber/cucumber_4,vegetal verd y alarg +plum/plum_1,frut mor redond +lime/lime_1,estructur vegetal verd +plum/plum_4,un objet de mor oscur +cylinder/cylinder_3,un cilindr de color azul +potato/potato_4,es una patat de color caf clar +cabbage/cabbage_2,es un repoll mor sobr una bas de color gris +cube/cube_4,es un cuadr de color roj +plum/plum_4,fragment de una superfici simil a piel de manzan +cylinder/cylinder_3,un objet cilindr de color azul +potato/potato_4,fragment de una superfici simil a piel de pap +cabbage/cabbage_2,un repoll de color mor +cube/cube_4,un cub de color roj +cuboid/cuboid_3,tac de color roj en posicion horizontal +eggplant/eggplant_2,berenjen median color mor oscur y tall verd +lemon/lemon_2,lim amarill form redond +tomato/tomato_2,tomat madur color roj +carrot/carrot_1,zanahori anaranj delg y larg +cuboid/cuboid_3,paralelepiped roj +eggplant/eggplant_2,berengen mor +lemon/lemon_2,limon amarill +tomato/tomato_2,tomat madur +carrot/carrot_1,zanahori pal +triangle/triangle_1,triangul roj +banana/banana_2,banan de color amarill clar +lemon/lemon_2,limon amarill +eggplant/eggplant_3,berengen mor +banana/banana_1,banan amarill +triangle/triangle_1,figur geometr roj +banana/banana_2,frut con casc de color amarill y form de fal +lemon/lemon_2,frut circul amarill +eggplant/eggplant_3,vegetal mor +banana/banana_1,frut con casc de color amarill +plum/plum_1,es de color roj y su textur se not lis la luz que le peg brill en su cuerp su color es roj +cucumber/cucumber_3,es de color verd larg y un poc grues se not delic +cuboid/cuboid_3,tien form cuadr per un poc larg es de color roj +lemon/lemon_3,tien una form muy redond su textur es peculi tien color amarill con ton de verd +cuboid/cuboid_3,parec un cuadr per mas alto y de color roj +plum/plum_1,esfer vinotint +cucumber/cucumber_3,pepin verd larg +cuboid/cuboid_3,tac de color roj en posicion horizontal +lemon/lemon_3,lim amarill +cuboid/cuboid_3,tac de color roj en posicion vertical +cylinder/cylinder_1,cilindr de color amarill en form vertical +cucumber/cucumber_4,pepin de color verd en form horizontal +eggplant/eggplant_4,bernjen de color negr +carrot/carrot_1,zanahori de color ros con punt dobl +eggplant/eggplant_4,es una berenjen grand de color negr sobr una bas blanc +cylinder/cylinder_1,un cilindr amarill +cucumber/cucumber_4,un pepin +eggplant/eggplant_4,una berenjen +carrot/carrot_1,una zanahori +eggplant/eggplant_4,una berenjen +cube/cube_4,un cub roj +banana/banana_4,un platan +triangle/triangle_4,un prism triangul azul +lemon/lemon_2,un limon amarill +plum/plum_3,una manzan +cube/cube_4,es pequeñ cuadr roj +banana/banana_4,larg verd asper y sec +triangle/triangle_4,triangul pequeñ asuz y sec +lemon/lemon_2,redond agri pequeñ +plum/plum_3,redond roj y queñ +corn/corn_2,mazorc de maiz blanc +arch/arch_2,medi tub azul +cuboid/cuboid_2,paralelepiped verd horizontal +corn/corn_2,frut amarill de una plant de form alarg y llen de gran con el se hac palomit +arch/arch_2,objet semiesfer y de color azul +cuboid/cuboid_2,parec una barr de mantequill per de color verd +cube/cube_2,cub verd +lime/lime_4,limon verd +tomato/tomato_1,tomat madur de color roj sin hoj redond +cylinder/cylinder_1,form amarill +semicylinder/semicylinder_1,semicircul de color azul +cube/cube_2,es un cuadr de color verd +lime/lime_4,es un limon de color verd +tomato/tomato_1,es un tomat rom de color roj intens +cylinder/cylinder_1,objet de color amarill +semicylinder/semicylinder_1,es un objet de color azul con form redond +cucumber/cucumber_4,este es un pepin verd y alarg +cabbage/cabbage_3,una berenjen roj y redond +banana/banana_4,un platan verd +banana/banana_4,este es un platan verd +cucumber/cucumber_4,un pepin +cabbage/cabbage_3,un repoll purpur +banana/banana_4,un platan +banana/banana_4,un platan +banana/banana_1,tien una form larg de color amarill y una curvatur +cabbage/cabbage_2,su form es redond de color mor y tien detall en blanc +carrot/carrot_1,tien una form muy larg y es de color naranj y delg +banana/banana_1,tien una form larg per con una curvatur y es de color amarill +triangle/triangle_3,tien una form rectangul y es de color verd +banana/banana_1,es el frut de un arbol de color amarill y alarg +cabbage/cabbage_2,es una verdur con form de pelot de beisbol de color mor +carrot/carrot_1,es una verdur de color naranj y form alarg +banana/banana_1,es el frut de un arbol de color amarill y alarg +triangle/triangle_3,es un objet con form de prism piramidal y color verd +arch/arch_1,form de color amarill +tomato/tomato_3,tomat madur de color roj con hoj redond +semicylinder/semicylinder_1,semiesfer de color azul +eggplant/eggplant_4,berenjen pequeñ de color mor y tall verd +arch/arch_1,medi tub amarill +tomato/tomato_3,tomat roj +semicylinder/semicylinder_1,medi tub azul +eggplant/eggplant_4,berengen mor +potato/potato_1,es un durazn figur redond +cube/cube_4,es un cub color roj figur geometr cubic +arch/arch_4,figur geometr roj rectangul atraves por un ardo +cuboid/cuboid_1,figur rectangul amarill es una mantequill +lime/lime_4,parec un limon podr ser una sand +potato/potato_1,el objet parec ser una frut de form redond es de color roj oscur +cube/cube_4,el objet parec ser de form cubic es de color roj +arch/arch_4,el objet es de form irregul es de color roj +cuboid/cuboid_1,el objet es de color amarill es de form cubic +lime/lime_4,el objet es de color verd aparent ser una frut +semicylinder/semicylinder_4,triangul verd sec +cube/cube_2,cuadr pequeñ verd sec +semicylinder/semicylinder_2,achat redond oval roj +carrot/carrot_2,larg desform sec y de color naranj +semicylinder/semicylinder_4,mit de un cilindr verd +cube/cube_2,un cub verd +semicylinder/semicylinder_2,mit de un cilindr roj +carrot/carrot_2,una zanahori +triangle/triangle_4,el objet es un prism azul de bas triangul per esta apoy sobr una de las car lateral la car triangul correspond a un triangul rectangul escalen +cucumber/cucumber_3,lo que se ve es un zucchini o tal vez un pepin tien form cilindr y es de color verd oscur +cylinder/cylinder_2,esto es un cilindr de color roj o bord que esta apoy sobr una de las car circular es mas alto que ancho +cuboid/cuboid_4,lo que vem es un prism de color azul franci parec un paralelepiped con dos car cuadr y cuatr rectangular +triangle/triangle_4,un top de puert o cuñ de form triangul y de color azul +cucumber/cucumber_3,un pepin de buen tamañ de color verd +cylinder/cylinder_2,un prism cilindr de color roj de un material plastic o brillant +cuboid/cuboid_4,un prism rectangul de color azul de un material brillant parec al plastic +cube/cube_1,tien una form rectangul y su color amarill oscur luc opac +cuboid/cuboid_1,tien una form cuadr y alarg de color amarill +triangle/triangle_3,tien una form triangul y es de color verd +arch/arch_2,su form es algo particul abaj es total rect y arrib tien una curvatur +semicylinder/semicylinder_2,arrib cuent con una form redond mientr que en su part de abaj es plan su color es roj +cube/cube_1,es un cub de color amarill +cuboid/cuboid_1,es una figur con form de prism de color amarill +triangle/triangle_3,es un objet con form de prism triangul de color verd +arch/arch_2,es un objet azul con form de puent invert +semicylinder/semicylinder_2,es un objet de color roj con form de mit de un cilindr +banana/banana_4,es una frut amarill dulc con pint negr y con form semiesfer +arch/arch_3,es un objet de form semiesfer o de medi lun +lime/lime_3,es un objet esfer y de color verd +lime/lime_2,es un objet que parec de plastic de color verd y esfer en la part de arrib +cabbage/cabbage_2,es una plant comest redond y de hoj lis y con un cogoll es de color mor +banana/banana_4,es un platan o una banan ya madur de color amarill y ya suelt del racim +arch/arch_3,es una piez o mold al parec de un material plastic o de superfici brillant con una entrad semicircul y extrem cuadr +lime/lime_3,un objet con una textur brillant parec al de un limon color verd y de una siluet parec al de una almej vist desd arrib +lime/lime_2,un objet con una textur brillant parec al de un limon color verd y de una siluet parec al de una almej vist desd arrib +cabbage/cabbage_2,un objet parec a una col o a otra legumbr de un color negruzc con ton entre mor y verd con plieg parec a hoj +eggplant/eggplant_4,el objet es una verdur de color negr tien una pequeñ part verd en la part superior +triangle/triangle_4,el objet es de form triangul es de color azul +cucumber/cucumber_2,el objet es una verdur de form alarg es de color verd +cuboid/cuboid_3,el objet es de form cubic es de color roj +lime/lime_2,el objet es de color verd aparent ser una frut +eggplant/eggplant_4,es una frut es una berenjen +triangle/triangle_4,parec un objet que sirv par pon cos en el +cucumber/cucumber_2,es una lechoz verd +cuboid/cuboid_3,es un objet color rojiz que parec un jabon +lime/lime_2,parec una molecul color verd +lime/lime_2,limon verd +cabbage/cabbage_2,repoll mor redond y grand +semicylinder/semicylinder_3,form amarill +plum/plum_4,esfer mor +lime/lime_2,el objet es de color verd parec una frut +cabbage/cabbage_2,el objet es una verdur de much hoj es de color mor +semicylinder/semicylinder_3,el objet es de color amarill es de form triangul +plum/plum_4,el objet es una frut redond es de color roj oscur +carrot/carrot_4,es una zanahori larg de color ros +cube/cube_3,es un cuadr de color azul en un fond negr +cabbage/cabbage_3,es un repoll negr sobr una bas blanc +cabbage/cabbage_4,es un repoll mor de lad en una bas blanc +carrot/carrot_4,lo que vem es una zanahori muy fin y alarg +cube/cube_3,el objet es un prism de color azul intens parec un cub o paralelepiped +cabbage/cabbage_3,es un objet casi esfer de color grisace con surc parec algun verdur comest tal vez un repoll +cabbage/cabbage_4,el objet es una plant de repoll de color violet intens se ve dond fue seccion el tall +cube/cube_1,es un cub amarill muy parec a un ques +plum/plum_3,parec ser una uva o manzan per no se percib muy bien es de color roj +corn/corn_1,maiz complet de col clar casi blanc en estad sin cocin +eggplant/eggplant_4,parec ser una berenjen de color casi negr +semicylinder/semicylinder_2,una figur semi redond de color roj y un poc ancha +cube/cube_1,es un objet con form de cub de color amarill +plum/plum_3,es un frut de color mor y form esfer +corn/corn_1,es el frut de la plant del maiz y tien form alarg y color amarilloest form por multipl gran +eggplant/eggplant_4,es una verdur de color mor alarg brillant +semicylinder/semicylinder_2,es un objet de color roj con form de cilindr a la mit +cuboid/cuboid_2,paralelepiped verd +plum/plum_3,manzan madur +cabbage/cabbage_2,repoll mor +arch/arch_1,medi tub amarill +carrot/carrot_3,zanahori pal +cuboid/cuboid_2,un prism rectangul verd +plum/plum_3,una manzan +cabbage/cabbage_2,un repoll purpur +arch/arch_1,un prism rectangul amarill con concav abert +carrot/carrot_3,una zanahori +cabbage/cabbage_1,repoll mor +cube/cube_3,cub azul +corn/corn_1,mazorc de maiz +eggplant/eggplant_1,berengen mor +corn/corn_1,mazorc de maiz blanc +cabbage/cabbage_1,un repoll purpur +cube/cube_3,un cub azul +corn/corn_1,una espig de maiz +eggplant/eggplant_1,una berenjen +corn/corn_1,una espig de maiz +lime/lime_2,fragment de una superfici simil a piel de limon +banana/banana_3,una banan o cambur madur +eggplant/eggplant_1,una berenjen madur +cucumber/cucumber_2,un pepin de color verd con textur corrug +cuboid/cuboid_1,un objet con form de prism rectangul de color amarill +lime/lime_2,limon verd +banana/banana_3,platan grand color amarill +eggplant/eggplant_1,berenjen grand color mor oscur +cucumber/cucumber_2,pepin verd +cuboid/cuboid_1,cub alarg de color amarill en posicion horizontal +arch/arch_1,tien una form peculi abaj es plan y arrib tien una curvatur +semicylinder/semicylinder_4,arrib tien una curvatur y abaj es plan su color es verd +eggplant/eggplant_1,tien una form algo extrañ una part es grues y otra es pequeñ +orange/orange_2,tien una form redond y es de color amarill +cucumber/cucumber_2,tien una form larg tien similitud a la de una sand es de color verd +arch/arch_1,ramp amarill +semicylinder/semicylinder_4,form verd semicircul +eggplant/eggplant_1,berenjen de color mor con tall verd +orange/orange_2,esfer amarill mostaz +cucumber/cucumber_2,pepin grand con color verd +banana/banana_4,el objet es una frut de form alarg y curv es de color verd +cylinder/cylinder_4,el objet es de form cilindr es de color verd +cube/cube_1,el objet es un cub es de color amarill +corn/corn_3,el objet es una verdur compuest por much dient es de color blancuzc +cylinder/cylinder_3,el objet es de form cilindr es de color azul +banana/banana_4,un platan +cylinder/cylinder_4,un cilindr verd +cube/cube_1,un cub amarill +corn/corn_3,una espig de maiz +cylinder/cylinder_3,un cilindr azul +semicylinder/semicylinder_3,medi tub amarill +triangle/triangle_1,triangul vinotint +semicylinder/semicylinder_3,medi tub amarill +cabbage/cabbage_3,repoll mor +lemon/lemon_3,limon amarill +semicylinder/semicylinder_3,es de color amarill y form de medi circunferent +triangle/triangle_1,poligon de tres lad y de color roj +semicylinder/semicylinder_3,es de color amarill y parec una circunferent cort a la mit +cabbage/cabbage_3,es una plant comest mor redond y de hoj lis +lemon/lemon_3,es una frut citric con form de huev y de color amarill +semicylinder/semicylinder_1,el objet es un prism de color azul intens podr pens com una porcion menor a la mit de un prism de bas circul +eggplant/eggplant_3,vem una berenjen de color muy oscur casi negr con part del tall visibl de color verd +potato/potato_1,el objet es algun clas de frut o mas bien un tubercul tien un color roj opac y form casi esfer +eggplant/eggplant_1,el objet es una berenjen de color negr vem el tall color verd en prim plan +semicylinder/semicylinder_1,mit de una esfer color azul +eggplant/eggplant_3,berenjen pequeñ color mor oscur y tall verd +potato/potato_1,esfer vinotint oscur +eggplant/eggplant_1,berenjen grand color negr y tall verd +carrot/carrot_3,una zanahori +lemon/lemon_4,un limon amarill +carrot/carrot_2,una zanahori +cube/cube_2,un cub verd +potato/potato_4,una patat +carrot/carrot_3,es una hortaliz de color naranj y form alarg +lemon/lemon_4,es un frut de color amarill piel rugos su form es cilindr un poc oval +carrot/carrot_2,es una hortaliz de color naranj y form alarg +cube/cube_2,es un objet con form de cub de color verd +potato/potato_4,es una hortaliz de color amarill y form irregul su piel no es suav +tomato/tomato_3,un tomat +lemon/lemon_2,un limon amarill +cube/cube_4,un cub roj +arch/arch_1,un prism rectangul amarill con concav abert +eggplant/eggplant_2,una berenjen +tomato/tomato_3,es el frut de una plant es roj y form esfer +lemon/lemon_2,es el frut de un arbol form esfer y color amarill +cube/cube_4,es un objet con form de cub de color roj +arch/arch_1,es un objet de color amarill con form de puent +eggplant/eggplant_2,es una verdur de color mor form alarg y textur brillant +cube/cube_2,cuadr pequeñ y de color verd +cube/cube_2,cuadr pequeñ y de color verd +potato/potato_2,redond de color marron desform y de textur asper +corn/corn_3,larg blanc con dient y jugos +cube/cube_2,cub verd +cube/cube_2,cub verd +potato/potato_2,remolach madur +corn/corn_3,mazorc de maiz blanc +plum/plum_3,es una frut de color mor y form esfer piel brillant y lis +eggplant/eggplant_2,es una verdur de color mor piel suav y brillant +cucumber/cucumber_1,es una hortaliz de form cilindr y verd su textur es rugos +carrot/carrot_4,es una hortaliz de color naranj y form alarg +plum/plum_3,una manzan +eggplant/eggplant_2,una berenjen +cucumber/cucumber_1,un pepin +carrot/carrot_4,una zanahori +semicylinder/semicylinder_4,oval de color verd y textur suav +banana/banana_1,larg amarill y de textur suav +semicylinder/semicylinder_4,oval de color verd y de textur suav +eggplant/eggplant_2,de color mor y de textur suav +triangle/triangle_3,triangul verd y de textur suav +semicylinder/semicylinder_4,tien una form algo particul y extrañ se not en su mayor curvatur +banana/banana_1,se ve que tien una form larg per con una prolong curv es de color amarill +semicylinder/semicylinder_4,su form general con curv es algo rar es de color verd +eggplant/eggplant_2,tien una form particul arrib grues y abaj delg es de color mor +triangle/triangle_3,tien una form triangul y es de color verd +cube/cube_3,cub azul +potato/potato_2,tomat muy madurp +lime/lime_4,limon verd +carrot/carrot_3,zanahori pal +cube/cube_3,el objet es un cub es de color azul +potato/potato_2,el objet es una frut de color roj es de form redond +lime/lime_4,el objet es de color verd parec ser algñun tip de frut +carrot/carrot_3,el objet es una verdur de form alarg es de color naranj +cucumber/cucumber_3,el objet es una verdur de color verd es de form alarg +arch/arch_2,es un objet de form irregul es de color azul +cylinder/cylinder_2,el objet es de form cilindr y color roj se encuentr volt sobr uno de sus lad +tomato/tomato_2,el objet es una frut redond es de color roj +plum/plum_2,el objet es de color rojomor parec ser un frut +cucumber/cucumber_3,pepin verd +arch/arch_2,medi tub azul horizontal +cylinder/cylinder_2,cilindr roj +tomato/tomato_2,tomat madur +plum/plum_2,remolach madur +cube/cube_3,un cub azul +potato/potato_1,una manzan +lime/lime_3,un limon verd +potato/potato_3,una patat +cuboid/cuboid_2,un prism rectangul verd +cube/cube_3,es un cuadr de color azul +potato/potato_1,es una patat de color caf de tamañ pequeñ +lime/lime_3,es una frut de color verd com una manzan o per +potato/potato_3,no se ve la imag +cuboid/cuboid_2,rectangul de color verd musg en form vertical sobr una bas blanc +potato/potato_1,una bol marron +semicylinder/semicylinder_3,un cilindr part por la mit y puest haci abaj con la part plan +orange/orange_3,una pelot naranj +tomato/tomato_3,un tomat roj con la conexion encim +potato/potato_1,una manzan +semicylinder/semicylinder_3,mit del un cilindr amarill +orange/orange_3,una naranj +tomato/tomato_3,un tomat +banana/banana_2,es una frut con form alarg su casc es amarill y por dentr es blanc +plum/plum_2,es una frut de color roj por dentr es amarill +lime/lime_1,es un objet de color verd esfer parec una frut +carrot/carrot_2,es un objet alarg con form de cilindr de color naranj +corn/corn_4,es el frut de una plant es alarg y esta compuest de much gran de color amarill +banana/banana_2,parec ser un platanit o banan de color amarill un poc madur +plum/plum_2,parec ser una uva o manzan per no se percib muy bien es de color roj +lime/lime_1,objet de color verd sin form defin pued ser una frut +carrot/carrot_2,objet de color ros y de una form alarg +corn/corn_4,maiz complet de col clar casi blanc en estad sin prepar list par cocin +potato/potato_1,una manzan roj +plum/plum_2,una manzan roj +cylinder/cylinder_2,un cilindr horizontal roj +plum/plum_3,una manzan roj +potato/potato_1,tien una form algo oval y predomin su color roj oscur tambien tien un pequeñ hundimient +plum/plum_2,tien una form peculi sobr tod por tu part de abaj tien ton de color roj +cylinder/cylinder_2,tien form cilindr y es de color roj +plum/plum_3,tien una form algo oval y arrib tien un hundimient tien color roj de vari ton +cuboid/cuboid_1,es un objet con form de prism de color amarill +plum/plum_3,es una frut de color roj por dentr es amarill +lime/lime_1,es un objet de color verd con textur de frut +lemon/lemon_4,es una frut de color amarill +cuboid/cuboid_1,un cub amarill +plum/plum_3,una manzan +lime/lime_1,un limon verd +lemon/lemon_4,una naranj +eggplant/eggplant_2,verengen mor +cylinder/cylinder_2,cilindr roj vertical +eggplant/eggplant_1,verengen mor +plum/plum_3,manzan roj +cuboid/cuboid_2,paralelepiped verd horizontal +eggplant/eggplant_2,parec una frut cre es una berenjen +cylinder/cylinder_2,es un objet rojiz que parec un cilindr +eggplant/eggplant_1,es una frut que me parec tambi una berenjen +plum/plum_3,parec com un ser viv del mar +cuboid/cuboid_2,es de color verd parec de uso de limpiez com un jabon +plum/plum_3,una manzan roj +plum/plum_2,un object roj simil a una manzan +orange/orange_3,una naranj madur +carrot/carrot_4,una zanahori larg +plum/plum_3,de form esfer y de color mor +plum/plum_2,una especi de esfer de color mor +orange/orange_3,es una frut citric redond y de color naranj sirv par hac zum +carrot/carrot_4,es una hortaliz alarg y de color naranj le encant a los conej +lemon/lemon_4,es un frut de color amarill piel rugos +lemon/lemon_3,es el frut de un arbol de color amarill piel rugos +arch/arch_4,es una figur de color roj brillant +cabbage/cabbage_3,es una verdur de color mor con hoj tien form esfer +lime/lime_4,es una frut de color verd aspect rugos +lemon/lemon_4,el objet es una frut acid es de color amarill +lemon/lemon_3,el objet es una frut acid es de color amarill +arch/arch_4,el objet es de form irregul es de color roj +cabbage/cabbage_3,el objet es una verdur de much hoj es de color mor +lime/lime_4,el objet es de color verd aparent ser una frut +triangle/triangle_2,es un objet de color amarill en form triangul +lemon/lemon_2,es un limon amarill oscur +plum/plum_2,es un objet de color roj oscur que podri ser un vegetal com repoll mor +cuboid/cuboid_4,es un rectangulo azul de form vertical +carrot/carrot_3,es una zanahori +triangle/triangle_2,el objet es de form triangul es de color amarill +lemon/lemon_2,el objet es un frut acid de form redond es de color amarill +plum/plum_2,el objet es de color roj oscuromor parec ser una frut +cuboid/cuboid_4,el objet es de form cubic es de color azul +carrot/carrot_3,el objet es una verdur de form alarg es de color naranj +semicylinder/semicylinder_4,seccion de un objet cilindr de color verd +carrot/carrot_1,una zanahori +cube/cube_2,cub de color verd +orange/orange_4,una naranj madur +banana/banana_3,una banan o cambur madur +semicylinder/semicylinder_4,es una figur de color verd tien form de cilindr part a la mit +carrot/carrot_1,es una hortaliz de color naranj y form alarg +cube/cube_2,es un objet con form de cub de color verd +orange/orange_4,es una frut de color naranj tien form esfer y piel rugos +banana/banana_3,es una frut de color amarill es de form alarg +banana/banana_1,una banan o cambur madur +tomato/tomato_3,un tomat manzan madur +eggplant/eggplant_4,una berenjen madur +corn/corn_4,una mazorc de maiz blanc +carrot/carrot_1,una zanahori +banana/banana_1,platan acost de color amarill +tomato/tomato_3,tomat madur color roj intens redond +eggplant/eggplant_4,berenjen median color negr +corn/corn_4,maiz blanc de gran tamañ +carrot/carrot_1,zanahori anaranj delg y larg +carrot/carrot_3,zanahori pal +corn/corn_3,mazorc de maiz blanc +eggplant/eggplant_4,berengen mor +lemon/lemon_4,limon verd +cabbage/cabbage_4,repoll mor +carrot/carrot_3,una zanahori +corn/corn_3,una espig de maiz +eggplant/eggplant_4,una berenjen +lemon/lemon_4,un limon amarill +cabbage/cabbage_4,un repoll purpur +cuboid/cuboid_3,prism rectangul color roj +carrot/carrot_2,zanahori de color naranj clar +corn/corn_1,elot blanc +banana/banana_2,banan inmadur +cylinder/cylinder_2,cilindr color +cuboid/cuboid_3,es roj cuadr rectangul y sec +carrot/carrot_2,es larg desform naranj y sec +corn/corn_1,es larg con dient jugos y blanc +banana/banana_2,es amarill larg suav y delici +cylinder/cylinder_2,es redond alargad sec y roj +carrot/carrot_1,raiz comest de color naranj +cuboid/cuboid_1,barr amarill +banana/banana_4,frut con casc amarill en form de fal +corn/corn_3,estructur vegetal llen de gran +cabbage/cabbage_3,vegetal redond y de color mor +carrot/carrot_1,es una hortaliz de color naranj y form alarg +cuboid/cuboid_1,objet con form de prism de color amarill +banana/banana_4,es una frut de color amarill y form alarg +corn/corn_3,es el frut de una plant es alarg amarill y compuest de multipl gran +cabbage/cabbage_3,es una verdur de color mor con hoj tien form esfer +triangle/triangle_4,triangul azul +triangle/triangle_2,triangul amarill +triangle/triangle_3,triangul verd +cylinder/cylinder_2,cilindr roj +cube/cube_3,cub azul +triangle/triangle_4,es un objet de color azul rey en form rectangul +triangle/triangle_2,es un objet amarill de form triangul +triangle/triangle_3,es un traingul de color verd ocur vertical +cylinder/cylinder_2,es un cilindr de color roj +cube/cube_3,es un objet de form cuadr de color azul +lemon/lemon_2,limon amarill +banana/banana_1,banan de color amarill clar +cylinder/cylinder_1,cilindr amarill horizontal +cuboid/cuboid_2,paralelepiped verd horizontal +cuboid/cuboid_3,paralelepiped roj vertical +lemon/lemon_2,un objet de color amarill del color de una naranj de superfici lis y brillant con un objet que sobresal parec a una moned +banana/banana_1,un platan o banan de color amarill no total madur +cylinder/cylinder_1,una piez o mold de color amarill y una superfici de material plastic y form irregul +cuboid/cuboid_2,un prism rectangul de color verd de plastic u otro material brillant +cuboid/cuboid_3,un prism cuadrangul de color roj de un material plastic u otro material brillant +plum/plum_4,algun tip de sustanci roj no se alcanz a ver su form +orange/orange_1,pued ser una frut com una mandarin tien una form redond y de color naranj +potato/potato_4,parec algun tip de tubercul com una pap crioll +corn/corn_4,maiz complet de col clar casi blanc en estad sin cocin +plum/plum_4,el objet parec ser una frut es de color roj oscur +orange/orange_1,el objet es una frut es de color amarillonaranj +potato/potato_4,el objet es de color marron clar parec ser algun tip de frut o verdur +corn/corn_4,el objet es una verdur compuest por much dient es de color blancuzc +cylinder/cylinder_4,tien una form cilindr un poc larg de color verd +triangle/triangle_1,su form es rectangul parec una reban de pastel de color roj +cylinder/cylinder_3,cuent con una form cilindr y su color es azul +semicylinder/semicylinder_1,abaj es plan y arrib es redond su textur se not lis y es de color azul +cucumber/cucumber_4,es grues de color verd y un poc larg su textur se not un poc rugos +cylinder/cylinder_4,es larg verd median y sec +triangle/triangle_1,es triangul roj medi y sec +cylinder/cylinder_3,es alarg azul redond y sec +semicylinder/semicylinder_1,tien una form triangul aplan y ancha azul y sec +cucumber/cucumber_4,es larg verd asper y con espin +carrot/carrot_1,un gusan +arch/arch_3,una piez verd en form de u com dond practic patinet +carrot/carrot_2,una lombriz de tierr +tomato/tomato_2,una frut roj +cabbage/cabbage_1,un repoll mor +carrot/carrot_1,es una hortaliz de color naranj y form alarg +arch/arch_3,es una figur de color verd +carrot/carrot_2,es una hortaliz de color naranj y form alarg +tomato/tomato_2,es un frut de color roj y form esfer +cabbage/cabbage_1,es una verdur de color mor con hoj +plum/plum_1,es una balloon +eggplant/eggplant_2,es una eggplant +lemon/lemon_3,es una lemon +cucumber/cucumber_4,no hay nad aqui +cube/cube_3,es una cub +plum/plum_1,mazan roj +eggplant/eggplant_2,berengen mor +lemon/lemon_3,limon amarill +cucumber/cucumber_4,pepin verd +cube/cube_3,cub azul +cucumber/cucumber_4,es larg verd y asper +triangle/triangle_3,es triangul verd y sec +tomato/tomato_2,es roj redond y jugos +corn/corn_2,es larg blanc con dient y jugos +potato/potato_2,es redond sec y color entre marron y mor +cucumber/cucumber_4,tien una larg y muy grues se ve robust y es de color verd +triangle/triangle_3,tien una form triangul que alarg un poc su color es verd +tomato/tomato_2,tien una form redond su textur se ve lis y es de color roj +corn/corn_2,tien una form larg per con puntit en tod su cuerp pal +potato/potato_2,tien una form oval per con lev deform su color es roj +eggplant/eggplant_1,es una berenjen de color negr sobr una bas blanc +arch/arch_4,es un objet de color roj con form sobr una bas blanc +cuboid/cuboid_3,es un rectangul de color roj de consistent dur en form horizontal +cabbage/cabbage_2,repoll mor cort abaj en una bas gris +lemon/lemon_4,es un limon madur en una bas blanc +eggplant/eggplant_1,berenjen mor pequeñ con tall verd +arch/arch_4,ramp de color roj +cuboid/cuboid_3,cub alarg de color roj en posicion horizontal +cabbage/cabbage_2,repoll mor +lemon/lemon_4,lim amarill de tamañ median +eggplant/eggplant_3,berenjen mor pequeñ +plum/plum_4,esfer vinotint +cuboid/cuboid_1,tac de color amarill en posicion horizontal +orange/orange_1,esfer anaranj +arch/arch_3,form de color verd clar +eggplant/eggplant_3,lo que vem es una berenjen sin el tall tien form irregul y es de color negruzc +plum/plum_4,es un objet esfer de color violet rojiz podr ser un betabel +cuboid/cuboid_1,el objet es un prism de bas rectangul un paralelepiped tien form de pan de mantec y es de color amarill intens +orange/orange_1,esto parec ser una naranj o una mandarin tien un color naranj oscur con algun pequeñ manch +arch/arch_3,es un prism de bas cuadr un paralelepiped al que le han hech una cavid cilindr en una de sus car rectangular +corn/corn_1,mazorc de maiz blanc +cabbage/cabbage_1,repoll mor +semicylinder/semicylinder_2,medi tub roj +carrot/carrot_3,zanahori pal +tomato/tomato_4,tomat roj en proces de madur +corn/corn_1,no muestr imag +cabbage/cabbage_1,repoll de color mor sobr una bas de color gris +semicylinder/semicylinder_2,ojet de color roj intens con form redond +carrot/carrot_3,es una zanahori larg de color ros anaranj +tomato/tomato_4,es un tomat con manch roj y amarill +triangle/triangle_4,tien una form triangul y es de color azul +carrot/carrot_1,tien una form larg y delg y es de color naranj +banana/banana_1,tien una form larg per con una curvatur y es de color amarll +corn/corn_1,tien una form larg per con puntit en tod su cuerp +plum/plum_2,tien una form redond casi perfect y predomin su color roj +triangle/triangle_4,triangul azul +carrot/carrot_1,zanahori pal +banana/banana_1,banan madur +corn/corn_1,mazorc de maiz blanc +plum/plum_2,manzan madur +plum/plum_3,el objet parec un vegetal probabl un betabel por su color violet +potato/potato_3,lo que vem es una pap de color castañ clar tien una form irregul mas bien oval +orange/orange_2,lo que vem es una naranj de casc color naranj pal +orange/orange_4,el objet es una naranj su color es un naranj verdos +carrot/carrot_4,el objet es una zanahori de form muy fin y alarg +plum/plum_3,objet esfer color mor clar +potato/potato_3,objet semej a una pap +orange/orange_2,frut de color amarill +orange/orange_4,objet semej a una naranj +carrot/carrot_4,zanahori de gran longitud y muy delg +cabbage/cabbage_3,repoll mor +potato/potato_1,manzan madur +orange/orange_2,limon amarill +banana/banana_3,banan amarill +orange/orange_4,limon amarill +cabbage/cabbage_3,estructur vegetal de color mor form por acumul de hoj +potato/potato_1,frut redond mor +orange/orange_2,frut circul amarill +banana/banana_3,frut con casc de color amarill +orange/orange_4,frut circul de color amarill +lemon/lemon_3,frut redond de color amarill +banana/banana_2,frut alarg de color amarill +lemon/lemon_4,frut circul amarill +cucumber/cucumber_4,vegetal verd alarg +lime/lime_4,estructur vegetal verd +lemon/lemon_3,una lim amarill +banana/banana_2,un platan +lemon/lemon_4,un limon amarill +cucumber/cucumber_4,un pepin +lime/lime_4,un limon verd +cuboid/cuboid_1,paralelepiped amarill horizontal +triangle/triangle_1,triangul roj +lemon/lemon_2,limon amarill +orange/orange_4,limon amarill madur +cuboid/cuboid_1,tien una form rectangul y su color es amarill +triangle/triangle_1,tien una form rectangul y es de color roj +lemon/lemon_2,tien una form oval y es de color amarill su textur se not algo rugos +orange/orange_4,tien una form redond casi perfect y su color es naranj +cabbage/cabbage_2,un repoll purpur +eggplant/eggplant_4,una berenjen +cucumber/cucumber_1,un pepin +cabbage/cabbage_2,un repoll oscur +eggplant/eggplant_4,una berenjen +cucumber/cucumber_1,un pepin vist desd una de las punt +cylinder/cylinder_4,cilindr verd +cylinder/cylinder_4,cilindr verd +lime/lime_4,estructur vegetal de color verdos +orange/orange_3,frut redond de color de naranj +cylinder/cylinder_4,es un objet con form de cilindr de color verd +cylinder/cylinder_4,es un objet con form de cilindr de color verd +lime/lime_4,es un frut de color verd y aspect rugos +orange/orange_3,es un frut de color naranj esfer y aspect rugos +cuboid/cuboid_4,un poliedr azul +carrot/carrot_2,una zanahori larg +lime/lime_4,un object verd simil a un limon verd +lime/lime_2,un object verd simil a un limon verd +lemon/lemon_2,un limon amarill +cuboid/cuboid_4,es una barr de color azul parec jabon +carrot/carrot_2,es una legumbr comest +lime/lime_4,es de color verdos parec molecul +lime/lime_2,parec una molecul de color verd +lemon/lemon_2,parec la part de afuer de una frut una conch +cuboid/cuboid_4,un prism rectangul azul +cylinder/cylinder_1,un cilindr amarill +lemon/lemon_1,un limon amarill +semicylinder/semicylinder_4,mit de un cilindr verd +cucumber/cucumber_4,un pepin +cuboid/cuboid_4,cub azul +cylinder/cylinder_1,cilindr amarill +lemon/lemon_1,limon amarill +semicylinder/semicylinder_4,medi cilindr verd +cucumber/cucumber_4,pepin verd +orange/orange_2,una manzan amarill +carrot/carrot_4,una zanahori +semicylinder/semicylinder_3,una reban amarill +cuboid/cuboid_4,un cub azul +orange/orange_2,redond acid amarill pequeñ +carrot/carrot_4,larg delg color naranj +semicylinder/semicylinder_3,amarill oval y de textur asper +cuboid/cuboid_4,rectangul azul y textur asper +lemon/lemon_4,un limon madur +cuboid/cuboid_2,un poliedr verd +arch/arch_1,un poliedr amarill con agujer +corn/corn_2,una mazorc vertical +tomato/tomato_2,un objet roj simil a un tomat +lemon/lemon_4,es un limon de color amarill +cuboid/cuboid_2,es un rectangul de color verd en form vertical +arch/arch_1,es un objet de color amarill intens en form vertical con form semi circul +corn/corn_2,es un maiz blanc +tomato/tomato_2,es un tomat rom +arch/arch_3,tien una form particul de un lad plan y del otro tien una curvatur +plum/plum_1,tien una textur lis y su form es redond casi perfect +arch/arch_4,arrib tien una curvatur muy notabl abaj es plan y su color es roj +arch/arch_3,es una piez verd que parec un puent volt a la izquierd +plum/plum_1,objet casi circul de color roj parec a una pelot +arch/arch_4,una piez roj rectangul per con una depresion en el centr parec a un puent invert +banana/banana_2,es una frut con form alarg su casc es amarill y por dentr es blanc +cabbage/cabbage_4,es una verdur de color mor con hoj su form es esfer +arch/arch_2,es un objet de color azul su textur es uniform y brillant +lime/lime_1,es una frut de color verd y form esfer +banana/banana_2,banan amarill +cabbage/cabbage_4,repoll mor +arch/arch_2,medi tub azul +lime/lime_1,limon verd +corn/corn_4,el objet es un chocl o maiz de color blanc algun gran estan mas oscur +triangle/triangle_4,el objet es un prism de bas triangul y es de color azul franci tien 5 car +carrot/carrot_2,el objet parec una zanahori de form algo irregul le falt la part de las hoj +orange/orange_2,el objet parec un naranj o tal vez un limon su color es mas bien amarill +corn/corn_4,es el frut de una plant es alarg amarill y compuest de multipl gran +triangle/triangle_4,objet con form de prism piramidal de color azul +carrot/carrot_2,es una hortaliz de color naranj y form alarg +orange/orange_2,es un frut de color amarill piel rugos +cabbage/cabbage_3,el objet tien form casi esfer y es de color gris oscur parec una plant de repoll por los surc visibl +arch/arch_3,es un paralelepiped de bas cuadr al que le han extraid una porcion de form cilindr en una de las car rectangular es de color verd pal +plum/plum_1,el objet tien form esfer practic parec ser un betabel por su color violet rojiz +orange/orange_2,el objet es un frut probabl una naranj o limon su color es entre amarill y naranj +potato/potato_4,esto es una pap sin pel tien form irregul un extrem es redond y el otro en punt +cabbage/cabbage_3,en el objet predomin el color mor per muy oscur tien una form redond casi perfect +arch/arch_3,tien una form algo peculi de un lad plan y del otro con una curvatur ademas de su color verd clar +plum/plum_1,cuent con una form redond su color es roj per oscur y su textur lis +orange/orange_2,su color es amarill clar tien form redond y su textur podr ser rugos +potato/potato_4,tien una form algo extrañ predomin su deform y su color marron clar +potato/potato_4,redond medi desform color crem y de textur asper +tomato/tomato_1,redond roj y pequeñ +potato/potato_1,redond mor y de textur asper +corn/corn_2,larg blanc jugos y con dient +carrot/carrot_1,larg delg de color naranj +potato/potato_4,una per +tomato/tomato_1,un jitomat roj +potato/potato_1,un jitomat roj +corn/corn_2,una mazorc de maiz +carrot/carrot_1,una zanahori +corn/corn_4,una espig de maiz +orange/orange_4,una naranj +carrot/carrot_3,una zanahori +plum/plum_2,una manzan +cube/cube_2,un cub verd +corn/corn_4,una mazorc de maiz +orange/orange_4,un limon amarill +carrot/carrot_3,una zanahori +plum/plum_2,una manzan roj +cube/cube_2,un cub verd +cucumber/cucumber_2,pepin verd +cube/cube_1,cub amarill +arch/arch_2,medi tub azul +cylinder/cylinder_4,cilindr verd +cabbage/cabbage_4,remolach madur +cucumber/cucumber_2,el objet es una verdur alarg es de color verd +cube/cube_1,el objet es de form cubic es de color amarill +arch/arch_2,el objet es de form irregul es de color azul +cylinder/cylinder_4,el objet es de form cilindr es de color verd +cabbage/cabbage_4,el objet es una verdur de much hoj es de color mor +triangle/triangle_2,poligon de tres lad y de color amarill +lemon/lemon_4,frut citric redond y de color naranj tipic de valenci +orange/orange_3,frut citric redond y de color naranj sirv par hac zum +lime/lime_1,objet con form de per de gom y de color verd +banana/banana_4,frut verd y con form de medi lun gust much a los mon +triangle/triangle_2,un prism triangul amarill +lemon/lemon_4,un limon amarill +orange/orange_3,una naranj +lime/lime_1,un limon verd +banana/banana_4,un platan +semicylinder/semicylinder_2,medi cilindr roj +corn/corn_3,mazorc de maiz blanc +cylinder/cylinder_3,cilindr azul +cucumber/cucumber_3,pepin verd +cylinder/cylinder_3,cilindr azul +semicylinder/semicylinder_2,figur geometr roj +corn/corn_3,objet llen de gran junt +cylinder/cylinder_3,cilindr azul +cucumber/cucumber_3,vegetal verd alarg +cylinder/cylinder_3,cilindr azul +cabbage/cabbage_4,es redond sec mor y marron al mism tiemp +potato/potato_4,pequeñ redond desform y sec +cube/cube_1,es cuadr amarill y resbal +cylinder/cylinder_1,es rectangul delg y amarill +cabbage/cabbage_4,es una verdur de color mor con hoj tien form esfer +potato/potato_4,es una hortaliz de color amarill y form irregul su piel es asper +cube/cube_1,es un objet con form de cub de color amarill opac +cylinder/cylinder_1,es un objet con form de cilindr de color amarill +cabbage/cabbage_1,col mor oscur +cucumber/cucumber_3,pepin verd +cylinder/cylinder_2,cilindr de color roj +tomato/tomato_3,tomat de bol roj +arch/arch_4,figur prismat rectangul roj con una hendidur central de form concav +cabbage/cabbage_1,es una verdur parec a la lechug con hoj de color mor +cucumber/cucumber_3,es una verdur de color verd textur rugos tien form alarg +cylinder/cylinder_2,es un objet de form cilindr y color roj +tomato/tomato_3,es un frut de color roj y form esfer +arch/arch_4,es un objet de color roj +lime/lime_1,circul verd de textur rugos +carrot/carrot_4,zanahor anaranj +cube/cube_3,cub azul +cuboid/cuboid_2,cub alarg de color verd +lime/lime_1,es una figur verd con aspect de hoj tien la textur de una frut o algo simili +carrot/carrot_4,es una hortaliz naranj que com los conej +cube/cube_3,es una figur con aspect de cub de color azul +cuboid/cuboid_2,es un prism de color verd opac +cabbage/cabbage_3,el objet es una verdur de much hoj es de color mor +triangle/triangle_1,el objet es de form triangul es de color roj +potato/potato_1,el objet es un frut de form redond es de color mor +orange/orange_1,el objet es un frut de form redond es de color amarill +orange/orange_3,el objet es un frut de form redond es de color amarill +cabbage/cabbage_3,repoll mor +triangle/triangle_1,triangul roj +potato/potato_1,manzan madur +orange/orange_1,limon amarill +orange/orange_3,limon amarill +tomato/tomato_4,es redond jugos y de color roj +arch/arch_1,es rectangul amarill y sec +triangle/triangle_3,es triangul verd y sec +cabbage/cabbage_2,es redond mor por fuer y blanc por dentr +corn/corn_4,es larg con dient y blanc +tomato/tomato_4,objet de color roj y form casi esfer +arch/arch_1,objet de color amarill limon con una hendidur central de form concav +triangle/triangle_3,objet de color verd semej a una ramp +cabbage/cabbage_2,es un repoll de color mor +corn/corn_4,elot de color blanc +semicylinder/semicylinder_3,barr de color amarill +orange/orange_4,frut circul de color naranj +cylinder/cylinder_1,cilindr amarill +banana/banana_3,frut con casc de color amarill +semicylinder/semicylinder_3,figur geometr de color amarill +semicylinder/semicylinder_3,un prism triangul amarill +orange/orange_4,una naranj +cylinder/cylinder_1,un cilindr amarill +banana/banana_3,un platan +semicylinder/semicylinder_3,mit de un cilindr amarill +cucumber/cucumber_3,es un objet alarg verd piens es una frut +cucumber/cucumber_1,parec una frut una lechoz verd +lemon/lemon_2,es la casc de una frut de una naranj +tomato/tomato_1,es una frut roj parec un tomat +cucumber/cucumber_3,un pepin larg +cucumber/cucumber_1,un pepin vertical y madur +lemon/lemon_2,un object amarill artificial +tomato/tomato_1,un tomat roj +carrot/carrot_1,raiz naranj comest +lime/lime_3,estructur vegetal verd +potato/potato_3,tubercul marron +carrot/carrot_2,raiz de color anaranj +carrot/carrot_1,larg color naranj soc y delg +lime/lime_3,verd redond pequeñ y acid +potato/potato_3,redond pequeñ desform de color crem +carrot/carrot_2,larg naranj y delg asper +cuboid/cuboid_4,un prism rectangul azul +tomato/tomato_3,un tomat +cabbage/cabbage_1,un repoll purpur +cylinder/cylinder_3,un cilindr azul +tomato/tomato_2,un tomat +cuboid/cuboid_4,paralelepiped azul +tomato/tomato_3,tomat madur +cabbage/cabbage_1,repoll mor +cylinder/cylinder_3,cilindr azul +tomato/tomato_2,tomat roj +triangle/triangle_1,triangul de color roj +cabbage/cabbage_2,repoll mor redond y grand +triangle/triangle_3,form de color verd +cucumber/cucumber_3,pepin verd +corn/corn_4,maiz blanc de tamañ grand +triangle/triangle_1,figur geometr roj +cabbage/cabbage_2,vegetal mor form por hoj +triangle/triangle_3,figur geometr de color verd +cucumber/cucumber_3,vegetal verd alarg +corn/corn_4,estructur llen de gran junt +cucumber/cucumber_4,tien una form larg se parec a una sand per mas pequeñ es de color verd +cylinder/cylinder_2,tien una form cilindr y es de color roj +semicylinder/semicylinder_1,arrib es redond y abaj plan es de color azul +corn/corn_1,tien una form larg con much puntit +eggplant/eggplant_2,una part es grues y la otra es delg color mor con detall en verd +cucumber/cucumber_4,pepin verd tamañ median delg +cylinder/cylinder_2,cilindr roj en posicion horizontal pequeñ +semicylinder/semicylinder_1,form semicircul de color azul +corn/corn_1,maiz blanc pequeñ +eggplant/eggplant_2,berenjen pequeñ de color mor y tall verd +tomato/tomato_1,un tomat +plum/plum_2,una manzan +eggplant/eggplant_3,una berenjen +cuboid/cuboid_3,un prism rectangul roj +tomato/tomato_1,es redond jugos y roj +plum/plum_2,es redond mor y sec +eggplant/eggplant_3,es alarg verd y sec +cuboid/cuboid_3,es redond rectangul y roj +lime/lime_3,es una frut de color verd y form esfer +carrot/carrot_4,es una hortaliz de color naranj y form alarg +triangle/triangle_4,figur con form de prism piramidal de color azul +cucumber/cucumber_2,es una hortaliz de form cilindr y verd su textur es rugos +carrot/carrot_1,es una hortaliz de color naranj y form alarg +lime/lime_3,limon verd +carrot/carrot_4,zanahori pal +triangle/triangle_4,triangul azul +cucumber/cucumber_2,pepin verd +carrot/carrot_1,zanahori pal +cucumber/cucumber_4,pepin verd +orange/orange_3,naranj madur +triangle/triangle_4,triangul azul +cuboid/cuboid_1,paralelepiped amarill horizontal +potato/potato_3,pap amarill limpi +cucumber/cucumber_4,es una lechoz color verd +orange/orange_3,es una frut una naranj +triangle/triangle_4,es un objet de color azul es una figur geometr +cuboid/cuboid_1,parec es una barr de mantequill +potato/potato_3,parec algo comest com un troz de poll +cuboid/cuboid_2,objet con form de prism de color verd +carrot/carrot_1,es una hortaliz de color naranj y form alarg +corn/corn_3,es el frut de una plant es alarg amarill y compuest de multipl gran +arch/arch_4,es un objet de color roj brillant +eggplant/eggplant_4,es una verdur de color mor piel suav y brillant +cuboid/cuboid_2,tien una form rectangul y es de color verd +carrot/carrot_1,tien una form larg y delgadit su color es opac +corn/corn_3,se ve bastant robust tien cient de punt es su cuerp +arch/arch_4,de un lad tien una curvatur y del otro otro es simplement plan +eggplant/eggplant_4,en un extrem es grues y en el otro algo delg es de color mor +carrot/carrot_4,raiz naranj +corn/corn_2,objet llen de gran junt +corn/corn_1,estructur vegetal llen de gran junt +cylinder/cylinder_1,cilindr amarill +orange/orange_2,figur geometr de color amarill +carrot/carrot_4,un objet de color carn de form tubul parec a un choriz +corn/corn_2,una mazorc de maiz pel y sin hoj de tamañ regul +corn/corn_1,una mazorc de maiz pel y sin hoj de tamañ regul +cylinder/cylinder_1,un prism cilindr de color amarill de un material plastic o brillant +orange/orange_2,un objet al parec una naranj de color amarill y piel brillant +cabbage/cabbage_4,es una verdur parec a la lechug con hoj de color mor +cucumber/cucumber_1,es una hortaliz de color verd por dentr es amarill +cabbage/cabbage_1,es una verdur parec a la lechug con hoj de color mor +carrot/carrot_1,verdur de color naranj alarg suel com los conej +banana/banana_2,es una frut de color amarill tien una casc que hay que sol quit par com +cabbage/cabbage_4,el objet es una verdur de much hoj es de color mor +cucumber/cucumber_1,no se pued ver la imag +cabbage/cabbage_1,no se pued ver la imag +carrot/carrot_1,el objet es de form alarg y color naranj parec ser una verdur +banana/banana_2,el objet es una frut larg y curv es de color amarill +arch/arch_2,es un objet de color azul +plum/plum_4,es una frut de color roj aspect suav y brillant +cucumber/cucumber_1,es una hortaliz de color verd aspect rugos +cube/cube_1,es un cub de color amarill +plum/plum_2,es una frut de color roj aspect brillant +arch/arch_2,una piez rectangul de color azul con un cort semicircul a un cost +plum/plum_4,fragment de una superfici simil a piel de manzan +cucumber/cucumber_1,pepin de color verd con textur rugos +cube/cube_1,cub de bord redond de color amarill +plum/plum_2,fragment de superfici de color roj +arch/arch_2,es un objet de color azul enform vertical con form semicircul +lemon/lemon_2,es un limon de color amarill con un pequeñ manch de descompuest +cuboid/cuboid_1,es un rectangul de color amarill fuert de form diagonal +banana/banana_2,es una banan +arch/arch_2,es azul rectangul y form de medi lun +lemon/lemon_2,es redond perqueñ jugos y amarill +cuboid/cuboid_1,es amarrill rectangul resbal y larg +banana/banana_2,es larg amarill suav y delici +semicylinder/semicylinder_4,cilindr verd recort por la mit sobr el cual se apoy +carrot/carrot_3,con anaranj recubiet de piel anaranj +potato/potato_2,tubercul casi redond de fin piel +cucumber/cucumber_4,cilindr verd piel grues +semicylinder/semicylinder_4,tien una form peculi arrib redond y abaj cuadr su color es de color verd algo opac +carrot/carrot_3,tien una form larg y delg su color es naranj per opac +potato/potato_2,tien una form oval y color roj con pequeñ agujer en su cuerp +cucumber/cucumber_4,es larg y grues su color predomin es el verd +triangle/triangle_1,prism triangul de color roj +cylinder/cylinder_4,cilindr verd +potato/potato_4,objet color aren semej a una pap +cylinder/cylinder_4,cilindr de color verd +plum/plum_4,objet esfer color roj oscur +triangle/triangle_1,tien una form rectangul y es de color roj +cylinder/cylinder_4,tien form cilindr y es de color verd +potato/potato_4,cuent con una form oval y es de color marron clar con vari manch oscur +cylinder/cylinder_4,tien una form cilindr se not una textur lis y es de color verd +plum/plum_4,tien una form redond y su textur se not muy lis es de color roj +tomato/tomato_2,es un frut de color roj form esfer alarg +cabbage/cabbage_4,es una verdur de color mor con hoj +lemon/lemon_2,es un frut de color amarill su aspect es suav y uniform +cube/cube_2,es un objet con form de cub de color verd +plum/plum_1,es un frut de color roj mor piel brillant +tomato/tomato_2,tomat madur +cabbage/cabbage_4,repoll mor +lemon/lemon_2,limon amarill +cube/cube_2,cub verd +plum/plum_1,manzan madur +plum/plum_2,una manzan +triangle/triangle_2,un prism triangul amarill +banana/banana_3,un platan +lemon/lemon_1,un limon amarill +orange/orange_4,una naranj +plum/plum_2,fragment de una superfici simil a piel de manzan +triangle/triangle_2,objet en form de cuñ de color amarill +banana/banana_3,una banan o cambur madur +lemon/lemon_1,objet esfer de color amarill +orange/orange_4,una naranj madur +banana/banana_3,es un platan +cube/cube_1,es un cuadr de color amarill +arch/arch_2,es un pedaz de plastic de color azul cort en form de semicircul +tomato/tomato_2,es un tomat rom de color roj intens +banana/banana_3,larg amarill suav y delici +cube/cube_1,cuadr pequeñ amarill +arch/arch_2,rectangul form de medi lun encim azul +tomato/tomato_2,redond pequeñ rooj jugos +semicylinder/semicylinder_4,mit de un cilindr verd +orange/orange_1,una naranj +arch/arch_4,un prism rectangul roj con concav abert +lime/lime_3,un limon verd +semicylinder/semicylinder_4,medi tub horizontal +orange/orange_1,mandarin madur +arch/arch_4,medi tub roj +lime/lime_3,limon verd +cuboid/cuboid_3,un poliedr roj +carrot/carrot_2,una zanahori larg +cube/cube_3,un cub azul +lime/lime_1,un vegetal verd +orange/orange_1,una naranj madur +cuboid/cuboid_3,tien una form rectangul y es de color roj +carrot/carrot_2,tien una form larg y es muy delg su color es naranj per opac +cube/cube_3,tien una form cuadr y es de color azul oscur +lime/lime_1,se ve delic su textur es lis y es de color verd +orange/orange_1,tien una form redond predomin un color naranj +corn/corn_4,elot blanc con algun detall mas oscur +cucumber/cucumber_3,pepin verd +cube/cube_1,cub color amarill limon +cube/cube_3,cub color azul +corn/corn_4,aqu vem un chocl o maiz pel de color blanc se ve part del tall o marl +cucumber/cucumber_3,el objet es un pepin o tal vez un zucchini es de color verd oscur y de form cilindr +cube/cube_1,el objet es un cub de color amarill fuert +cube/cube_3,no se ven los bord del objet per parec ser un cub con arist redond su color es azul franci +eggplant/eggplant_3,es una berenjen caf en una bas blanc +arch/arch_4,es un pedaz de plastic roj cort de una form semicircul +lime/lime_1,algun frut de color verd com per o manzan +lemon/lemon_1,es un limon que esta madur y de color amarill intens +lemon/lemon_3,un limon con manch verd sobr un fond blanc y negr +eggplant/eggplant_3,una berenjen +arch/arch_4,es una especi de objet con form de circul dentr de un cuadr cort a la mit y con ciert profund +lime/lime_1,parec un limon +lemon/lemon_1,un limon +lemon/lemon_3,un limon +carrot/carrot_1,zanahori pal +lemon/lemon_1,limon amarill +cuboid/cuboid_4,paralelepiped azul horizontal +cylinder/cylinder_3,cilindr azul vertical +carrot/carrot_1,es un objet de form irregul es de color crem +lemon/lemon_1,es un objet de color amarill tien una pequeñ part blanc en la part de arrib +cuboid/cuboid_4,es un objet recubiert con material de color azul el objet es un cub +cylinder/cylinder_3,el objet es de form cilindr es de color azul +corn/corn_3,mazorc de maiz blanc +semicylinder/semicylinder_2,medi tub roj +semicylinder/semicylinder_1,medi tub azul +corn/corn_1,mazorc de maiz blanc +tomato/tomato_2,tomat roj +corn/corn_3,una espig de maiz +semicylinder/semicylinder_2,mit de un cilindr roj +semicylinder/semicylinder_1,mit de un cilindr azul +corn/corn_1,una espig de maiz +tomato/tomato_2,un tomat +potato/potato_2,frut con un pequeñ hoy al centr es color naranj obscur casi caf y aterciopel +cucumber/cucumber_3,es un vegetal larg y verd +plum/plum_3,objet redond de color roj profund lleg a mor +plum/plum_4,objet redond de un color entre naranj y roj +cabbage/cabbage_2,vegetal verd obscur redond y cubiert por una hoj rugos +potato/potato_2,redond pequeñ asper y de color marron +cucumber/cucumber_3,larg grues verd y espin en la part de afuer +plum/plum_3,redond median color mor y brillos por fuer +plum/plum_4,redond medi color mor clar y pequeñ +cabbage/cabbage_2,redond grand verd y asper +tomato/tomato_4,verdur lis y roj con pulp y semill se emple en las ensal +orange/orange_4,frut citric redond y de color naranj se hac zum +lemon/lemon_2,frut amarill y muy acid sirv par hac zum +cube/cube_3,poligon azul de seis car +triangle/triangle_4,figur de tres lad y de color azul +tomato/tomato_4,es el frut de una plant es de color roj y tien form esfer +orange/orange_4,es el frut de un arbol de color naranj y form esfer +lemon/lemon_2,es el frut de un arbol de color amarill su sabor es amarg +cube/cube_3,es un objet con form de cub azul +triangle/triangle_4,es un objet con form piramidal com la porcion de una tart de color azul +semicylinder/semicylinder_2,reban roj +cube/cube_2,cub verd +triangle/triangle_2,triangul amarill +semicylinder/semicylinder_2,es un objet de color roj intens con una form redond +cube/cube_2,es un cuadr de color verd +triangle/triangle_2,es un objet de color amarill en form triangul +cabbage/cabbage_4,el objet es una verdur de much hoj es de color mor +lime/lime_3,el objet es de color verd aparent ser un tip de frut +potato/potato_1,el objet es de form redond es de color roj oscur +triangle/triangle_2,el objet es de color amarill es de form triangul com una porcion de tort +lime/lime_2,el objet es de color verd aparent ser una frut +cabbage/cabbage_4,es una verdur de color mor con hoj +lime/lime_3,es un frut de color verd y piel rugos +potato/potato_1,es una frut o verdur de color marron form esfer +triangle/triangle_2,es un objet con form de prism piramidal de color amarill +lime/lime_2,es un frut de color verd y piel rugos +cube/cube_4,cub roj +cuboid/cuboid_4,barr azul +cube/cube_3,cub azul +semicylinder/semicylinder_4,figur geometr verd +cucumber/cucumber_4,vegetal verd alarg +cube/cube_4,es cuadr pequeñ y roj +cuboid/cuboid_4,es rectangul azul y larg +cube/cube_3,es cuadr pequeñ y azul +semicylinder/semicylinder_4,es rectangul con las esquin oval y verd +cucumber/cucumber_4,es larg verd con espin y casc dur +cylinder/cylinder_2,un prism cilindr de color roj de plastic u otro material brillant +eggplant/eggplant_4,una berenjen de tamañ regul del tipic color entre negr y mor y piel brillant +arch/arch_4,una piez o mold de un material plastic de color roj con una bas cuadrangul y una entrad semicircul en su part central +cuboid/cuboid_1,un prism rectangul de color amarill de plastic u otro material brillant +cuboid/cuboid_3,un prism rectangul de color roj de un material brillant parec al plastic +cylinder/cylinder_2,cilindr roj +eggplant/eggplant_4,berenjen negr +arch/arch_4,ramp roj vertical +cuboid/cuboid_1,paralelepiped amarill horizontal +cuboid/cuboid_3,paralelepiped roj horizontal +triangle/triangle_3,figur geometr verd +semicylinder/semicylinder_2,figur geometr roj +lime/lime_4,estructur vegetal verd +orange/orange_3,frut de color naranj +arch/arch_1,ramp amarill +triangle/triangle_3,el objet es de color verd es de form triangul +semicylinder/semicylinder_2,el objet tien form de arco es de color roj +lime/lime_4,el objet es de color verd parec ser algñun tip de frut +orange/orange_3,el objet es una frut es de color amarill +arch/arch_1,el objet es de form irregul con un huec en la part central es de color amarill +banana/banana_4,un platan horizontal +triangle/triangle_3,un poliedr verd +cube/cube_1,un cub amarill +potato/potato_2,un vegetal roj +lime/lime_4,un vegetal verd +banana/banana_4,un platan +triangle/triangle_3,un prism triangul verd +cube/cube_1,un cub amarill +potato/potato_2,un tomat +lime/lime_4,un limon verd +carrot/carrot_2,zanahor larg y delg color naranj +cucumber/cucumber_4,pepin verd larg de tamañ median +lime/lime_1,limon verd +tomato/tomato_3,tomat madur color roj con coron de hoj +semicylinder/semicylinder_3,form amarill semicircul +carrot/carrot_2,zanahori pal +cucumber/cucumber_4,pepin madur +lime/lime_1,limon verd +tomato/tomato_3,tomat madur +semicylinder/semicylinder_3,medi tub amarill +cube/cube_4,cub de color roj +lemon/lemon_1,limon amarill +tomato/tomato_2,esfer roj +cabbage/cabbage_4,repoll mor de tamañ median +cube/cube_4,cub roj +cube/cube_4,figur de color rojiz parec un cub +lemon/lemon_1,es una frut de color amarill es un limon +tomato/tomato_2,es de color roj parec una frut parec un tomat +cabbage/cabbage_4,es una verdur color mor parec un repoll +cube/cube_4,figur color rojiz figur geometr +triangle/triangle_2,tien una form triangul y es de color amarill +lemon/lemon_4,tien una form oval y es de color amarill se not lis su textur +cylinder/cylinder_4,tien una form cilindr y es de color verd +tomato/tomato_4,tien una form redond se ve de textur lis su color es roj y tien detall en verd +triangle/triangle_2,figur geometr amarill +lemon/lemon_4,frut amarill redond +cylinder/cylinder_4,cilindr verd +tomato/tomato_4,frut roj redond +eggplant/eggplant_1,larg rellen y de color verd +banana/banana_2,larg amarill suav +cube/cube_2,cuadr de color verd y de textur suv +semicylinder/semicylinder_2,oval de color roj y de textur suav +eggplant/eggplant_1,es una verdur mor y tien form larg +banana/banana_2,es una frut de color amarill alarg y se llam banan +cube/cube_2,es una figur geometr de color verd +semicylinder/semicylinder_2,es una figur geometr de color roj +semicylinder/semicylinder_4,seccion de un objet cilindr de color verd +arch/arch_3,un objet rectangul de color verd con un cort semicircul a un cost +lime/lime_3,fragment de una superfici simil a piel de limon +arch/arch_2,un objet rectangul de color azul con un cort semicircul a un cost +corn/corn_1,una mazorc de maiz blanc +semicylinder/semicylinder_4,un object verd +arch/arch_3,un poliedr verd con agujer +lime/lime_3,un object simil a un limon verd +arch/arch_2,un poliedr azul con agujer +corn/corn_1,una mazorc +corn/corn_3,una espig de maiz +triangle/triangle_2,un prism triangul amarill +triangle/triangle_1,un prism triangul roj +lemon/lemon_2,un limon amarill +potato/potato_3,una patat +corn/corn_3,una mazorc de maiz +triangle/triangle_2,una ramp verd +triangle/triangle_1,una reban roj +lemon/lemon_2,una manzan amarill +potato/potato_3,una per +corn/corn_2,el objet es una verdur alarg compuest por dient es de color blanc +cylinder/cylinder_3,el objet es de form cilindr es de color azul +carrot/carrot_3,el objet es una verdur alarg es de color naranj +cucumber/cucumber_3,el objet es una verdur de form alarg es de color verd +corn/corn_2,maiz blanc +cylinder/cylinder_3,cilindr azul en posicion horizontal +carrot/carrot_3,zanahor de color anaranj larg y delg +cucumber/cucumber_3,pepin grand de color verd +arch/arch_4,figur de color roj +cuboid/cuboid_4,objet con form de prism de color azul +lemon/lemon_2,es un frut de color amarill piel rugos tien form esfer +carrot/carrot_2,es una hortaliz de color naranj y form alarg +arch/arch_4,form de color roj +cuboid/cuboid_4,tac de color azul en posicion horizontal +lemon/lemon_2,limon amarill +carrot/carrot_2,form tubul color anaranj +plum/plum_2,remolach +corn/corn_2,mazorc de maiz blanc +orange/orange_2,limon amarill +banana/banana_4,banan amarill acost +plum/plum_1,remolach madur +plum/plum_2,un vegetal roj simil a una manzan +corn/corn_2,una mazorc vertical +orange/orange_2,un objet amarill simil a un limon +banana/banana_4,un platan con rasguñ +plum/plum_1,un frut roj simil a una manzan +cuboid/cuboid_4,un prism rectangul azul +cabbage/cabbage_1,un repoll purpur +banana/banana_1,un platan +orange/orange_3,una naranj +cylinder/cylinder_1,un cilindr amarill +cuboid/cuboid_4,es un rectangul azul que se encuentr vertical +cabbage/cabbage_1,es un repoll de color mor sobr una bas gris +banana/banana_1,es una banan de color amarill +orange/orange_3,es una naranj +cylinder/cylinder_1,es un objet de color amarill en form vertical +lime/lime_1,el objet es una frut de color verd parec de form redond +corn/corn_3,el objet es una verdur compuest por much dient es de color blanc +corn/corn_1,el objet es una verdur compuest por much dient es de color blanc +lemon/lemon_1,el objet es de color amarill tien un sector de otro color en la part superior +plum/plum_2,el objet es de color rojomor parec ser un frut +lime/lime_1,un vegetal verd +corn/corn_3,una mazorc horizontal +corn/corn_1,una mazorc vertical +lemon/lemon_1,un vegetal simil a un limon con la marc +plum/plum_2,un objet roj +arch/arch_3,tien una form algo extrañ abaj es plan y arrib tien una curvatur es de color verd clar +cucumber/cucumber_2,tien una form parec a la de una sand per mas pequeñ su color es verd +triangle/triangle_1,tien una form triangul es de color roj y su textur se not lis +eggplant/eggplant_1,tien una form algo particul oval per con part mas grand que otras su color es de mor oscur +banana/banana_4,tien una form con una evident curvatur se not robust y es de color amarill con ton de verd +arch/arch_3,ramp de color verd +cucumber/cucumber_2,pepin verd larg de tamañ median +triangle/triangle_1,troz de ques color roj +eggplant/eggplant_1,berenjen pequeñ color negr y tall verd +banana/banana_4,platan verd tamañ median +semicylinder/semicylinder_4,es un objet de color verd con aspect de gom la part inferior es curv +potato/potato_4,es una hortaliz de color amarill nac en la tierr +eggplant/eggplant_3,es una plant comest de color mor su textur es brillant +eggplant/eggplant_1,es una plant comest de color mor su textur es brillant +semicylinder/semicylinder_4,mit de cilindr verd cort longitudinal +potato/potato_4,objet de color aren parec a una pap +eggplant/eggplant_3,berenjen de color mor +eggplant/eggplant_1,berenjen color mor +potato/potato_2,el objet parec ser una frut es de color roj oscur +banana/banana_3,el objet es una frut de form alarg y curv es de color amarill +cylinder/cylinder_3,el objet es de form cilindr es de color azul +cuboid/cuboid_3,el objet es de form cubic es de color roj +cabbage/cabbage_3,el objet es una verdur de much hoj es de color mor +potato/potato_2,un tomat +banana/banana_3,un platan +cylinder/cylinder_3,un cilindr azul +cuboid/cuboid_3,un prism rectangul roj +cabbage/cabbage_3,un repoll purpur +arch/arch_1,medi tub amarill +cucumber/cucumber_2,pepin madur +potato/potato_1,manzan madur +arch/arch_1,amarill de form rectangul con una medi lun en el centr +cucumber/cucumber_2,verd larg de textur asper +potato/potato_1,redond mor y pequeñ +cube/cube_4,un cub roj +carrot/carrot_3,una zanahori +corn/corn_4,una espig de maiz +corn/corn_2,una espig de maiz +cube/cube_3,un cub azul +cube/cube_4,cuandr con un tamañ median roj y de textur asper +carrot/carrot_3,larg delag y sec +corn/corn_4,larg jugos blanc y grues +corn/corn_2,larg fin blanc y jugos +cube/cube_3,cuadr azul y pequeñ +plum/plum_3,tien una form redond y es de color roj +arch/arch_3,tien una form muy particul de un lad plan y del otro curv +cabbage/cabbage_1,tien una form algo redond es de color mor y tien detall blanc +lime/lime_3,tien una form oval se not lis y su color es verd +cucumber/cucumber_4,se parec a una sand per mas pequeñ su color es verd +plum/plum_3,manzan roj +arch/arch_3,medi tub verd +cabbage/cabbage_1,repoll mor +lime/lime_3,limon verd +cucumber/cucumber_4,pepin verd +corn/corn_1,una espig de maiz +semicylinder/semicylinder_4,mit de un cilindr verd +cucumber/cucumber_4,un pepin +cylinder/cylinder_2,un cilindr roj +cube/cube_4,un cub roj +corn/corn_1,chocl blanc con algun gran mas oscur +semicylinder/semicylinder_4,cilindr verd cort a la mit +cucumber/cucumber_4,pepin de color verd +cylinder/cylinder_2,cilindr de color roj +cube/cube_4,cub roj +cucumber/cucumber_1,pepin verd +banana/banana_1,banan de color amarill clar +plum/plum_1,tomat roj +orange/orange_4,naraj casi madur +cylinder/cylinder_1,cilindr amarill horizontal +cucumber/cucumber_1,un pepin +banana/banana_1,un platan +plum/plum_1,una manzan +orange/orange_4,una naranj +cylinder/cylinder_1,un cilindr amarill +arch/arch_2,ramp azul +cuboid/cuboid_2,barr verd +cube/cube_3,cub azul +carrot/carrot_4,raiz de color anaranj +arch/arch_2,figur prismat rectangul de color azul medi con una hendidur concav en el centr +cuboid/cuboid_2,prism rectangul verd +cube/cube_3,cub azul +carrot/carrot_4,zanahori de color naranj clar +cucumber/cucumber_1,vegetal verd alarg +cabbage/cabbage_4,vegetal mor form por hoj +corn/corn_4,estructur vegetal llen de gran junt +cuboid/cuboid_4,barr azul +cucumber/cucumber_1,pepin verd tamañ median +cabbage/cabbage_4,repoll mor redond tamañ median +corn/corn_4,maiz blanc sin desgran tamañ grand +cuboid/cuboid_4,tac de color azul en posicion vertical +semicylinder/semicylinder_1,es de color azul arrib es redond y abaj es plan +cabbage/cabbage_1,tien una form redond casi perfect se ve robust y es de color mor +lime/lime_4,se ve delic tien una form redond con ciert variacion es de color verd +eggplant/eggplant_3,en un lad es grand y grues y en el otro un poc delg es de color mor +semicylinder/semicylinder_1,medi tub azul +cabbage/cabbage_1,repoll mor +lime/lime_4,limon verd +eggplant/eggplant_3,berengen mor +lime/lime_3,limon verd +cylinder/cylinder_2,cilindr roj horizontal +triangle/triangle_4,triangul azul en posicion vertical +cylinder/cylinder_1,cilindr amarill de medi lad +lime/lime_3,tien una form redond y es de color verd +cylinder/cylinder_2,tien una form clindric y es de color roj +triangle/triangle_4,tien una form triangul y es de color azul +cylinder/cylinder_1,tien una form amarill con form cilindr +orange/orange_2,tien una form redond y es de color amarill +cucumber/cucumber_1,tien una form larg grues y de color verd +potato/potato_3,se ve muy deform su color parec marron clar +orange/orange_2,una naranj +cucumber/cucumber_1,un pepin +potato/potato_3,una patat +eggplant/eggplant_1,una berenjen +arch/arch_3,un prism rectangul verd con concav abiert +triangle/triangle_4,un prism triangul azul +lime/lime_1,un limon verd +tomato/tomato_4,un tomat +eggplant/eggplant_1,una berenjen +arch/arch_3,una ramp verd +triangle/triangle_4,una ramp azul +lime/lime_1,un limon +tomato/tomato_4,un jitomat anaranj +lemon/lemon_3,un limon amarill +carrot/carrot_3,una zanahori +eggplant/eggplant_1,una berenjen +triangle/triangle_2,un prism triangul amarill +banana/banana_3,un platan +lemon/lemon_3,limon amarill +carrot/carrot_3,zanahori pal +eggplant/eggplant_1,berengen mor +triangle/triangle_2,triangul amarill +banana/banana_3,banan amarill +lemon/lemon_3,un limon amarill +plum/plum_1,una manzan +arch/arch_3,un prism rectangul verd con concav +eggplant/eggplant_2,una berenjen +lemon/lemon_3,un object amarill simil a un limon +plum/plum_1,una frut roj simil a una manzan +arch/arch_3,un poliedr verd agujer +eggplant/eggplant_2,una berenjen horizontal +arch/arch_2,ramp de color azul +tomato/tomato_4,tomat sin madur complet con coron de hoj y una part descompuest +eggplant/eggplant_1,berenjen median color mor con tall verd +plum/plum_1,esfer vinotint +cube/cube_1,cub amarill +arch/arch_2,medi tub azul +tomato/tomato_4,tomat casi madur +eggplant/eggplant_1,berengen mor +plum/plum_1,manzan roj +cube/cube_1,cub amarill +lemon/lemon_1,un objet esfer de color amarill +lime/lime_2,fragment de una superfici simil a piel de limon +semicylinder/semicylinder_1,seccion de un objet cilindr de color azul +carrot/carrot_1,una zanahori +lemon/lemon_1,un limon amarill +lime/lime_2,un limon verd +semicylinder/semicylinder_1,mit de un cilindr azul +carrot/carrot_1,una zanahori +potato/potato_2,un object roj +carrot/carrot_4,una zanahori larg +corn/corn_3,una mazorc +lime/lime_3,un obect vierd +potato/potato_2,es una patat de color caf de tamañ median +carrot/carrot_4,es una zanahori muy larg de color ros +corn/corn_3,maiz blanc sobr una bas de color gris +lime/lime_3,es una frut de color verd manzan o per +lime/lime_2,es una frut de color verd y form esfer +potato/potato_2,es un objet de form cilindr y color marron rojiz +orange/orange_3,es una frut de color naranj tien form esfer y piel rugos +carrot/carrot_4,es una hortaliz de color naranj y form alarg +arch/arch_2,es una figur de color azul tien form de prism no complet +lime/lime_2,es un limon objet verd de textur rugos +potato/potato_2,al parec es una pap tubercul +orange/orange_3,es una naranj objet redond de color naranj +carrot/carrot_4,es una zanahori objet larg de color naranj +arch/arch_2,objet rectangul con un arco que lo traspas figur geometr color azul +banana/banana_2,un platan +cuboid/cuboid_3,un cub roj +lime/lime_2,un limon verd +carrot/carrot_2,una zanahori +lime/lime_1,un limon verd +banana/banana_2,es larg amarill suav y delici +cuboid/cuboid_3,es rectangul rojosec +lime/lime_2,es redond verd brilant y asper +carrot/carrot_2,es larg delg naranj y sec +lime/lime_1,es redond desform verd brillos +cucumber/cucumber_1,es un pepin de color verd +plum/plum_2,es un objet mor podri ser repoll mor +cabbage/cabbage_1,es un repoll de color oscur sobr una bas de color grisl +lime/lime_3,es algun frut o vegetal de color verd +arch/arch_2,es un objet de color azul en form de semicircul +cucumber/cucumber_1,un pepin madur +plum/plum_2,un object roj +cabbage/cabbage_1,un vegetal con hoj +lime/lime_3,un vegetal verd +arch/arch_2,un poliedr azul con agujer +carrot/carrot_3,tien una form algo larg y delg su color es naranj opac +triangle/triangle_4,tien form triangul y se le not una textur algo lis su color es azul +tomato/tomato_4,tien una form redond y color naranj y roj +triangle/triangle_1,es de color roj oscur y tien una form triangul +banana/banana_1,se ve algo larg y es amarill se le not ciert curvatur +carrot/carrot_3,una zanahori +triangle/triangle_4,un prism triangul azul +tomato/tomato_4,un tomat +triangle/triangle_1,un prism triangul roj +banana/banana_1,un platan +cuboid/cuboid_2,paralelepiped verd +cucumber/cucumber_1,pepin madur +lemon/lemon_3,limon amarill +cylinder/cylinder_3,cilindr azul +carrot/carrot_3,zanahori pal +cuboid/cuboid_2,rectangul verd y con una textur suav +cucumber/cucumber_1,larg verd y de textur asper +lemon/lemon_3,redond color amarill y acid +cylinder/cylinder_3,redond median larg y de color azul +carrot/carrot_3,larg de color naranj y de textur asper +cylinder/cylinder_4,es un cilindr de color verd en form horizontal +cabbage/cabbage_3,repoll mor en una mes +cylinder/cylinder_4,cilindr de color verd en form vertical +cylinder/cylinder_4,un cilindr verd +cabbage/cabbage_3,un repoll purpur +cylinder/cylinder_4,un cilindr verd +eggplant/eggplant_4,una berenjen +cylinder/cylinder_3,un cilindr azul +eggplant/eggplant_3,una berenjen +cucumber/cucumber_3,un pepin +eggplant/eggplant_4,es una verdur de color mor piel suav y brillant +cylinder/cylinder_3,es una figur con form de cilindr de color azul +eggplant/eggplant_3,es una verdur de color mor piel suav y brillant +cucumber/cucumber_3,es una hortaliz de form cilindr y verd su textur es rugos +potato/potato_3,es una hortaliz de color amarill y form irregul +orange/orange_1,es una frut de color naranj y piel brillant y suav +eggplant/eggplant_4,es una verdur de color mor piel suav y brillant +cucumber/cucumber_3,es una hortaliz de form cilindr y verd su textur es rugos +potato/potato_3,pap amarill limpi +orange/orange_1,mandarin madur +eggplant/eggplant_4,berengen mor +cucumber/cucumber_3,pepin verd +lime/lime_3,tien una form particul redond casi perfect de color verd y su textur lis +cabbage/cabbage_1,tien una form oval y es de color mor se not que tien vari cap +cabbage/cabbage_3,tien una form redond oval tien vari cap y su color es mor +cucumber/cucumber_1,tien una form larg y es grues su color predomin es el verd +triangle/triangle_2,tien una form triangul y es de color amarill +lime/lime_3,objet circul verd clar +cabbage/cabbage_1,objet oval de color violet +cabbage/cabbage_3,objet oval de color violet +cucumber/cucumber_1,es un pepin +triangle/triangle_2,objet triangul de color amarill +orange/orange_3,es una frut de color naranj tien form esfer y piel rugos +cabbage/cabbage_2,es una verdur de color mor con hoj tien form esfer +semicylinder/semicylinder_2,es una figur de color roj tien form de cilindr part a la mit +tomato/tomato_1,es un frut de color roj y form esfer +orange/orange_3,una naranj +cabbage/cabbage_2,un repoll purpur +semicylinder/semicylinder_2,mit de un cilindr roj +tomato/tomato_1,un tomat +carrot/carrot_1,zanahori de gran longitud y extrem delgadez +cuboid/cuboid_3,prism rectangul color +cuboid/cuboid_2,prism rectangul de color verd +eggplant/eggplant_1,berenjen mor +carrot/carrot_1,la yuc es marron y dde gran longitud la yucc es suav +cuboid/cuboid_3,el objet es roj y cubic la longitud del mism es variabl +cuboid/cuboid_2,el objet es verd y esta en posicion erect y en form de barr +eggplant/eggplant_1,la berenjen es salud y algun vec mor +semicylinder/semicylinder_4,un object verd +cabbage/cabbage_4,un vegetal con hoj +plum/plum_1,un object roj simil a una manzan +triangle/triangle_1,un poliedr roj +semicylinder/semicylinder_1,un object virtual azul +semicylinder/semicylinder_4,es una figur de color verd tien form de cilindr part a la mit +cabbage/cabbage_4,es una verdur de color mor con hoj +plum/plum_1,es una frut de color roj mor y form esfer textur suav y brillant +triangle/triangle_1,figur con form de prism piramidal de color roj +semicylinder/semicylinder_1,es una figur de color azul tien form de cilindr part a la mit +cuboid/cuboid_4,tac de color azul en posicion horizontal +potato/potato_3,form de color marron clar +eggplant/eggplant_2,berenjen pequeñ color negr y tall verd +lime/lime_4,limon verd textur rugos +arch/arch_3,form de color verd clar +cuboid/cuboid_4,rectangul azul sec +potato/potato_3,larg medi desform crem +eggplant/eggplant_2,verd larg llen y asper +lime/lime_4,verd redond agri +arch/arch_3,rectangul verd clar form de medi lun y sec +cube/cube_2,un cub verd +lemon/lemon_3,un limon amarill +arch/arch_3,un prism rectangul verd con concav abert +cylinder/cylinder_2,un cilindr roj +cube/cube_2,es un cub de color verd pastel parec un juguet +lemon/lemon_3,se trat de un limon en su punt list par usar en la cocin +arch/arch_3,parec la tipic plataform par que jueg los skaters es de color verd +cylinder/cylinder_2,el objet es un cilindr de color rojiz parec un juguet de bebes +cube/cube_4,tien una form cuadr y es de color roj +arch/arch_4,tien una form plan abaj y arrib tien una curv es de color roj +corn/corn_3,tien una form larg y tambi tien ciert protuber por tod su cuerp +plum/plum_2,tien una form redond y es de color roj +semicylinder/semicylinder_1,es de color azul y arrib es redond y abaj plan +cube/cube_4,un cub roj +arch/arch_4,un prism rectangul roj con concav abiert +corn/corn_3,una espig de maiz +plum/plum_2,una manzan +semicylinder/semicylinder_1,mit de un cilindr azul +banana/banana_2,amarill larg delg y suav +plum/plum_4,redond color mor y asper +semicylinder/semicylinder_3,amarill cuadr resbal +arch/arch_3,verd rectangul con form de medi lun +banana/banana_2,frut con conch amarill en form de fal +plum/plum_4,frut redond mor +semicylinder/semicylinder_3,figur geometr amarill +arch/arch_3,ramp verd +cucumber/cucumber_1,vegetal verd alarg +semicylinder/semicylinder_2,figur geometr roj +triangle/triangle_4,figur geometr de color azul +eggplant/eggplant_2,vegetal mor +banana/banana_3,frut amarill +cucumber/cucumber_1,es un pepin de color verd en form horizontal +semicylinder/semicylinder_2,es un objet de color roj con form redond +triangle/triangle_4,es un objet de color azul con form de triangul invert en form horizontal +eggplant/eggplant_2,es una berenje de color verd con hoj verd musg +banana/banana_3,es una banan +corn/corn_2,una espig de maiz +corn/corn_2,una espig de maiz +cucumber/cucumber_3,un pepin +cabbage/cabbage_4,un repoll purpur +corn/corn_2,tien una form larg per con extrañ protuber a lo larg de tod su cuerp +corn/corn_2,tien una form peculi y su textur tambien se ve bastant pal +cucumber/cucumber_3,parec una sand per un poc mas larg y mas pequeñ +cabbage/cabbage_4,tien una form redond de color mor y parec que tien vari cap +triangle/triangle_3,poligon de tres lad es verd +cuboid/cuboid_1,tien form parec a una barr de mantequill es amarill +cucumber/cucumber_3,es una verdur de form de cilindr verd y alarg es simil al pepin +corn/corn_4,es un frut amarill alarg y con gran peg de ahi sal las palomit +arch/arch_2,objet de form semiesfer y de color azul recuerd a una ramp de skat +triangle/triangle_3,es triangul verd y sec +cuboid/cuboid_1,es rectangul amarril y jugos +cucumber/cucumber_3,es alarg verd y con espin +corn/corn_4,es larg sec blanc y con dient +arch/arch_2,es rectangul azul y sec +cylinder/cylinder_3,cilindr azul +cabbage/cabbage_2,vegetal mor form por hoj +triangle/triangle_1,form geometr en 3 dimension roj +cabbage/cabbage_4,vegetal mor form por hoj +lemon/lemon_1,frut redond de color de amarill +cylinder/cylinder_3,es un cilindr opac de color azul tien aspect de vel +cabbage/cabbage_2,es una verdur con aspect de pelot compuest de hoj de color mor oscur +triangle/triangle_1,se asemej a una porcion de tart de color roj +cabbage/cabbage_4,es una verdur con aspect de pelot compuest de hoj de color mor simil a la lechug +lemon/lemon_1,es un objet de color amarill parec a un limon +tomato/tomato_1,frut circul de color roj +potato/potato_1,frut redond mor +potato/potato_1,frut mor redond +cuboid/cuboid_3,barr roj +lime/lime_2,estructur vegetal verd +tomato/tomato_1,un tomat +potato/potato_1,una manzan +potato/potato_1,una manzan +cuboid/cuboid_3,un prism rectangul roj +lime/lime_2,un limon verd +orange/orange_1,tien una form oval y su color es interes naranj con vari detall oscur +corn/corn_3,tien una form larg y se not que tien unas especi de puntit que sobresal +banana/banana_1,tien una form larg de color amarill y una notabl curvatur +lemon/lemon_4,tien una form muy oval y predomin un color amarill oscur +cabbage/cabbage_2,tien una form redond casi perfect es de color mor con detall en blanc +orange/orange_1,mandarin madur +corn/corn_3,mazorc de maiz blanc +banana/banana_1,banan madur +lemon/lemon_4,limon amarill +cabbage/cabbage_2,repoll mor +orange/orange_4,frut circul de color amarill +carrot/carrot_4,raiz naranj comest +lime/lime_1,frut circul verd +lime/lime_2,posibl circul verd +orange/orange_4,es una frut de color naranj de aspect rugos y form esfer +carrot/carrot_4,es una hortaliz de color naranj alarg +lime/lime_1,es un frut de color verd form esfer +lime/lime_2,es un objet de color verd brillant +orange/orange_1,redond marron y de textur asper +triangle/triangle_2,amarill triangul y de textur suav +lime/lime_2,pequeñ de color verd y acid +cabbage/cabbage_3,grand de color marron oscur y textur asper +plum/plum_3,median redond y brillos por fuer +orange/orange_1,una naranj madur +triangle/triangle_2,un poliedr amarill +lime/lime_2,un vegetal verd simil a un limon +cabbage/cabbage_3,un vegetal con hoj verd oscur +plum/plum_3,un vegetal roj simil a una manzan +cylinder/cylinder_1,objet con form de prism de color amarill +eggplant/eggplant_3,es una verdur de color mor piel suav y brillant +corn/corn_2,es el frut de una plant es alarg amarill y compuest de multipl gran +triangle/triangle_2,figur con form de prism piramidal de color amarill +cabbage/cabbage_2,es una verdur de color mor con hoj tien form esfer +cylinder/cylinder_1,objet cilindr de color amarill +eggplant/eggplant_3,una berenjen madur +corn/corn_2,una mazorc de maiz blanc +triangle/triangle_2,fragment de una superfici de color amarill +cabbage/cabbage_2,un repoll de color mor +cylinder/cylinder_3,cilindr azul +corn/corn_4,objet llen de gran junt +carrot/carrot_2,raiz comest de color naranj +cuboid/cuboid_2,barr de color verdos +cylinder/cylinder_3,un cilindr azul +corn/corn_4,una mazorc horizontal +carrot/carrot_2,una zanahori larg vertical +cuboid/cuboid_2,un poliedr verd +cuboid/cuboid_1,es de color amarill y tien una form rectangul +orange/orange_1,tien una form redond y es de color naranj +tomato/tomato_1,tien una form redond casi perfect y es de color roj +arch/arch_3,tien una form peculi de un lad plan y el otro tien una curv +cabbage/cabbage_4,tien una form muy redond per con ciert variacion tien color mor y se not que tien vari cap +cuboid/cuboid_1,un poliedr amarill +orange/orange_1,una naranj una frut +tomato/tomato_1,un object roj +arch/arch_3,un poliedr verd con agujer +cabbage/cabbage_4,un vegetal con hoj +semicylinder/semicylinder_1,un cilindr azul +arch/arch_1,un prism rectangul amarill con concav abiert +banana/banana_1,un platan +eggplant/eggplant_1,una berenjen +cylinder/cylinder_1,un cilindr amarill +semicylinder/semicylinder_1,la part de arrib es plan y la de abaj es redond su color es azul +arch/arch_1,tien form rar un lad curv y el otro plan ademas de su color amarill +banana/banana_1,tien una form curv mas o men larg y de color amarill +eggplant/eggplant_1,tien una form peculi una part grues y otra delg es de color mor oscur +cylinder/cylinder_1,tien form de cilindr su color es amarill +orange/orange_2,es una naranj +corn/corn_4,es un maiz blanc sobr una bas de color gris +cube/cube_2,es un cuadr de color verd oscur +orange/orange_2,es de color amarill y tien una form oval +corn/corn_4,tien una form larg y su textur es algo rar parec que tien much punt en su cuerp +cube/cube_2,tien form cuadr y es de color verd +potato/potato_4,una patat +cuboid/cuboid_3,un prism rectangul roj +cabbage/cabbage_2,un repoll purpur +lime/lime_2,un limon verd +carrot/carrot_4,una zanahori +potato/potato_4,tubercul de color marron se usa par hac la tortill español +cuboid/cuboid_3,de form de bar de mantequill y color roj +cabbage/cabbage_2,verdur de color mor redond y de piel fin +lime/lime_2,objet verd y de form esfer salv en la part inferior +carrot/carrot_4,hortaliz alarg y naranj le encant a los conej +carrot/carrot_2,una zanahori mal form +cube/cube_1,un cub de color amarill +carrot/carrot_4,una zanahori mal form +banana/banana_3,una banan o cambur madur +semicylinder/semicylinder_1,seccion de un objet cilindr de color azul +carrot/carrot_2,una zanahori vertical +cube/cube_1,un cub amarill +carrot/carrot_4,una zanahori larg vertical +banana/banana_3,un platan horizontal +semicylinder/semicylinder_1,un object azul +eggplant/eggplant_2,berenjen de color mor oscur +lime/lime_3,objet de color verd limon con form de foc lumin +lemon/lemon_3,objet que asemej a un limon amarill +tomato/tomato_4,tomat de form casi esfer y color roj +corn/corn_2,elot blanc +eggplant/eggplant_2,plant con form de huev y color mor por dentr es blanc y tien semill +lime/lime_3,objet con form de glob y de color verd +lemon/lemon_3,frut amarill y muy acid tien much vitamin c +tomato/tomato_4,verdur que se usa much en la ensal es redond y roj +corn/corn_2,es el frut de una plant alarg y llen de gran +corn/corn_2,maiz blanc semidesgran +cube/cube_2,cub verd pequeñ +lemon/lemon_4,limon amarill redond +cucumber/cucumber_2,pepin verd de gran tamañ +corn/corn_2,tien una form larg y much punt a lo larg de su cuerp opac +cube/cube_2,tien una form cuadr y es de color verd +lemon/lemon_4,tien una form redond per con lev deform +cucumber/cucumber_2,tien una form larg y es de color verd se asemej a una sand +potato/potato_3,pap amarill limpi +plum/plum_1,manzan madur +plum/plum_3,manzan madur +banana/banana_1,banan amarill +corn/corn_4,mazorc de maiz blanc +potato/potato_3,una pap amarill +plum/plum_1,un oject roj +plum/plum_3,un object roj oscur +banana/banana_1,un platan horizontal +corn/corn_4,una mazorc +cucumber/cucumber_1,un pepin +cylinder/cylinder_4,un cilindr verd +potato/potato_2,una patat +eggplant/eggplant_3,una berenjen +tomato/tomato_1,un tomat +cucumber/cucumber_1,un pepin larg +cylinder/cylinder_4,un cilindr verd +potato/potato_2,un vegetal roj +eggplant/eggplant_3,una berenjen madur +tomato/tomato_1,un tomat roj +eggplant/eggplant_2,vegetal mor +corn/corn_2,estructur vegetal llen de gran junt +plum/plum_4,vegetal redond mor +carrot/carrot_1,raiz de color anaranj +eggplant/eggplant_2,berengen mor +corn/corn_2,mazorc de maiz +plum/plum_4,manzan roj +carrot/carrot_1,zanahori pal +cuboid/cuboid_2,es un objet con form de prism de color verd +banana/banana_3,es el frut de un arbol de color amarill y alarg +banana/banana_2,es el frut de un arbol de color amarill y alarg +cuboid/cuboid_2,un prism rectangul verd +banana/banana_3,un platan +banana/banana_2,un platan +cuboid/cuboid_3,un prism rectangul roj +triangle/triangle_4,un prism triangul azul +cuboid/cuboid_2,un prism rectangul verd +plum/plum_1,una manzan +triangle/triangle_1,un prism triangul roj +cuboid/cuboid_3,tac de color roj en posicion horizontal +triangle/triangle_4,form triangul de color azul +cuboid/cuboid_2,tac de color verd en posicion horizontal +plum/plum_1,circul vinotint +triangle/triangle_1,form triangul de color roj oscur +cuboid/cuboid_3,el objet es de color roj y tien form de paralelepiped parec un ladrill +semicylinder/semicylinder_2,no se ven los extrem del objet per parec un cilindr de color roj +corn/corn_3,lo que vem es un chocl o maiz de color blanc ya pel +lime/lime_1,este objet es de color verd lor tien form de bombill de luz es dec una esfer sobr una pequeñ bas cilindr +cuboid/cuboid_3,es un rectangul de form horizontal de color roj +semicylinder/semicylinder_2,es un objet de color roj plan +corn/corn_3,es un maiz blanc sobr una bas gris +lime/lime_1,algun frut o vegetal de color verd +plum/plum_4,manzan roj +cylinder/cylinder_1,cilindr amarill vertical +tomato/tomato_4,tomat roj en proces de madur +plum/plum_4,esfer vinotint +cylinder/cylinder_1,form de cilindr color amarill +tomato/tomato_4,tomat redond sin madur complet color naranj +orange/orange_4,una naranj +banana/banana_1,un platan +semicylinder/semicylinder_3,mit del un cilindr amarill +corn/corn_4,una espig de maiz +carrot/carrot_1,una zanahori +orange/orange_4,es una naranj +banana/banana_1,es una banan de color amarill clar +semicylinder/semicylinder_3,es un objer de color amarill fuert con form redond sobr una bas gris +corn/corn_4,es un maiz de color blanc con algun gran mal +carrot/carrot_1,es un tubercul veget com patat o zanahori +banana/banana_2,frut amarill que le encant a los mon +cucumber/cucumber_2,verdur verd y alarg de piel fin y suav y que se usa par hac crem +lime/lime_3,objet verd con form de glob +cucumber/cucumber_2,verdur con aparient de cilindr es verd por fuer y blanc por dentr +banana/banana_2,un platan +cucumber/cucumber_2,un pepin +lime/lime_3,un limon verd +cucumber/cucumber_2,un pepin +carrot/carrot_1,una zanahori +cucumber/cucumber_3,un pepin +lemon/lemon_1,un limon amarill +triangle/triangle_2,un prism triangul amarill +carrot/carrot_1,larg delag de color naranj +cucumber/cucumber_3,larg verd de textur asper y espin por fuer +lemon/lemon_1,pequeñ acid de color amarill y redond +triangle/triangle_2,triangul amarill pequeñ +corn/corn_2,maiz blanc de tamañ median +cylinder/cylinder_1,form cilindr de color amarill +potato/potato_4,pap pequeñ de color marron +arch/arch_3,form de color verd clar +corn/corn_2,tien una form muy larg per delg hast lleg a su punt una punt es grues y la otra delg +cylinder/cylinder_1,su form cilindr y color amarill hac que resalt su textur lis +potato/potato_4,tien una form extrañ toqu oval per mas deform su color es marron per con manch oscur +arch/arch_3,la part de abaj es total plan per la de arrib tien una curvatur su color es verd clar +plum/plum_1,una manzan +corn/corn_1,una espig de maiz +cucumber/cucumber_2,un pepin +lemon/lemon_2,un limon amarill +plum/plum_1,frut redond mor +corn/corn_1,estructur vegetal llen de gran +cucumber/cucumber_2,vegetal verd alarg +lemon/lemon_2,frut redond de color amarill +triangle/triangle_2,figur con form de prism piramidal de color amarill +semicylinder/semicylinder_3,objet con form de semi cilindr de color amarill +triangle/triangle_4,figur con form de prism piramidal de color azul +carrot/carrot_3,es una hortaliz de color naranj y form alarg +lime/lime_1,es un frut de color verd piel rugos +triangle/triangle_2,un triangul amarill +semicylinder/semicylinder_3,una reban amarill +triangle/triangle_4,un triangul azul +carrot/carrot_3,una zanahori +lime/lime_1,una manzan verd +cucumber/cucumber_2,pepin verd +cube/cube_1,cub amarill +carrot/carrot_4,zanahori pal +semicylinder/semicylinder_3,medi cilindr amarill +potato/potato_2,tomat muy madur +cucumber/cucumber_2,un pepin +cube/cube_1,cub amarill +carrot/carrot_4,una zanahori +semicylinder/semicylinder_3,reban amarill +potato/potato_2,un jitomat +eggplant/eggplant_3,una berenjen larg +eggplant/eggplant_2,una berenjen madur +arch/arch_4,un poliedr roj con agujer +lime/lime_1,un vegetal verd +corn/corn_1,una mazorc +eggplant/eggplant_3,una berenjen de buen tamañ del tipic color entre negr y mor y piel brillant +eggplant/eggplant_2,una berenjen de tamañ regul del tipic color entre negr y mor y piel brillant +arch/arch_4,una piez o mold de un material plastic de color roj con una bas rectangul y una entrad semicircul +lime/lime_1,una frut que parec ser una sand de un color verd amarillent y piel brillant +corn/corn_1,un elot o mazorc de maiz sin las hoj es dec pel y de color amarill +lime/lime_4,un limon verd +triangle/triangle_3,un prism triangul verd +eggplant/eggplant_4,una berenjen +cuboid/cuboid_1,un prism rectangul amarill +orange/orange_4,una naranj +lime/lime_4,parec un aliment de color verd frut parec una lim parec de color redond +triangle/triangle_3,es una especi de quesit de color verd apag no parec comest com los anterior mas bien parec part de un puzzl o jueg +eggplant/eggplant_4,no recuerd bien el nombr es una verdur de la famili del calabacin su piel es brillant y de color oscur +cuboid/cuboid_1,es un objet de form cubic rectangul de color amarill intens parec una barr de ques par sandwich +orange/orange_4,de nuev parec que ten un limon aunqu este no parec madur del tod tien part verd y dir que esta dur +cucumber/cucumber_3,un pepin +tomato/tomato_3,un tomat +plum/plum_1,una manzan +orange/orange_2,un limon amarill +cylinder/cylinder_2,un cilindr roj +cucumber/cucumber_3,es una hortaliz de form cilindr y verd su textur es rugos +tomato/tomato_3,es un frut de color roj y form esfer su piel es brillant y lis +plum/plum_1,es un frut de color mor y form esfer su piel es brillant y lis +orange/orange_2,es un frut de color amarill piel rugos tien form esfer +cylinder/cylinder_2,es un cilindr de color roj +tomato/tomato_2,es un frut de color roj y form esfer +tomato/tomato_1,es un frut de color roj y form esfer +triangle/triangle_1,figur con form de prism piramidal de color roj +semicylinder/semicylinder_1,es una figur de color azul tien form de cilindr part a la mit +corn/corn_2,es el frut de una plant es alarg amarill y compuest de multipl gran +tomato/tomato_2,tien una form algo larg per redond su textur se not lis y es de color roj opac +tomato/tomato_1,tien una form predomin redond su color es de color roj y tu textur lis +triangle/triangle_1,una form triangul larg de color roj oscur que se alarg un poc +semicylinder/semicylinder_1,tien una form redond per con deform lev abaj es plan y azul +corn/corn_2,tien una form alarg y su textur se not rugos predomin color clar en su cuerp +cube/cube_3,un cub de color azul +corn/corn_1,una mazorc de maiz blanc +cube/cube_4,un cub de color roj +potato/potato_4,fragment de una superfici simil a una pap +carrot/carrot_2,un pedaz de lombriz de tierr +cube/cube_3,tien una form cuadr y es de color azul +corn/corn_1,tien punt por tod su cuerp que sobresal su color es amarill opac +cube/cube_4,tien una form cuadr y es de color roj +potato/potato_4,tien una form redond per con deform lev su color es marron +carrot/carrot_2,tien una form larg y delg su color es algo pal naranj +carrot/carrot_1,se trat de una zanahori de color anaranj es muy delg y alarg esta sin pel +cabbage/cabbage_1,parec un aliment de color mor oscur y redond podr ser una remolach +corn/corn_3,es una mazorc de maiz list par hac al horn o a la barbaco el color es amarill muy pal no parec muy apetec +cucumber/cucumber_1,de nuev ten una fot de un pepin de color verd con la superfici rugos +lemon/lemon_4,es un limon madur y perfect par aliñ una paell +carrot/carrot_1,zanahori rect +cabbage/cabbage_1,repoll mor +corn/corn_3,mazorc de maiz +cucumber/cucumber_1,pepin verd +lemon/lemon_4,limon amarill +triangle/triangle_3,tien una form triangul su textur se not lis y es de color verd +lime/lime_3,tien una textur lis su color es muy verd y tien una form oval +cabbage/cabbage_3,tien una form redond casi perfect y es de color mor +eggplant/eggplant_3,se parec a una sand per de color mor y es mas pequeñ +cabbage/cabbage_3,tien una form redond y se not que tien vari cap es de color mor +triangle/triangle_3,un prism triangul verd +lime/lime_3,un limon verd +cabbage/cabbage_3,un repoll purpur +eggplant/eggplant_3,una berenjen +cabbage/cabbage_3,un repoll purpur +cabbage/cabbage_3,es un repoll de color mor sobr una bas blanc +orange/orange_1,es una naranj +semicylinder/semicylinder_2,es un troz de algo roj sobr una bas blanc +lime/lime_2,algun frut de color verd per o manzan +cucumber/cucumber_3,es un pepin de color verd en form horizontal +cabbage/cabbage_3,el objet es una verdur de much hoj es de color mor +orange/orange_1,el objet es una frut redond es de color amarillonaranj +semicylinder/semicylinder_2,el objet es de color roj es de form irregul +lime/lime_2,el objet es de color verd parec ser una frut +cucumber/cucumber_3,el objet es una verdur de form alarg es de color verd +eggplant/eggplant_4,es larg rellen verd y sec +lime/lime_1,es redond pequeñ y agri +carrot/carrot_2,es larg delg y naranj +eggplant/eggplant_4,una berenjen larg +lime/lime_1,un object verd +carrot/carrot_2,una zanahori larg +cuboid/cuboid_1,el objet es un prism de color amarill intens es un paralelepiped con dos car cuadr y cuatr rectangular +cube/cube_1,lo que se ve es un cub de color amarill intens +arch/arch_1,el objet es un prism de color amarill intens parec un paralelepiped al que le sustrajeron una porcion cilindr en una de sus car +banana/banana_4,lo que se ve es una banan de color amarill verdos con algun manch no parec estar madur +orange/orange_1,el objet es un frut probabl una naranj o mandarin su color es un naranj mas bien oscur +cuboid/cuboid_1,un poliedr amarill +cube/cube_1,un cub amarill +arch/arch_1,un poliedr amarill con agujer +banana/banana_4,un platan horizontal +orange/orange_1,una naranj con manch roj en la casc +semicylinder/semicylinder_1,arrib es rendod y abaj tien una form plan ademas de su color que es azul +orange/orange_2,tien form redond con textur lis y el color es amarill algo opac +cube/cube_4,tien una form cuadr textur lis y de color roj peculi +cuboid/cuboid_4,tien una form rectangul y es de color azul +semicylinder/semicylinder_1,mit de un cilindr azul +orange/orange_2,una naranj +cube/cube_4,un cub roj +cuboid/cuboid_4,un prism rectangul azul +carrot/carrot_1,es una zanahori de color naranj clar +semicylinder/semicylinder_2,es un objet de form redond de color roj fuert +semicylinder/semicylinder_3,es un objet de form redond de color amarill intens +triangle/triangle_3,es un triangul de form horizontal de color verd oscur +carrot/carrot_1,raiz naranj comest +semicylinder/semicylinder_2,figur geometr de color roj +semicylinder/semicylinder_3,figur geometr amarill +triangle/triangle_3,figur geometr de color verd +tomato/tomato_3,un tomat +eggplant/eggplant_2,una berenjen +cucumber/cucumber_3,un pepin +cylinder/cylinder_3,un cilindr azul +tomato/tomato_3,tomat de color roj +eggplant/eggplant_2,berenjen mor +cucumber/cucumber_3,objet que es semej a un pepin +cylinder/cylinder_3,cilindr color azul +potato/potato_4,el objet es de color marron clar es de form redond +cylinder/cylinder_4,el objet es de form cilindr y color verd se encuentr volt sobr uno de sus lad +cuboid/cuboid_1,el objet es un cub es de color amarill parec aliment +plum/plum_4,el objet es de color rojomor parec ser un frut +potato/potato_4,un object simil a una pap +cylinder/cylinder_4,un cub verd vertical +cuboid/cuboid_1,un poliedr amarill vertical +plum/plum_4,una manzan roj +lemon/lemon_1,un limon amarill +triangle/triangle_1,un prism triangul roj +cube/cube_2,un cub verd +carrot/carrot_4,una zanahori +lemon/lemon_1,algo amarill +triangle/triangle_1,un pedaz roj en form de triangul com el de una tort +cube/cube_2,un cub verd +carrot/carrot_4,una tir gues parec a un gusan +cabbage/cabbage_3,repoll mor +cube/cube_2,cub de color verd +carrot/carrot_3,zanahori delg y alarg color naranj +cylinder/cylinder_1,form amarill +tomato/tomato_4,tomat redond sin madur complet color naranj y hoj verd +cabbage/cabbage_3,es una verdur de color mor con hoj tien form esfer +cube/cube_2,es un objet con form de cub de color verd +carrot/carrot_3,es una hortaliz de color naranj y form alarg +cylinder/cylinder_1,es un objet con form de cilindr de color amarill +tomato/tomato_4,es un frut de color roj y form esfer tien una hoj verd en la part superior +potato/potato_2,es un frut de form esfer y color marron +carrot/carrot_4,es una hortaliz de color naranj y form alarg su piel es asper +plum/plum_4,es un frut de color mor y form esfer +triangle/triangle_3,figur con form de prism piramidal de color verd +potato/potato_2,esfer vinotint de tamañ median +carrot/carrot_4,form tubul color anaranj delg +plum/plum_4,esfer mor +triangle/triangle_3,form triangul de color verd +potato/potato_2,el objet es un tomat roj +carrot/carrot_4,el objet es una zanahori alarg y blanquecin +corn/corn_3,el objet es una mazorc de maiz +lime/lime_3,el objet es verd +cucumber/cucumber_1,el objet es un pepin verd +semicylinder/semicylinder_2,roj circul cilindr +triangle/triangle_4,el objet es un triangul azul +eggplant/eggplant_2,no hay objet +banana/banana_3,el objet es un platan amarill +plum/plum_2,es una frut mor es utiliz par mejor el sistem digest +corn/corn_2,es una mazorc de maiz amarill con los gran aun intact en su exterior +orange/orange_2,frut amarill y redond que se necesit pel par com se utiliz por su alto conten en vitamin c +banana/banana_4,frut amarill y alarg con casc tien alto conten en potasi +plum/plum_1,frut de casc comest roj y brillos comun del tamañ de un puñ +carrot/carrot_2,cos ros +cube/cube_4,sin imag +triangle/triangle_2,bloqu amarill +tomato/tomato_1,redond tomat +lime/lime_3,objet verdecon form de bombill y sol com un limon +carrot/carrot_4,zanahori anaranj larg y delg +triangle/triangle_4,triangul tridimensional color azul con tres car rectangular +cucumber/cucumber_2,pepin grues color verd y lin clar cerc de los extrem +carrot/carrot_1,zanahori larg delg con bord irregular +triangle/triangle_2,el objet es amarill y es rectangul +lemon/lemon_4,este objet es redond y su color es amarill +orange/orange_3,este objet tien la form de esfer y es anaranj +lime/lime_1,este objet es color verd y es redond +banana/banana_4,este objet es larg tien el color amarill y tien puntit negr +lemon/lemon_1,un limon bien amarill +lime/lime_2,el limon esta muy verd +semicylinder/semicylinder_1,una medi lun estir y azul +carrot/carrot_1,una zanahori list par com +potato/potato_1,tomat en estad de descomposicion +cube/cube_4,cub de color roj +arch/arch_4,medi tub de color roj +cuboid/cuboid_1,paralelepiped de color amarill +lime/lime_4,limon de color verd +cuboid/cuboid_4,paralelepiped azul vertical +cylinder/cylinder_1,cilindr amarill vertical +lemon/lemon_1,limon amarill +semicylinder/semicylinder_4,medi cilindr verd +cucumber/cucumber_4,pepin verd +cucumber/cucumber_3,pepin verd muy larg +cucumber/cucumber_1,pepin de color verd +lemon/lemon_2,limon con una etiquet +tomato/tomato_1,tomat bien madur +lemon/lemon_1,tien una form oval y es amarill se not un hundimient en la part superior +cucumber/cucumber_1,se asemej a una sand es larg verd y grues +cabbage/cabbage_3,tien una form redond casi perfect y es de color mor oscur +cabbage/cabbage_4,tien form redond y se not que esta conform por vari cap delg +cylinder/cylinder_2,tien una form redond con una prolong es d color roj oscur +lime/lime_4,tien una form rar redond per con algun cambi es de color verd y su textur se not robust +cuboid/cuboid_4,tien una form rectangul de color azul con brev alarg +tomato/tomato_1,una form redond color roj con una textur lis +banana/banana_2,es un poc larg y amarill no tan delg y tien una lev curv +arch/arch_1,tien los lad diferent el izquierd es plan y el derech tien una curv +carrot/carrot_2,tien una form larg per no del tod rect +cube/cube_3,tien form cuadr se not rig y es de color azul +cube/cube_1,tien form cuadr el color predomin es el amarill +tomato/tomato_3,una form redond con con lev cambi y color color +triangle/triangle_3,una form triangul de color verd que se alarg un poc +cube/cube_1,tien una form cuadr amarill que se ve firm +lime/lime_1,tien una form redond per que tien una rar variacion en la part inferior +semicylinder/semicylinder_3,su form es algo particul arrib plan y abaj redond es color amarill +carrot/carrot_3,una form delg y larg con un color naranj pal +lemon/lemon_1,tien una form redond casi perfect y es de color amarill +cylinder/cylinder_3,tien aspect redond y un poc larg es de color azul +potato/potato_3,tien una form extrañ se ve deform y su color es marron clar +cabbage/cabbage_1,de color mor oscur y con una form redond casi perfect parec que tuv cap +tomato/tomato_4,tien form circul con ton de roj y naranj +cube/cube_4,el objet denot una form cuadr y es roj tien una textur lis +banana/banana_4,tien lin que lo hac ver algo rectangul su textur se ve robust +orange/orange_3,tien una form redond muy atract y mas por su color naranj +tomato/tomato_2,tien una form oval con un poc larg de color roj +cucumber/cucumber_2,su parec es semej al de una sand es de color verd y se ve pequeñ y delg +cucumber/cucumber_4,tien una form larg y circul es verd y algo grues +plum/plum_1,tien una form redond su textur se ve lis y es de color roj +lime/lime_1,tien una form rar es de color verd y su textur se not lis +cuboid/cuboid_3,es una form roj rectangul que se ve rig +eggplant/eggplant_2,se parec a un pepin por su form per es mor y se le not una textur lis +lemon/lemon_2,es amarill com un limon y su textur es un tant peculi +tomato/tomato_2,tien una form redond y su color roj opac es notabl +carrot/carrot_1,tien una form larg arrib es ancha y abaj delg ademas de un color naranj un tant pal +corn/corn_2,tien una form un poc larg y cubiert de trocit rectangular a su alrededor +arch/arch_2,su form es un tant cuadr y rectangul +cuboid/cuboid_2,tien form rectangul y tien color verd +cucumber/cucumber_4,su form se asemej a la de una sand es de color verd y pequeñ +cabbage/cabbage_3,se pued not que tien vari cap delg es de color mor +banana/banana_4,es larg y un poc delg per con una lev curvatur +banana/banana_4,es un poc larg se ve robust y tien una lev curvatur +triangle/triangle_4,tien una form triangul y es de color azul +cucumber/cucumber_3,tien form de sand per mas pequeñ y mas delg +cylinder/cylinder_2,tien form de cilindr es de color roj oscur +cuboid/cuboid_4,cuent con una form rectangul es de color azul +semicylinder/semicylinder_3,tien una form diferent la part superior redond y la de abaj plan +triangle/triangle_1,tien una form triangul que alarg un poc su color es un roj oscur +semicylinder/semicylinder_3,su form es algo distint arrib plan y abaj una curvatur es de color amarill +cabbage/cabbage_3,es de color mor redond y parec ten cap delg una tras otra +lemon/lemon_3,tien una form oval algo deform y predomin su color amarill +cube/cube_2,su form es cuadr y es de color verd +cube/cube_2,es de color verd y es notabl su form cuadr +potato/potato_2,tien una form redond per con deform lev tambien son notabl lev agujer +corn/corn_3,es larg y parec que tien cient de burbujit sol a lo larg de su cuerp +carrot/carrot_3,su form no es complet rect al final tien una curvatur notabl +lemon/lemon_4,tien una form oval y tien un atract color amarill +carrot/carrot_2,tien una form algo alarg y delg lo acompañ un color naranj algo pal +cube/cube_2,tien una form cuadr y de color verd se ve rig +potato/potato_4,tien una form particul se ve algo bland y su color es marron clar +potato/potato_1,tien una form oval per con vari deform con un color mor opac +semicylinder/semicylinder_3,su color es amarill arrib redond y abaj plan +orange/orange_3,tien una form muy redond y un caracterist color naranj +tomato/tomato_3,su form es redond y es de color roj con detall verd arrib +cuboid/cuboid_1,tien una form rectangul y su color amarill oscur luc opac +plum/plum_3,su form es algo redond con lev deform es roj +lime/lime_1,es redond y verd per la part de abaj sobresal +lemon/lemon_4,tien una form oval y abaj tien protuber +cube/cube_3,tien una form cuadr y es de color azul +potato/potato_2,destac por ten una form oval per con una textur algo peculi +lime/lime_4,es redond peor la part de abaj sobresal +carrot/carrot_3,una form delg y larg per de color naranj opac +banana/banana_2,es larg y amarill per con una lev curv +plum/plum_2,tien form redond y su col predomin es el roj oscur +lime/lime_1,el color predomin que tien es el verd y es redond +carrot/carrot_2,es larg y delg no es del tod rect y su color es pal +corn/corn_4,se ve robust su color es pal y parec que en tod su cuerp tuv pelotit +potato/potato_1,tien una form particular redond y es color roj +plum/plum_2,su textur se not lis tien form oval +cylinder/cylinder_2,tien form de tambor acost y es de color roj +plum/plum_3,tien una form particul arrib mas ancho y predomin el roj se ve lis +triangle/triangle_2,tien form triangul parec a un con invert y es de color amarill +lemon/lemon_2,tien form oval y es de color amarill radiant +plum/plum_2,tien una form redond su textur es lis y su color roj +cuboid/cuboid_4,cuent con una form rectangul y es de color azul +carrot/carrot_3,tien una form larg y delg su color es algo pal naranj +cuboid/cuboid_3,tien una form rectangul y su color roj oscur luc opac +carrot/carrot_2,tien una form larg y delg no es del tod rect +corn/corn_1,se ve pequeñ grues y se not muy pal +banana/banana_2,tien una form larg es de color amarill y tien una lev curv +cylinder/cylinder_2,tien form cilindr y es de color roj +eggplant/eggplant_3,tien una form algo redond y su textur se not muy lis +plum/plum_4,es redond casi perfect tien un atract color roj +cuboid/cuboid_1,es una form rectangul algo larg de color amarill +orange/orange_1,su form es redond es de color naranj y tien vari detall o manch oscur +arch/arch_3,tien una form algo extrañ de un lad es plan y del otro tien una curvatur notabl +cuboid/cuboid_4,tien una form rectangul y su color azul oscur luc opac +carrot/carrot_2,tien un color anaranj per pal su form es larg y delg +lime/lime_4,tien una form extrañ com redond per con una part que sobresal +lime/lime_2,tien form extrañ que sobresal por encim de su color verd +lemon/lemon_2,es amarill con una form algo redond y un color amarill llamat +lemon/lemon_4,tien una form oval con una protuber +cuboid/cuboid_2,tien form rectangul alarg y es de color verd +arch/arch_1,tien una form particul en un lad es plan y en el otro tien una circunferent +corn/corn_2,su form es algo extrañ alarg per con pelotit sol en tod su cuerp +tomato/tomato_2,tien una form oval que hac que resalt su color roj su textur es lis +arch/arch_3,tien una form algo rar sus cost son muy diferent uno plan y otro curv es de color verd +plum/plum_1,es de color roj y muy redond +arch/arch_4,tien una form algo rar abaj plan y arrib tien una curv +potato/potato_4,tien una form algo rar es de color marron clar +tomato/tomato_1,tien una form redond tien un potent color roj +potato/potato_1,tien una form redond y en la part derech tien un pequeñ hundimient +corn/corn_2,tien una form redond y larg per con protuber en tod su cuerp +carrot/carrot_1,tien una color naranj opac y tien una form larg per no del tod rect +triangle/triangle_2,tien una form rectangul y su color amarill oscur luc opac +lemon/lemon_4,tien un color naranj y una form algo oval +orange/orange_3,tien una form redond casi perfect y es de color naranj +lime/lime_1,su form es algo extrañ se ve pequeñ y sensibl +banana/banana_4,tien una form larg se ve grues y robust +semicylinder/semicylinder_3,tien una form triangul es de color amarill +orange/orange_4,tien una form redond y un caracterist color naranj +cylinder/cylinder_1,tien form cuadr y es de color amarill +banana/banana_3,no es del tod rect es larg y es de color amarill +semicylinder/semicylinder_3,tien una form rar arrib redond y abaj plan +cabbage/cabbage_4,tien una textur peculi es mor y se not que tien vari cap delg arrib tien textur blanc +cucumber/cucumber_1,es larg y se not robust un poc es de color verd y redond +cabbage/cabbage_1,su textur se not extrañ es de color mor y en la part del frent se not algo blanc +carrot/carrot_1,tien form larg per con vari curv tien un naranj algo opac +banana/banana_2,es amarill y se ve larg per no tant tien una curvatur +arch/arch_2,su form es algo peculi cuadr de un lad y en el otro se cort es de color azul +lemon/lemon_2,una form oval y un atract color amarill tien un detall que resalt +cuboid/cuboid_1,tien una form rectangul que se alarg un poc ademas de su color amarill +banana/banana_2,una una form larg y delg per con una notabl curvatur +cube/cube_4,un cuadr con una textur algo raspos su color es un roj muy atract +lemon/lemon_1,tien una form oval su color es amarill y su textur es caracterist +tomato/tomato_2,es redond y su cuerp se ve muy lis com brillant de color roj +cabbage/cabbage_4,cuent con una form oval y parec que tien vari cap delg +cube/cube_4,tien una form cuadr y es de color roj +potato/potato_2,redond pequeñ con un agujer y de textur lis +banana/banana_3,tien un color amarill muy notabl es larg con form algo rectangul +cylinder/cylinder_3,es de color azul y tien una form redond que se alarg un poc +cuboid/cuboid_3,tien una form cuadr que se alarg un poc resalt su curios color roj +cabbage/cabbage_3,tien form redond con un color mor oscur +arch/arch_1,tien una form algo rar abaj cuadr y arrib con una circunferent +cucumber/cucumber_2,tien una form alarg y es delg de color verd +potato/potato_1,tien una notabl form redond y su color parec mor clar +lime/lime_2,es de color verd con ton clar y su form es redond +potato/potato_2,tien una form oval y tien un pequeñ hundimient +orange/orange_3,tien una form redond casi perfect y es de color naranj +carrot/carrot_4,su form es algo larg y delg predomin un color naranj en tod su cuerp +arch/arch_2,tien una form algo peculi su izquierd es plan y su derech tien una curv +cucumber/cucumber_1,tien una form alarg se ve grues y pequeñ +plum/plum_2,su form es redond y es de color roj principal +cabbage/cabbage_1,tien una form circul casi perfect es mor oscur +lime/lime_3,tien form rectangul y tien color verd +arch/arch_2,tien una form algo particul el lad izquierd esta plan y el derech se ve una curvatur +potato/potato_3,su form y textur son deform tien un color naranj per muy pal +orange/orange_1,tien una form algo oval y es de color naranj +eggplant/eggplant_4,de color mor muy oscur casi parec a un color negr tien una form larg per gord +cucumber/cucumber_3,es parec a una sand verd per este es mas delg chiquit y larg +carrot/carrot_1,tien una form larg y delg es de color naranj pal tien una punt redond y otra puntiagud +cuboid/cuboid_3,tien una form rectangul y es de color roj +cuboid/cuboid_2,tien form rectangul y tien color verd +eggplant/eggplant_1,es de color mor oscur y el lad izquierd es redond y mas grand +semicylinder/semicylinder_4,tien una form algo peculi per sin dud resalt much su color verd +cabbage/cabbage_4,tien una form redond con color mor oscur y una textur rar parec que tuv vari cap +plum/plum_1,tien una form redond per en algun aspect rar ademas de un bell color roj oscur +triangle/triangle_1,su form triangul hac que el color roj resalt porqu va de delg a ancho +semicylinder/semicylinder_1,una form muy rar de color azul aproxim a curvatur de un redond +banana/banana_2,es de color amarill y tien una form larg per curv +plum/plum_4,su form es redond y predomin un color roj algo opac +semicylinder/semicylinder_3,tien una form particul es de color amarill +arch/arch_3,tien un color verd clar y del lad derech tien una curv y en el lad izquierd es plan +banana/banana_2,es larg se not dur y tien una lev curvatur +cucumber/cucumber_2,tien form larg y grues se ve delic y es de color verd +lime/lime_3,es de color verd y se ve redond ademas su textur es lis +cucumber/cucumber_2,tien una form algo larg es de color verd y grues +corn/corn_2,es ancho al principi y lueg se va hac mas delg +cylinder/cylinder_1,tien form de cilindr y es de color amarill +potato/potato_4,tien una form algo deform y es de color marron clar +arch/arch_3,tien una form algo peculi su part inferior es plan y la de arrib tien una curvatur +plum/plum_1,tien una form muy redond es de color roj +corn/corn_1,tien una form larg y no tan grues su color es apac +cucumber/cucumber_2,se asemej a una sand tien color verd y parec bland +lemon/lemon_2,tien form oval y tien un color amarill muy atract +tomato/tomato_2,su form es oval y predomin el color roj +tomato/tomato_1,es de color roj y es redond se ve de textur lis +triangle/triangle_1,tien form triangul con una prolong que se alarg un poc su color es roj algo oscur +semicylinder/semicylinder_1,una form redond con punt triangular su color es azul +corn/corn_2,es larg delg y parec que tien pelotit a lo larg de su cuerp +cube/cube_3,tien una form cuadr y es de color azul +corn/corn_1,tien una form algo larg y cient de punt sol a lo larg de su cuerp +cube/cube_4,tien una form cuadr y predomin el color roj oscur +potato/potato_4,tien form de corazon y su color es marron clar +carrot/carrot_2,aunqu es un poc larg no es del tod rect tien ciert curvatur +eggplant/eggplant_4,su form es algo redond per tambien un poc larg es de color mor oscur +lime/lime_1,tien una form redond y un color verd +carrot/carrot_2,tien una form larg casi rect y de color naranj +potato/potato_4,form un tant curios su textur se not algo asper +cylinder/cylinder_4,es un form redond de color verd que se alarg un poc +cuboid/cuboid_1,una form cuadr amarill que se ve un poc larg +plum/plum_4,redond con una textur lis y ton de color rojiz +cabbage/cabbage_3,tien una form redond y un detall blanc en la part superior su color es mor +cube/cube_2,tien una form cuadr y es de color verd +carrot/carrot_3,tien una form larg per no del tod rect es de color naranj +cylinder/cylinder_1,rectangul amarill y un poc larg +tomato/tomato_4,tien una form redond principal su color es roj +cube/cube_1,cuadr amarill pollit +cuboid/cuboid_1,rectangul amarill +triangle/triangle_3,triangul verd +arch/arch_2,ramp azul +semicylinder/semicylinder_2,circul roj cort a la mit +tomato/tomato_3,frut circul de color roj +lemon/lemon_2,frut circul de color amarill +cube/cube_4,cub roj +arch/arch_1,ramp amarill +eggplant/eggplant_2,frut abult de color purpur +cube/cube_3,cuadr azul +potato/potato_1,circul de color marron +lime/lime_3,estructur vegetal de color verd +potato/potato_3,tubercul marron +cuboid/cuboid_2,cub alarg de color verd +banana/banana_2,frut con conch amarill en form de fal +cabbage/cabbage_4,vegetal mor form por hoj +arch/arch_2,ramp azul +lime/lime_1,estructur vegetal de color verdos +cabbage/cabbage_4,estructur vegetal mor form por hoj +potato/potato_4,tubercul blanc y marron +cube/cube_1,cub amarill +cylinder/cylinder_1,figur geometr de color amarill +cabbage/cabbage_1,estructur vegetal de color mor form por acumul de hoj +cucumber/cucumber_3,vegetal verd con form falic +cylinder/cylinder_2,cilindr roj +tomato/tomato_3,frut circul de color roj +arch/arch_4,ramp roj +carrot/carrot_4,objet alarg en form de fal +corn/corn_2,objet llen de gran junt +corn/corn_1,estructur vegetal llen de gran junt +cylinder/cylinder_1,cilindr amarill +orange/orange_2,frut redond de color de amarill +triangle/triangle_1,figur geometr roj +cylinder/cylinder_4,cilindr verd +potato/potato_4,tubercul blanc y marron +cylinder/cylinder_4,cilindr verd +plum/plum_4,frut de color mor +tomato/tomato_2,frut de color roj +cabbage/cabbage_4,vegetal mor form por hoj +lemon/lemon_2,frut circul amarill +cube/cube_2,cub verd +plum/plum_1,circul de color mor +banana/banana_3,frut con conch amarill en form de fal +cube/cube_1,cub amarill +arch/arch_2,ramp azul +tomato/tomato_2,frut circul de color roj +orange/orange_2,frut circul de color amarill +cucumber/cucumber_1,frut alarg verd en form falic +potato/potato_3,tubercul marron y blanc +cuboid/cuboid_2,cub alarg de color verd +cucumber/cucumber_1,frut verd alarg en form de fal +lemon/lemon_3,frut circul amarill +cylinder/cylinder_3,cilindr azul +carrot/carrot_3,tubercul alarg de color anaranj +orange/orange_4,frut circul de color amarill +banana/banana_1,frut con casc de color amarill y form de fal +semicylinder/semicylinder_3,figur geometr de color amarill +corn/corn_4,estructur vegetal llen de gran +carrot/carrot_1,estructur con form de fal +cylinder/cylinder_2,objet circul coloc horizontal de color fucsi +lime/lime_4,vegetal verd clar +cuboid/cuboid_4,objet rectangul de color celest +tomato/tomato_1,objet circul de color roj +banana/banana_4,es un platan +arch/arch_3,objet concav de color verdos +lime/lime_3,objet circul de color verd clar +lime/lime_2,objet circul de color verd clar +cabbage/cabbage_2,objet circul de color negr +cuboid/cuboid_2,objet rectangul de color verd +plum/plum_3,objet circul de color mor +cabbage/cabbage_2,objet circul y mor oscur +arch/arch_1,objet concav de color amarill +carrot/carrot_3,es una zanahori +potato/potato_1,objet concav de color marron +semicylinder/semicylinder_3,objet semicircul de color amarill +orange/orange_3,es un tomat naranj +tomato/tomato_3,es un tomat roj +cube/cube_3,objet cubic de color azul +potato/potato_2,verdur circul roj +lime/lime_4,ensal de hoj +carrot/carrot_3,es una zanahori +cube/cube_3,objet cubic de color azul +potato/potato_1,objet circul de color marron +lime/lime_3,objet circul de color verd clar +potato/potato_3,es una pap +cuboid/cuboid_2,objet cubic larg en color verd +eggplant/eggplant_2,es una berenjen +cylinder/cylinder_2,objet circul coloc vertical en roj +eggplant/eggplant_1,es una berenjen +plum/plum_3,objet circul de color ciruel +cuboid/cuboid_2,objet rectangul y larg de color verd +lemon/lemon_3,es un limon +banana/banana_2,es un platan +lemon/lemon_4,es un limon +cucumber/cucumber_4,vegetal larg y verd +lime/lime_4,objet circul de color verd clar +cabbage/cabbage_3,objet circul de color negr +arch/arch_3,objet concav coloc vertical verd +plum/plum_1,objet circul de color ciruel +orange/orange_2,es un limon +potato/potato_4,es una pap +cuboid/cuboid_2,objet rectangul de color verd +carrot/carrot_1,es una zanahori +corn/corn_3,es una mazorc de maiz +arch/arch_4,objet concav coloc vertical y en color fucsi +eggplant/eggplant_4,es una berenjen +banana/banana_3,es un platan +cube/cube_1,objet cubic de color amarill +arch/arch_2,objet concav de color celest +tomato/tomato_2,objet oval roj +eggplant/eggplant_3,es una berenjen +arch/arch_4,objet concav de color fucsi y coloc vertical +lime/lime_1,objet circul de color verd clar +lemon/lemon_1,es un limon +lemon/lemon_3,es un limon +semicylinder/semicylinder_4,objet semicircul y de color verd +arch/arch_3,objet concav de color verd y coloc vertical +lime/lime_3,vegetal circul en color verd clar +arch/arch_2,objet concav de color azul y coloc vertical +corn/corn_1,mazorc de maiz +arch/arch_3,objet concav de color verd oscur +cucumber/cucumber_2,es una verdur verd +triangle/triangle_1,objet triangul de color roj +eggplant/eggplant_1,es una berenjen +banana/banana_4,es un platan +potato/potato_2,objet circul de color marron +banana/banana_3,es un platan +cylinder/cylinder_3,objet circul de color azul +cuboid/cuboid_3,objet cuadr larg roj y coloc vertical +cabbage/cabbage_3,vegetal simil a una berenjen +lemon/lemon_3,es un limon +plum/plum_1,objet circul de color ciruel +arch/arch_3,objet concav y larg de color verd +eggplant/eggplant_2,es una berenjen +cylinder/cylinder_4,objet circul y color verd +cabbage/cabbage_3,coliflor de color oscur +cylinder/cylinder_4,objet alarg y circul de color verd +cucumber/cucumber_1,larg verdur verd oscur +semicylinder/semicylinder_2,objet curv y grand de color roj +triangle/triangle_4,objet triangul de color celest +eggplant/eggplant_2,es una berenjen +banana/banana_3,es un platan +orange/orange_4,objet circul de color naranj +carrot/carrot_4,es una zanahori +lime/lime_1,vegetal circul en color verd clar +lime/lime_2,vegetal circul en color verd clar +potato/potato_3,es una pap +plum/plum_1,objet circul de color ciruel +plum/plum_3,objet circul de color ciruel +banana/banana_1,es un platan +corn/corn_4,es una mazorc de maiz +cucumber/cucumber_2,vegetal larg y verd +cube/cube_1,objet cubic y amarill +carrot/carrot_4,es una zanahori +semicylinder/semicylinder_3,objet semicircul de color amarill +potato/potato_2,objet circul de color marron +tomato/tomato_2,es un tomat roj +tomato/tomato_1,es un tomat roj +triangle/triangle_1,objet triangul larg roj +semicylinder/semicylinder_1,objet semicircul en color azul +corn/corn_2,es una mazorc de maiz +lemon/lemon_1,es un limon +triangle/triangle_1,objet triangul de color roj +cube/cube_2,objet cubic de color verd +carrot/carrot_4,es una zanahori +potato/potato_2,objet oval de color marron +carrot/carrot_4,objet larg y delg de color naranj +plum/plum_4,objet circul de color marron +triangle/triangle_3,objet triangul de color verd oscur +banana/banana_2,un platan +arch/arch_1,un prism rectangul amarill con concav abiert +carrot/carrot_2,una zanahori +cube/cube_3,un cub azul +cube/cube_1,un cub amarill +eggplant/eggplant_4,una berenjen +cabbage/cabbage_1,un repoll purpur +banana/banana_1,un platan +corn/corn_3,una espig de maiz +semicylinder/semicylinder_4,mit de un cilindr verd +tomato/tomato_3,un tomat +semicylinder/semicylinder_1,mit de un cilindr azul +plum/plum_3,una manzan +cylinder/cylinder_2,un cilindr roj +cylinder/cylinder_4,un cilindr verd +cuboid/cuboid_2,un prism rectangul verd +cylinder/cylinder_4,un cilindr verd +orange/orange_3,un tomat +carrot/carrot_3,una zanahori +tomato/tomato_1,un tomat +eggplant/eggplant_2,una berenjen +plum/plum_3,una manzan +plum/plum_4,una manzan +cylinder/cylinder_3,un cilindr azul +potato/potato_4,una patat +cabbage/cabbage_2,un repoll purpur +cube/cube_4,un cub roj +lime/lime_2,un limon verd +cabbage/cabbage_2,un repoll purpur +semicylinder/semicylinder_3,un prism triangul amarill +plum/plum_4,una manzan +cube/cube_1,un cub amarill +plum/plum_3,una manzan +corn/corn_1,una espig de maiz +eggplant/eggplant_4,una berenjen +semicylinder/semicylinder_2,mit de un cilindr roj +eggplant/eggplant_4,una berenjen +triangle/triangle_4,un prism triangul azul +cucumber/cucumber_2,un pepin +cuboid/cuboid_3,un prism rectangul roj +lime/lime_2,un limon verd +arch/arch_1,un prism rectangul amarill con concav abiert +semicylinder/semicylinder_4,mit de un cilindr verd +eggplant/eggplant_1,una berenjen +orange/orange_2,una naranj +cucumber/cucumber_2,un pepin +semicylinder/semicylinder_1,mit de un cilindr azul +eggplant/eggplant_3,una berenjen +potato/potato_1,una manzan +eggplant/eggplant_1,una berenjen +semicylinder/semicylinder_3,un semicircul de una esfer amarill +triangle/triangle_1,un triangul de burr +semicylinder/semicylinder_3,un prism piramidal amarill +cabbage/cabbage_3,un repoll purpur +lemon/lemon_3,un limon amarill +lemon/lemon_4,un limon amarill +lemon/lemon_3,un limon amarill +arch/arch_4,un prism rectangul ros con concav abiert +cabbage/cabbage_3,un repoll purpur +lime/lime_4,un limon verd +carrot/carrot_1,una zanahori +cuboid/cuboid_1,un prism rectangul amarill +banana/banana_4,un platan +corn/corn_3,una espig de maiz +cabbage/cabbage_3,un repoll purpur +carrot/carrot_1,una patat sals +arch/arch_3,un prism rectangul con concav abiert +carrot/carrot_2,una patat sals +tomato/tomato_2,un tomat +cabbage/cabbage_1,un repoll purpur +plum/plum_1,una manzan +eggplant/eggplant_2,una berenjen +lemon/lemon_3,un limon amarill +cucumber/cucumber_4,un pepin +cube/cube_3,un cub azul +corn/corn_1,una espig de maiz +cabbage/cabbage_1,un repoll purpur +semicylinder/semicylinder_2,mit de un cilindr roj +carrot/carrot_3,una zanahori +tomato/tomato_4,un tomat +plum/plum_3,una ciruel +potato/potato_3,una patat +orange/orange_2,una naranj +orange/orange_4,una naranj +carrot/carrot_4,una zanahori +cabbage/cabbage_2,un repoll purpur +eggplant/eggplant_4,una berenjen +cucumber/cucumber_1,un pepin +cylinder/cylinder_4,un cilindr verd +cylinder/cylinder_4,un cilindr verd +lime/lime_4,un limon verd +orange/orange_3,una naranj +banana/banana_2,un platan +cabbage/cabbage_4,un hues +arch/arch_2,un prism rectangul azul con concav +lime/lime_1,un limon +semicylinder/semicylinder_2,un cilindr roj +corn/corn_3,una espig de maiz +cylinder/cylinder_3,un cilindr azul +cucumber/cucumber_3,un pepin +cylinder/cylinder_3,un cilindr azul +cabbage/cabbage_4,un repoll purpur +potato/potato_4,una patat +cube/cube_1,un cub amarill +cylinder/cylinder_1,un cilindr amarill +cabbage/cabbage_1,un repoll purpur +cucumber/cucumber_3,un pepin +cylinder/cylinder_2,un cilindr roj +tomato/tomato_3,un tomat +arch/arch_4,un prism rectangul ros con concav abiert +lime/lime_1,un limon verd +carrot/carrot_4,una zanahori +cube/cube_3,un cub azul +cuboid/cuboid_2,un prism rectangul verd +cuboid/cuboid_4,un prism rectangul azul +tomato/tomato_3,un tomat +cabbage/cabbage_1,un repoll purpur +cylinder/cylinder_3,un cilindr azul +tomato/tomato_2,un tomat +cucumber/cucumber_4,un pepin +orange/orange_3,una naranj +triangle/triangle_4,un prism triangul azul +cuboid/cuboid_1,un prism rectangul amarill +potato/potato_3,una patat +semicylinder/semicylinder_4,mit de un cilindr verd +carrot/carrot_3,una zanahori +potato/potato_2,un tomat +cucumber/cucumber_4,un pepin +triangle/triangle_1,un prism triangul roj +cylinder/cylinder_4,un cilindr verd +potato/potato_4,una patat +cylinder/cylinder_4,un cilindr verd +plum/plum_4,una manzan +potato/potato_2,un tomat +cucumber/cucumber_3,un pepin +plum/plum_3,una ciruel +plum/plum_4,una manzan +cabbage/cabbage_2,un repoll purpur +cabbage/cabbage_4,un repoll purpur +lime/lime_3,un limon verd +potato/potato_1,una ciruel +triangle/triangle_2,un prism triangul amarill +lime/lime_2,un limon verd +cube/cube_4,un cub roj +lemon/lemon_1,un limon amarill +tomato/tomato_2,un tomat +cabbage/cabbage_4,un repoll purpur +cube/cube_4,un cub roj +eggplant/eggplant_1,una berenjen +banana/banana_2,un platan +cube/cube_2,un cub verd +semicylinder/semicylinder_2,mit de un cilindr roj +arch/arch_4,un prism rectangul ros con concav abiert +cuboid/cuboid_4,un cilindr azul +lemon/lemon_2,un limon amarill +carrot/carrot_2,una zanahori +lime/lime_1,un cilindr verd +corn/corn_3,una espig de maiz +corn/corn_1,una espig de maiz +lemon/lemon_1,un limon amarill +plum/plum_2,una bol purpur +semicylinder/semicylinder_4,mit de un cilindr verd +potato/potato_4,una patat +eggplant/eggplant_3,una berenjen +eggplant/eggplant_1,una berenjen +arch/arch_1,un prism rectangul con concav abiert +cucumber/cucumber_2,un pepin +potato/potato_1,una bol de burr +eggplant/eggplant_1,una berenjen +arch/arch_3,un prism rectangul verd con concav abiert +triangle/triangle_4,un prism triangul azul +lime/lime_1,un limon verd +tomato/tomato_4,un tomat +lemon/lemon_3,un limon amarill +plum/plum_1,un cilindr roj +arch/arch_3,un prism rectangul verd con concav abiert +eggplant/eggplant_2,una berenjen +lime/lime_2,un limon verd +potato/potato_2,un tomat +orange/orange_3,una naranj +carrot/carrot_4,una ceniz +arch/arch_2,un prism rectangul azul con concav abiert +carrot/carrot_1,una zanahori +cuboid/cuboid_3,un prism rectangul roj +cuboid/cuboid_2,un prism rectangul verd +eggplant/eggplant_1,una berenjen +cuboid/cuboid_4,un prism rectangul azul +potato/potato_3,una patat +eggplant/eggplant_2,un repoll purpur +lime/lime_4,un limon verd +arch/arch_3,un prism rectangul verd con concav abiert +corn/corn_2,una espig de maiz +corn/corn_2,una espig de maiz +cucumber/cucumber_3,un pepin +cabbage/cabbage_4,un repoll purpur +orange/orange_1,una naranj +triangle/triangle_2,un prism triangul amarill +lime/lime_2,un limon verd +cabbage/cabbage_3,un repoll purpur +plum/plum_3,un hues mor +cylinder/cylinder_1,un cilindr amarill +eggplant/eggplant_3,una berenjen +corn/corn_2,una espig de maiz +triangle/triangle_2,un poligon amarill +cabbage/cabbage_2,un repoll purpur +potato/potato_4,una patat +cuboid/cuboid_3,un prism rectangul roj +cabbage/cabbage_2,un repoll purpur +lime/lime_2,un limon verd +carrot/carrot_4,una zanahori +eggplant/eggplant_2,una berenjen +lime/lime_3,un limon verd +lemon/lemon_3,un limon amarill +tomato/tomato_4,un tomat +corn/corn_2,una espig de maiz +cuboid/cuboid_2,un prism rectangul verd +banana/banana_3,un platan +banana/banana_2,un platan +plum/plum_4,un cilindr roj +cylinder/cylinder_1,un cilindr amarill +tomato/tomato_4,un tomat +corn/corn_2,una espig de maiz +cylinder/cylinder_1,un cilindr amarill +potato/potato_4,una patat +arch/arch_3,un prism rectangul verd con concav abiert +plum/plum_1,una manzan +corn/corn_1,una espig de maiz +cucumber/cucumber_2,un pepin +lemon/lemon_2,un limon amarill +cuboid/cuboid_1,un prism rectangul amarill +cube/cube_1,un cub amarill +arch/arch_1,un prism rectangul amarill con concav +banana/banana_4,un platan +orange/orange_1,una naranj +eggplant/eggplant_3,una berenjen +cabbage/cabbage_3,una col mor +lemon/lemon_3,un limon +banana/banana_2,un platan +eggplant/eggplant_3,una berenjen +cylinder/cylinder_1,piez geometr +cucumber/cucumber_4,pepin jea +eggplant/eggplant_4,berenjen sa +carrot/carrot_1,zanahon akl +eggplant/eggplant_4,qjkak sjs +cucumber/cucumber_4,un pepin +cabbage/cabbage_3,una col +banana/banana_4,una banan +banana/banana_4,una bana +arch/arch_1,piez geometr +tomato/tomato_3,piez geometr +semicylinder/semicylinder_1,piez geometr +eggplant/eggplant_4,piez geometr +plum/plum_1,una buen uvot +cucumber/cucumber_3,pepinot gord +cuboid/cuboid_3,piez geometr +lemon/lemon_3,lim limon +cuboid/cuboid_3,piez geometr +cube/cube_2,un cuadr verd de mader +lime/lime_4,una lim si +tomato/tomato_1,un tomat roj +cylinder/cylinder_1,un algo amarill +semicylinder/semicylinder_1,algo azul +semicylinder/semicylinder_4,piez geometr +cube/cube_2,piez geometr +semicylinder/semicylinder_2,piez geometr +carrot/carrot_2,zanahoriot buen +cube/cube_1,cuadr de plastic +cuboid/cuboid_1,rectangul de plastic +triangle/triangle_3,un triangul verd +arch/arch_2,un cuadrard de plastic que le falt un circul dentr +semicylinder/semicylinder_2,medi circul roj de plastic +eggplant/eggplant_4,piez geometr +triangle/triangle_4,piez geometr +cucumber/cucumber_2,piez geometr +cuboid/cuboid_3,piez geometr +lime/lime_2,piez geometr +cabbage/cabbage_1,piez geometr +cube/cube_3,piez geometr +corn/corn_1,piez geometr +eggplant/eggplant_1,piez geometr +corn/corn_1,piez geometr +lime/lime_2,lim ric +banana/banana_3,pap platanit +eggplant/eggplant_1,berenjen gordot +cucumber/cucumber_2,agri pepinin +cuboid/cuboid_1,piez geometr +cube/cube_2,piez geometr +cube/cube_2,piez geometr +potato/potato_2,piez geometr +corn/corn_3,piez geometr +semicylinder/semicylinder_4,piez geometr +banana/banana_1,platan cna +semicylinder/semicylinder_4,piez geometr +eggplant/eggplant_2,berenjen ja +triangle/triangle_3,piez geometr +cucumber/cucumber_3,un pepin +arch/arch_2,piez geometr +cylinder/cylinder_2,piez geometr +tomato/tomato_2,un tomat per +plum/plum_2,una uva +cuboid/cuboid_1,piez geometr +plum/plum_3,una cerez +lime/lime_1,lim amil +lemon/lemon_4,limon nomli +semicylinder/semicylinder_4,piez geometr +carrot/carrot_1,un zanahori +cube/cube_2,piez geometr +orange/orange_4,un limon +banana/banana_3,una banan +carrot/carrot_1,zanahori buen +cuboid/cuboid_1,piez geometr +banana/banana_4,platan ric +corn/corn_3,maizot swa +cabbage/cabbage_3,col lombard +lemon/lemon_2,una mandarin +banana/banana_1,un platan +cylinder/cylinder_1,pues una piez de juguet amarill +cuboid/cuboid_2,una cos anterior verd +cuboid/cuboid_3,piez de jueg +eggplant/eggplant_1,piez geometr +arch/arch_4,piez geometr +cuboid/cuboid_3,piez geometr +cabbage/cabbage_2,piez geometr +lemon/lemon_4,piez geometr +eggplant/eggplant_3,una berenjen +plum/plum_4,una uva +cuboid/cuboid_1,piez geometr +orange/orange_1,una naranaj +arch/arch_3,piez geometr +triangle/triangle_4,una piez triangul azul +carrot/carrot_1,una zanahori +banana/banana_1,un platan +corn/corn_1,una barc de maiz +plum/plum_2,una uva ric +lemon/lemon_4,piez geometr +cuboid/cuboid_2,piez geometr +arch/arch_1,piez geometr +corn/corn_2,piez geometr +tomato/tomato_2,piez geometr +arch/arch_3,piez geometricapiez geometr +plum/plum_1,piez geometr +arch/arch_4,piez geometr +corn/corn_4,piez geometr +triangle/triangle_4,piez geometr +carrot/carrot_2,piez geometr +orange/orange_2,piez geometr +potato/potato_4,pap frit +tomato/tomato_1,tomat peros +potato/potato_1,una uvot +corn/corn_2,maiz fs +carrot/carrot_1,zan hori +corn/corn_4,piez geometr +orange/orange_4,piez geometr +carrot/carrot_3,piez geometr +plum/plum_2,piez geometr +cube/cube_2,piez geometr +cucumber/cucumber_2,pepin ric +cube/cube_1,piez geometr +arch/arch_2,piez geometr +cylinder/cylinder_4,piez geometr +cabbage/cabbage_4,col mor +cabbage/cabbage_3,col mor +triangle/triangle_1,piez geometr +potato/potato_1,una pap +orange/orange_1,una mandarin +orange/orange_3,una naranj +cucumber/cucumber_3,un pepin +cucumber/cucumber_1,un pepin +lemon/lemon_2,un limon +tomato/tomato_1,un tomat +triangle/triangle_1,piez geometr +cabbage/cabbage_2,piez geometr +triangle/triangle_3,piez geometr +cucumber/cucumber_3,piez geometr +corn/corn_4,piez geometr +tomato/tomato_1,un tomat +plum/plum_2,una uva +eggplant/eggplant_3,una berenjen +cuboid/cuboid_3,piez geometr +cabbage/cabbage_4,una col +cucumber/cucumber_1,un pepin +cabbage/cabbage_1,col mor +carrot/carrot_1,zanahori fea +banana/banana_2,platan mal cort +arch/arch_2,una esfer de plastic com una especi de medi circul y ramp +plum/plum_4,parec el ser human por dentr +cucumber/cucumber_1,un pepin +cube/cube_1,un cuadr de plastic +plum/plum_2,no se ve +plum/plum_2,una uva mor +triangle/triangle_2,piez geometr +banana/banana_3,un platan +lemon/lemon_1,una naranj +orange/orange_4,una naranj +corn/corn_4,maiz ziam +cucumber/cucumber_3,pepin onipep +cube/cube_1,piez geometr +cube/cube_3,piez geometr +carrot/carrot_1,zan fea +lemon/lemon_1,limon ric +cuboid/cuboid_4,piez geometr +cylinder/cylinder_3,piez geometr +corn/corn_3,piez geometr +semicylinder/semicylinder_2,piez geometr +semicylinder/semicylinder_1,piez geometr +corn/corn_1,piez geometr +tomato/tomato_2,piez geometr +cabbage/cabbage_4,piez geometr +lime/lime_3,piez geometr +potato/potato_1,piez geometr +triangle/triangle_2,piez geometr +lime/lime_2,piez geometr +cube/cube_4,piez geometr +cuboid/cuboid_4,piez geometr +cube/cube_3,piez geometr +semicylinder/semicylinder_4,piez geometr +cucumber/cucumber_4,piez geometr +triangle/triangle_2,piez geometr +lemon/lemon_4,piez geometr +cylinder/cylinder_4,piez geometr +tomato/tomato_4,piez geometr +corn/corn_3,piez geometr +triangle/triangle_2,piez geometr +triangle/triangle_1,piez geometr +lemon/lemon_2,piez geometr +potato/potato_3,piez geometr +corn/corn_2,un maiz +cylinder/cylinder_3,piez geometr +carrot/carrot_3,una zanahori +cucumber/cucumber_3,un pepin +arch/arch_3,piez geometr +cucumber/cucumber_2,piez geometr +triangle/triangle_1,piez geometr +eggplant/eggplant_1,piez geometr +banana/banana_4,piez geometr +cube/cube_4,piez geometr +carrot/carrot_3,una zanahori +corn/corn_4,un maiz +corn/corn_2,un maiz poch +cube/cube_3,piez geometr +plum/plum_3,piez geometr +arch/arch_3,piez geometr +cabbage/cabbage_1,piez geometr +lime/lime_3,piez geometr +cucumber/cucumber_4,piez geometr +eggplant/eggplant_1,una berenjen mor +arch/arch_3,medi cac verd +triangle/triangle_4,triangul azul +lime/lime_1,lim verd y sabroson +tomato/tomato_4,tomat roj y verd +arch/arch_2,piez geometr +tomato/tomato_4,tomat verd +eggplant/eggplant_1,berenjen fru +plum/plum_1,uva plan +cube/cube_1,piez geometr +banana/banana_2,piez geometr +cuboid/cuboid_3,piez geometr +lime/lime_2,piez geometr +carrot/carrot_2,piez geometr +lime/lime_1,piez geometr +semicylinder/semicylinder_4,medi circul verd +cabbage/cabbage_4,una col mor +plum/plum_1,una cerez +triangle/triangle_1,un triangul de plastic +semicylinder/semicylinder_1,medi circul azul de put plastic +cube/cube_2,cuadr verd de mader +lemon/lemon_3,limon mi limoner +arch/arch_3,el objet que ha sal antes +cylinder/cylinder_2,esfer alarg +cube/cube_4,algo de plastic cuadr +arch/arch_4,objet medi esfer com una ramp de plastic +corn/corn_3,una barc de maiz +plum/plum_2,una uva +semicylinder/semicylinder_1,medi lun de plastic +banana/banana_2,piez geometr +plum/plum_4,piez geometr +semicylinder/semicylinder_3,piez geometr +arch/arch_3,piez geometr +cuboid/cuboid_1,piez geometr +orange/orange_1,piez geometr +tomato/tomato_1,piez geometr +arch/arch_3,piez geometr +cabbage/cabbage_4,piez geometr +semicylinder/semicylinder_1,piez geometr +arch/arch_1,piez geometr +banana/banana_1,piez geometr +eggplant/eggplant_1,piez geometr +cylinder/cylinder_1,piez geometr +potato/potato_4,piez geometr +cuboid/cuboid_3,piez geometr +cabbage/cabbage_2,piez geometr +lime/lime_2,piez geometr +carrot/carrot_4,piez geometr +cucumber/cucumber_1,un pepin +cylinder/cylinder_4,piez geometr +potato/potato_2,una pap roj +eggplant/eggplant_3,una berenjen +tomato/tomato_1,un tomat per +cuboid/cuboid_2,una cos verd dur +banana/banana_3,un platan con peor pint +banana/banana_2,un platan de canari +cuboid/cuboid_3,piez geometr +triangle/triangle_4,piez geometr +cuboid/cuboid_2,piez geometr +plum/plum_1,piez geometr +triangle/triangle_1,piez geometr +cuboid/cuboid_3,algo roj rectangul +semicylinder/semicylinder_2,algo roj esfer +corn/corn_3,una barc de maiz +lime/lime_1,parec la piel y textur de la lim +banana/banana_2,piez geometr +cucumber/cucumber_2,piez geometr +lime/lime_3,piez geometr +cucumber/cucumber_2,piez geometr +eggplant/eggplant_3,una berenjen +eggplant/eggplant_2,una berenjen +arch/arch_4,piez geometr +lime/lime_1,un limon o lim +corn/corn_1,un maiz +carrot/carrot_1,zan dur +cabbage/cabbage_1,col dur +corn/corn_3,maiz dur +cucumber/cucumber_1,pepin agri +lemon/lemon_4,limon dulson +cabbage/cabbage_3,piez geometr +cube/cube_2,piez geometr +carrot/carrot_3,piez geometr +cylinder/cylinder_1,piez geometr +tomato/tomato_4,piez geometr +potato/potato_2,patat marron +carrot/carrot_4,zanahori naranaj +plum/plum_4,uva mor +triangle/triangle_3,piez geometr +potato/potato_1,objet redond que parec una panz una manzan vist desd arrib +cube/cube_4,un cub de chicl hay una mit de ladrill en la imag +arch/arch_4,una ramp par patin y hac acrobaci hay una figur geometr +cuboid/cuboid_1,barr de mantequill figur rectangul +lime/lime_4,una cabez de lechug la cop de un arbol +potato/potato_2,mandarin vist desd arrib bien podr ser un tomat vist desd arrib +cucumber/cucumber_3,es un pepin objet color verd +plum/plum_3,manzan roj pued ser una ciruel +plum/plum_4,la figur parec ser un durazn lun roj +cabbage/cabbage_2,bol de bolich una coliflor descompuest +semicylinder/semicylinder_4,banc de un parqu cabez de cepill de dient +potato/potato_4,es una pap fritur de maiz +eggplant/eggplant_3,berenjen verdur de color negr +eggplant/eggplant_1,es una berenjen parec una macan +banana/banana_1,es un platan o banan +cabbage/cabbage_2,repoll de color mor +carrot/carrot_1,zanahori larg a la que le falt un troz +banana/banana_1,es un platan o banan +triangle/triangle_3,objet verd de form prismat triangul +plum/plum_3,objet color roj oscur casi mor tien form esfer +eggplant/eggplant_2,es una berenjen de color mor oscur +cucumber/cucumber_1,es un pepin +carrot/carrot_4,zanahori de gran longitud +cylinder/cylinder_4,objet de color verd y form cilindr +triangle/triangle_1,objet de color roj es semej a una porcion de pastel +cylinder/cylinder_3,cilindr color azul +semicylinder/semicylinder_1,objet de color azul se asemej a un cilindr cort longitudinal +cucumber/cucumber_4,imag de un pepin +cuboid/cuboid_3,es un prism cuadrangul de color roj +carrot/carrot_2,una zanahori bastant larg +cube/cube_3,cub azul +lime/lime_1,objet de color verd con form de foc incandescent +orange/orange_1,objet de color amarill naranj tien form casi circul se parec a un tomat +cube/cube_4,semej a un dad de color roj lis +cuboid/cuboid_4,prism rectangul de color azul +cube/cube_3,cub de color azul +semicylinder/semicylinder_4,cilindr verd cort al medi longitudinal +cucumber/cucumber_4,es un pepin +corn/corn_2,frut de la plant de maiz de color blanc y con granoss llam chocl en argentin y elot en mexic +cylinder/cylinder_3,cilindr de color azul +carrot/carrot_3,zanahori de gran longitud +cucumber/cucumber_3,es un pepin +lime/lime_3,objet de color verd con form de foc incandescent +cylinder/cylinder_2,cilindr de color roj +triangle/triangle_4,objet de color azul y form prismat triangul +cylinder/cylinder_1,cilindr de color amarill limon +potato/potato_3,es una pap con piel de color marron clar +plum/plum_1,manzan de color roj +plum/plum_3,objet color roj oscur semej a una manzan +banana/banana_1,es una banan tambien pued ser un platan +corn/corn_4,frut del maiz llam elot o chocl +eggplant/eggplant_2,berenjen su color es mor oscur +corn/corn_2,es un elot o chocl o mazorc +plum/plum_4,objet color roj oscur semej a una manzan +carrot/carrot_1,zanahori naranj y larg +plum/plum_4,objet de color roj tenu parec a una manzan +cylinder/cylinder_1,objet de color amarill limon y form casi rectangul +tomato/tomato_4,tomat con form de bol y color roj naranj +carrot/carrot_1,zanahori de gran longitud +semicylinder/semicylinder_2,objet roj con form de cilindr cort longitudinal +semicylinder/semicylinder_3,objet amarill limon con form de cilindr cort longitudinal +triangle/triangle_3,objet de color verd que se asemej a una ramp +carrot/carrot_3,se observ una figur +semicylinder/semicylinder_4,se observ una figur +lime/lime_4,se observ una figur +carrot/carrot_4,se observ una figur +arch/arch_1,se observ una figur +semicylinder/semicylinder_2,se observ una figur roj +orange/orange_1,se observ una figur naranj +plum/plum_2,se observ una figur roj +cuboid/cuboid_4,se observ una figur roj +potato/potato_3,se observ una figur roj +eggplant/eggplant_1,se observ una figur roj +lime/lime_2,se observ una figur roj +cucumber/cucumber_2,se observ una figur roj +corn/corn_2,se observ una figur roj +eggplant/eggplant_3,se observ una figur roj +carrot/carrot_2,se observ un objet alarg en form de pal alarg de color tierr y va de mayor a menor grosor +cube/cube_4,se observ un cuadr en form de reliev de color roj +triangle/triangle_2,se observ un rectangul con medi triangul en la part derech del rectangul es de color amarill +tomato/tomato_1,se observ una pelot de color roj +tomato/tomato_3,se observ una figur roj +triangle/triangle_3,se observ una figur roj +cube/cube_1,se observ una figur roj +lime/lime_1,se observ una figur roj +semicylinder/semicylinder_4,se observ una figur +tomato/tomato_3,se observ una figur +semicylinder/semicylinder_1,se observ una figur +plum/plum_3,se observ una figur +cylinder/cylinder_2,se observ una figur +banana/banana_2,se observ un platan de la inferior a la superior +corn/corn_2,se obserb una mazorc de derech a izquierd +cylinder/cylinder_4,no hay imag +tomato/tomato_3,se observ un tomat redond con una pequeñ picadur en el centr de la part superior +potato/potato_3,se observ un bult amarill +cylinder/cylinder_4,se observ una figur verd +cuboid/cuboid_2,se observ una figur ved +cylinder/cylinder_4,se observ una figur verd +orange/orange_3,se observ una naranj +cabbage/cabbage_1,se observ una figur roj +tomato/tomato_4,se observ una figur roj +cube/cube_4,se observ una figur roj +banana/banana_4,se observ una figur roj +orange/orange_3,se observ una figur roj +triangle/triangle_1,se observ una figur +banana/banana_2,se observ una figur +lemon/lemon_2,se observ una figur +eggplant/eggplant_3,se observ una figur +banana/banana_1,se observ una figur +corn/corn_2,se observ un cuadr amarill +arch/arch_2,se observ un cuadr amarill +cuboid/cuboid_2,se observ un cuadr amarill +cube/cube_4,se observ una figur +banana/banana_4,se observ una figur +triangle/triangle_4,se observ una figur +lemon/lemon_2,se observ una figur +plum/plum_3,se observ una figur +cube/cube_2,se observ una figur +lime/lime_4,se observ una figur +tomato/tomato_1,se observ una figur +cylinder/cylinder_1,se observ una figur +semicylinder/semicylinder_1,se observ una figur +cube/cube_1,se observ una figur roj +cuboid/cuboid_1,se observ una figur roj +triangle/triangle_3,se observ una figur roj +arch/arch_2,se observ una figur roj +semicylinder/semicylinder_2,se observ una figur roj +cube/cube_1,se observ un cuadr amarill +plum/plum_3,se observ un cuadr amarill +corn/corn_1,se observ un cuadr amarill +eggplant/eggplant_4,se observ un cuadr amarill +semicylinder/semicylinder_2,se observ un cuadr amarill +cabbage/cabbage_1,se observ una redond de color gris difumin +cube/cube_3,se observ un cuadr en form de reliev +corn/corn_1,se observ un objet alarg con pequeñ miez de color amarill +eggplant/eggplant_1,se observ una berenjen +corn/corn_1,se observ una mazorc con perspect de mas cercan a mas lejan +banana/banana_4,se observ una figur roj +cylinder/cylinder_4,se observ una figur roj +cube/cube_1,se observ una figur roj +corn/corn_3,se observ una figur roj +cylinder/cylinder_3,se observ una figur roj +cucumber/cucumber_3,se observ un pepin +arch/arch_2,se observ una figur azul +cylinder/cylinder_2,se observ una figur roj +tomato/tomato_2,se observ una figur roj +plum/plum_2,se observ una figur roj +potato/potato_1,se observ una figur +semicylinder/semicylinder_3,se observ una figur +orange/orange_3,se observ una figur +tomato/tomato_3,se observ una figur +plum/plum_3,se observ una figur +eggplant/eggplant_2,se observ una figur +cucumber/cucumber_1,se observ una figur +carrot/carrot_4,se observ una figur +banana/banana_2,se obserb un platan +plum/plum_2,se obserb una manzan +lime/lime_1,se observ una lim +carrot/carrot_2,se obserb una zanahori +corn/corn_4,se obserb una mazorc de maiz +plum/plum_3,se observ una figur +plum/plum_2,se observ una figur +orange/orange_3,se observ una figur +carrot/carrot_4,se observ una figur +triangle/triangle_2,se observ una figur roj +lemon/lemon_2,se observ una figur roj +plum/plum_2,se observ una figur roj +cuboid/cuboid_4,se observ una figur roj +carrot/carrot_3,se observ una figur roj +banana/banana_1,se observ un platan +tomato/tomato_3,se observ un tomat +eggplant/eggplant_4,no se ve la imag +corn/corn_4,se observ una mazorc +carrot/carrot_1,se observ una zanahori +carrot/carrot_3,se observ una figur roj +corn/corn_3,se observ una figur roj +eggplant/eggplant_4,se observ una figur roj +lemon/lemon_4,se observ una figur roj +cabbage/cabbage_4,se observ una figur roj +triangle/triangle_4,se observ una figur roj +triangle/triangle_2,se observ una figur roj +triangle/triangle_3,se observ una figur roj +cylinder/cylinder_2,se observ una figur roj +cube/cube_3,se observ una figur roj +lemon/lemon_2,se observ una figur +banana/banana_1,se observ una figur +cylinder/cylinder_1,se observ una figur +cuboid/cuboid_2,se observ una figur +cuboid/cuboid_3,se observ una figur +cylinder/cylinder_4,se observ un cuadr amarill +triangle/triangle_1,se observ un cuadr amarill +cylinder/cylinder_3,se observ un cuadr amarill +semicylinder/semicylinder_1,se observ un cuadr amarill +cucumber/cucumber_4,se observ un cuadr amarill +cucumber/cucumber_4,se observ una figur +triangle/triangle_3,se observ una figur +tomato/tomato_2,se observ una figur +corn/corn_2,se observ una figur +potato/potato_2,se observ una figur +eggplant/eggplant_1,se observ una figur roj +arch/arch_4,se observ una figur roj +cuboid/cuboid_3,se observ una figur roj +cabbage/cabbage_2,se observ una figur roj +lemon/lemon_4,se observ una figur roj +eggplant/eggplant_3,se observ una figur roj +plum/plum_4,se observ una figur roj +cuboid/cuboid_1,se observ una figur roj +orange/orange_1,se observ una figur roj +arch/arch_3,se observ una figur roj +cuboid/cuboid_1,se observ una figur +triangle/triangle_1,se observ una figur +lemon/lemon_2,se observ una figur +orange/orange_4,se observ una figur +cuboid/cuboid_4,se observ una figur roj +carrot/carrot_2,se observ una figur roj +lime/lime_4,se observ una figur roj +lime/lime_2,se observ una figur roj +lemon/lemon_2,se observ una figur roj +orange/orange_2,se observ una figur +carrot/carrot_4,se observ una figur +semicylinder/semicylinder_3,se observ una figur +cuboid/cuboid_4,se observ una figur +corn/corn_4,se observ una figur roj +triangle/triangle_4,se observ una figur roj +carrot/carrot_2,se observ una figur roj +orange/orange_2,se observ una figur roj +cabbage/cabbage_3,se observ una figur +arch/arch_3,se observ una figur +plum/plum_1,se observ una figur +orange/orange_2,se observ una figur +potato/potato_4,se observ una figur +cucumber/cucumber_2,se observ un pepin +cube/cube_1,se observ un cuadr amarill +arch/arch_2,se observ un cuadr +cylinder/cylinder_4,se observ un cuadr amarill +cabbage/cabbage_4,se observ un cuadr amarill +cabbage/cabbage_3,se observ una figur +triangle/triangle_1,se observ una figur +potato/potato_1,se observ una figur +orange/orange_1,se observ una figur +orange/orange_3,se observ una figur +tomato/tomato_4,se observ una figur +arch/arch_1,se observ una figur +triangle/triangle_3,se observ una figur +cabbage/cabbage_2,se observ una figur +corn/corn_4,se observ una figur +carrot/carrot_1,se observ una figur +lime/lime_3,se observ una figur +potato/potato_3,se observ una figur +carrot/carrot_2,se observ una figur +cucumber/cucumber_4,se observ una figur roj +cylinder/cylinder_2,se observ una figur roj +semicylinder/semicylinder_1,se observ una figur roj +corn/corn_1,se observ una figur roj +eggplant/eggplant_2,se observ una figur roj +cuboid/cuboid_2,se observ una figur +carrot/carrot_1,se observ una figur +corn/corn_3,se observ una figur +arch/arch_4,se observ una figur +eggplant/eggplant_4,se observ una figur +semicylinder/semicylinder_4,se observ una figur roj +orange/orange_1,se observ una figur roj +arch/arch_4,se observ una figur roj +lime/lime_3,se observ una figur roj +carrot/carrot_1,se observ un conej +lemon/lemon_1,se observ un limon +cuboid/cuboid_4,se observ un rectangul +cylinder/cylinder_3,se observ un cilindr azul +corn/corn_3,se observ un cuadr amarill +semicylinder/semicylinder_2,se observ un cuadr amarill +semicylinder/semicylinder_1,se observ un cuadr amarill +corn/corn_1,se observ un cuadr amarill +tomato/tomato_2,se observ un cuadr amarill +triangle/triangle_3,se observ una figur verd +semicylinder/semicylinder_2,se observ una figur roj +lime/lime_4,se observ una lim +orange/orange_3,se observ una naranj +arch/arch_1,se observ una figur amarill +banana/banana_4,se observ un platan +triangle/triangle_3,se observ una piramid verd +cube/cube_1,se observ un cuadr amarill +potato/potato_2,se observ un mang +lime/lime_4,se observ una lim +carrot/carrot_2,se observ una zanahori +cucumber/cucumber_4,se observ un pepin +lime/lime_1,se observ una lim +tomato/tomato_3,se obserb un tomat +semicylinder/semicylinder_3,se observ medi circunferent amarill +triangle/triangle_2,se observ una figur +lemon/lemon_4,se observ una figur +cylinder/cylinder_4,se observ una figur +tomato/tomato_4,se observ una figur +semicylinder/semicylinder_4,se observ un cuadr amarill +arch/arch_3,se observ un cuadr amarill +lime/lime_3,se observ un cuadr amarill +arch/arch_2,se observ un cuadr amarill +corn/corn_1,se observ un cuadr amarill +corn/corn_3,se observ una mazorc de maiz +triangle/triangle_2,no se observ la imag +triangle/triangle_1,se observ un rectangul roj +lemon/lemon_2,se observ un limon +potato/potato_3,se observ una patat +plum/plum_2,se observ una figur +corn/corn_2,se observ una figur +orange/orange_2,se observ una figur +banana/banana_4,se observ una figur +plum/plum_1,se observ una figur +cuboid/cuboid_4,se observ una figur roj +cabbage/cabbage_1,se observ una figur roj +banana/banana_1,se observ una figur roj +orange/orange_3,se observ una figur roj +cylinder/cylinder_1,se observ una figur roj +lime/lime_1,se observ una figur roj +corn/corn_3,se observ una figur roj +corn/corn_1,se observ una figur roj +lemon/lemon_1,se observ una figur roj +plum/plum_2,se observ una figur roj +plum/plum_3,se observ una figur roj +arch/arch_3,se observ una figur verd +cabbage/cabbage_1,se observ una figur roj +lime/lime_3,se observ una figur roj +cucumber/cucumber_4,se observ una figur roj +arch/arch_2,se observ una figur +cuboid/cuboid_2,se observ una figur +cube/cube_3,se observ una figur +carrot/carrot_4,se observ una figur +cucumber/cucumber_1,se observ un pepin +cabbage/cabbage_4,se observ una col +corn/corn_4,se observ una mazorc +cuboid/cuboid_4,se observ un rectangul azul +semicylinder/semicylinder_1,se observ una figur roj +cabbage/cabbage_1,se observ una figur roj +lime/lime_4,se observ una figur roj +eggplant/eggplant_3,se observ una figur roj +lime/lime_3,se observ una lim +cylinder/cylinder_2,se observ un cilindr +triangle/triangle_4,no se observ la imag +cylinder/cylinder_1,no se observ la imag +lemon/lemon_3,se observ un limon +carrot/carrot_3,se observ una zanahori +eggplant/eggplant_1,se observ una berenjen +triangle/triangle_2,se observ un rectangul amarill +banana/banana_3,se observ un platan +cuboid/cuboid_2,se observ un cuadr amarill +cucumber/cucumber_1,se observ un cuadr amarill +lemon/lemon_3,se observ un cuadr amarill +cylinder/cylinder_3,se observ un cuadr amarill +carrot/carrot_3,se observ un cuadr amarill +cube/cube_2,se observ un cuadr +lemon/lemon_3,se observ un limon +arch/arch_3,se observ un cuadr +cylinder/cylinder_2,se observ un cilindr roj +cylinder/cylinder_3,se observ una figur +cabbage/cabbage_2,se observ una figur +triangle/triangle_1,se observ una figur +cabbage/cabbage_4,se observ una figur +lemon/lemon_1,se observ una figur +tomato/tomato_1,se observ una figur +potato/potato_1,se observ una figur +potato/potato_1,se observ una figur +cuboid/cuboid_3,se observ una figur +lime/lime_2,se observ una figur +orange/orange_1,se observ una naranj +corn/corn_3,se observ una mazorc de maiz +banana/banana_1,no se observ la imag +lemon/lemon_4,se observ un limon +cabbage/cabbage_2,se observ una col negr +orange/orange_1,se observ un cuadr amarill +triangle/triangle_2,se observ un cuadr amarill +lime/lime_2,se observ un cuadr amarill +cabbage/cabbage_3,se observ un cuadr amarill +plum/plum_3,se observ un cuadr amarill +cylinder/cylinder_1,se observ un cilindr +eggplant/eggplant_3,se observ una berenjen +corn/corn_2,se observ una mazorc de maiz +triangle/triangle_2,se observ un cuadr amarill +cabbage/cabbage_2,se observ una col negr +cylinder/cylinder_3,se observ un cuadr amarill +corn/corn_4,se observ un cuadr amarill +carrot/carrot_2,se observ un cuadr amarill +cuboid/cuboid_2,se observ un cuadr amarill +orange/orange_2,se observ una figur roj +corn/corn_4,se observ una figur roj +cube/cube_2,se observ una figur roj +corn/corn_2,se observ una mazorc +cube/cube_2,se observ una figur verd +lemon/lemon_4,se observ una naranj +cucumber/cucumber_2,se observ un pepin +eggplant/eggplant_2,se observ un cuadr amarill +corn/corn_2,se observ un cuadr amarill +plum/plum_4,se observ un cuadr amarill +carrot/carrot_1,se observ un cuadr amarill +cuboid/cuboid_2,se observ un rectangul +banana/banana_3,se observ un platan +banana/banana_2,se observ un platan +cuboid/cuboid_3,se observ una figur roj +semicylinder/semicylinder_2,se observ una figur roj +corn/corn_3,se observ una mazorc +lime/lime_1,se observ una lim +lime/lime_4,se observ una lim +triangle/triangle_3,se observ un rectangul verd +eggplant/eggplant_4,se observ una berenjen +cuboid/cuboid_1,se observ un rectangul amarill +orange/orange_4,se observ una naranj +carrot/carrot_1,se observ una figur +cabbage/cabbage_1,se observ una figur +corn/corn_3,se observ una figur +cucumber/cucumber_1,se observ una figur +lemon/lemon_4,se observ una figur +cuboid/cuboid_1,se observ un rectangul en perspect de fond izquierd es de color amarill +cube/cube_1,se observ un cuadr con perspect derech es de color amarill +arch/arch_1,se observ un cuadr con una circunferent en el centr es de color amarill +banana/banana_4,se observ un platan verd con las punt haci dentr +orange/orange_1,se obserb una naranj de color naranj pal +tomato/tomato_3,se observ un cuadr amarill +eggplant/eggplant_2,se observ un cuadr amarill +cucumber/cucumber_3,se observ un cuadr amarill +cylinder/cylinder_3,se observ un cuadr amarill +potato/potato_4,se observ una patat +cylinder/cylinder_4,se observ un cilindr verd +cuboid/cuboid_1,se observ un rectangul amarill +plum/plum_4,se observ una manzan +lemon/lemon_1,se observ un limon +triangle/triangle_1,se observ un triangul +cube/cube_2,se observ un cuadr +carrot/carrot_4,se observ una zanahori +plum/plum_4,parec ser algun frut talvez tun manzan +orange/orange_1,es tun naranj +potato/potato_4,el objet com una pap +corn/corn_4,un elot enter +semicylinder/semicylinder_3,esponj amarill +tomato/tomato_4,tomat frut +banana/banana_3,platan frut +cube/cube_4,poliedr virtual +cucumber/cucumber_2,un pepin madur +arch/arch_2,un poliedr vertical azul agujer +cuboid/cuboid_3,un poliedr roj vertical +cabbage/cabbage_1,un vegetal con hoj +cabbage/cabbage_1,imag vac +tomato/tomato_4,imag vac +cube/cube_4,poliedr virtual +banana/banana_4,platan frut +orange/orange_3,naranj frut +triangle/triangle_1,un objet roj en form de triangul +banana/banana_2,un platan madur horizontal +lemon/lemon_2,un limon madur +eggplant/eggplant_3,una berenjen madur +banana/banana_1,un platan madur vertical +plum/plum_1,una manzan rok +cucumber/cucumber_3,un pepin verd +cuboid/cuboid_3,un cilindr roj horizontal +lemon/lemon_3,un limon amarill +cuboid/cuboid_3,un cilindr roj vertical +cube/cube_4,un poliedr roj +banana/banana_4,un platan madur horizontal +triangle/triangle_4,un objet simil a una cortin azul +lemon/lemon_2,un limon amarill +plum/plum_3,una manzan roj +lime/lime_2,un limon verd +cabbage/cabbage_2,un vegetal con hoj +semicylinder/semicylinder_3,una esponj amarill +plum/plum_4,una manzan roj +carrot/carrot_4,una zanahori larg +cube/cube_3,un cub azul +cabbage/cabbage_3,un vegetal con hoj +cabbage/cabbage_4,un vegetal con hoj +lemon/lemon_4,un limon madur +lemon/lemon_3,un limon madur +arch/arch_4,un poliedr roj +cabbage/cabbage_3,un vegetal con hoj verd oscur +lime/lime_4,una ensal verd +banana/banana_1,un platan horizontal +tomato/tomato_3,un tomat roj +eggplant/eggplant_4,un berenjen larg +corn/corn_4,el objet con el maiz cerc +carrot/carrot_1,una zanahori larg +cylinder/cylinder_4,cilindr virtual verd vertical +cylinder/cylinder_4,cilindr virtual verd vertical +lime/lime_4,un limon verd +orange/orange_3,una naranj con manch roj en la casc +cuboid/cuboid_3,un poliedr roj +carrot/carrot_2,una zanahori larg +cube/cube_3,un cub azul +lime/lime_1,un limon verd +orange/orange_1,una naranj con manch roj en la casc +tomato/tomato_4,un tomat madur +orange/orange_4,una naranj una frut +lemon/lemon_2,un limon madur +cube/cube_3,un cub azul +triangle/triangle_4,un objet simil a una cortin azul +cylinder/cylinder_2,cilindr virtual +eggplant/eggplant_4,berenjen vegetal +arch/arch_4,virtual poliedr con agujer +cuboid/cuboid_1,mantequill amarill +cuboid/cuboid_3,poliedr virtual +cucumber/cucumber_1,un pepin madur +plum/plum_2,una manzan roj +cabbage/cabbage_1,un vegetal con hoj verd +lime/lime_3,una ensal con hoj verd +arch/arch_2,un poliedr azul con agujer +carrot/carrot_3,una zanahori larg +triangle/triangle_4,un objet en form de triangul azul +tomato/tomato_4,un tomat madur +triangle/triangle_1,un objet en form de triangul roj +banana/banana_1,un platan madur horizontal +eggplant/eggplant_4,una berenjen horizontal +cylinder/cylinder_3,un cilindr azul +eggplant/eggplant_3,una berenjen horizontal +cucumber/cucumber_3,un pepin madur +cube/cube_2,un cub verd +lemon/lemon_3,un limon madur +arch/arch_3,un poliedr verd con agujer +cylinder/cylinder_2,un cilindr roj +corn/corn_2,no visibl +corn/corn_2,una com con maiz cerc +cucumber/cucumber_3,un pepin horizontal y madur +cabbage/cabbage_4,un vegetal con hoj +carrot/carrot_2,una zanahori vertical +cube/cube_1,un cub amarill +carrot/carrot_4,una zanahori larg vertical +banana/banana_3,un platan horizontal +semicylinder/semicylinder_1,un objet simil a una cortin azul +eggplant/eggplant_3,una berenjen madur +eggplant/eggplant_2,una berenjen madur +arch/arch_4,poliedr virtual con agujer +lime/lime_1,un melon verd +corn/corn_1,la frut que tien el maiz cerc +cube/cube_3,un cub azul +corn/corn_1,una com con maiz cerc +cube/cube_4,un poliedr roj +potato/potato_4,una pap madur +carrot/carrot_2,una zanahori larg +cuboid/cuboid_1,un poliedr amarill +cube/cube_1,un cub amarill +arch/arch_1,un poliedr amarill con agujer +banana/banana_4,un platan con rasguñ +orange/orange_1,una naranj con manch roj en la casc +semicylinder/semicylinder_2,veo un medi cilindr roj +orange/orange_1,yo veo una naranj +plum/plum_2,veo una manzan +cuboid/cuboid_4,veo un cub azul +potato/potato_3,yo veo una pap +eggplant/eggplant_1,veo un berenjen +lime/lime_2,veo un vegetal verd +cucumber/cucumber_2,yo veo un pepin +corn/corn_2,yo mont un epi de maiz +eggplant/eggplant_3,veo un berenjen +banana/banana_4,yo veo un banan +arch/arch_3,veo una piez verd transport +lime/lime_3,veo un limon verd +lime/lime_2,veo un limon verd +cabbage/cabbage_2,vo un choux roj +cube/cube_2,veo un cub verd +cube/cube_2,veo un cub verd +potato/potato_2,yo veo una pap +corn/corn_3,yo mont un epi de maiz +semicylinder/semicylinder_4,veo un medi cilindr verd +banana/banana_1,yo veo un banan +semicylinder/semicylinder_4,veo un medi cilindr verd +eggplant/eggplant_2,veo un berenjen +triangle/triangle_3,veo un triangul verd +cube/cube_3,veo un cub azul +potato/potato_2,veo una manzan +lime/lime_4,veo un limon verd +carrot/carrot_3,veo una zanahori +cucumber/cucumber_4,yo veo un pepin +triangle/triangle_3,veo un triangul verd +tomato/tomato_2,yo veo un tomat +corn/corn_2,yo mont un epi de maiz +potato/potato_2,veo una manzan +corn/corn_1,veo un cociner de maiz +cabbage/cabbage_1,vo un choux roj +semicylinder/semicylinder_2,veo un medi cilindr roj +carrot/carrot_3,yo veo un carruaj +tomato/tomato_4,yo veo un tomat +cabbage/cabbage_3,vo un choux roj +potato/potato_1,veo una manzan +orange/orange_2,veo una naranj +banana/banana_3,yo veo un banan +orange/orange_4,veo una naranj +orange/orange_2,yo veo una naranj +carrot/carrot_4,yo veo un carruaj +semicylinder/semicylinder_3,veo un medi cilindr amarill +cuboid/cuboid_4,veo un cub azul +cucumber/cucumber_2,yo veo un pepin +cube/cube_1,veo un cub amarill +arch/arch_2,veo una piez azul transport +cylinder/cylinder_4,veo un cilindr verd +cabbage/cabbage_4,vo un choux roj +cuboid/cuboid_4,veo un cub azul +tomato/tomato_3,yo veo un tomat +cabbage/cabbage_1,vo un choux roj +cylinder/cylinder_3,veo un cilindr azul +tomato/tomato_2,yo veo un tomat +cucumber/cucumber_4,yo veo un pepin +orange/orange_3,yo veo una naranj +triangle/triangle_4,veo un triangul azul +cuboid/cuboid_1,veo un cub amarill +potato/potato_3,yo veo una pap +arch/arch_2,veo una piez azul con un agujer +plum/plum_4,veo una manzan +cucumber/cucumber_1,yo veo un pepin +cube/cube_1,veo un cub amarill +plum/plum_2,veo una manzan +semicylinder/semicylinder_4,veo un medi cilindr verd +carrot/carrot_3,yo veo un carruaj +potato/potato_2,yo veo una pap +cucumber/cucumber_4,yo veo un pepin +semicylinder/semicylinder_2,veo un medi cilindr roj +cube/cube_2,veo un cub verd +triangle/triangle_2,veo un triangul amarill +triangle/triangle_3,veo un triangul verd +semicylinder/semicylinder_2,yo camin por un medi cicl roj +lime/lime_4,veo un vegetal verd +orange/orange_3,veo una naranj +arch/arch_1,veo una form amarill con un agujer +cuboid/cuboid_4,veo un cub azul +cabbage/cabbage_1,vo un choux roj +banana/banana_1,yo veo un banan +orange/orange_3,veo una naranj +cylinder/cylinder_1,veo una piez amarill +corn/corn_1,veo un cociner de maiz +semicylinder/semicylinder_4,veo un medi cilindr verd +cucumber/cucumber_4,yo veo un pepin +cylinder/cylinder_2,veo un cilindr roj +cube/cube_4,veo un cub roj +lime/lime_2,veo un limon verd +potato/potato_2,veo una manzan +orange/orange_3,veo una naranj +carrot/carrot_4,veo una zanahori +arch/arch_2,veo un transductor de piez azul +carrot/carrot_3,veo una zanahori +triangle/triangle_4,veo un triangul azul +tomato/tomato_4,yo veo un tomat +triangle/triangle_1,camin un triangul roj +banana/banana_1,yo veo un banan +cylinder/cylinder_4,veo un cilindr verd +cabbage/cabbage_3,vo un choux roj +cylinder/cylinder_4,veo un cilindr verd +tomato/tomato_1,yo veo un tomat +potato/potato_1,veo una manzan +potato/potato_1,veo una manzan +cuboid/cuboid_3,veo un cub roj +lime/lime_2,veo un limon verd +potato/potato_3,yo veo una pap +plum/plum_1,veo una manzan +plum/plum_3,veo una manzan +banana/banana_1,yo veo un banan +corn/corn_4,yo mont un epi de maiz +carrot/carrot_1,yo veo un carruaj +cucumber/cucumber_3,yo veo un pepin +lemon/lemon_1,veo un limon +triangle/triangle_2,veo un triangul amarill +cabbage/cabbage_3,vo un choux roj +orange/orange_1,yo veo una naranj +semicylinder/semicylinder_2,veo un cilindr roj +lime/lime_2,veo un limon verd +cucumber/cucumber_3,yo veo un pepin +tomato/tomato_3,yo veo un tomat +eggplant/eggplant_2,veo un berenjen +cucumber/cucumber_3,veo una canch +cylinder/cylinder_3,veo un cilindr azul +cucumber/cucumber_4,es un pepin verd +cylinder/cylinder_2,es un cilindr roj +semicylinder/semicylinder_1,es una form geometr azul se asemej al trapeci +corn/corn_1,es un maiz amarill clar +eggplant/eggplant_2,es una berenjen +cucumber/cucumber_3,de color verd con rug de form alarg se suel utiliz en ensald +tomato/tomato_3,de color roj redond pued utiliz crud en ensal tambien se utiliz paa realiz sals +plum/plum_1,objet redond de color roj es una frut que al com hac ruid +orange/orange_2,frut de color amarill redond y blanc por dentr al com hac ruid +cylinder/cylinder_2,cilindr de color roj los niñ lo utiliz par jug y encastr +plum/plum_3,el objet es simil a una bol es un objet mor +potato/potato_3,este objet par una pap es color marron +orange/orange_2,este objet es una naranj es una naranj de color mas clar que oscur +orange/orange_4,este objet es una naranj es una naranj grand +carrot/carrot_4,esta imag es una zanahori es una zanahori viej +semicylinder/semicylinder_3,mit de un cilindr amarill +tomato/tomato_4,un tomat +banana/banana_3,un platan +cube/cube_4,un cub roj +eggplant/eggplant_4,una berenjen +cabbage/cabbage_1,un repoll purpur +banana/banana_1,un platan +corn/corn_3,un sabug de maiz +semicylinder/semicylinder_3,mit de un cilindr amarill +carrot/carrot_3,una zanahori +lemon/lemon_1,una naranj +cylinder/cylinder_3,un cilindr azul +potato/potato_3,una patat +plum/plum_4,una ciruel +cylinder/cylinder_3,un cilindr azul +potato/potato_4,una patat +cabbage/cabbage_2,un repoll purpur +cube/cube_4,un cub roj +arch/arch_1,un cilindr amarill con concav +tomato/tomato_3,um tomat +semicylinder/semicylinder_1,mit de un cilindr azul +eggplant/eggplant_4,una berenjen +arch/arch_1,un prism rectangul amarill con concav +semicylinder/semicylinder_4,mit de un cilindr verd +eggplant/eggplant_1,una berenjen +orange/orange_2,una naranj +cucumber/cucumber_2,un pepin +banana/banana_4,un platan +cylinder/cylinder_4,un cilindr verd +cube/cube_1,un cub amarill +corn/corn_3,un sabug de maiz +cylinder/cylinder_3,un cilindr azul +semicylinder/semicylinder_1,mit de un cilindr azul +eggplant/eggplant_3,una berenjen +potato/potato_1,una patat +eggplant/eggplant_1,una berenjen +carrot/carrot_3,un vegetal naranj +lemon/lemon_4,un limon sicilian +carrot/carrot_2,una zanahori +cube/cube_2,un cub verd +potato/potato_4,una patat +plum/plum_3,una bol mor +eggplant/eggplant_2,una berenjen +cucumber/cucumber_1,un pepin +carrot/carrot_4,una zanahori +potato/potato_1,una patat +plum/plum_2,una ciruel +cylinder/cylinder_2,un cilindr roj +plum/plum_3,una ciruel +plum/plum_3,una ciruel +plum/plum_2,una ciruel +orange/orange_3,una naranj +carrot/carrot_4,una zanahori +carrot/carrot_3,un vegetal naranj +corn/corn_3,un sabug de maiz blanquecin +eggplant/eggplant_4,una berenjen +lemon/lemon_4,una naranj +cabbage/cabbage_4,un repoll purpur +plum/plum_4,una ciruel +orange/orange_1,una naranj +potato/potato_4,una patat +corn/corn_4,un sabug de maiz +cylinder/cylinder_4,un cilindr verd +triangle/triangle_1,un prism triangul roj +cylinder/cylinder_3,un cilindr azul +semicylinder/semicylinder_1,mit de un cilindr azul +cucumber/cucumber_4,un pepin +lemon/lemon_3,una naranj +banana/banana_2,un platan +lemon/lemon_4,un limon +cucumber/cucumber_4,un pepin +lime/lime_4,un limon +cuboid/cuboid_1,un prism rectangul amarill +triangle/triangle_1,un prim triangul roj +lemon/lemon_2,un limon sicilian +orange/orange_4,una naranj +cuboid/cuboid_4,un cilindr azul +cylinder/cylinder_1,un cilindr amarill +lemon/lemon_1,un limon +semicylinder/semicylinder_4,mit de un cilindr verd +cucumber/cucumber_4,un pepin +semicylinder/semicylinder_2,un objet roj +corn/corn_3,un sabug de maiz blanquecin +cylinder/cylinder_3,un cilindr azul +cucumber/cucumber_3,un pepin +cylinder/cylinder_3,un cilindr azul +carrot/carrot_1,una zanahori +lime/lime_3,un limon +potato/potato_3,una patat +carrot/carrot_2,una zanahori +lime/lime_3,un limon +carrot/carrot_4,una zanahori +triangle/triangle_4,un prism triangul azul +cucumber/cucumber_2,un pepin +carrot/carrot_1,una zanahori +cucumber/cucumber_4,un pepin verd +orange/orange_3,una naranj +triangle/triangle_4,un prism triangul azul +cuboid/cuboid_1,un prism rectangul amarill +potato/potato_3,una patat +carrot/carrot_4,una zanahori +corn/corn_2,un sabug de maiz blanquecin +corn/corn_1,un sabug de maiz +cylinder/cylinder_1,un cilindr amarill +orange/orange_2,una naranj +arch/arch_2,un prism rectangul azul con con concav concav +plum/plum_4,una ciruel +cucumber/cucumber_1,un pepin +cube/cube_1,un cub amarill +plum/plum_2,una ciruel +arch/arch_2,un cilindr azul con concav +lemon/lemon_2,un limon sicilian +cuboid/cuboid_1,un prism rectangul amarill +banana/banana_2,un platan +plum/plum_2,una ciruel +triangle/triangle_2,un prism triangul amarill +banana/banana_3,un platan +lemon/lemon_1,un limon sicilian +orange/orange_4,una naranj +semicylinder/semicylinder_4,mit de un cilindr verd +orange/orange_1,una patat +arch/arch_4,un prism rectangul roj con concav +lime/lime_3,un limon +plum/plum_2,una ciruel +corn/corn_2,un sabug de maiz blanquecin +orange/orange_2,una naranj +banana/banana_4,un platan +plum/plum_1,una manzan +cube/cube_4,un cub roj +carrot/carrot_3,un vegetal naranj +corn/corn_4,un sabug de maiz +corn/corn_2,un sabug de maiz +cube/cube_3,un cub azul +corn/corn_1,un sabug de maiz +semicylinder/semicylinder_4,mit de un cilindr verd +cucumber/cucumber_4,un pepin +cylinder/cylinder_2,un cilindr roj +cube/cube_4,un cub roj +cucumber/cucumber_1,un pepin verd +banana/banana_1,un platan +plum/plum_1,una ciruel +orange/orange_4,una naranj +cylinder/cylinder_1,un cilindr amarill +arch/arch_2,un prism rectangul azul con concav +cuboid/cuboid_2,un prism rectangul verd +cube/cube_3,un cub +carrot/carrot_4,una zanahori +cucumber/cucumber_1,un pepin verd +cabbage/cabbage_4,un repoll purpur +corn/corn_4,un sabug de maiz +cuboid/cuboid_4,un prism rectangul azul +lemon/lemon_3,un limon sicilian +carrot/carrot_3,una zanahori +eggplant/eggplant_1,una berenjen +triangle/triangle_2,un prism triangul amarill +banana/banana_3,un platan +arch/arch_2,un prism rectangul azul con concav +tomato/tomato_4,un tomat +eggplant/eggplant_1,una berenjen +plum/plum_1,una ciruel +cube/cube_1,un cub amarill +lemon/lemon_1,un limon sicilian +lime/lime_2,un limon +semicylinder/semicylinder_1,mit de un cilindr azul +carrot/carrot_1,una zanahori +cucumber/cucumber_1,un pepin verd +plum/plum_2,una ciruel +cabbage/cabbage_1,un repoll purpur +lime/lime_3,un limon +arch/arch_2,un prism rectangul azul con concav +eggplant/eggplant_4,una berenjen +cylinder/cylinder_3,un cilindr azul +eggplant/eggplant_3,una berenjen +cucumber/cucumber_3,un pepin +potato/potato_3,una p +orange/orange_1,una naranj +eggplant/eggplant_4,una berenjen +cucumber/cucumber_3,un pepin +lime/lime_3,un limon +cabbage/cabbage_1,un repoll purpur +cabbage/cabbage_3,un repoll purpur +cucumber/cucumber_1,un pepin +triangle/triangle_2,un prism triangul amarill +orange/orange_3,una naranj +cabbage/cabbage_2,un repoll purpur +semicylinder/semicylinder_2,mit de un cilindr roj +tomato/tomato_1,un tomat +cube/cube_4,un cub roj +arch/arch_4,un prism roj con una concav concav haci arrib +corn/corn_3,un sabug de maiz +plum/plum_2,una pelot purpur +semicylinder/semicylinder_1,mit de un cilindr azul +triangle/triangle_3,un prism triangul verd +cuboid/cuboid_1,un prism rectangul amarill +cucumber/cucumber_3,un pepin +corn/corn_4,un sabug de maiz +arch/arch_2,un prism rectangul azul con concav +orange/orange_1,una naranj +corn/corn_3,un sabug de maiz blanquecin +banana/banana_1,un platan +lemon/lemon_4,un limon +cabbage/cabbage_2,un repoll purpur +cylinder/cylinder_3,un cilindr azul +corn/corn_4,un sabug de maiz blanquecin +carrot/carrot_2,una zanahori +cuboid/cuboid_2,un prism rectangul verd +semicylinder/semicylinder_1,mit de un cilindr azul +arch/arch_1,un prism rectangul amarill con concav +banana/banana_1,esta imag no aparec +eggplant/eggplant_1,una berenjen +cylinder/cylinder_1,un cilindr amarill +eggplant/eggplant_2,una berenjen +lime/lime_3,un limon +lemon/lemon_3,un limon sicilian +tomato/tomato_4,un tomat +corn/corn_2,un sabug de maiz +corn/corn_2,un sabug de maiz +cube/cube_2,un cub verd +lemon/lemon_4,un limon +cucumber/cucumber_2,un pepin +triangle/triangle_2,un prism triangul amarill +semicylinder/semicylinder_3,mit de un cilindr amarill +triangle/triangle_4,un prim triangul azul +carrot/carrot_3,una zanahori +lime/lime_1,un limon +triangle/triangle_3,un prim triangul verd +lime/lime_3,un limon +cabbage/cabbage_3,un repoll purpur +eggplant/eggplant_3,una berenjen +cabbage/cabbage_3,un repoll purpur +eggplant/eggplant_4,una berenjen +lime/lime_1,un limon +carrot/carrot_2,una zanahori +semicylinder/semicylinder_1,mit de un cilindr azul +orange/orange_2,una naranj +cube/cube_4,un cub roj +cuboid/cuboid_4,un prism rectangul azul +carrot/carrot_1,una zanahori +semicylinder/semicylinder_2,mit de un cilindr roj +semicylinder/semicylinder_3,mit de un cilindr amarill +triangle/triangle_3,un prism triangul verd diff --git a/list_of_images.conf b/OLD GLS/list_of_images.conf similarity index 100% rename from list_of_images.conf rename to OLD GLS/list_of_images.conf diff --git a/list_of_instances.conf b/OLD GLS/list_of_instances.conf similarity index 100% rename from list_of_instances.conf rename to OLD GLS/list_of_instances.conf diff --git a/process_output.py b/OLD GLS/process_output.py similarity index 100% rename from process_output.py rename to OLD GLS/process_output.py diff --git a/recentNegExamples.pickle b/OLD GLS/recentNegExamples.pickle similarity index 100% rename from recentNegExamples.pickle rename to OLD GLS/recentNegExamples.pickle diff --git a/training_testing_test b/OLD GLS/training_testing_test similarity index 100% rename from training_testing_test rename to OLD GLS/training_testing_test diff --git a/README.md b/README.md index 8ff3f39..95e95b8 100644 --- a/README.md +++ b/README.md @@ -1,33 +1,7 @@ -# Grounded language Learning System - -General system framework for learning word-as-classifer groundings - -### Prerequisites - -- python 2.7 -- pandas -- genism - -## Running the tests - -Visual features should be stored in a folder one diectory above GLS - - -#### Preprocessing language input - -``` -python2 preprocess_descriptions.py <"stop", "lemm", or "stemm"> -``` - -#### Learning - -``` -python2 cLL-ML.py --resDir --cat --pre --cutoff --seed --visfeat --listof --negexmpl -``` - -#### Testing / Validation - -``` -python2 macro-pos5DescrNegDocVecdistractorTest.py /NoOfDataPoints/ +# GLSv2 +This will be the version of GLS that implements more modular design & framework ideas that allow for further innovations +To run the preprocess description run the follwoing shell command. Note that you can use any subset of the 3 last arguments (stop, lemm, stemm). +```bash +python preprocess_descriptions.py conf_files/UW_english/UW_document_per_instance_english.conf english stop lemm stemm ``` diff --git a/Validation/OG/UW_raw_75_object_.5.csv b/Validation/OG/UW_raw_75_object_.5.csv deleted file mode 100644 index 75affb6..0000000 --- a/Validation/OG/UW_raw_75_object_.5.csv +++ /dev/null @@ -1,2875 +0,0 @@ -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7683333333333333,1.0,0.65,0.75,1,25 -yellow,0.925,0.8333333333333333,1.0,0.8933333333333332,6,24 -looks,0.63,0.9,0.6166666666666666,0.65,1,24 -keyboard,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -glue,0.7466666666666667,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.4999999999999999,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.51,1.0,0.5,0.6333333333333333,1,26 -cup,0.3983333333333334,0.5,0.5833333333333333,0.51,1,26 -folded,0.65,1.0,0.6833333333333333,0.7666666666666666,1,26 -jam,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -black,1.0,1.0,1.0,1.0,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7833333333333333,1.0,0.7333333333333332,0.8,1,26 -soccer,0.5149999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -hat,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -brown,0.8733333333333334,1.0,0.8333333333333333,0.9,2,25 -coffee,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -handle,0.5933333333333334,1.0,0.5833333333333333,0.7,1,25 -food,0.75,1.0,0.7,0.7833333333333333,1,24 -towel,0.7,1.0,0.6666666666666666,0.75,1,26 -chips,0.795,1.0,0.6333333333333333,0.75,1,26 -stapler,0.8149999999999998,1.0,0.65,0.7666666666666667,1,26 -onion,0.8566666666666667,1.0,0.7333333333333333,0.8166666666666668,1,26 -bag,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -sponge,0.615,1.0,0.4833333333333332,0.6333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7,1.0,0.6499999999999999,0.75,1,26 -special,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -leaf,0.7716666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -tube,0.4966666666666666,1.0,0.5166666666666666,0.65,1,26 -cell,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -mug,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -yogurt,0.6433333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.6666666666666667,0.95,0.6333333333333333,0.7,1,26 -red,0.8816666666666666,0.7666666666666666,1.0,0.8514285714285714,3,26 -pepper,0.575,1.0,0.4833333333333333,0.6333333333333334,1,26 -wheat,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -kleenex,0.5916666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -toothbrush,0.5133333333333334,1.0,0.4999999999999999,0.6333333333333333,1,26 -binder,0.6266666666666667,1.0,0.55,0.6833333333333333,1,26 -baseball,0.6483333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -pliers,0.6416666666666666,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6416666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -thins,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -package,0.65,1.0,0.5833333333333333,0.7,1,26 -k,0.6900000000000001,1.0,0.65,0.75,1,26 -jelly,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -fruit,0.6383333333333333,0.6666666666666667,0.8,0.6733333333333333,2,25 -apple,0.575,0.9,0.6333333333333333,0.6666666666666667,1,25 -bell,0.6933333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -battery,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jar,0.5966666666666667,1.0,0.6,0.7166666666666667,1,26 -bound,0.7466666666666667,1.0,0.7166666666666666,0.8,1,26 -lettuce,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -brush,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -scissors,0.6583333333333334,1.0,0.6833333333333333,0.7666666666666666,1,26 -lime,0.6233333333333333,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.73,1.0,0.6333333333333333,0.75,1,26 -top,0.6399999999999999,1.0,0.6,0.7166666666666667,1,26 -spiral,0.5133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -handles,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -camera,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -eraser,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,23 -banana,0.6583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -pitcher,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -phone,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -stick,0.7849999999999999,1.0,0.7166666666666666,0.8,1,25 -cereal,0.76,1.0,0.7666666666666666,0.8333333333333333,1,26 -bulb,0.8716666666666667,1.0,0.8333333333333334,0.9000000000000001,2,26 -hair,0.6333333333333332,1.0,0.5666666666666667,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -can,1.0,1.0,1.0,1.0,2,26 -coca,0.79,1.0,0.6166666666666666,0.7333333333333333,1,26 -crackers,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -plate,0.6883333333333334,1.0,0.6666666666666666,0.7666666666666667,1,25 -calculator,0.655,1.0,0.5833333333333333,0.7,1,26 -tissues,0.525,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.8016666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -pink,0.7966666666666666,1.0,0.7166666666666666,0.8,1,25 -lemon,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -peach,0.6816666666666666,1.0,0.55,0.6833333333333333,1,26 -bowl,0.6216666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.63,1.0,0.6333333333333332,0.7333333333333333,1,26 -blue,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -used,0.5833333333333333,1.0,0.5333333333333332,0.6666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.5466666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -ball,0.7216666666666667,1.0,0.6499999999999999,0.75,1,25 -notebook,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -garlic,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -cleaning,0.6133333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -pair,0.8383333333333333,1.0,0.8,0.8800000000000001,2,27 -container,0.755,1.0,0.7166666666666666,0.8,1,25 -tomato,0.4383333333333333,0.75,0.5666666666666667,0.5566666666666666,1,26 -cellphone,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -potato,0.8633333333333333,1.0,0.7833333333333333,0.85,1,25 -light,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.96,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6544598765432099 -F1-Score: 0.6961243386243384 -Precision: 0.9098765432098765 -Recall: 0.6152777777777778 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8216666666666667,1.0,0.7833333333333333,0.85,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.7416666666666667,0.95,0.7499999999999999,0.7833333333333333,1,24 -keyboard,0.7383333333333333,1.0,0.65,0.75,1,26 -glue,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6166666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -flashlight,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -cup,0.5366666666666667,0.5,0.6666666666666666,0.5466666666666666,1,26 -folded,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -jam,0.6249999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -black,0.8966666666666667,0.8083333333333332,1.0,0.879047619047619,6,23 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.6183333333333334,1.0,0.4833333333333334,0.6333333333333333,1,26 -soccer,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -hat,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -brown,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,25 -coffee,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -handle,0.605,1.0,0.5,0.65,1,26 -food,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,24 -towel,0.65,1.0,0.55,0.6833333333333333,1,26 -chips,0.6766666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -stapler,0.635,1.0,0.5499999999999999,0.6833333333333333,1,26 -onion,0.5916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -bag,0.7016666666666667,1.0,0.5833333333333333,0.7,1,26 -sponge,0.505,1.0,0.4999999999999999,0.6333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.8133333333333332,1.0,0.7833333333333333,0.85,1,25 -special,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.6833333333333333,1.0,0.55,0.6833333333333333,1,26 -leaf,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -tube,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.48500000000000004,0.55,0.6833333333333333,0.5533333333333333,1,26 -mug,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -yogurt,0.6766666666666666,1.0,0.6499999999999999,0.75,1,26 -plantain,0.6799999999999999,1.0,0.7499999999999999,0.8166666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.6216666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -wheat,0.735,1.0,0.65,0.75,1,26 -kleenex,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -toothbrush,0.5683333333333332,1.0,0.4666666666666666,0.6166666666666667,1,26 -binder,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -baseball,0.8083333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -pliers,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5599999999999999,1.0,0.5833333333333333,0.7,1,26 -thins,0.7916666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -package,0.5966666666666667,1.0,0.5166666666666666,0.65,1,26 -k,0.605,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -fruit,0.7683333333333333,0.6333333333333333,0.9333333333333332,0.7033333333333334,2,25 -apple,0.7133333333333334,0.9,0.7166666666666666,0.7333333333333333,1,25 -bell,0.6250000000000001,1.0,0.5833333333333333,0.7,1,26 -battery,0.6166666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -jar,0.5133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bound,0.5933333333333333,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.6633333333333333,1.0,0.55,0.6833333333333333,1,26 -brush,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -scissors,0.5966666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -lime,0.7666666666666667,1.0,0.5666666666666667,0.7,1,25 -toothpaste,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -top,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.5516666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -handles,0.6049999999999999,1.0,0.4833333333333333,0.6333333333333333,1,25 -camera,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -eraser,0.8133333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.8183333333333334,0.65,1.0,0.7780952380952381,5,21 -banana,0.625,1.0,0.6833333333333333,0.7666666666666666,1,26 -pitcher,0.6216666666666667,1.0,0.65,0.75,1,26 -phone,0.41666666666666663,1.0,0.4666666666666666,0.6,1,26 -stick,0.4050000000000001,1.0,0.4333333333333333,0.5833333333333333,1,25 -cereal,0.74,1.0,0.6166666666666666,0.7333333333333333,1,26 -bulb,0.9333333333333332,1.0,0.9333333333333332,0.96,2,27 -hair,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8,1.0,0.8,0.85,1,26 -can,0.9,1.0,0.9,0.9400000000000001,2,25 -coca,0.65,1.0,0.6166666666666666,0.7166666666666666,1,26 -crackers,0.655,1.0,0.5833333333333333,0.7,1,26 -plate,0.7433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,25 -calculator,0.5633333333333332,0.6,0.6833333333333333,0.5700000000000001,1,26 -tissues,0.6,1.0,0.5499999999999999,0.6833333333333333,1,26 -juice,0.7100000000000001,1.0,0.5833333333333333,0.7166666666666667,1,26 -pink,0.6133333333333333,1.0,0.5,0.65,1,25 -lemon,0.7266666666666667,1.0,0.65,0.75,1,26 -peach,0.7633333333333334,1.0,0.7166666666666666,0.8,1,26 -bowl,0.5333333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5983333333333334,1.0,0.5333333333333332,0.6666666666666666,1,26 -blue,0.6666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,25 -used,0.66,1.0,0.4999999999999999,0.65,1,23 -energizer,0,0,0,0,1,26 -pear,0.5549999999999999,1.0,0.4999999999999999,0.65,1,26 -ball,0.8150000000000001,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.8266666666666665,1.0,0.7833333333333333,0.85,1,26 -garlic,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -cleaning,0.6216666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -pair,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -container,0.5333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -tomato,0.6683333333333333,0.9,0.5666666666666667,0.6333333333333333,1,26 -cellphone,0.465,0.55,0.6,0.53,1,26 -potato,0.65,1.0,0.6666666666666666,0.75,1,25 -light,0.8666666666666666,1.0,0.8333333333333334,0.9000000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.641219135802469 -F1-Score: 0.6825661375661377 -Precision: 0.898070987654321 -Recall: 0.6061728395061728 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.65,1.0,0.6333333333333333,0.7333333333333333,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.6216666666666667,0.9,0.6333333333333333,0.6666666666666667,1,24 -keyboard,0.77,1.0,0.5833333333333333,0.7166666666666667,1,26 -glue,0.8300000000000001,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.6466666666666666,1.0,0.6499999999999999,0.75,1,26 -flashlight,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.23333333333333334,0.55,0.4666666666666666,0.4633333333333334,1,26 -folded,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -jam,0.6466666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -black,0.8983333333333334,0.8,1.0,0.8733333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -soccer,0.6766666666666666,1.0,0.65,0.75,1,26 -hat,0.7,1.0,0.65,0.75,1,26 -brown,0.8800000000000001,1.0,0.8666666666666666,0.9199999999999999,2,24 -coffee,0.4499999999999999,1.0,0.4833333333333332,0.6166666666666666,1,25 -handle,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,25 -food,0.5916666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -towel,0.7733333333333333,1.0,0.6499999999999999,0.75,1,26 -chips,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -bag,0.7016666666666665,1.0,0.5999999999999999,0.7166666666666667,1,26 -sponge,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.6766666666666666,1.0,0.55,0.6833333333333333,1,25 -special,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -colgate,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -leaf,0.71,1.0,0.5833333333333333,0.7,1,26 -tube,0.5966666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -cell,0.6933333333333332,1.0,0.6,0.7166666666666667,1,26 -mug,0.6833333333333333,1.0,0.7333333333333333,0.8,1,25 -yogurt,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -plantain,0.6183333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -red,0.9666666666666668,0.9,1.0,0.9333333333333332,3,26 -pepper,0.8266666666666665,1.0,0.7166666666666666,0.8,1,26 -wheat,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -kleenex,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.6133333333333334,1.0,0.5166666666666666,0.65,1,26 -binder,0.7,1.0,0.65,0.75,1,26 -baseball,0.71,1.0,0.5999999999999999,0.7166666666666666,1,26 -pliers,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -thins,0.8150000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -package,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -k,0.655,1.0,0.65,0.75,1,26 -jelly,0.7466666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -fruit,0.7233333333333333,0.6,0.8999999999999998,0.7033333333333334,2,25 -apple,0.4633333333333334,0.9,0.5,0.5666666666666667,1,25 -bell,0.7166666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -battery,0.65,1.0,0.6666666666666666,0.75,1,26 -jar,0.75,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666668,1,26 -lettuce,0.5083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -brush,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -scissors,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -lime,0.6633333333333333,1.0,0.55,0.6833333333333333,1,25 -toothpaste,0.4416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -top,0.6466666666666667,1.0,0.7,0.7833333333333333,1,26 -spiral,0.73,1.0,0.5999999999999999,0.7166666666666667,1,26 -handles,0.7,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -eraser,0.71,1.0,0.6,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6216666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -pitcher,0.5516666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -phone,0.8566666666666667,1.0,0.7,0.8,1,26 -stick,0.6133333333333333,1.0,0.5,0.65,1,25 -cereal,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -bulb,0.8766666666666666,1.0,0.8333333333333333,0.9,2,26 -hair,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.585,1.0,0.4833333333333334,0.6333333333333333,1,26 -can,0.93,1.0,0.9,0.9400000000000001,2,24 -coca,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -crackers,0.755,1.0,0.5999999999999999,0.7166666666666666,1,26 -plate,0.5266666666666666,1.0,0.4666666666666666,0.6166666666666666,1,25 -calculator,0.635,1.0,0.6,0.7166666666666667,1,26 -tissues,0.5966666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -juice,0.385,0.5,0.6,0.5199999999999999,1,26 -pink,0.6,1.0,0.7333333333333333,0.8,1,25 -lemon,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -peach,0.715,1.0,0.6166666666666666,0.7333333333333333,1,26 -bowl,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.4933333333333333,1.0,0.4166666666666667,0.5833333333333333,1,26 -blue,0.93,1.0,0.8833333333333332,0.9166666666666666,1,25 -used,0.6599999999999999,1.0,0.5333333333333333,0.6666666666666666,1,23 -energizer,0,0,0,0,1,26 -pear,0.75,1.0,0.7499999999999999,0.8166666666666667,1,26 -ball,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -garlic,0.76,1.0,0.65,0.75,1,26 -cleaning,0.6683333333333332,1.0,0.5,0.65,1,26 -pair,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -container,0.7633333333333333,1.0,0.7166666666666666,0.8,1,25 -tomato,0.6733333333333333,0.8,0.7,0.65,1,26 -cellphone,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -potato,0.6966666666666665,1.0,0.6499999999999999,0.75,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6548919753086418 -F1-Score: 0.6935185185185184 -Precision: 0.9069444444444443 -Recall: 0.6135802469135803 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8133333333333332,1.0,0.7166666666666666,0.8,1,25 -yellow,0.9133333333333334,0.7666666666666666,1.0,0.8466666666666667,6,24 -looks,0.5483333333333333,0.85,0.5666666666666667,0.6,1,24 -keyboard,0.425,1.0,0.4833333333333334,0.6166666666666666,1,26 -glue,0.6883333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.66,1.0,0.6,0.7166666666666667,1,26 -flashlight,0.625,1.0,0.5499999999999999,0.6833333333333333,1,26 -cup,0.6066666666666667,0.5,0.7166666666666666,0.5633333333333332,1,26 -folded,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -jam,0.7333333333333333,1.0,0.65,0.75,1,26 -black,0.9633333333333333,0.9,1.0,0.9333333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.5966666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -soccer,0.55,1.0,0.5333333333333333,0.6666666666666667,1,26 -hat,0.5883333333333333,1.0,0.6,0.7166666666666667,1,26 -brown,0.9216666666666666,1.0,0.9,0.9400000000000001,2,24 -coffee,0.7,1.0,0.7,0.7833333333333333,1,26 -handle,0.6833333333333333,1.0,0.7333333333333333,0.8,1,25 -food,0.875,1.0,0.8333333333333333,0.8833333333333332,1,26 -towel,0.805,1.0,0.7166666666666666,0.8,1,26 -chips,0.6816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.63,1.0,0.5833333333333333,0.7,1,26 -onion,0.6966666666666665,1.0,0.6833333333333332,0.7666666666666666,1,26 -bag,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -sponge,0.6883333333333334,1.0,0.65,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.8,1.0,0.7166666666666666,0.8,1,25 -special,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -colgate,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -leaf,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -tube,0.8633333333333333,1.0,0.75,0.8333333333333333,1,26 -cell,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -mug,0.4333333333333333,1.0,0.45,0.6,1,26 -yogurt,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -plantain,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -red,0.8633333333333333,0.7333333333333333,1.0,0.8333333333333333,3,25 -pepper,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -wheat,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -kleenex,0.6133333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -toothbrush,0.4633333333333334,1.0,0.4,0.5666666666666667,1,26 -binder,0.655,1.0,0.55,0.6833333333333333,1,26 -baseball,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -pliers,0.6966666666666667,1.0,0.6,0.7166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.73,1.0,0.7166666666666666,0.8,1,26 -thins,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -package,0.4833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -k,0.5933333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -jelly,0.72,1.0,0.5166666666666666,0.6666666666666667,1,26 -fruit,0.6799999999999999,0.6333333333333334,0.9,0.6966666666666667,2,25 -apple,0.6183333333333333,0.9,0.5833333333333333,0.6333333333333333,1,25 -bell,0.5766666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -battery,0.9216666666666666,1.0,0.85,0.8999999999999998,1,26 -jar,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.55,1.0,0.5333333333333333,0.6666666666666666,1,26 -lettuce,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -scissors,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -lime,0.7150000000000001,1.0,0.6666666666666666,0.7666666666666666,1,25 -toothpaste,0.7816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -top,0.5933333333333334,1.0,0.6333333333333332,0.7333333333333333,1,26 -spiral,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -handles,0.73,1.0,0.6166666666666666,0.7333333333333334,1,25 -camera,0.6300000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -pitcher,0.6383333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -phone,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -stick,0.6183333333333333,1.0,0.5833333333333333,0.7,1,25 -cereal,0.7883333333333333,1.0,0.6,0.7333333333333334,1,26 -bulb,0.96,1.0,0.9333333333333332,0.96,2,26 -hair,0.5549999999999999,1.0,0.4999999999999999,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7416666666666667,1.0,0.7499999999999999,0.8166666666666667,1,26 -can,0.915,1.0,0.8666666666666666,0.9200000000000002,2,24 -coca,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -crackers,0.4766666666666667,1.0,0.4499999999999999,0.6,1,26 -plate,0.7916666666666666,1.0,0.7,0.7833333333333333,1,25 -calculator,0.5466666666666666,0.5,0.6666666666666666,0.5466666666666666,1,26 -tissues,0.86,1.0,0.75,0.8333333333333333,1,26 -juice,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -pink,0.7,1.0,0.5999999999999999,0.7166666666666666,1,25 -lemon,0.4333333333333334,1.0,0.5333333333333332,0.65,1,26 -peach,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -bowl,0.5499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -blue,0.675,1.0,0.7,0.7833333333333334,1,25 -used,0.6083333333333333,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.7,1.0,0.5999999999999999,0.7166666666666667,1,26 -ball,0.705,1.0,0.6166666666666666,0.7333333333333333,1,25 -notebook,0.6416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -garlic,0.45,1.0,0.5499999999999999,0.6666666666666666,1,26 -cleaning,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -pair,0.8716666666666667,1.0,0.8333333333333334,0.9000000000000001,2,27 -container,0.8,1.0,0.75,0.8166666666666667,1,25 -tomato,0.5700000000000001,0.8,0.55,0.5833333333333333,1,26 -cellphone,0.7333333333333333,1.0,0.7166666666666666,0.8,1,26 -potato,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -light,0.9349999999999999,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.65054012345679 -F1-Score: 0.6922222222222222 -Precision: 0.9035493827160495 -Recall: 0.615432098765432 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,24 -keyboard,0.6466666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -glue,0.485,1.0,0.4666666666666666,0.6166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.4833333333333333,1.0,0.5333333333333332,0.65,1,26 -flashlight,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -cup,0.41000000000000003,0.5,0.6166666666666666,0.53,1,26 -folded,0.7166666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -jam,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -black,0.9833333333333334,0.95,1.0,0.9666666666666666,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -soccer,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -hat,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -brown,0.8416666666666668,1.0,0.8333333333333333,0.9,2,24 -coffee,0.6,1.0,0.6833333333333333,0.7666666666666666,1,25 -handle,0.6216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -food,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666668,1,25 -towel,0.675,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.7150000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.7,1.0,0.6833333333333333,0.7666666666666667,1,26 -onion,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -bag,0.79,1.0,0.6166666666666666,0.7333333333333333,1,26 -sponge,0.76,1.0,0.6833333333333333,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6766666666666666,1.0,0.5666666666666667,0.7,1,25 -special,0.7333333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -colgate,0.75,1.0,0.7499999999999999,0.8166666666666667,1,26 -leaf,0.655,1.0,0.5999999999999999,0.7166666666666666,1,26 -tube,0.635,1.0,0.5999999999999999,0.7166666666666666,1,26 -cell,0.43166666666666675,0.6,0.6333333333333333,0.5466666666666667,1,26 -mug,0.7216666666666667,1.0,0.6333333333333333,0.75,1,25 -yogurt,0.6383333333333333,1.0,0.6,0.7166666666666667,1,26 -plantain,0.65,1.0,0.6666666666666666,0.75,1,26 -red,0.9833333333333334,0.95,1.0,0.9666666666666666,3,25 -pepper,0.3833333333333333,1.0,0.4666666666666666,0.6,1,26 -wheat,0.835,1.0,0.7166666666666666,0.8,1,26 -kleenex,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.585,1.0,0.5333333333333333,0.6666666666666667,1,26 -binder,0.7066666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -baseball,0.5666666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -pliers,0.5766666666666668,1.0,0.4666666666666666,0.6166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -thins,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -package,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -k,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.7166666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -fruit,0.7633333333333333,0.75,0.8666666666666666,0.78,2,25 -apple,0.6983333333333335,0.9,0.6166666666666666,0.6666666666666667,1,25 -bell,0.605,1.0,0.5499999999999999,0.6833333333333333,1,26 -battery,0.6966666666666667,1.0,0.65,0.75,1,26 -jar,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -bound,0.805,1.0,0.6833333333333333,0.7833333333333334,1,26 -lettuce,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333334,1,26 -brush,0.6433333333333333,1.0,0.5666666666666667,0.7,1,26 -scissors,0.5333333333333333,1.0,0.5499999999999999,0.6666666666666667,1,26 -lime,0.6499999999999999,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.6,1.0,0.6499999999999999,0.75,1,26 -handles,0.6733333333333333,1.0,0.6499999999999999,0.75,1,25 -camera,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -eraser,0.645,1.0,0.4833333333333333,0.6333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7516666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -pitcher,0.4916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -phone,0.7233333333333334,1.0,0.6499999999999999,0.75,1,26 -stick,0.5433333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -cereal,0.425,1.0,0.4833333333333332,0.6166666666666666,1,26 -bulb,0.8833333333333332,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.69,1.0,0.5499999999999999,0.6833333333333333,1,26 -can,0.9,1.0,0.9,0.9400000000000001,2,25 -coca,0.7316666666666667,1.0,0.5666666666666667,0.7,1,26 -crackers,0.5333333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -plate,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -calculator,0.6183333333333334,0.7,0.6833333333333333,0.6166666666666667,1,26 -tissues,0.8333333333333333,1.0,0.7999999999999999,0.85,1,26 -juice,0.7366666666666667,1.0,0.5333333333333333,0.6833333333333333,1,26 -pink,0.7166666666666666,1.0,0.7,0.7833333333333333,1,25 -lemon,0.6266666666666667,1.0,0.6499999999999999,0.75,1,26 -peach,0.785,1.0,0.6333333333333333,0.75,1,26 -bowl,0.5133333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5966666666666667,1.0,0.4833333333333332,0.6333333333333333,1,26 -blue,0.6966666666666665,1.0,0.6166666666666666,0.7333333333333334,1,25 -used,0.6533333333333333,1.0,0.5,0.65,1,24 -energizer,0,0,0,0,1,26 -pear,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -ball,0.7333333333333333,1.0,0.7499999999999999,0.8166666666666667,1,25 -notebook,0.5883333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -garlic,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -cleaning,0.655,1.0,0.6166666666666666,0.7333333333333333,1,26 -pair,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -container,0.6499999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -tomato,0.6316666666666666,0.95,0.5666666666666667,0.6666666666666667,1,26 -cellphone,0.43999999999999995,0.6,0.6,0.5399999999999999,1,26 -potato,0.475,1.0,0.5166666666666666,0.65,1,25 -light,0.8583333333333332,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6385802469135802 -F1-Score: 0.6866975308641976 -Precision: 0.9064814814814816 -Recall: 0.6029320987654322 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6633333333333333,1.0,0.5833333333333333,0.7,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.6749999999999999,1.0,0.6333333333333333,0.7333333333333333,1,24 -keyboard,0.4883333333333333,1.0,0.4333333333333334,0.5833333333333333,1,26 -glue,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.4133333333333333,1.0,0.4499999999999999,0.6,1,26 -cup,0.4533333333333333,0.5,0.65,0.5366666666666667,1,26 -folded,0.7216666666666667,1.0,0.65,0.75,1,26 -jam,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.9266666666666667,0.8333333333333333,1.0,0.8933333333333333,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -soccer,0.4966666666666666,1.0,0.4499999999999999,0.6,1,26 -hat,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,24 -coffee,0.6133333333333334,1.0,0.6,0.7166666666666667,1,25 -handle,0.7083333333333333,1.0,0.7166666666666666,0.8,1,26 -food,0.6683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -towel,0.6849999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -chips,0.6583333333333333,1.0,0.6499999999999999,0.75,1,26 -stapler,0.7150000000000001,1.0,0.6,0.7166666666666666,1,26 -onion,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -bag,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.7566666666666667,1.0,0.6333333333333333,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.5083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,25 -special,0.7133333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -colgate,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -leaf,0.5216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -cell,0.48166666666666663,0.65,0.5999999999999999,0.5566666666666666,1,26 -mug,0.65,1.0,0.6499999999999999,0.75,1,25 -yogurt,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -plantain,0.8,1.0,0.8166666666666667,0.8666666666666666,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -wheat,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.6849999999999999,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -binder,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -pliers,0.5633333333333332,1.0,0.6166666666666666,0.7166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.655,1.0,0.5833333333333333,0.7,1,26 -thins,0.6216666666666666,1.0,0.5166666666666666,0.65,1,26 -package,0.6799999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.44333333333333336,1.0,0.4333333333333333,0.5833333333333333,1,26 -jelly,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -fruit,0.7933333333333332,0.75,0.9,0.78,2,25 -apple,0.7150000000000001,1.0,0.6166666666666666,0.7333333333333333,1,25 -bell,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -jar,0.4966666666666666,1.0,0.4499999999999999,0.6,1,26 -bound,0.8966666666666667,1.0,0.8,0.8666666666666668,1,26 -lettuce,0.7466666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -brush,0.5383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -scissors,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -lime,0.5516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -toothpaste,0.65,1.0,0.6666666666666666,0.75,1,26 -top,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -spiral,0.6333333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -handles,0.5966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.725,1.0,0.7499999999999999,0.8166666666666667,1,26 -eraser,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,0.8916666666666668,0.7916666666666667,1.0,0.8723809523809525,5,21 -banana,0.6599999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -pitcher,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -stick,0.8166666666666667,1.0,0.7833333333333333,0.85,1,25 -cereal,0.8216666666666665,1.0,0.7333333333333333,0.8166666666666668,1,26 -bulb,0.8766666666666666,1.0,0.8333333333333333,0.9,2,27 -hair,0.6499999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.73,1.0,0.7,0.7833333333333334,1,26 -can,0.8616666666666667,1.0,0.8,0.8800000000000001,2,25 -coca,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -crackers,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -plate,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,24 -calculator,0.6,1.0,0.6166666666666666,0.7166666666666666,1,26 -tissues,0.45,1.0,0.4833333333333332,0.6166666666666666,1,26 -juice,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -pink,0.4583333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -lemon,0.875,1.0,0.7833333333333333,0.85,1,26 -peach,0.18166666666666664,0.5,0.5166666666666666,0.4833333333333334,1,26 -bowl,0.75,1.0,0.7499999999999999,0.8166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -blue,0.5833333333333334,0.95,0.4666666666666666,0.5833333333333333,1,25 -used,0.6083333333333333,1.0,0.55,0.6666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.85,1.0,0.7833333333333333,0.85,1,26 -ball,0.7133333333333334,1.0,0.5666666666666667,0.7,1,25 -notebook,0.6133333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -garlic,0.7249999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -cleaning,0.96,1.0,0.9,0.9333333333333332,1,26 -pair,0.8800000000000001,1.0,0.8666666666666666,0.9199999999999999,2,27 -container,0.7316666666666667,1.0,0.6,0.7166666666666667,1,26 -tomato,0.6266666666666666,0.9,0.5999999999999999,0.65,1,26 -cellphone,0.2966666666666667,0.7,0.4166666666666667,0.4766666666666667,1,26 -potato,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -light,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,21 -bottle,0.8966666666666665,1.0,0.8666666666666668,0.9200000000000002,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6428395061728395 -F1-Score: 0.6937566137566138 -Precision: 0.9034722222222222 -Recall: 0.6158950617283949 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.65,1.0,0.6333333333333333,0.7333333333333333,1,25 -yellow,0.9266666666666667,0.8166666666666667,1.0,0.8800000000000001,6,24 -looks,0.6066666666666667,0.8,0.6,0.6,1,24 -keyboard,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.6416666666666666,1.0,0.7,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.9266666666666667,1.0,0.85,0.8999999999999998,1,26 -flashlight,0.45166666666666666,1.0,0.45,0.6,1,26 -cup,0.2166666666666667,0.5,0.5,0.47333333333333333,1,26 -folded,0.6833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jam,0.6166666666666666,1.0,0.6666666666666666,0.75,1,26 -black,0.9466666666666669,0.8833333333333332,1.0,0.9266666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.73,1.0,0.6166666666666666,0.7333333333333333,1,26 -soccer,0.675,1.0,0.6166666666666666,0.7333333333333333,1,26 -hat,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -brown,0.9,1.0,0.8666666666666666,0.9200000000000002,2,25 -coffee,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -handle,0.5549999999999999,1.0,0.4833333333333333,0.6333333333333333,1,25 -food,0.7133333333333333,1.0,0.6,0.7166666666666667,1,26 -towel,0.6799999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -chips,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -stapler,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.5966666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -bag,0.65,1.0,0.5999999999999999,0.7166666666666667,1,26 -sponge,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -special,0.8099999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -colgate,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -leaf,0.5966666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.505,1.0,0.5166666666666666,0.65,1,26 -cell,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -mug,0.51,1.0,0.45,0.6,1,26 -yogurt,0.585,1.0,0.4666666666666666,0.6166666666666667,1,26 -plantain,0.6516666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -red,0.9433333333333334,0.85,1.0,0.8999999999999998,3,27 -pepper,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -wheat,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -kleenex,0.7566666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -toothbrush,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -binder,0.7416666666666666,1.0,0.7166666666666666,0.8,1,26 -baseball,0.85,1.0,0.8166666666666667,0.8666666666666668,1,26 -pliers,0.5416666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7833333333333333,1.0,0.7333333333333333,0.8,1,26 -thins,0.5966666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -package,0.6933333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -k,0.6683333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -jelly,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -fruit,0.675,0.6,0.8666666666666666,0.6900000000000001,2,25 -apple,0.41,1.0,0.45,0.6,1,25 -bell,0.7216666666666666,1.0,0.6499999999999999,0.75,1,26 -battery,0.7733333333333332,1.0,0.6166666666666666,0.7333333333333334,1,26 -jar,0.7133333333333333,1.0,0.6,0.7166666666666667,1,26 -bound,0.6,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.655,1.0,0.55,0.6833333333333333,1,26 -brush,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.89,1.0,0.7833333333333333,0.85,1,26 -lime,0.705,1.0,0.6166666666666666,0.7333333333333333,1,25 -toothpaste,0.7016666666666667,1.0,0.6499999999999999,0.75,1,26 -top,0.7233333333333334,1.0,0.6499999999999999,0.75,1,26 -spiral,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -handles,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -camera,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -eraser,0.5516666666666666,1.0,0.5,0.65,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7683333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -pitcher,0.6599999999999999,1.0,0.4999999999999999,0.65,1,26 -phone,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -stick,0.6599999999999999,1.0,0.5333333333333333,0.6666666666666667,1,25 -cereal,0.6166666666666666,1.0,0.6666666666666666,0.75,1,26 -bulb,0.975,1.0,0.9666666666666666,0.9800000000000001,2,27 -hair,0.7483333333333333,1.0,0.5999999999999999,0.7166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -can,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -coca,0.71,1.0,0.6166666666666666,0.7333333333333334,1,26 -crackers,0.8966666666666667,1.0,0.8,0.8666666666666666,1,26 -plate,0.505,1.0,0.4,0.5666666666666667,1,25 -calculator,0.5050000000000001,0.5,0.7166666666666666,0.5633333333333334,1,26 -tissues,0.6649999999999999,1.0,0.6,0.7166666666666667,1,26 -juice,0.6383333333333333,1.0,0.5666666666666667,0.7,1,26 -pink,0.5166666666666666,1.0,0.5333333333333333,0.65,1,25 -lemon,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -peach,0.505,1.0,0.5666666666666667,0.6833333333333333,1,26 -bowl,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -blue,0.6633333333333333,1.0,0.65,0.75,1,25 -used,0.7416666666666666,1.0,0.7,0.7833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6966666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -ball,0.7083333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.5766666666666667,1.0,0.41666666666666663,0.5833333333333333,1,26 -garlic,0.5599999999999999,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.675,1.0,0.5333333333333333,0.6666666666666667,1,26 -pair,0.9333333333333332,1.0,0.9333333333333332,0.96,2,27 -container,0.7266666666666666,1.0,0.5666666666666667,0.7,1,25 -tomato,0.45999999999999996,0.6,0.5166666666666666,0.5033333333333333,1,26 -cellphone,0.7466666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -potato,0.755,1.0,0.6166666666666666,0.7333333333333333,1,25 -light,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9083333333333332,1.0,0.9,0.9400000000000001,2,27 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6549691358024691 -F1-Score: 0.693641975308642 -Precision: 0.9032407407407407 -Recall: 0.6149691358024691 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.76,1.0,0.6666666666666666,0.7666666666666666,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.625,1.0,0.5333333333333333,0.6666666666666667,1,24 -keyboard,0.5266666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -glue,0.535,1.0,0.4833333333333333,0.6333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.45833333333333337,1.0,0.5,0.6333333333333333,1,26 -flashlight,0.6333333333333333,1.0,0.6,0.7166666666666666,1,26 -cup,0.3283333333333333,0.5,0.5166666666666666,0.4833333333333334,1,26 -folded,0.6249999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.76,1.0,0.7166666666666666,0.8,1,26 -black,0.8433333333333334,0.6166666666666666,1.0,0.7533333333333334,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6766666666666666,1.0,0.65,0.75,1,26 -soccer,0.8166666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -hat,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.8733333333333334,1.0,0.8333333333333334,0.9000000000000001,2,24 -coffee,0.6133333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -handle,0.5816666666666667,1.0,0.5,0.65,1,25 -food,0.6166666666666666,1.0,0.5833333333333333,0.7,1,25 -towel,0.5516666666666666,1.0,0.41666666666666663,0.5833333333333333,1,26 -chips,0.6,1.0,0.5833333333333333,0.7,1,26 -stapler,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -onion,0.7483333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -bag,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.7133333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.61,1.0,0.5666666666666667,0.6833333333333333,1,25 -special,0.6733333333333333,1.0,0.55,0.6833333333333333,1,26 -colgate,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -leaf,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -tube,0.5133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.37,0.7,0.4499999999999999,0.5033333333333333,1,26 -mug,0.51,1.0,0.5166666666666666,0.65,1,26 -yogurt,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -plantain,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -red,0.9666666666666668,0.9,1.0,0.9333333333333332,3,24 -pepper,0.5716666666666665,1.0,0.5166666666666666,0.65,1,26 -wheat,0.6916666666666667,1.0,0.65,0.75,1,26 -kleenex,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.7866666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -binder,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -baseball,0.4766666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -pliers,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7649999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -thins,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -package,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -k,0.65,1.0,0.5333333333333333,0.6666666666666667,1,26 -jelly,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -fruit,0.8400000000000001,0.85,0.8666666666666666,0.8200000000000001,2,25 -apple,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,25 -bell,0.6933333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -battery,0.47166666666666657,1.0,0.4499999999999999,0.6,1,26 -jar,0.8583333333333332,1.0,0.7833333333333333,0.85,1,26 -bound,0.6883333333333334,1.0,0.5666666666666667,0.7,1,26 -lettuce,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -brush,0.67,1.0,0.55,0.6833333333333333,1,26 -scissors,0.8666666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -lime,0.6216666666666667,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -top,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -spiral,0.635,1.0,0.6499999999999999,0.75,1,26 -handles,0.7333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.71,1.0,0.6666666666666666,0.7666666666666666,1,26 -eraser,0.7016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6516666666666666,1.0,0.4499999999999999,0.6166666666666667,1,26 -pitcher,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.64,1.0,0.5833333333333333,0.7,1,26 -stick,0.36666666666666664,1.0,0.3666666666666667,0.5333333333333333,1,25 -cereal,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -bulb,0.9266666666666665,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.6,1.0,0.7333333333333333,0.8,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.4916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -can,0.9,1.0,0.8666666666666668,0.9200000000000002,2,24 -coca,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -crackers,0.7083333333333333,1.0,0.7166666666666666,0.8,1,26 -plate,0.5466666666666666,1.0,0.5499999999999999,0.6666666666666666,1,25 -calculator,0.7166666666666666,0.95,0.6833333333333332,0.7333333333333333,1,26 -tissues,0.735,1.0,0.7166666666666666,0.8,1,26 -juice,0.38,0.5,0.5,0.4866666666666667,1,26 -pink,0.6466666666666667,1.0,0.6833333333333333,0.7666666666666666,1,25 -lemon,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -peach,0.725,1.0,0.6499999999999999,0.75,1,26 -bowl,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7,1.0,0.7333333333333332,0.8,1,26 -blue,0.5983333333333333,1.0,0.4999999999999999,0.65,1,25 -used,0.36666666666666664,1.0,0.4,0.5666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -ball,0.6799999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -garlic,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -cleaning,0.44833333333333336,1.0,0.41666666666666663,0.5833333333333333,1,26 -pair,0.95,1.0,0.9333333333333332,0.96,2,26 -container,0.5416666666666667,1.0,0.4666666666666666,0.6166666666666667,1,25 -tomato,0.5666666666666667,0.95,0.5833333333333333,0.6666666666666666,1,26 -cellphone,0.6,0.7,0.6666666666666666,0.6066666666666667,1,26 -potato,0.8166666666666667,1.0,0.7833333333333333,0.85,1,25 -light,0.9349999999999999,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8550000000000001,1.0,0.8333333333333333,0.9,2,25 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6322376543209876 -F1-Score: 0.682530864197531 -Precision: 0.903858024691358 -Recall: 0.5987654320987653 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7233333333333334,1.0,0.6499999999999999,0.75,1,24 -yellow,0.9266666666666667,0.8166666666666668,1.0,0.8800000000000001,6,24 -looks,0.43833333333333335,0.9,0.5499999999999999,0.6,1,24 -keyboard,0.4683333333333334,1.0,0.41666666666666663,0.5833333333333333,1,26 -glue,0.5433333333333333,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.655,1.0,0.6166666666666666,0.7333333333333333,1,26 -cup,0.4716666666666667,0.5,0.6499999999999999,0.5366666666666667,1,26 -folded,0.715,1.0,0.6166666666666666,0.7333333333333333,1,26 -jam,0.8466666666666665,1.0,0.7833333333333333,0.85,1,26 -black,0.8933333333333333,0.7166666666666666,1.0,0.8133333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -soccer,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -hat,0.5183333333333333,1.0,0.5166666666666666,0.65,1,26 -brown,0.875,1.0,0.8666666666666666,0.9199999999999999,2,24 -coffee,0.8150000000000001,1.0,0.7333333333333333,0.8166666666666668,1,25 -handle,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -food,0.6133333333333334,1.0,0.5833333333333333,0.7,1,25 -towel,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -chips,0.725,1.0,0.7,0.7833333333333334,1,26 -stapler,0.7249999999999999,1.0,0.7,0.7833333333333333,1,26 -onion,0.8016666666666665,1.0,0.65,0.7666666666666667,1,26 -bag,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -sponge,0.905,1.0,0.8333333333333333,0.8833333333333332,1,26 -zero,0,0,0,0,1,26 -computer,0.6466666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -special,0.7166666666666666,1.0,0.6,0.7166666666666667,1,26 -colgate,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -leaf,0.55,1.0,0.55,0.6666666666666666,1,26 -tube,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -cell,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -mug,0.605,1.0,0.5666666666666667,0.6833333333333333,1,25 -yogurt,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -plantain,0.48,1.0,0.41666666666666663,0.5833333333333334,1,26 -red,0.95,0.9,1.0,0.9400000000000001,3,25 -pepper,0.6633333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -wheat,0.7333333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -kleenex,0.5883333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -toothbrush,0.44666666666666666,1.0,0.4166666666666667,0.5666666666666667,1,26 -binder,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -baseball,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -pliers,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.86,1.0,0.7666666666666666,0.8333333333333333,1,26 -thins,0.755,1.0,0.65,0.75,1,26 -package,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -k,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -jelly,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -fruit,0.78,0.8,0.8333333333333334,0.7666666666666666,2,26 -apple,0.6399999999999999,0.95,0.6,0.6833333333333333,1,25 -bell,0.615,1.0,0.4999999999999999,0.65,1,26 -battery,0.7716666666666666,1.0,0.6833333333333333,0.7833333333333334,1,26 -jar,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -bound,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.675,1.0,0.5666666666666667,0.7,1,26 -brush,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -scissors,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -lime,0.6683333333333333,1.0,0.5166666666666666,0.6666666666666667,1,25 -toothpaste,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -top,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.6916666666666667,1.0,0.5999999999999999,0.7166666666666667,1,25 -camera,0.6066666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -eraser,0.7466666666666666,1.0,0.7166666666666666,0.8,1,26 -creamer,0,0,0,0,1,26 -white,0.8733333333333334,0.7166666666666667,1.0,0.82,5,21 -banana,0.7833333333333333,1.0,0.7,0.7833333333333333,1,26 -pitcher,0.75,1.0,0.7,0.7833333333333333,1,26 -phone,0.4883333333333334,1.0,0.5166666666666666,0.65,1,26 -stick,0.5599999999999999,1.0,0.5166666666666666,0.65,1,25 -cereal,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -bulb,0.9016666666666667,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.655,1.0,0.6333333333333333,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6900000000000001,1.0,0.5666666666666667,0.7,1,26 -can,0.9066666666666666,1.0,0.8666666666666666,0.9199999999999999,2,26 -coca,0.6766666666666666,1.0,0.6,0.7166666666666667,1,26 -crackers,0.6216666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -plate,0.7649999999999999,1.0,0.6333333333333333,0.75,1,25 -calculator,0.6166666666666666,0.5,0.7666666666666666,0.58,1,26 -tissues,0.8800000000000001,1.0,0.7833333333333333,0.85,1,26 -juice,0.8283333333333334,1.0,0.6833333333333333,0.7833333333333334,1,26 -pink,0.7166666666666667,1.0,0.65,0.75,1,25 -lemon,0.6933333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -peach,0.4333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -bowl,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.76,1.0,0.65,0.75,1,26 -blue,0.7166666666666666,1.0,0.6833333333333333,0.7666666666666666,1,25 -used,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.6166666666666666,1.0,0.65,0.75,1,26 -ball,0.6883333333333332,1.0,0.6166666666666666,0.7333333333333333,1,25 -notebook,0.5933333333333333,1.0,0.5833333333333333,0.7,1,26 -garlic,0.7033333333333334,1.0,0.5666666666666667,0.7,1,26 -cleaning,0.6266666666666666,1.0,0.5833333333333333,0.7,1,26 -pair,0.8350000000000002,1.0,0.8,0.8800000000000001,2,26 -container,0.5966666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -tomato,0.7266666666666666,0.9,0.6333333333333333,0.7,1,26 -cellphone,0.7,1.0,0.7,0.7833333333333333,1,26 -potato,0.7466666666666667,1.0,0.7,0.7833333333333333,1,25 -light,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9266666666666665,1.0,0.8999999999999998,0.9400000000000001,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6593981481481482 -F1-Score: 0.6935802469135801 -Precision: 0.9046296296296297 -Recall: 0.6154320987654323 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6433333333333333,1.0,0.5499999999999999,0.6833333333333333,1,24 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.7466666666666667,0.85,0.75,0.7166666666666667,1,24 -keyboard,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -glue,0.73,1.0,0.7,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.71,1.0,0.65,0.75,1,26 -cup,0.6133333333333334,0.5,0.7999999999999999,0.5866666666666667,1,26 -folded,0.7366666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -jam,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.9216666666666666,0.8166666666666667,1.0,0.8800000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7133333333333333,1.0,0.65,0.75,1,26 -soccer,0.6433333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -hat,0.5716666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -brown,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,24 -coffee,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333334,1,25 -handle,0.635,1.0,0.5333333333333333,0.6666666666666667,1,25 -food,0.8099999999999999,1.0,0.7666666666666666,0.8333333333333334,1,26 -towel,0.5483333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -chips,0.6216666666666667,1.0,0.65,0.75,1,26 -stapler,0.805,1.0,0.7166666666666666,0.8,1,26 -onion,0.6116666666666666,0.8,0.65,0.6333333333333333,1,26 -bag,0.7166666666666666,1.0,0.6833333333333332,0.7666666666666666,1,26 -sponge,0.61,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7266666666666667,1.0,0.5999999999999999,0.7166666666666666,1,25 -special,0.7016666666666667,1.0,0.6,0.7166666666666667,1,26 -colgate,0.45,1.0,0.4999999999999999,0.6333333333333333,1,26 -leaf,0.42666666666666664,1.0,0.5,0.6333333333333333,1,26 -tube,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -cell,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -mug,0.6216666666666667,1.0,0.55,0.6833333333333333,1,25 -yogurt,0.5966666666666666,1.0,0.5499999999999999,0.6666666666666667,1,26 -plantain,0.7849999999999999,1.0,0.6333333333333333,0.75,1,26 -red,0.9033333333333335,0.7666666666666666,1.0,0.8466666666666667,3,26 -pepper,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -wheat,0.505,1.0,0.4333333333333333,0.6,1,26 -kleenex,0.755,1.0,0.7,0.7833333333333333,1,26 -toothbrush,0.7183333333333334,1.0,0.5833333333333333,0.7,1,26 -binder,0.6216666666666667,1.0,0.6,0.7166666666666667,1,26 -baseball,0.43500000000000005,1.0,0.4,0.5666666666666667,1,26 -pliers,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6799999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -thins,0.5499999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -package,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -k,0.7216666666666667,1.0,0.7,0.7833333333333333,1,26 -jelly,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -fruit,0.7716666666666666,0.6,0.9333333333333332,0.7066666666666667,2,26 -apple,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -bell,0.6599999999999999,1.0,0.7,0.7833333333333333,1,26 -battery,0.7466666666666667,1.0,0.75,0.8166666666666667,1,26 -jar,0.78,1.0,0.7,0.7833333333333333,1,26 -bound,0.6633333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -lettuce,0.6716666666666666,1.0,0.65,0.75,1,26 -brush,0.58,1.0,0.4666666666666666,0.6166666666666667,1,26 -scissors,0.6016666666666667,1.0,0.55,0.6833333333333333,1,26 -lime,0.6266666666666667,1.0,0.55,0.6833333333333333,1,25 -toothpaste,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -top,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -spiral,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -handles,0.7133333333333333,1.0,0.5666666666666667,0.7,1,25 -camera,0.65,1.0,0.6833333333333333,0.7666666666666666,1,26 -eraser,0.7083333333333333,1.0,0.75,0.8166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.805,1.0,0.7166666666666666,0.8,1,26 -pitcher,0.75,1.0,0.8,0.85,1,26 -phone,0.7716666666666666,1.0,0.65,0.75,1,26 -stick,0.74,1.0,0.6,0.7166666666666666,1,25 -cereal,0.8216666666666665,1.0,0.7666666666666666,0.8333333333333333,1,26 -bulb,0.9349999999999999,1.0,0.9,0.9400000000000001,2,27 -hair,0.6716666666666666,1.0,0.6499999999999999,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5683333333333332,1.0,0.4833333333333333,0.6333333333333333,1,26 -can,0.8300000000000001,1.0,0.8,0.8800000000000001,2,26 -coca,0.755,1.0,0.6166666666666666,0.7333333333333333,1,26 -crackers,0.425,1.0,0.5,0.6333333333333333,1,26 -plate,0.655,1.0,0.6333333333333333,0.7333333333333333,1,24 -calculator,0.6133333333333333,1.0,0.55,0.6833333333333333,1,26 -tissues,0.5133333333333334,1.0,0.4999999999999999,0.6333333333333333,1,26 -juice,0.5133333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -pink,0.605,1.0,0.5833333333333333,0.7,1,25 -lemon,0.7083333333333334,1.0,0.7,0.7833333333333333,1,26 -peach,0.8099999999999999,1.0,0.7333333333333333,0.8166666666666667,1,26 -bowl,0.6,1.0,0.6833333333333333,0.7666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.635,1.0,0.5333333333333333,0.6666666666666667,1,26 -blue,0.6383333333333334,0.85,0.5666666666666667,0.65,1,25 -used,0.625,1.0,0.6333333333333333,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6666666666666666,1.0,0.6499999999999999,0.75,1,26 -ball,0.4833333333333333,1.0,0.4666666666666666,0.6166666666666666,1,25 -notebook,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -garlic,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -cleaning,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -pair,0.8733333333333334,1.0,0.8333333333333333,0.9,2,26 -container,0.4083333333333333,1.0,0.4833333333333332,0.6166666666666666,1,25 -tomato,0.74,0.85,0.65,0.6833333333333333,1,26 -cellphone,0.6749999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -potato,0.6466666666666666,1.0,0.5833333333333333,0.7,1,25 -light,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.93,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6465895061728395 -F1-Score: 0.6925 -Precision: 0.907716049382716 -Recall: 0.6137345679012346 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7016666666666665,1.0,0.5833333333333333,0.7,1,25 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,24 -keyboard,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.76,1.0,0.6333333333333333,0.75,1,26 -flashlight,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -cup,0.5866666666666667,0.5,0.7666666666666666,0.58,1,26 -folded,0.6816666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -jam,0.73,1.0,0.5666666666666667,0.7,1,26 -black,0.89,0.7666666666666667,1.0,0.8514285714285714,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.8,1.0,0.6833333333333333,0.7833333333333334,1,26 -soccer,0.6683333333333333,1.0,0.6499999999999999,0.75,1,26 -hat,0.72,1.0,0.6666666666666666,0.7666666666666666,1,26 -brown,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,26 -coffee,0.6266666666666667,1.0,0.5666666666666667,0.7,1,26 -handle,0.7633333333333333,1.0,0.75,0.8166666666666667,1,25 -food,0.7083333333333334,1.0,0.5333333333333333,0.6833333333333333,1,25 -towel,0.4966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -stapler,0.7933333333333332,1.0,0.7166666666666666,0.8,1,26 -onion,0.65,1.0,0.6333333333333333,0.7333333333333334,1,26 -bag,0.4916666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -sponge,0.63,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.675,1.0,0.6666666666666666,0.7666666666666667,1,25 -special,0.6966666666666667,1.0,0.65,0.75,1,26 -colgate,0.5716666666666665,1.0,0.5166666666666666,0.65,1,26 -leaf,0.6883333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -tube,0.5883333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -cell,0.5766666666666667,0.5,0.7333333333333333,0.5733333333333334,1,26 -mug,0.7066666666666668,1.0,0.6666666666666666,0.7666666666666667,1,26 -yogurt,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -plantain,0.755,1.0,0.5833333333333333,0.7166666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -wheat,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.5216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -toothbrush,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.7416666666666666,1.0,0.75,0.8166666666666667,1,26 -baseball,0.5999999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -pliers,0.6249999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -thins,0.8133333333333332,1.0,0.7333333333333333,0.8166666666666667,1,26 -package,0.605,1.0,0.5166666666666666,0.65,1,26 -k,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -jelly,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -fruit,0.8683333333333332,0.95,0.8666666666666666,0.8866666666666667,2,26 -apple,0.4966666666666667,0.95,0.5166666666666666,0.6166666666666667,1,25 -bell,0.61,1.0,0.5833333333333333,0.7,1,26 -battery,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -jar,0.5633333333333332,1.0,0.6166666666666666,0.7166666666666666,1,26 -bound,0.6666666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -lettuce,0.8483333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -brush,0.6183333333333333,0.6,0.7166666666666666,0.5900000000000001,1,26 -scissors,0.7433333333333334,1.0,0.6333333333333333,0.75,1,26 -lime,0.77,1.0,0.6666666666666666,0.7666666666666667,1,25 -toothpaste,0.7466666666666667,1.0,0.7166666666666666,0.8,1,26 -top,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -spiral,0.5166666666666666,1.0,0.4333333333333334,0.5833333333333333,1,26 -handles,0.6883333333333332,1.0,0.65,0.75,1,25 -camera,0.68,1.0,0.5833333333333333,0.7,1,26 -eraser,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.9833333333333334,0.95,1.0,0.9666666666666666,5,22 -banana,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -pitcher,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -phone,0.6016666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -stick,0.5549999999999999,1.0,0.5833333333333333,0.7,1,25 -cereal,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -bulb,0.8433333333333334,1.0,0.8,0.8800000000000001,2,27 -hair,0.6,1.0,0.5999999999999999,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5683333333333332,1.0,0.5833333333333333,0.7,1,26 -can,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coca,0.8133333333333332,1.0,0.7833333333333333,0.85,1,26 -crackers,0.45499999999999996,1.0,0.4666666666666666,0.6166666666666666,1,26 -plate,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -calculator,0.7066666666666667,1.0,0.5333333333333333,0.6833333333333333,1,26 -tissues,0.485,1.0,0.4666666666666666,0.6166666666666667,1,26 -juice,0.7833333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -pink,0.8,1.0,0.7666666666666666,0.8333333333333333,1,25 -lemon,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -peach,0.6966666666666667,1.0,0.7,0.7833333333333333,1,26 -bowl,0.78,1.0,0.7499999999999999,0.8166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.41666666666666663,1.0,0.4999999999999999,0.6333333333333333,1,26 -blue,0.7666666666666666,1.0,0.7166666666666666,0.8,1,25 -used,0.5033333333333333,0.7,0.5999999999999999,0.5733333333333334,1,24 -energizer,0,0,0,0,1,26 -pear,0.755,1.0,0.7166666666666666,0.8,1,26 -ball,0.6966666666666665,1.0,0.6499999999999999,0.75,1,25 -notebook,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -garlic,0.5516666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -cleaning,0.6683333333333333,1.0,0.55,0.6833333333333333,1,26 -pair,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -container,0.65,1.0,0.5666666666666667,0.6833333333333333,1,25 -tomato,0.5249999999999999,0.95,0.5833333333333333,0.6666666666666667,1,26 -cellphone,0.5983333333333334,0.55,0.6833333333333333,0.5666666666666667,1,26 -potato,0.7816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,25 -light,0.8866666666666667,1.0,0.8333333333333333,0.9,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9333333333333332,1.0,0.9333333333333332,0.9600000000000002,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6521141975308643 -F1-Score: 0.6950749559082893 -Precision: 0.9010802469135802 -Recall: 0.6189814814814815 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7133333333333334,1.0,0.6166666666666666,0.7333333333333334,1,25 -yellow,0.9266666666666667,0.8333333333333333,1.0,0.8933333333333333,6,24 -looks,0.575,0.8,0.5666666666666667,0.6,1,24 -keyboard,0.825,1.0,0.7333333333333333,0.8166666666666667,1,26 -glue,0.6433333333333333,1.0,0.6,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6683333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -flashlight,0.765,1.0,0.5833333333333333,0.7166666666666667,1,26 -cup,0.44333333333333325,0.5,0.55,0.5033333333333333,1,26 -folded,0.6333333333333333,1.0,0.5166666666666666,0.65,1,26 -jam,0.6766666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -black,0.8483333333333334,0.7,1.0,0.8114285714285714,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7266666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -soccer,0.7466666666666667,1.0,0.6499999999999999,0.75,1,26 -hat,0.7566666666666666,1.0,0.6499999999999999,0.75,1,26 -brown,0.9166666666666666,1.0,0.9,0.9400000000000001,2,24 -coffee,0.4966666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -handle,0.6916666666666667,1.0,0.7,0.7833333333333333,1,25 -food,0.6383333333333333,1.0,0.5833333333333333,0.7,1,25 -towel,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -chips,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -stapler,0.605,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -bag,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -sponge,0.7216666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.505,1.0,0.5166666666666666,0.65,1,25 -special,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.7299999999999999,1.0,0.6833333333333333,0.7666666666666667,1,26 -leaf,0.7216666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -tube,0.585,1.0,0.4499999999999999,0.6,1,26 -cell,0.5416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -mug,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -yogurt,0.7166666666666666,1.0,0.6833333333333333,0.7666666666666667,1,26 -plantain,0.7433333333333333,0.9,0.6333333333333333,0.6833333333333333,1,26 -red,0.8766666666666667,0.725,1.0,0.8257142857142856,3,24 -pepper,0.43499999999999994,1.0,0.4499999999999999,0.6,1,26 -wheat,0.5716666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -kleenex,0.7266666666666667,1.0,0.6,0.7166666666666667,1,26 -toothbrush,0.6466666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -binder,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -baseball,0.805,1.0,0.7166666666666666,0.8,1,26 -pliers,0.7233333333333334,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6,1.0,0.6166666666666666,0.7166666666666666,1,26 -thins,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -package,0.5266666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -k,0.6466666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -jelly,0.46333333333333326,1.0,0.45,0.6,1,26 -fruit,0.7016666666666667,0.7333333333333333,0.8666666666666666,0.76,2,25 -apple,0.61,0.85,0.5833333333333333,0.6166666666666666,1,25 -bell,0.5349999999999999,1.0,0.45,0.6,1,26 -battery,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -jar,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -bound,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.7816666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -brush,0.755,1.0,0.7,0.7833333333333333,1,26 -scissors,0.635,1.0,0.65,0.75,1,26 -lime,0.5083333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -toothpaste,0.45499999999999996,1.0,0.5166666666666666,0.65,1,26 -top,0.6483333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -spiral,0.5716666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -handles,0.6966666666666667,1.0,0.65,0.75,1,25 -camera,0.7833333333333333,1.0,0.7333333333333333,0.8,1,26 -eraser,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.6533333333333333,0.9,0.6166666666666666,0.6666666666666667,1,26 -pitcher,0.8133333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -phone,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -stick,0.86,1.0,0.7333333333333333,0.8166666666666667,1,25 -cereal,0.6933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -hair,0.7066666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -can,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,24 -coca,0.5383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -crackers,0.6966666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -plate,0.8550000000000001,1.0,0.75,0.8333333333333333,1,25 -calculator,0.5149999999999999,0.85,0.5,0.55,1,26 -tissues,0.8366666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -juice,0.6649999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -pink,0.5416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,25 -lemon,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -peach,0.5683333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.575,1.0,0.6833333333333333,0.7666666666666666,1,26 -blue,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -used,0.6633333333333333,1.0,0.5333333333333332,0.6666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.53,1.0,0.5166666666666666,0.65,1,26 -ball,0.8833333333333332,1.0,0.8333333333333333,0.8833333333333332,1,25 -notebook,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -garlic,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -cleaning,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -pair,0.9,1.0,0.8333333333333333,0.9,2,26 -container,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -tomato,0.725,0.95,0.6166666666666666,0.7,1,26 -cellphone,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -potato,0.8216666666666667,1.0,0.7833333333333333,0.85,1,25 -light,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6500771604938274 -F1-Score: 0.6878439153439153 -Precision: 0.9050154320987653 -Recall: 0.6075617283950618 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.4666666666666667,1.0,0.4999999999999999,0.6333333333333333,1,24 -yellow,0.9266666666666667,0.8166666666666667,1.0,0.8800000000000001,6,25 -looks,0.7133333333333333,0.9,0.6833333333333333,0.7,1,24 -keyboard,0.625,1.0,0.5833333333333333,0.7,1,26 -glue,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.6933333333333334,1.0,0.65,0.75,1,26 -cup,0.2,0.5,0.5499999999999999,0.49000000000000005,1,26 -folded,0.55,1.0,0.41666666666666663,0.5833333333333333,1,26 -jam,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -black,0.9266666666666667,0.8666666666666666,1.0,0.9180952380952382,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -soccer,0.655,1.0,0.5999999999999999,0.7166666666666667,1,26 -hat,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.8666666666666666,1.0,0.8666666666666666,0.9199999999999999,2,26 -coffee,0.71,1.0,0.6499999999999999,0.75,1,26 -handle,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -food,0.5933333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -towel,0.6966666666666667,1.0,0.65,0.75,1,26 -chips,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -stapler,0.8333333333333333,1.0,0.8,0.85,1,26 -onion,0.6183333333333334,1.0,0.4999999999999999,0.65,1,26 -bag,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -sponge,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.825,1.0,0.7666666666666666,0.8333333333333333,1,25 -special,0.7083333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -colgate,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -leaf,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -tube,0.7716666666666667,1.0,0.7,0.7833333333333333,1,26 -cell,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -mug,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -yogurt,0.6,1.0,0.6666666666666666,0.75,1,26 -plantain,0.655,0.9,0.65,0.6833333333333333,1,26 -red,0.8850000000000001,0.8,1.0,0.878095238095238,3,26 -pepper,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -wheat,0.5633333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -kleenex,0.6466666666666667,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -binder,0.7266666666666667,1.0,0.7166666666666666,0.8,1,26 -baseball,0.6166666666666667,1.0,0.6166666666666666,0.7166666666666667,1,26 -pliers,0.6833333333333333,1.0,0.7333333333333333,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7516666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -thins,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -package,0.73,1.0,0.7,0.7833333333333333,1,26 -k,0.6583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -jelly,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -fruit,0.705,0.5833333333333333,0.9333333333333332,0.6866666666666668,2,25 -apple,0.605,0.85,0.6833333333333333,0.6666666666666667,1,25 -bell,0.5816666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -battery,0.7783333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -jar,0.61,1.0,0.5833333333333333,0.7,1,26 -bound,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -lettuce,0.575,1.0,0.6166666666666666,0.7166666666666666,1,26 -brush,0.7433333333333334,1.0,0.6,0.7166666666666667,1,26 -scissors,0.5766666666666667,1.0,0.5166666666666666,0.65,1,26 -lime,0.605,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -top,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -spiral,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -handles,0.575,1.0,0.5499999999999999,0.6666666666666667,1,25 -camera,0.8633333333333335,1.0,0.8166666666666667,0.8666666666666666,1,26 -eraser,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6566666666666666,0.95,0.5499999999999999,0.65,1,26 -pitcher,0.6,1.0,0.55,0.6833333333333333,1,26 -phone,0.6016666666666667,1.0,0.55,0.6833333333333333,1,26 -stick,0.6383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,25 -cereal,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.915,1.0,0.8666666666666666,0.9199999999999999,2,26 -hair,0.5383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -can,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coca,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -crackers,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -plate,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -calculator,0.6033333333333333,0.5,0.6833333333333333,0.5566666666666666,1,26 -tissues,0.7333333333333333,1.0,0.7166666666666666,0.8,1,26 -juice,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -pink,0.8300000000000001,1.0,0.7833333333333333,0.85,1,25 -lemon,0.845,1.0,0.6833333333333333,0.7833333333333333,1,26 -peach,0.7133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -bowl,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -blue,0.5933333333333333,1.0,0.5,0.65,1,25 -used,0.7016666666666665,1.0,0.5999999999999999,0.7166666666666667,1,23 -energizer,0,0,0,0,1,26 -pear,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -ball,0.6133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -notebook,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -garlic,0.655,1.0,0.7,0.7833333333333334,1,26 -cleaning,0.51,1.0,0.4666666666666666,0.6166666666666666,1,26 -pair,0.8683333333333334,1.0,0.8333333333333333,0.9,2,26 -container,0.7966666666666666,1.0,0.7166666666666666,0.8,1,25 -tomato,0.5833333333333333,0.65,0.6166666666666666,0.58,1,26 -cellphone,0.575,1.0,0.6333333333333333,0.7333333333333333,1,26 -potato,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666667,1,25 -light,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,27 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8716666666666667,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6479475308641975 -F1-Score: 0.6899647266313934 -Precision: 0.9010802469135802 -Recall: 0.6138888888888888 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6249999999999999,1.0,0.5833333333333333,0.7,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.5416666666666667,0.95,0.4999999999999999,0.6,1,24 -keyboard,0.525,1.0,0.4833333333333332,0.6333333333333333,1,26 -glue,0.7833333333333333,1.0,0.7999999999999999,0.85,1,26 -milk,0,0,0,0,1,26 -cola,0.5766666666666667,1.0,0.4999999999999999,0.65,1,26 -flashlight,0.4916666666666666,1.0,0.45,0.6,1,26 -cup,0.5349999999999999,0.5,0.6333333333333333,0.5399999999999999,1,26 -folded,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -jam,0.755,1.0,0.7,0.7833333333333333,1,26 -black,0.8866666666666667,0.7416666666666666,1.0,0.8323809523809524,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -soccer,0.5216666666666667,1.0,0.5,0.6333333333333334,1,26 -hat,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -brown,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,25 -coffee,0.6666666666666666,1.0,0.6666666666666666,0.75,1,26 -handle,0.7016666666666667,1.0,0.65,0.75,1,25 -food,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333334,1,25 -towel,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.63,1.0,0.5833333333333333,0.7,1,26 -stapler,0.4999999999999999,1.0,0.4333333333333333,0.5833333333333333,1,26 -onion,0.71,1.0,0.6499999999999999,0.75,1,26 -bag,0.76,1.0,0.5833333333333333,0.7166666666666667,1,26 -sponge,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6666666666666667,1.0,0.6166666666666666,0.7333333333333334,1,25 -special,0.5216666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -colgate,0.8099999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -leaf,0.7,1.0,0.5666666666666667,0.7,1,26 -tube,0.7916666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -cell,0.35333333333333333,0.5,0.4666666666666666,0.4666666666666667,1,26 -mug,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -yogurt,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.9833333333333334,0.95,1.0,0.9666666666666666,3,26 -pepper,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -wheat,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -kleenex,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -binder,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -baseball,0.5516666666666666,1.0,0.4333333333333333,0.6,1,26 -pliers,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.635,1.0,0.6,0.7166666666666667,1,26 -thins,0.69,1.0,0.6166666666666666,0.7333333333333333,1,26 -package,0.6383333333333334,1.0,0.55,0.6833333333333333,1,26 -k,0.6933333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -jelly,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -fruit,0.905,0.8,0.9666666666666666,0.8466666666666667,2,26 -apple,0.6833333333333333,0.8,0.6499999999999999,0.65,1,25 -bell,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -battery,0.7,1.0,0.7,0.7833333333333333,1,26 -jar,0.7183333333333334,1.0,0.5666666666666667,0.7,1,26 -bound,0.4416666666666666,1.0,0.4499999999999999,0.6,1,26 -lettuce,0.69,1.0,0.65,0.75,1,26 -brush,0.525,0.65,0.6499999999999999,0.5733333333333334,1,26 -scissors,0.8800000000000001,1.0,0.8333333333333333,0.8833333333333332,1,26 -lime,0.5833333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -toothpaste,0.7216666666666667,1.0,0.65,0.75,1,26 -top,0.8233333333333335,1.0,0.7166666666666666,0.8,1,26 -spiral,0.8583333333333332,1.0,0.75,0.8333333333333333,1,26 -handles,0.6583333333333333,1.0,0.6,0.7166666666666667,1,25 -camera,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.9133333333333333,1.0,0.85,0.9,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.6,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.6766666666666666,1.0,0.6499999999999999,0.75,1,26 -stick,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,25 -cereal,0.7333333333333333,1.0,0.75,0.8166666666666668,1,26 -bulb,0.96,1.0,0.9333333333333332,0.96,2,26 -hair,0.735,1.0,0.5666666666666667,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8083333333333332,1.0,0.7499999999999999,0.8166666666666667,1,26 -can,0.915,1.0,0.8666666666666666,0.9199999999999999,2,26 -coca,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.625,1.0,0.6,0.7166666666666667,1,26 -plate,0.775,1.0,0.7166666666666666,0.8,1,25 -calculator,0.6633333333333333,0.8,0.6333333333333333,0.65,1,26 -tissues,0.5633333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -juice,0.66,1.0,0.55,0.6833333333333333,1,26 -pink,0.5383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,25 -lemon,0.5433333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -peach,0.5266666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.4666666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -blue,0.42666666666666664,1.0,0.45,0.6,1,25 -used,0.5433333333333333,0.7,0.5499999999999999,0.55,1,24 -energizer,0,0,0,0,1,26 -pear,0.8233333333333335,1.0,0.6833333333333333,0.7833333333333333,1,26 -ball,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.775,1.0,0.6666666666666666,0.7666666666666666,1,26 -garlic,0.825,1.0,0.7333333333333333,0.8166666666666667,1,26 -cleaning,0.4966666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -pair,0.95,1.0,0.9333333333333332,0.96,2,26 -container,0.6483333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -tomato,0.7366666666666667,0.9,0.6333333333333333,0.6833333333333333,1,26 -cellphone,0.4416666666666667,0.55,0.5499999999999999,0.5133333333333333,1,26 -potato,0.7583333333333333,1.0,0.7499999999999999,0.8166666666666667,1,25 -light,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6484104938271605 -F1-Score: 0.6865652557319223 -Precision: 0.8966820987654321 -Recall: 0.6083333333333333 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6016666666666667,1.0,0.5166666666666666,0.65,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.6,0.95,0.6666666666666666,0.7166666666666666,1,24 -keyboard,0.6516666666666666,1.0,0.55,0.6833333333333333,1,26 -glue,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.73,1.0,0.6,0.7166666666666667,1,26 -flashlight,0.6133333333333333,1.0,0.55,0.6833333333333333,1,26 -cup,0.5816666666666667,0.5,0.7333333333333333,0.5733333333333334,1,26 -folded,0.625,1.0,0.6833333333333333,0.7666666666666667,1,26 -jam,0.8016666666666667,1.0,0.6333333333333333,0.75,1,26 -black,0.8850000000000001,0.8166666666666668,1.0,0.8895238095238096,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5183333333333333,1.0,0.4333333333333333,0.6,1,26 -soccer,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666666,1,26 -hat,0.8966666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -brown,0.93,1.0,0.9,0.9400000000000001,2,24 -coffee,0.5333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -handle,0.4833333333333333,1.0,0.5166666666666666,0.65,1,26 -food,0.6133333333333333,1.0,0.5833333333333333,0.7,1,24 -towel,0.75,1.0,0.8,0.85,1,26 -chips,0.675,1.0,0.6,0.7166666666666667,1,26 -stapler,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -onion,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -bag,0.7483333333333333,1.0,0.6333333333333333,0.75,1,26 -sponge,0.6900000000000001,1.0,0.5166666666666666,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.5416666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -special,0.71,1.0,0.5999999999999999,0.7166666666666667,1,26 -colgate,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -leaf,0.5499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -cell,0.37333333333333335,0.55,0.5833333333333333,0.52,1,26 -mug,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -yogurt,0.625,1.0,0.5833333333333333,0.7,1,26 -plantain,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -red,0.8800000000000001,0.7666666666666667,1.0,0.8514285714285714,3,24 -pepper,0.7466666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -wheat,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.9,1.0,0.8833333333333332,0.9166666666666666,1,26 -toothbrush,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -binder,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -baseball,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -pliers,0.8383333333333335,1.0,0.7333333333333333,0.8166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -thins,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -package,0.7483333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.6683333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -jelly,0.5966666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -fruit,0.7216666666666667,0.6833333333333333,0.9,0.7466666666666667,2,25 -apple,0.5833333333333333,0.95,0.5833333333333333,0.6666666666666667,1,25 -bell,0.76,1.0,0.7166666666666666,0.8,1,26 -battery,0.7666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -jar,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -lettuce,0.7083333333333333,1.0,0.6,0.7166666666666667,1,26 -brush,0.6183333333333334,1.0,0.4333333333333333,0.6,1,26 -scissors,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -toothpaste,0.76,1.0,0.7,0.7833333333333333,1,26 -top,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -spiral,0.6016666666666667,1.0,0.6,0.7166666666666667,1,26 -handles,0.7583333333333333,1.0,0.7166666666666666,0.8,1,25 -camera,0.76,1.0,0.5666666666666667,0.7,1,26 -eraser,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.63,1.0,0.5333333333333333,0.6666666666666666,1,26 -pitcher,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -phone,0.69,1.0,0.5666666666666667,0.7,1,26 -stick,0.8216666666666667,1.0,0.7166666666666666,0.8,1,25 -cereal,0.5333333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -bulb,0.8766666666666666,1.0,0.8333333333333333,0.9,2,26 -hair,0.6916666666666667,1.0,0.6833333333333332,0.7666666666666666,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6983333333333334,1.0,0.5666666666666667,0.7,1,26 -can,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -coca,0.6466666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -crackers,0.5216666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.5916666666666666,1.0,0.55,0.6666666666666667,1,25 -calculator,0.44333333333333336,0.95,0.38333333333333336,0.5333333333333333,1,26 -tissues,0.6633333333333333,1.0,0.55,0.6833333333333333,1,26 -juice,0.6849999999999999,1.0,0.6499999999999999,0.75,1,26 -pink,0.45,1.0,0.5166666666666666,0.65,1,25 -lemon,0.8,1.0,0.7166666666666666,0.8,1,26 -peach,0.5716666666666665,1.0,0.5333333333333332,0.6666666666666666,1,26 -bowl,0.7816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6683333333333333,1.0,0.6,0.7166666666666667,1,26 -blue,0.75,1.0,0.7,0.7833333333333333,1,25 -used,0.6133333333333334,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.3916666666666666,1.0,0.4499999999999999,0.6,1,26 -ball,0.8266666666666665,1.0,0.7333333333333333,0.8166666666666667,1,25 -notebook,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -garlic,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -cleaning,0.5583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -pair,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,27 -container,0.8333333333333333,1.0,0.8,0.85,1,25 -tomato,0.5933333333333333,0.9,0.6666666666666666,0.6833333333333333,1,26 -cellphone,0.5549999999999999,0.55,0.7166666666666666,0.5733333333333333,1,26 -potato,0.6233333333333333,1.0,0.5833333333333333,0.7,1,25 -light,0.8800000000000001,1.0,0.8666666666666668,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6570987654320987 -F1-Score: 0.6955643738977074 -Precision: 0.903395061728395 -Recall: 0.6180555555555552 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.475,1.0,0.5499999999999999,0.6666666666666667,1,24 -yellow,0.9333333333333333,0.85,1.0,0.9066666666666666,6,25 -looks,0.5716666666666667,0.85,0.5833333333333333,0.6,1,24 -keyboard,0.675,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.715,1.0,0.6166666666666666,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.755,1.0,0.6499999999999999,0.75,1,26 -flashlight,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -cup,0.175,0.5,0.4833333333333334,0.4633333333333334,1,26 -folded,0.8283333333333334,1.0,0.65,0.7666666666666667,1,26 -jam,0.6383333333333334,1.0,0.6,0.7166666666666667,1,26 -black,0.9400000000000001,0.85,1.0,0.9,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.8966666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -soccer,0.7833333333333333,1.0,0.7333333333333333,0.8,1,26 -hat,0.6716666666666666,1.0,0.65,0.75,1,26 -brown,0.9166666666666666,1.0,0.9,0.9400000000000001,2,24 -coffee,0.755,1.0,0.5999999999999999,0.7166666666666667,1,25 -handle,0.585,1.0,0.5333333333333333,0.6666666666666666,1,25 -food,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -towel,0.5216666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -chips,0.53,1.0,0.5166666666666666,0.65,1,26 -stapler,0.5416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -onion,0.835,1.0,0.6833333333333333,0.7833333333333333,1,26 -bag,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -sponge,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5966666666666667,1.0,0.5166666666666666,0.65,1,25 -special,0.53,1.0,0.5166666666666666,0.65,1,26 -colgate,0.6599999999999999,1.0,0.5666666666666667,0.7,1,26 -leaf,0.7516666666666667,1.0,0.6499999999999999,0.75,1,26 -tube,0.43833333333333335,1.0,0.4999999999999999,0.6333333333333333,1,26 -cell,0.73,1.0,0.7499999999999999,0.8166666666666667,1,26 -mug,0.6666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,25 -yogurt,0.835,1.0,0.7166666666666666,0.8,1,26 -plantain,0.7799999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -red,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666665,3,26 -pepper,0.7283333333333333,1.0,0.55,0.6833333333333333,1,26 -wheat,0.6383333333333334,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -toothbrush,0.5966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -binder,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -baseball,0.6583333333333334,1.0,0.6166666666666666,0.7166666666666666,1,26 -pliers,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -thins,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -package,0.5516666666666666,1.0,0.4499999999999999,0.6,1,26 -k,0.68,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.5850000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -fruit,0.8100000000000002,0.7,0.9333333333333332,0.7666666666666667,2,25 -apple,0.61,1.0,0.5666666666666667,0.6833333333333333,1,25 -bell,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -battery,0.6966666666666665,1.0,0.6833333333333333,0.7666666666666666,1,26 -jar,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -bound,0.5016666666666667,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.6833333333333333,1.0,0.6666666666666666,0.75,1,26 -brush,0.45,0.5,0.5666666666666667,0.5133333333333334,1,26 -scissors,0.7216666666666667,1.0,0.6333333333333333,0.75,1,26 -lime,0.8183333333333334,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -top,0.7416666666666666,1.0,0.7166666666666666,0.8,1,26 -spiral,0.6933333333333334,1.0,0.6,0.7166666666666667,1,26 -handles,0.6966666666666667,1.0,0.6499999999999999,0.75,1,25 -camera,0.7899999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -eraser,0.575,1.0,0.6333333333333332,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -pitcher,0.6916666666666667,1.0,0.5833333333333333,0.7,1,26 -phone,0.58,1.0,0.4833333333333333,0.6333333333333333,1,26 -stick,0.5916666666666666,1.0,0.6333333333333332,0.7333333333333333,1,25 -cereal,0.615,1.0,0.5166666666666666,0.6666666666666667,1,26 -bulb,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.5633333333333332,1.0,0.6166666666666666,0.7166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -can,0.8399999999999999,1.0,0.8,0.8800000000000001,2,24 -coca,0.825,1.0,0.7333333333333333,0.8166666666666667,1,26 -crackers,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -plate,0.605,1.0,0.5666666666666667,0.6833333333333333,1,25 -calculator,0.6916666666666667,0.95,0.5666666666666667,0.6666666666666667,1,26 -tissues,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -juice,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -pink,0.5216666666666667,1.0,0.4666666666666666,0.6166666666666666,1,25 -lemon,0.7100000000000001,1.0,0.65,0.75,1,26 -peach,0.8416666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -bowl,0.8233333333333335,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.655,1.0,0.5333333333333333,0.6666666666666666,1,26 -blue,0.705,1.0,0.6,0.7166666666666667,1,25 -used,0.44666666666666666,0.55,0.6,0.53,1,24 -energizer,0,0,0,0,1,26 -pear,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -ball,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -notebook,0.4933333333333333,1.0,0.4,0.5666666666666667,1,26 -garlic,0.5966666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -cleaning,0.5333333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -pair,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.7816666666666666,1.0,0.6833333333333333,0.7833333333333333,1,25 -tomato,0.45999999999999996,0.6,0.5333333333333333,0.52,1,26 -cellphone,0.6266666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -potato,0.6599999999999999,1.0,0.4999999999999999,0.65,1,26 -light,0.8433333333333334,1.0,0.8,0.8800000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6364969135802468 -F1-Score: 0.6830864197530864 -Precision: 0.9003086419753087 -Recall: 0.6024691358024691 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8950000000000001,1.0,0.75,0.8333333333333333,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,25 -looks,0.6683333333333333,1.0,0.5166666666666666,0.6666666666666667,1,24 -keyboard,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -glue,0.66,1.0,0.5499999999999999,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.5216666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -flashlight,0.5666666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -cup,0.4833333333333333,0.5,0.7666666666666666,0.58,1,26 -folded,0.6883333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -jam,0.5766666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -black,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7466666666666667,1.0,0.7166666666666666,0.8,1,26 -soccer,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -hat,0.8683333333333334,1.0,0.7833333333333333,0.85,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.6133333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -handle,0.6466666666666667,1.0,0.6499999999999999,0.75,1,26 -food,0.41,1.0,0.4499999999999999,0.6,1,26 -towel,0.6966666666666665,1.0,0.5999999999999999,0.7166666666666667,1,26 -chips,0.5983333333333334,1.0,0.4999999999999999,0.65,1,26 -stapler,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -onion,0.47333333333333333,0.8,0.5499999999999999,0.55,1,26 -bag,0.7833333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -sponge,0.6216666666666666,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666667,1,25 -special,0.5,1.0,0.4333333333333333,0.5833333333333334,1,26 -colgate,0.7216666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -leaf,0.635,1.0,0.6,0.7166666666666667,1,26 -tube,0.7166666666666667,1.0,0.7,0.7833333333333333,1,26 -cell,0.8716666666666667,1.0,0.75,0.8333333333333333,1,26 -mug,0.7216666666666667,1.0,0.6,0.7166666666666667,1,25 -yogurt,0.605,1.0,0.5166666666666666,0.65,1,26 -plantain,0.4416666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -red,0.9216666666666666,0.8333333333333333,1.0,0.8933333333333333,3,25 -pepper,0.7583333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -wheat,0.7150000000000001,1.0,0.6166666666666666,0.7333333333333334,1,26 -kleenex,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -binder,0.6066666666666667,1.0,0.55,0.6833333333333333,1,26 -baseball,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -pliers,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.65,1.0,0.7,0.7833333333333333,1,26 -thins,0.605,1.0,0.5499999999999999,0.6833333333333333,1,26 -package,0.5883333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -k,0.635,1.0,0.5833333333333333,0.7,1,26 -jelly,0.6483333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -fruit,0.7383333333333333,0.6166666666666667,0.9333333333333332,0.73,2,25 -apple,0.6133333333333334,0.9,0.5999999999999999,0.65,1,25 -bell,0.4466666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -battery,0.7566666666666666,1.0,0.65,0.75,1,26 -jar,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -bound,0.7633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -lettuce,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -brush,0.5133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.7433333333333334,1.0,0.6333333333333333,0.75,1,26 -lime,0.5499999999999999,1.0,0.5499999999999999,0.6666666666666666,1,25 -toothpaste,0.4466666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -top,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -spiral,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -handles,0.7016666666666667,1.0,0.5166666666666666,0.6666666666666667,1,25 -camera,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -eraser,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.8733333333333333,0.7583333333333334,1.0,0.8523809523809524,5,21 -banana,0.5133333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -pitcher,0.675,1.0,0.6166666666666666,0.7333333333333333,1,26 -phone,0.5383333333333333,1.0,0.4999999999999999,0.65,1,26 -stick,0.8166666666666667,1.0,0.8166666666666667,0.8666666666666666,1,25 -cereal,0.48166666666666663,1.0,0.41666666666666663,0.5833333333333333,1,26 -bulb,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.8133333333333332,1.0,0.7833333333333333,0.85,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.53,1.0,0.4499999999999999,0.6,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,24 -coca,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -crackers,0.615,1.0,0.55,0.6833333333333333,1,26 -plate,0.53,1.0,0.4666666666666666,0.6166666666666667,1,25 -calculator,0.4116666666666666,0.6,0.5333333333333333,0.5133333333333333,1,26 -tissues,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -juice,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.6333333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -lemon,0.58,1.0,0.5833333333333333,0.7,1,26 -peach,0.8633333333333333,1.0,0.8166666666666667,0.8666666666666666,1,26 -bowl,0.7216666666666667,1.0,0.7,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -blue,0.5850000000000001,0.9,0.6,0.6666666666666667,1,25 -used,0.8066666666666666,1.0,0.6333333333333333,0.75,1,23 -energizer,0,0,0,0,1,26 -pear,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -ball,0.6916666666666667,1.0,0.6833333333333332,0.7666666666666666,1,25 -notebook,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.6483333333333332,1.0,0.4833333333333333,0.6333333333333334,1,26 -cleaning,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -pair,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,27 -container,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -tomato,0.5183333333333333,0.85,0.6166666666666666,0.6166666666666667,1,26 -cellphone,0.6183333333333334,1.0,0.4833333333333332,0.6333333333333333,1,26 -potato,0.6683333333333332,1.0,0.6,0.7166666666666667,1,25 -light,0.95,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.85,1.0,0.7666666666666667,0.8600000000000001,2,25 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6445987654320987 -F1-Score: 0.6874294532627866 -Precision: 0.9034722222222221 -Recall: 0.607716049382716 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6433333333333333,1.0,0.5666666666666667,0.7,1,25 -yellow,0.93,0.8333333333333333,1.0,0.8933333333333333,6,24 -looks,0.65,0.95,0.5833333333333333,0.6666666666666667,1,24 -keyboard,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.4383333333333333,1.0,0.4499999999999999,0.6,1,26 -milk,0,0,0,0,1,26 -cola,0.6883333333333334,1.0,0.5666666666666667,0.7,1,26 -flashlight,0.705,1.0,0.5166666666666666,0.6666666666666667,1,26 -cup,0.6266666666666667,0.5,0.8333333333333334,0.6066666666666667,1,26 -folded,0.61,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -black,0.9833333333333334,0.9666666666666666,1.0,0.9800000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.4333333333333333,1.0,0.4833333333333333,0.6166666666666666,1,26 -soccer,0.635,1.0,0.5999999999999999,0.7166666666666666,1,26 -hat,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -brown,0.975,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.7183333333333334,1.0,0.65,0.75,1,26 -handle,0.6649999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -food,0.7716666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -towel,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -chips,0.86,1.0,0.7666666666666666,0.8333333333333333,1,26 -stapler,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -onion,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.4833333333333333,1.0,0.4833333333333333,0.6166666666666667,1,26 -sponge,0.7233333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7383333333333333,1.0,0.6499999999999999,0.75,1,25 -special,0.725,1.0,0.6166666666666666,0.7333333333333334,1,26 -colgate,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -leaf,0.7633333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -tube,0.5933333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -cell,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -mug,0.6966666666666665,1.0,0.5999999999999999,0.7166666666666666,1,26 -yogurt,0.6900000000000001,1.0,0.5999999999999999,0.7166666666666667,1,26 -plantain,0.7316666666666667,1.0,0.5666666666666667,0.7,1,26 -red,0.9066666666666668,0.7833333333333333,1.0,0.86,3,25 -pepper,0.6416666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -wheat,0.5966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -kleenex,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -toothbrush,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.7049999999999998,1.0,0.6333333333333332,0.7333333333333333,1,26 -baseball,0.8716666666666665,1.0,0.75,0.8333333333333333,1,26 -pliers,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.76,1.0,0.6666666666666666,0.7666666666666666,1,26 -thins,0.5716666666666667,1.0,0.5,0.6333333333333333,1,26 -package,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -k,0.6266666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -jelly,0.6766666666666666,1.0,0.5666666666666667,0.7,1,26 -fruit,0.7133333333333334,0.6166666666666667,0.9333333333333332,0.7133333333333333,2,25 -apple,0.66,0.9,0.65,0.7,1,25 -bell,0.69,1.0,0.5999999999999999,0.7166666666666666,1,26 -battery,0.7,1.0,0.7499999999999999,0.8166666666666667,1,26 -jar,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -bound,0.6266666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -lettuce,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -brush,0.725,1.0,0.6,0.7166666666666667,1,26 -scissors,0.615,1.0,0.5499999999999999,0.6833333333333333,1,26 -lime,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -toothpaste,0.6466666666666667,1.0,0.55,0.6833333333333333,1,26 -top,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.7016666666666667,1.0,0.5666666666666667,0.7,1,26 -handles,0.75,1.0,0.6333333333333333,0.75,1,25 -camera,0.43,1.0,0.55,0.6666666666666666,1,26 -eraser,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.725,1.0,0.6499999999999999,0.75,1,26 -pitcher,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -phone,0.655,1.0,0.6499999999999999,0.75,1,26 -stick,0.5666666666666667,1.0,0.5999999999999999,0.7,1,25 -cereal,0.7083333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -bulb,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.7283333333333333,1.0,0.5166666666666666,0.6666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6916666666666667,1.0,0.65,0.75,1,26 -can,0.9550000000000001,1.0,0.9333333333333332,0.96,2,24 -coca,0.605,1.0,0.5333333333333333,0.6666666666666666,1,26 -crackers,0.6833333333333333,1.0,0.65,0.75,1,26 -plate,0.8299999999999998,1.0,0.7333333333333333,0.8166666666666667,1,25 -calculator,0.5683333333333334,0.5,0.6666666666666666,0.5466666666666666,1,26 -tissues,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -juice,0.7833333333333333,1.0,0.8,0.85,1,26 -pink,0.805,1.0,0.7333333333333333,0.8166666666666667,1,25 -lemon,0.5349999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -peach,0.55,1.0,0.5166666666666666,0.65,1,26 -bowl,0.6383333333333333,1.0,0.5,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6433333333333333,1.0,0.5,0.65,1,26 -blue,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -used,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.7249999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -ball,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -notebook,0.8099999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -garlic,0.5933333333333334,1.0,0.4833333333333332,0.6333333333333333,1,26 -cleaning,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -pair,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -container,0.9349999999999999,1.0,0.85,0.9,1,25 -tomato,0.7216666666666667,0.7,0.7666666666666666,0.65,1,26 -cellphone,0.4383333333333333,1.0,0.45,0.6,1,26 -potato,0.8049999999999999,1.0,0.6833333333333333,0.7833333333333334,1,25 -light,0.8933333333333332,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,25 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6586574074074074 -F1-Score: 0.6906481481481482 -Precision: 0.9050925925925926 -Recall: 0.6114197530864197 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7833333333333333,1.0,0.7,0.7833333333333333,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.78,1.0,0.7666666666666666,0.8333333333333333,1,24 -keyboard,0.635,1.0,0.5333333333333332,0.6666666666666666,1,26 -glue,0.6916666666666667,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.5083333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -flashlight,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -cup,0.265,0.5,0.6333333333333333,0.5266666666666667,1,26 -folded,0.8633333333333333,1.0,0.75,0.8333333333333333,1,26 -jam,0.7049999999999998,1.0,0.6333333333333332,0.7333333333333333,1,26 -black,0.8533333333333333,0.725,1.0,0.8257142857142858,6,22 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7216666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -soccer,0.71,1.0,0.5999999999999999,0.7166666666666666,1,26 -hat,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -brown,0.8299999999999998,1.0,0.8,0.8800000000000001,2,25 -coffee,0.6216666666666667,1.0,0.55,0.6833333333333333,1,25 -handle,0.6416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -food,0.7633333333333333,1.0,0.7499999999999999,0.8166666666666667,1,25 -towel,0.655,1.0,0.5833333333333333,0.7,1,26 -chips,0.675,1.0,0.65,0.75,1,26 -stapler,0.755,1.0,0.65,0.75,1,26 -onion,0.6166666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -bag,0.5383333333333333,1.0,0.4333333333333334,0.6,1,26 -sponge,0.7049999999999998,1.0,0.6333333333333332,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.765,1.0,0.6166666666666666,0.7333333333333333,1,25 -special,0.5216666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -colgate,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -leaf,0.7366666666666666,1.0,0.6,0.7166666666666667,1,26 -tube,0.6733333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -cell,0.2783333333333334,0.6,0.4499999999999999,0.47666666666666674,1,26 -mug,0.7749999999999999,1.0,0.6666666666666666,0.7666666666666666,1,25 -yogurt,0.7966666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -plantain,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -red,0.9466666666666669,0.85,1.0,0.8999999999999998,3,27 -pepper,0.6416666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -wheat,0.755,1.0,0.6499999999999999,0.75,1,26 -kleenex,0.605,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -binder,0.6716666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.6566666666666666,1.0,0.6,0.7166666666666667,1,26 -pliers,0.65,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.8933333333333332,1.0,0.8,0.8666666666666666,1,26 -thins,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -package,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -k,0.5933333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -jelly,0.7466666666666667,1.0,0.6499999999999999,0.75,1,26 -fruit,0.775,0.7833333333333333,0.8666666666666666,0.7933333333333333,2,25 -apple,0.75,0.95,0.7166666666666666,0.7666666666666667,1,25 -bell,0.7383333333333333,1.0,0.65,0.75,1,26 -battery,0.6566666666666666,1.0,0.5166666666666666,0.65,1,26 -jar,0.9099999999999999,1.0,0.8,0.8666666666666668,1,26 -bound,0.6883333333333332,1.0,0.6,0.7166666666666666,1,26 -lettuce,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -brush,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -scissors,0.45833333333333337,1.0,0.5499999999999999,0.6666666666666666,1,26 -lime,0.5599999999999999,1.0,0.4999999999999999,0.6333333333333333,1,25 -toothpaste,0.6883333333333332,1.0,0.6,0.7166666666666667,1,26 -top,0.76,1.0,0.7,0.7833333333333333,1,26 -spiral,0.475,1.0,0.4999999999999999,0.6333333333333333,1,26 -handles,0.45500000000000007,1.0,0.5166666666666666,0.65,1,25 -camera,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -eraser,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -pitcher,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -stick,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,25 -cereal,0.7333333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -bulb,0.9099999999999999,1.0,0.8666666666666668,0.9200000000000002,2,26 -hair,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6483333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -can,0.86,1.0,0.8333333333333333,0.9,2,25 -coca,0.5916666666666666,1.0,0.5166666666666666,0.65,1,26 -crackers,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666667,1,25 -calculator,0.7016666666666667,0.95,0.6166666666666666,0.7,1,26 -tissues,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -juice,0.7216666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.6866666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -lemon,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -bowl,0.46333333333333326,1.0,0.4333333333333333,0.5833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.685,1.0,0.55,0.6833333333333333,1,26 -blue,0.59,1.0,0.5833333333333333,0.7,1,25 -used,0.63,1.0,0.6166666666666666,0.7166666666666666,1,23 -energizer,0,0,0,0,1,26 -pear,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -ball,0.39999999999999997,1.0,0.4333333333333333,0.5833333333333333,1,25 -notebook,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -garlic,0.625,1.0,0.6,0.7166666666666667,1,26 -cleaning,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.8766666666666666,1.0,0.8333333333333333,0.9,2,27 -container,0.6833333333333333,1.0,0.6,0.7166666666666666,1,25 -tomato,0.5116666666666666,0.85,0.5166666666666666,0.5666666666666667,1,26 -cellphone,0.5466666666666666,0.5,0.7333333333333333,0.5733333333333334,1,26 -potato,0.6766666666666666,1.0,0.6499999999999999,0.75,1,25 -light,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8683333333333334,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.645679012345679 -F1-Score: 0.6869047619047619 -Precision: 0.9047067901234569 -Recall: 0.6047839506172837 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6933333333333332,1.0,0.5499999999999999,0.6833333333333333,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.76,1.0,0.6166666666666666,0.7333333333333333,1,24 -keyboard,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -glue,0.6383333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.525,1.0,0.4666666666666666,0.6166666666666666,1,26 -cup,0.23666666666666666,0.5,0.5333333333333333,0.49333333333333335,1,26 -folded,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -jam,0.5666666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -black,0.89,0.7,1.0,0.8,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666667,1,26 -soccer,0.735,1.0,0.65,0.75,1,26 -hat,0.6183333333333334,1.0,0.5166666666666666,0.65,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,24 -coffee,0.6,1.0,0.6666666666666666,0.75,1,25 -handle,0.5916666666666666,1.0,0.5333333333333332,0.6666666666666666,1,25 -food,0.705,1.0,0.65,0.75,1,26 -towel,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -chips,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -stapler,0.7666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -onion,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -bag,0.76,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.705,1.0,0.6499999999999999,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.6716666666666666,1.0,0.5833333333333333,0.7,1,25 -special,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -leaf,0.55,1.0,0.5499999999999999,0.6666666666666666,1,26 -tube,0.6083333333333333,1.0,0.65,0.75,1,26 -cell,0.5066666666666666,0.55,0.6666666666666666,0.5566666666666666,1,26 -mug,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -yogurt,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -plantain,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -red,0.9333333333333333,0.8333333333333333,1.0,0.8933333333333333,3,26 -pepper,0.8,1.0,0.8166666666666667,0.8666666666666666,1,26 -wheat,0.7433333333333334,1.0,0.6,0.7166666666666666,1,26 -kleenex,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -toothbrush,0.6716666666666666,1.0,0.65,0.75,1,26 -binder,0.7016666666666667,1.0,0.65,0.75,1,26 -baseball,0.6883333333333332,1.0,0.65,0.75,1,26 -pliers,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5383333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -thins,0.8800000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -package,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -k,0.8416666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -jelly,0.6383333333333333,1.0,0.5,0.65,1,26 -fruit,0.8033333333333335,0.6333333333333333,0.9666666666666666,0.7466666666666668,2,25 -apple,0.5766666666666667,0.95,0.4666666666666666,0.5833333333333333,1,25 -bell,0.6333333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -battery,0.49333333333333335,1.0,0.4999999999999999,0.6333333333333333,1,26 -jar,0.7533333333333333,1.0,0.5666666666666667,0.7,1,26 -bound,0.5983333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -lettuce,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -brush,0.73,1.0,0.7499999999999999,0.8166666666666667,1,26 -scissors,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -lime,0.7466666666666666,1.0,0.6666666666666666,0.7666666666666667,1,25 -toothpaste,0.4,1.0,0.4,0.55,1,26 -top,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -spiral,0.685,1.0,0.5333333333333333,0.6666666666666667,1,26 -handles,0.61,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.6799999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -eraser,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.6633333333333333,1.0,0.4999999999999999,0.65,1,26 -pitcher,0.6833333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -phone,0.6166666666666666,1.0,0.6833333333333332,0.7666666666666666,1,26 -stick,0.7166666666666667,1.0,0.7,0.7833333333333333,1,25 -cereal,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -bulb,0.8633333333333333,1.0,0.8333333333333333,0.9,2,26 -hair,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -can,0.8633333333333333,1.0,0.8333333333333333,0.9,2,24 -coca,0.615,1.0,0.5166666666666666,0.6666666666666667,1,26 -crackers,0.39999999999999997,1.0,0.38333333333333336,0.55,1,26 -plate,0.4966666666666666,1.0,0.5166666666666666,0.65,1,25 -calculator,0.66,0.95,0.55,0.65,1,26 -tissues,0.5833333333333333,1.0,0.5999999999999999,0.7,1,26 -juice,0.45499999999999996,1.0,0.36666666666666664,0.5333333333333333,1,26 -pink,0.6383333333333333,1.0,0.5833333333333333,0.7,1,25 -lemon,0.5,1.0,0.5166666666666666,0.65,1,26 -peach,0.7333333333333333,1.0,0.65,0.75,1,26 -bowl,0.6433333333333333,1.0,0.5166666666666666,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.59,1.0,0.55,0.6833333333333333,1,26 -blue,0.55,1.0,0.6166666666666666,0.7166666666666666,1,25 -used,0.8300000000000001,1.0,0.7166666666666666,0.8,1,24 -energizer,0,0,0,0,1,26 -pear,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -ball,0.6633333333333333,1.0,0.5833333333333333,0.7,1,25 -notebook,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -garlic,0.6916666666666667,1.0,0.65,0.75,1,26 -cleaning,0.5599999999999999,1.0,0.5,0.6333333333333333,1,26 -pair,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -container,0.705,1.0,0.6499999999999999,0.75,1,25 -tomato,0.5700000000000001,0.8,0.5833333333333333,0.6,1,26 -cellphone,0.445,0.65,0.5999999999999999,0.55,1,26 -potato,0.6716666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -light,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.639567901234568 -F1-Score: 0.6836728395061729 -Precision: 0.9024691358024691 -Recall: 0.6044753086419752 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5983333333333334,1.0,0.4833333333333333,0.6333333333333333,1,25 -yellow,0.9633333333333335,0.9166666666666666,1.0,0.9466666666666667,6,24 -looks,0.7533333333333333,0.7,0.7833333333333333,0.6666666666666667,1,24 -keyboard,0.5266666666666666,1.0,0.4499999999999999,0.6,1,26 -glue,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.65,1.0,0.6166666666666666,0.7166666666666666,1,26 -cup,0.425,0.5,0.6333333333333333,0.5266666666666666,1,26 -folded,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -jam,0.6,1.0,0.5833333333333333,0.7,1,26 -black,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666667,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.8483333333333334,1.0,0.7,0.8,1,26 -soccer,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -hat,0.6883333333333332,1.0,0.65,0.75,1,26 -brown,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -coffee,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -handle,0.7133333333333333,1.0,0.7,0.7833333333333333,1,25 -food,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -towel,0.6,1.0,0.5833333333333333,0.7,1,26 -chips,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -stapler,0.7500000000000001,1.0,0.7166666666666666,0.8,1,26 -onion,0.5666666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -bag,0.53,1.0,0.5499999999999999,0.6666666666666666,1,26 -sponge,0.635,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.7833333333333333,1.0,0.7,0.7833333333333333,1,25 -special,0.58,1.0,0.5333333333333332,0.6666666666666666,1,26 -colgate,0.6416666666666667,1.0,0.6,0.7166666666666667,1,26 -leaf,0.6666666666666666,1.0,0.6499999999999999,0.75,1,26 -tube,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.7583333333333333,1.0,0.65,0.75,1,26 -mug,0.53,1.0,0.5333333333333333,0.6666666666666667,1,26 -yogurt,0.86,1.0,0.75,0.8333333333333333,1,26 -plantain,0.725,0.7,0.65,0.65,1,26 -red,0.8166666666666668,0.6333333333333333,1.0,0.7647619047619048,3,25 -pepper,0.7383333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -wheat,0.755,1.0,0.7166666666666666,0.8,1,26 -kleenex,0.6266666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -toothbrush,0.715,1.0,0.5999999999999999,0.7166666666666667,1,26 -binder,0.635,1.0,0.5999999999999999,0.7166666666666667,1,26 -baseball,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -pliers,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.5416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -thins,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -package,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -k,0.8083333333333332,1.0,0.7833333333333333,0.85,1,26 -jelly,0.6249999999999999,1.0,0.5833333333333333,0.7,1,26 -fruit,0.6616666666666666,0.6,0.9333333333333332,0.7166666666666667,2,25 -apple,0.7266666666666667,0.95,0.6166666666666666,0.7,1,25 -bell,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -battery,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -jar,0.5666666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -bound,0.5266666666666666,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -brush,0.5066666666666666,1.0,0.41666666666666663,0.5833333333333333,1,26 -scissors,0.45166666666666666,1.0,0.41666666666666663,0.5833333333333333,1,26 -lime,0.7183333333333334,1.0,0.5666666666666667,0.7,1,25 -toothpaste,0.6900000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -top,0.5216666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -spiral,0.74,1.0,0.6166666666666666,0.7333333333333333,1,26 -handles,0.5883333333333333,1.0,0.5166666666666666,0.65,1,25 -camera,0.4966666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -eraser,0.675,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6916666666666667,0.7,0.7666666666666666,0.65,1,26 -pitcher,0.7166666666666667,1.0,0.7333333333333333,0.8,1,26 -phone,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -stick,0.7383333333333334,1.0,0.5833333333333333,0.7166666666666667,1,25 -cereal,0.7916666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -bulb,1.0,1.0,1.0,1.0,2,26 -hair,0.5216666666666667,1.0,0.5166666666666666,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -can,0.8666666666666668,1.0,0.8666666666666668,0.9200000000000002,2,25 -coca,0.61,1.0,0.5,0.65,1,26 -crackers,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.755,1.0,0.7166666666666666,0.8,1,25 -calculator,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -tissues,0.71,1.0,0.5833333333333333,0.7166666666666667,1,26 -juice,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -pink,0.5933333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -lemon,0.8566666666666667,1.0,0.7,0.8,1,26 -peach,0.805,1.0,0.7166666666666666,0.8,1,26 -bowl,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.55,1.0,0.4833333333333334,0.6166666666666666,1,26 -blue,0.65,0.9,0.5666666666666667,0.6333333333333334,1,25 -used,0.6683333333333333,1.0,0.5999999999999999,0.7166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -ball,0.7849999999999999,1.0,0.6166666666666666,0.7333333333333333,1,25 -notebook,0.5666666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -garlic,0.6016666666666667,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.8,1.0,0.7333333333333333,0.8166666666666667,1,26 -pair,0.8633333333333333,1.0,0.8333333333333334,0.9000000000000001,2,26 -container,0.36666666666666664,1.0,0.38333333333333336,0.55,1,25 -tomato,0.3516666666666667,0.5,0.4666666666666666,0.4666666666666667,1,26 -cellphone,0.65,1.0,0.6166666666666666,0.7166666666666666,1,26 -potato,0.6233333333333333,1.0,0.5333333333333333,0.6666666666666666,1,25 -light,0.8600000000000001,1.0,0.8333333333333333,0.9,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,25 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6435339506172839 -F1-Score: 0.6862169312169313 -Precision: 0.8979938271604937 -Recall: 0.6089506172839505 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5999999999999999,1.0,0.5333333333333333,0.6666666666666667,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,24 -keyboard,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -glue,0.47166666666666657,1.0,0.4499999999999999,0.6,1,26 -milk,0,0,0,0,1,26 -cola,0.2833333333333333,1.0,0.4166666666666667,0.5666666666666667,1,26 -flashlight,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -cup,0.46333333333333326,0.5,0.7,0.5533333333333335,1,26 -folded,0.6849999999999999,1.0,0.6,0.7166666666666666,1,26 -jam,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -black,0.9166666666666667,0.8,1.0,0.8733333333333333,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -soccer,0.5833333333333333,1.0,0.5,0.6333333333333333,1,26 -hat,0.8216666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -brown,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,25 -coffee,0.7150000000000001,1.0,0.6166666666666666,0.7333333333333333,1,25 -handle,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -food,0.7266666666666667,1.0,0.6,0.7166666666666666,1,24 -towel,0.7733333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.705,1.0,0.7,0.7833333333333333,1,26 -stapler,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -onion,0.5583333333333333,0.95,0.5666666666666667,0.65,1,26 -bag,0.7633333333333333,1.0,0.6499999999999999,0.75,1,26 -sponge,0.6933333333333334,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.9166666666666666,1.0,0.8833333333333332,0.9166666666666666,1,25 -special,0.7866666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -colgate,0.5966666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -leaf,0.48999999999999994,1.0,0.4666666666666666,0.6166666666666667,1,26 -tube,0.7466666666666667,1.0,0.6499999999999999,0.75,1,26 -cell,0.4666666666666667,0.6,0.6166666666666666,0.55,1,26 -mug,0.7233333333333334,1.0,0.65,0.75,1,25 -yogurt,0.9466666666666667,1.0,0.9,0.9333333333333332,1,26 -plantain,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -red,0.9266666666666667,0.8166666666666667,1.0,0.8800000000000001,3,27 -pepper,0.5633333333333332,1.0,0.41666666666666663,0.5833333333333333,1,26 -wheat,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.8550000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -toothbrush,0.53,1.0,0.5499999999999999,0.6666666666666666,1,26 -binder,0.7916666666666666,1.0,0.7166666666666666,0.8,1,26 -baseball,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -pliers,0.53,1.0,0.5333333333333333,0.6666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.73,1.0,0.6499999999999999,0.75,1,26 -thins,0.6933333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -package,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.6483333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -jelly,0.6733333333333333,1.0,0.6,0.7166666666666667,1,26 -fruit,0.8683333333333334,0.8,0.9666666666666666,0.8533333333333333,2,25 -apple,0.5716666666666665,0.9,0.5666666666666667,0.6166666666666667,1,25 -bell,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.6,1.0,0.5166666666666666,0.65,1,26 -jar,0.7849999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -bound,0.5666666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -lettuce,0.6416666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -brush,0.655,1.0,0.5333333333333333,0.6666666666666667,1,26 -scissors,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -lime,0.675,1.0,0.6333333333333333,0.7333333333333333,1,25 -toothpaste,0.53,1.0,0.5333333333333333,0.6666666666666666,1,26 -top,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -spiral,0.6233333333333333,1.0,0.5,0.65,1,26 -handles,0.44333333333333336,1.0,0.4999999999999999,0.6333333333333333,1,25 -camera,0.6683333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -eraser,0.8083333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7849999999999999,1.0,0.6333333333333333,0.75,1,26 -pitcher,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -phone,0.6916666666666667,1.0,0.5833333333333333,0.7,1,26 -stick,0.6466666666666666,1.0,0.5833333333333333,0.7,1,25 -cereal,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -bulb,0.93,1.0,0.9,0.9400000000000001,2,26 -hair,0.6599999999999999,1.0,0.6,0.7166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6516666666666666,1.0,0.5666666666666667,0.7,1,26 -can,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,25 -coca,0.6666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -crackers,0.6883333333333332,1.0,0.6,0.7166666666666667,1,26 -plate,0.8216666666666667,1.0,0.7666666666666666,0.8333333333333333,1,25 -calculator,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -tissues,0.5083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.5633333333333332,1.0,0.5499999999999999,0.6666666666666666,1,26 -pink,0.4383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -lemon,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -peach,0.8,1.0,0.7166666666666666,0.8,1,26 -bowl,0.7466666666666667,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -blue,0.5216666666666667,0.95,0.5166666666666666,0.6166666666666667,1,25 -used,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -ball,0.74,1.0,0.5166666666666666,0.6666666666666667,1,25 -notebook,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -garlic,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.5383333333333333,1.0,0.4,0.5666666666666667,1,26 -pair,0.9083333333333332,1.0,0.9,0.9400000000000001,2,27 -container,0.8566666666666667,1.0,0.7,0.8,1,26 -tomato,0.5633333333333332,0.9,0.5499999999999999,0.6,1,26 -cellphone,0.6733333333333333,0.5,0.75,0.5833333333333333,1,26 -potato,0.8466666666666667,1.0,0.7,0.8,1,25 -light,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,27 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8566666666666667,1.0,0.8,0.8800000000000001,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.650817901234568 -F1-Score: 0.6862345679012345 -Precision: 0.904783950617284 -Recall: 0.6050925925925925 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.7683333333333333,0.9,0.6666666666666666,0.7,1,24 -keyboard,0.6883333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6683333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -flashlight,0.5549999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -cup,0.6849999999999999,0.5,0.75,0.5833333333333333,1,26 -folded,0.5083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -jam,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.8483333333333333,0.6833333333333333,1.0,0.798095238095238,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -soccer,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -hat,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -coffee,0.6,1.0,0.5166666666666666,0.65,1,26 -handle,0.5,1.0,0.5333333333333332,0.6666666666666666,1,26 -food,0.3833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -towel,0.5349999999999999,1.0,0.4833333333333334,0.6333333333333333,1,26 -chips,0.63,1.0,0.5166666666666666,0.65,1,26 -stapler,0.725,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -bag,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -sponge,0.64,1.0,0.55,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -special,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -colgate,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -leaf,0.6399999999999999,1.0,0.4833333333333333,0.6333333333333334,1,26 -tube,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -cell,0.37666666666666665,0.6,0.55,0.5233333333333333,1,26 -mug,0.7433333333333333,1.0,0.6499999999999999,0.75,1,26 -yogurt,0.805,1.0,0.6833333333333333,0.7833333333333334,1,26 -plantain,0.4916666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -red,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666667,3,25 -pepper,0.5016666666666667,1.0,0.4499999999999999,0.6,1,26 -wheat,0.5916666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.7266666666666667,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.6583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -binder,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -baseball,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -pliers,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,24 -water,0.4499999999999999,1.0,0.4833333333333332,0.6166666666666666,1,26 -thins,0.7499999999999999,1.0,0.7499999999999999,0.8166666666666667,1,26 -package,0.775,1.0,0.7166666666666666,0.8,1,26 -k,0.5833333333333333,1.0,0.45,0.6166666666666667,1,26 -jelly,0.7,1.0,0.65,0.75,1,26 -fruit,0.795,0.6666666666666667,0.9333333333333332,0.7533333333333333,2,25 -apple,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -bell,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -battery,0.7166666666666666,1.0,0.75,0.8166666666666667,1,26 -jar,0.7333333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -bound,0.6133333333333333,1.0,0.65,0.75,1,26 -lettuce,0.53,1.0,0.5,0.6333333333333333,1,26 -brush,0.6183333333333333,1.0,0.5833333333333333,0.7,1,26 -scissors,0.85,1.0,0.7666666666666666,0.8333333333333333,1,26 -lime,0.7666666666666666,1.0,0.6499999999999999,0.75,1,25 -toothpaste,0.44666666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -top,0.8033333333333333,1.0,0.6333333333333333,0.75,1,26 -spiral,0.7483333333333333,1.0,0.6333333333333333,0.75,1,26 -handles,0.8099999999999999,1.0,0.7333333333333333,0.8166666666666667,1,25 -camera,0.655,1.0,0.5333333333333333,0.6666666666666666,1,26 -eraser,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5633333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -pitcher,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -phone,0.705,1.0,0.5666666666666667,0.7,1,26 -stick,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -cereal,0.585,1.0,0.5833333333333333,0.7,1,26 -bulb,0.9266666666666667,1.0,0.9,0.9400000000000001,2,26 -hair,0.6633333333333333,1.0,0.6,0.7166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -can,0.9016666666666667,1.0,0.8666666666666668,0.9200000000000002,2,24 -coca,0.8300000000000001,1.0,0.7166666666666666,0.8,1,26 -crackers,0.6849999999999999,1.0,0.6499999999999999,0.75,1,26 -plate,0.7333333333333333,1.0,0.6499999999999999,0.75,1,25 -calculator,0.76,0.95,0.6333333333333333,0.7166666666666667,1,26 -tissues,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -juice,0.5666666666666667,1.0,0.5833333333333333,0.7,1,26 -pink,0.5499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -lemon,0.6083333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -peach,0.65,1.0,0.6833333333333333,0.7666666666666667,1,26 -bowl,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -blue,0.53,1.0,0.5499999999999999,0.6666666666666666,1,25 -used,0.655,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.46833333333333327,1.0,0.5166666666666666,0.65,1,26 -ball,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -garlic,0.7150000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -cleaning,0.875,1.0,0.8166666666666667,0.8666666666666666,1,26 -pair,0.9600000000000002,1.0,0.9333333333333332,0.9600000000000002,2,27 -container,0.49833333333333335,1.0,0.41666666666666663,0.5833333333333334,1,25 -tomato,0.5016666666666667,0.9,0.5499999999999999,0.6166666666666667,1,26 -cellphone,0.56,0.5,0.7166666666666666,0.5633333333333334,1,26 -potato,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,25 -light,0.8833333333333332,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9016666666666666,1.0,0.8666666666666668,0.9200000000000002,2,25 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6411265432098766 -F1-Score: 0.6830070546737214 -Precision: 0.9030864197530865 -Recall: 0.6020061728395061 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.7016666666666667,0.95,0.6166666666666666,0.7,1,24 -keyboard,0.8466666666666665,1.0,0.7833333333333333,0.85,1,26 -glue,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.9100000000000001,1.0,0.8,0.8666666666666666,1,26 -flashlight,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -cup,0.4883333333333333,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.7166666666666666,1.0,0.7333333333333333,0.8,1,26 -jam,0.58,1.0,0.6,0.7166666666666667,1,26 -black,1.0,1.0,1.0,1.0,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.675,1.0,0.5833333333333333,0.7,1,26 -soccer,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -hat,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -brown,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -coffee,0.6433333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -handle,0.6916666666666667,1.0,0.5833333333333333,0.7,1,26 -food,0.59,1.0,0.5333333333333333,0.6666666666666667,1,25 -towel,0.6266666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.5833333333333333,1.0,0.5499999999999999,0.6666666666666667,1,26 -bag,0.6933333333333332,1.0,0.5833333333333333,0.7,1,26 -sponge,0.6383333333333333,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.5166666666666666,1.0,0.4499999999999999,0.6,1,25 -special,0.5433333333333332,1.0,0.4666666666666666,0.6166666666666666,1,26 -colgate,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -leaf,0.6966666666666667,1.0,0.65,0.75,1,26 -tube,0.6883333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -cell,0.445,0.6,0.5999999999999999,0.5399999999999999,1,26 -mug,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -yogurt,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.5816666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.40499999999999997,1.0,0.4333333333333333,0.5833333333333333,1,26 -wheat,0.755,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -toothbrush,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -binder,0.5216666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -baseball,0.6766666666666666,1.0,0.6,0.7166666666666667,1,26 -pliers,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6883333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -thins,0.655,1.0,0.5833333333333333,0.7,1,26 -package,0.63,1.0,0.6,0.7166666666666666,1,26 -k,0.7216666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -jelly,0.475,1.0,0.4666666666666666,0.6166666666666666,1,26 -fruit,0.7783333333333334,0.6499999999999999,0.9333333333333332,0.7333333333333333,2,25 -apple,0.6916666666666667,0.95,0.5833333333333333,0.6666666666666667,1,25 -bell,0.5216666666666666,1.0,0.4,0.5666666666666667,1,26 -battery,0.8016666666666667,1.0,0.7166666666666666,0.8,1,26 -jar,0.85,1.0,0.75,0.8333333333333333,1,26 -bound,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -brush,0.63,1.0,0.6,0.7166666666666667,1,26 -scissors,0.5883333333333333,1.0,0.4999999999999999,0.65,1,26 -lime,0.6399999999999999,1.0,0.4666666666666666,0.6333333333333334,1,25 -toothpaste,0.4883333333333333,1.0,0.5166666666666666,0.65,1,26 -top,0.5916666666666667,1.0,0.5,0.6333333333333333,1,26 -spiral,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -handles,0.75,1.0,0.7999999999999999,0.85,1,25 -camera,0.5766666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -eraser,0.7666666666666666,1.0,0.7333333333333333,0.8,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -pitcher,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -phone,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -stick,0.705,1.0,0.6499999999999999,0.75,1,25 -cereal,0.65,1.0,0.5833333333333333,0.7,1,26 -bulb,0.885,1.0,0.8333333333333333,0.9,2,26 -hair,0.8550000000000001,1.0,0.75,0.8333333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5566666666666666,1.0,0.4999999999999999,0.65,1,26 -can,0.9333333333333332,1.0,0.9333333333333332,0.96,2,24 -coca,0.6833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -crackers,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -plate,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -calculator,0.735,1.0,0.6333333333333333,0.75,1,26 -tissues,0.7333333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -juice,0.8433333333333334,1.0,0.7,0.8,1,26 -pink,0.8016666666666665,1.0,0.6833333333333333,0.7833333333333333,1,25 -lemon,0.7,1.0,0.6,0.7166666666666666,1,26 -peach,0.4716666666666667,1.0,0.4333333333333333,0.6,1,26 -bowl,0.725,1.0,0.65,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5666666666666667,1.0,0.5833333333333333,0.7,1,26 -blue,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -used,0.5916666666666666,1.0,0.6333333333333333,0.7333333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.7666666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -ball,0.6566666666666666,1.0,0.4999999999999999,0.65,1,25 -notebook,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.7433333333333334,1.0,0.6333333333333333,0.75,1,26 -cleaning,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -pair,0.9333333333333332,1.0,0.9333333333333332,0.9600000000000002,2,26 -container,0.5166666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -tomato,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -cellphone,0.5266666666666666,0.55,0.6666666666666666,0.5566666666666666,1,26 -potato,0.7466666666666667,1.0,0.7,0.7833333333333333,1,25 -light,0.9099999999999999,1.0,0.8666666666666666,0.9199999999999999,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.93,1.0,0.9,0.9400000000000001,2,27 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6540740740740743 -F1-Score: 0.692716049382716 -Precision: 0.9083333333333333 -Recall: 0.6111111111111112 -token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6466666666666666,1.0,0.5833333333333333,0.7,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.56,0.85,0.55,0.6,1,24 -keyboard,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -glue,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.645,1.0,0.55,0.6833333333333333,1,26 -flashlight,0.6399999999999999,1.0,0.5833333333333333,0.7,1,26 -cup,0.6399999999999999,0.5,0.7833333333333333,0.5900000000000001,1,26 -folded,0.675,1.0,0.5999999999999999,0.7166666666666667,1,26 -jam,0.6516666666666666,1.0,0.45,0.6166666666666667,1,26 -black,0.8333333333333333,0.6583333333333333,1.0,0.779047619047619,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -soccer,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -hat,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -brown,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -coffee,0.6183333333333334,1.0,0.5166666666666666,0.65,1,25 -handle,0.5683333333333332,1.0,0.4499999999999999,0.6,1,26 -food,0.6566666666666666,1.0,0.55,0.6833333333333333,1,25 -towel,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.71,1.0,0.55,0.6833333333333333,1,26 -stapler,0.7749999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -onion,0.5533333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -bag,0.6216666666666667,1.0,0.55,0.6833333333333333,1,26 -sponge,0.6483333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7583333333333333,1.0,0.7,0.7833333333333333,1,25 -special,0.5683333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -colgate,0.4216666666666667,1.0,0.5166666666666666,0.65,1,26 -leaf,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -tube,0.5766666666666667,1.0,0.5166666666666666,0.65,1,26 -cell,0.755,1.0,0.6833333333333333,0.7833333333333333,1,26 -mug,0.71,1.0,0.6499999999999999,0.75,1,25 -yogurt,0.575,1.0,0.6166666666666666,0.7166666666666666,1,26 -plantain,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -red,0.8566666666666667,0.725,1.0,0.8257142857142856,3,27 -pepper,0.7266666666666667,1.0,0.7166666666666666,0.8,1,26 -wheat,0.65,1.0,0.5499999999999999,0.6833333333333333,1,26 -kleenex,0.73,1.0,0.7499999999999999,0.8166666666666667,1,26 -toothbrush,0.6766666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -binder,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.6016666666666667,1.0,0.5833333333333333,0.7,1,26 -pliers,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -thins,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -package,0.49333333333333335,1.0,0.5166666666666666,0.65,1,26 -k,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -jelly,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -fruit,0.6950000000000001,0.6166666666666667,0.8666666666666666,0.7066666666666668,2,25 -apple,0.5666666666666667,1.0,0.5833333333333333,0.7,1,25 -bell,0.7466666666666667,1.0,0.5833333333333333,0.7166666666666666,1,26 -battery,0.6100000000000001,1.0,0.5833333333333333,0.7,1,26 -jar,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -bound,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.6466666666666667,1.0,0.6499999999999999,0.75,1,26 -brush,0.5999999999999999,1.0,0.5166666666666666,0.65,1,26 -scissors,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -lime,0.6933333333333332,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.7483333333333333,1.0,0.6,0.7166666666666667,1,26 -top,0.675,1.0,0.5499999999999999,0.6833333333333333,1,26 -spiral,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -handles,0.7416666666666666,1.0,0.6499999999999999,0.75,1,25 -camera,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -eraser,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.6683333333333332,1.0,0.65,0.75,1,26 -pitcher,0.635,1.0,0.5499999999999999,0.6833333333333333,1,26 -phone,0.6916666666666667,1.0,0.5833333333333333,0.7,1,26 -stick,0.755,1.0,0.6666666666666666,0.7666666666666667,1,25 -cereal,0.6849999999999999,1.0,0.5333333333333333,0.6833333333333333,1,26 -bulb,0.905,1.0,0.8666666666666666,0.9199999999999999,2,27 -hair,0.5333333333333333,1.0,0.5499999999999999,0.6666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -can,0.8583333333333332,1.0,0.8333333333333333,0.9,2,25 -coca,0.5883333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -crackers,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -plate,0.6166666666666666,1.0,0.65,0.75,1,25 -calculator,0.595,0.9,0.4666666666666666,0.5833333333333333,1,26 -tissues,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -juice,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -pink,0.6933333333333332,1.0,0.5666666666666667,0.7,1,25 -lemon,0.6583333333333333,1.0,0.65,0.75,1,26 -peach,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -bowl,0.675,1.0,0.6,0.7166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -blue,0.7966666666666666,1.0,0.7499999999999999,0.8166666666666668,1,25 -used,0.5549999999999999,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.655,1.0,0.55,0.6833333333333333,1,26 -ball,0.8916666666666666,1.0,0.8333333333333333,0.8833333333333332,1,25 -notebook,0.9083333333333332,1.0,0.85,0.9,1,26 -garlic,0.63,1.0,0.5166666666666666,0.65,1,26 -cleaning,0.6799999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -pair,0.8716666666666665,1.0,0.8333333333333333,0.9,2,26 -container,0.6833333333333333,1.0,0.6333333333333332,0.7333333333333333,1,25 -tomato,0.5016666666666667,0.65,0.5333333333333333,0.53,1,26 -cellphone,0.6133333333333334,1.0,0.5833333333333333,0.7,1,26 -potato,0.78,1.0,0.7333333333333333,0.8166666666666668,1,26 -light,0.95,1.0,0.9333333333333332,0.96,2,25 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,23 -bottle,0.9199999999999999,1.0,0.8666666666666666,0.9199999999999999,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.64625 -F1-Score: 0.6872354497354496 -Precision: 0.9060185185185186 -Recall: 0.6050925925925924 diff --git a/Validation/UW_raw_75_object_0.0.csv b/Validation/UW_raw_75_object_0.0.csv deleted file mode 100644 index 9b06011..0000000 --- a/Validation/UW_raw_75_object_0.0.csv +++ /dev/null @@ -1,2875 +0,0 @@ -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,-0.004999999999999999,0.29500000000000004,0.6166666666666666,0.3685714285714286,1,25 -yellow,0.43999999999999995,0.43999999999999995,1.0,0.5942857142857143,6,24 -looks,0.04,0.22666666666666666,0.7166666666666666,0.320952380952381,1,24 -keyboard,-0.056666666666666664,0.29333333333333333,0.6833333333333333,0.3504761904761905,1,26 -glue,-0.023333333333333327,0.2683333333333333,0.6833333333333333,0.34380952380952384,1,26 -milk,0,0,0,0,1,26 -cola,-0.14166666666666666,0.2866666666666667,0.4666666666666666,0.32952380952380955,1,26 -flashlight,0.04,0.2566666666666667,0.7166666666666666,0.3485714285714286,1,26 -cup,-0.01333333333333333,0.30333333333333334,0.7,0.37333333333333335,1,26 -folded,0.04,0.2483333333333333,0.7666666666666666,0.3342857142857143,1,26 -jam,-0.021666666666666678,0.2683333333333333,0.6666666666666666,0.33428571428571435,1,26 -black,0.47000000000000003,0.43,1.0,0.5854761904761905,6,21 -orange,0.35666666666666663,0.35666666666666663,1.0,0.5121428571428572,3,24 -folder,-0.03500000000000001,0.28833333333333333,0.65,0.35238095238095235,1,26 -soccer,-0.046666666666666655,0.26333333333333336,0.5999999999999999,0.3295238095238095,1,26 -hat,-0.14166666666666666,0.31833333333333336,0.4833333333333333,0.3523809523809524,1,26 -brown,0.3,0.3666666666666667,0.9333333333333332,0.4895238095238096,2,25 -coffee,-0.05,0.32,0.5666666666666667,0.37523809523809526,1,26 -handle,-0.07999999999999999,0.27166666666666667,0.55,0.3276190476190477,1,25 -food,-0.013333333333333336,0.29833333333333334,0.6666666666666666,0.36380952380952386,1,25 -towel,-0.041666666666666664,0.26166666666666666,0.5999999999999999,0.3323809523809524,1,26 -chips,0.015000000000000003,0.25166666666666665,0.7166666666666666,0.3323809523809524,1,26 -stapler,-0.035,0.265,0.6333333333333333,0.3390476190476191,1,26 -onion,0.11666666666666665,0.215,0.8,0.3247619047619047,1,26 -bag,-0.16499999999999998,0.3516666666666667,0.5666666666666667,0.3685714285714286,1,26 -sponge,-0.07666666666666666,0.255,0.5833333333333333,0.31619047619047624,1,26 -zero,0,0,0,0,1,26 -computer,-0.10999999999999999,0.2983333333333334,0.5666666666666667,0.3485714285714286,1,25 -special,-0.11833333333333333,0.31,0.5333333333333333,0.3504761904761905,1,26 -colgate,-0.038333333333333344,0.25166666666666665,0.65,0.3180952380952381,1,26 -leaf,-0.125,0.3,0.4666666666666666,0.3504761904761905,1,26 -tube,0.05333333333333333,0.265,0.6833333333333333,0.3571428571428571,1,26 -cell,-0.06333333333333332,0.2816666666666666,0.55,0.34380952380952384,1,26 -mug,-0.1,0.2733333333333333,0.5166666666666666,0.3314285714285714,1,26 -yogurt,0.03166666666666666,0.265,0.7166666666666666,0.3504761904761905,1,26 -plantain,-0.16333333333333333,0.29333333333333333,0.4666666666666666,0.3276190476190476,1,26 -red,0.4666666666666666,0.4666666666666666,1.0,0.625,3,27 -pepper,-0.018333333333333323,0.27666666666666667,0.65,0.3504761904761905,1,26 -wheat,0.03166666666666667,0.24666666666666667,0.6666666666666666,0.3390476190476191,1,26 -kleenex,-0.01333333333333333,0.2733333333333333,0.6499999999999999,0.3504761904761905,1,26 -toothbrush,-0.05166666666666666,0.3066666666666667,0.7,0.3571428571428571,1,26 -binder,0.07666666666666669,0.2416666666666667,0.7333333333333333,0.34380952380952384,1,26 -baseball,0.041666666666666664,0.23666666666666666,0.7166666666666666,0.3295238095238095,1,26 -pliers,-0.07166666666666667,0.24833333333333335,0.5833333333333333,0.31142857142857144,1,26 -paste,0,0,0,0,1,26 -box,0.42666666666666664,0.42666666666666664,1.0,0.5769047619047619,3,25 -water,-0.12166666666666666,0.2733333333333334,0.5666666666666667,0.320952380952381,1,26 -thins,0.028333333333333332,0.2566666666666667,0.6666666666666666,0.34571428571428575,1,26 -package,-0.23333333333333334,0.35833333333333334,0.4,0.3638095238095238,1,26 -k,-0.18333333333333332,0.3333333333333333,0.4999999999999999,0.35428571428571426,1,26 -jelly,-0.11333333333333333,0.33666666666666667,0.6166666666666666,0.37523809523809526,1,26 -fruit,0.33333333333333337,0.5,0.8333333333333333,0.5800000000000001,2,25 -apple,0.023333333333333338,0.2416666666666667,0.6333333333333333,0.32761904761904764,1,25 -bell,-0.06833333333333333,0.3016666666666667,0.5999999999999999,0.35523809523809524,1,26 -battery,-0.12166666666666666,0.31500000000000006,0.5333333333333333,0.35523809523809524,1,26 -jar,-0.041666666666666664,0.2783333333333334,0.6333333333333333,0.3476190476190476,1,26 -bound,-0.125,0.3,0.5166666666666666,0.3485714285714286,1,26 -lettuce,0.023333333333333338,0.21833333333333332,0.7,0.3114285714285714,1,26 -brush,0.028333333333333332,0.22666666666666666,0.6666666666666666,0.3180952380952381,1,26 -scissors,-0.01333333333333333,0.25166666666666665,0.6166666666666666,0.3276190476190476,1,26 -lime,0.03333333333333334,0.2783333333333333,0.6666666666666666,0.3685714285714286,1,25 -toothpaste,-0.18333333333333332,0.29000000000000004,0.4499999999999999,0.3228571428571429,1,26 -top,-0.05,0.32333333333333336,0.5666666666666667,0.3771428571428571,1,26 -spiral,0.0033333333333333327,0.26166666666666666,0.6666666666666666,0.33904761904761904,1,26 -handles,0.0016666666666666718,0.26333333333333336,0.6166666666666666,0.34380952380952384,1,25 -camera,-0.03499999999999999,0.2333333333333333,0.5999999999999999,0.30952380952380953,1,26 -eraser,-0.01333333333333333,0.2533333333333333,0.6499999999999999,0.3323809523809524,1,26 -creamer,0,0,0,0,1,26 -white,0.47333333333333333,0.47333333333333333,1.0,0.6226190476190477,5,21 -banana,-0.135,0.31,0.5666666666666667,0.34571428571428575,1,26 -pitcher,0.015000000000000005,0.26,0.6666666666666666,0.34380952380952384,1,26 -phone,-0.18333333333333332,0.3,0.45,0.3323809523809524,1,26 -stick,-0.125,0.25833333333333336,0.5333333333333332,0.3180952380952381,1,25 -cereal,-0.07166666666666666,0.2783333333333334,0.5833333333333333,0.33904761904761904,1,26 -bulb,0.27499999999999997,0.31999999999999995,0.9333333333333332,0.45619047619047615,2,26 -hair,-0.175,0.31166666666666665,0.4666666666666666,0.33904761904761904,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,-0.039999999999999994,0.27666666666666667,0.6833333333333332,0.34380952380952384,1,26 -can,0.28833333333333333,0.35833333333333334,0.9,0.48999999999999994,2,24 -coca,0.041666666666666664,0.2333333333333333,0.7499999999999999,0.3295238095238095,1,26 -crackers,-0.11499999999999999,0.28833333333333333,0.6166666666666666,0.33238095238095233,1,26 -plate,0.053333333333333344,0.24666666666666667,0.6833333333333333,0.340952380952381,1,25 -calculator,-0.02333333333333333,0.24666666666666665,0.6833333333333333,0.32285714285714284,1,26 -tissues,-0.18333333333333332,0.30333333333333334,0.4999999999999999,0.3295238095238095,1,26 -juice,-0.14666666666666667,0.29333333333333333,0.5166666666666666,0.33238095238095244,1,26 -pink,-0.018333333333333323,0.23833333333333334,0.6,0.320952380952381,1,25 -lemon,-0.01833333333333333,0.23833333333333334,0.7,0.31142857142857144,1,26 -peach,-0.10166666666666666,0.265,0.5999999999999999,0.32571428571428573,1,26 -bowl,-0.03333333333333334,0.29166666666666663,0.6833333333333333,0.35904761904761906,1,26 -camouflage,0,0,0,0,1,26 -digital,-0.1716666666666667,0.34833333333333333,0.5666666666666667,0.3638095238095238,1,26 -blue,-0.06666666666666667,0.3083333333333333,0.6333333333333333,0.3638095238095238,1,25 -used,-0.016666666666666666,0.29166666666666663,0.5666666666666667,0.3638095238095238,1,24 -energizer,0,0,0,0,1,26 -pear,0.0066666666666666706,0.25666666666666665,0.6499999999999999,0.34380952380952384,1,26 -ball,-0.06333333333333332,0.27666666666666667,0.5499999999999999,0.3361904761904762,1,25 -notebook,-0.205,0.33666666666666667,0.4999999999999999,0.3504761904761905,1,26 -garlic,-0.004999999999999996,0.255,0.6166666666666666,0.3342857142857143,1,26 -cleaning,-0.05499999999999998,0.29833333333333334,0.6,0.3571428571428571,1,26 -pair,0.255,0.37499999999999994,0.8333333333333333,0.4876190476190477,2,26 -container,-0.25,0.31999999999999995,0.4166666666666667,0.3342857142857143,1,25 -tomato,-0.12166666666666667,0.29833333333333334,0.5333333333333333,0.33904761904761904,1,26 -cellphone,-0.03833333333333333,0.29833333333333334,0.6166666666666666,0.3571428571428571,1,26 -potato,0.09000000000000001,0.23000000000000004,0.7833333333333333,0.3342857142857143,1,25 -light,0.34833333333333333,0.34833333333333333,1.0,0.49952380952380954,2,25 -green,0.4833333333333333,0.4833333333333333,1.0,0.6297619047619047,3,24 -bottle,0.32166666666666666,0.4,0.9,0.5261904761904761,2,25 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: 0.005432098765432097 -F1-Score: 0.342989417989418 -Precision: 0.2747530864197531 -Recall: 0.6092592592592594 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,-0.030000000000000006,0.255,0.6166666666666666,0.32285714285714284,1,24 -yellow,0.4033333333333333,0.4033333333333333,1.0,0.5545238095238095,6,24 -looks,-0.05833333333333333,0.29166666666666663,0.5833333333333333,0.35714285714285715,1,24 -keyboard,-0.09333333333333334,0.315,0.5833333333333333,0.36190476190476195,1,26 -glue,0.001666666666666683,0.27166666666666667,0.6666666666666666,0.34857142857142853,1,26 -milk,0,0,0,0,1,26 -cola,-0.08833333333333333,0.30666666666666664,0.6333333333333333,0.35238095238095235,1,26 -flashlight,-0.075,0.27,0.55,0.32761904761904764,1,26 -cup,-0.07666666666666666,0.2816666666666666,0.5833333333333333,0.34190476190476193,1,26 -folded,-0.09166666666666665,0.26999999999999996,0.5166666666666666,0.3342857142857143,1,26 -jam,-0.08833333333333333,0.30666666666666664,0.6333333333333332,0.35238095238095235,1,26 -black,0.5900000000000001,0.5033333333333333,1.0,0.6514285714285714,6,21 -orange,0.3533333333333334,0.3533333333333334,1.0,0.5035714285714287,3,25 -folder,0.065,0.21833333333333335,0.7666666666666666,0.3180952380952381,1,26 -soccer,-0.004999999999999999,0.25166666666666665,0.5666666666666667,0.3342857142857143,1,26 -hat,-0.01833333333333334,0.29,0.7,0.3571428571428572,1,26 -brown,0.32333333333333336,0.44000000000000006,0.8666666666666666,0.5523809523809524,2,25 -coffee,0.04166666666666667,0.2666666666666667,0.6666666666666666,0.36190476190476195,1,25 -handle,-0.07499999999999998,0.2816666666666667,0.55,0.339047619047619,1,25 -food,-0.14166666666666666,0.30333333333333334,0.4666666666666666,0.3457142857142857,1,24 -towel,-0.041666666666666664,0.26999999999999996,0.6499999999999999,0.33428571428571435,1,26 -chips,-0.06333333333333332,0.25166666666666665,0.5833333333333333,0.32095238095238093,1,26 -stapler,-0.08333333333333333,0.29166666666666663,0.5666666666666667,0.35238095238095235,1,26 -onion,-0.08833333333333333,0.31166666666666665,0.5833333333333333,0.36190476190476195,1,26 -bag,-0.14666666666666667,0.31166666666666665,0.5166666666666666,0.3485714285714286,1,26 -sponge,-0.125,0.29500000000000004,0.4833333333333333,0.33904761904761904,1,26 -zero,0,0,0,0,1,26 -computer,-0.14666666666666667,0.31166666666666665,0.55,0.3504761904761905,1,25 -special,-0.12166666666666667,0.29,0.5333333333333333,0.3323809523809524,1,26 -colgate,0.008333333333333331,0.2316666666666667,0.65,0.31999999999999995,1,26 -leaf,-0.04833333333333333,0.27166666666666667,0.6,0.3371428571428572,1,26 -tube,-0.18333333333333335,0.33999999999999997,0.4833333333333333,0.3523809523809524,1,26 -cell,-0.15833333333333333,0.29833333333333334,0.41666666666666663,0.3361904761904762,1,26 -mug,-0.15499999999999997,0.28833333333333333,0.5166666666666666,0.32285714285714284,1,25 -yogurt,-0.05500000000000001,0.25166666666666665,0.6333333333333333,0.3180952380952381,1,26 -plantain,-0.10833333333333332,0.27,0.4666666666666666,0.32952380952380955,1,26 -red,0.5366666666666666,0.5366666666666666,1.0,0.6809523809523809,3,24 -pepper,-0.085,0.30166666666666664,0.5833333333333333,0.3523809523809524,1,26 -wheat,-0.01333333333333333,0.2733333333333333,0.6166666666666666,0.34571428571428575,1,26 -kleenex,-0.07166666666666666,0.2866666666666667,0.6833333333333333,0.33904761904761904,1,26 -toothbrush,-0.15,0.3,0.4666666666666666,0.33904761904761904,1,26 -binder,-0.04333333333333333,0.2616666666666667,0.5666666666666667,0.3276190476190476,1,26 -baseball,0.08833333333333335,0.23333333333333334,0.8333333333333334,0.3323809523809524,1,26 -pliers,-0.19999999999999998,0.28500000000000003,0.4,0.3161904761904762,1,26 -paste,0,0,0,0,1,26 -box,0.48,0.48,1.0,0.6264285714285714,3,25 -water,0.03333333333333333,0.275,0.6333333333333333,0.36190476190476195,1,26 -thins,-0.024999999999999998,0.26166666666666666,0.6499999999999999,0.3342857142857143,1,26 -package,0.045,0.23000000000000004,0.6833333333333333,0.32285714285714284,1,26 -k,-0.075,0.2833333333333333,0.6166666666666666,0.34571428571428575,1,26 -jelly,0.08166666666666667,0.24333333333333332,0.7333333333333333,0.3457142857142857,1,26 -fruit,0.31333333333333335,0.4,0.9,0.5142857142857142,2,26 -apple,-0.034999999999999996,0.23833333333333334,0.6333333333333333,0.31619047619047624,1,25 -bell,-0.22166666666666668,0.33666666666666667,0.4833333333333332,0.3504761904761905,1,26 -battery,0.030000000000000006,0.255,0.7166666666666666,0.34190476190476193,1,26 -jar,-0.15,0.3083333333333333,0.5166666666666666,0.34095238095238095,1,26 -bound,0.033333333333333326,0.26999999999999996,0.6833333333333333,0.35238095238095235,1,26 -lettuce,-0.1,0.29500000000000004,0.5833333333333333,0.34095238095238095,1,26 -brush,0.011666666666666669,0.23833333333333334,0.6166666666666666,0.3247619047619047,1,26 -scissors,-0.12166666666666666,0.29833333333333334,0.5333333333333332,0.33904761904761904,1,26 -lime,-0.11666666666666667,0.2783333333333333,0.5333333333333332,0.32285714285714284,1,25 -toothpaste,0.03666666666666667,0.2566666666666667,0.7166666666666666,0.34571428571428575,1,26 -top,0.023333333333333334,0.22166666666666668,0.6666666666666666,0.31142857142857144,1,26 -spiral,-0.12166666666666666,0.2866666666666667,0.5499999999999999,0.3390476190476191,1,26 -handles,-0.17166666666666666,0.34500000000000003,0.4666666666666666,0.3685714285714286,1,25 -camera,-0.125,0.30666666666666664,0.5333333333333333,0.34571428571428575,1,26 -eraser,0.018333333333333347,0.23000000000000004,0.7,0.320952380952381,1,26 -creamer,0,0,0,0,1,26 -white,0.33999999999999997,0.33999999999999997,1.0,0.49071428571428566,5,20 -banana,-0.07166666666666666,0.29833333333333334,0.5499999999999999,0.35523809523809524,1,26 -pitcher,-0.06333333333333334,0.2866666666666666,0.6833333333333333,0.34095238095238095,1,26 -phone,-0.05499999999999999,0.2733333333333333,0.5499999999999999,0.3390476190476191,1,26 -stick,-0.05833333333333333,0.2833333333333333,0.5833333333333333,0.3504761904761905,1,25 -cereal,0.02,0.2733333333333333,0.7166666666666666,0.35238095238095235,1,26 -bulb,0.32500000000000007,0.4366666666666667,0.8666666666666666,0.5476190476190476,2,26 -hair,-0.03499999999999999,0.2633333333333333,0.6499999999999999,0.3323809523809524,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.10666666666666666,0.24333333333333335,0.75,0.3504761904761905,1,26 -can,0.29500000000000004,0.4066666666666666,0.8666666666666666,0.5180952380952382,2,25 -coca,-0.009999999999999992,0.23833333333333337,0.6499999999999999,0.320952380952381,1,26 -crackers,0.09166666666666667,0.23666666666666672,0.7833333333333333,0.34190476190476193,1,26 -plate,-0.14999999999999997,0.2533333333333333,0.45,0.3047619047619048,1,25 -calculator,0.026666666666666672,0.255,0.6666666666666666,0.34380952380952384,1,26 -tissues,0.006666666666666665,0.26833333333333337,0.6333333333333333,0.34380952380952384,1,26 -juice,-0.029999999999999992,0.26166666666666666,0.6333333333333333,0.33904761904761904,1,26 -pink,-0.075,0.25166666666666665,0.5833333333333333,0.3133333333333333,1,25 -lemon,-0.07166666666666666,0.2866666666666667,0.5833333333333333,0.3457142857142857,1,26 -peach,-0.1,0.29000000000000004,0.5333333333333333,0.34095238095238095,1,26 -bowl,-0.075,0.24833333333333335,0.5333333333333332,0.31619047619047624,1,26 -camouflage,0,0,0,0,1,26 -digital,-0.07666666666666666,0.27666666666666667,0.5833333333333333,0.3371428571428572,1,26 -blue,-0.07166666666666668,0.2983333333333334,0.55,0.35238095238095235,1,25 -used,-0.2133333333333333,0.32333333333333336,0.4833333333333334,0.34095238095238095,1,23 -energizer,0,0,0,0,1,26 -pear,0.04000000000000001,0.2566666666666667,0.6833333333333333,0.34380952380952384,1,26 -ball,-0.0016666666666666607,0.25666666666666665,0.6499999999999999,0.3419047619047619,1,25 -notebook,0.028333333333333332,0.265,0.6833333333333333,0.3457142857142857,1,26 -garlic,-0.023333333333333327,0.275,0.6666666666666666,0.3390476190476191,1,26 -cleaning,-0.12499999999999997,0.29333333333333333,0.4833333333333333,0.3390476190476191,1,26 -pair,0.29500000000000004,0.3483333333333333,0.9333333333333332,0.4828571428571428,2,26 -container,-0.04166666666666667,0.2483333333333333,0.5999999999999999,0.3180952380952381,1,25 -tomato,-0.07500000000000001,0.275,0.5833333333333333,0.3342857142857143,1,26 -cellphone,-0.1433333333333333,0.30666666666666664,0.5499999999999999,0.34571428571428575,1,26 -potato,0.07,0.26166666666666666,0.7333333333333333,0.3571428571428571,1,25 -light,0.31833333333333336,0.35833333333333334,0.9333333333333332,0.5080952380952382,2,25 -green,0.4966666666666666,0.4966666666666666,1.0,0.6452380952380952,3,24 -bottle,0.30500000000000005,0.42833333333333334,0.8333333333333333,0.5399999999999999,2,25 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: 0.004845679012345683 -F1-Score: 0.34238977072310395 -Precision: 0.27449074074074076 -Recall: 0.599074074074074 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,-0.023333333333333324,0.27666666666666667,0.7333333333333333,0.34857142857142864,1,24 -yellow,0.3566666666666667,0.3566666666666667,1.0,0.5073809523809525,6,24 -looks,0.006666666666666665,0.2816666666666667,0.75,0.35714285714285715,1,24 -keyboard,-0.07499999999999998,0.26166666666666666,0.5333333333333333,0.32761904761904764,1,26 -glue,-0.05,0.24333333333333332,0.55,0.3161904761904762,1,26 -milk,0,0,0,0,1,26 -cola,-0.008333333333333331,0.25166666666666665,0.5666666666666667,0.3342857142857143,1,26 -flashlight,-0.13833333333333334,0.29,0.5666666666666667,0.3276190476190476,1,26 -cup,-0.029999999999999992,0.25666666666666665,0.6,0.33238095238095244,1,26 -folded,-0.1,0.26166666666666666,0.4833333333333332,0.32095238095238093,1,26 -jam,0.0,0.2866666666666666,0.6166666666666666,0.3638095238095238,1,26 -black,0.6366666666666667,0.5266666666666666,1.0,0.6688095238095237,6,20 -orange,0.4083333333333333,0.4083333333333333,1.0,0.5521428571428572,3,25 -folder,-0.05,0.27499999999999997,0.6,0.33904761904761904,1,26 -soccer,-0.08833333333333332,0.2983333333333333,0.5833333333333333,0.3504761904761905,1,26 -hat,-0.17666666666666667,0.32166666666666666,0.5166666666666666,0.34380952380952384,1,26 -brown,0.3383333333333334,0.39166666666666666,0.9333333333333332,0.5257142857142857,2,24 -coffee,0.019999999999999997,0.22000000000000003,0.6666666666666666,0.30952380952380953,1,25 -handle,-0.1333333333333333,0.26666666666666666,0.5333333333333333,0.32285714285714284,1,26 -food,-0.16666666666666669,0.30333333333333334,0.5499999999999999,0.3314285714285714,1,25 -towel,-0.01666666666666667,0.26166666666666666,0.7,0.3342857142857143,1,26 -chips,-0.01666666666666667,0.2833333333333333,0.6499999999999999,0.35714285714285715,1,26 -stapler,-0.03833333333333332,0.2533333333333333,0.6333333333333333,0.32761904761904764,1,26 -onion,-0.06333333333333332,0.2966666666666667,0.5666666666666667,0.3476190476190476,1,26 -bag,-0.15499999999999997,0.29833333333333334,0.5499999999999999,0.33714285714285713,1,26 -sponge,-0.0050000000000000044,0.26166666666666666,0.6666666666666666,0.3342857142857143,1,26 -zero,0,0,0,0,1,26 -computer,-0.058333333333333334,0.26666666666666666,0.6,0.3276190476190476,1,25 -special,-0.010000000000000005,0.2733333333333333,0.75,0.34095238095238095,1,26 -colgate,-0.03833333333333333,0.29833333333333334,0.6,0.3638095238095238,1,26 -leaf,-0.01833333333333334,0.29833333333333334,0.7,0.36380952380952386,1,26 -tube,-0.033333333333333326,0.29166666666666663,0.65,0.3571428571428571,1,26 -cell,0.045,0.24333333333333335,0.7166666666666666,0.33904761904761904,1,26 -mug,0.06999999999999999,0.23166666666666663,0.7333333333333333,0.3295238095238095,1,25 -yogurt,-0.27166666666666667,0.3366666666666666,0.4166666666666667,0.33904761904761904,1,26 -plantain,-0.11666666666666667,0.31999999999999995,0.5833333333333333,0.3571428571428571,1,26 -red,0.47333333333333333,0.47333333333333333,1.0,0.6333333333333334,3,26 -pepper,-0.11666666666666665,0.265,0.5166666666666666,0.3180952380952381,1,26 -wheat,0.02,0.2616666666666666,0.6666666666666666,0.3485714285714286,1,26 -kleenex,0.03166666666666666,0.25999999999999995,0.7166666666666666,0.3457142857142857,1,26 -toothbrush,0.0033333333333333383,0.26166666666666666,0.7,0.34380952380952384,1,26 -binder,-0.05499999999999999,0.265,0.6333333333333333,0.32952380952380955,1,26 -baseball,0.0033333333333333383,0.29,0.6166666666666666,0.3685714285714286,1,26 -pliers,-0.11333333333333333,0.29833333333333334,0.5333333333333333,0.34380952380952384,1,26 -paste,0,0,0,0,1,26 -box,0.39666666666666667,0.39666666666666667,1.0,0.5519047619047619,3,25 -water,-0.06333333333333332,0.3016666666666667,0.6,0.3571428571428571,1,26 -thins,-0.1,0.2833333333333333,0.5499999999999999,0.34285714285714286,1,26 -package,-0.021666666666666667,0.26999999999999996,0.6499999999999999,0.34095238095238095,1,26 -k,-0.12999999999999998,0.28,0.4833333333333333,0.32571428571428573,1,26 -jelly,-0.15833333333333333,0.265,0.4,0.3133333333333333,1,26 -fruit,0.295,0.40166666666666667,0.8666666666666668,0.5114285714285713,2,25 -apple,-0.02166666666666666,0.2733333333333334,0.5666666666666667,0.34857142857142853,1,25 -bell,-0.058333333333333334,0.3083333333333333,0.6,0.3638095238095238,1,26 -battery,-0.08333333333333333,0.3083333333333333,0.6166666666666666,0.3638095238095238,1,26 -jar,-0.075,0.29166666666666663,0.5833333333333333,0.3504761904761905,1,26 -bound,-0.01666666666666667,0.24833333333333335,0.6,0.3295238095238095,1,26 -lettuce,-0.05833333333333335,0.27666666666666667,0.6,0.33619047619047615,1,26 -brush,-0.07666666666666669,0.31,0.6833333333333333,0.35714285714285715,1,26 -scissors,0.0066666666666666706,0.22666666666666666,0.7,0.31142857142857144,1,26 -lime,-0.09166666666666665,0.29,0.5333333333333333,0.34571428571428575,1,25 -toothpaste,-0.008333333333333331,0.275,0.65,0.35238095238095235,1,26 -top,0.03666666666666666,0.2533333333333333,0.7666666666666666,0.33904761904761904,1,26 -spiral,-0.021666666666666667,0.29,0.6166666666666666,0.3571428571428571,1,26 -handles,-0.09333333333333334,0.32333333333333336,0.5833333333333333,0.3685714285714286,1,25 -camera,-0.10166666666666666,0.2666666666666667,0.5333333333333333,0.320952380952381,1,26 -eraser,-0.175,0.29000000000000004,0.45,0.3276190476190476,1,26 -creamer,0,0,0,0,1,26 -white,0.47000000000000003,0.47000000000000003,1.0,0.6023809523809522,5,20 -banana,-0.11666666666666665,0.295,0.5333333333333333,0.33904761904761904,1,26 -pitcher,-0.046666666666666655,0.27,0.6333333333333333,0.3390476190476191,1,26 -phone,0.01666666666666667,0.26666666666666666,0.6666666666666666,0.3504761904761905,1,26 -stick,-0.09666666666666665,0.265,0.5166666666666666,0.3276190476190476,1,25 -cereal,-0.021666666666666667,0.2733333333333333,0.6499999999999999,0.34571428571428575,1,26 -bulb,0.28500000000000003,0.36333333333333334,0.8999999999999998,0.48476190476190484,2,26 -hair,-0.17166666666666666,0.34833333333333333,0.5666666666666667,0.3638095238095238,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.04,0.26333333333333336,0.6833333333333333,0.3504761904761905,1,26 -can,0.275,0.32,0.9333333333333332,0.45619047619047615,2,25 -coca,0.07666666666666667,0.22166666666666668,0.7333333333333333,0.32571428571428573,1,26 -crackers,-0.05833333333333333,0.2583333333333333,0.5833333333333333,0.3276190476190476,1,26 -plate,-0.13333333333333333,0.30333333333333334,0.5666666666666667,0.340952380952381,1,25 -calculator,-0.19666666666666666,0.315,0.45,0.34190476190476193,1,26 -tissues,-0.15499999999999997,0.30333333333333334,0.5,0.34380952380952384,1,26 -juice,-0.059999999999999984,0.27166666666666667,0.6,0.3323809523809524,1,26 -pink,-0.05166666666666667,0.27666666666666667,0.6499999999999999,0.3342857142857143,1,25 -lemon,-5.551115123125783e-18,0.2733333333333333,0.6666666666666666,0.3476190476190476,1,26 -peach,-0.1,0.24833333333333335,0.5166666666666666,0.31142857142857144,1,26 -bowl,-0.08833333333333333,0.2783333333333333,0.5833333333333333,0.3323809523809524,1,26 -camouflage,0,0,0,0,1,26 -digital,0.020000000000000004,0.22666666666666666,0.7,0.3180952380952381,1,26 -blue,0.04,0.24333333333333335,0.6833333333333333,0.3323809523809524,1,25 -used,-0.038333333333333344,0.27666666666666667,0.5666666666666667,0.34095238095238095,1,24 -energizer,0,0,0,0,1,26 -pear,-0.03166666666666666,0.2666666666666667,0.6499999999999999,0.3371428571428572,1,26 -ball,-0.08833333333333333,0.30666666666666664,0.5499999999999999,0.35238095238095235,1,25 -notebook,-0.12666666666666665,0.32666666666666666,0.5333333333333332,0.3619047619047619,1,26 -garlic,-0.02166666666666666,0.26,0.6166666666666666,0.33238095238095233,1,26 -cleaning,-0.01,0.2733333333333333,0.7,0.3457142857142857,1,26 -pair,0.31333333333333335,0.36666666666666664,0.9333333333333332,0.4976190476190476,2,26 -container,0.08166666666666667,0.2316666666666667,0.7833333333333333,0.33238095238095233,1,26 -tomato,-0.08333333333333333,0.295,0.55,0.34571428571428575,1,26 -cellphone,-0.10833333333333332,0.3,0.45,0.3485714285714286,1,26 -potato,-0.10166666666666666,0.29833333333333334,0.6166666666666666,0.34571428571428575,1,26 -light,0.30500000000000005,0.43666666666666665,0.8333333333333334,0.5404761904761906,2,26 -green,0.45999999999999996,0.45999999999999996,1.0,0.6202380952380953,3,23 -bottle,0.29000000000000004,0.37666666666666665,0.8999999999999998,0.4904761904761905,2,26 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: 0.0036419753086419813 -F1-Score: 0.34187830687830684 -Precision: 0.27433641975308637 -Recall: 0.604783950617284 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,-0.06333333333333332,0.2816666666666667,0.5833333333333333,0.34571428571428575,1,25 -yellow,0.30666666666666664,0.30666666666666664,1.0,0.4538095238095238,6,25 -looks,0.05,0.25333333333333335,0.7333333333333333,0.34190476190476193,1,24 -keyboard,-0.016666666666666663,0.30333333333333334,0.6499999999999999,0.37523809523809526,1,26 -glue,-0.12166666666666666,0.275,0.5333333333333333,0.3180952380952381,1,26 -milk,0,0,0,0,1,26 -cola,-0.08499999999999999,0.29333333333333333,0.5833333333333333,0.3485714285714286,1,26 -flashlight,0.016666666666666653,0.24499999999999997,0.7166666666666666,0.32476190476190475,1,26 -cup,-0.013333333333333327,0.24,0.6166666666666666,0.3190476190476191,1,26 -folded,-0.06000000000000001,0.29,0.6833333333333333,0.34571428571428575,1,26 -jam,-0.20833333333333334,0.3066666666666667,0.4,0.3323809523809524,1,26 -black,0.5783333333333334,0.4533333333333333,1.0,0.6045238095238095,6,21 -orange,0.3566666666666667,0.3566666666666667,1.0,0.5083333333333334,3,27 -folder,-0.08333333333333333,0.3,0.5499999999999999,0.3504761904761905,1,26 -soccer,-0.13333333333333333,0.30166666666666664,0.4833333333333333,0.34095238095238095,1,26 -hat,0.05166666666666667,0.27166666666666667,0.7333333333333333,0.35714285714285715,1,26 -brown,0.2666666666666667,0.39,0.8333333333333333,0.49523809523809526,2,24 -coffee,-0.03500000000000001,0.285,0.6499999999999999,0.3504761904761905,1,26 -handle,0.06166666666666667,0.24500000000000002,0.7666666666666666,0.34095238095238095,1,26 -food,-0.09666666666666666,0.29,0.5833333333333333,0.3390476190476191,1,25 -towel,0.03166666666666666,0.255,0.7166666666666666,0.34095238095238095,1,26 -chips,-0.01666666666666667,0.24,0.7,0.31333333333333335,1,26 -stapler,0.028333333333333332,0.24,0.6666666666666666,0.3323809523809524,1,26 -onion,-0.14999999999999997,0.30833333333333335,0.5166666666666666,0.34380952380952384,1,26 -bag,0.043333333333333335,0.25166666666666665,0.7666666666666666,0.33904761904761904,1,26 -sponge,-0.08833333333333333,0.2566666666666667,0.5333333333333333,0.31904761904761914,1,26 -zero,0,0,0,0,1,26 -computer,0.045,0.22666666666666666,0.7166666666666666,0.3228571428571429,1,25 -special,0.011666666666666667,0.24833333333333335,0.6166666666666666,0.3342857142857143,1,26 -colgate,-0.10500000000000001,0.29833333333333334,0.5333333333333333,0.34571428571428575,1,26 -leaf,-0.125,0.32,0.5333333333333333,0.3571428571428571,1,26 -tube,-0.03833333333333333,0.22666666666666666,0.5833333333333333,0.3066666666666667,1,26 -cell,0.04,0.2816666666666667,0.7166666666666666,0.3685714285714286,1,26 -mug,0.03166666666666666,0.255,0.7166666666666666,0.34095238095238095,1,26 -yogurt,-0.03833333333333334,0.28666666666666674,0.6,0.35238095238095235,1,26 -plantain,0.028333333333333332,0.24499999999999997,0.7,0.33904761904761904,1,26 -red,0.4616666666666667,0.4616666666666667,1.0,0.6066666666666666,3,25 -pepper,0.0033333333333333383,0.25333333333333335,0.6499999999999999,0.3390476190476191,1,26 -wheat,0.1,0.26666666666666666,0.7833333333333333,0.3704761904761905,1,26 -kleenex,-0.08333333333333333,0.29500000000000004,0.5333333333333333,0.35238095238095235,1,26 -toothbrush,-0.026666666666666665,0.2816666666666667,0.65,0.3504761904761905,1,26 -binder,-0.03333333333333333,0.23499999999999996,0.5999999999999999,0.3114285714285714,1,26 -baseball,-0.08499999999999999,0.29333333333333333,0.5833333333333333,0.34571428571428575,1,26 -pliers,-0.023333333333333327,0.27166666666666667,0.6499999999999999,0.34380952380952384,1,26 -paste,0,0,0,0,1,26 -box,0.49499999999999994,0.49499999999999994,1.0,0.6388095238095237,3,26 -water,-0.016666666666666673,0.2516666666666666,0.6166666666666666,0.3247619047619047,1,26 -thins,0.08499999999999999,0.205,0.8166666666666667,0.31142857142857144,1,26 -package,-0.08000000000000003,0.2983333333333333,0.65,0.34095238095238095,1,26 -k,-0.02166666666666666,0.27166666666666667,0.6166666666666666,0.340952380952381,1,26 -jelly,-0.27166666666666667,0.3566666666666667,0.4333333333333333,0.3504761904761905,1,26 -fruit,0.315,0.42666666666666664,0.8666666666666668,0.5357142857142857,2,25 -apple,-0.09666666666666665,0.31166666666666665,0.5833333333333333,0.36,1,25 -bell,0.006666666666666665,0.29,0.75,0.3638095238095238,1,26 -battery,0.043333333333333335,0.23833333333333334,0.7166666666666666,0.3323809523809524,1,26 -jar,0.04833333333333334,0.23833333333333334,0.7166666666666666,0.3342857142857143,1,26 -bound,-0.085,0.26833333333333337,0.5333333333333333,0.32761904761904764,1,26 -lettuce,-0.1,0.32,0.6333333333333333,0.359047619047619,1,26 -brush,-0.009999999999999992,0.265,0.6499999999999999,0.34380952380952384,1,26 -scissors,0.03666666666666667,0.2783333333333334,0.7166666666666666,0.36380952380952386,1,26 -lime,0.14833333333333332,0.22333333333333333,0.8833333333333332,0.34571428571428575,1,25 -toothpaste,-0.12499999999999997,0.27833333333333327,0.55,0.32952380952380955,1,26 -top,-0.01833333333333333,0.28500000000000003,0.6666666666666666,0.3504761904761905,1,26 -spiral,-0.23333333333333334,0.31666666666666665,0.41666666666666663,0.3390476190476191,1,26 -handles,-0.04666666666666667,0.29500000000000004,0.6499999999999999,0.35523809523809524,1,25 -camera,0.04,0.26833333333333337,0.7166666666666666,0.35714285714285715,1,26 -eraser,-0.041666666666666664,0.24500000000000002,0.5833333333333333,0.32285714285714284,1,26 -creamer,0,0,0,0,1,26 -white,0.42333333333333334,0.42333333333333334,1.0,0.5769047619047619,5,21 -banana,-0.075,0.3,0.5833333333333333,0.35714285714285715,1,26 -pitcher,0.0033333333333333383,0.24833333333333335,0.7166666666666666,0.32285714285714284,1,26 -phone,0.03666666666666667,0.24333333333333332,0.6833333333333333,0.3295238095238095,1,26 -stick,-0.004999999999999999,0.26833333333333337,0.6166666666666666,0.34571428571428575,1,25 -cereal,-0.046666666666666655,0.29500000000000004,0.6333333333333333,0.36190476190476195,1,26 -bulb,0.30166666666666664,0.3466666666666666,0.9333333333333332,0.4847619047619047,2,27 -hair,-0.013333333333333332,0.26999999999999996,0.7,0.34095238095238095,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.016666666666666666,0.27,0.6666666666666666,0.35238095238095235,1,26 -can,0.31999999999999995,0.3783333333333333,0.9333333333333332,0.5066666666666667,2,26 -coca,-0.04166666666666667,0.25666666666666665,0.5666666666666667,0.32285714285714284,1,26 -crackers,-0.046666666666666655,0.265,0.5999999999999999,0.3323809523809524,1,26 -plate,-0.0016666666666666607,0.25166666666666665,0.6166666666666666,0.3323809523809524,1,25 -calculator,-0.014999999999999986,0.255,0.65,0.3352380952380953,1,26 -tissues,0.023333333333333334,0.24833333333333335,0.6666666666666666,0.33714285714285713,1,26 -juice,-0.08,0.27166666666666667,0.6,0.32285714285714284,1,26 -pink,0.045,0.21166666666666667,0.6833333333333333,0.3066666666666667,1,25 -lemon,-0.06000000000000001,0.28,0.6,0.33904761904761904,1,26 -peach,-0.05166666666666666,0.255,0.5499999999999999,0.32571428571428573,1,26 -bowl,-0.15,0.2866666666666667,0.41666666666666663,0.33238095238095233,1,26 -camouflage,0,0,0,0,1,26 -digital,-0.085,0.29333333333333333,0.5833333333333333,0.34571428571428575,1,26 -blue,-0.125,0.34500000000000003,0.5333333333333333,0.3771428571428571,1,25 -used,-0.014999999999999996,0.2916666666666667,0.6666666666666666,0.35714285714285715,1,24 -energizer,0,0,0,0,1,26 -pear,-0.04666666666666667,0.2733333333333333,0.65,0.3342857142857143,1,26 -ball,-0.05499999999999999,0.2816666666666666,0.6333333333333333,0.34571428571428575,1,25 -notebook,-0.058333333333333334,0.2566666666666667,0.5499999999999999,0.32285714285714284,1,26 -garlic,-0.10166666666666666,0.28500000000000003,0.6166666666666666,0.33428571428571435,1,26 -cleaning,-0.14999999999999997,0.31166666666666665,0.4666666666666666,0.3504761904761905,1,26 -pair,0.31499999999999995,0.42333333333333334,0.8666666666666666,0.5371428571428571,2,27 -container,-0.09166666666666667,0.29333333333333333,0.5499999999999999,0.340952380952381,1,25 -tomato,-0.09999999999999999,0.30333333333333334,0.5333333333333333,0.35238095238095235,1,26 -cellphone,0.0033333333333333383,0.27666666666666667,0.7,0.35714285714285715,1,26 -potato,-0.13833333333333334,0.27166666666666667,0.4666666666666666,0.3180952380952381,1,25 -light,0.3283333333333333,0.44000000000000006,0.8666666666666668,0.5490476190476191,2,25 -green,0.42833333333333334,0.42833333333333334,1.0,0.5776190476190476,3,24 -bottle,0.2983333333333333,0.38499999999999995,0.9,0.49714285714285716,2,26 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: 0.017083333333333336 -F1-Score: 0.3412874779541446 -Precision: 0.270354938271605 -Recall: 0.619753086419753 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,-0.058333333333333334,0.29833333333333334,0.6,0.35428571428571426,1,25 -yellow,0.41,0.41,1.0,0.5585714285714285,6,24 -looks,-0.08833333333333333,0.295,0.5333333333333333,0.3504761904761905,1,24 -keyboard,0.04,0.23333333333333334,0.6333333333333333,0.32761904761904764,1,26 -glue,0.07333333333333333,0.22666666666666666,0.7333333333333333,0.3276190476190476,1,26 -milk,0,0,0,0,1,26 -cola,0.008333333333333326,0.265,0.6666666666666666,0.34285714285714286,1,26 -flashlight,0.07333333333333333,0.22666666666666666,0.7333333333333333,0.3276190476190476,1,26 -cup,-0.058333333333333334,0.2783333333333333,0.6499999999999999,0.3314285714285714,1,26 -folded,0.015000000000000003,0.2816666666666666,0.7666666666666666,0.35238095238095235,1,26 -jam,0.07333333333333333,0.24333333333333335,0.7333333333333333,0.3438095238095238,1,26 -black,0.53,0.4616666666666667,1.0,0.6221428571428571,6,21 -orange,0.5199999999999999,0.5199999999999999,1.0,0.6680952380952381,3,25 -folder,-0.2333333333333333,0.3416666666666667,0.4333333333333333,0.35523809523809524,1,26 -soccer,-0.046666666666666655,0.265,0.55,0.3371428571428572,1,26 -hat,0.019999999999999997,0.25166666666666665,0.7166666666666666,0.3342857142857143,1,26 -brown,0.28833333333333333,0.39166666666666666,0.8666666666666666,0.5080952380952382,2,26 -coffee,0.05166666666666667,0.23333333333333334,0.6833333333333333,0.32761904761904764,1,26 -handle,-0.11333333333333333,0.27999999999999997,0.4833333333333333,0.3295238095238095,1,25 -food,-0.03833333333333332,0.265,0.6333333333333333,0.33904761904761904,1,25 -towel,-0.18,0.33666666666666667,0.5166666666666666,0.35523809523809524,1,26 -chips,-0.008333333333333335,0.2699999999999999,0.7166666666666666,0.33619047619047615,1,26 -stapler,-0.07166666666666667,0.2816666666666667,0.55,0.3390476190476191,1,26 -onion,-0.225,0.31666666666666665,0.4333333333333334,0.3342857142857143,1,26 -bag,-0.08833333333333333,0.28,0.55,0.3295238095238095,1,26 -sponge,-0.03833333333333333,0.27166666666666667,0.5666666666666667,0.33904761904761904,1,26 -zero,0,0,0,0,1,26 -computer,-0.18333333333333332,0.3416666666666667,0.4999999999999999,0.3638095238095238,1,25 -special,-0.13333333333333333,0.31833333333333336,0.5333333333333333,0.3523809523809524,1,26 -colgate,-0.06333333333333332,0.265,0.5333333333333333,0.3342857142857143,1,26 -leaf,-0.010000000000000004,0.24833333333333335,0.65,0.3276190476190476,1,26 -tube,-0.1633333333333333,0.2816666666666667,0.4999999999999999,0.320952380952381,1,26 -cell,-0.004999999999999999,0.24333333333333332,0.5666666666666667,0.32761904761904764,1,26 -mug,-0.05833333333333333,0.26666666666666666,0.5333333333333333,0.3390476190476191,1,26 -yogurt,-0.058333333333333334,0.26999999999999996,0.6333333333333333,0.3342857142857143,1,26 -plantain,-0.029999999999999992,0.24333333333333332,0.6333333333333333,0.32285714285714284,1,26 -red,0.45499999999999996,0.45499999999999996,1.0,0.6061904761904762,3,25 -pepper,-0.10500000000000001,0.27666666666666667,0.4833333333333333,0.3295238095238095,1,26 -wheat,-0.013333333333333332,0.27666666666666667,0.6166666666666666,0.3476190476190476,1,26 -kleenex,-0.1,0.2816666666666666,0.5833333333333333,0.3295238095238095,1,26 -toothbrush,-0.08333333333333333,0.2866666666666667,0.5666666666666667,0.3504761904761905,1,26 -binder,-0.02166666666666666,0.27,0.6,0.34571428571428575,1,26 -baseball,-0.07166666666666666,0.265,0.5833333333333333,0.32761904761904764,1,26 -pliers,-0.155,0.33166666666666667,0.4833333333333333,0.35714285714285715,1,26 -paste,0,0,0,0,1,26 -box,0.33666666666666667,0.33666666666666667,1.0,0.48238095238095247,3,26 -water,0.01833333333333334,0.22999999999999998,0.7,0.32095238095238093,1,26 -thins,-0.046666666666666655,0.2766666666666667,0.6333333333333333,0.34571428571428575,1,26 -package,-0.02166666666666666,0.26833333333333337,0.6166666666666666,0.3390476190476191,1,26 -k,-0.09166666666666669,0.31666666666666665,0.5999999999999999,0.35714285714285715,1,26 -jelly,-0.02166666666666666,0.2816666666666667,0.6499999999999999,0.35523809523809524,1,26 -fruit,0.27,0.3866666666666666,0.8666666666666666,0.4847619047619047,2,25 -apple,-0.008333333333333331,0.25,0.6166666666666666,0.32761904761904764,1,26 -bell,-0.06666666666666668,0.2866666666666667,0.5999999999999999,0.34095238095238095,1,26 -battery,0.045,0.26999999999999996,0.7666666666666666,0.35714285714285715,1,26 -jar,-0.12166666666666666,0.30166666666666664,0.5333333333333333,0.3438095238095238,1,26 -bound,-0.125,0.30333333333333334,0.5666666666666667,0.34571428571428575,1,26 -lettuce,0.016666666666666656,0.23666666666666666,0.6666666666666666,0.32285714285714284,1,26 -brush,-0.058333333333333334,0.265,0.5499999999999999,0.3295238095238095,1,26 -scissors,0.0016666666666666718,0.2666666666666667,0.6666666666666666,0.3438095238095238,1,26 -lime,-0.085,0.29,0.5333333333333333,0.34571428571428575,1,25 -toothpaste,-0.13,0.32,0.5166666666666666,0.3619047619047619,1,26 -top,-0.08833333333333333,0.30333333333333334,0.5333333333333332,0.35714285714285715,1,26 -spiral,0.010000000000000014,0.24333333333333335,0.7,0.33047619047619053,1,26 -handles,-0.008333333333333335,0.2866666666666667,0.6166666666666666,0.359047619047619,1,25 -camera,-0.04666666666666667,0.2733333333333333,0.6499999999999999,0.33428571428571424,1,26 -eraser,-0.1,0.2783333333333334,0.5333333333333333,0.3295238095238095,1,26 -creamer,0,0,0,0,1,26 -white,0.42333333333333334,0.42333333333333334,1.0,0.5628571428571428,5,21 -banana,0.03166666666666666,0.22166666666666668,0.7666666666666666,0.30666666666666664,1,26 -pitcher,0.05166666666666667,0.23333333333333334,0.6833333333333333,0.33047619047619053,1,26 -phone,-0.06666666666666668,0.30333333333333334,0.6,0.35714285714285715,1,26 -stick,-0.08833333333333332,0.29500000000000004,0.6333333333333333,0.34380952380952384,1,25 -cereal,0.03666666666666666,0.25666666666666665,0.8166666666666667,0.3361904761904762,1,26 -bulb,0.32166666666666666,0.37166666666666665,0.9333333333333332,0.509047619047619,2,26 -hair,-0.06333333333333332,0.3066666666666667,0.6333333333333333,0.36380952380952386,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,-0.08833333333333333,0.24666666666666667,0.5333333333333333,0.3095238095238096,1,26 -can,0.33333333333333337,0.41833333333333333,0.8666666666666666,0.5542857142857143,2,24 -coca,-0.01333333333333333,0.295,0.6166666666666666,0.3666666666666667,1,26 -crackers,-0.10833333333333332,0.2866666666666667,0.5166666666666666,0.34095238095238095,1,26 -plate,0.020000000000000004,0.2733333333333333,0.75,0.35714285714285715,1,25 -calculator,-0.008333333333333337,0.29166666666666663,0.6166666666666666,0.36380952380952386,1,26 -tissues,-0.03833333333333334,0.2566666666666667,0.65,0.32285714285714284,1,26 -juice,-0.02666666666666666,0.26333333333333336,0.6166666666666666,0.3323809523809524,1,26 -pink,-0.14666666666666667,0.31999999999999995,0.5666666666666667,0.3504761904761905,1,25 -lemon,-0.049999999999999996,0.2733333333333333,0.5999999999999999,0.3361904761904762,1,26 -peach,-0.13833333333333334,0.33166666666666667,0.5333333333333333,0.36190476190476195,1,26 -bowl,-0.03833333333333333,0.2616666666666666,0.5833333333333333,0.339047619047619,1,26 -camouflage,0,0,0,0,1,26 -digital,-0.004999999999999999,0.265,0.7,0.340952380952381,1,26 -blue,-0.10499999999999998,0.2699999999999999,0.5666666666666667,0.32285714285714284,1,25 -used,0.053333333333333344,0.26166666666666666,0.6833333333333333,0.35523809523809524,1,24 -energizer,0,0,0,0,1,26 -pear,-0.029999999999999992,0.2566666666666667,0.65,0.3276190476190476,1,26 -ball,-0.125,0.29166666666666663,0.5333333333333333,0.3323809523809524,1,25 -notebook,-0.11333333333333331,0.2766666666666667,0.5166666666666666,0.33238095238095244,1,26 -garlic,0.011666666666666676,0.27,0.6666666666666666,0.3504761904761905,1,26 -cleaning,-0.039999999999999994,0.27,0.6166666666666666,0.3323809523809524,1,26 -pair,0.2833333333333333,0.3433333333333334,0.9,0.4800000000000001,2,27 -container,-0.18,0.33666666666666667,0.5999999999999999,0.35238095238095235,1,25 -tomato,-0.12499999999999997,0.29166666666666663,0.5666666666666667,0.3342857142857143,1,26 -cellphone,-0.05500000000000001,0.29833333333333334,0.6,0.3571428571428571,1,26 -potato,-0.01333333333333333,0.265,0.6166666666666666,0.3390476190476191,1,25 -light,0.26166666666666666,0.32666666666666666,0.8999999999999998,0.45619047619047626,2,25 -green,0.4533333333333333,0.4533333333333333,1.0,0.6014285714285714,3,23 -bottle,0.2766666666666667,0.31666666666666665,0.9333333333333332,0.45714285714285713,2,26 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: 0.005787037037037041 -F1-Score: 0.340923721340388 -Precision: 0.27260802469135803 -Recall: 0.6058641975308642 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.08166666666666667,0.25166666666666665,0.7666666666666666,0.35714285714285715,1,25 -yellow,0.37666666666666665,0.37666666666666665,1.0,0.5335714285714286,6,24 -looks,-0.01333333333333333,0.2566666666666667,0.6,0.33904761904761904,1,24 -keyboard,-0.03333333333333333,0.26,0.5499999999999999,0.3361904761904762,1,26 -glue,-0.10833333333333335,0.2866666666666667,0.5333333333333333,0.3342857142857143,1,26 -milk,0,0,0,0,1,26 -cola,-0.13333333333333333,0.30666666666666664,0.5166666666666666,0.3476190476190476,1,26 -flashlight,0.043333333333333335,0.23000000000000004,0.75,0.3276190476190476,1,26 -cup,-0.08833333333333333,0.29,0.5333333333333332,0.34571428571428575,1,26 -folded,-0.018333333333333333,0.26,0.65,0.3342857142857143,1,26 -jam,0.07666666666666666,0.22666666666666666,0.7666666666666666,0.33238095238095244,1,26 -black,0.5783333333333334,0.5033333333333332,1.0,0.6578571428571428,6,21 -orange,0.335,0.335,1.0,0.47142857142857136,3,25 -folder,-0.12166666666666667,0.2883333333333334,0.5333333333333333,0.32952380952380955,1,26 -soccer,0.0066666666666666706,0.27666666666666667,0.6666666666666666,0.35523809523809524,1,26 -hat,0.010000000000000004,0.2766666666666667,0.7499999999999999,0.3552380952380953,1,26 -brown,0.36,0.425,0.9,0.5638095238095239,2,25 -coffee,-0.03833333333333333,0.2516666666666667,0.5499999999999999,0.3276190476190476,1,25 -handle,-0.05166666666666666,0.2683333333333333,0.6333333333333333,0.3342857142857143,1,25 -food,-0.02166666666666666,0.27666666666666667,0.5666666666666667,0.3504761904761905,1,25 -towel,-0.06666666666666668,0.295,0.5999999999999999,0.3476190476190476,1,26 -chips,0.033333333333333326,0.2583333333333333,0.7166666666666666,0.3457142857142857,1,26 -stapler,-0.10500000000000001,0.29833333333333334,0.5666666666666667,0.3476190476190476,1,26 -onion,0.065,0.26,0.65,0.3552380952380953,1,26 -bag,-0.043333333333333335,0.29833333333333334,0.6499999999999999,0.35714285714285715,1,26 -sponge,-0.03333333333333333,0.27,0.6499999999999999,0.3390476190476191,1,26 -zero,0,0,0,0,1,26 -computer,-0.041666666666666664,0.26999999999999996,0.5833333333333333,0.34571428571428575,1,25 -special,0.019999999999999997,0.22833333333333333,0.7499999999999999,0.3161904761904762,1,26 -colgate,-0.04666666666666667,0.26,0.6,0.32761904761904764,1,26 -leaf,-0.125,0.3333333333333333,0.5833333333333333,0.3638095238095238,1,26 -tube,0.10500000000000001,0.23333333333333334,0.7833333333333333,0.34380952380952384,1,26 -cell,0.04166666666666666,0.25,0.7166666666666666,0.340952380952381,1,26 -mug,-0.10833333333333332,0.31666666666666665,0.5333333333333333,0.3619047619047619,1,26 -yogurt,-0.06833333333333333,0.30500000000000005,0.5999999999999999,0.35714285714285715,1,26 -plantain,-0.033333333333333326,0.27,0.5999999999999999,0.34380952380952384,1,26 -red,0.325,0.325,1.0,0.46571428571428586,3,27 -pepper,-0.041666666666666664,0.22666666666666666,0.6,0.3,1,26 -wheat,0.010000000000000004,0.23333333333333334,0.6166666666666666,0.320952380952381,1,26 -kleenex,0.041666666666666664,0.21833333333333335,0.7166666666666666,0.31333333333333335,1,26 -toothbrush,-0.16666666666666666,0.30333333333333334,0.4999999999999999,0.33619047619047615,1,26 -binder,-0.19999999999999998,0.3083333333333333,0.4833333333333333,0.33428571428571424,1,26 -baseball,-0.07999999999999999,0.24333333333333335,0.5333333333333333,0.30952380952380953,1,26 -pliers,-0.09666666666666665,0.28500000000000003,0.5833333333333333,0.33428571428571435,1,26 -paste,0,0,0,0,1,26 -box,0.48,0.48,1.0,0.6209523809523809,3,27 -water,-0.03833333333333333,0.29000000000000004,0.6,0.35714285714285715,1,26 -thins,-0.08499999999999999,0.23833333333333334,0.5666666666666667,0.30476190476190473,1,26 -package,-0.07999999999999999,0.29833333333333334,0.6333333333333333,0.3504761904761905,1,26 -k,0.0050000000000000044,0.23333333333333334,0.65,0.320952380952381,1,26 -jelly,0.05333333333333332,0.23666666666666664,0.7833333333333333,0.32285714285714284,1,26 -fruit,0.23666666666666666,0.29,0.9333333333333332,0.4109523809523809,2,26 -apple,-0.13,0.31166666666666665,0.5666666666666667,0.3504761904761905,1,25 -bell,-0.021666666666666657,0.24500000000000002,0.65,0.320952380952381,1,26 -battery,0.023333333333333324,0.26333333333333336,0.7666666666666666,0.340952380952381,1,26 -jar,-0.06333333333333332,0.3016666666666667,0.5999999999999999,0.35714285714285715,1,26 -bound,-0.0016666666666666607,0.22666666666666666,0.7,0.3095238095238095,1,26 -lettuce,-0.06333333333333332,0.29,0.6333333333333333,0.3504761904761905,1,26 -brush,0.025,0.23000000000000004,0.5833333333333333,0.32285714285714284,1,26 -scissors,-5.551115123125783e-18,0.2583333333333333,0.7,0.3361904761904762,1,26 -lime,-0.14999999999999997,0.295,0.4999999999999999,0.3390476190476191,1,25 -toothpaste,-0.16333333333333333,0.33999999999999997,0.5166666666666666,0.3638095238095238,1,26 -top,-0.11666666666666665,0.33333333333333337,0.4833333333333333,0.37523809523809526,1,26 -spiral,-0.058333333333333334,0.275,0.5666666666666667,0.3314285714285714,1,26 -handles,-0.041666666666666664,0.29999999999999993,0.5666666666666667,0.3619047619047619,1,25 -camera,-0.08833333333333333,0.2966666666666667,0.5499999999999999,0.3457142857142857,1,26 -eraser,0.06499999999999999,0.23499999999999996,0.8166666666666667,0.3295238095238095,1,26 -creamer,0,0,0,0,1,26 -white,0.40166666666666667,0.40166666666666667,1.0,0.5526190476190476,5,21 -banana,0.03166666666666666,0.27666666666666667,0.7666666666666666,0.35714285714285715,1,26 -pitcher,-0.041666666666666664,0.3033333333333333,0.65,0.3638095238095238,1,26 -phone,-0.07166666666666668,0.2566666666666667,0.5833333333333333,0.3180952380952381,1,26 -stick,0.05333333333333333,0.25666666666666665,0.6833333333333333,0.3504761904761905,1,25 -cereal,-0.20833333333333331,0.325,0.4833333333333332,0.34571428571428575,1,26 -bulb,0.2766666666666667,0.335,0.9333333333333332,0.46142857142857147,2,27 -hair,-0.01333333333333333,0.2516666666666667,0.65,0.3295238095238095,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.028333333333333332,0.2566666666666667,0.6666666666666666,0.34571428571428575,1,26 -can,0.2916666666666667,0.2916666666666667,1.0,0.44142857142857145,2,26 -coca,-0.16666666666666666,0.31166666666666665,0.4666666666666666,0.34095238095238095,1,26 -crackers,-0.03,0.2866666666666667,0.6499999999999999,0.35238095238095235,1,26 -plate,-0.013333333333333326,0.25833333333333336,0.6166666666666666,0.3342857142857143,1,25 -calculator,0.06999999999999998,0.2616666666666666,0.7833333333333333,0.3523809523809524,1,26 -tissues,-0.05499999999999999,0.2616666666666666,0.5833333333333333,0.3323809523809524,1,26 -juice,-0.041666666666666664,0.2866666666666667,0.5666666666666667,0.3504761904761905,1,26 -pink,-0.07166666666666666,0.24666666666666667,0.5333333333333333,0.31619047619047624,1,25 -lemon,0.006666666666666665,0.2766666666666667,0.7,0.3571428571428572,1,26 -peach,-0.03833333333333332,0.29000000000000004,0.6,0.35714285714285715,1,26 -bowl,-0.07333333333333332,0.2716666666666667,0.5833333333333333,0.3352380952380953,1,26 -camouflage,0,0,0,0,1,26 -digital,-0.04333333333333333,0.28500000000000003,0.6,0.3504761904761905,1,26 -blue,-0.058333333333333334,0.2783333333333333,0.6499999999999999,0.3342857142857143,1,25 -used,0.05166666666666666,0.22999999999999998,0.6833333333333333,0.32571428571428573,1,24 -energizer,0,0,0,0,1,26 -pear,-0.05166666666666666,0.22999999999999998,0.5833333333333333,0.3047619047619048,1,26 -ball,0.08666666666666667,0.25666666666666665,0.7833333333333333,0.3571428571428571,1,25 -notebook,0.03333333333333333,0.24333333333333335,0.6333333333333333,0.3342857142857143,1,26 -garlic,-0.18833333333333332,0.345,0.55,0.35904761904761906,1,26 -cleaning,-0.11333333333333333,0.2683333333333333,0.5166666666666666,0.32285714285714284,1,26 -pair,0.29500000000000004,0.3883333333333333,0.8666666666666668,0.509047619047619,2,26 -container,-0.125,0.3416666666666667,0.5666666666666667,0.38,1,25 -tomato,-0.06333333333333332,0.2816666666666666,0.6333333333333333,0.3438095238095238,1,26 -cellphone,-0.08499999999999999,0.29833333333333334,0.5833333333333333,0.3504761904761905,1,26 -potato,-0.02166666666666666,0.2866666666666667,0.65,0.3571428571428571,1,25 -light,0.32166666666666666,0.39666666666666667,0.8999999999999998,0.5309523809523811,2,25 -green,0.4600000000000001,0.4600000000000001,1.0,0.6049999999999999,3,24 -bottle,0.2966666666666667,0.4,0.8666666666666666,0.519047619047619,2,25 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: 0.014274691358024696 -F1-Score: 0.3392857142857142 -Precision: 0.267608024691358 -Recall: 0.6186728395061728 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,-0.06833333333333333,0.31500000000000006,0.5499999999999999,0.3685714285714286,1,24 -yellow,0.3616666666666667,0.3616666666666667,1.0,0.505,6,24 -looks,0.11166666666666666,0.23500000000000001,0.75,0.34571428571428575,1,24 -keyboard,-0.08499999999999999,0.28500000000000003,0.6333333333333333,0.3342857142857143,1,26 -glue,-0.22999999999999998,0.31500000000000006,0.4333333333333334,0.33238095238095244,1,26 -milk,0,0,0,0,1,26 -cola,0.008333333333333326,0.26166666666666666,0.6666666666666666,0.34095238095238095,1,26 -flashlight,-0.06833333333333333,0.28500000000000003,0.5833333333333333,0.3457142857142857,1,26 -cup,-0.1383333333333333,0.2816666666666667,0.5499999999999999,0.32761904761904764,1,26 -folded,-0.030000000000000006,0.31166666666666665,0.6166666666666666,0.37333333333333335,1,26 -jam,-0.10833333333333332,0.2783333333333334,0.4833333333333333,0.33238095238095244,1,26 -black,0.4533333333333333,0.395,1.0,0.5380952380952381,6,21 -orange,0.41666666666666663,0.41666666666666663,1.0,0.5626190476190476,3,24 -folder,0.11166666666666666,0.23500000000000001,0.7833333333333333,0.3476190476190476,1,26 -soccer,-0.075,0.28500000000000003,0.5999999999999999,0.3361904761904762,1,26 -hat,0.06333333333333334,0.23833333333333337,0.7833333333333333,0.33047619047619053,1,26 -brown,0.2816666666666667,0.38499999999999995,0.8666666666666668,0.49952380952380954,2,25 -coffee,-0.09666666666666665,0.27666666666666667,0.5333333333333333,0.3323809523809524,1,25 -handle,-0.04166666666666667,0.25166666666666665,0.5666666666666667,0.3180952380952381,1,26 -food,-0.15166666666666667,0.3066666666666667,0.5499999999999999,0.3438095238095238,1,25 -towel,-0.043333333333333335,0.28500000000000003,0.5999999999999999,0.3504761904761905,1,26 -chips,-0.06833333333333333,0.2666666666666667,0.5499999999999999,0.32761904761904764,1,26 -stapler,-0.009999999999999995,0.21666666666666665,0.65,0.3,1,26 -onion,-0.05499999999999999,0.28500000000000003,0.5499999999999999,0.3504761904761905,1,26 -bag,-0.14999999999999997,0.325,0.5166666666666666,0.36,1,26 -sponge,-0.02666666666666666,0.25166666666666665,0.6,0.3304761904761905,1,26 -zero,0,0,0,0,1,26 -computer,0.026666666666666672,0.2716666666666666,0.7666666666666666,0.3504761904761905,1,26 -special,0.011666666666666667,0.2483333333333333,0.75,0.3295238095238095,1,26 -colgate,-0.004999999999999993,0.27,0.7,0.3457142857142857,1,26 -leaf,-0.06333333333333332,0.26,0.5,0.32761904761904764,1,26 -tube,-0.18833333333333335,0.35333333333333333,0.5166666666666666,0.3638095238095238,1,26 -cell,-0.075,0.2783333333333334,0.5333333333333333,0.34380952380952384,1,26 -mug,-0.10833333333333332,0.26166666666666666,0.5166666666666666,0.3180952380952381,1,25 -yogurt,-0.10999999999999999,0.29333333333333333,0.6166666666666666,0.33904761904761904,1,26 -plantain,0.020000000000000007,0.26166666666666666,0.6666666666666666,0.34857142857142864,1,26 -red,0.3283333333333333,0.3283333333333333,1.0,0.4607142857142857,3,26 -pepper,-0.06666666666666668,0.2833333333333333,0.6333333333333333,0.340952380952381,1,26 -wheat,-0.11333333333333333,0.29833333333333334,0.5333333333333333,0.34380952380952384,1,26 -kleenex,-0.01333333333333333,0.23833333333333337,0.6,0.32285714285714284,1,26 -toothbrush,-0.07166666666666667,0.295,0.6333333333333333,0.3476190476190476,1,26 -binder,0.065,0.24333333333333332,0.7166666666666666,0.34571428571428575,1,26 -baseball,0.0033333333333333383,0.26833333333333337,0.6166666666666666,0.3504761904761905,1,26 -pliers,-0.04666666666666667,0.28500000000000003,0.65,0.3457142857142857,1,26 -paste,0,0,0,0,1,26 -box,0.3983333333333334,0.3983333333333334,1.0,0.5488095238095239,3,25 -water,-0.08833333333333333,0.265,0.5333333333333333,0.32285714285714284,1,26 -thins,-0.021666666666666664,0.2683333333333333,0.6166666666666666,0.33904761904761904,1,26 -package,0.058333333333333334,0.2483333333333333,0.6833333333333333,0.3457142857142857,1,26 -k,-0.06333333333333334,0.30666666666666664,0.6833333333333333,0.35904761904761906,1,26 -jelly,-0.04666666666666667,0.2533333333333333,0.5833333333333333,0.3276190476190476,1,26 -fruit,0.2733333333333333,0.3183333333333333,0.9333333333333332,0.4542857142857143,2,25 -apple,-0.095,0.28833333333333333,0.6666666666666666,0.3371428571428572,1,25 -bell,-0.125,0.2783333333333333,0.5166666666666666,0.32476190476190475,1,26 -battery,0.0033333333333333353,0.2533333333333333,0.6166666666666666,0.3342857142857143,1,26 -jar,-0.041666666666666664,0.24500000000000002,0.6333333333333333,0.3180952380952381,1,26 -bound,-0.16499999999999998,0.3383333333333333,0.5666666666666667,0.3571428571428571,1,26 -lettuce,-0.11666666666666665,0.2816666666666667,0.4833333333333332,0.3323809523809524,1,26 -brush,-0.06333333333333332,0.315,0.5666666666666667,0.3638095238095238,1,26 -scissors,0.011666666666666667,0.2866666666666666,0.6333333333333333,0.36190476190476195,1,26 -lime,-0.05500000000000001,0.30333333333333334,0.6833333333333333,0.36190476190476195,1,25 -toothpaste,0.031666666666666676,0.24666666666666667,0.6666666666666666,0.33904761904761904,1,26 -top,0.03666666666666666,0.2783333333333333,0.6833333333333333,0.3619047619047619,1,26 -spiral,5.551115123125783e-18,0.24999999999999994,0.65,0.33428571428571424,1,26 -handles,0.011666666666666672,0.2533333333333333,0.7,0.33904761904761904,1,25 -camera,-0.05500000000000001,0.31166666666666665,0.6499999999999999,0.3638095238095238,1,26 -eraser,0.05833333333333333,0.22333333333333333,0.6833333333333333,0.32285714285714284,1,26 -creamer,0,0,0,0,1,26 -white,0.40499999999999997,0.40499999999999997,1.0,0.5561904761904762,5,21 -banana,0.07333333333333333,0.23166666666666663,0.7333333333333333,0.3323809523809524,1,26 -pitcher,-0.03333333333333334,0.27833333333333327,0.5999999999999999,0.3476190476190476,1,26 -phone,-0.07166666666666666,0.29833333333333334,0.5499999999999999,0.35238095238095235,1,26 -stick,-0.06666666666666668,0.27499999999999997,0.5833333333333333,0.33619047619047615,1,25 -cereal,-0.09666666666666668,0.29833333333333334,0.5833333333333333,0.34571428571428575,1,26 -bulb,0.3516666666666667,0.40499999999999997,0.9333333333333332,0.5438095238095239,2,26 -hair,-0.15000000000000002,0.295,0.5666666666666667,0.32476190476190475,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,-0.20833333333333331,0.29500000000000004,0.4333333333333333,0.32285714285714284,1,26 -can,0.29000000000000004,0.35500000000000004,0.9,0.49142857142857144,2,25 -coca,-0.21333333333333332,0.345,0.4999999999999999,0.35523809523809524,1,26 -crackers,-0.125,0.2783333333333334,0.4333333333333334,0.3276190476190476,1,26 -plate,-0.023333333333333327,0.25333333333333335,0.65,0.32761904761904764,1,25 -calculator,-0.03333333333333334,0.2866666666666667,0.5666666666666667,0.35238095238095235,1,26 -tissues,-0.09666666666666666,0.2816666666666666,0.5833333333333333,0.3295238095238095,1,26 -juice,-0.06666666666666667,0.27,0.5833333333333333,0.3342857142857143,1,26 -pink,-0.008333333333333326,0.2783333333333333,0.5666666666666667,0.35714285714285715,1,25 -lemon,-0.085,0.30500000000000005,0.6333333333333333,0.35238095238095235,1,26 -peach,-0.2333333333333333,0.3533333333333334,0.4833333333333332,0.36190476190476195,1,26 -bowl,-0.15833333333333333,0.32,0.4333333333333333,0.3504761904761905,1,26 -camouflage,0,0,0,0,1,26 -digital,-0.05500000000000001,0.2816666666666667,0.5499999999999999,0.34571428571428575,1,26 -blue,0.026666666666666672,0.28500000000000003,0.7166666666666666,0.3666666666666667,1,25 -used,-0.021666666666666664,0.26166666666666666,0.5999999999999999,0.33904761904761904,1,23 -energizer,0,0,0,0,1,26 -pear,-0.18833333333333332,0.3566666666666667,0.5666666666666667,0.3638095238095238,1,26 -ball,-0.011666666666666659,0.2666666666666667,0.7,0.34190476190476193,1,25 -notebook,-0.07666666666666666,0.28,0.55,0.33714285714285713,1,26 -garlic,0.049999999999999996,0.24500000000000002,0.6833333333333333,0.33904761904761904,1,26 -cleaning,-0.14999999999999997,0.3,0.4999999999999999,0.34380952380952384,1,26 -pair,0.2833333333333333,0.37666666666666665,0.8666666666666666,0.49904761904761913,2,27 -container,-0.07166666666666667,0.28500000000000003,0.55,0.34095238095238095,1,25 -tomato,-0.1833333333333333,0.3416666666666667,0.5,0.36666666666666664,1,26 -cellphone,-0.11833333333333333,0.28500000000000003,0.5166666666666666,0.3342857142857143,1,26 -potato,-0.03499999999999999,0.2566666666666667,0.6333333333333333,0.33238095238095233,1,26 -light,0.265,0.335,0.9,0.46380952380952395,2,25 -green,0.45500000000000007,0.45500000000000007,1.0,0.6047619047619047,3,23 -bottle,0.25833333333333336,0.3816666666666667,0.8333333333333334,0.49000000000000005,2,26 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: -0.0020524691358024616 -F1-Score: 0.3390652557319224 -Precision: 0.2722376543209877 -Recall: 0.5998456790123456 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,-0.175,0.35333333333333333,0.4833333333333333,0.3685714285714286,1,24 -yellow,0.3866666666666666,0.3866666666666666,1.0,0.5404761904761904,6,25 -looks,0.023333333333333338,0.265,0.6666666666666666,0.3504761904761905,1,24 -keyboard,0.024999999999999994,0.22000000000000003,0.7166666666666666,0.3066666666666667,1,26 -glue,-0.034999999999999996,0.27666666666666667,0.7,0.33904761904761904,1,26 -milk,0,0,0,0,1,26 -cola,-0.035,0.26,0.6,0.33238095238095244,1,26 -flashlight,-0.06333333333333332,0.29,0.5499999999999999,0.3504761904761905,1,26 -cup,0.12833333333333333,0.23500000000000001,0.8,0.3476190476190476,1,26 -folded,-0.18833333333333332,0.30166666666666664,0.45,0.32952380952380955,1,26 -jam,-0.06666666666666667,0.3,0.55,0.3571428571428571,1,26 -black,0.61,0.5216666666666667,1.0,0.6630952380952381,6,21 -orange,0.44833333333333325,0.44833333333333325,1.0,0.5971428571428571,3,25 -folder,-0.21666666666666665,0.36666666666666664,0.45,0.37523809523809526,1,26 -soccer,-0.03999999999999999,0.28500000000000003,0.65,0.3485714285714286,1,26 -hat,-0.034999999999999996,0.24666666666666667,0.6499999999999999,0.3161904761904762,1,26 -brown,0.25833333333333336,0.38999999999999996,0.8333333333333333,0.488095238095238,2,25 -coffee,-0.035,0.26833333333333337,0.65,0.3342857142857143,1,25 -handle,-0.16666666666666669,0.2866666666666666,0.4999999999999999,0.31999999999999995,1,25 -food,-0.06999999999999999,0.2633333333333333,0.6666666666666666,0.32571428571428573,1,26 -towel,0.01833333333333334,0.23000000000000004,0.7,0.320952380952381,1,26 -chips,0.03666666666666667,0.24,0.6666666666666666,0.33428571428571435,1,26 -stapler,-0.205,0.31166666666666665,0.4833333333333332,0.3371428571428572,1,26 -onion,0.08166666666666667,0.23000000000000004,0.7,0.3323809523809524,1,26 -bag,0.008333333333333331,0.26166666666666666,0.6166666666666666,0.3457142857142857,1,26 -sponge,-0.018333333333333323,0.2816666666666666,0.7499999999999999,0.34571428571428575,1,26 -zero,0,0,0,0,1,26 -computer,-0.021666666666666674,0.26999999999999996,0.6166666666666666,0.33904761904761904,1,26 -special,-0.08333333333333334,0.265,0.5,0.32285714285714284,1,26 -colgate,-0.021666666666666667,0.26166666666666666,0.5999999999999999,0.3390476190476191,1,26 -leaf,0.06000000000000001,0.26833333333333337,0.7333333333333333,0.36000000000000004,1,26 -tube,0.016666666666666666,0.27499999999999997,0.6666666666666666,0.35714285714285715,1,26 -cell,-0.11333333333333333,0.315,0.5333333333333333,0.35714285714285715,1,26 -mug,-0.02166666666666666,0.2816666666666667,0.6,0.35714285714285715,1,25 -yogurt,-0.15499999999999997,0.3066666666666667,0.5166666666666666,0.3390476190476191,1,26 -plantain,-0.12666666666666665,0.28500000000000003,0.5166666666666666,0.33238095238095244,1,26 -red,0.4416666666666667,0.4416666666666667,1.0,0.6007142857142858,3,25 -pepper,-0.13833333333333334,0.3233333333333333,0.5333333333333333,0.35238095238095235,1,26 -wheat,-0.175,0.3333333333333333,0.5,0.36190476190476184,1,26 -kleenex,0.038333333333333344,0.22500000000000003,0.75,0.320952380952381,1,26 -toothbrush,-0.034999999999999996,0.2816666666666667,0.6,0.3504761904761905,1,26 -binder,-0.03499999999999999,0.2733333333333333,0.6499999999999999,0.33904761904761904,1,26 -baseball,0.006666666666666668,0.265,0.6166666666666666,0.34571428571428575,1,26 -pliers,-0.04666666666666666,0.28,0.5999999999999999,0.34571428571428575,1,26 -paste,0,0,0,0,1,26 -box,0.49833333333333324,0.49833333333333324,1.0,0.6435714285714285,3,25 -water,-0.09333333333333334,0.28500000000000003,0.5333333333333333,0.3390476190476191,1,26 -thins,-0.048333333333333325,0.255,0.6833333333333332,0.320952380952381,1,26 -package,0.045,0.21833333333333332,0.6833333333333333,0.31142857142857144,1,26 -k,0.03666666666666667,0.255,0.6833333333333333,0.34095238095238095,1,26 -jelly,-0.08333333333333334,0.2783333333333333,0.5833333333333333,0.33428571428571424,1,26 -fruit,0.31166666666666665,0.33166666666666667,0.9666666666666666,0.48428571428571443,2,25 -apple,0.003333333333333341,0.24333333333333332,0.65,0.32952380952380955,1,26 -bell,-0.02166666666666666,0.2733333333333333,0.6499999999999999,0.3457142857142857,1,26 -battery,0.023333333333333334,0.25166666666666665,0.7166666666666666,0.3342857142857143,1,26 -jar,-0.039999999999999994,0.2766666666666667,0.6333333333333333,0.3485714285714286,1,26 -bound,-0.08333333333333333,0.2766666666666667,0.4999999999999999,0.3342857142857143,1,26 -lettuce,0.023333333333333338,0.24333333333333335,0.6666666666666666,0.3323809523809524,1,26 -brush,0.035,0.24166666666666664,0.7166666666666666,0.3323809523809524,1,26 -scissors,-0.07666666666666669,0.29,0.6333333333333333,0.34380952380952384,1,26 -lime,-0.09333333333333334,0.29,0.6666666666666666,0.33904761904761904,1,25 -toothpaste,-0.013333333333333332,0.24,0.65,0.320952380952381,1,26 -top,0.06999999999999999,0.24,0.7333333333333333,0.3361904761904762,1,26 -spiral,-0.10833333333333335,0.32,0.5833333333333333,0.359047619047619,1,26 -handles,-0.23833333333333334,0.34833333333333333,0.45,0.3504761904761905,1,25 -camera,0.023333333333333334,0.26,0.7166666666666666,0.34095238095238095,1,26 -eraser,0.06999999999999999,0.24,0.7333333333333333,0.3390476190476191,1,26 -creamer,0,0,0,0,1,26 -white,0.4583333333333333,0.4583333333333333,1.0,0.6145238095238096,5,22 -banana,-0.16333333333333333,0.29333333333333333,0.4666666666666666,0.32761904761904764,1,26 -pitcher,0.016666666666666663,0.25,0.7,0.33904761904761904,1,26 -phone,-0.10999999999999999,0.30166666666666664,0.5833333333333333,0.34380952380952384,1,26 -stick,0.019999999999999997,0.30333333333333334,0.6666666666666666,0.38190476190476186,1,25 -cereal,-0.025,0.23666666666666666,0.6333333333333333,0.3180952380952381,1,26 -bulb,0.2666666666666667,0.34500000000000003,0.8999999999999998,0.46761904761904755,2,26 -hair,-0.09166666666666666,0.2733333333333333,0.5333333333333333,0.3295238095238095,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,-0.19666666666666666,0.32666666666666666,0.4999999999999999,0.3457142857142857,1,26 -can,0.31666666666666665,0.42333333333333334,0.8666666666666666,0.5357142857142858,2,25 -coca,-0.01666666666666667,0.2783333333333333,0.6166666666666666,0.3504761904761905,1,26 -crackers,-0.1833333333333333,0.3333333333333333,0.5,0.3571428571428571,1,26 -plate,-0.11666666666666665,0.2766666666666666,0.5333333333333333,0.31999999999999995,1,25 -calculator,-0.07999999999999999,0.29833333333333334,0.5,0.35523809523809524,1,26 -tissues,-0.19999999999999998,0.31999999999999995,0.4499999999999999,0.34095238095238095,1,26 -juice,-0.075,0.30166666666666664,0.5499999999999999,0.35428571428571426,1,26 -pink,-0.03833333333333333,0.29333333333333333,0.6166666666666666,0.35238095238095235,1,25 -lemon,-0.12666666666666665,0.32333333333333336,0.6166666666666666,0.35714285714285715,1,26 -peach,0.0033333333333333353,0.24666666666666667,0.6166666666666666,0.32952380952380955,1,26 -bowl,-0.08833333333333335,0.30666666666666664,0.6333333333333333,0.3523809523809524,1,26 -camouflage,0,0,0,0,1,26 -digital,0.023333333333333334,0.24833333333333335,0.7,0.33904761904761904,1,26 -blue,-0.10833333333333332,0.2866666666666666,0.4833333333333333,0.3390476190476191,1,25 -used,-0.06499999999999999,0.27166666666666667,0.6333333333333333,0.33238095238095244,1,24 -energizer,0,0,0,0,1,26 -pear,-0.04166666666666667,0.2783333333333333,0.6,0.3457142857142857,1,26 -ball,-0.06666666666666665,0.2533333333333333,0.6166666666666666,0.3228571428571429,1,25 -notebook,-0.125,0.29500000000000004,0.5333333333333333,0.3342857142857143,1,26 -garlic,-0.15,0.31,0.4333333333333334,0.34285714285714286,1,26 -cleaning,-0.046666666666666655,0.2783333333333334,0.5833333333333333,0.3504761904761905,1,26 -pair,0.30333333333333334,0.39,0.9,0.5047619047619047,2,26 -container,0.010000000000000009,0.24333333333333335,0.7,0.3304761904761905,1,25 -tomato,-0.06833333333333333,0.31500000000000006,0.6333333333333333,0.3685714285714286,1,26 -cellphone,-0.05499999999999999,0.2483333333333333,0.5833333333333333,0.3180952380952381,1,26 -potato,-0.021666666666666664,0.23000000000000004,0.5999999999999999,0.31142857142857144,1,25 -light,0.3283333333333333,0.4033333333333333,0.9,0.5333333333333334,2,25 -green,0.4683333333333334,0.4683333333333334,1.0,0.6261904761904763,3,24 -bottle,0.30000000000000004,0.33333333333333337,0.9666666666666666,0.46428571428571425,2,25 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: 0.0070370370370370396 -F1-Score: 0.3428306878306878 -Precision: 0.2747376543209876 -Recall: 0.6069444444444444 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,-0.09666666666666665,0.26833333333333337,0.5333333333333333,0.32285714285714284,1,25 -yellow,0.3666666666666667,0.3666666666666667,1.0,0.5226190476190475,6,24 -looks,-0.08333333333333333,0.3083333333333333,0.6333333333333333,0.3571428571428571,1,24 -keyboard,0.065,0.26833333333333337,0.6833333333333333,0.3638095238095238,1,26 -glue,-0.07666666666666666,0.26,0.5666666666666667,0.3276190476190477,1,26 -milk,0,0,0,0,1,26 -cola,-0.17166666666666666,0.30166666666666664,0.4999999999999999,0.33428571428571424,1,26 -flashlight,-0.03833333333333333,0.315,0.65,0.37523809523809526,1,26 -cup,-0.03166666666666666,0.25833333333333336,0.5999999999999999,0.33238095238095244,1,25 -folded,-0.11833333333333332,0.2816666666666667,0.5166666666666666,0.3352380952380953,1,26 -jam,-0.018333333333333333,0.25166666666666665,0.7,0.32285714285714284,1,26 -black,0.38166666666666665,0.38166666666666665,1.0,0.5178571428571428,6,22 -orange,0.3783333333333333,0.3783333333333333,1.0,0.5290476190476191,3,26 -folder,-0.05166666666666666,0.25833333333333336,0.5499999999999999,0.32761904761904764,1,26 -soccer,-0.009999999999999998,0.24666666666666667,0.6499999999999999,0.32761904761904764,1,26 -hat,0.12833333333333335,0.22666666666666666,0.8,0.34095238095238095,1,26 -brown,0.2866666666666666,0.36499999999999994,0.9,0.48999999999999994,2,24 -coffee,-0.175,0.3433333333333334,0.4833333333333333,0.35904761904761906,1,26 -handle,-0.030000000000000006,0.2733333333333333,0.6833333333333333,0.3457142857142857,1,25 -food,0.07333333333333333,0.24666666666666667,0.7333333333333333,0.34571428571428575,1,24 -towel,0.01499999999999999,0.24333333333333332,0.6499999999999999,0.33428571428571424,1,26 -chips,0.041666666666666664,0.25,0.6666666666666666,0.34571428571428575,1,26 -stapler,0.05333333333333333,0.21833333333333335,0.6833333333333333,0.3161904761904762,1,26 -onion,-0.004999999999999996,0.26166666666666666,0.6833333333333333,0.3457142857142857,1,26 -bag,0.17666666666666667,0.23500000000000001,0.9,0.36190476190476195,1,26 -sponge,-0.19666666666666666,0.315,0.45,0.3390476190476191,1,26 -zero,0,0,0,0,1,26 -computer,-0.05499999999999999,0.26166666666666666,0.6166666666666666,0.3342857142857143,1,25 -special,-0.008333333333333337,0.275,0.65,0.3523809523809524,1,26 -colgate,0.08666666666666667,0.23166666666666663,0.7333333333333333,0.3390476190476191,1,26 -leaf,0.08166666666666667,0.265,0.7333333333333333,0.36666666666666664,1,26 -tube,-0.009999999999999998,0.25833333333333336,0.6166666666666666,0.3342857142857143,1,26 -cell,-0.02166666666666666,0.2733333333333333,0.6166666666666666,0.34380952380952384,1,26 -mug,-0.013333333333333332,0.24166666666666664,0.6166666666666666,0.3180952380952381,1,26 -yogurt,-0.18333333333333332,0.31,0.5166666666666666,0.32952380952380955,1,26 -plantain,-0.025000000000000005,0.23500000000000001,0.5999999999999999,0.31333333333333335,1,26 -red,0.445,0.445,1.0,0.5900000000000001,3,25 -pepper,0.010000000000000004,0.22666666666666666,0.7333333333333332,0.31619047619047624,1,26 -wheat,0.023333333333333338,0.24833333333333335,0.7166666666666666,0.33238095238095233,1,26 -kleenex,0.04833333333333333,0.24666666666666667,0.6833333333333333,0.3390476190476191,1,26 -toothbrush,-0.12166666666666666,0.31500000000000006,0.5333333333333333,0.35523809523809524,1,26 -binder,-0.08,0.29333333333333333,0.55,0.3457142857142857,1,26 -baseball,0.041666666666666664,0.22833333333333333,0.7666666666666666,0.3180952380952381,1,26 -pliers,0.06000000000000001,0.25333333333333335,0.7333333333333333,0.3457142857142857,1,26 -paste,0,0,0,0,1,26 -box,0.3983333333333333,0.3983333333333333,1.0,0.545952380952381,3,27 -water,-0.03166666666666666,0.255,0.6,0.3304761904761905,1,26 -thins,0.02,0.25,0.6666666666666666,0.3361904761904762,1,26 -package,0.0016666666666666692,0.27666666666666667,0.7499999999999999,0.3504761904761905,1,26 -k,0.03666666666666667,0.24,0.7166666666666666,0.33238095238095244,1,26 -jelly,-0.08833333333333333,0.30333333333333334,0.4999999999999999,0.35523809523809524,1,26 -fruit,0.3016666666666667,0.3266666666666667,0.9666666666666666,0.4704761904761905,2,26 -apple,0.06833333333333333,0.23000000000000004,0.7333333333333333,0.33047619047619053,1,25 -bell,-0.1833333333333333,0.29500000000000004,0.4,0.33238095238095244,1,26 -battery,0.041666666666666664,0.2333333333333333,0.7166666666666666,0.3276190476190476,1,26 -jar,-0.11833333333333333,0.28500000000000003,0.5666666666666667,0.32952380952380955,1,26 -bound,-0.075,0.2816666666666667,0.4999999999999999,0.34380952380952384,1,26 -lettuce,-0.09166666666666666,0.28500000000000003,0.5,0.3361904761904762,1,26 -brush,-0.15499999999999997,0.30333333333333334,0.5166666666666666,0.3371428571428572,1,26 -scissors,0.0016666666666666718,0.28833333333333333,0.7499999999999999,0.36190476190476195,1,26 -lime,-0.0016666666666666607,0.25999999999999995,0.7,0.33904761904761904,1,25 -toothpaste,-0.07166666666666666,0.2733333333333334,0.5833333333333333,0.3342857142857143,1,26 -top,-0.07666666666666666,0.28833333333333333,0.6499999999999999,0.3342857142857143,1,26 -spiral,-0.125,0.2866666666666667,0.4833333333333333,0.33238095238095244,1,26 -handles,0.04833333333333333,0.22666666666666666,0.7666666666666666,0.320952380952381,1,25 -camera,-0.009999999999999998,0.2666666666666667,0.6166666666666666,0.34095238095238095,1,26 -eraser,-0.05,0.3066666666666667,0.5999999999999999,0.3657142857142857,1,26 -creamer,0,0,0,0,1,26 -white,0.3066666666666667,0.3066666666666667,1.0,0.45619047619047615,5,21 -banana,-0.10499999999999998,0.28500000000000003,0.5333333333333333,0.3371428571428572,1,26 -pitcher,-0.09833333333333333,0.335,0.6333333333333332,0.37333333333333335,1,26 -phone,-0.175,0.33166666666666667,0.5166666666666666,0.35238095238095235,1,26 -stick,-0.06333333333333332,0.2783333333333333,0.5833333333333333,0.3438095238095238,1,25 -cereal,-0.008333333333333331,0.265,0.5666666666666667,0.34571428571428575,1,26 -bulb,0.2616666666666667,0.2816666666666667,0.9666666666666666,0.4223809523809524,2,27 -hair,-0.013333333333333332,0.27166666666666667,0.5833333333333333,0.34095238095238095,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,-0.01666666666666667,0.27,0.6166666666666666,0.340952380952381,1,26 -can,0.2783333333333334,0.31833333333333336,0.9333333333333332,0.46047619047619054,2,25 -coca,0.05,0.2333333333333333,0.7333333333333333,0.32285714285714284,1,26 -crackers,-0.04166666666666667,0.265,0.7,0.3247619047619047,1,26 -plate,-0.11833333333333333,0.3350000000000001,0.5833333333333333,0.3685714285714286,1,25 -calculator,-0.11333333333333333,0.27,0.5166666666666666,0.32285714285714284,1,26 -tissues,-0.02166666666666666,0.26166666666666666,0.5999999999999999,0.33904761904761904,1,26 -juice,-0.06333333333333332,0.3066666666666667,0.5999999999999999,0.36190476190476195,1,26 -pink,-0.034999999999999996,0.265,0.6333333333333333,0.33904761904761904,1,25 -lemon,0.008333333333333331,0.23500000000000001,0.6166666666666666,0.31999999999999995,1,26 -peach,-0.14166666666666666,0.27999999999999997,0.4833333333333333,0.3180952380952381,1,26 -bowl,-0.07166666666666668,0.2566666666666667,0.5833333333333333,0.3180952380952381,1,26 -camouflage,0,0,0,0,1,26 -digital,0.035,0.25166666666666665,0.8,0.3390476190476191,1,26 -blue,-0.06499999999999999,0.27166666666666667,0.6333333333333333,0.3323809523809524,1,25 -used,-0.1,0.31166666666666665,0.5,0.3571428571428571,1,23 -energizer,0,0,0,0,1,26 -pear,0.07666666666666667,0.22666666666666666,0.7333333333333333,0.33047619047619053,1,26 -ball,-0.07999999999999999,0.2633333333333333,0.5833333333333333,0.32285714285714284,1,25 -notebook,-0.018333333333333326,0.2733333333333333,0.65,0.3485714285714286,1,26 -garlic,-0.05499999999999999,0.2733333333333333,0.6333333333333333,0.33904761904761904,1,26 -cleaning,-0.07999999999999999,0.29833333333333334,0.5999999999999999,0.34571428571428575,1,26 -pair,0.26000000000000006,0.35833333333333334,0.8666666666666666,0.47333333333333333,2,27 -container,-0.01666666666666667,0.24,0.6,0.32285714285714284,1,25 -tomato,0.045,0.24,0.7666666666666666,0.32952380952380955,1,26 -cellphone,-0.075,0.3,0.5333333333333333,0.35904761904761906,1,26 -potato,-0.14166666666666666,0.29833333333333334,0.5166666666666666,0.3361904761904762,1,25 -light,0.33166666666666667,0.365,0.9666666666666666,0.501904761904762,2,27 -green,0.425,0.425,1.0,0.5776190476190477,3,24 -bottle,0.275,0.39999999999999997,0.8666666666666666,0.4904761904761905,2,25 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: 0.01496913580246914 -F1-Score: 0.33515652557319225 -Precision: 0.26240740740740737 -Recall: 0.6217592592592592 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,-0.09666666666666666,0.2816666666666667,0.5833333333333333,0.3323809523809524,1,25 -yellow,0.3583333333333333,0.3583333333333333,1.0,0.5140476190476191,6,24 -looks,0.024999999999999994,0.2333333333333333,0.7,0.3247619047619047,1,24 -keyboard,-0.056666666666666664,0.27666666666666667,0.6333333333333333,0.33904761904761904,1,26 -glue,-0.11333333333333333,0.31500000000000006,0.5333333333333333,0.3571428571428571,1,26 -milk,0,0,0,0,1,26 -cola,0.09833333333333333,0.19833333333333333,0.75,0.30666666666666664,1,26 -flashlight,-0.185,0.29833333333333334,0.5333333333333333,0.32761904761904764,1,26 -cup,-0.03499999999999999,0.22666666666666666,0.6333333333333333,0.30476190476190484,1,26 -folded,-0.009999999999999998,0.2633333333333333,0.5833333333333333,0.3371428571428572,1,26 -jam,-0.275,0.3616666666666667,0.38333333333333336,0.3571428571428571,1,26 -black,0.6533333333333333,0.5683333333333334,1.0,0.6971428571428571,6,21 -orange,0.41,0.41,1.0,0.5538095238095238,3,25 -folder,0.07833333333333332,0.26166666666666666,0.7833333333333333,0.35714285714285715,1,26 -soccer,-0.10500000000000001,0.29333333333333333,0.5,0.33904761904761904,1,26 -hat,-0.03833333333333333,0.2566666666666667,0.6333333333333333,0.3323809523809524,1,26 -brown,0.315,0.4333333333333334,0.8333333333333333,0.5547619047619048,2,24 -coffee,5.551115123125783e-18,0.23166666666666663,0.6166666666666666,0.31619047619047624,1,26 -handle,0.065,0.23000000000000004,0.7333333333333333,0.3276190476190476,1,26 -food,0.09666666666666668,0.22166666666666668,0.7833333333333333,0.3304761904761905,1,26 -towel,-0.13,0.31166666666666665,0.4833333333333333,0.3504761904761905,1,26 -chips,0.019999999999999997,0.24833333333333335,0.6666666666666666,0.3342857142857143,1,26 -stapler,-0.06333333333333332,0.29000000000000004,0.5833333333333333,0.35238095238095235,1,26 -onion,0.06666666666666668,0.26166666666666666,0.7166666666666666,0.3638095238095238,1,26 -bag,-0.05,0.265,0.6,0.3295238095238095,1,26 -sponge,0.02666666666666668,0.23833333333333337,0.7,0.3323809523809524,1,26 -zero,0,0,0,0,1,26 -computer,-0.08333333333333333,0.3,0.5333333333333333,0.35714285714285715,1,26 -special,-0.10833333333333335,0.26999999999999996,0.5166666666666666,0.3247619047619047,1,26 -colgate,0.06166666666666666,0.26999999999999996,0.7333333333333333,0.36190476190476195,1,26 -leaf,0.07166666666666668,0.2416666666666667,0.8166666666666667,0.3390476190476191,1,26 -tube,-0.125,0.33666666666666667,0.4499999999999999,0.3704761904761905,1,26 -cell,-0.016666666666666673,0.2816666666666666,0.6666666666666666,0.3476190476190476,1,26 -mug,0.07833333333333334,0.21333333333333332,0.7333333333333333,0.3180952380952381,1,26 -yogurt,0.03166666666666667,0.25000000000000006,0.6333333333333333,0.3390476190476191,1,26 -plantain,-0.058333333333333334,0.2983333333333334,0.5666666666666667,0.35238095238095235,1,26 -red,0.33666666666666667,0.33666666666666667,1.0,0.4745238095238095,3,25 -pepper,0.05,0.25,0.7166666666666666,0.34571428571428575,1,26 -wheat,-0.0016666666666666607,0.2733333333333333,0.6666666666666666,0.3485714285714286,1,26 -kleenex,-0.05,0.25,0.6333333333333332,0.3180952380952381,1,26 -toothbrush,-0.01,0.265,0.7,0.33904761904761904,1,26 -binder,-0.023333333333333327,0.27166666666666667,0.6499999999999999,0.34380952380952384,1,26 -baseball,-0.03666666666666667,0.29666666666666675,0.6499999999999999,0.36000000000000004,1,26 -pliers,-0.0016666666666666663,0.2566666666666667,0.7,0.3342857142857143,1,26 -paste,0,0,0,0,1,26 -box,0.48999999999999994,0.48999999999999994,1.0,0.6316666666666667,3,26 -water,0.058333333333333334,0.2533333333333333,0.7166666666666666,0.35238095238095235,1,26 -thins,-0.02166666666666666,0.24833333333333335,0.6,0.3276190476190476,1,26 -package,0.03666666666666667,0.26833333333333337,0.6833333333333333,0.35238095238095235,1,26 -k,0.03666666666666667,0.24833333333333335,0.6666666666666666,0.34380952380952384,1,26 -jelly,0.05333333333333333,0.22166666666666668,0.6833333333333333,0.3180952380952381,1,26 -fruit,0.255,0.32166666666666666,0.9333333333333332,0.4352380952380953,2,26 -apple,-0.13333333333333333,0.32333333333333336,0.4833333333333333,0.35904761904761906,1,25 -bell,-0.05499999999999999,0.31166666666666665,0.6833333333333333,0.36857142857142855,1,26 -battery,-0.004999999999999993,0.265,0.6166666666666666,0.34380952380952384,1,26 -jar,-0.205,0.34500000000000003,0.5499999999999999,0.35238095238095235,1,26 -bound,-0.14999999999999997,0.325,0.5166666666666666,0.35714285714285715,1,26 -lettuce,-0.07999999999999999,0.26833333333333337,0.5333333333333333,0.3323809523809524,1,26 -brush,0.03666666666666667,0.26,0.6833333333333333,0.3457142857142857,1,26 -scissors,0.07333333333333333,0.24333333333333335,0.7333333333333333,0.34095238095238095,1,26 -lime,-0.029999999999999992,0.2733333333333333,0.5999999999999999,0.34571428571428575,1,25 -toothpaste,-0.03833333333333333,0.27,0.6833333333333333,0.3390476190476191,1,26 -top,-0.185,0.33166666666666667,0.5499999999999999,0.3504761904761905,1,26 -spiral,-0.1166666666666667,0.31666666666666665,0.5833333333333333,0.35238095238095235,1,26 -handles,-0.07499999999999998,0.265,0.5333333333333333,0.3295238095238095,1,25 -camera,-0.08,0.315,0.5499999999999999,0.3638095238095238,1,26 -eraser,-0.11333333333333336,0.29500000000000004,0.5833333333333333,0.3371428571428572,1,26 -creamer,0,0,0,0,1,26 -white,0.475,0.475,1.0,0.6107142857142857,5,21 -banana,0.0033333333333333383,0.25333333333333335,0.6499999999999999,0.3390476190476191,1,26 -pitcher,-0.10833333333333332,0.28666666666666674,0.5333333333333333,0.3342857142857143,1,26 -phone,-0.12166666666666666,0.315,0.5666666666666667,0.35714285714285715,1,26 -stick,-0.13833333333333334,0.33666666666666667,0.6166666666666666,0.3638095238095238,1,25 -cereal,-0.20833333333333331,0.3416666666666667,0.4999999999999999,0.35238095238095235,1,26 -bulb,0.30333333333333334,0.4066666666666666,0.8666666666666666,0.5252380952380953,2,27 -hair,-0.03833333333333333,0.27666666666666667,0.6166666666666666,0.3390476190476191,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,-0.09333333333333335,0.2983333333333333,0.6833333333333333,0.33904761904761904,1,26 -can,0.3066666666666667,0.37666666666666665,0.8999999999999998,0.511904761904762,2,26 -coca,0.0066666666666666706,0.26833333333333337,0.6166666666666666,0.3504761904761905,1,26 -crackers,0.06000000000000001,0.2516666666666667,0.7833333333333333,0.3390476190476191,1,26 -plate,0.019999999999999997,0.24,0.75,0.32761904761904764,1,25 -calculator,-0.08833333333333333,0.25833333333333336,0.5333333333333333,0.3180952380952381,1,26 -tissues,-0.08333333333333334,0.29166666666666663,0.6333333333333333,0.34095238095238095,1,26 -juice,-0.11333333333333333,0.2683333333333333,0.4833333333333333,0.320952380952381,1,26 -pink,-0.18833333333333332,0.32333333333333336,0.4666666666666666,0.34380952380952384,1,25 -lemon,-0.05,0.25166666666666665,0.55,0.32285714285714284,1,26 -peach,0.03166666666666667,0.255,0.6333333333333333,0.34380952380952384,1,26 -bowl,-0.10666666666666666,0.3,0.5833333333333333,0.34380952380952384,1,26 -camouflage,0,0,0,0,1,26 -digital,0.011666666666666667,0.2733333333333333,0.6666666666666666,0.35238095238095235,1,26 -blue,-0.175,0.30833333333333335,0.45,0.34380952380952384,1,25 -used,-0.059999999999999984,0.2633333333333333,0.5999999999999999,0.32571428571428573,1,24 -energizer,0,0,0,0,1,26 -pear,-0.058333333333333334,0.2533333333333333,0.6333333333333333,0.3180952380952381,1,26 -ball,-0.07499999999999998,0.325,0.6333333333333333,0.37523809523809526,1,25 -notebook,0.048333333333333325,0.25666666666666665,0.7666666666666666,0.3457142857142857,1,26 -garlic,0.10166666666666666,0.215,0.75,0.32285714285714284,1,26 -cleaning,-0.08833333333333333,0.2533333333333333,0.6166666666666666,0.31142857142857144,1,26 -pair,0.29833333333333334,0.3433333333333334,0.9333333333333332,0.48476190476190484,2,27 -container,0.065,0.255,0.6833333333333333,0.35238095238095235,1,25 -tomato,-0.1383333333333333,0.32,0.5666666666666667,0.35523809523809524,1,26 -cellphone,-0.009999999999999998,0.26,0.6166666666666666,0.33714285714285713,1,26 -potato,-0.02166666666666666,0.24833333333333335,0.6333333333333333,0.32952380952380955,1,25 -light,0.27,0.31500000000000006,0.9333333333333332,0.4471428571428572,2,25 -green,0.3416666666666667,0.3416666666666667,1.0,0.48500000000000004,3,22 -bottle,0.265,0.3633333333333333,0.8666666666666668,0.4800000000000001,2,26 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: 0.01449074074074074 -F1-Score: 0.33996693121693117 -Precision: 0.26969135802469135 -Recall: 0.6186728395061728 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,-0.01499999999999999,0.27166666666666667,0.7,0.34380952380952384,1,25 -yellow,0.3783333333333333,0.3783333333333333,1.0,0.5328571428571428,6,25 -looks,0.011666666666666664,0.24666666666666667,0.6333333333333333,0.32761904761904764,1,24 -keyboard,-0.26666666666666666,0.35833333333333334,0.38333333333333336,0.3571428571428571,1,26 -glue,0.17833333333333332,0.23666666666666666,0.9,0.36380952380952386,1,26 -milk,0,0,0,0,1,26 -cola,-0.18333333333333335,0.3616666666666667,0.4833333333333333,0.3704761904761905,1,26 -flashlight,-0.15833333333333333,0.31166666666666665,0.5166666666666666,0.34095238095238095,1,26 -cup,-0.07666666666666666,0.2666666666666667,0.5833333333333333,0.32761904761904764,1,26 -folded,0.07333333333333333,0.23000000000000004,0.7333333333333333,0.3295238095238095,1,26 -jam,-0.10500000000000001,0.2816666666666666,0.5333333333333333,0.33238095238095233,1,26 -black,0.55,0.4533333333333333,1.0,0.610952380952381,6,21 -orange,0.4383333333333333,0.4383333333333333,1.0,0.5828571428571427,3,26 -folder,-0.04333333333333332,0.29,0.6833333333333333,0.35523809523809524,1,26 -soccer,-0.018333333333333337,0.2733333333333333,0.65,0.34571428571428575,1,26 -hat,0.05333333333333332,0.2866666666666667,0.8166666666666667,0.3704761904761905,1,26 -brown,0.29666666666666663,0.3416666666666666,0.9333333333333332,0.4780952380952381,2,24 -coffee,-0.11333333333333333,0.2783333333333334,0.5499999999999999,0.3342857142857143,1,25 -handle,-0.03833333333333333,0.23833333333333334,0.5999999999999999,0.31142857142857144,1,25 -food,-0.04333333333333333,0.29333333333333333,0.6,0.35714285714285715,1,25 -towel,-0.09666666666666665,0.27666666666666667,0.5666666666666667,0.3342857142857143,1,26 -chips,0.03166666666666667,0.255,0.6333333333333333,0.34380952380952384,1,26 -stapler,0.015,0.21833333333333332,0.7499999999999999,0.3047619047619048,1,26 -onion,-0.03833333333333333,0.24000000000000005,0.5833333333333333,0.3180952380952381,1,26 -bag,-0.22166666666666668,0.345,0.4833333333333334,0.35714285714285715,1,26 -sponge,0.11666666666666665,0.22833333333333336,0.8,0.3371428571428572,1,26 -zero,0,0,0,0,1,26 -computer,-0.24166666666666664,0.3083333333333333,0.41666666666666663,0.3276190476190476,1,26 -special,-0.0016666666666666663,0.24333333333333335,0.7,0.32285714285714284,1,26 -colgate,-0.02333333333333333,0.26,0.7,0.3304761904761905,1,26 -leaf,-0.1383333333333333,0.28500000000000003,0.5666666666666667,0.32285714285714284,1,26 -tube,-0.09166666666666665,0.2783333333333333,0.5833333333333333,0.3323809523809524,1,26 -cell,-0.058333333333333334,0.2983333333333333,0.6,0.35428571428571426,1,26 -mug,-0.15,0.2833333333333333,0.4999999999999999,0.32761904761904764,1,25 -yogurt,0.03666666666666667,0.2733333333333333,0.7166666666666666,0.35904761904761906,1,26 -plantain,0.011666666666666672,0.21833333333333332,0.6666666666666666,0.3047619047619048,1,26 -red,0.5483333333333333,0.5483333333333333,1.0,0.6904761904761905,3,24 -pepper,-0.06666666666666668,0.275,0.6333333333333333,0.33428571428571435,1,26 -wheat,-0.17166666666666666,0.29,0.4999999999999999,0.32571428571428573,1,26 -kleenex,-0.025,0.26166666666666666,0.55,0.340952380952381,1,26 -toothbrush,-0.03833333333333332,0.28500000000000003,0.5666666666666667,0.3504761904761905,1,25 -binder,-0.11333333333333333,0.34500000000000003,0.5833333333333333,0.38000000000000006,1,26 -baseball,-0.11666666666666665,0.2616666666666666,0.5166666666666666,0.3161904761904762,1,26 -pliers,-0.03333333333333334,0.2583333333333333,0.6,0.3295238095238095,1,26 -paste,0,0,0,0,1,26 -box,0.48666666666666664,0.48666666666666664,1.0,0.6369047619047619,3,26 -water,-0.09166666666666666,0.25166666666666665,0.5166666666666666,0.3180952380952381,1,26 -thins,-0.09666666666666668,0.31166666666666665,0.6333333333333333,0.35238095238095235,1,26 -package,0.07666666666666666,0.23833333333333337,0.7333333333333333,0.3390476190476191,1,26 -k,-0.09166666666666669,0.26166666666666666,0.5333333333333333,0.3180952380952381,1,26 -jelly,-0.005000000000000002,0.26999999999999996,0.7499999999999999,0.34095238095238095,1,26 -fruit,0.2583333333333333,0.3083333333333333,0.9333333333333332,0.44000000000000006,2,27 -apple,0.06000000000000001,0.23333333333333334,0.7333333333333333,0.3276190476190476,1,25 -bell,0.07166666666666667,0.255,0.8166666666666667,0.3504761904761905,1,26 -battery,-0.22999999999999998,0.33666666666666667,0.5333333333333333,0.340952380952381,1,26 -jar,-0.20833333333333331,0.3333333333333333,0.4499999999999999,0.3504761904761905,1,26 -bound,-0.08833333333333335,0.31500000000000006,0.6,0.3571428571428572,1,26 -lettuce,-0.004999999999999996,0.265,0.6666666666666666,0.33904761904761904,1,26 -brush,-0.10499999999999998,0.30333333333333334,0.5666666666666667,0.35523809523809524,1,26 -scissors,-0.05499999999999999,0.27666666666666667,0.5999999999999999,0.33904761904761904,1,26 -lime,0.0033333333333333327,0.25666666666666665,0.6666666666666666,0.33428571428571424,1,25 -toothpaste,-0.05499999999999999,0.24666666666666667,0.5499999999999999,0.31619047619047624,1,26 -top,-0.05499999999999999,0.24666666666666665,0.5999999999999999,0.31142857142857144,1,26 -spiral,0.008333333333333335,0.2816666666666667,0.5833333333333333,0.359047619047619,1,26 -handles,-0.023333333333333324,0.25000000000000006,0.6499999999999999,0.32571428571428573,1,25 -camera,-0.013333333333333327,0.24833333333333335,0.6166666666666666,0.32571428571428573,1,26 -eraser,0.034999999999999996,0.21833333333333332,0.7999999999999999,0.30952380952380953,1,26 -creamer,0,0,0,0,1,26 -white,0.39333333333333337,0.39333333333333337,1.0,0.5523809523809524,5,21 -banana,0.02,0.26166666666666666,0.7,0.3504761904761905,1,26 -pitcher,-0.10833333333333332,0.31166666666666665,0.5333333333333333,0.3571428571428572,1,26 -phone,-0.02166666666666666,0.2566666666666667,0.7,0.3276190476190476,1,26 -stick,0.008333333333333335,0.23833333333333334,0.6166666666666666,0.32476190476190475,1,25 -cereal,5.551115123125783e-18,0.2533333333333333,0.65,0.33619047619047615,1,26 -bulb,0.33333333333333337,0.4783333333333334,0.8333333333333334,0.5780952380952381,2,27 -hair,-0.004999999999999996,0.2816666666666666,0.7,0.35714285714285715,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,-0.03,0.26,0.65,0.3295238095238095,1,26 -can,0.26999999999999996,0.3883333333333333,0.8333333333333333,0.4995238095238094,2,26 -coca,0.011666666666666667,0.2733333333333333,0.6333333333333333,0.3504761904761905,1,26 -crackers,0.043333333333333335,0.24333333333333335,0.7166666666666666,0.3371428571428572,1,26 -plate,-0.04166666666666667,0.2783333333333333,0.5666666666666667,0.34095238095238095,1,25 -calculator,-0.33333333333333337,0.4,0.3666666666666667,0.3733333333333334,1,26 -tissues,0.07833333333333334,0.23500000000000001,0.7,0.3342857142857143,1,26 -juice,0.020000000000000004,0.2483333333333333,0.7,0.33904761904761904,1,26 -pink,-0.09333333333333334,0.27666666666666667,0.5333333333333333,0.33238095238095244,1,25 -lemon,0.04833333333333333,0.2516666666666667,0.6833333333333333,0.34380952380952384,1,26 -peach,0.06666666666666668,0.25166666666666665,0.6833333333333333,0.35238095238095235,1,26 -bowl,-0.07166666666666666,0.2783333333333334,0.6166666666666666,0.340952380952381,1,26 -camouflage,0,0,0,0,1,26 -digital,-0.09666666666666666,0.30999999999999994,0.5999999999999999,0.3476190476190476,1,26 -blue,-0.004999999999999993,0.24333333333333335,0.6499999999999999,0.3276190476190476,1,25 -used,0.010000000000000009,0.26,0.6666666666666666,0.34190476190476193,1,23 -energizer,0,0,0,0,1,26 -pear,-0.02666666666666666,0.2683333333333333,0.6499999999999999,0.33904761904761904,1,26 -ball,-0.13,0.2866666666666666,0.5666666666666667,0.3276190476190476,1,25 -notebook,-0.05833333333333333,0.29500000000000004,0.5499999999999999,0.35714285714285715,1,26 -garlic,0.09833333333333334,0.24333333333333335,0.7833333333333333,0.3504761904761905,1,26 -cleaning,-0.01833333333333333,0.29833333333333334,0.7,0.3638095238095238,1,26 -pair,0.3183333333333333,0.3183333333333333,1.0,0.4685714285714285,2,27 -container,0.03166666666666666,0.25999999999999995,0.6333333333333333,0.34571428571428575,1,25 -tomato,-0.10833333333333332,0.2633333333333333,0.4833333333333334,0.3180952380952381,1,26 -cellphone,0.011666666666666667,0.25166666666666665,0.7166666666666666,0.32952380952380955,1,26 -potato,-0.055000000000000014,0.2733333333333333,0.65,0.3295238095238095,1,25 -light,0.25,0.45500000000000007,0.7333333333333333,0.5304761904761904,2,26 -green,0.395,0.395,1.0,0.5380952380952381,3,23 -bottle,0.26333333333333336,0.3916666666666667,0.8333333333333333,0.49714285714285705,2,26 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: 0.012932098765432103 -F1-Score: 0.3405048500881834 -Precision: 0.27075617283950615 -Recall: 0.6174382716049381 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,-0.14666666666666667,0.32333333333333336,0.5666666666666667,0.35238095238095235,1,24 -yellow,0.4116666666666666,0.4116666666666666,1.0,0.5549999999999999,6,26 -looks,-0.11666666666666667,0.2783333333333333,0.5666666666666667,0.3276190476190476,1,24 -keyboard,2.7755575615628915e-18,0.25666666666666665,0.6166666666666666,0.3390476190476191,1,26 -glue,-0.04666666666666666,0.26833333333333337,0.55,0.3390476190476191,1,26 -milk,0,0,0,0,1,26 -cola,-0.20833333333333331,0.31166666666666665,0.4,0.33428571428571424,1,26 -flashlight,-0.13333333333333333,0.29833333333333334,0.5333333333333333,0.3342857142857143,1,26 -cup,0.14833333333333332,0.24000000000000005,0.85,0.35714285714285715,1,25 -folded,-0.09666666666666668,0.30333333333333334,0.6666666666666666,0.3476190476190476,1,26 -jam,-0.06333333333333332,0.2816666666666666,0.5999999999999999,0.33904761904761904,1,26 -black,0.5666666666666667,0.48999999999999994,1.0,0.6488095238095238,6,21 -orange,0.4033333333333333,0.4033333333333333,1.0,0.5416666666666666,3,26 -folder,0.0066666666666666706,0.24333333333333335,0.7,0.3276190476190476,1,26 -soccer,0.011666666666666667,0.26166666666666666,0.5833333333333333,0.34380952380952384,1,26 -hat,-0.14666666666666667,0.33666666666666667,0.5166666666666666,0.3685714285714286,1,26 -brown,0.2716666666666667,0.3116666666666667,0.9333333333333332,0.4542857142857143,2,26 -coffee,-0.11833333333333333,0.29833333333333334,0.5666666666666667,0.34380952380952384,1,24 -handle,-0.009999999999999992,0.2733333333333333,0.7,0.3485714285714286,1,26 -food,-0.135,0.29333333333333333,0.5166666666666666,0.3342857142857143,1,26 -towel,-0.043333333333333335,0.2766666666666667,0.6,0.34380952380952384,1,26 -chips,-0.15166666666666667,0.2966666666666667,0.5166666666666666,0.33238095238095233,1,26 -stapler,-0.12999999999999998,0.32333333333333336,0.5333333333333333,0.3571428571428571,1,26 -onion,-0.21666666666666665,0.35,0.4,0.3638095238095238,1,26 -bag,-0.1,0.29,0.5833333333333333,0.33619047619047615,1,26 -sponge,-0.12166666666666666,0.3016666666666667,0.4833333333333333,0.34571428571428575,1,26 -zero,0,0,0,0,1,26 -computer,-0.11333333333333336,0.29333333333333333,0.5833333333333333,0.3342857142857143,1,25 -special,-0.11833333333333332,0.2816666666666667,0.5499999999999999,0.3371428571428572,1,26 -colgate,-0.125,0.32833333333333337,0.4833333333333333,0.3685714285714286,1,26 -leaf,-0.05166666666666666,0.27666666666666667,0.6,0.33904761904761904,1,26 -tube,-0.10999999999999999,0.3066666666666667,0.5333333333333333,0.3533333333333334,1,26 -cell,-0.06666666666666668,0.2316666666666667,0.5833333333333333,0.3,1,26 -mug,-0.075,0.2816666666666667,0.4499999999999999,0.34285714285714286,1,25 -yogurt,-0.3,0.3833333333333333,0.38333333333333336,0.3666666666666667,1,26 -plantain,-0.04166666666666667,0.2733333333333333,0.5666666666666667,0.33619047619047615,1,26 -red,0.3983333333333333,0.3983333333333333,1.0,0.5519047619047619,3,26 -pepper,0.08166666666666667,0.26,0.7833333333333333,0.35714285714285715,1,26 -wheat,-0.23833333333333334,0.34500000000000003,0.4833333333333334,0.3504761904761905,1,26 -kleenex,-0.025,0.26999999999999996,0.6,0.34571428571428575,1,26 -toothbrush,0.20166666666666666,0.23500000000000001,0.95,0.3685714285714286,1,26 -binder,0.03500000000000001,0.24333333333333332,0.75,0.33714285714285713,1,26 -baseball,-0.15833333333333333,0.29500000000000004,0.5166666666666666,0.3276190476190476,1,26 -pliers,-0.11666666666666665,0.285,0.5,0.32761904761904764,1,26 -paste,0,0,0,0,1,26 -box,0.36666666666666664,0.36666666666666664,1.0,0.5038095238095239,3,27 -water,-0.14166666666666666,0.31666666666666665,0.5666666666666667,0.3476190476190476,1,26 -thins,0.041666666666666664,0.2833333333333333,0.7166666666666666,0.37047619047619046,1,26 -package,0.07333333333333333,0.23166666666666663,0.7666666666666666,0.3342857142857143,1,26 -k,0.04,0.25666666666666665,0.7666666666666666,0.34380952380952384,1,26 -jelly,0.015000000000000003,0.27166666666666667,0.6666666666666666,0.3523809523809524,1,26 -fruit,0.275,0.34833333333333333,0.9,0.47333333333333333,2,27 -apple,-8.326672684688674e-18,0.2533333333333333,0.6666666666666666,0.3295238095238095,1,25 -bell,-0.03833333333333333,0.29,0.5999999999999999,0.35714285714285715,1,26 -battery,-0.05499999999999999,0.2866666666666667,0.6333333333333333,0.3504761904761905,1,26 -jar,-0.08,0.295,0.6333333333333333,0.3457142857142857,1,26 -bound,-0.125,0.2833333333333333,0.5499999999999999,0.3342857142857143,1,26 -lettuce,0.010000000000000009,0.27666666666666667,0.7,0.36000000000000004,1,26 -brush,0.11333333333333333,0.20833333333333334,0.8333333333333333,0.320952380952381,1,26 -scissors,-0.10166666666666666,0.30500000000000005,0.6333333333333332,0.34571428571428575,1,26 -lime,-5.551115123125783e-18,0.2583333333333333,0.6666666666666666,0.3342857142857143,1,25 -toothpaste,-0.075,0.25666666666666665,0.5833333333333333,0.3180952380952381,1,26 -top,-0.11333333333333333,0.29,0.6166666666666666,0.3342857142857143,1,26 -spiral,0.13166666666666665,0.22666666666666666,0.8,0.34380952380952384,1,26 -handles,-0.10499999999999998,0.26333333333333336,0.5333333333333333,0.31619047619047613,1,25 -camera,-0.05166666666666666,0.2483333333333333,0.6166666666666666,0.32285714285714284,1,26 -eraser,0.075,0.24499999999999997,0.7,0.34095238095238095,1,26 -creamer,0,0,0,0,1,26 -white,0.3883333333333333,0.3883333333333333,1.0,0.5347619047619048,5,23 -banana,-0.1633333333333333,0.31166666666666665,0.5499999999999999,0.34380952380952384,1,26 -pitcher,-0.046666666666666655,0.29,0.65,0.3504761904761905,1,26 -phone,-0.02166666666666666,0.24833333333333335,0.5999999999999999,0.32761904761904764,1,26 -stick,0.023333333333333338,0.265,0.7,0.35523809523809524,1,25 -cereal,-0.013333333333333336,0.25833333333333336,0.5833333333333333,0.3295238095238095,1,26 -bulb,0.265,0.38,0.8333333333333333,0.4904761904761904,2,27 -hair,-0.04666666666666667,0.26,0.6499999999999999,0.32285714285714284,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,-0.11333333333333336,0.27666666666666667,0.5666666666666667,0.32476190476190475,1,26 -can,0.32333333333333336,0.42666666666666664,0.8666666666666666,0.5428571428571429,2,26 -coca,-0.09333333333333334,0.265,0.5166666666666666,0.32761904761904764,1,26 -crackers,-0.06666666666666668,0.30333333333333334,0.6333333333333333,0.35904761904761906,1,26 -plate,-0.10499999999999998,0.2816666666666667,0.6166666666666666,0.32952380952380955,1,25 -calculator,-0.08333333333333333,0.26666666666666666,0.5333333333333333,0.3304761904761905,1,26 -tissues,-0.021666666666666667,0.2733333333333333,0.6666666666666666,0.3390476190476191,1,26 -juice,-0.05166666666666666,0.2683333333333333,0.6833333333333332,0.32952380952380955,1,26 -pink,-0.028333333333333332,0.27166666666666667,0.7333333333333333,0.33904761904761904,1,25 -lemon,-0.10833333333333335,0.30333333333333334,0.5333333333333333,0.3476190476190476,1,26 -peach,0.02666666666666666,0.26666666666666666,0.7666666666666666,0.34571428571428575,1,26 -bowl,0.09333333333333334,0.21833333333333335,0.8166666666666667,0.3276190476190476,1,26 -camouflage,0,0,0,0,1,26 -digital,-0.175,0.3283333333333333,0.5499999999999999,0.3523809523809524,1,26 -blue,-0.11666666666666665,0.31500000000000006,0.5833333333333333,0.35238095238095235,1,25 -used,0.011666666666666669,0.28500000000000003,0.7166666666666666,0.359047619047619,1,23 -energizer,0,0,0,0,1,26 -pear,-0.09666666666666665,0.25666666666666665,0.5166666666666666,0.320952380952381,1,26 -ball,0.10500000000000001,0.205,0.8666666666666666,0.3161904761904762,1,25 -notebook,0.07666666666666667,0.255,0.7,0.3504761904761905,1,26 -garlic,-0.034999999999999996,0.25166666666666665,0.6499999999999999,0.32095238095238093,1,26 -cleaning,-0.2583333333333333,0.3433333333333334,0.4,0.34095238095238095,1,26 -pair,0.2866666666666667,0.41833333333333333,0.8333333333333333,0.520952380952381,2,27 -container,-0.05,0.2866666666666666,0.5166666666666666,0.3504761904761905,1,25 -tomato,-0.05833333333333333,0.27166666666666667,0.5166666666666666,0.33428571428571424,1,26 -cellphone,-0.11833333333333332,0.29,0.5166666666666666,0.33904761904761904,1,26 -potato,0.08666666666666667,0.24,0.7333333333333333,0.34571428571428575,1,25 -light,0.2816666666666667,0.4,0.8333333333333333,0.518095238095238,2,27 -green,0.3066666666666667,0.3066666666666667,1.0,0.4461904761904762,3,24 -bottle,0.24666666666666667,0.2916666666666667,0.9333333333333332,0.42095238095238097,2,26 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: -0.0007716049382715988 -F1-Score: 0.3382120811287478 -Precision: 0.2716820987654321 -Recall: 0.6094135802469135 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,-0.07666666666666666,0.2816666666666666,0.6166666666666666,0.34380952380952384,1,24 -yellow,0.35333333333333333,0.35333333333333333,1.0,0.5073809523809525,6,26 -looks,0.008333333333333331,0.2583333333333333,0.6666666666666666,0.33904761904761904,1,24 -keyboard,-0.125,0.3066666666666667,0.4833333333333333,0.3476190476190476,1,26 -glue,0.008333333333333331,0.26666666666666666,0.5833333333333333,0.34571428571428575,1,26 -milk,0,0,0,0,1,26 -cola,-0.25,0.33999999999999997,0.4,0.3438095238095238,1,26 -flashlight,0.10666666666666666,0.2316666666666667,0.8333333333333333,0.33904761904761904,1,26 -cup,-0.03,0.2783333333333334,0.6499999999999999,0.34857142857142864,1,26 -folded,-0.12166666666666666,0.26833333333333326,0.5666666666666667,0.3133333333333333,1,26 -jam,-0.006666666666666654,0.2766666666666667,0.7,0.3533333333333334,1,26 -black,0.6466666666666667,0.5083333333333333,1.0,0.6547619047619049,6,21 -orange,0.395,0.395,1.0,0.5352380952380951,3,25 -folder,-0.13833333333333334,0.28833333333333333,0.4833333333333333,0.3276190476190476,1,26 -soccer,-0.275,0.3283333333333333,0.4166666666666667,0.3295238095238095,1,26 -hat,0.06999999999999999,0.2616666666666666,0.7833333333333333,0.35238095238095235,1,26 -brown,0.3,0.35,0.9333333333333332,0.48571428571428565,2,24 -coffee,-0.05666666666666664,0.29333333333333333,0.6333333333333333,0.35523809523809524,1,25 -handle,-0.041666666666666664,0.25999999999999995,0.6,0.3295238095238095,1,26 -food,-0.10499999999999998,0.27166666666666667,0.5333333333333333,0.32285714285714284,1,26 -towel,-0.009999999999999998,0.2816666666666666,0.7499999999999999,0.3504761904761905,1,26 -chips,-0.11833333333333332,0.31833333333333336,0.5833333333333333,0.3552380952380953,1,26 -stapler,0.045,0.23999999999999994,0.7166666666666666,0.3342857142857143,1,26 -onion,-0.06666666666666667,0.2816666666666666,0.5166666666666666,0.3390476190476191,1,26 -bag,-0.06333333333333332,0.28500000000000003,0.6,0.34095238095238095,1,26 -sponge,-0.14999999999999997,0.29500000000000004,0.5166666666666666,0.32952380952380955,1,26 -zero,0,0,0,0,1,26 -computer,-0.06333333333333332,0.3016666666666667,0.5666666666666667,0.35238095238095235,1,26 -special,2.7755575615628915e-18,0.275,0.65,0.35714285714285715,1,26 -colgate,-0.009999999999999992,0.2816666666666667,0.7,0.35523809523809524,1,26 -leaf,-0.034999999999999996,0.28500000000000003,0.6499999999999999,0.3504761904761905,1,26 -tube,-0.03833333333333333,0.26333333333333336,0.5166666666666666,0.33428571428571424,1,26 -cell,-0.013333333333333336,0.24833333333333335,0.6,0.32952380952380955,1,26 -mug,0.02333333333333334,0.25166666666666665,0.6666666666666666,0.33904761904761904,1,25 -yogurt,-0.09833333333333334,0.2783333333333334,0.5833333333333333,0.32761904761904764,1,26 -plantain,-0.125,0.375,0.5833333333333333,0.4,1,26 -red,0.4783333333333332,0.4783333333333332,1.0,0.6178571428571429,3,25 -pepper,-0.05,0.275,0.6333333333333333,0.34095238095238095,1,26 -wheat,-0.11666666666666667,0.3033333333333333,0.5333333333333333,0.34285714285714286,1,26 -kleenex,-0.075,0.29166666666666663,0.5833333333333333,0.3504761904761905,1,26 -toothbrush,-0.12166666666666666,0.31833333333333336,0.5333333333333333,0.3571428571428572,1,26 -binder,-0.02166666666666666,0.2816666666666667,0.65,0.35238095238095235,1,26 -baseball,-0.06666666666666668,0.295,0.5666666666666667,0.34571428571428575,1,26 -pliers,-0.08,0.29833333333333334,0.5833333333333333,0.35238095238095235,1,26 -paste,0,0,0,0,1,26 -box,0.4133333333333333,0.4133333333333333,1.0,0.5654761904761905,3,26 -water,-0.14166666666666666,0.2833333333333333,0.4999999999999999,0.33238095238095233,1,26 -thins,-0.08,0.29833333333333334,0.5499999999999999,0.3504761904761905,1,26 -package,-0.08,0.29333333333333333,0.6333333333333333,0.34571428571428575,1,26 -k,0.15666666666666668,0.24,0.8833333333333332,0.3638095238095238,1,26 -jelly,-0.05166666666666666,0.2733333333333333,0.6,0.33714285714285713,1,26 -fruit,0.29166666666666663,0.3366666666666666,0.9333333333333332,0.47523809523809524,2,25 -apple,-0.10499999999999998,0.2733333333333333,0.5666666666666667,0.32761904761904764,1,25 -bell,-0.011666666666666659,0.24500000000000002,0.7,0.320952380952381,1,26 -battery,-0.01666666666666667,0.265,0.5833333333333333,0.3342857142857143,1,26 -jar,-0.08,0.26,0.5833333333333333,0.3180952380952381,1,26 -bound,-0.07166666666666666,0.2733333333333333,0.5499999999999999,0.3323809523809524,1,26 -lettuce,-0.0016666666666666607,0.26833333333333337,0.6666666666666666,0.34380952380952384,1,26 -brush,0.045,0.23000000000000004,0.6833333333333333,0.32285714285714284,1,26 -scissors,0.028333333333333332,0.27,0.7499999999999999,0.35714285714285715,1,26 -lime,-0.05,0.23500000000000001,0.55,0.30666666666666664,1,25 -toothpaste,-0.03000000000000001,0.2733333333333333,0.6666666666666666,0.3342857142857143,1,26 -top,-0.06333333333333334,0.31166666666666665,0.5999999999999999,0.3638095238095238,1,26 -spiral,-0.13333333333333333,0.3033333333333333,0.6166666666666666,0.33619047619047615,1,26 -handles,-0.025,0.325,0.65,0.38857142857142857,1,25 -camera,-0.023333333333333327,0.25,0.5999999999999999,0.32761904761904764,1,26 -eraser,-0.03333333333333334,0.23999999999999994,0.6,0.3133333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.41,0.41,1.0,0.5542857142857143,5,21 -banana,-0.02666666666666666,0.29,0.6499999999999999,0.36000000000000004,1,26 -pitcher,0.016666666666666663,0.2733333333333333,0.6333333333333333,0.35238095238095235,1,26 -phone,-0.04666666666666667,0.2783333333333333,0.6333333333333333,0.3485714285714286,1,26 -stick,0.05,0.22166666666666668,0.6833333333333333,0.3180952380952381,1,25 -cereal,-0.05833333333333333,0.2866666666666667,0.5833333333333333,0.35238095238095235,1,26 -bulb,0.2833333333333333,0.4,0.8666666666666666,0.5023809523809524,2,27 -hair,0.06166666666666667,0.24833333333333335,0.8166666666666667,0.34095238095238095,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,-0.2966666666666667,0.35666666666666663,0.4166666666666667,0.3457142857142857,1,26 -can,0.2966666666666667,0.38,0.9,0.4999999999999999,2,24 -coca,-0.029999999999999992,0.24333333333333335,0.5999999999999999,0.32095238095238093,1,26 -crackers,0.045,0.25666666666666665,0.7333333333333333,0.34095238095238095,1,26 -plate,-0.04833333333333332,0.285,0.6833333333333333,0.34857142857142864,1,25 -calculator,-0.03499999999999999,0.2733333333333333,0.6833333333333333,0.34380952380952384,1,26 -tissues,0.008333333333333328,0.24499999999999997,0.7,0.3295238095238095,1,26 -juice,0.14666666666666667,0.21666666666666665,0.85,0.33714285714285713,1,26 -pink,0.03166666666666666,0.23500000000000001,0.7166666666666666,0.32285714285714284,1,25 -lemon,-0.09666666666666665,0.3016666666666667,0.5499999999999999,0.34571428571428575,1,26 -peach,-0.03833333333333333,0.29,0.5666666666666667,0.35523809523809524,1,26 -bowl,0.06166666666666666,0.22833333333333333,0.7666666666666666,0.3247619047619047,1,26 -camouflage,0,0,0,0,1,26 -digital,-0.08333333333333334,0.26833333333333337,0.5,0.32476190476190475,1,26 -blue,-0.04166666666666666,0.29,0.5999999999999999,0.3571428571428572,1,25 -used,-0.025,0.275,0.5999999999999999,0.3504761904761905,1,24 -energizer,0,0,0,0,1,26 -pear,-0.16666666666666666,0.3366666666666666,0.5499999999999999,0.3638095238095238,1,26 -ball,0.03666666666666667,0.24,0.6666666666666666,0.3342857142857143,1,25 -notebook,-0.008333333333333337,0.25,0.5999999999999999,0.3342857142857143,1,26 -garlic,-0.04499999999999999,0.27166666666666667,0.6333333333333333,0.34190476190476193,1,26 -cleaning,-0.05,0.27666666666666667,0.5166666666666666,0.34095238095238095,1,26 -pair,0.35000000000000003,0.4416666666666666,0.9,0.5614285714285715,2,26 -container,0.04,0.25166666666666665,0.7666666666666666,0.33904761904761904,1,25 -tomato,-0.021666666666666664,0.26166666666666666,0.6833333333333333,0.33904761904761904,1,26 -cellphone,0.039999999999999994,0.21833333333333332,0.7166666666666666,0.31142857142857144,1,26 -potato,-0.05499999999999999,0.29,0.6499999999999999,0.34571428571428575,1,25 -light,0.32500000000000007,0.38333333333333336,0.9333333333333332,0.5166666666666666,2,25 -green,0.40166666666666667,0.40166666666666667,1.0,0.5347619047619048,3,23 -bottle,0.2916666666666667,0.32500000000000007,0.9666666666666666,0.45904761904761904,2,25 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: 0.014305555555555556 -F1-Score: 0.3409854497354498 -Precision: 0.2711574074074074 -Recall: 0.6199074074074075 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,-0.02666666666666666,0.2816666666666667,0.6166666666666666,0.3485714285714286,1,24 -yellow,0.385,0.385,1.0,0.5209523809523811,6,24 -looks,0.0016666666666666746,0.225,0.7,0.30952380952380953,1,24 -keyboard,-0.05500000000000001,0.2566666666666667,0.6333333333333333,0.32571428571428573,1,26 -glue,0.006666666666666665,0.26833333333333337,0.6666666666666666,0.34571428571428575,1,26 -milk,0,0,0,0,1,26 -cola,0.0033333333333333383,0.26833333333333337,0.6666666666666666,0.34571428571428575,1,26 -flashlight,0.03666666666666667,0.24833333333333335,0.7666666666666666,0.33428571428571435,1,26 -cup,0.04,0.23000000000000004,0.7166666666666666,0.32285714285714284,1,25 -folded,-0.04166666666666667,0.2866666666666667,0.65,0.3476190476190476,1,26 -jam,-0.13833333333333334,0.30666666666666664,0.5166666666666666,0.34571428571428575,1,26 -black,0.42333333333333334,0.42333333333333334,1.0,0.5650000000000001,6,23 -orange,0.31166666666666665,0.31166666666666665,1.0,0.4652380952380952,3,24 -folder,-0.14666666666666667,0.29000000000000004,0.4666666666666666,0.3323809523809524,1,26 -soccer,-0.08,0.2733333333333333,0.5833333333333333,0.3295238095238095,1,26 -hat,-0.09166666666666666,0.31999999999999995,0.55,0.36380952380952386,1,26 -brown,0.27999999999999997,0.375,0.8666666666666666,0.49714285714285705,2,25 -coffee,-0.08333333333333334,0.325,0.6333333333333333,0.37047619047619046,1,25 -handle,-0.07666666666666666,0.26,0.5333333333333333,0.32571428571428573,1,26 -food,-0.04666666666666667,0.24333333333333332,0.55,0.31619047619047624,1,25 -towel,-0.02666666666666666,0.29333333333333333,0.7,0.3571428571428571,1,26 -chips,-0.12666666666666665,0.29,0.5666666666666667,0.3323809523809524,1,26 -stapler,-0.08333333333333334,0.26833333333333337,0.55,0.32285714285714284,1,26 -onion,-0.038333333333333344,0.2533333333333333,0.6833333333333333,0.32285714285714284,1,26 -bag,0.14833333333333334,0.21833333333333332,0.85,0.33904761904761904,1,26 -sponge,-0.10833333333333332,0.29000000000000004,0.5333333333333333,0.33904761904761904,1,26 -zero,0,0,0,0,1,26 -computer,-0.04333333333333332,0.2633333333333333,0.6499999999999999,0.3276190476190476,1,26 -special,-0.05,0.315,0.5666666666666667,0.3704761904761905,1,26 -colgate,-0.008333333333333335,0.26166666666666666,0.6166666666666666,0.3390476190476191,1,26 -leaf,-0.09833333333333334,0.2966666666666667,0.5833333333333333,0.34380952380952384,1,26 -tube,0.05333333333333332,0.22333333333333333,0.75,0.32476190476190475,1,26 -cell,-0.22166666666666668,0.3533333333333334,0.4499999999999999,0.36190476190476195,1,26 -mug,-0.07499999999999998,0.29166666666666663,0.5833333333333333,0.35047619047619044,1,25 -yogurt,-0.22166666666666668,0.315,0.4333333333333333,0.3342857142857143,1,26 -plantain,-0.15833333333333333,0.31666666666666665,0.5166666666666666,0.34571428571428575,1,26 -red,0.41833333333333333,0.41833333333333333,1.0,0.5702380952380952,3,25 -pepper,-0.13833333333333334,0.30333333333333334,0.5166666666666666,0.34380952380952384,1,26 -wheat,-0.1683333333333333,0.2816666666666667,0.5333333333333332,0.320952380952381,1,26 -kleenex,-0.08833333333333332,0.26999999999999996,0.5333333333333333,0.3304761904761905,1,26 -toothbrush,-0.058333333333333334,0.28500000000000003,0.5666666666666667,0.34095238095238095,1,26 -binder,-0.11666666666666665,0.29,0.45,0.3371428571428572,1,26 -baseball,-0.135,0.30166666666666664,0.5166666666666666,0.34095238095238095,1,26 -pliers,-0.05166666666666666,0.2416666666666667,0.5499999999999999,0.31428571428571433,1,26 -paste,0,0,0,0,1,26 -box,0.43166666666666664,0.43166666666666664,1.0,0.5947619047619048,3,26 -water,-0.05166666666666666,0.315,0.6499999999999999,0.3685714285714286,1,26 -thins,-0.07166666666666667,0.29833333333333334,0.5999999999999999,0.3504761904761905,1,26 -package,-0.11333333333333333,0.31,0.5833333333333333,0.3476190476190476,1,26 -k,0.07333333333333333,0.24666666666666667,0.7,0.34095238095238095,1,26 -jelly,0.010000000000000004,0.27666666666666667,0.6333333333333333,0.3533333333333334,1,26 -fruit,0.29,0.39666666666666667,0.8666666666666666,0.5109523809523809,2,25 -apple,0.011666666666666669,0.26,0.5833333333333333,0.34380952380952384,1,25 -bell,-0.11666666666666665,0.265,0.5166666666666666,0.3180952380952381,1,26 -battery,0.02,0.2783333333333333,0.6666666666666666,0.36190476190476195,1,26 -jar,0.0016666666666666692,0.255,0.7,0.3342857142857143,1,26 -bound,-0.14166666666666666,0.26,0.41666666666666663,0.3114285714285714,1,26 -lettuce,-0.10833333333333335,0.30999999999999994,0.5499999999999999,0.3476190476190476,1,26 -brush,-0.1,0.2783333333333333,0.5333333333333333,0.33238095238095233,1,26 -scissors,-0.06666666666666667,0.3,0.6833333333333333,0.35238095238095235,1,26 -lime,-0.046666666666666655,0.29,0.5999999999999999,0.35523809523809524,1,25 -toothpaste,-0.14166666666666666,0.2733333333333333,0.41666666666666663,0.32285714285714284,1,26 -top,-0.09666666666666666,0.30666666666666664,0.5999999999999999,0.34571428571428575,1,26 -spiral,-0.05500000000000001,0.2966666666666667,0.5666666666666667,0.35238095238095235,1,26 -handles,-0.06666666666666667,0.26,0.5499999999999999,0.32285714285714284,1,25 -camera,0.0033333333333333383,0.2733333333333333,0.6499999999999999,0.35714285714285715,1,26 -eraser,-0.11666666666666665,0.31666666666666665,0.5333333333333333,0.3571428571428572,1,26 -creamer,0,0,0,0,1,26 -white,0.4033333333333333,0.4033333333333333,1.0,0.5411904761904761,5,20 -banana,-0.026666666666666665,0.2566666666666667,0.6833333333333333,0.3323809523809524,1,26 -pitcher,-0.008333333333333337,0.23166666666666663,0.5999999999999999,0.3180952380952381,1,26 -phone,-0.06333333333333332,0.30666666666666664,0.6,0.36190476190476195,1,26 -stick,-0.013333333333333341,0.265,0.7,0.33904761904761904,1,25 -cereal,-0.08833333333333335,0.31,0.6,0.3523809523809524,1,26 -bulb,0.24333333333333335,0.4333333333333334,0.7666666666666667,0.5047619047619047,2,27 -hair,0.08166666666666667,0.23833333333333337,0.7,0.33904761904761904,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.0033333333333333383,0.2733333333333333,0.7,0.35238095238095235,1,26 -can,0.3066666666666667,0.33166666666666667,0.9666666666666666,0.47714285714285715,2,26 -coca,-0.07999999999999999,0.26833333333333337,0.5833333333333333,0.3276190476190476,1,26 -crackers,0.06999999999999999,0.25166666666666665,0.6833333333333333,0.35238095238095235,1,26 -plate,-0.09999999999999999,0.29999999999999993,0.5833333333333333,0.34571428571428575,1,25 -calculator,-0.09666666666666665,0.29,0.5333333333333332,0.34380952380952384,1,26 -tissues,-0.043333333333333335,0.2683333333333333,0.6,0.3371428571428572,1,26 -juice,-0.15,0.2733333333333333,0.4999999999999999,0.3180952380952381,1,26 -pink,0.0050000000000000044,0.255,0.7,0.33714285714285713,1,25 -lemon,-0.15833333333333333,0.295,0.41666666666666663,0.3342857142857143,1,26 -peach,-0.048333333333333325,0.28,0.5999999999999999,0.34380952380952384,1,26 -bowl,-0.10999999999999999,0.32333333333333336,0.6166666666666666,0.3666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,-0.08499999999999999,0.28500000000000003,0.5833333333333333,0.3390476190476191,1,26 -blue,-0.039999999999999994,0.28,0.6499999999999999,0.34380952380952384,1,25 -used,-0.15,0.3283333333333333,0.5666666666666667,0.35714285714285715,1,23 -energizer,0,0,0,0,1,26 -pear,-0.15499999999999997,0.28500000000000003,0.5,0.32761904761904764,1,26 -ball,-0.010000000000000004,0.24666666666666665,0.7,0.32285714285714284,1,25 -notebook,-0.08,0.2733333333333333,0.6333333333333333,0.32761904761904764,1,26 -garlic,-0.10500000000000001,0.2866666666666667,0.6166666666666666,0.3342857142857143,1,26 -cleaning,-0.12166666666666666,0.30166666666666664,0.5666666666666667,0.3457142857142857,1,26 -pair,0.2683333333333333,0.39333333333333326,0.8666666666666666,0.4833333333333333,2,26 -container,-0.03,0.2783333333333333,0.6833333333333332,0.3504761904761905,1,25 -tomato,-0.05000000000000001,0.23666666666666666,0.5833333333333333,0.31142857142857144,1,26 -cellphone,0.043333333333333335,0.24666666666666665,0.7666666666666666,0.33428571428571424,1,26 -potato,0.045,0.24,0.7666666666666666,0.3295238095238095,1,25 -light,0.31666666666666665,0.3866666666666666,0.8999999999999998,0.5204761904761905,2,26 -green,0.485,0.485,1.0,0.6364285714285715,3,24 -bottle,0.325,0.3783333333333333,0.9333333333333332,0.5138095238095237,2,26 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: -0.0033641975308641996 -F1-Score: 0.33895502645502645 -Precision: 0.27319444444444446 -Recall: 0.6006172839506172 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.04833333333333334,0.24333333333333335,0.7166666666666666,0.33904761904761904,1,24 -yellow,0.48166666666666674,0.48166666666666674,1.0,0.6178571428571428,6,24 -looks,0.04833333333333334,0.25166666666666665,0.6833333333333333,0.34380952380952384,1,24 -keyboard,0.12166666666666666,0.22500000000000003,0.8333333333333333,0.3390476190476191,1,26 -glue,-0.205,0.37,0.4666666666666666,0.37523809523809526,1,26 -milk,0,0,0,0,1,26 -cola,0.0033333333333333296,0.24333333333333332,0.6666666666666666,0.32285714285714284,1,26 -flashlight,0.0033333333333333353,0.24833333333333335,0.6666666666666666,0.3276190476190476,1,26 -cup,-0.07666666666666667,0.2833333333333333,0.65,0.3295238095238095,1,26 -folded,-0.1716666666666667,0.3366666666666666,0.5666666666666667,0.35238095238095235,1,26 -jam,-0.021666666666666657,0.29,0.7,0.3571428571428571,1,26 -black,0.6049999999999999,0.44333333333333336,1.0,0.6016666666666667,6,21 -orange,0.32999999999999996,0.32999999999999996,1.0,0.4802380952380953,3,26 -folder,0.0033333333333333383,0.2766666666666667,0.6666666666666666,0.35238095238095235,1,26 -soccer,0.06999999999999999,0.23166666666666663,0.7333333333333333,0.33238095238095244,1,26 -hat,0.03666666666666667,0.255,0.6833333333333333,0.34095238095238095,1,26 -brown,0.3016666666666667,0.3883333333333333,0.8999999999999998,0.5066666666666667,2,25 -coffee,-0.175,0.31500000000000006,0.4666666666666666,0.34095238095238095,1,25 -handle,-0.03,0.26333333333333336,0.5666666666666667,0.3342857142857143,1,25 -food,-0.059999999999999984,0.28500000000000003,0.5999999999999999,0.34380952380952384,1,26 -towel,0.10666666666666666,0.22666666666666666,0.8333333333333333,0.3342857142857143,1,26 -chips,-0.03333333333333334,0.26,0.6166666666666666,0.32476190476190475,1,26 -stapler,0.0,0.2533333333333333,0.6166666666666666,0.33714285714285713,1,26 -onion,-0.02666666666666666,0.255,0.65,0.3276190476190476,1,26 -bag,-0.07333333333333333,0.2883333333333334,0.6333333333333333,0.34380952380952384,1,26 -sponge,-0.07166666666666668,0.24833333333333335,0.6166666666666666,0.31619047619047624,1,26 -zero,0,0,0,0,1,26 -computer,0.02,0.27,0.6833333333333333,0.34571428571428575,1,25 -special,-0.025,0.29166666666666663,0.5999999999999999,0.3638095238095238,1,26 -colgate,-0.19166666666666665,0.32833333333333337,0.4999999999999999,0.3476190476190476,1,26 -leaf,0.045,0.2783333333333333,0.7666666666666666,0.3638095238095238,1,26 -tube,-0.016666666666666663,0.25,0.6333333333333333,0.33428571428571424,1,26 -cell,0.028333333333333332,0.22833333333333328,0.7166666666666666,0.31619047619047613,1,26 -mug,-0.1,0.2816666666666666,0.5499999999999999,0.3276190476190476,1,25 -yogurt,-0.046666666666666655,0.2733333333333333,0.6333333333333332,0.34095238095238095,1,26 -plantain,-0.1,0.2783333333333334,0.5833333333333333,0.3247619047619047,1,26 -red,0.33333333333333337,0.33333333333333337,1.0,0.48238095238095247,3,27 -pepper,-0.22666666666666666,0.33999999999999997,0.4833333333333332,0.3504761904761905,1,26 -wheat,-0.06666666666666668,0.24333333333333335,0.4999999999999999,0.3114285714285715,1,26 -kleenex,-0.08833333333333333,0.24,0.5666666666666667,0.30476190476190473,1,26 -toothbrush,-0.06,0.2733333333333333,0.6333333333333332,0.3342857142857143,1,26 -binder,-0.01333333333333333,0.2816666666666666,0.65,0.35714285714285715,1,26 -baseball,0.11000000000000001,0.22000000000000003,0.75,0.3323809523809524,1,26 -pliers,-0.03833333333333333,0.27166666666666667,0.5666666666666667,0.33904761904761904,1,26 -paste,0,0,0,0,1,26 -box,0.465,0.465,1.0,0.6102380952380952,3,25 -water,0.0066666666666666706,0.2566666666666667,0.7166666666666666,0.33238095238095244,1,26 -thins,0.05333333333333333,0.22500000000000003,0.65,0.3180952380952381,1,26 -package,-0.07166666666666667,0.26833333333333337,0.5833333333333333,0.32952380952380955,1,26 -k,0.08166666666666667,0.25166666666666665,0.7833333333333333,0.3504761904761905,1,26 -jelly,0.0,0.2566666666666667,0.6166666666666666,0.3361904761904762,1,26 -fruit,0.265,0.36333333333333334,0.8666666666666668,0.47857142857142854,2,26 -apple,-0.008333333333333337,0.265,0.6166666666666666,0.34095238095238095,1,26 -bell,-0.07666666666666666,0.28,0.6333333333333333,0.3342857142857143,1,26 -battery,-0.13333333333333333,0.29,0.4333333333333333,0.3342857142857143,1,26 -jar,0.09333333333333334,0.22000000000000003,0.7833333333333333,0.3276190476190476,1,26 -bound,-0.09999999999999998,0.325,0.5333333333333333,0.3733333333333334,1,26 -lettuce,0.10833333333333335,0.23333333333333334,0.8333333333333333,0.3419047619047619,1,26 -brush,-0.04333333333333333,0.255,0.5499999999999999,0.32761904761904764,1,26 -scissors,-0.021666666666666664,0.2783333333333333,0.7,0.3457142857142857,1,26 -lime,-0.046666666666666655,0.3066666666666667,0.5999999999999999,0.3685714285714286,1,25 -toothpaste,-0.07499999999999998,0.2833333333333333,0.5666666666666667,0.3504761904761905,1,26 -top,0.08166666666666667,0.23333333333333334,0.7333333333333333,0.3390476190476191,1,26 -spiral,-0.11333333333333333,0.33166666666666667,0.5499999999999999,0.3638095238095238,1,26 -handles,-0.24666666666666667,0.3783333333333333,0.4499999999999999,0.37333333333333335,1,25 -camera,-0.05,0.255,0.5666666666666667,0.3180952380952381,1,26 -eraser,-0.155,0.2866666666666666,0.5499999999999999,0.32285714285714284,1,26 -creamer,0,0,0,0,1,26 -white,0.3233333333333333,0.3233333333333333,1.0,0.4614285714285714,5,21 -banana,-0.11666666666666665,0.2783333333333333,0.4666666666666666,0.3342857142857143,1,26 -pitcher,0.03666666666666667,0.26833333333333337,0.6833333333333333,0.35238095238095235,1,26 -phone,-0.008333333333333335,0.2583333333333333,0.5999999999999999,0.34095238095238095,1,26 -stick,-0.048333333333333325,0.2633333333333333,0.6333333333333333,0.33238095238095244,1,25 -cereal,-0.013333333333333326,0.295,0.65,0.3685714285714286,1,26 -bulb,0.29500000000000004,0.3983333333333333,0.8666666666666666,0.5138095238095238,2,27 -hair,-0.15,0.325,0.5666666666666667,0.35238095238095235,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.0,0.2733333333333333,0.6166666666666666,0.35238095238095235,1,26 -can,0.2766666666666667,0.375,0.8666666666666668,0.4923809523809524,2,25 -coca,-0.23333333333333334,0.29833333333333334,0.38333333333333336,0.320952380952381,1,26 -crackers,0.02666666666666668,0.255,0.6666666666666666,0.34380952380952384,1,26 -plate,-0.025,0.29833333333333334,0.6166666666666666,0.3638095238095238,1,24 -calculator,-0.03,0.27166666666666667,0.5666666666666667,0.34095238095238095,1,26 -tissues,-0.046666666666666655,0.26833333333333337,0.5999999999999999,0.3342857142857143,1,26 -juice,-0.04833333333333333,0.2883333333333334,0.65,0.34571428571428575,1,26 -pink,-0.09166666666666666,0.29166666666666663,0.5333333333333333,0.34571428571428575,1,25 -lemon,-0.13333333333333333,0.3,0.5499999999999999,0.34571428571428575,1,26 -peach,-0.16666666666666666,0.32333333333333336,0.4333333333333333,0.3504761904761905,1,26 -bowl,-0.06666666666666667,0.2483333333333333,0.5833333333333333,0.3161904761904762,1,26 -camouflage,0,0,0,0,1,26 -digital,0.04666666666666667,0.28,0.8166666666666667,0.36190476190476195,1,26 -blue,-0.27166666666666667,0.3516666666666667,0.4333333333333333,0.34571428571428575,1,25 -used,-0.043333333333333335,0.2733333333333333,0.6333333333333333,0.34380952380952384,1,24 -energizer,0,0,0,0,1,26 -pear,-0.008333333333333331,0.27666666666666667,0.5333333333333333,0.35238095238095235,1,26 -ball,-0.15499999999999997,0.34500000000000003,0.5166666666666666,0.3733333333333334,1,25 -notebook,-0.11333333333333333,0.3033333333333333,0.5666666666666667,0.3476190476190476,1,26 -garlic,-0.05833333333333333,0.3083333333333333,0.5499999999999999,0.36857142857142855,1,26 -cleaning,0.028333333333333332,0.2566666666666667,0.7166666666666666,0.34095238095238095,1,26 -pair,0.26999999999999996,0.39499999999999996,0.8666666666666668,0.4876190476190477,2,27 -container,-0.0016666666666666607,0.29,0.6666666666666666,0.36190476190476195,1,26 -tomato,0.0033333333333333383,0.2566666666666667,0.7,0.33904761904761904,1,26 -cellphone,-0.04666666666666667,0.2566666666666667,0.6333333333333333,0.32476190476190475,1,26 -potato,-0.14166666666666666,0.32333333333333336,0.5333333333333333,0.35238095238095235,1,25 -light,0.27999999999999997,0.4366666666666667,0.8,0.5347619047619048,2,25 -green,0.3933333333333333,0.3933333333333333,1.0,0.5428571428571429,3,24 -bottle,0.28500000000000003,0.37166666666666665,0.9,0.48428571428571426,2,27 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: 0.009614197530864201 -F1-Score: 0.33968694885361556 -Precision: 0.27134259259259264 -Recall: 0.6117283950617284 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,-0.09666666666666666,0.31,0.5999999999999999,0.3476190476190476,1,24 -yellow,0.37499999999999994,0.37499999999999994,1.0,0.5238095238095238,6,24 -looks,0.06166666666666666,0.21333333333333332,0.7333333333333333,0.31142857142857144,1,24 -keyboard,-0.1,0.2866666666666666,0.5166666666666666,0.34285714285714286,1,26 -glue,0.0033333333333333353,0.26,0.5833333333333333,0.33904761904761904,1,26 -milk,0,0,0,0,1,26 -cola,-0.008333333333333345,0.2583333333333333,0.7,0.3314285714285714,1,26 -flashlight,-0.08833333333333333,0.2566666666666667,0.5166666666666666,0.3228571428571429,1,26 -cup,-0.024999999999999988,0.25666666666666665,0.6,0.3342857142857143,1,26 -folded,-0.11333333333333336,0.30333333333333334,0.5666666666666667,0.3476190476190476,1,26 -jam,0.034999999999999996,0.25166666666666665,0.8,0.33904761904761904,1,26 -black,0.5666666666666667,0.5,1.0,0.6478571428571429,6,21 -orange,0.45999999999999996,0.45999999999999996,1.0,0.6161904761904762,3,25 -folder,-0.10500000000000001,0.27666666666666667,0.5333333333333332,0.3276190476190476,1,26 -soccer,-0.04000000000000001,0.2966666666666667,0.65,0.35714285714285715,1,26 -hat,-0.1583333333333333,0.31166666666666665,0.4666666666666666,0.3485714285714286,1,26 -brown,0.30833333333333335,0.43166666666666675,0.8333333333333333,0.5447619047619048,2,24 -coffee,-0.06833333333333333,0.2766666666666667,0.5833333333333333,0.3390476190476191,1,25 -handle,0.07666666666666669,0.25000000000000006,0.7333333333333333,0.3504761904761905,1,26 -food,-0.13833333333333334,0.31166666666666665,0.5666666666666667,0.34571428571428575,1,25 -towel,-0.029999999999999992,0.24,0.6833333333333333,0.31619047619047624,1,26 -chips,-0.14166666666666666,0.3283333333333333,0.5666666666666667,0.359047619047619,1,26 -stapler,-0.043333333333333335,0.29833333333333334,0.6499999999999999,0.36000000000000004,1,26 -onion,0.033333333333333326,0.2866666666666667,0.6833333333333333,0.3657142857142857,1,26 -bag,0.03666666666666667,0.24333333333333335,0.6666666666666666,0.33904761904761904,1,26 -sponge,0.03833333333333334,0.24500000000000002,0.7666666666666666,0.3323809523809524,1,26 -zero,0,0,0,0,1,26 -computer,-0.17166666666666666,0.31,0.4666666666666666,0.33904761904761904,1,25 -special,0.0033333333333333296,0.26,0.6666666666666666,0.3361904761904762,1,26 -colgate,0.04833333333333333,0.2733333333333333,0.7666666666666666,0.3619047619047619,1,26 -leaf,0.05833333333333335,0.22833333333333336,0.7666666666666666,0.32571428571428573,1,26 -tube,-0.04666666666666667,0.2866666666666666,0.5999999999999999,0.3504761904761905,1,26 -cell,-0.2583333333333333,0.33666666666666667,0.4333333333333333,0.3390476190476191,1,26 -mug,-0.14999999999999997,0.33666666666666667,0.5666666666666667,0.3638095238095238,1,25 -yogurt,-0.09166666666666666,0.29166666666666663,0.5333333333333333,0.34571428571428575,1,26 -plantain,-0.175,0.33666666666666667,0.5166666666666666,0.3571428571428571,1,26 -red,0.3716666666666667,0.3716666666666667,1.0,0.5280952380952381,3,27 -pepper,-0.09333333333333334,0.31,0.6333333333333333,0.35238095238095235,1,26 -wheat,-0.05499999999999999,0.29500000000000004,0.6833333333333332,0.35238095238095235,1,26 -kleenex,-0.14166666666666666,0.31999999999999995,0.5333333333333333,0.3476190476190476,1,26 -toothbrush,-0.07666666666666666,0.2733333333333333,0.6166666666666666,0.3342857142857143,1,26 -binder,-0.03333333333333333,0.3,0.5999999999999999,0.3685714285714286,1,26 -baseball,0.04833333333333333,0.26000000000000006,0.7333333333333333,0.34571428571428575,1,26 -pliers,-0.08333333333333334,0.28666666666666674,0.6333333333333333,0.3361904761904762,1,26 -paste,0,0,0,0,1,26 -box,0.4533333333333333,0.4533333333333333,1.0,0.594047619047619,3,25 -water,-0.14166666666666666,0.3333333333333333,0.5666666666666667,0.3638095238095238,1,26 -thins,-0.11666666666666667,0.27666666666666667,0.5333333333333333,0.31999999999999995,1,26 -package,0.06166666666666666,0.265,0.7666666666666666,0.359047619047619,1,26 -k,0.08333333333333331,0.22333333333333333,0.7833333333333333,0.3247619047619047,1,26 -jelly,-0.08833333333333333,0.3016666666666667,0.5833333333333333,0.3523809523809524,1,26 -fruit,0.32666666666666666,0.3466666666666667,0.9666666666666666,0.49904761904761913,2,26 -apple,-0.08499999999999999,0.2983333333333333,0.6666666666666666,0.3504761904761905,1,25 -bell,0.023333333333333338,0.26,0.6666666666666666,0.34571428571428575,1,26 -battery,-0.18,0.29333333333333333,0.45,0.32761904761904764,1,26 -jar,-0.13833333333333334,0.35333333333333333,0.6166666666666666,0.38,1,26 -bound,-0.06333333333333332,0.2783333333333333,0.6833333333333333,0.3342857142857143,1,26 -lettuce,-0.07166666666666666,0.28500000000000003,0.55,0.34380952380952384,1,26 -brush,0.06499999999999999,0.2516666666666667,0.6833333333333333,0.3504761904761905,1,26 -scissors,-0.033333333333333326,0.2783333333333333,0.65,0.34571428571428575,1,26 -lime,-0.11666666666666667,0.33666666666666667,0.6333333333333333,0.3657142857142857,1,25 -toothpaste,-0.05833333333333331,0.2866666666666667,0.6333333333333333,0.3504761904761905,1,26 -top,-0.016666666666666666,0.26166666666666666,0.7,0.33428571428571435,1,26 -spiral,-0.04666666666666667,0.2483333333333333,0.6333333333333333,0.3180952380952381,1,26 -handles,0.010000000000000014,0.23833333333333334,0.7,0.32571428571428573,1,25 -camera,-0.11333333333333333,0.295,0.6166666666666666,0.33904761904761904,1,26 -eraser,-0.03833333333333333,0.2633333333333333,0.5666666666666667,0.3295238095238095,1,26 -creamer,0,0,0,0,1,26 -white,0.3233333333333333,0.3233333333333333,1.0,0.46571428571428564,5,21 -banana,0.06,0.22666666666666666,0.7666666666666666,0.32571428571428573,1,26 -pitcher,0.09833333333333331,0.2566666666666667,0.8333333333333333,0.3571428571428572,1,26 -phone,0.10666666666666666,0.23500000000000001,0.7833333333333333,0.34571428571428575,1,26 -stick,-0.13333333333333333,0.2833333333333333,0.5166666666666666,0.3276190476190476,1,25 -cereal,-0.058333333333333334,0.2483333333333333,0.55,0.3161904761904762,1,26 -bulb,0.29000000000000004,0.3350000000000001,0.9333333333333332,0.47333333333333333,2,26 -hair,-0.10166666666666666,0.2816666666666667,0.5666666666666667,0.3371428571428572,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,-0.07666666666666666,0.28500000000000003,0.6333333333333333,0.33904761904761904,1,26 -can,0.305,0.37,0.9,0.5023809523809524,2,25 -coca,-0.08000000000000002,0.26999999999999996,0.5833333333333333,0.32761904761904764,1,26 -crackers,-0.09999999999999999,0.265,0.5333333333333333,0.32095238095238093,1,26 -plate,0.018333333333333333,0.24166666666666664,0.6666666666666666,0.3276190476190476,1,25 -calculator,0.030000000000000006,0.22999999999999998,0.7499999999999999,0.320952380952381,1,26 -tissues,-0.03833333333333332,0.28500000000000003,0.6,0.35238095238095235,1,26 -juice,0.011666666666666667,0.26999999999999996,0.6666666666666666,0.3504761904761905,1,26 -pink,0.08166666666666667,0.23000000000000004,0.7333333333333333,0.33428571428571424,1,26 -lemon,-0.075,0.2516666666666667,0.5499999999999999,0.31142857142857144,1,26 -peach,-0.08,0.23666666666666666,0.5666666666666667,0.30476190476190473,1,26 -bowl,-0.06666666666666667,0.26,0.55,0.32285714285714284,1,26 -camouflage,0,0,0,0,1,26 -digital,-0.05,0.2866666666666667,0.6333333333333333,0.35238095238095235,1,26 -blue,-0.06333333333333334,0.2816666666666667,0.6,0.33904761904761904,1,25 -used,-0.10166666666666666,0.265,0.5666666666666667,0.32095238095238093,1,23 -energizer,0,0,0,0,1,26 -pear,0.011666666666666669,0.25666666666666665,0.6166666666666666,0.34095238095238095,1,26 -ball,-0.08499999999999999,0.28500000000000003,0.5833333333333333,0.33904761904761904,1,25 -notebook,-0.10666666666666665,0.29333333333333333,0.5666666666666667,0.34380952380952384,1,26 -garlic,-0.07999999999999999,0.2816666666666667,0.5833333333333333,0.33904761904761904,1,26 -cleaning,-0.05500000000000001,0.24666666666666665,0.6,0.31142857142857144,1,26 -pair,0.305,0.345,0.9333333333333332,0.4866666666666667,2,27 -container,-0.024999999999999998,0.24666666666666665,0.5666666666666667,0.32285714285714284,1,25 -tomato,0.021666666666666674,0.24500000000000002,0.6666666666666666,0.3323809523809524,1,26 -cellphone,0.028333333333333332,0.2566666666666667,0.7166666666666666,0.34095238095238095,1,26 -potato,-0.11333333333333333,0.32,0.5833333333333333,0.3571428571428571,1,25 -light,0.28833333333333333,0.39166666666666666,0.8666666666666666,0.5066666666666666,2,26 -green,0.3616666666666667,0.3616666666666667,1.0,0.5152380952380953,3,23 -bottle,0.305,0.37499999999999994,0.9,0.5066666666666666,2,26 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: 0.00799382716049383 -F1-Score: 0.33932098765432095 -Precision: 0.2699691358024692 -Recall: 0.6209876543209876 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,-0.16666666666666666,0.3083333333333333,0.41666666666666663,0.34380952380952384,1,24 -yellow,0.32,0.32,1.0,0.46142857142857147,6,22 -looks,-0.1383333333333333,0.32,0.5166666666666666,0.36,1,24 -keyboard,0.0066666666666666706,0.23666666666666666,0.6666666666666666,0.3180952380952381,1,26 -glue,-0.029999999999999992,0.2533333333333333,0.6833333333333333,0.32761904761904764,1,26 -milk,0,0,0,0,1,26 -cola,-2.7755575615628915e-18,0.24500000000000002,0.6166666666666666,0.3276190476190476,1,26 -flashlight,0.03666666666666667,0.24,0.7166666666666666,0.3295238095238095,1,26 -cup,-0.19333333333333333,0.3433333333333333,0.5499999999999999,0.35714285714285715,1,26 -folded,-0.009999999999999998,0.2566666666666667,0.65,0.3371428571428572,1,26 -jam,-0.11833333333333333,0.2766666666666667,0.5166666666666666,0.3276190476190477,1,26 -black,0.63,0.585,1.0,0.7233333333333334,6,21 -orange,0.40166666666666667,0.40166666666666667,1.0,0.5638095238095239,3,24 -folder,-0.058333333333333334,0.29,0.5999999999999999,0.3476190476190476,1,26 -soccer,-0.033333333333333326,0.2816666666666666,0.5999999999999999,0.35238095238095235,1,26 -hat,-0.10666666666666666,0.31833333333333336,0.5833333333333333,0.36000000000000004,1,26 -brown,0.3166666666666667,0.35,0.9666666666666666,0.4909523809523809,2,24 -coffee,0.056666666666666664,0.24333333333333332,0.7499999999999999,0.3457142857142857,1,25 -handle,-0.21333333333333332,0.33666666666666667,0.45,0.3504761904761905,1,26 -food,2.7755575615628915e-18,0.24333333333333332,0.6166666666666666,0.32476190476190475,1,24 -towel,-0.05833333333333333,0.28500000000000003,0.5166666666666666,0.3457142857142857,1,26 -chips,0.001666666666666683,0.27666666666666667,0.7,0.35523809523809524,1,26 -stapler,0.125,0.2233333333333333,0.8,0.33619047619047615,1,26 -onion,-0.16666666666666666,0.31166666666666665,0.5166666666666666,0.33904761904761904,1,26 -bag,0.03333333333333333,0.25166666666666665,0.6833333333333333,0.3361904761904762,1,26 -sponge,-0.10499999999999998,0.2733333333333333,0.5666666666666667,0.32761904761904764,1,26 -zero,0,0,0,0,1,26 -computer,0.0033333333333333327,0.26166666666666666,0.6166666666666666,0.34380952380952384,1,25 -special,-0.043333333333333335,0.2766666666666666,0.65,0.33904761904761904,1,26 -colgate,-0.14999999999999997,0.29166666666666663,0.5,0.3342857142857143,1,26 -leaf,-0.05499999999999999,0.2816666666666667,0.5833333333333333,0.3504761904761905,1,26 -tube,0.095,0.23000000000000004,0.7333333333333333,0.34095238095238095,1,26 -cell,0.008333333333333335,0.26833333333333337,0.5833333333333333,0.3476190476190476,1,26 -mug,0.025000000000000005,0.24833333333333335,0.6666666666666666,0.33904761904761904,1,25 -yogurt,0.011666666666666667,0.21999999999999997,0.75,0.30476190476190473,1,26 -plantain,-0.03833333333333333,0.27666666666666667,0.5999999999999999,0.34571428571428575,1,26 -red,0.35833333333333334,0.35833333333333334,1.0,0.5078571428571428,3,26 -pepper,-0.014999999999999996,0.275,0.7,0.3457142857142857,1,26 -wheat,0.02,0.27166666666666667,0.6333333333333333,0.3523809523809524,1,26 -kleenex,-0.14166666666666666,0.32833333333333337,0.4833333333333333,0.359047619047619,1,26 -toothbrush,0.041666666666666664,0.26,0.6833333333333333,0.3476190476190476,1,26 -binder,-0.04333333333333333,0.2816666666666666,0.6333333333333332,0.3504761904761905,1,26 -baseball,-0.046666666666666655,0.26,0.55,0.3323809523809524,1,26 -pliers,-0.08333333333333333,0.27666666666666667,0.5499999999999999,0.3295238095238095,1,26 -paste,0,0,0,0,1,26 -box,0.41,0.41,1.0,0.559047619047619,3,25 -water,-0.009999999999999992,0.2683333333333333,0.7,0.34380952380952384,1,26 -thins,-0.08333333333333334,0.2566666666666667,0.5333333333333333,0.3180952380952381,1,26 -package,-0.021666666666666664,0.2733333333333333,0.65,0.34571428571428575,1,26 -k,-0.03,0.265,0.65,0.3342857142857143,1,26 -jelly,-0.04666666666666667,0.2566666666666667,0.6333333333333333,0.32476190476190475,1,26 -fruit,0.31833333333333336,0.36833333333333335,0.9333333333333332,0.5090476190476191,2,25 -apple,-0.11333333333333333,0.295,0.5666666666666667,0.34095238095238095,1,25 -bell,-0.06666666666666667,0.3083333333333333,0.6333333333333333,0.3638095238095238,1,26 -battery,0.028333333333333332,0.22166666666666668,0.6666666666666666,0.3133333333333333,1,26 -jar,-0.18333333333333332,0.3416666666666667,0.5166666666666666,0.3571428571428571,1,26 -bound,-0.01333333333333333,0.2683333333333333,0.6166666666666666,0.34380952380952384,1,26 -lettuce,-0.09166666666666666,0.3083333333333333,0.5499999999999999,0.35523809523809524,1,26 -brush,-0.008333333333333345,0.25666666666666665,0.7166666666666666,0.32476190476190475,1,26 -scissors,-0.04999999999999999,0.26666666666666666,0.6166666666666666,0.34095238095238095,1,26 -lime,-0.013333333333333327,0.23499999999999996,0.65,0.3161904761904762,1,25 -toothpaste,-0.08333333333333333,0.30333333333333334,0.5,0.35714285714285715,1,26 -top,-0.09166666666666666,0.2816666666666667,0.4999999999999999,0.33428571428571424,1,26 -spiral,0.08666666666666666,0.23166666666666663,0.8333333333333333,0.32952380952380955,1,26 -handles,0.0066666666666666706,0.28500000000000003,0.5833333333333333,0.3619047619047619,1,25 -camera,-0.06833333333333333,0.2816666666666667,0.5833333333333333,0.34380952380952384,1,26 -eraser,0.03333333333333335,0.23333333333333334,0.7499999999999999,0.32571428571428573,1,26 -creamer,0,0,0,0,1,26 -white,0.40166666666666667,0.40166666666666667,1.0,0.5566666666666665,5,21 -banana,-0.1433333333333333,0.3016666666666667,0.5166666666666666,0.34190476190476193,1,26 -pitcher,0.018333333333333344,0.225,0.6666666666666666,0.3142857142857143,1,26 -phone,-0.041666666666666664,0.31666666666666665,0.5666666666666667,0.37523809523809526,1,26 -stick,-0.10833333333333332,0.2866666666666666,0.5166666666666666,0.34095238095238095,1,25 -cereal,-0.125,0.29000000000000004,0.5166666666666666,0.33904761904761904,1,26 -bulb,0.305,0.37,0.9,0.5047619047619047,2,26 -hair,0.08666666666666667,0.24833333333333335,0.7333333333333333,0.35238095238095235,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,-0.09666666666666666,0.3066666666666667,0.5833333333333333,0.35238095238095235,1,26 -can,0.3,0.425,0.8666666666666668,0.520952380952381,2,25 -coca,0.008333333333333337,0.2866666666666667,0.6166666666666666,0.3685714285714286,1,26 -crackers,0.04166666666666667,0.24,0.6833333333333333,0.32952380952380955,1,26 -plate,-0.008333333333333335,0.265,0.6666666666666666,0.3361904761904762,1,25 -calculator,0.05333333333333332,0.2316666666666667,0.7166666666666666,0.3295238095238095,1,26 -tissues,-0.15,0.325,0.5166666666666666,0.35714285714285715,1,26 -juice,-0.3166666666666667,0.37,0.41666666666666663,0.3476190476190476,1,26 -pink,-0.033333333333333326,0.26,0.65,0.3295238095238095,1,25 -lemon,-0.04166666666666667,0.26166666666666666,0.5999999999999999,0.3295238095238095,1,26 -peach,-0.29166666666666663,0.4,0.4333333333333333,0.38,1,26 -bowl,0.135,0.22666666666666666,0.85,0.33904761904761904,1,26 -camouflage,0,0,0,0,1,26 -digital,-0.03333333333333334,0.2833333333333333,0.5999999999999999,0.35238095238095235,1,26 -blue,-0.07666666666666669,0.2933333333333333,0.6833333333333333,0.34095238095238095,1,25 -used,-0.041666666666666664,0.2566666666666667,0.6499999999999999,0.32285714285714284,1,23 -energizer,0,0,0,0,1,26 -pear,-0.14666666666666667,0.29833333333333334,0.5166666666666666,0.33428571428571424,1,26 -ball,-0.008333333333333335,0.2483333333333333,0.6166666666666666,0.3276190476190476,1,25 -notebook,-0.12999999999999998,0.29,0.6166666666666666,0.3247619047619047,1,26 -garlic,-0.10166666666666666,0.29833333333333334,0.5833333333333333,0.34380952380952384,1,26 -cleaning,-0.009999999999999992,0.26833333333333337,0.6666666666666666,0.33904761904761904,1,26 -pair,0.30166666666666664,0.355,0.9333333333333332,0.4852380952380952,2,26 -container,0.07,0.2533333333333333,0.7333333333333333,0.3504761904761905,1,25 -tomato,-0.02666666666666666,0.26833333333333337,0.6499999999999999,0.3390476190476191,1,26 -cellphone,0.03166666666666667,0.2733333333333333,0.7499999999999999,0.3619047619047619,1,26 -potato,-0.1,0.2816666666666666,0.4833333333333332,0.3361904761904762,1,25 -light,0.35500000000000004,0.4133333333333333,0.9333333333333332,0.5476190476190477,2,25 -green,0.36500000000000005,0.36500000000000005,1.0,0.5161904761904762,3,23 -bottle,0.3166666666666667,0.37,0.9333333333333332,0.5071428571428571,2,25 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: 0.010586419753086425 -F1-Score: 0.3405357142857143 -Precision: 0.27046296296296296 -Recall: 0.6143518518518519 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,-0.1433333333333333,0.31833333333333336,0.5666666666666667,0.3504761904761905,1,24 -yellow,0.38333333333333336,0.38333333333333336,1.0,0.5416666666666667,6,24 -looks,-0.05500000000000001,0.2866666666666667,0.6833333333333333,0.3457142857142857,1,24 -keyboard,-0.12499999999999997,0.31666666666666665,0.6166666666666666,0.35238095238095235,1,26 -glue,-0.10500000000000001,0.30333333333333334,0.5666666666666667,0.35238095238095235,1,26 -milk,0,0,0,0,1,26 -cola,-0.19166666666666665,0.3066666666666667,0.41666666666666663,0.33238095238095244,1,26 -flashlight,-0.01666666666666667,0.27,0.6166666666666666,0.34095238095238095,1,26 -cup,-0.19333333333333333,0.31333333333333335,0.5,0.3342857142857143,1,26 -folded,-0.14166666666666666,0.31166666666666665,0.5166666666666666,0.3476190476190476,1,26 -jam,-0.056666666666666664,0.2833333333333333,0.6499999999999999,0.3390476190476191,1,26 -black,0.6116666666666667,0.475,1.0,0.6204761904761905,6,21 -orange,0.49333333333333335,0.49333333333333335,1.0,0.6357142857142857,3,25 -folder,-0.09666666666666665,0.30333333333333334,0.5833333333333333,0.3504761904761905,1,26 -soccer,-0.1383333333333333,0.265,0.4999999999999999,0.31619047619047624,1,26 -hat,-0.1883333333333333,0.32166666666666666,0.4666666666666666,0.34095238095238095,1,26 -brown,0.2899999999999999,0.3683333333333333,0.9,0.48761904761904756,2,25 -coffee,-0.0050000000000000044,0.26999999999999996,0.7166666666666666,0.3390476190476191,1,25 -handle,-0.038333333333333344,0.29333333333333333,0.6166666666666666,0.35238095238095235,1,25 -food,0.01833333333333334,0.24333333333333332,0.7,0.3323809523809524,1,25 -towel,-0.125,0.295,0.5166666666666666,0.34095238095238095,1,26 -chips,-0.175,0.29999999999999993,0.45,0.33428571428571424,1,26 -stapler,-0.17166666666666666,0.315,0.4666666666666666,0.34380952380952384,1,26 -onion,-0.025,0.24000000000000005,0.65,0.3133333333333333,1,26 -bag,-0.03333333333333333,0.2516666666666667,0.5666666666666667,0.32285714285714284,1,26 -sponge,-0.025,0.275,0.5999999999999999,0.3504761904761905,1,26 -zero,0,0,0,0,1,26 -computer,0.015000000000000008,0.26833333333333337,0.7,0.3552380952380953,1,25 -special,-0.020000000000000007,0.28,0.7333333333333333,0.3504761904761905,1,26 -colgate,-0.06333333333333332,0.2733333333333333,0.5833333333333333,0.33904761904761904,1,26 -leaf,-0.05166666666666666,0.28500000000000003,0.6,0.3485714285714286,1,26 -tube,-0.14666666666666667,0.30666666666666664,0.55,0.34571428571428575,1,26 -cell,-0.029999999999999992,0.26999999999999996,0.6833333333333333,0.34095238095238095,1,26 -mug,-0.03833333333333333,0.2783333333333334,0.5999999999999999,0.3457142857142857,1,25 -yogurt,-0.07999999999999999,0.2733333333333333,0.5333333333333333,0.33714285714285713,1,26 -plantain,0.085,0.23500000000000001,0.7833333333333333,0.3371428571428572,1,26 -red,0.42333333333333334,0.42333333333333334,1.0,0.5607142857142856,3,24 -pepper,0.01833333333333335,0.26,0.7,0.34857142857142864,1,26 -wheat,-0.06666666666666668,0.3,0.5499999999999999,0.35714285714285715,1,26 -kleenex,-0.03333333333333334,0.2566666666666667,0.6,0.3295238095238095,1,26 -toothbrush,0.09,0.23166666666666663,0.7833333333333333,0.3342857142857143,1,26 -binder,-0.07166666666666667,0.30333333333333334,0.6333333333333333,0.35714285714285715,1,26 -baseball,-0.11666666666666667,0.3,0.5333333333333333,0.340952380952381,1,26 -pliers,0.04,0.265,0.6833333333333333,0.35333333333333333,1,26 -paste,0,0,0,0,1,26 -box,0.4366666666666667,0.4366666666666667,1.0,0.5988095238095239,3,26 -water,-0.10500000000000001,0.29,0.5666666666666667,0.34095238095238095,1,26 -thins,-0.08333333333333334,0.29999999999999993,0.55,0.3504761904761905,1,26 -package,0.07333333333333333,0.21333333333333332,0.7333333333333333,0.3161904761904762,1,26 -k,0.0066666666666666706,0.265,0.6166666666666666,0.34857142857142864,1,26 -jelly,-0.21333333333333332,0.33166666666666667,0.4499999999999999,0.3457142857142857,1,26 -fruit,0.2833333333333333,0.3416666666666667,0.9333333333333332,0.4638095238095238,2,26 -apple,-0.09666666666666665,0.27666666666666667,0.4833333333333332,0.33428571428571424,1,25 -bell,0.095,0.25166666666666665,0.7,0.35714285714285715,1,26 -battery,0.05166666666666667,0.20666666666666664,0.6833333333333333,0.3047619047619048,1,26 -jar,-0.13,0.31166666666666665,0.5666666666666667,0.3504761904761905,1,26 -bound,0.02,0.22999999999999998,0.6333333333333333,0.31619047619047624,1,26 -lettuce,-0.15,0.2783333333333333,0.5,0.32285714285714284,1,26 -brush,0.06666666666666667,0.26166666666666666,0.65,0.3571428571428571,1,26 -scissors,0.033333333333333326,0.265,0.6833333333333333,0.3476190476190476,1,26 -lime,0.05333333333333333,0.26166666666666666,0.7333333333333333,0.3504761904761905,1,25 -toothpaste,-0.08833333333333332,0.2683333333333333,0.6333333333333333,0.3180952380952381,1,26 -top,0.0033333333333333383,0.2566666666666667,0.6499999999999999,0.340952380952381,1,26 -spiral,0.07833333333333334,0.19333333333333333,0.7833333333333333,0.2952380952380952,1,26 -handles,-0.09666666666666665,0.2733333333333333,0.4833333333333332,0.3323809523809524,1,25 -camera,-0.09666666666666666,0.2633333333333333,0.5333333333333332,0.3180952380952381,1,26 -eraser,-0.08333333333333334,0.30666666666666664,0.5499999999999999,0.35428571428571426,1,26 -creamer,0,0,0,0,1,26 -white,0.3333333333333333,0.3333333333333333,1.0,0.48952380952380947,5,20 -banana,-0.05833333333333333,0.30833333333333335,0.55,0.3685714285714286,1,26 -pitcher,-0.09166666666666667,0.29500000000000004,0.5333333333333333,0.3476190476190476,1,26 -phone,-0.1683333333333333,0.3066666666666667,0.4999999999999999,0.34190476190476193,1,26 -stick,-0.04333333333333335,0.29833333333333334,0.6166666666666666,0.35523809523809524,1,25 -cereal,-0.11333333333333333,0.31166666666666665,0.5333333333333333,0.35523809523809524,1,26 -bulb,0.31166666666666665,0.45666666666666667,0.8333333333333333,0.5476190476190477,2,26 -hair,0.085,0.23000000000000004,0.7666666666666666,0.3390476190476191,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.031666666666666676,0.25666666666666665,0.75,0.3485714285714286,1,26 -can,0.2733333333333333,0.3233333333333333,0.9333333333333332,0.4538095238095238,2,25 -coca,-0.013333333333333341,0.2783333333333333,0.7499999999999999,0.3457142857142857,1,26 -crackers,-0.025000000000000012,0.23500000000000001,0.6166666666666666,0.3066666666666667,1,26 -plate,-0.04666666666666666,0.2783333333333333,0.6,0.34380952380952384,1,25 -calculator,-0.0049999999999999906,0.22833333333333333,0.7,0.30952380952380953,1,26 -tissues,-0.1833333333333333,0.2866666666666667,0.4333333333333333,0.3276190476190477,1,26 -juice,-0.05500000000000001,0.2966666666666667,0.5666666666666667,0.35238095238095235,1,26 -pink,-0.06333333333333331,0.26999999999999996,0.5833333333333333,0.33714285714285713,1,25 -lemon,-0.06,0.2733333333333333,0.6666666666666666,0.3390476190476191,1,26 -peach,-0.07999999999999999,0.295,0.5833333333333333,0.3504761904761905,1,26 -bowl,-0.030000000000000006,0.265,0.65,0.3342857142857143,1,26 -camouflage,0,0,0,0,1,26 -digital,-0.08833333333333335,0.2816666666666666,0.6833333333333333,0.3247619047619047,1,26 -blue,0.0016666666666666718,0.24666666666666667,0.7,0.32761904761904764,1,25 -used,-0.08833333333333333,0.29500000000000004,0.5833333333333333,0.34571428571428575,1,24 -energizer,0,0,0,0,1,26 -pear,0.041666666666666664,0.2583333333333333,0.6333333333333333,0.35047619047619044,1,26 -ball,-0.225,0.35,0.45,0.35714285714285715,1,25 -notebook,-0.125,0.29333333333333333,0.5333333333333332,0.33428571428571424,1,26 -garlic,-0.07666666666666667,0.2766666666666667,0.5833333333333333,0.3342857142857143,1,26 -cleaning,-0.04166666666666667,0.26666666666666666,0.6333333333333333,0.33619047619047615,1,26 -pair,0.33333333333333337,0.41166666666666674,0.9,0.5399999999999999,2,27 -container,-0.12666666666666665,0.305,0.5833333333333333,0.33904761904761904,1,25 -tomato,-0.03833333333333333,0.29833333333333334,0.5999999999999999,0.36380952380952386,1,26 -cellphone,-0.059999999999999984,0.27666666666666667,0.6333333333333333,0.3390476190476191,1,26 -potato,-0.009999999999999998,0.2766666666666667,0.6166666666666666,0.3504761904761905,1,25 -light,0.3433333333333333,0.45500000000000007,0.8666666666666666,0.5661904761904762,2,25 -green,0.37,0.37,1.0,0.5164285714285713,3,23 -bottle,0.22000000000000003,0.29,0.8999999999999998,0.41000000000000003,2,25 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: 0.0017283950617283969 -F1-Score: 0.3397530864197531 -Precision: 0.2729166666666667 -Recall: 0.6046296296296296 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,-0.03833333333333333,0.26999999999999996,0.6,0.3390476190476191,1,24 -yellow,0.39666666666666667,0.39666666666666667,1.0,0.5499999999999999,6,25 -looks,-0.07166666666666667,0.30666666666666664,0.5999999999999999,0.35714285714285715,1,24 -keyboard,-0.10999999999999999,0.28,0.5666666666666667,0.3323809523809524,1,26 -glue,-0.03499999999999999,0.24666666666666667,0.6,0.320952380952381,1,26 -milk,0,0,0,0,1,26 -cola,-0.1,0.2833333333333333,0.5833333333333333,0.3295238095238095,1,26 -flashlight,0.095,0.24833333333333335,0.7833333333333333,0.35238095238095235,1,26 -cup,0.023333333333333338,0.2733333333333333,0.7166666666666666,0.35523809523809524,1,26 -folded,-0.06333333333333332,0.2416666666666667,0.5,0.3114285714285715,1,26 -jam,-0.06666666666666668,0.2683333333333333,0.5499999999999999,0.32952380952380955,1,26 -black,0.6883333333333332,0.5883333333333334,1.0,0.7321428571428571,6,21 -orange,0.3983333333333334,0.3983333333333334,1.0,0.5554761904761906,3,24 -folder,-0.11666666666666665,0.27666666666666667,0.4833333333333333,0.3247619047619047,1,26 -soccer,0.0,0.2583333333333333,0.6499999999999999,0.34095238095238095,1,26 -hat,0.019999999999999997,0.22000000000000003,0.6833333333333333,0.30190476190476184,1,26 -brown,0.255,0.39999999999999997,0.8333333333333333,0.4833333333333333,2,24 -coffee,0.023333333333333334,0.22999999999999998,0.7,0.32285714285714284,1,25 -handle,0.06666666666666667,0.22166666666666668,0.65,0.3228571428571429,1,26 -food,-0.11833333333333333,0.29833333333333334,0.5666666666666667,0.34380952380952384,1,25 -towel,-0.125,0.295,0.5666666666666667,0.33619047619047615,1,26 -chips,0.05166666666666666,0.21833333333333335,0.7666666666666666,0.31428571428571433,1,26 -stapler,-0.05166666666666666,0.26,0.6333333333333333,0.32761904761904764,1,26 -onion,-0.16666666666666666,0.31999999999999995,0.4666666666666666,0.3504761904761905,1,26 -bag,-0.05833333333333333,0.265,0.6333333333333332,0.32952380952380955,1,26 -sponge,-0.029999999999999992,0.2816666666666666,0.7,0.3457142857142857,1,26 -zero,0,0,0,0,1,26 -computer,-0.10500000000000001,0.2766666666666667,0.5333333333333332,0.32761904761904764,1,25 -special,-0.09666666666666666,0.2866666666666666,0.5833333333333333,0.3342857142857143,1,26 -colgate,0.043333333333333335,0.225,0.7166666666666666,0.320952380952381,1,26 -leaf,-0.18333333333333335,0.31666666666666665,0.4999999999999999,0.34095238095238095,1,26 -tube,-0.15499999999999997,0.31166666666666665,0.5499999999999999,0.3457142857142857,1,26 -cell,0.006666666666666665,0.2683333333333333,0.6666666666666666,0.34571428571428575,1,26 -mug,-0.13,0.2616666666666666,0.5499999999999999,0.3114285714285714,1,25 -yogurt,-0.004999999999999993,0.24833333333333335,0.6499999999999999,0.3323809523809524,1,26 -plantain,-0.175,0.33999999999999997,0.5166666666666666,0.35904761904761906,1,26 -red,0.41,0.41,1.0,0.564047619047619,3,25 -pepper,-0.0016666666666666663,0.265,0.75,0.3390476190476191,1,26 -wheat,-0.018333333333333333,0.23500000000000001,0.5999999999999999,0.3161904761904762,1,26 -kleenex,-0.23333333333333334,0.33666666666666667,0.4333333333333333,0.3476190476190476,1,26 -toothbrush,-0.024999999999999998,0.29166666666666663,0.5666666666666667,0.36190476190476195,1,26 -binder,-0.21000000000000002,0.3433333333333333,0.4999999999999999,0.35238095238095235,1,26 -baseball,0.008333333333333331,0.26833333333333337,0.6666666666666666,0.3476190476190476,1,26 -pliers,-0.03333333333333334,0.29166666666666663,0.6,0.359047619047619,1,26 -paste,0,0,0,0,1,26 -box,0.44000000000000006,0.44000000000000006,1.0,0.6071428571428572,3,27 -water,-0.13499999999999998,0.31833333333333336,0.5666666666666667,0.35523809523809524,1,26 -thins,-0.033333333333333326,0.3,0.6,0.3685714285714286,1,26 -package,0.03666666666666667,0.25666666666666665,0.7666666666666666,0.34095238095238095,1,26 -k,0.024999999999999998,0.23666666666666666,0.7666666666666666,0.3180952380952381,1,26 -jelly,0.05,0.2533333333333333,0.6333333333333333,0.3504761904761905,1,26 -fruit,0.25333333333333335,0.3433333333333333,0.8666666666666666,0.46571428571428575,2,26 -apple,-0.09666666666666666,0.2866666666666667,0.5666666666666667,0.34095238095238095,1,25 -bell,0.06999999999999999,0.22666666666666666,0.7,0.32285714285714284,1,26 -battery,-0.175,0.31666666666666665,0.4999999999999999,0.34571428571428575,1,26 -jar,-0.02666666666666666,0.27666666666666667,0.6166666666666666,0.3438095238095238,1,26 -bound,-0.06666666666666668,0.26833333333333337,0.5499999999999999,0.32952380952380955,1,26 -lettuce,-0.026666666666666672,0.28,0.6666666666666666,0.340952380952381,1,26 -brush,-0.15833333333333333,0.3416666666666667,0.4666666666666666,0.3704761904761905,1,26 -scissors,-0.1,0.30333333333333334,0.5499999999999999,0.34571428571428575,1,26 -lime,0.10333333333333332,0.23666666666666664,0.7833333333333333,0.34571428571428575,1,25 -toothpaste,-0.14999999999999997,0.3,0.4999999999999999,0.34380952380952384,1,26 -top,-0.004999999999999999,0.27,0.6166666666666666,0.3485714285714286,1,26 -spiral,-0.075,0.29,0.5499999999999999,0.34571428571428575,1,26 -handles,-0.12166666666666666,0.28500000000000003,0.4833333333333333,0.3323809523809524,1,25 -camera,-0.19666666666666668,0.335,0.5166666666666666,0.3457142857142857,1,26 -eraser,0.026666666666666665,0.29333333333333333,0.7666666666666666,0.3685714285714286,1,26 -creamer,0,0,0,0,1,26 -white,0.31833333333333336,0.31833333333333336,1.0,0.4638095238095238,5,20 -banana,0.06999999999999999,0.20666666666666664,0.8166666666666667,0.3066666666666667,1,26 -pitcher,-0.19999999999999998,0.3066666666666667,0.4999999999999999,0.32761904761904764,1,26 -phone,-0.1833333333333333,0.31166666666666665,0.4999999999999999,0.3390476190476191,1,26 -stick,-0.15,0.35,0.5666666666666667,0.37523809523809526,1,25 -cereal,0.001666666666666683,0.2416666666666667,0.65,0.3276190476190476,1,26 -bulb,0.325,0.4283333333333334,0.8666666666666668,0.5471428571428572,2,27 -hair,-0.11333333333333333,0.2766666666666667,0.5666666666666667,0.3276190476190476,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,-0.135,0.3183333333333333,0.6166666666666666,0.3504761904761905,1,26 -can,0.29000000000000004,0.45500000000000007,0.8,0.5423809523809524,2,24 -coca,-0.016666666666666663,0.2816666666666666,0.6166666666666666,0.3523809523809524,1,26 -crackers,-0.04333333333333333,0.2566666666666667,0.6166666666666666,0.3180952380952381,1,26 -plate,-0.175,0.29833333333333334,0.45,0.3342857142857143,1,25 -calculator,-0.006666666666666665,0.26,0.7333333333333333,0.33904761904761904,1,26 -tissues,-0.013333333333333326,0.2416666666666667,0.5666666666666667,0.3228571428571429,1,26 -juice,-0.07666666666666666,0.2766666666666667,0.6333333333333333,0.33238095238095233,1,26 -pink,-0.016666666666666666,0.24,0.6166666666666666,0.3161904761904762,1,25 -lemon,-0.05499999999999999,0.265,0.6333333333333332,0.3295238095238095,1,26 -peach,-0.04333333333333333,0.3066666666666667,0.6,0.3685714285714286,1,26 -bowl,-0.03999999999999999,0.2716666666666667,0.6499999999999999,0.3371428571428572,1,26 -camouflage,0,0,0,0,1,26 -digital,0.05333333333333333,0.24833333333333335,0.6833333333333333,0.34095238095238095,1,26 -blue,-0.11333333333333333,0.29,0.5666666666666667,0.3361904761904762,1,25 -used,0.011666666666666664,0.23666666666666664,0.75,0.3180952380952381,1,24 -energizer,0,0,0,0,1,26 -pear,-0.08333333333333334,0.2783333333333333,0.6333333333333333,0.3295238095238095,1,26 -ball,-0.08,0.2983333333333334,0.5499999999999999,0.3504761904761905,1,25 -notebook,0.011666666666666676,0.22833333333333333,0.7333333333333333,0.3180952380952381,1,26 -garlic,-8.326672684688674e-18,0.24833333333333335,0.6666666666666666,0.32476190476190475,1,26 -cleaning,-0.09166666666666669,0.3083333333333333,0.5833333333333333,0.35428571428571426,1,26 -pair,0.315,0.315,1.0,0.4614285714285714,2,26 -container,-0.01833333333333333,0.26,0.65,0.3342857142857143,1,25 -tomato,-0.010000000000000009,0.2633333333333333,0.65,0.34095238095238095,1,26 -cellphone,0.11499999999999999,0.23333333333333334,0.75,0.34571428571428575,1,26 -potato,0.045,0.2533333333333333,0.7499999999999999,0.3504761904761905,1,25 -light,0.3083333333333333,0.4416666666666666,0.8333333333333334,0.5495238095238095,2,26 -green,0.41833333333333333,0.41833333333333333,1.0,0.5792857142857143,3,23 -bottle,0.27,0.38833333333333336,0.8333333333333333,0.5042857142857143,2,26 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: 0.004537037037037042 -F1-Score: 0.33970899470899485 -Precision: 0.27225308641975304 -Recall: 0.6100308641975308 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.021666666666666674,0.2616666666666667,0.7166666666666666,0.34380952380952384,1,25 -yellow,0.3716666666666667,0.3716666666666667,1.0,0.5145238095238096,6,24 -looks,-0.013333333333333332,0.28500000000000003,0.6666666666666666,0.35238095238095235,1,24 -keyboard,-0.08,0.26000000000000006,0.5333333333333333,0.32285714285714284,1,26 -glue,0.023333333333333338,0.21833333333333332,0.7,0.3114285714285714,1,26 -milk,0,0,0,0,1,26 -cola,-0.09666666666666666,0.2733333333333333,0.5833333333333333,0.32285714285714284,1,26 -flashlight,-0.03833333333333334,0.26166666666666666,0.65,0.32761904761904764,1,26 -cup,-0.04666666666666667,0.2983333333333333,0.7,0.35238095238095235,1,26 -folded,-0.06333333333333332,0.29500000000000004,0.5833333333333333,0.3571428571428571,1,26 -jam,-0.01333333333333333,0.29,0.6166666666666666,0.36190476190476195,1,26 -black,0.44833333333333336,0.44833333333333336,1.0,0.5928571428571429,6,23 -orange,0.45666666666666667,0.45666666666666667,1.0,0.6085714285714287,3,26 -folder,0.09166666666666666,0.24500000000000002,0.7833333333333333,0.3476190476190476,1,26 -soccer,0.05666666666666668,0.2316666666666667,0.7666666666666666,0.3276190476190476,1,26 -hat,-0.10166666666666666,0.2983333333333333,0.6333333333333333,0.33904761904761904,1,26 -brown,0.2666666666666667,0.37833333333333335,0.8666666666666666,0.4828571428571428,2,24 -coffee,-0.11333333333333333,0.29,0.5666666666666667,0.33904761904761904,1,26 -handle,-0.05500000000000001,0.29833333333333334,0.5999999999999999,0.35714285714285715,1,26 -food,-0.10166666666666664,0.2733333333333333,0.5666666666666667,0.3304761904761905,1,24 -towel,0.04833333333333334,0.20833333333333334,0.6833333333333333,0.3047619047619048,1,26 -chips,-0.1,0.31666666666666665,0.6333333333333333,0.35714285714285715,1,26 -stapler,0.08666666666666666,0.24,0.7,0.34380952380952384,1,26 -onion,-0.09166666666666665,0.2566666666666667,0.5833333333333333,0.3114285714285715,1,26 -bag,0.015000000000000003,0.23000000000000004,0.6666666666666666,0.3161904761904762,1,26 -sponge,-0.04333333333333333,0.2816666666666667,0.6333333333333333,0.3504761904761905,1,26 -zero,0,0,0,0,1,26 -computer,0.016666666666666666,0.22999999999999998,0.6166666666666666,0.31999999999999995,1,26 -special,-0.08833333333333333,0.2816666666666667,0.5333333333333333,0.34190476190476193,1,26 -colgate,0.11000000000000001,0.22166666666666668,0.8333333333333334,0.3323809523809524,1,26 -leaf,-0.175,0.3283333333333333,0.5166666666666666,0.3504761904761905,1,26 -tube,-0.04333333333333332,0.2816666666666666,0.6333333333333333,0.3504761904761905,1,26 -cell,0.135,0.21333333333333332,0.85,0.3276190476190476,1,26 -mug,-0.15833333333333333,0.3333333333333333,0.5166666666666666,0.36190476190476195,1,26 -yogurt,-0.10166666666666666,0.29,0.6166666666666666,0.33904761904761904,1,26 -plantain,-0.11333333333333333,0.265,0.5166666666666666,0.3180952380952381,1,26 -red,0.425,0.425,1.0,0.5761904761904761,3,24 -pepper,-0.09666666666666665,0.2766666666666667,0.5833333333333333,0.32761904761904764,1,26 -wheat,-0.10833333333333332,0.28500000000000003,0.4499999999999999,0.3342857142857143,1,26 -kleenex,0.016666666666666663,0.26000000000000006,0.6666666666666666,0.34285714285714286,1,26 -toothbrush,-0.10500000000000001,0.2783333333333333,0.6166666666666666,0.32476190476190475,1,26 -binder,0.04,0.22166666666666662,0.7166666666666666,0.3161904761904762,1,26 -baseball,-0.25,0.30833333333333335,0.36666666666666664,0.32761904761904764,1,26 -pliers,-0.05,0.295,0.6333333333333333,0.3619047619047619,1,26 -paste,0,0,0,0,1,26 -box,0.36333333333333334,0.36333333333333334,1.0,0.49904761904761896,3,26 -water,-0.08499999999999999,0.24833333333333335,0.5666666666666667,0.31428571428571433,1,26 -thins,0.028333333333333332,0.2783333333333333,0.6666666666666666,0.3638095238095238,1,26 -package,0.11666666666666665,0.24499999999999997,0.75,0.35714285714285715,1,26 -k,-0.10500000000000001,0.30333333333333334,0.6333333333333333,0.34095238095238095,1,26 -jelly,-0.01333333333333333,0.25166666666666665,0.6166666666666666,0.3276190476190476,1,26 -fruit,0.24000000000000005,0.3133333333333333,0.8999999999999998,0.43380952380952376,2,26 -apple,-0.021666666666666664,0.27833333333333327,0.65,0.3504761904761905,1,25 -bell,-0.03,0.30666666666666664,0.6499999999999999,0.37047619047619046,1,26 -battery,-0.09166666666666665,0.24833333333333335,0.5333333333333333,0.30952380952380953,1,26 -jar,-0.10499999999999998,0.2766666666666667,0.5333333333333333,0.32761904761904764,1,26 -bound,0.03166666666666666,0.23500000000000001,0.6666666666666666,0.32761904761904764,1,26 -lettuce,-0.2,0.29833333333333334,0.4499999999999999,0.32285714285714284,1,26 -brush,-0.07166666666666667,0.2866666666666666,0.6333333333333333,0.3438095238095238,1,26 -scissors,-0.04166666666666665,0.29166666666666663,0.55,0.3619047619047619,1,26 -lime,0.026666666666666672,0.27666666666666667,0.7166666666666666,0.35714285714285715,1,25 -toothpaste,-0.07166666666666666,0.295,0.55,0.3533333333333334,1,26 -top,0.008333333333333326,0.2583333333333333,0.7166666666666666,0.3342857142857143,1,26 -spiral,-0.018333333333333323,0.24666666666666667,0.6,0.32761904761904764,1,26 -handles,-0.10166666666666666,0.29333333333333333,0.5833333333333333,0.33904761904761904,1,25 -camera,0.015000000000000003,0.265,0.6166666666666666,0.3504761904761905,1,26 -eraser,-0.175,0.32,0.4999999999999999,0.3504761904761905,1,26 -creamer,0,0,0,0,1,26 -white,0.3466666666666667,0.3466666666666667,1.0,0.4864285714285715,5,21 -banana,-0.06666666666666667,0.2866666666666666,0.6333333333333333,0.34571428571428575,1,26 -pitcher,-0.018333333333333323,0.28,0.6166666666666666,0.3504761904761905,1,26 -phone,-0.22999999999999998,0.36166666666666664,0.4999999999999999,0.36190476190476195,1,26 -stick,0.0033333333333333296,0.25666666666666665,0.6666666666666666,0.33428571428571424,1,25 -cereal,-0.04333333333333333,0.24,0.6333333333333332,0.3142857142857143,1,26 -bulb,0.32666666666666666,0.36,0.9666666666666666,0.5,2,26 -hair,-0.11333333333333333,0.32333333333333336,0.5833333333333333,0.36190476190476195,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,-0.07666666666666666,0.28500000000000003,0.6333333333333333,0.3390476190476191,1,26 -can,0.38833333333333336,0.4666666666666667,0.8999999999999998,0.6023809523809525,2,26 -coca,-0.08,0.29833333333333334,0.5499999999999999,0.3504761904761905,1,26 -crackers,-0.04333333333333333,0.25833333333333336,0.5666666666666667,0.32571428571428573,1,26 -plate,0.08166666666666667,0.21833333333333335,0.8166666666666667,0.32285714285714284,1,24 -calculator,-0.135,0.305,0.5333333333333333,0.33904761904761904,1,26 -tissues,-0.03833333333333333,0.29000000000000004,0.65,0.35238095238095235,1,26 -juice,-0.09666666666666665,0.2516666666666667,0.5166666666666666,0.31619047619047624,1,26 -pink,-0.05500000000000001,0.26,0.55,0.3276190476190476,1,25 -lemon,-0.06666666666666667,0.2783333333333333,0.5833333333333333,0.34095238095238095,1,26 -peach,-0.125,0.3,0.5666666666666667,0.34095238095238095,1,26 -bowl,-0.09166666666666666,0.30333333333333334,0.5833333333333333,0.35238095238095235,1,26 -camouflage,0,0,0,0,1,26 -digital,-0.03333333333333334,0.2733333333333333,0.5666666666666667,0.34095238095238095,1,26 -blue,-0.18333333333333332,0.35,0.4999999999999999,0.37047619047619046,1,25 -used,-0.02666666666666666,0.27666666666666667,0.65,0.3485714285714286,1,24 -energizer,0,0,0,0,1,26 -pear,0.06833333333333333,0.22999999999999998,0.7666666666666666,0.33238095238095244,1,26 -ball,-0.24166666666666664,0.3783333333333333,0.45,0.37523809523809526,1,25 -notebook,0.041666666666666664,0.2616666666666666,0.7333333333333333,0.34285714285714286,1,26 -garlic,-0.07166666666666667,0.265,0.5833333333333333,0.3276190476190476,1,26 -cleaning,0.03666666666666667,0.255,0.6833333333333333,0.34095238095238095,1,26 -pair,0.28,0.39166666666666666,0.8666666666666666,0.49952380952380954,2,27 -container,-0.021666666666666667,0.24333333333333335,0.6499999999999999,0.3180952380952381,1,25 -tomato,0.0033333333333333327,0.24,0.6499999999999999,0.32761904761904764,1,26 -cellphone,-0.021666666666666667,0.26,0.65,0.3342857142857143,1,26 -potato,-0.03500000000000001,0.26,0.65,0.3276190476190476,1,25 -light,0.25333333333333335,0.33999999999999997,0.8999999999999998,0.44761904761904764,2,25 -green,0.31,0.31,1.0,0.45714285714285713,3,23 -bottle,0.30333333333333334,0.38666666666666666,0.8999999999999998,0.5061904761904762,2,26 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: 0.005632716049382722 -F1-Score: 0.3366181657848325 -Precision: 0.2679166666666667 -Recall: 0.6151234567901235 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,-0.009999999999999998,0.27166666666666667,0.6166666666666666,0.34571428571428575,1,24 -yellow,0.39666666666666667,0.39666666666666667,1.0,0.5471428571428572,6,24 -looks,-0.085,0.28500000000000003,0.55,0.3371428571428572,1,24 -keyboard,-0.026666666666666665,0.24833333333333335,0.6833333333333333,0.32285714285714284,1,26 -glue,-0.13833333333333334,0.3266666666666667,0.5333333333333333,0.3571428571428572,1,26 -milk,0,0,0,0,1,26 -cola,0.04833333333333334,0.265,0.7333333333333333,0.3504761904761905,1,26 -flashlight,0.0066666666666666706,0.24666666666666667,0.6166666666666666,0.33238095238095233,1,26 -cup,0.0033333333333333327,0.26166666666666666,0.7,0.34095238095238095,1,26 -folded,-0.08,0.33166666666666667,0.5166666666666666,0.37523809523809526,1,26 -jam,-0.06666666666666665,0.2833333333333333,0.6666666666666666,0.34571428571428575,1,26 -black,0.665,0.5266666666666666,1.0,0.6797619047619048,6,21 -orange,0.38666666666666666,0.38666666666666666,1.0,0.5364285714285714,3,24 -folder,-0.01833333333333333,0.26,0.6499999999999999,0.33428571428571424,1,26 -soccer,-0.12166666666666666,0.31999999999999995,0.5666666666666667,0.3619047619047619,1,26 -hat,-0.10833333333333335,0.30333333333333334,0.4999999999999999,0.34571428571428575,1,26 -brown,0.31666666666666665,0.4600000000000001,0.8,0.5714285714285714,2,25 -coffee,0.055000000000000014,0.23833333333333337,0.7666666666666666,0.33238095238095244,1,25 -handle,0.035,0.23000000000000004,0.7166666666666666,0.320952380952381,1,26 -food,-0.04666666666666666,0.29,0.6833333333333332,0.3523809523809524,1,25 -towel,-0.13833333333333334,0.315,0.5166666666666666,0.3523809523809524,1,26 -chips,-0.16833333333333333,0.3066666666666667,0.5499999999999999,0.3371428571428572,1,26 -stapler,-0.25,0.3583333333333333,0.4333333333333333,0.35904761904761906,1,26 -onion,-0.09,0.3016666666666667,0.6333333333333333,0.3485714285714286,1,26 -bag,-0.004999999999999996,0.25999999999999995,0.6166666666666666,0.33904761904761904,1,26 -sponge,-0.12166666666666666,0.3366666666666666,0.5833333333333333,0.3685714285714286,1,26 -zero,0,0,0,0,1,26 -computer,-0.03833333333333333,0.2566666666666667,0.6499999999999999,0.32285714285714284,1,25 -special,-0.14166666666666666,0.33333333333333337,0.5666666666666667,0.36380952380952386,1,26 -colgate,-0.14666666666666667,0.28500000000000003,0.4666666666666666,0.3276190476190477,1,26 -leaf,-0.026666666666666655,0.2733333333333333,0.6833333333333333,0.34571428571428575,1,26 -tube,0.09833333333333334,0.24833333333333335,0.7833333333333333,0.3552380952380953,1,26 -cell,-0.175,0.32333333333333336,0.4666666666666666,0.3476190476190476,1,26 -mug,-0.155,0.29833333333333334,0.4666666666666666,0.33428571428571435,1,25 -yogurt,-0.026666666666666672,0.27166666666666667,0.6666666666666666,0.3342857142857143,1,26 -plantain,-0.04833333333333334,0.2716666666666666,0.6833333333333333,0.33428571428571424,1,26 -red,0.4066666666666666,0.4066666666666666,1.0,0.5578571428571429,3,25 -pepper,-0.043333333333333335,0.24833333333333335,0.6833333333333332,0.3161904761904762,1,26 -wheat,-0.03833333333333333,0.295,0.5999999999999999,0.35904761904761906,1,26 -kleenex,-0.22166666666666668,0.37833333333333335,0.4999999999999999,0.38,1,26 -toothbrush,-0.11333333333333331,0.265,0.5166666666666666,0.32095238095238093,1,26 -binder,-0.046666666666666655,0.2866666666666666,0.5999999999999999,0.3504761904761905,1,26 -baseball,0.11333333333333333,0.21333333333333332,0.8333333333333333,0.32571428571428573,1,26 -pliers,-0.07499999999999998,0.29833333333333334,0.6333333333333333,0.3523809523809524,1,26 -paste,0,0,0,0,1,26 -box,0.4533333333333333,0.4533333333333333,1.0,0.6047619047619046,3,26 -water,-0.19999999999999998,0.3083333333333333,0.4833333333333334,0.3371428571428571,1,26 -thins,-0.04666666666666667,0.2866666666666667,0.6833333333333332,0.3476190476190476,1,26 -package,0.06666666666666667,0.26999999999999996,0.7333333333333333,0.3638095238095238,1,26 -k,-0.01333333333333333,0.26,0.65,0.33904761904761904,1,26 -jelly,0.028333333333333332,0.24333333333333332,0.7166666666666666,0.32952380952380955,1,26 -fruit,0.2966666666666667,0.41999999999999993,0.8333333333333333,0.530952380952381,2,25 -apple,-0.13,0.315,0.5833333333333333,0.34571428571428575,1,25 -bell,-0.06333333333333332,0.29833333333333334,0.5999999999999999,0.35238095238095235,1,26 -battery,-0.085,0.2833333333333333,0.5499999999999999,0.3342857142857143,1,26 -jar,0.09833333333333333,0.22999999999999998,0.75,0.33428571428571424,1,26 -bound,0.10666666666666666,0.26,0.8333333333333333,0.36380952380952386,1,26 -lettuce,0.08666666666666666,0.23666666666666666,0.8666666666666666,0.3361904761904762,1,26 -brush,-0.19666666666666666,0.3266666666666667,0.4999999999999999,0.34571428571428575,1,26 -scissors,0.025,0.24166666666666664,0.6666666666666666,0.3323809523809524,1,26 -lime,0.0033333333333333327,0.26166666666666666,0.7,0.340952380952381,1,25 -toothpaste,0.024999999999999998,0.2483333333333333,0.6333333333333333,0.33428571428571424,1,26 -top,0.07666666666666666,0.25166666666666665,0.7333333333333333,0.3533333333333334,1,26 -spiral,-0.03833333333333332,0.25166666666666665,0.55,0.32761904761904764,1,26 -handles,-0.21333333333333332,0.35666666666666663,0.4999999999999999,0.36380952380952386,1,25 -camera,-0.029999999999999992,0.2633333333333333,0.5999999999999999,0.3390476190476191,1,26 -eraser,-0.04333333333333333,0.2816666666666667,0.6,0.34857142857142864,1,26 -creamer,0,0,0,0,1,26 -white,0.5050000000000001,0.5050000000000001,1.0,0.6547619047619048,5,21 -banana,0.04333333333333334,0.2416666666666667,0.7166666666666666,0.33714285714285713,1,26 -pitcher,-0.004999999999999993,0.26166666666666666,0.6833333333333333,0.34571428571428575,1,26 -phone,-0.11500000000000002,0.31833333333333336,0.5833333333333333,0.3552380952380953,1,26 -stick,0.048333333333333325,0.22666666666666666,0.7166666666666666,0.32285714285714284,1,25 -cereal,-0.155,0.29833333333333334,0.5166666666666666,0.33238095238095244,1,26 -bulb,0.26333333333333336,0.4283333333333334,0.8,0.5138095238095237,2,27 -hair,-0.18833333333333332,0.34,0.4666666666666666,0.35714285714285715,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,-0.08,0.2816666666666667,0.6333333333333333,0.3342857142857143,1,26 -can,0.3466666666666667,0.4066666666666666,0.9,0.55,2,24 -coca,-0.06666666666666667,0.2783333333333333,0.5,0.3438095238095238,1,26 -crackers,-0.030000000000000006,0.2816666666666666,0.6666666666666666,0.34095238095238095,1,26 -plate,-0.01833333333333334,0.25166666666666665,0.6833333333333333,0.32952380952380955,1,24 -calculator,-0.009999999999999995,0.255,0.6666666666666666,0.32761904761904764,1,26 -tissues,-0.10833333333333335,0.30333333333333334,0.5333333333333333,0.3476190476190476,1,26 -juice,-0.15833333333333335,0.34500000000000003,0.5666666666666667,0.3657142857142857,1,26 -pink,-0.14333333333333334,0.32666666666666666,0.5666666666666667,0.3571428571428571,1,25 -lemon,-0.10833333333333335,0.27166666666666667,0.5333333333333333,0.31999999999999995,1,26 -peach,-0.05166666666666666,0.30166666666666664,0.7,0.35238095238095235,1,26 -bowl,-0.07500000000000001,0.2866666666666667,0.6333333333333333,0.34095238095238095,1,26 -camouflage,0,0,0,0,1,26 -digital,0.023333333333333338,0.24666666666666667,0.7,0.33904761904761904,1,26 -blue,0.14833333333333334,0.23166666666666663,0.85,0.3504761904761905,1,25 -used,-0.03,0.2866666666666667,0.65,0.35238095238095235,1,24 -energizer,0,0,0,0,1,26 -pear,-0.013333333333333341,0.27,0.6666666666666666,0.3390476190476191,1,26 -ball,-0.05166666666666666,0.28500000000000003,0.65,0.34380952380952384,1,25 -notebook,-0.05833333333333333,0.27666666666666667,0.5166666666666666,0.339047619047619,1,26 -garlic,-0.01666666666666667,0.2533333333333333,0.6499999999999999,0.3295238095238095,1,26 -cleaning,0.011666666666666669,0.255,0.6166666666666666,0.34095238095238095,1,26 -pair,0.26666666666666666,0.33666666666666667,0.9,0.4642857142857143,2,26 -container,-0.03,0.29000000000000004,0.6499999999999999,0.35714285714285715,1,25 -tomato,0.09,0.23333333333333334,0.7,0.33904761904761904,1,26 -cellphone,-0.06333333333333332,0.25666666666666665,0.5666666666666667,0.32952380952380955,1,26 -potato,-0.07999999999999999,0.26,0.5333333333333333,0.32285714285714284,1,25 -light,0.26999999999999996,0.31999999999999995,0.9333333333333332,0.45619047619047626,2,25 -green,0.43,0.43,1.0,0.5816666666666668,3,23 -bottle,0.32,0.49000000000000005,0.8,0.5761904761904761,2,26 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: 0.009969135802469139 -F1-Score: 0.34554232804232815 -Precision: 0.27817901234567904 -Recall: 0.6171296296296297 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.05166666666666666,0.26333333333333336,0.7333333333333333,0.3504761904761905,1,24 -yellow,0.305,0.305,1.0,0.4557142857142857,6,26 -looks,-0.18833333333333332,0.345,0.5499999999999999,0.359047619047619,1,24 -keyboard,-0.05000000000000001,0.275,0.6,0.3361904761904762,1,26 -glue,0.0066666666666666706,0.24333333333333335,0.65,0.3323809523809524,1,26 -milk,0,0,0,0,1,26 -cola,-0.10833333333333332,0.2983333333333333,0.6333333333333333,0.3361904761904762,1,26 -flashlight,-0.07166666666666666,0.2683333333333333,0.5833333333333333,0.3295238095238095,1,26 -cup,-0.09833333333333333,0.31833333333333336,0.6666666666666666,0.3619047619047619,1,26 -folded,0.011666666666666669,0.2166666666666667,0.5833333333333333,0.30476190476190473,1,26 -jam,0.023333333333333334,0.265,0.7166666666666666,0.34571428571428575,1,26 -black,0.5083333333333333,0.43833333333333335,1.0,0.5916666666666666,6,21 -orange,0.445,0.445,1.0,0.5995238095238096,3,25 -folder,-0.046666666666666655,0.2566666666666667,0.6333333333333333,0.3276190476190476,1,26 -soccer,-0.03833333333333333,0.24833333333333335,0.5833333333333333,0.3276190476190476,1,26 -hat,-0.14666666666666667,0.31166666666666665,0.55,0.3504761904761905,1,26 -brown,0.3,0.39166666666666666,0.9,0.501904761904762,2,24 -coffee,-0.004999999999999999,0.22666666666666666,0.6499999999999999,0.31142857142857144,1,25 -handle,-0.07999999999999999,0.295,0.5499999999999999,0.3485714285714286,1,26 -food,-0.05499999999999999,0.2816666666666667,0.6333333333333333,0.34571428571428575,1,26 -towel,-0.016666666666666666,0.24499999999999997,0.6499999999999999,0.32285714285714284,1,26 -chips,-0.0016666666666666607,0.2633333333333333,0.6666666666666666,0.33904761904761904,1,26 -stapler,-0.01333333333333333,0.24833333333333335,0.6499999999999999,0.3276190476190476,1,26 -onion,-0.19166666666666665,0.35,0.5499999999999999,0.3638095238095238,1,26 -bag,-0.004999999999999999,0.29500000000000004,0.6166666666666666,0.3685714285714286,1,26 -sponge,0.045,0.24500000000000002,0.6833333333333333,0.33714285714285713,1,26 -zero,0,0,0,0,1,26 -computer,-0.11333333333333333,0.33166666666666667,0.55,0.3638095238095238,1,25 -special,-0.09166666666666666,0.3,0.5333333333333333,0.35238095238095235,1,26 -colgate,-0.11666666666666665,0.27666666666666667,0.4833333333333333,0.3276190476190476,1,26 -leaf,-0.05499999999999999,0.2783333333333333,0.5833333333333333,0.3485714285714286,1,26 -tube,-0.0016666666666666607,0.23833333333333334,0.6166666666666666,0.320952380952381,1,26 -cell,0.039999999999999994,0.2633333333333333,0.7166666666666666,0.35238095238095235,1,26 -mug,-0.10499999999999998,0.30333333333333334,0.5833333333333333,0.3457142857142857,1,25 -yogurt,-0.14166666666666666,0.3,0.5499999999999999,0.34380952380952384,1,26 -plantain,5.551115123125783e-18,0.26666666666666666,0.6833333333333333,0.3523809523809524,1,26 -red,0.3983333333333333,0.3983333333333333,1.0,0.55,3,26 -pepper,-0.01666666666666666,0.295,0.6166666666666666,0.3638095238095238,1,26 -wheat,-0.14166666666666666,0.27,0.4666666666666666,0.31619047619047624,1,26 -kleenex,-0.07166666666666666,0.26833333333333337,0.5499999999999999,0.32761904761904764,1,26 -toothbrush,-0.03499999999999999,0.2416666666666667,0.6,0.3161904761904762,1,26 -binder,-0.06333333333333332,0.2733333333333333,0.6,0.33238095238095233,1,26 -baseball,-0.12166666666666666,0.32,0.6166666666666666,0.3571428571428571,1,26 -pliers,-0.03833333333333333,0.28500000000000003,0.6166666666666666,0.34571428571428575,1,26 -paste,0,0,0,0,1,26 -box,0.33166666666666667,0.33166666666666667,1.0,0.4807142857142857,3,26 -water,-0.07166666666666666,0.255,0.5499999999999999,0.3161904761904762,1,26 -thins,-0.03833333333333333,0.24499999999999997,0.6166666666666666,0.32476190476190475,1,26 -package,-0.14666666666666667,0.2966666666666667,0.5166666666666666,0.3342857142857143,1,26 -k,-0.13333333333333333,0.26333333333333336,0.4666666666666666,0.3161904761904762,1,26 -jelly,-0.10833333333333332,0.31999999999999995,0.5333333333333332,0.36380952380952386,1,26 -fruit,0.2833333333333333,0.32333333333333336,0.9333333333333332,0.4671428571428572,2,26 -apple,0.0033333333333333327,0.2683333333333333,0.6666666666666666,0.34571428571428575,1,26 -bell,0.05333333333333333,0.23500000000000001,0.6833333333333333,0.3323809523809524,1,26 -battery,-0.13,0.32,0.5666666666666667,0.3571428571428571,1,26 -jar,-0.12166666666666666,0.26833333333333337,0.4666666666666666,0.32285714285714284,1,26 -bound,0.095,0.23166666666666663,0.75,0.33428571428571424,1,26 -lettuce,0.011666666666666667,0.2633333333333333,0.6333333333333333,0.340952380952381,1,26 -brush,-0.20833333333333331,0.32,0.4,0.34095238095238095,1,26 -scissors,-0.03166666666666666,0.26,0.5999999999999999,0.3352380952380952,1,26 -lime,-0.2,0.31666666666666665,0.4999999999999999,0.3342857142857143,1,25 -toothpaste,-0.19166666666666665,0.30333333333333334,0.4499999999999999,0.32952380952380955,1,26 -top,-0.01333333333333333,0.24666666666666667,0.5666666666666667,0.32761904761904764,1,26 -spiral,-0.17166666666666666,0.31833333333333336,0.4666666666666666,0.34571428571428575,1,26 -handles,-0.06333333333333332,0.29,0.6333333333333333,0.3504761904761905,1,25 -camera,-0.02166666666666666,0.23833333333333334,0.5666666666666667,0.3161904761904762,1,26 -eraser,-0.024999999999999994,0.265,0.6,0.340952380952381,1,26 -creamer,0,0,0,0,1,26 -white,0.39666666666666667,0.39666666666666667,1.0,0.5419047619047619,5,21 -banana,-0.05,0.24333333333333335,0.5499999999999999,0.31619047619047624,1,26 -pitcher,-0.125,0.29833333333333334,0.4833333333333333,0.34095238095238095,1,26 -phone,-0.13333333333333333,0.265,0.5166666666666666,0.3114285714285715,1,26 -stick,-0.14166666666666666,0.29333333333333333,0.4333333333333333,0.33428571428571424,1,25 -cereal,-0.15833333333333333,0.31166666666666665,0.4999999999999999,0.3476190476190476,1,26 -bulb,0.28833333333333333,0.375,0.9,0.4923809523809523,2,27 -hair,-0.09666666666666668,0.27,0.5666666666666667,0.32761904761904764,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.0016666666666666718,0.25333333333333335,0.6666666666666666,0.33238095238095233,1,26 -can,0.27166666666666667,0.39,0.8333333333333333,0.5038095238095238,2,25 -coca,-0.14166666666666666,0.3283333333333333,0.5666666666666667,0.35904761904761906,1,26 -crackers,-0.10500000000000001,0.27833333333333327,0.6166666666666666,0.3276190476190476,1,26 -plate,-0.029999999999999992,0.29,0.6499999999999999,0.3571428571428571,1,25 -calculator,-0.016666666666666663,0.265,0.65,0.340952380952381,1,26 -tissues,-0.03333333333333334,0.31166666666666665,0.7,0.37047619047619046,1,26 -juice,-0.08833333333333333,0.30166666666666664,0.5999999999999999,0.34571428571428575,1,26 -pink,0.048333333333333325,0.23166666666666663,0.8166666666666667,0.3180952380952381,1,25 -lemon,-0.18333333333333332,0.31999999999999995,0.4999999999999999,0.3457142857142857,1,26 -peach,-0.06666666666666667,0.2683333333333333,0.5499999999999999,0.32952380952380955,1,26 -bowl,-0.0016666666666666663,0.24,0.65,0.32285714285714284,1,26 -camouflage,0,0,0,0,1,26 -digital,-0.205,0.34500000000000003,0.5499999999999999,0.35238095238095235,1,26 -blue,-0.06666666666666667,0.265,0.5333333333333333,0.33428571428571435,1,25 -used,-0.09999999999999999,0.2566666666666667,0.5333333333333333,0.3114285714285714,1,24 -energizer,0,0,0,0,1,26 -pear,0.028333333333333332,0.24833333333333335,0.6666666666666666,0.33904761904761904,1,26 -ball,-0.10999999999999999,0.29,0.5666666666666667,0.33904761904761904,1,25 -notebook,-0.075,0.30333333333333334,0.5499999999999999,0.3571428571428571,1,26 -garlic,-0.14166666666666666,0.2733333333333333,0.5166666666666666,0.31619047619047624,1,26 -cleaning,0.004999999999999999,0.2583333333333334,0.7,0.3390476190476191,1,26 -pair,0.31333333333333335,0.39166666666666666,0.8999999999999998,0.5161904761904761,2,27 -container,-0.18,0.32,0.4999999999999999,0.3457142857142857,1,26 -tomato,-0.025,0.21000000000000002,0.5999999999999999,0.29047619047619044,1,26 -cellphone,-0.05500000000000001,0.2733333333333333,0.6333333333333332,0.33904761904761904,1,26 -potato,-0.04166666666666667,0.2633333333333333,0.6166666666666666,0.32476190476190475,1,25 -light,0.31500000000000006,0.4216666666666667,0.8666666666666666,0.5376190476190477,2,27 -green,0.4416666666666667,0.4416666666666667,1.0,0.5828571428571429,3,24 -bottle,0.28666666666666674,0.3983333333333333,0.8666666666666668,0.5042857142857142,2,26 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: -0.008966049382716045 -F1-Score: 0.33652557319223986 -Precision: 0.2714969135802469 -Recall: 0.591820987654321 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.05,0.275,0.7666666666666666,0.36380952380952386,1,24 -yellow,0.48999999999999994,0.48999999999999994,1.0,0.619047619047619,6,24 -looks,-0.22666666666666666,0.33166666666666667,0.4833333333333333,0.3466666666666667,1,24 -keyboard,-0.04666666666666667,0.2733333333333333,0.5999999999999999,0.33904761904761904,1,26 -glue,-0.03833333333333332,0.26833333333333337,0.65,0.33428571428571424,1,26 -milk,0,0,0,0,1,26 -cola,-0.04833333333333334,0.28833333333333333,0.65,0.34571428571428575,1,26 -flashlight,0.011666666666666667,0.25666666666666665,0.6666666666666666,0.33904761904761904,1,26 -cup,0.011666666666666669,0.27,0.7166666666666666,0.34571428571428575,1,26 -folded,0.02,0.2533333333333333,0.7,0.34095238095238095,1,26 -jam,-0.07166666666666667,0.2816666666666666,0.6333333333333333,0.3361904761904762,1,26 -black,0.5,0.3883333333333333,1.0,0.5509523809523811,6,21 -orange,0.43,0.43,1.0,0.584047619047619,3,26 -folder,-0.11833333333333333,0.31500000000000006,0.5666666666666667,0.35714285714285715,1,26 -soccer,-0.11666666666666665,0.30666666666666664,0.5,0.34571428571428575,1,26 -hat,-0.06333333333333334,0.27833333333333327,0.6833333333333333,0.3342857142857143,1,26 -brown,0.3433333333333333,0.41,0.9333333333333332,0.5357142857142857,2,24 -coffee,-0.12999999999999998,0.2983333333333334,0.4833333333333333,0.34190476190476193,1,25 -handle,-0.09166666666666667,0.2833333333333333,0.5666666666666667,0.340952380952381,1,25 -food,0.021666666666666674,0.2416666666666667,0.7166666666666666,0.32571428571428573,1,26 -towel,-0.05166666666666666,0.225,0.5833333333333333,0.3,1,26 -chips,-0.0016666666666666663,0.26,0.7,0.33904761904761904,1,26 -stapler,-0.043333333333333335,0.275,0.6166666666666666,0.3342857142857143,1,26 -onion,-0.08166666666666667,0.275,0.5833333333333333,0.3323809523809524,1,26 -bag,-0.05000000000000001,0.2833333333333333,0.65,0.34095238095238095,1,26 -sponge,-0.325,0.375,0.4,0.35714285714285715,1,26 -zero,0,0,0,0,1,26 -computer,0.008333333333333328,0.26999999999999996,0.6666666666666666,0.3476190476190476,1,25 -special,-0.1833333333333333,0.31166666666666665,0.5,0.3390476190476191,1,26 -colgate,-0.09166666666666665,0.24833333333333335,0.5666666666666667,0.31142857142857144,1,26 -leaf,-0.14999999999999997,0.26833333333333337,0.4666666666666666,0.31142857142857144,1,26 -tube,0.11166666666666666,0.24833333333333335,0.75,0.3571428571428571,1,26 -cell,0.04166666666666667,0.25166666666666665,0.6333333333333333,0.3457142857142857,1,26 -mug,0.05166666666666666,0.255,0.7166666666666666,0.3504761904761905,1,25 -yogurt,-0.14166666666666666,0.2833333333333333,0.4666666666666666,0.3276190476190476,1,26 -plantain,-0.06333333333333332,0.26166666666666666,0.6333333333333333,0.32285714285714284,1,26 -red,0.39499999999999996,0.39499999999999996,1.0,0.5452380952380953,3,27 -pepper,-0.07499999999999998,0.265,0.5333333333333333,0.3323809523809524,1,26 -wheat,-0.09666666666666665,0.2416666666666667,0.4833333333333333,0.30476190476190473,1,26 -kleenex,-0.05499999999999999,0.2733333333333333,0.6333333333333333,0.3390476190476191,1,26 -toothbrush,-0.15833333333333333,0.29833333333333334,0.4999999999999999,0.3361904761904762,1,26 -binder,-0.025000000000000012,0.25666666666666665,0.6166666666666666,0.3247619047619047,1,26 -baseball,0.015000000000000003,0.26833333333333337,0.75,0.3504761904761905,1,26 -pliers,0.09,0.21000000000000002,0.8333333333333333,0.31142857142857144,1,26 -paste,0,0,0,0,1,26 -box,0.3716666666666667,0.3716666666666667,1.0,0.5126190476190475,3,26 -water,-0.11833333333333333,0.31,0.5333333333333333,0.3504761904761905,1,26 -thins,-0.11333333333333333,0.295,0.6166666666666666,0.33904761904761904,1,26 -package,-0.19999999999999998,0.345,0.4666666666666666,0.35714285714285715,1,26 -k,-0.004999999999999988,0.2816666666666666,0.7,0.35714285714285715,1,26 -jelly,-0.056666666666666664,0.26000000000000006,0.6666666666666666,0.32761904761904764,1,26 -fruit,0.28500000000000003,0.4133333333333333,0.8333333333333333,0.5204761904761905,2,26 -apple,0.023333333333333338,0.225,0.6333333333333333,0.3142857142857143,1,25 -bell,-0.1,0.2583333333333333,0.5166666666666666,0.3180952380952381,1,26 -battery,-0.06333333333333332,0.265,0.55,0.32761904761904764,1,26 -jar,-0.09666666666666665,0.27666666666666667,0.5666666666666667,0.3342857142857143,1,26 -bound,0.09833333333333333,0.265,0.75,0.3638095238095238,1,26 -lettuce,-0.016666666666666663,0.2733333333333333,0.5999999999999999,0.35238095238095235,1,26 -brush,0.015,0.25666666666666665,0.7166666666666666,0.33714285714285713,1,26 -scissors,-0.21666666666666665,0.3366666666666666,0.4499999999999999,0.3504761904761905,1,26 -lime,0.045,0.215,0.7166666666666666,0.3114285714285715,1,25 -toothpaste,-0.13833333333333334,0.33666666666666667,0.5666666666666667,0.3685714285714286,1,26 -top,0.0016666666666666718,0.2666666666666667,0.6666666666666666,0.34380952380952384,1,26 -spiral,-0.056666666666666664,0.275,0.6499999999999999,0.3323809523809524,1,26 -handles,-0.01666666666666667,0.27,0.6833333333333332,0.3476190476190476,1,25 -camera,-0.058333333333333334,0.25166666666666665,0.5499999999999999,0.3180952380952381,1,26 -eraser,0.06166666666666666,0.2783333333333333,0.7333333333333333,0.3685714285714286,1,26 -creamer,0,0,0,0,1,26 -white,0.3683333333333333,0.3683333333333333,1.0,0.5111904761904762,5,22 -banana,-0.0016666666666666718,0.27166666666666667,0.7166666666666666,0.340952380952381,1,26 -pitcher,0.021666666666666678,0.23666666666666666,0.7166666666666666,0.320952380952381,1,26 -phone,-0.026666666666666655,0.28500000000000003,0.65,0.35523809523809524,1,26 -stick,0.05666666666666666,0.2733333333333333,0.7666666666666666,0.3638095238095238,1,25 -cereal,0.056666666666666664,0.21166666666666667,0.65,0.3095238095238096,1,26 -bulb,0.2616666666666666,0.38166666666666665,0.8333333333333333,0.4923809523809523,2,27 -hair,0.03666666666666667,0.2483333333333333,0.7166666666666666,0.33904761904761904,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,-0.08,0.265,0.5833333333333333,0.32285714285714284,1,26 -can,0.29500000000000004,0.29500000000000004,1.0,0.4438095238095238,2,25 -coca,-0.058333333333333334,0.25666666666666665,0.5499999999999999,0.32285714285714284,1,26 -crackers,-0.025000000000000012,0.27,0.6166666666666666,0.33904761904761904,1,26 -plate,-0.021666666666666674,0.2783333333333333,0.7,0.34571428571428575,1,25 -calculator,-0.07666666666666666,0.29333333333333333,0.6333333333333333,0.3457142857142857,1,26 -tissues,-0.06333333333333332,0.26833333333333337,0.5499999999999999,0.33238095238095244,1,26 -juice,-0.1,0.29500000000000004,0.5833333333333333,0.34095238095238095,1,26 -pink,-0.06333333333333335,0.29833333333333334,0.6,0.35238095238095235,1,25 -lemon,-0.12666666666666665,0.31,0.5666666666666667,0.3504761904761905,1,26 -peach,-0.10833333333333332,0.275,0.5666666666666667,0.3276190476190476,1,26 -bowl,-0.018333333333333323,0.2816666666666666,0.6833333333333333,0.35714285714285715,1,26 -camouflage,0,0,0,0,1,26 -digital,-0.041666666666666664,0.27,0.6333333333333333,0.34380952380952384,1,26 -blue,-0.018333333333333333,0.2416666666666667,0.6499999999999999,0.3180952380952381,1,25 -used,-0.17166666666666666,0.33166666666666667,0.4666666666666666,0.35714285714285715,1,23 -energizer,0,0,0,0,1,26 -pear,-0.06333333333333332,0.285,0.5999999999999999,0.34095238095238095,1,26 -ball,-0.06333333333333332,0.2566666666666667,0.6333333333333333,0.3180952380952381,1,25 -notebook,-0.175,0.30333333333333334,0.4666666666666666,0.33238095238095233,1,26 -garlic,-0.13333333333333333,0.30666666666666664,0.4833333333333333,0.34571428571428575,1,26 -cleaning,0.11166666666666666,0.2316666666666667,0.8333333333333333,0.340952380952381,1,26 -pair,0.2733333333333333,0.38,0.8666666666666666,0.4895238095238096,2,27 -container,0.10166666666666666,0.21166666666666667,0.75,0.320952380952381,1,26 -tomato,-0.005000000000000002,0.25666666666666665,0.7,0.3342857142857143,1,26 -cellphone,-0.225,0.35,0.4499999999999999,0.35714285714285715,1,26 -potato,-0.26666666666666666,0.3333333333333333,0.3666666666666667,0.340952380952381,1,25 -light,0.25833333333333336,0.4066666666666666,0.8,0.5071428571428571,2,26 -green,0.44499999999999995,0.44499999999999995,1.0,0.5976190476190476,3,23 -bottle,0.3533333333333334,0.37333333333333335,0.9666666666666666,0.5261904761904762,2,27 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: 0.003688271604938273 -F1-Score: 0.33820767195767204 -Precision: 0.27049382716049386 -Recall: 0.6121913580246913 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,-0.155,0.29833333333333334,0.5166666666666666,0.33238095238095233,1,24 -yellow,0.45166666666666666,0.45166666666666666,1.0,0.6023809523809524,6,26 -looks,-0.0016666666666666635,0.24666666666666667,0.6166666666666666,0.32761904761904764,1,24 -keyboard,-0.07166666666666666,0.2816666666666667,0.5833333333333333,0.34095238095238095,1,26 -glue,0.06000000000000001,0.23000000000000004,0.7166666666666666,0.33238095238095233,1,26 -milk,0,0,0,0,1,26 -cola,-0.12666666666666665,0.3066666666666667,0.5666666666666667,0.3485714285714286,1,26 -flashlight,-0.08499999999999999,0.2766666666666667,0.5833333333333333,0.3323809523809524,1,26 -cup,-0.004999999999999999,0.2783333333333334,0.65,0.3571428571428571,1,26 -folded,-0.06500000000000002,0.285,0.6833333333333333,0.33904761904761904,1,26 -jam,0.04833333333333333,0.265,0.7333333333333333,0.3504761904761905,1,26 -black,0.545,0.4533333333333333,1.0,0.6057142857142858,6,21 -orange,0.5033333333333334,0.5033333333333334,1.0,0.6535714285714285,3,25 -folder,-0.06666666666666667,0.2816666666666667,0.5499999999999999,0.3438095238095238,1,26 -soccer,0.06333333333333334,0.22999999999999998,0.7666666666666666,0.3276190476190476,1,26 -hat,-0.12166666666666666,0.32,0.5666666666666667,0.36190476190476195,1,26 -brown,0.29833333333333334,0.36333333333333334,0.9,0.5047619047619047,2,26 -coffee,0.03500000000000001,0.255,0.7166666666666666,0.34380952380952384,1,26 -handle,-0.08333333333333333,0.3066666666666667,0.5499999999999999,0.35714285714285715,1,25 -food,-0.06666666666666667,0.31999999999999995,0.5999999999999999,0.3704761904761905,1,26 -towel,-0.035,0.255,0.5666666666666667,0.32571428571428573,1,26 -chips,-0.07999999999999999,0.2783333333333333,0.5833333333333333,0.3371428571428572,1,26 -stapler,-0.07166666666666668,0.27666666666666667,0.6,0.32952380952380955,1,26 -onion,-0.0016666666666666635,0.23833333333333334,0.6166666666666666,0.320952380952381,1,26 -bag,-0.17166666666666666,0.32333333333333336,0.4666666666666666,0.3504761904761905,1,26 -sponge,-0.06833333333333333,0.28500000000000003,0.55,0.34380952380952384,1,26 -zero,0,0,0,0,1,26 -computer,0.0016666666666666663,0.24333333333333335,0.7,0.32571428571428573,1,26 -special,0.033333333333333326,0.2533333333333333,0.7666666666666666,0.33619047619047615,1,26 -colgate,-0.06833333333333333,0.24666666666666667,0.5333333333333333,0.3161904761904762,1,26 -leaf,-0.004999999999999999,0.29333333333333333,0.5833333333333333,0.3638095238095238,1,26 -tube,-0.09166666666666667,0.29833333333333334,0.5833333333333333,0.3476190476190476,1,26 -cell,-0.12166666666666666,0.28500000000000003,0.5333333333333333,0.32761904761904764,1,26 -mug,0.008333333333333331,0.25833333333333336,0.6499999999999999,0.34571428571428575,1,26 -yogurt,-0.01333333333333333,0.27666666666666667,0.6166666666666666,0.3504761904761905,1,26 -plantain,0.08666666666666667,0.24333333333333332,0.7333333333333333,0.3504761904761905,1,26 -red,0.44333333333333325,0.44333333333333325,1.0,0.6059523809523809,3,27 -pepper,-0.19666666666666666,0.30166666666666664,0.4499999999999999,0.3276190476190476,1,26 -wheat,-0.04666666666666666,0.23166666666666663,0.6333333333333333,0.3047619047619048,1,26 -kleenex,-0.15499999999999997,0.33666666666666667,0.5666666666666667,0.36190476190476195,1,26 -toothbrush,-0.08,0.26333333333333336,0.5833333333333333,0.32285714285714284,1,26 -binder,-0.125,0.325,0.5166666666666666,0.3657142857142857,1,26 -baseball,-0.10999999999999999,0.28500000000000003,0.5666666666666667,0.33714285714285713,1,26 -pliers,-0.16333333333333333,0.2966666666666667,0.4666666666666666,0.3295238095238095,1,26 -paste,0,0,0,0,1,26 -box,0.37833333333333335,0.37833333333333335,1.0,0.5264285714285714,3,26 -water,-0.006666666666666659,0.28,0.7,0.35523809523809524,1,26 -thins,0.026666666666666672,0.25,0.7166666666666666,0.33428571428571424,1,26 -package,-0.11333333333333333,0.28500000000000003,0.5833333333333333,0.3276190476190476,1,26 -k,-0.09666666666666665,0.2816666666666666,0.5666666666666667,0.33904761904761904,1,26 -jelly,-0.04333333333333333,0.2683333333333333,0.5999999999999999,0.3371428571428572,1,26 -fruit,0.255,0.3666666666666667,0.8666666666666666,0.46904761904761905,2,26 -apple,0.04,0.23500000000000001,0.7166666666666666,0.3276190476190476,1,25 -bell,0.0033333333333333327,0.2866666666666667,0.7,0.3638095238095238,1,26 -battery,0.025,0.26666666666666666,0.6666666666666666,0.35523809523809524,1,26 -jar,-0.05500000000000001,0.265,0.6333333333333333,0.3295238095238095,1,26 -bound,-0.11333333333333333,0.29333333333333333,0.5666666666666667,0.34095238095238095,1,26 -lettuce,-0.01666666666666667,0.29500000000000004,0.6166666666666666,0.36380952380952386,1,26 -brush,-0.06,0.27166666666666667,0.65,0.32761904761904764,1,26 -scissors,-0.03333333333333333,0.25166666666666665,0.5666666666666667,0.32285714285714284,1,26 -lime,0.0066666666666666706,0.26333333333333336,0.6666666666666666,0.3438095238095238,1,25 -toothpaste,0.019999999999999997,0.2566666666666667,0.7166666666666666,0.3361904761904762,1,26 -top,0.006666666666666665,0.265,0.6666666666666666,0.34380952380952384,1,26 -spiral,-0.01333333333333333,0.23833333333333334,0.5999999999999999,0.32285714285714284,1,26 -handles,0.07666666666666666,0.23833333333333334,0.7333333333333333,0.3390476190476191,1,25 -camera,-0.03333333333333334,0.265,0.5999999999999999,0.3361904761904762,1,26 -eraser,0.05833333333333333,0.24333333333333332,0.6833333333333333,0.34095238095238095,1,26 -creamer,0,0,0,0,1,26 -white,0.31000000000000005,0.31000000000000005,1.0,0.45595238095238094,5,22 -banana,-0.05499999999999999,0.2683333333333333,0.6,0.3295238095238095,1,26 -pitcher,-0.048333333333333325,0.2666666666666667,0.5999999999999999,0.3323809523809524,1,26 -phone,-0.014999999999999996,0.27666666666666667,0.6166666666666666,0.3485714285714286,1,26 -stick,0.003333333333333327,0.2733333333333333,0.6666666666666666,0.3476190476190476,1,25 -cereal,-0.05500000000000001,0.2683333333333333,0.5999999999999999,0.3295238095238095,1,26 -bulb,0.26166666666666666,0.3716666666666667,0.8333333333333333,0.4947619047619048,2,27 -hair,-0.0016666666666666635,0.24833333333333335,0.6499999999999999,0.33238095238095244,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,-0.10499999999999998,0.2983333333333333,0.6166666666666666,0.3457142857142857,1,26 -can,0.28500000000000003,0.3766666666666667,0.9,0.48809523809523814,2,25 -coca,-0.03333333333333334,0.295,0.5333333333333333,0.35714285714285715,1,26 -crackers,-0.13,0.32,0.5666666666666667,0.36,1,26 -plate,-0.10833333333333332,0.27666666666666667,0.4833333333333333,0.3295238095238095,1,25 -calculator,-0.016666666666666666,0.275,0.5666666666666667,0.3504761904761905,1,26 -tissues,-0.11833333333333333,0.2966666666666667,0.5333333333333333,0.33904761904761904,1,26 -juice,-0.18,0.3283333333333333,0.4999999999999999,0.3552380952380953,1,26 -pink,0.01833333333333334,0.2633333333333333,0.7166666666666666,0.3438095238095238,1,25 -lemon,0.1,0.22000000000000003,0.75,0.3276190476190476,1,26 -peach,-0.03666666666666667,0.27166666666666667,0.65,0.34,1,26 -bowl,-0.049999999999999996,0.26999999999999996,0.5666666666666667,0.33238095238095244,1,26 -camouflage,0,0,0,0,1,26 -digital,-0.05,0.3,0.6333333333333333,0.36380952380952386,1,26 -blue,0.0033333333333333296,0.24833333333333335,0.7,0.3295238095238095,1,25 -used,0.008333333333333335,0.25666666666666665,0.5833333333333333,0.3390476190476191,1,24 -energizer,0,0,0,0,1,26 -pear,0.09,0.2733333333333334,0.8166666666666667,0.37523809523809526,1,26 -ball,-0.12999999999999998,0.3116666666666667,0.5666666666666667,0.3504761904761905,1,25 -notebook,-0.046666666666666655,0.27,0.6333333333333332,0.3390476190476191,1,26 -garlic,-0.021666666666666657,0.23833333333333334,0.6,0.3180952380952381,1,26 -cleaning,-0.04333333333333333,0.29333333333333333,0.5666666666666667,0.3552380952380953,1,26 -pair,0.25,0.3733333333333333,0.8333333333333334,0.47857142857142854,2,27 -container,-0.09666666666666665,0.30999999999999994,0.5833333333333333,0.3571428571428571,1,25 -tomato,-0.06333333333333332,0.25,0.4999999999999999,0.3180952380952381,1,26 -cellphone,0.04,0.25999999999999995,0.7166666666666666,0.3504761904761905,1,26 -potato,0.033333333333333326,0.23000000000000004,0.6333333333333333,0.31999999999999995,1,25 -light,0.22666666666666666,0.305,0.9,0.4161904761904762,2,26 -green,0.40166666666666667,0.40166666666666667,1.0,0.5476190476190477,3,25 -bottle,0.32999999999999996,0.3883333333333333,0.9333333333333332,0.5185714285714286,2,26 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: 0.012901234567901236 -F1-Score: 0.33943562610229283 -Precision: 0.26871913580246914 -Recall: 0.6123456790123456 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.06999999999999999,0.265,0.6833333333333333,0.3638095238095238,1,24 -yellow,0.39,0.39,1.0,0.5419047619047619,6,24 -looks,-0.018333333333333326,0.23499999999999996,0.6833333333333333,0.3161904761904762,1,24 -keyboard,-0.17166666666666666,0.3283333333333333,0.4999999999999999,0.35714285714285715,1,26 -glue,-0.04666666666666667,0.2766666666666667,0.6,0.34095238095238095,1,26 -milk,0,0,0,0,1,26 -cola,-0.10999999999999999,0.2683333333333333,0.5666666666666667,0.320952380952381,1,26 -flashlight,-0.035,0.24666666666666667,0.65,0.31619047619047624,1,26 -cup,0.05,0.275,0.7666666666666666,0.3638095238095238,1,26 -folded,-0.18833333333333332,0.29833333333333334,0.4833333333333333,0.32952380952380955,1,26 -jam,0.008333333333333331,0.22999999999999998,0.5833333333333333,0.3133333333333333,1,26 -black,0.6633333333333333,0.5516666666666665,1.0,0.6954761904761904,6,21 -orange,0.39,0.39,1.0,0.530952380952381,3,26 -folder,0.04,0.29,0.6833333333333333,0.37333333333333335,1,26 -soccer,-0.1,0.30333333333333334,0.5333333333333332,0.35523809523809524,1,26 -hat,-0.07166666666666667,0.24333333333333332,0.5333333333333333,0.31142857142857144,1,26 -brown,0.26,0.31333333333333335,0.9333333333333332,0.440952380952381,2,24 -coffee,0.019999999999999997,0.25666666666666665,0.7166666666666666,0.3361904761904762,1,25 -handle,-0.12499999999999997,0.29500000000000004,0.5166666666666666,0.34095238095238095,1,25 -food,-0.1433333333333333,0.29000000000000004,0.5499999999999999,0.33238095238095244,1,24 -towel,-0.01333333333333333,0.2816666666666666,0.65,0.3571428571428571,1,26 -chips,-0.19166666666666665,0.33166666666666667,0.4666666666666666,0.3476190476190476,1,26 -stapler,-0.03333333333333334,0.27,0.5666666666666667,0.33904761904761904,1,26 -onion,-0.06666666666666668,0.2566666666666667,0.5333333333333333,0.32476190476190475,1,26 -bag,-0.05000000000000001,0.25,0.5499999999999999,0.32095238095238093,1,26 -sponge,-0.25,0.3333333333333333,0.4666666666666666,0.34095238095238095,1,26 -zero,0,0,0,0,1,26 -computer,-0.01333333333333333,0.2866666666666666,0.65,0.3619047619047619,1,26 -special,-0.07666666666666666,0.29,0.6333333333333332,0.34095238095238095,1,26 -colgate,-0.07666666666666666,0.29833333333333334,0.6333333333333333,0.3504761904761905,1,26 -leaf,-0.14666666666666667,0.30666666666666664,0.5166666666666666,0.34095238095238095,1,26 -tube,-0.06833333333333334,0.2983333333333333,0.6833333333333333,0.3504761904761905,1,26 -cell,0.0066666666666666706,0.2633333333333333,0.6333333333333333,0.3390476190476191,1,26 -mug,-0.08,0.26999999999999996,0.6666666666666666,0.3247619047619047,1,25 -yogurt,-0.016666666666666673,0.22333333333333333,0.5999999999999999,0.30666666666666664,1,26 -plantain,-0.09666666666666666,0.31166666666666665,0.5833333333333333,0.3571428571428571,1,26 -red,0.3183333333333333,0.3183333333333333,1.0,0.46261904761904765,3,25 -pepper,-0.1,0.2566666666666667,0.5166666666666666,0.3180952380952381,1,26 -wheat,-0.11333333333333333,0.32833333333333337,0.5,0.3666666666666667,1,26 -kleenex,-0.14166666666666666,0.2866666666666667,0.4666666666666666,0.33238095238095244,1,26 -toothbrush,-0.10166666666666668,0.29833333333333334,0.5833333333333333,0.34380952380952384,1,26 -binder,-0.06333333333333332,0.315,0.5999999999999999,0.3685714285714286,1,26 -baseball,-0.09166666666666666,0.27,0.5333333333333333,0.32761904761904764,1,26 -pliers,-0.05500000000000001,0.24666666666666667,0.6,0.31142857142857144,1,26 -paste,0,0,0,0,1,26 -box,0.4466666666666666,0.4466666666666666,1.0,0.6007142857142858,3,26 -water,0.12666666666666668,0.21833333333333332,0.8833333333333332,0.33238095238095233,1,26 -thins,-0.0016666666666666635,0.25833333333333336,0.6666666666666666,0.3342857142857143,1,26 -package,-0.10833333333333332,0.2783333333333333,0.4833333333333333,0.3323809523809524,1,26 -k,-0.08,0.31999999999999995,0.5499999999999999,0.3685714285714286,1,26 -jelly,-0.2333333333333333,0.35,0.5333333333333332,0.35238095238095235,1,26 -fruit,0.25166666666666665,0.36,0.8666666666666668,0.46571428571428564,2,26 -apple,0.034999999999999996,0.26833333333333337,0.8166666666666667,0.34571428571428575,1,25 -bell,-0.12166666666666666,0.295,0.5666666666666667,0.3361904761904762,1,26 -battery,-0.026666666666666665,0.26333333333333336,0.6499999999999999,0.33428571428571435,1,26 -jar,0.011666666666666664,0.26999999999999996,0.7,0.35238095238095235,1,26 -bound,-0.1633333333333333,0.29333333333333333,0.5,0.3323809523809524,1,26 -lettuce,-0.07166666666666667,0.2616666666666666,0.5833333333333333,0.3257142857142857,1,26 -brush,0.01833333333333334,0.25,0.7166666666666666,0.33238095238095244,1,26 -scissors,-0.09666666666666665,0.32,0.5833333333333333,0.3638095238095238,1,26 -lime,-0.17166666666666666,0.315,0.4666666666666666,0.3438095238095239,1,25 -toothpaste,0.006666666666666665,0.2766666666666667,0.6666666666666666,0.35238095238095235,1,26 -top,-0.08,0.29500000000000004,0.5833333333333333,0.3504761904761905,1,26 -spiral,0.015000000000000005,0.2683333333333333,0.7166666666666666,0.34571428571428575,1,26 -handles,-0.07999999999999999,0.31999999999999995,0.5499999999999999,0.3685714285714286,1,25 -camera,-0.08166666666666665,0.28833333333333333,0.6333333333333333,0.33904761904761904,1,26 -eraser,-0.07499999999999998,0.2916666666666667,0.5333333333333333,0.35238095238095235,1,26 -creamer,0,0,0,0,1,26 -white,0.45166666666666677,0.45166666666666677,1.0,0.6061904761904761,5,21 -banana,0.08166666666666667,0.21833333333333335,0.7833333333333333,0.3180952380952381,1,26 -pitcher,-0.14166666666666666,0.32833333333333337,0.5666666666666667,0.359047619047619,1,26 -phone,-0.07166666666666667,0.25999999999999995,0.5833333333333333,0.32285714285714284,1,26 -stick,-0.05833333333333333,0.2816666666666667,0.5166666666666666,0.34380952380952384,1,25 -cereal,0.011666666666666667,0.2683333333333333,0.6666666666666666,0.3476190476190476,1,26 -bulb,0.3066666666666667,0.41833333333333333,0.8666666666666666,0.5257142857142857,2,26 -hair,-0.13833333333333334,0.2733333333333333,0.4999999999999999,0.32285714285714284,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.041666666666666664,0.24499999999999997,0.6666666666666666,0.340952380952381,1,26 -can,0.28,0.37333333333333335,0.8666666666666668,0.4966666666666667,2,25 -coca,-0.041666666666666664,0.30333333333333334,0.65,0.3638095238095238,1,26 -crackers,-0.056666666666666664,0.27,0.6,0.3323809523809524,1,26 -plate,0.053333333333333344,0.24,0.7166666666666666,0.3390476190476191,1,25 -calculator,-0.05166666666666666,0.25166666666666665,0.6333333333333333,0.320952380952381,1,26 -tissues,-0.03833333333333333,0.24333333333333332,0.5833333333333333,0.32285714285714284,1,26 -juice,-0.07666666666666666,0.285,0.6333333333333332,0.33904761904761904,1,26 -pink,0.06166666666666667,0.22666666666666663,0.7333333333333333,0.32285714285714284,1,25 -lemon,0.11166666666666666,0.23500000000000001,0.75,0.34571428571428575,1,26 -peach,-0.05166666666666666,0.315,0.7333333333333333,0.3685714285714286,1,26 -bowl,0.05166666666666666,0.24666666666666667,0.7333333333333333,0.3371428571428572,1,26 -camouflage,0,0,0,0,1,26 -digital,0.03333333333333334,0.24333333333333332,0.6666666666666666,0.3361904761904762,1,26 -blue,-0.09666666666666665,0.2866666666666666,0.5999999999999999,0.3457142857142857,1,25 -used,-0.06333333333333332,0.31166666666666665,0.5499999999999999,0.3685714285714286,1,23 -energizer,0,0,0,0,1,26 -pear,-0.22999999999999998,0.34833333333333333,0.4499999999999999,0.35523809523809524,1,26 -ball,-0.20833333333333331,0.32833333333333337,0.45,0.3457142857142857,1,25 -notebook,-0.14166666666666666,0.29166666666666663,0.5166666666666666,0.3323809523809524,1,26 -garlic,-0.004999999999999999,0.265,0.7,0.34095238095238095,1,26 -cleaning,0.041666666666666664,0.24499999999999994,0.7333333333333333,0.3295238095238095,1,26 -pair,0.23666666666666666,0.27666666666666667,0.9333333333333332,0.40714285714285714,2,27 -container,0.015000000000000008,0.23500000000000001,0.7,0.32285714285714284,1,25 -tomato,-0.1633333333333333,0.3116666666666667,0.4999999999999999,0.34857142857142864,1,26 -cellphone,-0.06666666666666667,0.3,0.5833333333333333,0.36190476190476195,1,26 -potato,0.10333333333333335,0.20166666666666666,0.8,0.30666666666666664,1,25 -light,0.31166666666666665,0.385,0.9,0.5185714285714286,2,25 -green,0.3983333333333333,0.3983333333333333,1.0,0.5592857142857143,3,24 -bottle,0.30500000000000005,0.425,0.8666666666666666,0.5304761904761904,2,25 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: 0.0006944444444444482 -F1-Score: 0.3394664902998237 -Precision: 0.27254629629629634 -Recall: 0.6074074074074072 diff --git a/Validation/UW_raw_75_object_0.05.csv b/Validation/UW_raw_75_object_0.05.csv deleted file mode 100644 index a53dd48..0000000 --- a/Validation/UW_raw_75_object_0.05.csv +++ /dev/null @@ -1,2875 +0,0 @@ -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.73,1.0,0.6499999999999999,0.75,1,25 -yellow,1.0,1.0,1.0,1.0,6,23 -looks,0.505,0.95,0.5166666666666666,0.6166666666666666,1,24 -keyboard,0.655,1.0,0.6,0.7166666666666667,1,26 -glue,0.7249999999999999,1.0,0.7,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -cup,0.6116666666666666,0.5,0.7666666666666666,0.58,1,26 -folded,0.6433333333333333,1.0,0.6,0.7166666666666667,1,26 -jam,0.61,1.0,0.55,0.6833333333333333,1,26 -black,0.9266666666666667,0.8166666666666667,1.0,0.8799999999999999,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.74,1.0,0.5499999999999999,0.6833333333333333,1,26 -soccer,0.6333333333333333,1.0,0.4833333333333332,0.6333333333333333,1,26 -hat,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -brown,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -handle,0.78,1.0,0.6666666666666666,0.7666666666666666,1,25 -food,0.7716666666666667,1.0,0.6333333333333333,0.75,1,25 -towel,0.5799999999999998,1.0,0.5166666666666666,0.65,1,26 -chips,0.7433333333333334,1.0,0.65,0.75,1,26 -stapler,0.7,1.0,0.5499999999999999,0.6833333333333333,1,26 -onion,0.655,1.0,0.6499999999999999,0.75,1,26 -bag,0.605,1.0,0.5833333333333333,0.7,1,26 -sponge,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.5599999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -special,0.7683333333333333,1.0,0.6499999999999999,0.75,1,26 -colgate,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -leaf,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.7633333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -cell,0.7,1.0,0.5499999999999999,0.6833333333333333,1,26 -mug,0.7249999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -yogurt,0.5499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.7433333333333333,1.0,0.6499999999999999,0.75,1,26 -red,0.695,0.5966666666666667,1.0,0.7264285714285714,3,24 -pepper,0.5333333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -wheat,0.8800000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -kleenex,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -toothbrush,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -binder,0.6083333333333332,1.0,0.4833333333333332,0.6333333333333333,1,26 -baseball,0.4666666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -pliers,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333334,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.4383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -thins,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -package,0.5599999999999999,1.0,0.5833333333333333,0.7,1,26 -k,0.585,1.0,0.4833333333333332,0.6333333333333333,1,26 -jelly,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -fruit,0.6683333333333332,0.5,0.9333333333333332,0.6233333333333333,2,25 -apple,0.7833333333333334,0.9,0.7166666666666666,0.7333333333333333,1,25 -bell,0.5966666666666667,1.0,0.6,0.7166666666666667,1,26 -battery,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -jar,0.6016666666666667,1.0,0.41666666666666663,0.5833333333333333,1,26 -bound,0.575,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.6216666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -brush,0.675,1.0,0.65,0.75,1,26 -scissors,0.75,1.0,0.7333333333333333,0.8,1,26 -lime,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -toothpaste,0.755,1.0,0.6833333333333333,0.7833333333333333,1,26 -top,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -spiral,0.8233333333333333,1.0,0.7166666666666666,0.8,1,26 -handles,0.805,1.0,0.7333333333333333,0.8166666666666667,1,25 -camera,0.6966666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -eraser,0.5966666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.7066666666666667,0.6016666666666667,1.0,0.7421428571428571,5,21 -banana,0.7983333333333332,1.0,0.6333333333333333,0.75,1,26 -pitcher,0.6466666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.6716666666666666,1.0,0.55,0.6833333333333333,1,26 -stick,0.5166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,25 -cereal,0.5083333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -bulb,0.8216666666666667,1.0,0.8,0.8800000000000001,2,26 -hair,0.5166666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -can,0.9,1.0,0.8666666666666668,0.9200000000000002,2,26 -coca,0.5566666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.8433333333333334,1.0,0.7,0.8,1,26 -plate,0.705,1.0,0.6333333333333333,0.7333333333333333,1,25 -calculator,0.6516666666666666,0.85,0.6666666666666666,0.6666666666666667,1,26 -tissues,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.7933333333333333,1.0,0.7,0.7833333333333333,1,26 -pink,0.6216666666666667,1.0,0.55,0.6833333333333333,1,25 -lemon,0.47333333333333333,0.7,0.5333333333333333,0.5399999999999999,1,26 -peach,0.35,1.0,0.4166666666666667,0.5666666666666667,1,26 -bowl,0.5283333333333333,0.5,0.65,0.5366666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.625,1.0,0.5333333333333333,0.6666666666666667,1,26 -blue,0.6816666666666666,1.0,0.6,0.7166666666666667,1,25 -used,0.6833333333333333,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.6616666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -ball,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,25 -notebook,0.5499999999999999,1.0,0.5166666666666666,0.65,1,26 -garlic,0.7299999999999999,0.9,0.7166666666666666,0.7333333333333334,1,26 -cleaning,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -pair,0.9350000000000002,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.78,1.0,0.6499999999999999,0.75,1,25 -tomato,0.5266666666666666,0.8,0.6166666666666666,0.5833333333333334,1,26 -cellphone,0.5733333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -potato,0.6799999999999999,1.0,0.5833333333333333,0.7,1,25 -light,0.8916666666666666,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,0.9433333333333334,0.8666666666666666,1.0,0.9133333333333333,3,23 -bottle,1.0,1.0,1.0,1.0,2,26 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6460339506172839 -F1-Score: 0.6804497354497353 -Precision: 0.8933487654320986 -Recall: 0.607716049382716 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,24 -yellow,0.9466666666666667,0.85,1.0,0.9,6,25 -looks,0.6616666666666666,0.7,0.7166666666666666,0.6333333333333333,1,24 -keyboard,0.8633333333333333,1.0,0.75,0.8333333333333333,1,26 -glue,0.6966666666666665,1.0,0.6166666666666666,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6666666666666666,1.0,0.7,0.7833333333333333,1,26 -flashlight,0.7266666666666667,0.95,0.7,0.75,1,26 -cup,0.5683333333333334,0.5,0.7,0.5666666666666667,1,26 -folded,0.7016666666666667,1.0,0.6,0.7166666666666667,1,26 -jam,0.7133333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -black,0.8316666666666667,0.675,1.0,0.7923809523809524,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -soccer,0.5216666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -hat,0.735,1.0,0.6,0.7166666666666667,1,26 -brown,0.9333333333333332,1.0,0.9333333333333332,0.9600000000000002,2,25 -coffee,0.7083333333333333,1.0,0.65,0.75,1,26 -handle,0.4766666666666667,1.0,0.4833333333333333,0.6333333333333333,1,25 -food,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -towel,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -chips,0.715,1.0,0.5666666666666667,0.7,1,26 -stapler,0.8583333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -onion,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -bag,0.78,1.0,0.6833333333333333,0.7666666666666666,1,26 -sponge,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.48,1.0,0.5166666666666666,0.65,1,25 -special,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -colgate,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -leaf,0.7583333333333333,1.0,0.75,0.8166666666666667,1,26 -tube,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -cell,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -mug,0.58,1.0,0.5166666666666666,0.65,1,26 -yogurt,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.755,1.0,0.7,0.7833333333333333,1,26 -red,0.5883333333333333,0.445,1.0,0.5923809523809523,3,27 -pepper,0.6683333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -wheat,0.7983333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -kleenex,0.4999999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -toothbrush,0.41666666666666663,1.0,0.4833333333333332,0.6166666666666666,1,26 -binder,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -baseball,0.78,1.0,0.7,0.7833333333333333,1,26 -pliers,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6933333333333332,1.0,0.7,0.7833333333333333,1,26 -thins,0.625,1.0,0.5833333333333333,0.7,1,26 -package,0.4749999999999999,1.0,0.5499999999999999,0.6666666666666667,1,26 -k,0.835,1.0,0.7833333333333333,0.85,1,26 -jelly,0.5883333333333334,1.0,0.5166666666666666,0.65,1,26 -fruit,0.6733333333333332,0.5666666666666667,0.9,0.6533333333333333,2,25 -apple,0.575,0.9,0.5333333333333332,0.6,1,25 -bell,0.7433333333333333,1.0,0.7,0.7833333333333333,1,26 -battery,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -jar,0.6966666666666665,0.9,0.7,0.7166666666666667,1,26 -bound,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -lettuce,0.5433333333333332,1.0,0.45,0.6,1,26 -brush,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -scissors,0.525,1.0,0.55,0.6666666666666667,1,26 -lime,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -toothpaste,0.7466666666666666,1.0,0.6499999999999999,0.75,1,26 -top,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -spiral,0.58,1.0,0.5166666666666666,0.65,1,26 -handles,0.6583333333333334,1.0,0.6833333333333333,0.7666666666666666,1,25 -camera,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666666,1,26 -eraser,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.7566666666666667,0.6083333333333333,1.0,0.741904761904762,5,21 -banana,0.735,1.0,0.65,0.75,1,26 -pitcher,0.6633333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -phone,0.5933333333333334,1.0,0.45,0.6,1,26 -stick,0.5266666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -cereal,0.8166666666666668,1.0,0.7333333333333333,0.8166666666666668,1,26 -bulb,0.85,1.0,0.8333333333333334,0.9000000000000001,2,27 -hair,0.5266666666666666,0.95,0.5333333333333332,0.6333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -can,0.8550000000000001,1.0,0.8333333333333333,0.9,2,26 -coca,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -crackers,0.6,1.0,0.4833333333333333,0.6333333333333333,1,26 -plate,0.7816666666666666,1.0,0.6833333333333333,0.7833333333333334,1,25 -calculator,0.65,0.95,0.5666666666666667,0.6666666666666667,1,26 -tissues,0.63,1.0,0.6833333333333332,0.7666666666666666,1,26 -juice,0.5383333333333333,1.0,0.4166666666666667,0.5833333333333333,1,26 -pink,0.755,1.0,0.6666666666666666,0.7666666666666667,1,25 -lemon,0.6433333333333333,0.55,0.7333333333333333,0.5833333333333333,1,26 -peach,0.6799999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -bowl,0.3833333333333333,0.5,0.5833333333333333,0.51,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5549999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -blue,0.7083333333333333,1.0,0.5833333333333333,0.7,1,25 -used,0.785,1.0,0.6333333333333333,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.6799999999999999,1.0,0.6,0.7166666666666666,1,26 -ball,0.65,1.0,0.6166666666666666,0.7166666666666666,1,25 -notebook,0.6783333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -garlic,0.47333333333333333,1.0,0.4166666666666667,0.5833333333333333,1,26 -cleaning,0.7216666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -pair,0.8466666666666667,1.0,0.8,0.8800000000000001,2,27 -container,0.8,1.0,0.6,0.7333333333333334,1,25 -tomato,0.7116666666666667,0.8,0.6333333333333333,0.65,1,26 -cellphone,0.585,1.0,0.5166666666666666,0.65,1,26 -potato,0.6216666666666666,1.0,0.5833333333333333,0.7,1,25 -light,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,0.8699999999999999,0.7833333333333333,1.0,0.8714285714285716,3,24 -bottle,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.637067901234568 -F1-Score: 0.6757848324514991 -Precision: 0.8854475308641975 -Recall: 0.6078703703703704 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8666666666666666,1.0,0.8166666666666667,0.8666666666666666,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.6849999999999999,1.0,0.6499999999999999,0.75,1,24 -keyboard,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.375,1.0,0.4166666666666667,0.5666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.8016666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -flashlight,0.6066666666666667,1.0,0.5,0.65,1,26 -cup,0.4583333333333333,0.55,0.5999999999999999,0.53,1,26 -folded,0.6849999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -jam,0.58,1.0,0.4999999999999999,0.6333333333333333,1,26 -black,0.9666666666666668,0.9333333333333332,1.0,0.96,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.44666666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -soccer,0.6983333333333334,1.0,0.5666666666666667,0.7,1,26 -hat,0.74,1.0,0.5499999999999999,0.6833333333333333,1,26 -brown,0.9400000000000001,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.58,1.0,0.4666666666666666,0.6166666666666667,1,26 -handle,0.5716666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -food,0.73,1.0,0.65,0.75,1,26 -towel,0.5850000000000001,1.0,0.4833333333333333,0.6333333333333334,1,26 -chips,0.6900000000000001,1.0,0.5,0.65,1,26 -stapler,0.655,1.0,0.6499999999999999,0.75,1,26 -onion,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bag,0.5833333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -sponge,0.6833333333333333,1.0,0.6666666666666666,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.5549999999999999,1.0,0.5166666666666666,0.65,1,25 -special,0.7466666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -colgate,0.7566666666666667,1.0,0.6333333333333333,0.75,1,26 -leaf,0.7333333333333334,1.0,0.7166666666666666,0.8,1,26 -tube,0.7416666666666667,1.0,0.7166666666666666,0.8,1,26 -cell,0.57,0.7,0.6333333333333333,0.5733333333333335,1,26 -mug,0.7166666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -yogurt,0.8399999999999999,1.0,0.7333333333333333,0.8166666666666668,1,26 -plantain,0.71,1.0,0.6499999999999999,0.75,1,26 -red,0.8800000000000001,0.75,1.0,0.8166666666666667,3,27 -pepper,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -wheat,0.5166666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -kleenex,0.6,1.0,0.6166666666666666,0.7166666666666666,1,26 -toothbrush,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -binder,0.46333333333333326,1.0,0.4,0.5666666666666667,1,26 -baseball,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -pliers,0.7533333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.735,1.0,0.5666666666666667,0.7,1,26 -thins,0.7,1.0,0.65,0.75,1,26 -package,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -k,0.86,1.0,0.8333333333333333,0.8833333333333332,1,26 -jelly,0.7733333333333333,1.0,0.65,0.75,1,26 -fruit,0.9016666666666666,0.95,0.8999999999999998,0.9066666666666668,2,25 -apple,0.4666666666666666,1.0,0.4499999999999999,0.6,1,25 -bell,0.71,1.0,0.6499999999999999,0.75,1,26 -battery,0.5683333333333332,1.0,0.4333333333333333,0.6,1,26 -jar,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -bound,0.7716666666666666,1.0,0.7,0.7833333333333333,1,26 -lettuce,0.53,1.0,0.4666666666666666,0.6166666666666667,1,26 -brush,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -scissors,0.575,1.0,0.5333333333333333,0.6666666666666667,1,26 -lime,0.4933333333333333,1.0,0.5166666666666666,0.65,1,25 -toothpaste,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -top,0.6166666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.7066666666666667,1.0,0.5666666666666667,0.7,1,26 -handles,0.40499999999999997,0.5,0.6333333333333333,0.5266666666666667,1,25 -camera,0.775,1.0,0.7333333333333333,0.8166666666666667,1,26 -eraser,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.7316666666666667,0.5833333333333333,1.0,0.7228571428571428,5,21 -banana,0.705,1.0,0.6499999999999999,0.75,1,26 -pitcher,0.7233333333333334,1.0,0.5666666666666667,0.7,1,26 -phone,0.4466666666666666,0.65,0.5666666666666667,0.53,1,26 -stick,0.78,1.0,0.6666666666666666,0.7666666666666667,1,25 -cereal,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -bulb,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,27 -hair,0.7166666666666667,1.0,0.7,0.7833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6583333333333334,1.0,0.6166666666666666,0.7166666666666666,1,26 -can,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -coca,0.8,1.0,0.7,0.7833333333333333,1,26 -crackers,0.5166666666666666,1.0,0.4499999999999999,0.6,1,26 -plate,0.7766666666666666,1.0,0.6333333333333333,0.75,1,25 -calculator,0.61,1.0,0.5333333333333333,0.6666666666666667,1,26 -tissues,0.6333333333333333,1.0,0.6,0.7166666666666667,1,26 -juice,0.38999999999999996,0.5,0.6166666666666666,0.53,1,26 -pink,0.6016666666666666,1.0,0.4333333333333333,0.6,1,25 -lemon,0.6633333333333333,0.95,0.6833333333333333,0.7333333333333333,1,26 -peach,0.655,1.0,0.5999999999999999,0.7166666666666667,1,26 -bowl,0.41500000000000004,0.65,0.5833333333333333,0.54,1,26 -camouflage,0,0,0,0,1,26 -digital,0.735,1.0,0.6,0.7166666666666667,1,26 -blue,0.7483333333333333,1.0,0.6166666666666666,0.7333333333333334,1,25 -used,0.755,1.0,0.7166666666666666,0.8,1,24 -energizer,0,0,0,0,1,26 -pear,0.7166666666666666,1.0,0.7333333333333333,0.8,1,26 -ball,0.655,1.0,0.55,0.6833333333333333,1,25 -notebook,0.63,1.0,0.55,0.6833333333333333,1,26 -garlic,0.8016666666666665,1.0,0.7166666666666666,0.8,1,26 -cleaning,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -pair,1.0,1.0,1.0,1.0,2,27 -container,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666666,1,25 -tomato,0.5883333333333334,0.95,0.5499999999999999,0.65,1,26 -cellphone,0.485,0.6,0.6166666666666666,0.5433333333333333,1,26 -potato,0.5333333333333333,1.0,0.5499999999999999,0.6666666666666667,1,25 -light,0.8999999999999998,1.0,0.8999999999999998,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,26 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6404320987654323 -F1-Score: 0.6794091710758379 -Precision: 0.891358024691358 -Recall: 0.603858024691358 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666667,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.6333333333333333,0.95,0.6333333333333332,0.7,1,24 -keyboard,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -glue,0.7716666666666666,1.0,0.7,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -flashlight,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.6883333333333332,0.5,0.85,0.6166666666666667,1,26 -folded,0.6,1.0,0.5499999999999999,0.6833333333333333,1,26 -jam,0.71,1.0,0.7,0.7833333333333333,1,26 -black,0.8183333333333334,0.6083333333333333,1.0,0.7457142857142858,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -soccer,0.7899999999999999,1.0,0.6333333333333333,0.75,1,26 -hat,0.75,1.0,0.7166666666666666,0.8,1,26 -brown,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -coffee,0.605,1.0,0.6333333333333333,0.7333333333333333,1,26 -handle,0.6333333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -food,0.8216666666666667,1.0,0.7833333333333333,0.85,1,25 -towel,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -stapler,0.71,1.0,0.65,0.75,1,26 -onion,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -bag,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -sponge,0.75,1.0,0.6666666666666666,0.7666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -special,0.5499999999999999,1.0,0.5999999999999999,0.7,1,26 -colgate,0.55,1.0,0.5333333333333333,0.6666666666666666,1,26 -leaf,0.8716666666666665,1.0,0.7833333333333333,0.85,1,26 -tube,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -cell,0.3833333333333333,0.5,0.5166666666666666,0.4833333333333334,1,26 -mug,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -yogurt,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -plantain,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -red,0.9099999999999999,0.7999999999999999,1.0,0.8633333333333333,3,26 -pepper,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -wheat,0.785,1.0,0.6333333333333333,0.75,1,26 -kleenex,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -toothbrush,0.75,1.0,0.7,0.7833333333333333,1,26 -binder,0.8066666666666666,1.0,0.7166666666666666,0.8,1,26 -baseball,0.5666666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -pliers,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7066666666666668,1.0,0.6666666666666666,0.7666666666666667,1,26 -thins,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -package,0.5083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -k,0.4333333333333333,1.0,0.5333333333333332,0.65,1,26 -jelly,0.8216666666666665,1.0,0.7833333333333333,0.85,1,26 -fruit,0.77,0.5666666666666667,0.9666666666666666,0.6799999999999999,2,25 -apple,0.42333333333333334,0.9,0.4333333333333333,0.5333333333333333,1,25 -bell,0.7666666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -battery,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -jar,0.805,1.0,0.7166666666666666,0.8,1,26 -bound,0.8166666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -lettuce,0.7316666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -brush,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.75,1.0,0.6166666666666666,0.7333333333333334,1,26 -lime,0.73,1.0,0.7,0.7833333333333333,1,25 -toothpaste,0.5216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -top,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -handles,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -eraser,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,0.8033333333333333,0.6666666666666667,1.0,0.7980952380952381,5,21 -banana,0.905,1.0,0.8,0.8666666666666668,1,26 -pitcher,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -phone,0.25999999999999995,0.6,0.41666666666666663,0.47000000000000003,1,26 -stick,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -cereal,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -bulb,0.9199999999999999,1.0,0.8666666666666666,0.9199999999999999,2,27 -hair,0.6216666666666667,1.0,0.4999999999999999,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5716666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -can,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -coca,0.505,1.0,0.5166666666666666,0.65,1,26 -crackers,0.6366666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -plate,0.5883333333333333,1.0,0.5833333333333333,0.7,1,25 -calculator,0.6666666666666667,0.95,0.65,0.7166666666666667,1,26 -tissues,0.6433333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -juice,0.74,1.0,0.6166666666666666,0.7333333333333334,1,26 -pink,0.73,1.0,0.5999999999999999,0.7166666666666667,1,25 -lemon,0.5099999999999999,0.95,0.4833333333333333,0.6166666666666666,1,26 -peach,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -bowl,0.395,0.5,0.5833333333333333,0.51,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6383333333333333,1.0,0.55,0.6833333333333333,1,26 -blue,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -used,0.635,1.0,0.5333333333333333,0.6666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -ball,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -notebook,0.65,1.0,0.6833333333333333,0.7666666666666666,1,26 -garlic,0.6849999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -cleaning,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -pair,0.9400000000000001,1.0,0.9,0.9400000000000001,2,27 -container,0.78,1.0,0.6333333333333333,0.75,1,25 -tomato,0.5766666666666667,0.75,0.6333333333333332,0.6,1,26 -cellphone,0.34500000000000003,0.6,0.5499999999999999,0.51,1,26 -potato,0.7466666666666666,1.0,0.6833333333333333,0.7666666666666666,1,25 -light,0.9099999999999999,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,24 -bottle,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6511574074074075 -F1-Score: 0.689757495590829 -Precision: 0.88695987654321 -Recall: 0.6219135802469135 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7,1.0,0.5833333333333333,0.7,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.5383333333333333,0.95,0.4833333333333333,0.6,1,24 -keyboard,0.6683333333333332,1.0,0.6,0.7166666666666667,1,26 -glue,0.805,1.0,0.5833333333333333,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.4916666666666666,1.0,0.5,0.6333333333333333,1,26 -flashlight,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.31833333333333336,0.5,0.55,0.5033333333333333,1,26 -folded,0.705,1.0,0.5999999999999999,0.7166666666666666,1,26 -jam,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -black,0.8933333333333335,0.8,1.0,0.8780952380952382,6,21 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.55,1.0,0.5833333333333333,0.7,1,26 -soccer,0.69,1.0,0.55,0.6833333333333333,1,26 -hat,0.675,1.0,0.6833333333333333,0.7666666666666667,1,26 -brown,0.9349999999999999,1.0,0.9,0.9400000000000001,2,24 -coffee,0.3583333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -handle,0.5416666666666666,1.0,0.5166666666666666,0.65,1,25 -food,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -towel,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.675,1.0,0.75,0.8166666666666667,1,26 -stapler,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -onion,0.6633333333333333,1.0,0.5666666666666667,0.7,1,26 -bag,0.6883333333333332,1.0,0.5666666666666667,0.7,1,26 -sponge,0.6499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -special,0.7466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -colgate,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -leaf,0.6749999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -tube,0.63,1.0,0.5166666666666666,0.65,1,26 -cell,0.6033333333333333,0.7,0.6166666666666666,0.5833333333333333,1,26 -mug,0.5766666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -yogurt,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.7666666666666667,1.0,0.7,0.7833333333333333,1,26 -red,0.9233333333333335,0.8166666666666667,1.0,0.8799999999999999,3,26 -pepper,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -wheat,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -kleenex,0.585,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.7933333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -binder,0.6966666666666667,1.0,0.5666666666666667,0.7,1,26 -baseball,0.7416666666666666,1.0,0.6833333333333332,0.7666666666666666,1,26 -pliers,0.7516666666666667,1.0,0.6499999999999999,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -thins,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -package,0.6,1.0,0.5166666666666666,0.65,1,26 -k,0.605,1.0,0.5833333333333333,0.7,1,26 -jelly,0.7966666666666666,1.0,0.75,0.8166666666666667,1,26 -fruit,0.8533333333333333,0.8,0.9,0.8066666666666666,2,27 -apple,0.655,1.0,0.5833333333333333,0.7,1,25 -bell,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -battery,0.6966666666666667,1.0,0.65,0.75,1,26 -jar,0.5816666666666668,1.0,0.4833333333333333,0.6333333333333333,1,26 -bound,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.7433333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -brush,0.6333333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -scissors,0.5666666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -lime,0.7433333333333334,1.0,0.7,0.7833333333333333,1,25 -toothpaste,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -top,0.6883333333333332,1.0,0.5666666666666667,0.7,1,26 -spiral,0.6316666666666666,1.0,0.5,0.65,1,26 -handles,0.575,1.0,0.5499999999999999,0.6666666666666666,1,25 -camera,0.6249999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -eraser,0.59,1.0,0.4999999999999999,0.65,1,26 -creamer,0,0,0,0,1,26 -white,0.7716666666666667,0.5666666666666667,1.0,0.7033333333333334,5,22 -banana,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -pitcher,0.7366666666666667,1.0,0.5666666666666667,0.7,1,26 -phone,0.36000000000000004,0.8,0.5333333333333333,0.5399999999999999,1,26 -stick,0.585,1.0,0.5,0.65,1,25 -cereal,0.5166666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -bulb,0.9266666666666665,1.0,0.9,0.9400000000000001,2,27 -hair,0.6499999999999999,1.0,0.6333333333333333,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7133333333333334,1.0,0.7,0.7833333333333333,1,26 -can,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -coca,0.6883333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -crackers,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.7133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -calculator,0.6066666666666667,0.6,0.6666666666666666,0.5800000000000001,1,26 -tissues,0.8883333333333333,1.0,0.8,0.8666666666666668,1,26 -juice,0.7666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -pink,0.78,1.0,0.7166666666666666,0.8,1,25 -lemon,0.5766666666666667,0.75,0.6333333333333333,0.5833333333333334,1,26 -peach,0.6416666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.49833333333333335,0.5,0.6499999999999999,0.5366666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.675,1.0,0.6166666666666666,0.7166666666666666,1,26 -blue,0.5766666666666667,1.0,0.4833333333333334,0.6333333333333333,1,25 -used,0.7,1.0,0.7,0.7833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6933333333333334,1.0,0.55,0.6833333333333333,1,26 -ball,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -notebook,0.7166666666666667,1.0,0.7499999999999999,0.8166666666666667,1,26 -garlic,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -cleaning,0.8016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -pair,0.8816666666666666,1.0,0.8333333333333333,0.9,2,26 -container,0.7849999999999999,1.0,0.6333333333333333,0.75,1,25 -tomato,0.625,0.95,0.5333333333333333,0.6333333333333333,1,26 -cellphone,0.635,0.5,0.7,0.5666666666666667,1,26 -potato,0.6433333333333333,1.0,0.5833333333333333,0.7,1,25 -light,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6466666666666667 -F1-Score: 0.6832848324514991 -Precision: 0.8910493827160493 -Recall: 0.6101851851851853 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.42666666666666664,1.0,0.4333333333333333,0.5833333333333333,1,24 -yellow,0.8816666666666668,0.7833333333333334,1.0,0.8666666666666666,6,24 -looks,0.5433333333333332,0.8,0.6666666666666666,0.6166666666666666,1,24 -keyboard,0.6216666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -glue,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.655,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.5466666666666666,0.9,0.5833333333333333,0.6333333333333333,1,26 -cup,0.3533333333333334,0.5,0.6333333333333332,0.5266666666666667,1,25 -folded,0.5683333333333334,1.0,0.5333333333333332,0.6666666666666666,1,26 -jam,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -black,1.0,1.0,1.0,1.0,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -soccer,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333334,1,26 -hat,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.8216666666666667,1.0,0.8,0.8800000000000001,2,24 -coffee,0.5966666666666667,1.0,0.5,0.65,1,25 -handle,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -food,0.75,1.0,0.6666666666666666,0.7666666666666667,1,25 -towel,0.75,1.0,0.5666666666666667,0.7,1,26 -chips,0.5916666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -stapler,0.6583333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -onion,0.73,1.0,0.6333333333333333,0.75,1,26 -bag,0.6833333333333333,1.0,0.7333333333333333,0.8,1,26 -sponge,0.6933333333333334,1.0,0.65,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.7549999999999999,1.0,0.6666666666666666,0.7666666666666667,1,25 -special,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -colgate,0.5666666666666667,1.0,0.5999999999999999,0.7,1,26 -leaf,0.7083333333333333,1.0,0.7166666666666666,0.8,1,26 -tube,0.7733333333333332,1.0,0.5833333333333333,0.7166666666666667,1,26 -cell,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -mug,0.5683333333333334,1.0,0.4833333333333333,0.6333333333333334,1,25 -yogurt,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -plantain,0.505,0.9,0.5166666666666666,0.5833333333333334,1,26 -red,0.8800000000000001,0.75,1.0,0.8266666666666665,3,26 -pepper,0.7016666666666667,1.0,0.6,0.7166666666666667,1,26 -wheat,0.36666666666666664,1.0,0.38333333333333336,0.55,1,26 -kleenex,0.6166666666666666,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.8416666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -binder,0.475,1.0,0.41666666666666663,0.5833333333333333,1,26 -baseball,0.7066666666666668,1.0,0.6,0.7166666666666667,1,26 -pliers,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -thins,0.7150000000000001,1.0,0.5666666666666667,0.7,1,26 -package,0.6633333333333333,0.75,0.5833333333333333,0.6,1,26 -k,0.7183333333333333,1.0,0.65,0.75,1,26 -jelly,0.765,1.0,0.6333333333333333,0.75,1,26 -fruit,0.6616666666666666,0.5333333333333333,0.9,0.6266666666666667,2,25 -apple,0.5516666666666665,0.95,0.4666666666666666,0.6,1,26 -bell,0.7666666666666666,1.0,0.75,0.8166666666666667,1,26 -battery,0.6966666666666667,0.95,0.6,0.6833333333333333,1,26 -jar,0.6883333333333332,1.0,0.5666666666666667,0.7,1,26 -bound,0.5933333333333333,1.0,0.4833333333333332,0.6333333333333333,1,26 -lettuce,0.7633333333333334,0.8,0.7666666666666666,0.7,1,26 -brush,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -scissors,0.5566666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -lime,0.8133333333333332,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.74,1.0,0.65,0.75,1,26 -top,0.7533333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -spiral,0.63,1.0,0.5333333333333333,0.6666666666666667,1,26 -handles,0.7266666666666667,1.0,0.5666666666666667,0.7,1,25 -camera,0.6683333333333332,1.0,0.65,0.75,1,26 -eraser,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.7866666666666666,0.65,1.0,0.7828571428571427,5,20 -banana,0.7883333333333333,0.95,0.6666666666666666,0.7333333333333333,1,26 -pitcher,0.7583333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -phone,0.6633333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -stick,0.5349999999999999,1.0,0.5166666666666666,0.65,1,25 -cereal,0.7466666666666667,1.0,0.6,0.7166666666666667,1,26 -bulb,0.8766666666666666,1.0,0.8333333333333333,0.9,2,27 -hair,0.6566666666666666,0.7,0.7333333333333333,0.6,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7133333333333334,0.9,0.7166666666666666,0.7333333333333333,1,26 -can,0.9016666666666667,1.0,0.8666666666666668,0.9200000000000002,2,24 -coca,0.8066666666666666,1.0,0.6333333333333333,0.75,1,26 -crackers,0.7133333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -plate,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666667,1,25 -calculator,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -tissues,0.5683333333333332,1.0,0.4333333333333333,0.6,1,26 -juice,0.6066666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -pink,0.755,1.0,0.7666666666666666,0.8333333333333333,1,25 -lemon,0.36,0.5,0.5166666666666666,0.4833333333333334,1,26 -peach,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.25,0.5,0.5166666666666666,0.4833333333333334,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7483333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -blue,0.5499999999999999,0.95,0.5666666666666667,0.65,1,25 -used,0.39999999999999997,1.0,0.5499999999999999,0.6666666666666666,1,23 -energizer,0,0,0,0,1,26 -pear,0.6133333333333333,1.0,0.5166666666666666,0.65,1,26 -ball,0.78,1.0,0.6333333333333333,0.75,1,25 -notebook,0.6583333333333333,1.0,0.5166666666666666,0.65,1,26 -garlic,0.8416666666666666,0.9,0.8333333333333333,0.8166666666666667,1,26 -cleaning,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -pair,0.8483333333333333,1.0,0.8,0.8800000000000001,2,27 -container,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -tomato,0.585,0.85,0.6833333333333333,0.6666666666666667,1,26 -cellphone,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -potato,0.76,1.0,0.6,0.7166666666666667,1,25 -light,0.8300000000000001,1.0,0.8,0.8800000000000001,2,27 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9266666666666665,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6406481481481483 -F1-Score: 0.6771252204585538 -Precision: 0.8844135802469137 -Recall: 0.6070987654320987 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6083333333333333,1.0,0.5166666666666666,0.65,1,24 -yellow,0.9333333333333333,0.8333333333333333,1.0,0.8933333333333333,6,24 -looks,0.5549999999999999,0.9,0.55,0.6,1,24 -keyboard,0.7716666666666667,1.0,0.7,0.7833333333333333,1,26 -glue,0.705,1.0,0.5999999999999999,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.875,1.0,0.8166666666666667,0.8666666666666666,1,26 -flashlight,0.5766666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.5633333333333332,0.65,0.6666666666666666,0.5833333333333333,1,26 -folded,0.655,1.0,0.5166666666666666,0.65,1,26 -jam,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.7866666666666666,0.6416666666666667,1.0,0.7771428571428572,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.5266666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -soccer,0.6966666666666667,1.0,0.65,0.75,1,26 -hat,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -brown,0.8766666666666667,1.0,0.8333333333333334,0.9000000000000001,2,25 -coffee,0.6966666666666667,1.0,0.6833333333333333,0.7666666666666666,1,25 -handle,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -food,0.735,1.0,0.65,0.75,1,25 -towel,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -chips,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.5883333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -onion,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -bag,0.6716666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -sponge,0.725,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.6716666666666666,1.0,0.5833333333333333,0.7,1,25 -special,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -colgate,0.6166666666666667,1.0,0.55,0.6833333333333333,1,26 -leaf,0.7583333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -tube,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -cell,0.6933333333333334,1.0,0.5166666666666666,0.6666666666666667,1,26 -mug,0.7183333333333333,1.0,0.5666666666666667,0.7,1,25 -yogurt,0.705,1.0,0.5333333333333333,0.6666666666666667,1,26 -plantain,0.5683333333333332,1.0,0.4666666666666666,0.6166666666666667,1,26 -red,0.5433333333333333,0.4116666666666666,1.0,0.5623809523809523,3,26 -pepper,0.655,1.0,0.5999999999999999,0.7166666666666667,1,26 -wheat,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -kleenex,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -toothbrush,0.4333333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -binder,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.7933333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -pliers,0.5633333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7466666666666667,1.0,0.65,0.75,1,26 -thins,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -package,0.6816666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -k,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.6683333333333332,1.0,0.6499999999999999,0.75,1,26 -fruit,0.7616666666666666,0.6333333333333334,0.9666666666666666,0.7566666666666666,2,26 -apple,0.3166666666666667,0.7,0.45,0.4966666666666667,1,25 -bell,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -battery,0.6499999999999999,0.95,0.5333333333333333,0.6333333333333333,1,26 -jar,0.6766666666666665,0.85,0.6499999999999999,0.65,1,26 -bound,0.6766666666666665,1.0,0.5666666666666667,0.7,1,26 -lettuce,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -brush,0.6916666666666667,1.0,0.5666666666666667,0.7,1,26 -scissors,0.7783333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -lime,0.8266666666666668,1.0,0.6833333333333333,0.7833333333333334,1,25 -toothpaste,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -top,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -spiral,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -handles,0.835,1.0,0.7166666666666666,0.8,1,25 -camera,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -eraser,0.7133333333333333,1.0,0.6,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.8016666666666665,0.675,1.0,0.7985714285714285,5,21 -banana,0.725,1.0,0.7,0.7833333333333333,1,26 -pitcher,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.6183333333333334,1.0,0.55,0.6833333333333333,1,26 -stick,0.6766666666666666,1.0,0.5,0.65,1,25 -cereal,0.4916666666666667,1.0,0.5166666666666666,0.65,1,26 -bulb,0.8933333333333333,0.9166666666666666,0.9,0.8866666666666667,2,27 -hair,0.575,0.95,0.6333333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -can,0.8749999999999998,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.7183333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -crackers,0.7583333333333333,1.0,0.75,0.8166666666666667,1,26 -plate,0.485,1.0,0.5166666666666666,0.65,1,24 -calculator,0.5533333333333333,0.65,0.5999999999999999,0.5566666666666668,1,26 -tissues,0.76,1.0,0.6166666666666666,0.7333333333333334,1,26 -juice,0.625,1.0,0.55,0.6666666666666667,1,26 -pink,0.5966666666666666,1.0,0.4666666666666666,0.6166666666666667,1,25 -lemon,0.475,0.5,0.6166666666666666,0.53,1,26 -peach,0.7416666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -bowl,0.26,0.5,0.5333333333333333,0.49333333333333335,1,26 -camouflage,0,0,0,0,1,26 -digital,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -blue,0.7666666666666667,0.9,0.7166666666666666,0.7333333333333333,1,25 -used,0.6333333333333332,1.0,0.6833333333333332,0.7666666666666666,1,23 -energizer,0,0,0,0,1,26 -pear,0.5050000000000001,1.0,0.4333333333333333,0.6,1,26 -ball,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -notebook,0.71,1.0,0.55,0.6833333333333333,1,26 -garlic,0.8,0.85,0.75,0.7333333333333334,1,26 -cleaning,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -pair,0.8766666666666666,1.0,0.8333333333333333,0.9,2,27 -container,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -tomato,0.44000000000000006,0.5,0.5833333333333333,0.51,1,26 -cellphone,0.5916666666666667,1.0,0.5166666666666666,0.65,1,26 -potato,0.79,1.0,0.7166666666666666,0.8,1,25 -light,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -green,0.8933333333333333,0.7666666666666666,1.0,0.8333333333333333,3,25 -bottle,0.8733333333333333,1.0,0.8333333333333334,0.9000000000000001,2,25 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.634398148148148 -F1-Score: 0.6694885361552028 -Precision: 0.8775771604938271 -Recall: 0.6021604938271603 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6333333333333333,1.0,0.5999999999999999,0.7166666666666666,1,24 -yellow,0.93,0.8,1.0,0.8666666666666666,6,25 -looks,0.48666666666666664,0.8,0.5666666666666667,0.5833333333333333,1,24 -keyboard,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.7433333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.7,0.9,0.7,0.7166666666666666,1,26 -cup,0.32833333333333337,0.5,0.5833333333333333,0.51,1,26 -folded,0.8666666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -jam,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -black,0.8333333333333334,0.675,1.0,0.799047619047619,6,21 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.6666666666666666,1.0,0.6666666666666666,0.75,1,26 -soccer,0.51,1.0,0.4833333333333333,0.6333333333333334,1,26 -hat,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.975,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.655,1.0,0.6333333333333333,0.7333333333333333,1,25 -handle,0.6716666666666666,1.0,0.6,0.7166666666666667,1,25 -food,0.53,1.0,0.4999999999999999,0.6333333333333333,1,25 -towel,0.4083333333333333,1.0,0.3666666666666667,0.5333333333333333,1,26 -chips,0.6933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -onion,0.6833333333333333,1.0,0.7333333333333333,0.8,1,26 -bag,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -sponge,0.8099999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.735,1.0,0.6666666666666666,0.7666666666666666,1,25 -special,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -colgate,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -leaf,0.5716666666666665,1.0,0.5,0.6333333333333333,1,26 -tube,0.61,1.0,0.4999999999999999,0.65,1,26 -cell,0.31666666666666665,1.0,0.3666666666666667,0.5333333333333333,1,26 -mug,0.8133333333333332,1.0,0.7166666666666666,0.8,1,25 -yogurt,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -plantain,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -red,0.8116666666666668,0.6916666666666667,1.0,0.7957142857142856,3,26 -pepper,0.76,1.0,0.7166666666666666,0.8,1,26 -wheat,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666668,1,26 -toothbrush,0.6849999999999999,1.0,0.55,0.6833333333333333,1,26 -binder,0.8550000000000001,1.0,0.7333333333333333,0.8166666666666668,1,26 -baseball,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -pliers,0.5916666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.76,1.0,0.6166666666666666,0.7333333333333334,1,26 -thins,0.5966666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -package,0.8166666666666667,1.0,0.7166666666666666,0.8,1,26 -k,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -jelly,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -fruit,0.7466666666666667,0.6166666666666666,0.8999999999999998,0.7033333333333334,2,26 -apple,0.6283333333333333,0.85,0.5666666666666667,0.6,1,25 -bell,0.7133333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -battery,0.5383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -jar,0.5683333333333332,1.0,0.5166666666666666,0.65,1,26 -bound,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.7066666666666667,0.85,0.6499999999999999,0.65,1,26 -brush,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -scissors,0.665,1.0,0.5333333333333333,0.6666666666666666,1,26 -lime,0.8133333333333332,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.7416666666666666,1.0,0.6499999999999999,0.75,1,26 -top,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -spiral,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -handles,0.7433333333333333,1.0,0.6499999999999999,0.75,1,25 -camera,0.5133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -eraser,0.5633333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.7783333333333333,0.6166666666666667,1.0,0.7547619047619047,5,21 -banana,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -pitcher,0.6983333333333334,1.0,0.6,0.7166666666666666,1,26 -phone,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -stick,0.5666666666666667,1.0,0.5999999999999999,0.7,1,25 -cereal,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.9349999999999999,1.0,0.9,0.9400000000000001,2,27 -hair,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -coca,0.76,1.0,0.7166666666666666,0.8,1,26 -crackers,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -plate,0.5666666666666667,1.0,0.45,0.6166666666666667,1,25 -calculator,0.25,0.6,0.4666666666666666,0.47333333333333344,1,26 -tissues,0.7533333333333333,1.0,0.6333333333333333,0.75,1,26 -juice,0.53,1.0,0.5166666666666666,0.65,1,26 -pink,0.6166666666666666,1.0,0.5,0.65,1,25 -lemon,0.43833333333333335,0.85,0.5666666666666667,0.5833333333333333,1,26 -peach,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -bowl,0.30000000000000004,0.5,0.4666666666666666,0.4666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7216666666666666,1.0,0.7,0.7833333333333333,1,26 -blue,0.6933333333333334,1.0,0.5666666666666667,0.7,1,25 -used,0.4716666666666667,1.0,0.4666666666666666,0.6166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.8016666666666665,1.0,0.7166666666666666,0.8,1,26 -ball,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.7133333333333333,1.0,0.7166666666666666,0.8,1,26 -garlic,0.7466666666666667,1.0,0.7166666666666666,0.8,1,26 -cleaning,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -pair,0.8633333333333333,1.0,0.8333333333333333,0.9,2,27 -container,0.4966666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -tomato,0.6566666666666666,0.9,0.6166666666666666,0.6833333333333333,1,26 -cellphone,0.6066666666666667,1.0,0.5166666666666666,0.65,1,26 -potato,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -light,0.9266666666666667,1.0,0.9,0.9400000000000001,2,26 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,24 -bottle,0.9266666666666665,1.0,0.8999999999999998,0.9400000000000001,2,26 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6412962962962964 -F1-Score: 0.6823412698412697 -Precision: 0.889814814814815 -Recall: 0.6111111111111112 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.605,1.0,0.5499999999999999,0.6833333333333333,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,24 -keyboard,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -glue,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.8766666666666667,1.0,0.7833333333333333,0.85,1,26 -flashlight,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.545,0.5,0.7833333333333333,0.5900000000000001,1,26 -folded,0.7166666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -jam,0.7683333333333333,1.0,0.65,0.75,1,26 -black,0.8483333333333334,0.7083333333333333,1.0,0.8171428571428571,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.46333333333333326,1.0,0.5499999999999999,0.6666666666666666,1,26 -soccer,0.47666666666666657,1.0,0.5,0.6333333333333334,1,26 -hat,0.7166666666666666,1.0,0.6666666666666666,0.75,1,26 -brown,0.95,1.0,0.9333333333333332,0.96,2,24 -coffee,0.705,1.0,0.6,0.7166666666666667,1,25 -handle,0.8016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -food,0.735,1.0,0.5999999999999999,0.7166666666666667,1,25 -towel,0.5883333333333333,1.0,0.55,0.6833333333333333,1,26 -chips,0.74,1.0,0.6499999999999999,0.75,1,26 -stapler,0.775,1.0,0.75,0.8166666666666667,1,26 -onion,0.48,1.0,0.41666666666666663,0.5833333333333333,1,26 -bag,0.7133333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -sponge,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,25 -special,0.6933333333333334,1.0,0.5333333333333333,0.6666666666666666,1,26 -colgate,0.73,1.0,0.65,0.75,1,26 -leaf,0.8333333333333333,1.0,0.8166666666666667,0.8666666666666666,1,26 -tube,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -cell,0.46499999999999997,0.6,0.6499999999999999,0.5566666666666668,1,26 -mug,0.7516666666666667,1.0,0.6333333333333333,0.75,1,25 -yogurt,0.6466666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -plantain,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -red,0.8333333333333333,0.7083333333333333,1.0,0.8023809523809522,3,24 -pepper,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.7383333333333333,1.0,0.6333333333333333,0.75,1,26 -toothbrush,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -binder,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -baseball,0.45,1.0,0.5333333333333332,0.65,1,26 -pliers,0.65,1.0,0.55,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8966666666666667,1.0,0.8,0.8666666666666666,1,26 -thins,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -package,0.7716666666666667,1.0,0.6499999999999999,0.75,1,26 -k,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -jelly,0.6366666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -fruit,0.8033333333333333,0.85,0.8333333333333334,0.8133333333333332,2,25 -apple,0.5716666666666667,0.95,0.5833333333333333,0.6666666666666667,1,25 -bell,0.3883333333333333,1.0,0.45,0.6,1,26 -battery,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -jar,0.525,1.0,0.5499999999999999,0.6666666666666666,1,26 -bound,0.655,1.0,0.5499999999999999,0.6833333333333333,1,26 -lettuce,0.6599999999999999,1.0,0.65,0.75,1,26 -brush,0.4966666666666667,1.0,0.4499999999999999,0.6,1,26 -scissors,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -lime,0.73,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.7,1.0,0.6499999999999999,0.75,1,26 -top,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -spiral,0.5683333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -handles,0.8133333333333332,1.0,0.7833333333333333,0.85,1,25 -camera,0.7333333333333333,1.0,0.6499999999999999,0.75,1,26 -eraser,0.6833333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.6649999999999999,0.5266666666666666,1.0,0.6764285714285714,5,21 -banana,0.39166666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -pitcher,0.5333333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -phone,0.5183333333333333,0.55,0.5999999999999999,0.53,1,26 -stick,0.5999999999999999,1.0,0.5166666666666666,0.65,1,25 -cereal,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -bulb,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,27 -hair,0.48500000000000004,0.95,0.4833333333333333,0.6,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6166666666666666,1.0,0.4999999999999999,0.65,1,26 -can,0.915,1.0,0.8666666666666668,0.9200000000000002,2,25 -coca,0.7416666666666666,1.0,0.65,0.75,1,26 -crackers,0.6883333333333332,1.0,0.65,0.75,1,26 -plate,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333334,1,25 -calculator,0.525,1.0,0.4,0.5666666666666667,1,26 -tissues,0.765,1.0,0.5833333333333333,0.7166666666666667,1,26 -juice,0.5516666666666666,1.0,0.4166666666666667,0.5833333333333333,1,26 -pink,0.5966666666666667,1.0,0.6333333333333332,0.7333333333333333,1,25 -lemon,0.6066666666666667,0.85,0.5833333333333333,0.6166666666666667,1,26 -peach,0.5183333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -bowl,0.25166666666666665,0.5,0.4666666666666666,0.4666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7499999999999999,1.0,0.7,0.7833333333333333,1,26 -blue,0.805,1.0,0.7333333333333333,0.8166666666666668,1,25 -used,0.7816666666666666,1.0,0.6333333333333333,0.75,1,23 -energizer,0,0,0,0,1,26 -pear,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -ball,0.755,1.0,0.6499999999999999,0.75,1,25 -notebook,0.7616666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -garlic,0.6533333333333333,1.0,0.5666666666666667,0.7,1,26 -cleaning,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -pair,0.9199999999999999,1.0,0.8666666666666666,0.9199999999999999,2,26 -container,0.705,1.0,0.6499999999999999,0.75,1,25 -tomato,0.74,0.95,0.6666666666666666,0.7333333333333334,1,26 -cellphone,0.605,0.5,0.7,0.5666666666666667,1,26 -potato,0.75,1.0,0.7333333333333333,0.8,1,25 -light,0.915,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,23 -bottle,0.95,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6479938271604938 -F1-Score: 0.6850859788359789 -Precision: 0.8892901234567901 -Recall: 0.6138888888888888 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.515,1.0,0.4833333333333333,0.6333333333333334,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.5133333333333333,0.95,0.4499999999999999,0.5666666666666667,1,24 -keyboard,0.8133333333333332,1.0,0.7833333333333333,0.85,1,26 -glue,0.6066666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6016666666666667,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.6133333333333334,0.95,0.6,0.6833333333333333,1,26 -cup,0.39166666666666666,0.5,0.5499999999999999,0.5033333333333333,1,25 -folded,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -jam,0.6849999999999999,1.0,0.5833333333333333,0.7,1,26 -black,0.86,0.75,1.0,0.8514285714285714,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -soccer,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -hat,0.7433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.9466666666666667,1.0,0.9333333333333332,0.96,2,24 -coffee,0.5616666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -handle,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -food,0.7733333333333332,1.0,0.6666666666666666,0.7666666666666667,1,25 -towel,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -chips,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -stapler,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -onion,0.8133333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -bag,0.575,1.0,0.4833333333333333,0.6333333333333333,1,26 -sponge,0.6849999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.4583333333333333,1.0,0.4333333333333333,0.5833333333333333,1,25 -special,0.5,1.0,0.6166666666666666,0.7166666666666666,1,26 -colgate,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -leaf,0.6383333333333333,1.0,0.55,0.6833333333333333,1,26 -tube,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -mug,0.6216666666666666,1.0,0.6,0.7166666666666667,1,26 -yogurt,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.7966666666666666,0.95,0.7499999999999999,0.7833333333333333,1,26 -red,0.7983333333333333,0.6583333333333333,1.0,0.7757142857142857,3,26 -pepper,0.6466666666666666,1.0,0.65,0.75,1,26 -wheat,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.6216666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -toothbrush,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -binder,0.8416666666666668,1.0,0.7833333333333333,0.85,1,26 -baseball,0.6249999999999999,1.0,0.5166666666666666,0.65,1,26 -pliers,0.6266666666666667,1.0,0.55,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7383333333333333,1.0,0.6,0.7166666666666666,1,26 -thins,0.7683333333333333,1.0,0.6499999999999999,0.75,1,26 -package,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -k,0.5166666666666666,1.0,0.5833333333333333,0.7,1,26 -jelly,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.6583333333333333,0.55,0.8666666666666666,0.6266666666666667,2,25 -apple,0.6233333333333333,0.75,0.6333333333333333,0.5833333333333333,1,25 -bell,0.6716666666666666,1.0,0.6,0.7166666666666666,1,26 -battery,0.8316666666666667,0.95,0.7333333333333333,0.7833333333333333,1,26 -jar,0.7350000000000001,0.95,0.5833333333333333,0.6833333333333333,1,26 -bound,0.6416666666666666,1.0,0.6499999999999999,0.75,1,26 -lettuce,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333334,1,26 -brush,0.7716666666666667,1.0,0.6333333333333333,0.75,1,26 -scissors,0.6966666666666667,1.0,0.65,0.75,1,26 -lime,0.635,1.0,0.4833333333333333,0.6333333333333333,1,25 -toothpaste,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -top,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -spiral,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -handles,0.7649999999999999,1.0,0.6166666666666666,0.7333333333333333,1,25 -camera,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.6799999999999999,1.0,0.65,0.75,1,26 -creamer,0,0,0,0,1,26 -white,0.7516666666666667,0.5583333333333333,1.0,0.7057142857142858,5,21 -banana,0.5833333333333333,0.95,0.5999999999999999,0.6666666666666666,1,26 -pitcher,0.605,1.0,0.5166666666666666,0.65,1,26 -phone,0.63,1.0,0.6833333333333332,0.7666666666666666,1,26 -stick,0.5016666666666667,1.0,0.5166666666666666,0.65,1,25 -cereal,0.7266666666666667,1.0,0.5833333333333333,0.7,1,26 -bulb,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -hair,0.5883333333333333,0.85,0.6333333333333333,0.6333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6916666666666667,1.0,0.6,0.7166666666666666,1,26 -can,0.915,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.6966666666666667,1.0,0.5333333333333333,0.6833333333333333,1,26 -crackers,0.5983333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.8083333333333332,1.0,0.7833333333333333,0.85,1,25 -calculator,0.6183333333333333,0.75,0.55,0.5666666666666667,1,26 -tissues,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -juice,0.705,1.0,0.7,0.7833333333333333,1,26 -pink,0.7150000000000001,1.0,0.6166666666666666,0.7333333333333333,1,25 -lemon,0.5416666666666666,0.85,0.5499999999999999,0.6,1,26 -peach,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -bowl,0.34,0.5,0.6,0.52,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -blue,0.5766666666666667,1.0,0.4999999999999999,0.6333333333333333,1,25 -used,0.73,1.0,0.6499999999999999,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -ball,0.6216666666666667,1.0,0.5833333333333333,0.7,1,25 -notebook,0.7299999999999999,1.0,0.6833333333333333,0.7666666666666667,1,26 -garlic,0.705,0.95,0.6666666666666666,0.7333333333333333,1,26 -cleaning,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -pair,0.89,1.0,0.8333333333333333,0.9,2,26 -container,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -tomato,0.45833333333333337,0.6,0.5833333333333333,0.53,1,26 -cellphone,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -potato,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -light,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -green,0.8916666666666668,0.7916666666666667,1.0,0.8704761904761904,3,24 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6434413580246913 -F1-Score: 0.6805246913580247 -Precision: 0.8861882716049382 -Recall: 0.6117283950617284 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5716666666666665,1.0,0.5166666666666666,0.65,1,24 -yellow,0.96,0.9,1.0,0.9333333333333332,6,25 -looks,0.505,0.8,0.4666666666666666,0.5333333333333333,1,24 -keyboard,0.755,1.0,0.6833333333333333,0.7833333333333334,1,26 -glue,0.48,1.0,0.4499999999999999,0.6,1,26 -milk,0,0,0,0,1,26 -cola,0.36666666666666664,1.0,0.4833333333333332,0.6166666666666666,1,26 -flashlight,0.655,1.0,0.5333333333333333,0.6666666666666667,1,26 -cup,0.18333333333333335,0.5,0.5333333333333333,0.49333333333333335,1,26 -folded,0.7266666666666667,1.0,0.6,0.7166666666666667,1,26 -jam,0.675,1.0,0.65,0.75,1,26 -black,0.8833333333333332,0.7333333333333333,1.0,0.8266666666666665,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -soccer,0.6216666666666667,1.0,0.65,0.75,1,26 -hat,0.625,1.0,0.5333333333333332,0.6666666666666666,1,26 -brown,0.9349999999999999,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.51,1.0,0.4333333333333333,0.5833333333333333,1,25 -handle,0.5666666666666667,1.0,0.5166666666666666,0.65,1,25 -food,0.6883333333333332,1.0,0.65,0.75,1,26 -towel,0.5599999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -chips,0.41666666666666663,1.0,0.45,0.6,1,26 -stapler,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.42666666666666664,1.0,0.45,0.6,1,26 -bag,0.5083333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -sponge,0.63,1.0,0.55,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -special,0.59,1.0,0.5333333333333333,0.6666666666666667,1,26 -colgate,0.6733333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -leaf,0.6666666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -tube,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -cell,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -mug,0.7416666666666666,1.0,0.6333333333333332,0.7333333333333333,1,25 -yogurt,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.6016666666666667,1.0,0.4999999999999999,0.65,1,26 -red,0.6716666666666665,0.4666666666666666,1.0,0.6133333333333334,3,26 -pepper,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -wheat,0.6083333333333333,1.0,0.5166666666666666,0.65,1,26 -kleenex,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -toothbrush,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -binder,0.7016666666666667,1.0,0.6,0.7166666666666667,1,26 -baseball,0.735,1.0,0.6499999999999999,0.75,1,26 -pliers,0.6633333333333333,1.0,0.55,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -thins,0.5599999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -package,0.6183333333333333,0.95,0.6,0.6833333333333333,1,26 -k,0.5833333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.655,1.0,0.55,0.6833333333333333,1,26 -fruit,0.6666666666666666,0.5166666666666666,0.9,0.6300000000000001,2,25 -apple,0.4616666666666666,0.8,0.5666666666666667,0.5666666666666667,1,25 -bell,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -battery,0.7050000000000001,0.95,0.6166666666666666,0.7,1,26 -jar,0.7083333333333333,0.85,0.75,0.7166666666666667,1,26 -bound,0.8549999999999999,1.0,0.75,0.8333333333333333,1,26 -lettuce,0.7016666666666667,0.95,0.5999999999999999,0.6833333333333333,1,26 -brush,0.7066666666666667,1.0,0.6,0.7166666666666667,1,26 -scissors,0.6,1.0,0.5999999999999999,0.7,1,26 -lime,0.6499999999999999,1.0,0.6666666666666666,0.75,1,25 -toothpaste,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -top,0.75,1.0,0.7166666666666666,0.8,1,26 -spiral,0.6799999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -handles,0.5216666666666667,1.0,0.4833333333333333,0.6333333333333333,1,25 -camera,0.605,1.0,0.5499999999999999,0.6833333333333333,1,26 -eraser,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.7649999999999999,0.5833333333333333,1.0,0.7228571428571429,5,21 -banana,0.7166666666666666,1.0,0.7333333333333333,0.8,1,26 -pitcher,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -stick,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -cereal,0.45999999999999996,1.0,0.4499999999999999,0.6,1,26 -bulb,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.7000000000000001,0.95,0.7,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6433333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coca,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -crackers,0.675,1.0,0.6166666666666666,0.7166666666666666,1,26 -plate,0.7216666666666666,1.0,0.6166666666666666,0.7333333333333333,1,25 -calculator,0.5066666666666667,0.6,0.7,0.5733333333333334,1,26 -tissues,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -juice,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -pink,0.5,1.0,0.4666666666666666,0.6,1,25 -lemon,0.5116666666666666,0.7,0.55,0.5566666666666666,1,26 -peach,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -bowl,0.26666666666666666,0.5,0.4666666666666666,0.4666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6516666666666666,1.0,0.5166666666666666,0.65,1,26 -blue,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -used,0.7333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.7483333333333333,1.0,0.6,0.7166666666666666,1,26 -ball,0.705,1.0,0.7,0.7833333333333333,1,25 -notebook,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -garlic,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -cleaning,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -pair,0.8316666666666667,1.0,0.7666666666666667,0.86,2,27 -container,0.505,1.0,0.5166666666666666,0.65,1,25 -tomato,0.45166666666666666,0.65,0.5666666666666667,0.53,1,26 -cellphone,0.6833333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -potato,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -light,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -green,0.8683333333333334,0.7,1.0,0.8047619047619048,3,23 -bottle,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6115895061728396 -F1-Score: 0.6611816578483244 -Precision: 0.8805555555555556 -Recall: 0.5901234567901233 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6966666666666665,1.0,0.6166666666666666,0.7333333333333333,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.8283333333333334,1.0,0.65,0.7666666666666667,1,24 -keyboard,0.6666666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -glue,0.7433333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6766666666666666,1.0,0.5666666666666667,0.7,1,26 -flashlight,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -cup,0.12333333333333334,0.4666666666666666,0.5166666666666666,0.4566666666666667,1,26 -folded,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.61,1.0,0.5333333333333333,0.6666666666666666,1,26 -black,0.8850000000000001,0.7416666666666666,1.0,0.8323809523809522,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.5999999999999999,1.0,0.5999999999999999,0.7,1,26 -soccer,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -hat,0.58,1.0,0.5499999999999999,0.6666666666666666,1,26 -brown,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.8716666666666667,1.0,0.7833333333333333,0.85,1,25 -handle,0.325,1.0,0.4333333333333333,0.5833333333333333,1,25 -food,0.5083333333333333,1.0,0.5166666666666666,0.65,1,26 -towel,0.5333333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -chips,0.595,1.0,0.55,0.6833333333333333,1,26 -stapler,0.7333333333333333,1.0,0.7,0.7833333333333334,1,26 -onion,0.59,0.9,0.5499999999999999,0.6166666666666667,1,26 -bag,0.6333333333333333,1.0,0.7,0.7833333333333333,1,26 -sponge,0.575,1.0,0.4666666666666666,0.6166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6183333333333334,1.0,0.55,0.6833333333333333,1,25 -special,0.6183333333333333,1.0,0.5166666666666666,0.65,1,26 -colgate,0.8300000000000001,1.0,0.6833333333333333,0.7833333333333333,1,26 -leaf,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -tube,0.6966666666666667,1.0,0.7,0.7833333333333333,1,26 -cell,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -mug,0.6100000000000001,1.0,0.5166666666666666,0.65,1,25 -yogurt,0.7266666666666666,1.0,0.7,0.7833333333333333,1,26 -plantain,0.75,1.0,0.6833333333333333,0.7666666666666666,1,26 -red,0.65,0.5483333333333333,1.0,0.6776190476190476,3,26 -pepper,0.61,1.0,0.5499999999999999,0.6833333333333333,1,26 -wheat,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.8916666666666666,1.0,0.8,0.8666666666666666,1,26 -toothbrush,0.39666666666666667,1.0,0.4833333333333333,0.6166666666666666,1,26 -binder,0.4466666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -baseball,0.66,1.0,0.5833333333333333,0.7,1,26 -pliers,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7216666666666666,1.0,0.6499999999999999,0.75,1,26 -thins,0.4716666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -package,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -k,0.65,1.0,0.6166666666666666,0.7166666666666667,1,26 -jelly,0.575,1.0,0.5833333333333333,0.7,1,26 -fruit,0.7266666666666667,0.7,0.9,0.76,2,26 -apple,0.36666666666666664,1.0,0.4333333333333333,0.5833333333333333,1,25 -bell,0.6566666666666666,1.0,0.5833333333333333,0.7,1,26 -battery,0.5933333333333333,1.0,0.5,0.65,1,26 -jar,0.61,1.0,0.4833333333333333,0.6333333333333333,1,26 -bound,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.7383333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -brush,0.65,1.0,0.6333333333333332,0.7333333333333333,1,26 -scissors,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -lime,0.8133333333333332,1.0,0.7499999999999999,0.8166666666666667,1,25 -toothpaste,0.75,1.0,0.6833333333333333,0.7833333333333333,1,26 -top,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -spiral,0.63,1.0,0.5833333333333333,0.7,1,26 -handles,0.73,1.0,0.6666666666666666,0.7666666666666667,1,25 -camera,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -eraser,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,0.7666666666666666,0.5333333333333333,1.0,0.6814285714285713,5,20 -banana,0.7216666666666667,1.0,0.7,0.7833333333333333,1,26 -pitcher,0.7183333333333333,1.0,0.6499999999999999,0.75,1,26 -phone,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -stick,0.51,1.0,0.5166666666666666,0.65,1,25 -cereal,0.5,1.0,0.5166666666666666,0.65,1,26 -bulb,0.8800000000000001,0.9166666666666666,0.9,0.8866666666666667,2,27 -hair,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.4833333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -can,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.7016666666666667,1.0,0.6499999999999999,0.75,1,26 -crackers,0.49000000000000005,1.0,0.4333333333333333,0.6,1,26 -plate,0.6383333333333333,1.0,0.5833333333333333,0.7,1,25 -calculator,0.3933333333333333,0.9,0.5499999999999999,0.6,1,26 -tissues,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -juice,0.7133333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -pink,0.7,1.0,0.7333333333333332,0.8,1,25 -lemon,0.5416666666666666,0.6,0.6833333333333333,0.5633333333333334,1,26 -peach,0.6416666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.5133333333333333,0.5,0.7666666666666666,0.5800000000000001,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -blue,0.7283333333333333,0.8,0.6666666666666666,0.6666666666666667,1,25 -used,0.8083333333333332,1.0,0.7833333333333333,0.85,1,24 -energizer,0,0,0,0,1,26 -pear,0.6683333333333332,1.0,0.6499999999999999,0.75,1,26 -ball,0.7666666666666667,1.0,0.7166666666666666,0.8,1,25 -notebook,0.76,1.0,0.65,0.75,1,26 -garlic,0.5083333333333332,1.0,0.5166666666666666,0.65,1,26 -cleaning,0.605,1.0,0.5499999999999999,0.6833333333333333,1,26 -pair,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -container,0.5933333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -tomato,0.65,1.0,0.5,0.65,1,26 -cellphone,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -potato,0.48,1.0,0.4833333333333333,0.6166666666666666,1,25 -light,0.8566666666666667,0.8166666666666667,0.9,0.82,2,27 -green,0.7966666666666666,0.6166666666666666,1.0,0.73,3,23 -bottle,0.9100000000000001,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6245370370370371 -F1-Score: 0.6751675485008818 -Precision: 0.8887962962962962 -Recall: 0.6054012345679011 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.75,1.0,0.7,0.7833333333333333,1,24 -yellow,0.8266666666666668,0.65,1.0,0.7733333333333333,6,25 -looks,0.7899999999999999,0.7,0.8333333333333333,0.7,1,24 -keyboard,0.5683333333333332,1.0,0.45,0.6,1,26 -glue,0.7083333333333333,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.5883333333333334,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.7116666666666667,0.8,0.7666666666666666,0.7166666666666667,1,26 -cup,0.4966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -folded,0.5216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.6783333333333333,1.0,0.5,0.65,1,26 -black,0.9633333333333335,0.9,1.0,0.9333333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.78,1.0,0.6333333333333333,0.75,1,26 -soccer,0.715,1.0,0.6,0.7166666666666667,1,26 -hat,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -brown,0.96,1.0,0.9333333333333332,0.96,2,25 -coffee,0.7,1.0,0.5999999999999999,0.7166666666666667,1,26 -handle,0.9,1.0,0.9333333333333332,0.95,1,26 -food,0.6933333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -towel,0.5016666666666667,1.0,0.4333333333333333,0.6,1,26 -chips,0.71,1.0,0.7,0.7833333333333333,1,26 -stapler,0.7966666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -onion,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -bag,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.625,1.0,0.6,0.7166666666666667,1,25 -special,0.6466666666666666,1.0,0.6833333333333333,0.7666666666666667,1,26 -colgate,0.75,1.0,0.6833333333333333,0.7666666666666666,1,26 -leaf,0.7716666666666666,1.0,0.6499999999999999,0.75,1,26 -tube,0.8566666666666667,1.0,0.7,0.8,1,26 -cell,0.3716666666666667,0.6,0.5666666666666667,0.52,1,26 -mug,0.835,1.0,0.7833333333333333,0.85,1,26 -yogurt,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.6383333333333333,0.95,0.65,0.7166666666666667,1,26 -red,0.9633333333333333,0.9166666666666666,1.0,0.9466666666666667,3,27 -pepper,0.4499999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -wheat,0.6266666666666666,1.0,0.4999999999999999,0.65,1,26 -kleenex,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -toothbrush,0.5716666666666665,1.0,0.5833333333333333,0.7,1,26 -binder,0.55,1.0,0.5833333333333333,0.7,1,26 -baseball,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -pliers,0.7466666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -package,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -k,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -jelly,0.63,1.0,0.6,0.7166666666666667,1,26 -fruit,0.7166666666666666,0.7,0.8333333333333333,0.7066666666666668,2,26 -apple,0.6916666666666667,0.75,0.6666666666666666,0.6333333333333333,1,25 -bell,0.7633333333333333,1.0,0.65,0.75,1,26 -battery,0.5083333333333333,1.0,0.55,0.6666666666666667,1,26 -jar,0.7216666666666667,0.95,0.6666666666666666,0.7333333333333333,1,26 -bound,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -lettuce,0.6016666666666667,0.9,0.5499999999999999,0.6333333333333333,1,26 -brush,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -scissors,0.2966666666666667,1.0,0.4166666666666667,0.5666666666666667,1,26 -lime,0.7016666666666667,1.0,0.6499999999999999,0.75,1,25 -toothpaste,0.5083333333333333,1.0,0.5166666666666666,0.65,1,26 -top,0.8116666666666668,1.0,0.6333333333333333,0.75,1,26 -spiral,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -handles,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666667,1,25 -camera,0.805,1.0,0.7166666666666666,0.8,1,26 -eraser,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,0.6449999999999999,0.5283333333333333,1.0,0.6747619047619047,5,21 -banana,0.6966666666666667,0.9,0.7,0.7166666666666666,1,26 -pitcher,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -phone,0.45499999999999996,0.5,0.6,0.52,1,26 -stick,0.6466666666666667,1.0,0.5833333333333333,0.7,1,25 -cereal,0.6316666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -bulb,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -hair,0.6283333333333333,0.6,0.7,0.5733333333333335,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7499999999999999,0.95,0.7,0.75,1,26 -can,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.7216666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -crackers,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -plate,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -calculator,0.73,1.0,0.6333333333333333,0.7333333333333333,1,26 -tissues,0.6499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.4716666666666667,1.0,0.5166666666666666,0.65,1,26 -pink,0.5349999999999999,1.0,0.5333333333333333,0.6666666666666667,1,25 -lemon,0.29500000000000004,0.6,0.4833333333333333,0.4966666666666667,1,26 -peach,0.5999999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -bowl,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -blue,0.73,1.0,0.6333333333333333,0.7333333333333333,1,25 -used,0.755,1.0,0.6499999999999999,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -ball,0.2833333333333333,1.0,0.4666666666666666,0.6,1,25 -notebook,0.705,1.0,0.5666666666666667,0.7,1,26 -garlic,0.5633333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -cleaning,0.6133333333333333,1.0,0.55,0.6833333333333333,1,26 -pair,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,27 -container,0.6883333333333332,1.0,0.5499999999999999,0.6833333333333333,1,25 -tomato,0.4933333333333333,0.75,0.5333333333333333,0.5566666666666668,1,26 -cellphone,0.5733333333333333,0.55,0.6333333333333333,0.55,1,26 -potato,0.41666666666666663,1.0,0.45,0.6,1,25 -light,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -green,0.9266666666666667,0.8166666666666667,1.0,0.8800000000000001,3,24 -bottle,0.905,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6372376543209877 -F1-Score: 0.680784832451499 -Precision: 0.8797376543209876 -Recall: 0.6160493827160494 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.625,1.0,0.4833333333333333,0.6333333333333334,1,24 -keyboard,0.7,1.0,0.6166666666666666,0.7333333333333334,1,26 -glue,0.6483333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.78,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.8083333333333333,1.0,0.8166666666666667,0.8666666666666666,1,26 -cup,0.4133333333333333,0.6,0.5833333333333333,0.53,1,26 -folded,0.86,1.0,0.75,0.8333333333333333,1,26 -jam,0.4833333333333333,1.0,0.45,0.6,1,26 -black,0.8850000000000001,0.775,1.0,0.8590476190476191,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.4416666666666666,1.0,0.41666666666666663,0.5666666666666667,1,26 -soccer,0.7699999999999999,1.0,0.5666666666666667,0.7,1,26 -hat,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -brown,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -coffee,0.635,1.0,0.5999999999999999,0.7166666666666667,1,25 -handle,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -food,0.63,1.0,0.4833333333333332,0.6333333333333333,1,25 -towel,0.765,1.0,0.6166666666666666,0.7333333333333333,1,26 -chips,0.6849999999999999,1.0,0.55,0.6833333333333333,1,26 -stapler,0.5433333333333332,1.0,0.5166666666666666,0.65,1,26 -onion,0.73,1.0,0.6833333333333333,0.7666666666666666,1,26 -bag,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -sponge,0.5966666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.48,1.0,0.4666666666666666,0.6166666666666667,1,25 -special,0.6133333333333334,1.0,0.4999999999999999,0.65,1,26 -colgate,0.7266666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -leaf,0.735,1.0,0.5999999999999999,0.7166666666666667,1,26 -tube,0.8383333333333333,1.0,0.7,0.8,1,26 -cell,0.5599999999999999,0.55,0.5999999999999999,0.53,1,26 -mug,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -yogurt,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -plantain,0.73,1.0,0.6499999999999999,0.75,1,26 -red,0.9133333333333333,0.8166666666666667,1.0,0.8666666666666666,3,25 -pepper,0.8016666666666665,1.0,0.7166666666666666,0.8,1,26 -wheat,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -kleenex,0.7183333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -toothbrush,0.5999999999999999,1.0,0.4833333333333332,0.6333333333333333,1,26 -binder,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -pliers,0.5799999999999998,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.5633333333333332,1.0,0.5499999999999999,0.6666666666666666,1,26 -thins,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -package,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -k,0.7233333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -jelly,0.76,1.0,0.6499999999999999,0.75,1,26 -fruit,0.8616666666666667,0.85,0.9,0.8400000000000001,2,27 -apple,0.71,1.0,0.5999999999999999,0.7166666666666666,1,25 -bell,0.8333333333333333,1.0,0.8333333333333333,0.8833333333333332,1,26 -battery,0.6649999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -jar,0.74,1.0,0.5999999999999999,0.7166666666666667,1,26 -bound,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -brush,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -scissors,0.575,1.0,0.5499999999999999,0.6666666666666667,1,26 -lime,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666666,1,25 -toothpaste,0.4966666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -top,0.6816666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -spiral,0.7183333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -handles,0.45666666666666667,0.5,0.65,0.5366666666666666,1,25 -camera,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -eraser,0.7983333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.6033333333333333,0.51,1.0,0.6552380952380952,5,21 -banana,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.4966666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -phone,0.485,0.75,0.55,0.5666666666666667,1,26 -stick,0.7,1.0,0.6666666666666666,0.75,1,25 -cereal,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bulb,0.86,1.0,0.8333333333333334,0.9000000000000001,2,27 -hair,0.755,1.0,0.5833333333333333,0.7166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7016666666666667,1.0,0.6,0.7166666666666667,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coca,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -crackers,0.6383333333333334,1.0,0.55,0.6833333333333333,1,26 -plate,0.585,1.0,0.5166666666666666,0.65,1,25 -calculator,0.6666666666666666,1.0,0.5666666666666667,0.7,1,26 -tissues,0.6799999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -juice,0.185,0.5,0.5166666666666666,0.4833333333333334,1,26 -pink,0.675,1.0,0.7,0.7833333333333333,1,25 -lemon,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -peach,0.6649999999999999,1.0,0.55,0.6833333333333333,1,26 -bowl,0.6566666666666666,0.55,0.8333333333333333,0.6166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5766666666666667,1.0,0.5833333333333333,0.7,1,26 -blue,0.7416666666666666,1.0,0.7,0.7833333333333333,1,25 -used,0.7,1.0,0.65,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.5083333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -ball,0.4966666666666667,1.0,0.4333333333333333,0.5833333333333333,1,25 -notebook,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -garlic,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -cleaning,0.63,1.0,0.5499999999999999,0.6666666666666666,1,26 -pair,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.6566666666666666,1.0,0.5833333333333333,0.7,1,25 -tomato,0.5416666666666667,1.0,0.5833333333333333,0.7,1,26 -cellphone,0.5433333333333333,0.6,0.5999999999999999,0.5466666666666666,1,26 -potato,0.6066666666666667,1.0,0.5833333333333333,0.7,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,23 -bottle,0.9333333333333332,1.0,0.9333333333333332,0.9600000000000002,2,25 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6371604938271604 -F1-Score: 0.6751322751322751 -Precision: 0.8884413580246914 -Recall: 0.6003086419753086 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6,1.0,0.6333333333333333,0.7333333333333333,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.76,1.0,0.6166666666666666,0.7333333333333333,1,24 -keyboard,0.51,1.0,0.4333333333333334,0.5833333333333333,1,26 -glue,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -flashlight,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.59,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.51,1.0,0.4999999999999999,0.6333333333333333,1,26 -jam,0.71,1.0,0.5999999999999999,0.7166666666666666,1,26 -black,0.93,0.8,1.0,0.8666666666666666,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.2883333333333334,1.0,0.4333333333333334,0.5833333333333333,1,26 -soccer,0.675,1.0,0.6833333333333333,0.7666666666666666,1,26 -hat,0.7666666666666666,1.0,0.6499999999999999,0.75,1,26 -brown,0.9333333333333332,1.0,0.9333333333333332,0.96,2,25 -coffee,0.8150000000000001,1.0,0.7333333333333333,0.8166666666666667,1,25 -handle,0.71,1.0,0.6666666666666666,0.7666666666666667,1,26 -food,0.53,1.0,0.5166666666666666,0.65,1,25 -towel,0.5833333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.7216666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -stapler,0.7166666666666667,1.0,0.6333333333333333,0.75,1,26 -onion,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -bag,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -sponge,0.6983333333333334,1.0,0.5166666666666666,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7416666666666666,1.0,0.7,0.7833333333333333,1,25 -special,0.63,1.0,0.6333333333333332,0.7333333333333333,1,26 -colgate,0.76,1.0,0.65,0.75,1,26 -leaf,0.6599999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -tube,0.6766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -cell,0.7,1.0,0.6499999999999999,0.75,1,26 -mug,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -yogurt,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -plantain,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -red,0.95,0.9,1.0,0.9400000000000001,3,26 -pepper,0.6833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -wheat,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -kleenex,0.78,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.5333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -binder,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -baseball,0.7333333333333333,1.0,0.6,0.7166666666666667,1,26 -pliers,0.7516666666666667,1.0,0.65,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7683333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -thins,0.49000000000000005,1.0,0.4,0.5666666666666667,1,26 -package,0.8033333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -k,0.5266666666666666,1.0,0.5166666666666666,0.65,1,26 -jelly,0.6933333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -fruit,0.8683333333333334,0.8166666666666667,0.9333333333333332,0.8400000000000001,2,25 -apple,0.5466666666666666,1.0,0.4833333333333332,0.6333333333333333,1,25 -bell,0.705,1.0,0.6666666666666666,0.7666666666666667,1,26 -battery,0.655,1.0,0.5666666666666667,0.6833333333333333,1,26 -jar,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -bound,0.6216666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -lettuce,0.7683333333333333,1.0,0.6499999999999999,0.75,1,26 -brush,0.6566666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -scissors,0.6900000000000001,1.0,0.5999999999999999,0.7166666666666666,1,26 -lime,0.7216666666666667,1.0,0.5999999999999999,0.7166666666666667,1,25 -toothpaste,0.705,1.0,0.6166666666666666,0.7333333333333334,1,26 -top,0.6883333333333334,1.0,0.6,0.7166666666666667,1,26 -spiral,0.4666666666666666,1.0,0.4166666666666667,0.5666666666666667,1,26 -handles,0.5233333333333333,0.5,0.7499999999999999,0.5700000000000001,1,25 -camera,0.5716666666666665,1.0,0.4999999999999999,0.6333333333333333,1,26 -eraser,0.675,1.0,0.6833333333333333,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.7233333333333334,0.55,1.0,0.6928571428571428,5,21 -banana,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -pitcher,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -phone,0.5483333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -stick,0.6183333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -cereal,0.6483333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -bulb,0.9166666666666666,1.0,0.9,0.9400000000000001,2,27 -hair,0.7716666666666667,1.0,0.7166666666666666,0.8,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -can,0.875,1.0,0.8666666666666666,0.9199999999999999,2,24 -coca,0.655,1.0,0.5833333333333333,0.7,1,26 -crackers,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -plate,0.5333333333333333,1.0,0.5499999999999999,0.6666666666666666,1,25 -calculator,0.575,0.65,0.6,0.5566666666666666,1,26 -tissues,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -juice,0.4616666666666666,0.5,0.6333333333333333,0.5266666666666667,1,26 -pink,0.5549999999999999,1.0,0.4833333333333333,0.6333333333333333,1,25 -lemon,0.7699999999999999,0.85,0.8166666666666667,0.7833333333333333,1,26 -peach,0.8216666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -bowl,0.2833333333333333,0.65,0.4666666666666666,0.4966666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6966666666666665,1.0,0.6166666666666666,0.7333333333333333,1,26 -blue,0.6916666666666667,1.0,0.7,0.7833333333333333,1,25 -used,0.4833333333333333,1.0,0.4833333333333334,0.6166666666666666,1,23 -energizer,0,0,0,0,1,26 -pear,0.6916666666666667,1.0,0.65,0.75,1,26 -ball,0.6666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,25 -notebook,0.635,1.0,0.5333333333333332,0.6666666666666666,1,26 -garlic,0.7433333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -cleaning,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -pair,0.8766666666666667,1.0,0.8333333333333333,0.9,2,27 -container,0.8300000000000001,1.0,0.7166666666666666,0.8,1,25 -tomato,0.5083333333333332,0.9,0.5,0.5666666666666667,1,26 -cellphone,0.85,1.0,0.75,0.8333333333333333,1,26 -potato,0.7916666666666667,1.0,0.7166666666666666,0.8,1,25 -light,0.9333333333333332,1.0,0.9333333333333332,0.96,2,26 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,25 -bottle,0.9100000000000001,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6450925925925927 -F1-Score: 0.6818165784832451 -Precision: 0.8932098765432099 -Recall: 0.6074074074074072 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7216666666666667,1.0,0.5833333333333333,0.7,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,25 -looks,0.775,0.85,0.7666666666666666,0.7333333333333333,1,24 -keyboard,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.8766666666666666,1.0,0.75,0.8333333333333334,1,26 -milk,0,0,0,0,1,26 -cola,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.6683333333333333,0.9,0.55,0.6166666666666667,1,26 -cup,0.3833333333333334,0.5,0.6499999999999999,0.5366666666666667,1,26 -folded,0.44666666666666666,1.0,0.4499999999999999,0.6,1,26 -jam,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -black,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.595,1.0,0.4833333333333333,0.6333333333333333,1,26 -soccer,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -hat,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -brown,0.8716666666666667,1.0,0.8333333333333333,0.9,2,25 -coffee,0.7,1.0,0.6333333333333333,0.7333333333333333,1,25 -handle,0.5583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -food,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -towel,0.6249999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.5299999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -stapler,0.9166666666666666,1.0,0.85,0.8999999999999998,1,26 -onion,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -bag,0.6849999999999999,1.0,0.65,0.75,1,26 -sponge,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333334,1,25 -special,0.6,1.0,0.6833333333333333,0.7666666666666666,1,26 -colgate,0.5433333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -leaf,0.8083333333333333,1.0,0.8166666666666667,0.8666666666666666,1,26 -tube,0.8766666666666666,1.0,0.75,0.8333333333333333,1,26 -cell,0.485,0.5,0.6499999999999999,0.5366666666666667,1,26 -mug,0.6666666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -yogurt,0.6966666666666667,1.0,0.65,0.75,1,26 -plantain,0.7183333333333333,0.95,0.5999999999999999,0.6833333333333333,1,26 -red,0.8350000000000002,0.7333333333333333,1.0,0.8166666666666668,3,25 -pepper,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -wheat,0.7150000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.61,1.0,0.5499999999999999,0.6833333333333333,1,26 -toothbrush,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -binder,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -baseball,0.6666666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -pliers,0.6833333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7,1.0,0.7,0.7833333333333333,1,26 -thins,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -package,0.6133333333333334,1.0,0.5,0.65,1,26 -k,0.6749999999999999,1.0,0.7,0.7833333333333333,1,26 -jelly,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -fruit,0.7016666666666667,0.6,0.8666666666666666,0.66,2,25 -apple,0.73,0.85,0.6166666666666666,0.6333333333333334,1,25 -bell,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -battery,0.7066666666666667,0.8,0.6666666666666666,0.6333333333333334,1,26 -jar,0.6733333333333333,1.0,0.5,0.65,1,26 -bound,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -lettuce,0.6716666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -brush,0.8,1.0,0.6833333333333333,0.7833333333333334,1,26 -scissors,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.5549999999999999,1.0,0.5,0.6333333333333333,1,25 -toothpaste,0.875,1.0,0.8833333333333332,0.9166666666666666,1,26 -top,0.6583333333333333,1.0,0.65,0.75,1,26 -spiral,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -handles,0.7266666666666667,1.0,0.5999999999999999,0.7166666666666667,1,25 -camera,0.5166666666666666,1.0,0.45,0.6,1,26 -eraser,0.5083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.7616666666666667,0.525,1.0,0.6757142857142857,5,21 -banana,0.6266666666666667,0.95,0.5499999999999999,0.65,1,26 -pitcher,0.775,1.0,0.7666666666666666,0.8333333333333333,1,26 -phone,0.49499999999999994,0.5,0.5666666666666667,0.5133333333333334,1,26 -stick,0.5716666666666667,1.0,0.5166666666666666,0.65,1,25 -cereal,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.93,1.0,0.9,0.9400000000000001,2,26 -hair,0.7583333333333334,0.9,0.7333333333333333,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.735,1.0,0.6,0.7166666666666667,1,26 -can,0.8666666666666668,1.0,0.8333333333333333,0.9,2,25 -coca,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666666,1,26 -crackers,0.5816666666666667,1.0,0.4833333333333334,0.6333333333333333,1,26 -plate,0.6216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,24 -calculator,0.6833333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -tissues,0.7383333333333333,1.0,0.6333333333333333,0.75,1,26 -juice,0.6,1.0,0.5166666666666666,0.65,1,26 -pink,0.61,1.0,0.4666666666666666,0.6166666666666667,1,25 -lemon,0.7066666666666667,0.85,0.6833333333333333,0.7,1,26 -peach,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -bowl,0.49499999999999994,0.5,0.6833333333333333,0.5566666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -blue,0.7166666666666666,1.0,0.6166666666666666,0.7333333333333333,1,25 -used,0.7733333333333333,1.0,0.6833333333333333,0.7833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.53,1.0,0.5166666666666666,0.65,1,26 -ball,0.69,1.0,0.5833333333333333,0.7,1,25 -notebook,0.785,1.0,0.6666666666666666,0.7666666666666667,1,26 -garlic,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -cleaning,0.795,1.0,0.6833333333333333,0.7833333333333333,1,26 -pair,0.875,1.0,0.8666666666666668,0.9200000000000002,2,26 -container,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -tomato,0.7366666666666667,0.85,0.7333333333333333,0.75,1,26 -cellphone,0.43666666666666665,0.55,0.4999999999999999,0.4966666666666667,1,26 -potato,0.5349999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -light,0.8483333333333334,1.0,0.8,0.8800000000000001,2,25 -green,0.9233333333333335,0.8166666666666667,1.0,0.8799999999999999,3,23 -bottle,0.9333333333333332,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.647962962962963 -F1-Score: 0.6797751322751322 -Precision: 0.8787808641975309 -Recall: 0.6137345679012346 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.605,1.0,0.5666666666666667,0.6833333333333333,1,24 -yellow,0.95,0.8666666666666666,1.0,0.9133333333333333,6,25 -looks,0.7233333333333334,0.75,0.6833333333333333,0.6666666666666666,1,24 -keyboard,0.8666666666666666,1.0,0.7833333333333333,0.85,1,26 -glue,0.7466666666666666,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -flashlight,0.6833333333333333,1.0,0.65,0.75,1,26 -cup,0.31666666666666665,0.3666666666666667,0.6333333333333333,0.43000000000000005,1,25 -folded,0.5683333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -jam,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -black,0.9633333333333333,0.9,1.0,0.9333333333333332,6,23 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5683333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -soccer,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -hat,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,26 -coffee,0.795,1.0,0.6166666666666666,0.7333333333333334,1,25 -handle,0.5333333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -food,0.625,1.0,0.5499999999999999,0.6833333333333333,1,25 -towel,0.7016666666666667,1.0,0.5833333333333333,0.7,1,26 -chips,0.775,1.0,0.7,0.7833333333333333,1,26 -stapler,0.5833333333333333,1.0,0.5999999999999999,0.7,1,26 -onion,0.42666666666666664,0.7,0.6166666666666666,0.5566666666666668,1,26 -bag,0.6966666666666665,1.0,0.5833333333333333,0.7,1,26 -sponge,0.6933333333333334,1.0,0.5333333333333333,0.6666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.6583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -special,0.5333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -colgate,0.735,1.0,0.5999999999999999,0.7166666666666666,1,26 -leaf,0.7916666666666666,1.0,0.7166666666666666,0.8,1,26 -tube,0.6983333333333334,1.0,0.5166666666666666,0.6666666666666667,1,26 -cell,0.41500000000000004,0.6,0.5666666666666667,0.5333333333333333,1,26 -mug,0.6066666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -yogurt,0.7083333333333333,1.0,0.5833333333333333,0.7,1,26 -plantain,0.73,1.0,0.7,0.7833333333333333,1,26 -red,0.9,0.8,1.0,0.86,3,26 -pepper,0.6,1.0,0.5333333333333333,0.6666666666666667,1,26 -wheat,0.505,1.0,0.4999999999999999,0.6333333333333333,1,26 -kleenex,0.8083333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -toothbrush,0.6166666666666667,1.0,0.65,0.75,1,26 -binder,0.7466666666666666,1.0,0.5833333333333333,0.7166666666666667,1,26 -baseball,0.6266666666666667,1.0,0.6499999999999999,0.75,1,26 -pliers,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.755,1.0,0.7,0.7833333333333333,1,26 -thins,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -package,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -k,0.5716666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -jelly,0.8266666666666665,1.0,0.7833333333333333,0.85,1,26 -fruit,0.6633333333333333,0.5833333333333333,0.8666666666666666,0.6766666666666667,2,25 -apple,0.5883333333333333,1.0,0.4499999999999999,0.6,1,25 -bell,0.755,1.0,0.6333333333333333,0.75,1,26 -battery,0.6566666666666666,1.0,0.5,0.65,1,26 -jar,0.5633333333333332,1.0,0.4833333333333333,0.6333333333333333,1,26 -bound,0.755,1.0,0.7166666666666666,0.8,1,26 -lettuce,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -brush,0.6716666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -scissors,0.585,1.0,0.5333333333333333,0.6666666666666667,1,26 -lime,0.6166666666666667,1.0,0.4999999999999999,0.65,1,25 -toothpaste,0.4833333333333333,1.0,0.5333333333333333,0.65,1,26 -top,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -spiral,0.5933333333333333,1.0,0.5833333333333333,0.7,1,26 -handles,0.6666666666666666,1.0,0.6,0.7166666666666667,1,25 -camera,0.6849999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.8083333333333333,0.6833333333333333,1.0,0.8076190476190476,5,19 -banana,0.8166666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -pitcher,0.755,1.0,0.5833333333333333,0.7166666666666667,1,26 -phone,0.51,0.5,0.65,0.5366666666666667,1,26 -stick,0.7016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -cereal,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -bulb,0.8483333333333333,0.7833333333333333,0.9,0.8,2,27 -hair,0.5916666666666666,1.0,0.4666666666666666,0.6166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -can,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.65,1.0,0.7333333333333332,0.8,1,26 -crackers,0.5433333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -plate,0.5983333333333334,1.0,0.45,0.6166666666666667,1,25 -calculator,0.6933333333333334,1.0,0.6333333333333332,0.7333333333333333,1,26 -tissues,0.7016666666666667,1.0,0.6,0.7166666666666667,1,26 -juice,0.5133333333333333,1.0,0.5499999999999999,0.6666666666666667,1,26 -pink,0.6,1.0,0.6166666666666666,0.7166666666666666,1,25 -lemon,0.33999999999999997,0.55,0.4666666666666666,0.4766666666666667,1,26 -peach,0.6966666666666667,1.0,0.5666666666666667,0.7,1,26 -bowl,0.5933333333333334,0.5,0.7,0.5533333333333335,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8583333333333332,1.0,0.7833333333333333,0.85,1,26 -blue,0.7366666666666667,0.75,0.7166666666666666,0.65,1,25 -used,0.6599999999999999,1.0,0.5833333333333333,0.7,1,23 -energizer,0,0,0,0,1,26 -pear,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.58,1.0,0.5499999999999999,0.6666666666666666,1,25 -notebook,0.7266666666666667,1.0,0.7166666666666666,0.8,1,26 -garlic,0.5433333333333332,0.6833333333333333,0.5666666666666667,0.55,1,26 -cleaning,0.7,1.0,0.6499999999999999,0.75,1,26 -pair,0.8550000000000001,1.0,0.8333333333333333,0.9,2,27 -container,0.6683333333333333,1.0,0.5666666666666667,0.7,1,25 -tomato,0.755,0.9,0.7666666666666666,0.7666666666666666,1,26 -cellphone,0.385,0.5,0.55,0.5033333333333333,1,26 -potato,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -light,0.765,0.6833333333333333,0.9,0.7466666666666667,2,26 -green,0.9466666666666667,0.8833333333333332,1.0,0.9166666666666666,3,24 -bottle,0.9333333333333332,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6394907407407407 -F1-Score: 0.6730952380952381 -Precision: 0.8702160493827162 -Recall: 0.6094135802469135 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7100000000000001,1.0,0.65,0.75,1,25 -yellow,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,6,24 -looks,0.6399999999999999,0.85,0.5833333333333333,0.6333333333333333,1,24 -keyboard,0.6516666666666666,1.0,0.5166666666666666,0.65,1,26 -glue,0.6016666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.625,1.0,0.6166666666666666,0.7166666666666666,1,26 -flashlight,0.6883333333333334,0.95,0.6166666666666666,0.7,1,26 -cup,0.4683333333333334,0.5,0.6,0.52,1,26 -folded,0.63,1.0,0.5833333333333333,0.7,1,26 -jam,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -black,0.8550000000000001,0.6833333333333333,1.0,0.7933333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -soccer,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -hat,0.7183333333333333,1.0,0.6499999999999999,0.75,1,26 -brown,0.8966666666666665,1.0,0.8666666666666668,0.9200000000000002,2,25 -coffee,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -handle,0.63,1.0,0.4833333333333334,0.6333333333333333,1,26 -food,0.49333333333333335,1.0,0.4666666666666666,0.6166666666666666,1,26 -towel,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -chips,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.625,1.0,0.6333333333333332,0.7333333333333333,1,26 -onion,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -bag,0.6316666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -sponge,0.6683333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -zero,0,0,0,0,1,26 -computer,0.78,1.0,0.7166666666666666,0.8,1,25 -special,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -colgate,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.6766666666666666,1.0,0.6499999999999999,0.75,1,26 -tube,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -cell,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -mug,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -yogurt,0.705,1.0,0.5999999999999999,0.7166666666666666,1,26 -plantain,0.635,1.0,0.6,0.7166666666666666,1,26 -red,0.6716666666666666,0.5349999999999999,1.0,0.674047619047619,3,25 -pepper,0.6383333333333333,1.0,0.4999999999999999,0.65,1,26 -wheat,0.5966666666666667,1.0,0.55,0.6833333333333333,1,26 -kleenex,0.6933333333333332,1.0,0.6,0.7166666666666667,1,26 -toothbrush,0.6016666666666667,1.0,0.5166666666666666,0.65,1,26 -binder,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -baseball,0.755,1.0,0.5833333333333333,0.7166666666666667,1,26 -pliers,0.525,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.5433333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -thins,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -package,0.6683333333333332,0.95,0.6499999999999999,0.7166666666666667,1,26 -k,0.86,1.0,0.7333333333333333,0.8166666666666667,1,26 -jelly,0.6216666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -fruit,0.6533333333333332,0.7166666666666666,0.8,0.7033333333333334,2,25 -apple,0.53,0.8,0.5333333333333332,0.5833333333333333,1,25 -bell,0.9349999999999999,1.0,0.85,0.8999999999999998,1,26 -battery,0.705,1.0,0.65,0.75,1,26 -jar,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bound,0.8166666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -lettuce,0.6716666666666666,0.85,0.6499999999999999,0.65,1,26 -brush,0.7183333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -scissors,0.79,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.7166666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -toothpaste,0.7166666666666667,1.0,0.7166666666666666,0.8,1,26 -top,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -spiral,0.6966666666666667,1.0,0.55,0.6833333333333333,1,26 -handles,0.465,1.0,0.4666666666666666,0.6166666666666667,1,25 -camera,0.6883333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -eraser,0.4883333333333333,1.0,0.41666666666666663,0.5833333333333334,1,26 -creamer,0,0,0,0,1,26 -white,0.8733333333333334,0.7333333333333333,1.0,0.8266666666666665,5,22 -banana,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -pitcher,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -phone,0.655,1.0,0.65,0.75,1,26 -stick,0.53,1.0,0.4666666666666666,0.6166666666666666,1,25 -cereal,0.76,1.0,0.5666666666666667,0.7,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -hair,0.8099999999999999,1.0,0.7333333333333333,0.8166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -can,0.9466666666666667,1.0,0.9333333333333332,0.96,2,24 -coca,0.5833333333333334,1.0,0.5833333333333333,0.7,1,26 -crackers,0.6466666666666667,1.0,0.6,0.7166666666666667,1,26 -plate,0.8216666666666667,1.0,0.7833333333333333,0.85,1,25 -calculator,0.6433333333333333,0.95,0.55,0.6666666666666667,1,26 -tissues,0.4833333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -juice,0.4333333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -pink,0.6849999999999999,1.0,0.6499999999999999,0.75,1,25 -lemon,0.635,0.6,0.6833333333333333,0.59,1,26 -peach,0.65,1.0,0.5833333333333333,0.7,1,26 -bowl,0.3433333333333334,0.5,0.6,0.52,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -blue,0.6633333333333333,1.0,0.65,0.75,1,25 -used,0.55,1.0,0.5333333333333333,0.65,1,24 -energizer,0,0,0,0,1,26 -pear,0.55,1.0,0.5833333333333333,0.7,1,26 -ball,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333334,1,25 -notebook,0.6383333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -garlic,0.7683333333333333,1.0,0.65,0.75,1,26 -cleaning,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -pair,0.8716666666666667,1.0,0.8333333333333333,0.9,2,26 -container,0.6666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,25 -tomato,0.6033333333333333,0.85,0.5999999999999999,0.6333333333333333,1,26 -cellphone,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -potato,0.5700000000000001,1.0,0.4833333333333333,0.6333333333333333,1,25 -light,0.9266666666666665,1.0,0.9,0.9400000000000001,2,25 -green,0.7916666666666667,0.5833333333333333,1.0,0.72,3,24 -bottle,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6376697530864196 -F1-Score: 0.6749757495590828 -Precision: 0.8885956790123456 -Recall: 0.6016975308641976 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5416666666666666,1.0,0.5166666666666666,0.65,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.635,1.0,0.5,0.65,1,24 -keyboard,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -glue,0.5633333333333332,1.0,0.6166666666666666,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.8350000000000002,1.0,0.7333333333333333,0.8166666666666668,1,26 -flashlight,0.6333333333333333,1.0,0.45,0.6166666666666667,1,26 -cup,0.5483333333333333,0.55,0.7,0.5633333333333334,1,26 -folded,0.55,1.0,0.6166666666666666,0.7166666666666666,1,26 -jam,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -black,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.75,1.0,0.6166666666666666,0.7333333333333334,1,26 -soccer,0.71,1.0,0.5666666666666667,0.7,1,26 -hat,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -brown,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -handle,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -food,0.725,1.0,0.7,0.7833333333333333,1,25 -towel,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -chips,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -onion,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -bag,0.6083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -sponge,0.755,1.0,0.7,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7133333333333333,1.0,0.65,0.75,1,25 -special,0.5416666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -colgate,0.7649999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -leaf,0.9416666666666667,1.0,0.9,0.9333333333333332,1,26 -tube,0.505,1.0,0.4999999999999999,0.6333333333333333,1,26 -cell,0.6799999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -mug,0.705,1.0,0.65,0.75,1,26 -yogurt,0.75,1.0,0.6666666666666666,0.7666666666666667,1,26 -plantain,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -red,0.9100000000000001,0.8,1.0,0.8633333333333333,3,25 -pepper,0.46333333333333326,1.0,0.5166666666666666,0.65,1,26 -wheat,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -kleenex,0.7,1.0,0.6833333333333333,0.7666666666666667,1,26 -toothbrush,0.755,1.0,0.7166666666666666,0.8,1,26 -binder,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -baseball,0.76,1.0,0.7,0.7833333333333333,1,26 -pliers,0.5900000000000001,1.0,0.5,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -thins,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -package,0.73,1.0,0.7,0.7833333333333333,1,26 -k,0.7966666666666666,1.0,0.7,0.7833333333333333,1,26 -jelly,0.8833333333333332,1.0,0.8333333333333333,0.8833333333333332,1,26 -fruit,0.9216666666666666,0.9,0.9333333333333332,0.8933333333333333,2,26 -apple,0.63,0.85,0.5,0.6,1,25 -bell,0.5733333333333333,1.0,0.5166666666666666,0.65,1,26 -battery,0.71,1.0,0.6499999999999999,0.75,1,26 -jar,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666666,1,26 -bound,0.6133333333333333,1.0,0.65,0.75,1,26 -lettuce,0.5666666666666667,1.0,0.5,0.6333333333333333,1,26 -brush,0.6066666666666667,1.0,0.55,0.6833333333333333,1,26 -scissors,0.7933333333333333,1.0,0.7,0.7833333333333333,1,26 -lime,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -toothpaste,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -top,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -spiral,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -handles,0.32166666666666666,0.5,0.5666666666666667,0.5,1,25 -camera,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -eraser,0.7999999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.6950000000000001,0.5516666666666665,1.0,0.6921428571428572,5,21 -banana,0.6716666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -pitcher,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -phone,0.7666666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -stick,0.6466666666666667,1.0,0.6,0.7166666666666667,1,25 -cereal,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -bulb,0.9,1.0,0.9,0.9400000000000001,2,27 -hair,0.61,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7016666666666668,1.0,0.6166666666666666,0.7333333333333334,1,26 -can,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,24 -coca,0.7666666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -crackers,0.62,1.0,0.4833333333333333,0.6333333333333333,1,26 -plate,0.7416666666666666,1.0,0.6833333333333332,0.7666666666666666,1,25 -calculator,0.6066666666666667,0.9,0.6,0.6666666666666667,1,26 -tissues,0.71,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.4033333333333333,0.5,0.55,0.5033333333333333,1,26 -pink,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -lemon,0.49333333333333335,0.95,0.4666666666666666,0.6,1,26 -peach,0.58,1.0,0.5166666666666666,0.65,1,26 -bowl,0.4133333333333334,0.6,0.5333333333333333,0.5133333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6966666666666667,1.0,0.7,0.7833333333333333,1,26 -blue,0.4499999999999999,1.0,0.4999999999999999,0.6333333333333333,1,25 -used,0.6966666666666667,1.0,0.6499999999999999,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -ball,0.655,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.6666666666666667,1.0,0.5833333333333333,0.7,1,26 -garlic,0.7666666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -cleaning,0.6616666666666666,1.0,0.5666666666666667,0.7,1,26 -pair,0.8933333333333333,1.0,0.8666666666666666,0.9199999999999999,2,27 -container,0.775,1.0,0.6666666666666666,0.7666666666666667,1,25 -tomato,0.58,0.9,0.5666666666666667,0.6166666666666667,1,26 -cellphone,0.6416666666666666,1.0,0.6833333333333333,0.7666666666666667,1,26 -potato,0.74,1.0,0.5666666666666667,0.7,1,25 -light,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,27 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8583333333333332,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6526697530864197 -F1-Score: 0.6921803350970017 -Precision: 0.8969290123456791 -Recall: 0.6171296296296296 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7433333333333334,1.0,0.6499999999999999,0.75,1,25 -yellow,0.8833333333333334,0.7166666666666667,1.0,0.8133333333333332,6,24 -looks,0.6633333333333333,0.9,0.6833333333333332,0.7,1,24 -keyboard,0.5683333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -glue,0.7266666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.5933333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.5966666666666667,1.0,0.5,0.65,1,26 -cup,0.43833333333333335,0.5,0.7,0.5533333333333333,1,26 -folded,0.7883333333333333,1.0,0.6333333333333333,0.75,1,26 -jam,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -black,0.93,0.8666666666666668,1.0,0.9180952380952382,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -soccer,0.6133333333333334,1.0,0.65,0.75,1,26 -hat,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -brown,0.8833333333333332,1.0,0.8666666666666666,0.9200000000000002,2,25 -coffee,0.71,1.0,0.6333333333333333,0.7333333333333333,1,26 -handle,0.5466666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -food,0.6599999999999999,1.0,0.65,0.75,1,25 -towel,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -chips,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -stapler,0.89,1.0,0.7833333333333333,0.85,1,26 -onion,0.6016666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -bag,0.6183333333333334,1.0,0.5833333333333333,0.7,1,26 -sponge,0.6416666666666666,1.0,0.7,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -special,0.8033333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -colgate,0.7416666666666666,1.0,0.6499999999999999,0.75,1,26 -leaf,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -tube,0.6666666666666666,1.0,0.7,0.7833333333333333,1,26 -cell,0.5916666666666666,1.0,0.5,0.6333333333333333,1,26 -mug,0.6849999999999999,1.0,0.5333333333333333,0.6833333333333333,1,26 -yogurt,0.525,1.0,0.4833333333333333,0.6333333333333333,1,26 -plantain,0.5016666666666667,1.0,0.45,0.6,1,26 -red,0.6816666666666666,0.5116666666666666,1.0,0.6657142857142857,3,24 -pepper,0.85,1.0,0.75,0.8333333333333333,1,26 -wheat,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -kleenex,0.8333333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -toothbrush,0.77,1.0,0.5666666666666667,0.7,1,26 -binder,0.5599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.575,1.0,0.5499999999999999,0.6666666666666666,1,26 -pliers,0.5249999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -thins,0.655,1.0,0.5166666666666666,0.6666666666666667,1,26 -package,0.7433333333333334,0.95,0.6166666666666666,0.7,1,26 -k,0.6333333333333333,1.0,0.65,0.75,1,26 -jelly,0.6933333333333332,1.0,0.65,0.75,1,26 -fruit,0.7383333333333333,0.6333333333333333,0.8999999999999998,0.7066666666666668,2,25 -apple,0.43,1.0,0.4999999999999999,0.6333333333333333,1,25 -bell,0.6083333333333333,1.0,0.65,0.75,1,26 -battery,0.7083333333333333,0.95,0.6833333333333333,0.7333333333333333,1,26 -jar,0.6183333333333334,0.85,0.6,0.6166666666666667,1,26 -bound,0.78,1.0,0.6333333333333333,0.75,1,26 -lettuce,0.6883333333333334,0.95,0.5499999999999999,0.65,1,26 -brush,0.5933333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -scissors,0.45499999999999996,1.0,0.5166666666666666,0.65,1,26 -lime,0.7833333333333333,1.0,0.7,0.7833333333333333,1,25 -toothpaste,0.825,1.0,0.7,0.8,1,26 -top,0.5,1.0,0.5166666666666666,0.65,1,26 -spiral,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -handles,0.7116666666666667,1.0,0.5666666666666667,0.7,1,25 -camera,0.5316666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -eraser,0.7533333333333333,1.0,0.5666666666666667,0.7,1,26 -creamer,0,0,0,0,1,26 -white,0.74,0.5916666666666666,1.0,0.7252380952380952,5,21 -banana,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -pitcher,0.63,1.0,0.5166666666666666,0.65,1,26 -phone,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -stick,0.7633333333333333,1.0,0.7499999999999999,0.8166666666666667,1,25 -cereal,0.6933333333333332,1.0,0.7,0.7833333333333333,1,26 -bulb,0.8383333333333333,1.0,0.8,0.8800000000000001,2,26 -hair,0.6833333333333333,0.95,0.6833333333333333,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6799999999999999,1.0,0.65,0.75,1,26 -can,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.7216666666666667,1.0,0.6,0.7166666666666667,1,26 -crackers,0.555,1.0,0.4833333333333333,0.6333333333333334,1,26 -plate,0.7833333333333333,1.0,0.75,0.8166666666666667,1,24 -calculator,0.29333333333333333,0.65,0.4999999999999999,0.5033333333333333,1,26 -tissues,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -pink,0.9083333333333332,1.0,0.8833333333333332,0.9166666666666666,1,25 -lemon,0.5366666666666665,0.7,0.5999999999999999,0.5733333333333334,1,26 -peach,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bowl,0.3983333333333333,0.5,0.65,0.5366666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6183333333333334,1.0,0.5833333333333333,0.7,1,26 -blue,0.93,1.0,0.85,0.8999999999999998,1,25 -used,0.8216666666666665,1.0,0.7333333333333333,0.8166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.775,1.0,0.6833333333333333,0.7833333333333334,1,26 -ball,0.6216666666666667,1.0,0.55,0.6833333333333333,1,25 -notebook,0.7166666666666667,1.0,0.7499999999999999,0.8166666666666667,1,26 -garlic,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.655,1.0,0.5999999999999999,0.7166666666666667,1,26 -pair,0.9333333333333332,1.0,0.9333333333333332,0.96,2,27 -container,0.76,1.0,0.6666666666666666,0.7666666666666667,1,25 -tomato,0.6033333333333333,0.55,0.6666666666666666,0.5566666666666666,1,26 -cellphone,0.55,1.0,0.5499999999999999,0.6666666666666666,1,26 -potato,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -light,0.9099999999999999,1.0,0.8666666666666668,0.9200000000000002,2,25 -green,0.8733333333333334,0.7333333333333333,1.0,0.8314285714285713,3,22 -bottle,0.8766666666666666,1.0,0.8333333333333333,0.9,2,25 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6437808641975309 -F1-Score: 0.6834303350970018 -Precision: 0.8842901234567901 -Recall: 0.6174382716049381 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.725,1.0,0.6166666666666666,0.7333333333333333,1,25 -yellow,0.95,0.8833333333333332,1.0,0.9266666666666667,6,24 -looks,0.7516666666666667,0.85,0.75,0.7166666666666666,1,24 -keyboard,0.7266666666666667,1.0,0.65,0.75,1,26 -glue,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -milk,0,0,0,0,1,26 -cola,0.7166666666666667,1.0,0.5666666666666667,0.7,1,26 -flashlight,0.63,0.95,0.5833333333333333,0.6666666666666667,1,26 -cup,0.5416666666666666,0.5,0.6666666666666666,0.5466666666666666,1,26 -folded,0.7716666666666666,1.0,0.7166666666666666,0.8,1,26 -jam,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -black,0.8150000000000001,0.6583333333333333,1.0,0.7904761904761906,6,18 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -soccer,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -hat,0.7083333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -brown,0.915,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.7083333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -handle,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -food,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -towel,0.5683333333333332,1.0,0.5166666666666666,0.65,1,26 -chips,0.7633333333333333,1.0,0.6333333333333333,0.75,1,26 -stapler,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.715,1.0,0.5999999999999999,0.7166666666666667,1,26 -bag,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -sponge,0.735,1.0,0.6499999999999999,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.7849999999999999,1.0,0.6333333333333333,0.75,1,25 -special,0.61,1.0,0.4833333333333333,0.6333333333333333,1,26 -colgate,0.9016666666666666,1.0,0.8,0.8666666666666666,1,26 -leaf,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -tube,0.6133333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -cell,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -mug,0.36666666666666664,1.0,0.33333333333333337,0.5,1,26 -yogurt,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -plantain,0.5599999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -red,0.7183333333333335,0.6116666666666666,1.0,0.7323809523809525,3,24 -pepper,0.8299999999999998,1.0,0.7333333333333333,0.8166666666666667,1,26 -wheat,0.5666666666666667,1.0,0.4499999999999999,0.6,1,26 -kleenex,0.7716666666666666,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.6266666666666667,1.0,0.6,0.7166666666666667,1,26 -binder,0.7416666666666666,1.0,0.7166666666666666,0.8,1,26 -baseball,0.705,1.0,0.6499999999999999,0.75,1,26 -pliers,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -thins,0.7216666666666666,1.0,0.5666666666666667,0.7,1,26 -package,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -k,0.6133333333333334,1.0,0.6499999999999999,0.75,1,26 -jelly,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -fruit,0.6366666666666666,0.6,0.8666666666666666,0.6766666666666666,2,25 -apple,0.805,0.95,0.7833333333333333,0.8166666666666667,1,25 -bell,0.635,1.0,0.4999999999999999,0.65,1,26 -battery,0.675,1.0,0.6833333333333333,0.7666666666666666,1,26 -jar,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.6933333333333334,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.7216666666666667,0.9,0.7666666666666666,0.7666666666666667,1,26 -brush,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -scissors,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -lime,0.5549999999999999,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -top,0.635,1.0,0.45,0.6166666666666667,1,26 -spiral,0.6933333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -handles,0.6266666666666667,1.0,0.5833333333333333,0.7,1,25 -camera,0.675,1.0,0.5833333333333333,0.7,1,26 -eraser,0.58,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,0.7949999999999999,0.7,1.0,0.8209523809523809,5,21 -banana,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -pitcher,0.7133333333333333,1.0,0.6,0.7166666666666666,1,26 -phone,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -stick,0.7983333333333333,1.0,0.6333333333333333,0.75,1,25 -cereal,0.7100000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -bulb,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.6633333333333333,0.9,0.6166666666666666,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5716666666666665,1.0,0.5166666666666666,0.65,1,26 -can,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -coca,0.575,1.0,0.5499999999999999,0.6666666666666666,1,26 -crackers,0.5349999999999999,1.0,0.5166666666666666,0.65,1,26 -plate,0.505,1.0,0.5166666666666666,0.65,1,25 -calculator,0.5666666666666667,0.8,0.6166666666666666,0.6,1,26 -tissues,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -pink,0.7016666666666667,1.0,0.4833333333333333,0.65,1,25 -lemon,0.4916666666666667,0.65,0.5999999999999999,0.5566666666666668,1,26 -peach,0.63,1.0,0.4999999999999999,0.65,1,26 -bowl,0.49833333333333335,0.5,0.6499999999999999,0.5366666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -blue,0.85,1.0,0.7833333333333333,0.85,1,25 -used,0.61,1.0,0.5333333333333333,0.6666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.735,1.0,0.6333333333333333,0.75,1,26 -ball,0.6766666666666666,1.0,0.6499999999999999,0.75,1,25 -notebook,0.5716666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -garlic,0.4833333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -cleaning,0.39333333333333337,0.6,0.5833333333333333,0.53,1,26 -pair,0.93,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.585,1.0,0.4999999999999999,0.65,1,25 -tomato,0.6266666666666666,0.8,0.6833333333333333,0.6333333333333334,1,26 -cellphone,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -potato,0.5883333333333334,1.0,0.55,0.6833333333333333,1,25 -light,0.8466666666666665,1.0,0.8333333333333333,0.9,2,25 -green,0.9133333333333334,0.7916666666666666,1.0,0.8657142857142857,3,22 -bottle,0.9,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6454012345679012 -F1-Score: 0.6800573192239859 -Precision: 0.8856018518518518 -Recall: 0.6108024691358024 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.46333333333333326,1.0,0.4499999999999999,0.6,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.5766666666666667,0.9,0.5333333333333332,0.6,1,24 -keyboard,0.59,1.0,0.41666666666666663,0.5833333333333333,1,26 -glue,0.8016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6183333333333334,1.0,0.55,0.6833333333333333,1,26 -flashlight,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -cup,0.38,0.5,0.6499999999999999,0.5366666666666667,1,26 -folded,0.5249999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -jam,0.6933333333333332,1.0,0.6499999999999999,0.75,1,26 -black,0.8966666666666668,0.7333333333333333,1.0,0.8266666666666668,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6016666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -soccer,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -hat,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -brown,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -coffee,0.625,1.0,0.6333333333333333,0.7333333333333333,1,25 -handle,0.6900000000000001,1.0,0.6,0.7166666666666666,1,25 -food,0.6900000000000001,1.0,0.6166666666666666,0.7333333333333333,1,25 -towel,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -chips,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.71,1.0,0.5999999999999999,0.7166666666666666,1,26 -onion,0.625,1.0,0.5333333333333333,0.6666666666666667,1,26 -bag,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.6666666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666667,1,25 -special,0.5816666666666668,1.0,0.4333333333333333,0.6,1,26 -colgate,0.6333333333333332,1.0,0.6833333333333332,0.7666666666666666,1,26 -leaf,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.705,1.0,0.6499999999999999,0.75,1,26 -cell,0.4083333333333333,0.6,0.5833333333333333,0.53,1,26 -mug,0.635,1.0,0.5,0.65,1,25 -yogurt,0.7966666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -plantain,0.6849999999999999,1.0,0.5833333333333333,0.7,1,26 -red,0.85,0.7583333333333333,1.0,0.8357142857142857,3,24 -pepper,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -kleenex,0.6599999999999999,1.0,0.6,0.7166666666666667,1,26 -toothbrush,0.6383333333333333,1.0,0.6,0.7166666666666666,1,26 -binder,0.5766666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.4583333333333333,1.0,0.4499999999999999,0.6,1,26 -pliers,0.6583333333333332,1.0,0.6333333333333332,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -thins,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -package,0.7016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -k,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -jelly,0.725,1.0,0.5666666666666667,0.7,1,26 -fruit,0.77,0.6833333333333333,0.9333333333333332,0.76,2,25 -apple,0.6016666666666666,1.0,0.4833333333333333,0.6333333333333333,1,25 -bell,0.7416666666666667,1.0,0.7166666666666666,0.8,1,26 -battery,0.6166666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -jar,0.7333333333333333,1.0,0.75,0.8166666666666667,1,26 -bound,0.6383333333333334,1.0,0.4833333333333333,0.6333333333333334,1,26 -lettuce,0.5233333333333333,1.0,0.5166666666666666,0.65,1,26 -brush,0.9,1.0,0.8333333333333333,0.8833333333333332,1,26 -scissors,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.755,1.0,0.6166666666666666,0.7333333333333333,1,25 -toothpaste,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -top,0.7,1.0,0.6333333333333332,0.7333333333333333,1,26 -spiral,0.74,1.0,0.6499999999999999,0.75,1,26 -handles,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -camera,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -eraser,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,0.7616666666666666,0.5916666666666667,1.0,0.7338095238095238,5,21 -banana,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -pitcher,0.635,1.0,0.5833333333333333,0.7,1,26 -phone,0.37833333333333335,0.6,0.5333333333333333,0.5133333333333333,1,26 -stick,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -cereal,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -bulb,0.9,1.0,0.9,0.9400000000000001,2,26 -hair,0.6433333333333333,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -can,0.8800000000000001,1.0,0.8333333333333333,0.9,2,24 -coca,0.5499999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.5299999999999999,1.0,0.5166666666666666,0.65,1,26 -plate,0.6166666666666666,1.0,0.5333333333333333,0.65,1,25 -calculator,0.4699999999999999,0.7,0.4833333333333333,0.53,1,26 -tissues,0.585,1.0,0.4666666666666666,0.6166666666666667,1,26 -juice,0.76,1.0,0.6333333333333333,0.75,1,26 -pink,0.7333333333333333,1.0,0.7333333333333333,0.8,1,25 -lemon,0.5616666666666666,0.75,0.5999999999999999,0.5833333333333333,1,26 -peach,0.5216666666666667,1.0,0.5166666666666666,0.65,1,26 -bowl,0.665,0.5,0.8333333333333333,0.6066666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5966666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -blue,0.6849999999999999,1.0,0.6,0.7166666666666667,1,25 -used,0.725,1.0,0.7,0.7833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -ball,0.475,1.0,0.5499999999999999,0.6666666666666667,1,25 -notebook,0.7583333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -garlic,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -cleaning,0.6599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -container,0.75,1.0,0.7666666666666666,0.8333333333333333,1,25 -tomato,0.5833333333333334,0.9,0.55,0.6166666666666667,1,26 -cellphone,0.45666666666666667,0.6,0.6333333333333333,0.5466666666666666,1,26 -potato,0.675,1.0,0.6833333333333332,0.7666666666666666,1,25 -light,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -green,0.9233333333333335,0.8166666666666667,1.0,0.8800000000000001,3,23 -bottle,0.9266666666666667,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6357561728395061 -F1-Score: 0.6784215167548501 -Precision: 0.8845679012345679 -Recall: 0.6094135802469135 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6466666666666667,1.0,0.5833333333333333,0.7,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.71,1.0,0.6166666666666666,0.7333333333333333,1,24 -keyboard,0.5633333333333332,1.0,0.45,0.6,1,26 -glue,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.655,1.0,0.65,0.75,1,26 -cup,0.47666666666666674,0.5,0.5833333333333333,0.51,1,26 -folded,0.4833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -jam,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -black,0.8600000000000001,0.7166666666666666,1.0,0.818095238095238,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6966666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -soccer,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -hat,0.5850000000000001,1.0,0.5,0.65,1,26 -brown,0.8766666666666666,1.0,0.8333333333333333,0.9,2,24 -coffee,0.6666666666666667,1.0,0.5833333333333333,0.7,1,25 -handle,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666667,1,25 -food,0.46333333333333326,1.0,0.4999999999999999,0.6333333333333333,1,26 -towel,0.9083333333333332,1.0,0.85,0.9,1,26 -chips,0.6433333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -stapler,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.755,1.0,0.6499999999999999,0.75,1,26 -bag,0.5933333333333334,1.0,0.5166666666666666,0.65,1,26 -sponge,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5266666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -special,0.7666666666666667,1.0,0.7166666666666666,0.8,1,26 -colgate,0.75,1.0,0.7166666666666666,0.8,1,26 -leaf,0.6716666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -tube,0.635,1.0,0.4999999999999999,0.65,1,26 -cell,0.5999999999999999,0.65,0.5833333333333333,0.5666666666666667,1,26 -mug,0.75,1.0,0.6166666666666666,0.7333333333333334,1,25 -yogurt,0.5083333333333333,1.0,0.5166666666666666,0.65,1,26 -plantain,0.805,1.0,0.7166666666666666,0.8,1,26 -red,0.8733333333333334,0.7166666666666666,1.0,0.8,3,27 -pepper,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333334,1,26 -wheat,0.6133333333333333,1.0,0.5,0.65,1,26 -kleenex,0.6083333333333333,1.0,0.5166666666666666,0.65,1,26 -toothbrush,0.6416666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -binder,0.7383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -pliers,0.6683333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6816666666666666,1.0,0.55,0.6833333333333333,1,26 -thins,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -package,0.8083333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -k,0.5416666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -jelly,0.6766666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -fruit,0.845,0.7,0.9333333333333332,0.76,2,27 -apple,0.6766666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -bell,0.7633333333333333,1.0,0.75,0.8166666666666667,1,26 -battery,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -jar,0.61,1.0,0.5666666666666667,0.6833333333333333,1,26 -bound,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -lettuce,0.6383333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -brush,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.75,1.0,0.7166666666666666,0.8,1,26 -lime,0.7333333333333333,1.0,0.6833333333333332,0.7666666666666666,1,25 -toothpaste,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -top,0.4083333333333333,1.0,0.38333333333333336,0.55,1,26 -spiral,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -handles,0.43666666666666665,0.5,0.65,0.5366666666666667,1,25 -camera,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -eraser,0.475,1.0,0.4666666666666666,0.6166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.615,0.5066666666666666,1.0,0.6476190476190475,5,21 -banana,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -pitcher,0.7166666666666666,1.0,0.65,0.75,1,26 -phone,0.505,0.6,0.5499999999999999,0.53,1,26 -stick,0.5916666666666667,1.0,0.5833333333333333,0.7,1,25 -cereal,0.75,1.0,0.7,0.7833333333333333,1,26 -bulb,0.8800000000000001,1.0,0.8666666666666666,0.9199999999999999,2,27 -hair,0.585,1.0,0.4333333333333333,0.6,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5916666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,0.8683333333333334,1.0,0.8333333333333333,0.9,2,24 -coca,0.5399999999999999,1.0,0.5166666666666666,0.65,1,26 -crackers,0.5716666666666665,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.6799999999999999,1.0,0.6166666666666666,0.7166666666666667,1,25 -calculator,0.6666666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -tissues,0.71,1.0,0.6499999999999999,0.75,1,26 -juice,0.325,0.5,0.6166666666666666,0.5166666666666667,1,26 -pink,0.615,1.0,0.5166666666666666,0.6666666666666667,1,26 -lemon,0.7133333333333334,0.95,0.6666666666666666,0.7333333333333333,1,26 -peach,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.47333333333333333,0.55,0.5833333333333333,0.52,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7916666666666666,1.0,0.7,0.7833333333333333,1,26 -blue,0.6649999999999999,1.0,0.55,0.6833333333333333,1,25 -used,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.69,1.0,0.6,0.7166666666666667,1,26 -ball,0.5516666666666666,1.0,0.4666666666666666,0.6166666666666667,1,25 -notebook,0.39166666666666666,1.0,0.4833333333333333,0.6166666666666667,1,26 -garlic,0.44666666666666666,1.0,0.5,0.6333333333333333,1,26 -cleaning,0.4916666666666667,1.0,0.5,0.6333333333333333,1,26 -pair,0.925,1.0,0.9,0.9400000000000001,2,26 -container,0.7733333333333333,1.0,0.5833333333333333,0.7166666666666667,1,25 -tomato,0.6666666666666666,1.0,0.65,0.75,1,26 -cellphone,0.5016666666666667,0.65,0.5833333333333333,0.5533333333333335,1,26 -potato,0.6466666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -light,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -green,0.9666666666666668,0.9,1.0,0.9333333333333332,3,23 -bottle,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6291512345679012 -F1-Score: 0.6688800705467373 -Precision: 0.8837037037037038 -Recall: 0.594753086419753 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5483333333333333,1.0,0.4666666666666666,0.6166666666666667,1,25 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.7683333333333333,0.8,0.7833333333333333,0.7166666666666667,1,24 -keyboard,0.4216666666666667,1.0,0.4499999999999999,0.6,1,26 -glue,0.705,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.6983333333333334,1.0,0.5166666666666666,0.6666666666666667,1,26 -cup,0.37666666666666665,0.65,0.5,0.5166666666666666,1,26 -folded,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -jam,0.8083333333333332,1.0,0.7499999999999999,0.8166666666666667,1,26 -black,0.93,0.8666666666666666,1.0,0.9180952380952381,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6766666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -soccer,0.4216666666666667,1.0,0.4499999999999999,0.6,1,26 -hat,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -brown,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -coffee,0.69,1.0,0.5666666666666667,0.7,1,26 -handle,0.6733333333333332,1.0,0.6499999999999999,0.75,1,25 -food,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -towel,0.86,1.0,0.7333333333333333,0.8166666666666667,1,26 -chips,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -stapler,0.5383333333333333,1.0,0.4499999999999999,0.6,1,26 -onion,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -bag,0.6433333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -sponge,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333334,1,26 -zero,0,0,0,0,1,26 -computer,0.7433333333333334,1.0,0.6333333333333332,0.7333333333333333,1,25 -special,0.6166666666666666,1.0,0.55,0.6833333333333333,1,26 -colgate,0.7333333333333333,1.0,0.6,0.7166666666666667,1,26 -leaf,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -tube,0.7849999999999999,1.0,0.6,0.7333333333333334,1,26 -cell,0.5783333333333334,1.0,0.4333333333333333,0.6,1,26 -mug,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -yogurt,0.5249999999999999,1.0,0.5166666666666666,0.65,1,26 -plantain,0.6433333333333333,1.0,0.55,0.6833333333333333,1,26 -red,0.8016666666666665,0.6666666666666666,1.0,0.7761904761904761,3,26 -pepper,0.7633333333333333,1.0,0.65,0.75,1,26 -wheat,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -kleenex,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -toothbrush,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -binder,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.5633333333333332,1.0,0.55,0.6666666666666666,1,26 -pliers,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7466666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -thins,0.41,1.0,0.4166666666666667,0.5833333333333333,1,26 -package,0.5933333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -k,0.5883333333333333,1.0,0.5,0.65,1,26 -jelly,0.8300000000000001,1.0,0.7166666666666666,0.8,1,26 -fruit,0.7666666666666666,0.7166666666666667,0.9,0.7666666666666667,2,26 -apple,0.6216666666666667,1.0,0.5833333333333333,0.7,1,25 -bell,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -battery,0.8,1.0,0.7,0.7833333333333333,1,26 -jar,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.5016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -lettuce,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -brush,0.605,1.0,0.4666666666666666,0.6166666666666667,1,26 -scissors,0.6866666666666668,1.0,0.5166666666666666,0.6666666666666667,1,26 -lime,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -toothpaste,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.7183333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -spiral,0.605,1.0,0.6333333333333333,0.7333333333333333,1,26 -handles,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -camera,0.71,1.0,0.5999999999999999,0.7166666666666667,1,26 -eraser,0.7933333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.7399999999999999,0.5666666666666667,1.0,0.6928571428571428,5,22 -banana,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -pitcher,0.625,1.0,0.6833333333333333,0.7666666666666666,1,26 -phone,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -stick,0.6049999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -cereal,0.73,1.0,0.6166666666666666,0.7333333333333334,1,26 -bulb,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.7183333333333333,1.0,0.5666666666666667,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -can,0.8733333333333334,1.0,0.8333333333333333,0.9,2,24 -coca,0.775,1.0,0.7666666666666666,0.8333333333333333,1,26 -crackers,0.6666666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -plate,0.8416666666666666,1.0,0.8166666666666667,0.8666666666666666,1,25 -calculator,0.6983333333333333,0.75,0.7333333333333333,0.6666666666666667,1,26 -tissues,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.5933333333333333,1.0,0.5833333333333333,0.7,1,26 -lemon,0.595,0.6,0.6666666666666666,0.5733333333333335,1,26 -peach,0.785,1.0,0.6333333333333333,0.75,1,26 -bowl,0.255,0.5,0.6333333333333332,0.5266666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.75,1.0,0.7999999999999999,0.85,1,26 -blue,0.5683333333333332,1.0,0.5166666666666666,0.65,1,25 -used,0.7066666666666667,1.0,0.6,0.7166666666666666,1,23 -energizer,0,0,0,0,1,26 -pear,0.775,1.0,0.6666666666666666,0.7666666666666667,1,26 -ball,0.73,1.0,0.6333333333333333,0.75,1,25 -notebook,0.7416666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -garlic,0.61,1.0,0.55,0.6833333333333333,1,26 -cleaning,0.85,1.0,0.7833333333333333,0.85,1,26 -pair,0.9349999999999999,1.0,0.9,0.9400000000000001,2,26 -container,0.41666666666666663,1.0,0.5499999999999999,0.6666666666666666,1,25 -tomato,0.51,0.75,0.5833333333333333,0.5833333333333333,1,26 -cellphone,0.6900000000000001,1.0,0.6,0.7166666666666667,1,26 -potato,0.6583333333333333,1.0,0.5833333333333333,0.7,1,25 -light,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6571604938271605 -F1-Score: 0.689510582010582 -Precision: 0.8969135802469137 -Recall: 0.6145061728395063 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -yellow,0.9266666666666667,0.8333333333333333,1.0,0.8933333333333333,6,24 -looks,0.6966666666666667,0.9,0.6333333333333333,0.6833333333333333,1,24 -keyboard,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -glue,0.585,1.0,0.4833333333333333,0.6333333333333334,1,26 -milk,0,0,0,0,1,26 -cola,0.7333333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -flashlight,0.605,1.0,0.5166666666666666,0.65,1,26 -cup,0.47333333333333333,0.5,0.5499999999999999,0.5033333333333333,1,26 -folded,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -jam,0.7933333333333333,1.0,0.6333333333333333,0.75,1,26 -black,1.0,1.0,1.0,1.0,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.8216666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -soccer,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -hat,0.65,1.0,0.6166666666666666,0.7166666666666666,1,26 -brown,0.8716666666666667,1.0,0.8333333333333334,0.9000000000000001,2,25 -coffee,0.6733333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -handle,0.63,1.0,0.65,0.75,1,25 -food,0.7016666666666667,1.0,0.6,0.7166666666666667,1,26 -towel,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -chips,0.73,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.835,1.0,0.7833333333333333,0.85,1,26 -onion,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -bag,0.6566666666666666,1.0,0.55,0.6833333333333333,1,26 -sponge,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7133333333333333,1.0,0.7,0.7833333333333333,1,25 -special,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666666,1,26 -colgate,0.5333333333333333,1.0,0.5999999999999999,0.7,1,26 -leaf,0.5999999999999999,1.0,0.6666666666666666,0.75,1,26 -tube,0.8,1.0,0.8,0.85,1,26 -cell,0.73,1.0,0.6833333333333333,0.7666666666666666,1,26 -mug,0.6166666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -yogurt,0.65,1.0,0.6499999999999999,0.75,1,26 -plantain,0.6499999999999999,1.0,0.5833333333333333,0.7,1,26 -red,0.755,0.6166666666666666,1.0,0.7347619047619048,3,24 -pepper,0.635,1.0,0.5833333333333333,0.7,1,26 -wheat,0.6416666666666666,1.0,0.5166666666666666,0.65,1,26 -kleenex,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -toothbrush,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.675,1.0,0.65,0.75,1,26 -baseball,0.63,1.0,0.5166666666666666,0.65,1,26 -pliers,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666668,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.51,1.0,0.4333333333333333,0.6,1,26 -thins,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -package,0.6466666666666666,0.95,0.5999999999999999,0.6833333333333333,1,26 -k,0.655,1.0,0.5833333333333333,0.7,1,26 -jelly,0.8483333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -fruit,0.705,0.4999999999999999,0.9666666666666666,0.64,2,26 -apple,0.5166666666666666,0.75,0.5833333333333333,0.5666666666666667,1,25 -bell,0.6266666666666667,1.0,0.4666666666666666,0.6333333333333334,1,26 -battery,0.7383333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -jar,0.7466666666666667,1.0,0.6499999999999999,0.75,1,26 -bound,0.7433333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -lettuce,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -brush,0.55,1.0,0.5333333333333333,0.6666666666666667,1,26 -scissors,0.71,1.0,0.5999999999999999,0.7166666666666667,1,26 -lime,0.7816666666666666,1.0,0.6833333333333333,0.7833333333333333,1,25 -toothpaste,0.605,1.0,0.5499999999999999,0.6833333333333333,1,26 -top,0.73,1.0,0.5999999999999999,0.7166666666666667,1,26 -spiral,0.63,1.0,0.5166666666666666,0.6666666666666666,1,26 -handles,0.675,1.0,0.6166666666666666,0.7166666666666667,1,25 -camera,0.7483333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -eraser,0.7133333333333333,1.0,0.5666666666666667,0.7,1,26 -creamer,0,0,0,0,1,26 -white,0.79,0.6749999999999999,1.0,0.7985714285714285,5,21 -banana,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -pitcher,0.6216666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -phone,0.45499999999999996,1.0,0.4999999999999999,0.6333333333333333,1,26 -stick,0.6900000000000001,1.0,0.6499999999999999,0.75,1,25 -cereal,0.6583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.975,1.0,0.9666666666666666,0.9800000000000001,2,27 -hair,0.5883333333333333,0.95,0.5833333333333333,0.6666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.755,1.0,0.6499999999999999,0.75,1,26 -can,0.9100000000000001,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.5133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -crackers,0.7583333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -plate,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,24 -calculator,0.6016666666666667,0.7,0.6166666666666666,0.5833333333333333,1,26 -tissues,0.63,1.0,0.5833333333333333,0.7,1,26 -juice,0.515,1.0,0.4833333333333333,0.6333333333333333,1,26 -pink,0.7183333333333334,1.0,0.65,0.75,1,25 -lemon,0.4533333333333333,0.65,0.5166666666666666,0.52,1,26 -peach,0.49833333333333335,1.0,0.41666666666666663,0.5833333333333333,1,26 -bowl,0.28,0.5,0.5999999999999999,0.52,1,26 -camouflage,0,0,0,0,1,26 -digital,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -blue,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,25 -used,0.53,1.0,0.5333333333333333,0.6666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.7,1.0,0.65,0.75,1,25 -notebook,0.6366666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -garlic,0.8033333333333333,1.0,0.6333333333333333,0.75,1,26 -cleaning,0.7466666666666666,1.0,0.65,0.75,1,26 -pair,0.9349999999999999,1.0,0.9,0.9400000000000001,2,26 -container,0.6833333333333333,1.0,0.6333333333333332,0.7333333333333333,1,25 -tomato,0.7183333333333333,0.9,0.6333333333333333,0.6833333333333333,1,26 -cellphone,0.6766666666666666,1.0,0.6,0.7166666666666667,1,26 -potato,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -light,0.9100000000000001,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,0.9466666666666667,0.85,1.0,0.8999999999999998,3,23 -bottle,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,26 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6456172839506171 -F1-Score: 0.6824691358024694 -Precision: 0.891435185185185 -Recall: 0.6095679012345678 diff --git a/Validation/UW_raw_75_object_0.1.csv b/Validation/UW_raw_75_object_0.1.csv deleted file mode 100644 index bdf86c0..0000000 --- a/Validation/UW_raw_75_object_0.1.csv +++ /dev/null @@ -1,2875 +0,0 @@ -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.65,1.0,0.5666666666666667,0.6833333333333333,1,25 -yellow,0.8766666666666667,0.7166666666666667,1.0,0.8200000000000001,6,24 -looks,0.5866666666666667,0.9,0.4833333333333332,0.6,1,24 -keyboard,0.6466666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -glue,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -flashlight,0.6666666666666666,1.0,0.7,0.7833333333333333,1,26 -cup,0.3366666666666666,0.5,0.5499999999999999,0.5033333333333333,1,26 -folded,0.5799999999999998,1.0,0.5499999999999999,0.6666666666666666,1,26 -jam,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -black,0.8333333333333334,0.6166666666666666,1.0,0.7466666666666667,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -soccer,0.6166666666666667,1.0,0.55,0.6833333333333333,1,26 -hat,0.7166666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -brown,0.9200000000000002,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -handle,0.6799999999999999,1.0,0.6666666666666666,0.7666666666666666,1,25 -food,0.32,0.8,0.4499999999999999,0.5233333333333333,1,26 -towel,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.5933333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.6333333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.7516666666666667,1.0,0.5666666666666667,0.7,1,26 -bag,0.5716666666666667,1.0,0.5,0.6333333333333333,1,26 -sponge,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -special,0.5716666666666665,1.0,0.5333333333333332,0.6666666666666666,1,26 -colgate,0.6633333333333333,1.0,0.65,0.75,1,26 -leaf,0.705,1.0,0.6499999999999999,0.75,1,26 -tube,0.7333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -mug,0.755,1.0,0.6666666666666666,0.7666666666666666,1,26 -yogurt,0.7,1.0,0.65,0.75,1,26 -plantain,0.685,1.0,0.55,0.6833333333333333,1,26 -red,0.6966666666666667,0.5766666666666667,1.0,0.7116666666666667,3,26 -pepper,0.6966666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -wheat,0.4749999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -kleenex,0.605,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.7166666666666667,1.0,0.5666666666666667,0.7,1,26 -binder,0.7216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -pliers,0.7666666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7083333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -thins,0.725,1.0,0.65,0.75,1,26 -package,0.7150000000000001,1.0,0.5499999999999999,0.6833333333333333,1,26 -k,0.61,1.0,0.5166666666666666,0.65,1,26 -jelly,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -fruit,0.6849999999999999,0.5166666666666666,0.9666666666666666,0.6366666666666667,2,25 -apple,0.6683333333333333,0.7,0.6833333333333333,0.6333333333333333,1,25 -bell,0.45,1.0,0.4833333333333333,0.6166666666666666,1,26 -battery,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -jar,0.6583333333333333,0.95,0.5833333333333333,0.6666666666666667,1,26 -bound,0.7633333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -lettuce,0.6216666666666666,1.0,0.5166666666666666,0.65,1,26 -brush,0.5616666666666666,0.5,0.7166666666666666,0.5633333333333334,1,26 -scissors,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -lime,0.6083333333333333,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.5916666666666667,1.0,0.5833333333333333,0.7,1,26 -top,0.6133333333333333,1.0,0.4833333333333334,0.6333333333333333,1,26 -spiral,0.51,1.0,0.4499999999999999,0.6,1,26 -handles,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -camera,0.7216666666666667,1.0,0.65,0.75,1,26 -eraser,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.8566666666666667,0.7166666666666666,1.0,0.8099999999999999,5,23 -banana,0.53,1.0,0.4833333333333333,0.6333333333333333,1,26 -pitcher,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -stick,0.7216666666666667,1.0,0.5666666666666667,0.7,1,25 -cereal,0.71,1.0,0.6499999999999999,0.75,1,26 -bulb,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,27 -hair,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -can,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,26 -coca,0.7466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -crackers,0.8216666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -plate,0.7699999999999999,1.0,0.6666666666666666,0.7666666666666667,1,25 -calculator,0.5916666666666667,0.95,0.6166666666666666,0.6833333333333333,1,26 -tissues,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -juice,0.7066666666666667,1.0,0.5833333333333333,0.7,1,26 -pink,0.7716666666666666,1.0,0.7,0.7833333333333333,1,25 -lemon,0.45,1.0,0.4499999999999999,0.6,1,26 -peach,0.5466666666666666,1.0,0.5833333333333333,0.7,1,26 -bowl,0.47833333333333333,0.5,0.6666666666666666,0.5466666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -blue,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -used,0.7933333333333332,1.0,0.6333333333333333,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.31333333333333335,1.0,0.4166666666666667,0.5666666666666667,1,26 -ball,0.475,1.0,0.4999999999999999,0.6333333333333333,1,25 -notebook,0.6283333333333333,1.0,0.5,0.65,1,26 -garlic,0.6433333333333333,1.0,0.55,0.6833333333333333,1,26 -cleaning,0.39666666666666667,0.6,0.6333333333333333,0.5466666666666666,1,26 -pair,0.9083333333333332,1.0,0.9,0.9400000000000001,2,27 -container,0.8833333333333332,1.0,0.8333333333333333,0.8833333333333332,1,25 -tomato,0.5516666666666665,0.9,0.5166666666666666,0.6,1,26 -cellphone,0.7616666666666666,1.0,0.5333333333333333,0.6833333333333333,1,26 -potato,0.58,1.0,0.5166666666666666,0.65,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -green,0.9633333333333333,0.9166666666666666,1.0,0.9466666666666667,3,24 -bottle,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.6318055555555555 -F1-Score: 0.6735648148148149 -Precision: 0.882962962962963 -Recall: 0.6046296296296295 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5216666666666666,1.0,0.4666666666666666,0.6166666666666667,1,25 -yellow,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666667,6,23 -looks,0.6433333333333333,0.85,0.5999999999999999,0.6333333333333333,1,24 -keyboard,0.7666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -glue,0.5433333333333332,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.7266666666666667,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.7216666666666666,1.0,0.5833333333333333,0.7,1,26 -cup,0.22833333333333333,0.5,0.4999999999999999,0.47333333333333344,1,26 -folded,0.705,1.0,0.6499999999999999,0.75,1,26 -jam,0.7466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.8883333333333333,0.7416666666666666,1.0,0.8323809523809522,6,22 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7033333333333334,1.0,0.6,0.7166666666666667,1,26 -soccer,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -hat,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333334,1,26 -brown,0.9266666666666667,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.6466666666666667,1.0,0.7,0.7833333333333333,1,26 -handle,0.655,1.0,0.6499999999999999,0.75,1,26 -food,0.7483333333333333,1.0,0.6333333333333333,0.75,1,24 -towel,0.6166666666666666,1.0,0.6666666666666666,0.75,1,26 -chips,0.6383333333333334,1.0,0.5166666666666666,0.6666666666666667,1,26 -stapler,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.6383333333333334,1.0,0.5833333333333333,0.7,1,26 -bag,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -sponge,0.675,1.0,0.6666666666666666,0.7666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.8216666666666667,1.0,0.6833333333333333,0.7833333333333333,1,25 -special,0.5416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -colgate,0.6799999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -leaf,0.795,1.0,0.5833333333333333,0.7166666666666667,1,26 -tube,0.5633333333333332,1.0,0.5499999999999999,0.6666666666666666,1,26 -cell,0.6583333333333333,1.0,0.6499999999999999,0.75,1,26 -mug,0.5016666666666667,1.0,0.45,0.6,1,26 -yogurt,0.605,1.0,0.5166666666666666,0.65,1,26 -plantain,0.655,1.0,0.6333333333333332,0.7333333333333333,1,26 -red,0.9333333333333333,0.8666666666666666,1.0,0.9099999999999999,3,26 -pepper,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -wheat,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -kleenex,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -toothbrush,0.835,1.0,0.7833333333333333,0.85,1,26 -binder,0.5316666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -baseball,0.5599999999999999,1.0,0.4833333333333333,0.6333333333333334,1,26 -pliers,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.5916666666666667,1.0,0.4999999999999999,0.65,1,26 -thins,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -package,0.705,1.0,0.65,0.75,1,26 -k,0.705,1.0,0.6499999999999999,0.75,1,26 -jelly,0.7216666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -fruit,0.7383333333333334,0.6666666666666667,0.9,0.7466666666666667,2,25 -apple,0.4416666666666667,0.9,0.4999999999999999,0.5666666666666667,1,25 -bell,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -battery,0.7416666666666666,1.0,0.7166666666666666,0.8,1,26 -jar,0.75,1.0,0.6166666666666666,0.7333333333333333,1,26 -bound,0.7,1.0,0.75,0.8166666666666667,1,26 -lettuce,0.93,1.0,0.85,0.8999999999999998,1,26 -brush,0.6566666666666666,1.0,0.4999999999999999,0.65,1,26 -scissors,0.7666666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -lime,0.75,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.5683333333333332,1.0,0.5166666666666666,0.65,1,26 -top,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -handles,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -camera,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.5216666666666667,1.0,0.41666666666666663,0.5833333333333334,1,26 -creamer,0,0,0,0,1,26 -white,0.7966666666666666,0.6333333333333333,1.0,0.7714285714285714,5,21 -banana,0.73,1.0,0.6166666666666666,0.7333333333333334,1,26 -pitcher,0.48,1.0,0.4666666666666666,0.6166666666666666,1,26 -phone,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -stick,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333333,1,25 -cereal,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -bulb,0.9266666666666667,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.4916666666666667,0.95,0.4999999999999999,0.6,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.675,1.0,0.5833333333333333,0.7,1,26 -can,0.9016666666666667,1.0,0.8666666666666668,0.9200000000000002,2,25 -coca,0.7666666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -crackers,0.6666666666666667,1.0,0.6,0.7166666666666667,1,26 -plate,0.5766666666666665,1.0,0.5333333333333333,0.6666666666666667,1,25 -calculator,0.6166666666666666,0.8,0.5999999999999999,0.6166666666666666,1,26 -tissues,0.73,1.0,0.65,0.75,1,26 -juice,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -pink,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -lemon,0.7333333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -peach,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bowl,0.23833333333333329,0.5,0.6333333333333333,0.5266666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -blue,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -used,0.7416666666666666,1.0,0.75,0.8166666666666667,1,23 -energizer,0,0,0,0,1,26 -pear,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -ball,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.6933333333333332,1.0,0.6333333333333332,0.7333333333333333,1,26 -garlic,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -cleaning,0.6316666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -pair,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,26 -container,0.845,1.0,0.65,0.7666666666666667,1,25 -tomato,0.6133333333333334,0.9,0.55,0.6166666666666667,1,26 -cellphone,0.4966666666666667,1.0,0.45,0.6,1,26 -potato,0.5433333333333332,1.0,0.4833333333333333,0.6333333333333334,1,25 -light,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8799999999999999,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.6444753086419752 -F1-Score: 0.684263668430335 -Precision: 0.8999228395061728 -Recall: 0.6049382716049382 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -yellow,0.9033333333333333,0.7666666666666666,1.0,0.8466666666666667,6,24 -looks,0.5183333333333333,0.9,0.5166666666666666,0.5833333333333333,1,24 -keyboard,0.6566666666666666,1.0,0.5833333333333333,0.7,1,26 -glue,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.7583333333333333,1.0,0.75,0.8166666666666667,1,26 -flashlight,0.7233333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -cup,0.15666666666666665,0.5,0.5166666666666666,0.4833333333333334,1,26 -folded,0.805,1.0,0.7166666666666666,0.8,1,26 -jam,0.5083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.9833333333333334,0.95,1.0,0.9666666666666666,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -soccer,0.5133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -hat,0.6799999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -brown,0.96,1.0,0.9333333333333332,0.96,2,24 -coffee,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -handle,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -food,0.5,1.0,0.5666666666666667,0.6833333333333333,1,24 -towel,0.825,1.0,0.7666666666666666,0.8333333333333334,1,26 -chips,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -stapler,0.39333333333333337,1.0,0.4333333333333333,0.5833333333333333,1,26 -onion,0.7933333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -bag,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -sponge,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.585,1.0,0.5166666666666666,0.65,1,26 -special,0.5416666666666666,1.0,0.4499999999999999,0.6,1,26 -colgate,0.725,1.0,0.5666666666666667,0.7,1,26 -leaf,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -tube,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -cell,0.6983333333333334,1.0,0.5666666666666667,0.7,1,26 -mug,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -yogurt,0.775,1.0,0.6666666666666666,0.7666666666666667,1,26 -plantain,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -red,0.6616666666666666,0.495,1.0,0.6490476190476191,3,25 -pepper,0.575,1.0,0.5833333333333333,0.7,1,26 -wheat,0.8583333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -kleenex,0.6233333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -toothbrush,0.5633333333333332,1.0,0.4833333333333333,0.6333333333333333,1,26 -binder,0.5766666666666667,1.0,0.5166666666666666,0.65,1,26 -baseball,0.6966666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -pliers,0.6183333333333334,1.0,0.55,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5800000000000001,1.0,0.55,0.6833333333333333,1,26 -thins,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -package,0.76,1.0,0.7,0.7833333333333333,1,26 -k,0.6466666666666666,1.0,0.55,0.6833333333333333,1,26 -jelly,0.6966666666666665,1.0,0.5833333333333333,0.7,1,26 -fruit,0.6900000000000001,0.6666666666666667,0.8666666666666666,0.7333333333333334,2,25 -apple,0.69,0.95,0.5333333333333333,0.6333333333333333,1,25 -bell,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -battery,0.8300000000000001,0.9,0.8166666666666667,0.8,1,26 -jar,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -bound,0.63,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.5249999999999999,1.0,0.5166666666666666,0.65,1,26 -scissors,0.7433333333333333,1.0,0.7,0.7833333333333333,1,26 -lime,0.8716666666666667,1.0,0.7833333333333333,0.85,1,25 -toothpaste,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -top,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -spiral,0.665,1.0,0.5166666666666666,0.6666666666666667,1,26 -handles,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.6683333333333333,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,0.8083333333333333,0.675,1.0,0.8019047619047619,5,21 -banana,0.805,1.0,0.6833333333333333,0.7833333333333334,1,26 -pitcher,0.6816666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -phone,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -stick,0.5416666666666666,1.0,0.5166666666666666,0.65,1,25 -cereal,0.7083333333333333,1.0,0.6,0.7166666666666667,1,26 -bulb,0.8799999999999999,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.635,1.0,0.5999999999999999,0.7166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8166666666666667,1.0,0.7833333333333333,0.85,1,26 -can,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -coca,0.6,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.55,1.0,0.4833333333333333,0.6333333333333334,1,26 -plate,0.8550000000000001,1.0,0.7333333333333333,0.8166666666666667,1,25 -calculator,0.6116666666666666,0.55,0.7333333333333333,0.5833333333333334,1,26 -tissues,0.7166666666666667,1.0,0.7,0.7833333333333333,1,26 -juice,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -pink,0.6883333333333334,1.0,0.5999999999999999,0.7166666666666667,1,25 -lemon,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -peach,0.5966666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.5416666666666667,0.5,0.7,0.5533333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7216666666666667,1.0,0.5666666666666667,0.7,1,26 -blue,0.7216666666666668,1.0,0.6666666666666666,0.7666666666666667,1,25 -used,0.7133333333333333,1.0,0.6499999999999999,0.75,1,23 -energizer,0,0,0,0,1,26 -pear,0.45999999999999996,1.0,0.4833333333333333,0.6333333333333333,1,26 -ball,0.5799999999999998,1.0,0.5166666666666666,0.65,1,25 -notebook,0.4133333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -garlic,0.5416666666666666,1.0,0.4833333333333333,0.6166666666666666,1,26 -cleaning,0.5583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -pair,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,27 -container,0.5,1.0,0.5499999999999999,0.6666666666666666,1,26 -tomato,0.4883333333333334,0.65,0.5833333333333333,0.5466666666666666,1,26 -cellphone,0.6466666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -potato,0.6716666666666666,1.0,0.6,0.7166666666666667,1,25 -light,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -green,0.8866666666666667,0.7416666666666666,1.0,0.8323809523809524,3,23 -bottle,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,26 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.6338888888888888 -F1-Score: 0.679135802469136 -Precision: 0.8911574074074073 -Recall: 0.6066358024691358 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.63,1.0,0.6166666666666666,0.7166666666666667,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.475,1.0,0.5333333333333332,0.6666666666666666,1,24 -keyboard,0.5883333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -glue,0.5933333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.8266666666666668,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.6599999999999999,1.0,0.7,0.7833333333333333,1,26 -cup,0.5583333333333333,0.5,0.6333333333333333,0.5399999999999999,1,26 -folded,0.775,1.0,0.6666666666666666,0.7666666666666667,1,26 -jam,0.6466666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -black,0.8166666666666668,0.6916666666666667,1.0,0.8104761904761905,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -soccer,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -hat,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -brown,0.8633333333333333,1.0,0.8333333333333333,0.9,2,24 -coffee,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -handle,0.6466666666666667,1.0,0.5833333333333333,0.7,1,25 -food,0.55,1.0,0.5166666666666666,0.65,1,25 -towel,0.6666666666666667,1.0,0.7,0.7833333333333333,1,26 -chips,0.675,1.0,0.7,0.7833333333333333,1,26 -stapler,0.7983333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -onion,0.6466666666666667,1.0,0.7,0.7833333333333333,1,26 -bag,0.6183333333333334,1.0,0.55,0.6833333333333333,1,26 -sponge,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.735,1.0,0.65,0.75,1,25 -special,0.4883333333333333,1.0,0.5166666666666666,0.65,1,26 -colgate,0.7016666666666665,1.0,0.6666666666666666,0.7666666666666667,1,26 -leaf,0.6683333333333333,1.0,0.5833333333333333,0.7,1,26 -tube,0.73,1.0,0.6333333333333333,0.75,1,26 -cell,0.5566666666666668,0.55,0.7499999999999999,0.58,1,26 -mug,0.45499999999999996,1.0,0.41666666666666663,0.5833333333333334,1,26 -yogurt,0.5666666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -plantain,0.7216666666666667,1.0,0.5666666666666667,0.7,1,26 -red,0.8166666666666667,0.6583333333333333,1.0,0.7690476190476191,3,25 -pepper,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -wheat,0.7683333333333333,1.0,0.6333333333333333,0.75,1,26 -kleenex,0.47166666666666657,1.0,0.4999999999999999,0.6333333333333333,1,26 -toothbrush,0.7333333333333333,1.0,0.7499999999999999,0.8166666666666668,1,26 -binder,0.6133333333333333,1.0,0.5166666666666666,0.65,1,26 -baseball,0.6799999999999999,1.0,0.6,0.7166666666666666,1,26 -pliers,0.6266666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8099999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -thins,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -package,0.7266666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -k,0.41,1.0,0.4499999999999999,0.6,1,26 -jelly,0.6566666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -fruit,0.7966666666666666,0.8,0.8666666666666668,0.7933333333333333,2,25 -apple,0.5966666666666667,0.85,0.6333333333333332,0.6333333333333333,1,25 -bell,0.5549999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -battery,0.5333333333333333,1.0,0.4499999999999999,0.6,1,26 -jar,0.6416666666666666,1.0,0.65,0.75,1,26 -bound,0.6799999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -lettuce,0.8016666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -brush,0.6333333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -scissors,0.875,1.0,0.8833333333333332,0.9166666666666666,1,26 -lime,0.7216666666666667,1.0,0.65,0.75,1,25 -toothpaste,0.5216666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -top,0.6633333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -spiral,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -handles,0.6833333333333333,1.0,0.6499999999999999,0.75,1,25 -camera,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.71,1.0,0.55,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.7866666666666666,0.6166666666666667,1.0,0.76,5,21 -banana,0.565,1.0,0.4666666666666666,0.6166666666666667,1,26 -pitcher,0.7216666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -phone,0.4883333333333333,0.5,0.6166666666666666,0.53,1,26 -stick,0.5599999999999999,1.0,0.4999999999999999,0.6333333333333333,1,25 -cereal,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bulb,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.705,1.0,0.5999999999999999,0.7166666666666666,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6966666666666667,1.0,0.65,0.75,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coca,0.8583333333333332,1.0,0.75,0.8333333333333333,1,26 -crackers,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -plate,0.6599999999999999,1.0,0.6,0.7166666666666667,1,25 -calculator,0.5566666666666666,0.65,0.6333333333333333,0.5633333333333334,1,26 -tissues,0.5666666666666667,1.0,0.5,0.6333333333333333,1,26 -juice,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -pink,0.6966666666666667,1.0,0.5833333333333333,0.7,1,25 -lemon,0.58,1.0,0.5833333333333333,0.7,1,26 -peach,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -bowl,0.4,0.5,0.6333333333333333,0.5266666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.625,1.0,0.4833333333333333,0.6333333333333334,1,26 -blue,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,25 -used,0.375,1.0,0.4,0.5666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.705,1.0,0.5666666666666667,0.7,1,26 -ball,0.85,1.0,0.8166666666666667,0.8666666666666666,1,25 -notebook,0.7666666666666667,1.0,0.6333333333333333,0.75,1,26 -garlic,0.715,1.0,0.6,0.7166666666666667,1,26 -cleaning,0.38,1.0,0.4833333333333332,0.6166666666666666,1,26 -pair,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.7166666666666666,1.0,0.6499999999999999,0.75,1,26 -tomato,0.5933333333333333,0.8,0.6499999999999999,0.6333333333333333,1,26 -cellphone,0.3516666666666667,0.6,0.5333333333333332,0.5133333333333333,1,26 -potato,0.65,1.0,0.65,0.75,1,25 -light,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -green,0.9099999999999999,0.75,1.0,0.8333333333333333,3,22 -bottle,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.6317901234567901 -F1-Score: 0.676878306878307 -Precision: 0.8839506172839506 -Recall: 0.6072530864197531 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8633333333333333,1.0,0.75,0.8333333333333334,1,24 -yellow,0.8333333333333334,0.6333333333333333,1.0,0.7647619047619049,6,24 -looks,0.6016666666666668,0.85,0.6333333333333333,0.6333333333333333,1,24 -keyboard,0.6966666666666665,1.0,0.6833333333333333,0.7666666666666666,1,26 -glue,0.6633333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6266666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -flashlight,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -cup,0.25999999999999995,0.5,0.5333333333333332,0.49333333333333335,1,26 -folded,0.7533333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jam,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -black,0.8966666666666668,0.7833333333333333,1.0,0.8647619047619047,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -soccer,0.55,1.0,0.5166666666666666,0.65,1,26 -hat,0.475,1.0,0.4666666666666666,0.6166666666666667,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -handle,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -food,0.6266666666666667,1.0,0.5833333333333333,0.7,1,25 -towel,0.6066666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -chips,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.7716666666666666,1.0,0.6333333333333333,0.75,1,26 -onion,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -bag,0.675,1.0,0.6499999999999999,0.75,1,26 -sponge,0.7216666666666667,1.0,0.65,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.6883333333333332,1.0,0.6333333333333332,0.7333333333333333,1,26 -special,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -colgate,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -leaf,0.7083333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -tube,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -mug,0.9016666666666666,1.0,0.8,0.8666666666666668,1,26 -yogurt,0.6416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -plantain,0.48500000000000004,0.95,0.5333333333333333,0.6333333333333334,1,26 -red,0.8066666666666666,0.6583333333333333,1.0,0.7657142857142857,3,25 -pepper,0.7316666666666667,1.0,0.55,0.6833333333333333,1,26 -wheat,0.5900000000000001,1.0,0.5499999999999999,0.6833333333333333,1,26 -kleenex,0.7,1.0,0.5999999999999999,0.7166666666666667,1,26 -toothbrush,0.6633333333333333,1.0,0.65,0.75,1,26 -binder,0.8416666666666668,1.0,0.7833333333333333,0.85,1,26 -baseball,0.8183333333333334,1.0,0.65,0.7666666666666667,1,26 -pliers,0.75,1.0,0.6666666666666666,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6,1.0,0.5833333333333333,0.7,1,26 -thins,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -package,0.675,0.95,0.6166666666666666,0.6833333333333333,1,26 -k,0.6933333333333334,1.0,0.7,0.7833333333333334,1,26 -jelly,0.4333333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -fruit,0.7016666666666665,0.5166666666666667,1.0,0.6699999999999999,2,25 -apple,0.5466666666666666,0.9,0.5166666666666666,0.5833333333333333,1,25 -bell,0.7133333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -battery,0.7883333333333333,0.85,0.7333333333333333,0.7166666666666667,1,26 -jar,0.5683333333333334,0.95,0.4666666666666666,0.5833333333333333,1,26 -bound,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -brush,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -scissors,0.8166666666666667,1.0,0.7833333333333333,0.85,1,26 -lime,0.7,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.7083333333333334,1.0,0.65,0.75,1,26 -top,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -spiral,0.7666666666666667,1.0,0.65,0.75,1,26 -handles,0.805,1.0,0.6833333333333333,0.7833333333333333,1,25 -camera,0.5716666666666665,1.0,0.5833333333333333,0.7,1,26 -eraser,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -creamer,0,0,0,0,1,26 -white,0.8816666666666666,0.7666666666666666,1.0,0.8533333333333333,5,22 -banana,0.605,0.95,0.5999999999999999,0.6833333333333333,1,26 -pitcher,0.825,1.0,0.8166666666666667,0.8666666666666666,1,26 -phone,0.7066666666666667,1.0,0.65,0.75,1,26 -stick,0.5633333333333332,1.0,0.5499999999999999,0.6666666666666666,1,25 -cereal,0.4966666666666667,1.0,0.5,0.6333333333333333,1,26 -bulb,0.8816666666666666,1.0,0.8333333333333333,0.9,2,26 -hair,0.40166666666666667,0.9,0.4333333333333333,0.5333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -coca,0.625,1.0,0.5499999999999999,0.6666666666666667,1,26 -crackers,0.6733333333333333,1.0,0.55,0.6833333333333333,1,26 -plate,0.5,1.0,0.6166666666666666,0.7166666666666666,1,25 -calculator,0.5999999999999999,1.0,0.5833333333333333,0.7,1,26 -tissues,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -juice,0.6249999999999999,1.0,0.5833333333333333,0.7,1,26 -pink,0.6683333333333332,1.0,0.6499999999999999,0.75,1,25 -lemon,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -peach,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.6016666666666666,0.5,0.7833333333333333,0.5900000000000001,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6566666666666666,1.0,0.6,0.7166666666666667,1,26 -blue,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666666,1,25 -used,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,23 -energizer,0,0,0,0,1,26 -pear,0.65,1.0,0.4833333333333333,0.6333333333333333,1,26 -ball,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666667,1,25 -notebook,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -garlic,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -cleaning,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -pair,0.8799999999999999,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.5633333333333332,1.0,0.5499999999999999,0.6666666666666666,1,25 -tomato,0.4966666666666667,0.85,0.4833333333333333,0.5833333333333333,1,26 -cellphone,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -potato,0.6416666666666667,1.0,0.5833333333333333,0.7,1,25 -light,0.89,1.0,0.8333333333333333,0.9,2,25 -green,0.8366666666666667,0.7,1.0,0.8114285714285714,3,22 -bottle,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.6460339506172841 -F1-Score: 0.6879012345679014 -Precision: 0.8908179012345678 -Recall: 0.6208333333333333 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8166666666666667,1.0,0.7166666666666666,0.8,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.55,1.0,0.5499999999999999,0.6666666666666666,1,24 -keyboard,0.7266666666666667,1.0,0.6,0.7166666666666667,1,26 -glue,0.7833333333333333,1.0,0.7,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.5299999999999999,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.3266666666666667,0.6,0.5666666666666667,0.52,1,26 -folded,0.8266666666666668,1.0,0.7333333333333333,0.8166666666666667,1,26 -jam,0.8416666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -black,0.9466666666666669,0.8833333333333332,1.0,0.9266666666666665,6,20 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7416666666666667,1.0,0.7166666666666666,0.8,1,26 -soccer,0.705,1.0,0.6499999999999999,0.75,1,26 -hat,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -brown,0.93,1.0,0.9,0.9400000000000001,2,24 -coffee,0.705,1.0,0.6666666666666666,0.7666666666666667,1,26 -handle,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -food,0.6216666666666667,1.0,0.5666666666666667,0.7,1,25 -towel,0.74,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.8083333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -stapler,0.6249999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -onion,0.7883333333333333,1.0,0.6333333333333333,0.75,1,26 -bag,0.7666666666666666,1.0,0.6833333333333333,0.7833333333333334,1,26 -sponge,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.8466666666666667,1.0,0.8333333333333333,0.8833333333333332,1,25 -special,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -colgate,0.63,1.0,0.55,0.6833333333333333,1,26 -leaf,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -cell,0.4133333333333333,0.85,0.4666666666666666,0.55,1,26 -mug,0.5766666666666665,1.0,0.5166666666666666,0.65,1,26 -yogurt,0.5466666666666666,1.0,0.5833333333333333,0.7,1,26 -plantain,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -red,0.8966666666666667,0.7833333333333333,1.0,0.8466666666666667,3,25 -pepper,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -wheat,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.5916666666666666,1.0,0.5166666666666666,0.65,1,26 -toothbrush,0.41,1.0,0.45,0.6,1,26 -binder,0.7016666666666667,1.0,0.5833333333333333,0.7,1,26 -baseball,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -pliers,0.8966666666666665,1.0,0.8333333333333333,0.8833333333333332,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333334,1,26 -thins,0.605,1.0,0.55,0.6833333333333333,1,26 -package,0.835,1.0,0.7333333333333333,0.8166666666666668,1,26 -k,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -jelly,0.7833333333333333,1.0,0.7,0.7833333333333333,1,26 -fruit,0.8333333333333334,0.95,0.8,0.8466666666666667,2,25 -apple,0.6399999999999999,1.0,0.5333333333333333,0.6666666666666667,1,25 -bell,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -battery,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -jar,0.76,1.0,0.7,0.7833333333333333,1,26 -bound,0.5416666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -lettuce,0.5466666666666666,1.0,0.45,0.6,1,26 -brush,0.6766666666666666,1.0,0.5166666666666666,0.65,1,26 -scissors,0.605,1.0,0.5833333333333333,0.7,1,26 -lime,0.7316666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -toothpaste,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -top,0.8066666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -spiral,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -handles,0.6966666666666667,1.0,0.6,0.7166666666666667,1,25 -camera,0.7466666666666667,1.0,0.65,0.75,1,26 -eraser,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.645,0.4999999999999999,1.0,0.6514285714285715,5,21 -banana,0.6849999999999999,1.0,0.5666666666666667,0.7,1,26 -pitcher,0.6666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -phone,0.5999999999999999,0.65,0.6666666666666666,0.59,1,26 -stick,0.6716666666666666,1.0,0.65,0.75,1,25 -cereal,0.7816666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -bulb,0.8550000000000001,1.0,0.8333333333333333,0.9,2,27 -hair,0.8583333333333332,1.0,0.75,0.8333333333333334,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.4833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -can,0.93,1.0,0.8999999999999998,0.9400000000000001,2,24 -coca,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -crackers,0.75,1.0,0.7333333333333333,0.8,1,26 -plate,0.46333333333333326,1.0,0.5,0.6333333333333333,1,25 -calculator,0.385,0.8,0.4666666666666666,0.5399999999999999,1,26 -tissues,0.4766666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -juice,0.33166666666666667,0.5,0.5499999999999999,0.49000000000000005,1,26 -pink,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -lemon,0.5683333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -peach,0.6333333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -bowl,0.21333333333333332,0.55,0.45,0.4666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6883333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -blue,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666668,1,25 -used,0.7233333333333334,1.0,0.6499999999999999,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.6216666666666667,1.0,0.6,0.7166666666666667,1,26 -ball,0.7166666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.71,1.0,0.5999999999999999,0.7166666666666667,1,26 -garlic,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -cleaning,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -pair,0.835,1.0,0.8,0.8800000000000001,2,26 -container,0.6833333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -tomato,0.8350000000000002,0.9,0.7833333333333333,0.7833333333333334,1,26 -cellphone,0.43,0.65,0.4333333333333334,0.4966666666666667,1,26 -potato,0.5750000000000001,1.0,0.6333333333333333,0.7333333333333334,1,26 -light,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9266666666666665,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.6499691358024691 -F1-Score: 0.6908465608465609 -Precision: 0.8941358024691358 -Recall: 0.615895061728395 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6266666666666667,1.0,0.4833333333333333,0.6333333333333333,1,24 -yellow,0.9100000000000001,0.7833333333333333,1.0,0.86,6,24 -looks,0.7716666666666667,1.0,0.65,0.75,1,24 -keyboard,0.61,1.0,0.4833333333333333,0.6333333333333333,1,26 -glue,0.6466666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.5716666666666665,1.0,0.4833333333333333,0.6333333333333333,1,26 -flashlight,0.8683333333333332,1.0,0.75,0.8333333333333333,1,26 -cup,0.33666666666666667,0.4333333333333333,0.5999999999999999,0.4600000000000001,1,26 -folded,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -jam,0.4999999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -black,1.0,1.0,1.0,1.0,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6716666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -soccer,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -hat,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -brown,0.9266666666666665,1.0,0.8999999999999998,0.9400000000000001,2,25 -coffee,0.8,1.0,0.6833333333333333,0.7833333333333333,1,25 -handle,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -food,0.48666666666666664,0.7,0.4999999999999999,0.5333333333333333,1,26 -towel,0.6633333333333333,1.0,0.55,0.6833333333333333,1,26 -chips,0.7433333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -stapler,0.5549999999999999,1.0,0.4499999999999999,0.6,1,26 -onion,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -bag,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.5966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.6416666666666667,1.0,0.55,0.6833333333333333,1,25 -special,0.5083333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -colgate,0.705,1.0,0.5999999999999999,0.7166666666666667,1,26 -leaf,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -cell,0.4966666666666666,0.5,0.6166666666666666,0.53,1,26 -mug,0.6916666666666667,1.0,0.5999999999999999,0.7166666666666667,1,25 -yogurt,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -plantain,0.705,1.0,0.6499999999999999,0.75,1,26 -red,0.9833333333333334,0.95,1.0,0.9666666666666666,3,26 -pepper,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -wheat,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.6416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -binder,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -baseball,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -pliers,0.43,1.0,0.4833333333333332,0.6166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5733333333333334,1.0,0.4833333333333332,0.6333333333333333,1,26 -thins,0.5083333333333333,1.0,0.5,0.6333333333333333,1,26 -package,0.7166666666666666,1.0,0.6499999999999999,0.75,1,26 -k,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -jelly,0.6883333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -fruit,0.59,0.55,0.8666666666666666,0.6466666666666666,2,25 -apple,0.5466666666666666,1.0,0.4833333333333332,0.6166666666666666,1,25 -bell,0.4333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -battery,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -jar,0.4083333333333333,1.0,0.5,0.6333333333333333,1,26 -bound,0.5716666666666665,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -brush,0.3983333333333333,0.75,0.5166666666666666,0.5399999999999999,1,26 -scissors,0.7716666666666667,1.0,0.65,0.75,1,26 -lime,0.6566666666666667,1.0,0.4666666666666666,0.6333333333333334,1,25 -toothpaste,0.8066666666666666,1.0,0.6333333333333333,0.75,1,26 -top,0.585,1.0,0.5166666666666666,0.65,1,26 -spiral,0.7150000000000001,1.0,0.5833333333333333,0.7166666666666666,1,26 -handles,0.8966666666666667,1.0,0.8333333333333333,0.8833333333333332,1,25 -camera,0.615,1.0,0.4833333333333333,0.6333333333333334,1,26 -eraser,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.7983333333333333,0.6583333333333333,1.0,0.7904761904761906,5,21 -banana,0.5166666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -pitcher,0.73,1.0,0.7,0.7833333333333333,1,26 -phone,0.43166666666666664,0.6,0.6,0.5399999999999999,1,26 -stick,0.7916666666666666,1.0,0.7166666666666666,0.8,1,25 -cereal,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -bulb,0.9,1.0,0.9,0.9400000000000001,2,26 -hair,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -can,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -coca,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -crackers,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -plate,0.5583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -calculator,0.6133333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -tissues,0.5716666666666665,1.0,0.4999999999999999,0.6333333333333333,1,26 -juice,0.45,1.0,0.4833333333333333,0.6166666666666667,1,26 -pink,0.38,1.0,0.4666666666666666,0.6166666666666667,1,25 -lemon,0.4766666666666667,1.0,0.5,0.6333333333333334,1,26 -peach,0.6633333333333333,1.0,0.5666666666666667,0.7,1,26 -bowl,0.45666666666666667,0.5,0.6,0.52,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -blue,0.625,1.0,0.5499999999999999,0.6666666666666666,1,25 -used,0.825,1.0,0.7666666666666666,0.8333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.61,1.0,0.5833333333333333,0.7,1,26 -ball,0.7466666666666667,1.0,0.7,0.7833333333333333,1,25 -notebook,0.8,1.0,0.8666666666666666,0.9,1,26 -garlic,0.7933333333333332,1.0,0.6333333333333333,0.75,1,26 -cleaning,0.5616666666666666,0.6,0.5999999999999999,0.5466666666666666,1,26 -pair,0.9166666666666666,1.0,0.9,0.9400000000000001,2,27 -container,0.5499999999999999,1.0,0.5833333333333333,0.7,1,25 -tomato,0.6266666666666666,0.75,0.6499999999999999,0.6166666666666667,1,26 -cellphone,0.31833333333333336,0.65,0.5,0.5033333333333334,1,26 -potato,0.705,1.0,0.6666666666666666,0.7666666666666666,1,25 -light,0.9,1.0,0.9,0.9400000000000001,2,26 -green,0.9266666666666667,0.8,1.0,0.8666666666666666,3,24 -bottle,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.6241820987654321 -F1-Score: 0.6703439153439154 -Precision: 0.8817129629629631 -Recall: 0.5978395061728394 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.4383333333333333,1.0,0.4333333333333333,0.5833333333333333,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.5966666666666667,0.85,0.6333333333333333,0.6333333333333334,1,24 -keyboard,0.5249999999999999,1.0,0.5166666666666666,0.65,1,26 -glue,0.735,1.0,0.6,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.46333333333333326,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.7933333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -cup,0.3516666666666667,0.5,0.6333333333333333,0.5266666666666667,1,26 -folded,0.585,1.0,0.5166666666666666,0.65,1,26 -jam,0.705,1.0,0.6,0.7166666666666667,1,26 -black,0.8383333333333333,0.6583333333333333,1.0,0.7838095238095237,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.5933333333333334,1.0,0.5166666666666666,0.65,1,26 -soccer,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -hat,0.7933333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -brown,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,25 -coffee,0.6166666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -handle,0.5433333333333333,1.0,0.5166666666666666,0.65,1,25 -food,0.7,1.0,0.6,0.7166666666666667,1,25 -towel,0.6,1.0,0.6,0.7166666666666667,1,26 -chips,0.7833333333333333,1.0,0.7,0.7833333333333333,1,26 -stapler,0.5383333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -onion,0.905,1.0,0.8333333333333333,0.8833333333333332,1,26 -bag,0.74,1.0,0.6666666666666666,0.7666666666666666,1,26 -sponge,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6633333333333333,1.0,0.6499999999999999,0.75,1,25 -special,0.6716666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -colgate,0.6733333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -leaf,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -tube,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.25166666666666665,0.5,0.41666666666666663,0.45,1,26 -mug,0.6583333333333334,1.0,0.6499999999999999,0.75,1,26 -yogurt,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -plantain,0.6983333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -red,0.8383333333333333,0.7,1.0,0.8014285714285716,3,27 -pepper,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -wheat,0.49333333333333335,1.0,0.5166666666666666,0.65,1,26 -kleenex,0.5933333333333333,1.0,0.5166666666666666,0.65,1,26 -toothbrush,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -binder,0.6416666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.7066666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -pliers,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -thins,0.825,1.0,0.6333333333333333,0.75,1,26 -package,0.865,1.0,0.7333333333333333,0.8166666666666667,1,26 -k,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -jelly,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.7416666666666667,0.5499999999999999,0.9333333333333332,0.6599999999999999,2,26 -apple,0.5966666666666667,0.8,0.55,0.6,1,25 -bell,0.6016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -battery,0.7249999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -jar,0.7683333333333333,1.0,0.6333333333333333,0.75,1,26 -bound,0.6966666666666667,1.0,0.55,0.6833333333333333,1,26 -lettuce,0.7666666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -brush,0.5916666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -scissors,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -lime,0.6599999999999999,1.0,0.6166666666666666,0.7333333333333334,1,25 -toothpaste,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -top,0.6599999999999999,1.0,0.7,0.7833333333333333,1,26 -spiral,0.7083333333333333,1.0,0.65,0.75,1,26 -handles,0.5633333333333334,1.0,0.5833333333333333,0.7,1,25 -camera,0.6133333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -eraser,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.8066666666666666,0.6166666666666667,1.0,0.7480952380952381,5,22 -banana,0.6666666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -pitcher,0.6749999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.6016666666666667,0.55,0.7333333333333333,0.5833333333333334,1,26 -stick,0.705,1.0,0.7,0.7833333333333333,1,25 -cereal,0.46333333333333326,1.0,0.5499999999999999,0.6666666666666666,1,26 -bulb,0.8683333333333334,1.0,0.8333333333333333,0.9,2,27 -hair,0.5883333333333333,0.95,0.5333333333333333,0.6333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7666666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -can,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -coca,0.8800000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -crackers,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,24 -calculator,0.7,0.95,0.6333333333333333,0.7,1,26 -tissues,0.6433333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -juice,0.7899999999999999,1.0,0.6333333333333333,0.75,1,26 -pink,0.8416666666666666,1.0,0.7333333333333333,0.8166666666666667,1,25 -lemon,0.7016666666666667,1.0,0.55,0.6833333333333333,1,26 -peach,0.625,1.0,0.5833333333333333,0.7,1,26 -bowl,0.465,0.5,0.55,0.5033333333333334,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6016666666666667,1.0,0.5166666666666666,0.65,1,26 -blue,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666667,1,25 -used,0.7633333333333333,1.0,0.65,0.75,1,23 -energizer,0,0,0,0,1,26 -pear,0.51,1.0,0.4666666666666666,0.6166666666666666,1,26 -ball,0.6733333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -notebook,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -garlic,0.625,1.0,0.5499999999999999,0.6833333333333333,1,26 -cleaning,0.5816666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -pair,0.8466666666666667,1.0,0.8,0.8800000000000001,2,27 -container,0.8150000000000001,1.0,0.6333333333333333,0.75,1,25 -tomato,0.5433333333333332,0.9,0.4999999999999999,0.6,1,26 -cellphone,0.4216666666666667,0.55,0.6,0.53,1,26 -potato,0.75,1.0,0.7166666666666666,0.8,1,25 -light,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,25 -green,0.9233333333333335,0.8166666666666667,1.0,0.8800000000000001,3,24 -bottle,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.6426234567901233 -F1-Score: 0.6798456790123457 -Precision: 0.8832561728395061 -Recall: 0.6100308641975308 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6466666666666666,1.0,0.5833333333333333,0.7,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.585,1.0,0.4333333333333333,0.6,1,24 -keyboard,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -glue,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6916666666666667,1.0,0.6,0.7166666666666667,1,26 -flashlight,0.655,1.0,0.5499999999999999,0.6833333333333333,1,26 -cup,0.5216666666666666,0.5,0.6166666666666666,0.53,1,26 -folded,0.85,1.0,0.8333333333333333,0.8833333333333332,1,26 -jam,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -black,0.9266666666666667,0.8333333333333333,1.0,0.8933333333333333,6,19 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.63,1.0,0.5166666666666666,0.65,1,26 -soccer,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -hat,0.6950000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -brown,0.8366666666666667,1.0,0.7666666666666667,0.86,2,24 -coffee,0.72,1.0,0.4999999999999999,0.65,1,26 -handle,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -food,0.8583333333333332,1.0,0.75,0.8333333333333334,1,25 -towel,0.3833333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -chips,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -stapler,0.8033333333333333,1.0,0.6,0.7333333333333334,1,26 -onion,0.6466666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -bag,0.6633333333333333,1.0,0.65,0.75,1,26 -sponge,0.6383333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6883333333333332,1.0,0.6166666666666666,0.7333333333333333,1,25 -special,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -colgate,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -leaf,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -tube,0.525,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.47833333333333333,0.5,0.6166666666666666,0.53,1,26 -mug,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -yogurt,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -plantain,0.6583333333333333,1.0,0.6,0.7166666666666667,1,26 -red,0.9,0.8,1.0,0.86,3,24 -pepper,0.475,1.0,0.4999999999999999,0.6333333333333333,1,26 -wheat,0.6666666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -kleenex,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -pliers,0.7,1.0,0.6833333333333333,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.53,1.0,0.4833333333333332,0.6166666666666666,1,26 -thins,0.4966666666666666,1.0,0.5499999999999999,0.6666666666666667,1,26 -package,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -jelly,0.4666666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -fruit,0.8666666666666668,0.7833333333333333,0.9333333333333332,0.82,2,25 -apple,0.7233333333333334,0.95,0.6499999999999999,0.7166666666666666,1,25 -bell,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -battery,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -jar,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -bound,0.5499999999999999,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -brush,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -scissors,0.7516666666666667,1.0,0.6499999999999999,0.75,1,26 -lime,0.805,1.0,0.6833333333333333,0.7833333333333333,1,25 -toothpaste,0.705,1.0,0.5833333333333333,0.7,1,26 -top,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -spiral,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -handles,0.6849999999999999,1.0,0.5666666666666667,0.7,1,25 -camera,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -eraser,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.7933333333333332,0.5583333333333333,1.0,0.7123809523809523,5,21 -banana,0.8266666666666668,1.0,0.7666666666666666,0.8333333333333333,1,26 -pitcher,0.5383333333333333,1.0,0.45,0.6,1,26 -phone,0.5499999999999999,0.5,0.7166666666666666,0.5633333333333334,1,26 -stick,0.8716666666666665,1.0,0.7833333333333333,0.85,1,25 -cereal,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -bulb,0.9350000000000002,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -can,0.915,1.0,0.8666666666666666,0.9199999999999999,2,25 -coca,0.7716666666666666,1.0,0.65,0.75,1,26 -crackers,0.5716666666666665,1.0,0.4666666666666666,0.6166666666666666,1,26 -plate,0.7183333333333334,1.0,0.65,0.75,1,25 -calculator,0.5483333333333333,0.6,0.7166666666666666,0.5833333333333333,1,26 -tissues,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -juice,0.4966666666666667,1.0,0.5,0.6333333333333333,1,26 -pink,0.63,1.0,0.6,0.7166666666666666,1,25 -lemon,0.43,1.0,0.4666666666666666,0.6166666666666667,1,26 -peach,0.36,0.55,0.5166666666666666,0.49333333333333335,1,26 -bowl,0.4216666666666667,0.5,0.65,0.5366666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -blue,0.5933333333333333,1.0,0.5833333333333333,0.7,1,25 -used,0.73,1.0,0.6666666666666666,0.7666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.6483333333333333,1.0,0.55,0.6833333333333333,1,26 -ball,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.86,1.0,0.7833333333333333,0.85,1,26 -garlic,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -cleaning,0.6716666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.9016666666666667,1.0,0.8666666666666668,0.9200000000000002,2,27 -container,0.6133333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -tomato,0.6966666666666665,0.95,0.7166666666666666,0.7666666666666667,1,26 -cellphone,0.45,0.6,0.6333333333333333,0.5466666666666666,1,26 -potato,0.8133333333333332,1.0,0.7333333333333333,0.8166666666666667,1,25 -light,0.915,1.0,0.8666666666666666,0.9199999999999999,2,26 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,23 -bottle,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.6519135802469136 -F1-Score: 0.6868121693121694 -Precision: 0.8844907407407407 -Recall: 0.6186728395061728 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7466666666666667,1.0,0.7,0.7833333333333333,1,24 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.78,0.95,0.7166666666666666,0.7666666666666667,1,24 -keyboard,0.725,1.0,0.65,0.75,1,26 -glue,0.7166666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -flashlight,0.6133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -cup,0.3433333333333334,0.5,0.5,0.48666666666666664,1,25 -folded,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jam,0.6733333333333332,1.0,0.5833333333333333,0.7,1,26 -black,0.8933333333333333,0.7166666666666666,1.0,0.8133333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.85,1.0,0.7833333333333333,0.85,1,26 -soccer,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333334,1,26 -hat,0.71,1.0,0.7,0.7833333333333333,1,26 -brown,0.96,1.0,0.9333333333333332,0.96,2,24 -coffee,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -handle,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -food,0.4716666666666667,1.0,0.4666666666666666,0.6166666666666667,1,25 -towel,0.675,1.0,0.5499999999999999,0.6833333333333333,1,26 -chips,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -stapler,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -bag,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -sponge,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -special,0.71,1.0,0.6499999999999999,0.75,1,26 -colgate,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -leaf,0.8816666666666666,1.0,0.75,0.8333333333333333,1,26 -tube,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -cell,0.65,1.0,0.5999999999999999,0.7166666666666667,1,26 -mug,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -yogurt,0.625,1.0,0.6833333333333332,0.7666666666666666,1,26 -plantain,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -red,0.775,0.6333333333333333,1.0,0.7390476190476191,3,26 -pepper,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -wheat,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.35,1.0,0.3666666666666667,0.5333333333333333,1,26 -toothbrush,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -binder,0.69,1.0,0.5499999999999999,0.6833333333333333,1,26 -baseball,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -pliers,0.6516666666666666,1.0,0.5666666666666667,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5599999999999999,1.0,0.4833333333333332,0.6333333333333333,1,26 -thins,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -package,0.6166666666666667,0.85,0.6833333333333333,0.6666666666666667,1,26 -k,0.61,1.0,0.4999999999999999,0.6333333333333333,1,26 -jelly,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -fruit,0.7216666666666668,0.6833333333333333,0.9,0.7466666666666667,2,25 -apple,0.7983333333333332,0.85,0.7333333333333333,0.7166666666666667,1,25 -bell,0.6566666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -battery,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -jar,0.475,0.95,0.4666666666666666,0.5833333333333334,1,26 -bound,0.6683333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -lettuce,0.635,1.0,0.4833333333333333,0.6333333333333333,1,26 -brush,0.6549999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -scissors,0.635,1.0,0.6,0.7166666666666667,1,26 -lime,0.5966666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -toothpaste,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -top,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -spiral,0.4916666666666666,1.0,0.5166666666666666,0.65,1,26 -handles,0.8416666666666666,1.0,0.7833333333333333,0.85,1,25 -camera,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -eraser,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -creamer,0,0,0,0,1,26 -white,0.8016666666666667,0.675,1.0,0.8019047619047619,5,20 -banana,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.6333333333333333,1.0,0.6666666666666666,0.75,1,26 -phone,0.4216666666666667,1.0,0.41666666666666663,0.5833333333333333,1,26 -stick,0.6383333333333333,1.0,0.5166666666666666,0.65,1,25 -cereal,0.7100000000000001,1.0,0.5499999999999999,0.6833333333333333,1,26 -bulb,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -hair,0.66,0.95,0.5499999999999999,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.75,1.0,0.6333333333333333,0.7333333333333333,1,26 -can,0.8316666666666667,1.0,0.7666666666666667,0.8600000000000001,2,25 -coca,0.7433333333333334,1.0,0.6333333333333333,0.75,1,26 -crackers,0.8099999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -plate,0.63,1.0,0.5666666666666667,0.6833333333333333,1,25 -calculator,0.3983333333333333,0.55,0.5333333333333332,0.5033333333333334,1,26 -tissues,0.7999999999999999,1.0,0.7499999999999999,0.8166666666666667,1,26 -juice,0.655,1.0,0.5833333333333333,0.7,1,26 -pink,0.4966666666666667,1.0,0.5166666666666666,0.65,1,25 -lemon,0.8666666666666668,1.0,0.7833333333333333,0.85,1,26 -peach,0.6433333333333334,1.0,0.55,0.6833333333333333,1,26 -bowl,0.425,0.5,0.6166666666666666,0.53,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -blue,0.6066666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -used,0.8483333333333334,1.0,0.7,0.8,1,23 -energizer,0,0,0,0,1,26 -pear,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -ball,0.6216666666666667,1.0,0.4833333333333333,0.6333333333333333,1,25 -notebook,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -garlic,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -cleaning,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -pair,0.8733333333333334,1.0,0.8333333333333333,0.9,2,26 -container,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -tomato,0.5333333333333333,0.6,0.5833333333333333,0.5366666666666667,1,26 -cellphone,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -potato,0.505,1.0,0.5166666666666666,0.65,1,25 -light,0.8683333333333332,1.0,0.8333333333333334,0.9000000000000001,2,25 -green,0.9800000000000001,0.95,1.0,0.9666666666666666,3,23 -bottle,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.643888888888889 -F1-Score: 0.6811199294532629 -Precision: 0.8922067901234568 -Recall: 0.6055555555555556 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.635,1.0,0.6499999999999999,0.75,1,24 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.735,1.0,0.6666666666666666,0.7666666666666667,1,24 -keyboard,0.5666666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -glue,0.75,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.8816666666666666,1.0,0.75,0.8333333333333334,1,26 -flashlight,0.735,1.0,0.7166666666666666,0.8,1,26 -cup,0.07166666666666666,0.4666666666666666,0.55,0.4566666666666667,1,26 -folded,0.8483333333333333,1.0,0.7,0.8,1,26 -jam,0.7066666666666667,1.0,0.5666666666666667,0.7,1,26 -black,0.93,0.8333333333333333,1.0,0.8933333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -soccer,0.6466666666666667,1.0,0.55,0.6833333333333333,1,26 -hat,0.605,1.0,0.55,0.6833333333333333,1,26 -brown,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -coffee,0.7166666666666666,1.0,0.65,0.75,1,25 -handle,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -food,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -towel,0.5333333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -chips,0.6833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -stapler,0.505,1.0,0.4499999999999999,0.6,1,26 -onion,0.705,1.0,0.6666666666666666,0.7666666666666667,1,26 -bag,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -sponge,0.85,1.0,0.7999999999999999,0.85,1,26 -zero,0,0,0,0,1,26 -computer,0.71,1.0,0.5666666666666667,0.7,1,25 -special,0.6383333333333333,1.0,0.6,0.7166666666666667,1,26 -colgate,0.5666666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -leaf,0.355,1.0,0.3666666666666667,0.5333333333333333,1,26 -tube,0.4866666666666667,1.0,0.41666666666666663,0.5833333333333333,1,26 -cell,0.5283333333333333,0.55,0.6333333333333333,0.55,1,26 -mug,0.6966666666666665,1.0,0.6833333333333333,0.7666666666666666,1,25 -yogurt,0.6416666666666667,1.0,0.55,0.6833333333333333,1,26 -plantain,0.655,1.0,0.5333333333333333,0.6666666666666667,1,26 -red,0.9466666666666667,0.8833333333333332,1.0,0.9166666666666666,3,26 -pepper,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -wheat,0.7233333333333334,1.0,0.55,0.6833333333333333,1,26 -kleenex,0.8,1.0,0.7333333333333333,0.8166666666666668,1,26 -toothbrush,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -binder,0.6766666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -baseball,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -pliers,0.8566666666666667,1.0,0.7333333333333333,0.8166666666666668,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.5683333333333334,1.0,0.5166666666666666,0.65,1,26 -thins,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -package,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -k,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -jelly,0.775,1.0,0.65,0.75,1,26 -fruit,0.7833333333333334,0.75,0.8666666666666666,0.7733333333333333,2,25 -apple,0.6833333333333333,0.9,0.7,0.7166666666666667,1,25 -bell,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -battery,0.655,1.0,0.5333333333333333,0.6666666666666667,1,26 -jar,0.4466666666666666,1.0,0.4333333333333333,0.5833333333333333,1,26 -bound,0.6133333333333333,1.0,0.5,0.65,1,26 -lettuce,0.65,1.0,0.55,0.6833333333333333,1,26 -brush,0.7383333333333333,1.0,0.65,0.75,1,26 -scissors,0.6466666666666667,1.0,0.55,0.6833333333333333,1,26 -lime,0.6466666666666667,1.0,0.6,0.7166666666666667,1,25 -toothpaste,0.7249999999999999,1.0,0.7,0.7833333333333333,1,26 -top,0.6933333333333334,1.0,0.6,0.7166666666666667,1,26 -spiral,0.5800000000000001,1.0,0.5,0.65,1,26 -handles,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666667,1,25 -camera,0.6233333333333333,1.0,0.5833333333333333,0.7,1,26 -eraser,0.75,1.0,0.75,0.8166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.7899999999999999,0.6583333333333333,1.0,0.7904761904761906,5,21 -banana,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.4583333333333333,1.0,0.5,0.6333333333333333,1,26 -phone,0.4833333333333333,0.55,0.5999999999999999,0.53,1,26 -stick,0.6933333333333332,1.0,0.6333333333333333,0.7333333333333333,1,25 -cereal,0.6266666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -bulb,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,27 -hair,0.7083333333333333,1.0,0.6833333333333332,0.7666666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.755,1.0,0.65,0.75,1,26 -can,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,24 -coca,0.6416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -crackers,0.6166666666666666,1.0,0.6666666666666666,0.75,1,26 -plate,0.635,1.0,0.4833333333333333,0.6333333333333333,1,25 -calculator,0.86,1.0,0.7833333333333333,0.85,1,26 -tissues,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -juice,0.68,1.0,0.5666666666666667,0.7,1,26 -pink,0.6816666666666666,1.0,0.5333333333333333,0.6666666666666666,1,25 -lemon,0.5149999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -peach,0.6066666666666667,1.0,0.5,0.65,1,26 -bowl,0.4033333333333333,0.5,0.5333333333333332,0.49333333333333335,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5683333333333334,1.0,0.4333333333333333,0.6,1,26 -blue,0.6416666666666666,1.0,0.7,0.7833333333333333,1,25 -used,0.4916666666666667,1.0,0.5666666666666667,0.6833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -ball,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.7849999999999999,1.0,0.6333333333333333,0.75,1,26 -garlic,0.6766666666666666,0.95,0.5499999999999999,0.65,1,26 -cleaning,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -pair,0.85,1.0,0.8333333333333334,0.9000000000000001,2,27 -container,0.5599999999999999,1.0,0.5166666666666666,0.65,1,25 -tomato,0.5666666666666667,0.85,0.6833333333333333,0.6666666666666667,1,26 -cellphone,0.5966666666666667,0.5,0.6833333333333333,0.5566666666666668,1,26 -potato,0.8,1.0,0.7166666666666666,0.8,1,26 -light,0.8466666666666665,0.85,0.8666666666666666,0.8200000000000001,2,25 -green,0.9500000000000002,0.8833333333333332,1.0,0.9266666666666667,3,23 -bottle,0.95,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.6394290123456791 -F1-Score: 0.6776278659611991 -Precision: 0.8900462962962963 -Recall: 0.6013888888888889 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,26 -looks,0.6866666666666666,0.7,0.7,0.6166666666666666,1,24 -keyboard,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -glue,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.8049999999999999,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.635,1.0,0.55,0.6833333333333333,1,26 -cup,0.5466666666666666,0.5,0.6333333333333333,0.54,1,26 -folded,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -jam,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -black,0.865,0.725,1.0,0.8257142857142856,6,23 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.725,1.0,0.6833333333333333,0.7666666666666666,1,26 -soccer,0.7216666666666666,1.0,0.7,0.7833333333333333,1,26 -hat,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -brown,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -coffee,0.56,1.0,0.5166666666666666,0.65,1,26 -handle,0.5466666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -food,0.7133333333333333,1.0,0.65,0.75,1,26 -towel,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.7983333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -onion,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -bag,0.8083333333333332,1.0,0.7833333333333333,0.85,1,26 -sponge,0.8483333333333334,1.0,0.7333333333333333,0.8166666666666668,1,26 -zero,0,0,0,0,1,26 -computer,0.6716666666666666,1.0,0.6,0.7166666666666667,1,25 -special,0.6633333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -colgate,0.7166666666666667,1.0,0.7166666666666666,0.8,1,26 -leaf,0.6666666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.505,1.0,0.5166666666666666,0.65,1,26 -cell,0.5,1.0,0.4833333333333333,0.6166666666666667,1,26 -mug,0.7383333333333334,1.0,0.6,0.7166666666666667,1,26 -yogurt,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -plantain,0.7833333333333333,1.0,0.7999999999999999,0.85,1,26 -red,0.615,0.41666666666666663,1.0,0.58,3,27 -pepper,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -wheat,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -kleenex,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -toothbrush,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -binder,0.7633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -baseball,0.71,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.6833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.655,1.0,0.5833333333333333,0.7,1,26 -thins,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -package,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -k,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -jelly,0.5766666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -fruit,0.72,0.5666666666666667,0.9333333333333332,0.67,2,25 -apple,0.575,1.0,0.5666666666666667,0.6833333333333333,1,25 -bell,0.7183333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -battery,0.6466666666666666,1.0,0.4999999999999999,0.65,1,26 -jar,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -bound,0.5166666666666666,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.725,1.0,0.7,0.7833333333333333,1,26 -brush,0.7416666666666666,1.0,0.7166666666666666,0.8,1,26 -scissors,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -lime,0.53,1.0,0.4666666666666666,0.6166666666666667,1,25 -toothpaste,0.7549999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -top,0.6233333333333333,1.0,0.5833333333333333,0.7,1,26 -spiral,0.6166666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.6883333333333332,1.0,0.6,0.7166666666666667,1,25 -camera,0.635,1.0,0.6,0.7166666666666666,1,26 -eraser,0.6566666666666666,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,0.8666666666666668,0.7,1.0,0.8066666666666666,5,23 -banana,0.65,1.0,0.65,0.75,1,26 -pitcher,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -phone,0.8533333333333333,1.0,0.7,0.8,1,26 -stick,0.8399999999999999,1.0,0.7333333333333333,0.8166666666666668,1,25 -cereal,0.805,1.0,0.65,0.7666666666666666,1,26 -bulb,0.9166666666666666,1.0,0.9,0.9400000000000001,2,27 -hair,0.5333333333333334,1.0,0.4999999999999999,0.6333333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6883333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -can,0.8683333333333334,1.0,0.8333333333333333,0.9,2,25 -coca,0.5966666666666667,1.0,0.4999999999999999,0.65,1,26 -crackers,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -plate,0.5549999999999999,1.0,0.5166666666666666,0.65,1,24 -calculator,0.7133333333333334,0.9,0.7,0.7166666666666667,1,26 -tissues,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -juice,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -pink,0.7216666666666667,1.0,0.6499999999999999,0.75,1,25 -lemon,0.69,1.0,0.6166666666666666,0.7333333333333334,1,26 -peach,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -bowl,0.47166666666666657,0.5,0.7,0.5533333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -blue,0.475,1.0,0.4999999999999999,0.6333333333333333,1,25 -used,0.73,1.0,0.6,0.7166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.53,1.0,0.5166666666666666,0.65,1,26 -ball,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -notebook,0.7016666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -garlic,0.78,1.0,0.7166666666666666,0.8,1,26 -cleaning,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -pair,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,27 -container,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666667,1,25 -tomato,0.51,0.7,0.6833333333333333,0.5833333333333333,1,26 -cellphone,0.555,1.0,0.5833333333333333,0.7,1,26 -potato,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -light,0.9133333333333333,1.0,0.9,0.9400000000000001,2,27 -green,0.8850000000000001,0.8,1.0,0.8780952380952382,3,23 -bottle,0.9,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.6438888888888888 -F1-Score: 0.6826278659611993 -Precision: 0.8926697530864196 -Recall: 0.6121913580246913 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8200000000000001,1.0,0.6333333333333333,0.75,1,25 -yellow,0.8733333333333334,0.7666666666666667,1.0,0.8580952380952382,6,25 -looks,0.7450000000000001,0.8,0.6833333333333333,0.6833333333333333,1,24 -keyboard,0.775,1.0,0.7666666666666666,0.8333333333333333,1,26 -glue,0.575,1.0,0.4833333333333333,0.6333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -flashlight,0.6183333333333334,1.0,0.5166666666666666,0.65,1,26 -cup,0.42833333333333334,0.5,0.6166666666666666,0.53,1,26 -folded,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -jam,0.6016666666666667,1.0,0.5833333333333333,0.7,1,26 -black,0.7966666666666666,0.6333333333333333,1.0,0.7714285714285715,6,20 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -soccer,0.9550000000000001,1.0,0.9,0.9333333333333332,1,26 -hat,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -brown,0.96,1.0,0.9333333333333332,0.96,2,25 -coffee,0.7333333333333333,1.0,0.6499999999999999,0.75,1,26 -handle,0.755,1.0,0.7166666666666666,0.8,1,25 -food,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -towel,0.73,1.0,0.6833333333333333,0.7666666666666666,1,26 -chips,0.705,1.0,0.5999999999999999,0.7166666666666667,1,26 -stapler,0.675,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.625,1.0,0.5333333333333333,0.6666666666666667,1,26 -bag,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -sponge,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.53,1.0,0.4833333333333333,0.6333333333333333,1,25 -special,0.5416666666666667,1.0,0.5166666666666666,0.65,1,26 -colgate,0.6916666666666667,1.0,0.6,0.7166666666666667,1,26 -leaf,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -tube,0.5216666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -cell,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333334,1,26 -mug,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -yogurt,0.5466666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -plantain,0.6916666666666667,0.95,0.65,0.7166666666666667,1,26 -red,0.7983333333333332,0.65,1.0,0.7680952380952382,3,25 -pepper,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -wheat,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.575,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -binder,0.6799999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -baseball,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -pliers,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.835,1.0,0.7333333333333333,0.8166666666666668,1,26 -thins,0.5833333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -package,0.6599999999999999,0.9,0.55,0.6333333333333334,1,26 -k,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666666,1,26 -jelly,0.6516666666666666,1.0,0.4999999999999999,0.65,1,26 -fruit,0.5133333333333334,0.4666666666666666,0.8333333333333333,0.5714285714285714,2,25 -apple,0.53,0.85,0.6166666666666666,0.6166666666666667,1,25 -bell,0.53,1.0,0.4666666666666666,0.6166666666666666,1,26 -battery,0.6633333333333333,1.0,0.65,0.75,1,26 -jar,0.45999999999999996,1.0,0.4499999999999999,0.6,1,26 -bound,0.6516666666666666,1.0,0.6,0.7166666666666667,1,26 -lettuce,0.4833333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -brush,0.6016666666666667,1.0,0.5,0.65,1,26 -scissors,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -lime,0.8200000000000001,1.0,0.6833333333333333,0.7833333333333333,1,25 -toothpaste,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -top,0.6766666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.7616666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -handles,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -camera,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -eraser,0.6649999999999999,1.0,0.6,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.7966666666666666,0.6416666666666667,1.0,0.7752380952380952,5,21 -banana,0.7083333333333333,0.9,0.7,0.7166666666666667,1,26 -pitcher,0.7466666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -phone,0.63,1.0,0.5999999999999999,0.7166666666666667,1,26 -stick,0.4583333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -cereal,0.73,1.0,0.6,0.7166666666666667,1,26 -bulb,0.8816666666666666,1.0,0.8333333333333333,0.9,2,27 -hair,0.7166666666666666,0.75,0.7166666666666666,0.65,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -coca,0.8,1.0,0.7166666666666666,0.8,1,26 -crackers,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -plate,0.705,1.0,0.6666666666666666,0.7666666666666667,1,25 -calculator,0.625,1.0,0.5999999999999999,0.7166666666666666,1,26 -tissues,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -pink,0.7183333333333333,1.0,0.6499999999999999,0.75,1,25 -lemon,0.635,1.0,0.5833333333333333,0.7,1,26 -peach,0.8433333333333334,1.0,0.7,0.8,1,26 -bowl,0.3683333333333334,0.5,0.5833333333333333,0.51,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5933333333333334,1.0,0.5333333333333333,0.6666666666666666,1,26 -blue,0.6816666666666666,0.95,0.5666666666666667,0.6666666666666667,1,25 -used,0.6416666666666666,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -ball,0.7,1.0,0.6499999999999999,0.75,1,25 -notebook,0.5799999999999998,1.0,0.5833333333333333,0.7,1,26 -garlic,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -cleaning,0.525,1.0,0.4999999999999999,0.6333333333333333,1,26 -pair,0.8549999999999999,1.0,0.8333333333333334,0.9000000000000001,2,26 -container,0.8400000000000001,1.0,0.6833333333333333,0.7833333333333334,1,26 -tomato,0.5633333333333332,0.65,0.65,0.5733333333333334,1,26 -cellphone,0.75,1.0,0.75,0.8166666666666667,1,26 -potato,0.775,1.0,0.7666666666666666,0.8333333333333333,1,25 -light,0.9083333333333332,1.0,0.9,0.9400000000000001,2,27 -green,0.93,0.8,1.0,0.8666666666666666,3,24 -bottle,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.6396141975308643 -F1-Score: 0.6798236331569664 -Precision: 0.8861882716049382 -Recall: 0.6104938271604938 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.685,1.0,0.5666666666666667,0.7,1,25 -yellow,0.9133333333333333,0.7833333333333333,1.0,0.86,6,24 -looks,0.6616666666666666,0.75,0.6666666666666666,0.6333333333333333,1,24 -keyboard,0.71,1.0,0.5999999999999999,0.7166666666666666,1,26 -glue,0.73,1.0,0.5999999999999999,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -flashlight,0.8066666666666666,1.0,0.6333333333333333,0.75,1,26 -cup,0.18,0.5,0.4,0.44000000000000006,1,26 -folded,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -jam,0.61,1.0,0.4833333333333333,0.6333333333333333,1,26 -black,0.93,0.8333333333333333,1.0,0.8933333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -soccer,0.5566666666666668,1.0,0.4833333333333333,0.6333333333333333,1,26 -hat,0.5333333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -brown,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -coffee,0.53,1.0,0.5333333333333333,0.6666666666666667,1,26 -handle,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -food,0.8083333333333332,1.0,0.7666666666666666,0.8333333333333333,1,25 -towel,0.605,1.0,0.5166666666666666,0.6666666666666667,1,26 -chips,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -stapler,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.6383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -bag,0.7216666666666667,1.0,0.7,0.7833333333333333,1,26 -sponge,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.7,1.0,0.7,0.7833333333333333,1,25 -special,0.8716666666666667,1.0,0.75,0.8333333333333333,1,26 -colgate,0.675,1.0,0.6833333333333333,0.7666666666666666,1,26 -leaf,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -tube,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -cell,0.6416666666666666,1.0,0.6499999999999999,0.75,1,26 -mug,0.76,1.0,0.6666666666666666,0.7666666666666667,1,26 -yogurt,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -plantain,0.6683333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -red,0.6933333333333334,0.5416666666666666,1.0,0.679047619047619,3,25 -pepper,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -wheat,0.735,1.0,0.65,0.75,1,26 -kleenex,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -toothbrush,0.58,1.0,0.5833333333333333,0.7,1,25 -binder,0.6666666666666666,1.0,0.6499999999999999,0.75,1,26 -baseball,0.7166666666666666,1.0,0.7333333333333333,0.8,1,26 -pliers,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5,1.0,0.5833333333333333,0.7,1,26 -thins,0.6849999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -package,0.6416666666666666,0.85,0.6499999999999999,0.65,1,26 -k,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -jelly,0.7666666666666667,1.0,0.7,0.7833333333333333,1,26 -fruit,0.71,0.65,0.8666666666666666,0.7166666666666667,2,26 -apple,0.7266666666666667,0.85,0.7,0.6833333333333333,1,25 -bell,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -battery,0.5883333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -jar,0.5516666666666666,0.85,0.5833333333333333,0.6,1,26 -bound,0.77,1.0,0.6166666666666666,0.7333333333333333,1,26 -lettuce,0.7683333333333333,1.0,0.6499999999999999,0.75,1,26 -brush,0.6566666666666667,1.0,0.55,0.6833333333333333,1,26 -scissors,0.75,1.0,0.7666666666666666,0.8333333333333333,1,26 -lime,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -toothpaste,0.575,1.0,0.5333333333333333,0.6666666666666667,1,26 -top,0.7233333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -spiral,0.7166666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -handles,0.8166666666666667,1.0,0.7499999999999999,0.8166666666666667,1,25 -camera,0.6849999999999999,1.0,0.6499999999999999,0.75,1,26 -eraser,0.5016666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.7916666666666667,0.5916666666666666,1.0,0.7390476190476191,5,21 -banana,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -pitcher,0.665,1.0,0.5166666666666666,0.6666666666666667,1,26 -phone,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -stick,0.5599999999999999,1.0,0.4999999999999999,0.6333333333333333,1,25 -cereal,0.5933333333333334,1.0,0.5333333333333333,0.6666666666666666,1,26 -bulb,0.8566666666666667,1.0,0.8,0.8800000000000001,2,27 -hair,0.705,1.0,0.6333333333333333,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7016666666666667,1.0,0.5833333333333333,0.7,1,26 -can,0.8766666666666666,1.0,0.8333333333333333,0.9,2,26 -coca,0.725,1.0,0.65,0.75,1,26 -crackers,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.5216666666666667,1.0,0.5166666666666666,0.65,1,25 -calculator,0.6666666666666667,0.65,0.7666666666666666,0.6166666666666667,1,26 -tissues,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -juice,0.6183333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -pink,0.775,1.0,0.7666666666666666,0.8333333333333333,1,25 -lemon,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -peach,0.6216666666666667,1.0,0.5,0.65,1,26 -bowl,0.5916666666666666,0.5,0.7333333333333333,0.5733333333333334,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6433333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -blue,0.4966666666666667,1.0,0.4999999999999999,0.6333333333333333,1,25 -used,0.575,1.0,0.55,0.6666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.835,1.0,0.7833333333333333,0.85,1,26 -ball,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.675,1.0,0.6499999999999999,0.75,1,26 -garlic,0.36333333333333334,1.0,0.4166666666666667,0.5666666666666667,1,26 -cleaning,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -pair,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -container,0.5549999999999999,1.0,0.5833333333333333,0.7,1,25 -tomato,0.5166666666666666,0.7,0.5999999999999999,0.5666666666666667,1,26 -cellphone,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -potato,0.66,1.0,0.55,0.6833333333333333,1,25 -light,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,25 -green,0.9800000000000001,0.95,1.0,0.9666666666666666,3,24 -bottle,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,27 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.633503086419753 -F1-Score: 0.6770194003527338 -Precision: 0.8888888888888888 -Recall: 0.6050925925925925 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.65,1.0,0.6333333333333333,0.7333333333333333,1,25 -yellow,0.9266666666666667,0.8166666666666667,1.0,0.8800000000000001,6,24 -looks,0.645,0.9,0.5666666666666667,0.6666666666666667,1,24 -keyboard,0.4666666666666666,1.0,0.4499999999999999,0.6,1,26 -glue,0.6633333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -flashlight,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.4166666666666667,0.5,0.6666666666666666,0.5333333333333334,1,26 -folded,0.5133333333333333,1.0,0.4833333333333332,0.6333333333333333,1,26 -jam,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -black,0.8799999999999999,0.7416666666666666,1.0,0.837142857142857,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -soccer,0.6566666666666666,1.0,0.5666666666666667,0.7,1,26 -hat,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -handle,0.655,1.0,0.6499999999999999,0.75,1,25 -food,0.785,1.0,0.6666666666666666,0.7666666666666667,1,24 -towel,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -chips,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -stapler,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -onion,0.6749999999999999,1.0,0.5833333333333333,0.7,1,26 -bag,0.7566666666666666,1.0,0.6333333333333333,0.75,1,26 -sponge,0.7733333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7216666666666666,1.0,0.7,0.7833333333333333,1,25 -special,0.7683333333333333,1.0,0.6499999999999999,0.75,1,26 -colgate,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -leaf,0.8483333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -tube,0.61,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -mug,0.5916666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -yogurt,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -plantain,0.6900000000000001,1.0,0.5666666666666667,0.7,1,26 -red,0.7150000000000001,0.5599999999999999,1.0,0.6930952380952381,3,25 -pepper,0.7466666666666667,1.0,0.7166666666666666,0.8,1,26 -wheat,0.5499999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -kleenex,0.6216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -toothbrush,0.6633333333333333,1.0,0.5166666666666666,0.65,1,26 -binder,0.5216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666666,1,26 -pliers,0.9133333333333333,1.0,0.85,0.8999999999999998,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.8233333333333335,1.0,0.7166666666666666,0.8,1,26 -thins,0.61,1.0,0.5333333333333332,0.6666666666666666,1,26 -package,0.6666666666666667,1.0,0.5833333333333333,0.7,1,26 -k,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -jelly,0.625,1.0,0.55,0.6833333333333333,1,26 -fruit,0.6233333333333333,0.4999999999999999,0.9,0.5966666666666667,2,26 -apple,0.5850000000000001,0.85,0.6,0.6166666666666667,1,25 -bell,0.475,1.0,0.5333333333333333,0.6666666666666667,1,26 -battery,0.6733333333333333,1.0,0.5666666666666667,0.7,1,26 -jar,0.6666666666666666,1.0,0.5666666666666667,0.7,1,26 -bound,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -lettuce,0.6216666666666666,1.0,0.5833333333333333,0.7,1,26 -brush,0.7016666666666667,1.0,0.55,0.6833333333333333,1,26 -scissors,0.72,1.0,0.5999999999999999,0.7166666666666666,1,26 -lime,0.78,1.0,0.7666666666666666,0.8333333333333333,1,25 -toothpaste,0.425,1.0,0.4999999999999999,0.6333333333333333,1,26 -top,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.7133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -handles,0.6683333333333333,1.0,0.65,0.75,1,25 -camera,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -eraser,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.7833333333333334,0.6416666666666667,1.0,0.7752380952380952,5,20 -banana,0.805,0.9,0.7333333333333333,0.75,1,26 -pitcher,0.705,1.0,0.6499999999999999,0.75,1,26 -phone,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -stick,0.705,1.0,0.7,0.7833333333333333,1,25 -cereal,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -bulb,0.8383333333333333,1.0,0.8,0.8800000000000001,2,27 -hair,0.7183333333333334,0.85,0.6666666666666666,0.6666666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6416666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -can,0.8550000000000001,1.0,0.8333333333333333,0.9,2,25 -coca,0.7516666666666667,1.0,0.6333333333333333,0.75,1,26 -crackers,0.6749999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.7433333333333334,1.0,0.7,0.7833333333333333,1,25 -calculator,0.5533333333333333,0.85,0.5333333333333333,0.6,1,26 -tissues,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -pink,0.6333333333333333,1.0,0.6499999999999999,0.75,1,25 -lemon,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -peach,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.23333333333333334,0.5,0.5333333333333333,0.49333333333333335,1,26 -camouflage,0,0,0,0,1,26 -digital,0.675,1.0,0.5833333333333333,0.7,1,26 -blue,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -used,0.5966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.5133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -ball,0.6966666666666665,1.0,0.65,0.75,1,25 -notebook,0.9133333333333333,1.0,0.85,0.9,1,26 -garlic,0.6183333333333334,1.0,0.55,0.6833333333333333,1,26 -cleaning,0.6183333333333333,1.0,0.5833333333333333,0.7,1,26 -pair,0.8883333333333333,1.0,0.8666666666666668,0.9200000000000002,2,26 -container,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -tomato,0.5866666666666667,0.6,0.65,0.5566666666666668,1,26 -cellphone,0.7916666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -potato,0.6633333333333333,1.0,0.65,0.75,1,25 -light,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -green,0.905,0.7916666666666666,1.0,0.8657142857142857,3,23 -bottle,0.9099999999999999,1.0,0.8666666666666666,0.9199999999999999,2,26 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.6444753086419752 -F1-Score: 0.6864925044091711 -Precision: 0.8889043209876545 -Recall: 0.6180555555555555 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.93,1.0,0.85,0.8999999999999998,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,25 -looks,0.7433333333333334,0.8,0.7333333333333333,0.6833333333333333,1,24 -keyboard,0.7183333333333333,1.0,0.65,0.75,1,26 -glue,0.8766666666666666,1.0,0.75,0.8333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.575,1.0,0.4666666666666666,0.6166666666666667,1,26 -flashlight,0.7166666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -cup,0.42333333333333334,0.5,0.55,0.5033333333333334,1,26 -folded,0.73,1.0,0.6833333333333333,0.7666666666666667,1,26 -jam,0.805,1.0,0.7166666666666666,0.8,1,26 -black,0.8483333333333333,0.7,1.0,0.8133333333333332,6,22 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -soccer,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -hat,0.73,1.0,0.6499999999999999,0.75,1,26 -brown,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,24 -coffee,0.705,1.0,0.6166666666666666,0.7333333333333333,1,25 -handle,0.575,1.0,0.6333333333333333,0.7333333333333333,1,26 -food,0.6466666666666666,1.0,0.6,0.7166666666666667,1,25 -towel,0.76,1.0,0.65,0.75,1,26 -chips,0.65,1.0,0.5833333333333333,0.7,1,26 -stapler,0.835,1.0,0.6833333333333333,0.7833333333333333,1,26 -onion,0.7383333333333333,1.0,0.6333333333333333,0.75,1,26 -bag,0.55,1.0,0.5166666666666666,0.65,1,26 -sponge,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7466666666666667,1.0,0.6333333333333332,0.7333333333333333,1,25 -special,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -colgate,0.7966666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -leaf,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -tube,0.46333333333333326,1.0,0.4999999999999999,0.6333333333333333,1,26 -cell,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -mug,0.6466666666666666,1.0,0.6,0.7166666666666667,1,25 -yogurt,0.8916666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -plantain,0.805,1.0,0.7166666666666666,0.8,1,26 -red,0.95,0.85,1.0,0.9,3,27 -pepper,0.56,1.0,0.5333333333333333,0.6666666666666667,1,26 -wheat,0.7266666666666667,1.0,0.7166666666666666,0.8,1,26 -kleenex,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.5933333333333333,1.0,0.5,0.6333333333333334,1,26 -binder,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -baseball,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -pliers,0.5083333333333333,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -thins,0.7350000000000001,1.0,0.5666666666666667,0.7,1,26 -package,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -k,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -jelly,0.6749999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.7866666666666666,0.7,0.9,0.7533333333333334,2,25 -apple,0.58,0.95,0.4833333333333333,0.6,1,25 -bell,0.6466666666666666,1.0,0.4833333333333332,0.6333333333333333,1,26 -battery,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -jar,0.5433333333333332,1.0,0.4666666666666666,0.6166666666666666,1,26 -bound,0.6333333333333333,1.0,0.6666666666666666,0.75,1,26 -lettuce,0.4883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -brush,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.6683333333333333,1.0,0.6499999999999999,0.75,1,26 -lime,0.6649999999999999,1.0,0.5499999999999999,0.6833333333333333,1,25 -toothpaste,0.58,1.0,0.5166666666666666,0.65,1,26 -top,0.2833333333333333,1.0,0.35,0.5166666666666666,1,26 -spiral,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -handles,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666666,1,25 -camera,0.5349999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.5566666666666668,0.425,1.0,0.5811904761904761,5,21 -banana,0.7016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -pitcher,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -phone,0.5083333333333333,1.0,0.5166666666666666,0.65,1,26 -stick,0.8099999999999999,1.0,0.7166666666666666,0.8,1,25 -cereal,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -bulb,0.8933333333333333,1.0,0.8666666666666666,0.9199999999999999,2,27 -hair,0.635,1.0,0.5166666666666666,0.65,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6966666666666665,1.0,0.6833333333333333,0.7666666666666667,1,26 -can,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,25 -coca,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -crackers,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -plate,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -calculator,0.6966666666666665,0.95,0.5999999999999999,0.6833333333333333,1,26 -tissues,0.5599999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -juice,0.5583333333333333,0.5,0.6833333333333333,0.5566666666666668,1,26 -pink,0.5933333333333334,1.0,0.4333333333333333,0.6,1,25 -lemon,0.5283333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -peach,0.655,1.0,0.5666666666666667,0.6833333333333333,1,26 -bowl,0.37500000000000006,0.5,0.5499999999999999,0.5033333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5266666666666666,1.0,0.4,0.5666666666666667,1,26 -blue,0.5666666666666667,1.0,0.4999999999999999,0.6333333333333333,1,25 -used,0.6799999999999999,1.0,0.55,0.6833333333333333,1,22 -energizer,0,0,0,0,1,26 -pear,0.6333333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -ball,0.675,1.0,0.5999999999999999,0.7166666666666666,1,25 -notebook,0.825,1.0,0.8166666666666667,0.8666666666666666,1,26 -garlic,0.7166666666666666,1.0,0.6499999999999999,0.75,1,26 -cleaning,0.61,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,27 -container,0.7016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -tomato,0.5466666666666666,0.95,0.4999999999999999,0.6,1,26 -cellphone,0.5966666666666666,1.0,0.5166666666666666,0.65,1,26 -potato,0.6383333333333333,1.0,0.5166666666666666,0.65,1,25 -light,0.975,1.0,0.9666666666666666,0.9800000000000001,2,27 -green,1.0,1.0,1.0,1.0,3,25 -bottle,0.8400000000000001,1.0,0.8,0.8800000000000001,2,27 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.6427314814814814 -F1-Score: 0.6802579365079365 -Precision: 0.8960648148148147 -Recall: 0.6041666666666665 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8366666666666667,1.0,0.6833333333333333,0.7833333333333333,1,24 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.7083333333333333,0.85,0.6666666666666666,0.6666666666666666,1,24 -keyboard,0.6333333333333333,1.0,0.5999999999999999,0.7,1,26 -glue,0.7166666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.49833333333333335,1.0,0.4333333333333334,0.6,1,26 -flashlight,0.5133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.4033333333333333,0.5,0.5833333333333333,0.51,1,26 -folded,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.58,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.8766666666666667,0.7833333333333333,1.0,0.8647619047619047,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6016666666666667,1.0,0.5833333333333333,0.7,1,26 -soccer,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -hat,0.735,1.0,0.65,0.75,1,26 -brown,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -coffee,0.6133333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -handle,0.6383333333333333,1.0,0.55,0.6833333333333333,1,26 -food,0.6083333333333333,1.0,0.5333333333333332,0.6666666666666666,1,25 -towel,0.5133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -chips,0.7916666666666666,1.0,0.7166666666666666,0.8,1,26 -stapler,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -onion,0.675,1.0,0.6499999999999999,0.75,1,26 -bag,0.6133333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -sponge,0.48,1.0,0.4833333333333332,0.6166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.5249999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -special,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -leaf,0.6,1.0,0.6166666666666666,0.7166666666666666,1,26 -tube,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -mug,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -yogurt,0.7583333333333333,1.0,0.5666666666666667,0.7,1,26 -plantain,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -red,0.9100000000000001,0.8,1.0,0.8733333333333333,3,26 -pepper,0.6883333333333332,1.0,0.6,0.7166666666666666,1,26 -wheat,0.5266666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -kleenex,0.525,1.0,0.55,0.6666666666666666,1,26 -toothbrush,0.7933333333333332,1.0,0.7333333333333333,0.8166666666666667,1,26 -binder,0.7699999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -baseball,0.7583333333333334,1.0,0.75,0.8166666666666667,1,26 -pliers,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -thins,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -package,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.6683333333333333,1.0,0.65,0.75,1,26 -jelly,0.7183333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -fruit,0.825,0.75,0.9333333333333332,0.8033333333333333,2,25 -apple,0.75,0.95,0.7166666666666666,0.7666666666666667,1,25 -bell,0.7166666666666666,1.0,0.6,0.7166666666666667,1,26 -battery,0.7050000000000001,0.95,0.7166666666666666,0.7666666666666666,1,26 -jar,0.75,1.0,0.7166666666666666,0.8,1,26 -bound,0.7266666666666667,1.0,0.6333333333333333,0.75,1,26 -lettuce,0.8266666666666665,1.0,0.7166666666666666,0.8,1,26 -brush,0.45499999999999996,1.0,0.4333333333333333,0.5833333333333333,1,26 -scissors,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -lime,0.5883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -toothpaste,0.605,1.0,0.5833333333333333,0.7,1,26 -top,0.7633333333333333,1.0,0.75,0.8166666666666668,1,26 -spiral,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -handles,0.4766666666666667,1.0,0.4666666666666666,0.6166666666666666,1,25 -camera,0.635,1.0,0.4999999999999999,0.65,1,26 -eraser,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,0.6783333333333332,0.5466666666666667,1.0,0.693095238095238,5,21 -banana,0.5516666666666666,1.0,0.5166666666666666,0.65,1,26 -pitcher,0.705,1.0,0.5833333333333333,0.7,1,26 -phone,0.7666666666666667,1.0,0.7999999999999999,0.85,1,26 -stick,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -cereal,0.7633333333333334,1.0,0.7166666666666666,0.8,1,26 -bulb,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -hair,0.63,1.0,0.6166666666666666,0.7166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,0.85,1.0,0.8,0.8800000000000001,2,25 -coca,0.48,1.0,0.4499999999999999,0.6,1,26 -crackers,0.7333333333333333,1.0,0.6499999999999999,0.75,1,26 -plate,0.5916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,24 -calculator,0.5233333333333332,0.75,0.5666666666666667,0.5566666666666666,1,26 -tissues,0.7350000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -juice,0.3983333333333334,0.5,0.6166666666666666,0.53,1,26 -pink,0.9266666666666665,1.0,0.85,0.9,1,25 -lemon,0.755,1.0,0.6666666666666666,0.7666666666666666,1,26 -peach,0.8400000000000001,1.0,0.6833333333333333,0.7833333333333333,1,26 -bowl,0.39333333333333326,0.55,0.4833333333333333,0.4866666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -blue,0.48,1.0,0.4499999999999999,0.6,1,25 -used,0.5733333333333334,1.0,0.4666666666666666,0.6166666666666667,1,23 -energizer,0,0,0,0,1,26 -pear,0.8,1.0,0.8,0.85,1,26 -ball,0.7833333333333333,1.0,0.7999999999999999,0.85,1,25 -notebook,0.74,1.0,0.6666666666666666,0.7666666666666666,1,26 -garlic,0.5566666666666666,1.0,0.4499999999999999,0.6,1,26 -cleaning,0.575,1.0,0.5333333333333333,0.6666666666666667,1,26 -pair,0.9550000000000001,1.0,0.9333333333333332,0.96,2,27 -container,0.7566666666666666,1.0,0.6499999999999999,0.75,1,25 -tomato,0.6966666666666667,0.95,0.6166666666666666,0.7,1,26 -cellphone,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -potato,0.7216666666666667,1.0,0.7166666666666666,0.8,1,25 -light,0.8683333333333334,1.0,0.8333333333333333,0.9,2,25 -green,0.9166666666666667,0.7833333333333333,1.0,0.86,3,23 -bottle,0.8333333333333334,1.0,0.8,0.8800000000000001,2,25 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.6383333333333333 -F1-Score: 0.6843937389770722 -Precision: 0.8950308641975308 -Recall: 0.6103395061728394 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7316666666666667,1.0,0.5666666666666667,0.7,1,25 -yellow,0.9800000000000001,0.95,1.0,0.9666666666666666,6,23 -looks,0.5033333333333332,0.85,0.6166666666666666,0.6333333333333333,1,24 -keyboard,0.4916666666666666,1.0,0.45,0.6,1,26 -glue,0.705,1.0,0.7,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7433333333333334,1.0,0.6,0.7166666666666667,1,26 -flashlight,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -cup,0.22000000000000003,0.5,0.5833333333333333,0.51,1,26 -folded,0.4716666666666667,1.0,0.5166666666666666,0.65,1,26 -jam,0.5800000000000001,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.8983333333333334,0.7916666666666666,1.0,0.8657142857142857,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5933333333333333,1.0,0.5,0.65,1,26 -soccer,0.7483333333333333,1.0,0.6333333333333333,0.75,1,26 -hat,0.8416666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -brown,0.93,1.0,0.9,0.9400000000000001,2,26 -coffee,0.65,1.0,0.6333333333333333,0.7333333333333334,1,26 -handle,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -food,0.4333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,24 -towel,0.63,1.0,0.5666666666666667,0.7,1,26 -chips,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -stapler,0.6133333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -onion,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -bag,0.6100000000000001,1.0,0.5499999999999999,0.6833333333333333,1,26 -sponge,0.6416666666666666,1.0,0.6499999999999999,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.785,1.0,0.6666666666666666,0.7666666666666667,1,25 -special,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -colgate,0.7,1.0,0.6499999999999999,0.75,1,26 -leaf,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -tube,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -cell,0.8816666666666666,1.0,0.75,0.8333333333333333,1,26 -mug,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -yogurt,0.6166666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -plantain,0.7166666666666667,0.95,0.5499999999999999,0.65,1,26 -red,0.6649999999999999,0.5266666666666666,1.0,0.6764285714285714,3,25 -pepper,0.5833333333333334,1.0,0.6333333333333333,0.7333333333333334,1,26 -wheat,0.6466666666666667,1.0,0.55,0.6833333333333333,1,26 -kleenex,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -toothbrush,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -binder,0.6416666666666667,1.0,0.6,0.7166666666666667,1,26 -baseball,0.63,1.0,0.6833333333333333,0.7666666666666666,1,26 -pliers,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -thins,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -package,0.6566666666666666,0.95,0.6,0.6833333333333333,1,26 -k,0.74,1.0,0.6,0.7166666666666666,1,26 -jelly,0.76,1.0,0.7166666666666666,0.8,1,26 -fruit,0.6749999999999999,0.5666666666666667,0.8999999999999998,0.6733333333333333,2,25 -apple,0.6133333333333333,0.95,0.5499999999999999,0.65,1,25 -bell,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -battery,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -jar,0.6466666666666667,0.9,0.6333333333333333,0.6666666666666667,1,26 -bound,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -brush,0.7966666666666666,1.0,0.75,0.8166666666666668,1,26 -scissors,0.7016666666666665,1.0,0.65,0.75,1,26 -lime,0.5916666666666667,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.525,1.0,0.4999999999999999,0.6333333333333333,1,26 -top,0.655,1.0,0.5833333333333333,0.7,1,26 -spiral,0.71,1.0,0.6166666666666666,0.7333333333333334,1,26 -handles,0.95,1.0,0.9333333333333332,0.95,1,25 -camera,0.5183333333333333,1.0,0.4499999999999999,0.6,1,26 -eraser,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.6583333333333333,0.5416666666666666,1.0,0.6880952380952381,5,22 -banana,0.6816666666666666,0.95,0.5666666666666667,0.6666666666666667,1,26 -pitcher,0.58,1.0,0.5166666666666666,0.65,1,26 -phone,0.755,1.0,0.7,0.7833333333333333,1,26 -stick,0.76,1.0,0.6666666666666666,0.7666666666666667,1,25 -cereal,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -bulb,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.6716666666666666,0.95,0.6333333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6733333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -coca,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -crackers,0.48,1.0,0.5166666666666666,0.65,1,26 -plate,0.425,1.0,0.45,0.6,1,25 -calculator,0.445,0.55,0.6166666666666666,0.54,1,26 -tissues,0.7766666666666666,1.0,0.5833333333333333,0.7166666666666667,1,26 -juice,0.76,1.0,0.6166666666666666,0.7333333333333334,1,26 -pink,0.4633333333333334,1.0,0.5499999999999999,0.6666666666666667,1,25 -lemon,0.655,1.0,0.5833333333333333,0.7,1,26 -peach,0.5966666666666666,1.0,0.4499999999999999,0.6,1,26 -bowl,0.6016666666666667,0.5,0.6333333333333333,0.54,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -blue,0.4966666666666667,1.0,0.5,0.6333333333333333,1,25 -used,0.5933333333333333,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.6,1.0,0.5,0.65,1,26 -ball,0.625,1.0,0.6,0.7166666666666667,1,25 -notebook,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -garlic,0.3966666666666666,1.0,0.4499999999999999,0.6,1,26 -cleaning,0.6216666666666667,1.0,0.55,0.6833333333333333,1,26 -pair,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -container,0.6466666666666667,1.0,0.5833333333333333,0.7,1,25 -tomato,0.655,0.6,0.7166666666666666,0.5900000000000001,1,26 -cellphone,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -potato,0.78,1.0,0.7166666666666666,0.8,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -green,0.9433333333333334,0.8833333333333332,1.0,0.9266666666666667,3,24 -bottle,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.636435185185185 -F1-Score: 0.6791997354497353 -Precision: 0.8880555555555557 -Recall: 0.6086419753086418 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5966666666666666,1.0,0.5833333333333333,0.7,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.5716666666666667,0.95,0.5833333333333333,0.6666666666666667,1,24 -keyboard,0.805,1.0,0.6666666666666666,0.7666666666666666,1,26 -glue,0.475,1.0,0.5499999999999999,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.5583333333333333,1.0,0.5833333333333333,0.7,1,26 -cup,0.29833333333333334,0.65,0.5499999999999999,0.52,1,26 -folded,0.6266666666666667,1.0,0.55,0.6833333333333333,1,26 -jam,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -black,0.89,0.75,1.0,0.8400000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5499999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -soccer,0.4683333333333334,1.0,0.4499999999999999,0.6,1,26 -hat,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -brown,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -coffee,0.655,1.0,0.65,0.75,1,25 -handle,0.8016666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -food,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -towel,0.7083333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -chips,0.65,1.0,0.6833333333333333,0.7666666666666666,1,26 -stapler,0.755,1.0,0.6833333333333333,0.7833333333333333,1,26 -onion,0.8233333333333335,1.0,0.7166666666666666,0.8,1,26 -bag,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -sponge,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.5399999999999999,1.0,0.41666666666666663,0.5833333333333333,1,25 -special,0.6333333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -colgate,0.7166666666666666,1.0,0.7166666666666666,0.8,1,26 -leaf,0.7216666666666667,1.0,0.65,0.75,1,26 -tube,0.7816666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -cell,0.74,1.0,0.6166666666666666,0.7333333333333333,1,26 -mug,0.6083333333333333,1.0,0.4833333333333333,0.6333333333333333,1,25 -yogurt,0.7266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.4666666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -red,0.9666666666666668,0.9333333333333332,1.0,0.96,3,26 -pepper,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -wheat,0.4999999999999999,1.0,0.4666666666666666,0.6,1,26 -kleenex,0.6733333333333333,1.0,0.5666666666666667,0.7,1,26 -toothbrush,0.75,1.0,0.7499999999999999,0.8166666666666667,1,26 -binder,0.7233333333333334,1.0,0.6499999999999999,0.75,1,26 -baseball,0.5566666666666666,1.0,0.5166666666666666,0.65,1,26 -pliers,0.4666666666666666,1.0,0.4166666666666667,0.5833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6483333333333333,1.0,0.55,0.6833333333333333,1,26 -thins,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -package,0.655,1.0,0.5999999999999999,0.7166666666666666,1,26 -k,0.605,1.0,0.5833333333333333,0.7,1,26 -jelly,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.865,0.7833333333333333,0.9666666666666666,0.8400000000000001,2,26 -apple,0.575,1.0,0.5166666666666666,0.65,1,25 -bell,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -battery,0.78,1.0,0.6333333333333333,0.75,1,26 -jar,0.4916666666666666,1.0,0.5,0.6333333333333333,1,26 -bound,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.8116666666666668,1.0,0.6333333333333333,0.75,1,26 -brush,0.75,1.0,0.6666666666666666,0.7666666666666667,1,26 -scissors,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -lime,0.5599999999999999,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.5933333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -top,0.8300000000000001,1.0,0.6833333333333333,0.7833333333333333,1,26 -spiral,0.7816666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -handles,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,25 -camera,0.755,1.0,0.6833333333333333,0.7833333333333334,1,26 -eraser,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.5349999999999999,0.36666666666666664,1.0,0.5223809523809524,5,21 -banana,0.3466666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -pitcher,0.5666666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -phone,0.73,1.0,0.5666666666666667,0.7,1,26 -stick,0.36666666666666664,1.0,0.33333333333333337,0.5,1,25 -cereal,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -bulb,0.8716666666666667,1.0,0.8333333333333333,0.9,2,26 -hair,0.5383333333333333,1.0,0.4833333333333332,0.6333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6183333333333334,1.0,0.5333333333333332,0.6666666666666666,1,26 -can,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,25 -coca,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -crackers,0.71,1.0,0.5666666666666667,0.7,1,26 -plate,0.6633333333333333,1.0,0.5333333333333332,0.6666666666666666,1,25 -calculator,0.6066666666666667,0.55,0.6833333333333333,0.5666666666666667,1,26 -tissues,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.15833333333333335,0.5,0.5,0.47333333333333344,1,26 -pink,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -lemon,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -peach,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -bowl,0.335,0.6,0.4999999999999999,0.5066666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -blue,0.7466666666666667,1.0,0.6333333333333333,0.7333333333333334,1,25 -used,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.65,1.0,0.6,0.7166666666666667,1,26 -ball,0.8,1.0,0.7499999999999999,0.8166666666666667,1,25 -notebook,0.48,1.0,0.4666666666666666,0.6166666666666667,1,26 -garlic,0.5733333333333334,1.0,0.4833333333333333,0.6333333333333334,1,26 -cleaning,0.6683333333333333,1.0,0.5833333333333333,0.7,1,26 -pair,0.9349999999999999,1.0,0.9,0.9400000000000001,2,26 -container,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -tomato,0.6866666666666666,0.8,0.6833333333333332,0.65,1,26 -cellphone,0.525,1.0,0.4999999999999999,0.6333333333333333,1,26 -potato,0.5383333333333333,1.0,0.4666666666666666,0.6166666666666666,1,25 -light,0.9099999999999999,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,0.9466666666666667,0.85,1.0,0.9,3,24 -bottle,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.6337499999999998 -F1-Score: 0.6771825396825397 -Precision: 0.8956790123456789 -Recall: 0.5989197530864196 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.725,1.0,0.75,0.8166666666666667,1,25 -yellow,0.9800000000000001,0.95,1.0,0.9666666666666666,6,24 -looks,0.7416666666666666,0.95,0.7166666666666666,0.7666666666666667,1,24 -keyboard,0.725,1.0,0.6666666666666666,0.7666666666666666,1,26 -glue,0.5583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.3566666666666667,0.5,0.5166666666666666,0.4833333333333334,1,26 -folded,0.7083333333333333,1.0,0.65,0.75,1,26 -jam,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.885,0.7416666666666666,1.0,0.8323809523809524,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -soccer,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -hat,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -brown,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -coffee,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -handle,0.5416666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -food,0.5716666666666667,1.0,0.5166666666666666,0.65,1,25 -towel,0.6583333333333333,1.0,0.6499999999999999,0.75,1,26 -chips,0.6849999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -stapler,0.63,1.0,0.6,0.7166666666666667,1,26 -onion,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -bag,0.6466666666666666,1.0,0.6499999999999999,0.75,1,26 -sponge,0.6,1.0,0.5333333333333333,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6466666666666667,1.0,0.6499999999999999,0.75,1,25 -special,0.7333333333333333,1.0,0.5333333333333333,0.6833333333333333,1,26 -colgate,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -leaf,0.8,1.0,0.7166666666666666,0.8,1,26 -tube,0.7116666666666667,1.0,0.5666666666666667,0.7,1,26 -cell,0.31833333333333336,0.55,0.5666666666666667,0.51,1,26 -mug,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -yogurt,0.61,1.0,0.5833333333333333,0.7,1,26 -plantain,0.6516666666666666,0.85,0.7,0.6833333333333333,1,26 -red,0.9066666666666666,0.85,1.0,0.8966666666666665,3,24 -pepper,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -wheat,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -kleenex,0.5666666666666667,1.0,0.6,0.7166666666666666,1,26 -toothbrush,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -binder,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -baseball,0.7483333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -pliers,0.6933333333333334,1.0,0.65,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -thins,0.575,1.0,0.5833333333333333,0.7,1,26 -package,0.48,0.9,0.5166666666666666,0.5833333333333333,1,26 -k,0.8583333333333332,1.0,0.7833333333333333,0.85,1,26 -jelly,0.7416666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -fruit,0.7016666666666667,0.55,0.9333333333333332,0.66,2,26 -apple,0.48,0.9,0.5499999999999999,0.6,1,25 -bell,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -battery,0.7866666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -jar,0.685,0.95,0.5999999999999999,0.6833333333333333,1,26 -bound,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -lettuce,0.605,1.0,0.5833333333333333,0.7,1,26 -brush,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -scissors,0.825,1.0,0.7333333333333333,0.8166666666666668,1,26 -lime,0.575,1.0,0.5333333333333333,0.6666666666666667,1,25 -toothpaste,0.6383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -top,0.8283333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -spiral,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.6466666666666666,1.0,0.5333333333333333,0.6666666666666666,1,25 -camera,0.5466666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -eraser,0.6383333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.7816666666666666,0.6583333333333333,1.0,0.7885714285714285,5,21 -banana,0.7116666666666667,0.8,0.7333333333333333,0.6833333333333333,1,26 -pitcher,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -phone,0.40499999999999997,0.55,0.5333333333333333,0.5033333333333333,1,26 -stick,0.675,1.0,0.5833333333333333,0.7,1,25 -cereal,0.7483333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -bulb,0.9016666666666666,1.0,0.8666666666666668,0.9200000000000002,2,26 -hair,0.5583333333333333,1.0,0.5166666666666666,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -can,0.93,1.0,0.9,0.9400000000000001,2,25 -coca,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -crackers,0.675,1.0,0.6333333333333332,0.7333333333333333,1,26 -plate,0.62,1.0,0.5999999999999999,0.7166666666666666,1,25 -calculator,0.7033333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -tissues,0.6950000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -juice,0.7133333333333333,1.0,0.65,0.75,1,26 -pink,0.615,1.0,0.5499999999999999,0.6833333333333333,1,25 -lemon,0.5083333333333333,1.0,0.5166666666666666,0.65,1,26 -peach,0.6966666666666667,1.0,0.65,0.75,1,26 -bowl,0.24000000000000005,0.5,0.6833333333333333,0.5433333333333334,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6316666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -blue,0.4583333333333333,1.0,0.5166666666666666,0.65,1,25 -used,0.73,1.0,0.6333333333333333,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.6966666666666667,1.0,0.7,0.7833333333333333,1,26 -ball,0.76,1.0,0.6166666666666666,0.7333333333333333,1,25 -notebook,0.5933333333333334,1.0,0.5333333333333333,0.6666666666666666,1,26 -garlic,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -cleaning,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -pair,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -container,0.635,1.0,0.5,0.65,1,25 -tomato,0.5766666666666667,0.8,0.6833333333333333,0.6333333333333333,1,26 -cellphone,0.4466666666666666,0.5,0.5666666666666667,0.5133333333333334,1,26 -potato,0.4883333333333333,1.0,0.4499999999999999,0.6,1,25 -light,0.9099999999999999,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,0.9233333333333335,0.8583333333333332,1.0,0.9123809523809523,3,24 -bottle,0.8550000000000001,1.0,0.8333333333333333,0.9,2,25 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.630648148148148 -F1-Score: 0.679074074074074 -Precision: 0.8829475308641975 -Recall: 0.6103395061728394 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6966666666666665,1.0,0.6833333333333333,0.7666666666666666,1,25 -yellow,0.9500000000000002,0.85,1.0,0.8999999999999998,6,24 -looks,0.805,1.0,0.6666666666666666,0.7666666666666666,1,24 -keyboard,0.7633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.4583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.5183333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -flashlight,0.525,1.0,0.4999999999999999,0.6333333333333333,1,26 -cup,0.6599999999999999,0.5,0.8,0.6,1,26 -folded,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -jam,0.6249999999999999,1.0,0.5166666666666666,0.65,1,26 -black,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -soccer,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -hat,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,24 -coffee,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -handle,0.74,1.0,0.6166666666666666,0.7333333333333333,1,26 -food,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666668,1,24 -towel,0.6216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.61,1.0,0.5333333333333333,0.6666666666666667,1,26 -stapler,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.5466666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -bag,0.65,1.0,0.6,0.7166666666666667,1,26 -sponge,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,25 -special,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -colgate,0.4166666666666667,1.0,0.38333333333333336,0.55,1,26 -leaf,0.6183333333333334,1.0,0.5833333333333333,0.7,1,26 -tube,0.5666666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.4966666666666667,0.7,0.5666666666666667,0.5466666666666666,1,26 -mug,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -yogurt,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -plantain,0.7083333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -red,0.8966666666666665,0.7833333333333333,1.0,0.8466666666666665,3,24 -pepper,0.8583333333333332,1.0,0.7833333333333333,0.85,1,26 -wheat,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -kleenex,0.7166666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -toothbrush,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -binder,0.7416666666666666,1.0,0.65,0.75,1,26 -baseball,0.6583333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -pliers,0.6983333333333333,1.0,0.5666666666666667,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.46333333333333326,1.0,0.4666666666666666,0.6166666666666667,1,26 -thins,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -package,0.7516666666666666,1.0,0.6499999999999999,0.75,1,26 -k,0.8266666666666665,1.0,0.7166666666666666,0.8,1,26 -jelly,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -fruit,0.7466666666666666,0.5833333333333334,0.9333333333333332,0.7066666666666667,2,25 -apple,0.7150000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -bell,0.7133333333333333,1.0,0.65,0.75,1,26 -battery,0.6916666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -jar,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bound,0.4583333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -lettuce,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -brush,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -scissors,0.8833333333333332,1.0,0.8333333333333333,0.8833333333333332,1,26 -lime,0.5683333333333334,1.0,0.5333333333333333,0.6666666666666666,1,25 -toothpaste,0.73,1.0,0.65,0.75,1,26 -top,0.6883333333333334,1.0,0.5666666666666667,0.7,1,26 -spiral,0.6966666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -handles,0.6016666666666667,1.0,0.5166666666666666,0.65,1,25 -camera,0.4916666666666667,1.0,0.4499999999999999,0.6,1,26 -eraser,0.6583333333333334,1.0,0.65,0.75,1,26 -creamer,0,0,0,0,1,26 -white,0.79,0.575,1.0,0.7257142857142856,5,20 -banana,0.7249999999999999,1.0,0.6499999999999999,0.75,1,26 -pitcher,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -phone,0.6416666666666666,0.65,0.7333333333333333,0.6166666666666667,1,26 -stick,0.63,1.0,0.5166666666666666,0.65,1,25 -cereal,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -bulb,0.9099999999999999,1.0,0.8666666666666666,0.9199999999999999,2,26 -hair,0.6366666666666666,1.0,0.4833333333333333,0.6333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6716666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -can,0.8916666666666666,1.0,0.8666666666666668,0.9200000000000002,2,24 -coca,0.6266666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -crackers,0.58,1.0,0.4666666666666666,0.6166666666666666,1,26 -plate,0.6816666666666666,1.0,0.5166666666666666,0.6666666666666667,1,25 -calculator,0.6833333333333333,1.0,0.7333333333333333,0.8,1,26 -tissues,0.8516666666666666,1.0,0.7,0.8,1,26 -juice,0.4666666666666667,0.5,0.7,0.5533333333333333,1,26 -pink,0.6166666666666666,1.0,0.6,0.7166666666666667,1,25 -lemon,0.655,1.0,0.5833333333333333,0.7,1,26 -peach,0.8083333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -bowl,0.4066666666666666,0.55,0.5333333333333333,0.5033333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5133333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -blue,0.7183333333333334,1.0,0.5833333333333333,0.7,1,25 -used,0.6683333333333332,1.0,0.55,0.6833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6266666666666667,1.0,0.4333333333333333,0.6,1,26 -ball,0.705,1.0,0.65,0.75,1,25 -notebook,0.605,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.7583333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -pair,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,27 -container,0.75,1.0,0.6333333333333333,0.75,1,25 -tomato,0.5766666666666667,1.0,0.45,0.6166666666666667,1,26 -cellphone,0.4883333333333333,0.8,0.5833333333333333,0.5833333333333333,1,26 -potato,0.6383333333333333,1.0,0.5833333333333333,0.7,1,25 -light,0.9333333333333332,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,25 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.6424228395061727 -F1-Score: 0.6800837742504409 -Precision: 0.8926697530864197 -Recall: 0.6061728395061727 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7433333333333333,1.0,0.5666666666666667,0.7,1,25 -yellow,0.7516666666666667,0.6416666666666667,1.0,0.7719047619047619,6,25 -looks,0.6633333333333333,0.95,0.7,0.75,1,24 -keyboard,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -glue,0.5833333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.5966666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -flashlight,0.79,1.0,0.65,0.75,1,26 -cup,0.23833333333333334,0.5,0.4499999999999999,0.4566666666666667,1,26 -folded,0.655,1.0,0.5333333333333333,0.6666666666666667,1,26 -jam,0.5666666666666667,1.0,0.5833333333333333,0.7,1,26 -black,1.0,1.0,1.0,1.0,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -soccer,0.4966666666666667,1.0,0.4833333333333332,0.6166666666666666,1,26 -hat,0.6966666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -brown,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -coffee,0.6933333333333334,1.0,0.5166666666666666,0.6666666666666667,1,26 -handle,0.4883333333333334,1.0,0.5166666666666666,0.65,1,26 -food,0.6849999999999999,1.0,0.6499999999999999,0.75,1,25 -towel,0.7166666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -chips,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -stapler,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -onion,0.6916666666666667,1.0,0.5833333333333333,0.7,1,26 -bag,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -sponge,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.4716666666666667,1.0,0.5166666666666666,0.65,1,25 -special,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -colgate,0.53,1.0,0.5,0.6333333333333333,1,26 -leaf,0.5966666666666667,1.0,0.55,0.6833333333333333,1,26 -tube,0.5933333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -cell,0.7183333333333334,0.5,0.8833333333333334,0.6233333333333333,1,26 -mug,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -yogurt,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -red,0.9333333333333333,0.8666666666666666,1.0,0.9100000000000001,3,25 -pepper,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -wheat,0.5666666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -kleenex,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -toothbrush,0.7266666666666667,1.0,0.55,0.6833333333333333,1,25 -binder,0.4916666666666666,1.0,0.5166666666666666,0.65,1,26 -baseball,0.7166666666666667,1.0,0.65,0.75,1,26 -pliers,0.5133333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -thins,0.7183333333333334,1.0,0.6499999999999999,0.75,1,26 -package,0.5816666666666667,1.0,0.4999999999999999,0.65,1,26 -k,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -jelly,0.6483333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -fruit,0.7233333333333333,0.6833333333333333,0.8666666666666666,0.7166666666666666,2,25 -apple,0.6433333333333333,0.95,0.5666666666666667,0.65,1,26 -bell,0.8416666666666666,1.0,0.75,0.8333333333333334,1,26 -battery,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -jar,0.6766666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -bound,0.7416666666666666,1.0,0.65,0.75,1,26 -lettuce,0.5733333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -brush,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -scissors,0.8483333333333334,1.0,0.7333333333333333,0.8166666666666668,1,26 -lime,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333334,1,25 -toothpaste,0.7,1.0,0.6499999999999999,0.75,1,26 -top,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -spiral,0.8566666666666667,1.0,0.7,0.8,1,26 -handles,0.655,1.0,0.5833333333333333,0.7,1,25 -camera,0.4833333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -eraser,0.6133333333333333,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,0.6966666666666667,0.4916666666666667,1.0,0.6423809523809523,5,22 -banana,0.6900000000000001,1.0,0.5666666666666667,0.7,1,26 -pitcher,0.7833333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -phone,0.5416666666666666,0.65,0.7,0.5833333333333334,1,26 -stick,0.6883333333333332,1.0,0.6499999999999999,0.75,1,25 -cereal,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -hair,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5083333333333333,1.0,0.4499999999999999,0.6,1,26 -can,0.9083333333333332,1.0,0.9,0.9400000000000001,2,24 -coca,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666666,1,26 -crackers,0.6016666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -plate,0.48,1.0,0.4999999999999999,0.6333333333333333,1,24 -calculator,0.505,1.0,0.5,0.6333333333333333,1,26 -tissues,0.675,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -pink,0.8883333333333333,1.0,0.8333333333333333,0.8833333333333332,1,25 -lemon,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -peach,0.31,0.5,0.5333333333333333,0.49333333333333335,1,26 -bowl,0.5666666666666667,0.55,0.7333333333333333,0.5833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -blue,0.835,1.0,0.7166666666666666,0.8,1,25 -used,0.6683333333333332,1.0,0.5999999999999999,0.7166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.6300000000000001,1.0,0.6,0.7166666666666667,1,26 -ball,0.7416666666666666,1.0,0.7,0.7833333333333333,1,25 -notebook,0.705,1.0,0.5833333333333333,0.7166666666666667,1,26 -garlic,0.7466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.375,1.0,0.4499999999999999,0.6,1,26 -pair,0.9083333333333332,1.0,0.9,0.9400000000000001,2,27 -container,0.6916666666666667,1.0,0.65,0.75,1,25 -tomato,0.6516666666666666,0.8,0.6666666666666666,0.65,1,26 -cellphone,0.5666666666666667,0.75,0.5499999999999999,0.5733333333333333,1,26 -potato,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -light,0.8850000000000001,1.0,0.8333333333333333,0.9,2,26 -green,0.9666666666666668,0.9,1.0,0.9333333333333332,3,24 -bottle,0.915,1.0,0.8666666666666666,0.9199999999999999,2,25 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.6320987654320989 -F1-Score: 0.6711816578483246 -Precision: 0.8864197530864198 -Recall: 0.5973765432098765 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8099999999999999,1.0,0.7166666666666666,0.8,1,25 -yellow,0.9100000000000001,0.7833333333333333,1.0,0.86,6,24 -looks,0.4033333333333333,0.9,0.4999999999999999,0.6,1,24 -keyboard,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -glue,0.7933333333333333,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.775,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.48,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.6766666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -jam,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -black,0.8166666666666668,0.6416666666666666,1.0,0.7723809523809524,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -soccer,0.6583333333333334,1.0,0.6499999999999999,0.75,1,26 -hat,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -brown,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,24 -coffee,0.7183333333333334,1.0,0.6499999999999999,0.75,1,26 -handle,0.5800000000000001,1.0,0.6333333333333333,0.7333333333333333,1,26 -food,0.7583333333333333,1.0,0.7166666666666666,0.8,1,25 -towel,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -chips,0.6266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -stapler,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -onion,0.8850000000000001,1.0,0.7833333333333333,0.85,1,26 -bag,0.5583333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -sponge,0.6300000000000001,1.0,0.6,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7083333333333333,1.0,0.65,0.75,1,26 -special,0.4833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -colgate,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -leaf,0.525,1.0,0.5166666666666666,0.65,1,26 -tube,0.635,1.0,0.6,0.7166666666666667,1,26 -cell,0.6766666666666666,1.0,0.6,0.7166666666666667,1,26 -mug,0.805,1.0,0.6666666666666666,0.7666666666666666,1,26 -yogurt,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -plantain,0.61,1.0,0.4833333333333333,0.6333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.6833333333333333,1.0,0.6,0.7166666666666667,1,26 -wheat,0.89,1.0,0.75,0.8333333333333333,1,26 -kleenex,0.75,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -binder,0.4666666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -baseball,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -pliers,0.3583333333333333,1.0,0.4333333333333333,0.5833333333333334,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.705,1.0,0.5999999999999999,0.7166666666666667,1,26 -thins,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -package,0.53,0.9,0.5666666666666667,0.6166666666666667,1,26 -k,0.755,1.0,0.7166666666666666,0.8,1,26 -jelly,0.6416666666666666,1.0,0.6499999999999999,0.75,1,26 -fruit,0.66,0.5833333333333333,0.8999999999999998,0.6566666666666666,2,26 -apple,0.61,0.8,0.6499999999999999,0.6333333333333333,1,25 -bell,0.7716666666666667,1.0,0.6333333333333333,0.75,1,26 -battery,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -jar,0.6916666666666667,0.9,0.7,0.7166666666666666,1,26 -bound,0.63,1.0,0.6,0.7166666666666666,1,26 -lettuce,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -brush,0.5333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -scissors,0.7849999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -lime,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,25 -toothpaste,0.7633333333333333,1.0,0.75,0.8166666666666667,1,26 -top,0.6383333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -spiral,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -handles,0.4333333333333333,1.0,0.5333333333333332,0.65,1,25 -camera,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -eraser,0.5266666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.79,0.6,1.0,0.7447619047619047,5,21 -banana,0.875,1.0,0.8333333333333334,0.8833333333333332,1,26 -pitcher,0.5933333333333334,1.0,0.4666666666666666,0.6166666666666666,1,26 -phone,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -stick,0.755,1.0,0.6833333333333333,0.7833333333333333,1,25 -cereal,0.5166666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -hair,0.5383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7133333333333333,1.0,0.65,0.75,1,26 -can,0.85,1.0,0.8333333333333333,0.9,2,25 -coca,0.7433333333333334,1.0,0.6,0.7166666666666666,1,26 -crackers,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -plate,0.775,1.0,0.7,0.7833333333333333,1,25 -calculator,0.56,0.6,0.7499999999999999,0.59,1,26 -tissues,0.6499999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -juice,0.7,1.0,0.6499999999999999,0.75,1,26 -pink,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -lemon,0.5966666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -peach,0.6466666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -bowl,0.4216666666666667,0.5,0.6166666666666666,0.53,1,26 -camouflage,0,0,0,0,1,26 -digital,0.835,1.0,0.7166666666666666,0.8,1,26 -blue,0.8683333333333332,1.0,0.75,0.8333333333333333,1,25 -used,0.7666666666666666,1.0,0.8166666666666667,0.8666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.6166666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.58,1.0,0.6333333333333332,0.7333333333333333,1,26 -garlic,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -cleaning,0.7666666666666667,1.0,0.7166666666666666,0.8,1,26 -pair,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -container,0.73,1.0,0.6166666666666666,0.7333333333333333,1,25 -tomato,0.52,0.85,0.5499999999999999,0.6166666666666667,1,26 -cellphone,0.7216666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -potato,0.6,1.0,0.5833333333333333,0.7,1,25 -light,0.8766666666666666,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,25 -bottle,0.8766666666666666,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.6428086419753086 -F1-Score: 0.6912698412698413 -Precision: 0.8940586419753087 -Recall: 0.6209876543209875 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.63,1.0,0.5833333333333333,0.7,1,24 -yellow,1.0,1.0,1.0,1.0,6,26 -looks,0.7966666666666666,0.9,0.8166666666666667,0.8,1,24 -keyboard,0.64,1.0,0.5,0.65,1,26 -glue,0.5966666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.755,1.0,0.65,0.75,1,26 -flashlight,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.2033333333333333,0.45,0.5833333333333333,0.4600000000000001,1,26 -folded,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -jam,0.7783333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -black,0.9100000000000001,0.7666666666666666,1.0,0.8466666666666667,6,23 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.6683333333333333,1.0,0.6,0.7166666666666667,1,26 -soccer,0.65,1.0,0.65,0.75,1,26 -hat,0.775,1.0,0.7166666666666666,0.8,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -coffee,0.585,1.0,0.5166666666666666,0.65,1,25 -handle,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -food,0.7166666666666666,1.0,0.6499999999999999,0.75,1,24 -towel,0.8549999999999999,1.0,0.7833333333333333,0.85,1,26 -chips,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -onion,0.76,0.85,0.7166666666666666,0.7166666666666667,1,26 -bag,0.65,1.0,0.6166666666666666,0.7166666666666666,1,26 -sponge,0.8566666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7933333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -special,0.5083333333333333,1.0,0.5166666666666666,0.65,1,26 -colgate,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -leaf,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -tube,0.71,1.0,0.5833333333333333,0.7,1,26 -cell,0.73,1.0,0.6333333333333333,0.7333333333333333,1,26 -mug,0.4716666666666667,1.0,0.4666666666666666,0.6166666666666667,1,25 -yogurt,0.6383333333333333,1.0,0.5166666666666666,0.65,1,26 -plantain,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -red,0.6983333333333334,0.6199999999999999,1.0,0.7390476190476191,3,25 -pepper,0.45166666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -wheat,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -kleenex,0.75,1.0,0.75,0.8166666666666667,1,26 -toothbrush,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -binder,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -baseball,0.8,1.0,0.65,0.7666666666666666,1,26 -pliers,0.65,1.0,0.6833333333333333,0.7666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7916666666666667,1.0,0.7166666666666666,0.8,1,26 -thins,0.8633333333333333,1.0,0.75,0.8333333333333334,1,26 -package,0.76,1.0,0.7166666666666666,0.8,1,26 -k,0.6799999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.6583333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -fruit,0.7583333333333333,0.6,0.9666666666666666,0.7333333333333334,2,25 -apple,0.6416666666666666,1.0,0.55,0.6833333333333333,1,25 -bell,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -battery,0.8333333333333333,1.0,0.8166666666666667,0.8666666666666666,1,26 -jar,0.8116666666666668,1.0,0.6333333333333333,0.75,1,26 -bound,0.6166666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -lettuce,0.65,1.0,0.5333333333333333,0.6666666666666667,1,26 -brush,0.45,1.0,0.45,0.6,1,26 -scissors,0.7883333333333333,1.0,0.6333333333333333,0.75,1,26 -lime,0.6849999999999999,1.0,0.5333333333333333,0.6666666666666666,1,25 -toothpaste,0.8166666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -top,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -spiral,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -handles,0.6683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -camera,0.5583333333333333,1.0,0.5833333333333333,0.7,1,26 -eraser,0.7116666666666667,1.0,0.5333333333333333,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.8033333333333333,0.6833333333333333,1.0,0.8076190476190476,5,21 -banana,0.5583333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -pitcher,0.675,1.0,0.6666666666666666,0.7666666666666666,1,26 -phone,0.8716666666666667,1.0,0.75,0.8333333333333333,1,26 -stick,0.8483333333333334,1.0,0.7,0.8,1,25 -cereal,0.7433333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -bulb,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -hair,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333334,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.78,1.0,0.6333333333333333,0.75,1,26 -can,0.9016666666666666,1.0,0.8666666666666668,0.9200000000000002,2,25 -coca,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.535,1.0,0.4833333333333333,0.6333333333333333,1,26 -plate,0.7583333333333333,1.0,0.75,0.8166666666666667,1,25 -calculator,0.735,0.95,0.6666666666666666,0.7333333333333333,1,26 -tissues,0.655,1.0,0.5666666666666667,0.7,1,26 -juice,0.585,1.0,0.5166666666666666,0.65,1,26 -pink,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333333,1,25 -lemon,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -peach,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -bowl,0.5066666666666666,0.5,0.6833333333333333,0.5566666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.53,1.0,0.5166666666666666,0.65,1,26 -blue,0.42833333333333334,0.9,0.4666666666666666,0.5833333333333333,1,25 -used,0.5966666666666666,1.0,0.5833333333333333,0.7,1,23 -energizer,0,0,0,0,1,26 -pear,0.635,1.0,0.5999999999999999,0.7166666666666666,1,26 -ball,0.7883333333333333,1.0,0.7166666666666666,0.8,1,25 -notebook,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.6666666666666667,0.8,0.5999999999999999,0.6166666666666666,1,26 -cleaning,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -pair,0.8800000000000001,1.0,0.8666666666666666,0.9199999999999999,2,27 -container,0.7133333333333334,1.0,0.5333333333333333,0.6833333333333333,1,26 -tomato,0.5766666666666667,0.6,0.6499999999999999,0.5633333333333334,1,26 -cellphone,0.7016666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -potato,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,25 -light,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,27 -green,0.8816666666666666,0.725,1.0,0.819047619047619,3,23 -bottle,0.915,1.0,0.8666666666666668,0.9200000000000002,2,26 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.6602314814814814 -F1-Score: 0.6933862433862434 -Precision: 0.8920833333333333 -Recall: 0.6229938271604938 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.675,1.0,0.6,0.7166666666666667,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.63,0.9,0.5666666666666667,0.6333333333333333,1,24 -keyboard,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -glue,0.5399999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -flashlight,0.7133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.20999999999999996,0.5,0.4333333333333333,0.45999999999999996,1,26 -folded,0.7266666666666667,1.0,0.65,0.75,1,26 -jam,0.7666666666666666,1.0,0.75,0.8166666666666667,1,26 -black,0.95,0.8833333333333332,1.0,0.9266666666666665,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.5516666666666666,1.0,0.5166666666666666,0.65,1,26 -soccer,0.8966666666666667,1.0,0.8333333333333334,0.8833333333333332,1,26 -hat,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -brown,0.875,1.0,0.8666666666666668,0.9200000000000002,2,24 -coffee,0.6733333333333333,1.0,0.5833333333333333,0.7,1,26 -handle,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -food,0.7466666666666667,1.0,0.65,0.75,1,24 -towel,0.505,1.0,0.5166666666666666,0.65,1,26 -chips,0.605,1.0,0.5833333333333333,0.7,1,26 -stapler,0.74,1.0,0.5999999999999999,0.7166666666666667,1,26 -onion,0.45999999999999996,1.0,0.4999999999999999,0.6333333333333333,1,26 -bag,0.5916666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -sponge,0.6216666666666666,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.7849999999999999,1.0,0.6333333333333333,0.75,1,25 -special,0.49333333333333335,1.0,0.4833333333333333,0.6333333333333334,1,26 -colgate,0.8133333333333332,1.0,0.7833333333333333,0.85,1,26 -leaf,0.705,1.0,0.6,0.7166666666666667,1,26 -tube,0.58,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -mug,0.655,1.0,0.5833333333333333,0.7,1,26 -yogurt,0.5599999999999999,1.0,0.4833333333333332,0.6333333333333333,1,26 -plantain,0.6399999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -red,0.7466666666666667,0.6083333333333333,1.0,0.7238095238095238,3,25 -pepper,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -wheat,0.72,1.0,0.6666666666666666,0.7666666666666667,1,26 -kleenex,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -toothbrush,0.54,1.0,0.4333333333333333,0.6,1,26 -binder,0.62,1.0,0.4833333333333333,0.6333333333333333,1,26 -baseball,0.5333333333333334,1.0,0.6166666666666666,0.7166666666666667,1,26 -pliers,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.4,1.0,0.4333333333333334,0.5833333333333333,1,26 -thins,0.5133333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -package,0.85,1.0,0.7833333333333333,0.85,1,26 -k,0.625,1.0,0.6,0.7166666666666666,1,26 -jelly,0.8466666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -fruit,0.7400000000000001,0.6166666666666666,0.9333333333333332,0.7166666666666667,2,26 -apple,0.7316666666666667,0.8,0.7166666666666666,0.6666666666666667,1,25 -bell,0.4383333333333333,1.0,0.5,0.6333333333333333,1,26 -battery,0.5666666666666667,1.0,0.5999999999999999,0.7,1,26 -jar,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.7683333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -lettuce,0.78,1.0,0.7166666666666666,0.8,1,26 -brush,0.74,1.0,0.6666666666666666,0.7666666666666667,1,26 -scissors,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -lime,0.5833333333333333,1.0,0.5,0.65,1,25 -toothpaste,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -top,0.76,1.0,0.7666666666666666,0.8333333333333333,1,26 -spiral,0.8166666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -handles,0.7183333333333333,1.0,0.6499999999999999,0.75,1,25 -camera,0.76,1.0,0.7,0.7833333333333333,1,26 -eraser,0.5216666666666667,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,0.7666666666666667,0.5916666666666667,1.0,0.7304761904761905,5,21 -banana,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -pitcher,0.7100000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -phone,0.46333333333333326,1.0,0.4666666666666666,0.6166666666666667,1,26 -stick,0.7133333333333333,1.0,0.7,0.7833333333333333,1,25 -cereal,0.4683333333333334,1.0,0.4499999999999999,0.6,1,26 -bulb,0.9099999999999999,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.7133333333333333,1.0,0.6499999999999999,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7166666666666666,1.0,0.7166666666666666,0.8,1,26 -can,0.9016666666666666,1.0,0.8666666666666668,0.9200000000000002,2,25 -coca,0.6083333333333333,1.0,0.5166666666666666,0.65,1,26 -crackers,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -plate,0.6716666666666666,1.0,0.6499999999999999,0.75,1,25 -calculator,0.7083333333333333,0.8,0.6666666666666666,0.6666666666666666,1,26 -tissues,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -juice,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -pink,0.6833333333333333,1.0,0.5166666666666666,0.6666666666666667,1,25 -lemon,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -peach,0.725,1.0,0.75,0.8166666666666667,1,26 -bowl,0.3783333333333333,0.5,0.6,0.52,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7916666666666666,1.0,0.7166666666666666,0.8,1,26 -blue,0.6266666666666667,1.0,0.5166666666666666,0.65,1,25 -used,0.86,1.0,0.7333333333333333,0.8166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.71,1.0,0.5999999999999999,0.7166666666666666,1,26 -ball,0.5633333333333332,1.0,0.5166666666666666,0.65,1,25 -notebook,0.6983333333333334,1.0,0.5666666666666667,0.7,1,26 -garlic,0.7083333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -cleaning,0.755,1.0,0.7166666666666666,0.8,1,26 -pair,0.9066666666666666,1.0,0.8666666666666668,0.9200000000000002,2,27 -container,0.73,1.0,0.6166666666666666,0.7333333333333333,1,25 -tomato,0.5766666666666667,0.7,0.6499999999999999,0.5900000000000001,1,26 -cellphone,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -potato,0.58,1.0,0.5499999999999999,0.6666666666666666,1,25 -light,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -green,0.9633333333333333,0.9,1.0,0.9333333333333332,3,24 -bottle,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.6330246913580247 -F1-Score: 0.6812742504409172 -Precision: 0.8962962962962964 -Recall: 0.6049382716049381 diff --git a/Validation/UW_raw_75_object_0.15000000000000002.csv b/Validation/UW_raw_75_object_0.15000000000000002.csv deleted file mode 100644 index a91957d..0000000 --- a/Validation/UW_raw_75_object_0.15000000000000002.csv +++ /dev/null @@ -1,2875 +0,0 @@ -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.55,1.0,0.5666666666666667,0.6833333333333333,1,25 -yellow,0.93,0.85,1.0,0.9066666666666666,6,24 -looks,0.5416666666666666,0.9,0.6166666666666666,0.65,1,24 -keyboard,0.7166666666666666,1.0,0.6,0.7166666666666667,1,26 -glue,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -flashlight,0.6633333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -cup,0.27,0.5,0.5833333333333333,0.51,1,26 -folded,0.69,1.0,0.5499999999999999,0.6833333333333333,1,26 -jam,0.6266666666666667,1.0,0.4999999999999999,0.65,1,26 -black,0.93,0.8,1.0,0.8666666666666666,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6666666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -soccer,0.565,1.0,0.4833333333333333,0.6333333333333333,1,26 -hat,0.6799999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -brown,0.9016666666666666,1.0,0.8666666666666668,0.9200000000000002,2,25 -coffee,0.8083333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -handle,0.5466666666666666,1.0,0.6166666666666666,0.7166666666666666,1,25 -food,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,24 -towel,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.425,1.0,0.4666666666666666,0.6166666666666667,1,26 -stapler,0.8150000000000001,1.0,0.6333333333333333,0.75,1,26 -onion,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -bag,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -sponge,0.5133333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -special,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -colgate,0.53,1.0,0.5166666666666666,0.65,1,26 -leaf,0.39999999999999997,1.0,0.4,0.5666666666666667,1,26 -tube,0.525,1.0,0.5333333333333333,0.6666666666666667,1,26 -cell,0.625,1.0,0.6166666666666666,0.7166666666666666,1,26 -mug,0.85,1.0,0.7333333333333333,0.8166666666666667,1,26 -yogurt,0.6799999999999999,1.0,0.55,0.6833333333333333,1,26 -plantain,0.735,1.0,0.5999999999999999,0.7166666666666667,1,26 -red,0.8150000000000001,0.7,1.0,0.8014285714285714,3,25 -pepper,0.4600000000000001,1.0,0.4499999999999999,0.6,1,26 -wheat,0.6883333333333334,1.0,0.5666666666666667,0.7,1,26 -kleenex,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -toothbrush,0.6816666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -binder,0.6683333333333332,1.0,0.5666666666666667,0.7,1,26 -baseball,0.63,1.0,0.5999999999999999,0.7166666666666667,1,26 -pliers,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.755,1.0,0.7166666666666666,0.8,1,26 -thins,0.6433333333333333,1.0,0.6,0.7166666666666667,1,26 -package,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -k,0.6733333333333332,1.0,0.6166666666666666,0.7333333333333334,1,26 -jelly,0.6799999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -fruit,0.6933333333333334,0.6166666666666666,0.9,0.6833333333333333,2,25 -apple,0.6516666666666666,0.9,0.5499999999999999,0.6333333333333333,1,25 -bell,0.8083333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -battery,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -jar,0.4833333333333333,1.0,0.45,0.6,1,26 -bound,0.6849999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -lettuce,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -brush,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -scissors,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -lime,0.6383333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -toothpaste,0.5499999999999999,1.0,0.4333333333333333,0.5833333333333333,1,26 -top,0.715,1.0,0.5333333333333333,0.6833333333333333,1,26 -spiral,0.7633333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -handles,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -eraser,0.5666666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.79,0.6583333333333333,1.0,0.7885714285714286,5,21 -banana,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -pitcher,0.6433333333333333,1.0,0.55,0.6833333333333333,1,26 -phone,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -stick,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -cereal,0.7216666666666667,1.0,0.6,0.7166666666666667,1,26 -bulb,0.96,1.0,0.9333333333333332,0.96,2,26 -hair,0.7716666666666666,1.0,0.7166666666666666,0.8,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.585,1.0,0.5833333333333333,0.7,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,24 -coca,0.4833333333333333,1.0,0.5,0.6333333333333333,1,26 -crackers,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -plate,0.6849999999999999,1.0,0.5499999999999999,0.6833333333333333,1,24 -calculator,0.6433333333333333,0.75,0.7,0.6166666666666667,1,26 -tissues,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -juice,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -pink,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -lemon,0.4416666666666666,1.0,0.4333333333333333,0.5833333333333333,1,26 -peach,0.6983333333333334,1.0,0.4999999999999999,0.65,1,26 -bowl,0.5966666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.45833333333333337,1.0,0.4333333333333334,0.5833333333333333,1,26 -blue,0.5599999999999999,1.0,0.4833333333333333,0.6333333333333333,1,25 -used,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.8266666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -ball,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -notebook,0.705,1.0,0.5999999999999999,0.7166666666666667,1,26 -garlic,0.7183333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -cleaning,0.7100000000000001,1.0,0.65,0.75,1,26 -pair,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -tomato,0.5599999999999999,0.85,0.6,0.6166666666666667,1,26 -cellphone,0.7266666666666667,1.0,0.7166666666666666,0.8,1,26 -potato,0.7433333333333334,1.0,0.6333333333333333,0.75,1,26 -light,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -green,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,3,23 -bottle,0.9349999999999999,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6313271604938273 -F1-Score: 0.6754320987654323 -Precision: 0.9022376543209878 -Recall: 0.5944444444444444 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6833333333333333,1.0,0.6166666666666666,0.7333333333333333,1,24 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.6416666666666666,0.95,0.6333333333333333,0.7,1,24 -keyboard,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -glue,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.8333333333333333,1.0,0.8166666666666667,0.8666666666666666,1,26 -flashlight,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -cup,0.40166666666666667,0.4833333333333333,0.5499999999999999,0.4866666666666667,1,26 -folded,0.7416666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -jam,0.5216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -black,0.96,0.9,1.0,0.9333333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -soccer,0.8433333333333334,1.0,0.7,0.8,1,26 -hat,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -brown,0.9349999999999999,1.0,0.9,0.9400000000000001,2,24 -coffee,0.6666666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -handle,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -food,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -towel,0.43999999999999995,1.0,0.45,0.6,1,26 -chips,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -stapler,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -sponge,0.7,1.0,0.6833333333333332,0.7666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.6383333333333333,1.0,0.5833333333333333,0.7,1,25 -special,0.475,1.0,0.5666666666666667,0.6833333333333333,1,26 -colgate,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -leaf,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -tube,0.5683333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -cell,0.38500000000000006,0.5,0.55,0.5033333333333333,1,26 -mug,0.6599999999999999,1.0,0.5833333333333333,0.7,1,25 -yogurt,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -plantain,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -red,0.8049999999999999,0.675,1.0,0.779047619047619,3,25 -pepper,0.5049999999999999,1.0,0.41666666666666663,0.5833333333333333,1,26 -wheat,0.5733333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -kleenex,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -toothbrush,0.6233333333333333,1.0,0.4999999999999999,0.65,1,26 -binder,0.6966666666666667,1.0,0.5666666666666667,0.7,1,26 -baseball,0.5833333333333334,1.0,0.5833333333333333,0.7,1,26 -pliers,0.5916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6466666666666666,1.0,0.7,0.7833333333333333,1,26 -thins,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -package,0.755,1.0,0.6499999999999999,0.75,1,26 -k,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -jelly,0.53,1.0,0.4999999999999999,0.6333333333333333,1,26 -fruit,0.79,0.6833333333333333,0.9333333333333332,0.7533333333333334,2,25 -apple,0.7133333333333333,0.9,0.6833333333333333,0.7,1,25 -bell,0.7583333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -battery,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -jar,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -bound,0.6883333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -lettuce,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -brush,0.5466666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -scissors,0.575,1.0,0.6166666666666666,0.7166666666666666,1,26 -lime,0.9550000000000001,1.0,0.9,0.9333333333333332,1,25 -toothpaste,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -top,0.7016666666666667,1.0,0.6,0.7166666666666667,1,26 -spiral,0.5333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -handles,0.76,1.0,0.7,0.7833333333333333,1,25 -camera,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333334,1,26 -eraser,0.40499999999999997,1.0,0.4,0.5666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.7816666666666666,0.7,1.0,0.8209523809523809,5,21 -banana,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -pitcher,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -phone,0.41500000000000004,0.6,0.5666666666666667,0.52,1,26 -stick,0.6683333333333332,1.0,0.6,0.7166666666666667,1,25 -cereal,0.8266666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -bulb,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.8833333333333332,1.0,0.8333333333333333,0.8833333333333332,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -can,0.8150000000000001,1.0,0.7666666666666667,0.8600000000000001,2,25 -coca,0.7266666666666667,1.0,0.65,0.75,1,26 -crackers,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -plate,0.5966666666666667,1.0,0.4833333333333333,0.6333333333333333,1,25 -calculator,0.4883333333333333,0.8,0.5833333333333333,0.5833333333333333,1,26 -tissues,0.6799999999999999,1.0,0.6833333333333332,0.7666666666666666,1,26 -juice,0.4666666666666666,1.0,0.5333333333333333,0.65,1,26 -pink,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -lemon,0.7216666666666667,1.0,0.5833333333333333,0.7,1,26 -peach,0.3583333333333333,1.0,0.4499999999999999,0.6,1,26 -bowl,0.7683333333333333,1.0,0.6333333333333333,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -blue,0.6933333333333332,1.0,0.5833333333333333,0.7,1,25 -used,0.61,1.0,0.5333333333333333,0.6666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.625,1.0,0.55,0.6833333333333333,1,26 -ball,0.6766666666666666,1.0,0.55,0.6833333333333333,1,25 -notebook,0.7633333333333333,1.0,0.75,0.8166666666666667,1,26 -garlic,0.6183333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -cleaning,0.7566666666666666,1.0,0.5833333333333333,0.7166666666666667,1,26 -pair,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -container,0.6966666666666665,1.0,0.7,0.7833333333333333,1,25 -tomato,0.6866666666666666,0.75,0.7166666666666666,0.65,1,26 -cellphone,0.43,0.5,0.6833333333333333,0.5433333333333333,1,26 -potato,0.5833333333333333,1.0,0.5999999999999999,0.7166666666666667,1,25 -light,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,24 -bottle,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,25 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6440740740740741 -F1-Score: 0.685925925925926 -Precision: 0.8925154320987654 -Recall: 0.6131172839506172 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.76,1.0,0.6166666666666666,0.7333333333333333,1,24 -yellow,0.9500000000000002,0.85,1.0,0.8999999999999998,6,24 -looks,0.6233333333333333,0.95,0.4999999999999999,0.6166666666666667,1,24 -keyboard,0.5416666666666666,1.0,0.5833333333333333,0.7,1,26 -glue,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.725,1.0,0.7,0.7833333333333333,1,26 -flashlight,0.635,1.0,0.4666666666666666,0.6166666666666666,1,26 -cup,0.3683333333333333,0.5,0.5999999999999999,0.52,1,25 -folded,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -jam,0.7849999999999999,1.0,0.6333333333333333,0.75,1,26 -black,0.89,0.725,1.0,0.819047619047619,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -soccer,0.625,1.0,0.6,0.7166666666666667,1,26 -hat,0.73,1.0,0.6499999999999999,0.75,1,26 -brown,0.95,1.0,0.9333333333333332,0.96,2,25 -coffee,0.6,1.0,0.5833333333333333,0.7,1,25 -handle,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -food,0.6900000000000001,1.0,0.6499999999999999,0.75,1,25 -towel,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.5366666666666666,1.0,0.4333333333333333,0.6,1,26 -stapler,0.7366666666666667,1.0,0.5666666666666667,0.7,1,26 -onion,0.63,1.0,0.5833333333333333,0.7,1,26 -bag,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -sponge,0.8666666666666666,1.0,0.7833333333333333,0.85,1,26 -zero,0,0,0,0,1,26 -computer,0.4416666666666666,1.0,0.4833333333333333,0.6166666666666666,1,25 -special,0.7699999999999999,1.0,0.5833333333333333,0.7166666666666667,1,26 -colgate,0.7633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -leaf,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -tube,0.5633333333333332,1.0,0.6166666666666666,0.7166666666666666,1,26 -cell,0.26833333333333337,0.6,0.4499999999999999,0.47666666666666674,1,26 -mug,0.8416666666666666,1.0,0.8166666666666667,0.8666666666666666,1,25 -yogurt,0.7233333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -plantain,0.5399999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -red,0.9083333333333332,0.8166666666666667,1.0,0.8666666666666666,3,24 -pepper,0.75,1.0,0.7166666666666666,0.8,1,26 -wheat,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -kleenex,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.6249999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.6599999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -baseball,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -pliers,0.6433333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -thins,0.7749999999999999,1.0,0.7166666666666666,0.8,1,26 -package,0.5883333333333333,1.0,0.6,0.7166666666666666,1,26 -k,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -jelly,0.655,1.0,0.5833333333333333,0.7,1,26 -fruit,0.8066666666666666,0.7833333333333333,0.8999999999999998,0.7966666666666666,2,26 -apple,0.4383333333333333,1.0,0.4499999999999999,0.6,1,25 -bell,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -jar,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -bound,0.585,1.0,0.5333333333333333,0.6666666666666667,1,26 -lettuce,0.9016666666666666,1.0,0.8,0.8666666666666666,1,26 -brush,0.725,1.0,0.5666666666666667,0.7,1,26 -scissors,0.7516666666666667,1.0,0.6333333333333333,0.75,1,26 -lime,0.6966666666666667,1.0,0.5666666666666667,0.7,1,25 -toothpaste,0.6066666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -top,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -spiral,0.6666666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -handles,0.42666666666666664,1.0,0.4,0.5666666666666667,1,25 -camera,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -eraser,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -creamer,0,0,0,0,1,26 -white,0.7783333333333333,0.5916666666666667,1.0,0.7338095238095238,5,20 -banana,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -pitcher,0.7266666666666667,1.0,0.6,0.7166666666666667,1,26 -phone,0.4716666666666667,0.6,0.7,0.5733333333333334,1,26 -stick,0.7,1.0,0.65,0.75,1,25 -cereal,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -bulb,0.8716666666666667,1.0,0.8333333333333333,0.9,2,26 -hair,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.805,1.0,0.6666666666666666,0.7666666666666666,1,26 -can,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.5516666666666665,1.0,0.5166666666666666,0.65,1,26 -crackers,0.8383333333333333,1.0,0.7,0.8,1,26 -plate,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -calculator,0.6466666666666666,1.0,0.6499999999999999,0.75,1,26 -tissues,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -juice,0.6133333333333334,1.0,0.5833333333333333,0.7,1,26 -pink,0.655,1.0,0.65,0.75,1,25 -lemon,0.6133333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -peach,0.7166666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -bowl,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8166666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -blue,0.6483333333333333,1.0,0.4999999999999999,0.65,1,25 -used,0.6716666666666666,1.0,0.5666666666666667,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.46333333333333326,1.0,0.41666666666666663,0.5666666666666667,1,26 -ball,0.705,1.0,0.6166666666666666,0.7333333333333333,1,25 -notebook,0.585,1.0,0.45,0.6166666666666667,1,26 -garlic,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -cleaning,0.7266666666666667,1.0,0.6499999999999999,0.75,1,26 -pair,0.9066666666666666,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -tomato,0.45166666666666666,0.9,0.5333333333333333,0.6166666666666667,1,26 -cellphone,0.37666666666666665,0.65,0.5499999999999999,0.5333333333333333,1,26 -potato,0.705,1.0,0.6333333333333333,0.7333333333333333,1,25 -light,0.9400000000000001,1.0,0.8999999999999998,0.9400000000000001,2,26 -green,0.9633333333333333,0.9,1.0,0.9333333333333332,3,23 -bottle,0.95,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6447376543209876 -F1-Score: 0.6831437389770721 -Precision: 0.8969135802469137 -Recall: 0.6049382716049382 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6833333333333333,1.0,0.5999999999999999,0.7166666666666666,1,24 -yellow,0.8800000000000001,0.8,1.0,0.8828571428571429,6,24 -looks,0.5283333333333333,0.55,0.6166666666666666,0.5399999999999999,1,24 -keyboard,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.6383333333333334,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.6249999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -flashlight,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -cup,0.3983333333333334,0.5,0.6833333333333333,0.5433333333333333,1,25 -folded,0.5583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -jam,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -black,1.0,1.0,1.0,1.0,6,22 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -soccer,0.4166666666666667,1.0,0.4833333333333332,0.6166666666666666,1,26 -hat,0.76,1.0,0.6166666666666666,0.7333333333333334,1,26 -brown,0.95,1.0,0.9333333333333332,0.96,2,24 -coffee,0.73,1.0,0.6666666666666666,0.7666666666666666,1,25 -handle,0.7083333333333333,1.0,0.7499999999999999,0.8166666666666668,1,26 -food,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666667,1,24 -towel,0.7333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -chips,0.6883333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666666,1,26 -onion,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -bag,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -sponge,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -special,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -colgate,0.7049999999999998,1.0,0.5666666666666667,0.7,1,26 -leaf,0.635,1.0,0.4833333333333333,0.6333333333333333,1,26 -tube,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -cell,0.755,1.0,0.5999999999999999,0.7166666666666666,1,26 -mug,0.6299999999999999,1.0,0.4833333333333333,0.6333333333333333,1,25 -yogurt,0.5683333333333334,1.0,0.5166666666666666,0.65,1,26 -plantain,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.6383333333333333,0.5266666666666667,1.0,0.647142857142857,3,26 -pepper,0.7383333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -wheat,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.5433333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -binder,0.6083333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -baseball,0.7100000000000001,1.0,0.65,0.75,1,26 -pliers,0.6383333333333333,1.0,0.6,0.7166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.8083333333333332,1.0,0.7833333333333333,0.85,1,26 -thins,0.5249999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -package,0.77,0.8,0.7333333333333333,0.7,1,26 -k,0.675,1.0,0.6,0.7166666666666667,1,26 -jelly,0.4883333333333333,1.0,0.5166666666666666,0.65,1,26 -fruit,0.555,0.4833333333333333,0.8999999999999998,0.5966666666666667,2,25 -apple,0.6283333333333333,0.85,0.6666666666666666,0.6833333333333333,1,25 -bell,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -battery,0.7683333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -jar,0.6933333333333334,0.75,0.7666666666666666,0.6666666666666666,1,26 -bound,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -lettuce,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -brush,0.63,1.0,0.5499999999999999,0.6666666666666666,1,26 -scissors,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -lime,0.61,1.0,0.4833333333333333,0.6333333333333333,1,25 -toothpaste,0.7416666666666667,1.0,0.65,0.75,1,26 -top,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -spiral,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666667,1,25 -camera,0.6583333333333333,1.0,0.6499999999999999,0.75,1,26 -eraser,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.8016666666666665,0.6416666666666666,1.0,0.7771428571428571,5,21 -banana,0.6,1.0,0.55,0.6833333333333333,1,26 -pitcher,0.775,1.0,0.7166666666666666,0.8,1,26 -phone,0.65,1.0,0.65,0.75,1,26 -stick,0.6316666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -cereal,0.5766666666666665,1.0,0.5333333333333333,0.6666666666666667,1,26 -bulb,0.8999999999999998,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.5883333333333333,0.9,0.5833333333333333,0.6333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -can,1.0,1.0,1.0,1.0,2,26 -coca,0.58,1.0,0.5333333333333332,0.6666666666666666,1,26 -crackers,0.6466666666666666,1.0,0.55,0.6833333333333333,1,26 -plate,0.6216666666666666,1.0,0.5833333333333333,0.7,1,25 -calculator,0.5666666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -tissues,0.7733333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -juice,0.8966666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -pink,0.7216666666666666,1.0,0.5999999999999999,0.7166666666666667,1,25 -lemon,0.675,1.0,0.6,0.7166666666666666,1,26 -peach,0.7816666666666666,1.0,0.6333333333333333,0.75,1,26 -bowl,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -blue,0.6799999999999999,0.95,0.5999999999999999,0.6833333333333333,1,25 -used,0.8083333333333332,1.0,0.7666666666666666,0.8333333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.8049999999999999,1.0,0.7166666666666666,0.8,1,26 -ball,0.5683333333333332,1.0,0.5166666666666666,0.65,1,25 -notebook,0.505,1.0,0.4666666666666666,0.6166666666666667,1,26 -garlic,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -pair,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,27 -container,0.6083333333333334,1.0,0.4333333333333333,0.6,1,25 -tomato,0.5466666666666666,0.5,0.6333333333333333,0.5399999999999999,1,26 -cellphone,0.8033333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -potato,0.6933333333333332,1.0,0.65,0.75,1,25 -light,0.8816666666666666,1.0,0.8333333333333333,0.9,2,25 -green,0.805,0.6833333333333333,1.0,0.8047619047619048,3,23 -bottle,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6395216049382716 -F1-Score: 0.6782583774250441 -Precision: 0.888287037037037 -Recall: 0.6078703703703704 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8133333333333332,1.0,0.7666666666666666,0.8333333333333333,1,25 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,25 -looks,0.51,0.85,0.6166666666666666,0.6333333333333333,1,24 -keyboard,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -glue,0.7216666666666667,1.0,0.5333333333333333,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.5033333333333333,0.5,0.6666666666666666,0.5466666666666666,1,26 -folded,0.5216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -black,0.95,0.85,1.0,0.9,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6883333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -soccer,0.5583333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -hat,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -coffee,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -handle,0.69,1.0,0.5666666666666667,0.7,1,26 -food,0.5349999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -towel,0.6250000000000001,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.71,1.0,0.55,0.6833333333333333,1,26 -onion,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -bag,0.6799999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -sponge,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.6100000000000001,1.0,0.5333333333333333,0.6666666666666667,1,25 -special,0.5383333333333333,1.0,0.45,0.6,1,26 -colgate,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -leaf,0.6649999999999999,1.0,0.5,0.65,1,26 -tube,0.51,1.0,0.41666666666666663,0.5833333333333333,1,26 -cell,0.6633333333333333,1.0,0.5666666666666667,0.7,1,26 -mug,0.7483333333333333,1.0,0.6333333333333333,0.75,1,26 -yogurt,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.7466666666666666,1.0,0.6499999999999999,0.75,1,26 -red,0.7216666666666667,0.5166666666666666,1.0,0.65,3,26 -pepper,0.5266666666666666,1.0,0.4333333333333334,0.6,1,26 -wheat,0.505,1.0,0.4666666666666666,0.6166666666666667,1,26 -kleenex,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -toothbrush,0.6933333333333334,1.0,0.6,0.7166666666666667,1,26 -binder,0.4333333333333334,1.0,0.4333333333333333,0.5833333333333333,1,26 -baseball,0.38,1.0,0.36666666666666664,0.5333333333333333,1,26 -pliers,0.78,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.5966666666666667,1.0,0.5166666666666666,0.65,1,26 -thins,0.625,1.0,0.6166666666666666,0.7166666666666666,1,26 -package,0.655,1.0,0.5333333333333333,0.6666666666666667,1,26 -k,0.6249999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -jelly,0.755,1.0,0.7666666666666666,0.8333333333333333,1,26 -fruit,0.7933333333333332,0.6833333333333333,0.9333333333333332,0.74,2,25 -apple,0.6316666666666666,0.85,0.6166666666666666,0.6333333333333334,1,25 -bell,0.6466666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -battery,0.4833333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -jar,0.575,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.7150000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -lettuce,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -brush,0.375,0.7,0.5333333333333333,0.5333333333333333,1,26 -scissors,0.5933333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -lime,0.8,1.0,0.7,0.7833333333333333,1,25 -toothpaste,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -top,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -spiral,0.5766666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.7383333333333333,1.0,0.6333333333333333,0.75,1,25 -camera,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -eraser,0.7716666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.8033333333333333,0.6916666666666667,1.0,0.8152380952380952,5,21 -banana,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -phone,0.8583333333333334,1.0,0.7833333333333333,0.85,1,26 -stick,0.6333333333333333,1.0,0.6333333333333332,0.7333333333333333,1,25 -cereal,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -bulb,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,27 -hair,0.6666666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.725,1.0,0.7,0.7833333333333333,1,26 -can,0.9333333333333332,1.0,0.9333333333333332,0.96,2,25 -coca,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -crackers,0.8883333333333333,1.0,0.8,0.8666666666666666,1,26 -plate,0.4966666666666667,1.0,0.4499999999999999,0.6,1,24 -calculator,0.6216666666666667,1.0,0.6499999999999999,0.75,1,26 -tissues,0.5133333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -juice,0.7899999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -pink,0.4833333333333334,0.5,0.6333333333333332,0.5266666666666667,1,25 -lemon,0.65,1.0,0.65,0.75,1,26 -peach,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -bowl,0.705,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7633333333333333,1.0,0.6499999999999999,0.75,1,26 -blue,0.7,1.0,0.6333333333333333,0.7333333333333333,1,25 -used,0.5966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.7633333333333333,1.0,0.75,0.8166666666666667,1,26 -ball,0.41666666666666663,1.0,0.4666666666666666,0.6,1,25 -notebook,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -garlic,0.8099999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -cleaning,0.53,0.5,0.5833333333333333,0.5233333333333333,1,26 -pair,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -container,0.49000000000000005,1.0,0.5166666666666666,0.65,1,26 -tomato,0.7216666666666667,0.9,0.65,0.6833333333333333,1,26 -cellphone,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -potato,0.6133333333333334,1.0,0.5666666666666667,0.6833333333333333,1,25 -light,0.9266666666666667,1.0,0.8999999999999998,0.9400000000000001,2,26 -green,0.93,0.8333333333333333,1.0,0.8933333333333332,3,23 -bottle,0.8766666666666666,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6405246913580247 -F1-Score: 0.6795546737213405 -Precision: 0.891435185185185 -Recall: 0.6066358024691358 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6716666666666666,1.0,0.5833333333333333,0.7,1,24 -yellow,0.795,0.6083333333333333,1.0,0.7504761904761904,6,25 -looks,0.7416666666666666,1.0,0.6499999999999999,0.75,1,24 -keyboard,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -glue,0.555,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.6516666666666666,1.0,0.5,0.65,1,26 -flashlight,0.4966666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -cup,0.35333333333333333,0.5,0.41666666666666663,0.45,1,26 -folded,0.775,1.0,0.6666666666666666,0.7666666666666667,1,26 -jam,0.7066666666666667,1.0,0.6,0.7166666666666667,1,26 -black,0.9066666666666666,0.7833333333333333,1.0,0.86,6,22 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.805,1.0,0.7333333333333333,0.8166666666666668,1,26 -soccer,0.5833333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -hat,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -brown,0.915,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.5383333333333333,1.0,0.5,0.6333333333333333,1,25 -handle,0.5466666666666666,1.0,0.5499999999999999,0.6666666666666667,1,26 -food,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -towel,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -chips,0.755,1.0,0.7666666666666666,0.8333333333333333,1,26 -stapler,0.505,1.0,0.4666666666666666,0.6166666666666667,1,26 -onion,0.44333333333333336,0.9,0.4999999999999999,0.5666666666666667,1,26 -bag,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -sponge,0.71,1.0,0.65,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.76,1.0,0.6166666666666666,0.7333333333333333,1,25 -special,0.6383333333333333,1.0,0.55,0.6833333333333333,1,26 -colgate,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -leaf,0.6716666666666666,1.0,0.65,0.75,1,26 -tube,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.5416666666666666,0.5,0.6666666666666666,0.5466666666666666,1,26 -mug,0.6683333333333333,1.0,0.55,0.6833333333333333,1,25 -yogurt,0.6583333333333333,1.0,0.65,0.75,1,26 -plantain,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.9066666666666668,0.7833333333333333,1.0,0.8600000000000001,3,26 -pepper,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -wheat,0.8150000000000001,1.0,0.65,0.7666666666666667,1,26 -kleenex,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -toothbrush,0.6583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.5283333333333333,1.0,0.4833333333333332,0.6333333333333333,1,26 -pliers,0.5549999999999999,1.0,0.41666666666666663,0.5833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.9466666666666667,1.0,0.9,0.9333333333333332,1,26 -package,0.7649999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.7416666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -jelly,0.605,1.0,0.5833333333333333,0.7,1,26 -fruit,0.7966666666666666,0.8,0.8666666666666666,0.8066666666666666,2,25 -apple,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,25 -bell,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -battery,0.5833333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -jar,0.655,1.0,0.6166666666666666,0.7333333333333334,1,26 -bound,0.5816666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -lettuce,0.705,1.0,0.65,0.75,1,26 -brush,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -scissors,0.775,1.0,0.6833333333333333,0.7666666666666666,1,26 -lime,0.585,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.6,1.0,0.5833333333333333,0.7,1,26 -top,0.755,1.0,0.7666666666666666,0.8333333333333333,1,26 -spiral,0.6716666666666666,1.0,0.6,0.7166666666666666,1,26 -handles,0.7966666666666666,1.0,0.7166666666666666,0.8,1,25 -camera,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -eraser,0.54,1.0,0.4833333333333333,0.6333333333333334,1,26 -creamer,0,0,0,0,1,26 -white,0.73,0.6,1.0,0.7328571428571429,5,22 -banana,0.835,1.0,0.7166666666666666,0.8,1,26 -pitcher,0.7133333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -phone,0.5233333333333332,0.55,0.6666666666666666,0.5566666666666666,1,26 -stick,0.6799999999999999,1.0,0.6666666666666666,0.7666666666666666,1,25 -cereal,0.655,1.0,0.4999999999999999,0.6333333333333333,1,26 -bulb,1.0,1.0,1.0,1.0,2,27 -hair,0.7216666666666667,1.0,0.6,0.7166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -can,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,26 -coca,0.825,1.0,0.7,0.8,1,26 -crackers,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -plate,0.6133333333333333,1.0,0.5833333333333333,0.7,1,24 -calculator,0.8049999999999999,1.0,0.65,0.7666666666666667,1,26 -tissues,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -juice,0.6433333333333333,1.0,0.55,0.6833333333333333,1,26 -pink,0.525,1.0,0.5166666666666666,0.65,1,25 -lemon,0.74,1.0,0.6666666666666666,0.7666666666666667,1,26 -peach,0.65,1.0,0.6833333333333333,0.7666666666666666,1,26 -bowl,0.6849999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -blue,0.6433333333333333,0.9,0.6,0.65,1,25 -used,0.5133333333333334,1.0,0.5166666666666666,0.65,1,24 -energizer,0,0,0,0,1,26 -pear,0.8800000000000001,1.0,0.8833333333333332,0.9166666666666666,1,26 -ball,0.6666666666666666,1.0,0.6166666666666666,0.7166666666666666,1,25 -notebook,0.755,1.0,0.6166666666666666,0.7333333333333334,1,26 -garlic,0.7933333333333333,0.9,0.6833333333333333,0.7166666666666667,1,26 -cleaning,0.5016666666666667,1.0,0.4499999999999999,0.6,1,26 -pair,0.8933333333333333,1.0,0.8666666666666668,0.9200000000000002,2,27 -container,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666667,1,25 -tomato,0.525,0.85,0.4833333333333332,0.5666666666666667,1,26 -cellphone,0.46499999999999997,0.5,0.65,0.5366666666666667,1,26 -potato,0.73,1.0,0.7,0.7833333333333333,1,25 -light,0.8566666666666667,0.7,0.9666666666666666,0.78,2,25 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,24 -bottle,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6487499999999999 -F1-Score: 0.6845679012345678 -Precision: 0.8872685185185185 -Recall: 0.6152777777777778 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -yellow,0.9100000000000001,0.7666666666666667,1.0,0.8466666666666667,6,24 -looks,0.615,0.85,0.5333333333333332,0.5833333333333333,1,24 -keyboard,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -glue,0.6266666666666667,1.0,0.55,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6166666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -flashlight,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -cup,0.3533333333333334,0.5,0.5333333333333333,0.49333333333333335,1,26 -folded,0.905,1.0,0.8333333333333333,0.8833333333333332,1,26 -jam,0.7,1.0,0.6833333333333333,0.7666666666666667,1,26 -black,0.9266666666666667,0.8333333333333333,1.0,0.8933333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.8666666666666666,1.0,0.7833333333333333,0.85,1,26 -soccer,0.7716666666666666,1.0,0.7,0.7833333333333333,1,26 -hat,0.7333333333333333,1.0,0.7999999999999999,0.85,1,26 -brown,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coffee,0.7,1.0,0.6,0.7166666666666667,1,26 -handle,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -food,0.755,1.0,0.65,0.75,1,25 -towel,0.7683333333333333,1.0,0.6499999999999999,0.75,1,26 -chips,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -stapler,0.5266666666666666,1.0,0.4833333333333332,0.6333333333333333,1,26 -onion,0.6966666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -bag,0.675,1.0,0.6833333333333333,0.7666666666666666,1,26 -sponge,0.48500000000000004,1.0,0.41666666666666663,0.5833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,25 -special,0.73,1.0,0.65,0.75,1,26 -colgate,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -leaf,0.765,1.0,0.6666666666666666,0.7666666666666666,1,26 -tube,0.585,1.0,0.5833333333333333,0.7,1,26 -cell,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -mug,0.7183333333333334,1.0,0.5833333333333333,0.7,1,26 -yogurt,0.5083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.7333333333333333,1.0,0.6499999999999999,0.75,1,26 -red,0.6733333333333335,0.4933333333333333,1.0,0.6464285714285715,3,25 -pepper,0.5883333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -wheat,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.6599999999999999,1.0,0.65,0.75,1,26 -toothbrush,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -binder,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.5233333333333333,1.0,0.41666666666666663,0.5833333333333334,1,26 -pliers,0.6016666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -thins,0.725,1.0,0.7,0.7833333333333333,1,26 -package,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -k,0.6649999999999999,1.0,0.6,0.7166666666666667,1,26 -jelly,0.655,1.0,0.5833333333333333,0.7,1,26 -fruit,0.7166666666666667,0.65,0.8999999999999998,0.7466666666666667,2,25 -apple,0.7216666666666666,0.95,0.6333333333333333,0.7166666666666667,1,25 -bell,0.73,1.0,0.5666666666666667,0.7,1,26 -battery,0.4666666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -jar,0.38,1.0,0.4499999999999999,0.6,1,26 -bound,0.5966666666666667,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -scissors,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -lime,0.6633333333333333,1.0,0.55,0.6833333333333333,1,25 -toothpaste,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -top,0.6799999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -handles,0.76,1.0,0.6166666666666666,0.7333333333333333,1,25 -camera,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.8816666666666666,1.0,0.75,0.8333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.8016666666666667,0.6166666666666667,1.0,0.758095238095238,5,21 -banana,0.8083333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -pitcher,0.675,1.0,0.5833333333333333,0.7,1,26 -phone,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -stick,0.8266666666666665,1.0,0.7166666666666666,0.8,1,25 -cereal,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bulb,0.8933333333333333,1.0,0.8666666666666668,0.9200000000000002,2,27 -hair,0.65,1.0,0.6666666666666666,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6766666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -can,0.9349999999999999,1.0,0.9,0.9400000000000001,2,24 -coca,0.875,1.0,0.8333333333333334,0.8833333333333332,1,26 -crackers,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -plate,0.7933333333333332,1.0,0.7,0.7833333333333333,1,25 -calculator,0.6633333333333333,0.75,0.6166666666666666,0.6166666666666666,1,26 -tissues,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -juice,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -pink,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -lemon,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -peach,0.5249999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -bowl,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.805,1.0,0.6666666666666666,0.7666666666666666,1,26 -blue,0.5349999999999999,1.0,0.5833333333333333,0.7,1,25 -used,0.6,1.0,0.4833333333333332,0.6333333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -ball,0.7433333333333334,1.0,0.6166666666666666,0.7333333333333333,1,25 -notebook,0.705,1.0,0.5833333333333333,0.7,1,26 -garlic,0.7883333333333333,1.0,0.6333333333333333,0.75,1,26 -cleaning,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -pair,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.7766666666666666,1.0,0.7166666666666666,0.8,1,25 -tomato,0.4216666666666667,0.7,0.5333333333333332,0.5333333333333333,1,26 -cellphone,0.6500000000000001,1.0,0.6333333333333333,0.7333333333333333,1,26 -potato,0.63,1.0,0.6333333333333333,0.7333333333333333,1,25 -light,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,0.9133333333333334,0.7833333333333333,1.0,0.86,3,23 -bottle,0.8916666666666666,1.0,0.8666666666666666,0.9200000000000002,2,25 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6556790123456787 -F1-Score: 0.6913073192239859 -Precision: 0.8971604938271606 -Recall: 0.6191358024691357 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7433333333333334,1.0,0.5666666666666667,0.7,1,25 -yellow,0.8633333333333333,0.6666666666666666,1.0,0.78,6,24 -looks,0.6433333333333333,0.9,0.5999999999999999,0.65,1,24 -keyboard,0.725,1.0,0.7499999999999999,0.8166666666666668,1,26 -glue,0.5,1.0,0.4333333333333333,0.5833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7133333333333333,1.0,0.65,0.75,1,26 -flashlight,0.58,1.0,0.5166666666666666,0.65,1,26 -cup,0.4766666666666667,1.0,0.5166666666666666,0.65,1,26 -folded,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -jam,0.7133333333333333,1.0,0.65,0.75,1,26 -black,0.8316666666666667,0.7,1.0,0.8180952380952382,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6416666666666667,1.0,0.5833333333333333,0.7,1,26 -soccer,0.3083333333333333,1.0,0.4833333333333334,0.6166666666666666,1,26 -hat,0.7,1.0,0.75,0.8166666666666667,1,26 -brown,0.89,1.0,0.8333333333333333,0.9,2,24 -coffee,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -handle,0.5766666666666665,1.0,0.5666666666666667,0.6833333333333333,1,25 -food,0.8216666666666667,1.0,0.7166666666666666,0.8,1,24 -towel,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -chips,0.9216666666666666,1.0,0.85,0.9,1,26 -stapler,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -onion,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -bag,0.7749999999999999,1.0,0.7166666666666666,0.8,1,26 -sponge,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.5383333333333333,1.0,0.4666666666666666,0.6166666666666666,1,25 -special,0.7916666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -colgate,0.7,1.0,0.5999999999999999,0.7166666666666666,1,26 -leaf,0.7633333333333334,1.0,0.7166666666666666,0.8,1,26 -tube,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.25,0.5,0.4333333333333333,0.44666666666666677,1,26 -mug,0.5599999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -yogurt,0.7516666666666667,1.0,0.6499999999999999,0.75,1,26 -plantain,0.5766666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -red,0.705,0.5866666666666667,1.0,0.7133333333333334,3,24 -pepper,0.6683333333333332,1.0,0.6499999999999999,0.75,1,26 -wheat,0.6933333333333334,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.75,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.7016666666666665,1.0,0.5499999999999999,0.6833333333333333,1,26 -binder,0.8533333333333333,1.0,0.7,0.8,1,26 -baseball,0.71,1.0,0.5833333333333333,0.7166666666666667,1,26 -pliers,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.6649999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -package,0.64,1.0,0.55,0.6833333333333333,1,26 -k,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -fruit,0.7983333333333333,0.6333333333333333,0.9666666666666666,0.7266666666666667,2,26 -apple,0.6666666666666666,0.7,0.7499999999999999,0.6333333333333333,1,25 -bell,0.5666666666666667,1.0,0.6,0.7,1,26 -battery,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -jar,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -bound,0.71,1.0,0.55,0.6833333333333333,1,26 -lettuce,0.7266666666666667,1.0,0.65,0.75,1,26 -brush,0.5249999999999999,1.0,0.5166666666666666,0.65,1,26 -scissors,0.5833333333333334,1.0,0.55,0.6833333333333333,1,26 -lime,0.7633333333333333,1.0,0.6333333333333333,0.75,1,25 -toothpaste,0.48,1.0,0.5166666666666666,0.65,1,26 -top,0.5266666666666666,1.0,0.5166666666666666,0.65,1,26 -spiral,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -handles,0.8300000000000001,1.0,0.6833333333333333,0.7833333333333333,1,25 -camera,0.5900000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -creamer,0,0,0,0,1,26 -white,0.6516666666666666,0.5183333333333333,1.0,0.6673809523809524,5,21 -banana,0.5883333333333334,1.0,0.4999999999999999,0.65,1,26 -pitcher,0.47166666666666657,1.0,0.4499999999999999,0.6,1,26 -phone,0.5216666666666666,0.55,0.6333333333333333,0.55,1,26 -stick,0.8516666666666666,1.0,0.7,0.8,1,25 -cereal,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.875,1.0,0.8666666666666666,0.9199999999999999,2,27 -hair,0.7516666666666667,0.95,0.6166666666666666,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.725,1.0,0.7499999999999999,0.8166666666666667,1,26 -can,0.925,1.0,0.9,0.9400000000000001,2,25 -coca,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -crackers,0.7016666666666667,1.0,0.5666666666666667,0.7,1,26 -plate,0.7133333333333334,1.0,0.6,0.7166666666666667,1,25 -calculator,0.41,0.75,0.5999999999999999,0.5566666666666666,1,26 -tissues,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -juice,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -pink,0.9349999999999999,1.0,0.85,0.9,1,25 -lemon,0.5466666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -peach,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -bowl,0.9133333333333334,1.0,0.8833333333333334,0.9166666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6916666666666667,1.0,0.6166666666666666,0.7166666666666667,1,26 -blue,0.6666666666666666,1.0,0.6333333333333332,0.7333333333333333,1,25 -used,0.735,1.0,0.6666666666666666,0.7666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -ball,0.65,1.0,0.65,0.75,1,25 -notebook,0.5716666666666665,1.0,0.5166666666666666,0.65,1,26 -garlic,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -cleaning,0.5766666666666667,1.0,0.5833333333333333,0.7,1,26 -pair,0.9400000000000001,1.0,0.9,0.9400000000000001,2,27 -container,0.5466666666666666,1.0,0.5166666666666666,0.65,1,25 -tomato,0.5366666666666666,0.7,0.6,0.5733333333333334,1,26 -cellphone,0.2533333333333333,0.6,0.4333333333333333,0.4666666666666667,1,26 -potato,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -light,0.8883333333333333,1.0,0.8666666666666668,0.9200000000000002,2,26 -green,0.9666666666666668,0.9,1.0,0.9333333333333332,3,23 -bottle,0.925,1.0,0.8999999999999998,0.9400000000000001,2,25 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6391512345679011 -F1-Score: 0.679865520282187 -Precision: 0.8856944444444445 -Recall: 0.6111111111111109 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -yellow,0.8966666666666668,0.7166666666666666,1.0,0.8133333333333332,6,23 -looks,0.5983333333333334,0.8,0.6333333333333333,0.6166666666666667,1,24 -keyboard,0.7216666666666666,1.0,0.7,0.7833333333333334,1,26 -glue,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.7633333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -flashlight,0.6583333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -cup,0.2616666666666667,0.5,0.5166666666666666,0.4833333333333334,1,26 -folded,0.6249999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -jam,0.6516666666666666,1.0,0.4999999999999999,0.65,1,26 -black,0.9666666666666668,0.9333333333333332,1.0,0.96,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.78,1.0,0.7,0.7833333333333333,1,26 -soccer,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -hat,0.5349999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -brown,0.8999999999999998,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.7216666666666666,1.0,0.6499999999999999,0.75,1,26 -handle,0.6816666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -food,0.8133333333333332,1.0,0.7166666666666666,0.8,1,25 -towel,0.575,1.0,0.5166666666666666,0.65,1,26 -chips,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -stapler,0.6333333333333333,1.0,0.6499999999999999,0.75,1,26 -onion,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -sponge,0.6633333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.6083333333333333,1.0,0.5833333333333333,0.7,1,25 -special,0.6583333333333333,1.0,0.6,0.7166666666666667,1,26 -colgate,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -leaf,0.7166666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -tube,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -cell,0.7,1.0,0.7,0.7833333333333333,1,26 -mug,0.8300000000000001,1.0,0.7166666666666666,0.8,1,26 -yogurt,0.7216666666666667,1.0,0.7,0.7833333333333333,1,26 -plantain,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -red,0.6499999999999999,0.49333333333333335,1.0,0.6416666666666667,3,25 -pepper,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -wheat,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.7633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -binder,0.725,1.0,0.6666666666666666,0.7666666666666666,1,26 -baseball,0.7383333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -pliers,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.5249999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -thins,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -package,0.8550000000000001,0.95,0.7833333333333333,0.8166666666666668,1,26 -k,0.6266666666666667,1.0,0.5,0.65,1,26 -jelly,0.705,1.0,0.6499999999999999,0.75,1,26 -fruit,0.6333333333333332,0.6166666666666666,0.8333333333333333,0.6733333333333333,2,25 -apple,0.63,0.8,0.6499999999999999,0.6166666666666667,1,25 -bell,0.5483333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -battery,0.6883333333333334,1.0,0.6,0.7166666666666667,1,26 -jar,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -bound,0.6666666666666667,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -brush,0.8,1.0,0.7166666666666666,0.8,1,26 -scissors,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -lime,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333334,1,25 -toothpaste,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -top,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -spiral,0.5466666666666666,1.0,0.5833333333333333,0.7,1,26 -handles,0.5666666666666667,1.0,0.5333333333333332,0.65,1,25 -camera,0.6666666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -eraser,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.7849999999999999,0.6333333333333333,1.0,0.7714285714285715,5,21 -banana,0.725,1.0,0.6666666666666666,0.7666666666666666,1,26 -pitcher,0.6516666666666666,1.0,0.6,0.7166666666666667,1,26 -phone,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -stick,0.7183333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -cereal,0.45499999999999996,1.0,0.4666666666666666,0.6166666666666667,1,26 -bulb,0.8566666666666667,1.0,0.8,0.8800000000000001,2,26 -hair,0.5016666666666667,1.0,0.4666666666666666,0.6166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5666666666666667,1.0,0.5833333333333333,0.7,1,26 -can,0.8916666666666666,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -crackers,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.7333333333333333,1.0,0.6499999999999999,0.75,1,25 -calculator,0.7183333333333334,0.85,0.7666666666666666,0.7333333333333333,1,26 -tissues,0.6,1.0,0.5333333333333333,0.6666666666666667,1,26 -juice,0.6416666666666667,1.0,0.5833333333333333,0.7,1,26 -pink,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -lemon,0.6133333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.7066666666666667,1.0,0.5666666666666667,0.7,1,26 -bowl,0.7166666666666666,1.0,0.7333333333333333,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -blue,0.7216666666666667,1.0,0.7166666666666666,0.8,1,25 -used,0.6766666666666666,1.0,0.55,0.6833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -ball,0.6216666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -notebook,0.5016666666666667,1.0,0.4499999999999999,0.6,1,26 -garlic,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -cleaning,0.7,1.0,0.6833333333333332,0.7666666666666666,1,26 -pair,0.96,1.0,0.9333333333333332,0.96,2,27 -container,0.78,1.0,0.7666666666666666,0.8333333333333333,1,25 -tomato,0.6516666666666666,0.9,0.6166666666666666,0.6666666666666667,1,26 -cellphone,0.5,1.0,0.5,0.6333333333333333,1,26 -potato,0.7,1.0,0.65,0.75,1,25 -light,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -green,0.8366666666666667,0.6583333333333333,1.0,0.7838095238095238,3,23 -bottle,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6454320987654322 -F1-Score: 0.6857429453262787 -Precision: 0.8967746913580247 -Recall: 0.6132716049382716 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8016666666666665,1.0,0.6833333333333333,0.7833333333333333,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.6266666666666667,1.0,0.5833333333333333,0.7,1,24 -keyboard,0.7633333333333334,1.0,0.7166666666666666,0.8,1,26 -glue,0.5166666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.42499999999999993,1.0,0.38333333333333336,0.55,1,26 -flashlight,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.375,0.5,0.5166666666666666,0.4833333333333334,1,26 -folded,0.6333333333333333,1.0,0.6666666666666666,0.75,1,26 -jam,0.5216666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -black,0.8383333333333335,0.6833333333333333,1.0,0.7980952380952381,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6633333333333333,1.0,0.5666666666666667,0.7,1,26 -soccer,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -hat,0.41666666666666663,1.0,0.4666666666666666,0.6,1,26 -brown,0.8749999999999998,1.0,0.8666666666666666,0.9200000000000002,2,25 -coffee,0.7333333333333333,1.0,0.55,0.6833333333333333,1,25 -handle,0.61,1.0,0.6333333333333333,0.7333333333333333,1,25 -food,0.8416666666666668,1.0,0.7833333333333333,0.85,1,25 -towel,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -chips,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.675,1.0,0.6666666666666666,0.7666666666666667,1,26 -onion,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -bag,0.74,1.0,0.6666666666666666,0.7666666666666666,1,26 -sponge,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.6966666666666667,1.0,0.6499999999999999,0.75,1,25 -special,0.5416666666666667,1.0,0.55,0.6666666666666666,1,26 -colgate,0.7383333333333334,1.0,0.6,0.7166666666666667,1,26 -leaf,0.59,1.0,0.5166666666666666,0.65,1,26 -tube,0.725,1.0,0.75,0.8166666666666668,1,26 -cell,0.5116666666666666,0.5,0.6666666666666666,0.5466666666666666,1,26 -mug,0.6183333333333333,1.0,0.5833333333333333,0.7,1,25 -yogurt,0.36,1.0,0.4333333333333333,0.5833333333333333,1,26 -plantain,0.5549999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -red,0.8066666666666666,0.675,1.0,0.7699999999999999,3,25 -pepper,0.635,1.0,0.5666666666666667,0.7,1,26 -wheat,0.6549999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -kleenex,0.635,1.0,0.5999999999999999,0.7166666666666666,1,26 -toothbrush,0.6933333333333334,1.0,0.6,0.7166666666666667,1,26 -binder,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -baseball,0.59,1.0,0.41666666666666663,0.5833333333333334,1,26 -pliers,0.775,1.0,0.7666666666666666,0.8333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.63,1.0,0.5166666666666666,0.65,1,26 -thins,0.7133333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -package,0.8483333333333334,1.0,0.7333333333333333,0.8166666666666668,1,26 -k,0.7016666666666667,1.0,0.5666666666666667,0.7,1,26 -jelly,0.5549999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -fruit,0.8099999999999999,0.8166666666666667,0.8999999999999998,0.8266666666666668,2,25 -apple,0.7683333333333333,0.85,0.6833333333333333,0.6833333333333333,1,25 -bell,0.5333333333333333,1.0,0.6666666666666666,0.75,1,26 -battery,0.5883333333333334,1.0,0.5166666666666666,0.65,1,26 -jar,0.56,1.0,0.5833333333333333,0.7,1,26 -bound,0.4416666666666666,1.0,0.4833333333333333,0.6166666666666666,1,26 -lettuce,0.7,1.0,0.6666666666666666,0.7666666666666666,1,26 -brush,0.705,1.0,0.55,0.6833333333333333,1,26 -scissors,0.7416666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -lime,0.5583333333333333,1.0,0.4333333333333333,0.6,1,25 -toothpaste,0.7133333333333333,1.0,0.7,0.7833333333333334,1,26 -top,0.8266666666666665,1.0,0.7833333333333333,0.85,1,26 -spiral,0.705,1.0,0.5833333333333333,0.7,1,26 -handles,0.5933333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.705,1.0,0.6499999999999999,0.75,1,26 -eraser,0.6966666666666667,1.0,0.5666666666666667,0.7,1,26 -creamer,0,0,0,0,1,26 -white,0.7966666666666666,0.6333333333333333,1.0,0.7695238095238095,5,21 -banana,0.6833333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -pitcher,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -phone,0.40166666666666667,0.65,0.6166666666666666,0.5466666666666666,1,26 -stick,0.655,1.0,0.5499999999999999,0.6833333333333333,1,25 -cereal,0.7216666666666666,1.0,0.6499999999999999,0.75,1,26 -bulb,0.915,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7216666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -can,0.8666666666666666,1.0,0.8333333333333333,0.9,2,25 -coca,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -crackers,0.5716666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -plate,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333333,1,24 -calculator,0.48999999999999994,0.7,0.6166666666666666,0.5566666666666666,1,26 -tissues,0.6183333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -juice,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -pink,0.655,1.0,0.5166666666666666,0.6666666666666667,1,25 -lemon,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -peach,0.5599999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -bowl,0.5933333333333333,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -blue,0.5549999999999999,1.0,0.5499999999999999,0.6833333333333333,1,25 -used,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.535,1.0,0.5333333333333333,0.6666666666666667,1,26 -ball,0.6666666666666667,1.0,0.65,0.75,1,25 -notebook,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -garlic,0.5416666666666666,0.95,0.6166666666666666,0.6833333333333333,1,26 -cleaning,0.655,1.0,0.5666666666666667,0.7,1,26 -pair,0.95,1.0,0.9333333333333332,0.96,2,26 -container,0.6166666666666666,1.0,0.5999999999999999,0.7,1,26 -tomato,0.655,0.75,0.6166666666666666,0.6,1,26 -cellphone,0.36333333333333334,0.65,0.5166666666666666,0.5133333333333333,1,26 -potato,0.6833333333333333,1.0,0.6499999999999999,0.75,1,25 -light,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -green,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666667,3,24 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6305709876543211 -F1-Score: 0.6765828924162257 -Precision: 0.8911265432098765 -Recall: 0.6012345679012344 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6216666666666667,1.0,0.5166666666666666,0.65,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,25 -looks,0.47166666666666657,0.95,0.45,0.5666666666666667,1,24 -keyboard,0.4766666666666667,1.0,0.5166666666666666,0.65,1,26 -glue,0.6766666666666666,1.0,0.5666666666666667,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.775,1.0,0.7499999999999999,0.8166666666666667,1,26 -flashlight,0.635,1.0,0.6,0.7166666666666667,1,26 -cup,0.6183333333333334,0.3833333333333333,0.9,0.53,1,26 -folded,0.6416666666666667,1.0,0.5166666666666666,0.65,1,26 -jam,0.7849999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -black,0.8933333333333333,0.7333333333333333,1.0,0.8266666666666665,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6299999999999999,1.0,0.6166666666666666,0.7166666666666667,1,26 -soccer,0.66,1.0,0.6499999999999999,0.75,1,26 -hat,0.7633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -brown,0.9333333333333332,1.0,0.9333333333333332,0.96,2,25 -coffee,0.63,1.0,0.55,0.6833333333333333,1,25 -handle,0.51,1.0,0.4999999999999999,0.6333333333333333,1,25 -food,0.6733333333333333,1.0,0.65,0.75,1,25 -towel,0.6399999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -chips,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -stapler,0.5683333333333332,1.0,0.5166666666666666,0.65,1,26 -onion,0.7033333333333334,0.75,0.7499999999999999,0.6666666666666667,1,26 -bag,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -sponge,0.8083333333333332,1.0,0.75,0.8166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.8,1.0,0.6666666666666666,0.7666666666666667,1,25 -special,0.5883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -colgate,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -leaf,0.655,1.0,0.5999999999999999,0.7166666666666667,1,26 -tube,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -cell,0.73,1.0,0.7166666666666666,0.8,1,26 -mug,0.7,1.0,0.6499999999999999,0.75,1,25 -yogurt,0.6216666666666666,1.0,0.5833333333333333,0.7,1,26 -plantain,0.65,1.0,0.6499999999999999,0.75,1,26 -red,0.57,0.475,1.0,0.6180952380952381,3,26 -pepper,0.6466666666666667,1.0,0.6,0.7166666666666666,1,26 -wheat,0.835,1.0,0.7833333333333333,0.85,1,26 -kleenex,0.7216666666666667,1.0,0.6333333333333333,0.75,1,26 -toothbrush,0.6033333333333333,1.0,0.5,0.65,1,26 -binder,0.5583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -baseball,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -pliers,0.45,1.0,0.4833333333333333,0.6166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.5266666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -thins,0.65,1.0,0.5499999999999999,0.6666666666666666,1,26 -package,0.7266666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -k,0.48,1.0,0.4666666666666666,0.6166666666666667,1,26 -jelly,0.5083333333333333,1.0,0.5,0.6333333333333333,1,26 -fruit,0.7083333333333333,0.6166666666666667,0.8666666666666666,0.7066666666666667,2,25 -apple,0.6566666666666667,1.0,0.6,0.7166666666666667,1,25 -bell,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -battery,0.71,1.0,0.5666666666666667,0.7,1,26 -jar,0.735,1.0,0.5666666666666667,0.7,1,26 -bound,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.5683333333333334,1.0,0.5166666666666666,0.65,1,26 -brush,0.5583333333333333,1.0,0.55,0.6666666666666666,1,26 -scissors,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -lime,0.6433333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -toothpaste,0.4083333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -top,0.905,1.0,0.8333333333333333,0.8833333333333332,1,26 -spiral,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -handles,0.7266666666666667,1.0,0.7,0.7833333333333333,1,25 -camera,0.6766666666666666,1.0,0.4999999999999999,0.65,1,26 -eraser,0.9166666666666666,1.0,0.85,0.8999999999999998,1,26 -creamer,0,0,0,0,1,26 -white,0.785,0.6083333333333333,1.0,0.7504761904761904,5,21 -banana,0.6583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -pitcher,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -phone,0.6733333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -stick,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -cereal,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -bulb,0.8416666666666666,1.0,0.8,0.8800000000000001,2,26 -hair,0.7433333333333334,1.0,0.5666666666666667,0.7,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -can,0.9266666666666665,1.0,0.9,0.9400000000000001,2,25 -coca,0.925,1.0,0.8833333333333332,0.9166666666666666,1,26 -crackers,0.6433333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -plate,0.6333333333333333,1.0,0.6,0.7166666666666667,1,24 -calculator,0.6766666666666667,0.9,0.5666666666666667,0.6333333333333334,1,26 -tissues,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.705,1.0,0.65,0.75,1,26 -pink,0.7333333333333333,1.0,0.7,0.7833333333333333,1,25 -lemon,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -peach,0.67,1.0,0.5,0.65,1,26 -bowl,0.7083333333333333,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.525,1.0,0.5666666666666667,0.6833333333333333,1,26 -blue,0.6833333333333333,0.8,0.6166666666666666,0.6166666666666666,1,25 -used,0.4966666666666667,1.0,0.5166666666666666,0.65,1,24 -energizer,0,0,0,0,1,26 -pear,0.5383333333333333,1.0,0.5,0.6333333333333334,1,26 -ball,0.7899999999999999,1.0,0.6333333333333333,0.75,1,25 -notebook,0.6483333333333333,1.0,0.4999999999999999,0.65,1,26 -garlic,0.7083333333333333,0.95,0.6166666666666666,0.7,1,26 -cleaning,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -pair,0.975,1.0,0.9666666666666666,0.9800000000000001,2,28 -container,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -tomato,0.5033333333333333,0.65,0.5333333333333333,0.5233333333333333,1,26 -cellphone,0.46333333333333326,1.0,0.38333333333333336,0.55,1,26 -potato,0.5399999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -light,0.8016666666666665,0.8333333333333333,0.8333333333333333,0.7933333333333333,2,27 -green,0.95,0.9,1.0,0.9400000000000001,3,24 -bottle,0.9600000000000002,1.0,0.9333333333333332,0.9600000000000002,2,27 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6370987654320989 -F1-Score: 0.6733818342151676 -Precision: 0.8935185185185185 -Recall: 0.5996913580246913 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8649999999999999,1.0,0.7333333333333333,0.8166666666666668,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,25 -looks,0.6466666666666666,0.95,0.6833333333333333,0.7333333333333333,1,24 -keyboard,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -glue,0.7016666666666667,1.0,0.6,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.705,1.0,0.7,0.7833333333333333,1,26 -flashlight,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.42666666666666664,0.55,0.5999999999999999,0.53,1,26 -folded,0.7833333333333333,1.0,0.75,0.8166666666666667,1,26 -jam,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -black,0.9633333333333333,0.9,1.0,0.9333333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6716666666666666,1.0,0.4666666666666666,0.6333333333333333,1,26 -soccer,0.725,1.0,0.65,0.75,1,26 -hat,0.525,1.0,0.5,0.6333333333333333,1,26 -brown,0.975,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.4883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -handle,0.5133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -food,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -towel,0.6749999999999999,1.0,0.7,0.7833333333333333,1,26 -chips,0.755,1.0,0.6499999999999999,0.75,1,26 -stapler,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -onion,0.605,1.0,0.5833333333333333,0.7,1,26 -bag,0.7483333333333333,1.0,0.5666666666666667,0.7,1,26 -sponge,0.7666666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,25 -special,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -colgate,0.8683333333333334,1.0,0.75,0.8333333333333333,1,26 -leaf,0.6166666666666667,1.0,0.5166666666666666,0.65,1,26 -tube,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -cell,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -mug,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -yogurt,0.5133333333333333,1.0,0.4166666666666667,0.5666666666666667,1,26 -plantain,0.7216666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -red,0.9,0.8,1.0,0.86,3,27 -pepper,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -wheat,0.7,1.0,0.6666666666666666,0.7666666666666667,1,26 -kleenex,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -toothbrush,0.78,1.0,0.7,0.7833333333333333,1,26 -binder,0.6816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -baseball,0.85,1.0,0.8166666666666667,0.8666666666666666,1,26 -pliers,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6633333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -thins,0.6916666666666667,1.0,0.5833333333333333,0.7,1,26 -package,0.46333333333333326,1.0,0.4833333333333332,0.6166666666666666,1,26 -k,0.7083333333333333,1.0,0.7166666666666666,0.8,1,26 -jelly,0.8016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.8266666666666668,0.7833333333333333,0.9,0.8066666666666666,2,25 -apple,0.7433333333333334,0.95,0.5833333333333333,0.6833333333333333,1,26 -bell,0.5466666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -battery,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -jar,0.7466666666666667,1.0,0.7,0.7833333333333334,1,26 -bound,0.4,1.0,0.4666666666666666,0.6,1,26 -lettuce,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -brush,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -scissors,0.6,1.0,0.5166666666666666,0.65,1,26 -lime,0.73,1.0,0.6166666666666666,0.7333333333333333,1,25 -toothpaste,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -top,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.6,1.0,0.6666666666666666,0.75,1,26 -handles,0.6016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -camera,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -eraser,0.65,1.0,0.6833333333333333,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.6933333333333332,0.4666666666666666,1.0,0.6214285714285713,5,22 -banana,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -pitcher,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -phone,0.5916666666666667,1.0,0.5833333333333333,0.7,1,26 -stick,0.7666666666666666,1.0,0.7,0.7833333333333333,1,25 -cereal,0.7083333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -bulb,0.89,1.0,0.8333333333333333,0.9,2,26 -hair,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.58,1.0,0.4833333333333333,0.6333333333333333,1,26 -can,0.93,1.0,0.9,0.9400000000000001,2,24 -coca,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -crackers,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -plate,0.7966666666666666,1.0,0.7166666666666666,0.8,1,25 -calculator,0.665,1.0,0.5333333333333333,0.6666666666666666,1,26 -tissues,0.675,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.22333333333333333,0.5,0.4666666666666666,0.4666666666666667,1,26 -pink,0.5016666666666667,1.0,0.4666666666666666,0.6166666666666667,1,25 -lemon,0.5883333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -peach,0.635,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -blue,0.63,1.0,0.5833333333333333,0.7,1,25 -used,0.6933333333333334,1.0,0.6,0.7166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.6299999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -garlic,0.6183333333333333,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.6016666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -pair,0.915,1.0,0.8666666666666668,0.9200000000000002,2,26 -container,0.7433333333333333,1.0,0.6,0.7166666666666667,1,26 -tomato,0.6083333333333333,0.8,0.5833333333333333,0.5833333333333333,1,26 -cellphone,0.7266666666666667,1.0,0.6,0.7166666666666667,1,26 -potato,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,25 -light,0.8816666666666666,1.0,0.8333333333333333,0.9,2,27 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,24 -bottle,0.8633333333333333,1.0,0.8333333333333334,0.9000000000000001,2,26 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.651033950617284 -F1-Score: 0.6877292768959437 -Precision: 0.9037037037037038 -Recall: 0.6083333333333334 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6333333333333333,1.0,0.5833333333333333,0.7,1,25 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,25 -looks,0.8416666666666666,1.0,0.8166666666666667,0.8666666666666666,1,24 -keyboard,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -glue,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.6166666666666666,1.0,0.6,0.7166666666666667,1,26 -flashlight,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.6849999999999999,0.5,0.8,0.6,1,26 -folded,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -jam,0.725,1.0,0.75,0.8166666666666667,1,26 -black,0.9083333333333334,0.8083333333333332,1.0,0.8790476190476191,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6666666666666667,1.0,0.5666666666666667,0.7,1,26 -soccer,0.6333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -hat,0.71,1.0,0.6,0.7166666666666667,1,26 -brown,0.8716666666666667,1.0,0.8333333333333333,0.9,2,24 -coffee,0.5683333333333334,1.0,0.5499999999999999,0.6833333333333333,1,25 -handle,0.7416666666666667,1.0,0.7166666666666666,0.8,1,25 -food,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -towel,0.7416666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.3,1.0,0.36666666666666664,0.5333333333333333,1,26 -onion,0.5700000000000001,1.0,0.4333333333333333,0.6,1,26 -bag,0.655,1.0,0.4666666666666666,0.6166666666666667,1,26 -sponge,0.6433333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.5966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,25 -special,0.6849999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -colgate,0.7433333333333334,1.0,0.6333333333333333,0.75,1,26 -leaf,0.63,1.0,0.55,0.6833333333333333,1,26 -tube,0.6383333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -cell,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666667,1,26 -mug,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,25 -yogurt,0.7916666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -plantain,0.6683333333333333,1.0,0.5833333333333333,0.7,1,26 -red,0.745,0.575,1.0,0.6990476190476189,3,25 -pepper,0.575,1.0,0.5499999999999999,0.6666666666666667,1,26 -wheat,0.7933333333333332,1.0,0.7166666666666666,0.8,1,26 -kleenex,0.7333333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -toothbrush,0.535,1.0,0.4666666666666666,0.6166666666666667,1,26 -binder,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -baseball,0.505,1.0,0.4999999999999999,0.6333333333333333,1,26 -pliers,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7333333333333333,1.0,0.6499999999999999,0.75,1,26 -thins,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -package,0.6666666666666666,1.0,0.7333333333333333,0.8,1,26 -k,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -jelly,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.8683333333333334,0.8166666666666667,0.9666666666666666,0.8666666666666666,2,25 -apple,0.7633333333333333,0.95,0.6666666666666666,0.7333333333333333,1,25 -bell,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -battery,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -jar,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -bound,0.705,1.0,0.55,0.6833333333333333,1,26 -lettuce,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -brush,0.4683333333333334,0.55,0.6499999999999999,0.5466666666666666,1,26 -scissors,0.6383333333333333,1.0,0.5166666666666666,0.65,1,26 -lime,0.5266666666666666,1.0,0.4666666666666666,0.6166666666666667,1,25 -toothpaste,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -top,0.5433333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.7433333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -handles,0.705,1.0,0.5833333333333333,0.7,1,25 -camera,0.7633333333333334,1.0,0.6499999999999999,0.75,1,26 -eraser,0.7433333333333333,1.0,0.6333333333333333,0.75,1,26 -creamer,0,0,0,0,1,26 -white,0.79,0.6666666666666666,1.0,0.7961904761904761,5,21 -banana,0.8300000000000001,1.0,0.7166666666666666,0.8,1,26 -pitcher,0.7466666666666666,1.0,0.7,0.7833333333333333,1,26 -phone,0.7816666666666666,1.0,0.5833333333333333,0.7166666666666667,1,26 -stick,0.755,1.0,0.7,0.7833333333333333,1,25 -cereal,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -bulb,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.45500000000000007,1.0,0.5166666666666666,0.65,1,26 -can,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -coca,0.6666666666666666,1.0,0.6666666666666666,0.75,1,26 -crackers,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -plate,0.5333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,24 -calculator,0.6500000000000001,0.95,0.5999999999999999,0.6833333333333333,1,26 -tissues,0.4583333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -juice,0.6683333333333333,1.0,0.65,0.75,1,26 -pink,0.44833333333333336,0.6,0.5999999999999999,0.5399999999999999,1,25 -lemon,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -peach,0.5966666666666666,1.0,0.5166666666666666,0.65,1,26 -bowl,0.4216666666666667,1.0,0.4333333333333334,0.5833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.675,1.0,0.5999999999999999,0.7166666666666667,1,26 -blue,0.6216666666666667,1.0,0.65,0.75,1,25 -used,0.8683333333333334,1.0,0.75,0.8333333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.675,1.0,0.5666666666666667,0.6833333333333333,1,26 -ball,0.4833333333333333,1.0,0.5499999999999999,0.6666666666666666,1,25 -notebook,0.825,1.0,0.7333333333333333,0.8166666666666667,1,26 -garlic,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -cleaning,0.445,0.55,0.5833333333333333,0.52,1,26 -pair,0.9333333333333332,1.0,0.9333333333333332,0.96,2,26 -container,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -tomato,0.7716666666666667,0.95,0.6666666666666666,0.7333333333333333,1,26 -cellphone,0.6066666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -potato,0.4966666666666666,1.0,0.4166666666666667,0.5666666666666667,1,25 -light,0.96,1.0,0.9333333333333332,0.96,2,26 -green,0.9266666666666667,0.8166666666666668,1.0,0.8799999999999999,3,23 -bottle,0.9016666666666666,1.0,0.8666666666666668,0.9200000000000002,2,27 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6467283950617284 -F1-Score: 0.6846075837742504 -Precision: 0.894753086419753 -Recall: 0.6114197530864196 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6966666666666667,1.0,0.5833333333333333,0.7,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.7283333333333333,0.75,0.7166666666666666,0.65,1,24 -keyboard,0.7150000000000001,1.0,0.6,0.7166666666666666,1,26 -glue,0.705,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.6433333333333333,1.0,0.6,0.7166666666666667,1,26 -flashlight,0.7,1.0,0.6499999999999999,0.75,1,26 -cup,0.3516666666666667,0.5,0.5166666666666666,0.4833333333333334,1,26 -folded,0.7866666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -jam,0.5416666666666666,1.0,0.41666666666666663,0.5833333333333333,1,26 -black,0.8766666666666667,0.7666666666666666,1.0,0.8514285714285714,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.8550000000000001,1.0,0.8333333333333333,0.8833333333333332,1,26 -soccer,0.7433333333333334,1.0,0.5666666666666667,0.7,1,26 -hat,0.69,1.0,0.6,0.7166666666666667,1,26 -brown,0.8433333333333334,1.0,0.8,0.8800000000000001,2,24 -coffee,0.8083333333333332,1.0,0.7333333333333333,0.8166666666666667,1,25 -handle,0.48,1.0,0.5166666666666666,0.65,1,25 -food,0.71,1.0,0.7,0.7833333333333333,1,25 -towel,0.7666666666666667,1.0,0.7166666666666666,0.8,1,26 -chips,0.8800000000000001,1.0,0.7833333333333333,0.85,1,26 -stapler,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -onion,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -bag,0.755,1.0,0.6499999999999999,0.75,1,26 -sponge,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.655,1.0,0.65,0.75,1,25 -special,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -colgate,0.5900000000000001,1.0,0.5333333333333333,0.6666666666666666,1,26 -leaf,0.8550000000000001,1.0,0.8333333333333333,0.8833333333333332,1,26 -tube,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -cell,0.5616666666666668,0.5,0.7,0.5533333333333335,1,26 -mug,0.85,1.0,0.8166666666666667,0.8666666666666666,1,25 -yogurt,0.7933333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -plantain,0.7416666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -red,0.9800000000000001,0.95,1.0,0.9666666666666666,3,27 -pepper,0.45999999999999996,1.0,0.4333333333333334,0.5833333333333333,1,26 -wheat,0.7216666666666667,1.0,0.65,0.75,1,26 -kleenex,0.605,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.7933333333333332,1.0,0.7166666666666666,0.8,1,26 -baseball,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -pliers,0.63,1.0,0.5499999999999999,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6783333333333333,1.0,0.55,0.6833333333333333,1,26 -thins,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -package,0.655,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.6399999999999999,1.0,0.5833333333333333,0.7,1,26 -fruit,0.6216666666666668,0.5666666666666667,0.8666666666666668,0.6566666666666667,2,25 -apple,0.625,1.0,0.4499999999999999,0.6166666666666667,1,26 -bell,0.85,1.0,0.7833333333333333,0.85,1,26 -battery,0.56,1.0,0.5166666666666666,0.65,1,26 -jar,0.8233333333333335,1.0,0.65,0.7666666666666667,1,26 -bound,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -lettuce,0.6333333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -brush,0.3,0.55,0.4666666666666666,0.4766666666666667,1,26 -scissors,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.655,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.6666666666666666,1.0,0.7333333333333333,0.8,1,26 -top,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -spiral,0.6516666666666666,1.0,0.4999999999999999,0.65,1,26 -handles,0.7583333333333333,1.0,0.75,0.8166666666666667,1,25 -camera,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -eraser,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.7849999999999999,0.6666666666666666,1.0,0.7961904761904762,5,20 -banana,0.6583333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -pitcher,0.6983333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -phone,0.445,0.6,0.5666666666666667,0.5333333333333333,1,26 -stick,0.6333333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -cereal,0.525,1.0,0.5166666666666666,0.65,1,26 -bulb,0.9333333333333332,1.0,0.9333333333333332,0.9600000000000002,2,26 -hair,0.5883333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7,1.0,0.6666666666666666,0.7666666666666667,1,26 -can,1.0,1.0,1.0,1.0,2,25 -coca,0.6933333333333332,1.0,0.7,0.7833333333333333,1,26 -crackers,0.635,1.0,0.4833333333333333,0.6333333333333333,1,26 -plate,0.6133333333333334,1.0,0.4833333333333333,0.6333333333333333,1,25 -calculator,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -tissues,0.5216666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -juice,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -pink,0.5583333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -lemon,0.8300000000000001,1.0,0.7833333333333333,0.85,1,26 -peach,0.6916666666666667,1.0,0.6,0.7166666666666667,1,26 -bowl,0.5799999999999998,1.0,0.4833333333333332,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5766666666666667,1.0,0.5166666666666666,0.65,1,26 -blue,0.6849999999999999,1.0,0.5666666666666667,0.7,1,25 -used,0.625,1.0,0.4833333333333333,0.6333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -ball,0.8,1.0,0.7666666666666666,0.8333333333333333,1,25 -notebook,0.85,1.0,0.8333333333333333,0.8833333333333332,1,26 -garlic,0.5999999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -cleaning,0.6066666666666666,0.65,0.6166666666666666,0.5666666666666667,1,26 -pair,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -container,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -tomato,0.6083333333333334,0.9,0.6333333333333333,0.6666666666666667,1,26 -cellphone,0.5116666666666666,0.5,0.5666666666666667,0.5133333333333333,1,26 -potato,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -light,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,25 -green,0.8583333333333334,0.7166666666666666,1.0,0.82,3,24 -bottle,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6574691358024691 -F1-Score: 0.690163139329806 -Precision: 0.8848765432098765 -Recall: 0.6212962962962963 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6166666666666666,1.0,0.5833333333333333,0.7,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.755,1.0,0.65,0.75,1,24 -keyboard,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -glue,0.7183333333333334,1.0,0.5666666666666667,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.6799999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -flashlight,0.795,1.0,0.6333333333333333,0.75,1,26 -cup,0.41,0.5,0.6166666666666666,0.53,1,25 -folded,0.6599999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -jam,0.6666666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -black,0.8516666666666668,0.6916666666666667,1.0,0.8057142857142857,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.725,1.0,0.6,0.7166666666666667,1,26 -soccer,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -hat,0.6916666666666667,1.0,0.5833333333333333,0.7,1,26 -brown,0.8300000000000001,1.0,0.8,0.8800000000000001,2,24 -coffee,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -handle,0.5416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -food,0.7549999999999999,1.0,0.6499999999999999,0.75,1,26 -towel,0.7166666666666667,1.0,0.7,0.7833333333333333,1,26 -chips,0.6,1.0,0.4833333333333333,0.6333333333333334,1,26 -stapler,0.655,1.0,0.6,0.7166666666666667,1,26 -onion,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -bag,0.6183333333333333,1.0,0.5,0.65,1,26 -sponge,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -special,0.73,1.0,0.6499999999999999,0.75,1,26 -colgate,0.7383333333333334,1.0,0.6,0.7166666666666667,1,26 -leaf,0.65,1.0,0.5833333333333333,0.7,1,26 -tube,0.4916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.8266666666666665,1.0,0.7166666666666666,0.8,1,26 -mug,0.73,1.0,0.5666666666666667,0.7,1,26 -yogurt,0.7366666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -plantain,0.6183333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -red,0.85,0.7583333333333333,1.0,0.8323809523809524,3,26 -pepper,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -wheat,0.7583333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -kleenex,0.8266666666666668,1.0,0.7333333333333333,0.8166666666666667,1,26 -toothbrush,0.5133333333333333,1.0,0.4499999999999999,0.6,1,26 -binder,0.7316666666666667,1.0,0.6,0.7166666666666667,1,26 -baseball,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -pliers,0.8216666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.48,1.0,0.4499999999999999,0.6,1,26 -thins,0.45499999999999996,1.0,0.4,0.5666666666666667,1,26 -package,0.7866666666666667,1.0,0.6333333333333333,0.75,1,26 -k,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -jelly,0.5633333333333334,1.0,0.5166666666666666,0.65,1,26 -fruit,0.7533333333333333,0.75,0.8666666666666666,0.76,2,25 -apple,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,25 -bell,0.6066666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -battery,0.63,1.0,0.5333333333333333,0.6666666666666667,1,26 -jar,0.6466666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.625,1.0,0.6166666666666666,0.7166666666666666,1,26 -lettuce,0.63,1.0,0.5833333333333333,0.7,1,26 -brush,0.7666666666666666,1.0,0.6333333333333333,0.75,1,26 -scissors,0.755,1.0,0.7,0.7833333333333333,1,26 -lime,0.6266666666666667,1.0,0.65,0.75,1,25 -toothpaste,0.5166666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -top,0.6933333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -spiral,0.53,1.0,0.4499999999999999,0.6,1,26 -handles,0.6599999999999999,1.0,0.6499999999999999,0.75,1,25 -camera,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -eraser,0.6983333333333334,1.0,0.5,0.65,1,26 -creamer,0,0,0,0,1,26 -white,0.72,0.4999999999999999,1.0,0.6514285714285715,5,21 -banana,0.75,1.0,0.7333333333333333,0.8,1,26 -pitcher,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -phone,0.7966666666666666,1.0,0.65,0.7666666666666667,1,26 -stick,0.5166666666666666,1.0,0.5166666666666666,0.65,1,25 -cereal,0.615,1.0,0.4833333333333333,0.6333333333333334,1,26 -bulb,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.58,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5716666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -can,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,24 -coca,0.5416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -crackers,0.5466666666666666,1.0,0.4833333333333332,0.6333333333333333,1,26 -plate,0.7899999999999999,1.0,0.6166666666666666,0.7333333333333334,1,24 -calculator,0.48,0.95,0.4499999999999999,0.5666666666666667,1,26 -tissues,0.775,1.0,0.7499999999999999,0.8166666666666667,1,26 -juice,0.4116666666666666,0.5,0.5833333333333333,0.51,1,26 -pink,0.5766666666666667,1.0,0.5833333333333333,0.7,1,25 -lemon,0.6666666666666666,1.0,0.7,0.7833333333333333,1,26 -peach,0.6933333333333334,1.0,0.6666666666666666,0.7666666666666666,1,26 -bowl,0.705,1.0,0.65,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.725,1.0,0.6,0.7166666666666667,1,26 -blue,0.65,1.0,0.6833333333333333,0.7666666666666666,1,25 -used,0.735,1.0,0.6166666666666666,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -ball,0.6416666666666667,1.0,0.5833333333333333,0.7,1,25 -notebook,0.7216666666666667,1.0,0.5833333333333333,0.7,1,26 -garlic,0.7016666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -cleaning,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -pair,0.915,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.825,1.0,0.7666666666666666,0.8333333333333333,1,25 -tomato,0.5133333333333333,0.75,0.5833333333333333,0.5666666666666667,1,26 -cellphone,0.6299999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -potato,0.775,1.0,0.7,0.7833333333333333,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,25 -green,0.9433333333333334,0.85,1.0,0.8999999999999998,3,24 -bottle,0.915,1.0,0.8666666666666668,0.9200000000000002,2,26 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6442438271604938 -F1-Score: 0.6803042328042329 -Precision: 0.8999999999999999 -Recall: 0.6013888888888886 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.705,1.0,0.6166666666666666,0.7333333333333333,1,25 -yellow,1.0,1.0,1.0,1.0,6,26 -looks,0.7083333333333334,0.9,0.6666666666666666,0.7,1,24 -keyboard,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -glue,0.7183333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -flashlight,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.5383333333333333,0.55,0.6166666666666666,0.54,1,26 -folded,0.61,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.4666666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -black,0.8800000000000001,0.7333333333333333,1.0,0.8266666666666668,6,22 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.7633333333333334,1.0,0.6499999999999999,0.75,1,26 -soccer,0.6466666666666667,1.0,0.6,0.7166666666666667,1,26 -hat,0.4716666666666667,1.0,0.4333333333333333,0.6,1,26 -brown,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,24 -coffee,0.7633333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -handle,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,25 -food,0.625,1.0,0.6,0.7166666666666667,1,25 -towel,0.5,1.0,0.5166666666666666,0.65,1,26 -chips,0.6599999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -stapler,0.485,1.0,0.4666666666666666,0.6166666666666667,1,26 -onion,0.675,1.0,0.6833333333333333,0.7666666666666666,1,26 -bag,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333334,1,26 -sponge,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.755,1.0,0.7,0.7833333333333333,1,25 -special,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.7266666666666667,1.0,0.6499999999999999,0.75,1,26 -leaf,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -tube,0.8299999999999998,1.0,0.7333333333333333,0.8166666666666668,1,26 -cell,0.5833333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -mug,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -yogurt,0.6166666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -plantain,0.5416666666666666,1.0,0.4833333333333333,0.6166666666666666,1,26 -red,0.9166666666666667,0.8333333333333333,1.0,0.8800000000000001,3,27 -pepper,0.8966666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -wheat,0.41666666666666663,1.0,0.4666666666666666,0.6,1,26 -kleenex,0.6933333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -toothbrush,0.8333333333333334,1.0,0.8166666666666667,0.8666666666666666,1,26 -binder,0.8266666666666665,1.0,0.7166666666666666,0.8,1,26 -baseball,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -pliers,0.7433333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.43,1.0,0.4333333333333333,0.5833333333333333,1,26 -thins,0.8233333333333335,1.0,0.6833333333333333,0.7833333333333333,1,26 -package,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -k,0.7633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -jelly,0.525,1.0,0.5499999999999999,0.6666666666666666,1,26 -fruit,0.8516666666666666,1.0,0.8,0.8800000000000001,2,27 -apple,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,25 -bell,0.7483333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -battery,0.7066666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -jar,0.6666666666666667,1.0,0.6,0.7166666666666667,1,26 -bound,0.7899999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -brush,0.5716666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -scissors,0.8100000000000002,1.0,0.7166666666666666,0.8,1,26 -lime,0.38,1.0,0.3666666666666667,0.5333333333333333,1,25 -toothpaste,0.6883333333333332,1.0,0.5666666666666667,0.7,1,26 -top,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -spiral,0.4716666666666667,1.0,0.45,0.6,1,26 -handles,0.6416666666666666,1.0,0.5999999999999999,0.7166666666666667,1,25 -camera,0.6916666666666667,1.0,0.6333333333333332,0.7333333333333333,1,26 -eraser,0.5883333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.875,0.7,1.0,0.8,5,22 -banana,0.555,1.0,0.5,0.65,1,26 -pitcher,0.63,1.0,0.5833333333333333,0.7,1,26 -phone,0.75,1.0,0.6666666666666666,0.7666666666666667,1,26 -stick,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666666,1,25 -cereal,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bulb,0.9600000000000002,1.0,0.9333333333333332,0.9600000000000002,2,27 -hair,0.5216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5916666666666667,1.0,0.5833333333333333,0.7,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,25 -coca,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -crackers,0.76,1.0,0.6,0.7166666666666667,1,26 -plate,0.7666666666666666,1.0,0.7166666666666666,0.8,1,25 -calculator,0.735,0.75,0.7333333333333333,0.6666666666666667,1,26 -tissues,0.6466666666666666,1.0,0.7,0.7833333333333333,1,26 -juice,0.16666666666666669,0.5,0.4833333333333332,0.4633333333333334,1,26 -pink,0.7166666666666666,1.0,0.6166666666666666,0.7333333333333333,1,25 -lemon,0.78,1.0,0.7333333333333333,0.8166666666666667,1,26 -peach,0.5650000000000001,1.0,0.5333333333333332,0.6666666666666666,1,26 -bowl,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6916666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -blue,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -used,0.5549999999999999,1.0,0.6333333333333333,0.7333333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -ball,0.505,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -cleaning,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -pair,0.8433333333333334,1.0,0.8,0.8800000000000001,2,27 -container,0.6900000000000001,1.0,0.5666666666666667,0.7,1,26 -tomato,0.7216666666666666,0.75,0.7166666666666666,0.6666666666666667,1,26 -cellphone,0.7233333333333333,1.0,0.5333333333333333,0.6833333333333333,1,26 -potato,0.8066666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -light,0.8700000000000001,1.0,0.8,0.8800000000000001,2,27 -green,0.9666666666666668,0.9,1.0,0.9333333333333332,3,24 -bottle,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6460339506172842 -F1-Score: 0.6874691358024692 -Precision: 0.9038580246913581 -Recall: 0.6069444444444444 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6183333333333333,1.0,0.5333333333333333,0.6666666666666667,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.6,1.0,0.4833333333333333,0.6333333333333333,1,24 -keyboard,0.755,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.4166666666666667,1.0,0.5499999999999999,0.6666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.525,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.605,1.0,0.5833333333333333,0.7,1,26 -cup,0.28833333333333333,0.55,0.4,0.45,1,26 -folded,0.6516666666666666,1.0,0.55,0.6833333333333333,1,26 -jam,0.6216666666666667,1.0,0.6499999999999999,0.75,1,26 -black,0.9633333333333335,0.9166666666666666,1.0,0.9466666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -soccer,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -hat,0.73,1.0,0.7,0.7833333333333333,1,26 -brown,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,24 -coffee,0.5466666666666666,1.0,0.4833333333333333,0.6333333333333333,1,25 -handle,0.65,1.0,0.5833333333333333,0.7,1,26 -food,0.54,1.0,0.4333333333333333,0.6,1,25 -towel,0.605,1.0,0.5166666666666666,0.65,1,26 -chips,0.8150000000000001,1.0,0.6333333333333333,0.75,1,26 -stapler,0.6566666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.6666666666666667,1.0,0.65,0.75,1,26 -bag,0.6499999999999999,1.0,0.6499999999999999,0.75,1,26 -sponge,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666667,1,25 -special,0.78,1.0,0.7333333333333333,0.8166666666666667,1,26 -colgate,0.7633333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -leaf,0.6966666666666667,1.0,0.7,0.7833333333333333,1,26 -tube,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666668,1,26 -cell,0.67,0.6,0.7833333333333333,0.6166666666666667,1,26 -mug,0.7433333333333333,1.0,0.6499999999999999,0.75,1,25 -yogurt,0.73,1.0,0.6333333333333332,0.7333333333333333,1,26 -plantain,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -red,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666667,3,26 -pepper,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -wheat,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.5333333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -toothbrush,0.6866666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -binder,0.6183333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -baseball,0.6666666666666666,1.0,0.4999999999999999,0.65,1,26 -pliers,0.6416666666666667,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5383333333333333,1.0,0.41666666666666663,0.5833333333333333,1,26 -thins,0.74,1.0,0.6666666666666666,0.7666666666666666,1,26 -package,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -k,0.5216666666666666,1.0,0.5833333333333333,0.7,1,26 -jelly,0.6166666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -fruit,0.7733333333333333,0.7833333333333333,0.8666666666666666,0.78,2,25 -apple,0.6833333333333333,0.9,0.7,0.7166666666666667,1,26 -bell,0.55,1.0,0.5,0.65,1,26 -battery,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jar,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -bound,0.6666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -lettuce,0.7033333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -brush,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -scissors,0.675,1.0,0.7,0.7833333333333333,1,26 -lime,0.6916666666666667,1.0,0.6333333333333332,0.7333333333333333,1,25 -toothpaste,0.4833333333333334,1.0,0.5,0.6333333333333333,1,26 -top,0.5016666666666667,1.0,0.4,0.5666666666666667,1,26 -spiral,0.6383333333333333,1.0,0.5166666666666666,0.65,1,26 -handles,0.63,1.0,0.5166666666666666,0.65,1,25 -camera,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -eraser,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.79,0.7083333333333333,1.0,0.8266666666666665,5,20 -banana,0.6216666666666667,1.0,0.6,0.7166666666666666,1,26 -pitcher,0.8583333333333332,1.0,0.75,0.8333333333333334,1,26 -phone,0.55,0.55,0.5999999999999999,0.5366666666666667,1,26 -stick,0.6466666666666666,1.0,0.5833333333333333,0.7,1,25 -cereal,0.7466666666666666,1.0,0.7166666666666666,0.8,1,26 -bulb,0.9550000000000001,1.0,0.9333333333333332,0.96,2,27 -hair,0.44666666666666666,1.0,0.4833333333333333,0.6166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -can,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,24 -coca,0.605,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.5349999999999999,1.0,0.4333333333333333,0.6,1,26 -plate,0.65,1.0,0.7,0.7833333333333333,1,25 -calculator,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -tissues,0.7266666666666667,1.0,0.65,0.75,1,26 -juice,0.48999999999999994,0.5,0.6166666666666666,0.53,1,26 -pink,0.8099999999999999,1.0,0.6666666666666666,0.7666666666666667,1,25 -lemon,0.7083333333333333,1.0,0.65,0.75,1,26 -peach,0.45,1.0,0.4,0.5666666666666667,1,26 -bowl,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5916666666666667,1.0,0.5833333333333333,0.7,1,26 -blue,0.8550000000000001,1.0,0.7833333333333333,0.85,1,25 -used,0.6849999999999999,1.0,0.65,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -ball,0.6900000000000001,1.0,0.5999999999999999,0.7166666666666667,1,25 -notebook,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -cleaning,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -pair,0.86,1.0,0.8333333333333333,0.9,2,27 -container,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -tomato,0.7366666666666666,0.85,0.7166666666666666,0.7166666666666666,1,26 -cellphone,0.6866666666666666,0.6,0.7833333333333333,0.6166666666666667,1,26 -potato,0.6816666666666666,1.0,0.6166666666666666,0.7333333333333334,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -green,0.9466666666666667,0.85,1.0,0.9,3,24 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6371141975308642 -F1-Score: 0.6817283950617282 -Precision: 0.8952932098765432 -Recall: 0.6044753086419753 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6466666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -yellow,0.9466666666666667,0.8666666666666666,1.0,0.9133333333333333,6,25 -looks,0.42333333333333334,0.75,0.5333333333333332,0.55,1,24 -keyboard,0.6,1.0,0.6166666666666666,0.7166666666666667,1,26 -glue,0.6833333333333333,1.0,0.6666666666666666,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.4633333333333334,1.0,0.4333333333333334,0.6,1,26 -flashlight,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.43000000000000005,0.5,0.5666666666666667,0.5133333333333333,1,26 -folded,0.65,1.0,0.6499999999999999,0.75,1,26 -jam,0.7216666666666667,1.0,0.6,0.7166666666666667,1,26 -black,0.93,0.8583333333333332,1.0,0.9123809523809523,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.73,1.0,0.7166666666666666,0.8,1,26 -soccer,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -hat,0.675,1.0,0.7,0.7833333333333333,1,26 -brown,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -coffee,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -handle,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -food,0.6183333333333334,1.0,0.5166666666666666,0.65,1,25 -towel,0.8150000000000001,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.6566666666666666,1.0,0.5,0.65,1,26 -stapler,0.6633333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -onion,0.66,1.0,0.65,0.75,1,26 -bag,0.5333333333333333,1.0,0.5833333333333333,0.7,1,26 -sponge,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -special,0.74,1.0,0.6666666666666666,0.7666666666666667,1,26 -colgate,0.5516666666666665,1.0,0.5166666666666666,0.65,1,26 -leaf,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -cell,0.7566666666666666,1.0,0.5666666666666667,0.7,1,26 -mug,0.635,1.0,0.4833333333333333,0.6333333333333333,1,26 -yogurt,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -plantain,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -red,0.6966666666666667,0.5866666666666667,1.0,0.7166666666666666,3,25 -pepper,0.6633333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -wheat,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -kleenex,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -toothbrush,0.7066666666666668,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -baseball,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -pliers,0.7916666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5583333333333333,1.0,0.5,0.65,1,26 -thins,0.61,1.0,0.4833333333333333,0.6333333333333334,1,26 -package,0.6966666666666667,0.95,0.6833333333333333,0.7333333333333333,1,26 -k,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -jelly,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333334,1,26 -fruit,0.6749999999999999,0.6666666666666667,0.8333333333333333,0.7033333333333334,2,26 -apple,0.5499999999999999,0.95,0.5666666666666667,0.65,1,26 -bell,0.73,1.0,0.7,0.7833333333333333,1,26 -battery,0.7649999999999999,1.0,0.5833333333333333,0.7166666666666667,1,26 -jar,0.5599999999999999,0.9,0.5333333333333333,0.6,1,26 -bound,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.6483333333333332,1.0,0.5666666666666667,0.7,1,26 -brush,0.8133333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -scissors,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -lime,0.5466666666666666,1.0,0.4833333333333333,0.6333333333333334,1,25 -toothpaste,0.66,1.0,0.6499999999999999,0.75,1,26 -top,0.61,1.0,0.5333333333333333,0.6666666666666666,1,26 -spiral,0.6416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -handles,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -camera,0.5966666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -eraser,0.5083333333333333,1.0,0.4833333333333332,0.6333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.7816666666666667,0.6583333333333334,1.0,0.7904761904761904,5,20 -banana,0.6683333333333332,0.85,0.6166666666666666,0.6333333333333333,1,26 -pitcher,0.905,1.0,0.8333333333333333,0.8833333333333332,1,26 -phone,0.6383333333333334,1.0,0.4999999999999999,0.65,1,26 -stick,0.6716666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -cereal,0.63,1.0,0.6499999999999999,0.75,1,26 -bulb,0.7916666666666667,1.0,0.7666666666666667,0.8600000000000001,2,26 -hair,0.5816666666666667,0.85,0.5833333333333333,0.6166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -can,0.9400000000000001,1.0,0.9,0.9400000000000001,2,24 -coca,0.5383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -crackers,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -plate,0.38,1.0,0.4833333333333332,0.6166666666666666,1,25 -calculator,0.5666666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -tissues,0.635,1.0,0.4999999999999999,0.65,1,26 -juice,0.7666666666666666,1.0,0.7999999999999999,0.85,1,26 -pink,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -lemon,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -peach,0.6633333333333333,1.0,0.65,0.75,1,26 -bowl,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -blue,0.6583333333333333,0.9,0.6499999999999999,0.6833333333333333,1,25 -used,0.715,1.0,0.6666666666666666,0.7666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.4916666666666666,1.0,0.4833333333333333,0.6166666666666666,1,26 -ball,0.7883333333333333,1.0,0.7,0.7833333333333333,1,25 -notebook,0.6,1.0,0.5833333333333333,0.7,1,26 -garlic,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -cleaning,0.565,1.0,0.4666666666666666,0.6166666666666666,1,26 -pair,0.9400000000000001,1.0,0.9,0.9400000000000001,2,26 -container,0.41666666666666663,1.0,0.4333333333333333,0.5833333333333333,1,26 -tomato,0.5016666666666667,0.65,0.7,0.5833333333333334,1,26 -cellphone,0.86,1.0,0.7333333333333333,0.8166666666666667,1,26 -potato,0.6766666666666666,1.0,0.45,0.6166666666666667,1,25 -light,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -green,0.8766666666666667,0.7583333333333333,1.0,0.8457142857142858,3,24 -bottle,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6305555555555555 -F1-Score: 0.6797089947089946 -Precision: 0.8953240740740741 -Recall: 0.6054012345679013 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6766666666666666,1.0,0.4666666666666666,0.6333333333333334,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.58,1.0,0.5499999999999999,0.6666666666666666,1,24 -keyboard,0.58,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.7583333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.505,1.0,0.4833333333333333,0.6333333333333333,1,26 -flashlight,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.4166666666666667,0.6,0.5,0.5066666666666666,1,26 -folded,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -jam,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -black,0.9400000000000001,0.85,1.0,0.9,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -soccer,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -hat,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -brown,0.925,1.0,0.9,0.9400000000000001,2,24 -coffee,0.74,1.0,0.5666666666666667,0.7,1,25 -handle,0.705,1.0,0.6499999999999999,0.75,1,25 -food,0.78,1.0,0.6166666666666666,0.7333333333333333,1,25 -towel,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -chips,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -stapler,0.7166666666666666,1.0,0.6833333333333332,0.7666666666666666,1,26 -onion,0.6216666666666666,0.9,0.6333333333333333,0.6666666666666667,1,26 -bag,0.7216666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -sponge,0.7,1.0,0.5999999999999999,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7066666666666667,1.0,0.55,0.6833333333333333,1,25 -special,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -colgate,0.6399999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -leaf,0.71,1.0,0.6166666666666666,0.7333333333333334,1,26 -tube,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -cell,0.5366666666666666,0.65,0.6,0.5566666666666668,1,26 -mug,0.765,1.0,0.6666666666666666,0.7666666666666666,1,25 -yogurt,0.5083333333333333,1.0,0.4833333333333334,0.6166666666666666,1,26 -plantain,0.75,1.0,0.7666666666666666,0.8333333333333333,1,26 -red,0.9800000000000001,0.95,1.0,0.9666666666666666,3,24 -pepper,0.7999999999999999,1.0,0.8166666666666667,0.8666666666666666,1,26 -wheat,0.5516666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -kleenex,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -toothbrush,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -binder,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666668,1,26 -baseball,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -pliers,0.58,1.0,0.5499999999999999,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7466666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -thins,0.7016666666666667,1.0,0.55,0.6833333333333333,1,26 -package,0.6799999999999999,1.0,0.65,0.75,1,26 -k,0.7633333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -jelly,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -fruit,0.8433333333333334,1.0,0.8,0.8800000000000001,2,26 -apple,0.69,1.0,0.5666666666666667,0.7,1,25 -bell,0.8299999999999998,1.0,0.7333333333333333,0.8166666666666667,1,26 -battery,0.5416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -jar,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -bound,0.6433333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -lettuce,0.78,1.0,0.6833333333333333,0.7833333333333334,1,26 -brush,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -scissors,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333334,1,25 -toothpaste,0.6366666666666666,1.0,0.4999999999999999,0.65,1,26 -top,0.8516666666666666,1.0,0.7,0.8,1,26 -spiral,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -handles,0.5216666666666666,1.0,0.5166666666666666,0.65,1,25 -camera,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -eraser,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.7483333333333333,0.6416666666666666,1.0,0.7752380952380953,5,21 -banana,0.42666666666666664,1.0,0.45,0.6,1,26 -pitcher,0.72,1.0,0.6166666666666666,0.7333333333333333,1,26 -phone,0.47000000000000003,0.7,0.5833333333333333,0.5566666666666666,1,26 -stick,0.575,1.0,0.5666666666666667,0.6833333333333333,1,25 -cereal,0.63,1.0,0.5333333333333333,0.6666666666666666,1,26 -bulb,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -hair,0.6983333333333334,1.0,0.6,0.7166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -can,0.9400000000000001,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -crackers,0.655,1.0,0.5666666666666667,0.7,1,26 -plate,0.6849999999999999,1.0,0.6499999999999999,0.75,1,25 -calculator,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -tissues,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -pink,0.51,1.0,0.4666666666666666,0.6166666666666667,1,25 -lemon,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -peach,0.5133333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -bowl,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.615,1.0,0.5499999999999999,0.6833333333333333,1,26 -blue,0.71,0.95,0.6499999999999999,0.7166666666666666,1,25 -used,0.5716666666666665,1.0,0.4833333333333332,0.6333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.74,1.0,0.5833333333333333,0.7166666666666667,1,26 -ball,0.7333333333333333,1.0,0.6499999999999999,0.75,1,25 -notebook,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -garlic,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -cleaning,0.705,1.0,0.6499999999999999,0.75,1,26 -pair,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -container,0.45499999999999996,1.0,0.45,0.6,1,26 -tomato,0.5566666666666666,0.8,0.5833333333333333,0.5833333333333333,1,26 -cellphone,0.5383333333333333,0.65,0.6499999999999999,0.58,1,26 -potato,0.7466666666666667,1.0,0.65,0.75,1,25 -light,0.8766666666666666,1.0,0.8333333333333333,0.9,2,27 -green,0.9333333333333333,0.8,1.0,0.8666666666666666,3,24 -bottle,0.8433333333333334,1.0,0.8,0.8800000000000001,2,26 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6501234567901235 -F1-Score: 0.6854805996472663 -Precision: 0.9027006172839506 -Recall: 0.604320987654321 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7466666666666666,1.0,0.5999999999999999,0.7166666666666667,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.8133333333333332,0.85,0.8166666666666667,0.7666666666666666,1,24 -keyboard,0.675,1.0,0.6833333333333332,0.7666666666666666,1,26 -glue,0.5466666666666666,1.0,0.6333333333333333,0.7333333333333334,1,26 -milk,0,0,0,0,1,26 -cola,0.6416666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -flashlight,0.775,1.0,0.7,0.7833333333333333,1,26 -cup,0.4416666666666667,0.55,0.5999999999999999,0.53,1,26 -folded,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.8466666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -black,0.8483333333333333,0.6333333333333333,1.0,0.76,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7,1.0,0.5999999999999999,0.7166666666666666,1,26 -soccer,0.7749999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -hat,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -brown,0.8683333333333334,1.0,0.8333333333333333,0.9,2,25 -coffee,0.6183333333333334,1.0,0.5166666666666666,0.65,1,26 -handle,0.6466666666666666,1.0,0.5833333333333333,0.7,1,25 -food,0.45999999999999996,1.0,0.5166666666666666,0.65,1,24 -towel,0.5916666666666667,1.0,0.5833333333333333,0.7,1,26 -chips,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -stapler,0.6516666666666666,1.0,0.5166666666666666,0.65,1,26 -onion,0.8916666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -bag,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.4833333333333333,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.775,1.0,0.6833333333333333,0.7833333333333333,1,25 -special,0.7583333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -colgate,0.8,1.0,0.6833333333333333,0.7833333333333334,1,26 -leaf,0.48,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.6666666666666666,1.0,0.6833333333333332,0.7666666666666666,1,26 -cell,0.4633333333333334,0.7,0.5166666666666666,0.53,1,26 -mug,0.5716666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -yogurt,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -plantain,0.6833333333333333,1.0,0.65,0.75,1,26 -red,0.9333333333333332,0.8666666666666666,1.0,0.9,3,24 -pepper,0.7916666666666667,1.0,0.7166666666666666,0.8,1,26 -wheat,0.6499999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.85,1.0,0.8,0.85,1,26 -toothbrush,0.53,1.0,0.5499999999999999,0.6666666666666666,1,26 -binder,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.6133333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -pliers,0.7083333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -thins,0.7483333333333333,1.0,0.5666666666666667,0.7,1,26 -package,0.5133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -k,0.755,1.0,0.7166666666666666,0.8,1,26 -jelly,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.865,0.8,0.9,0.8066666666666666,2,25 -apple,0.44666666666666666,1.0,0.4333333333333333,0.5833333333333333,1,25 -bell,0.5433333333333332,1.0,0.4833333333333333,0.6333333333333333,1,26 -battery,0.525,1.0,0.55,0.6666666666666667,1,26 -jar,0.7666666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -bound,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.3916666666666666,1.0,0.38333333333333336,0.55,1,26 -scissors,0.735,1.0,0.6166666666666666,0.7333333333333333,1,26 -lime,0.7,1.0,0.6499999999999999,0.75,1,25 -toothpaste,0.6333333333333333,1.0,0.6,0.7166666666666667,1,26 -top,0.5916666666666666,1.0,0.5166666666666666,0.65,1,26 -spiral,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -handles,0.6133333333333333,1.0,0.55,0.6833333333333333,1,25 -camera,0.4499999999999999,1.0,0.4833333333333332,0.6166666666666666,1,26 -eraser,0.6333333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.7416666666666667,0.5666666666666667,1.0,0.7061904761904761,5,21 -banana,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -pitcher,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -phone,0.6166666666666667,0.6,0.7666666666666666,0.6066666666666667,1,26 -stick,0.6666666666666666,1.0,0.6,0.7166666666666667,1,25 -cereal,0.6416666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -bulb,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -hair,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -can,0.93,1.0,0.9,0.9400000000000001,2,24 -coca,0.6,1.0,0.5833333333333333,0.7,1,26 -crackers,0.5249999999999999,1.0,0.5166666666666666,0.65,1,26 -plate,0.6883333333333332,1.0,0.6,0.7166666666666667,1,25 -calculator,0.3833333333333333,1.0,0.4666666666666666,0.6,1,26 -tissues,0.8800000000000001,1.0,0.8333333333333333,0.8833333333333332,1,26 -juice,0.48166666666666663,0.5,0.6666666666666666,0.5466666666666666,1,26 -pink,0.63,1.0,0.6333333333333333,0.7333333333333333,1,25 -lemon,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -peach,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -bowl,0.4383333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -blue,0.78,1.0,0.65,0.75,1,25 -used,0.7716666666666667,1.0,0.6166666666666666,0.7333333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -ball,0.79,1.0,0.6333333333333333,0.75,1,25 -notebook,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -garlic,0.6583333333333333,1.0,0.5166666666666666,0.65,1,26 -cleaning,0.63,1.0,0.4833333333333333,0.6333333333333334,1,26 -pair,0.8816666666666666,1.0,0.8333333333333333,0.9,2,26 -container,0.65,1.0,0.5499999999999999,0.6833333333333333,1,26 -tomato,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -cellphone,0.43666666666666665,0.6,0.5166666666666666,0.51,1,26 -potato,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -light,0.9066666666666666,1.0,0.8666666666666668,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6362345679012344 -F1-Score: 0.6839153439153439 -Precision: 0.8950617283950616 -Recall: 0.6104938271604937 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5599999999999999,1.0,0.5,0.6333333333333333,1,25 -yellow,0.9633333333333333,0.9,1.0,0.9333333333333332,6,24 -looks,0.51,0.9,0.5666666666666667,0.6333333333333333,1,24 -keyboard,0.6016666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -glue,0.7433333333333334,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.63,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -cup,0.195,0.5,0.5166666666666666,0.4833333333333333,1,26 -folded,0.6666666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -jam,0.5916666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.9633333333333333,0.9,1.0,0.9333333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6666666666666666,1.0,0.65,0.75,1,26 -soccer,0.715,1.0,0.6166666666666666,0.7333333333333334,1,26 -hat,0.7383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -brown,0.8633333333333333,1.0,0.8333333333333333,0.9,2,24 -coffee,0.76,1.0,0.6666666666666666,0.7666666666666667,1,26 -handle,0.76,1.0,0.65,0.75,1,26 -food,0.67,1.0,0.5166666666666666,0.6666666666666667,1,24 -towel,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.655,1.0,0.5833333333333333,0.7,1,26 -stapler,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -onion,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.5466666666666666,1.0,0.55,0.6666666666666667,1,26 -sponge,0.7466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7583333333333333,1.0,0.65,0.75,1,26 -special,0.6799999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -colgate,0.6466666666666667,1.0,0.6,0.7166666666666667,1,26 -leaf,0.885,1.0,0.75,0.8333333333333333,1,26 -tube,0.71,1.0,0.6666666666666666,0.7666666666666667,1,26 -cell,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -mug,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -yogurt,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -plantain,0.5333333333333333,1.0,0.5,0.6333333333333333,1,26 -red,0.7033333333333333,0.6033333333333333,1.0,0.7433333333333334,3,24 -pepper,0.705,1.0,0.5999999999999999,0.7166666666666667,1,26 -wheat,0.505,1.0,0.4833333333333333,0.6333333333333333,1,26 -kleenex,0.76,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.6183333333333333,1.0,0.4999999999999999,0.65,1,26 -binder,0.53,1.0,0.4666666666666666,0.6166666666666666,1,26 -baseball,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -pliers,0.43,1.0,0.5,0.6333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.5549999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -package,0.7666666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.40166666666666667,1.0,0.4,0.5666666666666667,1,26 -jelly,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.7416666666666666,0.65,0.9333333333333332,0.7433333333333334,2,25 -apple,0.6216666666666667,0.85,0.6333333333333332,0.6333333333333333,1,25 -bell,0.6333333333333333,1.0,0.6,0.7,1,26 -battery,0.6333333333333333,1.0,0.7333333333333333,0.8,1,26 -jar,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -bound,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.7666666666666666,1.0,0.7333333333333333,0.8,1,26 -brush,0.7,1.0,0.5833333333333333,0.7,1,26 -scissors,0.6916666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -lime,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666668,1,25 -toothpaste,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -top,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -spiral,0.4583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -handles,0.745,1.0,0.5333333333333333,0.6833333333333333,1,25 -camera,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -eraser,0.65,1.0,0.6166666666666666,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.8033333333333333,0.625,1.0,0.7638095238095238,5,20 -banana,0.6416666666666666,1.0,0.5166666666666666,0.65,1,26 -pitcher,0.53,1.0,0.5166666666666666,0.65,1,26 -phone,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -stick,0.5666666666666667,1.0,0.6333333333333333,0.7333333333333334,1,25 -cereal,0.65,1.0,0.6666666666666666,0.75,1,26 -bulb,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -can,0.8683333333333334,1.0,0.8333333333333333,0.9,2,25 -coca,0.6233333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -crackers,0.6183333333333333,1.0,0.5833333333333333,0.7,1,26 -plate,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,25 -calculator,0.44666666666666666,0.9,0.5499999999999999,0.6,1,26 -tissues,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -juice,0.8333333333333333,1.0,0.7833333333333333,0.85,1,26 -pink,0.6599999999999999,1.0,0.5333333333333333,0.6666666666666667,1,25 -lemon,0.605,1.0,0.5833333333333333,0.7,1,26 -peach,0.4766666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -bowl,0.78,1.0,0.7,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -blue,0.6933333333333332,1.0,0.6333333333333333,0.7333333333333333,1,25 -used,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666667,1,23 -energizer,0,0,0,0,1,26 -pear,0.705,1.0,0.5999999999999999,0.7166666666666666,1,26 -ball,0.5816666666666667,1.0,0.4333333333333333,0.6,1,25 -notebook,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -garlic,0.7016666666666667,1.0,0.55,0.6833333333333333,1,26 -cleaning,0.6749999999999999,1.0,0.6499999999999999,0.75,1,26 -pair,1.0,1.0,1.0,1.0,2,27 -container,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -tomato,0.5833333333333333,0.65,0.7,0.5833333333333334,1,26 -cellphone,0.6166666666666666,1.0,0.5166666666666666,0.65,1,26 -potato,0.5716666666666665,1.0,0.5333333333333332,0.6666666666666666,1,25 -light,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -green,0.8933333333333333,0.75,1.0,0.8400000000000001,3,23 -bottle,0.905,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6344135802469137 -F1-Score: 0.6766402116402117 -Precision: 0.9002623456790123 -Recall: 0.597685185185185 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5833333333333333,1.0,0.6333333333333332,0.7333333333333333,1,24 -yellow,0.8800000000000001,0.6666666666666666,1.0,0.78,6,25 -looks,0.4133333333333333,0.85,0.4499999999999999,0.55,1,24 -keyboard,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.65,1.0,0.6499999999999999,0.75,1,26 -flashlight,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -cup,0.46333333333333326,0.5,0.65,0.5366666666666667,1,26 -folded,0.7266666666666667,1.0,0.55,0.6833333333333333,1,26 -jam,0.6416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.95,0.8833333333333332,1.0,0.9266666666666665,6,20 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -soccer,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -hat,0.7383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -brown,0.9266666666666665,1.0,0.9,0.9400000000000001,2,24 -coffee,0.4966666666666667,1.0,0.45,0.6166666666666667,1,25 -handle,0.675,1.0,0.65,0.75,1,25 -food,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -towel,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -chips,0.7816666666666666,1.0,0.6333333333333333,0.75,1,26 -stapler,0.6716666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.7433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -bag,0.71,1.0,0.5999999999999999,0.7166666666666667,1,26 -sponge,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -zero,0,0,0,0,1,26 -computer,0.615,1.0,0.5333333333333333,0.6666666666666667,1,26 -special,0.6216666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -colgate,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -tube,0.4416666666666666,1.0,0.4,0.5666666666666667,1,26 -cell,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -mug,0.825,1.0,0.7666666666666666,0.8333333333333333,1,25 -yogurt,0.8666666666666668,1.0,0.7833333333333333,0.85,1,26 -plantain,0.6266666666666667,0.9,0.5499999999999999,0.6166666666666667,1,26 -red,0.795,0.65,1.0,0.7647619047619048,3,25 -pepper,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.7649999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.7483333333333333,1.0,0.5666666666666667,0.7,1,26 -toothbrush,0.7083333333333333,1.0,0.5833333333333333,0.7,1,26 -binder,0.5166666666666667,1.0,0.5833333333333333,0.7,1,26 -baseball,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -pliers,0.7633333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.635,1.0,0.5999999999999999,0.7166666666666666,1,26 -thins,0.5683333333333332,1.0,0.5333333333333333,0.6666666666666666,1,26 -package,0.6499999999999999,0.8,0.65,0.6166666666666667,1,26 -k,0.75,1.0,0.7,0.7833333333333333,1,26 -jelly,0.8,1.0,0.7333333333333333,0.8166666666666668,1,26 -fruit,0.6649999999999999,0.6666666666666667,0.8333333333333334,0.7033333333333334,2,26 -apple,0.695,0.8,0.6833333333333333,0.6833333333333333,1,25 -bell,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -jar,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -bound,0.775,1.0,0.7166666666666666,0.8,1,26 -lettuce,0.6433333333333333,1.0,0.5666666666666667,0.7,1,26 -brush,0.6133333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -scissors,0.5199999999999999,1.0,0.41666666666666663,0.5833333333333333,1,26 -lime,0.6333333333333333,1.0,0.6,0.7166666666666667,1,25 -toothpaste,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -top,0.6083333333333334,1.0,0.6833333333333333,0.7666666666666666,1,26 -spiral,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -handles,0.6133333333333334,1.0,0.4833333333333333,0.6333333333333334,1,25 -camera,0.4216666666666667,1.0,0.38333333333333336,0.55,1,26 -eraser,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -creamer,0,0,0,0,1,26 -white,0.7866666666666666,0.625,1.0,0.7638095238095238,5,21 -banana,0.78,0.9,0.6833333333333333,0.7166666666666667,1,26 -pitcher,0.6233333333333333,1.0,0.5166666666666666,0.65,1,26 -phone,0.42666666666666664,1.0,0.4499999999999999,0.6,1,26 -stick,0.735,1.0,0.5333333333333333,0.6833333333333333,1,25 -cereal,0.475,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.95,1.0,0.9333333333333332,0.96,2,26 -hair,0.6799999999999999,0.85,0.7,0.6833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.4683333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -can,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -coca,0.7366666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -crackers,0.5966666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -plate,0.7466666666666667,1.0,0.7,0.7833333333333333,1,25 -calculator,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -tissues,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -juice,0.5816666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -pink,0.6083333333333333,1.0,0.5166666666666666,0.65,1,25 -lemon,0.6083333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -peach,0.6749999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -bowl,0.8083333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6966666666666667,1.0,0.6333333333333332,0.7333333333333333,1,26 -blue,0.7433333333333334,0.9,0.6833333333333333,0.7166666666666667,1,25 -used,0.7083333333333333,1.0,0.5999999999999999,0.7166666666666666,1,23 -energizer,0,0,0,0,1,26 -pear,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -ball,0.5966666666666667,1.0,0.5166666666666666,0.65,1,25 -notebook,0.4883333333333333,1.0,0.5,0.6333333333333333,1,26 -garlic,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.74,1.0,0.5999999999999999,0.7166666666666667,1,26 -pair,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,27 -container,0.85,1.0,0.7833333333333333,0.85,1,26 -tomato,0.6566666666666666,0.6,0.7333333333333333,0.6,1,26 -cellphone,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -potato,0.7633333333333333,1.0,0.6499999999999999,0.75,1,25 -light,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -green,0.9383333333333335,0.8833333333333332,1.0,0.9266666666666667,3,23 -bottle,0.8816666666666666,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6414814814814813 -F1-Score: 0.6800485008818342 -Precision: 0.8932870370370372 -Recall: 0.6063271604938271 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.85,1.0,0.8166666666666667,0.8666666666666666,1,25 -yellow,0.9833333333333334,0.9666666666666666,1.0,0.9800000000000001,6,24 -looks,0.77,0.7,0.8166666666666667,0.6833333333333333,1,24 -keyboard,0.73,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.575,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.5933333333333333,0.5,0.7999999999999999,0.5866666666666667,1,26 -folded,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -jam,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -black,0.9066666666666666,0.8,1.0,0.8733333333333334,6,22 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -soccer,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -hat,0.8566666666666667,1.0,0.7,0.8,1,26 -brown,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -coffee,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -handle,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -food,0.73,1.0,0.7,0.7833333333333333,1,24 -towel,0.8,1.0,0.7166666666666666,0.8,1,26 -chips,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -stapler,0.635,1.0,0.6,0.7166666666666666,1,26 -onion,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -bag,0.655,1.0,0.55,0.6833333333333333,1,26 -sponge,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.705,1.0,0.5833333333333333,0.7166666666666667,1,25 -special,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.425,1.0,0.4,0.5666666666666667,1,26 -leaf,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -tube,0.6849999999999999,1.0,0.6166666666666666,0.7333333333333334,1,26 -cell,0.6966666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -mug,0.5933333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -yogurt,0.6849999999999999,1.0,0.5166666666666666,0.6666666666666667,1,26 -plantain,0.5433333333333333,1.0,0.4499999999999999,0.6,1,26 -red,0.8516666666666668,0.7333333333333333,1.0,0.8214285714285714,3,25 -pepper,0.5933333333333333,1.0,0.5833333333333333,0.7,1,26 -wheat,0.6866666666666668,1.0,0.4999999999999999,0.65,1,26 -kleenex,0.4916666666666667,1.0,0.4333333333333333,0.5833333333333333,1,26 -toothbrush,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -binder,0.7133333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -baseball,0.6016666666666667,1.0,0.5833333333333333,0.7,1,26 -pliers,0.7133333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7233333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -thins,0.5983333333333334,1.0,0.5333333333333332,0.6666666666666666,1,26 -package,0.4999999999999999,0.95,0.5333333333333332,0.6166666666666666,1,26 -k,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.6283333333333333,0.5333333333333333,0.9,0.6466666666666667,2,25 -apple,0.6266666666666667,1.0,0.5833333333333333,0.7,1,25 -bell,0.5266666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -battery,0.6383333333333333,1.0,0.6,0.7166666666666667,1,26 -jar,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -bound,0.6233333333333333,1.0,0.4999999999999999,0.65,1,26 -lettuce,0.36666666666666664,1.0,0.4666666666666666,0.6,1,26 -brush,0.7083333333333333,1.0,0.6,0.7166666666666667,1,26 -scissors,0.5133333333333333,1.0,0.4499999999999999,0.6,1,26 -lime,0.835,1.0,0.7333333333333333,0.8166666666666667,1,25 -toothpaste,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -top,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -spiral,0.86,1.0,0.7833333333333333,0.85,1,26 -handles,0.605,1.0,0.5833333333333333,0.7,1,25 -camera,0.7283333333333334,1.0,0.5333333333333333,0.6833333333333333,1,26 -eraser,0.7433333333333333,1.0,0.6,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.7916666666666667,0.5916666666666666,1.0,0.7371428571428572,5,20 -banana,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -pitcher,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -phone,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -stick,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -cereal,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -bulb,0.8383333333333333,1.0,0.8,0.8800000000000001,2,27 -hair,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7683333333333333,1.0,0.6333333333333333,0.75,1,26 -can,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -crackers,0.5549999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -plate,0.6833333333333333,1.0,0.7,0.7833333333333333,1,24 -calculator,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -tissues,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -juice,0.6966666666666665,1.0,0.65,0.75,1,26 -pink,0.705,1.0,0.6499999999999999,0.75,1,25 -lemon,0.5499999999999999,1.0,0.5999999999999999,0.7,1,26 -peach,0.4833333333333333,1.0,0.5166666666666666,0.65,1,26 -bowl,0.6383333333333334,1.0,0.5166666666666666,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6083333333333333,1.0,0.55,0.6833333333333333,1,26 -blue,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -used,0.7816666666666666,1.0,0.6833333333333333,0.7833333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.7383333333333333,1.0,0.6,0.7166666666666666,1,26 -ball,0.7216666666666666,1.0,0.6333333333333332,0.7333333333333333,1,25 -notebook,0.6683333333333332,1.0,0.65,0.75,1,26 -garlic,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -cleaning,0.5916666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.9,1.0,0.8666666666666666,0.9199999999999999,2,26 -container,0.625,1.0,0.6333333333333333,0.7333333333333333,1,25 -tomato,0.5583333333333333,0.7,0.6666666666666666,0.6,1,26 -cellphone,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -potato,0.6633333333333333,1.0,0.65,0.75,1,25 -light,0.9400000000000001,1.0,0.8999999999999998,0.9400000000000001,2,25 -green,0.8766666666666667,0.7583333333333333,1.0,0.8504761904761905,3,23 -bottle,0.915,1.0,0.8666666666666666,0.9199999999999999,2,26 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6486111111111111 -F1-Score: 0.6873368606701938 -Precision: 0.9003086419753087 -Recall: 0.6124999999999999 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7466666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -yellow,0.9633333333333335,0.9166666666666666,1.0,0.9466666666666667,6,25 -looks,0.53,0.95,0.5333333333333333,0.6333333333333333,1,24 -keyboard,0.7183333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.44666666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.5,1.0,0.5333333333333332,0.65,1,26 -flashlight,0.8233333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -cup,0.32333333333333336,0.5,0.5333333333333333,0.49333333333333335,1,26 -folded,0.7833333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -jam,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.93,0.8166666666666667,1.0,0.8799999999999999,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.4133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -soccer,0.73,1.0,0.6499999999999999,0.75,1,26 -hat,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.96,2,24 -coffee,0.7666666666666667,1.0,0.6333333333333333,0.75,1,26 -handle,0.7266666666666667,1.0,0.6333333333333332,0.7333333333333333,1,25 -food,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -towel,0.7933333333333333,1.0,0.7,0.7833333333333333,1,26 -chips,0.48,1.0,0.4999999999999999,0.6333333333333333,1,26 -stapler,0.62,1.0,0.5333333333333333,0.6666666666666666,1,26 -onion,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -bag,0.68,1.0,0.6,0.7166666666666667,1,26 -sponge,0.8083333333333332,1.0,0.7833333333333333,0.85,1,26 -zero,0,0,0,0,1,26 -computer,0.7583333333333333,1.0,0.6166666666666666,0.7333333333333334,1,25 -special,0.7716666666666666,1.0,0.7166666666666666,0.8,1,26 -colgate,0.7016666666666667,1.0,0.6499999999999999,0.75,1,26 -leaf,0.48,1.0,0.5,0.6333333333333333,1,26 -tube,0.6516666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -cell,0.5166666666666666,0.55,0.7,0.5633333333333334,1,26 -mug,0.6233333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -yogurt,0.9466666666666667,1.0,0.9,0.9333333333333332,1,26 -plantain,0.6416666666666666,1.0,0.45,0.6166666666666667,1,26 -red,0.8083333333333332,0.6583333333333333,1.0,0.769047619047619,3,26 -pepper,0.6966666666666665,1.0,0.6833333333333333,0.7666666666666667,1,26 -wheat,0.725,1.0,0.5999999999999999,0.7166666666666667,1,26 -kleenex,0.775,1.0,0.7499999999999999,0.8166666666666667,1,26 -toothbrush,0.525,1.0,0.5166666666666666,0.65,1,26 -binder,0.7066666666666667,1.0,0.5666666666666667,0.7,1,26 -baseball,0.6966666666666667,1.0,0.65,0.75,1,26 -pliers,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -thins,0.7,1.0,0.5999999999999999,0.7166666666666667,1,26 -package,0.735,0.95,0.6166666666666666,0.7,1,26 -k,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -jelly,0.7633333333333334,1.0,0.7166666666666666,0.8,1,26 -fruit,0.6283333333333334,0.6166666666666666,0.8333333333333333,0.66,2,25 -apple,0.5266666666666666,0.9,0.5166666666666666,0.6,1,25 -bell,0.75,1.0,0.6666666666666666,0.7666666666666667,1,26 -battery,0.6633333333333333,1.0,0.65,0.75,1,26 -jar,0.8133333333333332,0.9,0.7333333333333333,0.75,1,26 -bound,0.7583333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -lettuce,0.7583333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -brush,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.605,1.0,0.5166666666666666,0.65,1,25 -toothpaste,0.59,1.0,0.5333333333333333,0.6666666666666666,1,26 -top,0.675,1.0,0.6833333333333333,0.7666666666666666,1,26 -spiral,0.525,1.0,0.5333333333333333,0.6666666666666667,1,26 -handles,0.755,1.0,0.7166666666666666,0.8,1,25 -camera,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -eraser,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -creamer,0,0,0,0,1,26 -white,0.7766666666666666,0.6166666666666666,1.0,0.7495238095238095,5,21 -banana,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -pitcher,0.775,1.0,0.7666666666666666,0.8333333333333333,1,26 -phone,0.62,0.5,0.7833333333333333,0.5900000000000001,1,26 -stick,0.6883333333333332,1.0,0.5833333333333333,0.7,1,25 -cereal,0.5083333333333333,1.0,0.5833333333333333,0.7,1,26 -bulb,0.8666666666666668,1.0,0.8,0.8800000000000001,2,26 -hair,0.6016666666666667,0.95,0.5833333333333333,0.6666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -coca,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -crackers,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -plate,0.61,1.0,0.5166666666666666,0.65,1,25 -calculator,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -tissues,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -juice,0.535,1.0,0.41666666666666663,0.5833333333333333,1,26 -pink,0.5333333333333333,1.0,0.5166666666666666,0.65,1,25 -lemon,0.7166666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -peach,0.4333333333333333,1.0,0.4833333333333333,0.6166666666666667,1,26 -bowl,0.505,1.0,0.4499999999999999,0.6,1,26 -camouflage,0,0,0,0,1,26 -digital,0.78,1.0,0.7,0.7833333333333333,1,26 -blue,0.5383333333333333,1.0,0.4666666666666666,0.6166666666666667,1,25 -used,0.63,1.0,0.6166666666666666,0.7166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.5133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -ball,0.575,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.7466666666666666,1.0,0.7,0.7833333333333333,1,26 -garlic,0.6466666666666667,1.0,0.55,0.6833333333333333,1,26 -cleaning,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -pair,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,27 -container,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -tomato,0.46833333333333327,0.8,0.5666666666666667,0.5733333333333334,1,26 -cellphone,0.6916666666666667,0.5,0.8,0.6,1,26 -potato,0.8300000000000001,1.0,0.7166666666666666,0.8,1,25 -light,0.89,1.0,0.8333333333333333,0.9,2,25 -green,0.8733333333333334,0.7,1.0,0.8066666666666666,3,23 -bottle,0.8933333333333333,1.0,0.8666666666666668,0.9200000000000002,2,26 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6423611111111112 -F1-Score: 0.6821164021164022 -Precision: 0.8872685185185185 -Recall: 0.6135802469135802 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.675,1.0,0.6833333333333333,0.7666666666666666,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.5583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,24 -keyboard,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -glue,0.6683333333333333,1.0,0.55,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -flashlight,0.7499999999999999,1.0,0.6499999999999999,0.75,1,26 -cup,0.41833333333333333,0.55,0.5833333333333333,0.52,1,26 -folded,0.605,1.0,0.5833333333333333,0.7,1,26 -jam,0.5933333333333333,1.0,0.5166666666666666,0.65,1,26 -black,0.7983333333333333,0.5916666666666666,1.0,0.7371428571428572,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -soccer,0.8300000000000001,1.0,0.7833333333333333,0.85,1,26 -hat,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -brown,0.9333333333333332,1.0,0.9333333333333332,0.9600000000000002,2,24 -coffee,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -handle,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -food,0.6133333333333333,1.0,0.5166666666666666,0.65,1,26 -towel,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -chips,0.6633333333333333,1.0,0.55,0.6833333333333333,1,26 -stapler,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -onion,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bag,0.8966666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -sponge,0.5599999999999999,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.8,1.0,0.6833333333333333,0.7833333333333334,1,25 -special,0.6466666666666667,1.0,0.6,0.7166666666666666,1,26 -colgate,0.655,1.0,0.6499999999999999,0.75,1,26 -leaf,0.5833333333333333,1.0,0.5999999999999999,0.7,1,26 -tube,0.6966666666666665,1.0,0.5833333333333333,0.7,1,26 -cell,0.5216666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -mug,0.4916666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -yogurt,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -plantain,0.5900000000000001,1.0,0.5833333333333333,0.7,1,26 -red,0.7866666666666666,0.65,1.0,0.7614285714285713,3,26 -pepper,0.705,1.0,0.5999999999999999,0.7166666666666667,1,26 -wheat,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.6649999999999999,1.0,0.5166666666666666,0.6666666666666666,1,26 -toothbrush,0.8466666666666667,1.0,0.7,0.8,1,26 -binder,0.74,1.0,0.5999999999999999,0.7166666666666666,1,26 -baseball,0.8166666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -pliers,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8466666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -thins,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -package,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -k,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -jelly,0.6799999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -fruit,0.765,0.6666666666666666,0.9333333333333332,0.7333333333333334,2,25 -apple,0.7666666666666667,1.0,0.7666666666666666,0.8333333333333333,1,25 -bell,0.77,1.0,0.6333333333333333,0.75,1,26 -battery,0.6183333333333333,1.0,0.5833333333333333,0.7,1,26 -jar,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -bound,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -lettuce,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -brush,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -scissors,0.65,1.0,0.5833333333333333,0.7,1,26 -lime,0.63,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.8333333333333333,1.0,0.8,0.85,1,26 -top,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -spiral,0.61,1.0,0.5833333333333333,0.7,1,26 -handles,0.6266666666666667,1.0,0.6499999999999999,0.75,1,25 -camera,0.78,1.0,0.7166666666666666,0.8,1,26 -eraser,0.5333333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.7766666666666666,0.5666666666666667,1.0,0.7014285714285714,5,22 -banana,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -pitcher,0.53,1.0,0.5166666666666666,0.65,1,26 -phone,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -stick,0.46333333333333326,1.0,0.38333333333333336,0.55,1,25 -cereal,0.425,1.0,0.4666666666666666,0.6166666666666667,1,26 -bulb,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -hair,0.6216666666666667,1.0,0.5166666666666666,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -can,0.9133333333333333,1.0,0.9,0.9400000000000001,2,24 -coca,0.67,1.0,0.55,0.6833333333333333,1,26 -crackers,0.7266666666666667,1.0,0.65,0.75,1,26 -plate,0.6,1.0,0.5166666666666666,0.65,1,25 -calculator,0.8033333333333333,1.0,0.6,0.7333333333333333,1,26 -tissues,0.7466666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -juice,0.3583333333333334,0.5,0.6333333333333333,0.5266666666666666,1,26 -pink,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333334,1,25 -lemon,0.635,1.0,0.5333333333333333,0.6666666666666667,1,26 -peach,0.7216666666666667,1.0,0.65,0.75,1,26 -bowl,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6100000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -blue,0.5966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,25 -used,0.6766666666666666,1.0,0.65,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.725,1.0,0.7,0.7833333333333333,1,26 -ball,0.61,1.0,0.5499999999999999,0.6833333333333333,1,25 -notebook,0.6266666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -garlic,0.75,1.0,0.8,0.85,1,26 -cleaning,0.575,1.0,0.5333333333333333,0.6666666666666667,1,26 -pair,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.5883333333333333,1.0,0.5833333333333333,0.7,1,25 -tomato,0.42666666666666664,0.85,0.4999999999999999,0.55,1,26 -cellphone,0.8133333333333332,1.0,0.7833333333333333,0.85,1,26 -potato,0.86,1.0,0.8333333333333334,0.8833333333333332,1,25 -light,0.8766666666666666,1.0,0.8333333333333334,0.9000000000000001,2,25 -green,0.9633333333333333,0.9166666666666666,1.0,0.9466666666666667,3,24 -bottle,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,25 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.6554783950617283 -F1-Score: 0.6976543209876545 -Precision: 0.9003858024691359 -Recall: 0.6260802469135801 diff --git a/Validation/UW_raw_75_object_0.2.csv b/Validation/UW_raw_75_object_0.2.csv deleted file mode 100644 index 62d3bc2..0000000 --- a/Validation/UW_raw_75_object_0.2.csv +++ /dev/null @@ -1,2875 +0,0 @@ -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.59,1.0,0.55,0.6833333333333333,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.5333333333333333,0.95,0.5666666666666667,0.65,1,24 -keyboard,0.6100000000000001,1.0,0.5166666666666666,0.65,1,26 -glue,0.6133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6183333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -flashlight,0.5933333333333334,1.0,0.45,0.6166666666666667,1,26 -cup,0.15499999999999997,0.4666666666666666,0.4,0.42000000000000004,1,26 -folded,0.44666666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -jam,0.8150000000000001,1.0,0.65,0.7666666666666667,1,26 -black,0.865,0.7083333333333333,1.0,0.8123809523809523,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -soccer,0.705,1.0,0.55,0.6833333333333333,1,26 -hat,0.7016666666666667,1.0,0.65,0.75,1,26 -brown,0.9,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.5383333333333333,1.0,0.45,0.6,1,25 -handle,0.5549999999999999,1.0,0.5833333333333333,0.7,1,26 -food,0.9466666666666667,1.0,0.9,0.9333333333333332,1,26 -towel,0.59,1.0,0.4833333333333333,0.6333333333333333,1,26 -chips,0.6816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.8633333333333333,1.0,0.75,0.8333333333333333,1,26 -onion,0.475,1.0,0.45,0.6,1,26 -bag,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.49333333333333335,1.0,0.4333333333333334,0.6,1,26 -zero,0,0,0,0,1,26 -computer,0.73,1.0,0.65,0.75,1,25 -special,0.73,1.0,0.5999999999999999,0.7166666666666666,1,26 -colgate,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -leaf,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -tube,0.4383333333333333,1.0,0.45,0.6,1,26 -cell,0.75,1.0,0.5333333333333333,0.6833333333333333,1,26 -mug,0.73,1.0,0.6499999999999999,0.75,1,25 -yogurt,0.5966666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -plantain,0.8566666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -red,0.5733333333333334,0.45166666666666677,1.0,0.6061904761904761,3,24 -pepper,0.6883333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -wheat,0.6816666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -toothbrush,0.63,1.0,0.6333333333333333,0.7333333333333334,1,26 -binder,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.63,1.0,0.5166666666666666,0.65,1,26 -pliers,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.575,1.0,0.5833333333333333,0.7,1,26 -thins,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -package,0.5166666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.7583333333333334,1.0,0.75,0.8166666666666667,1,26 -jelly,0.7533333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -fruit,0.7216666666666666,0.6333333333333334,0.8999999999999998,0.72,2,25 -apple,0.4916666666666667,0.95,0.4999999999999999,0.6,1,25 -bell,0.705,1.0,0.6499999999999999,0.75,1,26 -battery,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -jar,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.6666666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -lettuce,0.7416666666666667,1.0,0.7,0.7833333333333333,1,26 -brush,0.5666666666666667,1.0,0.5833333333333333,0.7,1,26 -scissors,0.7216666666666666,1.0,0.6,0.7166666666666667,1,26 -lime,0.6933333333333334,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -top,0.7016666666666667,1.0,0.5833333333333333,0.7,1,26 -spiral,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -handles,0.6599999999999999,1.0,0.5833333333333333,0.7,1,25 -camera,0.6416666666666667,1.0,0.6,0.7166666666666667,1,26 -eraser,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.6533333333333333,0.5266666666666666,1.0,0.673095238095238,5,21 -banana,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -pitcher,0.4916666666666667,1.0,0.38333333333333336,0.55,1,26 -phone,0.73,1.0,0.5999999999999999,0.7166666666666666,1,26 -stick,0.5966666666666666,1.0,0.5499999999999999,0.6666666666666666,1,25 -cereal,0.6066666666666667,1.0,0.55,0.6833333333333333,1,26 -bulb,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -hair,0.7749999999999999,1.0,0.7666666666666666,0.8333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7,1.0,0.75,0.8166666666666668,1,26 -can,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -coca,0.5433333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.5166666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -plate,0.7066666666666668,1.0,0.6166666666666666,0.7333333333333333,1,25 -calculator,0.8566666666666667,1.0,0.7,0.8,1,26 -tissues,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -juice,0.675,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.5383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -lemon,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -bowl,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5666666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -blue,0.6716666666666666,1.0,0.5166666666666666,0.6666666666666667,1,25 -used,0.7683333333333333,1.0,0.7166666666666666,0.8,1,24 -energizer,0,0,0,0,1,26 -pear,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -ball,0.5766666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.6266666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -garlic,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -cleaning,0.8016666666666665,1.0,0.7166666666666666,0.8,1,26 -pair,0.8683333333333334,1.0,0.8333333333333333,0.9,2,26 -container,0.615,1.0,0.55,0.6833333333333333,1,25 -tomato,0.5549999999999999,0.8,0.5999999999999999,0.6166666666666666,1,26 -cellphone,0.6183333333333334,1.0,0.5166666666666666,0.65,1,26 -potato,0.73,1.0,0.7,0.7833333333333333,1,25 -light,0.8683333333333334,0.9,0.8666666666666666,0.8533333333333333,2,25 -green,0.89,0.7166666666666666,1.0,0.8133333333333332,3,23 -bottle,0.8933333333333333,1.0,0.8666666666666666,0.9199999999999999,2,26 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6347067901234568 -F1-Score: 0.6787500000000001 -Precision: 0.8986419753086421 -Recall: 0.6010802469135802 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.65,1.0,0.6333333333333333,0.7333333333333333,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.765,0.75,0.7833333333333333,0.7,1,24 -keyboard,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -glue,0.525,1.0,0.4666666666666666,0.6166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.7166666666666666,1.0,0.6499999999999999,0.75,1,26 -flashlight,0.85,1.0,0.7333333333333333,0.8166666666666667,1,26 -cup,0.37,0.45,0.6166666666666666,0.4666666666666667,1,26 -folded,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -jam,0.6166666666666666,1.0,0.5999999999999999,0.7,1,26 -black,0.96,0.9,1.0,0.9333333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -soccer,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -hat,0.5966666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -brown,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,25 -coffee,0.655,1.0,0.6,0.7166666666666667,1,25 -handle,0.7383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -food,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,24 -towel,0.6133333333333333,1.0,0.6,0.7166666666666667,1,26 -chips,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.43,1.0,0.4999999999999999,0.6333333333333333,1,26 -onion,0.685,1.0,0.5333333333333333,0.6666666666666667,1,26 -bag,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -sponge,0.46333333333333326,1.0,0.4499999999999999,0.6,1,26 -zero,0,0,0,0,1,26 -computer,0.6683333333333332,1.0,0.5166666666666666,0.6666666666666667,1,25 -special,0.5983333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -colgate,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -leaf,0.7133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.6683333333333332,1.0,0.6,0.7166666666666667,1,26 -cell,0.4466666666666666,1.0,0.4499999999999999,0.6,1,26 -mug,0.4833333333333332,1.0,0.4666666666666666,0.6,1,25 -yogurt,0.795,1.0,0.6166666666666666,0.7333333333333333,1,26 -plantain,0.6583333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -red,0.6783333333333333,0.6016666666666666,1.0,0.7271428571428571,3,25 -pepper,0.6383333333333334,1.0,0.6,0.7166666666666667,1,26 -wheat,0.5933333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.7633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -binder,0.705,1.0,0.6499999999999999,0.75,1,26 -baseball,0.6833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -pliers,0.74,1.0,0.6166666666666666,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -thins,0.6716666666666666,1.0,0.65,0.75,1,26 -package,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -k,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -jelly,0.75,1.0,0.7,0.7833333333333333,1,26 -fruit,0.7266666666666667,0.6333333333333333,0.9333333333333332,0.7300000000000001,2,25 -apple,0.7300000000000001,0.9,0.7499999999999999,0.75,1,25 -bell,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -battery,0.7233333333333334,1.0,0.5833333333333333,0.7,1,26 -jar,0.8133333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -bound,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -lettuce,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -brush,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -scissors,0.675,1.0,0.6666666666666666,0.7666666666666666,1,26 -lime,0.6583333333333333,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -top,0.6683333333333332,1.0,0.6499999999999999,0.75,1,26 -spiral,0.73,1.0,0.6499999999999999,0.75,1,26 -handles,0.755,1.0,0.6666666666666666,0.7666666666666667,1,25 -camera,0.6683333333333333,1.0,0.5666666666666667,0.7,1,26 -eraser,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.78,0.625,1.0,0.7619047619047618,5,20 -banana,0.5016666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -pitcher,0.7733333333333333,1.0,0.6333333333333333,0.75,1,26 -phone,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666666,1,26 -stick,0.6849999999999999,1.0,0.5,0.65,1,25 -cereal,0.605,1.0,0.6333333333333333,0.7333333333333333,1,26 -bulb,0.93,1.0,0.9,0.9400000000000001,2,27 -hair,0.6183333333333333,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7016666666666667,1.0,0.6499999999999999,0.75,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -coca,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -crackers,0.5416666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -plate,0.8666666666666666,1.0,0.7833333333333333,0.85,1,25 -calculator,0.7166666666666666,0.9,0.6499999999999999,0.6833333333333333,1,26 -tissues,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -juice,0.74,1.0,0.6499999999999999,0.75,1,26 -pink,0.45,1.0,0.4833333333333333,0.6166666666666667,1,25 -lemon,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -peach,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -bowl,0.6166666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7500000000000001,1.0,0.7166666666666666,0.8,1,26 -blue,0.7166666666666666,0.8,0.7666666666666666,0.7333333333333333,1,25 -used,0.6266666666666667,1.0,0.4833333333333333,0.6333333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.6416666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -ball,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,25 -notebook,0.5299999999999999,1.0,0.4833333333333332,0.6333333333333333,1,26 -garlic,0.61,1.0,0.4833333333333332,0.6333333333333333,1,26 -cleaning,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -pair,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -container,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,25 -tomato,0.5966666666666667,0.55,0.7333333333333333,0.5833333333333333,1,26 -cellphone,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -potato,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -light,0.9266666666666667,0.8333333333333333,1.0,0.8933333333333333,2,26 -green,0.8933333333333335,0.7333333333333333,1.0,0.8266666666666668,3,24 -bottle,0.8666666666666666,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6519135802469135 -F1-Score: 0.6880158730158732 -Precision: 0.8942283950617284 -Recall: 0.6175925925925925 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7633333333333333,1.0,0.7,0.7833333333333333,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,25 -looks,0.6516666666666666,0.95,0.5499999999999999,0.65,1,24 -keyboard,0.8083333333333332,1.0,0.7833333333333333,0.85,1,26 -glue,0.625,1.0,0.5333333333333333,0.6666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.7916666666666666,1.0,0.75,0.8166666666666668,1,26 -flashlight,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -cup,0.5483333333333333,0.5,0.7499999999999999,0.5700000000000001,1,26 -folded,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -jam,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.865,0.6833333333333333,1.0,0.7933333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5333333333333332,1.0,0.4499999999999999,0.6,1,26 -soccer,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -hat,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -brown,0.8383333333333333,1.0,0.8,0.8800000000000001,2,24 -coffee,0.4800000000000001,1.0,0.5,0.6333333333333333,1,26 -handle,0.7466666666666667,1.0,0.65,0.75,1,26 -food,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -towel,0.43,1.0,0.5166666666666666,0.65,1,26 -chips,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -stapler,0.6766666666666666,1.0,0.5,0.65,1,26 -onion,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -bag,0.5583333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -sponge,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7,1.0,0.5833333333333333,0.7,1,25 -special,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -colgate,0.5966666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -leaf,0.7,1.0,0.7333333333333333,0.8,1,26 -tube,0.755,1.0,0.6499999999999999,0.75,1,26 -cell,0.23833333333333334,0.7,0.5,0.5133333333333333,1,26 -mug,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -yogurt,0.505,1.0,0.5166666666666666,0.65,1,26 -plantain,0.65,1.0,0.5333333333333333,0.6666666666666667,1,26 -red,0.9833333333333334,0.95,1.0,0.9666666666666666,3,26 -pepper,0.475,1.0,0.5666666666666667,0.6833333333333333,1,26 -wheat,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -kleenex,0.6433333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -toothbrush,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -binder,0.6916666666666667,1.0,0.6,0.7166666666666667,1,26 -baseball,0.6433333333333333,1.0,0.55,0.6833333333333333,1,26 -pliers,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.705,1.0,0.5999999999999999,0.7166666666666666,1,26 -thins,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -package,0.6466666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -k,0.6566666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -jelly,0.7083333333333333,1.0,0.7166666666666666,0.8,1,26 -fruit,0.785,0.9,0.8,0.8133333333333332,2,25 -apple,0.7516666666666667,0.85,0.65,0.6666666666666667,1,25 -bell,0.73,1.0,0.6,0.7166666666666667,1,26 -battery,0.7666666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -jar,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.7166666666666667,1.0,0.6499999999999999,0.75,1,26 -lettuce,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -brush,0.6933333333333332,1.0,0.6,0.7166666666666667,1,26 -scissors,0.8166666666666667,1.0,0.7166666666666666,0.8,1,26 -lime,0.7666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,25 -toothpaste,0.8233333333333335,1.0,0.6833333333333333,0.7833333333333334,1,26 -top,0.525,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.5666666666666667,1.0,0.5833333333333333,0.7,1,26 -handles,0.7166666666666667,1.0,0.75,0.8166666666666667,1,25 -camera,0.625,1.0,0.5499999999999999,0.6666666666666666,1,26 -eraser,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.925,0.8666666666666666,1.0,0.9180952380952381,5,22 -banana,0.7333333333333333,1.0,0.65,0.75,1,26 -pitcher,0.5383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -phone,0.41,0.5,0.5333333333333333,0.49333333333333335,1,26 -stick,0.7566666666666666,1.0,0.65,0.75,1,25 -cereal,0.75,1.0,0.7499999999999999,0.8166666666666667,1,26 -bulb,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -hair,0.615,1.0,0.4666666666666666,0.6166666666666666,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6333333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -can,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,25 -coca,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -crackers,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -plate,0.45999999999999996,1.0,0.5666666666666667,0.6833333333333333,1,24 -calculator,0.375,0.7,0.4666666666666666,0.5133333333333333,1,26 -tissues,0.7966666666666666,1.0,0.75,0.8166666666666667,1,26 -juice,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -pink,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666666,1,25 -lemon,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -peach,0.73,1.0,0.6499999999999999,0.75,1,26 -bowl,0.555,1.0,0.5,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5016666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -blue,0.835,1.0,0.7333333333333333,0.8166666666666667,1,25 -used,0.705,1.0,0.55,0.6833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.7633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -ball,0.7266666666666666,1.0,0.5666666666666667,0.7,1,25 -notebook,0.7216666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -garlic,0.6249999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -cleaning,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -pair,0.805,1.0,0.7666666666666667,0.86,2,26 -container,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -tomato,0.805,0.7,0.85,0.7,1,26 -cellphone,0.49833333333333335,0.6,0.6833333333333332,0.5633333333333334,1,26 -potato,0.6683333333333332,1.0,0.5999999999999999,0.7166666666666667,1,25 -light,0.8766666666666667,1.0,0.8333333333333333,0.9,2,26 -green,0.93,0.8333333333333333,1.0,0.8933333333333333,3,24 -bottle,0.95,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6492746913580248 -F1-Score: 0.6868959435626102 -Precision: 0.894753086419753 -Recall: 0.6128086419753087 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333333,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,25 -looks,0.5583333333333333,0.95,0.5166666666666666,0.6166666666666667,1,24 -keyboard,0.7583333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -glue,0.5916666666666666,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -cup,0.38500000000000006,0.5,0.6333333333333333,0.5266666666666667,1,26 -folded,0.6633333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -jam,0.8266666666666668,1.0,0.6833333333333333,0.7833333333333333,1,26 -black,0.8550000000000001,0.675,1.0,0.7857142857142857,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6583333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -soccer,0.5633333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -hat,0.6166666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.6799999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -handle,0.8800000000000001,1.0,0.8333333333333333,0.8833333333333332,1,26 -food,0.61,1.0,0.5166666666666666,0.65,1,25 -towel,0.8666666666666666,1.0,0.7833333333333333,0.85,1,26 -chips,0.5216666666666667,1.0,0.45,0.6,1,26 -stapler,0.615,1.0,0.55,0.6833333333333333,1,26 -onion,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -bag,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.7583333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7933333333333332,1.0,0.7666666666666666,0.8333333333333333,1,25 -special,0.685,1.0,0.5999999999999999,0.7166666666666667,1,26 -colgate,0.705,1.0,0.6166666666666666,0.7333333333333334,1,26 -leaf,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -cell,0.5466666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -mug,0.725,1.0,0.7,0.7833333333333333,1,26 -yogurt,0.6666666666666666,1.0,0.6,0.7166666666666667,1,26 -plantain,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -red,0.8583333333333334,0.7583333333333333,1.0,0.8423809523809525,3,25 -pepper,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -wheat,0.6816666666666668,1.0,0.6166666666666666,0.7333333333333334,1,26 -kleenex,0.5349999999999999,1.0,0.5166666666666666,0.65,1,26 -toothbrush,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -binder,0.6716666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -pliers,0.4999999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.5166666666666666,1.0,0.45,0.6,1,26 -thins,0.605,1.0,0.4999999999999999,0.65,1,26 -package,0.73,1.0,0.5999999999999999,0.7166666666666667,1,26 -k,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -jelly,0.78,1.0,0.7166666666666666,0.8,1,26 -fruit,0.7583333333333333,0.7833333333333333,0.8333333333333333,0.78,2,26 -apple,0.6383333333333334,0.9,0.6333333333333333,0.6666666666666667,1,25 -bell,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -battery,0.65,1.0,0.7333333333333333,0.8,1,26 -jar,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -bound,0.4966666666666667,1.0,0.4833333333333334,0.6166666666666666,1,26 -lettuce,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -brush,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -scissors,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -lime,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,25 -toothpaste,0.8166666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -top,0.5549999999999999,1.0,0.5833333333333333,0.7,1,26 -spiral,0.7166666666666667,1.0,0.7166666666666666,0.8,1,26 -handles,0.7416666666666667,1.0,0.65,0.75,1,25 -camera,0.8683333333333334,1.0,0.75,0.8333333333333333,1,26 -eraser,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.7916666666666667,0.6416666666666666,1.0,0.7752380952380952,5,21 -banana,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -pitcher,0.7466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -phone,0.63,1.0,0.5333333333333332,0.6666666666666666,1,26 -stick,0.7383333333333333,1.0,0.5999999999999999,0.7166666666666667,1,25 -cereal,0.6799999999999999,1.0,0.65,0.75,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -hair,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -can,0.9400000000000001,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.6133333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -crackers,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -plate,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666667,1,25 -calculator,0.6316666666666666,0.65,0.7333333333333333,0.6166666666666667,1,26 -tissues,0.6133333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -juice,0.505,1.0,0.4833333333333333,0.6333333333333333,1,26 -pink,0.7016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -lemon,0.735,1.0,0.5833333333333333,0.7166666666666667,1,26 -peach,0.5433333333333333,0.5,0.7166666666666666,0.5633333333333332,1,26 -bowl,0.5149999999999999,1.0,0.4833333333333332,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7733333333333333,1.0,0.7166666666666666,0.8,1,26 -blue,0.76,1.0,0.65,0.75,1,25 -used,0.7266666666666667,1.0,0.7,0.7833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.7833333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -ball,0.8800000000000001,1.0,0.8333333333333333,0.8833333333333332,1,25 -notebook,0.7466666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -garlic,0.7,1.0,0.7,0.7833333333333333,1,26 -cleaning,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -pair,0.93,1.0,0.9,0.9400000000000001,2,26 -container,0.725,1.0,0.6833333333333332,0.7666666666666666,1,25 -tomato,0.4966666666666667,0.9,0.5166666666666666,0.5833333333333333,1,26 -cellphone,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -potato,0.61,1.0,0.4999999999999999,0.65,1,25 -light,0.85,1.0,0.8333333333333333,0.9,2,27 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8433333333333334,1.0,0.8,0.8800000000000001,2,26 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6585493827160492 -F1-Score: 0.6962962962962963 -Precision: 0.9000771604938271 -Recall: 0.6226851851851852 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7333333333333333,1.0,0.7,0.7833333333333333,1,25 -yellow,0.9466666666666667,0.8666666666666666,1.0,0.9133333333333333,6,24 -looks,0.5816666666666667,0.85,0.5833333333333333,0.6166666666666666,1,24 -keyboard,0.5083333333333333,1.0,0.5166666666666666,0.65,1,26 -glue,0.78,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.6749999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -flashlight,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -cup,0.11333333333333333,0.5,0.4333333333333333,0.44666666666666666,1,26 -folded,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -jam,0.785,1.0,0.6666666666666666,0.7666666666666667,1,26 -black,0.8883333333333334,0.775,1.0,0.8590476190476191,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -soccer,0.4,1.0,0.4666666666666666,0.6,1,26 -hat,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -brown,0.8083333333333332,1.0,0.7666666666666667,0.86,2,25 -coffee,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -handle,0.6966666666666665,1.0,0.6499999999999999,0.75,1,25 -food,0.6966666666666667,1.0,0.55,0.6833333333333333,1,25 -towel,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -chips,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -stapler,0.6883333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -bag,0.4833333333333333,1.0,0.45,0.6,1,26 -sponge,0.6133333333333334,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.76,1.0,0.6333333333333333,0.7333333333333333,1,25 -special,0.6499999999999999,1.0,0.5833333333333333,0.7,1,26 -colgate,0.6799999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -leaf,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -tube,0.6833333333333333,1.0,0.6666666666666666,0.75,1,26 -cell,0.485,1.0,0.4666666666666666,0.6166666666666667,1,26 -mug,0.6466666666666666,1.0,0.55,0.6833333333333333,1,26 -yogurt,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -plantain,0.6466666666666667,1.0,0.65,0.75,1,26 -red,0.7183333333333333,0.6033333333333333,1.0,0.73,3,24 -pepper,0.6016666666666666,1.0,0.6,0.7166666666666667,1,26 -wheat,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -kleenex,0.5133333333333333,1.0,0.45,0.6,1,26 -toothbrush,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.5166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.7516666666666667,1.0,0.65,0.75,1,26 -pliers,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7933333333333333,1.0,0.7166666666666666,0.8,1,26 -thins,0.7166666666666667,1.0,0.7,0.7833333333333333,1,26 -package,0.705,1.0,0.6499999999999999,0.75,1,26 -k,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.7833333333333333,1.0,0.7999999999999999,0.85,1,26 -fruit,0.6466666666666666,0.5333333333333333,0.9,0.6433333333333333,2,25 -apple,0.7666666666666666,0.9,0.8166666666666667,0.8,1,25 -bell,0.76,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.4583333333333333,1.0,0.5,0.6333333333333333,1,26 -jar,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -bound,0.5966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -lettuce,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -brush,0.705,1.0,0.6,0.7166666666666667,1,26 -scissors,0.6816666666666666,1.0,0.5666666666666667,0.7,1,26 -lime,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -toothpaste,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -top,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -spiral,0.625,1.0,0.55,0.6833333333333333,1,26 -handles,0.7,1.0,0.6166666666666666,0.7333333333333333,1,25 -camera,0.5633333333333334,1.0,0.5833333333333333,0.7,1,26 -eraser,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,0.7783333333333333,0.7166666666666667,1.0,0.8342857142857142,5,21 -banana,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -pitcher,0.845,1.0,0.6833333333333333,0.7833333333333334,1,26 -phone,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -stick,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -cereal,0.7583333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -bulb,0.9266666666666665,1.0,0.9,0.9400000000000001,2,26 -hair,0.6916666666666667,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7100000000000001,1.0,0.5833333333333333,0.7,1,26 -can,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -coca,0.5549999999999999,1.0,0.4833333333333332,0.6333333333333333,1,26 -crackers,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -plate,0.5933333333333334,1.0,0.5666666666666667,0.6833333333333333,1,25 -calculator,0.43,0.55,0.6666666666666666,0.5433333333333334,1,26 -tissues,0.635,1.0,0.5999999999999999,0.7166666666666667,1,26 -juice,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -pink,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -lemon,0.8016666666666665,1.0,0.7166666666666666,0.8,1,26 -peach,0.53,1.0,0.4666666666666666,0.6166666666666667,1,26 -bowl,0.6183333333333334,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6433333333333333,1.0,0.4666666666666666,0.6333333333333334,1,26 -blue,0.6466666666666667,1.0,0.5833333333333333,0.7,1,25 -used,0.9266666666666667,1.0,0.85,0.8999999999999998,1,24 -energizer,0,0,0,0,1,26 -pear,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -ball,0.75,1.0,0.65,0.75,1,25 -notebook,0.5833333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -garlic,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -cleaning,0.8150000000000001,1.0,0.6833333333333333,0.7833333333333334,1,26 -pair,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,27 -container,0.6516666666666666,1.0,0.5833333333333333,0.7,1,25 -tomato,0.6416666666666666,0.6,0.7666666666666666,0.6,1,26 -cellphone,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -potato,0.8416666666666666,1.0,0.7333333333333333,0.8166666666666667,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -green,0.8516666666666666,0.6916666666666667,1.0,0.7957142857142857,3,23 -bottle,0.9266666666666667,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6485648148148149 -F1-Score: 0.686164021164021 -Precision: 0.894320987654321 -Recall: 0.6137345679012346 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.525,1.0,0.5166666666666666,0.65,1,25 -yellow,0.9099999999999999,0.7666666666666666,1.0,0.8466666666666667,6,24 -looks,0.6433333333333333,0.95,0.55,0.65,1,24 -keyboard,0.53,1.0,0.5166666666666666,0.65,1,26 -glue,0.5983333333333334,1.0,0.5,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -cup,0.34833333333333333,0.5,0.5999999999999999,0.52,1,26 -folded,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -jam,0.7216666666666667,1.0,0.65,0.75,1,26 -black,0.8616666666666667,0.7166666666666666,1.0,0.8200000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7066666666666667,1.0,0.6499999999999999,0.75,1,26 -soccer,0.5666666666666667,1.0,0.5,0.6333333333333333,1,26 -hat,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -brown,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,25 -coffee,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -handle,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -food,0.4833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -towel,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -chips,0.6799999999999999,1.0,0.65,0.75,1,26 -stapler,0.775,1.0,0.5833333333333333,0.7166666666666667,1,26 -onion,0.6016666666666667,1.0,0.5166666666666666,0.65,1,26 -bag,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.75,1.0,0.7,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7966666666666666,1.0,0.7166666666666666,0.8,1,25 -special,0.6966666666666665,1.0,0.65,0.75,1,26 -colgate,0.6666666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -leaf,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -tube,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -cell,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -mug,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -yogurt,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -plantain,0.7383333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -red,0.7716666666666667,0.5833333333333333,1.0,0.718095238095238,3,25 -pepper,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -wheat,0.7183333333333334,1.0,0.5666666666666667,0.7,1,26 -kleenex,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -toothbrush,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -binder,0.45,1.0,0.4499999999999999,0.6,1,26 -baseball,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.6766666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.4999999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -thins,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -package,0.6799999999999999,0.85,0.7,0.6833333333333333,1,26 -k,0.43,1.0,0.4499999999999999,0.6,1,26 -jelly,0.655,1.0,0.5833333333333333,0.7,1,26 -fruit,0.6733333333333332,0.5833333333333333,0.8999999999999998,0.6700000000000002,2,25 -apple,0.6733333333333332,0.85,0.6166666666666666,0.65,1,25 -bell,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -battery,0.6716666666666666,1.0,0.5333333333333333,0.6833333333333333,1,26 -jar,0.625,1.0,0.6,0.7166666666666667,1,26 -bound,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.735,1.0,0.65,0.75,1,26 -brush,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.7849999999999999,1.0,0.6333333333333333,0.75,1,26 -lime,0.8433333333333334,1.0,0.7,0.8,1,25 -toothpaste,0.53,1.0,0.5499999999999999,0.6666666666666666,1,26 -top,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -spiral,0.6333333333333333,1.0,0.6,0.7166666666666667,1,26 -handles,0.85,1.0,0.8166666666666667,0.8666666666666668,1,25 -camera,0.6766666666666666,1.0,0.6,0.7166666666666666,1,26 -eraser,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.8116666666666668,0.6666666666666667,1.0,0.7961904761904762,5,21 -banana,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -pitcher,0.675,1.0,0.5833333333333333,0.7,1,26 -phone,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -stick,0.6466666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -cereal,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -hair,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -can,0.8800000000000001,1.0,0.8666666666666666,0.9199999999999999,2,24 -coca,0.5599999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -crackers,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -plate,0.6933333333333332,1.0,0.5666666666666667,0.6833333333333333,1,25 -calculator,0.8216666666666665,0.9,0.7833333333333333,0.7833333333333333,1,26 -tissues,0.6799999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -juice,0.7083333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -pink,0.6383333333333334,1.0,0.5333333333333333,0.6666666666666667,1,25 -lemon,0.5666666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -peach,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -bowl,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.835,1.0,0.7833333333333333,0.85,1,26 -blue,0.9216666666666666,1.0,0.85,0.9,1,25 -used,0.6383333333333334,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -ball,0.6216666666666667,1.0,0.5999999999999999,0.7166666666666666,1,25 -notebook,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -garlic,0.5966666666666667,1.0,0.5,0.6333333333333333,1,26 -cleaning,0.575,1.0,0.5833333333333333,0.7,1,26 -pair,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -tomato,0.5133333333333333,0.8,0.5333333333333333,0.5666666666666667,1,26 -cellphone,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -potato,0.5466666666666666,1.0,0.4833333333333333,0.6333333333333334,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -green,0.9033333333333333,0.75,1.0,0.8333333333333333,3,24 -bottle,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6409104938271605 -F1-Score: 0.6849779541446206 -Precision: 0.8973765432098766 -Recall: 0.611574074074074 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5716666666666667,1.0,0.4333333333333334,0.6,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.7083333333333334,0.9,0.6666666666666666,0.7,1,24 -keyboard,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -glue,0.71,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.8133333333333332,1.0,0.7333333333333333,0.8166666666666667,1,26 -flashlight,0.73,1.0,0.6833333333333333,0.7666666666666666,1,26 -cup,0.4533333333333333,0.55,0.5833333333333333,0.52,1,26 -folded,0.7166666666666666,1.0,0.7166666666666666,0.8,1,26 -jam,0.7416666666666667,1.0,0.7166666666666666,0.8,1,26 -black,0.8533333333333333,0.7,1.0,0.8114285714285714,6,22 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7733333333333333,1.0,0.6333333333333333,0.75,1,26 -soccer,0.6799999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -hat,0.7333333333333334,1.0,0.6333333333333333,0.75,1,26 -brown,0.93,1.0,0.9,0.9400000000000001,2,25 -coffee,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -handle,0.8233333333333335,1.0,0.6833333333333333,0.7833333333333334,1,26 -food,0.7266666666666666,1.0,0.7,0.7833333333333333,1,25 -towel,0.7316666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -chips,0.5900000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -stapler,0.585,1.0,0.5333333333333333,0.6666666666666666,1,26 -onion,0.51,1.0,0.4999999999999999,0.6333333333333333,1,26 -bag,0.8033333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.5683333333333334,1.0,0.4833333333333333,0.6333333333333334,1,26 -zero,0,0,0,0,1,26 -computer,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -special,0.6883333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -colgate,0.78,1.0,0.7,0.7833333333333333,1,26 -leaf,0.5633333333333332,1.0,0.4333333333333333,0.6,1,26 -tube,0.7716666666666667,1.0,0.6333333333333333,0.75,1,26 -cell,0.8133333333333332,1.0,0.7499999999999999,0.8166666666666667,1,26 -mug,0.7616666666666667,1.0,0.6333333333333333,0.75,1,26 -yogurt,0.5766666666666667,1.0,0.55,0.6833333333333333,1,26 -plantain,0.6333333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -red,0.9,0.8,1.0,0.85,3,26 -pepper,0.7833333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -wheat,0.7266666666666668,1.0,0.5666666666666667,0.7,1,26 -kleenex,0.48,1.0,0.4833333333333332,0.6166666666666666,1,26 -toothbrush,0.5216666666666666,1.0,0.5,0.6333333333333333,1,26 -binder,0.6416666666666666,1.0,0.7,0.7833333333333333,1,26 -baseball,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -pliers,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7,1.0,0.7,0.7833333333333333,1,26 -thins,0.6483333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -package,0.7749999999999999,0.95,0.6833333333333333,0.75,1,26 -k,0.4716666666666667,1.0,0.5,0.6333333333333333,1,26 -jelly,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.7716666666666667,0.75,0.8666666666666666,0.76,2,25 -apple,0.825,0.9,0.7833333333333333,0.7833333333333333,1,25 -bell,0.6,1.0,0.5833333333333333,0.7,1,26 -battery,0.79,1.0,0.7166666666666666,0.8,1,26 -jar,0.8083333333333332,1.0,0.7333333333333333,0.8166666666666667,1,26 -bound,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -lettuce,0.7566666666666667,1.0,0.6333333333333333,0.75,1,26 -brush,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -scissors,0.5833333333333333,1.0,0.5,0.65,1,26 -lime,0.61,1.0,0.6333333333333333,0.7333333333333333,1,25 -toothpaste,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -top,0.5966666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -spiral,0.5983333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -handles,0.6249999999999999,1.0,0.6333333333333332,0.7333333333333333,1,25 -camera,0.49333333333333335,1.0,0.5166666666666666,0.65,1,26 -eraser,0.9066666666666666,1.0,0.8,0.8666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.5983333333333333,0.485,1.0,0.631904761904762,5,21 -banana,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -phone,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -stick,0.8550000000000001,1.0,0.7833333333333333,0.85,1,25 -cereal,0.605,1.0,0.5166666666666666,0.65,1,26 -bulb,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6983333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -can,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.5583333333333333,1.0,0.5833333333333333,0.7,1,26 -crackers,0.8,1.0,0.7166666666666666,0.8,1,26 -plate,0.7499999999999999,1.0,0.7,0.7833333333333333,1,25 -calculator,0.3716666666666667,0.6,0.5,0.5066666666666666,1,26 -tissues,0.5416666666666666,1.0,0.5,0.6333333333333333,1,26 -juice,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -pink,0.7333333333333333,1.0,0.6833333333333332,0.7666666666666666,1,25 -lemon,0.64,1.0,0.4833333333333333,0.6333333333333334,1,26 -peach,0.7183333333333333,1.0,0.6,0.7166666666666667,1,26 -bowl,0.585,1.0,0.4666666666666666,0.6166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -blue,0.6333333333333334,1.0,0.6333333333333333,0.7333333333333333,1,25 -used,0.5733333333333334,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -ball,0.38,1.0,0.4,0.5666666666666667,1,25 -notebook,0.7583333333333333,1.0,0.75,0.8166666666666667,1,26 -garlic,0.7983333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -cleaning,0.8716666666666667,1.0,0.75,0.8333333333333333,1,26 -pair,0.9333333333333332,1.0,0.9333333333333332,0.96,2,27 -container,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,25 -tomato,0.5349999999999999,0.9,0.6166666666666666,0.65,1,26 -cellphone,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -potato,0.7583333333333333,1.0,0.7166666666666666,0.8,1,25 -light,0.9333333333333332,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,25 -bottle,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.650679012345679 -F1-Score: 0.689320987654321 -Precision: 0.9031018518518518 -Recall: 0.6114197530864197 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.9166666666666666,1.0,0.8833333333333332,0.9166666666666666,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,25 -looks,0.5983333333333334,0.55,0.7333333333333333,0.5833333333333334,1,24 -keyboard,0.7416666666666666,1.0,0.7499999999999999,0.8166666666666668,1,26 -glue,0.74,1.0,0.6,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -flashlight,0.5383333333333333,1.0,0.4333333333333333,0.6,1,26 -cup,0.7833333333333333,1.0,0.7333333333333333,0.8,1,26 -folded,0.8150000000000001,1.0,0.6833333333333333,0.7833333333333333,1,26 -jam,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -black,0.8600000000000001,0.725,1.0,0.8257142857142856,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.8,1.0,0.8166666666666667,0.8666666666666666,1,26 -soccer,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -hat,0.6583333333333333,1.0,0.6,0.7166666666666667,1,26 -brown,0.9333333333333332,1.0,0.9333333333333332,0.96,2,24 -coffee,0.8666666666666666,1.0,0.7833333333333333,0.85,1,26 -handle,0.425,1.0,0.4499999999999999,0.6,1,25 -food,0.575,1.0,0.5166666666666666,0.65,1,26 -towel,0.5166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -chips,0.63,1.0,0.5333333333333333,0.6666666666666667,1,26 -stapler,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -onion,0.6666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.6183333333333333,1.0,0.5833333333333333,0.7,1,26 -sponge,0.45,1.0,0.4833333333333332,0.6166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.6966666666666665,1.0,0.5666666666666667,0.7,1,25 -special,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -colgate,0.6833333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -leaf,0.6399999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -tube,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.6383333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -mug,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -yogurt,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666668,1,26 -plantain,0.6516666666666666,1.0,0.5666666666666667,0.7,1,26 -red,0.76,0.6166666666666666,1.0,0.71,3,27 -pepper,0.6499999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -wheat,0.7133333333333333,1.0,0.65,0.75,1,26 -kleenex,0.8266666666666665,1.0,0.7833333333333333,0.85,1,26 -toothbrush,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -binder,0.475,1.0,0.4666666666666666,0.6166666666666667,1,26 -baseball,0.7383333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -pliers,0.76,1.0,0.65,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5599999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -thins,0.7416666666666667,1.0,0.7166666666666666,0.8,1,26 -package,0.5999999999999999,0.95,0.5666666666666667,0.65,1,26 -k,0.5166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.6849999999999999,1.0,0.5666666666666667,0.7,1,26 -fruit,0.8083333333333333,0.7,0.9333333333333332,0.7733333333333334,2,26 -apple,0.5733333333333334,0.7,0.7,0.6,1,25 -bell,0.9166666666666666,1.0,0.8833333333333332,0.9166666666666666,1,26 -battery,0.63,1.0,0.5833333333333333,0.7,1,26 -jar,0.5716666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -bound,0.45999999999999996,1.0,0.4,0.5666666666666667,1,26 -lettuce,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -brush,0.655,1.0,0.5499999999999999,0.6833333333333333,1,26 -scissors,0.725,1.0,0.7,0.7833333333333333,1,26 -lime,0.5166666666666666,1.0,0.5999999999999999,0.7,1,25 -toothpaste,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -top,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -spiral,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -handles,0.8466666666666667,1.0,0.8333333333333333,0.8833333333333332,1,25 -camera,0.69,1.0,0.6,0.7166666666666667,1,26 -eraser,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.7783333333333334,0.6416666666666667,1.0,0.777142857142857,5,21 -banana,0.43,1.0,0.4666666666666666,0.6166666666666667,1,26 -pitcher,0.625,1.0,0.6166666666666666,0.7166666666666667,1,26 -phone,0.475,1.0,0.45,0.6,1,26 -stick,0.6900000000000001,1.0,0.5333333333333333,0.6666666666666667,1,25 -cereal,0.725,1.0,0.5999999999999999,0.7166666666666666,1,26 -bulb,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -hair,0.4883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6749999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -can,0.9016666666666666,1.0,0.8666666666666668,0.9200000000000002,2,26 -coca,0.5799999999999998,1.0,0.4833333333333333,0.6333333333333333,1,26 -crackers,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -plate,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -calculator,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -tissues,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333334,1,26 -juice,0.55,1.0,0.4333333333333333,0.5833333333333333,1,26 -pink,0.6966666666666667,1.0,0.6,0.7166666666666667,1,25 -lemon,0.5833333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -peach,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -bowl,0.7233333333333333,1.0,0.65,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8,1.0,0.7833333333333333,0.85,1,26 -blue,0.6266666666666667,0.95,0.5999999999999999,0.6833333333333333,1,25 -used,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.615,1.0,0.4833333333333333,0.6333333333333333,1,26 -ball,0.45,1.0,0.4833333333333333,0.6166666666666666,1,25 -notebook,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -garlic,0.48,1.0,0.4333333333333333,0.6,1,26 -cleaning,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -pair,0.89,1.0,0.8333333333333333,0.9,2,26 -container,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,25 -tomato,0.6316666666666666,0.6,0.6833333333333333,0.5833333333333334,1,26 -cellphone,0.6433333333333333,1.0,0.6,0.7166666666666667,1,26 -potato,0.6266666666666667,1.0,0.6,0.7166666666666667,1,25 -light,0.8666666666666666,1.0,0.8333333333333334,0.9000000000000001,2,25 -green,0.9633333333333333,0.9166666666666666,1.0,0.9466666666666667,3,24 -bottle,0.8916666666666666,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6413888888888887 -F1-Score: 0.6857054673721342 -Precision: 0.9009259259259259 -Recall: 0.6098765432098765 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7333333333333333,1.0,0.7499999999999999,0.8166666666666667,1,25 -yellow,0.9800000000000001,0.95,1.0,0.9666666666666666,6,24 -looks,0.6666666666666666,0.9,0.6166666666666666,0.6666666666666667,1,24 -keyboard,0.7633333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -glue,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6466666666666667,1.0,0.5,0.65,1,26 -flashlight,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -cup,0.28833333333333333,0.5,0.4833333333333333,0.4766666666666667,1,26 -folded,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -jam,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -black,0.9466666666666667,0.8666666666666666,1.0,0.9133333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -soccer,0.5883333333333334,1.0,0.5833333333333333,0.7,1,26 -hat,0.7833333333333333,1.0,0.7999999999999999,0.85,1,26 -brown,0.975,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -handle,0.5716666666666667,1.0,0.5166666666666666,0.65,1,25 -food,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,25 -towel,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -chips,0.59,1.0,0.5833333333333333,0.7,1,26 -stapler,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -onion,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -bag,0.7183333333333333,1.0,0.5666666666666667,0.7,1,26 -sponge,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6,1.0,0.5833333333333333,0.7,1,25 -special,0.5433333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -colgate,0.65,1.0,0.5333333333333333,0.6666666666666667,1,26 -leaf,0.8666666666666666,1.0,0.8666666666666666,0.9,1,26 -tube,0.7133333333333334,1.0,0.5666666666666667,0.7,1,26 -cell,0.725,1.0,0.7,0.7833333333333333,1,26 -mug,0.7016666666666667,1.0,0.65,0.75,1,26 -yogurt,0.7383333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -plantain,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.76,0.675,1.0,0.7838095238095237,3,24 -pepper,0.7699999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -wheat,0.8666666666666666,1.0,0.7833333333333333,0.85,1,26 -kleenex,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -binder,0.6433333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -baseball,0.6483333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -pliers,0.6683333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.38333333333333336,1.0,0.4833333333333334,0.6166666666666666,1,26 -thins,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -package,0.6799999999999999,1.0,0.65,0.75,1,26 -k,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.8583333333333332,1.0,0.7833333333333333,0.85,1,26 -fruit,0.6783333333333335,0.65,0.8666666666666666,0.7033333333333334,2,25 -apple,0.6216666666666666,0.95,0.6333333333333333,0.7,1,25 -bell,0.61,1.0,0.5833333333333333,0.7,1,26 -battery,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -jar,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -bound,0.7083333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -lettuce,0.6583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -brush,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -scissors,0.6966666666666665,1.0,0.6166666666666666,0.7333333333333333,1,26 -lime,0.5716666666666665,1.0,0.4666666666666666,0.6166666666666666,1,25 -toothpaste,0.6583333333333334,1.0,0.6,0.7166666666666667,1,26 -top,0.625,1.0,0.6,0.7166666666666667,1,26 -spiral,0.63,1.0,0.6333333333333332,0.7333333333333333,1,26 -handles,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -camera,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -eraser,0.745,1.0,0.5333333333333333,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.8366666666666667,0.65,1.0,0.7733333333333334,5,22 -banana,0.5216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -pitcher,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -phone,0.6966666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -stick,0.7766666666666666,1.0,0.7166666666666666,0.8,1,25 -cereal,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -bulb,0.8549999999999999,1.0,0.8333333333333333,0.9,2,27 -hair,0.65,1.0,0.5833333333333333,0.7,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6533333333333333,1.0,0.4999999999999999,0.65,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coca,0.6933333333333332,1.0,0.5833333333333333,0.7,1,26 -crackers,0.5433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.4666666666666666,1.0,0.5499999999999999,0.6666666666666666,1,24 -calculator,0.5416666666666667,0.9,0.5833333333333333,0.6333333333333333,1,26 -tissues,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -juice,0.875,1.0,0.7833333333333333,0.85,1,26 -pink,0.5866666666666667,1.0,0.5,0.65,1,25 -lemon,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -peach,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -bowl,0.7,1.0,0.7499999999999999,0.8166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.9133333333333334,1.0,0.8833333333333334,0.9166666666666666,1,26 -blue,0.6516666666666666,1.0,0.5833333333333333,0.7,1,25 -used,0.63,1.0,0.5,0.65,1,24 -energizer,0,0,0,0,1,26 -pear,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.6833333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -notebook,0.775,1.0,0.7,0.7833333333333333,1,26 -garlic,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -pair,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,27 -container,0.675,1.0,0.65,0.75,1,26 -tomato,0.4883333333333333,0.95,0.5166666666666666,0.6166666666666666,1,26 -cellphone,0.625,1.0,0.6166666666666666,0.7166666666666666,1,26 -potato,0.7933333333333333,1.0,0.6,0.7333333333333334,1,25 -light,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,26 -green,0.9133333333333334,0.7666666666666667,1.0,0.8466666666666665,3,23 -bottle,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6535030864197531 -F1-Score: 0.6955599647266314 -Precision: 0.9051697530864197 -Recall: 0.6191358024691357 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6,1.0,0.6166666666666666,0.7166666666666666,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.5483333333333333,0.8,0.4333333333333333,0.5333333333333333,1,24 -keyboard,0.63,1.0,0.65,0.75,1,26 -glue,0.5349999999999999,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.8733333333333333,1.0,0.7833333333333333,0.85,1,26 -flashlight,0.6050000000000001,1.0,0.55,0.6833333333333333,1,26 -cup,0.4716666666666667,0.5,0.6833333333333333,0.5433333333333334,1,26 -folded,0.5333333333333333,1.0,0.55,0.6666666666666667,1,26 -jam,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -black,0.8366666666666667,0.7083333333333333,1.0,0.819047619047619,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5433333333333333,1.0,0.5,0.6333333333333333,1,26 -soccer,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -hat,0.7383333333333334,1.0,0.65,0.75,1,26 -brown,0.8516666666666666,1.0,0.8,0.8800000000000001,2,24 -coffee,0.8033333333333333,1.0,0.6333333333333333,0.75,1,25 -handle,0.5,1.0,0.4833333333333332,0.6166666666666666,1,26 -food,0.5683333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -towel,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -chips,0.7216666666666667,1.0,0.65,0.75,1,26 -stapler,0.5583333333333333,1.0,0.55,0.6666666666666667,1,26 -onion,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -bag,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.6333333333333333,1.0,0.4499999999999999,0.6166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.71,1.0,0.65,0.75,1,25 -special,0.5133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -colgate,0.5999999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -leaf,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -tube,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -cell,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -mug,0.6066666666666667,1.0,0.55,0.6833333333333333,1,25 -yogurt,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -plantain,0.615,1.0,0.4333333333333334,0.6,1,26 -red,0.9,0.7999999999999999,1.0,0.86,3,26 -pepper,0.7849999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -wheat,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -kleenex,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -toothbrush,0.7566666666666666,1.0,0.5833333333333333,0.7166666666666667,1,26 -binder,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -baseball,0.575,1.0,0.5166666666666666,0.65,1,26 -pliers,0.69,1.0,0.6499999999999999,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7916666666666666,1.0,0.7166666666666666,0.8,1,26 -thins,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -package,0.8749999999999998,1.0,0.8,0.8666666666666666,1,26 -k,0.73,1.0,0.6499999999999999,0.75,1,26 -jelly,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -fruit,0.7783333333333334,0.8166666666666667,0.8666666666666666,0.8133333333333332,2,25 -apple,0.6566666666666666,0.9,0.6166666666666666,0.6666666666666667,1,25 -bell,0.6483333333333333,1.0,0.4999999999999999,0.65,1,26 -battery,0.8483333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -jar,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -bound,0.49333333333333335,1.0,0.4,0.5666666666666667,1,26 -lettuce,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -brush,0.6216666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -scissors,0.6933333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -lime,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666666,1,25 -toothpaste,0.6583333333333333,1.0,0.65,0.75,1,26 -top,0.4383333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -spiral,0.8616666666666667,1.0,0.7,0.8,1,26 -handles,0.705,1.0,0.65,0.75,1,25 -camera,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -eraser,0.7016666666666667,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,0.7916666666666666,0.6166666666666667,1.0,0.758095238095238,5,21 -banana,0.7266666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -pitcher,0.905,1.0,0.8333333333333333,0.8833333333333332,1,26 -phone,0.5166666666666666,1.0,0.4833333333333333,0.6166666666666666,1,26 -stick,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -cereal,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -bulb,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -hair,0.76,1.0,0.7166666666666666,0.8,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7899999999999999,1.0,0.6333333333333333,0.75,1,26 -can,0.8883333333333333,1.0,0.8666666666666668,0.9200000000000002,2,25 -coca,0.925,1.0,0.8833333333333332,0.9166666666666666,1,26 -crackers,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.6133333333333334,1.0,0.6333333333333333,0.7333333333333333,1,25 -calculator,0.5349999999999999,0.55,0.7,0.5633333333333334,1,26 -tissues,0.4749999999999999,1.0,0.5499999999999999,0.6666666666666667,1,26 -juice,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -pink,0.4833333333333334,0.55,0.5999999999999999,0.53,1,25 -lemon,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -peach,0.5666666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8400000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -blue,0.7266666666666667,1.0,0.6499999999999999,0.75,1,25 -used,0.775,1.0,0.7333333333333333,0.8166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -ball,0.655,1.0,0.5333333333333333,0.6666666666666667,1,25 -notebook,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -garlic,0.6016666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -cleaning,0.5416666666666666,1.0,0.4333333333333333,0.5833333333333333,1,26 -pair,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,27 -container,0.7516666666666667,1.0,0.5833333333333333,0.7166666666666667,1,25 -tomato,0.5983333333333334,0.55,0.6333333333333333,0.5566666666666666,1,26 -cellphone,0.5983333333333334,1.0,0.41666666666666663,0.5833333333333333,1,26 -potato,0.6466666666666666,1.0,0.5999999999999999,0.7166666666666667,1,25 -light,1.0,1.0,1.0,1.0,2,25 -green,0.9166666666666666,0.8333333333333333,1.0,0.8800000000000001,3,22 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6572685185185185 -F1-Score: 0.6886155202821869 -Precision: 0.8937499999999999 -Recall: 0.6151234567901235 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5716666666666667,1.0,0.5,0.65,1,25 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.4716666666666667,0.9,0.5499999999999999,0.6,1,24 -keyboard,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -glue,0.6133333333333333,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -flashlight,0.6499999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -cup,0.26666666666666666,0.5,0.4833333333333333,0.4766666666666667,1,26 -folded,0.6716666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -black,0.93,0.8333333333333333,1.0,0.8933333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.9350000000000002,1.0,0.85,0.8999999999999998,1,26 -soccer,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -hat,0.7966666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -brown,0.9349999999999999,1.0,0.9,0.9400000000000001,2,24 -coffee,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -handle,0.6383333333333334,1.0,0.5833333333333333,0.7,1,26 -food,0.6383333333333334,1.0,0.5833333333333333,0.7,1,25 -towel,0.755,1.0,0.65,0.75,1,26 -chips,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -stapler,0.6883333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -onion,0.4666666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.625,1.0,0.6166666666666666,0.7166666666666666,1,26 -sponge,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.5716666666666665,1.0,0.5333333333333333,0.6666666666666667,1,25 -special,0.6266666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -colgate,0.7333333333333333,1.0,0.6333333333333333,0.75,1,26 -leaf,0.7083333333333333,1.0,0.7,0.7833333333333334,1,26 -tube,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -cell,0.7633333333333333,1.0,0.6499999999999999,0.75,1,26 -mug,0.6383333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -yogurt,0.8833333333333332,1.0,0.8666666666666666,0.9,1,26 -plantain,0.605,1.0,0.5833333333333333,0.7,1,26 -red,0.8833333333333332,0.7666666666666667,1.0,0.8400000000000001,3,25 -pepper,0.775,1.0,0.75,0.8166666666666668,1,26 -wheat,0.8,1.0,0.8166666666666667,0.8666666666666666,1,26 -kleenex,0.6816666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -toothbrush,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -binder,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -baseball,0.6100000000000001,1.0,0.5166666666666666,0.6666666666666667,1,26 -pliers,0.5683333333333332,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8216666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -thins,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -package,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -k,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -jelly,0.7933333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -fruit,0.8283333333333334,0.8166666666666667,0.9,0.8333333333333334,2,25 -apple,0.59,0.85,0.5833333333333333,0.6166666666666667,1,25 -bell,0.7183333333333333,1.0,0.6499999999999999,0.75,1,26 -battery,0.6133333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -jar,0.5766666666666667,1.0,0.55,0.6833333333333333,1,26 -bound,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -lettuce,0.5349999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -brush,0.6933333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -lime,0.46333333333333326,1.0,0.5166666666666666,0.65,1,25 -toothpaste,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -top,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -spiral,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -handles,0.6383333333333333,1.0,0.5833333333333333,0.7,1,25 -camera,0.6966666666666665,1.0,0.5166666666666666,0.6666666666666667,1,26 -eraser,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.9266666666666667,0.8166666666666667,1.0,0.8800000000000001,5,22 -banana,0.7016666666666667,1.0,0.6,0.7166666666666667,1,26 -pitcher,0.655,1.0,0.65,0.75,1,26 -phone,0.7216666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -stick,0.7666666666666666,1.0,0.65,0.75,1,25 -cereal,0.6216666666666666,1.0,0.5833333333333333,0.7,1,26 -bulb,0.95,1.0,0.9333333333333332,0.96,2,26 -hair,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.505,1.0,0.4499999999999999,0.6,1,26 -can,0.9066666666666666,1.0,0.8666666666666666,0.9200000000000002,2,24 -coca,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -crackers,0.6666666666666666,1.0,0.7,0.7833333333333333,1,26 -plate,0.6466666666666666,1.0,0.6499999999999999,0.75,1,25 -calculator,0.7333333333333333,0.9,0.7499999999999999,0.75,1,26 -tissues,0.575,1.0,0.4833333333333333,0.6333333333333334,1,26 -juice,0.53,1.0,0.4833333333333333,0.6166666666666667,1,26 -pink,0.9166666666666666,1.0,0.8833333333333332,0.9166666666666666,1,25 -lemon,0.68,1.0,0.6666666666666666,0.7666666666666667,1,26 -peach,0.6883333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -bowl,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.805,1.0,0.7333333333333333,0.8166666666666667,1,26 -blue,0.735,1.0,0.5833333333333333,0.7,1,25 -used,0.46333333333333326,1.0,0.4499999999999999,0.6,1,24 -energizer,0,0,0,0,1,26 -pear,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -ball,0.6683333333333332,1.0,0.5166666666666666,0.6666666666666667,1,25 -notebook,0.4416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -garlic,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -cleaning,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -pair,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666667,1,25 -tomato,0.6416666666666667,0.95,0.6833333333333333,0.7333333333333333,1,26 -cellphone,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -potato,0.6399999999999999,1.0,0.6,0.7166666666666667,1,25 -light,0.93,1.0,0.8999999999999998,0.9400000000000001,2,26 -green,0.9666666666666668,0.9,1.0,0.9333333333333332,3,23 -bottle,0.95,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6613888888888889 -F1-Score: 0.7001543209876543 -Precision: 0.909567901234568 -Recall: 0.6214506172839507 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.74,1.0,0.6333333333333333,0.75,1,24 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.6666666666666667,1.0,0.6666666666666666,0.75,1,24 -keyboard,0.5433333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -glue,0.655,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.6966666666666667,1.0,0.55,0.6833333333333333,1,26 -flashlight,0.7433333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -cup,0.48,0.5,0.5499999999999999,0.5033333333333333,1,25 -folded,0.7166666666666667,1.0,0.5666666666666667,0.7,1,26 -jam,0.7716666666666666,1.0,0.7166666666666666,0.8,1,26 -black,0.8766666666666667,0.7,1.0,0.8066666666666666,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -soccer,0.7233333333333334,1.0,0.6499999999999999,0.75,1,26 -hat,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -brown,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -coffee,0.8,1.0,0.8666666666666666,0.9,1,25 -handle,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -food,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -towel,0.715,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.6483333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -stapler,0.5599999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -onion,0.61,0.95,0.6333333333333333,0.7,1,26 -bag,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -sponge,0.425,1.0,0.4499999999999999,0.6,1,26 -zero,0,0,0,0,1,26 -computer,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -special,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -colgate,0.625,1.0,0.5333333333333333,0.6666666666666666,1,26 -leaf,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -tube,0.75,1.0,0.7666666666666666,0.8333333333333333,1,26 -cell,0.485,0.65,0.5333333333333333,0.5233333333333333,1,26 -mug,0.5933333333333334,1.0,0.5833333333333333,0.7,1,25 -yogurt,0.8216666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -plantain,0.7016666666666667,1.0,0.5666666666666667,0.7,1,26 -red,0.9333333333333333,0.8666666666666666,1.0,0.9099999999999999,3,26 -pepper,0.655,1.0,0.5833333333333333,0.7,1,26 -wheat,0.605,1.0,0.4833333333333333,0.6333333333333333,1,26 -kleenex,0.6466666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -toothbrush,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -binder,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.7016666666666665,1.0,0.5833333333333333,0.7,1,26 -pliers,0.72,1.0,0.5999999999999999,0.7166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6433333333333333,1.0,0.5166666666666666,0.65,1,26 -thins,0.675,1.0,0.5833333333333333,0.7,1,26 -package,0.6666666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.5666666666666667,1.0,0.6833333333333332,0.7666666666666666,1,26 -jelly,0.7949999999999999,1.0,0.6333333333333333,0.75,1,26 -fruit,0.8266666666666668,0.9166666666666666,0.8333333333333333,0.8466666666666667,2,25 -apple,0.78,1.0,0.7166666666666666,0.8,1,25 -bell,0.5416666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -battery,0.78,1.0,0.7166666666666666,0.8,1,26 -jar,0.5466666666666666,1.0,0.45,0.6166666666666667,1,26 -bound,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.7899999999999999,1.0,0.6833333333333333,0.7833333333333334,1,26 -brush,0.39166666666666666,1.0,0.4499999999999999,0.6,1,26 -scissors,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -lime,0.7833333333333333,1.0,0.7999999999999999,0.85,1,25 -toothpaste,0.6183333333333334,1.0,0.4833333333333332,0.6333333333333333,1,26 -top,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -spiral,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -handles,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -camera,0.6333333333333333,1.0,0.6666666666666666,0.75,1,26 -eraser,0.5166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.7916666666666667,0.6333333333333333,1.0,0.7695238095238095,5,20 -banana,0.4916666666666667,1.0,0.5166666666666666,0.65,1,26 -pitcher,0.7466666666666666,1.0,0.6499999999999999,0.75,1,26 -phone,0.465,0.6,0.6,0.5399999999999999,1,26 -stick,0.635,1.0,0.6,0.7166666666666667,1,25 -cereal,0.51,1.0,0.4666666666666666,0.6166666666666667,1,26 -bulb,0.905,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.65,1.0,0.55,0.6833333333333333,1,26 -can,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -crackers,0.6,1.0,0.5333333333333333,0.6666666666666666,1,26 -plate,0.7133333333333334,1.0,0.6166666666666666,0.7333333333333333,1,25 -calculator,0.5516666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -tissues,0.77,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.63,1.0,0.4999999999999999,0.65,1,26 -pink,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -lemon,0.7683333333333333,1.0,0.65,0.75,1,26 -peach,0.7633333333333334,1.0,0.6833333333333333,0.7833333333333334,1,26 -bowl,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7766666666666666,1.0,0.6499999999999999,0.75,1,26 -blue,0.655,0.9,0.5999999999999999,0.65,1,25 -used,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.7133333333333333,1.0,0.5833333333333333,0.7,1,26 -ball,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.4666666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -garlic,0.5083333333333333,1.0,0.4833333333333333,0.6166666666666666,1,26 -cleaning,0.5083333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -pair,0.9400000000000001,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.8133333333333332,1.0,0.7166666666666666,0.8,1,25 -tomato,0.4683333333333334,0.9,0.5,0.5666666666666667,1,26 -cellphone,0.49499999999999994,0.7,0.5,0.54,1,26 -potato,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -light,0.9633333333333333,0.95,0.9666666666666666,0.9466666666666667,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8883333333333333,1.0,0.8666666666666668,0.9200000000000002,2,27 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6445987654320988 -F1-Score: 0.6850881834215168 -Precision: 0.9006172839506172 -Recall: 0.6046296296296296 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6383333333333333,1.0,0.55,0.6833333333333333,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.6649999999999999,0.8,0.7,0.6666666666666667,1,24 -keyboard,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.7466666666666667,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.7483333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -flashlight,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.4066666666666666,0.5,0.5833333333333333,0.51,1,26 -folded,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.6533333333333333,1.0,0.5666666666666667,0.7,1,26 -black,0.905,0.8,1.0,0.8733333333333334,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -soccer,0.635,1.0,0.5333333333333333,0.6666666666666667,1,26 -hat,0.5883333333333334,1.0,0.5833333333333333,0.7,1,26 -brown,0.9099999999999999,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.72,1.0,0.5499999999999999,0.6833333333333333,1,26 -handle,0.8566666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -food,0.5266666666666666,1.0,0.4666666666666666,0.6166666666666667,1,25 -towel,0.65,1.0,0.55,0.6833333333333333,1,26 -chips,0.7183333333333333,1.0,0.6499999999999999,0.75,1,26 -stapler,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.6216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -bag,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -sponge,0.7016666666666667,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.8099999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -special,0.6466666666666667,1.0,0.55,0.6833333333333333,1,26 -colgate,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -leaf,0.7633333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -tube,0.7633333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -cell,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -mug,0.45,1.0,0.5,0.6333333333333333,1,26 -yogurt,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -plantain,0.655,1.0,0.5833333333333333,0.7,1,26 -red,0.6599999999999999,0.49333333333333335,1.0,0.6464285714285714,3,25 -pepper,0.6166666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -wheat,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.5633333333333332,1.0,0.4666666666666666,0.6166666666666667,1,26 -toothbrush,0.6733333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -binder,0.7133333333333334,1.0,0.5666666666666667,0.7,1,26 -baseball,0.7416666666666667,1.0,0.7,0.7833333333333333,1,26 -pliers,0.51,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6500000000000001,1.0,0.6499999999999999,0.75,1,26 -thins,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -package,0.4833333333333333,1.0,0.4833333333333334,0.6166666666666666,1,26 -k,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -jelly,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -fruit,0.6816666666666666,0.7,0.8,0.72,2,26 -apple,0.6183333333333334,0.95,0.6,0.6833333333333333,1,25 -bell,0.4666666666666666,1.0,0.5166666666666666,0.65,1,26 -battery,0.5633333333333332,1.0,0.6166666666666666,0.7166666666666666,1,26 -jar,0.735,1.0,0.5999999999999999,0.7166666666666666,1,26 -bound,0.6883333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -lettuce,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -brush,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -scissors,0.6900000000000001,1.0,0.55,0.6833333333333333,1,26 -lime,0.5816666666666668,1.0,0.4499999999999999,0.6166666666666667,1,25 -toothpaste,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -top,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -handles,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -eraser,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.7933333333333333,0.6,1.0,0.7447619047619047,5,21 -banana,0.7166666666666666,1.0,0.7333333333333333,0.8,1,26 -pitcher,0.6483333333333333,1.0,0.5666666666666667,0.7,1,26 -phone,0.6833333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -stick,0.725,1.0,0.6166666666666666,0.7333333333333333,1,25 -cereal,0.5583333333333333,1.0,0.55,0.6833333333333333,1,26 -bulb,0.8716666666666667,1.0,0.8333333333333333,0.9,2,27 -hair,0.6966666666666667,1.0,0.65,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7416666666666667,1.0,0.7166666666666666,0.8,1,26 -can,0.9083333333333332,1.0,0.9,0.9400000000000001,2,27 -coca,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -crackers,0.5416666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -plate,0.7300000000000001,1.0,0.6666666666666666,0.7666666666666667,1,25 -calculator,0.5683333333333334,0.9,0.5166666666666666,0.6,1,26 -tissues,0.55,1.0,0.5333333333333333,0.6666666666666667,1,26 -juice,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666666,1,26 -pink,0.5599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -lemon,0.6933333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -peach,0.6416666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -bowl,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6833333333333333,1.0,0.6,0.7166666666666667,1,26 -blue,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,25 -used,0.6133333333333333,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -ball,0.5599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.6516666666666666,1.0,0.55,0.6833333333333333,1,26 -garlic,0.5599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -cleaning,0.8266666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -pair,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,27 -container,0.7,1.0,0.6499999999999999,0.75,1,25 -tomato,0.5716666666666667,0.85,0.5166666666666666,0.6166666666666667,1,26 -cellphone,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -potato,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -light,0.8799999999999999,1.0,0.8666666666666666,0.9200000000000002,2,26 -green,0.8833333333333334,0.7833333333333333,1.0,0.8647619047619047,3,24 -bottle,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6383333333333333 -F1-Score: 0.6808575837742504 -Precision: 0.9011728395061729 -Recall: 0.6004629629629629 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.63,1.0,0.6166666666666666,0.7166666666666666,1,25 -yellow,0.9833333333333334,0.9666666666666666,1.0,0.9800000000000001,6,23 -looks,0.695,0.75,0.7666666666666666,0.6833333333333333,1,24 -keyboard,0.6133333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -glue,0.5166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.7,1.0,0.65,0.75,1,26 -cup,0.5700000000000001,0.5,0.6833333333333333,0.5566666666666666,1,26 -folded,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -jam,0.7066666666666667,1.0,0.55,0.6833333333333333,1,26 -black,0.9066666666666666,0.8416666666666666,1.0,0.9057142857142857,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -soccer,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -hat,0.605,1.0,0.4666666666666666,0.6166666666666667,1,26 -brown,0.9166666666666666,1.0,0.9,0.9400000000000001,2,24 -coffee,0.65,1.0,0.65,0.75,1,26 -handle,0.675,1.0,0.65,0.75,1,25 -food,0.705,1.0,0.5833333333333333,0.7,1,25 -towel,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -stapler,0.8883333333333333,1.0,0.8,0.8666666666666666,1,26 -onion,0.76,1.0,0.6666666666666666,0.7666666666666666,1,26 -bag,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333334,1,26 -sponge,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5850000000000001,1.0,0.5333333333333333,0.6666666666666667,1,25 -special,0.7,1.0,0.7,0.7833333333333333,1,26 -colgate,0.5266666666666666,1.0,0.4333333333333333,0.6,1,26 -leaf,0.5966666666666666,1.0,0.5166666666666666,0.65,1,26 -tube,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -mug,0.7216666666666667,1.0,0.5666666666666667,0.7,1,26 -yogurt,0.5683333333333332,1.0,0.4499999999999999,0.6,1,26 -plantain,0.6683333333333332,0.95,0.55,0.65,1,26 -red,0.69,0.5783333333333334,1.0,0.7223809523809523,3,26 -pepper,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -wheat,0.8300000000000001,1.0,0.7833333333333333,0.85,1,26 -kleenex,0.7933333333333332,1.0,0.7,0.7833333333333333,1,26 -toothbrush,0.6416666666666666,1.0,0.55,0.6833333333333333,1,26 -binder,0.605,1.0,0.5333333333333333,0.6666666666666666,1,26 -baseball,0.6666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -pliers,0.39166666666666666,1.0,0.4499999999999999,0.6,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.7383333333333333,1.0,0.6,0.7166666666666667,1,26 -package,0.655,0.85,0.7,0.6833333333333333,1,26 -k,0.6,1.0,0.5333333333333333,0.6666666666666667,1,26 -jelly,0.63,1.0,0.5499999999999999,0.6833333333333333,1,26 -fruit,0.6583333333333333,0.55,0.9,0.6399999999999999,2,25 -apple,0.5199999999999999,0.85,0.6333333333333333,0.65,1,25 -bell,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.6466666666666666,1.0,0.6833333333333333,0.7666666666666667,1,26 -jar,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -bound,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -lettuce,0.6299999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -brush,0.45,1.0,0.4,0.5666666666666667,1,26 -scissors,0.6333333333333333,1.0,0.6,0.7166666666666667,1,26 -lime,0.6066666666666667,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.675,1.0,0.65,0.75,1,26 -top,0.6633333333333333,1.0,0.55,0.6833333333333333,1,26 -spiral,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -handles,0.6133333333333333,1.0,0.5166666666666666,0.65,1,25 -camera,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -eraser,0.78,1.0,0.6833333333333333,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.8116666666666668,0.65,1.0,0.7828571428571428,5,21 -banana,0.53,1.0,0.4499999999999999,0.6,1,26 -pitcher,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -phone,0.7583333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -stick,0.6,1.0,0.5833333333333333,0.7,1,25 -cereal,0.5516666666666666,1.0,0.4499999999999999,0.6,1,26 -bulb,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.6583333333333333,1.0,0.6333333333333332,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6666666666666666,1.0,0.7,0.7833333333333333,1,26 -can,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.76,1.0,0.65,0.75,1,26 -crackers,0.7216666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -plate,0.7666666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -calculator,0.4666666666666666,0.55,0.6166666666666666,0.5399999999999999,1,26 -tissues,0.5599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.8933333333333333,1.0,0.8333333333333333,0.8833333333333332,1,26 -pink,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333334,1,25 -lemon,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -peach,0.715,1.0,0.6666666666666666,0.7666666666666667,1,26 -bowl,0.5900000000000001,1.0,0.5,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -blue,0.7,1.0,0.5833333333333333,0.7,1,25 -used,0.75,1.0,0.7,0.7833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.7583333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -ball,0.4833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -notebook,0.8800000000000001,1.0,0.8333333333333333,0.8833333333333332,1,26 -garlic,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -cleaning,0.6083333333333333,1.0,0.5,0.65,1,26 -pair,0.86,1.0,0.8,0.8800000000000001,2,27 -container,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -tomato,0.45666666666666667,0.75,0.5666666666666667,0.5566666666666666,1,26 -cellphone,0.795,1.0,0.6166666666666666,0.7333333333333333,1,26 -potato,0.7633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -light,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -green,0.8366666666666667,0.6,1.0,0.74,3,24 -bottle,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,27 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6518672839506173 -F1-Score: 0.6831878306878306 -Precision: 0.892469135802469 -Recall: 0.6118827160493827 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -yellow,0.9199999999999999,0.8,1.0,0.8666666666666666,6,24 -looks,0.6666666666666666,0.95,0.65,0.7166666666666667,1,24 -keyboard,0.58,1.0,0.5499999999999999,0.6666666666666666,1,26 -glue,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.5549999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -flashlight,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -cup,0.3916666666666667,0.5,0.5833333333333333,0.51,1,26 -folded,0.6666666666666666,1.0,0.75,0.8166666666666667,1,26 -jam,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.9266666666666667,0.8166666666666667,1.0,0.8799999999999999,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.4666666666666666,1.0,0.5333333333333332,0.65,1,26 -soccer,0.8166666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -hat,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.975,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.6733333333333333,1.0,0.55,0.6833333333333333,1,26 -handle,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666667,1,25 -food,0.6666666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -towel,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -chips,0.6749999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -stapler,0.675,1.0,0.6166666666666666,0.7333333333333333,1,26 -onion,0.7583333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -bag,0.7633333333333333,1.0,0.75,0.8166666666666668,1,26 -sponge,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.605,1.0,0.4833333333333333,0.6333333333333334,1,25 -special,0.635,1.0,0.5333333333333333,0.6666666666666667,1,26 -colgate,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.8133333333333332,1.0,0.7833333333333333,0.85,1,26 -tube,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -cell,0.5033333333333334,0.6,0.6833333333333333,0.5633333333333334,1,26 -mug,0.725,1.0,0.65,0.75,1,26 -yogurt,0.8350000000000002,1.0,0.7333333333333333,0.8166666666666668,1,26 -plantain,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.7016666666666667,1.0,0.5666666666666667,0.7,1,26 -wheat,0.5466666666666666,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -binder,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.755,1.0,0.65,0.75,1,26 -pliers,0.8016666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7816666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -thins,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -package,0.3583333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -k,0.6,1.0,0.6166666666666666,0.7166666666666666,1,26 -jelly,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -fruit,0.7616666666666667,0.6,0.9666666666666666,0.7166666666666667,2,25 -apple,0.6683333333333333,0.7,0.7666666666666666,0.6333333333333333,1,25 -bell,0.7433333333333333,1.0,0.6499999999999999,0.75,1,26 -battery,0.6983333333333334,1.0,0.5666666666666667,0.7,1,26 -jar,0.755,1.0,0.7166666666666666,0.8,1,26 -bound,0.605,1.0,0.4666666666666666,0.6166666666666667,1,26 -lettuce,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -brush,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -scissors,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -lime,0.5266666666666666,1.0,0.5,0.6333333333333333,1,25 -toothpaste,0.45,1.0,0.41666666666666663,0.5833333333333333,1,26 -top,0.6916666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -spiral,0.7416666666666666,1.0,0.6333333333333333,0.75,1,26 -handles,0.6549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.625,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.725,1.0,0.6166666666666666,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.6649999999999999,0.5183333333333333,1.0,0.6654761904761903,5,21 -banana,0.5766666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -pitcher,0.575,1.0,0.5333333333333333,0.6666666666666667,1,26 -phone,0.41833333333333333,0.6,0.5833333333333333,0.53,1,26 -stick,0.8083333333333332,1.0,0.7666666666666666,0.8333333333333333,1,25 -cereal,0.8333333333333333,1.0,0.8166666666666667,0.8666666666666666,1,26 -bulb,0.9016666666666667,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.8400000000000001,1.0,0.7333333333333333,0.8166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5333333333333333,1.0,0.5,0.6333333333333333,1,26 -can,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.7683333333333333,1.0,0.65,0.75,1,26 -crackers,0.7083333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -plate,0.5216666666666666,1.0,0.4999999999999999,0.6333333333333333,1,25 -calculator,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -tissues,0.8633333333333333,1.0,0.8166666666666667,0.8666666666666668,1,26 -juice,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -lemon,0.40499999999999997,1.0,0.4499999999999999,0.6,1,26 -peach,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.6466666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.605,1.0,0.5833333333333333,0.7,1,26 -blue,0.5933333333333333,1.0,0.5833333333333333,0.7,1,25 -used,0.705,1.0,0.6166666666666666,0.7333333333333334,1,24 -energizer,0,0,0,0,1,26 -pear,0.705,1.0,0.5666666666666667,0.7,1,26 -ball,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -notebook,0.7216666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -garlic,0.75,1.0,0.6166666666666666,0.7333333333333334,1,26 -cleaning,0.575,1.0,0.4833333333333333,0.6333333333333333,1,26 -pair,0.8916666666666666,1.0,0.8666666666666666,0.9200000000000002,2,27 -container,0.6,1.0,0.5999999999999999,0.7166666666666667,1,25 -tomato,0.8166666666666667,0.95,0.7666666666666666,0.8,1,26 -cellphone,0.4116666666666666,0.55,0.5,0.4966666666666667,1,26 -potato,0.755,1.0,0.7166666666666666,0.8,1,25 -light,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,24 -bottle,0.885,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6506018518518518 -F1-Score: 0.6912852733686068 -Precision: 0.8938425925925927 -Recall: 0.6212962962962962 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5,1.0,0.5166666666666666,0.65,1,24 -yellow,0.9500000000000002,0.85,1.0,0.8999999999999998,6,24 -looks,0.505,0.85,0.5833333333333333,0.6,1,24 -keyboard,0.6583333333333333,1.0,0.65,0.75,1,26 -glue,0.7583333333333333,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.5333333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -flashlight,0.5583333333333333,1.0,0.5833333333333333,0.7,1,26 -cup,0.48999999999999994,0.4,0.6833333333333333,0.4766666666666667,1,26 -folded,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -jam,0.6266666666666667,1.0,0.6,0.7166666666666667,1,26 -black,0.9833333333333334,0.95,1.0,0.9666666666666666,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.5716666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -soccer,0.6466666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -hat,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.8933333333333333,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.5566666666666666,1.0,0.4333333333333333,0.6,1,25 -handle,0.6233333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -food,0.7383333333333333,1.0,0.6333333333333332,0.7333333333333333,1,24 -towel,0.805,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.7816666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -stapler,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.6233333333333333,0.85,0.6333333333333333,0.6333333333333334,1,26 -bag,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -sponge,0.5916666666666666,1.0,0.55,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.705,1.0,0.6499999999999999,0.75,1,25 -special,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -colgate,0.7283333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -leaf,0.765,1.0,0.6333333333333333,0.75,1,26 -tube,0.4466666666666666,1.0,0.4499999999999999,0.6,1,26 -cell,0.755,1.0,0.7666666666666666,0.8333333333333333,1,26 -mug,0.71,1.0,0.6166666666666666,0.7333333333333333,1,25 -yogurt,0.4333333333333334,1.0,0.4,0.5666666666666667,1,26 -plantain,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.82,0.7166666666666667,1.0,0.8023809523809524,3,26 -pepper,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -wheat,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -kleenex,0.505,1.0,0.4666666666666666,0.6166666666666667,1,26 -toothbrush,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -binder,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -baseball,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -pliers,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.58,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.655,1.0,0.5833333333333333,0.7,1,26 -package,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -k,0.6383333333333334,1.0,0.6,0.7166666666666667,1,26 -jelly,0.6666666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -fruit,0.6683333333333333,0.6,0.8666666666666666,0.6733333333333333,2,26 -apple,0.5133333333333333,1.0,0.4833333333333334,0.6166666666666666,1,25 -bell,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -battery,0.38166666666666665,1.0,0.41666666666666663,0.5833333333333334,1,26 -jar,0.5216666666666667,1.0,0.5833333333333333,0.7,1,26 -bound,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -lettuce,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -brush,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.4716666666666667,1.0,0.38333333333333336,0.55,1,26 -lime,0.6799999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -toothpaste,0.7749999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -top,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -spiral,0.8,1.0,0.7166666666666666,0.8,1,26 -handles,0.8216666666666667,1.0,0.6833333333333333,0.7833333333333334,1,25 -camera,0.74,1.0,0.5333333333333333,0.6833333333333333,1,26 -eraser,0.6633333333333333,1.0,0.5666666666666667,0.7,1,26 -creamer,0,0,0,0,1,26 -white,0.6516666666666666,0.5249999999999999,1.0,0.6704761904761904,5,19 -banana,0.7683333333333333,1.0,0.6499999999999999,0.75,1,26 -pitcher,0.8666666666666666,1.0,0.7833333333333333,0.85,1,26 -phone,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -stick,0.5349999999999999,1.0,0.5333333333333333,0.6666666666666667,1,25 -cereal,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -bulb,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.5783333333333334,1.0,0.4499999999999999,0.6166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5766666666666667,1.0,0.4333333333333333,0.6,1,26 -can,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,25 -coca,0.585,1.0,0.4833333333333333,0.6333333333333333,1,26 -crackers,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -plate,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,25 -calculator,0.6133333333333334,0.9,0.6333333333333333,0.6666666666666667,1,26 -tissues,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.6799999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -pink,0.7816666666666667,1.0,0.6166666666666666,0.7333333333333334,1,25 -lemon,0.5083333333333333,1.0,0.55,0.6666666666666667,1,26 -peach,0.73,1.0,0.6333333333333333,0.75,1,26 -bowl,0.6383333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -blue,0.5933333333333333,0.8,0.75,0.6833333333333333,1,25 -used,0.705,1.0,0.6166666666666666,0.7333333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.7,1.0,0.6333333333333332,0.7333333333333333,1,26 -ball,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.7183333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -garlic,0.5999999999999999,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.6883333333333332,1.0,0.55,0.6833333333333333,1,26 -pair,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -tomato,0.605,0.7,0.65,0.5833333333333334,1,26 -cellphone,0.5333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -potato,0.6966666666666665,1.0,0.6499999999999999,0.75,1,25 -light,0.8316666666666667,0.75,0.9,0.78,2,27 -green,0.9633333333333333,0.9,1.0,0.9333333333333332,3,23 -bottle,1.0,1.0,1.0,1.0,2,26 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6397067901234569 -F1-Score: 0.6792548500881835 -Precision: 0.8962191358024691 -Recall: 0.6050925925925925 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6666666666666666,1.0,0.5666666666666667,0.7,1,25 -yellow,0.95,0.8666666666666666,1.0,0.9133333333333333,6,25 -looks,0.44000000000000006,0.85,0.4999999999999999,0.55,1,24 -keyboard,0.5466666666666666,1.0,0.41666666666666663,0.5833333333333334,1,26 -glue,0.7216666666666667,1.0,0.5666666666666667,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.4833333333333333,1.0,0.5999999999999999,0.7,1,26 -flashlight,0.7216666666666667,1.0,0.65,0.75,1,26 -cup,0.32666666666666666,0.5,0.6,0.52,1,26 -folded,0.73,1.0,0.6333333333333333,0.7333333333333333,1,26 -jam,0.4583333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -black,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.5933333333333333,1.0,0.5166666666666666,0.65,1,26 -soccer,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -hat,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -brown,0.9066666666666666,1.0,0.8666666666666666,0.9199999999999999,2,25 -coffee,0.7100000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -handle,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,25 -food,0.8266666666666665,1.0,0.7333333333333333,0.8166666666666667,1,25 -towel,0.5216666666666667,1.0,0.5166666666666666,0.65,1,26 -chips,0.7216666666666667,1.0,0.65,0.75,1,26 -stapler,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -onion,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -bag,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -sponge,0.6399999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.675,1.0,0.6666666666666666,0.7666666666666667,1,26 -special,0.8566666666666667,1.0,0.7,0.8,1,26 -colgate,0.6266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.6416666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.5433333333333333,1.0,0.5166666666666666,0.65,1,26 -cell,0.8466666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -mug,0.6883333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -yogurt,0.5233333333333333,1.0,0.5166666666666666,0.65,1,26 -plantain,0.6983333333333334,1.0,0.6,0.7166666666666666,1,26 -red,0.67,0.425,1.0,0.5857142857142856,3,25 -pepper,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -kleenex,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -toothbrush,0.6133333333333334,1.0,0.65,0.75,1,26 -binder,0.575,1.0,0.5333333333333333,0.6666666666666666,1,26 -baseball,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -pliers,0.46333333333333326,1.0,0.45,0.6,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.63,1.0,0.5499999999999999,0.6833333333333333,1,26 -thins,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -package,0.5966666666666667,0.9,0.5833333333333333,0.6333333333333333,1,26 -k,0.5883333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -jelly,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -fruit,0.6416666666666667,0.4666666666666666,0.9333333333333332,0.5966666666666667,2,26 -apple,0.7,0.75,0.6333333333333333,0.6166666666666667,1,25 -bell,0.5133333333333333,1.0,0.4499999999999999,0.6,1,26 -battery,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -jar,0.8183333333333334,1.0,0.65,0.7666666666666667,1,26 -bound,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -brush,0.8566666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -scissors,0.6583333333333333,1.0,0.6,0.7166666666666667,1,26 -lime,0.6183333333333334,1.0,0.5499999999999999,0.6833333333333333,1,25 -toothpaste,0.6849999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -top,0.5716666666666665,1.0,0.4666666666666666,0.6166666666666666,1,26 -spiral,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -handles,0.6583333333333333,1.0,0.5666666666666667,0.7,1,25 -camera,0.6816666666666666,1.0,0.5666666666666667,0.7,1,26 -eraser,0.8550000000000001,1.0,0.75,0.8333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.7483333333333333,0.5916666666666666,1.0,0.7271428571428571,5,22 -banana,0.8083333333333332,1.0,0.7833333333333333,0.85,1,26 -pitcher,0.5966666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -phone,0.6966666666666665,1.0,0.6166666666666666,0.7166666666666666,1,26 -stick,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,25 -cereal,0.86,1.0,0.75,0.8333333333333334,1,26 -bulb,0.9083333333333332,1.0,0.9,0.9400000000000001,2,27 -hair,0.7183333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -can,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -coca,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -crackers,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -plate,0.6583333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -calculator,0.755,1.0,0.6166666666666666,0.7333333333333333,1,26 -tissues,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -juice,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -pink,0.605,1.0,0.5166666666666666,0.65,1,25 -lemon,0.59,1.0,0.5499999999999999,0.6833333333333333,1,26 -peach,0.63,1.0,0.4999999999999999,0.65,1,26 -bowl,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.675,1.0,0.4999999999999999,0.65,1,26 -blue,0.8316666666666667,1.0,0.65,0.7666666666666666,1,25 -used,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666666,1,23 -energizer,0,0,0,0,1,26 -pear,0.6749999999999999,1.0,0.7,0.7833333333333333,1,26 -ball,0.7216666666666667,1.0,0.6,0.7166666666666667,1,25 -notebook,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -garlic,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -cleaning,0.73,1.0,0.6,0.7166666666666667,1,26 -pair,0.8933333333333332,1.0,0.8666666666666666,0.9200000000000002,2,27 -container,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -tomato,0.33166666666666667,0.7,0.4499999999999999,0.5033333333333334,1,26 -cellphone,0.7683333333333333,1.0,0.6499999999999999,0.75,1,26 -potato,0.5583333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -light,0.9333333333333332,1.0,0.9333333333333332,0.96,2,26 -green,0.8933333333333333,0.8,1.0,0.8733333333333334,3,24 -bottle,0.89,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6411265432098766 -F1-Score: 0.678699294532628 -Precision: 0.8959876543209876 -Recall: 0.6015432098765431 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666668,1,24 -yellow,0.9633333333333333,0.9166666666666666,1.0,0.9466666666666667,6,24 -looks,0.5916666666666666,1.0,0.5333333333333333,0.6666666666666667,1,24 -keyboard,0.705,1.0,0.5666666666666667,0.7,1,26 -glue,0.8416666666666668,1.0,0.7666666666666666,0.8333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.5916666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -flashlight,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -cup,0.6266666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -folded,0.7816666666666667,1.0,0.6,0.7333333333333334,1,26 -jam,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -black,0.9066666666666666,0.7833333333333333,1.0,0.86,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7666666666666667,1.0,0.7166666666666666,0.8,1,26 -soccer,0.6399999999999999,1.0,0.5166666666666666,0.65,1,26 -hat,0.6716666666666667,1.0,0.6,0.7166666666666667,1,26 -brown,0.9266666666666665,1.0,0.9,0.9400000000000001,2,26 -coffee,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666667,1,25 -handle,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -food,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,24 -towel,0.8033333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -stapler,0.6183333333333333,1.0,0.5166666666666666,0.65,1,26 -onion,0.48999999999999994,1.0,0.4,0.5666666666666667,1,26 -bag,0.7,1.0,0.75,0.8166666666666667,1,26 -sponge,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.6966666666666665,1.0,0.5833333333333333,0.7,1,25 -special,0.7433333333333333,1.0,0.6,0.7166666666666667,1,26 -colgate,0.705,1.0,0.6,0.7166666666666667,1,26 -leaf,0.6966666666666665,1.0,0.6166666666666666,0.7333333333333333,1,26 -tube,0.6583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -cell,0.30166666666666664,0.5,0.4666666666666666,0.4666666666666667,1,26 -mug,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,25 -yogurt,0.7216666666666666,1.0,0.5666666666666667,0.7,1,26 -plantain,0.5216666666666667,1.0,0.5166666666666666,0.65,1,26 -red,0.82,0.7,1.0,0.7933333333333333,3,25 -pepper,0.6416666666666667,1.0,0.7,0.7833333333333333,1,26 -wheat,0.7166666666666666,1.0,0.6499999999999999,0.75,1,26 -kleenex,0.5966666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -toothbrush,0.61,1.0,0.4833333333333333,0.6333333333333333,1,26 -binder,0.69,1.0,0.5999999999999999,0.7166666666666667,1,26 -baseball,0.605,1.0,0.5833333333333333,0.7,1,26 -pliers,0.7066666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.6,1.0,0.6833333333333333,0.7666666666666666,1,26 -package,0.5866666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -k,0.5816666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -jelly,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -fruit,0.7983333333333333,0.75,0.8999999999999998,0.78,2,26 -apple,0.7033333333333333,0.8,0.7,0.6666666666666667,1,25 -bell,0.7466666666666667,1.0,0.6499999999999999,0.75,1,26 -battery,0.7433333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -jar,0.635,1.0,0.5499999999999999,0.6833333333333333,1,26 -bound,0.6933333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -lettuce,0.705,1.0,0.6499999999999999,0.75,1,26 -brush,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -lime,0.6966666666666667,1.0,0.6,0.7166666666666667,1,25 -toothpaste,0.9133333333333333,1.0,0.8833333333333332,0.9166666666666666,1,26 -top,0.6333333333333334,1.0,0.55,0.6833333333333333,1,26 -spiral,0.575,1.0,0.5833333333333333,0.7,1,26 -handles,0.655,1.0,0.55,0.6833333333333333,1,25 -camera,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -eraser,0.5633333333333332,1.0,0.6166666666666666,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.8016666666666665,0.7,1.0,0.8209523809523809,5,21 -banana,0.775,1.0,0.7499999999999999,0.8166666666666667,1,26 -pitcher,0.73,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.043333333333333335,0.5,0.4333333333333334,0.44666666666666666,1,26 -stick,0.65,1.0,0.6833333333333333,0.7666666666666667,1,25 -cereal,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bulb,0.8766666666666667,1.0,0.8333333333333333,0.9,2,26 -hair,0.705,1.0,0.5666666666666667,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8,1.0,0.7499999999999999,0.8166666666666667,1,26 -can,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.625,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.6733333333333332,1.0,0.5,0.65,1,26 -plate,0.6216666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -calculator,0.5666666666666667,1.0,0.5833333333333333,0.7,1,26 -tissues,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666666,1,26 -juice,0.76,1.0,0.6666666666666666,0.7666666666666666,1,26 -pink,0.45166666666666677,0.65,0.6333333333333333,0.5566666666666668,1,25 -lemon,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.6799999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -bowl,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -blue,0.8466666666666665,1.0,0.7666666666666666,0.8333333333333333,1,25 -used,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,23 -energizer,0,0,0,0,1,26 -pear,0.5999999999999999,1.0,0.5833333333333333,0.7,1,26 -ball,0.8550000000000001,1.0,0.7333333333333333,0.8166666666666668,1,25 -notebook,0.58,1.0,0.6333333333333332,0.7333333333333333,1,26 -garlic,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.53,0.5,0.7,0.5533333333333335,1,26 -pair,0.8916666666666666,1.0,0.8666666666666666,0.9200000000000002,2,27 -container,0.7466666666666667,1.0,0.7,0.7833333333333334,1,25 -tomato,0.7,1.0,0.6333333333333333,0.75,1,26 -cellphone,0.37666666666666665,0.5,0.6833333333333333,0.5433333333333334,1,26 -potato,0.5599999999999999,1.0,0.5833333333333333,0.7,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -green,0.9466666666666667,0.8666666666666666,1.0,0.9133333333333333,3,24 -bottle,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,26 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6493981481481482 -F1-Score: 0.6909347442680775 -Precision: 0.8904320987654318 -Recall: 0.620216049382716 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5733333333333334,1.0,0.5166666666666666,0.65,1,24 -yellow,0.9133333333333334,0.8,1.0,0.8733333333333334,6,24 -looks,0.6499999999999999,0.95,0.65,0.7166666666666667,1,24 -keyboard,0.6766666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -glue,0.8483333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.7499999999999999,1.0,0.7,0.7833333333333333,1,26 -flashlight,0.6433333333333333,1.0,0.5166666666666666,0.65,1,26 -cup,0.22666666666666666,0.5,0.5166666666666666,0.4833333333333334,1,26 -folded,0.755,1.0,0.7166666666666666,0.8,1,26 -jam,0.7916666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -black,0.9500000000000002,0.8666666666666666,1.0,0.9133333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.5416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -soccer,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -hat,0.6933333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -brown,0.9333333333333332,1.0,0.9333333333333332,0.96,2,24 -coffee,0.6216666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -handle,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -food,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -towel,0.6799999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -chips,0.75,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -onion,0.5766666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.53,1.0,0.5166666666666666,0.65,1,26 -sponge,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7533333333333333,1.0,0.5666666666666667,0.7,1,25 -special,0.625,1.0,0.6333333333333333,0.7333333333333334,1,26 -colgate,0.58,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -cell,0.48166666666666663,0.5,0.7,0.5533333333333333,1,26 -mug,0.6933333333333332,1.0,0.6333333333333333,0.7333333333333333,1,25 -yogurt,0.7166666666666667,1.0,0.7166666666666666,0.8,1,26 -plantain,0.65,1.0,0.5999999999999999,0.7166666666666667,1,26 -red,0.7866666666666667,0.6333333333333333,1.0,0.7380952380952381,3,25 -pepper,0.835,1.0,0.7166666666666666,0.8,1,26 -wheat,0.5166666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -kleenex,0.7649999999999999,1.0,0.5666666666666667,0.7,1,26 -toothbrush,0.4916666666666667,1.0,0.4333333333333333,0.5833333333333334,1,26 -binder,0.53,1.0,0.5499999999999999,0.6666666666666666,1,26 -baseball,0.7416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.5149999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6816666666666668,1.0,0.5,0.65,1,26 -thins,0.6133333333333334,1.0,0.5833333333333333,0.7,1,26 -package,0.6416666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -k,0.585,1.0,0.41666666666666663,0.5833333333333334,1,26 -jelly,0.7433333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -fruit,0.7316666666666667,0.7666666666666666,0.8333333333333333,0.7466666666666667,2,25 -apple,0.5266666666666666,0.85,0.6666666666666666,0.65,1,25 -bell,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -battery,0.6183333333333333,1.0,0.4833333333333332,0.6333333333333333,1,26 -jar,0.7716666666666666,1.0,0.7,0.7833333333333333,1,26 -bound,0.62,1.0,0.4833333333333333,0.6333333333333333,1,26 -lettuce,0.725,1.0,0.7,0.7833333333333333,1,26 -brush,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -scissors,0.6599999999999999,1.0,0.6,0.7166666666666667,1,26 -lime,0.5933333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -toothpaste,0.655,1.0,0.6499999999999999,0.75,1,26 -top,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -spiral,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -handles,0.73,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.5216666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -eraser,0.575,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,0.795,0.6,1.0,0.7447619047619047,5,21 -banana,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -pitcher,0.6216666666666667,1.0,0.4999999999999999,0.65,1,26 -phone,0.40499999999999997,0.55,0.5666666666666667,0.51,1,26 -stick,0.675,1.0,0.5999999999999999,0.7166666666666666,1,25 -cereal,0.5833333333333333,1.0,0.6666666666666666,0.75,1,26 -bulb,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.7666666666666667,1.0,0.7166666666666666,0.8,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5933333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -coca,0.5916666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -crackers,0.6516666666666666,1.0,0.6,0.7166666666666667,1,26 -plate,0.5166666666666666,1.0,0.5499999999999999,0.6666666666666666,1,25 -calculator,0.6416666666666667,0.9,0.6333333333333333,0.6666666666666666,1,26 -tissues,0.725,1.0,0.6833333333333333,0.7666666666666666,1,26 -juice,0.8683333333333332,1.0,0.75,0.8333333333333333,1,26 -pink,0.6883333333333332,1.0,0.6,0.7166666666666666,1,25 -lemon,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -peach,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -bowl,0.575,1.0,0.4999999999999999,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.655,1.0,0.55,0.6833333333333333,1,26 -blue,0.755,1.0,0.6666666666666666,0.7666666666666667,1,25 -used,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666667,1,23 -energizer,0,0,0,0,1,26 -pear,0.6883333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -ball,0.74,1.0,0.6166666666666666,0.7333333333333333,1,25 -notebook,0.6183333333333333,1.0,0.55,0.6833333333333333,1,26 -garlic,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -cleaning,0.48,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.9400000000000001,1.0,0.9,0.9400000000000001,2,26 -container,0.7083333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -tomato,0.5483333333333333,0.85,0.5833333333333333,0.6166666666666666,1,26 -cellphone,0.39666666666666667,0.5,0.6166666666666666,0.5166666666666667,1,26 -potato,0.5166666666666666,1.0,0.5499999999999999,0.6666666666666666,1,25 -light,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -green,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666665,3,23 -bottle,0.9333333333333332,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6283950617283951 -F1-Score: 0.6747795414462081 -Precision: 0.8902777777777778 -Recall: 0.6004629629629629 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5216666666666667,1.0,0.5333333333333333,0.6666666666666666,1,25 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.775,0.95,0.7166666666666666,0.7666666666666667,1,24 -keyboard,0.635,1.0,0.5999999999999999,0.7166666666666666,1,26 -glue,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.7466666666666666,1.0,0.6833333333333332,0.7666666666666666,1,26 -flashlight,0.6133333333333333,1.0,0.65,0.75,1,26 -cup,0.5650000000000001,0.5,0.7333333333333333,0.5733333333333335,1,26 -folded,0.6933333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -jam,0.7666666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -black,0.9133333333333334,0.7916666666666666,1.0,0.8657142857142857,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5183333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -soccer,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -hat,0.625,1.0,0.6166666666666666,0.7166666666666666,1,26 -brown,0.9349999999999999,1.0,0.9,0.9400000000000001,2,24 -coffee,0.7166666666666666,1.0,0.7166666666666666,0.8,1,26 -handle,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -food,0.7516666666666667,1.0,0.5666666666666667,0.7,1,25 -towel,0.725,1.0,0.6666666666666666,0.7666666666666666,1,26 -chips,0.7300000000000001,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.6633333333333333,1.0,0.65,0.75,1,26 -bag,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -sponge,0.5383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.4583333333333333,1.0,0.4499999999999999,0.6,1,26 -special,0.6766666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.7216666666666667,1.0,0.5833333333333333,0.7,1,26 -leaf,0.8316666666666667,1.0,0.65,0.7666666666666667,1,26 -tube,0.5799999999999998,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -mug,0.505,1.0,0.5166666666666666,0.65,1,26 -yogurt,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -plantain,0.6383333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -red,0.8800000000000001,0.7999999999999999,1.0,0.8680952380952383,3,25 -pepper,0.8549999999999999,1.0,0.75,0.8333333333333334,1,26 -wheat,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -kleenex,0.8549999999999999,1.0,0.7833333333333333,0.85,1,26 -toothbrush,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -binder,0.725,1.0,0.7,0.7833333333333333,1,26 -baseball,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -pliers,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7683333333333333,1.0,0.6499999999999999,0.75,1,26 -thins,0.6216666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -package,0.675,1.0,0.6,0.7166666666666667,1,26 -k,0.6066666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -jelly,0.73,1.0,0.6166666666666666,0.7333333333333333,1,26 -fruit,0.835,0.6833333333333333,0.9666666666666666,0.7733333333333333,2,25 -apple,0.6249999999999999,1.0,0.4833333333333334,0.6333333333333333,1,25 -bell,0.755,1.0,0.6499999999999999,0.75,1,26 -battery,0.6933333333333332,1.0,0.55,0.6833333333333333,1,26 -jar,0.8416666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -bound,0.7716666666666666,1.0,0.7166666666666666,0.8,1,26 -lettuce,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -brush,0.61,1.0,0.5333333333333333,0.6666666666666667,1,26 -scissors,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.7733333333333333,1.0,0.5833333333333333,0.7166666666666667,1,25 -toothpaste,0.55,1.0,0.5166666666666666,0.65,1,26 -top,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -spiral,0.7416666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -handles,0.5499999999999999,1.0,0.4499999999999999,0.6,1,25 -camera,0.7499999999999999,1.0,0.7499999999999999,0.8166666666666667,1,26 -eraser,0.75,1.0,0.6666666666666666,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.6833333333333333,0.5533333333333333,1.0,0.7014285714285714,5,20 -banana,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -pitcher,0.7083333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -phone,0.4916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -stick,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -cereal,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -bulb,0.9016666666666667,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.6599999999999999,1.0,0.6,0.7166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -can,0.8833333333333332,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.325,1.0,0.4166666666666667,0.5666666666666667,1,26 -crackers,0.785,1.0,0.6333333333333333,0.75,1,26 -plate,0.5333333333333333,1.0,0.5166666666666666,0.65,1,25 -calculator,0.635,0.9,0.5999999999999999,0.6666666666666666,1,26 -tissues,0.5766666666666667,1.0,0.4333333333333333,0.6,1,26 -juice,0.47833333333333333,0.5,0.7166666666666666,0.5633333333333334,1,26 -pink,0.7883333333333333,1.0,0.7,0.7833333333333333,1,25 -lemon,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -peach,0.6516666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -bowl,0.6933333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -blue,0.8016666666666665,1.0,0.6333333333333333,0.75,1,25 -used,0.6583333333333333,1.0,0.6,0.7166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.5716666666666665,1.0,0.4666666666666666,0.6166666666666666,1,26 -ball,0.7133333333333333,1.0,0.65,0.75,1,25 -notebook,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -garlic,0.65,1.0,0.5166666666666666,0.65,1,26 -cleaning,0.6216666666666667,1.0,0.55,0.6833333333333333,1,26 -pair,0.9333333333333332,1.0,0.9333333333333332,0.96,2,26 -container,0.58,1.0,0.5666666666666667,0.6833333333333333,1,25 -tomato,0.5283333333333333,0.85,0.5666666666666667,0.6,1,26 -cellphone,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -potato,0.76,1.0,0.6166666666666666,0.7333333333333333,1,25 -light,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6475308641975308 -F1-Score: 0.6865299823633157 -Precision: 0.9021141975308642 -Recall: 0.6083333333333334 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7266666666666667,1.0,0.5333333333333333,0.6833333333333333,1,25 -yellow,0.875,0.725,1.0,0.8238095238095238,6,24 -looks,0.6516666666666666,0.9,0.5999999999999999,0.65,1,24 -keyboard,0.6316666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -glue,0.7133333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.8099999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -flashlight,0.725,1.0,0.65,0.75,1,26 -cup,0.33833333333333326,0.5,0.7,0.5533333333333335,1,25 -folded,0.6933333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -jam,0.6599999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -black,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666665,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7966666666666666,1.0,0.75,0.8166666666666667,1,26 -soccer,0.5333333333333333,1.0,0.55,0.6666666666666667,1,26 -hat,0.7333333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -brown,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,24 -coffee,0.775,1.0,0.8166666666666667,0.8666666666666666,1,26 -handle,0.585,1.0,0.4833333333333332,0.6333333333333333,1,26 -food,0.7899999999999999,1.0,0.7166666666666666,0.8,1,25 -towel,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.4966666666666666,1.0,0.4499999999999999,0.6,1,26 -onion,0.575,1.0,0.5499999999999999,0.6666666666666666,1,26 -bag,0.40499999999999997,1.0,0.4999999999999999,0.6333333333333333,1,26 -sponge,0.7916666666666666,1.0,0.7,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6516666666666666,1.0,0.55,0.6833333333333333,1,25 -special,0.7983333333333333,1.0,0.6333333333333333,0.75,1,26 -colgate,0.74,1.0,0.6166666666666666,0.7333333333333333,1,26 -leaf,0.605,1.0,0.5333333333333333,0.6666666666666666,1,26 -tube,0.6849999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -cell,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -mug,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -yogurt,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -plantain,0.8383333333333333,0.95,0.7666666666666666,0.8,1,26 -red,0.6366666666666667,0.4666666666666666,1.0,0.6266666666666667,3,25 -pepper,0.9016666666666667,1.0,0.8,0.8666666666666666,1,26 -wheat,0.5966666666666666,1.0,0.4333333333333333,0.6,1,26 -kleenex,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -toothbrush,0.6766666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -binder,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -baseball,0.7433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -pliers,0.76,1.0,0.5999999999999999,0.7166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.525,1.0,0.5166666666666666,0.65,1,26 -thins,0.605,1.0,0.5833333333333333,0.7,1,26 -package,0.525,0.95,0.4999999999999999,0.6,1,26 -k,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -jelly,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.6450000000000001,0.4666666666666666,0.9333333333333332,0.5966666666666667,2,25 -apple,0.805,0.9,0.7333333333333333,0.75,1,26 -bell,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -battery,0.7383333333333334,1.0,0.6,0.7166666666666667,1,26 -jar,0.725,1.0,0.5999999999999999,0.7166666666666666,1,26 -bound,0.3716666666666667,1.0,0.4333333333333334,0.5833333333333333,1,26 -lettuce,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -brush,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.5766666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.5183333333333333,1.0,0.5166666666666666,0.65,1,25 -toothpaste,0.865,1.0,0.7333333333333333,0.8166666666666667,1,26 -top,0.9083333333333332,1.0,0.85,0.8999999999999998,1,26 -spiral,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -handles,0.7083333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -camera,0.7616666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -eraser,0.6966666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.7866666666666667,0.6583333333333333,1.0,0.7904761904761904,5,20 -banana,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -pitcher,0.525,1.0,0.6166666666666666,0.7166666666666666,1,26 -phone,0.725,1.0,0.65,0.75,1,26 -stick,0.5483333333333333,1.0,0.41666666666666663,0.5833333333333334,1,25 -cereal,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -bulb,0.9016666666666666,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.5016666666666667,1.0,0.4833333333333333,0.6333333333333334,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.4999999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -can,0.8633333333333333,1.0,0.8333333333333333,0.9,2,25 -coca,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -crackers,0.4666666666666666,1.0,0.5166666666666666,0.65,1,26 -plate,0.6383333333333333,1.0,0.5833333333333333,0.7,1,25 -calculator,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -tissues,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.6216666666666667,1.0,0.5666666666666667,0.7,1,26 -pink,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -lemon,0.6183333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -peach,0.6166666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -bowl,0.74,1.0,0.5666666666666667,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8066666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -blue,0.5466666666666666,1.0,0.5166666666666666,0.65,1,25 -used,0.3583333333333333,1.0,0.41666666666666663,0.5666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.7416666666666666,1.0,0.6,0.7166666666666666,1,26 -ball,0.6466666666666667,1.0,0.4833333333333333,0.6333333333333334,1,25 -notebook,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -garlic,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -cleaning,0.73,1.0,0.6499999999999999,0.75,1,26 -pair,0.8683333333333332,1.0,0.8333333333333333,0.9,2,26 -container,0.805,1.0,0.7166666666666666,0.8,1,25 -tomato,0.7233333333333334,0.55,0.8833333333333332,0.6333333333333333,1,26 -cellphone,0.6916666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -potato,0.6883333333333332,1.0,0.5833333333333333,0.7,1,25 -light,0.9066666666666666,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,0.9266666666666665,0.8166666666666667,1.0,0.8800000000000001,3,24 -bottle,0.8550000000000001,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6396296296296297 -F1-Score: 0.6769223985890652 -Precision: 0.8959876543209876 -Recall: 0.6023148148148147 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.73,1.0,0.7,0.7833333333333333,1,25 -yellow,0.8766666666666667,0.7166666666666667,1.0,0.8200000000000001,6,24 -looks,0.6216666666666667,0.95,0.5999999999999999,0.6833333333333333,1,24 -keyboard,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -glue,0.6416666666666666,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.6933333333333332,1.0,0.5666666666666667,0.7,1,26 -flashlight,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.4683333333333334,0.6,0.5999999999999999,0.54,1,26 -folded,0.7016666666666667,1.0,0.65,0.75,1,26 -jam,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -black,0.89,0.8,1.0,0.8780952380952382,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5166666666666666,1.0,0.5,0.6333333333333333,1,26 -soccer,0.5383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -hat,0.655,1.0,0.5833333333333333,0.7,1,26 -brown,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -coffee,0.6583333333333333,1.0,0.65,0.75,1,26 -handle,0.4416666666666666,1.0,0.4833333333333333,0.6166666666666666,1,25 -food,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -towel,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -chips,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.56,1.0,0.5166666666666666,0.65,1,26 -onion,0.6633333333333333,1.0,0.65,0.75,1,26 -bag,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -sponge,0.6216666666666666,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.7683333333333333,1.0,0.65,0.75,1,25 -special,0.7066666666666668,1.0,0.5999999999999999,0.7166666666666667,1,26 -colgate,0.5966666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -leaf,0.6133333333333333,1.0,0.5166666666666666,0.65,1,26 -tube,0.6966666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -cell,0.5583333333333333,0.65,0.5999999999999999,0.55,1,26 -mug,0.755,1.0,0.7,0.7833333333333333,1,26 -yogurt,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -plantain,0.805,1.0,0.6666666666666666,0.7666666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -wheat,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -toothbrush,0.7333333333333333,1.0,0.7333333333333332,0.8,1,26 -binder,0.7133333333333334,1.0,0.65,0.75,1,26 -baseball,0.5633333333333332,1.0,0.5,0.6333333333333333,1,26 -pliers,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -thins,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -package,0.7083333333333333,1.0,0.65,0.75,1,26 -k,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -jelly,0.6499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -fruit,0.8150000000000001,0.7499999999999999,0.9333333333333332,0.7966666666666666,2,25 -apple,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -bell,0.6966666666666668,1.0,0.6166666666666666,0.7333333333333334,1,26 -battery,0.7716666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -jar,0.6849999999999999,1.0,0.65,0.75,1,26 -bound,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -lettuce,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -brush,0.6666666666666667,0.85,0.5999999999999999,0.6166666666666666,1,26 -scissors,0.8466666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -lime,0.6016666666666667,1.0,0.5333333333333332,0.6666666666666666,1,25 -toothpaste,0.6799999999999999,1.0,0.55,0.6833333333333333,1,26 -top,0.5666666666666667,1.0,0.5,0.6333333333333333,1,26 -spiral,0.505,1.0,0.5,0.6333333333333333,1,26 -handles,0.6416666666666666,1.0,0.7,0.7833333333333333,1,25 -camera,0.78,1.0,0.8166666666666667,0.8666666666666666,1,26 -eraser,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.93,0.8333333333333333,1.0,0.8933333333333333,5,22 -banana,0.58,1.0,0.6333333333333333,0.7333333333333333,1,26 -pitcher,0.8066666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -phone,0.5633333333333332,0.65,0.5333333333333333,0.55,1,26 -stick,0.7766666666666666,1.0,0.7166666666666666,0.8,1,25 -cereal,0.705,1.0,0.6499999999999999,0.75,1,26 -bulb,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -hair,0.78,1.0,0.6833333333333333,0.7833333333333334,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6883333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -coca,0.6266666666666667,1.0,0.6499999999999999,0.75,1,26 -crackers,0.655,1.0,0.5499999999999999,0.6833333333333333,1,26 -plate,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -calculator,0.7333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -tissues,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -juice,0.35,0.5,0.6499999999999999,0.5366666666666667,1,26 -pink,0.5766666666666665,0.7,0.6,0.5666666666666667,1,25 -lemon,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -peach,0.76,1.0,0.7666666666666666,0.8333333333333333,1,26 -bowl,0.5683333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -blue,0.6733333333333332,1.0,0.5,0.65,1,25 -used,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.7716666666666667,1.0,0.7,0.7833333333333333,1,26 -ball,0.7333333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -notebook,0.6966666666666665,1.0,0.7,0.7833333333333333,1,26 -garlic,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -cleaning,0.44666666666666666,0.9,0.5333333333333332,0.5833333333333333,1,26 -pair,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,27 -container,0.5916666666666667,1.0,0.55,0.6833333333333333,1,26 -tomato,0.7350000000000001,0.85,0.7,0.6833333333333333,1,26 -cellphone,0.635,0.55,0.8166666666666667,0.6066666666666667,1,26 -potato,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,25 -light,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -green,0.9600000000000002,0.9,1.0,0.9333333333333332,3,24 -bottle,0.9133333333333333,1.0,0.9,0.9400000000000001,2,27 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6562037037037036 -F1-Score: 0.6918342151675484 -Precision: 0.8907407407407407 -Recall: 0.6237654320987654 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.5483333333333333,0.9,0.5166666666666666,0.6,1,24 -keyboard,0.7466666666666667,1.0,0.6333333333333333,0.75,1,26 -glue,0.575,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.6966666666666668,1.0,0.6166666666666666,0.7333333333333333,1,26 -flashlight,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.42333333333333334,0.5,0.5166666666666666,0.4966666666666667,1,26 -folded,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.5549999999999999,1.0,0.4333333333333333,0.6,1,26 -black,0.9133333333333333,0.75,1.0,0.8333333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5266666666666666,1.0,0.45,0.6,1,26 -soccer,0.7666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -hat,0.6499999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -brown,0.93,1.0,0.9,0.9400000000000001,2,24 -coffee,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -handle,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -food,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -towel,0.8233333333333335,1.0,0.6833333333333333,0.7833333333333333,1,26 -chips,0.6566666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -stapler,0.6599999999999999,1.0,0.5,0.65,1,26 -onion,0.6083333333333333,1.0,0.5,0.6333333333333333,1,26 -bag,0.7516666666666666,1.0,0.6499999999999999,0.75,1,26 -sponge,0.6383333333333334,1.0,0.5666666666666667,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.73,1.0,0.7,0.7833333333333333,1,25 -special,0.7183333333333333,1.0,0.65,0.75,1,26 -colgate,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -leaf,0.6583333333333333,1.0,0.5166666666666666,0.65,1,26 -tube,0.6,1.0,0.5499999999999999,0.6666666666666666,1,26 -cell,0.7350000000000001,1.0,0.5666666666666667,0.7,1,26 -mug,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -yogurt,0.7083333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -plantain,0.5716666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -red,0.7333333333333333,0.6616666666666666,1.0,0.779047619047619,3,26 -pepper,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.74,1.0,0.5666666666666667,0.7,1,26 -kleenex,0.825,1.0,0.8166666666666667,0.8666666666666666,1,26 -toothbrush,0.6933333333333334,1.0,0.65,0.75,1,26 -binder,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -baseball,0.58,1.0,0.4833333333333333,0.6333333333333333,1,26 -pliers,0.45,1.0,0.4833333333333334,0.6166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.475,1.0,0.6166666666666666,0.7166666666666666,1,26 -thins,0.8083333333333332,1.0,0.8166666666666667,0.8666666666666668,1,26 -package,0.48,1.0,0.4999999999999999,0.6333333333333333,1,26 -k,0.6266666666666667,1.0,0.5166666666666666,0.65,1,26 -jelly,0.7133333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.7083333333333333,0.7166666666666667,0.8666666666666666,0.76,2,25 -apple,0.8666666666666666,0.9,0.8833333333333332,0.85,1,25 -bell,0.6583333333333334,1.0,0.6833333333333333,0.7666666666666666,1,26 -battery,0.6083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -jar,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -bound,0.7516666666666667,1.0,0.65,0.75,1,26 -lettuce,0.8166666666666667,1.0,0.7833333333333333,0.85,1,26 -brush,0.53,1.0,0.4999999999999999,0.6333333333333333,1,26 -scissors,0.7733333333333333,1.0,0.65,0.75,1,26 -lime,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -toothpaste,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -top,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -spiral,0.65,1.0,0.5833333333333333,0.7,1,26 -handles,0.73,1.0,0.6666666666666666,0.7666666666666666,1,25 -camera,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.76,1.0,0.6833333333333333,0.7833333333333334,1,26 -creamer,0,0,0,0,1,26 -white,0.8116666666666668,0.6916666666666667,1.0,0.8152380952380952,5,21 -banana,0.7999999999999999,1.0,0.7166666666666666,0.8,1,26 -pitcher,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -phone,0.6,1.0,0.6166666666666666,0.7166666666666666,1,26 -stick,0.8266666666666665,1.0,0.7333333333333333,0.8166666666666668,1,25 -cereal,0.65,1.0,0.5166666666666666,0.65,1,26 -bulb,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -hair,0.7899999999999999,1.0,0.7166666666666666,0.8,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6,1.0,0.5166666666666666,0.65,1,26 -can,0.9350000000000002,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.7083333333333333,1.0,0.65,0.75,1,26 -crackers,0.5933333333333334,1.0,0.55,0.6833333333333333,1,26 -plate,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -calculator,0.6033333333333333,0.5,0.7833333333333333,0.5900000000000001,1,26 -tissues,0.7466666666666667,1.0,0.7166666666666666,0.8,1,26 -juice,0.5149999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -pink,0.5599999999999999,1.0,0.5833333333333333,0.7,1,25 -lemon,0.755,1.0,0.6166666666666666,0.7333333333333333,1,26 -peach,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -bowl,0.8966666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6383333333333333,1.0,0.55,0.6833333333333333,1,26 -blue,0.4583333333333333,1.0,0.45,0.6,1,25 -used,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -ball,0.5549999999999999,1.0,0.45,0.6,1,25 -notebook,0.5633333333333332,1.0,0.41666666666666663,0.5833333333333333,1,26 -garlic,0.5216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -cleaning,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -pair,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -container,0.6499999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -tomato,0.7150000000000001,0.85,0.6333333333333333,0.6666666666666667,1,26 -cellphone,0.705,1.0,0.6499999999999999,0.75,1,26 -potato,0.6766666666666666,1.0,0.5833333333333333,0.7,1,25 -light,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -green,0.8400000000000001,0.6916666666666667,1.0,0.7957142857142856,3,24 -bottle,0.8716666666666667,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6453703703703705 -F1-Score: 0.6837654320987654 -Precision: 0.899645061728395 -Recall: 0.6064814814814814 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666666,1,24 -yellow,0.93,0.8166666666666667,1.0,0.8800000000000001,6,24 -looks,0.6633333333333333,0.9,0.5833333333333333,0.6333333333333333,1,24 -keyboard,0.7383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.8150000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.7666666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -cup,0.48500000000000004,0.5,0.5999999999999999,0.52,1,26 -folded,0.5549999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -jam,0.5916666666666667,1.0,0.5833333333333333,0.7,1,26 -black,0.8933333333333333,0.775,1.0,0.8590476190476191,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.525,1.0,0.4833333333333332,0.6166666666666666,1,26 -soccer,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -hat,0.7516666666666667,1.0,0.5666666666666667,0.7,1,26 -brown,0.93,1.0,0.9,0.9400000000000001,2,24 -coffee,0.8049999999999999,1.0,0.6833333333333333,0.7833333333333333,1,25 -handle,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -food,0.5249999999999999,1.0,0.45,0.6,1,25 -towel,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.655,1.0,0.5999999999999999,0.7166666666666666,1,26 -stapler,0.8083333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -onion,0.71,1.0,0.5999999999999999,0.7166666666666666,1,26 -bag,0.6166666666666666,1.0,0.6,0.7166666666666667,1,26 -sponge,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.8216666666666667,1.0,0.7833333333333333,0.85,1,25 -special,0.7466666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -colgate,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.6916666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -tube,0.63,1.0,0.5333333333333333,0.6666666666666666,1,26 -cell,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -mug,0.65,1.0,0.6166666666666666,0.7166666666666666,1,25 -yogurt,0.5066666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -plantain,0.7816666666666667,0.9,0.7333333333333333,0.75,1,26 -red,0.9299999999999999,0.85,1.0,0.8966666666666667,3,26 -pepper,0.6933333333333332,1.0,0.7,0.7833333333333333,1,26 -wheat,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.5583333333333333,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.5433333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -binder,0.7383333333333333,1.0,0.5666666666666667,0.7,1,26 -baseball,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -pliers,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.46333333333333326,1.0,0.4333333333333333,0.5833333333333333,1,26 -thins,0.8399999999999999,1.0,0.7833333333333333,0.85,1,26 -package,0.5799999999999998,0.9,0.6333333333333333,0.6666666666666667,1,26 -k,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -jelly,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.63,0.4833333333333332,0.9,0.5966666666666667,2,25 -apple,0.5516666666666666,0.6,0.7333333333333332,0.58,1,25 -bell,0.75,1.0,0.7166666666666666,0.8,1,26 -battery,0.6916666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -jar,0.615,1.0,0.55,0.6833333333333333,1,26 -bound,0.53,1.0,0.5333333333333333,0.6666666666666667,1,26 -lettuce,0.615,1.0,0.4833333333333333,0.6333333333333333,1,26 -brush,0.45999999999999996,1.0,0.4333333333333333,0.5833333333333333,1,26 -scissors,0.5133333333333334,1.0,0.5166666666666666,0.65,1,26 -lime,0.55,1.0,0.5666666666666667,0.6833333333333333,1,25 -toothpaste,0.5583333333333333,1.0,0.5,0.6333333333333333,1,26 -top,0.5666666666666667,1.0,0.4999999999999999,0.65,1,26 -spiral,0.7216666666666666,1.0,0.7,0.7833333333333333,1,26 -handles,0.6649999999999999,1.0,0.5499999999999999,0.6833333333333333,1,25 -camera,0.7133333333333333,1.0,0.65,0.75,1,26 -eraser,0.9016666666666667,1.0,0.8,0.8666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.7883333333333333,0.675,1.0,0.8019047619047619,5,21 -banana,0.6633333333333333,0.9,0.5999999999999999,0.65,1,26 -pitcher,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -phone,0.655,1.0,0.5833333333333333,0.7,1,26 -stick,0.8300000000000001,1.0,0.7833333333333333,0.85,1,25 -cereal,0.6799999999999999,1.0,0.65,0.75,1,26 -bulb,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,26 -hair,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -can,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,24 -coca,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -crackers,0.8549999999999999,1.0,0.7833333333333333,0.85,1,26 -plate,0.7833333333333334,1.0,0.7666666666666666,0.8333333333333333,1,25 -calculator,0.5349999999999999,0.5,0.7666666666666666,0.58,1,26 -tissues,0.41833333333333333,1.0,0.45,0.6,1,26 -juice,0.5999999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -pink,0.6649999999999999,1.0,0.5166666666666666,0.6666666666666667,1,25 -lemon,0.8833333333333332,1.0,0.8333333333333333,0.8833333333333332,1,26 -peach,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -bowl,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.58,1.0,0.4666666666666666,0.6166666666666666,1,26 -blue,0.7433333333333333,1.0,0.65,0.75,1,25 -used,0.41666666666666663,1.0,0.4333333333333334,0.5833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -ball,0.85,1.0,0.75,0.8333333333333333,1,25 -notebook,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -garlic,0.6016666666666667,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.725,1.0,0.7,0.7833333333333333,1,26 -pair,0.8766666666666666,1.0,0.8333333333333333,0.9,2,26 -container,0.6516666666666666,1.0,0.4833333333333333,0.6333333333333333,1,25 -tomato,0.5599999999999998,0.9,0.5333333333333333,0.6166666666666666,1,26 -cellphone,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -potato,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666668,1,25 -light,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,24 -bottle,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6471141975308641 -F1-Score: 0.6869223985890653 -Precision: 0.8949074074074075 -Recall: 0.6157407407407407 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.5933333333333333,0.95,0.5833333333333333,0.6666666666666666,1,24 -keyboard,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -glue,0.8233333333333335,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -cup,0.42333333333333334,0.5,0.6166666666666666,0.53,1,26 -folded,0.6916666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.6499999999999999,1.0,0.5999999999999999,0.7,1,26 -black,0.89,0.75,1.0,0.8400000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.8083333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -soccer,0.2883333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -hat,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -brown,0.8566666666666667,1.0,0.8,0.8800000000000001,2,24 -coffee,0.8916666666666666,1.0,0.8,0.8666666666666668,1,25 -handle,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -food,0.6549999999999999,1.0,0.5833333333333333,0.7,1,25 -towel,0.63,1.0,0.5333333333333332,0.6666666666666666,1,26 -chips,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -stapler,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -onion,0.53,1.0,0.4666666666666666,0.6166666666666666,1,26 -bag,0.5266666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -sponge,0.71,1.0,0.6166666666666666,0.7333333333333334,1,26 -zero,0,0,0,0,1,26 -computer,0.4666666666666666,1.0,0.5166666666666666,0.65,1,25 -special,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -colgate,0.5416666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -leaf,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -cell,0.39666666666666667,0.55,0.5499999999999999,0.5,1,26 -mug,0.76,1.0,0.6666666666666666,0.7666666666666667,1,25 -yogurt,0.8,1.0,0.7,0.7833333333333333,1,26 -plantain,0.725,1.0,0.7,0.7833333333333333,1,26 -red,0.8766666666666666,0.7333333333333333,1.0,0.8133333333333332,3,26 -pepper,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -wheat,0.65,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.605,1.0,0.5,0.65,1,26 -toothbrush,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -binder,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -baseball,0.53,1.0,0.4666666666666666,0.6166666666666667,1,26 -pliers,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -thins,0.6733333333333333,1.0,0.65,0.75,1,26 -package,0.5933333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -k,0.5833333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -jelly,0.5549999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.73,0.7166666666666667,0.8666666666666668,0.73,2,25 -apple,0.5349999999999999,0.95,0.5166666666666666,0.6333333333333333,1,25 -bell,0.6833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -battery,0.755,1.0,0.6833333333333333,0.7833333333333333,1,26 -jar,0.7583333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -bound,0.6249999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -lettuce,0.6583333333333333,1.0,0.65,0.75,1,26 -brush,0.7716666666666667,1.0,0.7,0.7833333333333333,1,26 -scissors,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -lime,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -toothpaste,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.45,1.0,0.45,0.6,1,26 -spiral,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -handles,0.8300000000000001,1.0,0.7833333333333333,0.85,1,25 -camera,0.5883333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -eraser,0.6183333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.8,0.6583333333333333,1.0,0.7904761904761904,5,21 -banana,0.6,1.0,0.6333333333333333,0.7333333333333333,1,26 -pitcher,0.5,1.0,0.5499999999999999,0.6666666666666666,1,26 -phone,0.2833333333333333,0.6,0.4499999999999999,0.4766666666666667,1,26 -stick,0.7749999999999999,1.0,0.7,0.7833333333333333,1,25 -cereal,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -bulb,0.8533333333333333,1.0,0.8,0.8800000000000001,2,26 -hair,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7333333333333333,1.0,0.8,0.85,1,26 -can,0.875,1.0,0.8666666666666668,0.9200000000000002,2,25 -coca,0.5166666666666666,1.0,0.5333333333333333,0.65,1,26 -crackers,0.7966666666666666,1.0,0.7,0.7833333333333333,1,26 -plate,0.675,1.0,0.5166666666666666,0.6666666666666667,1,25 -calculator,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -tissues,0.6166666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -juice,0.43,1.0,0.4666666666666666,0.6166666666666667,1,26 -pink,0.6666666666666667,1.0,0.5833333333333333,0.7,1,25 -lemon,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -peach,0.6633333333333333,1.0,0.5666666666666667,0.7,1,26 -bowl,0.7466666666666667,1.0,0.75,0.8166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -blue,0.6533333333333333,1.0,0.5999999999999999,0.7166666666666667,1,25 -used,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.5266666666666666,1.0,0.4333333333333333,0.5833333333333333,1,26 -ball,0.655,1.0,0.5833333333333333,0.7,1,25 -notebook,0.7383333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -garlic,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.78,1.0,0.6833333333333333,0.7666666666666666,1,26 -pair,0.96,1.0,0.9333333333333332,0.96,2,27 -container,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -tomato,0.6000000000000001,1.0,0.55,0.6833333333333333,1,26 -cellphone,0.39666666666666667,0.6,0.5499999999999999,0.5233333333333332,1,26 -potato,0.6666666666666666,1.0,0.6166666666666666,0.7333333333333333,1,25 -light,0.8749999999999998,1.0,0.8666666666666666,0.9200000000000002,2,26 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,24 -bottle,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.6284876543209877 -F1-Score: 0.6792019400352733 -Precision: 0.8972993827160495 -Recall: 0.5995370370370371 diff --git a/Validation/UW_raw_75_object_0.25.csv b/Validation/UW_raw_75_object_0.25.csv deleted file mode 100644 index c95ace6..0000000 --- a/Validation/UW_raw_75_object_0.25.csv +++ /dev/null @@ -1,2875 +0,0 @@ -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.74,1.0,0.6666666666666666,0.7666666666666667,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.7183333333333333,1.0,0.6166666666666666,0.7333333333333334,1,24 -keyboard,0.7133333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -glue,0.5916666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6599999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -flashlight,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -cup,0.23833333333333334,0.4333333333333333,0.5833333333333333,0.4566666666666667,1,26 -folded,0.5933333333333334,1.0,0.5333333333333333,0.6666666666666666,1,26 -jam,0.6466666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -black,0.8900000000000002,0.7333333333333333,1.0,0.8266666666666668,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.5083333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -soccer,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -hat,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -brown,0.8566666666666667,1.0,0.8,0.8800000000000001,2,24 -coffee,0.7,1.0,0.6166666666666666,0.7333333333333334,1,25 -handle,0.5233333333333333,1.0,0.4333333333333334,0.6,1,26 -food,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -towel,0.575,1.0,0.5833333333333333,0.7,1,26 -chips,0.48999999999999994,1.0,0.4666666666666666,0.6166666666666667,1,26 -stapler,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -onion,0.655,0.9,0.6499999999999999,0.6833333333333333,1,26 -bag,0.5166666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -sponge,0.6849999999999999,1.0,0.6499999999999999,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.6466666666666666,1.0,0.6,0.7166666666666667,1,26 -special,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -colgate,0.6583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -leaf,0.86,1.0,0.7333333333333333,0.8166666666666668,1,26 -tube,0.58,1.0,0.5333333333333332,0.6666666666666666,1,26 -cell,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -mug,0.7816666666666667,1.0,0.6166666666666666,0.7333333333333334,1,25 -yogurt,0.655,1.0,0.5833333333333333,0.7,1,26 -plantain,0.5583333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -red,0.5983333333333333,0.4916666666666667,1.0,0.6433333333333333,3,24 -pepper,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -wheat,0.5083333333333333,1.0,0.5,0.6333333333333333,1,26 -kleenex,0.5183333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -toothbrush,0.7016666666666667,1.0,0.5833333333333333,0.7,1,26 -binder,0.6383333333333334,1.0,0.5666666666666667,0.7,1,26 -baseball,0.8166666666666667,1.0,0.7166666666666666,0.8,1,26 -pliers,0.5933333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8266666666666665,1.0,0.7833333333333333,0.85,1,26 -thins,0.6733333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -package,0.8633333333333333,0.9,0.8,0.8,1,26 -k,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.7666666666666667,1.0,0.75,0.8166666666666668,1,26 -fruit,0.7066666666666667,0.55,0.9333333333333332,0.6733333333333333,2,25 -apple,0.5833333333333333,0.9,0.6666666666666666,0.6833333333333333,1,25 -bell,0.7166666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -battery,0.6933333333333332,1.0,0.5833333333333333,0.7,1,26 -jar,0.7216666666666666,1.0,0.7,0.7833333333333333,1,26 -bound,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -lettuce,0.4416666666666666,1.0,0.41666666666666663,0.5666666666666667,1,26 -brush,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -scissors,0.8083333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -lime,0.7416666666666666,1.0,0.6833333333333333,0.7833333333333333,1,25 -toothpaste,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -top,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -spiral,0.78,1.0,0.7166666666666666,0.8,1,26 -handles,0.6933333333333332,1.0,0.5999999999999999,0.7166666666666667,1,25 -camera,0.7283333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -eraser,0.5216666666666667,1.0,0.5,0.6333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.79,0.575,1.0,0.7257142857142858,5,21 -banana,0.5766666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -pitcher,0.7166666666666666,1.0,0.7333333333333333,0.8,1,26 -phone,0.78,1.0,0.7166666666666666,0.8,1,26 -stick,0.6666666666666666,1.0,0.6499999999999999,0.75,1,25 -cereal,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -hair,0.8166666666666667,1.0,0.75,0.8166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.71,1.0,0.5833333333333333,0.7,1,26 -can,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,24 -coca,0.5466666666666666,1.0,0.55,0.6666666666666666,1,26 -crackers,0.6416666666666666,1.0,0.6499999999999999,0.75,1,26 -plate,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,25 -calculator,0.635,1.0,0.4833333333333333,0.6333333333333333,1,26 -tissues,0.825,1.0,0.7333333333333333,0.8166666666666667,1,26 -juice,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -pink,0.58,1.0,0.5833333333333333,0.7,1,25 -lemon,0.735,1.0,0.5999999999999999,0.7166666666666666,1,26 -peach,0.76,1.0,0.7,0.7833333333333333,1,26 -bowl,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5466666666666666,1.0,0.55,0.6666666666666667,1,26 -blue,0.6349999999999999,0.7,0.6166666666666666,0.5833333333333333,1,25 -used,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.4716666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -ball,0.5883333333333333,1.0,0.4666666666666666,0.6166666666666667,1,25 -notebook,0.8583333333333332,1.0,0.7833333333333333,0.85,1,26 -garlic,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -cleaning,0.7066666666666667,1.0,0.5666666666666667,0.7,1,26 -pair,0.8800000000000001,1.0,0.8666666666666666,0.9199999999999999,2,26 -container,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -tomato,0.48,0.8,0.4666666666666666,0.5466666666666666,1,26 -cellphone,0.5583333333333333,1.0,0.4833333333333332,0.6333333333333333,1,26 -potato,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -light,0.7833333333333333,0.8166666666666667,0.8333333333333333,0.78,2,25 -green,0.93,0.8166666666666667,1.0,0.8799999999999999,3,24 -bottle,0.905,1.0,0.8666666666666666,0.9199999999999999,2,26 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6361728395061728 -F1-Score: 0.6803924162257494 -Precision: 0.8945987654320988 -Recall: 0.6074074074074074 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,25 -yellow,0.8316666666666667,0.6416666666666667,1.0,0.7723809523809524,6,24 -looks,0.67,0.85,0.65,0.6833333333333333,1,24 -keyboard,0.8,1.0,0.8166666666666667,0.8666666666666666,1,26 -glue,0.805,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -flashlight,0.7483333333333334,1.0,0.6333333333333333,0.75,1,26 -cup,0.71,1.0,0.6166666666666666,0.7333333333333334,1,26 -folded,0.5183333333333333,1.0,0.5166666666666666,0.65,1,26 -jam,0.4133333333333333,1.0,0.45,0.6,1,26 -black,0.8350000000000002,0.6416666666666666,1.0,0.7657142857142858,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.5233333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -soccer,0.8216666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -hat,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -brown,0.8999999999999998,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.7633333333333333,1.0,0.65,0.75,1,26 -handle,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -food,0.8083333333333332,1.0,0.7833333333333333,0.85,1,25 -towel,0.7433333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -chips,0.5633333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -stapler,0.6433333333333333,1.0,0.55,0.6833333333333333,1,26 -onion,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -bag,0.8833333333333332,1.0,0.8333333333333333,0.8833333333333332,1,26 -sponge,0.7216666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.6933333333333334,1.0,0.7,0.7833333333333333,1,25 -special,0.5,1.0,0.4666666666666666,0.6166666666666667,1,26 -colgate,0.7266666666666667,1.0,0.7166666666666666,0.8,1,26 -leaf,0.78,1.0,0.6333333333333333,0.75,1,26 -tube,0.73,1.0,0.6333333333333333,0.75,1,26 -cell,0.7933333333333332,1.0,0.6333333333333333,0.75,1,26 -mug,0.74,1.0,0.6499999999999999,0.75,1,26 -yogurt,0.5433333333333332,1.0,0.5166666666666666,0.65,1,26 -plantain,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -red,0.5950000000000001,0.49499999999999994,1.0,0.6523809523809524,3,25 -pepper,0.75,1.0,0.75,0.8166666666666667,1,26 -wheat,0.7216666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -toothbrush,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -binder,0.9333333333333332,1.0,0.9,0.9333333333333332,1,26 -baseball,0.6933333333333334,1.0,0.65,0.75,1,26 -pliers,0.5333333333333333,1.0,0.55,0.6666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.625,1.0,0.5833333333333333,0.7,1,26 -thins,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -package,0.7083333333333333,0.85,0.7,0.6833333333333333,1,26 -k,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -jelly,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -fruit,0.6383333333333334,0.6,0.8333333333333333,0.66,2,25 -apple,0.42833333333333334,0.85,0.4999999999999999,0.55,1,25 -bell,0.6733333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -battery,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -jar,0.4499999999999999,1.0,0.4499999999999999,0.6,1,26 -bound,0.8583333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -lettuce,0.93,1.0,0.8833333333333332,0.9166666666666666,1,26 -brush,0.6333333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -scissors,0.4883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -lime,0.6466666666666666,1.0,0.6166666666666666,0.7166666666666667,1,25 -toothpaste,0.6566666666666666,1.0,0.5833333333333333,0.7,1,26 -top,0.6416666666666666,1.0,0.6499999999999999,0.75,1,26 -spiral,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -handles,0.79,1.0,0.7166666666666666,0.8,1,25 -camera,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -eraser,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,0.8099999999999999,0.625,1.0,0.7638095238095237,5,21 -banana,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -pitcher,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.4966666666666667,1.0,0.5166666666666666,0.65,1,26 -stick,0.5533333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -cereal,0.6516666666666666,1.0,0.5666666666666667,0.7,1,26 -bulb,0.9166666666666666,1.0,0.9,0.9400000000000001,2,27 -hair,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6549999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -coca,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -plate,0.6816666666666668,1.0,0.4666666666666666,0.6333333333333334,1,25 -calculator,0.5916666666666667,0.6,0.7,0.5733333333333334,1,26 -tissues,0.605,1.0,0.5833333333333333,0.7,1,26 -juice,0.5216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -pink,0.5666666666666667,1.0,0.5166666666666666,0.65,1,25 -lemon,0.66,1.0,0.5833333333333333,0.7,1,26 -peach,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -bowl,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5766666666666667,1.0,0.5,0.65,1,26 -blue,0.5583333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -used,0.41666666666666663,1.0,0.4833333333333332,0.6166666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -ball,0.5933333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -cleaning,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -pair,0.9349999999999999,1.0,0.8999999999999998,0.9400000000000001,2,27 -container,0.605,1.0,0.5833333333333333,0.7,1,25 -tomato,0.6333333333333334,0.6,0.7666666666666666,0.6066666666666667,1,26 -cellphone,0.6933333333333332,1.0,0.6,0.7166666666666667,1,26 -potato,0.7083333333333333,1.0,0.65,0.75,1,25 -light,0.8933333333333333,1.0,0.8666666666666666,0.9199999999999999,2,26 -green,0.9133333333333334,0.825,1.0,0.8904761904761905,3,23 -bottle,0.8516666666666666,1.0,0.8,0.8800000000000001,2,25 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6431327160493825 -F1-Score: 0.6842416225749559 -Precision: 0.8942438271604938 -Recall: 0.6132716049382715 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.605,1.0,0.5833333333333333,0.7,1,24 -yellow,0.9633333333333333,0.9,1.0,0.9333333333333332,6,24 -looks,0.6633333333333333,0.9,0.5999999999999999,0.65,1,24 -keyboard,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6433333333333333,1.0,0.5666666666666667,0.7,1,26 -flashlight,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -cup,0.4133333333333333,0.5,0.6333333333333333,0.5266666666666667,1,26 -folded,0.6966666666666665,1.0,0.5499999999999999,0.6833333333333333,1,26 -jam,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -black,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.5416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -soccer,0.5016666666666667,1.0,0.41666666666666663,0.5833333333333333,1,26 -hat,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -brown,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -coffee,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,25 -handle,0.7733333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -food,0.5666666666666667,1.0,0.5499999999999999,0.6666666666666666,1,24 -towel,0.5733333333333334,1.0,0.5333333333333332,0.6666666666666666,1,26 -chips,0.5533333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -stapler,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.6833333333333333,1.0,0.7333333333333333,0.8,1,26 -bag,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -sponge,0.73,1.0,0.7,0.7833333333333334,1,26 -zero,0,0,0,0,1,26 -computer,0.73,1.0,0.7,0.7833333333333333,1,25 -special,0.6299999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -colgate,0.525,1.0,0.5499999999999999,0.6666666666666666,1,26 -leaf,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -tube,0.6100000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -cell,0.7166666666666666,1.0,0.7333333333333333,0.8,1,26 -mug,0.5083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,25 -yogurt,0.6033333333333334,1.0,0.4999999999999999,0.65,1,26 -plantain,0.6466666666666667,0.85,0.6,0.6166666666666667,1,26 -red,0.96,0.9,1.0,0.9333333333333332,3,24 -pepper,0.7016666666666667,1.0,0.6,0.7166666666666667,1,26 -wheat,0.73,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.6766666666666665,1.0,0.5666666666666667,0.7,1,26 -toothbrush,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.6466666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -baseball,0.71,1.0,0.65,0.75,1,26 -pliers,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.725,1.0,0.6,0.7166666666666667,1,26 -thins,0.9083333333333332,1.0,0.85,0.9,1,26 -package,0.8,0.9,0.7999999999999999,0.7833333333333333,1,26 -k,0.6416666666666666,1.0,0.6,0.7166666666666667,1,26 -jelly,0.575,1.0,0.5166666666666666,0.65,1,26 -fruit,0.6849999999999999,0.5,1.0,0.6566666666666666,2,25 -apple,0.5199999999999999,0.8,0.5333333333333333,0.5666666666666667,1,25 -bell,0.7216666666666667,1.0,0.6,0.7166666666666667,1,26 -battery,0.5,1.0,0.45,0.6,1,26 -jar,0.5333333333333333,1.0,0.5999999999999999,0.7,1,26 -bound,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -lettuce,0.655,1.0,0.65,0.75,1,26 -brush,0.6833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -lime,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -toothpaste,0.7066666666666668,1.0,0.6166666666666666,0.7333333333333333,1,26 -top,0.71,1.0,0.5499999999999999,0.6833333333333333,1,26 -spiral,0.5383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -handles,0.7016666666666667,1.0,0.5833333333333333,0.7,1,25 -camera,0.71,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.6466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.8116666666666668,0.6166666666666667,1.0,0.758095238095238,5,19 -banana,0.655,0.95,0.65,0.7166666666666667,1,26 -pitcher,0.6549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.5516666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -stick,0.6566666666666666,1.0,0.4833333333333332,0.6333333333333333,1,25 -cereal,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -bulb,0.8916666666666666,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.655,1.0,0.55,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -can,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,25 -coca,0.7,1.0,0.6499999999999999,0.75,1,26 -crackers,0.6216666666666667,1.0,0.6,0.7166666666666667,1,26 -plate,0.6799999999999999,1.0,0.5833333333333333,0.7,1,25 -calculator,0.48,1.0,0.5166666666666666,0.65,1,26 -tissues,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.5416666666666666,1.0,0.4833333333333332,0.6333333333333333,1,26 -pink,0.40499999999999997,1.0,0.41666666666666663,0.5833333333333334,1,25 -lemon,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -peach,0.6749999999999999,1.0,0.6499999999999999,0.75,1,26 -bowl,0.6216666666666667,1.0,0.65,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6633333333333333,1.0,0.5,0.65,1,26 -blue,0.6900000000000001,1.0,0.5666666666666667,0.7,1,25 -used,0.7583333333333333,1.0,0.7,0.7833333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.5683333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -ball,0.7333333333333333,1.0,0.7,0.7833333333333333,1,25 -notebook,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -garlic,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -cleaning,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -pair,0.8433333333333334,1.0,0.8,0.8800000000000001,2,26 -container,0.7216666666666667,1.0,0.7,0.7833333333333333,1,25 -tomato,0.605,0.85,0.65,0.65,1,26 -cellphone,0.755,1.0,0.65,0.75,1,26 -potato,0.7733333333333334,1.0,0.6833333333333333,0.7833333333333334,1,25 -light,0.9349999999999999,1.0,0.9,0.9400000000000001,2,26 -green,0.9266666666666667,0.8333333333333334,1.0,0.8933333333333333,3,24 -bottle,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6305246913580248 -F1-Score: 0.6747354497354497 -Precision: 0.9020061728395062 -Recall: 0.5944444444444444 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.6433333333333333,0.95,0.55,0.6666666666666666,1,24 -keyboard,0.72,1.0,0.5166666666666666,0.6666666666666667,1,26 -glue,0.75,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.5633333333333332,1.0,0.6166666666666666,0.7166666666666666,1,26 -flashlight,0.64,1.0,0.5333333333333333,0.6666666666666666,1,26 -cup,0.495,0.5,0.6666666666666666,0.5466666666666666,1,26 -folded,0.8166666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -jam,0.6599999999999999,1.0,0.5166666666666666,0.6666666666666667,1,26 -black,0.7983333333333333,0.6166666666666666,1.0,0.758095238095238,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.5966666666666667,1.0,0.55,0.6833333333333333,1,26 -soccer,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -hat,0.6633333333333333,1.0,0.65,0.75,1,26 -brown,0.8633333333333333,1.0,0.8333333333333333,0.9,2,25 -coffee,0.7333333333333333,1.0,0.6499999999999999,0.75,1,26 -handle,0.73,1.0,0.5666666666666667,0.7,1,25 -food,0.655,1.0,0.5166666666666666,0.6666666666666667,1,24 -towel,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -chips,0.6733333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.58,1.0,0.6166666666666666,0.7166666666666666,1,26 -onion,0.5466666666666666,1.0,0.5,0.6333333333333334,1,26 -bag,0.5716666666666665,1.0,0.4999999999999999,0.6333333333333333,1,26 -sponge,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -zero,0,0,0,0,1,26 -computer,0.6933333333333332,1.0,0.6,0.7166666666666667,1,25 -special,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.5133333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -tube,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -cell,0.6966666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -mug,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -yogurt,0.425,1.0,0.5,0.6333333333333334,1,26 -plantain,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.7333333333333333,0.635,1.0,0.7540476190476191,3,24 -pepper,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -wheat,0.7133333333333333,1.0,0.6,0.7166666666666667,1,26 -kleenex,0.6383333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -toothbrush,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -binder,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -baseball,0.575,1.0,0.5833333333333333,0.7,1,26 -pliers,0.5683333333333334,1.0,0.55,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -thins,0.7266666666666667,1.0,0.7166666666666666,0.8,1,26 -package,0.7266666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -k,0.7333333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -jelly,0.835,1.0,0.7166666666666666,0.8,1,26 -fruit,0.7183333333333334,0.6,0.9333333333333332,0.7166666666666668,2,25 -apple,0.5083333333333333,0.95,0.5166666666666666,0.6166666666666666,1,25 -bell,0.5633333333333332,1.0,0.5499999999999999,0.6666666666666666,1,26 -battery,0.6383333333333333,1.0,0.5166666666666666,0.65,1,26 -jar,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -bound,0.6083333333333333,1.0,0.6499999999999999,0.75,1,26 -lettuce,0.7183333333333334,1.0,0.6499999999999999,0.75,1,26 -brush,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -scissors,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -lime,0.7416666666666666,1.0,0.7499999999999999,0.8166666666666667,1,25 -toothpaste,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -top,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -spiral,0.655,1.0,0.6499999999999999,0.75,1,26 -handles,0.5766666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -camera,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -eraser,0.6666666666666666,1.0,0.6,0.7,1,26 -creamer,0,0,0,0,1,26 -white,0.7866666666666667,0.6083333333333333,1.0,0.7504761904761905,5,20 -banana,0.76,1.0,0.6666666666666666,0.7666666666666667,1,26 -pitcher,0.525,1.0,0.5166666666666666,0.65,1,26 -phone,0.6183333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -stick,0.705,1.0,0.5833333333333333,0.7,1,25 -cereal,0.6966666666666665,1.0,0.5833333333333333,0.7,1,26 -bulb,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,26 -hair,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -can,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,24 -coca,0.7466666666666667,1.0,0.65,0.75,1,26 -crackers,0.3833333333333333,1.0,0.4833333333333333,0.6166666666666666,1,26 -plate,0.6483333333333333,1.0,0.4666666666666666,0.6333333333333334,1,25 -calculator,0.39333333333333337,0.8,0.4666666666666666,0.5333333333333333,1,26 -tissues,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.6683333333333332,1.0,0.5166666666666666,0.65,1,26 -pink,0.6133333333333333,1.0,0.55,0.6833333333333333,1,25 -lemon,0.44333333333333325,1.0,0.4499999999999999,0.6,1,26 -peach,0.755,1.0,0.5999999999999999,0.7166666666666666,1,26 -bowl,0.7483333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.605,1.0,0.5166666666666666,0.65,1,26 -blue,0.635,1.0,0.5333333333333332,0.6666666666666666,1,25 -used,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.6416666666666666,1.0,0.7,0.7833333333333333,1,26 -ball,0.6466666666666667,1.0,0.55,0.6833333333333333,1,25 -notebook,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -garlic,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -cleaning,0.5666666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -pair,0.9333333333333332,1.0,0.9333333333333332,0.96,2,26 -container,0.4499999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -tomato,0.5733333333333333,0.9,0.55,0.6333333333333333,1,26 -cellphone,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -potato,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666668,1,25 -light,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,26 -green,0.9216666666666666,0.825,1.0,0.8857142857142858,3,23 -bottle,0.8716666666666667,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6409722222222223 -F1-Score: 0.6819907407407407 -Precision: 0.9012500000000001 -Recall: 0.6030864197530862 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6716666666666666,1.0,0.6333333333333332,0.7333333333333333,1,25 -yellow,0.9,0.7333333333333333,1.0,0.8266666666666665,6,24 -looks,0.71,0.85,0.7,0.6833333333333333,1,24 -keyboard,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.5433333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.5333333333333333,1.0,0.5999999999999999,0.7,1,26 -flashlight,0.7166666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.5983333333333334,0.5,0.6833333333333333,0.5566666666666668,1,26 -folded,0.6716666666666666,1.0,0.65,0.75,1,26 -jam,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -black,0.9466666666666667,0.8666666666666668,1.0,0.9133333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6383333333333334,1.0,0.5833333333333333,0.7,1,26 -soccer,0.8833333333333332,1.0,0.8,0.8666666666666668,1,26 -hat,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -brown,0.9266666666666667,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.755,1.0,0.5999999999999999,0.7166666666666667,1,26 -handle,0.6383333333333334,1.0,0.6,0.7166666666666667,1,26 -food,0.61,1.0,0.4833333333333333,0.6333333333333334,1,24 -towel,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -chips,0.65,1.0,0.5999999999999999,0.7166666666666666,1,26 -stapler,0.5333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -onion,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -sponge,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.8466666666666665,1.0,0.7833333333333333,0.85,1,25 -special,0.325,1.0,0.35,0.5166666666666666,1,26 -colgate,0.7100000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -leaf,0.6383333333333333,1.0,0.5666666666666667,0.7,1,26 -tube,0.5216666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -cell,0.775,1.0,0.8166666666666667,0.8666666666666666,1,26 -mug,0.7649999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -yogurt,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -plantain,0.675,1.0,0.7,0.7833333333333333,1,26 -red,0.9666666666666668,0.9333333333333332,1.0,0.96,3,25 -pepper,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -wheat,0.8666666666666666,1.0,0.8666666666666666,0.9,1,26 -kleenex,0.5633333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -toothbrush,0.75,1.0,0.7166666666666666,0.8,1,26 -binder,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -baseball,0.6716666666666666,1.0,0.55,0.6833333333333333,1,26 -pliers,0.6333333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -thins,0.6583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -package,0.6666666666666667,0.9,0.7,0.7166666666666667,1,26 -k,0.7466666666666666,1.0,0.7,0.7833333333333333,1,26 -jelly,0.6183333333333333,1.0,0.5833333333333333,0.7,1,26 -fruit,0.69,0.5666666666666667,0.8666666666666668,0.6433333333333333,2,26 -apple,0.575,0.9,0.5333333333333332,0.6,1,25 -bell,0.8,1.0,0.7166666666666666,0.8,1,26 -battery,0.6849999999999999,1.0,0.5833333333333333,0.7,1,26 -jar,0.6383333333333334,1.0,0.5833333333333333,0.7,1,26 -bound,0.6933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.5266666666666666,1.0,0.41666666666666663,0.5833333333333333,1,26 -brush,0.6383333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -scissors,0.705,1.0,0.5499999999999999,0.6833333333333333,1,26 -lime,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -toothpaste,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -top,0.425,1.0,0.4166666666666667,0.5666666666666667,1,26 -spiral,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -handles,0.76,1.0,0.6666666666666666,0.7666666666666667,1,25 -camera,0.4666666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -eraser,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.6266666666666666,0.4966666666666666,1.0,0.6516666666666666,5,21 -banana,0.76,1.0,0.6666666666666666,0.7666666666666667,1,26 -pitcher,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -phone,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -stick,0.7566666666666666,1.0,0.5833333333333333,0.7166666666666667,1,25 -cereal,0.4583333333333333,1.0,0.5,0.6333333333333333,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -hair,0.6,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8266666666666665,1.0,0.7666666666666666,0.8333333333333333,1,26 -can,0.8816666666666666,1.0,0.8333333333333333,0.9,2,26 -coca,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -crackers,0.5266666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -plate,0.7666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,25 -calculator,0.71,1.0,0.5666666666666667,0.6833333333333333,1,26 -tissues,0.61,1.0,0.5833333333333333,0.7,1,26 -juice,0.7866666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.7383333333333333,1.0,0.6499999999999999,0.75,1,25 -lemon,0.655,1.0,0.5999999999999999,0.7166666666666667,1,26 -peach,0.6883333333333334,0.5,0.8333333333333333,0.6066666666666667,1,26 -bowl,0.6849999999999999,1.0,0.6,0.7166666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.475,1.0,0.45,0.6,1,26 -blue,0.605,0.8,0.6499999999999999,0.6166666666666667,1,25 -used,0.7416666666666666,1.0,0.6499999999999999,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -ball,0.5433333333333333,1.0,0.4666666666666666,0.6166666666666666,1,25 -notebook,0.4916666666666666,1.0,0.4499999999999999,0.6,1,26 -garlic,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.7433333333333333,1.0,0.6,0.7166666666666667,1,26 -pair,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,26 -container,0.6433333333333333,1.0,0.5833333333333333,0.7,1,25 -tomato,0.5133333333333333,0.7,0.6499999999999999,0.5833333333333333,1,26 -cellphone,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -potato,0.7216666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -light,0.8866666666666667,1.0,0.8333333333333333,0.9,2,26 -green,0.9833333333333334,0.9666666666666666,1.0,0.9800000000000001,3,24 -bottle,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6487654320987654 -F1-Score: 0.684922839506173 -Precision: 0.8954938271604939 -Recall: 0.6134259259259259 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.41666666666666663,1.0,0.4666666666666666,0.6,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,25 -looks,0.5933333333333334,0.95,0.5833333333333333,0.6666666666666666,1,24 -keyboard,0.7916666666666666,1.0,0.7,0.7833333333333333,1,26 -glue,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.775,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -cup,0.33333333333333337,0.5,0.6333333333333333,0.5266666666666666,1,26 -folded,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -jam,0.6649999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -black,0.8633333333333333,0.6333333333333333,1.0,0.76,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.5,1.0,0.5,0.6333333333333333,1,26 -soccer,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -hat,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -brown,0.95,1.0,0.9333333333333332,0.96,2,24 -coffee,0.6816666666666666,1.0,0.4999999999999999,0.65,1,26 -handle,0.3833333333333333,1.0,0.4666666666666666,0.6166666666666667,1,25 -food,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -towel,0.64,1.0,0.5499999999999999,0.6833333333333333,1,26 -chips,0.635,1.0,0.6,0.7166666666666666,1,26 -stapler,0.5683333333333332,1.0,0.5166666666666666,0.65,1,26 -onion,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.8583333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -sponge,0.6683333333333333,1.0,0.55,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7583333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -special,0.7916666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -colgate,0.7616666666666666,1.0,0.5833333333333333,0.7166666666666667,1,26 -leaf,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -tube,0.5249999999999999,1.0,0.5166666666666666,0.65,1,26 -cell,0.49833333333333335,0.5,0.6333333333333333,0.5266666666666667,1,26 -mug,0.605,1.0,0.5166666666666666,0.65,1,26 -yogurt,0.78,1.0,0.8166666666666667,0.8666666666666666,1,26 -plantain,0.6383333333333334,1.0,0.5833333333333333,0.7,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.6166666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -wheat,0.3466666666666667,1.0,0.45,0.6,1,26 -kleenex,0.75,1.0,0.65,0.75,1,26 -toothbrush,0.475,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.7033333333333334,1.0,0.5666666666666667,0.7,1,26 -pliers,0.6466666666666667,1.0,0.65,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -thins,0.8233333333333335,1.0,0.65,0.7666666666666667,1,26 -package,0.505,1.0,0.4833333333333333,0.6333333333333334,1,26 -k,0.5816666666666668,1.0,0.4833333333333333,0.6333333333333333,1,26 -jelly,0.36333333333333334,1.0,0.4333333333333333,0.5833333333333333,1,26 -fruit,0.875,0.8666666666666666,0.9,0.8533333333333333,2,26 -apple,0.575,0.95,0.4999999999999999,0.6,1,25 -bell,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -battery,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -jar,0.7716666666666666,1.0,0.7166666666666666,0.8,1,26 -bound,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.7716666666666667,1.0,0.65,0.75,1,26 -brush,0.6033333333333334,0.55,0.6666666666666666,0.5633333333333334,1,26 -scissors,0.8,1.0,0.7166666666666666,0.8,1,26 -lime,0.7,1.0,0.75,0.8166666666666667,1,25 -toothpaste,0.705,1.0,0.5833333333333333,0.7,1,26 -top,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -handles,0.73,1.0,0.6,0.7166666666666667,1,25 -camera,0.6683333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.72,1.0,0.6166666666666666,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.8,0.65,1.0,0.7828571428571428,5,21 -banana,0.86,1.0,0.8333333333333333,0.8833333333333332,1,26 -pitcher,0.7066666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -phone,0.42666666666666664,0.5,0.55,0.5033333333333333,1,26 -stick,0.7,1.0,0.6499999999999999,0.75,1,25 -cereal,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -bulb,0.8766666666666666,1.0,0.8333333333333333,0.9,2,27 -hair,0.7183333333333334,1.0,0.65,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6466666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -can,0.8933333333333333,1.0,0.8666666666666666,0.9199999999999999,2,25 -coca,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -crackers,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -plate,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333334,1,25 -calculator,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -tissues,0.7133333333333333,1.0,0.65,0.75,1,26 -juice,0.45,1.0,0.4833333333333332,0.6166666666666666,1,26 -pink,0.45499999999999996,1.0,0.4999999999999999,0.6333333333333333,1,25 -lemon,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -peach,0.7133333333333334,1.0,0.7,0.7833333333333333,1,26 -bowl,0.5133333333333334,1.0,0.4999999999999999,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6,1.0,0.5166666666666666,0.65,1,26 -blue,0.5716666666666667,1.0,0.5,0.65,1,25 -used,0.6166666666666666,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666667,1,26 -ball,0.4633333333333334,1.0,0.4666666666666666,0.6166666666666667,1,25 -notebook,0.8883333333333333,1.0,0.8,0.8666666666666666,1,26 -garlic,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -cleaning,0.5233333333333333,0.7,0.5333333333333333,0.5533333333333335,1,26 -pair,0.9600000000000002,1.0,0.9333333333333332,0.9600000000000002,2,27 -container,0.6883333333333332,1.0,0.6,0.7166666666666667,1,25 -tomato,0.485,0.9,0.5166666666666666,0.6,1,26 -cellphone,0.5233333333333332,0.55,0.6833333333333333,0.5666666666666667,1,26 -potato,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,25 -light,0.93,1.0,0.9,0.9400000000000001,2,25 -green,0.8899999999999999,0.7333333333333333,1.0,0.8266666666666665,3,24 -bottle,0.95,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6356018518518518 -F1-Score: 0.6782671957671956 -Precision: 0.8878086419753087 -Recall: 0.6044753086419753 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,25 -yellow,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666665,6,24 -looks,0.605,0.85,0.6166666666666666,0.6166666666666667,1,24 -keyboard,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -glue,0.64,1.0,0.4333333333333333,0.6,1,26 -milk,0,0,0,0,1,26 -cola,0.6933333333333334,1.0,0.7,0.7833333333333333,1,26 -flashlight,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.4083333333333333,0.5,0.6,0.52,1,26 -folded,0.635,1.0,0.5,0.65,1,26 -jam,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -black,0.8416666666666668,0.6166666666666666,1.0,0.7466666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6766666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -soccer,0.635,1.0,0.4833333333333332,0.6333333333333333,1,26 -hat,0.5383333333333333,1.0,0.4499999999999999,0.6,1,26 -brown,0.9216666666666666,1.0,0.9,0.9400000000000001,2,24 -coffee,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -handle,0.6583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -food,0.5166666666666666,1.0,0.5499999999999999,0.6666666666666666,1,25 -towel,0.8,1.0,0.7333333333333333,0.8166666666666668,1,26 -chips,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -stapler,0.4933333333333333,1.0,0.4,0.5666666666666667,1,26 -onion,0.5416666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -bag,0.8300000000000001,1.0,0.6833333333333333,0.7833333333333333,1,26 -sponge,0.6,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -special,0.6683333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -colgate,0.3966666666666666,1.0,0.45,0.6,1,26 -leaf,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.73,1.0,0.7,0.7833333333333333,1,26 -cell,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -mug,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -yogurt,0.6766666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -plantain,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -red,0.9099999999999999,0.7999999999999999,1.0,0.8633333333333333,3,25 -pepper,0.5683333333333332,1.0,0.5166666666666666,0.65,1,26 -wheat,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.7,1.0,0.7,0.7833333333333333,1,26 -binder,0.5766666666666667,1.0,0.5,0.65,1,26 -baseball,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -pliers,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -thins,0.6416666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -package,0.71,1.0,0.7,0.7833333333333334,1,26 -k,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -jelly,0.4333333333333333,1.0,0.4,0.5666666666666667,1,26 -fruit,0.715,0.6833333333333333,0.8333333333333333,0.7100000000000001,2,26 -apple,0.6416666666666667,0.9,0.6333333333333333,0.6666666666666667,1,25 -bell,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -battery,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333334,1,26 -jar,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.5983333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -lettuce,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -brush,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -scissors,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.75,1.0,0.6666666666666666,0.7666666666666666,1,25 -toothpaste,0.5683333333333334,1.0,0.5166666666666666,0.65,1,26 -top,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -spiral,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -camera,0.6916666666666667,1.0,0.5666666666666667,0.7,1,26 -eraser,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.5883333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -pitcher,0.71,1.0,0.6,0.7166666666666667,1,26 -phone,0.6183333333333333,1.0,0.5833333333333333,0.7,1,26 -stick,0.6016666666666667,1.0,0.55,0.6833333333333333,1,25 -cereal,0.5766666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -bulb,0.835,1.0,0.8,0.8800000000000001,2,27 -hair,0.675,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5666666666666667,1.0,0.4833333333333334,0.6333333333333333,1,26 -can,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -coca,0.585,1.0,0.5333333333333332,0.6666666666666666,1,26 -crackers,0.7016666666666667,1.0,0.5666666666666667,0.7,1,26 -plate,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -calculator,0.46333333333333326,0.7,0.6166666666666666,0.5566666666666666,1,26 -tissues,0.7083333333333333,1.0,0.7166666666666666,0.8,1,26 -juice,0.6883333333333332,1.0,0.65,0.75,1,26 -pink,0.5516666666666666,0.65,0.6333333333333333,0.5566666666666668,1,25 -lemon,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -peach,0.69,1.0,0.5666666666666667,0.7,1,26 -bowl,0.655,1.0,0.6499999999999999,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6516666666666666,1.0,0.5166666666666666,0.65,1,26 -blue,0.6766666666666666,1.0,0.5666666666666667,0.7,1,25 -used,0.6466666666666667,1.0,0.55,0.6833333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -ball,0.4133333333333333,1.0,0.4333333333333333,0.5833333333333333,1,25 -notebook,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -garlic,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.48666666666666664,0.55,0.6499999999999999,0.5466666666666666,1,26 -pair,0.8733333333333333,1.0,0.8333333333333333,0.9,2,26 -container,0.4583333333333333,1.0,0.4499999999999999,0.6,1,25 -tomato,0.4766666666666667,0.9,0.4333333333333333,0.5333333333333333,1,26 -cellphone,0.6683333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -potato,0.8466666666666665,1.0,0.7833333333333333,0.85,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -green,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666665,3,24 -bottle,0.8799999999999999,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6325771604938271 -F1-Score: 0.6733950617283949 -Precision: 0.8973765432098766 -Recall: 0.5930555555555554 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.605,1.0,0.5333333333333333,0.6666666666666667,1,25 -yellow,0.8316666666666668,0.6833333333333333,1.0,0.7980952380952381,6,25 -looks,0.5983333333333334,0.6,0.8,0.6066666666666667,1,24 -keyboard,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -glue,0.63,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.9099999999999999,1.0,0.8,0.8666666666666668,1,26 -flashlight,0.7150000000000001,1.0,0.5666666666666667,0.7,1,26 -cup,0.655,1.0,0.6499999999999999,0.75,1,25 -folded,0.6316666666666666,1.0,0.5,0.65,1,26 -jam,0.3416666666666667,1.0,0.4499999999999999,0.6,1,26 -black,1.0,1.0,1.0,1.0,6,23 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -soccer,0.48,1.0,0.4666666666666666,0.6166666666666667,1,26 -hat,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -brown,0.9333333333333332,1.0,0.9333333333333332,0.96,2,24 -coffee,0.4133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,25 -handle,0.58,1.0,0.5833333333333333,0.7,1,26 -food,0.605,1.0,0.5166666666666666,0.65,1,25 -towel,0.5983333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -chips,0.7133333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.7733333333333332,1.0,0.6166666666666666,0.7333333333333334,1,26 -onion,0.7266666666666667,1.0,0.65,0.75,1,26 -bag,0.805,1.0,0.7,0.7833333333333333,1,26 -sponge,0.7100000000000001,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.625,1.0,0.6,0.7166666666666667,1,25 -special,0.8800000000000001,1.0,0.7833333333333333,0.85,1,26 -colgate,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -leaf,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -tube,0.7433333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -cell,0.5433333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -mug,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -yogurt,0.6733333333333333,1.0,0.5833333333333333,0.7,1,26 -plantain,0.6766666666666665,1.0,0.5999999999999999,0.7166666666666667,1,26 -red,0.8633333333333333,0.7749999999999999,1.0,0.849047619047619,3,28 -pepper,0.6433333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -wheat,0.725,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.5266666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -toothbrush,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -binder,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -baseball,0.6933333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -pliers,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.5166666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -thins,0.4533333333333333,1.0,0.4,0.5666666666666667,1,26 -package,0.695,0.95,0.5166666666666666,0.6333333333333334,1,26 -k,0.5566666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -jelly,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -fruit,0.7250000000000001,0.6833333333333333,0.9,0.7433333333333334,2,25 -apple,0.5433333333333333,0.95,0.5166666666666666,0.6333333333333333,1,26 -bell,0.44333333333333325,1.0,0.41666666666666663,0.5833333333333334,1,26 -battery,0.8566666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -jar,0.8133333333333332,1.0,0.7499999999999999,0.8166666666666667,1,26 -bound,0.63,1.0,0.5666666666666667,0.7,1,26 -lettuce,0.7333333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -brush,0.6066666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -scissors,0.785,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.61,1.0,0.4666666666666666,0.6333333333333333,1,25 -toothpaste,0.5083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -top,0.6683333333333333,1.0,0.6,0.7166666666666667,1,26 -spiral,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -handles,0.8300000000000001,1.0,0.7166666666666666,0.8,1,25 -camera,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -eraser,0.6666666666666667,1.0,0.55,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.7933333333333333,0.625,1.0,0.7623809523809524,5,21 -banana,0.7583333333333334,0.9,0.6666666666666666,0.7,1,26 -pitcher,0.6966666666666665,1.0,0.6833333333333332,0.7666666666666666,1,26 -phone,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -stick,0.5433333333333332,1.0,0.5666666666666667,0.6833333333333333,1,25 -cereal,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -bulb,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -hair,0.6933333333333332,1.0,0.6499999999999999,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8166666666666668,1.0,0.7333333333333333,0.8166666666666667,1,26 -can,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,25 -coca,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -crackers,0.8400000000000001,1.0,0.7833333333333333,0.85,1,26 -plate,0.45499999999999996,1.0,0.5166666666666666,0.65,1,25 -calculator,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -tissues,0.35,1.0,0.4666666666666666,0.6,1,26 -juice,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -pink,0.8433333333333334,1.0,0.7,0.8,1,25 -lemon,0.735,1.0,0.55,0.6833333333333333,1,26 -peach,0.5633333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -bowl,0.4883333333333333,1.0,0.5166666666666666,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -blue,0.6166666666666667,0.6499999999999999,0.7166666666666666,0.5833333333333333,1,25 -used,0.6016666666666667,1.0,0.5333333333333332,0.6666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -ball,0.805,1.0,0.7166666666666666,0.8,1,25 -notebook,0.7766666666666666,1.0,0.65,0.75,1,26 -garlic,0.8416666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -cleaning,0.8366666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -pair,0.86,1.0,0.8333333333333334,0.9000000000000001,2,27 -container,0.6799999999999999,1.0,0.6166666666666666,0.7166666666666667,1,25 -tomato,0.5516666666666666,0.65,0.7,0.5900000000000001,1,26 -cellphone,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -potato,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -light,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -green,0.8883333333333333,0.7666666666666666,1.0,0.8514285714285716,3,24 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6512345679012347 -F1-Score: 0.6875705467372131 -Precision: 0.9003086419753087 -Recall: 0.6126543209876543 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.3766666666666667,1.0,0.38333333333333336,0.55,1,24 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,24 -keyboard,0.6633333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.8,1.0,0.6833333333333333,0.7833333333333334,1,26 -milk,0,0,0,0,1,26 -cola,0.8066666666666666,1.0,0.6333333333333333,0.75,1,26 -flashlight,0.725,1.0,0.6666666666666666,0.7666666666666666,1,26 -cup,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -folded,0.735,1.0,0.65,0.75,1,26 -jam,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -black,0.8850000000000001,0.75,1.0,0.838095238095238,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6183333333333333,1.0,0.4999999999999999,0.65,1,26 -soccer,0.7066666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -hat,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,24 -coffee,0.6799999999999999,1.0,0.5166666666666666,0.6666666666666667,1,26 -handle,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -food,0.655,1.0,0.65,0.75,1,26 -towel,0.5583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -chips,0.8166666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -stapler,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -onion,0.7416666666666666,1.0,0.65,0.75,1,26 -bag,0.5549999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -sponge,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -special,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -colgate,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -leaf,0.5966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.6183333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -cell,0.17,0.5,0.4666666666666666,0.4666666666666667,1,26 -mug,0.705,1.0,0.7,0.7833333333333334,1,26 -yogurt,0.755,1.0,0.6499999999999999,0.75,1,26 -plantain,0.7433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.6166666666666667,0.425,1.0,0.5857142857142856,3,26 -pepper,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -wheat,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -kleenex,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -toothbrush,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -baseball,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -pliers,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -thins,0.6933333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -package,0.6499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.6883333333333334,1.0,0.6,0.7166666666666667,1,26 -jelly,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -fruit,0.7849999999999999,0.7166666666666666,0.9,0.7533333333333334,2,25 -apple,0.4083333333333333,1.0,0.4333333333333333,0.5833333333333333,1,25 -bell,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -battery,0.675,1.0,0.6166666666666666,0.7166666666666667,1,26 -jar,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -bound,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -lettuce,0.6566666666666667,1.0,0.4666666666666666,0.6333333333333334,1,26 -brush,0.4600000000000001,1.0,0.45,0.6,1,26 -scissors,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.6966666666666667,1.0,0.55,0.6833333333333333,1,25 -toothpaste,0.6166666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -spiral,0.5716666666666665,1.0,0.4666666666666666,0.6166666666666667,1,26 -handles,0.8799999999999999,1.0,0.8,0.8666666666666666,1,25 -camera,0.635,1.0,0.5166666666666666,0.6666666666666667,1,26 -eraser,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.765,0.6166666666666666,1.0,0.7495238095238095,5,21 -banana,0.6166666666666667,1.0,0.6333333333333332,0.7333333333333333,1,26 -pitcher,0.775,1.0,0.6333333333333333,0.75,1,26 -phone,0.41833333333333333,0.5,0.5333333333333333,0.49333333333333335,1,26 -stick,0.78,1.0,0.6666666666666666,0.7666666666666667,1,25 -cereal,0.7333333333333333,1.0,0.6499999999999999,0.75,1,26 -bulb,0.85,1.0,0.8333333333333333,0.9,2,26 -hair,0.7683333333333333,1.0,0.65,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.755,1.0,0.7166666666666666,0.8,1,26 -can,0.8933333333333333,1.0,0.8666666666666666,0.9200000000000002,2,24 -coca,0.6683333333333333,1.0,0.5833333333333333,0.7,1,26 -crackers,0.835,1.0,0.7166666666666666,0.8,1,26 -plate,0.5683333333333332,1.0,0.5333333333333333,0.6666666666666667,1,25 -calculator,0.5599999999999999,0.85,0.6833333333333333,0.6666666666666667,1,26 -tissues,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -juice,0.7,1.0,0.5833333333333333,0.7,1,26 -pink,0.6699999999999999,1.0,0.5499999999999999,0.6833333333333333,1,25 -lemon,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -peach,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -bowl,0.5733333333333334,1.0,0.4499999999999999,0.6,1,26 -camouflage,0,0,0,0,1,26 -digital,0.67,1.0,0.5666666666666667,0.7,1,26 -blue,0.63,1.0,0.6166666666666666,0.7166666666666666,1,25 -used,0.8633333333333333,1.0,0.8166666666666667,0.8666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.7933333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -ball,0.8733333333333334,1.0,0.7833333333333333,0.85,1,25 -notebook,0.575,1.0,0.5833333333333333,0.7,1,26 -garlic,0.755,1.0,0.5833333333333333,0.7166666666666667,1,26 -cleaning,0.6633333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -pair,0.93,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.7666666666666667,1.0,0.6833333333333333,0.7833333333333334,1,25 -tomato,0.5683333333333332,0.75,0.5666666666666667,0.59,1,26 -cellphone,0.41833333333333333,0.5,0.55,0.5033333333333333,1,26 -potato,0.7383333333333333,1.0,0.7,0.7833333333333333,1,25 -light,0.93,1.0,0.9,0.9400000000000001,2,26 -green,0.82,0.6333333333333333,1.0,0.7566666666666666,3,23 -bottle,0.96,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6522067901234566 -F1-Score: 0.6839506172839506 -Precision: 0.8911265432098765 -Recall: 0.6103395061728394 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6766666666666666,1.0,0.6499999999999999,0.75,1,24 -yellow,0.9600000000000002,0.9,1.0,0.9333333333333332,6,24 -looks,0.76,0.95,0.7,0.75,1,24 -keyboard,0.65,1.0,0.6499999999999999,0.75,1,26 -glue,0.6416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.705,1.0,0.6,0.7166666666666667,1,26 -flashlight,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -cup,0.5966666666666667,0.5,0.6833333333333333,0.5566666666666668,1,26 -folded,0.625,1.0,0.5833333333333333,0.7,1,26 -jam,0.6599999999999999,1.0,0.4833333333333332,0.6333333333333333,1,26 -black,0.9800000000000001,0.95,1.0,0.9666666666666666,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6516666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -soccer,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -hat,0.5766666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -brown,0.9349999999999999,1.0,0.9,0.9400000000000001,2,25 -coffee,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -handle,0.65,1.0,0.6333333333333333,0.7333333333333333,1,25 -food,0.7133333333333333,1.0,0.6499999999999999,0.75,1,24 -towel,0.5216666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -chips,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.77,1.0,0.5666666666666667,0.7,1,26 -onion,0.7,1.0,0.6499999999999999,0.75,1,26 -bag,0.5083333333333333,1.0,0.5166666666666666,0.65,1,26 -sponge,0.61,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,25 -special,0.5433333333333333,1.0,0.4333333333333333,0.6,1,26 -colgate,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -leaf,0.5983333333333334,1.0,0.4999999999999999,0.65,1,26 -tube,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -cell,0.4666666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -mug,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -yogurt,0.5683333333333332,1.0,0.5166666666666666,0.65,1,26 -plantain,0.6816666666666666,1.0,0.6,0.7166666666666667,1,26 -red,0.6816666666666666,0.5349999999999999,1.0,0.6840476190476191,3,25 -pepper,0.7666666666666667,1.0,0.7166666666666666,0.8,1,26 -wheat,0.655,1.0,0.5666666666666667,0.6833333333333333,1,26 -kleenex,0.58,1.0,0.5333333333333332,0.6666666666666666,1,26 -toothbrush,0.7216666666666667,1.0,0.65,0.75,1,26 -binder,0.6833333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -baseball,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -pliers,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.675,1.0,0.6666666666666666,0.7666666666666667,1,26 -thins,0.45,1.0,0.5,0.6333333333333333,1,26 -package,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.7716666666666667,1.0,0.65,0.75,1,26 -jelly,0.5966666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.6766666666666667,0.5499999999999999,0.9,0.64,2,25 -apple,0.63,0.85,0.6499999999999999,0.65,1,25 -bell,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -battery,0.825,1.0,0.7333333333333333,0.8166666666666667,1,26 -jar,0.6249999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -bound,0.6766666666666666,1.0,0.65,0.75,1,26 -lettuce,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -brush,0.6183333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -scissors,0.6583333333333333,1.0,0.6499999999999999,0.75,1,26 -lime,0.6683333333333332,1.0,0.6166666666666666,0.7333333333333333,1,25 -toothpaste,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -top,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -spiral,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.7883333333333333,1.0,0.7166666666666666,0.8,1,25 -camera,0.725,1.0,0.7166666666666666,0.8,1,26 -eraser,0.6083333333333333,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,0.7883333333333333,0.65,1.0,0.7828571428571428,5,20 -banana,0.725,1.0,0.75,0.8166666666666667,1,26 -pitcher,0.7266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.45,1.0,0.5333333333333332,0.65,1,26 -stick,0.7233333333333334,1.0,0.65,0.75,1,25 -cereal,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -bulb,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -hair,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6766666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -can,0.8433333333333334,1.0,0.8,0.8800000000000001,2,25 -coca,0.48,1.0,0.55,0.6666666666666666,1,26 -crackers,0.6733333333333333,1.0,0.6499999999999999,0.75,1,26 -plate,0.7916666666666667,1.0,0.7333333333333333,0.8166666666666668,1,25 -calculator,0.265,0.65,0.45,0.4866666666666667,1,26 -tissues,0.755,1.0,0.6833333333333333,0.7833333333333333,1,26 -juice,0.5766666666666665,1.0,0.5166666666666666,0.65,1,26 -pink,0.6083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,25 -lemon,0.5933333333333334,1.0,0.4999999999999999,0.65,1,26 -peach,0.8283333333333334,1.0,0.65,0.7666666666666667,1,26 -bowl,0.7383333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -blue,0.6933333333333334,0.8,0.6833333333333333,0.65,1,25 -used,0.78,1.0,0.7166666666666666,0.8,1,23 -energizer,0,0,0,0,1,26 -pear,0.6083333333333333,1.0,0.6499999999999999,0.75,1,26 -ball,0.5,1.0,0.45,0.6,1,25 -notebook,0.6433333333333333,1.0,0.5666666666666667,0.7,1,26 -garlic,0.705,1.0,0.6499999999999999,0.75,1,26 -cleaning,0.7,1.0,0.7,0.7833333333333333,1,26 -pair,0.8949999999999999,1.0,0.8333333333333333,0.9,2,26 -container,0.6083333333333334,1.0,0.6833333333333333,0.7666666666666667,1,25 -tomato,0.6183333333333334,0.8,0.6166666666666666,0.6166666666666667,1,26 -cellphone,0.5666666666666667,1.0,0.6666666666666666,0.75,1,26 -potato,0.8666666666666668,1.0,0.7833333333333333,0.85,1,25 -light,1.0,1.0,1.0,1.0,2,25 -green,0.9099999999999999,0.7666666666666666,1.0,0.8466666666666667,3,24 -bottle,0.9199999999999999,1.0,0.8666666666666666,0.9199999999999999,2,26 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6389043209876542 -F1-Score: 0.6853108465608465 -Precision: 0.8972376543209877 -Recall: 0.6112654320987653 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.5599999999999999,0.9,0.6333333333333333,0.6666666666666667,1,24 -keyboard,0.48,1.0,0.4333333333333334,0.6,1,26 -glue,0.8116666666666668,1.0,0.6333333333333333,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -flashlight,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -cup,0.355,0.5,0.6333333333333333,0.5266666666666667,1,26 -folded,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jam,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -black,0.7966666666666666,0.6666666666666667,1.0,0.7961904761904762,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.735,1.0,0.6166666666666666,0.7333333333333334,1,26 -soccer,0.6433333333333333,1.0,0.4999999999999999,0.65,1,26 -hat,0.6,1.0,0.5833333333333333,0.7,1,26 -brown,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -coffee,0.7383333333333333,1.0,0.6333333333333333,0.75,1,26 -handle,0.5999999999999999,1.0,0.5999999999999999,0.7,1,26 -food,0.71,1.0,0.5499999999999999,0.6833333333333333,1,25 -towel,0.75,1.0,0.6166666666666666,0.7333333333333333,1,26 -chips,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.72,1.0,0.6,0.7166666666666667,1,26 -onion,0.5933333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.6799999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -special,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -colgate,0.6499999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -leaf,0.53,1.0,0.5166666666666666,0.65,1,26 -tube,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -cell,0.4333333333333333,0.55,0.6333333333333333,0.5366666666666667,1,26 -mug,0.63,1.0,0.6166666666666666,0.7166666666666667,1,26 -yogurt,0.655,1.0,0.5333333333333333,0.6666666666666667,1,26 -plantain,0.78,1.0,0.8166666666666667,0.8666666666666666,1,26 -red,0.74,0.525,1.0,0.6657142857142858,3,25 -pepper,0.8800000000000001,1.0,0.7833333333333333,0.85,1,26 -wheat,0.6599999999999999,1.0,0.5166666666666666,0.6666666666666667,1,26 -kleenex,0.7133333333333333,1.0,0.6,0.7166666666666667,1,26 -toothbrush,0.6333333333333333,1.0,0.55,0.6833333333333333,1,26 -binder,0.5133333333333333,1.0,0.55,0.6666666666666667,1,26 -baseball,0.505,1.0,0.5166666666666666,0.65,1,26 -pliers,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -thins,0.6799999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -package,0.53,1.0,0.5499999999999999,0.6666666666666666,1,26 -k,0.5599999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -jelly,0.635,1.0,0.5499999999999999,0.6833333333333333,1,26 -fruit,0.8466666666666665,0.9333333333333332,0.8333333333333333,0.8600000000000001,2,26 -apple,0.43999999999999995,0.85,0.4833333333333332,0.5333333333333333,1,25 -bell,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -battery,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jar,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -lettuce,0.5883333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -brush,0.71,1.0,0.65,0.75,1,26 -scissors,0.6799999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.63,1.0,0.6,0.7166666666666667,1,25 -toothpaste,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666667,1,26 -top,0.5549999999999999,1.0,0.5833333333333333,0.7,1,26 -spiral,0.5733333333333334,1.0,0.4166666666666667,0.5833333333333333,1,26 -handles,0.635,1.0,0.5166666666666666,0.65,1,25 -camera,0.7333333333333333,1.0,0.6499999999999999,0.75,1,26 -eraser,0.8966666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -creamer,0,0,0,0,1,26 -white,0.7733333333333333,0.675,1.0,0.8019047619047619,5,21 -banana,0.5583333333333333,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.7916666666666667,1.0,0.7166666666666666,0.8,1,26 -phone,0.4366666666666667,0.55,0.5499999999999999,0.5133333333333334,1,26 -stick,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -cereal,0.6833333333333333,1.0,0.6,0.7166666666666667,1,26 -bulb,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,27 -hair,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -can,0.905,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.5933333333333333,1.0,0.55,0.6833333333333333,1,26 -plate,0.7333333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -calculator,0.705,0.9,0.7,0.7166666666666667,1,26 -tissues,0.8099999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -juice,0.7216666666666667,1.0,0.65,0.75,1,26 -pink,0.7100000000000001,1.0,0.6166666666666666,0.7333333333333333,1,25 -lemon,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -peach,0.73,1.0,0.7166666666666666,0.8,1,26 -bowl,0.6950000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7633333333333333,1.0,0.75,0.8166666666666667,1,26 -blue,0.705,1.0,0.65,0.75,1,25 -used,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6883333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -ball,0.6333333333333333,1.0,0.6666666666666666,0.75,1,25 -notebook,0.8266666666666665,1.0,0.7166666666666666,0.8,1,26 -garlic,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -cleaning,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -pair,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,26 -container,0.7516666666666667,1.0,0.65,0.75,1,25 -tomato,0.7883333333333333,0.85,0.7833333333333333,0.75,1,26 -cellphone,0.605,0.55,0.7666666666666666,0.5900000000000001,1,26 -potato,0.5166666666666667,1.0,0.4999999999999999,0.6333333333333333,1,25 -light,0.9,1.0,0.9,0.9400000000000001,2,26 -green,0.9833333333333334,0.9666666666666666,1.0,0.9800000000000001,3,24 -bottle,0.8433333333333334,1.0,0.8,0.8800000000000001,2,26 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.645324074074074 -F1-Score: 0.6854365079365081 -Precision: 0.8927469135802469 -Recall: 0.6135802469135803 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6,1.0,0.6166666666666666,0.7166666666666666,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,25 -looks,0.7166666666666667,0.95,0.7,0.75,1,24 -keyboard,0.6849999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -glue,0.6966666666666665,1.0,0.6,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -cup,0.45999999999999996,0.5,0.5666666666666667,0.5133333333333333,1,26 -folded,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -jam,0.5966666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.8700000000000001,0.7333333333333333,1.0,0.8314285714285715,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6849999999999999,1.0,0.5833333333333333,0.7,1,26 -soccer,0.6216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -hat,0.43,1.0,0.4499999999999999,0.6,1,26 -brown,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,25 -coffee,0.6416666666666666,1.0,0.5166666666666666,0.65,1,26 -handle,0.6666666666666666,1.0,0.5833333333333333,0.7,1,25 -food,0.7333333333333333,1.0,0.8,0.85,1,26 -towel,0.6516666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -chips,0.6983333333333334,1.0,0.5666666666666667,0.7,1,26 -stapler,0.7933333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -onion,0.46333333333333326,1.0,0.4666666666666666,0.6166666666666667,1,26 -bag,0.6133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -sponge,0.3716666666666667,1.0,0.4333333333333333,0.5833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7183333333333333,1.0,0.5333333333333333,0.6833333333333333,1,26 -special,0.5916666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -colgate,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -leaf,0.7216666666666667,1.0,0.5833333333333333,0.7166666666666666,1,26 -tube,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -cell,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -mug,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -yogurt,0.7183333333333334,1.0,0.65,0.75,1,26 -plantain,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -red,0.8299999999999998,0.7,1.0,0.7966666666666666,3,27 -pepper,0.835,1.0,0.7833333333333333,0.85,1,26 -wheat,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -kleenex,0.8583333333333332,1.0,0.7833333333333333,0.85,1,26 -toothbrush,0.6466666666666666,1.0,0.6,0.7166666666666667,1,26 -binder,0.7833333333333333,1.0,0.7999999999999999,0.85,1,26 -baseball,0.5016666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -pliers,0.6966666666666665,1.0,0.6833333333333333,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -thins,0.8800000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -package,0.8133333333333332,0.95,0.7666666666666666,0.8,1,26 -k,0.6599999999999999,1.0,0.6,0.7166666666666667,1,26 -jelly,0.7016666666666667,1.0,0.5833333333333333,0.7,1,26 -fruit,0.6316666666666666,0.6166666666666667,0.8333333333333334,0.6733333333333335,2,25 -apple,0.5549999999999999,1.0,0.5166666666666666,0.65,1,25 -bell,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -battery,0.5966666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -jar,0.4933333333333333,1.0,0.4,0.5666666666666667,1,26 -bound,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -lettuce,0.9349999999999999,1.0,0.85,0.8999999999999998,1,26 -brush,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -scissors,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666667,1,26 -lime,0.7133333333333333,1.0,0.7,0.7833333333333333,1,25 -toothpaste,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -top,0.865,1.0,0.7333333333333333,0.8166666666666667,1,26 -spiral,0.4833333333333333,1.0,0.5,0.6333333333333333,1,26 -handles,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.6883333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.7133333333333333,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.4333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -pitcher,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -phone,0.625,1.0,0.6333333333333333,0.7333333333333334,1,26 -stick,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -cereal,0.5583333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -bulb,0.915,1.0,0.8666666666666666,0.9199999999999999,2,27 -hair,0.7733333333333332,1.0,0.6666666666666666,0.7666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.55,1.0,0.5833333333333333,0.7,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -coca,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -crackers,0.705,1.0,0.65,0.75,1,26 -plate,0.7466666666666666,1.0,0.65,0.75,1,25 -calculator,0.45999999999999996,0.55,0.5833333333333333,0.52,1,26 -tissues,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -juice,0.5466666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -pink,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -lemon,0.6683333333333333,1.0,0.55,0.6833333333333333,1,26 -peach,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -bowl,0.775,1.0,0.7,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -blue,0.7216666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -used,0.585,1.0,0.5166666666666666,0.65,1,24 -energizer,0,0,0,0,1,26 -pear,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -ball,0.7666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,25 -notebook,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -garlic,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -cleaning,0.6,1.0,0.5333333333333333,0.6666666666666667,1,26 -pair,0.9266666666666667,1.0,0.9,0.9400000000000001,2,27 -container,0.6266666666666667,1.0,0.5166666666666666,0.65,1,25 -tomato,0.6883333333333332,0.75,0.6166666666666666,0.6166666666666667,1,26 -cellphone,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -potato,0.6016666666666667,1.0,0.4833333333333333,0.6333333333333333,1,25 -light,0.8666666666666668,1.0,0.8333333333333333,0.9,2,26 -green,0.9433333333333334,0.8666666666666666,1.0,0.9133333333333333,3,25 -bottle,0.9099999999999999,1.0,0.8666666666666666,0.9199999999999999,2,26 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6472376543209876 -F1-Score: 0.6877292768959437 -Precision: 0.903395061728395 -Recall: 0.6078703703703703 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8099999999999999,1.0,0.7,0.7833333333333333,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.8399999999999999,1.0,0.7166666666666666,0.8,1,24 -keyboard,0.7266666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -glue,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.7666666666666667,1.0,0.7,0.7833333333333333,1,26 -flashlight,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.2533333333333333,0.5,0.5666666666666667,0.5000000000000001,1,26 -folded,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -jam,0.6300000000000001,1.0,0.6,0.7166666666666667,1,26 -black,0.9433333333333334,0.9,1.0,0.9400000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.755,1.0,0.7166666666666666,0.8,1,26 -soccer,0.6183333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -hat,0.5733333333333334,1.0,0.5166666666666666,0.65,1,26 -brown,0.8933333333333333,1.0,0.8666666666666666,0.9199999999999999,2,26 -coffee,0.675,1.0,0.6,0.7166666666666667,1,25 -handle,0.5966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -food,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -towel,0.5083333333333333,1.0,0.5833333333333333,0.7,1,26 -chips,0.6950000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -onion,0.51,0.95,0.4499999999999999,0.5666666666666667,1,26 -bag,0.5416666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -sponge,0.8133333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7133333333333333,1.0,0.65,0.75,1,25 -special,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -colgate,0.7633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -leaf,0.6233333333333333,1.0,0.5166666666666666,0.65,1,26 -tube,0.6416666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -cell,0.6466666666666667,0.5,0.7833333333333333,0.59,1,26 -mug,0.6183333333333334,1.0,0.5833333333333333,0.7,1,25 -yogurt,0.7499999999999999,1.0,0.6833333333333332,0.7666666666666666,1,26 -plantain,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.8766666666666666,0.7333333333333333,1.0,0.8133333333333332,3,24 -pepper,0.8083333333333332,1.0,0.7333333333333333,0.8166666666666667,1,26 -wheat,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.7066666666666668,1.0,0.5499999999999999,0.6833333333333333,1,26 -toothbrush,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.8166666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -baseball,0.575,1.0,0.6833333333333332,0.7666666666666666,1,26 -pliers,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.505,1.0,0.4666666666666666,0.6166666666666667,1,26 -thins,0.6883333333333334,1.0,0.6499999999999999,0.75,1,26 -package,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -k,0.755,1.0,0.7166666666666666,0.8,1,26 -jelly,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -fruit,0.7916666666666666,0.7333333333333333,0.8666666666666666,0.7533333333333333,2,26 -apple,0.755,1.0,0.6166666666666666,0.7333333333333334,1,25 -bell,0.7916666666666666,1.0,0.75,0.8166666666666667,1,26 -battery,0.6933333333333332,1.0,0.7,0.7833333333333333,1,26 -jar,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -bound,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -lettuce,0.755,1.0,0.6666666666666666,0.7666666666666666,1,26 -brush,0.5766666666666665,1.0,0.5333333333333333,0.6666666666666667,1,26 -scissors,0.745,1.0,0.6166666666666666,0.7333333333333333,1,26 -lime,0.6333333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -toothpaste,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -top,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -spiral,0.7166666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -handles,0.5383333333333333,1.0,0.4499999999999999,0.6,1,25 -camera,0.5933333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -eraser,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.8150000000000001,0.7,1.0,0.8209523809523809,5,21 -banana,0.43,1.0,0.4,0.5666666666666667,1,26 -pitcher,0.4833333333333333,1.0,0.4499999999999999,0.6,1,26 -phone,0.6566666666666666,0.5,0.8333333333333334,0.6066666666666667,1,26 -stick,0.575,1.0,0.5833333333333333,0.7,1,25 -cereal,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,27 -hair,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333334,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.585,1.0,0.5166666666666666,0.65,1,26 -can,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -coca,0.605,1.0,0.5833333333333333,0.7,1,26 -crackers,0.6216666666666667,1.0,0.6,0.7166666666666666,1,26 -plate,0.7433333333333334,1.0,0.65,0.75,1,25 -calculator,0.4216666666666667,1.0,0.38333333333333336,0.55,1,26 -tissues,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -juice,0.6833333333333333,1.0,0.65,0.75,1,26 -pink,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -lemon,0.5999999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -peach,0.75,1.0,0.7,0.7833333333333334,1,26 -bowl,0.5383333333333333,1.0,0.45,0.6,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -blue,0.505,1.0,0.45,0.6,1,25 -used,0.5833333333333333,1.0,0.5999999999999999,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.6666666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -ball,0.635,1.0,0.5999999999999999,0.7166666666666667,1,25 -notebook,0.6466666666666666,1.0,0.5166666666666666,0.65,1,26 -garlic,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -cleaning,0.6966666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -pair,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -container,0.5633333333333332,1.0,0.5833333333333333,0.7,1,25 -tomato,0.6333333333333333,0.75,0.7,0.6333333333333333,1,26 -cellphone,0.4683333333333334,0.55,0.6166666666666666,0.54,1,26 -potato,0.585,1.0,0.5333333333333333,0.6666666666666666,1,25 -light,0.8766666666666666,0.9166666666666666,0.9,0.8866666666666667,2,25 -green,0.9266666666666667,0.8166666666666667,1.0,0.8799999999999999,3,24 -bottle,0.93,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6384876543209875 -F1-Score: 0.6811507936507937 -Precision: 0.8939814814814815 -Recall: 0.6072530864197531 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7466666666666666,1.0,0.7,0.7833333333333333,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.6333333333333334,0.85,0.6833333333333332,0.6666666666666666,1,24 -keyboard,0.8166666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -glue,0.7666666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -cup,0.33999999999999997,0.5,0.6,0.52,1,26 -folded,0.6300000000000001,1.0,0.6,0.7166666666666667,1,26 -jam,0.4883333333333333,1.0,0.5166666666666666,0.65,1,26 -black,0.8933333333333333,0.75,1.0,0.8399999999999999,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -soccer,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -hat,0.79,1.0,0.7166666666666666,0.8,1,26 -brown,0.8816666666666666,1.0,0.8333333333333333,0.9,2,25 -coffee,0.615,1.0,0.45,0.6166666666666667,1,25 -handle,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666668,1,25 -food,0.73,1.0,0.6666666666666666,0.7666666666666666,1,25 -towel,0.7233333333333334,1.0,0.5833333333333333,0.7,1,26 -chips,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -stapler,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -onion,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -sponge,0.36833333333333335,1.0,0.38333333333333336,0.55,1,26 -zero,0,0,0,0,1,26 -computer,0.8633333333333335,1.0,0.7833333333333333,0.85,1,25 -special,0.5766666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -colgate,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -leaf,0.8466666666666665,1.0,0.7666666666666666,0.8333333333333333,1,26 -tube,0.7083333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -cell,0.6383333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -mug,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -yogurt,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -plantain,0.44833333333333336,1.0,0.4666666666666666,0.6166666666666667,1,26 -red,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666667,3,27 -pepper,0.7433333333333333,1.0,0.7,0.7833333333333333,1,26 -wheat,0.9333333333333332,1.0,0.9,0.9333333333333332,1,26 -kleenex,0.61,1.0,0.5333333333333333,0.6666666666666667,1,26 -toothbrush,0.6466666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -binder,0.7633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -baseball,0.7216666666666666,1.0,0.6,0.7166666666666667,1,26 -pliers,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -thins,0.8516666666666666,1.0,0.7,0.8,1,26 -package,0.6666666666666667,1.0,0.6,0.7166666666666667,1,26 -k,0.605,1.0,0.55,0.6833333333333333,1,26 -jelly,0.8550000000000001,1.0,0.8333333333333333,0.8833333333333332,1,26 -fruit,0.7916666666666666,0.75,0.9,0.78,2,26 -apple,0.6516666666666666,0.95,0.5499999999999999,0.65,1,25 -bell,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -battery,0.6966666666666667,1.0,0.55,0.6833333333333333,1,26 -jar,0.6983333333333334,1.0,0.5666666666666667,0.7,1,26 -bound,0.6333333333333333,1.0,0.7,0.7833333333333333,1,26 -lettuce,0.635,1.0,0.5833333333333333,0.7,1,26 -brush,0.575,1.0,0.5833333333333333,0.7,1,26 -scissors,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.5083333333333333,1.0,0.5166666666666666,0.65,1,25 -toothpaste,0.5666666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -top,0.6683333333333333,1.0,0.6,0.7166666666666667,1,26 -spiral,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -handles,0.63,1.0,0.65,0.75,1,25 -camera,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -eraser,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666668,1,26 -creamer,0,0,0,0,1,26 -white,0.6666666666666667,0.5183333333333333,1.0,0.6707142857142857,5,21 -banana,0.6633333333333333,1.0,0.5666666666666667,0.7,1,26 -pitcher,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -phone,0.5466666666666666,1.0,0.4,0.5666666666666667,1,26 -stick,0.61,1.0,0.6333333333333333,0.7333333333333333,1,25 -cereal,0.5999999999999999,1.0,0.5833333333333333,0.7,1,26 -bulb,0.9100000000000001,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.8216666666666667,1.0,0.7666666666666666,0.8333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -can,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coca,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -plate,0.7066666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -calculator,0.49833333333333335,0.5,0.6666666666666666,0.5466666666666666,1,26 -tissues,0.6883333333333332,1.0,0.6333333333333332,0.7333333333333333,1,26 -juice,0.5083333333333334,0.5,0.5999999999999999,0.52,1,26 -pink,0.6566666666666667,1.0,0.6,0.7166666666666667,1,25 -lemon,0.9416666666666667,1.0,0.9,0.9333333333333332,1,26 -peach,0.5733333333333334,0.5,0.7666666666666666,0.5800000000000001,1,26 -bowl,0.7833333333333333,1.0,0.7999999999999999,0.85,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -blue,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -used,0.7633333333333333,1.0,0.7166666666666666,0.8,1,24 -energizer,0,0,0,0,1,26 -pear,0.5,1.0,0.4999999999999999,0.6333333333333333,1,26 -ball,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.6900000000000001,1.0,0.5999999999999999,0.7166666666666666,1,26 -garlic,0.655,1.0,0.5166666666666666,0.65,1,26 -cleaning,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -pair,0.85,1.0,0.8333333333333333,0.9,2,26 -container,0.7083333333333333,1.0,0.5666666666666667,0.7,1,25 -tomato,0.6166666666666666,0.95,0.5833333333333333,0.6666666666666667,1,26 -cellphone,0.6183333333333333,1.0,0.5166666666666666,0.65,1,26 -potato,0.7966666666666666,1.0,0.75,0.8166666666666667,1,26 -light,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9016666666666666,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6514351851851854 -F1-Score: 0.6921053791887125 -Precision: 0.8944598765432098 -Recall: 0.6200617283950616 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.805,1.0,0.7,0.7833333333333333,1,24 -yellow,0.8433333333333334,0.6666666666666666,1.0,0.7847619047619048,6,23 -looks,0.5833333333333333,0.65,0.65,0.5733333333333334,1,24 -keyboard,0.73,1.0,0.6499999999999999,0.75,1,26 -glue,0.6100000000000001,1.0,0.4833333333333333,0.6333333333333334,1,26 -milk,0,0,0,0,1,26 -cola,0.6216666666666667,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.7416666666666666,1.0,0.7166666666666666,0.8,1,26 -cup,0.4683333333333334,0.5,0.6666666666666666,0.5466666666666666,1,26 -folded,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -jam,0.6216666666666666,1.0,0.5833333333333333,0.7,1,26 -black,0.8300000000000001,0.6416666666666666,1.0,0.7657142857142857,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5716666666666665,1.0,0.5166666666666666,0.65,1,26 -soccer,0.5433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -hat,0.8,1.0,0.7166666666666666,0.8,1,26 -brown,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -coffee,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -handle,0.6716666666666666,1.0,0.65,0.75,1,26 -food,0.71,1.0,0.6499999999999999,0.75,1,25 -towel,0.5999999999999999,1.0,0.5833333333333333,0.7,1,26 -chips,0.7266666666666667,1.0,0.6333333333333332,0.7333333333333333,1,26 -stapler,0.6933333333333332,1.0,0.7,0.7833333333333333,1,26 -onion,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -bag,0.8066666666666666,1.0,0.65,0.7666666666666667,1,26 -sponge,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -special,0.6666666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -colgate,0.6799999999999999,1.0,0.55,0.6833333333333333,1,26 -leaf,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -tube,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -cell,0.6016666666666666,1.0,0.5166666666666666,0.65,1,26 -mug,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -yogurt,0.6416666666666667,1.0,0.55,0.6833333333333333,1,26 -plantain,0.5166666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -red,0.8366666666666667,0.6333333333333333,1.0,0.7566666666666666,3,25 -pepper,0.4666666666666666,1.0,0.4499999999999999,0.6,1,26 -wheat,0.5549999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -kleenex,0.6166666666666666,1.0,0.5999999999999999,0.7,1,26 -toothbrush,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -binder,0.6666666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -baseball,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -pliers,0.7899999999999999,1.0,0.6333333333333333,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -thins,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -package,0.69,1.0,0.5999999999999999,0.7166666666666666,1,26 -k,0.5266666666666666,1.0,0.5833333333333333,0.7,1,26 -jelly,0.8083333333333332,1.0,0.6833333333333333,0.7833333333333334,1,26 -fruit,0.6783333333333335,0.7333333333333333,0.8333333333333333,0.7466666666666668,2,26 -apple,0.6666666666666667,0.8,0.6333333333333333,0.65,1,25 -bell,0.8466666666666665,1.0,0.7333333333333333,0.8166666666666668,1,26 -battery,0.73,1.0,0.7,0.7833333333333334,1,26 -jar,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -bound,0.5583333333333333,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.8083333333333332,1.0,0.7833333333333333,0.85,1,26 -brush,0.58,1.0,0.5166666666666666,0.65,1,26 -scissors,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -toothpaste,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -top,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -spiral,0.7083333333333333,1.0,0.75,0.8166666666666667,1,26 -handles,0.5966666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.675,1.0,0.6499999999999999,0.75,1,26 -eraser,0.5966666666666667,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,0.7016666666666667,0.6333333333333333,1.0,0.7695238095238095,5,21 -banana,0.5933333333333333,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -phone,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -stick,0.7216666666666667,1.0,0.6499999999999999,0.75,1,25 -cereal,0.51,1.0,0.4999999999999999,0.6333333333333333,1,26 -bulb,0.9016666666666666,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5466666666666666,1.0,0.5833333333333333,0.7,1,26 -can,0.915,1.0,0.8666666666666666,0.9200000000000002,2,26 -coca,0.7383333333333333,1.0,0.65,0.75,1,26 -crackers,0.875,1.0,0.8333333333333333,0.8833333333333332,1,26 -plate,0.4966666666666667,1.0,0.4499999999999999,0.6,1,25 -calculator,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -tissues,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -juice,0.6066666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -pink,0.5483333333333332,0.75,0.5999999999999999,0.5900000000000001,1,25 -lemon,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -peach,0.8150000000000001,1.0,0.6833333333333333,0.7833333333333334,1,26 -bowl,0.7466666666666667,1.0,0.6833333333333332,0.7666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.38333333333333336,1.0,0.4166666666666667,0.5666666666666667,1,26 -blue,0.635,0.95,0.5833333333333333,0.6666666666666666,1,25 -used,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -ball,0.7649999999999999,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -garlic,0.685,1.0,0.5666666666666667,0.7,1,26 -cleaning,0.26666666666666666,0.6,0.5166666666666666,0.5033333333333333,1,26 -pair,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,27 -container,0.5666666666666667,1.0,0.5499999999999999,0.6666666666666666,1,25 -tomato,0.5166666666666666,0.95,0.5666666666666667,0.65,1,26 -cellphone,0.605,1.0,0.5833333333333333,0.7,1,26 -potato,0.6,1.0,0.5666666666666667,0.6833333333333333,1,25 -light,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -green,0.9200000000000002,0.8,1.0,0.8666666666666666,3,24 -bottle,0.9099999999999999,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6365432098765431 -F1-Score: 0.6803703703703703 -Precision: 0.8917438271604937 -Recall: 0.6084876543209875 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7333333333333333,1.0,0.65,0.75,1,24 -yellow,0.9500000000000002,0.8833333333333332,1.0,0.9266666666666667,6,24 -looks,0.6166666666666667,0.95,0.6499999999999999,0.7166666666666667,1,24 -keyboard,0.6966666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -glue,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.53,1.0,0.4666666666666666,0.6166666666666666,1,26 -flashlight,0.6266666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -cup,0.27666666666666667,0.5,0.55,0.5033333333333333,1,26 -folded,0.8166666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -jam,0.5799999999999998,1.0,0.5833333333333333,0.7,1,26 -black,0.8766666666666666,0.7166666666666666,1.0,0.82,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -soccer,0.53,1.0,0.4999999999999999,0.6333333333333333,1,26 -hat,0.735,1.0,0.6166666666666666,0.7333333333333333,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.96,2,24 -coffee,0.5399999999999999,1.0,0.5833333333333333,0.7,1,25 -handle,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -food,0.5416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,24 -towel,0.7933333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -chips,0.6383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -stapler,0.7499999999999999,1.0,0.7333333333333333,0.8,1,26 -onion,0.7,1.0,0.6499999999999999,0.75,1,26 -bag,0.6849999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -sponge,0.755,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.5833333333333333,1.0,0.4999999999999999,0.65,1,25 -special,0.6816666666666668,1.0,0.55,0.6833333333333333,1,26 -colgate,0.4333333333333333,1.0,0.35,0.5166666666666666,1,26 -leaf,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -tube,0.8483333333333334,1.0,0.7,0.8,1,26 -cell,0.89,1.0,0.75,0.8333333333333333,1,26 -mug,0.7666666666666666,1.0,0.7166666666666666,0.8,1,25 -yogurt,0.78,1.0,0.7,0.7833333333333333,1,26 -plantain,0.5766666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -red,0.6533333333333333,0.5650000000000001,1.0,0.687142857142857,3,24 -pepper,0.7966666666666666,1.0,0.6333333333333333,0.75,1,26 -wheat,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -toothbrush,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -binder,0.78,1.0,0.65,0.75,1,26 -baseball,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -pliers,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.8716666666666665,1.0,0.7833333333333333,0.85,1,26 -thins,0.835,1.0,0.7,0.8,1,26 -package,0.3416666666666667,1.0,0.35,0.5166666666666666,1,26 -k,0.685,1.0,0.6,0.7166666666666667,1,26 -jelly,0.4916666666666667,1.0,0.4499999999999999,0.6,1,26 -fruit,0.7183333333333333,0.65,0.8999999999999998,0.7333333333333334,2,25 -apple,0.5516666666666666,0.9,0.5166666666666666,0.6,1,25 -bell,0.6249999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -battery,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -jar,0.61,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.7716666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -lettuce,0.7166666666666666,1.0,0.75,0.8166666666666667,1,26 -brush,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -scissors,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -lime,0.6883333333333334,1.0,0.6166666666666666,0.7333333333333333,1,25 -toothpaste,0.75,1.0,0.7166666666666666,0.8,1,26 -top,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -spiral,0.6666666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -handles,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,25 -camera,0.585,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,0.7983333333333333,0.6166666666666667,1.0,0.758095238095238,5,21 -banana,0.7416666666666667,1.0,0.6,0.7166666666666667,1,26 -pitcher,0.5383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -phone,0.4916666666666667,1.0,0.4,0.5666666666666667,1,26 -stick,0.705,1.0,0.6333333333333332,0.7333333333333333,1,25 -cereal,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -bulb,0.8800000000000001,1.0,0.8666666666666666,0.9199999999999999,2,26 -hair,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6833333333333333,1.0,0.6666666666666666,0.75,1,26 -can,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.7666666666666666,1.0,0.6499999999999999,0.75,1,26 -crackers,0.7983333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -plate,0.78,1.0,0.6333333333333333,0.75,1,25 -calculator,0.4766666666666667,0.5,0.6333333333333333,0.54,1,26 -tissues,0.5716666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -juice,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.7133333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -lemon,0.47333333333333333,1.0,0.3833333333333333,0.55,1,26 -peach,0.675,1.0,0.6833333333333332,0.7666666666666666,1,26 -bowl,0.6216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.505,1.0,0.5666666666666667,0.6833333333333333,1,26 -blue,0.5333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -used,0.7216666666666666,1.0,0.5999999999999999,0.7166666666666666,1,23 -energizer,0,0,0,0,1,26 -pear,0.6416666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -ball,0.6333333333333333,1.0,0.4833333333333333,0.6333333333333333,1,25 -notebook,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -garlic,0.4583333333333333,1.0,0.4833333333333333,0.6166666666666667,1,26 -cleaning,0.6666666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -pair,0.8633333333333333,1.0,0.8333333333333333,0.9,2,27 -container,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666667,1,25 -tomato,0.4800000000000001,0.6,0.6333333333333333,0.5466666666666666,1,26 -cellphone,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -potato,0.805,1.0,0.7666666666666666,0.8333333333333333,1,25 -light,0.8833333333333332,1.0,0.8666666666666668,0.9200000000000002,2,25 -green,0.9133333333333334,0.8,1.0,0.8733333333333333,3,23 -bottle,0.95,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6402623456790124 -F1-Score: 0.6792151675485008 -Precision: 0.8952006172839506 -Recall: 0.6032407407407407 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -yellow,0.9166666666666667,0.8,1.0,0.8733333333333334,6,25 -looks,0.6333333333333333,0.8,0.6666666666666666,0.6666666666666667,1,24 -keyboard,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -glue,0.8233333333333335,1.0,0.6833333333333333,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -flashlight,0.8233333333333333,1.0,0.65,0.7666666666666667,1,26 -cup,0.5583333333333333,0.5,0.6833333333333333,0.5566666666666668,1,26 -folded,0.8466666666666665,1.0,0.7333333333333333,0.8166666666666668,1,26 -jam,0.675,1.0,0.5833333333333333,0.7,1,26 -black,0.905,0.8166666666666667,1.0,0.8866666666666667,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6,1.0,0.5166666666666666,0.65,1,26 -soccer,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -hat,0.7350000000000001,1.0,0.6666666666666666,0.7666666666666667,1,26 -brown,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -coffee,0.695,1.0,0.6166666666666666,0.7333333333333334,1,26 -handle,0.6216666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -food,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -towel,0.735,1.0,0.6166666666666666,0.7333333333333333,1,26 -chips,0.7383333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.725,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.875,1.0,0.8333333333333333,0.8833333333333332,1,26 -bag,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.765,1.0,0.6166666666666666,0.7333333333333334,1,25 -special,0.76,1.0,0.6166666666666666,0.7333333333333334,1,26 -colgate,0.5083333333333334,1.0,0.5499999999999999,0.6666666666666666,1,26 -leaf,0.6399999999999999,1.0,0.55,0.6833333333333333,1,26 -tube,0.6016666666666667,1.0,0.4999999999999999,0.65,1,26 -cell,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -mug,0.6749999999999999,1.0,0.5833333333333333,0.7,1,26 -yogurt,0.765,1.0,0.5833333333333333,0.7166666666666667,1,26 -plantain,0.6016666666666667,1.0,0.5833333333333333,0.7,1,26 -red,0.9299999999999999,0.85,1.0,0.8966666666666667,3,27 -pepper,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -wheat,0.5916666666666667,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -toothbrush,0.525,1.0,0.5499999999999999,0.6666666666666667,1,26 -binder,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -pliers,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -thins,0.4966666666666667,1.0,0.5,0.6333333333333333,1,26 -package,0.5766666666666665,0.9,0.5666666666666667,0.6166666666666667,1,26 -k,0.7216666666666667,1.0,0.6,0.7166666666666666,1,26 -jelly,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.6683333333333332,0.6333333333333332,0.9,0.6833333333333333,2,26 -apple,0.5116666666666666,0.9,0.4666666666666666,0.5833333333333333,1,26 -bell,0.65,1.0,0.5833333333333333,0.7,1,26 -battery,0.6599999999999999,1.0,0.5166666666666666,0.6666666666666667,1,26 -jar,0.78,1.0,0.8166666666666667,0.8666666666666666,1,26 -bound,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -lettuce,0.5466666666666666,1.0,0.5833333333333333,0.7,1,26 -brush,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -scissors,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -lime,0.6833333333333333,1.0,0.6666666666666666,0.75,1,25 -toothpaste,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -top,0.425,1.0,0.4499999999999999,0.6,1,26 -spiral,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -handles,0.605,1.0,0.4666666666666666,0.6166666666666666,1,25 -camera,0.605,1.0,0.5833333333333333,0.7,1,26 -eraser,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.8,0.6916666666666667,1.0,0.8152380952380952,5,21 -banana,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -pitcher,0.6216666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -phone,0.755,1.0,0.65,0.75,1,26 -stick,0.5633333333333334,1.0,0.6166666666666666,0.7166666666666667,1,25 -cereal,0.7333333333333333,1.0,0.7166666666666666,0.8,1,26 -bulb,0.8666666666666666,1.0,0.8666666666666666,0.9199999999999999,2,27 -hair,0.53,1.0,0.5333333333333333,0.6666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -can,0.8099999999999999,1.0,0.7666666666666667,0.8600000000000001,2,25 -coca,0.6983333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -crackers,0.7666666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -plate,0.6266666666666667,1.0,0.5833333333333333,0.7,1,25 -calculator,0.3816666666666667,0.6,0.5833333333333333,0.53,1,26 -tissues,0.7566666666666666,1.0,0.5666666666666667,0.7,1,26 -juice,0.7,1.0,0.6333333333333333,0.7333333333333334,1,26 -pink,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -lemon,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.635,1.0,0.4833333333333333,0.6333333333333333,1,26 -bowl,0.6383333333333333,1.0,0.5166666666666666,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7183333333333334,1.0,0.5666666666666667,0.7,1,26 -blue,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666667,1,25 -used,0.6216666666666667,1.0,0.5999999999999999,0.7166666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.6383333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -ball,0.585,1.0,0.4833333333333333,0.6333333333333333,1,25 -notebook,0.6416666666666666,1.0,0.7,0.7833333333333333,1,26 -garlic,0.6833333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -cleaning,0.73,1.0,0.7,0.7833333333333333,1,26 -pair,0.9166666666666666,1.0,0.9,0.9400000000000001,2,27 -container,0.4916666666666667,1.0,0.5166666666666666,0.65,1,25 -tomato,0.5583333333333333,0.75,0.5999999999999999,0.5833333333333333,1,26 -cellphone,0.6933333333333334,1.0,0.5833333333333333,0.7,1,26 -potato,0.8466666666666665,1.0,0.7333333333333333,0.8166666666666668,1,25 -light,0.8550000000000001,1.0,0.8333333333333333,0.9,2,25 -green,0.86,0.65,1.0,0.7733333333333333,3,23 -bottle,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6508024691358024 -F1-Score: 0.6844003527336859 -Precision: 0.8971450617283951 -Recall: 0.6084876543209877 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,24 -yellow,0.9100000000000001,0.75,1.0,0.8333333333333333,6,24 -looks,0.68,1.0,0.5833333333333333,0.7,1,24 -keyboard,0.7249999999999999,1.0,0.7,0.7833333333333333,1,26 -glue,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.78,1.0,0.75,0.8166666666666667,1,26 -cup,0.22499999999999995,0.4,0.6,0.44333333333333336,1,26 -folded,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.7466666666666666,1.0,0.7166666666666666,0.8,1,26 -black,1.0,1.0,1.0,1.0,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7916666666666666,1.0,0.75,0.8166666666666668,1,26 -soccer,0.7233333333333334,1.0,0.5666666666666667,0.7,1,26 -hat,0.505,1.0,0.5166666666666666,0.65,1,26 -brown,0.9016666666666666,1.0,0.8666666666666668,0.9200000000000002,2,25 -coffee,0.7266666666666667,1.0,0.5999999999999999,0.7166666666666666,1,25 -handle,0.575,1.0,0.5833333333333333,0.7,1,26 -food,0.755,1.0,0.7,0.7833333333333333,1,25 -towel,0.6383333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -chips,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -stapler,0.7316666666666667,1.0,0.5666666666666667,0.7,1,26 -onion,0.4,0.95,0.4833333333333334,0.5833333333333333,1,26 -bag,0.7266666666666667,1.0,0.6,0.7166666666666667,1,26 -sponge,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.4833333333333333,1.0,0.4499999999999999,0.6,1,26 -special,0.9,1.0,0.75,0.8333333333333333,1,26 -colgate,0.635,1.0,0.5333333333333333,0.6666666666666667,1,26 -leaf,0.5516666666666666,1.0,0.5166666666666666,0.65,1,26 -tube,0.805,1.0,0.7166666666666666,0.8,1,26 -cell,0.6766666666666666,1.0,0.6499999999999999,0.75,1,26 -mug,0.4666666666666666,1.0,0.5333333333333332,0.65,1,25 -yogurt,0.5666666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -plantain,0.7266666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.6916666666666667,0.615,1.0,0.7407142857142857,3,25 -pepper,0.4583333333333333,1.0,0.4166666666666667,0.5666666666666667,1,26 -wheat,0.5566666666666666,1.0,0.45,0.6,1,26 -kleenex,0.5166666666666666,1.0,0.4499999999999999,0.6,1,26 -toothbrush,0.775,1.0,0.7166666666666666,0.8,1,26 -binder,0.5333333333333334,1.0,0.4833333333333333,0.6333333333333334,1,26 -baseball,0.7016666666666667,1.0,0.65,0.75,1,26 -pliers,0.74,1.0,0.5999999999999999,0.7166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7350000000000001,1.0,0.6333333333333333,0.75,1,26 -thins,0.7,1.0,0.65,0.75,1,26 -package,0.5583333333333333,1.0,0.4833333333333333,0.6166666666666666,1,26 -k,0.53,1.0,0.5166666666666666,0.65,1,26 -jelly,0.6133333333333334,1.0,0.55,0.6833333333333333,1,26 -fruit,0.7083333333333333,0.6833333333333333,0.8666666666666668,0.7466666666666667,2,27 -apple,0.7466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -bell,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -battery,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -jar,0.5416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -bound,0.69,1.0,0.5499999999999999,0.6833333333333333,1,26 -lettuce,0.73,1.0,0.6499999999999999,0.75,1,26 -brush,0.7683333333333333,1.0,0.65,0.75,1,26 -scissors,0.76,1.0,0.6666666666666666,0.7666666666666666,1,26 -lime,0.5666666666666667,1.0,0.5333333333333333,0.6666666666666666,1,25 -toothpaste,0.6216666666666667,1.0,0.55,0.6833333333333333,1,26 -top,0.6933333333333332,1.0,0.55,0.6833333333333333,1,26 -spiral,0.635,1.0,0.6,0.7166666666666667,1,26 -handles,0.7683333333333333,1.0,0.65,0.75,1,25 -camera,0.58,1.0,0.4999999999999999,0.65,1,26 -eraser,0.4299999999999999,1.0,0.4,0.5666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.7733333333333332,0.6166666666666667,1.0,0.758095238095238,5,21 -banana,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -pitcher,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -phone,0.6166666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -stick,0.7066666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -cereal,0.6749999999999999,1.0,0.7,0.7833333333333333,1,26 -bulb,0.9,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.78,1.0,0.7333333333333333,0.8166666666666667,1,26 -can,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -coca,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -crackers,0.835,1.0,0.7833333333333333,0.85,1,26 -plate,0.5549999999999999,1.0,0.45,0.6,1,25 -calculator,0.76,1.0,0.65,0.75,1,26 -tissues,0.5416666666666666,1.0,0.55,0.6666666666666666,1,26 -juice,0.49333333333333335,1.0,0.4333333333333333,0.5833333333333333,1,26 -pink,0.8466666666666667,1.0,0.8166666666666667,0.8666666666666666,1,25 -lemon,0.6716666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -peach,0.7066666666666667,1.0,0.5833333333333333,0.7,1,26 -bowl,0.6483333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.735,1.0,0.65,0.75,1,26 -blue,0.5633333333333334,0.7,0.6666666666666666,0.6,1,25 -used,0.7716666666666667,1.0,0.6166666666666666,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6083333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -ball,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.825,1.0,0.7333333333333333,0.8166666666666667,1,26 -garlic,0.7333333333333333,1.0,0.7166666666666666,0.8,1,26 -cleaning,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -pair,0.8300000000000001,1.0,0.8,0.8800000000000001,2,27 -container,0.6816666666666668,1.0,0.5666666666666667,0.7,1,25 -tomato,0.5266666666666666,0.65,0.5499999999999999,0.5466666666666667,1,26 -cellphone,0.4833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -potato,0.6916666666666667,1.0,0.6499999999999999,0.75,1,25 -light,0.7566666666666666,0.7,0.8666666666666666,0.7333333333333333,2,27 -green,0.8983333333333334,0.8166666666666667,1.0,0.8866666666666667,3,24 -bottle,0.9349999999999999,1.0,0.8999999999999998,0.9400000000000001,2,27 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6360648148148148 -F1-Score: 0.6775815696649031 -Precision: 0.8970524691358024 -Recall: 0.6001543209876543 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.52,1.0,0.4,0.5666666666666667,1,25 -yellow,0.8666666666666666,0.6833333333333333,1.0,0.7933333333333333,6,25 -looks,0.5166666666666666,1.0,0.4666666666666666,0.6166666666666667,1,24 -keyboard,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -glue,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.8966666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -flashlight,0.6666666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -cup,0.5666666666666667,0.5,0.6666666666666666,0.5466666666666666,1,26 -folded,0.5666666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -jam,0.4499999999999999,1.0,0.5333333333333333,0.65,1,26 -black,0.8550000000000001,0.6583333333333333,1.0,0.779047619047619,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.8166666666666667,1.0,0.75,0.8166666666666667,1,26 -soccer,0.735,1.0,0.65,0.75,1,26 -hat,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -brown,0.905,1.0,0.8666666666666666,0.9199999999999999,2,25 -coffee,0.6599999999999999,1.0,0.5,0.65,1,26 -handle,0.6883333333333332,1.0,0.65,0.75,1,25 -food,0.8,1.0,0.7666666666666666,0.8333333333333334,1,26 -towel,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.78,1.0,0.7166666666666666,0.8,1,26 -stapler,0.655,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.6833333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -bag,0.6916666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -sponge,0.8300000000000001,1.0,0.7833333333333333,0.85,1,26 -zero,0,0,0,0,1,26 -computer,0.6216666666666667,1.0,0.5,0.65,1,25 -special,0.7466666666666667,1.0,0.7166666666666666,0.8,1,26 -colgate,0.41666666666666663,1.0,0.4833333333333332,0.6166666666666666,1,26 -leaf,0.7666666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -tube,0.7049999999999998,1.0,0.5999999999999999,0.7166666666666666,1,26 -cell,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -mug,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -yogurt,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -plantain,0.6633333333333333,1.0,0.5333333333333333,0.6833333333333333,1,26 -red,0.7999999999999999,0.6833333333333333,1.0,0.78,3,25 -pepper,0.7133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.6966666666666667,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.7633333333333333,1.0,0.75,0.8166666666666667,1,26 -toothbrush,0.6583333333333333,1.0,0.5833333333333333,0.7,1,25 -binder,0.4,1.0,0.4833333333333332,0.6166666666666666,1,26 -baseball,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -pliers,0.6683333333333333,1.0,0.55,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -thins,0.625,1.0,0.6,0.7166666666666667,1,26 -package,0.7266666666666667,0.95,0.6499999999999999,0.7166666666666666,1,26 -k,0.65,1.0,0.5499999999999999,0.6833333333333333,1,26 -jelly,0.5416666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -fruit,0.6266666666666667,0.5333333333333333,0.8666666666666666,0.6300000000000001,2,25 -apple,0.53,0.8,0.6666666666666666,0.6166666666666666,1,25 -bell,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -battery,0.755,1.0,0.5833333333333333,0.7166666666666667,1,26 -jar,0.755,1.0,0.6833333333333333,0.7833333333333333,1,26 -bound,0.5616666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -lettuce,0.625,1.0,0.5833333333333333,0.7,1,26 -brush,0.65,1.0,0.5833333333333333,0.7,1,26 -scissors,0.7416666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -lime,0.805,1.0,0.7666666666666666,0.8333333333333333,1,25 -toothpaste,0.5599999999999999,1.0,0.4833333333333333,0.6333333333333334,1,26 -top,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -spiral,0.7166666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -handles,0.6833333333333333,1.0,0.7333333333333333,0.8,1,25 -camera,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -eraser,0.74,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,0.7933333333333332,0.6083333333333333,1.0,0.7504761904761905,5,21 -banana,0.8683333333333334,1.0,0.75,0.8333333333333334,1,26 -pitcher,0.755,1.0,0.7666666666666666,0.8333333333333333,1,26 -phone,0.4833333333333333,1.0,0.5166666666666666,0.65,1,26 -stick,0.6883333333333332,1.0,0.5833333333333333,0.7,1,25 -cereal,0.8883333333333333,1.0,0.8333333333333333,0.8833333333333332,1,26 -bulb,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -hair,0.39166666666666666,1.0,0.38333333333333336,0.55,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666666,1,26 -can,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,24 -coca,0.8550000000000001,1.0,0.7333333333333333,0.8166666666666668,1,26 -crackers,0.7,1.0,0.6333333333333333,0.75,1,26 -plate,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666666,1,25 -calculator,0.4616666666666667,0.55,0.6499999999999999,0.5466666666666666,1,26 -tissues,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -juice,0.71,1.0,0.6499999999999999,0.75,1,26 -pink,0.6466666666666667,1.0,0.6,0.7166666666666667,1,25 -lemon,0.71,1.0,0.7,0.7833333333333333,1,26 -peach,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -bowl,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6266666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -blue,0.8549999999999999,1.0,0.75,0.8333333333333334,1,25 -used,0.4083333333333333,1.0,0.4,0.5666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.6666666666666667,1.0,0.5666666666666667,0.7,1,26 -ball,0.7133333333333334,1.0,0.65,0.75,1,25 -notebook,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -garlic,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -cleaning,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -pair,0.8833333333333332,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.525,1.0,0.5666666666666667,0.6833333333333333,1,26 -tomato,0.7666666666666667,0.85,0.6833333333333333,0.7166666666666667,1,26 -cellphone,0.505,1.0,0.5166666666666666,0.65,1,26 -potato,0.655,1.0,0.6333333333333332,0.7333333333333333,1,25 -light,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,26 -green,0.8733333333333334,0.7083333333333334,1.0,0.8123809523809523,3,22 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6497993827160493 -F1-Score: 0.6872707231040563 -Precision: 0.8937499999999999 -Recall: 0.6160493827160494 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.46333333333333326,1.0,0.4999999999999999,0.6333333333333333,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.7133333333333333,0.9,0.6499999999999999,0.6833333333333333,1,24 -keyboard,0.49833333333333335,1.0,0.4,0.5666666666666667,1,26 -glue,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.7166666666666667,1.0,0.7,0.7833333333333334,1,26 -flashlight,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -cup,0.2866666666666667,0.5,0.5666666666666667,0.5000000000000001,1,26 -folded,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -jam,0.7066666666666667,1.0,0.6499999999999999,0.75,1,26 -black,0.9633333333333333,0.9,1.0,0.9333333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6216666666666666,1.0,0.65,0.75,1,26 -soccer,0.8300000000000001,1.0,0.7166666666666666,0.8,1,26 -hat,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -brown,0.8300000000000001,1.0,0.8,0.8800000000000001,2,24 -coffee,0.7666666666666667,1.0,0.7166666666666666,0.8,1,26 -handle,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -food,0.59,1.0,0.5333333333333333,0.6666666666666667,1,24 -towel,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.8566666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -stapler,0.7083333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -onion,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -bag,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -sponge,0.5233333333333333,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.5349999999999999,1.0,0.4833333333333333,0.6333333333333333,1,25 -special,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -colgate,0.6766666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -leaf,0.8800000000000001,1.0,0.8,0.8666666666666668,1,26 -tube,0.6833333333333333,1.0,0.6666666666666666,0.75,1,26 -cell,0.4116666666666666,0.6,0.5499999999999999,0.5233333333333332,1,26 -mug,0.7933333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -yogurt,0.5516666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -plantain,0.5433333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -red,0.8099999999999999,0.65,1.0,0.76,3,25 -pepper,0.755,1.0,0.7666666666666666,0.8333333333333333,1,26 -wheat,0.575,1.0,0.4833333333333333,0.6333333333333334,1,26 -kleenex,0.5916666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -toothbrush,0.6366666666666666,1.0,0.4999999999999999,0.65,1,26 -binder,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -baseball,0.8066666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -pliers,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8233333333333335,1.0,0.6833333333333333,0.7833333333333333,1,26 -thins,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -package,0.655,1.0,0.7,0.7833333333333333,1,26 -k,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -jelly,0.6433333333333333,1.0,0.55,0.6833333333333333,1,26 -fruit,0.7333333333333333,0.6,0.9,0.6933333333333332,2,25 -apple,0.47833333333333333,0.9,0.4333333333333333,0.5666666666666667,1,25 -bell,0.6333333333333334,1.0,0.6666666666666666,0.75,1,26 -battery,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -jar,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -bound,0.875,1.0,0.8333333333333333,0.8833333333333332,1,26 -lettuce,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -brush,0.705,1.0,0.6499999999999999,0.75,1,26 -scissors,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -lime,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666667,1,25 -toothpaste,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -top,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -spiral,0.675,1.0,0.5999999999999999,0.7166666666666667,1,26 -handles,0.4966666666666666,1.0,0.4499999999999999,0.6,1,25 -camera,0.7633333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -eraser,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -creamer,0,0,0,0,1,26 -white,0.7816666666666667,0.675,1.0,0.8019047619047619,5,21 -banana,0.5,1.0,0.4499999999999999,0.6,1,26 -pitcher,0.6133333333333333,1.0,0.4333333333333333,0.6,1,26 -phone,0.4133333333333333,0.55,0.5833333333333333,0.52,1,26 -stick,0.5999999999999999,1.0,0.5333333333333332,0.6666666666666666,1,25 -cereal,0.775,1.0,0.7666666666666666,0.8333333333333333,1,26 -bulb,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,27 -hair,0.6133333333333333,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6599999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,0.9266666666666665,1.0,0.9,0.9400000000000001,2,25 -coca,0.5483333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -crackers,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -plate,0.6,1.0,0.6166666666666666,0.7166666666666666,1,25 -calculator,0.7383333333333333,0.9,0.7166666666666666,0.7333333333333334,1,26 -tissues,0.6333333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -juice,0.6416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -pink,0.6566666666666666,1.0,0.6,0.7166666666666667,1,25 -lemon,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -peach,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -bowl,0.7466666666666667,1.0,0.6499999999999999,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.755,1.0,0.7166666666666666,0.8,1,26 -blue,0.8133333333333332,1.0,0.7166666666666666,0.8,1,25 -used,0.655,1.0,0.5666666666666667,0.6833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.8666666666666666,1.0,0.7833333333333333,0.85,1,26 -ball,0.5933333333333334,1.0,0.4833333333333333,0.6333333333333333,1,25 -notebook,0.7100000000000001,1.0,0.5833333333333333,0.7166666666666667,1,26 -garlic,0.7233333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -cleaning,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -pair,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -container,0.6933333333333332,1.0,0.5999999999999999,0.7166666666666667,1,25 -tomato,0.5716666666666665,0.85,0.4999999999999999,0.6,1,26 -cellphone,0.5316666666666666,0.5,0.6166666666666666,0.53,1,26 -potato,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -light,0.9,1.0,0.9,0.9400000000000001,2,26 -green,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666665,3,24 -bottle,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,26 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6415895061728397 -F1-Score: 0.6857892416225749 -Precision: 0.8922067901234568 -Recall: 0.6118827160493828 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6683333333333333,1.0,0.5833333333333333,0.7,1,25 -yellow,0.9500000000000002,0.85,1.0,0.8999999999999998,6,24 -looks,0.7,1.0,0.65,0.75,1,24 -keyboard,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -glue,0.71,1.0,0.5333333333333333,0.6666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6216666666666666,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.71,1.0,0.5833333333333333,0.7,1,26 -cup,0.6866666666666666,0.5,0.85,0.6166666666666667,1,25 -folded,0.7466666666666666,1.0,0.7166666666666666,0.8,1,26 -jam,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -black,0.8633333333333333,0.7166666666666666,1.0,0.818095238095238,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6549999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -soccer,0.505,1.0,0.5333333333333333,0.6666666666666667,1,26 -hat,0.5683333333333334,1.0,0.4833333333333333,0.6333333333333334,1,26 -brown,0.8749999999999998,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.7433333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -handle,0.725,1.0,0.6666666666666666,0.7666666666666666,1,25 -food,0.6183333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -towel,0.7100000000000001,1.0,0.5833333333333333,0.7166666666666667,1,26 -chips,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -stapler,0.6249999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -onion,0.6683333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -bag,0.73,1.0,0.6166666666666666,0.7333333333333333,1,26 -sponge,0.76,1.0,0.7,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6983333333333334,1.0,0.5499999999999999,0.6833333333333333,1,25 -special,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -colgate,0.7083333333333333,1.0,0.5833333333333333,0.7,1,26 -leaf,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.75,1.0,0.7,0.7833333333333333,1,26 -cell,0.3816666666666667,0.65,0.5666666666666667,0.53,1,26 -mug,0.7499999999999999,1.0,0.7333333333333333,0.8,1,26 -yogurt,0.5933333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.8550000000000001,1.0,0.8333333333333333,0.8833333333333332,1,26 -red,0.9333333333333333,0.8666666666666666,1.0,0.9100000000000001,3,26 -pepper,0.5383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -wheat,0.5833333333333334,1.0,0.6166666666666666,0.7166666666666667,1,26 -kleenex,0.7833333333333333,1.0,0.7,0.7833333333333333,1,26 -toothbrush,0.5133333333333333,1.0,0.4,0.5666666666666667,1,26 -binder,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -baseball,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -pliers,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.5516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -thins,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -package,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -k,0.6966666666666667,1.0,0.5666666666666667,0.7,1,26 -jelly,0.7666666666666667,1.0,0.7166666666666666,0.8,1,26 -fruit,0.73,0.7666666666666667,0.8333333333333333,0.7466666666666667,2,26 -apple,0.6766666666666665,1.0,0.6,0.7166666666666667,1,25 -bell,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -battery,0.635,1.0,0.4833333333333333,0.6333333333333334,1,26 -jar,0.7549999999999999,1.0,0.7,0.7833333333333333,1,26 -bound,0.505,1.0,0.4,0.5666666666666667,1,26 -lettuce,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -brush,0.5833333333333333,1.0,0.6666666666666666,0.75,1,26 -scissors,0.735,1.0,0.7166666666666666,0.8,1,26 -lime,0.5083333333333334,1.0,0.5499999999999999,0.6666666666666666,1,25 -toothpaste,0.7183333333333334,1.0,0.65,0.75,1,26 -top,0.6233333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -spiral,0.6816666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -handles,0.6933333333333334,1.0,0.6666666666666666,0.7666666666666666,1,25 -camera,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -eraser,0.7466666666666667,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,0.6283333333333333,0.4833333333333333,1.0,0.6347619047619047,5,21 -banana,0.755,1.0,0.7,0.7833333333333333,1,26 -pitcher,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -phone,0.5133333333333334,0.6,0.7166666666666666,0.5833333333333333,1,26 -stick,0.76,1.0,0.6666666666666666,0.7666666666666667,1,25 -cereal,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -bulb,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -hair,0.7333333333333333,1.0,0.7166666666666666,0.8,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coca,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -crackers,0.7133333333333333,1.0,0.65,0.75,1,26 -plate,0.7216666666666666,1.0,0.7,0.7833333333333333,1,25 -calculator,0.4916666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -tissues,0.8533333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -juice,0.8,1.0,0.7499999999999999,0.8166666666666667,1,26 -pink,0.6966666666666667,1.0,0.5833333333333333,0.7,1,25 -lemon,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -peach,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -bowl,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -blue,0.45,1.0,0.4833333333333333,0.6166666666666667,1,25 -used,0.725,1.0,0.6666666666666666,0.7666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.7216666666666666,1.0,0.6499999999999999,0.75,1,26 -ball,0.775,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.63,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.7283333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -pair,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,27 -container,0.7583333333333333,1.0,0.7166666666666666,0.8,1,25 -tomato,0.6583333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -cellphone,0.4116666666666666,0.55,0.5833333333333333,0.52,1,26 -potato,0.8099999999999999,1.0,0.6666666666666666,0.7666666666666666,1,25 -light,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.653996913580247 -F1-Score: 0.6911684303350969 -Precision: 0.8979938271604938 -Recall: 0.6191358024691357 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5383333333333333,1.0,0.5166666666666666,0.65,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.5133333333333333,1.0,0.5166666666666666,0.65,1,24 -keyboard,0.605,1.0,0.5833333333333333,0.7,1,26 -glue,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -flashlight,0.59,1.0,0.4666666666666666,0.6166666666666666,1,26 -cup,0.6066666666666667,0.5,0.7333333333333333,0.5733333333333334,1,26 -folded,0.5916666666666666,1.0,0.5166666666666666,0.65,1,26 -jam,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.885,0.7583333333333333,1.0,0.8457142857142858,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.5833333333333333,1.0,0.5999999999999999,0.7,1,26 -soccer,0.775,1.0,0.6333333333333333,0.75,1,26 -hat,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,24 -coffee,0.615,1.0,0.5999999999999999,0.7166666666666666,1,25 -handle,0.7216666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -food,0.825,1.0,0.7333333333333333,0.8166666666666668,1,24 -towel,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -chips,0.7016666666666665,1.0,0.5666666666666667,0.7,1,26 -stapler,0.9333333333333332,1.0,0.9,0.9333333333333332,1,26 -onion,0.6083333333333333,1.0,0.5166666666666666,0.65,1,26 -bag,0.6183333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -sponge,0.7416666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.61,1.0,0.5666666666666667,0.6833333333333333,1,25 -special,0.6933333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -colgate,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -leaf,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.725,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.6066666666666667,0.55,0.7833333333333333,0.6,1,26 -mug,0.6916666666666667,1.0,0.6166666666666666,0.7166666666666666,1,25 -yogurt,0.8299999999999998,1.0,0.7666666666666666,0.8333333333333333,1,26 -plantain,0.4916666666666666,1.0,0.5166666666666666,0.65,1,26 -red,0.9233333333333335,0.8166666666666667,1.0,0.8799999999999999,3,26 -pepper,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -wheat,0.7166666666666667,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -toothbrush,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -binder,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -baseball,0.5683333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -pliers,0.9083333333333332,1.0,0.8833333333333332,0.9166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6716666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -thins,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -package,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -k,0.7716666666666667,1.0,0.6333333333333333,0.75,1,26 -jelly,0.7649999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -fruit,0.8550000000000001,0.9166666666666666,0.8666666666666666,0.8666666666666668,2,25 -apple,0.8133333333333332,1.0,0.7833333333333333,0.85,1,25 -bell,0.5933333333333334,1.0,0.5,0.65,1,26 -battery,0.705,1.0,0.5833333333333333,0.7,1,26 -jar,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -bound,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -lettuce,0.765,1.0,0.6166666666666666,0.7333333333333334,1,26 -brush,0.7166666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -scissors,0.5349999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -lime,0.5166666666666667,1.0,0.6166666666666666,0.7166666666666667,1,25 -toothpaste,0.575,1.0,0.5833333333333333,0.7,1,26 -top,0.6683333333333332,1.0,0.65,0.75,1,26 -spiral,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -handles,0.4716666666666667,1.0,0.5166666666666666,0.65,1,25 -camera,0.7466666666666667,1.0,0.7166666666666666,0.8,1,26 -eraser,0.6133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.7933333333333333,0.6833333333333333,1.0,0.8095238095238095,5,20 -banana,0.85,1.0,0.7833333333333333,0.85,1,26 -pitcher,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -phone,0.55,0.5,0.7333333333333333,0.5733333333333335,1,26 -stick,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,25 -cereal,0.75,1.0,0.75,0.8166666666666667,1,26 -bulb,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -hair,0.64,1.0,0.5333333333333333,0.6666666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coca,0.58,1.0,0.4666666666666666,0.6166666666666667,1,26 -crackers,0.7383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.5633333333333332,1.0,0.4999999999999999,0.6333333333333333,1,25 -calculator,0.35,0.85,0.4999999999999999,0.5566666666666666,1,26 -tissues,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -juice,0.74,1.0,0.5666666666666667,0.7,1,26 -pink,0.7183333333333334,1.0,0.5833333333333333,0.7,1,25 -lemon,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -peach,0.8083333333333332,1.0,0.7833333333333333,0.85,1,26 -bowl,0.4966666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8616666666666667,1.0,0.7,0.8,1,26 -blue,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666667,1,25 -used,0.7849999999999999,1.0,0.6499999999999999,0.75,1,23 -energizer,0,0,0,0,1,26 -pear,0.5083333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -ball,0.6749999999999999,1.0,0.6333333333333332,0.7333333333333333,1,25 -notebook,0.5266666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -garlic,0.5433333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -cleaning,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -pair,0.8550000000000001,1.0,0.8333333333333333,0.9,2,26 -container,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -tomato,0.37333333333333335,0.9,0.4166666666666667,0.5166666666666666,1,26 -cellphone,0.43499999999999994,0.55,0.6,0.53,1,26 -potato,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,24 -bottle,0.8933333333333333,1.0,0.8666666666666666,0.9199999999999999,2,26 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.650246913580247 -F1-Score: 0.6896781305114638 -Precision: 0.8969907407407409 -Recall: 0.6158950617283949 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5349999999999999,1.0,0.5333333333333333,0.6666666666666667,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.5583333333333333,0.9,0.5833333333333333,0.6333333333333333,1,24 -keyboard,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -glue,0.86,1.0,0.7833333333333333,0.85,1,26 -milk,0,0,0,0,1,26 -cola,0.7216666666666666,1.0,0.6499999999999999,0.75,1,26 -flashlight,0.805,1.0,0.7166666666666666,0.8,1,26 -cup,0.225,0.5,0.5166666666666666,0.4833333333333334,1,26 -folded,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -jam,0.51,1.0,0.4833333333333333,0.6333333333333333,1,26 -black,0.8316666666666667,0.6666666666666667,1.0,0.7914285714285714,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6233333333333333,1.0,0.5833333333333333,0.7,1,26 -soccer,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -hat,0.7716666666666667,1.0,0.6499999999999999,0.75,1,26 -brown,0.925,1.0,0.9,0.9400000000000001,2,25 -coffee,0.7433333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -handle,0.7916666666666666,1.0,0.7166666666666666,0.8,1,25 -food,0.5883333333333333,1.0,0.4333333333333333,0.6,1,25 -towel,0.5083333333333333,1.0,0.5166666666666666,0.65,1,26 -chips,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.5183333333333333,1.0,0.5166666666666666,0.65,1,26 -onion,0.4833333333333333,1.0,0.55,0.6666666666666667,1,26 -bag,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -sponge,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6833333333333333,1.0,0.6333333333333332,0.7333333333333333,1,25 -special,0.6133333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -colgate,0.8716666666666667,1.0,0.75,0.8333333333333333,1,26 -leaf,0.6766666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -tube,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.48,0.55,0.5666666666666667,0.5233333333333332,1,26 -mug,0.7,1.0,0.65,0.75,1,26 -yogurt,0.6433333333333333,1.0,0.4999999999999999,0.65,1,26 -plantain,0.4083333333333333,1.0,0.5166666666666666,0.65,1,26 -red,0.8466666666666667,0.7249999999999999,1.0,0.8157142857142856,3,24 -pepper,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -wheat,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.7916666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -toothbrush,0.675,1.0,0.6166666666666666,0.7333333333333334,1,26 -binder,0.6816666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -baseball,0.8466666666666665,1.0,0.7833333333333333,0.85,1,26 -pliers,0.6016666666666667,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -thins,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -package,0.6699999999999999,1.0,0.5,0.65,1,26 -k,0.85,1.0,0.8666666666666666,0.9,1,26 -jelly,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -fruit,0.7033333333333334,0.7333333333333333,0.8,0.7166666666666666,2,25 -apple,0.6966666666666667,1.0,0.65,0.75,1,25 -bell,0.7066666666666667,1.0,0.65,0.75,1,26 -battery,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -jar,0.6966666666666667,1.0,0.65,0.75,1,26 -bound,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -lettuce,0.725,1.0,0.75,0.8166666666666667,1,26 -brush,0.5183333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -scissors,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -lime,0.6966666666666667,1.0,0.5166666666666666,0.6666666666666667,1,25 -toothpaste,0.65,1.0,0.6833333333333333,0.7666666666666666,1,26 -top,0.725,1.0,0.6833333333333333,0.7666666666666666,1,26 -spiral,0.7633333333333334,1.0,0.7166666666666666,0.8,1,26 -handles,0.6016666666666667,1.0,0.4833333333333333,0.6333333333333333,1,25 -camera,0.5083333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -eraser,0.6466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.79,0.675,1.0,0.8019047619047619,5,21 -banana,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -pitcher,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -phone,0.3416666666666667,0.55,0.5333333333333332,0.5033333333333333,1,26 -stick,0.8466666666666667,1.0,0.7833333333333333,0.85,1,25 -cereal,0.5333333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -bulb,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.45,1.0,0.4999999999999999,0.6333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.715,1.0,0.5666666666666667,0.7,1,26 -can,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,25 -coca,0.5583333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -crackers,0.6883333333333334,1.0,0.6,0.7166666666666667,1,26 -plate,0.3883333333333333,1.0,0.4666666666666666,0.6166666666666667,1,25 -calculator,0.5549999999999999,0.95,0.5333333333333333,0.6333333333333334,1,26 -tissues,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -juice,0.655,1.0,0.6,0.7166666666666667,1,26 -pink,0.605,1.0,0.5833333333333333,0.7,1,25 -lemon,0.4883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -peach,0.655,1.0,0.7,0.7833333333333333,1,26 -bowl,0.71,1.0,0.5999999999999999,0.7166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -blue,0.7916666666666666,1.0,0.7166666666666666,0.8,1,25 -used,0.7666666666666666,1.0,0.8,0.85,1,24 -energizer,0,0,0,0,1,26 -pear,0.7583333333333333,1.0,0.6333333333333333,0.75,1,26 -ball,0.605,1.0,0.6,0.7166666666666667,1,25 -notebook,0.755,1.0,0.6499999999999999,0.75,1,26 -garlic,0.7016666666666667,1.0,0.5666666666666667,0.7,1,26 -cleaning,0.615,1.0,0.5333333333333333,0.6666666666666666,1,26 -pair,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -container,0.73,1.0,0.5833333333333333,0.7166666666666667,1,25 -tomato,0.59,0.85,0.5833333333333333,0.6166666666666666,1,26 -cellphone,0.495,0.55,0.6166666666666666,0.54,1,26 -potato,0.86,1.0,0.7333333333333333,0.8166666666666668,1,25 -light,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -green,0.9633333333333335,0.9,1.0,0.9333333333333332,3,22 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6411111111111112 -F1-Score: 0.6846208112874778 -Precision: 0.8935185185185185 -Recall: 0.6087962962962963 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6183333333333334,1.0,0.5,0.65,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.5399999999999999,0.9,0.5166666666666666,0.5833333333333333,1,24 -keyboard,0.47166666666666657,1.0,0.4333333333333333,0.5833333333333333,1,26 -glue,0.7983333333333333,1.0,0.6333333333333333,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.75,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.75,1.0,0.6833333333333333,0.7666666666666667,1,26 -cup,0.2566666666666667,0.5,0.5333333333333333,0.49333333333333335,1,26 -folded,0.6883333333333332,1.0,0.5666666666666667,0.7,1,26 -jam,0.665,1.0,0.5,0.65,1,26 -black,1.0,1.0,1.0,1.0,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6583333333333333,1.0,0.65,0.75,1,26 -soccer,0.63,1.0,0.5499999999999999,0.6833333333333333,1,26 -hat,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -brown,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.6816666666666666,1.0,0.4999999999999999,0.65,1,26 -handle,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -food,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -towel,0.7150000000000001,1.0,0.6,0.7166666666666667,1,26 -chips,0.4916666666666666,1.0,0.5166666666666666,0.65,1,26 -stapler,0.64,1.0,0.5166666666666666,0.6666666666666666,1,26 -onion,0.5633333333333332,1.0,0.6166666666666666,0.7166666666666666,1,26 -bag,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.5233333333333333,1.0,0.4499999999999999,0.6,1,26 -zero,0,0,0,0,1,26 -computer,0.7516666666666667,1.0,0.6,0.7166666666666666,1,25 -special,0.655,1.0,0.6,0.7166666666666667,1,26 -colgate,0.5766666666666667,1.0,0.4499999999999999,0.6,1,26 -leaf,0.5133333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -tube,0.625,1.0,0.5833333333333333,0.7,1,26 -cell,0.3166666666666667,0.65,0.5166666666666666,0.5133333333333334,1,26 -mug,0.93,1.0,0.85,0.8999999999999998,1,26 -yogurt,0.635,1.0,0.5166666666666666,0.65,1,26 -plantain,0.6133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -red,0.89,0.75,1.0,0.8300000000000001,3,25 -pepper,0.7016666666666665,1.0,0.5999999999999999,0.7166666666666667,1,26 -wheat,0.6583333333333332,1.0,0.6333333333333332,0.7333333333333333,1,26 -kleenex,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -binder,0.8966666666666667,1.0,0.8,0.8666666666666666,1,26 -baseball,0.505,1.0,0.5166666666666666,0.65,1,26 -pliers,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -thins,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -package,0.8700000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -k,0.605,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.5233333333333333,1.0,0.45,0.6,1,26 -fruit,0.8033333333333333,0.75,0.8999999999999998,0.7866666666666667,2,25 -apple,0.6183333333333333,1.0,0.4666666666666666,0.6166666666666667,1,25 -bell,0.73,1.0,0.75,0.8166666666666667,1,26 -battery,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -jar,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -bound,0.6766666666666665,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -brush,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -scissors,0.8666666666666666,1.0,0.8833333333333332,0.9166666666666666,1,26 -lime,0.8083333333333332,1.0,0.7,0.8,1,25 -toothpaste,0.755,1.0,0.7666666666666666,0.8333333333333333,1,26 -top,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -spiral,0.875,1.0,0.8166666666666667,0.8666666666666666,1,26 -handles,0.7416666666666666,1.0,0.7,0.7833333333333333,1,25 -camera,0.5833333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.7516666666666667,0.6166666666666667,1.0,0.7528571428571428,5,21 -banana,0.615,1.0,0.5,0.65,1,26 -pitcher,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -phone,0.45499999999999996,0.5,0.6499999999999999,0.5366666666666667,1,26 -stick,0.6649999999999999,1.0,0.4833333333333333,0.6333333333333333,1,25 -cereal,0.8166666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -bulb,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,27 -hair,0.5583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6466666666666666,1.0,0.55,0.6833333333333333,1,26 -can,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -coca,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -crackers,0.86,1.0,0.7833333333333333,0.85,1,26 -plate,0.755,1.0,0.6833333333333333,0.7833333333333334,1,25 -calculator,0.6716666666666666,0.95,0.6333333333333333,0.7,1,26 -tissues,0.7316666666666667,1.0,0.5666666666666667,0.7,1,26 -juice,0.6883333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -pink,0.38499999999999995,0.55,0.4833333333333333,0.4866666666666667,1,25 -lemon,0.5216666666666667,1.0,0.5833333333333333,0.7,1,26 -peach,0.6966666666666667,1.0,0.65,0.75,1,26 -bowl,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5733333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -blue,0.76,1.0,0.7,0.7833333333333333,1,25 -used,0.6733333333333332,1.0,0.6,0.7166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.8666666666666666,1.0,0.8,0.8666666666666666,1,26 -ball,0.475,1.0,0.4833333333333333,0.6166666666666666,1,25 -notebook,0.6,1.0,0.55,0.6833333333333333,1,26 -garlic,0.63,1.0,0.5333333333333333,0.6666666666666666,1,26 -cleaning,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -pair,0.9099999999999999,1.0,0.8666666666666666,0.9199999999999999,2,26 -container,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -tomato,0.76,0.85,0.8,0.75,1,26 -cellphone,0.44833333333333336,0.6,0.5833333333333333,0.53,1,26 -potato,0.5466666666666666,1.0,0.5,0.6333333333333334,1,25 -light,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -green,0.9800000000000001,0.95,1.0,0.9666666666666666,3,22 -bottle,0.8749999999999998,1.0,0.8666666666666666,0.9200000000000002,2,27 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6517438271604937 -F1-Score: 0.688452380952381 -Precision: 0.8936728395061728 -Recall: 0.6138888888888887 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6416666666666667,1.0,0.5166666666666666,0.65,1,24 -yellow,0.8966666666666667,0.7666666666666666,1.0,0.8533333333333335,6,24 -looks,0.505,0.95,0.5333333333333333,0.6333333333333333,1,24 -keyboard,0.7416666666666667,1.0,0.6,0.7166666666666667,1,26 -glue,0.4833333333333333,1.0,0.5333333333333333,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -cup,0.45499999999999996,0.45,0.6166666666666666,0.49333333333333335,1,26 -folded,0.7816666666666666,1.0,0.6333333333333333,0.75,1,26 -jam,0.6466666666666667,1.0,0.4833333333333332,0.6333333333333333,1,26 -black,0.8816666666666668,0.7666666666666667,1.0,0.8514285714285714,6,22 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -soccer,0.9166666666666666,1.0,0.8833333333333332,0.9166666666666666,1,26 -hat,0.8,1.0,0.7166666666666666,0.8,1,26 -brown,0.8933333333333333,1.0,0.8666666666666668,0.9200000000000002,2,24 -coffee,0.5016666666666667,1.0,0.5166666666666666,0.65,1,25 -handle,0.525,1.0,0.5666666666666667,0.6833333333333333,1,26 -food,0.7633333333333333,1.0,0.5833333333333333,0.7166666666666667,1,25 -towel,0.7916666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -chips,0.8,1.0,0.75,0.8166666666666668,1,26 -stapler,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -onion,0.76,1.0,0.7,0.7833333333333333,1,26 -bag,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -sponge,0.6883333333333332,1.0,0.6333333333333332,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.755,1.0,0.7666666666666666,0.8333333333333333,1,25 -special,0.63,1.0,0.5333333333333333,0.6666666666666667,1,26 -colgate,0.6666666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -leaf,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -tube,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333334,1,26 -cell,0.7249999999999999,1.0,0.7,0.7833333333333333,1,26 -mug,0.8800000000000001,1.0,0.7833333333333333,0.85,1,25 -yogurt,0.6100000000000001,1.0,0.4333333333333333,0.6,1,26 -plantain,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -red,0.6,0.4733333333333333,1.0,0.5928571428571427,3,26 -pepper,0.6616666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -wheat,0.5583333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -kleenex,0.39666666666666667,1.0,0.4499999999999999,0.6,1,26 -toothbrush,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -binder,0.6416666666666667,1.0,0.65,0.75,1,26 -baseball,0.7499999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -pliers,0.5716666666666665,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.55,1.0,0.5166666666666666,0.65,1,26 -thins,0.63,1.0,0.5833333333333333,0.7,1,26 -package,0.6016666666666667,1.0,0.55,0.6833333333333333,1,26 -k,0.63,1.0,0.5833333333333333,0.7,1,26 -jelly,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -fruit,0.6316666666666666,0.5666666666666667,0.8333333333333333,0.6466666666666667,2,25 -apple,0.6183333333333334,0.95,0.5333333333333332,0.6333333333333333,1,25 -bell,0.6716666666666666,1.0,0.65,0.75,1,26 -battery,0.71,1.0,0.6,0.7166666666666666,1,26 -jar,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -bound,0.6683333333333332,1.0,0.5666666666666667,0.7,1,26 -lettuce,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -brush,0.725,1.0,0.6,0.7166666666666666,1,26 -scissors,0.63,1.0,0.5333333333333333,0.6666666666666667,1,26 -lime,0.7466666666666666,1.0,0.7,0.7833333333333333,1,25 -toothpaste,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.7949999999999999,1.0,0.6333333333333333,0.75,1,26 -handles,0.8233333333333333,1.0,0.6833333333333333,0.7833333333333334,1,25 -camera,0.825,1.0,0.7333333333333333,0.8166666666666667,1,26 -eraser,0.7,1.0,0.6833333333333333,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.8,0.7,1.0,0.8209523809523809,5,20 -banana,0.7,1.0,0.65,0.75,1,26 -pitcher,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -phone,0.625,1.0,0.6,0.7166666666666667,1,26 -stick,0.75,1.0,0.7,0.7833333333333333,1,25 -cereal,0.715,1.0,0.6166666666666666,0.7333333333333333,1,26 -bulb,0.8766666666666666,1.0,0.8333333333333333,0.9,2,27 -hair,0.5349999999999999,1.0,0.5166666666666666,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.735,1.0,0.6,0.7166666666666667,1,26 -can,0.9099999999999999,1.0,0.8666666666666666,0.9199999999999999,2,25 -coca,0.625,1.0,0.6833333333333333,0.7666666666666667,1,26 -crackers,0.7383333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -plate,0.5833333333333333,1.0,0.5833333333333333,0.7,1,25 -calculator,0.5783333333333334,0.75,0.6166666666666666,0.6,1,26 -tissues,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -juice,0.6683333333333332,1.0,0.55,0.6833333333333333,1,26 -pink,0.685,1.0,0.55,0.6833333333333333,1,25 -lemon,0.7816666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -peach,0.63,1.0,0.55,0.6833333333333333,1,26 -bowl,0.7133333333333333,1.0,0.65,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5666666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -blue,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,25 -used,0.53,1.0,0.5333333333333333,0.6666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.7433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.5666666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -garlic,0.6966666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -cleaning,0.6566666666666666,1.0,0.5833333333333333,0.7,1,26 -pair,0.9550000000000001,1.0,0.9333333333333332,0.96,2,27 -container,0.7833333333333333,1.0,0.7,0.7833333333333333,1,25 -tomato,0.6033333333333333,0.6,0.7166666666666666,0.5900000000000001,1,26 -cellphone,0.6333333333333333,1.0,0.7,0.7833333333333333,1,26 -potato,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,25 -light,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -green,0.9133333333333334,0.85,1.0,0.9114285714285716,3,23 -bottle,0.93,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6520987654320988 -F1-Score: 0.6870987654320987 -Precision: 0.8965123456790123 -Recall: 0.6141975308641975 diff --git a/Validation/UW_raw_75_object_0.30000000000000004.csv b/Validation/UW_raw_75_object_0.30000000000000004.csv deleted file mode 100644 index b5c6257..0000000 --- a/Validation/UW_raw_75_object_0.30000000000000004.csv +++ /dev/null @@ -1,2875 +0,0 @@ -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,24 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.8716666666666667,1.0,0.7833333333333333,0.85,1,24 -keyboard,0.65,1.0,0.6333333333333333,0.7333333333333334,1,26 -glue,0.6849999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -flashlight,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.24333333333333335,0.45,0.5333333333333333,0.45,1,26 -folded,0.5766666666666667,1.0,0.4999999999999999,0.65,1,26 -jam,0.755,1.0,0.6499999999999999,0.75,1,26 -black,0.95,0.9166666666666666,1.0,0.9514285714285714,6,23 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.575,1.0,0.5333333333333333,0.6666666666666667,1,26 -soccer,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -hat,0.4499999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -brown,0.93,1.0,0.8999999999999998,0.9400000000000001,2,25 -coffee,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -handle,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -food,0.825,1.0,0.8166666666666667,0.8666666666666666,1,25 -towel,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -chips,0.4833333333333333,1.0,0.4833333333333333,0.6166666666666667,1,26 -stapler,0.6833333333333333,1.0,0.7333333333333333,0.8,1,26 -onion,0.775,1.0,0.7,0.7833333333333333,1,26 -bag,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -sponge,0.5666666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.725,1.0,0.6166666666666666,0.7333333333333333,1,25 -special,0.8383333333333333,1.0,0.7,0.8,1,26 -colgate,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -leaf,0.575,1.0,0.5333333333333332,0.6666666666666666,1,26 -tube,0.7633333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -cell,0.73,1.0,0.6499999999999999,0.75,1,26 -mug,0.6833333333333333,1.0,0.6499999999999999,0.75,1,25 -yogurt,0.7216666666666667,1.0,0.6,0.7166666666666667,1,26 -plantain,0.6966666666666667,1.0,0.65,0.75,1,26 -red,0.9633333333333333,0.9,1.0,0.9333333333333332,3,26 -pepper,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -wheat,0.74,1.0,0.5666666666666667,0.7,1,26 -kleenex,0.5166666666666666,1.0,0.5999999999999999,0.7,1,26 -toothbrush,0.7,1.0,0.6666666666666666,0.75,1,26 -binder,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -baseball,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -pliers,0.905,1.0,0.8,0.8666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,28 -water,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -thins,0.5766666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -package,0.6049999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.6166666666666667,1.0,0.6166666666666666,0.7166666666666667,1,26 -fruit,0.7583333333333333,0.6666666666666667,0.9,0.7333333333333333,2,27 -apple,0.6916666666666667,0.9,0.7,0.7166666666666667,1,25 -bell,0.5933333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -battery,0.65,1.0,0.6499999999999999,0.75,1,26 -jar,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -bound,0.725,1.0,0.6166666666666666,0.7333333333333333,1,26 -lettuce,0.825,1.0,0.7333333333333333,0.8166666666666667,1,26 -brush,0.675,1.0,0.7,0.7833333333333333,1,26 -scissors,0.7633333333333333,1.0,0.6499999999999999,0.75,1,26 -lime,0.675,1.0,0.6333333333333333,0.7333333333333334,1,25 -toothpaste,0.3883333333333333,1.0,0.38333333333333336,0.55,1,26 -top,0.6733333333333333,1.0,0.5833333333333333,0.7,1,26 -spiral,0.775,1.0,0.7666666666666666,0.8333333333333333,1,26 -handles,0.605,1.0,0.5166666666666666,0.65,1,25 -camera,0.5133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -eraser,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,0.9066666666666668,0.7916666666666666,1.0,0.8657142857142859,5,21 -banana,0.65,1.0,0.55,0.6833333333333333,1,26 -pitcher,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -phone,0.7066666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -stick,0.8400000000000001,1.0,0.7166666666666666,0.8,1,25 -cereal,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -bulb,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -hair,0.6883333333333334,1.0,0.5833333333333333,0.7,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6016666666666667,1.0,0.5,0.65,1,26 -can,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.6416666666666666,1.0,0.6499999999999999,0.75,1,26 -crackers,0.805,1.0,0.7333333333333333,0.8166666666666667,1,26 -plate,0.5583333333333332,1.0,0.5499999999999999,0.6666666666666666,1,25 -calculator,0.7533333333333333,0.8,0.7333333333333333,0.7,1,26 -tissues,0.6683333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -juice,0.7916666666666667,1.0,0.65,0.7666666666666667,1,26 -pink,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -lemon,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -peach,0.7266666666666667,1.0,0.6,0.7166666666666667,1,26 -bowl,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6533333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -blue,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666667,1,25 -used,0.735,1.0,0.6666666666666666,0.7666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.43,1.0,0.45,0.6,1,26 -ball,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -notebook,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -garlic,0.5483333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -cleaning,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -pair,0.96,1.0,0.9333333333333332,0.96,2,27 -container,0.6216666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -tomato,0.44833333333333336,0.75,0.5333333333333333,0.55,1,26 -cellphone,0.7083333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -potato,0.6966666666666667,1.0,0.5833333333333333,0.7,1,25 -light,0.8283333333333334,1.0,0.7666666666666667,0.86,2,27 -green,0.9466666666666669,0.8666666666666666,1.0,0.9133333333333333,3,25 -bottle,0.95,1.0,0.9333333333333332,0.96,2,27 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.6572685185185186 -F1-Score: 0.6955599647266314 -Precision: 0.9077932098765431 -Recall: 0.6162037037037037 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7333333333333333,1.0,0.6333333333333333,0.7333333333333334,1,25 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,25 -looks,0.56,0.9,0.4833333333333333,0.5833333333333333,1,24 -keyboard,0.6933333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -glue,0.45499999999999996,1.0,0.41666666666666663,0.5833333333333334,1,26 -milk,0,0,0,0,1,26 -cola,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -flashlight,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.5116666666666666,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.5416666666666667,1.0,0.5166666666666666,0.65,1,26 -jam,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -black,0.8216666666666667,0.6583333333333333,1.0,0.7838095238095237,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -soccer,0.6,1.0,0.5333333333333333,0.6666666666666667,1,26 -hat,0.355,1.0,0.4499999999999999,0.6,1,26 -brown,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,24 -coffee,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -handle,0.5,1.0,0.5666666666666667,0.6833333333333333,1,26 -food,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -towel,0.7249999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -chips,0.48,1.0,0.38333333333333336,0.55,1,26 -stapler,0.5966666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -onion,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -sponge,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -zero,0,0,0,0,1,26 -computer,0.61,1.0,0.4833333333333332,0.6333333333333333,1,25 -special,0.675,1.0,0.65,0.75,1,26 -colgate,0.78,1.0,0.7,0.7833333333333333,1,26 -leaf,0.6533333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -tube,0.8966666666666667,1.0,0.8,0.8666666666666666,1,26 -cell,0.7383333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -mug,0.6,1.0,0.5499999999999999,0.6833333333333333,1,26 -yogurt,0.75,1.0,0.7,0.7833333333333333,1,26 -plantain,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -red,0.9333333333333333,0.85,1.0,0.9066666666666666,3,26 -pepper,0.48,1.0,0.4,0.5666666666666667,1,26 -wheat,0.5399999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -kleenex,0.635,1.0,0.4999999999999999,0.65,1,26 -toothbrush,0.7633333333333334,1.0,0.7166666666666666,0.8,1,25 -binder,0.5683333333333332,1.0,0.5166666666666666,0.65,1,26 -baseball,0.715,1.0,0.5666666666666667,0.7,1,26 -pliers,0.5633333333333332,1.0,0.6166666666666666,0.7166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6649999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -thins,0.6633333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -package,0.7716666666666666,0.95,0.6666666666666666,0.7333333333333333,1,26 -k,0.6466666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -jelly,0.7633333333333333,1.0,0.6333333333333333,0.75,1,26 -fruit,0.8083333333333333,0.75,0.9,0.7866666666666667,2,27 -apple,0.6433333333333333,0.9,0.5833333333333333,0.6333333333333333,1,25 -bell,0.705,1.0,0.65,0.75,1,26 -battery,0.7466666666666666,1.0,0.7,0.7833333333333333,1,26 -jar,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -bound,0.71,1.0,0.5999999999999999,0.7166666666666667,1,26 -lettuce,0.7583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -brush,0.3883333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -scissors,0.6900000000000001,1.0,0.65,0.75,1,26 -lime,0.7049999999999998,1.0,0.5999999999999999,0.7166666666666667,1,25 -toothpaste,0.6583333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -top,0.86,1.0,0.8333333333333333,0.8833333333333332,1,26 -spiral,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -handles,0.5883333333333333,1.0,0.5833333333333333,0.7,1,25 -camera,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -eraser,0.8233333333333333,1.0,0.7166666666666666,0.8,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.6383333333333334,1.0,0.5166666666666666,0.6666666666666667,1,26 -pitcher,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -phone,0.7333333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -stick,0.63,1.0,0.6166666666666666,0.7166666666666666,1,25 -cereal,0.755,1.0,0.6333333333333333,0.75,1,26 -bulb,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,28 -hair,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.4583333333333333,1.0,0.4833333333333334,0.6166666666666666,1,26 -can,0.7833333333333333,1.0,0.7666666666666667,0.86,2,24 -coca,0.71,1.0,0.5833333333333333,0.7,1,26 -crackers,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.8933333333333333,1.0,0.8,0.8666666666666666,1,25 -calculator,0.4033333333333333,0.6,0.5833333333333333,0.53,1,26 -tissues,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -juice,0.5966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -pink,0.8666666666666666,1.0,0.7833333333333333,0.85,1,25 -lemon,0.6900000000000001,1.0,0.5999999999999999,0.7166666666666666,1,26 -peach,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.7166666666666666,1.0,0.7333333333333333,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.9099999999999999,1.0,0.8333333333333333,0.8833333333333332,1,26 -blue,0.7366666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -used,0.6166666666666666,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.775,1.0,0.7,0.7833333333333333,1,26 -ball,0.5966666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.6933333333333332,1.0,0.5666666666666667,0.7,1,26 -garlic,0.73,1.0,0.6499999999999999,0.75,1,26 -cleaning,0.6566666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -pair,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -container,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,25 -tomato,0.6399999999999999,0.6,0.75,0.5900000000000001,1,26 -cellphone,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -potato,0.6216666666666667,1.0,0.5999999999999999,0.7166666666666667,1,25 -light,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -green,0.9333333333333333,0.8,1.0,0.8666666666666666,3,24 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.6484567901234569 -F1-Score: 0.6862389770723103 -Precision: 0.901929012345679 -Recall: 0.6083333333333333 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -yellow,0.9633333333333333,0.9,1.0,0.9333333333333332,6,24 -looks,0.65,0.95,0.6833333333333333,0.7333333333333333,1,24 -keyboard,0.7433333333333333,1.0,0.6499999999999999,0.75,1,26 -glue,0.6333333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.5349999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -flashlight,0.565,1.0,0.4666666666666666,0.6166666666666667,1,26 -cup,0.21500000000000002,0.5,0.6166666666666666,0.5166666666666667,1,26 -folded,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -jam,0.48,1.0,0.4499999999999999,0.6,1,26 -black,0.9466666666666667,0.8666666666666666,1.0,0.9133333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -soccer,0.7816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -hat,0.41666666666666663,1.0,0.4666666666666666,0.6,1,26 -brown,0.9350000000000002,1.0,0.8999999999999998,0.9400000000000001,2,25 -coffee,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333334,1,26 -handle,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -food,0.7333333333333334,1.0,0.75,0.8166666666666667,1,25 -towel,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -stapler,0.74,1.0,0.6166666666666666,0.7333333333333334,1,26 -onion,0.6266666666666667,1.0,0.5,0.65,1,26 -bag,0.6799999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -sponge,0.7999999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.59,1.0,0.4833333333333333,0.6333333333333334,1,25 -special,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -colgate,0.6,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.6916666666666667,1.0,0.65,0.75,1,26 -tube,0.635,1.0,0.5333333333333333,0.6666666666666667,1,26 -cell,0.31833333333333336,0.65,0.4333333333333334,0.49000000000000005,1,26 -mug,0.8716666666666667,1.0,0.75,0.8333333333333334,1,26 -yogurt,0.6166666666666667,1.0,0.5833333333333333,0.7,1,26 -plantain,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.41,1.0,0.45,0.6,1,26 -wheat,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -kleenex,0.5333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -toothbrush,0.655,1.0,0.5833333333333333,0.7,1,26 -binder,0.75,1.0,0.6166666666666666,0.7333333333333333,1,26 -baseball,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -pliers,0.8,1.0,0.7999999999999999,0.85,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -thins,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -package,0.7433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -k,0.655,1.0,0.4833333333333333,0.6333333333333333,1,26 -jelly,0.8966666666666667,1.0,0.8,0.8666666666666666,1,26 -fruit,0.74,0.5499999999999999,0.9666666666666666,0.6666666666666667,2,25 -apple,0.6733333333333333,0.9,0.75,0.7666666666666666,1,25 -bell,0.745,1.0,0.5666666666666667,0.7,1,26 -battery,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -jar,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -bound,0.65,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.7066666666666668,1.0,0.5833333333333333,0.7166666666666667,1,26 -brush,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.5883333333333333,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -top,0.525,1.0,0.5166666666666666,0.65,1,26 -spiral,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -handles,0.7966666666666666,1.0,0.7,0.7833333333333333,1,25 -camera,0.5216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -eraser,0.45166666666666666,1.0,0.4,0.5666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -pitcher,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -phone,0.39333333333333337,0.65,0.5666666666666667,0.53,1,26 -stick,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666667,1,25 -cereal,0.875,1.0,0.8333333333333333,0.8833333333333332,1,26 -bulb,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.5683333333333332,1.0,0.4666666666666666,0.6166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,24 -coca,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -crackers,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -plate,0.61,1.0,0.4666666666666666,0.6166666666666666,1,25 -calculator,0.7916666666666666,0.9,0.7333333333333333,0.75,1,26 -tissues,0.43999999999999995,1.0,0.5166666666666666,0.65,1,26 -juice,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -pink,0.4966666666666667,1.0,0.4999999999999999,0.6333333333333333,1,25 -lemon,0.5383333333333333,1.0,0.4499999999999999,0.6,1,26 -peach,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -bowl,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8266666666666665,1.0,0.7166666666666666,0.8,1,26 -blue,0.73,1.0,0.7166666666666666,0.8,1,25 -used,0.6216666666666666,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.61,1.0,0.5833333333333333,0.7,1,26 -ball,0.7,1.0,0.6499999999999999,0.75,1,25 -notebook,0.7,1.0,0.6499999999999999,0.75,1,26 -garlic,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.7266666666666667,1.0,0.6,0.7166666666666667,1,26 -pair,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,27 -container,0.5966666666666666,1.0,0.6166666666666666,0.7166666666666666,1,25 -tomato,0.5349999999999999,0.95,0.4666666666666666,0.5833333333333333,1,26 -cellphone,0.5616666666666666,0.55,0.7,0.5633333333333334,1,26 -potato,0.4583333333333333,1.0,0.4499999999999999,0.6,1,25 -light,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -green,0.95,0.8833333333333332,1.0,0.9266666666666665,3,24 -bottle,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.6423302469135803 -F1-Score: 0.6861419753086418 -Precision: 0.9004629629629629 -Recall: 0.6086419753086422 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7616666666666666,1.0,0.6333333333333333,0.75,1,25 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.6716666666666666,0.95,0.6166666666666666,0.7,1,24 -keyboard,0.7516666666666667,1.0,0.6,0.7166666666666666,1,26 -glue,0.4883333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.8883333333333333,1.0,0.8333333333333333,0.8833333333333332,1,26 -flashlight,0.7433333333333334,1.0,0.5666666666666667,0.7,1,26 -cup,0.47666666666666674,0.55,0.5999999999999999,0.53,1,26 -folded,0.7633333333333334,1.0,0.7166666666666666,0.8,1,26 -jam,0.6433333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -black,0.96,0.9,1.0,0.9333333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -soccer,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -hat,0.4666666666666666,1.0,0.5333333333333333,0.65,1,26 -brown,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coffee,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -handle,0.5683333333333332,1.0,0.4833333333333333,0.6333333333333333,1,25 -food,0.7666666666666666,1.0,0.6499999999999999,0.75,1,26 -towel,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -stapler,0.6649999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -bag,0.5233333333333333,1.0,0.4333333333333333,0.6,1,26 -sponge,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -special,0.7183333333333334,1.0,0.5833333333333333,0.7166666666666666,1,26 -colgate,0.55,1.0,0.5333333333333333,0.6666666666666667,1,26 -leaf,0.475,1.0,0.4833333333333332,0.6166666666666666,1,26 -tube,0.6216666666666666,1.0,0.6499999999999999,0.75,1,26 -cell,0.6083333333333333,1.0,0.6499999999999999,0.75,1,26 -mug,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -yogurt,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -plantain,0.7066666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.5333333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -wheat,0.6900000000000001,1.0,0.5666666666666667,0.7,1,26 -kleenex,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -toothbrush,0.7066666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -binder,0.665,1.0,0.5499999999999999,0.6833333333333333,1,26 -baseball,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7516666666666667,1.0,0.5666666666666667,0.7,1,26 -thins,0.78,1.0,0.7166666666666666,0.8,1,26 -package,0.5083333333333333,1.0,0.45,0.6,1,26 -k,0.7066666666666667,1.0,0.4666666666666666,0.6333333333333334,1,26 -jelly,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.7983333333333333,0.65,0.9666666666666666,0.74,2,26 -apple,0.5733333333333334,0.9,0.5499999999999999,0.6333333333333333,1,25 -bell,0.7933333333333333,1.0,0.6333333333333333,0.75,1,26 -battery,0.6916666666666667,1.0,0.6166666666666666,0.7166666666666667,1,26 -jar,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.6833333333333333,1.0,0.5999999999999999,0.7,1,26 -lettuce,0.705,1.0,0.6166666666666666,0.7333333333333334,1,26 -brush,0.6583333333333333,1.0,0.6499999999999999,0.75,1,26 -scissors,0.44333333333333325,1.0,0.4666666666666666,0.6166666666666667,1,26 -lime,0.875,1.0,0.8166666666666667,0.8666666666666666,1,25 -toothpaste,0.6833333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -top,0.63,1.0,0.5999999999999999,0.7166666666666667,1,26 -spiral,0.6933333333333334,1.0,0.6,0.7166666666666667,1,26 -handles,0.85,1.0,0.7833333333333333,0.85,1,25 -camera,0.58,1.0,0.6833333333333333,0.7666666666666667,1,26 -eraser,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.89,0.775,1.0,0.8590476190476191,5,21 -banana,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -pitcher,0.505,1.0,0.5166666666666666,0.65,1,26 -phone,0.7083333333333333,1.0,0.5666666666666667,0.7,1,26 -stick,0.6849999999999999,1.0,0.5166666666666666,0.6666666666666666,1,25 -cereal,0.63,1.0,0.6,0.7166666666666667,1,26 -bulb,0.8299999999999998,1.0,0.8,0.8800000000000001,2,27 -hair,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.4883333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -can,0.9066666666666666,1.0,0.8666666666666666,0.9199999999999999,2,25 -coca,0.6683333333333333,1.0,0.6499999999999999,0.75,1,26 -crackers,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -calculator,0.58,0.75,0.5999999999999999,0.5900000000000001,1,26 -tissues,0.905,1.0,0.8333333333333333,0.8833333333333332,1,26 -juice,0.5683333333333334,0.5,0.6833333333333333,0.5566666666666666,1,26 -pink,0.6466666666666667,1.0,0.5833333333333333,0.7,1,25 -lemon,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -peach,0.4916666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -bowl,0.655,1.0,0.6,0.7166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -blue,0.58,1.0,0.6166666666666666,0.7166666666666666,1,25 -used,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.655,1.0,0.6499999999999999,0.75,1,26 -ball,0.6799999999999999,1.0,0.6333333333333332,0.7333333333333333,1,25 -notebook,0.6799999999999999,1.0,0.6166666666666666,0.7166666666666667,1,26 -garlic,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -cleaning,0.4833333333333333,1.0,0.4833333333333333,0.6166666666666667,1,26 -pair,1.0,1.0,1.0,1.0,2,27 -container,0.6683333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -tomato,0.5466666666666666,0.7,0.6499999999999999,0.5833333333333333,1,26 -cellphone,0.6483333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -potato,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -light,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,26 -green,0.9266666666666667,0.8,1.0,0.8666666666666668,3,22 -bottle,0.8683333333333334,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.638611111111111 -F1-Score: 0.6826455026455027 -Precision: 0.9025462962962962 -Recall: 0.6020061728395061 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6599999999999999,1.0,0.5333333333333332,0.6666666666666666,1,25 -yellow,0.8933333333333333,0.7166666666666666,1.0,0.8133333333333332,6,24 -looks,0.6766666666666667,0.75,0.6833333333333333,0.6666666666666667,1,24 -keyboard,0.6916666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -glue,0.8383333333333333,1.0,0.7,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -flashlight,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -cup,0.38833333333333336,0.5,0.6333333333333333,0.5266666666666666,1,26 -folded,0.7016666666666667,1.0,0.6499999999999999,0.75,1,26 -jam,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -black,0.8766666666666666,0.7416666666666667,1.0,0.8323809523809522,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -soccer,0.65,1.0,0.5833333333333333,0.7,1,26 -hat,0.605,1.0,0.5833333333333333,0.7,1,26 -brown,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,25 -coffee,0.635,1.0,0.5833333333333333,0.7,1,26 -handle,0.3966666666666666,1.0,0.4166666666666667,0.5666666666666667,1,25 -food,0.7266666666666667,1.0,0.7,0.7833333333333333,1,25 -towel,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -chips,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -stapler,0.7,1.0,0.6833333333333332,0.7666666666666666,1,26 -onion,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -bag,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -sponge,0.725,1.0,0.7,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,25 -special,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -colgate,0.6833333333333333,1.0,0.55,0.6833333333333333,1,26 -leaf,0.73,1.0,0.6833333333333333,0.7666666666666666,1,26 -tube,0.6833333333333333,1.0,0.7333333333333333,0.8,1,26 -cell,0.46499999999999997,0.5,0.6499999999999999,0.5366666666666667,1,26 -mug,0.7633333333333333,1.0,0.65,0.75,1,26 -yogurt,0.6799999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -plantain,0.7566666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -red,0.8416666666666666,0.7,1.0,0.8133333333333332,3,24 -pepper,0.755,1.0,0.7,0.7833333333333333,1,26 -wheat,0.6883333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -kleenex,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -toothbrush,0.69,1.0,0.5999999999999999,0.7166666666666666,1,26 -binder,0.7666666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -baseball,0.48,1.0,0.4833333333333333,0.6166666666666666,1,26 -pliers,0.475,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -thins,0.6666666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -package,0.655,0.95,0.65,0.7166666666666667,1,26 -k,0.5916666666666666,1.0,0.4833333333333332,0.6333333333333333,1,26 -jelly,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -fruit,0.7616666666666666,0.7166666666666667,0.8666666666666666,0.7366666666666667,2,26 -apple,0.615,0.95,0.5499999999999999,0.65,1,26 -bell,0.8233333333333335,1.0,0.7166666666666666,0.8,1,26 -battery,0.6399999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -jar,0.6416666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -bound,0.7,1.0,0.75,0.8166666666666667,1,26 -lettuce,0.43,1.0,0.4833333333333333,0.6166666666666667,1,26 -brush,0.6566666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -scissors,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -lime,0.6133333333333333,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.6166666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -top,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -spiral,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -handles,0.6416666666666667,1.0,0.55,0.6833333333333333,1,25 -camera,0.7133333333333334,1.0,0.65,0.75,1,26 -eraser,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6933333333333332,1.0,0.6499999999999999,0.75,1,26 -pitcher,0.7649999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -phone,0.6016666666666667,0.5,0.7,0.5666666666666667,1,26 -stick,0.6766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,25 -cereal,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666666,1,26 -bulb,0.9333333333333332,1.0,0.9333333333333332,0.96,2,27 -hair,0.8683333333333334,1.0,0.7833333333333333,0.85,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.86,1.0,0.7333333333333333,0.8166666666666667,1,26 -can,0.8683333333333334,1.0,0.8333333333333333,0.9,2,25 -coca,0.585,1.0,0.4666666666666666,0.6166666666666667,1,26 -crackers,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -plate,0.8266666666666668,1.0,0.6833333333333333,0.7833333333333334,1,25 -calculator,0.46333333333333326,1.0,0.4499999999999999,0.6,1,26 -tissues,0.705,1.0,0.5166666666666666,0.6666666666666667,1,26 -juice,0.5966666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -pink,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -lemon,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.705,1.0,0.6499999999999999,0.75,1,26 -blue,0.655,1.0,0.5833333333333333,0.7,1,25 -used,0.725,1.0,0.7,0.7833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.7733333333333332,1.0,0.7166666666666666,0.8,1,26 -ball,0.5766666666666667,1.0,0.5166666666666666,0.65,1,25 -notebook,0.635,1.0,0.5499999999999999,0.6833333333333333,1,26 -garlic,0.59,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -pair,0.9133333333333333,1.0,0.9,0.9400000000000001,2,27 -container,0.58,1.0,0.5666666666666667,0.6833333333333333,1,25 -tomato,0.5266666666666666,0.6,0.6166666666666666,0.55,1,26 -cellphone,0.43500000000000005,0.6,0.6333333333333333,0.5466666666666666,1,26 -potato,0.5133333333333334,1.0,0.45,0.6,1,26 -light,0.8933333333333332,1.0,0.8666666666666666,0.9200000000000002,2,26 -green,0.9266666666666667,0.8333333333333333,1.0,0.8933333333333333,3,24 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.6490123456790122 -F1-Score: 0.6879541446208111 -Precision: 0.889429012345679 -Recall: 0.6180555555555556 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5133333333333333,1.0,0.4833333333333332,0.6166666666666666,1,25 -yellow,0.9633333333333333,0.9,1.0,0.9333333333333332,6,24 -looks,0.6649999999999999,0.75,0.7166666666666666,0.65,1,24 -keyboard,0.6033333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -glue,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.7916666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -flashlight,0.8116666666666668,1.0,0.6333333333333333,0.75,1,26 -cup,0.45166666666666666,0.5,0.6166666666666666,0.53,1,26 -folded,0.6849999999999999,1.0,0.5666666666666667,0.7,1,26 -jam,0.8633333333333335,1.0,0.8166666666666667,0.8666666666666666,1,26 -black,0.8733333333333334,0.7583333333333333,1.0,0.8457142857142858,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.53,1.0,0.55,0.6666666666666666,1,26 -soccer,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -hat,0.5083333333333333,1.0,0.45,0.6,1,26 -brown,0.9216666666666666,1.0,0.9,0.9400000000000001,2,24 -coffee,0.6933333333333334,1.0,0.5833333333333333,0.7,1,26 -handle,0.6,1.0,0.5499999999999999,0.6666666666666666,1,25 -food,0.655,1.0,0.4999999999999999,0.65,1,24 -towel,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -chips,0.805,1.0,0.7166666666666666,0.8,1,26 -stapler,0.7,1.0,0.6499999999999999,0.75,1,26 -onion,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -bag,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.6433333333333333,1.0,0.55,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.58,1.0,0.5166666666666666,0.65,1,26 -special,0.6766666666666666,1.0,0.6499999999999999,0.75,1,26 -colgate,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -leaf,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -tube,0.705,1.0,0.6499999999999999,0.75,1,26 -cell,0.7516666666666667,1.0,0.6,0.7166666666666666,1,26 -mug,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -yogurt,0.63,1.0,0.55,0.6666666666666666,1,26 -plantain,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -red,0.8800000000000001,0.7333333333333333,1.0,0.8333333333333334,3,27 -pepper,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -wheat,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -kleenex,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -toothbrush,0.7866666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.5216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.775,1.0,0.7333333333333333,0.8166666666666667,1,26 -pliers,0.7166666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -thins,0.4833333333333333,1.0,0.5166666666666666,0.65,1,26 -package,0.775,0.9,0.7666666666666666,0.7666666666666666,1,26 -k,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -jelly,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -fruit,0.7033333333333334,0.6333333333333333,0.9,0.7333333333333334,2,26 -apple,0.63,0.85,0.6166666666666666,0.6333333333333334,1,25 -bell,0.75,1.0,0.7,0.7833333333333333,1,26 -battery,0.61,1.0,0.5833333333333333,0.7,1,26 -jar,0.53,1.0,0.4833333333333333,0.6333333333333333,1,26 -bound,0.7150000000000001,1.0,0.6,0.7166666666666667,1,26 -lettuce,0.6016666666666667,1.0,0.5833333333333333,0.7,1,26 -brush,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -scissors,0.7849999999999999,1.0,0.6333333333333333,0.75,1,26 -lime,0.8216666666666667,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.525,1.0,0.5333333333333333,0.6666666666666666,1,26 -top,0.8066666666666666,1.0,0.6833333333333333,0.7833333333333334,1,26 -spiral,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -handles,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -eraser,0.7733333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,23 -banana,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -pitcher,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.69,1.0,0.5666666666666667,0.7,1,26 -stick,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666667,1,25 -cereal,0.5316666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -bulb,0.9550000000000001,1.0,0.9333333333333332,0.96,2,27 -hair,0.6716666666666666,1.0,0.65,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -can,0.9550000000000001,1.0,0.9333333333333332,0.96,2,27 -coca,0.6083333333333333,1.0,0.5666666666666667,0.7,1,26 -crackers,0.475,1.0,0.4999999999999999,0.6333333333333333,1,26 -plate,0.655,1.0,0.6499999999999999,0.75,1,25 -calculator,0.41,0.7,0.4833333333333333,0.5233333333333332,1,26 -tissues,0.66,1.0,0.5833333333333333,0.7,1,26 -juice,0.55,1.0,0.6166666666666666,0.7166666666666666,1,26 -pink,0.575,1.0,0.6166666666666666,0.7166666666666666,1,25 -lemon,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -peach,0.7083333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -bowl,0.7733333333333333,1.0,0.5833333333333333,0.7166666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7833333333333333,1.0,0.7,0.7833333333333333,1,26 -blue,0.7233333333333334,0.95,0.65,0.7166666666666666,1,25 -used,0.6900000000000001,1.0,0.5333333333333333,0.6666666666666667,1,23 -energizer,0,0,0,0,1,26 -pear,0.76,1.0,0.5999999999999999,0.7166666666666666,1,26 -ball,0.6233333333333333,1.0,0.4833333333333333,0.6333333333333333,1,25 -notebook,0.78,1.0,0.7166666666666666,0.8,1,26 -garlic,0.7666666666666666,1.0,0.65,0.75,1,26 -cleaning,0.6016666666666667,1.0,0.55,0.6833333333333333,1,26 -pair,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,27 -container,0.6166666666666666,1.0,0.6833333333333333,0.7666666666666666,1,25 -tomato,0.46333333333333326,0.75,0.6333333333333333,0.5833333333333334,1,26 -cellphone,0.7249999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -potato,0.6716666666666666,1.0,0.6,0.7166666666666667,1,25 -light,0.845,1.0,0.7666666666666667,0.86,2,26 -green,0.9633333333333333,0.9166666666666666,1.0,0.9466666666666667,3,25 -bottle,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,26 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.6540432098765434 -F1-Score: 0.6915652557319225 -Precision: 0.9013117283950618 -Recall: 0.6152777777777777 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8166666666666667,1.0,0.7999999999999999,0.85,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.725,0.9,0.7,0.7166666666666666,1,24 -keyboard,0.6933333333333334,1.0,0.65,0.75,1,26 -glue,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6916666666666667,1.0,0.65,0.75,1,26 -flashlight,0.735,1.0,0.65,0.75,1,26 -cup,0.5116666666666667,0.4,0.7666666666666666,0.48,1,26 -folded,0.6666666666666666,1.0,0.6666666666666666,0.75,1,26 -jam,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -black,0.85,0.675,1.0,0.7923809523809525,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.875,1.0,0.8166666666666667,0.8666666666666666,1,26 -soccer,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -hat,0.6416666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -brown,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -coffee,0.7516666666666667,1.0,0.5666666666666667,0.7,1,25 -handle,0.9083333333333332,1.0,0.85,0.9,1,25 -food,0.78,1.0,0.6666666666666666,0.7666666666666666,1,25 -towel,0.6716666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -chips,0.6666666666666666,1.0,0.6499999999999999,0.75,1,26 -stapler,0.7916666666666666,1.0,0.7166666666666666,0.8,1,26 -onion,0.6333333333333333,0.95,0.5333333333333333,0.6333333333333333,1,26 -bag,0.7466666666666667,1.0,0.6499999999999999,0.75,1,26 -sponge,0.8133333333333332,1.0,0.7499999999999999,0.8166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.8850000000000001,1.0,0.7833333333333333,0.85,1,25 -special,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -colgate,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -leaf,0.4916666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -tube,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -cell,0.7383333333333334,1.0,0.6499999999999999,0.75,1,26 -mug,0.5549999999999999,1.0,0.5166666666666666,0.65,1,25 -yogurt,0.6849999999999999,1.0,0.4999999999999999,0.65,1,26 -plantain,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -red,0.8233333333333335,0.6,1.0,0.74,3,26 -pepper,0.7083333333333333,1.0,0.7166666666666666,0.8,1,26 -wheat,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -kleenex,0.5383333333333333,1.0,0.4333333333333333,0.6,1,26 -toothbrush,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -binder,0.905,1.0,0.8,0.8666666666666668,1,26 -baseball,0.6133333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -pliers,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6249999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -thins,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -package,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -k,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -jelly,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.71,0.5666666666666667,0.9333333333333332,0.6900000000000001,2,26 -apple,0.7566666666666666,0.85,0.6833333333333333,0.7,1,25 -bell,0.6766666666666666,1.0,0.65,0.75,1,26 -battery,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -jar,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.7466666666666666,1.0,0.7,0.7833333333333333,1,26 -lettuce,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.7,1.0,0.5833333333333333,0.7,1,26 -scissors,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -lime,0.6983333333333334,1.0,0.5166666666666666,0.6666666666666667,1,25 -toothpaste,0.6516666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -top,0.655,1.0,0.5333333333333333,0.6666666666666667,1,26 -spiral,0.7916666666666667,1.0,0.7166666666666666,0.8,1,26 -handles,0.5333333333333333,1.0,0.4666666666666666,0.6166666666666667,1,25 -camera,0.6599999999999999,1.0,0.4999999999999999,0.65,1,26 -eraser,0.53,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -pitcher,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -phone,0.63,1.0,0.6,0.7166666666666667,1,26 -stick,0.9133333333333333,1.0,0.85,0.9,1,25 -cereal,0.5416666666666666,1.0,0.5499999999999999,0.6666666666666667,1,26 -bulb,0.8916666666666666,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.625,1.0,0.5833333333333333,0.7,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7466666666666666,1.0,0.7,0.7833333333333333,1,26 -can,0.9266666666666665,1.0,0.9,0.9400000000000001,2,25 -coca,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -crackers,0.5766666666666667,1.0,0.4999999999999999,0.65,1,26 -plate,0.5666666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -calculator,0.4699999999999999,0.5,0.6166666666666666,0.53,1,26 -tissues,0.71,1.0,0.7,0.7833333333333333,1,26 -juice,0.6,1.0,0.41666666666666663,0.5833333333333333,1,26 -pink,0.7066666666666667,1.0,0.65,0.75,1,25 -lemon,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -peach,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -bowl,0.7983333333333333,1.0,0.6333333333333333,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.735,1.0,0.65,0.75,1,26 -blue,0.5883333333333333,0.9,0.6166666666666666,0.65,1,25 -used,0.6333333333333333,1.0,0.5833333333333333,0.7,1,23 -energizer,0,0,0,0,1,26 -pear,0.4,1.0,0.45,0.6,1,26 -ball,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333333,1,25 -notebook,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -garlic,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.755,1.0,0.7,0.7833333333333333,1,26 -pair,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -container,0.6633333333333333,1.0,0.5833333333333333,0.7,1,25 -tomato,0.4683333333333334,0.7,0.6833333333333333,0.5833333333333333,1,26 -cellphone,0.5599999999999999,1.0,0.5833333333333333,0.7,1,26 -potato,0.775,1.0,0.7,0.7833333333333333,1,25 -light,0.8633333333333333,1.0,0.8333333333333334,0.9000000000000001,2,26 -green,0.8850000000000001,0.7666666666666667,1.0,0.8514285714285714,3,23 -bottle,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.6643364197530865 -F1-Score: 0.6937389770723104 -Precision: 0.8959104938271606 -Recall: 0.6243827160493828 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6633333333333333,1.0,0.4999999999999999,0.65,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.6333333333333333,1.0,0.6833333333333333,0.7666666666666666,1,24 -keyboard,0.7133333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -glue,0.6733333333333333,1.0,0.6,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.775,1.0,0.7333333333333333,0.8166666666666668,1,26 -flashlight,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -cup,0.36,0.5,0.6333333333333332,0.5266666666666667,1,26 -folded,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -jam,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -black,0.7966666666666666,0.6583333333333333,1.0,0.7885714285714286,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6333333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -soccer,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -hat,0.775,1.0,0.6666666666666666,0.7666666666666667,1,26 -brown,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -coffee,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -handle,0.5483333333333333,1.0,0.4666666666666666,0.6166666666666666,1,25 -food,0.6166666666666667,1.0,0.6333333333333333,0.7333333333333333,1,24 -towel,0.6,1.0,0.6166666666666666,0.7166666666666666,1,26 -chips,0.7083333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.6566666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -bag,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.39999999999999997,1.0,0.4,0.5666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -special,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -colgate,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -leaf,0.73,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.6266666666666667,1.0,0.55,0.6833333333333333,1,26 -cell,0.52,0.55,0.6166666666666666,0.5399999999999999,1,26 -mug,0.625,1.0,0.6833333333333333,0.7666666666666666,1,26 -yogurt,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -plantain,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.5683333333333332,1.0,0.5166666666666666,0.65,1,26 -wheat,0.6333333333333333,1.0,0.6499999999999999,0.75,1,26 -kleenex,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -toothbrush,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -binder,0.7466666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -baseball,0.7433333333333334,1.0,0.6333333333333333,0.75,1,26 -pliers,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.4966666666666667,1.0,0.5166666666666666,0.65,1,26 -thins,0.7666666666666666,1.0,0.8,0.85,1,26 -package,0.9166666666666666,1.0,0.8833333333333332,0.9166666666666666,1,26 -k,0.6933333333333334,1.0,0.6,0.7166666666666667,1,26 -jelly,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -fruit,0.7683333333333333,0.85,0.8,0.7866666666666667,2,25 -apple,0.6883333333333334,0.9,0.6166666666666666,0.6666666666666666,1,25 -bell,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -battery,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -jar,0.8833333333333332,1.0,0.8666666666666666,0.9,1,26 -bound,0.6516666666666666,1.0,0.6,0.7166666666666667,1,26 -lettuce,0.7,1.0,0.7166666666666666,0.8,1,26 -brush,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -scissors,0.5483333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -lime,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,25 -toothpaste,0.6666666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -top,0.5933333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.7183333333333334,1.0,0.6499999999999999,0.75,1,26 -handles,0.6066666666666667,1.0,0.5833333333333333,0.7,1,25 -camera,0.7383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.6216666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.655,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -phone,0.5349999999999999,0.55,0.6833333333333333,0.5666666666666667,1,26 -stick,0.6433333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -cereal,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -bulb,0.93,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.705,1.0,0.65,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7433333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -can,0.86,1.0,0.8333333333333334,0.9000000000000001,2,24 -coca,0.7583333333333333,1.0,0.75,0.8166666666666668,1,26 -crackers,0.6633333333333333,1.0,0.65,0.75,1,26 -plate,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -calculator,0.61,0.7,0.7666666666666666,0.6333333333333334,1,26 -tissues,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.4533333333333333,0.5,0.5166666666666666,0.4966666666666667,1,26 -pink,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -lemon,0.6799999999999999,1.0,0.65,0.75,1,26 -peach,0.475,1.0,0.5,0.6333333333333333,1,26 -bowl,0.7466666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7266666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -blue,0.5833333333333333,1.0,0.4833333333333333,0.6333333333333334,1,25 -used,0.6599999999999999,1.0,0.5333333333333333,0.6666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.7816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -ball,0.655,1.0,0.6,0.7166666666666667,1,25 -notebook,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -garlic,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -cleaning,0.5383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -pair,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,27 -container,0.705,1.0,0.6166666666666666,0.7333333333333333,1,25 -tomato,0.4683333333333334,0.95,0.4666666666666666,0.5833333333333334,1,26 -cellphone,0.45500000000000007,0.6,0.6333333333333333,0.5466666666666666,1,26 -potato,0.7,1.0,0.7333333333333332,0.8,1,25 -light,0.9266666666666665,1.0,0.9,0.9400000000000001,2,25 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,24 -bottle,0.9349999999999999,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.645679012345679 -F1-Score: 0.6885670194003528 -Precision: 0.8954475308641975 -Recall: 0.6128086419753087 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5966666666666666,1.0,0.5666666666666667,0.6833333333333333,1,24 -yellow,1.0,1.0,1.0,1.0,6,26 -looks,0.6933333333333332,1.0,0.5833333333333333,0.7,1,24 -keyboard,0.6966666666666667,1.0,0.65,0.75,1,26 -glue,0.6233333333333333,1.0,0.5,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.5133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -flashlight,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.4883333333333333,0.4833333333333333,0.6666666666666666,0.53,1,26 -folded,0.5483333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -jam,0.8099999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -black,0.8166666666666667,0.5833333333333333,1.0,0.7333333333333334,6,21 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.6316666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -soccer,0.615,1.0,0.55,0.6833333333333333,1,26 -hat,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -brown,0.8766666666666667,1.0,0.8333333333333334,0.9000000000000001,2,26 -coffee,0.7133333333333334,1.0,0.7166666666666666,0.8,1,25 -handle,0.7833333333333333,1.0,0.7,0.7833333333333333,1,25 -food,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -towel,0.755,1.0,0.7666666666666666,0.8333333333333333,1,26 -chips,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.6083333333333333,1.0,0.5166666666666666,0.65,1,26 -onion,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -bag,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -sponge,0.7,1.0,0.6833333333333333,0.7666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7666666666666666,1.0,0.5833333333333333,0.7166666666666667,1,25 -special,0.6216666666666666,1.0,0.5833333333333333,0.7,1,26 -colgate,0.705,1.0,0.6,0.7166666666666666,1,26 -leaf,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -tube,0.5916666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -cell,0.44333333333333336,0.55,0.6666666666666666,0.5433333333333333,1,26 -mug,0.7083333333333333,1.0,0.7499999999999999,0.8166666666666667,1,25 -yogurt,0.74,1.0,0.6,0.7166666666666666,1,26 -plantain,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.9633333333333333,0.9,1.0,0.9333333333333332,3,26 -pepper,0.6216666666666666,1.0,0.5833333333333333,0.7,1,26 -wheat,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.7633333333333333,1.0,0.65,0.75,1,26 -toothbrush,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -binder,0.5433333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.6566666666666666,1.0,0.4999999999999999,0.65,1,26 -pliers,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -thins,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -package,0.6416666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -k,0.8716666666666665,1.0,0.7833333333333333,0.85,1,26 -jelly,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.8416666666666668,0.7166666666666667,0.9666666666666666,0.8066666666666666,2,26 -apple,0.7333333333333333,1.0,0.6833333333333333,0.7666666666666667,1,25 -bell,0.7633333333333333,1.0,0.65,0.75,1,26 -battery,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -jar,0.6766666666666666,1.0,0.5666666666666667,0.7,1,26 -bound,0.75,1.0,0.65,0.75,1,26 -lettuce,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -brush,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.6,1.0,0.5333333333333333,0.6666666666666667,1,26 -lime,0.6316666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -toothpaste,0.6516666666666666,1.0,0.55,0.6833333333333333,1,26 -top,0.675,1.0,0.75,0.8166666666666668,1,26 -spiral,0.6133333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -handles,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.6333333333333333,1.0,0.7,0.7833333333333333,1,26 -eraser,0.755,1.0,0.7166666666666666,0.8,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.53,1.0,0.5166666666666666,0.65,1,26 -pitcher,0.5716666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -phone,0.3733333333333334,0.65,0.5166666666666666,0.5133333333333334,1,26 -stick,0.7633333333333333,1.0,0.7,0.7833333333333333,1,25 -cereal,0.7216666666666667,1.0,0.6,0.7166666666666667,1,26 -bulb,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,27 -hair,0.6716666666666666,1.0,0.6,0.7166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5933333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -can,0.8399999999999999,1.0,0.8,0.8800000000000001,2,25 -coca,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -crackers,0.775,1.0,0.6666666666666666,0.7666666666666666,1,26 -plate,0.6766666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -calculator,0.6916666666666667,0.5,0.8333333333333333,0.6066666666666667,1,26 -tissues,0.6433333333333333,1.0,0.5,0.65,1,26 -juice,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -pink,0.705,1.0,0.65,0.75,1,25 -lemon,0.6316666666666666,1.0,0.5,0.65,1,26 -peach,0.6766666666666665,1.0,0.5499999999999999,0.6833333333333333,1,26 -bowl,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6933333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -blue,0.655,0.95,0.6333333333333332,0.7,1,25 -used,0.8400000000000001,1.0,0.7833333333333333,0.85,1,24 -energizer,0,0,0,0,1,26 -pear,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.505,1.0,0.4999999999999999,0.6333333333333333,1,25 -notebook,0.6583333333333333,1.0,0.6499999999999999,0.75,1,26 -garlic,0.675,1.0,0.6666666666666666,0.7666666666666667,1,26 -cleaning,0.6183333333333334,1.0,0.5,0.65,1,26 -pair,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,27 -container,0.6966666666666665,1.0,0.6833333333333333,0.7666666666666666,1,25 -tomato,0.75,0.75,0.7333333333333333,0.6833333333333333,1,26 -cellphone,0.5733333333333334,0.6,0.7666666666666666,0.6,1,26 -potato,0.5916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -light,0.8666666666666666,1.0,0.8333333333333334,0.9000000000000001,2,25 -green,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,3,24 -bottle,0.7966666666666666,1.0,0.7666666666666667,0.86,2,26 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.6472376543209877 -F1-Score: 0.6872222222222223 -Precision: 0.8944444444444445 -Recall: 0.6146604938271604 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,24 -yellow,0.93,0.8166666666666667,1.0,0.8799999999999999,6,24 -looks,0.7483333333333333,0.85,0.7166666666666666,0.7166666666666667,1,24 -keyboard,0.73,1.0,0.6166666666666666,0.7333333333333334,1,26 -glue,0.8166666666666667,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.475,1.0,0.36666666666666664,0.5333333333333333,1,26 -flashlight,0.73,1.0,0.65,0.75,1,26 -cup,0.38,0.5,0.5833333333333333,0.51,1,26 -folded,0.4383333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -jam,0.7899999999999999,1.0,0.6833333333333333,0.7833333333333334,1,26 -black,0.86,0.7083333333333334,1.0,0.819047619047619,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.775,1.0,0.8166666666666667,0.8666666666666666,1,26 -soccer,0.805,1.0,0.7,0.7833333333333333,1,26 -hat,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333334,1,26 -brown,0.9400000000000001,1.0,0.9,0.9400000000000001,2,24 -coffee,0.6916666666666667,1.0,0.5999999999999999,0.7166666666666666,1,25 -handle,0.8,1.0,0.6833333333333333,0.7833333333333333,1,25 -food,0.48,1.0,0.5166666666666666,0.65,1,25 -towel,0.5466666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -chips,0.4833333333333333,1.0,0.5333333333333333,0.65,1,26 -stapler,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -onion,0.5516666666666666,1.0,0.5166666666666666,0.65,1,26 -bag,0.7899999999999999,1.0,0.6333333333333333,0.75,1,26 -sponge,0.725,1.0,0.5166666666666666,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -special,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.675,1.0,0.6,0.7166666666666667,1,26 -leaf,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.7183333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -cell,0.8,1.0,0.75,0.8166666666666667,1,26 -mug,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,25 -yogurt,0.4833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -plantain,0.47166666666666657,1.0,0.4666666666666666,0.6166666666666667,1,26 -red,0.93,0.85,1.0,0.9047619047619048,3,25 -pepper,0.6233333333333333,1.0,0.5833333333333333,0.7,1,26 -wheat,0.7633333333333333,1.0,0.75,0.8166666666666667,1,26 -kleenex,0.5433333333333333,1.0,0.4833333333333332,0.6333333333333333,1,26 -toothbrush,0.5383333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -binder,0.8266666666666668,1.0,0.7333333333333333,0.8166666666666668,1,26 -baseball,0.825,1.0,0.7333333333333333,0.8166666666666667,1,26 -pliers,0.6399999999999999,1.0,0.6499999999999999,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7633333333333333,1.0,0.6499999999999999,0.75,1,26 -thins,0.7150000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -package,0.6799999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -k,0.6016666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -jelly,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -fruit,0.7166666666666666,0.6833333333333333,0.8666666666666666,0.7300000000000001,2,25 -apple,0.7033333333333333,0.65,0.7333333333333333,0.6166666666666667,1,25 -bell,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -battery,0.735,1.0,0.6499999999999999,0.75,1,26 -jar,0.7266666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -bound,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.715,1.0,0.5833333333333333,0.7166666666666667,1,26 -brush,0.6216666666666666,1.0,0.65,0.75,1,26 -scissors,0.71,1.0,0.6333333333333333,0.7333333333333333,1,26 -lime,0.5966666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -toothpaste,0.655,1.0,0.7,0.7833333333333334,1,26 -top,0.5966666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -spiral,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -handles,0.7083333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -camera,0.71,1.0,0.6,0.7166666666666667,1,26 -eraser,0.5666666666666667,1.0,0.5999999999999999,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5133333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -pitcher,0.39166666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -phone,0.6516666666666666,1.0,0.4333333333333334,0.6,1,26 -stick,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -cereal,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -bulb,0.8716666666666667,1.0,0.8333333333333333,0.9,2,26 -hair,0.7466666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -can,0.8550000000000001,1.0,0.8333333333333333,0.9,2,25 -coca,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -crackers,0.8099999999999999,1.0,0.7666666666666666,0.8333333333333334,1,26 -plate,0.7833333333333333,1.0,0.7333333333333333,0.8166666666666668,1,25 -calculator,0.6499999999999999,1.0,0.6833333333333332,0.7666666666666666,1,26 -tissues,0.6299999999999999,1.0,0.4999999999999999,0.65,1,26 -juice,0.7833333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -pink,0.6333333333333333,1.0,0.6833333333333333,0.7666666666666667,1,25 -lemon,0.6166666666666666,1.0,0.6666666666666666,0.75,1,26 -peach,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -bowl,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -blue,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,25 -used,0.4916666666666667,1.0,0.4666666666666666,0.6166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.735,1.0,0.5499999999999999,0.6833333333333333,1,26 -ball,0.4133333333333333,1.0,0.4499999999999999,0.6,1,25 -notebook,0.9466666666666667,1.0,0.9,0.9333333333333332,1,26 -garlic,0.53,1.0,0.5,0.65,1,26 -cleaning,0.5433333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -pair,0.8550000000000001,1.0,0.8333333333333334,0.9000000000000001,2,26 -container,0.7466666666666667,1.0,0.5666666666666667,0.7,1,26 -tomato,0.6116666666666666,0.65,0.7166666666666666,0.6,1,26 -cellphone,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -potato,0.655,1.0,0.65,0.75,1,25 -light,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -green,0.8683333333333334,0.7416666666666666,1.0,0.8290476190476189,3,23 -bottle,0.8066666666666666,1.0,0.7666666666666667,0.86,2,26 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.647283950617284 -F1-Score: 0.6865696649029981 -Precision: 0.9023148148148148 -Recall: 0.608179012345679 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7133333333333334,1.0,0.55,0.6833333333333333,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,24 -keyboard,0.6583333333333333,1.0,0.6,0.7166666666666666,1,26 -glue,0.7266666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.4716666666666667,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.5133333333333333,1.0,0.5,0.6333333333333334,1,26 -cup,0.4766666666666667,0.5,0.65,0.5366666666666667,1,26 -folded,0.7516666666666667,1.0,0.6333333333333333,0.75,1,26 -jam,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -black,0.875,0.7583333333333333,1.0,0.8457142857142858,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -soccer,0.7716666666666666,1.0,0.7166666666666666,0.8,1,26 -hat,0.7066666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -brown,0.9333333333333332,1.0,0.9333333333333332,0.96,2,25 -coffee,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -handle,0.6666666666666666,1.0,0.5833333333333333,0.7,1,25 -food,0.6166666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -towel,0.5466666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -chips,0.7166666666666666,1.0,0.7333333333333333,0.8,1,26 -stapler,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -onion,0.7166666666666666,1.0,0.5666666666666667,0.7,1,26 -bag,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -sponge,0.6133333333333333,1.0,0.4999999999999999,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.6599999999999999,1.0,0.5666666666666667,0.7,1,25 -special,0.5216666666666667,1.0,0.5833333333333333,0.7,1,26 -colgate,0.51,1.0,0.4333333333333334,0.6,1,26 -leaf,0.73,1.0,0.6499999999999999,0.75,1,26 -tube,0.63,1.0,0.65,0.75,1,26 -cell,0.3716666666666667,0.55,0.5833333333333333,0.52,1,26 -mug,0.635,1.0,0.5666666666666667,0.7,1,26 -yogurt,0.7483333333333333,1.0,0.5666666666666667,0.7,1,26 -plantain,0.5516666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -red,0.9666666666666668,0.9333333333333332,1.0,0.96,3,24 -pepper,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -wheat,0.625,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.7350000000000001,1.0,0.6666666666666666,0.7666666666666667,1,26 -toothbrush,0.6833333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -binder,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -baseball,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -pliers,0.755,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5216666666666666,1.0,0.4499999999999999,0.6,1,26 -thins,0.5716666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -package,0.575,1.0,0.5166666666666666,0.65,1,26 -k,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -jelly,0.7,1.0,0.5833333333333333,0.7,1,26 -fruit,0.8683333333333334,0.7333333333333333,1.0,0.8266666666666665,2,25 -apple,0.7033333333333333,0.75,0.6666666666666666,0.6166666666666667,1,25 -bell,0.55,1.0,0.55,0.6666666666666667,1,26 -battery,0.6966666666666665,1.0,0.5833333333333333,0.7,1,26 -jar,0.8300000000000001,1.0,0.7,0.8,1,26 -bound,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.6183333333333333,1.0,0.5833333333333333,0.7,1,26 -brush,0.725,1.0,0.7,0.7833333333333333,1,26 -scissors,0.7016666666666667,1.0,0.65,0.75,1,26 -lime,0.6766666666666666,1.0,0.6499999999999999,0.75,1,25 -toothpaste,0.605,1.0,0.5833333333333333,0.7,1,26 -top,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -spiral,0.5633333333333334,1.0,0.5166666666666666,0.65,1,26 -handles,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -camera,0.6766666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -eraser,0.875,1.0,0.8,0.8666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.8800000000000001,1.0,0.7833333333333333,0.85,1,26 -pitcher,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -phone,0.3633333333333334,0.5,0.4999999999999999,0.47333333333333344,1,26 -stick,0.625,1.0,0.5666666666666667,0.6833333333333333,1,25 -cereal,0.6266666666666667,1.0,0.55,0.6833333333333333,1,26 -bulb,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.6633333333333333,1.0,0.6499999999999999,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.825,1.0,0.7333333333333333,0.8166666666666667,1,26 -can,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,24 -coca,0.6916666666666667,1.0,0.65,0.75,1,26 -crackers,0.8416666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -plate,0.7666666666666666,1.0,0.7,0.7833333333333333,1,24 -calculator,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -tissues,0.7016666666666667,1.0,0.5666666666666667,0.7,1,26 -juice,0.635,1.0,0.5333333333333333,0.6666666666666667,1,26 -pink,0.7733333333333333,1.0,0.6333333333333333,0.75,1,25 -lemon,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.5633333333333332,1.0,0.5,0.6333333333333333,1,26 -bowl,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -blue,0.6933333333333334,1.0,0.55,0.6833333333333333,1,25 -used,0.5,1.0,0.4999999999999999,0.6333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -ball,0.525,1.0,0.5166666666666666,0.65,1,25 -notebook,0.8,1.0,0.6666666666666666,0.7666666666666667,1,26 -garlic,0.7633333333333334,1.0,0.7166666666666666,0.8,1,26 -cleaning,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -pair,0.8883333333333333,1.0,0.8666666666666668,0.9200000000000002,2,27 -container,0.74,1.0,0.6333333333333333,0.75,1,25 -tomato,0.6516666666666666,0.85,0.7166666666666666,0.7,1,26 -cellphone,0.47000000000000003,0.5,0.6166666666666666,0.53,1,26 -potato,0.6316666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -light,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -green,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,3,23 -bottle,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.6534876543209875 -F1-Score: 0.6895282186948856 -Precision: 0.898070987654321 -Recall: 0.6114197530864196 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7466666666666667,1.0,0.7166666666666666,0.8,1,25 -yellow,0.95,0.8666666666666666,1.0,0.9133333333333333,6,24 -looks,0.5566666666666666,0.85,0.65,0.6666666666666667,1,24 -keyboard,0.755,1.0,0.6666666666666666,0.7666666666666666,1,26 -glue,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6216666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -flashlight,0.4999999999999999,1.0,0.5333333333333332,0.65,1,26 -cup,0.3433333333333334,0.5,0.4666666666666666,0.4666666666666667,1,26 -folded,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -black,0.9083333333333334,0.8166666666666668,1.0,0.8847619047619049,6,21 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.9200000000000002,1.0,0.8,0.8666666666666668,1,26 -soccer,0.5766666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -hat,0.6333333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -brown,0.9600000000000002,1.0,0.9333333333333332,0.9600000000000002,2,24 -coffee,0.6416666666666667,1.0,0.5833333333333333,0.7,1,26 -handle,0.78,1.0,0.7666666666666666,0.8333333333333333,1,25 -food,0.7166666666666667,1.0,0.5666666666666667,0.7,1,24 -towel,0.9083333333333332,1.0,0.8833333333333332,0.9166666666666666,1,26 -chips,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -stapler,0.6,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.7883333333333333,1.0,0.6333333333333333,0.75,1,26 -sponge,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5516666666666665,1.0,0.4666666666666666,0.6166666666666667,1,26 -special,0.5766666666666667,1.0,0.5166666666666666,0.65,1,26 -colgate,0.7733333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -leaf,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -tube,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -cell,0.7466666666666666,1.0,0.6,0.7166666666666667,1,26 -mug,0.74,1.0,0.6666666666666666,0.7666666666666666,1,26 -yogurt,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -plantain,0.565,1.0,0.41666666666666663,0.5833333333333334,1,26 -red,0.9166666666666667,0.8,1.0,0.8714285714285713,3,26 -pepper,0.4683333333333334,1.0,0.4666666666666666,0.6166666666666666,1,26 -wheat,0.5083333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -kleenex,0.6216666666666667,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.6083333333333333,1.0,0.5166666666666666,0.65,1,26 -binder,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.53,1.0,0.5166666666666666,0.65,1,26 -pliers,0.755,1.0,0.6499999999999999,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7166666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -thins,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -package,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -k,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -jelly,0.5966666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -fruit,0.6616666666666667,0.5,0.9333333333333332,0.6066666666666667,2,26 -apple,0.5716666666666667,0.9,0.6166666666666666,0.65,1,25 -bell,0.7766666666666666,1.0,0.65,0.75,1,26 -battery,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -jar,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.53,1.0,0.4833333333333333,0.6333333333333334,1,26 -lettuce,0.4549999999999999,1.0,0.4333333333333333,0.5833333333333333,1,26 -brush,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -scissors,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -lime,0.7283333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -toothpaste,0.4966666666666667,1.0,0.5166666666666666,0.65,1,26 -top,0.655,1.0,0.7,0.7833333333333333,1,26 -spiral,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -handles,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.7916666666666667,1.0,0.7166666666666666,0.8,1,26 -eraser,0.5166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7,1.0,0.6333333333333333,0.7333333333333334,1,26 -pitcher,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -phone,0.5516666666666666,1.0,0.5166666666666666,0.65,1,26 -stick,0.805,1.0,0.7666666666666666,0.8333333333333333,1,25 -cereal,0.835,1.0,0.7,0.8,1,26 -bulb,0.9133333333333333,1.0,0.9,0.9400000000000001,2,27 -hair,0.605,1.0,0.5833333333333333,0.7,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5433333333333332,1.0,0.4333333333333333,0.5833333333333333,1,26 -can,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -coca,0.61,1.0,0.5833333333333333,0.7,1,26 -crackers,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -plate,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -calculator,0.6533333333333332,0.8,0.6666666666666666,0.65,1,26 -tissues,0.755,1.0,0.6499999999999999,0.75,1,26 -juice,0.6683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -pink,0.6816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,25 -lemon,0.6883333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -peach,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -bowl,0.8466666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -blue,0.63,1.0,0.5499999999999999,0.6666666666666666,1,25 -used,0.605,1.0,0.5333333333333333,0.6666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -ball,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.4583333333333332,1.0,0.4833333333333332,0.6166666666666666,1,26 -garlic,0.705,1.0,0.5666666666666667,0.7,1,26 -cleaning,0.7216666666666667,1.0,0.5666666666666667,0.7,1,26 -pair,0.9016666666666666,1.0,0.8666666666666666,0.9200000000000002,2,27 -container,0.7466666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -tomato,0.6416666666666667,0.6,0.7166666666666666,0.5966666666666668,1,26 -cellphone,0.7633333333333333,1.0,0.7,0.7833333333333334,1,26 -potato,0.6666666666666667,1.0,0.7,0.7833333333333333,1,25 -light,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -green,0.8316666666666667,0.625,1.0,0.759047619047619,3,23 -bottle,0.8416666666666666,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.648672839506173 -F1-Score: 0.689215167548501 -Precision: 0.90054012345679 -Recall: 0.6140432098765432 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7416666666666667,1.0,0.6166666666666666,0.7333333333333333,1,24 -yellow,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666665,6,24 -looks,0.8016666666666667,0.7,0.8833333333333332,0.7166666666666667,1,24 -keyboard,0.5483333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -glue,0.675,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.7216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.5449999999999999,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.7716666666666667,1.0,0.6333333333333333,0.75,1,26 -jam,0.4966666666666666,1.0,0.4833333333333333,0.6166666666666667,1,26 -black,0.8683333333333334,0.75,1.0,0.8447619047619049,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5633333333333332,1.0,0.6166666666666666,0.7166666666666666,1,26 -soccer,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -hat,0.7083333333333333,1.0,0.65,0.75,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.96,2,24 -coffee,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -handle,0.61,1.0,0.5166666666666666,0.65,1,26 -food,0.6683333333333333,1.0,0.65,0.75,1,26 -towel,0.8149999999999998,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.605,1.0,0.5166666666666666,0.65,1,26 -stapler,0.76,1.0,0.5833333333333333,0.7166666666666667,1,26 -onion,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -bag,0.635,1.0,0.6,0.7166666666666667,1,26 -sponge,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6583333333333333,1.0,0.55,0.6833333333333333,1,25 -special,0.7383333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -colgate,0.7633333333333334,1.0,0.6333333333333333,0.75,1,26 -leaf,0.69,1.0,0.6166666666666666,0.7333333333333333,1,26 -tube,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -mug,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -yogurt,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.605,1.0,0.4833333333333333,0.6333333333333333,1,26 -red,0.8283333333333335,0.6666666666666666,1.0,0.7866666666666667,3,27 -pepper,0.7416666666666666,1.0,0.6,0.7166666666666667,1,26 -wheat,0.71,1.0,0.6499999999999999,0.75,1,26 -kleenex,0.8099999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -toothbrush,0.6183333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -binder,0.7183333333333334,1.0,0.6499999999999999,0.75,1,26 -baseball,0.4966666666666666,1.0,0.5166666666666666,0.65,1,26 -pliers,0.5633333333333332,1.0,0.4999999999999999,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.45166666666666666,1.0,0.4499999999999999,0.6,1,26 -thins,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -package,0.5466666666666666,0.95,0.5666666666666667,0.65,1,26 -k,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -jelly,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.6666666666666666,0.5333333333333333,0.9333333333333332,0.6566666666666666,2,25 -apple,0.5549999999999999,0.9,0.6166666666666666,0.65,1,25 -bell,0.6649999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -battery,0.8066666666666666,1.0,0.6333333333333333,0.75,1,26 -jar,0.7916666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -bound,0.6416666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -lettuce,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -brush,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -scissors,0.9333333333333332,1.0,0.9,0.9333333333333332,1,26 -lime,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,25 -toothpaste,0.4583333333333333,1.0,0.4833333333333334,0.6166666666666666,1,26 -top,0.655,1.0,0.5333333333333333,0.6666666666666667,1,26 -spiral,0.625,1.0,0.5833333333333333,0.7,1,26 -handles,0.5466666666666666,1.0,0.4999999999999999,0.6333333333333333,1,25 -camera,0.5666666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -eraser,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -pitcher,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -phone,0.8,1.0,0.7166666666666666,0.8,1,26 -stick,0.8400000000000001,1.0,0.7833333333333333,0.85,1,25 -cereal,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -bulb,0.8733333333333334,1.0,0.8333333333333333,0.9,2,26 -hair,0.7216666666666667,1.0,0.6,0.7166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.4833333333333333,1.0,0.5166666666666666,0.65,1,26 -can,0.905,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.755,1.0,0.7,0.7833333333333333,1,26 -crackers,0.6466666666666667,1.0,0.6833333333333332,0.7666666666666666,1,26 -plate,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,25 -calculator,0.48,0.6,0.6333333333333333,0.5466666666666667,1,26 -tissues,0.5966666666666667,1.0,0.5166666666666666,0.65,1,26 -juice,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.7066666666666667,1.0,0.6666666666666666,0.7666666666666666,1,25 -lemon,0.7083333333333333,1.0,0.5833333333333333,0.7,1,26 -peach,0.73,1.0,0.5333333333333333,0.6833333333333333,1,26 -bowl,0.735,1.0,0.6499999999999999,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -blue,0.65,1.0,0.6333333333333333,0.7333333333333333,1,25 -used,0.6233333333333333,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.6666666666666666,1.0,0.6833333333333332,0.7666666666666666,1,26 -ball,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.705,1.0,0.6,0.7166666666666667,1,26 -garlic,0.7216666666666667,1.0,0.6,0.7166666666666667,1,26 -cleaning,0.6666666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -pair,0.95,1.0,0.9333333333333332,0.96,2,26 -container,0.7466666666666666,1.0,0.6833333333333333,0.7666666666666667,1,25 -tomato,0.5700000000000001,0.75,0.6833333333333333,0.6166666666666667,1,26 -cellphone,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -potato,0.875,1.0,0.8333333333333333,0.8833333333333332,1,25 -light,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,0.95,0.8833333333333332,1.0,0.9266666666666667,3,24 -bottle,0.9266666666666665,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.6510956790123457 -F1-Score: 0.6882848324514993 -Precision: 0.8992283950617284 -Recall: 0.6143518518518519 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.885,1.0,0.7833333333333333,0.85,1,24 -keyboard,0.63,1.0,0.6,0.7166666666666666,1,26 -glue,0.725,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.71,1.0,0.7,0.7833333333333333,1,26 -flashlight,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -cup,0.5283333333333333,0.5,0.65,0.5366666666666666,1,26 -folded,0.45,1.0,0.5333333333333332,0.65,1,26 -jam,0.7416666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -black,0.9066666666666668,0.7666666666666666,1.0,0.8466666666666667,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.3333333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -soccer,0.5549999999999999,1.0,0.5833333333333333,0.7,1,26 -hat,0.5599999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -brown,0.9416666666666667,1.0,0.9333333333333332,0.96,2,24 -coffee,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -handle,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -food,0.4216666666666667,1.0,0.4999999999999999,0.6333333333333333,1,24 -towel,0.4966666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -chips,0.775,1.0,0.7,0.7833333333333333,1,26 -stapler,0.7333333333333334,1.0,0.7,0.7833333333333333,1,26 -onion,0.4600000000000001,0.95,0.4333333333333334,0.55,1,26 -bag,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -sponge,0.6983333333333334,1.0,0.6,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -special,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -colgate,0.78,1.0,0.7166666666666666,0.8,1,26 -leaf,0.7333333333333333,1.0,0.7999999999999999,0.85,1,26 -tube,0.8216666666666665,1.0,0.7166666666666666,0.8,1,26 -cell,0.7416666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -mug,0.735,1.0,0.6,0.7166666666666667,1,25 -yogurt,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -plantain,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.5716666666666665,1.0,0.5166666666666666,0.65,1,26 -wheat,0.5466666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -kleenex,0.7466666666666666,1.0,0.65,0.75,1,26 -toothbrush,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -binder,0.5666666666666667,1.0,0.6666666666666666,0.75,1,26 -baseball,0.5766666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -pliers,0.7216666666666667,1.0,0.5666666666666667,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.5716666666666665,1.0,0.5333333333333333,0.6666666666666667,1,26 -thins,0.6900000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -package,0.7816666666666666,1.0,0.6333333333333333,0.75,1,26 -k,0.76,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.8083333333333332,1.0,0.6833333333333333,0.7833333333333334,1,26 -fruit,0.825,0.8833333333333332,0.8666666666666666,0.8466666666666667,2,26 -apple,0.6433333333333333,1.0,0.6,0.7166666666666667,1,25 -bell,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -battery,0.6516666666666666,1.0,0.5,0.65,1,26 -jar,0.6316666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -bound,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.63,1.0,0.6833333333333333,0.7666666666666666,1,26 -brush,0.6749999999999999,1.0,0.6499999999999999,0.75,1,26 -scissors,0.7083333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -lime,0.53,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666668,1,26 -top,0.6900000000000001,1.0,0.5666666666666667,0.7,1,26 -spiral,0.5633333333333332,1.0,0.4833333333333333,0.6333333333333333,1,26 -handles,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,25 -camera,0.6183333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.755,1.0,0.7666666666666666,0.8333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.8766666666666667,0.7333333333333333,1.0,0.8266666666666665,5,21 -banana,0.58,1.0,0.6333333333333333,0.7333333333333333,1,26 -pitcher,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -phone,0.7566666666666666,1.0,0.65,0.75,1,26 -stick,0.7083333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -cereal,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -bulb,0.9550000000000001,1.0,0.9333333333333332,0.96,2,27 -hair,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.4216666666666666,1.0,0.38333333333333336,0.55,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -coca,0.6133333333333333,1.0,0.6499999999999999,0.75,1,26 -crackers,0.8150000000000001,1.0,0.6333333333333333,0.75,1,26 -plate,0.7166666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -calculator,0.49833333333333335,0.6,0.6833333333333333,0.5633333333333334,1,26 -tissues,0.5,1.0,0.5999999999999999,0.7,1,26 -juice,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -pink,0.6016666666666667,1.0,0.4833333333333334,0.6333333333333333,1,25 -lemon,0.7150000000000001,1.0,0.5999999999999999,0.7166666666666666,1,26 -peach,0.525,1.0,0.6166666666666666,0.7166666666666666,1,26 -bowl,0.605,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8833333333333332,1.0,0.8333333333333333,0.8833333333333332,1,26 -blue,0.7883333333333333,0.85,0.7333333333333333,0.7166666666666667,1,25 -used,0.605,1.0,0.5666666666666667,0.6833333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.61,1.0,0.5833333333333333,0.7,1,26 -ball,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -garlic,0.755,1.0,0.65,0.75,1,26 -cleaning,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -pair,0.835,1.0,0.8,0.8800000000000001,2,27 -container,0.7333333333333333,1.0,0.6666666666666666,0.75,1,26 -tomato,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cellphone,0.735,1.0,0.7166666666666666,0.8,1,26 -potato,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -light,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,26 -green,0.95,0.8833333333333332,1.0,0.9266666666666665,3,24 -bottle,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.6531327160493826 -F1-Score: 0.6978703703703704 -Precision: 0.9084876543209878 -Recall: 0.6195987654320987 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.45,1.0,0.4833333333333334,0.6166666666666666,1,24 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.65,0.95,0.7,0.75,1,24 -keyboard,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -glue,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333334,1,26 -milk,0,0,0,0,1,26 -cola,0.655,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.5583333333333333,1.0,0.5833333333333333,0.7,1,26 -cup,0.24,0.4666666666666666,0.45,0.43000000000000005,1,26 -folded,0.6599999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -jam,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -black,0.8533333333333333,0.675,1.0,0.7923809523809524,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6316666666666666,1.0,0.55,0.6833333333333333,1,26 -soccer,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -hat,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -brown,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -coffee,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666667,1,25 -handle,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -food,0.64,1.0,0.4999999999999999,0.65,1,25 -towel,0.7216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.625,1.0,0.4999999999999999,0.65,1,26 -stapler,0.7466666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -onion,0.5533333333333333,0.75,0.6499999999999999,0.6,1,26 -bag,0.7116666666666667,1.0,0.55,0.6833333333333333,1,26 -sponge,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -special,0.6599999999999999,1.0,0.6,0.7166666666666667,1,26 -colgate,0.7733333333333333,1.0,0.6,0.7333333333333334,1,26 -leaf,0.46333333333333326,1.0,0.5499999999999999,0.6666666666666666,1,26 -tube,0.7183333333333333,1.0,0.6,0.7166666666666667,1,26 -cell,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -mug,0.5650000000000001,1.0,0.4833333333333332,0.6333333333333333,1,25 -yogurt,0.5666666666666667,1.0,0.5999999999999999,0.7,1,26 -plantain,0.7466666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -red,0.8483333333333334,0.6916666666666667,1.0,0.8038095238095238,3,25 -pepper,0.775,1.0,0.8166666666666667,0.8666666666666666,1,26 -wheat,0.7266666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -kleenex,0.635,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.6649999999999999,1.0,0.6,0.7166666666666667,1,26 -binder,0.9100000000000001,1.0,0.8333333333333333,0.8833333333333332,1,26 -baseball,0.7066666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -pliers,0.5583333333333333,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -thins,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -package,0.775,1.0,0.6333333333333333,0.75,1,26 -k,0.6599999999999999,1.0,0.6,0.7166666666666667,1,26 -jelly,0.6799999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -fruit,0.7116666666666667,0.6333333333333333,0.8666666666666666,0.7066666666666667,2,25 -apple,0.6416666666666666,1.0,0.5166666666666666,0.65,1,25 -bell,0.7166666666666666,1.0,0.7166666666666666,0.8,1,26 -battery,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -jar,0.625,1.0,0.5833333333333333,0.7,1,26 -bound,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.8083333333333332,1.0,0.75,0.8166666666666667,1,26 -brush,0.71,1.0,0.7,0.7833333333333333,1,26 -scissors,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -lime,0.63,1.0,0.5666666666666667,0.6833333333333333,1,25 -toothpaste,0.775,1.0,0.7666666666666666,0.8333333333333333,1,26 -top,0.6916666666666667,1.0,0.55,0.6833333333333333,1,26 -spiral,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.7983333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -camera,0.78,1.0,0.6333333333333333,0.75,1,26 -eraser,0.4666666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5683333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -pitcher,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.6,1.0,0.5499999999999999,0.6833333333333333,1,26 -stick,0.65,1.0,0.5666666666666667,0.7,1,25 -cereal,0.7849999999999999,1.0,0.6499999999999999,0.75,1,26 -bulb,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -hair,0.7216666666666666,1.0,0.7,0.7833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8,1.0,0.5833333333333333,0.7166666666666666,1,26 -can,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -coca,0.7249999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -crackers,0.755,1.0,0.7166666666666666,0.8,1,26 -plate,0.5966666666666667,1.0,0.4833333333333332,0.6333333333333333,1,24 -calculator,0.6766666666666666,0.9,0.6166666666666666,0.6666666666666667,1,26 -tissues,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -juice,0.6,1.0,0.7333333333333333,0.8,1,26 -pink,0.7266666666666667,1.0,0.5833333333333333,0.7166666666666667,1,25 -lemon,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -peach,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -bowl,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8266666666666668,1.0,0.7666666666666666,0.8333333333333333,1,26 -blue,0.6516666666666666,0.9,0.5666666666666667,0.65,1,25 -used,0.5633333333333332,1.0,0.6166666666666666,0.7166666666666667,1,23 -energizer,0,0,0,0,1,26 -pear,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -ball,0.71,1.0,0.7,0.7833333333333333,1,25 -notebook,0.5966666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -garlic,0.5966666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -cleaning,0.6383333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -pair,0.8300000000000001,1.0,0.8,0.8800000000000001,2,27 -container,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -tomato,0.6083333333333334,0.5,0.7166666666666666,0.5633333333333334,1,26 -cellphone,0.905,1.0,0.8333333333333333,0.8833333333333332,1,26 -potato,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -light,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,25 -green,0.85,0.7166666666666667,1.0,0.8247619047619048,3,24 -bottle,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.6523456790123454 -F1-Score: 0.688342151675485 -Precision: 0.8998456790123457 -Recall: 0.6106481481481482 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.73,1.0,0.7166666666666666,0.8,1,25 -yellow,0.95,0.85,1.0,0.9,6,25 -looks,0.5333333333333333,0.9,0.5666666666666667,0.6166666666666667,1,24 -keyboard,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -glue,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.6516666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -flashlight,0.6733333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -cup,0.52,0.5,0.7,0.5533333333333335,1,26 -folded,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666667,1,26 -jam,0.6466666666666666,1.0,0.6,0.7166666666666667,1,26 -black,0.8966666666666667,0.7333333333333333,1.0,0.8266666666666668,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5366666666666667,1.0,0.4833333333333332,0.6333333333333333,1,26 -soccer,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -hat,0.5483333333333333,1.0,0.4499999999999999,0.6166666666666667,1,26 -brown,0.95,1.0,0.9333333333333332,0.96,2,24 -coffee,0.5166666666666666,1.0,0.5999999999999999,0.7,1,25 -handle,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -food,0.6166666666666666,1.0,0.5333333333333333,0.6666666666666666,1,25 -towel,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -chips,0.63,1.0,0.5833333333333333,0.7,1,26 -stapler,0.635,1.0,0.5999999999999999,0.7166666666666666,1,26 -onion,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -bag,0.6666666666666666,1.0,0.6666666666666666,0.75,1,26 -sponge,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,25 -special,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -colgate,0.7133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.5883333333333334,1.0,0.45,0.6166666666666667,1,26 -tube,0.6983333333333334,1.0,0.5666666666666667,0.7,1,26 -cell,0.6266666666666667,0.5,0.75,0.5833333333333333,1,26 -mug,0.7216666666666667,1.0,0.7166666666666666,0.8,1,25 -yogurt,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -plantain,0.5533333333333333,1.0,0.4333333333333334,0.6,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -wheat,0.6416666666666667,1.0,0.6,0.7166666666666667,1,26 -kleenex,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -toothbrush,0.5516666666666666,1.0,0.5166666666666666,0.65,1,26 -binder,0.725,1.0,0.6166666666666666,0.7333333333333333,1,26 -baseball,0.75,1.0,0.7166666666666666,0.8,1,26 -pliers,0.8233333333333333,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -thins,0.5833333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -package,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -k,0.7249999999999999,1.0,0.7,0.7833333333333333,1,26 -jelly,0.6833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -fruit,0.7933333333333333,0.8333333333333334,0.8666666666666666,0.8200000000000001,2,25 -apple,0.605,1.0,0.4666666666666666,0.6166666666666667,1,25 -bell,0.7966666666666666,1.0,0.7,0.7833333333333333,1,26 -battery,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -jar,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -bound,0.6266666666666667,1.0,0.55,0.6833333333333333,1,26 -lettuce,0.4833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -brush,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -scissors,0.6433333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -lime,0.63,1.0,0.6333333333333333,0.7333333333333333,1,25 -toothpaste,0.51,1.0,0.4666666666666666,0.6166666666666667,1,26 -top,0.6716666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -spiral,0.8800000000000001,1.0,0.8,0.8666666666666666,1,26 -handles,0.8333333333333333,1.0,0.8666666666666666,0.9,1,25 -camera,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -eraser,0.7216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.6416666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -pitcher,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -phone,0.53,0.5,0.6833333333333333,0.5433333333333334,1,26 -stick,0.525,1.0,0.5666666666666667,0.6833333333333333,1,25 -cereal,0.7899999999999999,1.0,0.7166666666666666,0.8,1,26 -bulb,0.9400000000000001,1.0,0.9,0.9400000000000001,2,26 -hair,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7899999999999999,1.0,0.6833333333333333,0.7833333333333334,1,26 -can,0.9166666666666666,1.0,0.9,0.9400000000000001,2,24 -coca,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -crackers,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -plate,0.6666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,25 -calculator,0.6466666666666667,0.95,0.6333333333333332,0.7,1,26 -tissues,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -juice,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -pink,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -lemon,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -peach,0.6966666666666665,1.0,0.6833333333333333,0.7666666666666666,1,26 -bowl,0.6166666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -blue,0.705,1.0,0.7,0.7833333333333333,1,25 -used,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.85,1.0,0.7333333333333333,0.8166666666666667,1,26 -ball,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -garlic,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -cleaning,0.5,1.0,0.5999999999999999,0.7,1,26 -pair,0.8583333333333332,1.0,0.8333333333333334,0.9000000000000001,2,27 -container,0.5999999999999999,1.0,0.5333333333333332,0.6666666666666666,1,25 -tomato,0.6599999999999999,0.95,0.65,0.7333333333333333,1,26 -cellphone,0.5566666666666668,0.55,0.75,0.5800000000000001,1,26 -potato,0.9466666666666667,1.0,0.9,0.9333333333333332,1,25 -light,0.9266666666666665,1.0,0.9,0.9400000000000001,2,25 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,22 -bottle,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.6618055555555555 -F1-Score: 0.6985802469135803 -Precision: 0.9001543209876544 -Recall: 0.6257716049382717 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6166666666666666,1.0,0.6,0.7166666666666667,1,24 -yellow,0.9500000000000002,0.85,1.0,0.8999999999999998,6,25 -looks,0.7716666666666667,0.9,0.7666666666666666,0.7666666666666667,1,24 -keyboard,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.73,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -cup,0.34,0.5,0.6333333333333333,0.5266666666666666,1,26 -folded,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -jam,0.5933333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.9133333333333334,0.7916666666666666,1.0,0.8657142857142859,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.875,1.0,0.8333333333333333,0.8833333333333332,1,26 -soccer,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -hat,0.8016666666666665,1.0,0.65,0.7666666666666667,1,26 -brown,1.0,1.0,1.0,1.0,2,24 -coffee,0.6883333333333332,1.0,0.5666666666666667,0.7,1,26 -handle,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -food,0.6849999999999999,1.0,0.5333333333333333,0.6666666666666667,1,25 -towel,0.5216666666666667,1.0,0.5,0.6333333333333333,1,26 -chips,0.6966666666666665,1.0,0.5833333333333333,0.7,1,26 -stapler,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -onion,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.8566666666666667,1.0,0.7,0.8,1,26 -sponge,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.6916666666666667,1.0,0.65,0.75,1,25 -special,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -colgate,0.6666666666666666,1.0,0.65,0.75,1,26 -leaf,0.7216666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -tube,0.8816666666666666,1.0,0.75,0.8333333333333333,1,26 -cell,0.5466666666666666,0.5,0.6166666666666666,0.53,1,26 -mug,0.7416666666666666,1.0,0.75,0.8166666666666667,1,26 -yogurt,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -plantain,0.6266666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -red,0.9466666666666667,0.85,1.0,0.8999999999999998,3,25 -pepper,0.5,1.0,0.5166666666666666,0.65,1,26 -wheat,0.7966666666666666,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.4916666666666666,1.0,0.4499999999999999,0.6,1,26 -toothbrush,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -binder,0.85,1.0,0.75,0.8333333333333333,1,26 -baseball,0.675,1.0,0.6,0.7166666666666667,1,26 -pliers,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.8483333333333334,1.0,0.7,0.8,1,26 -thins,0.7266666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -package,0.6599999999999999,1.0,0.65,0.75,1,26 -k,0.7166666666666666,1.0,0.7166666666666666,0.8,1,26 -jelly,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -fruit,0.7816666666666666,0.8,0.8666666666666668,0.7833333333333334,2,27 -apple,0.5833333333333333,0.95,0.4999999999999999,0.6166666666666667,1,25 -bell,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -battery,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -jar,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -bound,0.8800000000000001,1.0,0.8833333333333332,0.9166666666666666,1,26 -lettuce,0.655,1.0,0.5499999999999999,0.6833333333333333,1,26 -brush,0.6433333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -scissors,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -lime,0.5633333333333332,1.0,0.5166666666666666,0.65,1,25 -toothpaste,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -top,0.6566666666666666,1.0,0.5833333333333333,0.7,1,26 -spiral,0.5,1.0,0.4833333333333333,0.6166666666666666,1,26 -handles,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -camera,0.5633333333333332,1.0,0.6166666666666666,0.7166666666666666,1,26 -eraser,0.6249999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.73,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.7716666666666666,1.0,0.6333333333333333,0.75,1,26 -phone,0.445,0.5,0.6333333333333333,0.5266666666666667,1,26 -stick,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -cereal,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -bulb,0.86,1.0,0.8333333333333334,0.9000000000000001,2,26 -hair,0.7566666666666666,1.0,0.65,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7716666666666667,1.0,0.7,0.7833333333333333,1,26 -can,0.8916666666666666,1.0,0.8666666666666668,0.9200000000000002,2,25 -coca,0.8,1.0,0.7166666666666666,0.8,1,26 -crackers,0.6566666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -plate,0.5166666666666666,1.0,0.4666666666666666,0.6166666666666666,1,24 -calculator,0.6050000000000001,0.9,0.5833333333333333,0.6333333333333333,1,26 -tissues,0.7166666666666667,1.0,0.7,0.7833333333333333,1,26 -juice,0.8150000000000001,1.0,0.6833333333333333,0.7833333333333333,1,26 -pink,0.5666666666666667,1.0,0.5999999999999999,0.7,1,25 -lemon,0.675,1.0,0.65,0.75,1,26 -peach,0.6849999999999999,1.0,0.5833333333333333,0.7,1,26 -bowl,0.6716666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -blue,0.6683333333333333,1.0,0.55,0.6833333333333333,1,25 -used,0.7266666666666667,1.0,0.6499999999999999,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.5466666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -ball,0.705,1.0,0.6166666666666666,0.7333333333333333,1,25 -notebook,0.58,1.0,0.5166666666666666,0.65,1,26 -garlic,0.6383333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -cleaning,0.6883333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -pair,0.9,1.0,0.9,0.9400000000000001,2,27 -container,0.8,1.0,0.7833333333333333,0.85,1,25 -tomato,0.49333333333333335,0.9,0.5666666666666667,0.6333333333333333,1,26 -cellphone,0.5966666666666667,0.5,0.7666666666666666,0.5800000000000001,1,26 -potato,0.7516666666666667,1.0,0.6499999999999999,0.75,1,25 -light,0.9099999999999999,1.0,0.8666666666666668,0.9200000000000002,2,25 -green,0.95,0.8666666666666666,1.0,0.9133333333333333,3,24 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.6613425925925926 -F1-Score: 0.693664021164021 -Precision: 0.8963734567901234 -Recall: 0.620216049382716 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6633333333333333,1.0,0.6499999999999999,0.75,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.5883333333333333,1.0,0.45,0.6,1,24 -keyboard,0.6883333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -glue,0.6766666666666666,1.0,0.5666666666666667,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.4499999999999999,1.0,0.5333333333333333,0.65,1,26 -flashlight,0.8133333333333332,1.0,0.7333333333333333,0.8166666666666668,1,26 -cup,0.45999999999999996,0.5,0.6,0.52,1,26 -folded,0.8333333333333334,1.0,0.7833333333333333,0.85,1,26 -jam,0.7333333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -black,0.905,0.8083333333333332,1.0,0.8790476190476191,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6833333333333333,1.0,0.7333333333333333,0.8,1,26 -soccer,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -hat,0.655,1.0,0.5833333333333333,0.7,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,25 -coffee,0.6749999999999999,1.0,0.5833333333333333,0.7,1,26 -handle,0.7016666666666667,1.0,0.6,0.7166666666666667,1,25 -food,0.7,1.0,0.65,0.75,1,26 -towel,0.5733333333333334,1.0,0.5166666666666666,0.65,1,26 -chips,0.6416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.6516666666666666,1.0,0.5,0.65,1,26 -onion,0.65,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -sponge,0.8383333333333335,1.0,0.7666666666666666,0.8333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.515,1.0,0.4833333333333333,0.6333333333333333,1,25 -special,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -colgate,0.7266666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -leaf,0.665,1.0,0.55,0.6833333333333333,1,26 -tube,0.635,1.0,0.6,0.7166666666666667,1,26 -cell,0.495,0.55,0.7,0.5633333333333332,1,26 -mug,0.7483333333333333,1.0,0.6,0.7166666666666667,1,26 -yogurt,0.675,1.0,0.6,0.7166666666666667,1,26 -plantain,0.6866666666666668,1.0,0.5333333333333333,0.6666666666666666,1,26 -red,0.93,0.8333333333333333,1.0,0.8933333333333333,3,25 -pepper,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -wheat,0.825,1.0,0.7166666666666666,0.8,1,26 -kleenex,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.5416666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -binder,0.775,1.0,0.7333333333333333,0.8166666666666667,1,26 -baseball,0.5933333333333333,1.0,0.5166666666666666,0.65,1,26 -pliers,0.6566666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8099999999999999,1.0,0.65,0.7666666666666666,1,26 -thins,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -package,0.7733333333333332,1.0,0.6166666666666666,0.7333333333333334,1,26 -k,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -jelly,0.8,1.0,0.7166666666666666,0.8,1,26 -fruit,0.7649999999999999,0.7666666666666666,0.8333333333333333,0.76,2,26 -apple,0.6916666666666667,0.5,0.8,0.6,1,25 -bell,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -battery,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -jar,0.5166666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -bound,0.8266666666666668,1.0,0.6833333333333333,0.7833333333333333,1,26 -lettuce,0.63,1.0,0.5833333333333333,0.7,1,26 -brush,0.6133333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -scissors,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -lime,0.705,1.0,0.6499999999999999,0.75,1,25 -toothpaste,0.6749999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -top,0.6066666666666667,1.0,0.55,0.6833333333333333,1,26 -spiral,0.7083333333333334,1.0,0.6499999999999999,0.75,1,26 -handles,0.6666666666666666,1.0,0.5833333333333333,0.7,1,25 -camera,0.705,1.0,0.5666666666666667,0.7,1,26 -eraser,0.7666666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.74,1.0,0.5666666666666667,0.7,1,26 -pitcher,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -phone,0.46333333333333326,0.55,0.55,0.5133333333333333,1,26 -stick,0.825,1.0,0.8166666666666667,0.8666666666666666,1,25 -cereal,0.775,1.0,0.7,0.7833333333333333,1,26 -bulb,0.95,1.0,0.9333333333333332,0.96,2,27 -hair,0.6766666666666666,1.0,0.4999999999999999,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6166666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,0.8733333333333334,1.0,0.8333333333333333,0.9,2,24 -coca,0.7416666666666667,1.0,0.65,0.75,1,26 -crackers,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -plate,0.6599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -calculator,0.6666666666666667,0.9,0.6499999999999999,0.6833333333333333,1,26 -tissues,0.6483333333333333,1.0,0.55,0.6833333333333333,1,26 -juice,0.7466666666666667,1.0,0.65,0.75,1,26 -pink,0.4833333333333334,1.0,0.5666666666666667,0.6833333333333333,1,25 -lemon,0.7416666666666666,1.0,0.6499999999999999,0.75,1,26 -peach,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -bowl,0.61,1.0,0.5333333333333333,0.6666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6466666666666667,1.0,0.6,0.7166666666666667,1,26 -blue,0.6916666666666667,1.0,0.6166666666666666,0.7166666666666666,1,25 -used,0.6783333333333333,1.0,0.55,0.6833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.7016666666666665,1.0,0.6499999999999999,0.75,1,26 -ball,0.6933333333333334,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.6449999999999999,1.0,0.4333333333333333,0.6,1,26 -garlic,0.5933333333333334,1.0,0.55,0.6833333333333333,1,26 -cleaning,0.53,1.0,0.4833333333333333,0.6333333333333333,1,26 -pair,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.6966666666666667,1.0,0.5833333333333333,0.7,1,25 -tomato,0.5766666666666667,0.9,0.5666666666666667,0.6166666666666666,1,26 -cellphone,0.49000000000000005,0.55,0.65,0.5466666666666666,1,26 -potato,0.6799999999999999,1.0,0.5499999999999999,0.6833333333333333,1,25 -light,0.915,1.0,0.8666666666666666,0.9200000000000002,2,26 -green,0.9466666666666667,0.8666666666666666,1.0,0.9133333333333333,3,23 -bottle,0.8216666666666667,1.0,0.8,0.8800000000000001,2,26 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.6596913580246915 -F1-Score: 0.6867195767195767 -Precision: 0.8956018518518518 -Recall: 0.6100308641975306 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7,1.0,0.6166666666666666,0.7166666666666666,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.6916666666666667,0.95,0.7,0.75,1,24 -keyboard,0.3416666666666667,1.0,0.45,0.6,1,26 -glue,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.6583333333333333,1.0,0.55,0.6833333333333333,1,26 -flashlight,0.755,1.0,0.7,0.7833333333333333,1,26 -cup,0.37,0.5,0.4833333333333333,0.47666666666666674,1,26 -folded,0.48,1.0,0.38333333333333336,0.55,1,26 -jam,0.6016666666666667,1.0,0.55,0.6833333333333333,1,26 -black,0.9633333333333335,0.9166666666666666,1.0,0.9466666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -soccer,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -hat,0.7633333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -coffee,0.5083333333333333,1.0,0.5,0.6333333333333333,1,26 -handle,0.6916666666666667,1.0,0.6,0.7166666666666667,1,26 -food,0.7333333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -towel,0.7166666666666666,1.0,0.7166666666666666,0.8,1,26 -chips,0.5933333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -stapler,0.71,1.0,0.7,0.7833333333333333,1,26 -onion,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bag,0.8583333333333332,1.0,0.7833333333333333,0.85,1,26 -sponge,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.835,1.0,0.7166666666666666,0.8,1,25 -special,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -colgate,0.5066666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -leaf,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -tube,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.5249999999999999,0.5,0.6666666666666666,0.5466666666666666,1,26 -mug,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -yogurt,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -plantain,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -red,0.9833333333333334,0.95,1.0,0.9666666666666666,3,27 -pepper,0.6933333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -wheat,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -kleenex,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -toothbrush,0.9216666666666666,1.0,0.85,0.9,1,26 -binder,0.5133333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -baseball,0.75,1.0,0.7499999999999999,0.8166666666666667,1,26 -pliers,0.9800000000000001,1.0,0.95,0.9666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -thins,0.73,1.0,0.7,0.7833333333333333,1,26 -package,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -fruit,0.8933333333333333,0.8833333333333332,0.9333333333333332,0.8866666666666667,2,26 -apple,0.6966666666666667,0.85,0.6666666666666666,0.6666666666666667,1,25 -bell,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -battery,0.85,1.0,0.7833333333333333,0.85,1,26 -jar,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.6666666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -lettuce,0.5433333333333333,1.0,0.5,0.65,1,26 -brush,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -scissors,0.625,1.0,0.5833333333333333,0.7,1,26 -lime,0.65,1.0,0.6,0.7166666666666666,1,25 -toothpaste,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -top,0.5216666666666666,1.0,0.4333333333333334,0.5833333333333333,1,26 -spiral,0.915,1.0,0.8,0.8666666666666666,1,26 -handles,0.5966666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.7983333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -eraser,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,23 -banana,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -pitcher,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -phone,0.6283333333333333,0.5,0.8333333333333333,0.6066666666666667,1,26 -stick,0.575,1.0,0.5833333333333333,0.7,1,25 -cereal,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -bulb,0.8833333333333332,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.6983333333333334,1.0,0.5499999999999999,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.63,1.0,0.5499999999999999,0.6833333333333333,1,26 -can,0.9266666666666667,1.0,0.9,0.9400000000000001,2,26 -coca,0.7133333333333333,1.0,0.75,0.8166666666666667,1,26 -crackers,0.775,1.0,0.7,0.7833333333333333,1,26 -plate,0.5883333333333333,1.0,0.5833333333333333,0.7,1,25 -calculator,0.6199999999999999,0.65,0.6833333333333333,0.6,1,26 -tissues,0.7433333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -juice,0.765,1.0,0.55,0.7,1,26 -pink,0.5149999999999999,1.0,0.4666666666666666,0.6166666666666667,1,25 -lemon,0.5716666666666667,1.0,0.5,0.6333333333333333,1,26 -peach,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -bowl,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -blue,0.6066666666666667,1.0,0.5166666666666666,0.6666666666666667,1,25 -used,0.6666666666666666,1.0,0.5499999999999999,0.6833333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.7016666666666667,1.0,0.6499999999999999,0.75,1,26 -ball,0.46333333333333326,1.0,0.4166666666666667,0.5833333333333333,1,25 -notebook,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -garlic,0.48999999999999994,1.0,0.4666666666666666,0.6166666666666667,1,26 -cleaning,0.6966666666666667,1.0,0.7,0.7833333333333333,1,26 -pair,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -container,0.6083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,25 -tomato,0.5666666666666667,0.85,0.6666666666666666,0.65,1,26 -cellphone,0.4666666666666667,0.55,0.6499999999999999,0.5466666666666667,1,26 -potato,0.6716666666666666,1.0,0.6499999999999999,0.75,1,25 -light,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,24 -bottle,0.8633333333333333,1.0,0.8333333333333333,0.9,2,27 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.6518981481481482 -F1-Score: 0.6913580246913581 -Precision: 0.8986111111111111 -Recall: 0.614969135802469 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7216666666666667,1.0,0.5999999999999999,0.7166666666666666,1,25 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.7249999999999999,1.0,0.6166666666666666,0.7333333333333333,1,24 -keyboard,0.4883333333333333,1.0,0.5,0.6333333333333333,1,26 -glue,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7733333333333333,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -cup,0.3466666666666667,0.5,0.6666666666666666,0.5333333333333334,1,26 -folded,0.58,1.0,0.5166666666666666,0.65,1,26 -jam,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.9099999999999999,0.825,1.0,0.8923809523809523,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6433333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -soccer,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -hat,0.625,1.0,0.5833333333333333,0.7,1,26 -brown,0.915,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -handle,0.6683333333333332,1.0,0.65,0.75,1,26 -food,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -towel,0.5683333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -chips,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -stapler,0.7016666666666665,1.0,0.6166666666666666,0.7333333333333334,1,26 -onion,0.6766666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -bag,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -sponge,0.6566666666666666,1.0,0.5666666666666667,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.805,1.0,0.7166666666666666,0.8,1,25 -special,0.73,1.0,0.6333333333333333,0.75,1,26 -colgate,0.6933333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -leaf,0.5499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.6799999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -cell,0.335,0.6,0.4833333333333333,0.4966666666666667,1,26 -mug,0.7499999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -yogurt,0.5516666666666666,1.0,0.4166666666666667,0.5833333333333333,1,26 -plantain,0.3933333333333333,1.0,0.4499999999999999,0.6,1,26 -red,0.9266666666666667,0.8333333333333333,1.0,0.8933333333333333,3,24 -pepper,0.7166666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -wheat,0.5666666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -kleenex,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -toothbrush,0.7466666666666667,1.0,0.5666666666666667,0.7,1,25 -binder,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -baseball,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -pliers,0.5216666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.75,1.0,0.65,0.75,1,26 -thins,0.5166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -package,0.525,1.0,0.6166666666666666,0.7166666666666666,1,26 -k,0.7116666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -jelly,0.5083333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -fruit,0.7849999999999999,0.7833333333333333,0.8666666666666666,0.78,2,25 -apple,0.8216666666666667,0.95,0.7666666666666666,0.8,1,25 -bell,0.825,1.0,0.8166666666666667,0.8666666666666666,1,26 -battery,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -jar,0.6266666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -bound,0.5016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -lettuce,0.6933333333333332,1.0,0.5666666666666667,0.7,1,26 -brush,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.76,1.0,0.6666666666666666,0.7666666666666666,1,26 -lime,0.5433333333333332,1.0,0.5666666666666667,0.6833333333333333,1,25 -toothpaste,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -top,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -spiral,0.575,1.0,0.5833333333333333,0.7,1,26 -handles,0.53,1.0,0.4666666666666666,0.6166666666666666,1,25 -camera,0.7783333333333333,1.0,0.5833333333333333,0.7166666666666666,1,26 -eraser,0.7,1.0,0.7,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.8016666666666667,0.5416666666666666,1.0,0.699047619047619,5,22 -banana,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -pitcher,0.725,1.0,0.6166666666666666,0.7333333333333334,1,26 -phone,0.38333333333333336,0.55,0.5166666666666666,0.49333333333333335,1,26 -stick,0.6916666666666667,1.0,0.6499999999999999,0.75,1,25 -cereal,0.4583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -bulb,0.9099999999999999,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.55,1.0,0.4666666666666666,0.6166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7283333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -can,0.8683333333333334,1.0,0.8333333333333333,0.9,2,24 -coca,0.6166666666666666,1.0,0.6666666666666666,0.75,1,26 -crackers,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -plate,0.7233333333333334,1.0,0.6499999999999999,0.75,1,25 -calculator,0.4966666666666666,0.9,0.5166666666666666,0.5833333333333333,1,26 -tissues,0.6466666666666667,1.0,0.5166666666666666,0.65,1,26 -juice,0.7816666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -pink,0.73,1.0,0.7,0.7833333333333333,1,25 -lemon,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -peach,0.6016666666666667,1.0,0.5166666666666666,0.65,1,26 -bowl,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6216666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -blue,0.6566666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -used,0.7,1.0,0.6499999999999999,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -ball,0.6433333333333333,1.0,0.6333333333333332,0.7333333333333333,1,25 -notebook,0.6883333333333334,1.0,0.65,0.75,1,26 -garlic,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -cleaning,0.6633333333333333,1.0,0.55,0.6833333333333333,1,26 -pair,0.915,1.0,0.8666666666666666,0.9199999999999999,2,26 -container,0.605,1.0,0.4833333333333332,0.6333333333333333,1,25 -tomato,0.5599999999999999,0.9,0.5,0.5666666666666667,1,26 -cellphone,0.475,0.5,0.5999999999999999,0.52,1,26 -potato,0.8850000000000001,1.0,0.7833333333333333,0.85,1,25 -light,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,23 -bottle,0.8550000000000001,1.0,0.8333333333333333,0.9,2,25 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.6374537037037038 -F1-Score: 0.6772971781305116 -Precision: 0.895679012345679 -Recall: 0.5973765432098764 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5766666666666667,1.0,0.5166666666666666,0.65,1,25 -yellow,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,6,24 -looks,0.51,0.95,0.4666666666666666,0.5833333333333333,1,24 -keyboard,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -glue,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.78,1.0,0.7,0.7833333333333333,1,26 -flashlight,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.2333333333333333,0.5,0.5333333333333332,0.49333333333333335,1,26 -folded,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -jam,0.5966666666666667,1.0,0.5166666666666666,0.65,1,26 -black,0.9433333333333334,0.8666666666666666,1.0,0.9133333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -soccer,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -hat,0.645,1.0,0.5,0.65,1,26 -brown,0.9133333333333333,1.0,0.9,0.9400000000000001,2,24 -coffee,0.635,1.0,0.4833333333333333,0.6333333333333334,1,26 -handle,0.5799999999999998,1.0,0.5166666666666666,0.65,1,25 -food,0.7066666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -towel,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -chips,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -stapler,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.8266666666666668,1.0,0.7666666666666666,0.8333333333333333,1,26 -bag,0.8133333333333332,1.0,0.7833333333333333,0.85,1,26 -sponge,0.7266666666666667,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666668,1,25 -special,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -colgate,0.6666666666666666,1.0,0.6,0.7166666666666667,1,26 -leaf,0.705,1.0,0.6,0.7166666666666667,1,26 -tube,0.9083333333333332,1.0,0.85,0.8999999999999998,1,26 -cell,0.595,0.5,0.6833333333333333,0.5566666666666668,1,26 -mug,0.77,1.0,0.6166666666666666,0.7333333333333333,1,26 -yogurt,0.6499999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.6516666666666667,0.95,0.5499999999999999,0.65,1,26 -red,0.9433333333333334,0.85,1.0,0.9,3,25 -pepper,0.6766666666666666,1.0,0.6,0.7166666666666667,1,26 -wheat,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -kleenex,0.655,1.0,0.5999999999999999,0.7166666666666666,1,26 -toothbrush,0.735,1.0,0.5999999999999999,0.7166666666666666,1,26 -binder,0.725,1.0,0.7,0.7833333333333333,1,26 -baseball,0.48,1.0,0.5499999999999999,0.6666666666666666,1,26 -pliers,0.6649999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7516666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -thins,0.7666666666666666,1.0,0.7333333333333333,0.8,1,26 -package,0.51,1.0,0.4666666666666666,0.6166666666666666,1,26 -k,0.45166666666666666,1.0,0.4,0.5666666666666667,1,26 -jelly,0.73,1.0,0.7,0.7833333333333333,1,26 -fruit,0.7833333333333333,0.7666666666666666,0.8666666666666666,0.7866666666666667,2,25 -apple,0.6433333333333333,0.75,0.6666666666666666,0.6333333333333333,1,25 -bell,0.75,1.0,0.7333333333333333,0.8,1,26 -battery,0.5316666666666667,1.0,0.41666666666666663,0.5833333333333333,1,26 -jar,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.36666666666666664,1.0,0.4666666666666666,0.6,1,26 -lettuce,0.655,1.0,0.5833333333333333,0.7,1,26 -brush,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -lime,0.6883333333333334,1.0,0.6,0.7166666666666667,1,25 -toothpaste,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -top,0.775,1.0,0.7333333333333333,0.8166666666666667,1,26 -spiral,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -handles,0.6799999999999999,1.0,0.55,0.6833333333333333,1,25 -camera,0.9133333333333333,1.0,0.85,0.8999999999999998,1,26 -eraser,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7749999999999999,0.9,0.7166666666666666,0.7333333333333333,1,26 -pitcher,0.63,1.0,0.5999999999999999,0.7166666666666667,1,26 -phone,0.38833333333333336,0.5,0.5333333333333332,0.49333333333333335,1,26 -stick,0.6416666666666667,1.0,0.65,0.75,1,25 -cereal,0.6849999999999999,1.0,0.6499999999999999,0.75,1,26 -bulb,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -hair,0.5683333333333332,1.0,0.4666666666666666,0.6166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6716666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -can,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -plate,0.4933333333333333,1.0,0.4499999999999999,0.6,1,25 -calculator,0.7166666666666667,0.8,0.75,0.6833333333333333,1,26 -tissues,0.6583333333333333,1.0,0.6,0.7166666666666667,1,26 -juice,0.6433333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -pink,0.8800000000000001,1.0,0.7833333333333333,0.85,1,25 -lemon,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.73,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.7016666666666667,1.0,0.5333333333333333,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -blue,0.6583333333333333,1.0,0.5833333333333333,0.7,1,25 -used,0.6083333333333333,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -ball,0.5916666666666666,1.0,0.5833333333333333,0.7,1,25 -notebook,0.5133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -garlic,0.6933333333333335,1.0,0.6166666666666666,0.7333333333333333,1,26 -cleaning,0.7649999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -pair,0.9266666666666665,1.0,0.8999999999999998,0.9400000000000001,2,27 -container,0.5349999999999999,1.0,0.4833333333333333,0.6333333333333333,1,25 -tomato,0.5433333333333332,0.8,0.5,0.5666666666666667,1,26 -cellphone,0.43,0.5,0.65,0.5366666666666667,1,26 -potato,0.6799999999999999,1.0,0.5833333333333333,0.7,1,25 -light,0.9016666666666666,1.0,0.8666666666666668,0.9200000000000002,2,25 -green,0.8933333333333335,0.7166666666666666,1.0,0.8133333333333332,3,23 -bottle,0.8400000000000001,1.0,0.8,0.8800000000000001,2,25 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.6422530864197532 -F1-Score: 0.6837345679012345 -Precision: 0.891358024691358 -Recall: 0.6095679012345678 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7933333333333333,1.0,0.7,0.7833333333333333,1,24 -yellow,0.89,0.8083333333333332,1.0,0.8857142857142858,6,23 -looks,0.7316666666666667,0.8,0.6,0.6666666666666667,1,24 -keyboard,0.73,1.0,0.7499999999999999,0.8166666666666667,1,26 -glue,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -flashlight,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.3966666666666666,0.5,0.55,0.5033333333333333,1,26 -folded,0.75,1.0,0.75,0.8166666666666667,1,26 -jam,0.7,1.0,0.5833333333333333,0.7,1,26 -black,0.9133333333333334,0.7833333333333333,1.0,0.86,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.8266666666666665,1.0,0.7666666666666666,0.8333333333333333,1,26 -soccer,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -hat,0.775,1.0,0.7666666666666666,0.8333333333333333,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.96,2,24 -coffee,0.5633333333333332,1.0,0.5166666666666666,0.65,1,25 -handle,0.575,1.0,0.5666666666666667,0.6833333333333333,1,25 -food,0.605,1.0,0.5499999999999999,0.6833333333333333,1,26 -towel,0.4583333333333333,1.0,0.4499999999999999,0.6,1,26 -chips,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -stapler,0.605,1.0,0.5833333333333333,0.7,1,26 -onion,0.5549999999999999,1.0,0.5833333333333333,0.7,1,26 -bag,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -sponge,0.6566666666666666,1.0,0.55,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5933333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -special,0.5716666666666667,1.0,0.4999999999999999,0.65,1,26 -colgate,0.39333333333333337,1.0,0.5,0.6333333333333333,1,26 -leaf,0.7016666666666667,1.0,0.65,0.75,1,26 -tube,0.6466666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.8150000000000001,1.0,0.7333333333333333,0.8166666666666668,1,26 -mug,0.725,1.0,0.7,0.7833333333333333,1,25 -yogurt,0.59,1.0,0.5499999999999999,0.6833333333333333,1,26 -plantain,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -red,0.8233333333333335,0.675,1.0,0.7971428571428572,3,24 -pepper,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -wheat,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -kleenex,0.755,1.0,0.6833333333333333,0.7833333333333333,1,26 -toothbrush,0.755,1.0,0.7166666666666666,0.8,1,26 -binder,0.505,1.0,0.4333333333333333,0.6,1,26 -baseball,0.73,1.0,0.7499999999999999,0.8166666666666667,1,26 -pliers,0.71,1.0,0.6499999999999999,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -thins,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -package,0.6883333333333334,1.0,0.5833333333333333,0.7,1,26 -k,0.85,1.0,0.7833333333333333,0.85,1,26 -jelly,0.5566666666666666,1.0,0.4999999999999999,0.65,1,26 -fruit,0.6183333333333333,0.5333333333333332,0.8666666666666666,0.6266666666666667,2,25 -apple,0.5916666666666667,0.9,0.6833333333333333,0.7,1,25 -bell,0.6466666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -battery,0.675,1.0,0.6333333333333333,0.7333333333333334,1,26 -jar,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -bound,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -lettuce,0.76,1.0,0.7,0.7833333333333333,1,26 -brush,0.9333333333333332,1.0,0.9,0.9333333333333332,1,26 -scissors,0.5716666666666665,1.0,0.5166666666666666,0.65,1,26 -lime,0.7716666666666666,1.0,0.6499999999999999,0.75,1,25 -toothpaste,0.7466666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -top,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.575,1.0,0.55,0.6666666666666666,1,26 -handles,0.755,1.0,0.65,0.75,1,25 -camera,0.41,1.0,0.41666666666666663,0.5833333333333334,1,26 -eraser,0.5466666666666666,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,0.85,0.7,1.0,0.8114285714285714,5,21 -banana,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -pitcher,0.76,1.0,0.7666666666666666,0.8333333333333333,1,26 -phone,0.75,1.0,0.7166666666666666,0.8,1,26 -stick,0.8066666666666666,1.0,0.7333333333333333,0.8166666666666668,1,25 -cereal,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -bulb,0.9016666666666667,1.0,0.8666666666666668,0.9200000000000002,2,26 -hair,0.835,1.0,0.7,0.8,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -can,0.8933333333333332,1.0,0.8666666666666666,0.9200000000000002,2,27 -coca,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -plate,0.7083333333333333,1.0,0.7,0.7833333333333333,1,25 -calculator,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -tissues,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.6399999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -pink,0.61,1.0,0.5999999999999999,0.7166666666666666,1,25 -lemon,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -peach,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bowl,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -blue,0.55,1.0,0.45,0.6,1,25 -used,0.525,1.0,0.4999999999999999,0.6333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.7133333333333333,1.0,0.5666666666666667,0.7,1,26 -ball,0.6466666666666666,1.0,0.5833333333333333,0.7,1,25 -notebook,0.725,1.0,0.6166666666666666,0.7333333333333333,1,26 -garlic,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -cleaning,0.3583333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -pair,0.95,1.0,0.9333333333333332,0.96,2,26 -container,0.6133333333333333,1.0,0.5833333333333333,0.7,1,25 -tomato,0.63,0.9,0.5499999999999999,0.6166666666666667,1,26 -cellphone,0.6683333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -potato,0.5933333333333334,1.0,0.5833333333333333,0.7,1,25 -light,0.9349999999999999,1.0,0.9,0.9400000000000001,2,25 -green,0.8716666666666667,0.7333333333333333,1.0,0.8314285714285713,3,22 -bottle,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.6482561728395062 -F1-Score: 0.6911640211640212 -Precision: 0.9012345679012346 -Recall: 0.6155864197530865 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6633333333333333,1.0,0.5833333333333333,0.7,1,25 -yellow,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,6,24 -looks,0.6783333333333332,0.8,0.6666666666666666,0.65,1,24 -keyboard,0.725,1.0,0.7,0.7833333333333333,1,26 -glue,0.7666666666666666,1.0,0.8,0.85,1,26 -milk,0,0,0,0,1,26 -cola,0.7,1.0,0.6666666666666666,0.75,1,26 -flashlight,0.7116666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -cup,0.44666666666666666,0.5,0.7999999999999999,0.5866666666666667,1,26 -folded,0.7,1.0,0.6666666666666666,0.75,1,26 -jam,0.73,1.0,0.6333333333333333,0.75,1,26 -black,0.93,0.8333333333333333,1.0,0.8933333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.625,1.0,0.5833333333333333,0.7,1,26 -soccer,0.6333333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -hat,0.525,1.0,0.6166666666666666,0.7166666666666666,1,26 -brown,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -coffee,0.8083333333333333,1.0,0.6333333333333333,0.75,1,26 -handle,0.63,1.0,0.6333333333333333,0.7333333333333333,1,25 -food,0.7433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,24 -towel,0.7166666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -chips,0.735,1.0,0.5999999999999999,0.7166666666666667,1,26 -stapler,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -onion,0.7633333333333334,1.0,0.6333333333333333,0.75,1,26 -bag,0.41666666666666663,1.0,0.4,0.5666666666666667,1,26 -sponge,0.7550000000000001,1.0,0.6,0.7333333333333334,1,26 -zero,0,0,0,0,1,26 -computer,0.5533333333333333,1.0,0.41666666666666663,0.5833333333333333,1,25 -special,0.7016666666666665,1.0,0.6,0.7166666666666667,1,26 -colgate,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -leaf,0.425,1.0,0.4333333333333333,0.5833333333333333,1,26 -tube,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.7083333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -mug,0.7216666666666667,1.0,0.6333333333333333,0.75,1,26 -yogurt,0.8400000000000001,1.0,0.7333333333333333,0.8166666666666668,1,26 -plantain,0.71,1.0,0.65,0.75,1,26 -red,0.9500000000000002,0.85,1.0,0.8999999999999998,3,27 -pepper,0.7983333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -wheat,0.74,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.5166666666666666,1.0,0.5166666666666666,0.65,1,26 -toothbrush,0.755,1.0,0.65,0.75,1,26 -binder,0.5716666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5083333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -thins,0.485,1.0,0.4666666666666666,0.6166666666666666,1,26 -package,0.6883333333333332,0.95,0.55,0.65,1,26 -k,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -jelly,0.585,1.0,0.4833333333333333,0.6333333333333333,1,26 -fruit,0.7933333333333333,0.7666666666666666,0.9,0.7833333333333334,2,25 -apple,0.4866666666666667,0.85,0.4999999999999999,0.55,1,25 -bell,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -battery,0.74,1.0,0.5999999999999999,0.7166666666666667,1,26 -jar,0.6049999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -bound,0.525,1.0,0.5,0.6333333333333333,1,26 -lettuce,0.61,1.0,0.5333333333333333,0.6666666666666666,1,26 -brush,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -scissors,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -lime,0.8016666666666665,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.7133333333333333,1.0,0.65,0.75,1,26 -top,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -spiral,0.775,1.0,0.6666666666666666,0.7666666666666667,1,26 -handles,0.73,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.8300000000000001,1.0,0.7833333333333333,0.85,1,26 -eraser,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -pitcher,0.6183333333333334,1.0,0.5833333333333333,0.7,1,26 -phone,0.8666666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -stick,0.6333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -cereal,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -bulb,0.8400000000000001,1.0,0.8,0.8800000000000001,2,27 -hair,0.6083333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -can,0.9066666666666666,1.0,0.8666666666666666,0.9199999999999999,2,26 -coca,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -crackers,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -plate,0.77,1.0,0.6666666666666666,0.7666666666666666,1,24 -calculator,0.5349999999999999,0.95,0.4666666666666666,0.6,1,26 -tissues,0.7649999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.41666666666666663,1.0,0.4666666666666666,0.6,1,26 -pink,0.445,0.5,0.5666666666666667,0.5133333333333334,1,25 -lemon,0.6383333333333334,1.0,0.4499999999999999,0.6166666666666667,1,26 -peach,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -bowl,0.85,1.0,0.7666666666666666,0.8333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.4966666666666667,1.0,0.5,0.6333333333333333,1,26 -blue,0.6849999999999999,1.0,0.5833333333333333,0.7,1,25 -used,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,23 -energizer,0,0,0,0,1,26 -pear,0.6966666666666665,1.0,0.5833333333333333,0.7,1,26 -ball,0.755,1.0,0.6166666666666666,0.7333333333333333,1,25 -notebook,0.7633333333333333,1.0,0.65,0.75,1,26 -garlic,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -cleaning,0.4966666666666667,1.0,0.4333333333333334,0.6,1,26 -pair,0.8716666666666667,1.0,0.8333333333333333,0.9,2,27 -container,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -tomato,0.6950000000000001,0.9,0.5666666666666667,0.6666666666666667,1,26 -cellphone,0.775,1.0,0.7666666666666666,0.8333333333333333,1,26 -potato,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -light,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -green,0.9199999999999999,0.8,1.0,0.8666666666666666,3,24 -bottle,0.9400000000000001,1.0,0.8999999999999998,0.9400000000000001,2,27 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.6528086419753087 -F1-Score: 0.6874999999999999 -Precision: 0.903858024691358 -Recall: 0.6074074074074074 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7883333333333333,1.0,0.7166666666666666,0.8,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.34500000000000003,0.9,0.4499999999999999,0.5666666666666667,1,24 -keyboard,0.7833333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -glue,0.5216666666666667,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.53,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -cup,0.4733333333333333,0.5,0.6166666666666666,0.53,1,26 -folded,0.85,1.0,0.7833333333333333,0.85,1,26 -jam,0.885,1.0,0.75,0.8333333333333334,1,26 -black,0.9833333333333334,0.95,1.0,0.9666666666666666,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.4333333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -soccer,0.6666666666666666,1.0,0.6,0.7166666666666667,1,26 -hat,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -brown,0.8766666666666666,1.0,0.8333333333333333,0.9,2,24 -coffee,0.73,1.0,0.7,0.7833333333333333,1,25 -handle,0.7216666666666667,1.0,0.5666666666666667,0.7,1,26 -food,0.37499999999999994,1.0,0.4833333333333333,0.6166666666666666,1,25 -towel,0.71,1.0,0.6499999999999999,0.75,1,26 -chips,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -stapler,0.6,1.0,0.6833333333333333,0.7666666666666666,1,26 -onion,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -bag,0.7066666666666667,1.0,0.5833333333333333,0.7,1,26 -sponge,0.5666666666666667,1.0,0.45,0.6,1,26 -zero,0,0,0,0,1,26 -computer,0.755,1.0,0.6499999999999999,0.75,1,25 -special,0.6833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -colgate,0.5916666666666667,1.0,0.5833333333333333,0.7,1,26 -leaf,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -tube,0.655,1.0,0.6166666666666666,0.7333333333333333,1,26 -cell,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -mug,0.7216666666666667,1.0,0.65,0.75,1,25 -yogurt,0.6333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -plantain,0.7,1.0,0.7499999999999999,0.8166666666666667,1,26 -red,0.9133333333333334,0.7666666666666667,1.0,0.8466666666666665,3,26 -pepper,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -wheat,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -kleenex,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.66,1.0,0.4833333333333333,0.65,1,26 -binder,0.8216666666666665,1.0,0.7166666666666666,0.8,1,26 -baseball,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -pliers,0.6383333333333334,1.0,0.6,0.7166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6733333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -thins,0.8399999999999999,1.0,0.6833333333333333,0.7833333333333334,1,26 -package,0.63,1.0,0.5,0.65,1,26 -k,0.71,1.0,0.7,0.7833333333333333,1,26 -jelly,0.5833333333333333,1.0,0.5999999999999999,0.7,1,26 -fruit,0.7883333333333333,0.6833333333333333,0.9333333333333332,0.7566666666666666,2,25 -apple,0.7433333333333334,0.9,0.6666666666666666,0.7,1,25 -bell,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -battery,0.575,1.0,0.4999999999999999,0.6333333333333333,1,26 -jar,0.5966666666666667,1.0,0.6,0.7166666666666667,1,26 -bound,0.6766666666666666,1.0,0.5666666666666667,0.7,1,26 -lettuce,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -brush,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.43,1.0,0.4833333333333334,0.6166666666666666,1,26 -lime,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -toothpaste,0.6466666666666667,1.0,0.6,0.7166666666666667,1,26 -top,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -spiral,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -handles,0.805,1.0,0.7166666666666666,0.8,1,25 -camera,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -eraser,0.735,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.7416666666666666,1.0,0.7166666666666666,0.8,1,26 -pitcher,0.6749999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -phone,0.5733333333333334,1.0,0.4333333333333333,0.6,1,26 -stick,0.7683333333333333,1.0,0.6333333333333333,0.75,1,25 -cereal,0.6,1.0,0.5499999999999999,0.6666666666666666,1,26 -bulb,0.9016666666666667,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.5916666666666666,1.0,0.5166666666666666,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6833333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -can,0.8216666666666667,1.0,0.8,0.8800000000000001,2,25 -coca,0.6749999999999999,1.0,0.7,0.7833333333333333,1,26 -crackers,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -plate,0.6916666666666667,1.0,0.65,0.75,1,25 -calculator,0.7183333333333334,0.6,0.8833333333333332,0.65,1,26 -tissues,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -juice,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -pink,0.6266666666666667,1.0,0.5166666666666666,0.65,1,25 -lemon,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -peach,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -bowl,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.755,1.0,0.6666666666666666,0.7666666666666666,1,26 -blue,0.76,1.0,0.6833333333333333,0.7833333333333333,1,25 -used,0.655,1.0,0.6333333333333333,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.8766666666666666,1.0,0.75,0.8333333333333333,1,26 -ball,0.6766666666666666,1.0,0.6499999999999999,0.75,1,25 -notebook,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.6499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -cleaning,0.5999999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -pair,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,27 -container,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -tomato,0.5549999999999999,0.9,0.5166666666666666,0.5833333333333333,1,26 -cellphone,0.6966666666666665,1.0,0.6666666666666666,0.7666666666666667,1,26 -potato,0.7216666666666666,1.0,0.6499999999999999,0.75,1,25 -light,0.8833333333333332,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.875,1.0,0.8333333333333333,0.9,2,25 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.6541203703703703 -F1-Score: 0.6925 -Precision: 0.9087962962962962 -Recall: 0.6115740740740739 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.675,1.0,0.5999999999999999,0.7166666666666666,1,25 -yellow,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,6,26 -looks,0.5883333333333334,0.9,0.5833333333333333,0.6333333333333333,1,24 -keyboard,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -glue,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -flashlight,0.7216666666666666,1.0,0.5833333333333333,0.7,1,26 -cup,0.49000000000000005,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.6933333333333332,1.0,0.5833333333333333,0.7,1,26 -jam,0.615,1.0,0.5499999999999999,0.6833333333333333,1,26 -black,0.8683333333333334,0.7583333333333334,1.0,0.8523809523809524,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7983333333333333,1.0,0.6333333333333333,0.75,1,26 -soccer,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -hat,0.655,1.0,0.5,0.65,1,26 -brown,0.8916666666666666,1.0,0.8666666666666666,0.9200000000000002,2,26 -coffee,0.76,1.0,0.7,0.7833333333333333,1,26 -handle,0.47166666666666657,1.0,0.4,0.5666666666666667,1,25 -food,0.31666666666666665,1.0,0.4333333333333333,0.5833333333333333,1,26 -towel,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -chips,0.48,1.0,0.4999999999999999,0.6333333333333333,1,26 -stapler,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -onion,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -bag,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -sponge,0.6983333333333334,1.0,0.5666666666666667,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -special,0.5983333333333334,1.0,0.4833333333333333,0.6333333333333334,1,26 -colgate,0.8416666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -leaf,0.725,1.0,0.6833333333333333,0.7666666666666666,1,26 -tube,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -cell,0.605,1.0,0.5499999999999999,0.6833333333333333,1,26 -mug,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -yogurt,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -plantain,0.5583333333333333,0.95,0.5833333333333333,0.6666666666666667,1,26 -red,0.8483333333333333,0.7,1.0,0.8095238095238095,3,26 -pepper,0.6683333333333332,1.0,0.4999999999999999,0.65,1,26 -wheat,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -kleenex,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -toothbrush,0.8466666666666665,1.0,0.7833333333333333,0.85,1,26 -binder,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -baseball,0.7383333333333334,1.0,0.6333333333333333,0.75,1,26 -pliers,0.75,1.0,0.75,0.8166666666666668,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.705,1.0,0.65,0.75,1,26 -thins,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -package,0.6666666666666666,0.95,0.5999999999999999,0.6833333333333333,1,26 -k,0.5166666666666667,1.0,0.55,0.6666666666666667,1,26 -jelly,0.5833333333333333,1.0,0.6666666666666666,0.75,1,26 -fruit,0.6783333333333332,0.5666666666666667,0.9333333333333332,0.6733333333333333,2,25 -apple,0.5583333333333333,0.8,0.5999999999999999,0.6166666666666666,1,25 -bell,0.725,1.0,0.5999999999999999,0.7166666666666666,1,26 -battery,0.425,1.0,0.4166666666666667,0.5666666666666667,1,26 -jar,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.6583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -lettuce,0.6933333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -brush,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -scissors,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.6716666666666666,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -top,0.5133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.7583333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -handles,0.575,1.0,0.6166666666666666,0.7166666666666667,1,25 -camera,0.565,1.0,0.4833333333333333,0.6333333333333333,1,26 -eraser,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5466666666666666,0.85,0.6333333333333333,0.6333333333333333,1,26 -pitcher,0.5933333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -phone,0.78,1.0,0.7166666666666666,0.8,1,26 -stick,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -cereal,0.5933333333333334,1.0,0.45,0.6166666666666667,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -hair,0.7466666666666666,1.0,0.7166666666666666,0.8,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -can,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -coca,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.9066666666666666,1.0,0.8,0.8666666666666668,1,26 -plate,0.6633333333333333,1.0,0.5833333333333333,0.7,1,25 -calculator,0.5166666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -tissues,0.6083333333333332,1.0,0.5833333333333333,0.7,1,26 -juice,0.53,1.0,0.4666666666666666,0.6166666666666667,1,26 -pink,0.7483333333333333,1.0,0.6333333333333333,0.75,1,25 -lemon,0.7466666666666667,1.0,0.7166666666666666,0.8,1,26 -peach,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -bowl,0.6266666666666667,1.0,0.4999999999999999,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6649999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -blue,0.5016666666666667,1.0,0.41666666666666663,0.5833333333333333,1,25 -used,0.6216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.5833333333333333,1.0,0.5999999999999999,0.7,1,26 -ball,0.7,1.0,0.7,0.7833333333333333,1,25 -notebook,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -garlic,0.6266666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -cleaning,0.5766666666666667,1.0,0.55,0.6833333333333333,1,26 -pair,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,27 -container,0.585,1.0,0.5833333333333333,0.7,1,25 -tomato,0.5983333333333333,0.55,0.6666666666666666,0.5633333333333332,1,26 -cellphone,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -potato,0.705,1.0,0.6499999999999999,0.75,1,25 -light,0.9350000000000002,1.0,0.8999999999999998,0.9400000000000001,2,26 -green,0.8850000000000001,0.7833333333333333,1.0,0.8647619047619047,3,24 -bottle,0.925,1.0,0.8999999999999998,0.9400000000000001,2,25 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.6395061728395063 -F1-Score: 0.6848456790123457 -Precision: 0.9002314814814815 -Recall: 0.6083333333333333 diff --git a/Validation/UW_raw_75_object_0.35000000000000003.csv b/Validation/UW_raw_75_object_0.35000000000000003.csv deleted file mode 100644 index de9a6d8..0000000 --- a/Validation/UW_raw_75_object_0.35000000000000003.csv +++ /dev/null @@ -1,2875 +0,0 @@ -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5833333333333333,1.0,0.5999999999999999,0.7166666666666666,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.4833333333333333,1.0,0.4499999999999999,0.6,1,24 -keyboard,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -glue,0.6916666666666667,1.0,0.5666666666666667,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.635,1.0,0.6,0.7166666666666667,1,26 -flashlight,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -cup,0.43666666666666665,0.4499999999999999,0.7499999999999999,0.52,1,26 -folded,0.775,1.0,0.65,0.75,1,26 -jam,0.7333333333333333,1.0,0.6499999999999999,0.75,1,26 -black,0.9333333333333333,0.8,1.0,0.8666666666666666,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6799999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -soccer,0.5383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -hat,0.4999999999999999,1.0,0.5166666666666666,0.65,1,26 -brown,0.9099999999999999,1.0,0.8666666666666666,0.9199999999999999,2,26 -coffee,0.5900000000000001,1.0,0.5833333333333333,0.7,1,25 -handle,0.5833333333333333,1.0,0.5499999999999999,0.6666666666666666,1,25 -food,0.6716666666666666,1.0,0.5833333333333333,0.7,1,25 -towel,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -chips,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.7016666666666667,1.0,0.6499999999999999,0.75,1,26 -onion,0.7283333333333333,0.8,0.7666666666666666,0.7166666666666666,1,26 -bag,0.605,1.0,0.4999999999999999,0.6333333333333333,1,26 -sponge,0.7083333333333334,1.0,0.75,0.8166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -special,0.5416666666666666,1.0,0.4499999999999999,0.6,1,26 -colgate,0.4883333333333333,1.0,0.4333333333333334,0.5833333333333333,1,26 -leaf,0.7633333333333334,1.0,0.7166666666666666,0.8,1,26 -tube,0.7133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.7316666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -mug,0.36,1.0,0.4499999999999999,0.6,1,25 -yogurt,0.5716666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -plantain,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.9433333333333334,0.8666666666666666,1.0,0.9133333333333333,3,24 -pepper,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -wheat,0.73,1.0,0.6833333333333333,0.7666666666666666,1,26 -kleenex,0.6666666666666666,1.0,0.6,0.7166666666666666,1,26 -toothbrush,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -binder,0.3383333333333333,1.0,0.4333333333333334,0.5833333333333333,1,26 -baseball,0.4833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -pliers,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -thins,0.6433333333333333,1.0,0.5,0.65,1,26 -package,0.6083333333333333,1.0,0.4833333333333332,0.6333333333333333,1,26 -k,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.7216666666666666,0.6333333333333333,0.9,0.7333333333333334,2,25 -apple,0.6516666666666667,1.0,0.55,0.6833333333333333,1,25 -bell,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -battery,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -jar,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -bound,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -brush,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -scissors,0.63,1.0,0.6,0.7166666666666667,1,26 -lime,0.51,1.0,0.4666666666666666,0.6166666666666667,1,25 -toothpaste,0.6383333333333333,1.0,0.6,0.7166666666666667,1,26 -top,0.6266666666666667,1.0,0.5166666666666666,0.65,1,26 -spiral,0.675,1.0,0.6,0.7166666666666667,1,26 -handles,0.6133333333333334,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.6566666666666666,1.0,0.6,0.7166666666666667,1,26 -eraser,0.6983333333333334,1.0,0.6,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,19 -banana,0.5883333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -pitcher,0.6566666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -phone,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -stick,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -cereal,0.7300000000000001,1.0,0.7,0.7833333333333333,1,26 -bulb,0.9349999999999999,1.0,0.9,0.9400000000000001,2,26 -hair,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8766666666666666,1.0,0.75,0.8333333333333334,1,26 -can,0.9,1.0,0.9,0.9400000000000001,2,25 -coca,0.5166666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -crackers,0.7566666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -plate,0.38333333333333336,1.0,0.4499999999999999,0.6,1,24 -calculator,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -tissues,0.6966666666666667,1.0,0.7,0.7833333333333333,1,26 -juice,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.7633333333333333,1.0,0.6499999999999999,0.75,1,25 -lemon,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -peach,0.6716666666666667,1.0,0.6,0.7166666666666667,1,26 -bowl,0.75,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7066666666666667,1.0,0.5833333333333333,0.7,1,26 -blue,0.6983333333333333,0.8,0.6666666666666666,0.6333333333333334,1,25 -used,0.58,1.0,0.5166666666666666,0.65,1,24 -energizer,0,0,0,0,1,26 -pear,0.7233333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -ball,0.55,1.0,0.5,0.6333333333333333,1,25 -notebook,0.6599999999999999,1.0,0.5166666666666666,0.65,1,26 -garlic,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -cleaning,0.6749999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -container,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -tomato,0.6616666666666666,0.85,0.5166666666666666,0.6,1,26 -cellphone,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -potato,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -light,0.9016666666666667,1.0,0.8666666666666668,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.975,1.0,0.9666666666666666,0.9800000000000001,2,27 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6430401234567901 -F1-Score: 0.6847839506172841 -Precision: 0.9087962962962962 -Recall: 0.6018518518518519 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,25 -yellow,0.9466666666666669,0.8833333333333332,1.0,0.9266666666666667,6,24 -looks,0.575,0.8,0.5833333333333333,0.6,1,24 -keyboard,0.6383333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -glue,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7133333333333333,1.0,0.65,0.75,1,26 -flashlight,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -cup,0.31666666666666665,0.5,0.5833333333333333,0.51,1,26 -folded,0.8016666666666665,1.0,0.7166666666666666,0.8,1,26 -jam,0.65,1.0,0.5666666666666667,0.7,1,26 -black,0.8966666666666667,0.775,1.0,0.8523809523809524,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -soccer,0.7533333333333333,1.0,0.5666666666666667,0.7,1,26 -hat,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -brown,0.9133333333333333,1.0,0.9,0.9400000000000001,2,24 -coffee,0.75,1.0,0.6833333333333333,0.7833333333333333,1,26 -handle,0.6133333333333333,1.0,0.5833333333333333,0.7,1,25 -food,0.5133333333333334,1.0,0.5166666666666666,0.65,1,25 -towel,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -stapler,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -onion,0.7150000000000001,1.0,0.6166666666666666,0.7333333333333334,1,26 -bag,0.7133333333333333,1.0,0.65,0.75,1,26 -sponge,0.5916666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.5133333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -special,0.5799999999999998,1.0,0.4499999999999999,0.6,1,26 -colgate,0.755,1.0,0.7,0.7833333333333333,1,26 -leaf,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.575,1.0,0.6166666666666666,0.7166666666666666,1,26 -cell,0.755,1.0,0.65,0.75,1,26 -mug,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -yogurt,0.755,1.0,0.7166666666666666,0.8,1,26 -plantain,0.7433333333333334,1.0,0.65,0.75,1,26 -red,0.8733333333333334,0.7583333333333333,1.0,0.8504761904761905,3,26 -pepper,0.5983333333333334,1.0,0.4333333333333334,0.6,1,26 -wheat,0.75,1.0,0.75,0.8166666666666667,1,26 -kleenex,0.4716666666666667,1.0,0.4166666666666667,0.5833333333333333,1,26 -toothbrush,0.9016666666666666,1.0,0.8,0.8666666666666666,1,26 -binder,0.775,1.0,0.8166666666666667,0.8666666666666666,1,26 -baseball,0.4916666666666666,1.0,0.4833333333333333,0.6166666666666666,1,26 -pliers,0.7633333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.8766666666666667,1.0,0.75,0.8333333333333334,1,26 -thins,0.655,1.0,0.55,0.6833333333333333,1,26 -package,0.575,1.0,0.5333333333333333,0.6666666666666666,1,26 -k,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -fruit,0.6366666666666666,0.5666666666666667,0.8666666666666668,0.6433333333333333,2,25 -apple,0.395,0.9,0.45,0.5666666666666667,1,25 -bell,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -battery,0.725,1.0,0.7,0.7833333333333333,1,26 -jar,0.55,1.0,0.41666666666666663,0.5833333333333333,1,26 -bound,0.8399999999999999,1.0,0.7333333333333333,0.8166666666666668,1,26 -lettuce,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -brush,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -scissors,0.7466666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -lime,0.37166666666666665,1.0,0.38333333333333336,0.55,1,25 -toothpaste,0.5666666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -top,0.755,1.0,0.7,0.7833333333333333,1,26 -spiral,0.7066666666666667,1.0,0.5666666666666667,0.7,1,26 -handles,0.7766666666666666,1.0,0.7166666666666666,0.8,1,25 -camera,0.6583333333333333,1.0,0.65,0.75,1,26 -eraser,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.9466666666666667,0.85,1.0,0.9,5,22 -banana,0.5433333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -pitcher,0.6466666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -phone,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -stick,0.6516666666666666,1.0,0.4833333333333333,0.6333333333333333,1,25 -cereal,0.5633333333333334,1.0,0.5833333333333333,0.7,1,26 -bulb,0.8933333333333333,1.0,0.8666666666666666,0.9199999999999999,2,26 -hair,0.805,1.0,0.7666666666666666,0.8333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6466666666666667,1.0,0.55,0.6833333333333333,1,26 -can,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.7783333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -crackers,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.8099999999999999,1.0,0.7,0.7833333333333333,1,24 -calculator,0.6033333333333333,0.8,0.5833333333333333,0.5833333333333333,1,26 -tissues,0.7466666666666667,1.0,0.7166666666666666,0.8,1,26 -juice,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -pink,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,25 -lemon,0.6133333333333333,1.0,0.5499999999999999,0.6666666666666667,1,26 -peach,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -bowl,0.6016666666666666,1.0,0.5166666666666666,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -blue,0.6383333333333334,1.0,0.55,0.6833333333333333,1,25 -used,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,23 -energizer,0,0,0,0,1,26 -pear,0.6516666666666666,1.0,0.5666666666666667,0.7,1,26 -ball,0.8,1.0,0.6833333333333333,0.7833333333333333,1,25 -notebook,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -garlic,0.6383333333333333,1.0,0.5166666666666666,0.65,1,26 -cleaning,0.6166666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -pair,0.8816666666666666,1.0,0.8333333333333334,0.9000000000000001,2,26 -container,0.7966666666666666,1.0,0.7166666666666666,0.8,1,25 -tomato,0.45833333333333337,0.65,0.5833333333333333,0.5466666666666666,1,26 -cellphone,0.6849999999999999,1.0,0.5666666666666667,0.7,1,26 -potato,0.7633333333333333,1.0,0.6499999999999999,0.75,1,26 -light,0.96,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.96,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6534259259259259 -F1-Score: 0.6881746031746031 -Precision: 0.9026234567901235 -Recall: 0.609104938271605 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7883333333333333,1.0,0.7,0.7833333333333333,1,25 -yellow,0.9066666666666666,0.75,1.0,0.8333333333333333,6,24 -looks,0.54,0.75,0.5833333333333333,0.5833333333333333,1,24 -keyboard,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -glue,0.74,1.0,0.5833333333333333,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -flashlight,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.4600000000000001,0.5,0.7,0.5533333333333333,1,26 -folded,0.915,1.0,0.8,0.8666666666666668,1,26 -jam,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -black,0.8800000000000001,0.7666666666666667,1.0,0.8514285714285714,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -soccer,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -hat,0.4333333333333333,1.0,0.4666666666666666,0.6,1,26 -brown,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -coffee,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -handle,0.7416666666666666,1.0,0.7166666666666666,0.8,1,25 -food,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -towel,0.6416666666666667,1.0,0.5833333333333333,0.7,1,26 -chips,0.505,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -onion,0.675,1.0,0.6833333333333333,0.7666666666666666,1,26 -bag,0.7216666666666667,1.0,0.65,0.75,1,26 -sponge,0.7,1.0,0.65,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.6,1.0,0.5999999999999999,0.7,1,26 -special,0.4416666666666666,1.0,0.5,0.6333333333333333,1,26 -colgate,0.6666666666666666,1.0,0.6666666666666666,0.75,1,26 -leaf,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -tube,0.575,1.0,0.4666666666666666,0.6166666666666667,1,26 -cell,0.6299999999999999,1.0,0.5833333333333333,0.7,1,26 -mug,0.6766666666666666,1.0,0.6499999999999999,0.75,1,26 -yogurt,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.5133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -red,0.8783333333333333,0.7583333333333333,1.0,0.8457142857142858,3,25 -pepper,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -wheat,0.7066666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333334,1,26 -toothbrush,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.7666666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -baseball,0.705,1.0,0.65,0.75,1,26 -pliers,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7383333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -thins,0.7633333333333333,1.0,0.6499999999999999,0.75,1,26 -package,0.7100000000000001,0.9,0.6666666666666666,0.7,1,26 -k,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.8300000000000001,1.0,0.7833333333333333,0.85,1,26 -fruit,0.6849999999999999,0.6333333333333334,0.8999999999999998,0.7166666666666667,2,26 -apple,0.6533333333333332,0.8,0.6166666666666666,0.6333333333333333,1,25 -bell,0.575,1.0,0.5499999999999999,0.6833333333333333,1,26 -battery,0.73,1.0,0.7,0.7833333333333333,1,26 -jar,0.5166666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -bound,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666668,1,26 -lettuce,0.6016666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -brush,0.6466666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.7033333333333334,1.0,0.4833333333333333,0.65,1,26 -lime,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,25 -toothpaste,0.5566666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -top,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -spiral,0.7133333333333333,1.0,0.5666666666666667,0.7,1,26 -handles,0.605,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.5766666666666667,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,0.95,0.85,1.0,0.9,5,22 -banana,0.4383333333333333,1.0,0.3666666666666667,0.5333333333333333,1,26 -pitcher,0.6566666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -phone,0.8133333333333332,1.0,0.7833333333333333,0.85,1,26 -stick,0.7,1.0,0.6166666666666666,0.7333333333333333,1,25 -cereal,0.7633333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -bulb,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -hair,0.6466666666666667,1.0,0.7,0.7833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.885,1.0,0.7833333333333333,0.85,1,26 -can,1.0,1.0,1.0,1.0,2,25 -coca,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -crackers,0.59,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.6316666666666666,1.0,0.4833333333333334,0.6333333333333333,1,25 -calculator,0.4933333333333333,0.9,0.4666666666666666,0.5666666666666667,1,26 -tissues,0.6299999999999999,1.0,0.5833333333333333,0.7,1,26 -juice,0.5333333333333333,1.0,0.5333333333333332,0.65,1,26 -pink,0.6933333333333334,1.0,0.5666666666666667,0.7,1,25 -lemon,0.8266666666666665,1.0,0.7166666666666666,0.8,1,26 -peach,0.5349999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -bowl,0.65,1.0,0.5333333333333333,0.6666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -blue,0.705,1.0,0.5666666666666667,0.7,1,25 -used,0.7616666666666667,1.0,0.6333333333333333,0.75,1,23 -energizer,0,0,0,0,1,26 -pear,0.6133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -ball,0.7,1.0,0.7,0.7833333333333333,1,25 -notebook,0.7333333333333333,1.0,0.7166666666666666,0.8,1,26 -garlic,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -cleaning,0.75,1.0,0.6666666666666666,0.7666666666666666,1,26 -pair,0.8933333333333333,1.0,0.8666666666666666,0.9200000000000002,2,27 -container,0.655,1.0,0.65,0.75,1,25 -tomato,0.4916666666666666,0.75,0.5333333333333333,0.5633333333333334,1,26 -cellphone,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -potato,0.56,1.0,0.5499999999999999,0.6833333333333333,1,25 -light,0.9266666666666665,1.0,0.9,0.9400000000000001,2,25 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,25 -bottle,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6543672839506172 -F1-Score: 0.6913007054673721 -Precision: 0.9010030864197531 -Recall: 0.6151234567901235 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.8850000000000001,0.95,0.8,0.8333333333333333,1,24 -keyboard,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.6716666666666666,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.5183333333333333,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.6466666666666667,1.0,0.4333333333333333,0.6,1,26 -cup,0.65,0.5,0.8,0.6,1,26 -folded,0.7183333333333334,1.0,0.6499999999999999,0.75,1,26 -jam,0.755,1.0,0.6166666666666666,0.7333333333333333,1,26 -black,0.82,0.6333333333333333,1.0,0.7647619047619048,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.64,1.0,0.55,0.6833333333333333,1,26 -soccer,0.5933333333333334,1.0,0.4833333333333334,0.6333333333333333,1,26 -hat,0.7016666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -brown,0.8483333333333334,1.0,0.8,0.8800000000000001,2,25 -coffee,0.4749999999999999,1.0,0.4999999999999999,0.6333333333333333,1,25 -handle,0.6466666666666667,1.0,0.5833333333333333,0.7,1,25 -food,0.6683333333333333,1.0,0.5833333333333333,0.7,1,26 -towel,0.6166666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.7666666666666666,1.0,0.7333333333333333,0.8,1,26 -stapler,0.79,1.0,0.6666666666666666,0.7666666666666667,1,26 -onion,0.5633333333333332,1.0,0.4833333333333334,0.6333333333333333,1,26 -bag,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -sponge,0.6733333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.58,1.0,0.5166666666666666,0.65,1,25 -special,0.5016666666666667,1.0,0.5166666666666666,0.65,1,26 -colgate,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.6466666666666667,1.0,0.5166666666666666,0.6666666666666666,1,26 -tube,0.4716666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -cell,0.445,0.55,0.5999999999999999,0.53,1,26 -mug,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -yogurt,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -plantain,0.8683333333333334,1.0,0.7833333333333333,0.85,1,26 -red,0.9333333333333333,0.8166666666666667,1.0,0.8800000000000001,3,25 -pepper,0.8266666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -wheat,0.7833333333333333,1.0,0.8,0.85,1,26 -kleenex,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -toothbrush,0.56,1.0,0.4833333333333333,0.6333333333333333,1,26 -binder,0.5633333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -baseball,0.5333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -pliers,0.65,1.0,0.5333333333333333,0.6666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.85,1.0,0.75,0.8333333333333333,1,26 -package,0.61,1.0,0.5833333333333333,0.7,1,26 -k,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -jelly,0.5133333333333333,1.0,0.5833333333333333,0.7,1,26 -fruit,0.7483333333333333,0.7833333333333333,0.8,0.7466666666666667,2,26 -apple,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,25 -bell,0.4916666666666666,1.0,0.5166666666666666,0.65,1,26 -battery,0.7233333333333334,1.0,0.6499999999999999,0.75,1,26 -jar,0.7916666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -bound,0.5599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -lettuce,0.7583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -brush,0.6833333333333333,1.0,0.7333333333333333,0.8,1,26 -scissors,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -lime,0.6966666666666665,1.0,0.6666666666666666,0.7666666666666667,1,25 -toothpaste,0.6216666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -top,0.6399999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -spiral,0.6916666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -handles,0.4216666666666667,1.0,0.45,0.6,1,25 -camera,0.5433333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -eraser,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.44666666666666666,1.0,0.4499999999999999,0.6,1,26 -pitcher,0.6466666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -phone,0.3833333333333333,0.5,0.5333333333333333,0.49333333333333335,1,26 -stick,0.655,1.0,0.6,0.7166666666666667,1,25 -cereal,0.6583333333333332,1.0,0.5833333333333333,0.7,1,26 -bulb,0.9550000000000001,1.0,0.9333333333333332,0.96,2,27 -hair,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5,1.0,0.4999999999999999,0.6333333333333333,1,26 -can,0.9400000000000001,1.0,0.8999999999999998,0.9400000000000001,2,24 -coca,0.76,1.0,0.5833333333333333,0.7166666666666667,1,26 -crackers,0.4999999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -plate,0.7883333333333333,1.0,0.7,0.7833333333333333,1,25 -calculator,0.36833333333333335,0.7,0.4333333333333333,0.4866666666666667,1,26 -tissues,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -juice,0.5999999999999999,1.0,0.5999999999999999,0.7,1,26 -pink,0.6883333333333332,1.0,0.5833333333333333,0.7,1,25 -lemon,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.76,1.0,0.7166666666666666,0.8,1,26 -bowl,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5933333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -blue,0.58,1.0,0.5333333333333333,0.6666666666666666,1,25 -used,0.71,1.0,0.6333333333333333,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6216666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -ball,0.5516666666666666,1.0,0.4833333333333333,0.6333333333333333,1,25 -notebook,0.7833333333333334,1.0,0.7666666666666666,0.8333333333333334,1,26 -garlic,0.8416666666666666,1.0,0.75,0.8333333333333334,1,26 -cleaning,0.66,1.0,0.55,0.6833333333333333,1,26 -pair,0.8400000000000001,1.0,0.8,0.8800000000000001,2,27 -container,0.635,1.0,0.5333333333333333,0.6666666666666667,1,25 -tomato,0.6733333333333332,0.75,0.7666666666666666,0.6666666666666667,1,26 -cellphone,0.48166666666666663,0.5,0.5666666666666667,0.5133333333333333,1,26 -potato,0.4933333333333333,1.0,0.45,0.6166666666666667,1,25 -light,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8633333333333333,1.0,0.8333333333333334,0.9000000000000001,2,25 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6324691358024692 -F1-Score: 0.6785934744268078 -Precision: 0.8952160493827159 -Recall: 0.5989197530864198 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7666666666666666,1.0,0.75,0.8166666666666667,1,24 -yellow,0.95,0.85,1.0,0.9,6,24 -looks,0.6933333333333332,0.85,0.7,0.6833333333333333,1,24 -keyboard,0.6699999999999999,1.0,0.5,0.65,1,26 -glue,0.525,1.0,0.4666666666666666,0.6166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.775,1.0,0.8166666666666667,0.8666666666666666,1,26 -flashlight,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -cup,0.3516666666666667,0.5,0.6499999999999999,0.5366666666666667,1,26 -folded,0.6666666666666667,1.0,0.6333333333333333,0.7333333333333334,1,26 -jam,0.6233333333333333,1.0,0.55,0.6833333333333333,1,26 -black,0.8633333333333333,0.725,1.0,0.8257142857142856,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.735,1.0,0.65,0.75,1,26 -soccer,0.5833333333333333,1.0,0.55,0.6666666666666666,1,26 -hat,0.6,1.0,0.5833333333333333,0.7,1,26 -brown,0.8266666666666665,1.0,0.7666666666666667,0.8600000000000001,2,24 -coffee,0.605,1.0,0.5833333333333333,0.7,1,25 -handle,0.735,1.0,0.65,0.75,1,25 -food,0.5933333333333334,1.0,0.4833333333333333,0.6333333333333333,1,25 -towel,0.655,1.0,0.65,0.75,1,26 -chips,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -stapler,0.6666666666666667,1.0,0.7,0.7833333333333333,1,26 -onion,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -bag,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -sponge,0.6666666666666667,1.0,0.5,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.51,1.0,0.5666666666666667,0.6833333333333333,1,25 -special,0.7299999999999999,1.0,0.7,0.7833333333333333,1,26 -colgate,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -leaf,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -tube,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -cell,0.4383333333333333,0.5,0.5666666666666667,0.5000000000000001,1,26 -mug,0.78,1.0,0.7333333333333333,0.8166666666666667,1,25 -yogurt,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -plantain,0.6316666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -red,0.9466666666666667,0.85,1.0,0.8999999999999998,3,24 -pepper,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.5233333333333333,1.0,0.4333333333333333,0.6,1,26 -kleenex,0.7233333333333333,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -binder,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -baseball,0.6766666666666666,1.0,0.6,0.7166666666666667,1,26 -pliers,0.605,1.0,0.5333333333333332,0.6666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7666666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -thins,0.6883333333333334,1.0,0.5833333333333333,0.7,1,26 -package,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -k,0.6183333333333333,1.0,0.5833333333333333,0.7,1,26 -jelly,0.9349999999999999,1.0,0.85,0.9,1,26 -fruit,0.7966666666666666,0.7833333333333333,0.8666666666666666,0.7866666666666667,2,25 -apple,0.3083333333333333,0.7,0.4499999999999999,0.4966666666666667,1,25 -bell,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -battery,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -jar,0.6966666666666667,1.0,0.55,0.6833333333333333,1,26 -bound,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.7166666666666666,1.0,0.6666666666666666,0.75,1,26 -brush,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -scissors,0.505,1.0,0.5166666666666666,0.65,1,26 -lime,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333334,1,25 -toothpaste,0.6599999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -top,0.7516666666666667,1.0,0.6499999999999999,0.75,1,26 -spiral,0.7016666666666667,1.0,0.55,0.6833333333333333,1,26 -handles,0.755,1.0,0.7166666666666666,0.8,1,25 -camera,0.755,1.0,0.7166666666666666,0.8,1,26 -eraser,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6766666666666665,1.0,0.6333333333333333,0.7333333333333334,1,26 -pitcher,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -phone,0.4,0.5,0.5333333333333333,0.49333333333333335,1,26 -stick,0.6383333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -cereal,0.6933333333333334,1.0,0.6499999999999999,0.75,1,26 -bulb,0.9016666666666667,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7716666666666666,1.0,0.7166666666666666,0.8,1,26 -can,0.9349999999999999,1.0,0.9,0.9400000000000001,2,25 -coca,0.4749999999999999,1.0,0.4499999999999999,0.6,1,26 -crackers,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -plate,0.74,1.0,0.5666666666666667,0.7,1,24 -calculator,0.48,0.7,0.5833333333333333,0.5566666666666666,1,26 -tissues,0.6666666666666667,1.0,0.5833333333333333,0.7,1,26 -juice,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -lemon,0.6566666666666666,1.0,0.6,0.7166666666666667,1,26 -peach,0.6133333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6233333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -blue,0.605,1.0,0.4833333333333333,0.6333333333333333,1,25 -used,0.5183333333333333,1.0,0.45,0.6,1,24 -energizer,0,0,0,0,1,26 -pear,0.7133333333333333,1.0,0.55,0.6833333333333333,1,26 -ball,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -notebook,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -garlic,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -cleaning,0.5916666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -container,0.5083333333333333,1.0,0.5166666666666666,0.65,1,25 -tomato,0.6416666666666667,0.75,0.6333333333333333,0.5833333333333333,1,26 -cellphone,0.40166666666666667,0.55,0.5666666666666667,0.51,1,26 -potato,0.585,1.0,0.4333333333333333,0.6,1,25 -light,0.95,1.0,0.9333333333333332,0.9600000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8633333333333333,1.0,0.8333333333333333,0.9,2,25 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6355864197530864 -F1-Score: 0.6763183421516755 -Precision: 0.8912808641975308 -Recall: 0.5984567901234568 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.6683333333333333,1.0,0.5666666666666667,0.7,1,24 -keyboard,0.575,1.0,0.6333333333333332,0.7333333333333333,1,26 -glue,0.705,1.0,0.5999999999999999,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.7733333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -flashlight,0.7083333333333333,1.0,0.65,0.75,1,26 -cup,0.36833333333333335,0.5,0.5166666666666666,0.4833333333333334,1,26 -folded,0.475,1.0,0.4333333333333334,0.5833333333333333,1,26 -jam,0.705,1.0,0.65,0.75,1,26 -black,0.9600000000000002,0.9,1.0,0.9333333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -soccer,0.6416666666666666,1.0,0.6499999999999999,0.75,1,26 -hat,0.505,1.0,0.4833333333333333,0.6333333333333334,1,26 -brown,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -coffee,0.7416666666666667,1.0,0.7166666666666666,0.8,1,26 -handle,0.5633333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -food,0.625,1.0,0.5166666666666666,0.65,1,25 -towel,0.7983333333333333,1.0,0.6333333333333333,0.75,1,26 -chips,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -onion,0.8466666666666667,1.0,0.7,0.8,1,26 -bag,0.5966666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -sponge,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.59,1.0,0.5833333333333333,0.7,1,25 -special,0.5966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.775,1.0,0.7,0.7833333333333333,1,26 -leaf,0.575,1.0,0.5166666666666666,0.65,1,26 -tube,0.6583333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -cell,0.6083333333333333,0.8,0.5499999999999999,0.5833333333333333,1,26 -mug,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -yogurt,0.6616666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -plantain,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -red,0.9466666666666667,0.85,1.0,0.9,3,24 -pepper,0.5733333333333334,1.0,0.5166666666666666,0.65,1,26 -wheat,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.63,1.0,0.5333333333333333,0.6666666666666666,1,26 -toothbrush,0.6466666666666666,1.0,0.5833333333333333,0.7,1,25 -binder,0.5933333333333334,1.0,0.5833333333333333,0.7,1,26 -baseball,0.5183333333333333,1.0,0.4499999999999999,0.6,1,26 -pliers,0.6216666666666667,1.0,0.4833333333333332,0.6333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.5583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -thins,0.6649999999999999,1.0,0.4999999999999999,0.65,1,26 -package,0.55,1.0,0.4833333333333333,0.6333333333333333,1,26 -k,0.6933333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -jelly,0.905,1.0,0.8333333333333333,0.8833333333333332,1,26 -fruit,0.7416666666666666,0.6833333333333333,0.8999999999999998,0.7466666666666667,2,25 -apple,0.6799999999999999,1.0,0.6499999999999999,0.75,1,25 -bell,0.6966666666666667,1.0,0.5666666666666667,0.7,1,26 -battery,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -jar,0.58,1.0,0.5166666666666666,0.65,1,26 -bound,0.7916666666666666,1.0,0.7166666666666666,0.8,1,26 -lettuce,0.75,1.0,0.7,0.7833333333333333,1,26 -brush,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -scissors,0.735,1.0,0.5999999999999999,0.7166666666666666,1,26 -lime,0.735,1.0,0.6166666666666666,0.7333333333333334,1,25 -toothpaste,0.5216666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -top,0.6266666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.7133333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -handles,0.7633333333333334,1.0,0.6499999999999999,0.75,1,25 -camera,0.61,1.0,0.55,0.6833333333333333,1,26 -eraser,0.725,1.0,0.6833333333333333,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5549999999999999,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -phone,0.6950000000000001,0.85,0.5666666666666667,0.6333333333333333,1,26 -stick,0.7166666666666666,1.0,0.6666666666666666,0.75,1,25 -cereal,0.5916666666666667,1.0,0.5833333333333333,0.7,1,26 -bulb,1.0,1.0,1.0,1.0,2,27 -hair,0.5416666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -can,0.9133333333333333,1.0,0.9,0.9400000000000001,2,24 -coca,0.45499999999999996,1.0,0.4333333333333333,0.5833333333333333,1,26 -crackers,0.7216666666666666,1.0,0.7166666666666666,0.8,1,26 -plate,0.8416666666666666,1.0,0.7833333333333333,0.85,1,25 -calculator,0.66,0.95,0.5833333333333333,0.6666666666666667,1,26 -tissues,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -juice,0.6583333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -pink,0.585,1.0,0.4666666666666666,0.6166666666666667,1,25 -lemon,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -peach,0.6966666666666665,1.0,0.6166666666666666,0.7333333333333333,1,26 -bowl,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -blue,0.58,1.0,0.5333333333333333,0.6666666666666666,1,25 -used,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,22 -energizer,0,0,0,0,1,26 -pear,0.75,1.0,0.65,0.75,1,26 -ball,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.5,1.0,0.55,0.6666666666666667,1,26 -garlic,0.5650000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -cleaning,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -pair,0.9600000000000002,1.0,0.9333333333333332,0.9600000000000002,2,26 -container,0.85,1.0,0.7833333333333333,0.85,1,26 -tomato,0.39999999999999997,1.0,0.5166666666666666,0.65,1,26 -cellphone,0.56,0.85,0.5833333333333333,0.6,1,26 -potato,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,25 -light,0.9200000000000002,1.0,0.8666666666666668,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9066666666666666,1.0,0.8666666666666668,0.9200000000000002,2,26 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6490586419753086 -F1-Score: 0.6891358024691357 -Precision: 0.9109567901234568 -Recall: 0.6040123456790122 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.705,1.0,0.5666666666666667,0.7,1,25 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,25 -looks,0.6016666666666667,0.7,0.5999999999999999,0.5666666666666667,1,24 -keyboard,0.71,1.0,0.5833333333333333,0.7,1,26 -glue,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6816666666666666,1.0,0.4999999999999999,0.65,1,26 -flashlight,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666666,1,26 -cup,0.4766666666666667,0.5,0.7,0.5533333333333335,1,26 -folded,0.805,1.0,0.7166666666666666,0.8,1,26 -jam,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -black,0.9133333333333334,0.7833333333333333,1.0,0.86,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6799999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -soccer,0.5516666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -hat,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -brown,0.8433333333333334,1.0,0.8,0.8800000000000001,2,25 -coffee,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -handle,0.6916666666666667,1.0,0.6,0.7166666666666667,1,26 -food,0.7183333333333333,1.0,0.5833333333333333,0.7,1,26 -towel,0.7183333333333334,1.0,0.5666666666666667,0.7,1,26 -chips,0.825,1.0,0.8166666666666667,0.8666666666666666,1,26 -stapler,0.59,1.0,0.5166666666666666,0.65,1,26 -onion,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -bag,0.775,1.0,0.7,0.7833333333333333,1,26 -sponge,0.475,1.0,0.5,0.6333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6749999999999999,1.0,0.5833333333333333,0.7,1,25 -special,0.655,1.0,0.5833333333333333,0.7,1,26 -colgate,0.805,1.0,0.7166666666666666,0.8,1,26 -leaf,0.6016666666666667,1.0,0.5,0.65,1,26 -tube,0.7449999999999999,1.0,0.6166666666666666,0.7333333333333334,1,26 -cell,0.8166666666666667,1.0,0.7333333333333333,0.8166666666666668,1,26 -mug,0.65,1.0,0.6833333333333333,0.7666666666666666,1,26 -yogurt,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -plantain,0.7,1.0,0.7333333333333333,0.8,1,26 -red,0.8916666666666668,0.7583333333333333,1.0,0.8457142857142858,3,27 -pepper,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -wheat,0.7433333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -kleenex,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -toothbrush,0.5599999999999999,1.0,0.5,0.6333333333333333,1,26 -binder,0.46333333333333326,1.0,0.4833333333333333,0.6166666666666667,1,26 -baseball,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -pliers,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7633333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -thins,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -package,0.8666666666666666,1.0,0.8833333333333332,0.9166666666666666,1,26 -k,0.7983333333333333,1.0,0.6333333333333333,0.75,1,26 -jelly,0.8933333333333333,1.0,0.8333333333333333,0.8833333333333332,1,26 -fruit,0.6966666666666667,0.7166666666666667,0.8666666666666666,0.7433333333333334,2,26 -apple,0.7633333333333334,0.9,0.7166666666666666,0.7333333333333333,1,25 -bell,0.605,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.5016666666666667,1.0,0.4,0.5666666666666667,1,26 -jar,0.655,1.0,0.5666666666666667,0.6833333333333333,1,26 -bound,0.6316666666666666,1.0,0.5,0.65,1,26 -lettuce,0.7666666666666666,1.0,0.75,0.8166666666666667,1,26 -brush,0.7416666666666666,1.0,0.75,0.8166666666666667,1,26 -scissors,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333334,1,26 -lime,0.605,1.0,0.4833333333333333,0.6333333333333333,1,25 -toothpaste,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -top,0.7066666666666667,1.0,0.5666666666666667,0.7,1,26 -spiral,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -handles,0.7183333333333334,1.0,0.5833333333333333,0.7,1,25 -camera,0.525,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.775,1.0,0.7,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.635,1.0,0.5166666666666666,0.65,1,26 -pitcher,0.8316666666666667,1.0,0.65,0.7666666666666667,1,26 -phone,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -stick,0.65,1.0,0.6333333333333333,0.7333333333333333,1,25 -cereal,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -bulb,0.8516666666666668,1.0,0.8,0.8800000000000001,2,26 -hair,0.6716666666666666,1.0,0.6,0.7166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7633333333333333,1.0,0.75,0.8166666666666667,1,26 -can,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -coca,0.705,1.0,0.65,0.75,1,26 -crackers,0.6233333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -plate,0.525,1.0,0.5333333333333332,0.6666666666666666,1,25 -calculator,0.2683333333333333,0.65,0.45,0.4866666666666667,1,26 -tissues,0.58,1.0,0.6333333333333332,0.7333333333333333,1,26 -juice,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -pink,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -lemon,0.4666666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -peach,0.5049999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -bowl,0.8800000000000001,1.0,0.8,0.8666666666666668,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5183333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -blue,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -used,0.7633333333333333,1.0,0.7,0.7833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.78,1.0,0.7499999999999999,0.8166666666666667,1,26 -garlic,0.6499999999999999,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.66,1.0,0.6499999999999999,0.75,1,26 -pair,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -container,0.8266666666666665,1.0,0.7833333333333333,0.85,1,25 -tomato,0.5999999999999999,0.6,0.6666666666666666,0.5733333333333334,1,26 -cellphone,0.73,1.0,0.5666666666666667,0.7,1,26 -potato,0.5566666666666666,1.0,0.4666666666666666,0.6166666666666667,1,25 -light,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.925,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6541049382716051 -F1-Score: 0.6917504409171074 -Precision: 0.9028549382716049 -Recall: 0.6135802469135804 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.615,0.85,0.7,0.6833333333333333,1,24 -keyboard,0.7166666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -glue,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6483333333333332,1.0,0.4999999999999999,0.65,1,26 -flashlight,0.7166666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -cup,0.47833333333333333,0.5,0.7499999999999999,0.5700000000000001,1,26 -folded,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -jam,0.62,1.0,0.5333333333333332,0.6666666666666666,1,26 -black,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -soccer,0.6816666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -hat,0.7083333333333333,1.0,0.6,0.7166666666666667,1,26 -brown,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,27 -coffee,0.6983333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -handle,0.8016666666666665,1.0,0.6333333333333333,0.75,1,25 -food,0.6966666666666667,1.0,0.5833333333333333,0.7,1,25 -towel,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -chips,0.5383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -stapler,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -onion,0.805,1.0,0.7166666666666666,0.8,1,26 -bag,0.7583333333333332,1.0,0.7,0.7833333333333333,1,26 -sponge,0.6483333333333333,1.0,0.5,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.755,1.0,0.6833333333333333,0.7833333333333333,1,26 -special,0.5933333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -leaf,0.7249999999999999,1.0,0.6499999999999999,0.75,1,26 -tube,0.8516666666666666,1.0,0.7,0.8,1,26 -cell,0.4666666666666666,1.0,0.4833333333333334,0.6166666666666666,1,26 -mug,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -yogurt,0.7233333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -plantain,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -red,0.8800000000000001,0.775,1.0,0.8590476190476191,3,25 -pepper,0.8816666666666666,1.0,0.75,0.8333333333333333,1,26 -wheat,0.63,1.0,0.4333333333333333,0.6,1,26 -kleenex,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -toothbrush,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -binder,0.7916666666666666,1.0,0.75,0.8166666666666667,1,26 -baseball,0.76,1.0,0.6499999999999999,0.75,1,26 -pliers,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -thins,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -package,0.7133333333333333,1.0,0.55,0.6833333333333333,1,26 -k,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -jelly,0.7183333333333334,1.0,0.5833333333333333,0.7166666666666666,1,26 -fruit,0.6816666666666666,0.6,0.9,0.7,2,26 -apple,0.5416666666666666,0.95,0.6166666666666666,0.6833333333333333,1,25 -bell,0.5249999999999999,1.0,0.4833333333333332,0.6166666666666666,1,26 -battery,0.7833333333333333,1.0,0.7333333333333333,0.8,1,26 -jar,0.63,1.0,0.55,0.6666666666666667,1,26 -bound,0.7716666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -lettuce,0.5133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -brush,0.5466666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -scissors,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -lime,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,25 -toothpaste,0.505,1.0,0.5666666666666667,0.6833333333333333,1,26 -top,0.6083333333333332,1.0,0.5833333333333333,0.7,1,26 -spiral,0.4833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.6666666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.6699999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -creamer,0,0,0,0,1,26 -white,0.9833333333333334,0.95,1.0,0.9666666666666666,5,21 -banana,0.505,1.0,0.4666666666666666,0.6166666666666667,1,26 -pitcher,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -phone,0.5883333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -stick,0.5083333333333333,1.0,0.5166666666666666,0.65,1,25 -cereal,0.85,1.0,0.7666666666666666,0.8333333333333333,1,26 -bulb,1.0,1.0,1.0,1.0,2,27 -hair,0.8,1.0,0.7166666666666666,0.8,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.605,1.0,0.5833333333333333,0.7,1,26 -can,0.8816666666666666,1.0,0.8333333333333333,0.9,2,26 -coca,0.535,1.0,0.4833333333333333,0.6333333333333333,1,26 -crackers,0.7216666666666667,1.0,0.6,0.7166666666666667,1,26 -plate,0.4916666666666667,1.0,0.5166666666666666,0.65,1,25 -calculator,0.6033333333333333,0.85,0.5333333333333333,0.6,1,26 -tissues,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.6683333333333333,1.0,0.5833333333333333,0.7,1,26 -pink,0.7166666666666666,1.0,0.7166666666666666,0.8,1,25 -lemon,0.7016666666666667,1.0,0.6,0.7166666666666667,1,26 -peach,0.8400000000000001,1.0,0.7833333333333333,0.85,1,26 -bowl,0.5083333333333333,1.0,0.4833333333333334,0.6166666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -blue,0.5666666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -used,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -ball,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -notebook,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -cleaning,0.73,1.0,0.7499999999999999,0.8166666666666667,1,26 -pair,0.8950000000000001,1.0,0.8333333333333333,0.9,2,26 -container,0.6466666666666667,1.0,0.7,0.7833333333333333,1,25 -tomato,0.5416666666666667,0.65,0.5999999999999999,0.5566666666666668,1,26 -cellphone,0.755,1.0,0.6499999999999999,0.75,1,26 -potato,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666668,1,25 -light,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -green,0.9500000000000002,0.85,1.0,0.8999999999999998,3,24 -bottle,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,25 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6599845679012346 -F1-Score: 0.6954850088183421 -Precision: 0.9060956790123456 -Recall: 0.6180555555555555 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,25 -looks,0.8300000000000001,1.0,0.7833333333333333,0.85,1,24 -keyboard,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.6833333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -flashlight,0.755,1.0,0.7166666666666666,0.8,1,26 -cup,0.3866666666666667,0.5,0.5833333333333333,0.51,1,25 -folded,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -jam,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -black,0.8883333333333334,0.75,1.0,0.8400000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6583333333333333,1.0,0.6499999999999999,0.75,1,26 -soccer,0.5166666666666667,1.0,0.4833333333333333,0.6166666666666667,1,26 -hat,0.715,1.0,0.55,0.6833333333333333,1,26 -brown,0.8,1.0,0.7666666666666667,0.8600000000000001,2,25 -coffee,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -handle,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -food,0.6,1.0,0.5833333333333333,0.7,1,24 -towel,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -chips,0.6449999999999999,1.0,0.55,0.6833333333333333,1,26 -stapler,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -onion,0.5966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -bag,0.41666666666666663,1.0,0.4,0.5666666666666667,1,26 -sponge,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.6333333333333333,1.0,0.5833333333333333,0.7,1,25 -special,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -colgate,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -leaf,0.58,1.0,0.5333333333333333,0.6666666666666666,1,26 -tube,0.725,1.0,0.7166666666666666,0.8,1,26 -cell,0.5549999999999999,0.5,0.6833333333333333,0.5566666666666666,1,26 -mug,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -yogurt,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -plantain,0.5466666666666666,1.0,0.4833333333333334,0.6166666666666666,1,26 -red,0.9666666666666668,0.9,1.0,0.9333333333333332,3,24 -pepper,0.5683333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -wheat,0.45500000000000007,1.0,0.5,0.6333333333333333,1,26 -kleenex,0.6416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -toothbrush,0.7133333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -binder,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -baseball,0.5499999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -pliers,0.675,1.0,0.6,0.7166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.5883333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -thins,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -package,0.73,1.0,0.5999999999999999,0.7166666666666667,1,26 -k,0.7783333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -jelly,0.4416666666666666,1.0,0.4333333333333333,0.5833333333333333,1,26 -fruit,0.7766666666666666,0.6666666666666667,0.9,0.74,2,25 -apple,0.7016666666666667,0.85,0.6499999999999999,0.65,1,25 -bell,0.7266666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -battery,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -jar,0.6733333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -bound,0.7416666666666666,1.0,0.6833333333333332,0.7666666666666666,1,26 -lettuce,0.5816666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -brush,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -scissors,0.6833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -lime,0.6666666666666667,1.0,0.6833333333333333,0.7666666666666667,1,25 -toothpaste,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -top,0.655,1.0,0.6,0.7166666666666667,1,26 -spiral,0.55,1.0,0.5166666666666666,0.65,1,26 -handles,0.6716666666666666,1.0,0.5833333333333333,0.7,1,25 -camera,0.6816666666666666,1.0,0.55,0.6833333333333333,1,26 -eraser,0.65,1.0,0.6666666666666666,0.75,1,26 -creamer,0,0,0,0,1,26 -white,0.9133333333333333,0.8166666666666667,1.0,0.8666666666666666,5,20 -banana,0.47666666666666657,1.0,0.4333333333333333,0.5833333333333333,1,26 -pitcher,0.5966666666666667,1.0,0.5166666666666666,0.65,1,26 -phone,0.43666666666666665,0.55,0.5166666666666666,0.5066666666666666,1,26 -stick,0.7849999999999999,1.0,0.6166666666666666,0.7333333333333333,1,25 -cereal,0.5149999999999999,1.0,0.4333333333333333,0.6,1,26 -bulb,0.9066666666666666,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.6216666666666667,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -can,0.9266666666666667,1.0,0.9,0.9400000000000001,2,25 -coca,0.6166666666666666,1.0,0.5166666666666666,0.65,1,26 -crackers,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.6766666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -calculator,0.565,0.65,0.6,0.5633333333333334,1,26 -tissues,0.5466666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -juice,0.78,1.0,0.8166666666666667,0.8666666666666666,1,26 -pink,0.6633333333333333,1.0,0.6,0.7166666666666667,1,25 -lemon,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -peach,0.4749999999999999,1.0,0.5166666666666666,0.65,1,26 -bowl,0.4333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6966666666666667,1.0,0.7,0.7833333333333333,1,26 -blue,0.73,1.0,0.65,0.75,1,25 -used,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.5716666666666665,1.0,0.5166666666666666,0.65,1,26 -ball,0.7333333333333333,1.0,0.7,0.7833333333333333,1,25 -notebook,0.7233333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -garlic,0.51,1.0,0.4999999999999999,0.6333333333333333,1,26 -cleaning,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -pair,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -container,0.53,1.0,0.4833333333333334,0.6166666666666666,1,25 -tomato,0.6216666666666667,0.9,0.7,0.7166666666666666,1,26 -cellphone,0.5116666666666666,0.5,0.65,0.5366666666666667,1,26 -potato,0.58,1.0,0.5333333333333333,0.6666666666666667,1,25 -light,0.8933333333333333,1.0,0.8666666666666666,0.9199999999999999,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,25 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6283641975308641 -F1-Score: 0.6767283950617284 -Precision: 0.8933641975308642 -Recall: 0.599074074074074 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7466666666666667,1.0,0.5999999999999999,0.7166666666666666,1,25 -yellow,0.8483333333333333,0.7,1.0,0.8114285714285714,6,24 -looks,0.64,0.85,0.65,0.6666666666666667,1,24 -keyboard,0.8166666666666667,1.0,0.7166666666666666,0.8,1,26 -glue,0.4883333333333333,1.0,0.4333333333333334,0.5833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7066666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -cup,0.45999999999999996,0.5,0.5999999999999999,0.52,1,26 -folded,0.6133333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -jam,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -black,0.865,0.7,1.0,0.8066666666666666,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -soccer,0.5916666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -hat,0.6183333333333333,1.0,0.55,0.6833333333333333,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -coffee,0.6183333333333333,1.0,0.5166666666666666,0.65,1,26 -handle,0.9666666666666666,1.0,0.95,0.9666666666666666,1,25 -food,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -towel,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -chips,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.6849999999999999,1.0,0.5833333333333333,0.7,1,26 -onion,0.7283333333333333,1.0,0.5666666666666667,0.7,1,26 -bag,0.7499999999999999,1.0,0.7166666666666666,0.8,1,26 -sponge,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -special,0.5133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -colgate,0.6049999999999999,1.0,0.5166666666666666,0.65,1,26 -leaf,0.5866666666666667,1.0,0.45,0.6166666666666667,1,26 -tube,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.41500000000000004,0.65,0.6166666666666666,0.5466666666666666,1,26 -mug,0.8099999999999999,1.0,0.7333333333333333,0.8166666666666667,1,26 -yogurt,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -plantain,0.5933333333333333,1.0,0.4666666666666666,0.6333333333333334,1,26 -red,0.8816666666666666,0.7166666666666666,1.0,0.8133333333333332,3,24 -pepper,0.7416666666666666,1.0,0.7166666666666666,0.8,1,26 -wheat,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -kleenex,0.89,1.0,0.7833333333333333,0.85,1,26 -toothbrush,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -binder,0.5916666666666667,1.0,0.5833333333333333,0.7,1,26 -baseball,0.775,1.0,0.7166666666666666,0.8,1,26 -pliers,0.675,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -thins,0.5900000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -package,0.7100000000000001,1.0,0.5666666666666667,0.7,1,26 -k,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -jelly,0.8633333333333333,1.0,0.8166666666666667,0.8666666666666666,1,26 -fruit,0.55,0.5666666666666667,0.8333333333333333,0.6504761904761904,2,25 -apple,0.5566666666666666,0.85,0.5999999999999999,0.6,1,25 -bell,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -battery,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -jar,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -bound,0.5,1.0,0.45,0.6166666666666667,1,26 -lettuce,0.7333333333333333,1.0,0.6666666666666666,0.75,1,26 -brush,0.6716666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -scissors,0.6133333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -lime,0.53,1.0,0.4666666666666666,0.6166666666666667,1,25 -toothpaste,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -spiral,0.4716666666666667,1.0,0.5166666666666666,0.65,1,26 -handles,0.7150000000000001,1.0,0.5999999999999999,0.7166666666666667,1,25 -camera,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -eraser,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.6133333333333333,0.85,0.6333333333333333,0.6333333333333333,1,26 -pitcher,0.7216666666666667,1.0,0.65,0.75,1,26 -phone,0.4216666666666667,0.55,0.6333333333333333,0.5366666666666667,1,26 -stick,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,25 -cereal,0.7499999999999999,1.0,0.6499999999999999,0.75,1,26 -bulb,0.95,1.0,0.9333333333333332,0.96,2,26 -hair,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.45,1.0,0.5499999999999999,0.6666666666666666,1,26 -can,1.0,1.0,1.0,1.0,2,25 -coca,0.6266666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -crackers,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666666,1,26 -plate,0.36666666666666664,1.0,0.4333333333333333,0.5833333333333333,1,25 -calculator,0.5216666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -tissues,0.6433333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -juice,0.51,1.0,0.4499999999999999,0.6,1,26 -pink,0.86,1.0,0.8333333333333333,0.8833333333333332,1,25 -lemon,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -peach,0.73,1.0,0.6833333333333333,0.7666666666666667,1,26 -bowl,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6016666666666667,1.0,0.5833333333333333,0.7,1,26 -blue,0.6516666666666666,1.0,0.6,0.7166666666666667,1,25 -used,0.675,1.0,0.6333333333333333,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -ball,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333334,1,25 -notebook,0.905,1.0,0.8,0.8666666666666666,1,26 -garlic,0.5466666666666666,1.0,0.4833333333333334,0.6333333333333333,1,26 -cleaning,0.5683333333333332,1.0,0.5833333333333333,0.7,1,26 -pair,0.9333333333333332,1.0,0.9333333333333332,0.96,2,26 -container,0.5383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,25 -tomato,0.6366666666666666,0.8,0.6333333333333333,0.6333333333333333,1,26 -cellphone,0.495,0.6,0.7,0.5733333333333334,1,26 -potato,0.5416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,25 -light,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8633333333333333,1.0,0.8333333333333333,0.9,2,25 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.636929012345679 -F1-Score: 0.6804188712522047 -Precision: 0.8919753086419754 -Recall: 0.6069444444444444 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,24 -keyboard,0.47999999999999987,1.0,0.5499999999999999,0.6666666666666666,1,26 -glue,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -flashlight,0.7183333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -cup,0.5900000000000001,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.615,1.0,0.4166666666666667,0.5833333333333333,1,26 -jam,0.6216666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -black,0.9266666666666667,0.8333333333333333,1.0,0.8933333333333333,6,24 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7416666666666666,1.0,0.6499999999999999,0.75,1,26 -soccer,0.7,1.0,0.6333333333333332,0.7333333333333333,1,26 -hat,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -brown,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -coffee,0.6966666666666667,1.0,0.6833333333333333,0.7666666666666666,1,25 -handle,0.6266666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -food,0.7216666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -towel,0.5966666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -chips,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.7466666666666667,1.0,0.6333333333333333,0.75,1,26 -onion,0.6016666666666668,0.85,0.5833333333333333,0.6,1,26 -bag,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -sponge,0.5216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.8133333333333332,1.0,0.7666666666666666,0.8333333333333333,1,25 -special,0.585,1.0,0.4666666666666666,0.6166666666666667,1,26 -colgate,0.7183333333333334,1.0,0.65,0.75,1,26 -leaf,0.6849999999999999,1.0,0.65,0.75,1,26 -tube,0.7566666666666666,1.0,0.5833333333333333,0.7166666666666667,1,26 -cell,0.4,0.5,0.5333333333333332,0.49333333333333335,1,26 -mug,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333334,1,25 -yogurt,0.7583333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -plantain,0.5633333333333334,1.0,0.6166666666666666,0.7166666666666667,1,26 -red,0.9600000000000002,0.9,1.0,0.9333333333333332,3,27 -pepper,0.6799999999999999,1.0,0.6833333333333332,0.7666666666666666,1,26 -wheat,0.5016666666666667,1.0,0.38333333333333336,0.55,1,26 -kleenex,0.605,1.0,0.4666666666666666,0.6166666666666667,1,26 -toothbrush,0.5149999999999999,1.0,0.41666666666666663,0.5833333333333333,1,26 -binder,0.5666666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -baseball,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -pliers,0.6816666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.705,1.0,0.65,0.75,1,26 -thins,0.7583333333333333,1.0,0.75,0.8166666666666667,1,26 -package,0.7633333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -k,0.7033333333333334,1.0,0.5666666666666667,0.7,1,26 -jelly,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -fruit,0.805,0.7333333333333333,0.9,0.7666666666666667,2,25 -apple,0.8183333333333334,1.0,0.7166666666666666,0.8,1,25 -bell,0.7466666666666666,1.0,0.65,0.75,1,26 -battery,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -jar,0.6683333333333333,1.0,0.5833333333333333,0.7,1,26 -bound,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.5333333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -brush,0.875,1.0,0.8333333333333333,0.8833333333333332,1,26 -scissors,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -lime,0.6466666666666667,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -top,0.5633333333333332,1.0,0.4833333333333333,0.6333333333333333,1,26 -spiral,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -handles,0.5083333333333333,1.0,0.5833333333333333,0.7,1,25 -camera,0.7983333333333333,1.0,0.6333333333333333,0.75,1,26 -eraser,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.605,1.0,0.4833333333333333,0.6333333333333333,1,26 -pitcher,0.51,1.0,0.45,0.6166666666666667,1,26 -phone,0.46333333333333326,0.5,0.6333333333333333,0.5266666666666667,1,26 -stick,0.6466666666666666,1.0,0.5333333333333333,0.6666666666666666,1,25 -cereal,0.825,1.0,0.7333333333333333,0.8166666666666667,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -hair,0.8166666666666667,1.0,0.7833333333333333,0.85,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6566666666666666,1.0,0.5,0.65,1,26 -can,0.8933333333333333,1.0,0.8666666666666668,0.9200000000000002,2,26 -coca,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -crackers,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -plate,0.7066666666666667,1.0,0.5833333333333333,0.7,1,24 -calculator,0.45999999999999996,0.95,0.5,0.6,1,26 -tissues,0.5183333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -juice,0.3833333333333333,1.0,0.4499999999999999,0.6,1,26 -pink,0.7666666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -lemon,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -bowl,0.9349999999999999,1.0,0.85,0.9,1,26 -camouflage,0,0,0,0,1,26 -digital,0.49833333333333335,1.0,0.4,0.5666666666666667,1,26 -blue,0.6133333333333333,1.0,0.5833333333333333,0.7,1,25 -used,0.78,1.0,0.6333333333333333,0.75,1,23 -energizer,0,0,0,0,1,26 -pear,0.61,1.0,0.4833333333333333,0.6333333333333333,1,26 -ball,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,25 -notebook,0.7183333333333334,1.0,0.6499999999999999,0.75,1,26 -garlic,0.58,1.0,0.4833333333333333,0.6333333333333333,1,26 -cleaning,0.5166666666666666,1.0,0.5333333333333333,0.65,1,26 -pair,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.6799999999999999,1.0,0.6,0.7166666666666667,1,25 -tomato,0.6066666666666667,0.6,0.7,0.5866666666666667,1,26 -cellphone,0.4333333333333333,0.6,0.6499999999999999,0.5566666666666666,1,26 -potato,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -light,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,25 -bottle,0.975,1.0,0.9666666666666666,0.9800000000000001,2,27 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6502932098765432 -F1-Score: 0.6849691358024691 -Precision: 0.8973765432098765 -Recall: 0.6072530864197531 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5166666666666666,1.0,0.5499999999999999,0.6666666666666666,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,25 -looks,0.6766666666666665,0.95,0.6,0.6833333333333333,1,24 -keyboard,0.8666666666666666,1.0,0.7833333333333333,0.85,1,26 -glue,0.7133333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6233333333333333,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.775,1.0,0.7,0.7833333333333333,1,26 -cup,0.33333333333333337,0.5,0.55,0.5033333333333333,1,26 -folded,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -jam,0.4666666666666666,1.0,0.4333333333333333,0.5833333333333333,1,26 -black,0.8916666666666668,0.7833333333333333,1.0,0.86,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.375,1.0,0.4833333333333332,0.6166666666666666,1,26 -soccer,0.6399999999999999,1.0,0.4999999999999999,0.65,1,26 -hat,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -brown,0.8999999999999998,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -handle,0.6433333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -food,0.64,1.0,0.5333333333333332,0.6666666666666666,1,25 -towel,0.8150000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -chips,0.755,1.0,0.7166666666666666,0.8,1,26 -stapler,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -onion,0.6716666666666666,1.0,0.4999999999999999,0.65,1,26 -bag,0.5633333333333332,1.0,0.45,0.6,1,26 -sponge,0.6833333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.755,1.0,0.6333333333333333,0.7333333333333333,1,25 -special,0.5883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -colgate,0.8099999999999999,1.0,0.7333333333333333,0.8166666666666667,1,26 -leaf,0.4133333333333333,1.0,0.5166666666666666,0.65,1,26 -tube,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -cell,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -mug,0.6916666666666667,1.0,0.65,0.75,1,25 -yogurt,0.5416666666666667,1.0,0.6333333333333333,0.7333333333333334,1,26 -plantain,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -red,0.8616666666666667,0.7,1.0,0.8066666666666666,3,25 -pepper,0.6399999999999999,1.0,0.5166666666666666,0.65,1,26 -wheat,0.6883333333333332,1.0,0.65,0.75,1,26 -kleenex,0.8133333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -toothbrush,0.7266666666666667,1.0,0.6499999999999999,0.75,1,26 -binder,0.6266666666666667,1.0,0.4999999999999999,0.65,1,26 -baseball,0.58,1.0,0.4666666666666666,0.6166666666666666,1,26 -pliers,0.6566666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -thins,0.7133333333333334,1.0,0.55,0.6833333333333333,1,26 -package,0.7216666666666667,0.95,0.7,0.75,1,26 -k,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -jelly,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.73,0.5833333333333333,0.9333333333333332,0.6833333333333333,2,26 -apple,0.6666666666666666,0.75,0.6166666666666666,0.6,1,25 -bell,0.7133333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -battery,0.6900000000000001,1.0,0.5166666666666666,0.6666666666666667,1,26 -jar,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -bound,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -lettuce,0.7133333333333333,1.0,0.6,0.7166666666666666,1,26 -brush,0.7733333333333333,1.0,0.6333333333333333,0.75,1,26 -scissors,0.645,1.0,0.5499999999999999,0.6833333333333333,1,26 -lime,0.7216666666666666,1.0,0.7,0.7833333333333333,1,25 -toothpaste,0.6183333333333334,1.0,0.5166666666666666,0.65,1,26 -top,0.675,1.0,0.6,0.7166666666666667,1,26 -spiral,0.8166666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -handles,0.805,1.0,0.7166666666666666,0.8,1,25 -camera,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -eraser,0.4666666666666666,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7866666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -pitcher,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -phone,0.6366666666666667,1.0,0.4999999999999999,0.65,1,26 -stick,0.6266666666666667,1.0,0.5833333333333333,0.7,1,25 -cereal,0.5766666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.8666666666666666,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.7233333333333334,1.0,0.6499999999999999,0.75,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6049999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -can,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.63,1.0,0.5833333333333333,0.7,1,26 -crackers,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -plate,0.7849999999999999,1.0,0.65,0.75,1,25 -calculator,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -tissues,0.7666666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -juice,0.5466666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -pink,0.85,1.0,0.7833333333333333,0.85,1,25 -lemon,0.6733333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -peach,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -bowl,0.5166666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8333333333333333,1.0,0.8333333333333333,0.8833333333333332,1,26 -blue,0.7633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -used,0.5349999999999999,1.0,0.4499999999999999,0.6,1,23 -energizer,0,0,0,0,1,26 -pear,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -ball,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333334,1,25 -notebook,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -garlic,0.6416666666666667,1.0,0.6,0.7166666666666667,1,26 -cleaning,0.7166666666666666,1.0,0.5333333333333333,0.6833333333333333,1,26 -pair,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -container,0.65,1.0,0.65,0.75,1,26 -tomato,0.6233333333333333,0.55,0.7166666666666666,0.5800000000000001,1,26 -cellphone,0.73,1.0,0.6499999999999999,0.75,1,26 -potato,0.835,1.0,0.7833333333333333,0.85,1,25 -light,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,27 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6554475308641975 -F1-Score: 0.6910185185185185 -Precision: 0.904783950617284 -Recall: 0.6117283950617284 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.825,1.0,0.7333333333333333,0.8166666666666667,1,24 -yellow,0.8733333333333334,0.7333333333333333,1.0,0.8266666666666665,6,24 -looks,0.57,0.7,0.6499999999999999,0.59,1,24 -keyboard,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -glue,0.8016666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.5666666666666667,1.0,0.45,0.6,1,26 -flashlight,0.7916666666666666,1.0,0.7166666666666666,0.8,1,26 -cup,0.4966666666666666,0.5,0.5666666666666667,0.5133333333333333,1,26 -folded,0.65,1.0,0.6666666666666666,0.75,1,26 -jam,0.4383333333333333,1.0,0.4,0.5666666666666667,1,26 -black,0.9466666666666667,0.85,1.0,0.9,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -soccer,0.4833333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -hat,0.6883333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coffee,0.6166666666666667,1.0,0.5833333333333333,0.7,1,25 -handle,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -food,0.78,1.0,0.7166666666666666,0.8,1,25 -towel,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -chips,0.48,1.0,0.5166666666666666,0.65,1,26 -stapler,0.55,1.0,0.4833333333333333,0.6333333333333334,1,26 -onion,0.6916666666666667,1.0,0.55,0.6833333333333333,1,26 -bag,0.7433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -sponge,0.7566666666666666,1.0,0.5666666666666667,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.5816666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -special,0.7,1.0,0.6499999999999999,0.75,1,26 -colgate,0.5083333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -leaf,0.6216666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -tube,0.7416666666666667,1.0,0.7166666666666666,0.8,1,26 -cell,0.7166666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -mug,0.46333333333333326,1.0,0.5499999999999999,0.6666666666666666,1,25 -yogurt,0.7383333333333334,1.0,0.6,0.7166666666666667,1,26 -plantain,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -red,0.915,0.8333333333333333,1.0,0.8933333333333333,3,25 -pepper,0.7966666666666666,1.0,0.75,0.8166666666666667,1,26 -wheat,0.6849999999999999,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.7383333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -toothbrush,0.4333333333333333,1.0,0.45,0.6,1,26 -binder,0.5516666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -baseball,0.8433333333333334,1.0,0.7,0.8,1,26 -pliers,0.42666666666666664,1.0,0.4999999999999999,0.6333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5549999999999999,1.0,0.41666666666666663,0.5833333333333333,1,26 -thins,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -package,0.6133333333333333,0.95,0.5166666666666666,0.6166666666666667,1,26 -k,0.645,1.0,0.55,0.6833333333333333,1,26 -jelly,0.63,1.0,0.6,0.7166666666666666,1,26 -fruit,0.5783333333333334,0.4666666666666666,0.9333333333333332,0.6038095238095238,2,25 -apple,0.86,1.0,0.7333333333333333,0.8166666666666667,1,26 -bell,0.7433333333333333,1.0,0.65,0.75,1,26 -battery,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -jar,0.7266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.675,1.0,0.7,0.7833333333333333,1,26 -lettuce,0.4383333333333333,1.0,0.4499999999999999,0.6,1,26 -brush,0.7533333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -scissors,0.4999999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -lime,0.65,1.0,0.65,0.75,1,25 -toothpaste,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -top,0.7,1.0,0.6499999999999999,0.75,1,26 -spiral,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -handles,0.655,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -eraser,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5549999999999999,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -phone,0.635,1.0,0.5833333333333333,0.7,1,26 -stick,0.6633333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -cereal,0.5183333333333333,1.0,0.5166666666666666,0.65,1,26 -bulb,0.93,1.0,0.9,0.9400000000000001,2,26 -hair,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -can,0.915,1.0,0.8666666666666666,0.9199999999999999,2,26 -coca,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -crackers,0.6316666666666667,1.0,0.4999999999999999,0.65,1,26 -plate,0.6666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,24 -calculator,0.7683333333333333,1.0,0.6499999999999999,0.75,1,26 -tissues,0.7433333333333333,1.0,0.5666666666666667,0.7,1,26 -juice,0.6216666666666667,1.0,0.55,0.6833333333333333,1,26 -pink,0.6833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -lemon,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -peach,0.07333333333333333,0.5,0.4999999999999999,0.47333333333333344,1,26 -bowl,0.7933333333333332,1.0,0.7333333333333333,0.8166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7333333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -blue,0.45166666666666666,0.95,0.4499999999999999,0.5666666666666667,1,25 -used,0.7999999999999999,1.0,0.7166666666666666,0.8,1,24 -energizer,0,0,0,0,1,26 -pear,0.5299999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -ball,0.605,1.0,0.5833333333333333,0.7,1,25 -notebook,0.6166666666666666,1.0,0.5166666666666666,0.65,1,26 -garlic,0.6666666666666666,1.0,0.7,0.7833333333333333,1,26 -cleaning,0.6083333333333334,1.0,0.5833333333333333,0.7,1,26 -pair,0.9083333333333332,1.0,0.9,0.9400000000000001,2,27 -container,0.655,1.0,0.5833333333333333,0.7,1,25 -tomato,0.5533333333333333,0.8,0.5833333333333333,0.5833333333333333,1,26 -cellphone,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -potato,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -light,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6313271604938271 -F1-Score: 0.6766093474426808 -Precision: 0.9007716049382716 -Recall: 0.595216049382716 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5416666666666666,1.0,0.5166666666666666,0.65,1,24 -yellow,0.96,0.9,1.0,0.9333333333333332,6,24 -looks,0.7516666666666667,1.0,0.6333333333333333,0.75,1,24 -keyboard,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -glue,0.63,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -flashlight,0.39166666666666666,1.0,0.45,0.6,1,26 -cup,0.58,0.5,0.6833333333333333,0.5566666666666666,1,25 -folded,0.7483333333333333,1.0,0.6,0.7166666666666667,1,26 -jam,0.8333333333333333,1.0,0.8,0.85,1,26 -black,0.8850000000000001,0.7583333333333333,1.0,0.8457142857142858,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5266666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -soccer,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -hat,0.4666666666666666,1.0,0.4333333333333334,0.5833333333333333,1,26 -brown,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coffee,0.7749999999999999,1.0,0.7,0.7833333333333333,1,25 -handle,0.6083333333333333,1.0,0.5999999999999999,0.7166666666666667,1,25 -food,0.6966666666666665,1.0,0.6166666666666666,0.7166666666666667,1,25 -towel,0.55,1.0,0.5166666666666666,0.65,1,26 -chips,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -stapler,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -onion,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -bag,0.7133333333333333,1.0,0.7166666666666666,0.8,1,26 -sponge,0.43,1.0,0.38333333333333336,0.55,1,26 -zero,0,0,0,0,1,26 -computer,0.7866666666666666,1.0,0.5833333333333333,0.7166666666666667,1,25 -special,0.63,1.0,0.5833333333333333,0.7,1,26 -colgate,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -leaf,0.4999999999999999,1.0,0.5333333333333333,0.65,1,26 -tube,0.7433333333333334,1.0,0.6333333333333333,0.75,1,26 -cell,0.5933333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -mug,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666667,1,25 -yogurt,0.6666666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -plantain,0.7433333333333333,1.0,0.7,0.7833333333333333,1,26 -red,0.9833333333333334,0.95,1.0,0.9666666666666666,3,27 -pepper,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -wheat,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.5416666666666666,1.0,0.4499999999999999,0.6,1,26 -binder,0.6833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -baseball,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -pliers,0.73,1.0,0.6499999999999999,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.655,1.0,0.5833333333333333,0.7,1,26 -thins,0.8916666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -package,0.705,1.0,0.5,0.6666666666666667,1,26 -k,0.7216666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -jelly,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -fruit,0.8483333333333333,0.9,0.8666666666666666,0.8533333333333333,2,25 -apple,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,25 -bell,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -battery,0.6249999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -jar,0.6766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -bound,0.5666666666666667,1.0,0.5499999999999999,0.6666666666666667,1,26 -lettuce,0.5466666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -brush,0.6633333333333333,0.65,0.8166666666666667,0.6333333333333334,1,26 -scissors,0.5766666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -lime,0.575,1.0,0.4833333333333332,0.6333333333333333,1,25 -toothpaste,0.8733333333333334,1.0,0.75,0.8333333333333333,1,26 -top,0.9016666666666666,1.0,0.8,0.8666666666666666,1,26 -spiral,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -handles,0.3583333333333333,1.0,0.4166666666666667,0.5666666666666667,1,25 -camera,0.8266666666666665,1.0,0.7833333333333333,0.85,1,26 -eraser,0.735,1.0,0.5999999999999999,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.7,1.0,0.7,0.7833333333333333,1,26 -pitcher,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -phone,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -stick,0.7816666666666666,1.0,0.6166666666666666,0.7333333333333334,1,25 -cereal,0.6666666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -bulb,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,27 -hair,0.4383333333333333,1.0,0.38333333333333336,0.55,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.78,1.0,0.6333333333333333,0.75,1,26 -can,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -coca,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -crackers,0.55,1.0,0.6166666666666666,0.7166666666666667,1,26 -plate,0.65,1.0,0.6666666666666666,0.75,1,24 -calculator,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -tissues,0.6749999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -juice,0.605,1.0,0.5833333333333333,0.7,1,26 -pink,0.7433333333333334,1.0,0.5666666666666667,0.7,1,25 -lemon,0.6333333333333333,1.0,0.7,0.7833333333333333,1,26 -peach,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -bowl,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7433333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -blue,0.7333333333333333,1.0,0.7999999999999999,0.85,1,25 -used,0.6649999999999999,1.0,0.5,0.65,1,23 -energizer,0,0,0,0,1,26 -pear,0.635,1.0,0.4999999999999999,0.65,1,26 -ball,0.6849999999999999,1.0,0.5499999999999999,0.6833333333333333,1,25 -notebook,0.845,1.0,0.6833333333333333,0.7833333333333334,1,26 -garlic,0.6833333333333333,1.0,0.4833333333333333,0.65,1,26 -cleaning,0.8166666666666667,1.0,0.7166666666666666,0.8,1,26 -pair,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,26 -container,0.4,1.0,0.4499999999999999,0.6,1,26 -tomato,0.5666666666666667,0.95,0.5333333333333332,0.6166666666666666,1,26 -cellphone,0.7166666666666666,1.0,0.6333333333333333,0.75,1,26 -potato,0.805,1.0,0.7166666666666666,0.8,1,26 -light,0.9333333333333332,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,27 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6533950617283953 -F1-Score: 0.6938492063492063 -Precision: 0.91304012345679 -Recall: 0.6104938271604937 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6916666666666667,1.0,0.5833333333333333,0.7,1,24 -yellow,0.9433333333333334,0.8666666666666666,1.0,0.9133333333333333,6,23 -looks,0.44666666666666666,0.75,0.5166666666666666,0.5333333333333333,1,24 -keyboard,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -glue,0.6133333333333334,1.0,0.6,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6683333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -flashlight,0.8766666666666667,1.0,0.75,0.8333333333333334,1,26 -cup,0.39333333333333337,0.5,0.5999999999999999,0.52,1,26 -folded,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -jam,0.615,1.0,0.4333333333333333,0.6,1,26 -black,0.8450000000000001,0.6916666666666667,1.0,0.8057142857142857,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -soccer,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -hat,0.7466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -brown,0.93,1.0,0.9,0.9400000000000001,2,24 -coffee,0.6583333333333333,1.0,0.6,0.7166666666666667,1,25 -handle,0.4133333333333333,1.0,0.3666666666666667,0.5333333333333333,1,25 -food,0.8133333333333332,1.0,0.75,0.8166666666666668,1,25 -towel,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -chips,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -stapler,0.6933333333333334,1.0,0.5166666666666666,0.6666666666666667,1,26 -onion,0.705,1.0,0.55,0.6833333333333333,1,26 -bag,0.6,1.0,0.4833333333333333,0.6333333333333333,1,26 -sponge,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -zero,0,0,0,0,1,26 -computer,0.40499999999999997,1.0,0.4,0.5666666666666667,1,26 -special,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -colgate,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.7633333333333333,1.0,0.65,0.75,1,26 -tube,0.605,1.0,0.5833333333333333,0.7,1,26 -cell,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -mug,0.4833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -yogurt,0.7466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -plantain,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -red,0.8100000000000002,0.6,1.0,0.74,3,24 -pepper,0.8100000000000002,1.0,0.6833333333333333,0.7833333333333334,1,26 -wheat,0.7166666666666667,1.0,0.75,0.8166666666666667,1,26 -kleenex,0.575,1.0,0.6,0.7166666666666667,1,26 -toothbrush,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -binder,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -baseball,0.7,1.0,0.6166666666666666,0.7333333333333334,1,26 -pliers,0.6966666666666667,1.0,0.6,0.7166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.725,1.0,0.7,0.7833333333333333,1,26 -thins,0.6799999999999999,1.0,0.6,0.7166666666666666,1,26 -package,0.4999999999999999,0.95,0.5333333333333333,0.6333333333333333,1,26 -k,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -fruit,0.6716666666666666,0.5999999999999999,0.8666666666666666,0.6599999999999999,2,25 -apple,0.5266666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -bell,0.6566666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -battery,0.7,1.0,0.65,0.75,1,26 -jar,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -bound,0.7683333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -lettuce,0.8666666666666666,1.0,0.7833333333333333,0.85,1,26 -brush,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -scissors,0.835,1.0,0.6833333333333333,0.7833333333333333,1,26 -lime,0.7566666666666666,1.0,0.6499999999999999,0.75,1,25 -toothpaste,0.6799999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -top,0.6466666666666667,1.0,0.55,0.6833333333333333,1,26 -spiral,0.655,1.0,0.65,0.75,1,26 -handles,0.58,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.5999999999999999,1.0,0.5999999999999999,0.7,1,26 -eraser,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,0.9500000000000002,0.85,1.0,0.8999999999999998,5,21 -banana,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -pitcher,0.7716666666666667,1.0,0.7,0.7833333333333333,1,26 -phone,0.6749999999999999,1.0,0.6833333333333333,0.7666666666666667,1,26 -stick,0.7166666666666666,1.0,0.7,0.7833333333333333,1,25 -cereal,0.8683333333333334,1.0,0.7833333333333333,0.85,1,26 -bulb,0.8550000000000001,1.0,0.8333333333333333,0.9,2,26 -hair,0.53,1.0,0.45,0.6,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7133333333333333,1.0,0.7166666666666666,0.8,1,26 -can,0.8550000000000001,1.0,0.8333333333333333,0.9,2,27 -coca,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -plate,0.69,1.0,0.6166666666666666,0.7333333333333333,1,25 -calculator,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -tissues,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.6933333333333334,1.0,0.6499999999999999,0.75,1,26 -pink,0.7216666666666666,1.0,0.7,0.7833333333333333,1,25 -lemon,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -peach,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.39166666666666666,1.0,0.4499999999999999,0.6,1,26 -camouflage,0,0,0,0,1,26 -digital,0.45833333333333337,1.0,0.4833333333333334,0.6166666666666666,1,26 -blue,0.735,1.0,0.6666666666666666,0.7666666666666666,1,25 -used,0.8566666666666667,1.0,0.7,0.8,1,24 -energizer,0,0,0,0,1,26 -pear,0.73,1.0,0.6,0.7166666666666667,1,26 -ball,0.5466666666666666,1.0,0.4833333333333333,0.6333333333333334,1,25 -notebook,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -garlic,0.6133333333333333,1.0,0.5,0.65,1,26 -cleaning,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -pair,0.975,1.0,0.9666666666666666,0.9800000000000001,2,27 -container,0.7516666666666667,1.0,0.6499999999999999,0.75,1,25 -tomato,0.5683333333333334,0.7,0.7,0.6,1,26 -cellphone,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -potato,0.755,1.0,0.65,0.75,1,25 -light,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.805,1.0,0.7666666666666666,0.8600000000000001,2,25 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6546604938271605 -F1-Score: 0.6895590828924162 -Precision: 0.9028549382716049 -Recall: 0.6112654320987654 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5499999999999999,1.0,0.4833333333333333,0.6333333333333333,1,25 -yellow,0.8116666666666668,0.5833333333333333,1.0,0.7266666666666668,6,25 -looks,0.47333333333333333,0.9,0.6166666666666666,0.6666666666666666,1,24 -keyboard,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -glue,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.7083333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -flashlight,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -cup,0.155,0.5,0.5333333333333333,0.49333333333333335,1,26 -folded,0.7166666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -jam,0.7966666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -black,0.9183333333333333,0.8166666666666667,1.0,0.8799999999999999,6,22 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.605,1.0,0.5333333333333333,0.6666666666666666,1,26 -soccer,0.7733333333333333,1.0,0.65,0.75,1,26 -hat,0.6416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -brown,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -coffee,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -handle,0.3583333333333333,1.0,0.4833333333333332,0.6166666666666666,1,25 -food,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666668,1,26 -towel,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -stapler,0.655,1.0,0.6166666666666666,0.7333333333333334,1,26 -onion,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -bag,0.75,1.0,0.7,0.7833333333333333,1,26 -sponge,0.7,1.0,0.6666666666666666,0.7666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -special,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.6983333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -leaf,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -tube,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -cell,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -mug,0.6466666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -yogurt,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -plantain,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -red,0.8566666666666668,0.75,1.0,0.8447619047619048,3,26 -pepper,0.5883333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -wheat,0.5433333333333332,1.0,0.4833333333333333,0.6333333333333333,1,26 -kleenex,0.5416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -toothbrush,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -binder,0.635,1.0,0.4999999999999999,0.65,1,26 -baseball,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.7683333333333333,1.0,0.6333333333333333,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7516666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -thins,0.6083333333333333,1.0,0.6499999999999999,0.75,1,26 -package,0.7633333333333334,0.9,0.7666666666666666,0.7666666666666667,1,26 -k,0.71,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.5666666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -fruit,0.6533333333333334,0.5166666666666666,0.9333333333333332,0.6466666666666667,2,26 -apple,0.63,0.9,0.6333333333333333,0.6666666666666666,1,25 -bell,0.8566666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -battery,0.6016666666666667,1.0,0.5166666666666666,0.65,1,26 -jar,0.7683333333333333,1.0,0.6333333333333333,0.75,1,26 -bound,0.7066666666666667,1.0,0.6499999999999999,0.75,1,26 -lettuce,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -brush,0.4133333333333333,1.0,0.4499999999999999,0.6,1,26 -scissors,0.7166666666666667,1.0,0.7,0.7833333333333333,1,26 -lime,0.6233333333333333,1.0,0.5333333333333333,0.6666666666666666,1,25 -toothpaste,0.6849999999999999,1.0,0.55,0.6833333333333333,1,26 -top,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -spiral,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -handles,0.6766666666666666,1.0,0.6,0.7166666666666667,1,25 -camera,0.485,1.0,0.4666666666666666,0.6166666666666667,1,26 -eraser,0.7466666666666667,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.4883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -pitcher,0.805,1.0,0.65,0.7666666666666667,1,26 -phone,0.3833333333333333,1.0,0.36666666666666664,0.5333333333333333,1,26 -stick,0.6933333333333332,1.0,0.5666666666666667,0.7,1,25 -cereal,0.53,1.0,0.4666666666666666,0.6166666666666667,1,26 -bulb,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,27 -hair,0.5716666666666667,1.0,0.5333333333333332,0.6666666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7083333333333333,1.0,0.6,0.7166666666666667,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -coca,0.625,1.0,0.5499999999999999,0.6833333333333333,1,26 -crackers,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -plate,0.7416666666666667,1.0,0.7,0.7833333333333333,1,25 -calculator,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -tissues,0.4833333333333333,1.0,0.45,0.6,1,26 -juice,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -pink,0.51,1.0,0.4666666666666666,0.6166666666666667,1,25 -lemon,0.63,1.0,0.5499999999999999,0.6833333333333333,1,26 -peach,0.75,1.0,0.6666666666666666,0.7666666666666666,1,26 -bowl,0.5633333333333332,1.0,0.45,0.6,1,26 -camouflage,0,0,0,0,1,26 -digital,0.63,1.0,0.5499999999999999,0.6666666666666666,1,26 -blue,0.6316666666666666,1.0,0.45,0.6166666666666667,1,25 -used,0.7666666666666667,1.0,0.75,0.8166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -ball,0.8150000000000001,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.7633333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -garlic,0.42666666666666664,1.0,0.3666666666666667,0.5333333333333333,1,26 -cleaning,0.825,1.0,0.75,0.8166666666666667,1,26 -pair,0.8466666666666667,1.0,0.8,0.8800000000000001,2,26 -container,0.6849999999999999,1.0,0.5833333333333333,0.7,1,26 -tomato,0.5149999999999999,0.75,0.6,0.5833333333333333,1,26 -cellphone,0.6266666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -potato,0.5966666666666667,1.0,0.5833333333333333,0.7,1,25 -light,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,26 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,22 -bottle,0.93,1.0,0.9,0.9400000000000001,2,27 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6355555555555555 -F1-Score: 0.6795502645502646 -Precision: 0.9033950617283951 -Recall: 0.5981481481481481 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.74,1.0,0.7166666666666666,0.8,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.7516666666666667,1.0,0.6499999999999999,0.75,1,24 -keyboard,0.61,1.0,0.5833333333333333,0.7,1,26 -glue,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -milk,0,0,0,0,1,26 -cola,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.5549999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -cup,0.2816666666666666,0.4833333333333333,0.5333333333333333,0.4766666666666667,1,26 -folded,0.78,1.0,0.7,0.7833333333333333,1,26 -jam,0.8116666666666668,1.0,0.6333333333333333,0.75,1,26 -black,0.9833333333333334,0.95,1.0,0.9666666666666666,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.665,1.0,0.55,0.6833333333333333,1,26 -soccer,0.6683333333333332,1.0,0.65,0.75,1,26 -hat,0.7,1.0,0.75,0.8166666666666667,1,26 -brown,0.9216666666666666,1.0,0.9,0.9400000000000001,2,24 -coffee,0.7083333333333333,1.0,0.6833333333333332,0.7666666666666666,1,25 -handle,0.5083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -food,0.7849999999999999,1.0,0.6833333333333333,0.7833333333333333,1,25 -towel,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -chips,0.8966666666666667,1.0,0.8333333333333334,0.8833333333333332,1,26 -stapler,0.6749999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -onion,0.6383333333333333,0.95,0.7,0.75,1,26 -bag,0.53,1.0,0.45,0.6,1,26 -sponge,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -special,0.4583333333333333,1.0,0.5,0.6333333333333333,1,26 -colgate,0.8166666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -leaf,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -tube,0.6916666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -cell,0.6166666666666667,0.5,0.7666666666666666,0.58,1,26 -mug,0.6883333333333332,1.0,0.65,0.75,1,25 -yogurt,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.7833333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -red,0.93,0.8166666666666667,1.0,0.8799999999999999,3,24 -pepper,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -wheat,0.5466666666666666,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -binder,0.7633333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -baseball,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -pliers,0.4749999999999999,1.0,0.38333333333333336,0.55,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -thins,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -package,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -k,0.6916666666666667,1.0,0.55,0.6833333333333333,1,26 -jelly,0.6933333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -fruit,0.7933333333333332,0.65,0.9333333333333332,0.74,2,25 -apple,0.5716666666666665,1.0,0.5833333333333333,0.7,1,25 -bell,0.7133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.7633333333333334,1.0,0.6333333333333333,0.75,1,26 -jar,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -bound,0.7249999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -lettuce,0.7333333333333333,1.0,0.8,0.85,1,26 -brush,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -scissors,0.7133333333333334,1.0,0.7166666666666666,0.8,1,26 -lime,0.5883333333333334,1.0,0.5666666666666667,0.6833333333333333,1,25 -toothpaste,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -top,0.575,1.0,0.4666666666666666,0.6166666666666667,1,26 -spiral,0.8916666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -handles,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -camera,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -eraser,0.85,1.0,0.7666666666666666,0.8333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.6933333333333334,1.0,0.6666666666666666,0.7666666666666666,1,26 -pitcher,0.575,1.0,0.5333333333333333,0.6666666666666667,1,26 -phone,0.5599999999999999,0.5,0.7499999999999999,0.5700000000000001,1,26 -stick,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -cereal,0.7100000000000001,1.0,0.65,0.75,1,26 -bulb,0.9550000000000001,1.0,0.9333333333333332,0.96,2,27 -hair,0.615,1.0,0.5333333333333333,0.6666666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5,1.0,0.5333333333333333,0.65,1,26 -can,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -coca,0.6516666666666666,1.0,0.4999999999999999,0.65,1,26 -crackers,0.755,1.0,0.65,0.75,1,26 -plate,0.65,1.0,0.6333333333333333,0.7333333333333333,1,25 -calculator,0.705,1.0,0.65,0.75,1,26 -tissues,0.7133333333333333,1.0,0.6,0.7166666666666666,1,26 -juice,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -pink,0.7583333333333333,1.0,0.7166666666666666,0.8,1,25 -lemon,0.5633333333333332,1.0,0.45,0.6166666666666667,1,26 -peach,0.8333333333333333,1.0,0.8333333333333333,0.8833333333333332,1,26 -bowl,0.5333333333333333,1.0,0.5999999999999999,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -blue,0.6900000000000001,0.95,0.5833333333333333,0.6833333333333333,1,25 -used,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.5966666666666667,1.0,0.6333333333333333,0.7333333333333334,1,26 -ball,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -garlic,0.76,1.0,0.7666666666666666,0.8333333333333333,1,26 -cleaning,0.7333333333333333,1.0,0.7333333333333332,0.8,1,26 -pair,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -tomato,0.6649999999999999,0.8,0.6833333333333333,0.6333333333333334,1,26 -cellphone,0.45999999999999996,0.55,0.5999999999999999,0.53,1,26 -potato,0.7666666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -light,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8683333333333332,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6650308641975309 -F1-Score: 0.7061111111111111 -Precision: 0.8995370370370371 -Recall: 0.6364197530864197 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.72,1.0,0.5666666666666667,0.7,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.6666666666666667,0.9,0.6666666666666666,0.6833333333333333,1,24 -keyboard,0.5466666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -glue,0.8216666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.705,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -cup,0.43000000000000005,0.5,0.5999999999999999,0.52,1,26 -folded,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -jam,0.86,1.0,0.7333333333333333,0.8166666666666667,1,26 -black,0.8916666666666668,0.75,1.0,0.8333333333333333,6,22 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.525,1.0,0.5166666666666666,0.65,1,26 -soccer,0.6216666666666666,1.0,0.4833333333333332,0.6333333333333333,1,26 -hat,0.5733333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -brown,0.8816666666666666,1.0,0.8333333333333333,0.9,2,25 -coffee,0.76,1.0,0.7,0.7833333333333333,1,25 -handle,0.805,1.0,0.7166666666666666,0.8,1,25 -food,0.36666666666666664,1.0,0.4666666666666666,0.6,1,25 -towel,0.5916666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -chips,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -onion,0.8016666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -bag,0.6183333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -sponge,0.6,1.0,0.6833333333333333,0.7666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.6399999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -special,0.8683333333333334,1.0,0.7833333333333333,0.85,1,26 -colgate,0.9166666666666666,1.0,0.8833333333333332,0.9166666666666666,1,26 -leaf,0.4,1.0,0.4666666666666666,0.6,1,26 -tube,0.7633333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -cell,0.575,1.0,0.5166666666666666,0.65,1,26 -mug,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,25 -yogurt,0.8016666666666665,1.0,0.7166666666666666,0.8,1,26 -plantain,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -red,0.9833333333333334,0.95,1.0,0.9666666666666666,3,26 -pepper,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.5383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -kleenex,0.7333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -toothbrush,0.75,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.6333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -baseball,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -pliers,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -thins,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -package,0.7083333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -k,0.5166666666666667,1.0,0.5166666666666666,0.65,1,26 -jelly,0.7333333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -fruit,0.7833333333333333,0.75,0.9,0.7833333333333333,2,26 -apple,0.5733333333333334,0.85,0.5333333333333333,0.5833333333333334,1,25 -bell,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -battery,0.8633333333333333,1.0,0.75,0.8333333333333333,1,26 -jar,0.6483333333333333,1.0,0.4999999999999999,0.65,1,26 -bound,0.5766666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -lettuce,0.5916666666666666,1.0,0.5166666666666666,0.65,1,26 -brush,0.5016666666666667,1.0,0.45,0.6,1,26 -scissors,0.6216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -lime,0.53,1.0,0.4666666666666666,0.6166666666666666,1,25 -toothpaste,0.5716666666666665,1.0,0.5166666666666666,0.65,1,26 -top,0.7966666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -spiral,0.7166666666666666,1.0,0.6833333333333332,0.7666666666666666,1,26 -handles,0.6966666666666665,1.0,0.6166666666666666,0.7333333333333333,1,25 -camera,0.6216666666666666,1.0,0.5833333333333333,0.7,1,26 -eraser,0.6933333333333334,1.0,0.7,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.7433333333333333,1.0,0.65,0.75,1,26 -phone,0.5883333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -stick,0.4666666666666666,1.0,0.5333333333333333,0.65,1,25 -cereal,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -bulb,0.975,1.0,0.9666666666666666,0.9800000000000001,2,27 -hair,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -can,1.0,1.0,1.0,1.0,2,25 -coca,0.7166666666666667,1.0,0.6333333333333333,0.75,1,26 -crackers,0.7933333333333333,1.0,0.6333333333333333,0.75,1,26 -plate,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,25 -calculator,0.5216666666666666,0.9,0.5666666666666667,0.6166666666666666,1,26 -tissues,0.5166666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -juice,0.735,1.0,0.5666666666666667,0.7,1,26 -pink,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666667,1,25 -lemon,0.655,1.0,0.5833333333333333,0.7,1,26 -peach,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -bowl,0.5466666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.505,1.0,0.4666666666666666,0.6166666666666666,1,26 -blue,0.6633333333333333,1.0,0.6,0.7166666666666667,1,25 -used,0.8399999999999999,1.0,0.7333333333333333,0.8166666666666668,1,23 -energizer,0,0,0,0,1,26 -pear,0.32999999999999996,1.0,0.36666666666666664,0.5333333333333333,1,26 -ball,0.575,1.0,0.5499999999999999,0.6666666666666667,1,25 -notebook,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -garlic,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -cleaning,0.755,1.0,0.6166666666666666,0.7333333333333333,1,26 -pair,0.8383333333333333,1.0,0.8,0.8800000000000001,2,26 -container,0.6833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -tomato,0.675,1.0,0.6,0.7166666666666667,1,26 -cellphone,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -potato,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -light,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8800000000000001,1.0,0.8666666666666668,0.9200000000000002,2,27 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6497067901234567 -F1-Score: 0.692037037037037 -Precision: 0.9120370370370371 -Recall: 0.6089506172839505 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.63,1.0,0.6166666666666666,0.7166666666666666,1,24 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.775,1.0,0.7166666666666666,0.8,1,24 -keyboard,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -glue,0.75,1.0,0.6666666666666666,0.7666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.7749999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -flashlight,0.5599999999999999,1.0,0.5833333333333333,0.7,1,26 -cup,0.5466666666666666,0.5,0.6333333333333333,0.54,1,26 -folded,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -jam,0.7083333333333333,1.0,0.6,0.7166666666666667,1,26 -black,0.8883333333333333,0.7583333333333333,1.0,0.8457142857142858,6,20 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -soccer,0.5683333333333332,1.0,0.4333333333333333,0.6,1,26 -hat,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -brown,0.915,1.0,0.8666666666666668,0.9200000000000002,2,24 -coffee,0.69,1.0,0.6166666666666666,0.7333333333333334,1,26 -handle,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -food,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -towel,0.6133333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.6216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -stapler,0.6583333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -onion,0.4183333333333333,1.0,0.4499999999999999,0.6,1,26 -bag,0.63,1.0,0.5499999999999999,0.6833333333333333,1,26 -sponge,0.6849999999999999,1.0,0.55,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666666,1,25 -special,0.75,1.0,0.7,0.7833333333333333,1,26 -colgate,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.7466666666666667,1.0,0.65,0.75,1,26 -tube,0.7,1.0,0.5666666666666667,0.7,1,26 -cell,0.5166666666666667,0.55,0.7,0.5633333333333332,1,26 -mug,0.7916666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -yogurt,0.7916666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -plantain,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.9833333333333334,0.95,1.0,0.9666666666666666,3,25 -pepper,0.8099999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -wheat,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -kleenex,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -toothbrush,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -baseball,0.6416666666666666,1.0,0.5666666666666667,0.7,1,26 -pliers,0.7433333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7350000000000001,1.0,0.6666666666666666,0.7666666666666667,1,26 -thins,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -package,0.655,1.0,0.65,0.75,1,26 -k,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.675,1.0,0.5999999999999999,0.7166666666666667,1,26 -fruit,0.7466666666666667,0.7,0.8666666666666666,0.7333333333333334,2,26 -apple,0.5133333333333334,0.9,0.6166666666666666,0.65,1,25 -bell,0.755,1.0,0.6833333333333333,0.7833333333333334,1,26 -battery,0.5833333333333334,1.0,0.6166666666666666,0.7166666666666666,1,26 -jar,0.6016666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -bound,0.73,1.0,0.65,0.75,1,26 -lettuce,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -brush,0.6816666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -scissors,0.78,1.0,0.6499999999999999,0.75,1,26 -lime,0.725,1.0,0.65,0.75,1,25 -toothpaste,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -top,0.8333333333333333,1.0,0.8666666666666666,0.9,1,26 -spiral,0.7433333333333334,1.0,0.65,0.75,1,26 -handles,0.6799999999999999,1.0,0.6,0.7166666666666667,1,25 -camera,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -eraser,0.5383333333333333,1.0,0.4499999999999999,0.6,1,26 -creamer,0,0,0,0,1,26 -white,0.9500000000000002,0.85,1.0,0.8999999999999998,5,21 -banana,0.7166666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -pitcher,0.7266666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -phone,0.41,0.55,0.5333333333333333,0.5033333333333333,1,26 -stick,0.7133333333333333,1.0,0.7,0.7833333333333333,1,25 -cereal,0.73,1.0,0.7,0.7833333333333333,1,26 -bulb,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.7433333333333334,1.0,0.6333333333333333,0.75,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7433333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -can,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -coca,0.7066666666666667,1.0,0.55,0.6833333333333333,1,26 -crackers,0.725,1.0,0.7,0.7833333333333333,1,26 -plate,0.8183333333333334,1.0,0.7166666666666666,0.8,1,25 -calculator,0.4916666666666666,0.9,0.5499999999999999,0.6,1,26 -tissues,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -juice,0.5566666666666666,1.0,0.4833333333333334,0.6333333333333333,1,26 -pink,0.6616666666666666,1.0,0.5,0.65,1,25 -lemon,0.5916666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -peach,0.6883333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -bowl,0.5999999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -blue,0.875,1.0,0.8333333333333333,0.8833333333333332,1,25 -used,0.4149999999999999,0.7,0.5166666666666666,0.53,1,24 -energizer,0,0,0,0,1,26 -pear,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -ball,0.7249999999999999,1.0,0.7,0.7833333333333333,1,25 -notebook,0.5966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -garlic,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -pair,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,27 -container,0.5083333333333333,1.0,0.5166666666666666,0.65,1,26 -tomato,0.6483333333333333,0.95,0.5,0.6166666666666667,1,26 -cellphone,0.47333333333333333,0.55,0.6166666666666666,0.5399999999999999,1,26 -potato,0.8416666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -light,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6579166666666666 -F1-Score: 0.6955467372134039 -Precision: 0.8968364197530865 -Recall: 0.621604938271605 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7833333333333333,1.0,0.7,0.7833333333333333,1,25 -yellow,0.9666666666666668,0.9333333333333332,1.0,0.9600000000000002,6,24 -looks,0.7616666666666667,0.85,0.6833333333333333,0.7,1,24 -keyboard,0.7133333333333333,1.0,0.65,0.75,1,26 -glue,0.875,1.0,0.7833333333333333,0.85,1,26 -milk,0,0,0,0,1,26 -cola,0.485,1.0,0.41666666666666663,0.5833333333333334,1,26 -flashlight,0.6599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.5266666666666666,0.5,0.6666666666666666,0.5466666666666666,1,26 -folded,0.38333333333333336,1.0,0.4333333333333333,0.5833333333333333,1,26 -jam,0.5516666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -black,0.9233333333333335,0.8,1.0,0.8666666666666666,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.4966666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -soccer,0.5966666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -hat,0.6583333333333333,1.0,0.65,0.75,1,26 -brown,0.9416666666666667,1.0,0.9333333333333332,0.96,2,24 -coffee,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -handle,0.7666666666666667,1.0,0.7166666666666666,0.8,1,26 -food,0.4966666666666667,1.0,0.4666666666666666,0.6166666666666667,1,25 -towel,0.8766666666666667,1.0,0.7833333333333333,0.85,1,26 -chips,0.6933333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -stapler,0.755,1.0,0.7166666666666666,0.8,1,26 -onion,0.6233333333333333,1.0,0.5166666666666666,0.65,1,26 -bag,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -sponge,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.675,1.0,0.5833333333333333,0.7,1,25 -special,0.6683333333333333,1.0,0.6499999999999999,0.75,1,26 -colgate,0.6216666666666667,1.0,0.5166666666666666,0.65,1,26 -leaf,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -tube,0.6749999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -mug,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -yogurt,0.6916666666666667,1.0,0.6166666666666666,0.7166666666666667,1,26 -plantain,0.9550000000000001,1.0,0.9,0.9333333333333332,1,26 -red,0.8700000000000001,0.75,1.0,0.8466666666666667,3,25 -pepper,0.7666666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -wheat,0.7083333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -kleenex,0.685,1.0,0.55,0.6833333333333333,1,26 -toothbrush,0.7166666666666667,1.0,0.7499999999999999,0.8166666666666668,1,26 -binder,0.5216666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -baseball,0.5016666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -pliers,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6399999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -thins,0.7983333333333333,1.0,0.6333333333333333,0.75,1,26 -package,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -k,0.5,1.0,0.45,0.6,1,26 -jelly,0.49333333333333335,1.0,0.4666666666666666,0.6166666666666666,1,26 -fruit,0.8066666666666666,0.75,0.9333333333333332,0.7966666666666666,2,27 -apple,0.6133333333333333,0.75,0.7,0.65,1,25 -bell,0.7166666666666667,1.0,0.6,0.7166666666666667,1,26 -battery,0.705,1.0,0.5999999999999999,0.7166666666666667,1,26 -jar,0.55,1.0,0.4666666666666666,0.6166666666666667,1,26 -bound,0.6666666666666666,1.0,0.6499999999999999,0.75,1,26 -lettuce,0.6966666666666665,1.0,0.5666666666666667,0.7,1,26 -brush,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -scissors,0.635,1.0,0.55,0.6833333333333333,1,26 -lime,0.5766666666666667,1.0,0.5,0.65,1,25 -toothpaste,0.6733333333333333,1.0,0.65,0.75,1,26 -top,0.6933333333333334,1.0,0.6,0.7166666666666667,1,26 -spiral,0.5166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.7083333333333333,1.0,0.7,0.7833333333333333,1,25 -camera,0.7166666666666667,1.0,0.7,0.7833333333333333,1,26 -eraser,0.8133333333333332,1.0,0.75,0.8166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7933333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -pitcher,0.75,1.0,0.65,0.75,1,26 -phone,0.6133333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -stick,0.6416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,25 -cereal,0.86,1.0,0.7833333333333333,0.85,1,26 -bulb,0.8833333333333332,1.0,0.8666666666666668,0.9200000000000002,2,26 -hair,0.6866666666666668,1.0,0.5499999999999999,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.41666666666666663,1.0,0.4999999999999999,0.6333333333333333,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -coca,0.4883333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -crackers,0.6933333333333334,1.0,0.6,0.7166666666666667,1,26 -plate,0.79,1.0,0.6,0.7333333333333334,1,25 -calculator,0.5383333333333333,0.6,0.7333333333333333,0.5800000000000001,1,26 -tissues,0.7433333333333334,1.0,0.5666666666666667,0.7,1,26 -juice,0.7133333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -pink,0.6816666666666668,1.0,0.5333333333333333,0.6833333333333333,1,26 -lemon,0.6766666666666666,1.0,0.45,0.6166666666666667,1,26 -peach,0.8550000000000001,1.0,0.8333333333333333,0.8833333333333332,1,26 -bowl,0.7133333333333333,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.44666666666666666,1.0,0.4499999999999999,0.6,1,26 -blue,0.78,1.0,0.7499999999999999,0.8166666666666667,1,25 -used,0.75,1.0,0.7166666666666666,0.8,1,24 -energizer,0,0,0,0,1,26 -pear,0.73,1.0,0.6499999999999999,0.75,1,26 -ball,0.8016666666666665,1.0,0.6333333333333333,0.75,1,25 -notebook,0.585,1.0,0.4333333333333333,0.6,1,26 -garlic,0.5266666666666666,1.0,0.4333333333333333,0.6,1,26 -cleaning,0.7083333333333333,1.0,0.65,0.75,1,26 -pair,0.9066666666666666,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.8183333333333334,1.0,0.7166666666666666,0.8,1,25 -tomato,0.6733333333333333,0.9,0.6,0.6666666666666667,1,26 -cellphone,0.6233333333333333,1.0,0.5833333333333333,0.7,1,26 -potato,0.575,1.0,0.5166666666666666,0.65,1,25 -light,0.8766666666666667,1.0,0.8333333333333334,0.9000000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.654320987654321 -F1-Score: 0.6897839506172839 -Precision: 0.9058641975308643 -Recall: 0.6089506172839506 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7416666666666667,1.0,0.6833333333333333,0.7833333333333333,1,25 -yellow,0.9800000000000001,0.95,1.0,0.9666666666666666,6,24 -looks,0.6983333333333333,0.95,0.5999999999999999,0.6833333333333333,1,24 -keyboard,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -glue,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -flashlight,0.5266666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -cup,0.41500000000000004,0.5,0.6,0.52,1,26 -folded,0.6133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -jam,0.825,1.0,0.7,0.8,1,26 -black,0.9466666666666667,0.85,1.0,0.9,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6733333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -soccer,0.52,1.0,0.4833333333333333,0.6333333333333333,1,26 -hat,0.5216666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -brown,0.8633333333333333,1.0,0.8333333333333333,0.9,2,24 -coffee,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -handle,0.5583333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -food,0.9016666666666667,1.0,0.8,0.8666666666666666,1,26 -towel,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -chips,0.6950000000000001,1.0,0.5666666666666667,0.7,1,26 -stapler,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -onion,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.7433333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -sponge,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.5683333333333334,1.0,0.5833333333333333,0.7,1,25 -special,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -colgate,0.7716666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -leaf,0.4883333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -tube,0.61,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.5283333333333333,0.55,0.6166666666666666,0.5399999999999999,1,26 -mug,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -yogurt,0.6266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.71,1.0,0.6,0.7166666666666667,1,26 -red,0.8399999999999999,0.7,1.0,0.8114285714285714,3,24 -pepper,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -wheat,0.7216666666666666,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.6883333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -toothbrush,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -binder,0.7183333333333334,1.0,0.55,0.6833333333333333,1,26 -baseball,0.5599999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -pliers,0.8933333333333333,1.0,0.8,0.8666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.71,1.0,0.5999999999999999,0.7166666666666667,1,26 -thins,0.63,1.0,0.55,0.6833333333333333,1,26 -package,0.5549999999999999,1.0,0.4833333333333333,0.6333333333333334,1,26 -k,0.6433333333333333,1.0,0.5,0.65,1,26 -jelly,0.625,1.0,0.5333333333333333,0.6666666666666667,1,26 -fruit,0.6833333333333333,0.65,0.8666666666666668,0.7166666666666667,2,25 -apple,0.5349999999999999,0.9,0.5333333333333332,0.6166666666666666,1,25 -bell,0.5,1.0,0.5,0.6333333333333333,1,26 -battery,0.5216666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -jar,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -bound,0.6933333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.6849999999999999,1.0,0.6499999999999999,0.75,1,26 -brush,0.6983333333333334,1.0,0.4999999999999999,0.65,1,26 -scissors,0.78,1.0,0.6,0.7333333333333334,1,26 -lime,0.7816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,25 -toothpaste,0.7166666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -top,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -spiral,0.71,1.0,0.6666666666666666,0.7666666666666666,1,26 -handles,0.735,1.0,0.5999999999999999,0.7166666666666667,1,25 -camera,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -eraser,0.7249999999999999,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.7083333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -pitcher,0.6216666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -phone,0.3883333333333333,0.6,0.5666666666666667,0.52,1,26 -stick,0.8233333333333333,1.0,0.65,0.7666666666666667,1,25 -cereal,0.5633333333333332,1.0,0.4666666666666666,0.6166666666666667,1,26 -bulb,0.9266666666666665,1.0,0.9,0.9400000000000001,2,26 -hair,0.475,1.0,0.4333333333333333,0.5833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,24 -coca,0.6683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -crackers,0.6666666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -plate,0.7916666666666666,1.0,0.7499999999999999,0.8166666666666667,1,25 -calculator,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -tissues,0.6216666666666667,1.0,0.5,0.65,1,26 -juice,0.6483333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -pink,0.5683333333333332,1.0,0.4833333333333333,0.6333333333333333,1,25 -lemon,0.5466666666666666,1.0,0.4166666666666667,0.5833333333333333,1,26 -peach,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -bowl,0.78,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8099999999999999,1.0,0.7,0.7833333333333334,1,26 -blue,0.4883333333333334,1.0,0.4,0.5666666666666667,1,25 -used,0.7683333333333333,1.0,0.7166666666666666,0.8,1,24 -energizer,0,0,0,0,1,26 -pear,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -ball,0.7383333333333333,1.0,0.6,0.7166666666666667,1,25 -notebook,0.6416666666666666,1.0,0.6499999999999999,0.75,1,26 -garlic,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -cleaning,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -pair,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -container,0.6933333333333334,1.0,0.5666666666666667,0.7,1,25 -tomato,0.6266666666666667,0.6,0.7666666666666666,0.6066666666666667,1,26 -cellphone,0.25166666666666665,0.75,0.4499999999999999,0.5066666666666666,1,26 -potato,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -light,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8300000000000001,1.0,0.8,0.8800000000000001,2,25 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6492746913580246 -F1-Score: 0.680568783068783 -Precision: 0.8981481481481481 -Recall: 0.598611111111111 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6416666666666666,1.0,0.5833333333333333,0.7,1,25 -yellow,0.95,0.85,1.0,0.9,6,25 -looks,0.4333333333333334,0.95,0.4666666666666666,0.5666666666666667,1,24 -keyboard,0.8883333333333333,1.0,0.8,0.8666666666666666,1,26 -glue,0.7849999999999999,1.0,0.6833333333333333,0.7833333333333334,1,26 -milk,0,0,0,0,1,26 -cola,0.775,1.0,0.7499999999999999,0.8166666666666667,1,26 -flashlight,0.7549999999999999,1.0,0.6499999999999999,0.75,1,26 -cup,0.5733333333333333,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -jam,0.3883333333333333,1.0,0.3666666666666667,0.5333333333333333,1,26 -black,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.6633333333333333,1.0,0.55,0.6833333333333333,1,26 -soccer,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -hat,0.85,1.0,0.7666666666666666,0.8333333333333333,1,26 -brown,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,25 -coffee,0.475,1.0,0.5666666666666667,0.6833333333333333,1,26 -handle,0.79,1.0,0.6333333333333333,0.75,1,25 -food,0.73,1.0,0.6499999999999999,0.75,1,25 -towel,0.5966666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -chips,0.76,1.0,0.6499999999999999,0.75,1,26 -stapler,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -onion,0.5766666666666665,1.0,0.4999999999999999,0.65,1,26 -bag,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -sponge,0.5299999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6100000000000001,1.0,0.5333333333333333,0.6666666666666667,1,25 -special,0.65,1.0,0.5833333333333333,0.7,1,26 -colgate,0.8083333333333332,1.0,0.7499999999999999,0.8166666666666667,1,26 -leaf,0.525,1.0,0.4666666666666666,0.6166666666666667,1,26 -tube,0.7066666666666668,1.0,0.6166666666666666,0.7333333333333333,1,26 -cell,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -mug,0.5966666666666667,1.0,0.5166666666666666,0.65,1,26 -yogurt,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -plantain,0.5933333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -red,0.865,0.7416666666666666,1.0,0.839047619047619,3,24 -pepper,0.5216666666666667,1.0,0.5833333333333333,0.7,1,26 -wheat,0.7633333333333333,1.0,0.6499999999999999,0.75,1,26 -kleenex,0.7733333333333333,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.6216666666666667,1.0,0.6,0.7166666666666667,1,26 -binder,0.4999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.5533333333333333,1.0,0.4333333333333333,0.6,1,26 -pliers,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.5916666666666667,1.0,0.5833333333333333,0.7,1,26 -thins,0.4916666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -package,0.6966666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -k,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -jelly,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -fruit,0.7783333333333333,0.6,0.9666666666666666,0.72,2,26 -apple,0.5966666666666666,1.0,0.4833333333333333,0.6333333333333333,1,25 -bell,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -battery,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -jar,0.6766666666666666,1.0,0.65,0.75,1,26 -bound,0.5549999999999999,1.0,0.4499999999999999,0.6,1,26 -lettuce,0.725,1.0,0.7,0.7833333333333333,1,26 -brush,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -lime,0.6516666666666666,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -top,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -spiral,0.7016666666666665,1.0,0.6499999999999999,0.75,1,26 -handles,0.7583333333333333,1.0,0.7,0.7833333333333333,1,25 -camera,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -pitcher,0.6333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -phone,0.75,1.0,0.7,0.7833333333333333,1,26 -stick,0.4966666666666667,1.0,0.5499999999999999,0.6666666666666666,1,25 -cereal,0.5583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -bulb,0.95,1.0,0.9333333333333332,0.96,2,27 -hair,0.7083333333333333,1.0,0.65,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.715,1.0,0.5833333333333333,0.7166666666666667,1,26 -can,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,26 -coca,0.6749999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -crackers,0.6133333333333333,1.0,0.5,0.65,1,26 -plate,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -calculator,0.4616666666666667,0.55,0.6333333333333332,0.5366666666666667,1,26 -tissues,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.7416666666666667,1.0,0.65,0.75,1,26 -pink,0.5883333333333333,1.0,0.5166666666666666,0.65,1,25 -lemon,0.6683333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -peach,0.7466666666666666,1.0,0.7166666666666666,0.8,1,26 -bowl,0.5299999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.69,1.0,0.6,0.7166666666666667,1,26 -blue,0.6883333333333332,1.0,0.7,0.7833333333333333,1,25 -used,0.6583333333333333,1.0,0.5499999999999999,0.6833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.8133333333333332,1.0,0.7666666666666666,0.8333333333333334,1,26 -ball,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -notebook,0.5333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -garlic,0.755,1.0,0.7166666666666666,0.8,1,26 -cleaning,0.6183333333333334,1.0,0.5166666666666666,0.65,1,26 -pair,0.925,1.0,0.9,0.9400000000000001,2,26 -container,0.6433333333333333,1.0,0.5833333333333333,0.7,1,25 -tomato,0.5,0.7,0.5999999999999999,0.5733333333333333,1,26 -cellphone,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -potato,0.7466666666666667,1.0,0.6833333333333333,0.7666666666666666,1,25 -light,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,27 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6482561728395062 -F1-Score: 0.689126984126984 -Precision: 0.9056327160493828 -Recall: 0.6100308641975308 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6583333333333333,1.0,0.4833333333333333,0.6333333333333333,1,25 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.4750000000000001,0.95,0.4666666666666666,0.5833333333333334,1,24 -keyboard,0.58,1.0,0.5499999999999999,0.6666666666666666,1,26 -glue,0.6183333333333334,1.0,0.5333333333333332,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -flashlight,0.5349999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -cup,0.4033333333333333,0.5,0.5666666666666667,0.5133333333333334,1,26 -folded,0.8716666666666667,1.0,0.75,0.8333333333333333,1,26 -jam,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -black,0.8733333333333334,0.7583333333333333,1.0,0.8504761904761905,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.64,1.0,0.5999999999999999,0.7166666666666667,1,26 -soccer,0.6966666666666667,1.0,0.7,0.7833333333333333,1,26 -hat,0.6799999999999999,1.0,0.65,0.75,1,26 -brown,0.9349999999999999,1.0,0.9,0.9400000000000001,2,25 -coffee,0.5166666666666666,1.0,0.5999999999999999,0.7,1,26 -handle,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -food,0.65,1.0,0.6,0.7166666666666667,1,24 -towel,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -chips,0.7333333333333333,1.0,0.65,0.75,1,26 -stapler,0.5516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -bag,0.6016666666666667,1.0,0.4333333333333333,0.6,1,26 -sponge,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.58,1.0,0.5166666666666666,0.65,1,25 -special,0.6883333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -colgate,0.6666666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -leaf,0.8883333333333333,1.0,0.8333333333333333,0.8833333333333332,1,26 -tube,0.71,1.0,0.7,0.7833333333333333,1,26 -cell,0.4933333333333333,0.5,0.5666666666666667,0.5133333333333333,1,26 -mug,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -yogurt,0.6599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.45499999999999996,1.0,0.38333333333333336,0.55,1,26 -red,0.93,0.8583333333333332,1.0,0.9123809523809525,3,25 -pepper,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -wheat,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -kleenex,0.6900000000000001,1.0,0.5166666666666666,0.6666666666666667,1,26 -toothbrush,0.5349999999999999,1.0,0.5333333333333333,0.6666666666666666,1,25 -binder,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -baseball,0.6666666666666667,1.0,0.55,0.6833333333333333,1,26 -pliers,0.45499999999999996,1.0,0.41666666666666663,0.5833333333333334,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7916666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -thins,0.75,1.0,0.6666666666666666,0.7666666666666667,1,26 -package,0.585,1.0,0.5833333333333333,0.7,1,26 -k,0.6,1.0,0.5833333333333333,0.7,1,26 -jelly,0.6883333333333334,1.0,0.65,0.75,1,26 -fruit,0.8300000000000001,0.8666666666666666,0.8666666666666668,0.8333333333333334,2,26 -apple,0.6199999999999999,0.65,0.6666666666666666,0.6,1,25 -bell,0.7333333333333332,1.0,0.7333333333333332,0.8,1,26 -battery,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -jar,0.5999999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -bound,0.6666666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -lettuce,0.8299999999999998,1.0,0.7333333333333333,0.8166666666666667,1,26 -brush,0.6216666666666667,1.0,0.65,0.75,1,26 -scissors,0.71,1.0,0.6,0.7166666666666667,1,26 -lime,0.5516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -toothpaste,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.7166666666666666,1.0,0.65,0.75,1,26 -spiral,0.79,1.0,0.6166666666666666,0.7333333333333333,1,26 -handles,0.6383333333333333,1.0,0.5166666666666666,0.65,1,25 -camera,0.6133333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.5549999999999999,1.0,0.4833333333333333,0.6333333333333334,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.5599999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -pitcher,0.8166666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -phone,0.3916666666666666,0.6,0.5833333333333333,0.53,1,26 -stick,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -cereal,0.735,1.0,0.6166666666666666,0.7333333333333333,1,26 -bulb,0.8533333333333333,1.0,0.8,0.8800000000000001,2,27 -hair,0.8300000000000001,1.0,0.7166666666666666,0.8,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -can,0.8833333333333332,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -crackers,0.65,1.0,0.6833333333333332,0.7666666666666666,1,26 -plate,0.8583333333333332,1.0,0.7833333333333333,0.85,1,25 -calculator,0.9550000000000001,1.0,0.9,0.9333333333333332,1,26 -tissues,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -pink,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -lemon,0.6433333333333333,1.0,0.55,0.6833333333333333,1,26 -peach,0.6749999999999999,1.0,0.7,0.7833333333333333,1,26 -bowl,0.6633333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.725,1.0,0.65,0.75,1,26 -blue,0.8099999999999999,1.0,0.7333333333333333,0.8166666666666667,1,25 -used,0.7,1.0,0.5833333333333333,0.7,1,23 -energizer,0,0,0,0,1,26 -pear,0.6799999999999999,1.0,0.6,0.7166666666666666,1,26 -ball,0.655,1.0,0.5499999999999999,0.6833333333333333,1,25 -notebook,0.605,1.0,0.5833333333333333,0.7,1,26 -garlic,0.5683333333333332,1.0,0.5333333333333332,0.6666666666666666,1,26 -cleaning,0.825,1.0,0.7499999999999999,0.8166666666666668,1,26 -pair,0.8233333333333335,1.0,0.7666666666666667,0.86,2,27 -container,0.5833333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -tomato,0.705,0.8,0.6166666666666666,0.6333333333333333,1,26 -cellphone,0.3466666666666667,0.6,0.45,0.49000000000000005,1,26 -potato,0.8300000000000001,1.0,0.7833333333333333,0.85,1,25 -light,0.93,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8549999999999999,1.0,0.8333333333333333,0.9,2,27 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6481172839506173 -F1-Score: 0.6887301587301587 -Precision: 0.8979938271604937 -Recall: 0.6091049382716048 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.4583333333333332,1.0,0.4499999999999999,0.6,1,25 -yellow,0.9,0.75,1.0,0.8399999999999999,6,24 -looks,0.7666666666666666,0.95,0.6833333333333333,0.75,1,24 -keyboard,0.46333333333333326,1.0,0.4999999999999999,0.6333333333333333,1,26 -glue,0.6666666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -flashlight,0.7050000000000001,1.0,0.6166666666666666,0.7333333333333334,1,26 -cup,0.43999999999999995,0.5,0.6333333333333333,0.5266666666666666,1,26 -folded,0.5583333333333333,1.0,0.55,0.6666666666666667,1,26 -jam,0.5183333333333333,1.0,0.5166666666666666,0.65,1,26 -black,0.93,0.8,1.0,0.8666666666666666,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -soccer,0.6833333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -hat,0.6416666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -brown,0.8933333333333333,1.0,0.8666666666666668,0.9200000000000002,2,24 -coffee,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -handle,0.5466666666666666,1.0,0.4833333333333333,0.6333333333333333,1,25 -food,0.85,1.0,0.7833333333333333,0.85,1,24 -towel,0.8166666666666667,1.0,0.7499999999999999,0.8166666666666667,1,26 -chips,0.7266666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -stapler,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -onion,0.53,1.0,0.5166666666666666,0.65,1,26 -bag,0.7516666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -sponge,0.4833333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.705,1.0,0.65,0.75,1,26 -special,0.655,1.0,0.6499999999999999,0.75,1,26 -colgate,0.58,1.0,0.5833333333333333,0.7,1,26 -leaf,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -tube,0.5883333333333334,1.0,0.6,0.7166666666666667,1,26 -cell,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -mug,0.605,1.0,0.4999999999999999,0.65,1,26 -yogurt,0.5716666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.6666666666666666,1.0,0.6,0.7166666666666667,1,26 -red,0.8733333333333334,0.7666666666666666,1.0,0.8533333333333333,3,24 -pepper,0.5999999999999999,1.0,0.5833333333333333,0.7,1,26 -wheat,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -toothbrush,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -binder,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -baseball,0.65,1.0,0.6499999999999999,0.75,1,26 -pliers,0.735,1.0,0.5999999999999999,0.7166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -thins,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -package,0.6316666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -k,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -jelly,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.7150000000000001,0.6666666666666667,0.8666666666666666,0.7333333333333333,2,25 -apple,0.7649999999999999,0.75,0.7,0.6833333333333333,1,25 -bell,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -battery,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -jar,0.9133333333333333,1.0,0.85,0.9,1,26 -bound,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -lettuce,0.6233333333333333,1.0,0.55,0.6833333333333333,1,26 -brush,0.605,1.0,0.4999999999999999,0.6333333333333333,1,26 -scissors,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -lime,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -toothpaste,0.5716666666666667,1.0,0.5,0.6333333333333333,1,26 -top,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -spiral,0.76,1.0,0.7166666666666666,0.8,1,26 -handles,0.6133333333333334,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.7049999999999998,1.0,0.5333333333333333,0.6833333333333333,1,26 -eraser,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.9099999999999999,0.7833333333333333,1.0,0.86,5,22 -banana,0.4833333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -pitcher,0.6849999999999999,1.0,0.6499999999999999,0.75,1,26 -phone,0.7150000000000001,1.0,0.5499999999999999,0.6833333333333333,1,26 -stick,0.605,1.0,0.5833333333333333,0.7,1,25 -cereal,0.575,1.0,0.5833333333333333,0.7,1,26 -bulb,0.8999999999999998,1.0,0.8999999999999998,0.9400000000000001,2,27 -hair,0.6633333333333333,1.0,0.6499999999999999,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -can,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -crackers,0.6,1.0,0.6833333333333333,0.7666666666666666,1,26 -plate,0.605,1.0,0.5833333333333333,0.7,1,25 -calculator,0.38,0.5,0.6,0.52,1,26 -tissues,0.6216666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -juice,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -pink,0.63,1.0,0.5999999999999999,0.7166666666666667,1,25 -lemon,0.55,1.0,0.5999999999999999,0.7,1,26 -peach,0.575,1.0,0.5499999999999999,0.6666666666666666,1,26 -bowl,0.4916666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -blue,0.73,1.0,0.6666666666666666,0.7666666666666666,1,25 -used,0.39333333333333337,0.5,0.5,0.48666666666666664,1,23 -energizer,0,0,0,0,1,26 -pear,0.6516666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -ball,0.7416666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -notebook,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.7083333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -cleaning,0.7933333333333333,1.0,0.7166666666666666,0.8,1,26 -pair,0.9166666666666666,1.0,0.9,0.9400000000000001,2,27 -container,0.5999999999999999,1.0,0.4833333333333333,0.6333333333333333,1,25 -tomato,0.5666666666666667,0.95,0.55,0.65,1,26 -cellphone,0.75,1.0,0.6833333333333333,0.7833333333333334,1,26 -potato,0.805,1.0,0.7166666666666666,0.8,1,26 -light,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.85,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6341203703703704 -F1-Score: 0.6826543209876542 -Precision: 0.8973765432098765 -Recall: 0.6046296296296296 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -yellow,0.93,0.8166666666666668,1.0,0.8799999999999999,6,23 -looks,0.7016666666666667,0.9,0.6666666666666666,0.7166666666666667,1,24 -keyboard,0.4666666666666666,1.0,0.5166666666666666,0.65,1,26 -glue,0.5883333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -flashlight,0.5816666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -cup,0.605,0.5,0.7333333333333333,0.5733333333333334,1,26 -folded,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -jam,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -black,0.9033333333333333,0.825,1.0,0.8923809523809524,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.675,1.0,0.5333333333333333,0.6666666666666667,1,26 -soccer,0.6216666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -hat,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -brown,0.9266666666666665,1.0,0.9,0.9400000000000001,2,24 -coffee,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -handle,0.7083333333333333,1.0,0.7166666666666666,0.8,1,26 -food,0.7166666666666666,1.0,0.7166666666666666,0.8,1,25 -towel,0.39666666666666667,1.0,0.4333333333333334,0.5833333333333333,1,26 -chips,0.5133333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -stapler,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -bag,0.6466666666666667,1.0,0.65,0.75,1,26 -sponge,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.8133333333333332,1.0,0.7499999999999999,0.8166666666666667,1,25 -special,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -colgate,0.705,1.0,0.5999999999999999,0.7166666666666666,1,26 -leaf,0.73,1.0,0.7,0.7833333333333333,1,26 -tube,0.5966666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -cell,0.8300000000000001,1.0,0.7166666666666666,0.8,1,26 -mug,0.6849999999999999,1.0,0.55,0.6833333333333333,1,26 -yogurt,0.36666666666666664,1.0,0.41666666666666663,0.5666666666666667,1,26 -plantain,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -red,0.825,0.6083333333333333,1.0,0.7457142857142858,3,25 -pepper,0.8566666666666667,1.0,0.7,0.8,1,26 -wheat,0.5716666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -kleenex,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -toothbrush,0.53,1.0,0.4666666666666666,0.6166666666666667,1,26 -binder,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -baseball,0.6016666666666667,1.0,0.55,0.6833333333333333,1,26 -pliers,0.705,1.0,0.7,0.7833333333333334,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -thins,0.7083333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -package,0.5716666666666667,1.0,0.4499999999999999,0.6,1,26 -k,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -jelly,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333334,1,26 -fruit,0.6616666666666666,0.6,0.9,0.7,2,25 -apple,0.7633333333333333,0.95,0.6666666666666666,0.7333333333333333,1,25 -bell,0.735,1.0,0.65,0.75,1,26 -battery,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -jar,0.39666666666666667,1.0,0.4833333333333334,0.6166666666666666,1,26 -bound,0.4966666666666667,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.4083333333333333,1.0,0.4166666666666667,0.5666666666666667,1,26 -brush,0.5449999999999999,0.6,0.7166666666666666,0.5833333333333333,1,26 -scissors,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -lime,0.6466666666666667,1.0,0.55,0.6833333333333333,1,25 -toothpaste,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -top,0.6083333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -spiral,0.6816666666666666,1.0,0.5666666666666667,0.7,1,26 -handles,0.575,1.0,0.4833333333333332,0.6333333333333333,1,25 -camera,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -eraser,0.8916666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6716666666666666,0.9,0.5999999999999999,0.65,1,26 -pitcher,0.525,1.0,0.5166666666666666,0.65,1,26 -phone,0.6416666666666667,1.0,0.6,0.7166666666666667,1,26 -stick,0.63,1.0,0.5999999999999999,0.7166666666666666,1,25 -cereal,0.6083333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -bulb,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -hair,0.5133333333333333,1.0,0.5166666666666666,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8350000000000002,1.0,0.7,0.8,1,26 -can,0.8383333333333333,1.0,0.8,0.8800000000000001,2,25 -coca,0.5016666666666667,1.0,0.5166666666666666,0.65,1,26 -crackers,0.725,1.0,0.65,0.75,1,26 -plate,0.5866666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -calculator,0.5783333333333334,0.6,0.5833333333333333,0.55,1,26 -tissues,0.735,1.0,0.65,0.75,1,26 -juice,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -pink,0.655,1.0,0.5666666666666667,0.6833333333333333,1,25 -lemon,0.5883333333333334,1.0,0.5166666666666666,0.6666666666666667,1,26 -peach,0.6916666666666667,1.0,0.5833333333333333,0.7,1,26 -bowl,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -blue,0.6783333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -used,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.7166666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -ball,0.7166666666666667,1.0,0.6,0.7166666666666667,1,25 -notebook,0.8516666666666666,1.0,0.7,0.8,1,26 -garlic,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -cleaning,0.8683333333333334,1.0,0.75,0.8333333333333333,1,26 -pair,0.9266666666666665,1.0,0.9,0.9400000000000001,2,26 -container,0.6166666666666666,1.0,0.6,0.7166666666666667,1,25 -tomato,0.65,0.75,0.7,0.65,1,26 -cellphone,0.7516666666666667,1.0,0.6499999999999999,0.75,1,26 -potato,0.575,1.0,0.5666666666666667,0.6833333333333333,1,25 -light,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6405246913580247 -F1-Score: 0.6827910052910053 -Precision: 0.8986111111111112 -Recall: 0.6055555555555556 diff --git a/Validation/UW_raw_75_object_0.4.csv b/Validation/UW_raw_75_object_0.4.csv deleted file mode 100644 index c2fc470..0000000 --- a/Validation/UW_raw_75_object_0.4.csv +++ /dev/null @@ -1,2875 +0,0 @@ -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7416666666666666,1.0,0.65,0.75,1,25 -yellow,0.8733333333333334,0.75,1.0,0.8400000000000001,6,23 -looks,0.69,0.85,0.6333333333333333,0.6666666666666667,1,24 -keyboard,0.5833333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -glue,0.9216666666666666,1.0,0.85,0.9,1,26 -milk,0,0,0,0,1,26 -cola,0.6966666666666665,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.655,1.0,0.5999999999999999,0.7166666666666667,1,26 -cup,0.5283333333333333,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.6083333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -jam,0.7,1.0,0.7333333333333333,0.8,1,26 -black,0.845,0.6333333333333333,1.0,0.76,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6966666666666667,1.0,0.6,0.7166666666666666,1,26 -soccer,0.7133333333333333,1.0,0.65,0.75,1,26 -hat,0.5333333333333333,1.0,0.5,0.6333333333333333,1,26 -brown,0.9016666666666667,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.6516666666666666,1.0,0.55,0.6833333333333333,1,26 -handle,0.9016666666666666,1.0,0.8,0.8666666666666666,1,25 -food,0.755,1.0,0.7166666666666666,0.8,1,24 -towel,0.53,1.0,0.4499999999999999,0.6166666666666667,1,26 -chips,0.425,1.0,0.4999999999999999,0.6333333333333333,1,26 -stapler,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -onion,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -bag,0.8,1.0,0.8666666666666666,0.9,1,26 -sponge,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7,1.0,0.6499999999999999,0.75,1,26 -special,0.6416666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -leaf,0.705,1.0,0.65,0.75,1,26 -tube,0.6083333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -cell,0.675,1.0,0.65,0.75,1,26 -mug,0.85,1.0,0.8166666666666667,0.8666666666666666,1,26 -yogurt,0.63,1.0,0.5666666666666667,0.7,1,26 -plantain,0.7966666666666666,1.0,0.6333333333333333,0.75,1,26 -red,0.8416666666666666,0.6833333333333333,1.0,0.7980952380952381,3,25 -pepper,0.9083333333333332,1.0,0.85,0.9,1,26 -wheat,0.6716666666666666,1.0,0.65,0.75,1,26 -kleenex,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.6499999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -binder,0.6016666666666667,1.0,0.5166666666666666,0.65,1,26 -baseball,0.5999999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.5766666666666665,1.0,0.41666666666666663,0.5833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -thins,0.8566666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -package,0.7016666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -k,0.63,1.0,0.5833333333333333,0.7,1,26 -jelly,0.8550000000000001,1.0,0.8333333333333333,0.8833333333333332,1,26 -fruit,0.6733333333333333,0.6333333333333333,0.8333333333333333,0.6900000000000001,2,26 -apple,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -bell,0.8083333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -battery,0.5349999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -jar,0.5666666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.6133333333333333,1.0,0.5499999999999999,0.6666666666666667,1,26 -lettuce,0.6,1.0,0.6166666666666666,0.7166666666666667,1,26 -brush,0.6649999999999999,1.0,0.4999999999999999,0.65,1,26 -scissors,0.7183333333333334,1.0,0.5333333333333333,0.6833333333333333,1,26 -lime,0.8016666666666665,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.5383333333333333,1.0,0.45,0.6,1,26 -top,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.5799999999999998,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.7333333333333333,1.0,0.7,0.7833333333333333,1,25 -camera,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -eraser,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,0.7616666666666666,0.5666666666666667,1.0,0.6833333333333333,5,21 -banana,0.6816666666666668,1.0,0.4999999999999999,0.65,1,26 -pitcher,0.6383333333333334,1.0,0.5,0.65,1,26 -phone,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -stick,0.5133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,25 -cereal,0.7333333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -bulb,0.9266666666666667,1.0,0.9,0.9400000000000001,2,26 -hair,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.605,1.0,0.5166666666666666,0.65,1,26 -can,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -coca,0.7466666666666666,1.0,0.7,0.7833333333333333,1,26 -crackers,0.5349999999999999,1.0,0.5166666666666666,0.65,1,26 -plate,0.5633333333333332,1.0,0.4666666666666666,0.6166666666666666,1,25 -calculator,0.755,1.0,0.6333333333333333,0.75,1,26 -tissues,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -juice,0.35333333333333333,0.5,0.5833333333333333,0.51,1,26 -pink,0.78,1.0,0.7,0.7833333333333333,1,25 -lemon,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -peach,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -bowl,0.5933333333333333,1.0,0.5166666666666666,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -blue,0.5733333333333333,1.0,0.5166666666666666,0.65,1,25 -used,0.7466666666666667,1.0,0.65,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -ball,0.7083333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -notebook,0.655,1.0,0.4833333333333333,0.6333333333333333,1,26 -garlic,0.705,1.0,0.6166666666666666,0.7333333333333334,1,26 -cleaning,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -pair,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -container,0.6583333333333333,1.0,0.5833333333333333,0.7,1,25 -tomato,0.4600000000000001,0.7,0.5666666666666667,0.5466666666666666,1,26 -cellphone,0.6766666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -potato,0.775,1.0,0.7166666666666666,0.8,1,25 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6519753086419754 -F1-Score: 0.6864021164021165 -Precision: 0.8964506172839506 -Recall: 0.6125 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.71,1.0,0.6499999999999999,0.75,1,24 -yellow,0.9133333333333334,0.7833333333333333,1.0,0.86,6,24 -looks,0.5716666666666667,0.75,0.65,0.6166666666666666,1,24 -keyboard,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.78,1.0,0.7499999999999999,0.8166666666666667,1,26 -flashlight,0.86,1.0,0.7333333333333333,0.8166666666666668,1,26 -cup,0.5383333333333333,0.5,0.7166666666666666,0.5633333333333332,1,26 -folded,0.515,1.0,0.4833333333333332,0.6333333333333333,1,26 -jam,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -black,0.8933333333333333,0.8,1.0,0.8733333333333334,6,23 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.51,1.0,0.4666666666666666,0.6166666666666667,1,26 -soccer,0.5933333333333334,1.0,0.5,0.65,1,26 -hat,0.6,1.0,0.5333333333333333,0.6666666666666667,1,26 -brown,0.8466666666666667,1.0,0.8333333333333334,0.9000000000000001,2,26 -coffee,0.7516666666666667,1.0,0.5999999999999999,0.7166666666666666,1,25 -handle,0.6133333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -food,0.7883333333333333,1.0,0.7,0.7833333333333333,1,25 -towel,0.7616666666666667,1.0,0.55,0.7,1,26 -chips,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -stapler,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -onion,0.805,1.0,0.7166666666666666,0.8,1,26 -bag,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -sponge,0.78,1.0,0.65,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.6883333333333332,1.0,0.55,0.6833333333333333,1,26 -special,0.755,1.0,0.5833333333333333,0.7166666666666667,1,26 -colgate,0.6916666666666667,1.0,0.6333333333333332,0.7333333333333333,1,26 -leaf,0.5433333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -tube,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -cell,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -mug,0.7666666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -yogurt,0.635,1.0,0.5999999999999999,0.7166666666666667,1,26 -plantain,0.7716666666666667,0.9,0.7666666666666666,0.7666666666666667,1,26 -red,0.8883333333333333,0.7166666666666666,1.0,0.8133333333333332,3,26 -pepper,0.725,1.0,0.7,0.7833333333333333,1,26 -wheat,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -kleenex,0.7833333333333333,1.0,0.8,0.85,1,26 -toothbrush,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -binder,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -baseball,0.685,1.0,0.5166666666666666,0.6666666666666667,1,26 -pliers,0.82,1.0,0.6333333333333333,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7333333333333333,1.0,0.65,0.75,1,26 -thins,0.575,1.0,0.5499999999999999,0.6666666666666666,1,26 -package,0.7066666666666667,1.0,0.6,0.7166666666666666,1,26 -k,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -fruit,0.64,0.5666666666666667,0.8666666666666668,0.6433333333333333,2,25 -apple,0.5716666666666667,0.9,0.5666666666666667,0.6166666666666667,1,25 -bell,0.5883333333333334,1.0,0.45,0.6166666666666667,1,26 -battery,0.655,1.0,0.65,0.75,1,26 -jar,0.8566666666666667,1.0,0.7,0.8,1,26 -bound,0.6266666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -lettuce,0.55,1.0,0.5833333333333333,0.7,1,26 -brush,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -scissors,0.575,1.0,0.4833333333333333,0.6333333333333333,1,26 -lime,0.5883333333333333,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.76,1.0,0.6833333333333333,0.7833333333333334,1,26 -top,0.6233333333333333,1.0,0.5833333333333333,0.7,1,26 -spiral,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -handles,0.5999999999999999,1.0,0.5166666666666666,0.65,1,25 -camera,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -eraser,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.9266666666666667,0.8333333333333333,1.0,0.8933333333333333,5,22 -banana,0.55,0.9,0.5499999999999999,0.6,1,26 -pitcher,0.525,1.0,0.5166666666666666,0.65,1,26 -phone,0.8516666666666668,1.0,0.7333333333333333,0.8166666666666667,1,26 -stick,0.6383333333333333,1.0,0.5833333333333333,0.7,1,25 -cereal,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -bulb,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,27 -hair,0.7583333333333333,1.0,0.6333333333333333,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.66,1.0,0.6,0.7166666666666667,1,26 -can,0.8366666666666667,1.0,0.7666666666666667,0.86,2,26 -coca,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -crackers,0.6583333333333334,1.0,0.6833333333333332,0.7666666666666666,1,26 -plate,0.6416666666666666,1.0,0.5833333333333333,0.7,1,24 -calculator,0.445,0.5,0.5999999999999999,0.52,1,26 -tissues,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -juice,0.5216666666666667,1.0,0.4499999999999999,0.6,1,26 -pink,0.7433333333333334,1.0,0.5666666666666667,0.7,1,25 -lemon,0.5133333333333333,1.0,0.5,0.6333333333333333,1,26 -peach,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -bowl,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.61,1.0,0.5166666666666666,0.65,1,26 -blue,0.6466666666666667,1.0,0.4666666666666666,0.6166666666666667,1,25 -used,0.53,1.0,0.4166666666666667,0.5833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -ball,0.6950000000000001,1.0,0.4833333333333333,0.6333333333333333,1,25 -notebook,0.9083333333333332,1.0,0.8833333333333332,0.9166666666666666,1,26 -garlic,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -pair,0.95,1.0,0.9333333333333332,0.96,2,27 -container,0.7016666666666665,1.0,0.6166666666666666,0.7333333333333333,1,25 -tomato,0.4833333333333333,0.7,0.5666666666666667,0.54,1,26 -cellphone,0.6299999999999999,1.0,0.4833333333333332,0.6333333333333333,1,26 -potato,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -light,0.93,1.0,0.8999999999999998,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.885,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6485185185185186 -F1-Score: 0.6801543209876543 -Precision: 0.8967592592592593 -Recall: 0.6023148148148147 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,24 -yellow,0.9100000000000001,0.7833333333333333,1.0,0.86,6,24 -looks,0.5533333333333333,0.85,0.4666666666666666,0.55,1,24 -keyboard,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -glue,0.85,1.0,0.7666666666666666,0.8333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.5166666666666666,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.7583333333333333,1.0,0.75,0.8166666666666667,1,26 -cup,0.3,0.5,0.4833333333333333,0.4766666666666667,1,26 -folded,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -jam,0.6016666666666667,1.0,0.45,0.6166666666666667,1,26 -black,0.9066666666666666,0.75,1.0,0.8333333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5016666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -soccer,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -hat,0.6916666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -brown,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,25 -coffee,0.8666666666666666,1.0,0.75,0.8333333333333333,1,25 -handle,0.8300000000000001,1.0,0.75,0.8166666666666667,1,25 -food,0.7966666666666666,1.0,0.7166666666666666,0.8,1,25 -towel,0.6966666666666665,1.0,0.5666666666666667,0.7,1,26 -chips,0.5966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.705,1.0,0.5666666666666667,0.7,1,26 -onion,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -bag,0.5416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -sponge,0.6133333333333334,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.8633333333333333,1.0,0.7833333333333333,0.85,1,25 -special,0.6583333333333333,1.0,0.65,0.75,1,26 -colgate,0.66,1.0,0.5333333333333333,0.6666666666666667,1,26 -leaf,0.6333333333333333,1.0,0.5999999999999999,0.7,1,26 -tube,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -cell,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -mug,0.6733333333333333,1.0,0.55,0.6833333333333333,1,25 -yogurt,0.65,1.0,0.6166666666666666,0.7166666666666666,1,26 -plantain,0.5766666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -red,0.8833333333333332,0.7666666666666666,1.0,0.8580952380952382,3,26 -pepper,0.4333333333333333,1.0,0.4,0.5666666666666667,1,26 -wheat,0.75,1.0,0.6499999999999999,0.75,1,26 -kleenex,0.6249999999999999,1.0,0.6166666666666666,0.7166666666666667,1,26 -toothbrush,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -binder,0.7916666666666667,1.0,0.7166666666666666,0.8,1,26 -baseball,0.5266666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -pliers,0.5333333333333333,1.0,0.5499999999999999,0.6666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.61,1.0,0.5333333333333333,0.6666666666666666,1,26 -thins,0.605,1.0,0.5833333333333333,0.7,1,26 -package,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -k,0.45,1.0,0.4666666666666666,0.6166666666666667,1,26 -jelly,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.8916666666666668,0.8833333333333332,0.9333333333333332,0.8866666666666667,2,26 -apple,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -bell,0.6,1.0,0.6166666666666666,0.7166666666666666,1,26 -battery,0.5683333333333332,1.0,0.4833333333333332,0.6333333333333333,1,26 -jar,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -bound,0.6,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.7383333333333333,1.0,0.6,0.7166666666666667,1,26 -brush,0.46833333333333327,0.55,0.6,0.53,1,26 -scissors,0.73,1.0,0.75,0.8166666666666668,1,26 -lime,0.5466666666666666,1.0,0.55,0.6666666666666667,1,25 -toothpaste,0.8416666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -top,0.55,1.0,0.5833333333333333,0.7,1,26 -spiral,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -handles,0.6233333333333333,1.0,0.5166666666666666,0.6666666666666667,1,25 -camera,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -eraser,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.8300000000000001,1.0,0.7166666666666666,0.8,1,26 -pitcher,0.69,1.0,0.5499999999999999,0.6833333333333333,1,26 -phone,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -stick,0.7466666666666667,1.0,0.5999999999999999,0.7166666666666666,1,25 -cereal,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -bulb,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -hair,0.7883333333333333,1.0,0.7,0.7833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6300000000000001,1.0,0.6333333333333333,0.7333333333333334,1,26 -can,0.8150000000000001,1.0,0.7666666666666666,0.8600000000000001,2,25 -coca,0.6383333333333334,1.0,0.5833333333333333,0.7,1,26 -crackers,0.64,1.0,0.4999999999999999,0.65,1,26 -plate,0.65,1.0,0.5333333333333333,0.6666666666666667,1,25 -calculator,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -tissues,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -juice,0.8016666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -pink,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666668,1,25 -lemon,0.5566666666666666,1.0,0.4499999999999999,0.6,1,26 -peach,0.7016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -bowl,0.7016666666666665,1.0,0.6499999999999999,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -blue,0.655,1.0,0.5333333333333333,0.6666666666666667,1,25 -used,0.565,0.55,0.7666666666666666,0.5900000000000001,1,23 -energizer,0,0,0,0,1,26 -pear,0.6933333333333334,1.0,0.5833333333333333,0.7,1,26 -ball,0.835,1.0,0.7,0.8,1,25 -notebook,0.73,1.0,0.5833333333333333,0.7,1,26 -garlic,0.7849999999999999,1.0,0.6333333333333333,0.75,1,26 -cleaning,0.39666666666666667,1.0,0.4833333333333332,0.6166666666666666,1,26 -pair,0.9,1.0,0.9,0.9400000000000001,2,27 -container,0.7383333333333333,1.0,0.6499999999999999,0.75,1,25 -tomato,0.5083333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -cellphone,0.5716666666666665,1.0,0.4666666666666666,0.6166666666666666,1,26 -potato,0.7183333333333333,1.0,0.5999999999999999,0.7166666666666667,1,25 -light,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6495061728395063 -F1-Score: 0.685352733686067 -Precision: 0.9040123456790122 -Recall: 0.6041666666666666 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6766666666666666,1.0,0.5833333333333333,0.7,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.5133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,24 -keyboard,0.885,1.0,0.7833333333333333,0.85,1,26 -glue,0.58,1.0,0.6166666666666666,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -flashlight,0.7266666666666667,1.0,0.6,0.7166666666666666,1,26 -cup,0.32166666666666666,0.5,0.5666666666666667,0.5,1,26 -folded,0.7466666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -jam,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -black,0.8400000000000001,0.6583333333333333,1.0,0.7790476190476191,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7733333333333333,1.0,0.65,0.75,1,26 -soccer,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -hat,0.7466666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -brown,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coffee,0.7133333333333333,1.0,0.6,0.7166666666666667,1,26 -handle,0.7266666666666667,1.0,0.5999999999999999,0.7166666666666666,1,25 -food,0.5316666666666666,1.0,0.4666666666666666,0.6166666666666666,1,25 -towel,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -chips,0.5983333333333334,1.0,0.5333333333333333,0.6666666666666666,1,26 -stapler,0.575,1.0,0.5166666666666666,0.65,1,26 -onion,0.5583333333333333,1.0,0.5833333333333333,0.7,1,26 -bag,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -sponge,0.4083333333333333,1.0,0.41666666666666663,0.5666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.635,1.0,0.55,0.6833333333333333,1,25 -special,0.575,1.0,0.5499999999999999,0.6666666666666666,1,26 -colgate,0.76,1.0,0.6833333333333333,0.7833333333333333,1,26 -leaf,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -tube,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -cell,0.40499999999999997,0.6,0.5833333333333333,0.53,1,26 -mug,0.7216666666666666,1.0,0.7,0.7833333333333333,1,26 -yogurt,0.6,1.0,0.5833333333333333,0.7,1,26 -plantain,0.6933333333333334,1.0,0.6,0.7166666666666666,1,26 -red,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,3,24 -pepper,0.8583333333333332,1.0,0.75,0.8333333333333333,1,26 -wheat,0.575,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.6133333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -toothbrush,0.7683333333333333,1.0,0.65,0.75,1,26 -binder,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.5133333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -pliers,0.5416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -package,0.8166666666666667,1.0,0.7999999999999999,0.85,1,26 -k,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.6133333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -fruit,0.8316666666666667,0.85,0.8666666666666668,0.8266666666666665,2,25 -apple,0.6016666666666666,0.75,0.65,0.6166666666666667,1,25 -bell,0.6766666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -battery,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333334,1,26 -jar,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -bound,0.605,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.5933333333333334,1.0,0.55,0.6833333333333333,1,26 -brush,0.8450000000000001,1.0,0.6833333333333333,0.7833333333333334,1,26 -scissors,0.6583333333333333,1.0,0.6,0.7166666666666667,1,26 -lime,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666666,1,25 -toothpaste,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -top,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -spiral,0.75,1.0,0.7166666666666666,0.8,1,26 -handles,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -camera,0.7916666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -eraser,0.5499999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -pitcher,0.7533333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -phone,0.65,1.0,0.5333333333333333,0.6833333333333333,1,26 -stick,0.7849999999999999,1.0,0.65,0.75,1,25 -cereal,0.635,1.0,0.45,0.6166666666666667,1,26 -bulb,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.69,1.0,0.55,0.6833333333333333,1,26 -can,0.93,1.0,0.9,0.9400000000000001,2,25 -coca,0.6799999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.755,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.7216666666666667,1.0,0.5999999999999999,0.7166666666666666,1,24 -calculator,0.51,0.7,0.55,0.5566666666666666,1,26 -tissues,0.7133333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -juice,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -pink,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -lemon,0.61,1.0,0.5333333333333332,0.6666666666666666,1,26 -peach,0.6183333333333333,1.0,0.55,0.6833333333333333,1,26 -bowl,0.7633333333333334,1.0,0.65,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5,1.0,0.5,0.6333333333333333,1,26 -blue,0.6416666666666666,1.0,0.5833333333333333,0.7,1,25 -used,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -ball,0.575,1.0,0.5333333333333333,0.6666666666666667,1,25 -notebook,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -garlic,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -cleaning,0.8,1.0,0.6833333333333333,0.7833333333333333,1,26 -pair,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -container,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -tomato,0.6849999999999999,0.9,0.65,0.7,1,26 -cellphone,0.44333333333333325,0.5,0.6,0.52,1,26 -potato,0.5666666666666667,1.0,0.41666666666666663,0.5833333333333334,1,25 -light,0.8850000000000001,1.0,0.8333333333333333,0.9,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,26 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6446141975308641 -F1-Score: 0.6845282186948854 -Precision: 0.9016203703703703 -Recall: 0.603395061728395 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7083333333333333,1.0,0.7166666666666666,0.8,1,25 -yellow,0.9133333333333334,0.7833333333333333,1.0,0.86,6,26 -looks,0.485,0.9,0.5666666666666667,0.6166666666666666,1,24 -keyboard,0.7633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.4683333333333334,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -flashlight,0.65,1.0,0.65,0.75,1,26 -cup,0.44833333333333336,0.5,0.6333333333333333,0.54,1,26 -folded,0.3266666666666666,1.0,0.38333333333333336,0.55,1,26 -jam,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -black,0.9133333333333333,0.7833333333333333,1.0,0.86,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5349999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -soccer,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -hat,0.4416666666666667,1.0,0.41666666666666663,0.5833333333333333,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -coffee,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -handle,0.6583333333333333,1.0,0.5833333333333333,0.7,1,25 -food,0.5716666666666665,1.0,0.4666666666666666,0.6166666666666667,1,26 -towel,0.85,1.0,0.8666666666666666,0.9,1,26 -chips,0.55,1.0,0.45,0.6,1,26 -stapler,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -onion,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -bag,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -sponge,0.6299999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -special,0.6833333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -colgate,0.6216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -tube,0.9133333333333333,1.0,0.8833333333333332,0.9166666666666666,1,26 -cell,0.6599999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -mug,0.6399999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -yogurt,0.7466666666666667,1.0,0.7166666666666666,0.8,1,26 -plantain,0.40666666666666673,1.0,0.45,0.6,1,26 -red,0.9266666666666667,0.8333333333333333,1.0,0.8933333333333333,3,26 -pepper,0.755,1.0,0.7166666666666666,0.8,1,26 -wheat,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -kleenex,0.8416666666666668,1.0,0.75,0.8333333333333333,1,26 -toothbrush,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -binder,0.7383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -baseball,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -pliers,0.5716666666666665,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.755,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.7133333333333333,1.0,0.65,0.75,1,26 -package,0.6716666666666666,0.8,0.55,0.6166666666666667,1,26 -k,0.53,1.0,0.4666666666666666,0.6166666666666667,1,26 -jelly,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -fruit,0.655,0.5833333333333333,0.8666666666666666,0.66,2,25 -apple,0.6416666666666667,0.9,0.7,0.7166666666666667,1,26 -bell,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -battery,0.5166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -jar,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.5466666666666666,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.58,1.0,0.4833333333333333,0.6333333333333333,1,26 -brush,0.7683333333333333,1.0,0.6499999999999999,0.75,1,26 -scissors,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.6983333333333334,1.0,0.5999999999999999,0.7166666666666667,1,25 -toothpaste,0.7633333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -top,0.73,1.0,0.7,0.7833333333333333,1,26 -spiral,0.5833333333333333,1.0,0.5999999999999999,0.7,1,26 -handles,0.74,1.0,0.6666666666666666,0.7666666666666667,1,25 -camera,0.8666666666666666,1.0,0.8833333333333332,0.9166666666666666,1,26 -eraser,0.6849999999999999,1.0,0.5166666666666666,0.6666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7066666666666667,0.9,0.6666666666666666,0.7,1,26 -pitcher,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -phone,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -stick,0.53,1.0,0.4833333333333333,0.6166666666666667,1,25 -cereal,0.5916666666666668,1.0,0.5333333333333333,0.6666666666666667,1,26 -bulb,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.625,1.0,0.5166666666666666,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.4916666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -can,0.9333333333333332,1.0,0.9333333333333332,0.96,2,25 -coca,0.6266666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -crackers,0.8266666666666665,1.0,0.7166666666666666,0.8,1,26 -plate,0.8233333333333333,1.0,0.7166666666666666,0.8,1,25 -calculator,0.6599999999999999,1.0,0.6,0.7166666666666667,1,26 -tissues,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.53,1.0,0.55,0.6666666666666666,1,26 -pink,0.8283333333333334,1.0,0.65,0.7666666666666667,1,25 -lemon,0.6883333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -peach,0.5216666666666667,1.0,0.5166666666666666,0.65,1,26 -bowl,0.7383333333333334,1.0,0.6333333333333333,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -blue,0.7333333333333333,1.0,0.7,0.7833333333333333,1,25 -used,0.6649999999999999,1.0,0.5499999999999999,0.6833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.5633333333333332,1.0,0.6166666666666666,0.7166666666666666,1,25 -notebook,0.8399999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -garlic,0.6866666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -cleaning,0.6966666666666665,1.0,0.6,0.7166666666666667,1,26 -pair,0.8566666666666667,1.0,0.8,0.8800000000000001,2,27 -container,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -tomato,0.6333333333333334,0.6,0.6666666666666666,0.5800000000000001,1,26 -cellphone,0.7416666666666667,1.0,0.7166666666666666,0.8,1,26 -potato,0.7583333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,25 -bottle,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6562191358024692 -F1-Score: 0.6971604938271605 -Precision: 0.9035493827160495 -Recall: 0.6219135802469137 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.75,1.0,0.7,0.7833333333333333,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.6433333333333333,0.75,0.8,0.6833333333333333,1,24 -keyboard,0.71,1.0,0.5499999999999999,0.6833333333333333,1,26 -glue,0.5516666666666666,1.0,0.4499999999999999,0.6,1,26 -milk,0,0,0,0,1,26 -cola,0.6799999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -flashlight,0.5166666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.805,1.0,0.7166666666666666,0.8,1,26 -folded,0.61,1.0,0.5333333333333333,0.6666666666666666,1,26 -jam,0.8933333333333333,1.0,0.8,0.8666666666666666,1,26 -black,0.9266666666666667,0.8166666666666667,1.0,0.8800000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.55,1.0,0.5833333333333333,0.7,1,26 -soccer,0.7266666666666668,1.0,0.6,0.7166666666666667,1,26 -hat,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -brown,0.9466666666666667,1.0,0.9333333333333332,0.96,2,24 -coffee,0.6183333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -handle,0.525,1.0,0.4833333333333332,0.6166666666666666,1,26 -food,0.7550000000000001,1.0,0.6166666666666666,0.7333333333333334,1,25 -towel,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.7466666666666666,1.0,0.7166666666666666,0.8,1,26 -stapler,0.7466666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -onion,0.7483333333333333,1.0,0.5666666666666667,0.7,1,26 -bag,0.6433333333333333,1.0,0.4999999999999999,0.65,1,26 -sponge,0.635,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.575,1.0,0.5666666666666667,0.6833333333333333,1,25 -special,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -colgate,0.7133333333333334,1.0,0.5666666666666667,0.7,1,26 -leaf,0.4499999999999999,1.0,0.4333333333333333,0.5833333333333333,1,26 -tube,0.655,1.0,0.5999999999999999,0.7166666666666666,1,26 -cell,0.39833333333333343,0.5,0.7,0.5533333333333335,1,26 -mug,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -yogurt,0.8099999999999999,1.0,0.7333333333333333,0.8166666666666667,1,26 -plantain,0.5183333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -red,0.9466666666666669,0.8666666666666666,1.0,0.9133333333333333,3,26 -pepper,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -wheat,0.44333333333333336,1.0,0.4999999999999999,0.6333333333333333,1,26 -kleenex,0.7316666666666667,1.0,0.5666666666666667,0.7,1,26 -toothbrush,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -binder,0.5833333333333333,1.0,0.5333333333333333,0.65,1,26 -baseball,0.605,1.0,0.5166666666666666,0.65,1,26 -pliers,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6133333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -thins,0.6766666666666666,1.0,0.5666666666666667,0.7,1,26 -package,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -k,0.7966666666666666,1.0,0.75,0.8166666666666668,1,26 -jelly,0.5216666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -fruit,0.7883333333333333,0.8833333333333332,0.8333333333333333,0.8166666666666668,2,25 -apple,0.3933333333333333,0.75,0.4833333333333333,0.54,1,25 -bell,0.7216666666666667,1.0,0.7,0.7833333333333333,1,26 -battery,0.7166666666666666,1.0,0.6499999999999999,0.75,1,26 -jar,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.65,1.0,0.6833333333333332,0.7666666666666666,1,26 -lettuce,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -brush,0.7216666666666666,1.0,0.7,0.7833333333333333,1,26 -scissors,0.6583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -lime,0.6,1.0,0.7333333333333332,0.8,1,25 -toothpaste,0.705,1.0,0.6499999999999999,0.75,1,26 -top,0.7316666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -spiral,0.63,1.0,0.6499999999999999,0.75,1,26 -handles,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.625,1.0,0.5833333333333333,0.7,1,26 -eraser,0.5049999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -pitcher,0.8616666666666667,1.0,0.7,0.8,1,26 -phone,0.735,1.0,0.6,0.7166666666666666,1,26 -stick,0.605,1.0,0.5666666666666667,0.6833333333333333,1,25 -cereal,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -bulb,0.89,1.0,0.8333333333333333,0.9,2,27 -hair,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8083333333333332,1.0,0.7499999999999999,0.8166666666666667,1,26 -can,0.8999999999999998,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.7233333333333334,1.0,0.65,0.75,1,26 -crackers,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -plate,0.7183333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -calculator,0.4833333333333334,0.55,0.6166666666666666,0.54,1,26 -tissues,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -juice,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -pink,0.6849999999999999,1.0,0.65,0.75,1,25 -lemon,0.655,1.0,0.5999999999999999,0.7166666666666667,1,26 -peach,0.5333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.63,1.0,0.5999999999999999,0.7166666666666667,1,26 -blue,0.5833333333333333,1.0,0.5166666666666666,0.65,1,25 -used,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -ball,0.8583333333333332,1.0,0.7833333333333333,0.85,1,25 -notebook,0.805,1.0,0.6666666666666666,0.7666666666666666,1,26 -garlic,0.6266666666666667,1.0,0.55,0.6833333333333333,1,26 -cleaning,0.4583333333333333,1.0,0.4833333333333333,0.6166666666666666,1,26 -pair,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -container,0.7183333333333333,1.0,0.6499999999999999,0.75,1,26 -tomato,0.3566666666666667,0.8,0.5499999999999999,0.55,1,26 -cellphone,0.5416666666666666,0.5,0.6833333333333333,0.5566666666666668,1,26 -potato,0.6416666666666666,1.0,0.6333333333333332,0.7333333333333333,1,25 -light,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6500925925925927 -F1-Score: 0.6925 -Precision: 0.9020061728395062 -Recall: 0.6160493827160493 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7333333333333333,1.0,0.7333333333333333,0.8,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.7233333333333334,1.0,0.6499999999999999,0.75,1,24 -keyboard,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.525,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.63,1.0,0.6333333333333332,0.7333333333333333,1,26 -flashlight,0.7916666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -cup,0.2333333333333333,0.5,0.4499999999999999,0.4566666666666667,1,26 -folded,0.4883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -jam,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -black,0.8566666666666667,0.7083333333333333,1.0,0.8171428571428571,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6766666666666666,1.0,0.6,0.7166666666666667,1,26 -soccer,0.6466666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -hat,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -brown,0.9166666666666666,1.0,0.9,0.9400000000000001,2,24 -coffee,0.7133333333333333,1.0,0.6499999999999999,0.75,1,25 -handle,0.9099999999999999,1.0,0.8333333333333333,0.8833333333333332,1,25 -food,0.6216666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -towel,0.7683333333333333,1.0,0.65,0.75,1,26 -chips,0.5133333333333333,1.0,0.45,0.6,1,26 -stapler,0.5916666666666666,1.0,0.4833333333333332,0.6333333333333333,1,26 -onion,0.7333333333333333,0.85,0.75,0.7166666666666667,1,26 -bag,0.8099999999999999,1.0,0.7333333333333333,0.8166666666666667,1,26 -sponge,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6849999999999999,1.0,0.5833333333333333,0.7,1,25 -special,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.6966666666666665,1.0,0.6166666666666666,0.7333333333333333,1,26 -leaf,0.7516666666666667,1.0,0.6499999999999999,0.75,1,26 -tube,0.6533333333333333,1.0,0.5,0.65,1,26 -cell,0.425,0.65,0.5833333333333333,0.54,1,26 -mug,0.6833333333333333,1.0,0.6,0.7166666666666667,1,25 -yogurt,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.485,1.0,0.5166666666666666,0.65,1,26 -red,0.9666666666666668,0.9,1.0,0.9333333333333332,3,24 -pepper,0.6683333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -wheat,0.6,1.0,0.6166666666666666,0.7166666666666666,1,26 -kleenex,0.6133333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -toothbrush,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -binder,0.835,1.0,0.7833333333333333,0.85,1,26 -baseball,0.8133333333333332,1.0,0.75,0.8166666666666667,1,26 -pliers,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7,1.0,0.6833333333333333,0.7666666666666667,1,26 -thins,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -package,0.5333333333333333,1.0,0.55,0.6666666666666667,1,26 -k,0.6133333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -jelly,0.5666666666666667,1.0,0.5833333333333333,0.7,1,26 -fruit,0.8,0.7,0.9333333333333332,0.7866666666666666,2,25 -apple,0.8800000000000001,1.0,0.8333333333333333,0.8833333333333332,1,25 -bell,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -battery,0.8816666666666666,1.0,0.75,0.8333333333333333,1,26 -jar,0.5216666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -bound,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.5833333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -brush,0.5016666666666667,1.0,0.5166666666666666,0.65,1,26 -scissors,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -lime,0.6883333333333334,1.0,0.6,0.7166666666666667,1,25 -toothpaste,0.5633333333333332,1.0,0.5499999999999999,0.6666666666666666,1,26 -top,0.8800000000000001,1.0,0.75,0.8333333333333333,1,26 -spiral,0.525,1.0,0.5,0.6333333333333333,1,26 -handles,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,25 -camera,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -eraser,0.5933333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -pitcher,0.6,1.0,0.6166666666666666,0.7166666666666666,1,26 -phone,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -stick,0.6466666666666667,1.0,0.5833333333333333,0.7,1,25 -cereal,0.8333333333333333,1.0,0.8166666666666667,0.8666666666666666,1,26 -bulb,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,26 -hair,0.5883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -can,0.8833333333333332,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.575,1.0,0.5166666666666666,0.65,1,26 -crackers,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.8933333333333333,1.0,0.8333333333333333,0.8833333333333332,1,25 -calculator,0.5999999999999999,0.75,0.6333333333333333,0.6166666666666667,1,26 -tissues,0.7083333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -juice,0.7033333333333334,1.0,0.5333333333333333,0.6833333333333333,1,26 -pink,0.7916666666666667,1.0,0.7666666666666666,0.8333333333333333,1,25 -lemon,0.485,1.0,0.4499999999999999,0.6,1,26 -peach,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -bowl,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -blue,0.5083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -used,0.5850000000000001,1.0,0.4833333333333333,0.6333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6433333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -ball,0.5633333333333334,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.6666666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -garlic,0.6683333333333332,1.0,0.65,0.75,1,26 -cleaning,0.6833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.8566666666666667,1.0,0.8,0.8800000000000001,2,27 -container,0.745,1.0,0.5499999999999999,0.6833333333333333,1,25 -tomato,0.6716666666666666,0.75,0.6666666666666666,0.6166666666666667,1,26 -cellphone,0.5516666666666666,0.55,0.7166666666666666,0.5733333333333334,1,26 -potato,0.7416666666666666,1.0,0.6499999999999999,0.75,1,25 -light,0.9099999999999999,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.93,1.0,0.8999999999999998,0.9400000000000001,2,25 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6499845679012346 -F1-Score: 0.6913007054673721 -Precision: 0.9014660493827159 -Recall: 0.6143518518518518 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6799999999999999,1.0,0.65,0.75,1,25 -yellow,0.8800000000000001,0.775,1.0,0.8590476190476191,6,24 -looks,0.6666666666666666,0.8,0.5999999999999999,0.6166666666666666,1,24 -keyboard,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -glue,0.6799999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7749999999999999,1.0,0.6333333333333333,0.75,1,26 -flashlight,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -cup,0.3416666666666667,0.5,0.6,0.52,1,26 -folded,0.6983333333333334,1.0,0.5333333333333333,0.6666666666666666,1,26 -jam,0.4083333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -black,0.8516666666666668,0.7,1.0,0.8114285714285714,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -soccer,0.675,1.0,0.65,0.75,1,26 -hat,0.605,1.0,0.5999999999999999,0.7166666666666667,1,26 -brown,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.675,1.0,0.5999999999999999,0.7166666666666666,1,26 -handle,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,25 -food,0.5333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -towel,0.805,1.0,0.6833333333333333,0.7833333333333334,1,26 -chips,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -stapler,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.73,1.0,0.5999999999999999,0.7166666666666666,1,26 -bag,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -sponge,0.76,1.0,0.7,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -special,0.5633333333333334,1.0,0.5833333333333333,0.7,1,26 -colgate,0.5516666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -leaf,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -tube,0.7050000000000001,1.0,0.5666666666666667,0.7,1,26 -cell,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -mug,0.8266666666666665,1.0,0.7333333333333333,0.8166666666666668,1,26 -yogurt,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -plantain,0.73,0.85,0.7666666666666666,0.7333333333333333,1,26 -red,0.8966666666666667,0.7916666666666666,1.0,0.8657142857142859,3,25 -pepper,0.8883333333333333,1.0,0.8333333333333333,0.8833333333333332,1,26 -wheat,0.6933333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.5816666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -toothbrush,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -binder,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -baseball,0.7383333333333333,1.0,0.6,0.7166666666666667,1,26 -pliers,0.63,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.675,1.0,0.5833333333333333,0.7,1,26 -thins,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -package,0.6066666666666667,0.9,0.5333333333333333,0.6,1,26 -k,0.6166666666666666,1.0,0.5166666666666666,0.65,1,26 -jelly,0.7333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.6666666666666667,0.5166666666666666,0.9333333333333332,0.6233333333333333,2,25 -apple,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -bell,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -battery,0.46333333333333326,1.0,0.4833333333333332,0.6166666666666666,1,26 -jar,0.6716666666666666,1.0,0.65,0.75,1,26 -bound,0.705,1.0,0.65,0.75,1,26 -lettuce,0.45499999999999996,1.0,0.4666666666666666,0.6166666666666667,1,26 -brush,0.6649999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -scissors,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -lime,0.4683333333333334,1.0,0.5166666666666666,0.65,1,25 -toothpaste,0.7833333333333333,1.0,0.7,0.7833333333333333,1,26 -top,0.5416666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -spiral,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -handles,0.6683333333333332,1.0,0.55,0.6833333333333333,1,25 -camera,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -eraser,0.7316666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5966666666666666,0.9,0.6166666666666666,0.65,1,26 -pitcher,0.755,1.0,0.7,0.7833333333333333,1,26 -phone,0.7649999999999999,1.0,0.5833333333333333,0.7166666666666667,1,26 -stick,0.755,1.0,0.6499999999999999,0.75,1,25 -cereal,0.5599999999999999,1.0,0.5833333333333333,0.7,1,26 -bulb,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -hair,0.61,1.0,0.55,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6849999999999999,1.0,0.5833333333333333,0.7,1,26 -can,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,26 -coca,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.575,1.0,0.5499999999999999,0.6833333333333333,1,26 -plate,0.5683333333333332,1.0,0.5166666666666666,0.65,1,25 -calculator,0.5483333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -tissues,0.4333333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -juice,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -pink,0.5633333333333334,1.0,0.4333333333333333,0.6,1,25 -lemon,0.5933333333333333,1.0,0.5,0.65,1,26 -peach,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -bowl,0.575,1.0,0.5333333333333333,0.6666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -blue,0.69,1.0,0.5833333333333333,0.7,1,25 -used,0.6466666666666667,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.8416666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -ball,0.6849999999999999,1.0,0.5833333333333333,0.7,1,25 -notebook,0.5633333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -garlic,0.625,1.0,0.6833333333333333,0.7666666666666666,1,26 -cleaning,0.73,1.0,0.7,0.7833333333333333,1,26 -pair,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -container,0.8216666666666667,1.0,0.7833333333333333,0.85,1,25 -tomato,0.6333333333333334,0.9,0.6166666666666666,0.6666666666666667,1,26 -cellphone,0.6666666666666666,1.0,0.6666666666666666,0.75,1,26 -potato,0.5916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -light,0.8666666666666666,1.0,0.8333333333333333,0.9,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,25 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6428240740740742 -F1-Score: 0.6862610229276898 -Precision: 0.9040123456790125 -Recall: 0.6070987654320987 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7849999999999999,1.0,0.6333333333333333,0.75,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.8,1.0,0.8166666666666667,0.8666666666666668,1,24 -keyboard,0.7466666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -glue,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -flashlight,0.5766666666666667,1.0,0.5833333333333333,0.7,1,26 -cup,0.44000000000000006,0.5,0.6333333333333333,0.5266666666666667,1,26 -folded,0.7183333333333334,1.0,0.5833333333333333,0.7,1,26 -jam,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -black,0.8566666666666668,0.7083333333333333,1.0,0.8123809523809523,6,23 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7916666666666667,1.0,0.7166666666666666,0.8,1,26 -soccer,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -hat,0.6633333333333333,1.0,0.65,0.75,1,26 -brown,0.8216666666666667,1.0,0.8,0.8800000000000001,2,26 -coffee,0.76,1.0,0.6666666666666666,0.7666666666666667,1,26 -handle,0.61,1.0,0.6333333333333332,0.7333333333333333,1,26 -food,0.4666666666666666,1.0,0.5333333333333333,0.65,1,24 -towel,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -chips,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -stapler,0.4766666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -onion,0.8049999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -bag,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -sponge,0.73,1.0,0.5666666666666667,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.875,1.0,0.8166666666666667,0.8666666666666666,1,25 -special,0.735,1.0,0.5833333333333333,0.7166666666666667,1,26 -colgate,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -leaf,0.575,1.0,0.5833333333333333,0.7,1,26 -tube,0.42666666666666664,1.0,0.4333333333333333,0.5833333333333333,1,26 -cell,0.5533333333333335,0.6,0.75,0.5900000000000001,1,26 -mug,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -yogurt,0.7366666666666666,1.0,0.5666666666666667,0.7,1,26 -plantain,0.655,1.0,0.5833333333333333,0.7,1,26 -red,0.93,0.8166666666666667,1.0,0.8800000000000001,3,25 -pepper,0.625,1.0,0.5499999999999999,0.6666666666666666,1,26 -wheat,0.655,1.0,0.6499999999999999,0.75,1,26 -kleenex,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -toothbrush,0.5,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.675,1.0,0.7,0.7833333333333333,1,26 -baseball,0.5216666666666667,1.0,0.5,0.65,1,26 -pliers,0.8099999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -thins,0.9266666666666665,1.0,0.85,0.9,1,26 -package,0.73,1.0,0.6833333333333332,0.7666666666666666,1,26 -k,0.5916666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -jelly,0.6183333333333334,1.0,0.5833333333333333,0.7,1,26 -fruit,0.7516666666666666,0.7166666666666667,0.8333333333333333,0.74,2,26 -apple,0.4766666666666667,0.95,0.4666666666666666,0.6,1,25 -bell,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -battery,0.6733333333333332,1.0,0.6,0.7166666666666667,1,26 -jar,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -bound,0.8,1.0,0.6833333333333333,0.7833333333333334,1,26 -lettuce,0.7499999999999999,1.0,0.7166666666666666,0.8,1,26 -brush,0.4716666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -scissors,0.8583333333333332,1.0,0.7833333333333333,0.85,1,26 -lime,0.6983333333333334,1.0,0.5999999999999999,0.7166666666666667,1,25 -toothpaste,0.5933333333333333,1.0,0.4833333333333332,0.6333333333333333,1,26 -top,0.775,1.0,0.6666666666666666,0.7666666666666667,1,26 -spiral,0.85,1.0,0.7833333333333333,0.85,1,26 -handles,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.7216666666666666,1.0,0.7,0.7833333333333333,1,26 -eraser,0.4416666666666666,1.0,0.38333333333333336,0.55,1,26 -creamer,0,0,0,0,1,26 -white,0.8,0.65,1.0,0.7847619047619048,5,22 -banana,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -pitcher,0.6416666666666666,1.0,0.6499999999999999,0.75,1,26 -phone,0.5933333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -stick,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -cereal,0.6966666666666667,1.0,0.5666666666666667,0.7,1,26 -bulb,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,27 -hair,0.8916666666666666,1.0,0.8,0.8666666666666668,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.4416666666666666,1.0,0.4333333333333334,0.5833333333333333,1,26 -can,0.93,1.0,0.9,0.9400000000000001,2,25 -coca,0.46333333333333326,1.0,0.4833333333333332,0.6166666666666666,1,26 -crackers,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.6833333333333333,1.0,0.5666666666666667,0.7,1,25 -calculator,0.5383333333333333,0.55,0.7166666666666666,0.5733333333333335,1,26 -tissues,0.605,1.0,0.5833333333333333,0.7,1,26 -juice,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -pink,0.5933333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -lemon,0.37166666666666665,1.0,0.4499999999999999,0.6,1,26 -peach,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -bowl,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8883333333333333,1.0,0.8333333333333333,0.8833333333333332,1,26 -blue,0.93,1.0,0.85,0.8999999999999998,1,25 -used,0.755,1.0,0.7666666666666666,0.8333333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.6516666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -ball,0.735,1.0,0.6166666666666666,0.7333333333333333,1,25 -notebook,0.905,1.0,0.8333333333333333,0.8833333333333332,1,26 -garlic,0.7466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -cleaning,0.7150000000000001,1.0,0.55,0.6833333333333333,1,26 -pair,0.8683333333333334,1.0,0.8333333333333334,0.9000000000000001,2,27 -container,0.78,1.0,0.6833333333333333,0.7833333333333333,1,25 -tomato,0.48,0.85,0.4833333333333333,0.5833333333333333,1,26 -cellphone,0.44000000000000006,0.5,0.6,0.52,1,26 -potato,0.7249999999999999,1.0,0.7,0.7833333333333333,1,25 -light,0.89,1.0,0.8333333333333334,0.9000000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9099999999999999,1.0,0.8666666666666668,0.9200000000000002,2,26 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6503703703703704 -F1-Score: 0.6933377425044092 -Precision: 0.896219135802469 -Recall: 0.6200617283950616 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6799999999999999,1.0,0.6166666666666666,0.7166666666666667,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.71,1.0,0.6,0.7166666666666667,1,24 -keyboard,0.5933333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -glue,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.59,1.0,0.4833333333333333,0.6333333333333333,1,26 -flashlight,0.5399999999999999,1.0,0.5166666666666666,0.65,1,26 -cup,0.35000000000000003,0.5,0.5499999999999999,0.49000000000000005,1,26 -folded,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.6216666666666667,1.0,0.55,0.6833333333333333,1,26 -black,0.9133333333333333,0.7666666666666666,1.0,0.8466666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.64,1.0,0.4833333333333333,0.6333333333333333,1,26 -soccer,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666666,1,26 -hat,0.7933333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -brown,0.9016666666666666,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.835,1.0,0.7333333333333333,0.8166666666666668,1,25 -handle,0.71,1.0,0.6499999999999999,0.75,1,26 -food,0.705,1.0,0.6666666666666666,0.7666666666666666,1,25 -towel,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -chips,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -stapler,0.5,1.0,0.4999999999999999,0.6333333333333333,1,26 -onion,0.655,1.0,0.5333333333333332,0.6666666666666666,1,26 -bag,0.6766666666666666,1.0,0.6,0.7166666666666667,1,26 -sponge,0.4916666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.5999999999999999,1.0,0.5833333333333333,0.7,1,26 -special,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -colgate,0.7433333333333333,1.0,0.7,0.7833333333333333,1,26 -leaf,0.61,1.0,0.4833333333333332,0.6333333333333333,1,26 -tube,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -mug,0.6266666666666666,1.0,0.4833333333333333,0.6333333333333334,1,25 -yogurt,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -plantain,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -red,0.9833333333333334,0.95,1.0,0.9666666666666666,3,26 -pepper,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -wheat,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.6666666666666666,1.0,0.6666666666666666,0.75,1,26 -toothbrush,0.4883333333333333,1.0,0.4499999999999999,0.6,1,26 -binder,0.73,1.0,0.5833333333333333,0.7166666666666667,1,26 -baseball,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -pliers,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8166666666666668,1.0,0.7666666666666666,0.8333333333333333,1,26 -thins,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -package,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -k,0.4833333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -jelly,0.6933333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -fruit,0.8466666666666667,0.8,0.9333333333333332,0.8333333333333334,2,25 -apple,0.6966666666666667,1.0,0.65,0.75,1,25 -bell,0.925,1.0,0.85,0.8999999999999998,1,26 -battery,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -jar,0.7083333333333334,1.0,0.75,0.8166666666666667,1,26 -bound,0.7150000000000001,1.0,0.5166666666666666,0.6666666666666667,1,26 -lettuce,0.7666666666666667,1.0,0.75,0.8166666666666667,1,26 -brush,0.5016666666666667,1.0,0.5166666666666666,0.65,1,26 -scissors,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.7266666666666667,1.0,0.55,0.6833333333333333,1,25 -toothpaste,0.5166666666666666,1.0,0.5999999999999999,0.7,1,26 -top,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -spiral,0.7983333333333333,1.0,0.6,0.7333333333333334,1,26 -handles,0.5933333333333334,1.0,0.5,0.6333333333333333,1,25 -camera,0.6633333333333333,1.0,0.5666666666666667,0.7,1,26 -eraser,0.655,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.655,1.0,0.4833333333333333,0.6333333333333334,1,26 -pitcher,0.635,1.0,0.5999999999999999,0.7166666666666667,1,26 -phone,0.725,1.0,0.6,0.7166666666666667,1,26 -stick,0.6333333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -cereal,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -bulb,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -hair,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.69,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,0.9349999999999999,1.0,0.9,0.9400000000000001,2,24 -coca,0.7916666666666666,1.0,0.7,0.7833333333333333,1,26 -crackers,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -plate,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -calculator,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -tissues,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -juice,0.5483333333333333,0.5,0.6166666666666666,0.53,1,26 -pink,0.63,1.0,0.6499999999999999,0.75,1,25 -lemon,0.6933333333333334,1.0,0.55,0.6833333333333333,1,26 -peach,0.8066666666666666,1.0,0.6833333333333333,0.7833333333333334,1,26 -bowl,0.6666666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6683333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -blue,0.6883333333333332,1.0,0.55,0.6833333333333333,1,25 -used,0.725,1.0,0.7499999999999999,0.8166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.45499999999999996,1.0,0.4499999999999999,0.6,1,26 -ball,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,25 -notebook,0.6583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -garlic,0.6849999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -cleaning,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -pair,0.8383333333333333,1.0,0.8,0.8800000000000001,2,27 -container,0.705,1.0,0.65,0.75,1,25 -tomato,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -cellphone,0.65,1.0,0.5833333333333333,0.7,1,26 -potato,0.575,1.0,0.5666666666666667,0.6833333333333333,1,25 -light,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.655679012345679 -F1-Score: 0.6916049382716051 -Precision: 0.9121913580246913 -Recall: 0.6060185185185184 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5883333333333333,1.0,0.5833333333333333,0.7,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.7433333333333333,0.8,0.7166666666666666,0.6666666666666667,1,24 -keyboard,0.6799999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -glue,0.6333333333333333,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.9133333333333333,1.0,0.85,0.8999999999999998,1,26 -flashlight,0.7466666666666666,1.0,0.65,0.75,1,26 -cup,0.3333333333333333,0.6,0.5166666666666666,0.5033333333333334,1,26 -folded,0.7083333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jam,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -black,0.9633333333333333,0.9166666666666666,1.0,0.9466666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.7666666666666667,1.0,0.7166666666666666,0.8,1,26 -soccer,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -hat,0.73,1.0,0.6499999999999999,0.75,1,26 -brown,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,24 -coffee,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666666,1,25 -handle,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -food,0.6433333333333333,1.0,0.5666666666666667,0.7,1,25 -towel,0.6766666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -chips,0.575,1.0,0.5166666666666666,0.65,1,26 -stapler,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -onion,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -bag,0.6933333333333334,1.0,0.5333333333333333,0.6833333333333333,1,26 -sponge,0.7833333333333333,1.0,0.7,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6749999999999999,1.0,0.6499999999999999,0.75,1,26 -special,0.7433333333333334,1.0,0.5666666666666667,0.7,1,26 -colgate,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -leaf,0.7316666666666667,1.0,0.5666666666666667,0.7,1,26 -tube,0.6383333333333333,1.0,0.5166666666666666,0.65,1,26 -cell,0.7,1.0,0.55,0.6833333333333333,1,26 -mug,0.705,1.0,0.65,0.75,1,25 -yogurt,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -plantain,0.45999999999999996,1.0,0.4499999999999999,0.6,1,26 -red,0.8899999999999999,0.7,1.0,0.8,3,26 -pepper,0.86,1.0,0.7333333333333333,0.8166666666666668,1,26 -wheat,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -kleenex,0.5166666666666666,1.0,0.5,0.6333333333333333,1,26 -toothbrush,0.7083333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -binder,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -baseball,0.7133333333333334,1.0,0.7166666666666666,0.8,1,26 -pliers,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5966666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -thins,0.6900000000000001,1.0,0.5333333333333333,0.6833333333333333,1,26 -package,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -k,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -jelly,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -fruit,0.7549999999999999,0.8166666666666667,0.8333333333333334,0.8,2,26 -apple,0.6916666666666667,0.95,0.6833333333333333,0.7333333333333333,1,25 -bell,0.7333333333333333,1.0,0.7166666666666666,0.8,1,26 -battery,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -jar,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -bound,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -lettuce,0.6933333333333332,1.0,0.6,0.7166666666666667,1,26 -brush,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -scissors,0.505,1.0,0.5166666666666666,0.65,1,26 -lime,0.7716666666666667,1.0,0.6166666666666666,0.7333333333333334,1,25 -toothpaste,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -top,0.76,1.0,0.7166666666666666,0.8,1,26 -spiral,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -handles,0.635,1.0,0.5666666666666667,0.7,1,25 -camera,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -eraser,0.9266666666666665,1.0,0.85,0.9,1,26 -creamer,0,0,0,0,1,26 -white,0.8883333333333333,0.7666666666666666,1.0,0.8466666666666667,5,21 -banana,0.55,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.58,1.0,0.4499999999999999,0.6,1,26 -phone,0.44666666666666666,1.0,0.5166666666666666,0.65,1,26 -stick,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -cereal,0.6333333333333333,1.0,0.7,0.7833333333333333,1,26 -bulb,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -hair,0.7,1.0,0.7333333333333333,0.8,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5583333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -can,0.8416666666666668,1.0,0.8333333333333333,0.9,2,27 -coca,0.7866666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -crackers,0.63,1.0,0.5833333333333333,0.7,1,26 -plate,0.755,1.0,0.6499999999999999,0.75,1,25 -calculator,0.6766666666666666,0.85,0.6666666666666666,0.6666666666666667,1,26 -tissues,0.5483333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -juice,0.5116666666666666,0.5,0.65,0.5366666666666666,1,26 -pink,0.65,1.0,0.7,0.7833333333333333,1,25 -lemon,0.8,1.0,0.7333333333333333,0.8166666666666667,1,26 -peach,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -bowl,0.73,1.0,0.6833333333333333,0.7666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5249999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -blue,0.4333333333333333,1.0,0.5499999999999999,0.6666666666666666,1,25 -used,0.6599999999999999,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.8083333333333332,1.0,0.7333333333333333,0.8166666666666668,1,26 -ball,0.7133333333333334,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -garlic,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -cleaning,0.6933333333333332,1.0,0.6,0.7166666666666667,1,26 -pair,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -container,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -tomato,0.5516666666666666,0.85,0.6,0.6166666666666667,1,26 -cellphone,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -potato,0.65,1.0,0.6166666666666666,0.7166666666666666,1,25 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,26 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6562808641975308 -F1-Score: 0.6971913580246913 -Precision: 0.9050925925925926 -Recall: 0.619753086419753 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5433333333333332,1.0,0.5166666666666666,0.65,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.5683333333333332,1.0,0.5333333333333333,0.6666666666666667,1,24 -keyboard,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -glue,0.7366666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.825,1.0,0.6333333333333333,0.75,1,26 -flashlight,0.4416666666666667,1.0,0.4499999999999999,0.6,1,26 -cup,0.08499999999999999,0.5,0.36666666666666664,0.42000000000000004,1,26 -folded,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -jam,0.6966666666666665,1.0,0.6833333333333332,0.7666666666666666,1,26 -black,0.905,0.8166666666666667,1.0,0.8800000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5766666666666667,1.0,0.5166666666666666,0.65,1,26 -soccer,0.6816666666666666,1.0,0.55,0.6833333333333333,1,26 -hat,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -brown,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -coffee,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -handle,0.6566666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -food,0.3333333333333333,1.0,0.3666666666666667,0.5333333333333333,1,25 -towel,0.725,1.0,0.7,0.7833333333333333,1,26 -chips,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -stapler,0.8,1.0,0.8666666666666666,0.9,1,26 -onion,0.7,1.0,0.6833333333333333,0.7666666666666667,1,26 -bag,0.58,1.0,0.4666666666666666,0.6166666666666667,1,26 -sponge,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.85,1.0,0.7666666666666666,0.8333333333333333,1,25 -special,0.7716666666666666,1.0,0.7166666666666666,0.8,1,26 -colgate,0.63,1.0,0.5833333333333333,0.7,1,26 -leaf,0.6483333333333333,1.0,0.5,0.65,1,26 -tube,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -cell,0.5583333333333333,0.55,0.7666666666666666,0.59,1,26 -mug,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -yogurt,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -plantain,0.6383333333333333,1.0,0.6,0.7166666666666667,1,26 -red,0.8900000000000002,0.7333333333333333,1.0,0.8266666666666668,3,25 -pepper,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -wheat,0.7366666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.65,1.0,0.6166666666666666,0.7166666666666666,1,26 -toothbrush,0.6166666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -binder,0.6583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -baseball,0.5083333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -pliers,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.785,1.0,0.6333333333333333,0.75,1,26 -thins,0.5633333333333332,1.0,0.55,0.6666666666666666,1,26 -package,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -k,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -jelly,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -fruit,0.7766666666666666,0.7166666666666667,0.9,0.7466666666666667,2,25 -apple,0.6166666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -bell,0.8066666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -battery,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -jar,0.9216666666666666,1.0,0.85,0.9,1,26 -bound,0.6849999999999999,1.0,0.5666666666666667,0.7,1,26 -lettuce,0.8333333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -brush,0.725,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.39666666666666667,1.0,0.4333333333333334,0.5833333333333333,1,26 -lime,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -toothpaste,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -top,0.4966666666666667,1.0,0.4499999999999999,0.6,1,26 -spiral,0.61,1.0,0.6,0.7166666666666667,1,26 -handles,0.735,1.0,0.5999999999999999,0.7166666666666666,1,25 -camera,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -eraser,0.7216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.625,1.0,0.5333333333333333,0.6666666666666667,1,26 -pitcher,0.5416666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -phone,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -stick,0.5083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -cereal,0.7733333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -bulb,0.8683333333333334,1.0,0.8333333333333333,0.9,2,26 -hair,0.55,1.0,0.5499999999999999,0.6666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -can,0.96,1.0,0.9333333333333332,0.96,2,25 -coca,0.8966666666666667,1.0,0.8,0.8666666666666666,1,26 -crackers,0.5433333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -plate,0.7533333333333333,1.0,0.5999999999999999,0.7166666666666667,1,25 -calculator,0.6416666666666666,0.95,0.6833333333333333,0.7333333333333333,1,26 -tissues,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -juice,0.6966666666666665,1.0,0.5833333333333333,0.7,1,26 -pink,0.5166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -lemon,0.65,1.0,0.65,0.75,1,26 -peach,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -bowl,0.7716666666666667,1.0,0.6333333333333333,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.4966666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -blue,0.6133333333333334,1.0,0.6,0.7166666666666667,1,25 -used,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,23 -energizer,0,0,0,0,1,26 -pear,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -ball,0.75,1.0,0.7,0.7833333333333333,1,25 -notebook,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -garlic,0.6833333333333333,1.0,0.6,0.7166666666666667,1,26 -cleaning,0.78,1.0,0.7166666666666666,0.8,1,26 -pair,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.6383333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -tomato,0.6583333333333334,0.85,0.55,0.6166666666666667,1,26 -cellphone,0.475,0.6,0.6499999999999999,0.5566666666666666,1,26 -potato,0.7883333333333333,1.0,0.7166666666666666,0.8,1,25 -light,0.8233333333333335,1.0,0.7666666666666667,0.8600000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8633333333333333,1.0,0.8333333333333333,0.9,2,25 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6450617283950616 -F1-Score: 0.6861419753086422 -Precision: 0.904783950617284 -Recall: 0.6041666666666665 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,24 -yellow,1.0,1.0,1.0,1.0,6,27 -looks,0.6599999999999999,0.95,0.5666666666666667,0.6666666666666666,1,24 -keyboard,0.6883333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.74,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -flashlight,0.6333333333333333,1.0,0.65,0.75,1,26 -cup,0.3350000000000001,0.5,0.5999999999999999,0.52,1,25 -folded,0.7083333333333333,1.0,0.7499999999999999,0.8166666666666668,1,26 -jam,0.75,1.0,0.7166666666666666,0.8,1,26 -black,0.9833333333333334,0.95,1.0,0.9666666666666666,6,23 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.675,1.0,0.6499999999999999,0.75,1,26 -soccer,0.7083333333333333,1.0,0.7166666666666666,0.8,1,26 -hat,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -brown,0.8833333333333332,1.0,0.8666666666666666,0.9200000000000002,2,26 -coffee,0.6133333333333334,1.0,0.65,0.75,1,25 -handle,0.73,1.0,0.6333333333333333,0.75,1,26 -food,0.7633333333333333,1.0,0.7166666666666666,0.8,1,25 -towel,0.6683333333333332,1.0,0.5333333333333333,0.6833333333333333,1,26 -chips,0.4933333333333333,1.0,0.5166666666666666,0.65,1,26 -stapler,0.61,1.0,0.5833333333333333,0.7,1,26 -onion,0.615,0.8,0.65,0.6333333333333333,1,26 -bag,0.51,1.0,0.4666666666666666,0.6166666666666667,1,26 -sponge,0.6683333333333332,1.0,0.6499999999999999,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.675,1.0,0.5999999999999999,0.7166666666666666,1,25 -special,0.7583333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -colgate,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -leaf,0.7733333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -tube,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -cell,0.5166666666666666,1.0,0.6,0.7,1,26 -mug,0.7883333333333333,1.0,0.7,0.7833333333333333,1,25 -yogurt,0.5416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -plantain,0.7833333333333333,1.0,0.7999999999999999,0.85,1,26 -red,0.8716666666666667,0.7666666666666667,1.0,0.858095238095238,3,27 -pepper,0.605,1.0,0.5166666666666666,0.65,1,26 -wheat,0.7899999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -kleenex,0.8933333333333333,1.0,0.8,0.8666666666666666,1,26 -toothbrush,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -binder,0.43,1.0,0.4333333333333333,0.5833333333333333,1,26 -baseball,0.805,1.0,0.7,0.7833333333333333,1,26 -pliers,0.475,1.0,0.4999999999999999,0.6333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7833333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -thins,0.665,1.0,0.6,0.7166666666666666,1,26 -package,0.74,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.7733333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -jelly,0.6966666666666667,1.0,0.5666666666666667,0.7,1,26 -fruit,0.7716666666666667,0.5666666666666667,0.9666666666666666,0.7066666666666668,2,25 -apple,0.6766666666666666,1.0,0.5333333333333332,0.6666666666666666,1,25 -bell,0.4916666666666666,1.0,0.5166666666666666,0.65,1,26 -battery,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -jar,0.7133333333333333,1.0,0.65,0.75,1,26 -bound,0.7716666666666666,1.0,0.7,0.7833333333333333,1,26 -lettuce,0.5233333333333333,1.0,0.45,0.6,1,26 -brush,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -lime,0.7749999999999999,1.0,0.7,0.7833333333333333,1,25 -toothpaste,0.6733333333333333,1.0,0.5833333333333333,0.7,1,26 -top,0.45,1.0,0.5333333333333333,0.65,1,26 -spiral,0.735,1.0,0.65,0.75,1,26 -handles,0.65,1.0,0.6833333333333333,0.7666666666666666,1,25 -camera,0.4716666666666667,1.0,0.36666666666666664,0.5333333333333333,1,26 -eraser,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6499999999999999,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.585,1.0,0.5833333333333333,0.7,1,26 -phone,0.675,1.0,0.6,0.7166666666666667,1,26 -stick,0.5083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,25 -cereal,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -bulb,0.8833333333333332,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.5133333333333333,1.0,0.5499999999999999,0.6666666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -can,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.7016666666666667,1.0,0.5666666666666667,0.7,1,26 -crackers,0.5216666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -plate,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -calculator,0.73,1.0,0.7499999999999999,0.8166666666666667,1,26 -tissues,0.7499999999999999,1.0,0.6833333333333332,0.7666666666666666,1,26 -juice,0.6183333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -pink,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -lemon,0.7233333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -peach,0.4916666666666666,1.0,0.4499999999999999,0.6,1,26 -bowl,0.905,1.0,0.8333333333333333,0.8833333333333332,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -blue,0.6,0.8,0.6333333333333333,0.6166666666666666,1,25 -used,0.5999999999999999,1.0,0.6166666666666666,0.7166666666666666,1,22 -energizer,0,0,0,0,1,26 -pear,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -ball,0.7133333333333334,1.0,0.5666666666666667,0.7,1,25 -notebook,0.7166666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -garlic,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -cleaning,0.5599999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -pair,0.8466666666666667,1.0,0.8333333333333334,0.9000000000000001,2,27 -container,0.8716666666666667,1.0,0.7833333333333333,0.85,1,25 -tomato,0.40166666666666667,0.8,0.4999999999999999,0.5399999999999999,1,26 -cellphone,0.7166666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -potato,0.735,1.0,0.6666666666666666,0.7666666666666667,1,25 -light,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,27 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.89,1.0,0.8333333333333333,0.9,2,27 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6502314814814815 -F1-Score: 0.6960934744268078 -Precision: 0.908641975308642 -Recall: 0.6168209876543208 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5416666666666667,1.0,0.5,0.6333333333333334,1,25 -yellow,0.9400000000000001,0.85,1.0,0.9,6,25 -looks,0.3,1.0,0.4666666666666666,0.6,1,24 -keyboard,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6766666666666666,1.0,0.5666666666666667,0.7,1,26 -flashlight,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -cup,0.63,1.0,0.5999999999999999,0.7166666666666667,1,26 -folded,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -jam,0.73,1.0,0.75,0.8166666666666667,1,26 -black,0.8466666666666667,0.6583333333333333,1.0,0.779047619047619,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -soccer,0.5666666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -hat,0.725,1.0,0.6833333333333333,0.7666666666666666,1,26 -brown,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -coffee,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -handle,0.725,1.0,0.7499999999999999,0.8166666666666667,1,26 -food,0.7,1.0,0.7999999999999999,0.85,1,26 -towel,0.725,1.0,0.7,0.7833333333333333,1,26 -chips,0.6416666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -stapler,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -onion,0.5249999999999999,1.0,0.4499999999999999,0.6,1,26 -bag,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -sponge,0.5433333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.7083333333333333,1.0,0.7,0.7833333333333333,1,25 -special,0.8483333333333334,1.0,0.7333333333333333,0.8166666666666668,1,26 -colgate,0.4466666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -leaf,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -tube,0.6516666666666666,1.0,0.5,0.65,1,26 -cell,0.7533333333333333,0.5,0.95,0.65,1,26 -mug,0.635,1.0,0.5333333333333333,0.6666666666666667,1,26 -yogurt,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.7166666666666666,1.0,0.65,0.75,1,26 -red,0.8683333333333334,0.6916666666666667,1.0,0.799047619047619,3,25 -pepper,0.7433333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -wheat,0.78,1.0,0.6833333333333333,0.7666666666666666,1,26 -kleenex,0.6583333333333333,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -binder,0.655,1.0,0.5999999999999999,0.7166666666666667,1,26 -baseball,0.6566666666666666,1.0,0.55,0.6833333333333333,1,26 -pliers,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7166666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -package,0.53,0.95,0.5833333333333333,0.6666666666666667,1,26 -k,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -jelly,0.6916666666666667,1.0,0.6333333333333332,0.7333333333333333,1,26 -fruit,0.7699999999999999,0.75,0.8666666666666666,0.7666666666666667,2,25 -apple,0.5399999999999999,0.6,0.6499999999999999,0.5566666666666666,1,25 -bell,0.6966666666666667,1.0,0.55,0.6833333333333333,1,26 -battery,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -jar,0.4883333333333333,1.0,0.4,0.5666666666666667,1,26 -bound,0.7216666666666667,1.0,0.7,0.7833333333333333,1,26 -lettuce,0.675,1.0,0.7,0.7833333333333333,1,26 -brush,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -scissors,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -lime,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -toothpaste,0.675,1.0,0.5333333333333333,0.6666666666666667,1,26 -top,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -spiral,0.7833333333333334,1.0,0.7999999999999999,0.85,1,26 -handles,0.4766666666666667,1.0,0.4333333333333333,0.5833333333333333,1,25 -camera,0.8800000000000001,1.0,0.7833333333333333,0.85,1,26 -eraser,0.7483333333333333,1.0,0.6333333333333333,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.5900000000000001,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.73,1.0,0.7,0.7833333333333333,1,26 -stick,0.7,1.0,0.7333333333333332,0.8,1,25 -cereal,0.775,1.0,0.7499999999999999,0.8166666666666667,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -hair,0.6433333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6166666666666666,1.0,0.6,0.7,1,26 -can,0.8633333333333333,1.0,0.8333333333333333,0.9,2,24 -coca,0.4883333333333333,1.0,0.5166666666666666,0.65,1,26 -crackers,0.7466666666666667,1.0,0.5666666666666667,0.7,1,26 -plate,0.835,1.0,0.7333333333333333,0.8166666666666668,1,25 -calculator,0.6433333333333333,0.85,0.6499999999999999,0.65,1,26 -tissues,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -juice,0.6233333333333333,1.0,0.4833333333333334,0.6333333333333333,1,26 -pink,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -lemon,0.5216666666666666,1.0,0.4499999999999999,0.6,1,26 -peach,0.5583333333333333,1.0,0.5833333333333333,0.7,1,26 -bowl,0.5599999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -blue,0.7333333333333333,1.0,0.7333333333333333,0.8,1,25 -used,0.775,1.0,0.7166666666666666,0.8,1,24 -energizer,0,0,0,0,1,26 -pear,0.7166666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -ball,0.6416666666666666,1.0,0.65,0.75,1,25 -notebook,0.73,1.0,0.65,0.75,1,26 -garlic,0.615,1.0,0.4833333333333333,0.6333333333333333,1,26 -cleaning,0.5883333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -pair,1.0,1.0,1.0,1.0,2,26 -container,0.665,1.0,0.5499999999999999,0.6833333333333333,1,26 -tomato,0.3866666666666667,0.7,0.4833333333333333,0.5166666666666666,1,26 -cellphone,0.31500000000000006,0.5,0.55,0.5033333333333333,1,26 -potato,0.63,1.0,0.5333333333333333,0.6666666666666666,1,25 -light,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,27 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6426388888888888 -F1-Score: 0.6873280423280422 -Precision: 0.8986111111111109 -Recall: 0.6132716049382715 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6966666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.43833333333333335,1.0,0.41666666666666663,0.5833333333333333,1,24 -keyboard,0.7333333333333333,1.0,0.6499999999999999,0.75,1,26 -glue,0.5333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -flashlight,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -cup,0.28833333333333333,0.5,0.5833333333333333,0.51,1,26 -folded,0.7333333333333333,1.0,0.75,0.8166666666666667,1,26 -jam,0.63,1.0,0.5833333333333333,0.7,1,26 -black,0.95,0.8666666666666666,1.0,0.9133333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.48999999999999994,1.0,0.41666666666666663,0.5833333333333333,1,26 -soccer,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -hat,0.8899999999999999,1.0,0.7833333333333333,0.85,1,26 -brown,0.95,1.0,0.9333333333333332,0.9600000000000002,2,24 -coffee,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -handle,0.71,1.0,0.6333333333333333,0.7333333333333333,1,26 -food,0.6966666666666665,1.0,0.5833333333333333,0.7,1,24 -towel,0.86,1.0,0.7833333333333333,0.85,1,26 -chips,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -stapler,0.65,1.0,0.65,0.75,1,26 -onion,0.6333333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -bag,0.5833333333333333,1.0,0.5333333333333333,0.65,1,26 -sponge,0.7233333333333334,1.0,0.65,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.7483333333333333,1.0,0.6333333333333333,0.75,1,25 -special,0.5083333333333334,1.0,0.5499999999999999,0.6666666666666666,1,26 -colgate,0.6900000000000001,1.0,0.5333333333333333,0.6833333333333333,1,26 -leaf,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -tube,0.5349999999999999,1.0,0.4333333333333334,0.6,1,26 -cell,0.4766666666666667,0.5,0.6833333333333332,0.5433333333333333,1,26 -mug,0.6716666666666666,1.0,0.5166666666666666,0.65,1,26 -yogurt,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -plantain,0.6833333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.6233333333333334,1.0,0.5,0.65,1,26 -wheat,0.675,1.0,0.65,0.75,1,26 -kleenex,0.5,1.0,0.4666666666666666,0.6166666666666667,1,26 -toothbrush,0.625,1.0,0.6,0.7166666666666667,1,26 -binder,0.66,1.0,0.5,0.65,1,26 -baseball,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -pliers,0.355,1.0,0.4333333333333333,0.5833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -thins,0.46333333333333326,1.0,0.4833333333333332,0.6166666666666666,1,26 -package,0.735,1.0,0.7166666666666666,0.8,1,26 -k,0.6016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -jelly,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.8383333333333333,0.95,0.8333333333333334,0.8666666666666666,2,25 -apple,0.7066666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -bell,0.6166666666666666,1.0,0.5999999999999999,0.7,1,26 -battery,0.6749999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -jar,0.5133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bound,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.615,1.0,0.4833333333333332,0.6333333333333333,1,26 -brush,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -scissors,0.575,1.0,0.5166666666666666,0.65,1,26 -lime,0.6216666666666666,1.0,0.5333333333333332,0.6666666666666666,1,25 -toothpaste,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -top,0.6583333333333334,1.0,0.6833333333333333,0.7666666666666666,1,26 -spiral,0.6,1.0,0.5333333333333333,0.6666666666666666,1,26 -handles,0.9016666666666666,1.0,0.8,0.8666666666666668,1,25 -camera,0.7016666666666667,1.0,0.5666666666666667,0.7,1,26 -eraser,0.5916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -pitcher,0.765,1.0,0.5833333333333333,0.7166666666666667,1,26 -phone,0.8566666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -stick,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333333,1,25 -cereal,0.6883333333333332,1.0,0.6,0.7166666666666667,1,26 -bulb,0.93,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -can,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coca,0.7133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.53,1.0,0.5166666666666666,0.65,1,26 -plate,0.635,1.0,0.5999999999999999,0.7166666666666667,1,25 -calculator,0.6516666666666666,0.95,0.5333333333333333,0.6333333333333333,1,26 -tissues,0.7383333333333333,1.0,0.65,0.75,1,26 -juice,0.77,1.0,0.6166666666666666,0.7333333333333334,1,26 -pink,0.6799999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -lemon,0.6433333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.5883333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -bowl,0.7266666666666667,1.0,0.6333333333333333,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -blue,0.7183333333333333,1.0,0.6499999999999999,0.75,1,25 -used,0.6933333333333332,1.0,0.5333333333333332,0.6666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,25 -notebook,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -garlic,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.6933333333333332,1.0,0.6,0.7166666666666667,1,26 -pair,0.9600000000000002,1.0,0.9333333333333332,0.9600000000000002,2,27 -container,0.61,1.0,0.5166666666666666,0.65,1,25 -tomato,0.49833333333333324,0.85,0.6333333333333333,0.65,1,26 -cellphone,0.4549999999999999,0.5,0.6166666666666666,0.53,1,26 -potato,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -light,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6442746913580246 -F1-Score: 0.684320987654321 -Precision: 0.9075617283950618 -Recall: 0.5989197530864196 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5583333333333333,1.0,0.5166666666666666,0.65,1,25 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.5416666666666667,0.95,0.4999999999999999,0.6,1,24 -keyboard,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -glue,0.655,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.75,1.0,0.7333333333333333,0.8,1,26 -flashlight,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666668,1,26 -cup,0.4883333333333333,0.5,0.7,0.5533333333333335,1,26 -folded,0.7166666666666666,1.0,0.55,0.6833333333333333,1,26 -jam,0.61,1.0,0.4999999999999999,0.65,1,26 -black,0.8433333333333334,0.6833333333333333,1.0,0.7980952380952381,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.55,1.0,0.5166666666666666,0.65,1,26 -soccer,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -hat,0.655,1.0,0.7,0.7833333333333333,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.96,2,24 -coffee,0.6883333333333332,1.0,0.6,0.7166666666666667,1,25 -handle,0.775,1.0,0.7,0.7833333333333333,1,25 -food,0.755,1.0,0.7,0.7833333333333333,1,26 -towel,0.7516666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -chips,0.8,1.0,0.75,0.8166666666666667,1,26 -stapler,0.475,1.0,0.4999999999999999,0.6333333333333333,1,26 -onion,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -bag,0.8183333333333334,1.0,0.65,0.7666666666666667,1,26 -sponge,0.6649999999999999,1.0,0.55,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6133333333333333,1.0,0.5833333333333333,0.7,1,25 -special,0.5166666666666666,1.0,0.5166666666666666,0.65,1,26 -colgate,0.7316666666666667,1.0,0.5666666666666667,0.7,1,26 -leaf,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -cell,0.675,1.0,0.6,0.7166666666666667,1,26 -mug,0.8266666666666665,1.0,0.7833333333333333,0.85,1,25 -yogurt,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -plantain,0.635,1.0,0.5999999999999999,0.7166666666666666,1,26 -red,0.9833333333333334,0.95,1.0,0.9666666666666666,3,26 -pepper,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -wheat,0.6766666666666665,1.0,0.55,0.6833333333333333,1,26 -kleenex,0.7383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -toothbrush,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -binder,0.6466666666666667,1.0,0.5666666666666667,0.7,1,26 -baseball,0.4883333333333333,1.0,0.5166666666666666,0.65,1,26 -pliers,0.78,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.675,1.0,0.5999999999999999,0.7166666666666666,1,26 -thins,0.53,1.0,0.4666666666666666,0.6166666666666666,1,26 -package,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -k,0.7266666666666667,1.0,0.6499999999999999,0.75,1,26 -jelly,0.5816666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -fruit,0.7216666666666667,0.6333333333333333,0.9,0.7166666666666667,2,25 -apple,0.625,0.65,0.6666666666666666,0.59,1,25 -bell,0.6483333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -battery,0.8,1.0,0.7333333333333333,0.8166666666666668,1,26 -jar,0.6933333333333334,1.0,0.55,0.6833333333333333,1,26 -bound,0.5933333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.78,1.0,0.7166666666666666,0.8,1,26 -brush,0.6183333333333333,1.0,0.5833333333333333,0.7,1,26 -scissors,0.5083333333333333,1.0,0.5166666666666666,0.65,1,26 -lime,0.755,1.0,0.6666666666666666,0.7666666666666667,1,25 -toothpaste,0.6133333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -spiral,0.6599999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -handles,0.7016666666666667,1.0,0.55,0.6833333333333333,1,25 -camera,0.6933333333333334,1.0,0.65,0.75,1,26 -eraser,0.7166666666666667,1.0,0.5333333333333333,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.5583333333333332,1.0,0.5499999999999999,0.6666666666666666,1,26 -pitcher,0.7633333333333333,1.0,0.65,0.75,1,26 -phone,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -stick,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -cereal,0.6933333333333334,1.0,0.4999999999999999,0.65,1,26 -bulb,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,26 -hair,0.5516666666666666,1.0,0.4,0.5666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -crackers,0.7983333333333333,1.0,0.6333333333333333,0.75,1,26 -plate,0.7333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -calculator,0.5616666666666668,0.85,0.5166666666666666,0.5833333333333333,1,26 -tissues,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -juice,0.58,1.0,0.5333333333333333,0.6666666666666666,1,26 -pink,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -lemon,0.5516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -peach,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.655,1.0,0.5999999999999999,0.7166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6799999999999999,1.0,0.6,0.7166666666666666,1,26 -blue,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,25 -used,0.6266666666666667,1.0,0.4666666666666666,0.6166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -ball,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -notebook,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -garlic,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -pair,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -container,0.7666666666666666,1.0,0.7166666666666666,0.8,1,25 -tomato,0.6016666666666666,0.8,0.5333333333333333,0.5833333333333333,1,26 -cellphone,0.6,1.0,0.5499999999999999,0.6833333333333333,1,26 -potato,0.53,1.0,0.5166666666666666,0.65,1,25 -light,0.9333333333333332,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,25 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6466666666666667 -F1-Score: 0.6836243386243385 -Precision: 0.9075617283950619 -Recall: 0.598611111111111 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.58,1.0,0.5833333333333333,0.7,1,25 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.5,0.95,0.5166666666666666,0.6166666666666666,1,24 -keyboard,0.6366666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -glue,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.55,1.0,0.5999999999999999,0.7,1,26 -flashlight,0.6183333333333334,1.0,0.5166666666666666,0.65,1,26 -cup,0.5933333333333333,0.55,0.6833333333333333,0.5666666666666667,1,26 -folded,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -jam,0.605,1.0,0.5166666666666666,0.65,1,26 -black,0.9100000000000001,0.7833333333333333,1.0,0.86,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -soccer,0.6816666666666668,1.0,0.5666666666666667,0.7,1,26 -hat,0.8416666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -brown,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.5466666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -handle,0.7849999999999999,1.0,0.6333333333333333,0.75,1,26 -food,0.6299999999999999,1.0,0.5999999999999999,0.7166666666666667,1,25 -towel,0.805,1.0,0.7,0.7833333333333334,1,26 -chips,0.675,1.0,0.65,0.75,1,26 -stapler,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -onion,0.55,1.0,0.5999999999999999,0.7,1,26 -bag,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -sponge,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6883333333333334,1.0,0.55,0.6833333333333333,1,25 -special,0.5083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -colgate,0.6716666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -leaf,0.75,1.0,0.7333333333333333,0.8,1,26 -tube,0.7516666666666667,1.0,0.6333333333333333,0.75,1,26 -cell,0.6933333333333332,1.0,0.6333333333333332,0.7333333333333333,1,26 -mug,0.65,1.0,0.5666666666666667,0.7,1,26 -yogurt,0.76,1.0,0.65,0.75,1,26 -plantain,0.6333333333333334,1.0,0.55,0.6833333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.5966666666666667,1.0,0.4666666666666666,0.6333333333333333,1,26 -wheat,0.5683333333333332,1.0,0.4666666666666666,0.6166666666666667,1,26 -kleenex,0.685,1.0,0.5666666666666667,0.7,1,26 -toothbrush,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -baseball,0.6766666666666666,1.0,0.4999999999999999,0.65,1,26 -pliers,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,24 -water,0.6749999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -thins,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -package,0.7799999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -k,0.6649999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -jelly,0.8016666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -fruit,0.7466666666666667,0.65,0.9,0.7066666666666667,2,25 -apple,0.6833333333333333,0.95,0.7,0.75,1,25 -bell,0.6966666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.44666666666666666,1.0,0.41666666666666663,0.5833333333333334,1,26 -jar,0.6216666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -bound,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -lettuce,0.63,1.0,0.5999999999999999,0.7166666666666667,1,26 -brush,0.705,1.0,0.6166666666666666,0.7333333333333334,1,26 -scissors,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -lime,0.7716666666666666,1.0,0.7,0.7833333333333333,1,25 -toothpaste,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -top,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -spiral,0.505,1.0,0.4666666666666666,0.6166666666666667,1,26 -handles,0.6933333333333334,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.53,1.0,0.5166666666666666,0.65,1,26 -eraser,0.775,1.0,0.7,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6633333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -pitcher,0.7683333333333333,1.0,0.55,0.7,1,26 -phone,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -stick,0.74,1.0,0.6333333333333333,0.75,1,25 -cereal,0.5816666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -bulb,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.8049999999999999,1.0,0.7166666666666666,0.8,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8733333333333333,1.0,0.75,0.8333333333333333,1,26 -can,0.96,1.0,0.9333333333333332,0.96,2,25 -coca,0.6316666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -crackers,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -calculator,0.6333333333333333,0.55,0.7166666666666666,0.5800000000000001,1,26 -tissues,0.7466666666666666,1.0,0.6833333333333333,0.7666666666666667,1,26 -juice,0.42499999999999993,0.5,0.5499999999999999,0.5033333333333333,1,26 -pink,0.6333333333333333,1.0,0.5833333333333333,0.7,1,25 -lemon,0.5966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -peach,0.7083333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -bowl,0.7916666666666667,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7733333333333333,1.0,0.6499999999999999,0.75,1,26 -blue,0.7666666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -used,0.36666666666666664,1.0,0.4833333333333332,0.6166666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.5966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.735,1.0,0.6166666666666666,0.7333333333333333,1,25 -notebook,0.4549999999999999,1.0,0.4333333333333333,0.5833333333333333,1,26 -garlic,0.7966666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -cleaning,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -pair,0.875,1.0,0.8666666666666668,0.9200000000000002,2,26 -container,0.5683333333333334,1.0,0.41666666666666663,0.5833333333333333,1,25 -tomato,0.3166666666666667,1.0,0.38333333333333336,0.55,1,26 -cellphone,0.6216666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -potato,0.9416666666666667,1.0,0.9,0.9333333333333332,1,25 -light,0.8816666666666666,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.905,1.0,0.8666666666666668,0.9200000000000002,2,25 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6476697530864196 -F1-Score: 0.6865123456790124 -Precision: 0.9058641975308643 -Recall: 0.6041666666666665 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5433333333333332,1.0,0.5333333333333333,0.6666666666666667,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.53,0.95,0.5833333333333333,0.6666666666666667,1,24 -keyboard,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -glue,0.7466666666666667,1.0,0.5833333333333333,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.5966666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -flashlight,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.43,0.5,0.6499999999999999,0.5366666666666667,1,26 -folded,0.775,1.0,0.7166666666666666,0.8,1,26 -jam,0.7666666666666667,1.0,0.7166666666666666,0.8,1,26 -black,0.8450000000000001,0.6916666666666667,1.0,0.8057142857142857,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7016666666666667,1.0,0.5833333333333333,0.7,1,26 -soccer,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -hat,0.58,1.0,0.41666666666666663,0.5833333333333333,1,26 -brown,0.925,1.0,0.9,0.9400000000000001,2,24 -coffee,0.5766666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -handle,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -food,0.7133333333333333,1.0,0.6333333333333332,0.7333333333333333,1,25 -towel,0.71,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.725,1.0,0.6333333333333333,0.75,1,26 -stapler,0.6499999999999999,1.0,0.6666666666666666,0.75,1,26 -onion,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -bag,0.4833333333333333,1.0,0.4499999999999999,0.6,1,26 -sponge,0.5733333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6833333333333333,1.0,0.5833333333333333,0.7,1,25 -special,0.5466666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -colgate,0.8233333333333335,1.0,0.65,0.7666666666666667,1,26 -leaf,0.5433333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -tube,0.61,1.0,0.4499999999999999,0.6,1,26 -cell,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -mug,0.6783333333333333,1.0,0.4833333333333332,0.6333333333333333,1,26 -yogurt,0.755,1.0,0.6166666666666666,0.7333333333333333,1,26 -plantain,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -red,0.9466666666666667,0.8666666666666666,1.0,0.9133333333333333,3,26 -pepper,0.6799999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -wheat,0.6133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -kleenex,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -toothbrush,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -binder,0.585,1.0,0.5333333333333333,0.6666666666666666,1,26 -baseball,0.7666666666666666,1.0,0.8,0.85,1,26 -pliers,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6683333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -thins,0.7583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -package,0.655,1.0,0.55,0.6833333333333333,1,26 -k,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -jelly,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.6716666666666666,0.6166666666666667,0.8666666666666668,0.6866666666666668,2,25 -apple,0.5466666666666666,1.0,0.5499999999999999,0.6666666666666666,1,25 -bell,0.7133333333333333,1.0,0.75,0.8166666666666667,1,26 -battery,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -jar,0.6483333333333333,1.0,0.6,0.7166666666666667,1,26 -bound,0.67,1.0,0.5499999999999999,0.6833333333333333,1,26 -lettuce,0.8416666666666666,1.0,0.65,0.7666666666666667,1,26 -brush,0.7016666666666667,1.0,0.5666666666666667,0.7,1,26 -scissors,0.65,1.0,0.6666666666666666,0.75,1,26 -lime,0.4666666666666666,1.0,0.4999999999999999,0.6333333333333333,1,25 -toothpaste,0.9133333333333333,1.0,0.85,0.9,1,26 -top,0.6616666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -spiral,0.6666666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -handles,0.5333333333333333,1.0,0.5833333333333333,0.7,1,25 -camera,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -eraser,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.7933333333333333,0.675,1.0,0.8019047619047619,5,22 -banana,0.5833333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -pitcher,0.6633333333333333,1.0,0.5666666666666667,0.7,1,26 -phone,0.5166666666666667,1.0,0.4333333333333334,0.5833333333333333,1,26 -stick,0.66,1.0,0.6,0.7166666666666667,1,25 -cereal,0.6833333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -bulb,0.9133333333333333,1.0,0.9,0.9400000000000001,2,27 -hair,0.6016666666666667,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6966666666666665,1.0,0.5833333333333333,0.7,1,26 -can,0.8583333333333332,1.0,0.8333333333333333,0.9,2,24 -coca,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -crackers,0.58,1.0,0.5833333333333333,0.7,1,26 -plate,0.735,1.0,0.6166666666666666,0.7333333333333333,1,25 -calculator,0.6666666666666666,0.75,0.7,0.6333333333333333,1,26 -tissues,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -juice,0.5516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -pink,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -lemon,0.7166666666666667,1.0,0.65,0.75,1,26 -peach,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -bowl,0.48,1.0,0.4999999999999999,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.4583333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -blue,0.6183333333333334,1.0,0.4833333333333333,0.6333333333333333,1,25 -used,0.7749999999999999,1.0,0.7,0.7833333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.8266666666666665,1.0,0.7,0.8,1,26 -ball,0.655,1.0,0.55,0.6833333333333333,1,25 -notebook,0.6083333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -garlic,0.635,1.0,0.55,0.6833333333333333,1,26 -cleaning,0.63,1.0,0.5333333333333333,0.6666666666666666,1,26 -pair,0.9,1.0,0.8666666666666666,0.9199999999999999,2,27 -container,0.43499999999999994,1.0,0.45,0.6,1,25 -tomato,0.46333333333333326,0.7,0.5833333333333333,0.5566666666666666,1,26 -cellphone,0.65,1.0,0.65,0.75,1,26 -potato,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666668,1,25 -light,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8633333333333333,1.0,0.8333333333333333,0.9,2,25 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6369135802469134 -F1-Score: 0.6793915343915344 -Precision: 0.9050925925925926 -Recall: 0.595679012345679 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.78,1.0,0.6833333333333333,0.7833333333333333,1,25 -yellow,0.8733333333333334,0.6833333333333333,1.0,0.7933333333333333,6,25 -looks,0.45666666666666667,0.9,0.4499999999999999,0.55,1,24 -keyboard,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.6433333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -flashlight,0.73,1.0,0.7,0.7833333333333333,1,26 -cup,0.42666666666666664,0.5,0.65,0.5366666666666667,1,26 -folded,0.78,1.0,0.75,0.8166666666666667,1,26 -jam,0.755,1.0,0.7166666666666666,0.8,1,26 -black,0.8550000000000001,0.7166666666666667,1.0,0.82,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.85,1.0,0.8166666666666667,0.8666666666666666,1,26 -soccer,0.5633333333333332,1.0,0.4833333333333333,0.6333333333333333,1,26 -hat,0.7683333333333333,1.0,0.65,0.75,1,26 -brown,0.8933333333333333,1.0,0.8666666666666666,0.9200000000000002,2,25 -coffee,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -handle,0.63,1.0,0.4833333333333333,0.6333333333333333,1,26 -food,0.6816666666666666,1.0,0.55,0.6833333333333333,1,25 -towel,0.8666666666666666,1.0,0.8833333333333332,0.9166666666666666,1,26 -chips,0.6383333333333333,1.0,0.5666666666666667,0.7,1,26 -stapler,0.78,1.0,0.7499999999999999,0.8166666666666667,1,26 -onion,0.5583333333333333,1.0,0.5833333333333333,0.7,1,26 -bag,0.6933333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -sponge,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.5766666666666667,1.0,0.5833333333333333,0.7,1,25 -special,0.575,1.0,0.6166666666666666,0.7166666666666666,1,26 -colgate,0.6916666666666667,1.0,0.6,0.7166666666666667,1,26 -leaf,0.4466666666666666,1.0,0.4333333333333333,0.5833333333333333,1,26 -tube,0.73,1.0,0.5666666666666667,0.7,1,26 -cell,0.7249999999999999,1.0,0.6499999999999999,0.75,1,26 -mug,0.5833333333333333,1.0,0.55,0.6833333333333333,1,26 -yogurt,0.7,1.0,0.75,0.8166666666666667,1,26 -plantain,0.86,0.9,0.8,0.8,1,26 -red,0.9133333333333334,0.85,1.0,0.9114285714285714,3,26 -pepper,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -wheat,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -toothbrush,0.625,1.0,0.5333333333333333,0.6666666666666667,1,26 -binder,0.7066666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -baseball,0.6666666666666666,1.0,0.6666666666666666,0.75,1,26 -pliers,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -thins,0.5599999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -package,0.5833333333333333,1.0,0.6,0.7,1,26 -k,0.7416666666666667,1.0,0.7166666666666666,0.8,1,26 -jelly,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.6866666666666666,0.5,0.9333333333333332,0.63,2,25 -apple,0.6333333333333333,0.75,0.6166666666666666,0.6,1,25 -bell,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -battery,0.7466666666666667,1.0,0.6,0.7166666666666666,1,26 -jar,0.6966666666666667,1.0,0.5666666666666667,0.7,1,26 -bound,0.8916666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -lettuce,0.5083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -brush,0.6433333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -scissors,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -lime,0.6466666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -toothpaste,0.505,1.0,0.4666666666666666,0.6166666666666667,1,26 -top,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -spiral,0.4066666666666666,1.0,0.38333333333333336,0.55,1,26 -handles,0.7183333333333334,1.0,0.5666666666666667,0.7,1,25 -camera,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -pitcher,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.5966666666666667,1.0,0.6,0.7166666666666667,1,26 -stick,0.53,1.0,0.5666666666666667,0.6833333333333333,1,25 -cereal,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -bulb,0.8833333333333332,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.6,1.0,0.5166666666666666,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7499999999999999,1.0,0.7499999999999999,0.8166666666666667,1,26 -can,0.9066666666666666,1.0,0.8666666666666666,0.9199999999999999,2,25 -coca,0.6249999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -crackers,0.73,1.0,0.6499999999999999,0.75,1,26 -plate,0.74,1.0,0.6,0.7166666666666666,1,25 -calculator,0.5266666666666666,0.55,0.7499999999999999,0.58,1,26 -tissues,0.755,1.0,0.6333333333333333,0.75,1,26 -juice,0.5916666666666667,1.0,0.5833333333333333,0.7,1,26 -pink,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333333,1,25 -lemon,0.8916666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -peach,0.7183333333333333,1.0,0.5833333333333333,0.7,1,26 -bowl,0.7383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5483333333333333,1.0,0.41666666666666663,0.5833333333333333,1,26 -blue,0.6383333333333334,1.0,0.5166666666666666,0.65,1,25 -used,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -ball,0.605,1.0,0.5166666666666666,0.65,1,25 -notebook,0.635,1.0,0.5333333333333332,0.6666666666666666,1,26 -garlic,0.7,1.0,0.6333333333333332,0.7333333333333333,1,26 -cleaning,0.8416666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -pair,0.8383333333333333,1.0,0.8,0.8800000000000001,2,26 -container,0.7716666666666667,1.0,0.7,0.7833333333333333,1,25 -tomato,0.5883333333333334,0.65,0.7499999999999999,0.6066666666666667,1,26 -cellphone,0.5366666666666666,1.0,0.4166666666666667,0.5833333333333333,1,26 -potato,0.65,1.0,0.5666666666666667,0.6833333333333333,1,25 -light,0.9333333333333332,1.0,0.9333333333333332,0.96,2,25 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,24 -bottle,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6495833333333335 -F1-Score: 0.6842724867724869 -Precision: 0.8976851851851853 -Recall: 0.6097222222222222 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5166666666666666,1.0,0.4333333333333333,0.5833333333333333,1,25 -yellow,0.8733333333333334,0.6666666666666666,1.0,0.78,6,24 -looks,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,24 -keyboard,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -glue,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.5716666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -flashlight,0.5666666666666667,1.0,0.5833333333333333,0.7,1,26 -cup,0.4833333333333333,0.5,0.7666666666666666,0.58,1,26 -folded,0.5266666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -jam,0.4916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.8283333333333334,0.6083333333333333,1.0,0.7457142857142858,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.755,1.0,0.6833333333333333,0.7833333333333333,1,26 -soccer,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -hat,0.4833333333333333,1.0,0.5333333333333332,0.65,1,26 -brown,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,25 -coffee,0.8833333333333332,1.0,0.8666666666666666,0.9,1,26 -handle,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -food,0.735,1.0,0.7166666666666666,0.8,1,24 -towel,0.7583333333333333,1.0,0.65,0.75,1,26 -chips,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -stapler,0.655,1.0,0.5999999999999999,0.7166666666666667,1,26 -onion,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -bag,0.6950000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -sponge,0.5216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.655,1.0,0.5666666666666667,0.6833333333333333,1,25 -special,0.735,1.0,0.5999999999999999,0.7166666666666667,1,26 -colgate,0.5816666666666667,1.0,0.4999999999999999,0.65,1,26 -leaf,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.29333333333333333,0.6,0.5166666666666666,0.5033333333333333,1,26 -mug,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -yogurt,0.655,1.0,0.65,0.75,1,26 -plantain,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -red,0.8766666666666667,0.7916666666666666,1.0,0.8771428571428572,3,26 -pepper,0.6383333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -wheat,0.6966666666666665,1.0,0.6833333333333333,0.7666666666666667,1,26 -kleenex,0.45499999999999996,1.0,0.45,0.6,1,26 -toothbrush,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -binder,0.4833333333333333,1.0,0.5,0.6333333333333333,1,26 -baseball,0.61,1.0,0.5666666666666667,0.6833333333333333,1,26 -pliers,0.6683333333333333,1.0,0.55,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.65,1.0,0.6499999999999999,0.75,1,26 -thins,0.835,1.0,0.7833333333333333,0.85,1,26 -package,0.7266666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -k,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -jelly,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -fruit,0.6849999999999999,0.5333333333333333,0.9666666666666666,0.6700000000000002,2,25 -apple,0.5966666666666666,0.85,0.6333333333333333,0.6333333333333334,1,25 -bell,0.6183333333333334,1.0,0.5333333333333333,0.6666666666666666,1,26 -battery,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -jar,0.6649999999999999,1.0,0.5166666666666666,0.6666666666666667,1,26 -bound,0.7183333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -lettuce,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -brush,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -scissors,0.5666666666666667,1.0,0.5,0.6333333333333334,1,26 -lime,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -toothpaste,0.705,1.0,0.6,0.7166666666666667,1,26 -top,0.4383333333333333,1.0,0.3666666666666667,0.5333333333333333,1,26 -spiral,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -handles,0.93,1.0,0.8833333333333332,0.9166666666666666,1,25 -camera,0.7133333333333333,1.0,0.5666666666666667,0.7,1,26 -eraser,0.5166666666666666,1.0,0.45,0.6,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -pitcher,0.8066666666666666,1.0,0.7166666666666666,0.8,1,26 -phone,0.6799999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -stick,0.6833333333333333,1.0,0.6666666666666666,0.75,1,25 -cereal,0.8516666666666666,1.0,0.7,0.8,1,26 -bulb,0.9266666666666665,1.0,0.8999999999999998,0.9400000000000001,2,27 -hair,0.7333333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -can,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coca,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -crackers,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -plate,0.8,1.0,0.7666666666666666,0.8333333333333333,1,25 -calculator,0.6966666666666667,0.9,0.5999999999999999,0.65,1,26 -tissues,0.8233333333333335,1.0,0.7166666666666666,0.8,1,26 -juice,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -pink,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -lemon,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -bowl,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5716666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -blue,0.5666666666666667,1.0,0.5499999999999999,0.6666666666666666,1,25 -used,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.5083333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -ball,0.7849999999999999,1.0,0.7166666666666666,0.8,1,25 -notebook,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -garlic,0.7499999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -cleaning,0.6799999999999999,1.0,0.55,0.6833333333333333,1,26 -pair,0.8733333333333334,1.0,0.8333333333333333,0.9,2,27 -container,0.5299999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -tomato,0.6333333333333333,0.75,0.7,0.6166666666666666,1,26 -cellphone,0.43999999999999995,0.6,0.6333333333333333,0.5466666666666666,1,26 -potato,0.7,1.0,0.6833333333333333,0.7666666666666667,1,25 -light,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8550000000000001,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6427006172839507 -F1-Score: 0.685489417989418 -Precision: 0.8962962962962963 -Recall: 0.6132716049382715 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7133333333333334,1.0,0.65,0.75,1,25 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.6166666666666667,1.0,0.6166666666666666,0.7166666666666667,1,24 -keyboard,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -glue,0.7283333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.8683333333333334,1.0,0.7833333333333333,0.85,1,26 -flashlight,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -cup,0.6,0.5,0.6833333333333333,0.5566666666666666,1,26 -folded,0.7833333333333334,1.0,0.6833333333333333,0.7833333333333334,1,26 -jam,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.8716666666666667,0.7583333333333333,1.0,0.8504761904761905,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.3883333333333333,1.0,0.4499999999999999,0.6,1,26 -soccer,0.6,1.0,0.5499999999999999,0.6666666666666666,1,26 -hat,0.525,1.0,0.5499999999999999,0.6666666666666666,1,26 -brown,0.9416666666666667,1.0,0.9333333333333332,0.96,2,24 -coffee,0.78,1.0,0.6333333333333333,0.75,1,26 -handle,0.6683333333333332,1.0,0.5833333333333333,0.7,1,25 -food,0.7183333333333334,1.0,0.6499999999999999,0.75,1,25 -towel,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -chips,0.715,1.0,0.6166666666666666,0.7333333333333334,1,26 -stapler,0.655,1.0,0.6333333333333332,0.7333333333333333,1,26 -onion,0.48,1.0,0.4999999999999999,0.6333333333333333,1,26 -bag,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.5066666666666666,1.0,0.5166666666666666,0.65,1,25 -special,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -colgate,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -leaf,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -tube,0.7933333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -cell,0.4333333333333333,0.65,0.4666666666666666,0.51,1,26 -mug,0.68,1.0,0.65,0.75,1,26 -yogurt,0.6516666666666666,1.0,0.55,0.6833333333333333,1,26 -plantain,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.5216666666666666,1.0,0.38333333333333336,0.55,1,26 -wheat,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -kleenex,0.5599999999999999,1.0,0.45,0.6166666666666667,1,26 -toothbrush,0.5633333333333334,1.0,0.4333333333333334,0.6,1,26 -binder,0.755,1.0,0.7,0.7833333333333333,1,26 -baseball,0.76,1.0,0.65,0.75,1,26 -pliers,0.6016666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7966666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -thins,0.71,1.0,0.6499999999999999,0.75,1,26 -package,0.7249999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.5666666666666667,1.0,0.5999999999999999,0.7,1,26 -jelly,0.5599999999999999,1.0,0.5,0.6333333333333333,1,26 -fruit,0.9166666666666666,0.95,0.9333333333333332,0.9266666666666667,2,26 -apple,0.7333333333333333,1.0,0.7,0.7833333333333333,1,25 -bell,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.5916666666666666,1.0,0.5166666666666666,0.65,1,26 -jar,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -bound,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.7316666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -brush,0.6683333333333332,1.0,0.55,0.6833333333333333,1,26 -scissors,0.4083333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -lime,0.575,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -top,0.6666666666666667,1.0,0.75,0.8166666666666667,1,26 -spiral,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -handles,0.835,1.0,0.7333333333333333,0.8166666666666668,1,25 -camera,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -eraser,0.5783333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.9100000000000001,0.7833333333333333,1.0,0.86,5,21 -banana,0.6483333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -pitcher,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -phone,0.8083333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -stick,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -cereal,0.7166666666666666,1.0,0.6499999999999999,0.75,1,26 -bulb,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,26 -hair,0.5333333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7,1.0,0.5833333333333333,0.7,1,26 -can,0.8916666666666666,1.0,0.8666666666666666,0.9199999999999999,2,24 -coca,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -crackers,0.6266666666666667,1.0,0.4999999999999999,0.65,1,26 -plate,0.5633333333333332,1.0,0.4,0.5666666666666667,1,25 -calculator,0.61,1.0,0.5666666666666667,0.6833333333333333,1,26 -tissues,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.11000000000000001,0.5,0.38333333333333336,0.43000000000000005,1,26 -pink,0.8550000000000001,1.0,0.7833333333333333,0.85,1,25 -lemon,0.5433333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -peach,0.6883333333333334,1.0,0.65,0.75,1,26 -bowl,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -blue,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -used,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.4883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -notebook,0.6666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -garlic,0.7366666666666666,1.0,0.55,0.6833333333333333,1,26 -cleaning,0.605,1.0,0.5833333333333333,0.7,1,26 -pair,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.5549999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -tomato,0.6633333333333333,0.95,0.6333333333333333,0.7,1,26 -cellphone,0.4633333333333334,0.65,0.5833333333333333,0.5466666666666666,1,26 -potato,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -light,0.8483333333333334,1.0,0.8,0.8800000000000001,2,27 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,27 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6364660493827159 -F1-Score: 0.6816402116402115 -Precision: 0.9040895061728395 -Recall: 0.5967592592592593 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,24 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.5983333333333334,1.0,0.4833333333333333,0.6333333333333334,1,24 -keyboard,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.6216666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.7266666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -flashlight,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -cup,0.34500000000000003,0.6,0.4333333333333334,0.48,1,26 -folded,0.7816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -jam,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.865,0.75,1.0,0.8447619047619048,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.8400000000000001,1.0,0.7833333333333333,0.85,1,26 -soccer,0.6816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -hat,0.7866666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -brown,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -coffee,0.7083333333333333,1.0,0.65,0.75,1,25 -handle,0.6933333333333334,1.0,0.6,0.7166666666666667,1,25 -food,0.6966666666666665,1.0,0.6666666666666666,0.7666666666666667,1,25 -towel,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -chips,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -stapler,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -onion,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -bag,0.8466666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -sponge,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6833333333333333,1.0,0.7,0.7833333333333333,1,25 -special,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -colgate,0.7916666666666666,1.0,0.7166666666666666,0.8,1,26 -leaf,0.525,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.5316666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -cell,0.5666666666666667,0.6,0.6166666666666666,0.55,1,26 -mug,0.85,1.0,0.7833333333333333,0.85,1,25 -yogurt,0.655,1.0,0.5833333333333333,0.7,1,26 -plantain,0.7983333333333333,1.0,0.6333333333333333,0.75,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.6799999999999999,1.0,0.5333333333333333,0.6833333333333333,1,26 -wheat,0.6666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -kleenex,0.4833333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -toothbrush,0.8716666666666665,1.0,0.7833333333333333,0.85,1,26 -binder,0.7183333333333334,1.0,0.6,0.7166666666666667,1,26 -baseball,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -pliers,0.5666666666666667,1.0,0.6333333333333332,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -thins,0.8533333333333335,1.0,0.7,0.8,1,26 -package,0.6966666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -k,0.5333333333333333,1.0,0.5999999999999999,0.7,1,26 -jelly,0.7166666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -fruit,0.8550000000000001,0.8333333333333333,0.9,0.8333333333333333,2,25 -apple,0.705,1.0,0.5999999999999999,0.7166666666666667,1,25 -bell,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -battery,0.78,1.0,0.6333333333333333,0.75,1,26 -jar,0.6633333333333333,1.0,0.65,0.75,1,26 -bound,0.5333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -lettuce,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -brush,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -scissors,0.7233333333333334,1.0,0.55,0.6833333333333333,1,26 -lime,0.7383333333333333,1.0,0.65,0.75,1,25 -toothpaste,0.5483333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -top,0.8183333333333334,1.0,0.65,0.7666666666666667,1,26 -spiral,0.6133333333333333,1.0,0.4999999999999999,0.65,1,26 -handles,0.6016666666666667,1.0,0.55,0.6833333333333333,1,25 -camera,0.36666666666666664,1.0,0.5333333333333332,0.65,1,26 -eraser,0.6666666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.715,1.0,0.6666666666666666,0.7666666666666667,1,26 -phone,0.5916666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -stick,0.4916666666666666,1.0,0.4999999999999999,0.6333333333333333,1,25 -cereal,0.6499999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -bulb,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.675,1.0,0.6833333333333333,0.7666666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5833333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -can,0.8466666666666667,1.0,0.8333333333333333,0.9,2,24 -coca,0.8099999999999999,1.0,0.65,0.7666666666666666,1,26 -crackers,0.8233333333333335,1.0,0.65,0.7666666666666667,1,26 -plate,0.705,1.0,0.65,0.75,1,25 -calculator,0.6399999999999999,1.0,0.45,0.6166666666666667,1,26 -tissues,0.505,1.0,0.5166666666666666,0.65,1,26 -juice,0.21000000000000002,0.5,0.5666666666666667,0.5000000000000001,1,26 -pink,0.6849999999999999,1.0,0.5833333333333333,0.7,1,25 -lemon,0.4666666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -peach,0.4216666666666667,0.6,0.5833333333333333,0.53,1,26 -bowl,0.5016666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7816666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -blue,0.6083333333333333,1.0,0.55,0.6833333333333333,1,25 -used,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -ball,0.5216666666666667,1.0,0.4999999999999999,0.6333333333333333,1,25 -notebook,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -garlic,0.8,1.0,0.6833333333333333,0.7833333333333333,1,26 -cleaning,0.61,1.0,0.4833333333333333,0.6333333333333333,1,26 -pair,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -container,0.5383333333333333,1.0,0.5166666666666666,0.65,1,25 -tomato,0.7966666666666666,1.0,0.75,0.8166666666666667,1,26 -cellphone,0.43499999999999994,0.75,0.4666666666666666,0.53,1,26 -potato,0.7,1.0,0.6833333333333333,0.7666666666666667,1,25 -light,0.9333333333333332,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,25 -bottle,0.8766666666666666,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6506635802469135 -F1-Score: 0.6905379188712523 -Precision: 0.9040123456790122 -Recall: 0.60679012345679 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6716666666666666,1.0,0.65,0.75,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.5599999999999999,0.85,0.6166666666666666,0.6166666666666667,1,24 -keyboard,0.475,1.0,0.5,0.6333333333333333,1,26 -glue,0.6583333333333333,1.0,0.4833333333333334,0.6333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7749999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -flashlight,0.5549999999999999,1.0,0.5833333333333333,0.7,1,26 -cup,0.45833333333333337,0.5,0.6166666666666666,0.53,1,26 -folded,0.475,1.0,0.5166666666666666,0.65,1,26 -jam,0.5916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -black,0.9800000000000001,0.95,1.0,0.9666666666666666,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -soccer,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -hat,0.9099999999999999,1.0,0.8333333333333333,0.8833333333333332,1,26 -brown,0.9216666666666666,1.0,0.9,0.9400000000000001,2,24 -coffee,0.6216666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -handle,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,25 -food,0.4583333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -towel,0.6266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -stapler,0.5633333333333332,1.0,0.5,0.6333333333333333,1,26 -onion,0.6766666666666666,1.0,0.6499999999999999,0.75,1,26 -bag,0.6383333333333334,1.0,0.6,0.7166666666666667,1,26 -sponge,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.5883333333333333,1.0,0.4499999999999999,0.6166666666666666,1,25 -special,0.6966666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -colgate,0.4966666666666666,1.0,0.4499999999999999,0.6,1,26 -leaf,0.8266666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -tube,0.7683333333333333,1.0,0.6,0.7333333333333334,1,26 -cell,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -mug,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -yogurt,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -plantain,0.8166666666666667,1.0,0.7166666666666666,0.8,1,26 -red,0.93,0.8166666666666667,1.0,0.8800000000000001,3,26 -pepper,0.5399999999999999,1.0,0.5166666666666666,0.65,1,26 -wheat,0.75,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.7133333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -toothbrush,0.8350000000000002,1.0,0.7,0.8,1,26 -binder,0.7166666666666666,1.0,0.6499999999999999,0.75,1,26 -baseball,0.76,1.0,0.5833333333333333,0.7166666666666667,1,26 -pliers,0.6950000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.5516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -thins,0.8133333333333332,1.0,0.7833333333333333,0.85,1,26 -package,0.9,1.0,0.8333333333333333,0.8833333333333332,1,26 -k,0.7683333333333333,1.0,0.6499999999999999,0.75,1,26 -jelly,0.4333333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -fruit,0.7766666666666666,0.7333333333333334,0.8666666666666666,0.7666666666666666,2,26 -apple,0.3416666666666667,1.0,0.4833333333333334,0.6166666666666666,1,25 -bell,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -battery,0.7666666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -jar,0.4583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -bound,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -lettuce,0.6049999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -brush,0.5416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -scissors,0.6683333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -lime,0.7666666666666666,1.0,0.6833333333333333,0.7833333333333333,1,25 -toothpaste,0.5133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -top,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.5166666666666666,1.0,0.4499999999999999,0.6,1,26 -handles,0.6499999999999999,1.0,0.5833333333333333,0.7,1,25 -camera,0.7083333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -eraser,0.5666666666666667,1.0,0.5333333333333333,0.65,1,26 -creamer,0,0,0,0,1,26 -white,0.9083333333333334,0.7916666666666666,1.0,0.8657142857142857,5,21 -banana,0.6133333333333333,1.0,0.4999999999999999,0.65,1,26 -pitcher,0.63,1.0,0.5833333333333333,0.7,1,26 -phone,0.4916666666666666,1.0,0.45,0.6,1,26 -stick,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -cereal,0.61,1.0,0.5166666666666666,0.65,1,26 -bulb,0.86,1.0,0.8333333333333334,0.9000000000000001,2,26 -hair,0.4749999999999999,1.0,0.4166666666666667,0.5666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -can,0.9550000000000001,1.0,0.9333333333333332,0.96,2,24 -coca,0.5833333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -crackers,0.63,1.0,0.5333333333333332,0.6666666666666666,1,26 -plate,0.6633333333333333,1.0,0.6,0.7166666666666667,1,25 -calculator,0.45,0.5,0.65,0.5366666666666667,1,26 -tissues,0.3466666666666667,1.0,0.4333333333333333,0.5833333333333333,1,26 -juice,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.7083333333333333,1.0,0.6499999999999999,0.75,1,25 -lemon,0.5166666666666666,1.0,0.5999999999999999,0.7,1,26 -peach,0.8883333333333333,1.0,0.8333333333333333,0.8833333333333332,1,26 -bowl,0.7,1.0,0.65,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6433333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -blue,0.705,1.0,0.5999999999999999,0.7166666666666667,1,25 -used,0.6633333333333333,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.4416666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -ball,0.775,1.0,0.6333333333333333,0.75,1,25 -notebook,0.6216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.5583333333333333,1.0,0.4833333333333334,0.6166666666666666,1,26 -cleaning,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -pair,0.925,1.0,0.9,0.9400000000000001,2,26 -container,0.775,1.0,0.7166666666666666,0.8,1,25 -tomato,0.5783333333333333,0.7,0.6166666666666666,0.5900000000000001,1,26 -cellphone,0.655,1.0,0.6499999999999999,0.75,1,26 -potato,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -light,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -green,0.9666666666666668,0.9,1.0,0.9333333333333332,3,23 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,25 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6343672839506171 -F1-Score: 0.6842195767195767 -Precision: 0.9050154320987654 -Recall: 0.6030864197530863 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5633333333333332,1.0,0.45,0.6,1,25 -yellow,0.8933333333333333,0.7,1.0,0.8,6,25 -looks,0.5366666666666667,0.55,0.5999999999999999,0.53,1,24 -keyboard,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.5216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.675,1.0,0.65,0.75,1,26 -flashlight,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -cup,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -folded,0.46333333333333326,1.0,0.4499999999999999,0.6,1,26 -jam,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.8533333333333333,0.6916666666666667,1.0,0.8057142857142857,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.535,1.0,0.4833333333333333,0.6333333333333333,1,26 -soccer,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -hat,0.6916666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -brown,0.8466666666666667,1.0,0.8,0.8800000000000001,2,25 -coffee,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -handle,0.655,1.0,0.6499999999999999,0.75,1,25 -food,0.4766666666666667,1.0,0.45,0.6,1,26 -towel,0.7733333333333333,1.0,0.6333333333333333,0.75,1,26 -chips,0.7666666666666666,1.0,0.75,0.8166666666666667,1,26 -stapler,0.7216666666666667,1.0,0.6,0.7166666666666667,1,26 -onion,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -bag,0.75,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.4966666666666667,1.0,0.5,0.6333333333333333,1,25 -special,0.6766666666666665,1.0,0.5499999999999999,0.6833333333333333,1,26 -colgate,0.5933333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -leaf,0.5416666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -tube,0.7266666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -cell,0.7916666666666666,1.0,0.7166666666666666,0.8,1,26 -mug,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -yogurt,0.6933333333333332,1.0,0.5833333333333333,0.7,1,26 -plantain,0.5966666666666667,0.95,0.5666666666666667,0.65,1,26 -red,0.8,0.6666666666666666,1.0,0.7961904761904761,3,25 -pepper,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -wheat,0.7083333333333333,1.0,0.65,0.75,1,26 -kleenex,0.6933333333333334,1.0,0.6,0.7166666666666667,1,26 -toothbrush,0.7216666666666666,1.0,0.7,0.7833333333333333,1,26 -binder,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.7916666666666666,1.0,0.75,0.8166666666666668,1,26 -pliers,0.5633333333333332,1.0,0.4833333333333332,0.6166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -thins,0.6516666666666666,1.0,0.5166666666666666,0.65,1,26 -package,0.4733333333333333,0.9,0.4999999999999999,0.5833333333333333,1,26 -k,0.5216666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -jelly,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -fruit,0.7066666666666667,0.5666666666666667,0.9333333333333332,0.6733333333333333,2,26 -apple,0.675,0.85,0.5666666666666667,0.6333333333333333,1,25 -bell,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -battery,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -jar,0.6416666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -bound,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.7383333333333333,1.0,0.65,0.75,1,26 -brush,0.7216666666666666,1.0,0.6499999999999999,0.75,1,26 -scissors,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -lime,0.805,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.5266666666666666,1.0,0.5,0.6333333333333333,1,26 -top,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -spiral,0.7816666666666666,1.0,0.5833333333333333,0.7166666666666667,1,26 -handles,0.4416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,25 -camera,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -eraser,0.7300000000000001,1.0,0.6666666666666666,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6799999999999999,1.0,0.4999999999999999,0.65,1,26 -pitcher,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -phone,0.5516666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -stick,0.5916666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -cereal,0.705,1.0,0.7,0.7833333333333333,1,26 -bulb,0.95,1.0,0.9333333333333332,0.96,2,27 -hair,0.67,1.0,0.5999999999999999,0.7166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7066666666666668,1.0,0.6166666666666666,0.7333333333333333,1,26 -can,0.9266666666666667,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -crackers,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.64,1.0,0.5499999999999999,0.6833333333333333,1,24 -calculator,0.6066666666666667,0.65,0.7166666666666666,0.6066666666666667,1,26 -tissues,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -juice,0.705,1.0,0.7,0.7833333333333333,1,26 -pink,0.7116666666666667,1.0,0.5666666666666667,0.7,1,25 -lemon,0.6083333333333334,1.0,0.5499999999999999,0.6666666666666667,1,26 -peach,0.575,1.0,0.6833333333333333,0.7666666666666666,1,26 -bowl,0.7666666666666666,1.0,0.6499999999999999,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8216666666666665,1.0,0.7333333333333333,0.8166666666666668,1,26 -blue,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -used,0.8216666666666667,1.0,0.7166666666666666,0.8,1,24 -energizer,0,0,0,0,1,26 -pear,0.8083333333333332,1.0,0.7833333333333333,0.85,1,26 -ball,0.5183333333333333,1.0,0.4,0.5666666666666667,1,25 -notebook,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -garlic,0.58,1.0,0.4999999999999999,0.6333333333333333,1,26 -cleaning,0.6416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -container,0.7166666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -tomato,0.4916666666666667,0.55,0.6666666666666666,0.5566666666666666,1,26 -cellphone,0.7833333333333333,1.0,0.6333333333333333,0.75,1,26 -potato,0.7833333333333332,1.0,0.7166666666666666,0.8,1,25 -light,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,0.8833333333333334,0.7,1.0,0.8066666666666666,3,23 -bottle,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6419598765432099 -F1-Score: 0.6796164021164022 -Precision: 0.8960648148148147 -Recall: 0.6044753086419753 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7849999999999999,1.0,0.7166666666666666,0.8,1,24 -yellow,0.9333333333333333,0.8,1.0,0.8666666666666666,6,24 -looks,0.5833333333333333,0.9,0.5833333333333333,0.6333333333333333,1,24 -keyboard,0.6666666666666666,1.0,0.7333333333333333,0.8,1,26 -glue,0.69,1.0,0.5166666666666666,0.6666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6583333333333333,1.0,0.6499999999999999,0.75,1,26 -flashlight,0.5083333333333333,1.0,0.5166666666666666,0.65,1,26 -cup,0.4133333333333333,0.5,0.6,0.52,1,26 -folded,0.6066666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -jam,0.61,1.0,0.4666666666666666,0.6166666666666667,1,26 -black,0.8800000000000001,0.7416666666666666,1.0,0.8323809523809522,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.3466666666666667,1.0,0.4166666666666667,0.5666666666666667,1,26 -soccer,0.6133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -hat,0.6,1.0,0.5833333333333333,0.7,1,26 -brown,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -coffee,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,25 -handle,0.7833333333333333,1.0,0.75,0.8166666666666667,1,26 -food,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,24 -towel,0.655,1.0,0.5333333333333333,0.6666666666666667,1,26 -chips,0.75,1.0,0.7,0.7833333333333333,1,26 -stapler,0.6466666666666667,1.0,0.4999999999999999,0.65,1,26 -onion,0.7416666666666666,1.0,0.75,0.8166666666666667,1,26 -bag,0.6483333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -sponge,0.45499999999999996,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,25 -special,0.53,1.0,0.5333333333333333,0.6666666666666667,1,26 -colgate,0.6833333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -leaf,0.6666666666666666,1.0,0.6499999999999999,0.75,1,26 -tube,0.5999999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.6383333333333333,0.5,0.75,0.5833333333333334,1,26 -mug,0.705,1.0,0.55,0.6833333333333333,1,25 -yogurt,0.6416666666666667,1.0,0.55,0.6833333333333333,1,26 -plantain,0.4083333333333333,1.0,0.4,0.5666666666666667,1,26 -red,0.9800000000000001,0.95,1.0,0.9666666666666666,3,25 -pepper,0.65,1.0,0.5333333333333333,0.6666666666666667,1,26 -wheat,0.835,1.0,0.6833333333333333,0.7833333333333334,1,26 -kleenex,0.7533333333333333,1.0,0.5333333333333333,0.6833333333333333,1,26 -toothbrush,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.6666666666666666,1.0,0.6,0.7166666666666667,1,26 -pliers,0.78,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,24 -water,0.7166666666666667,1.0,0.65,0.75,1,26 -thins,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -package,0.6249999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -k,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -jelly,0.6433333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -fruit,0.7550000000000001,0.65,0.8999999999999998,0.7266666666666667,2,25 -apple,0.5466666666666666,0.75,0.5833333333333333,0.5666666666666667,1,25 -bell,0.5216666666666667,1.0,0.4499999999999999,0.6166666666666667,1,26 -battery,0.6583333333333333,1.0,0.6,0.7166666666666666,1,26 -jar,0.4683333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -bound,0.6933333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -lettuce,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -brush,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -lime,0.7150000000000001,1.0,0.6166666666666666,0.7333333333333333,1,25 -toothpaste,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -top,0.7716666666666667,1.0,0.65,0.75,1,26 -spiral,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -handles,0.8033333333333333,1.0,0.6333333333333333,0.75,1,25 -camera,0.9466666666666667,1.0,0.9,0.9333333333333332,1,26 -eraser,0.7966666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -pitcher,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -phone,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -stick,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666666,1,25 -cereal,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -bulb,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.6749999999999999,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5166666666666667,1.0,0.4333333333333333,0.6,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,24 -coca,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -crackers,0.745,1.0,0.6166666666666666,0.7333333333333333,1,26 -plate,0.6083333333333333,1.0,0.5166666666666666,0.65,1,25 -calculator,0.6666666666666667,0.8,0.7,0.65,1,26 -tissues,0.725,1.0,0.6833333333333332,0.7666666666666666,1,26 -juice,0.5833333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -pink,0.4766666666666667,1.0,0.4999999999999999,0.6333333333333333,1,25 -lemon,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -peach,0.705,1.0,0.6499999999999999,0.75,1,26 -bowl,0.4800000000000001,1.0,0.5,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7366666666666666,1.0,0.5666666666666667,0.7,1,26 -blue,0.8149999999999998,1.0,0.65,0.7666666666666667,1,25 -used,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333334,1,23 -energizer,0,0,0,0,1,26 -pear,0.73,1.0,0.7499999999999999,0.8166666666666667,1,26 -ball,0.705,1.0,0.5999999999999999,0.7166666666666667,1,25 -notebook,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -garlic,0.7,1.0,0.5999999999999999,0.7166666666666667,1,26 -cleaning,0.7583333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -pair,0.9266666666666667,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.655,1.0,0.6333333333333333,0.7333333333333333,1,25 -tomato,0.6933333333333334,0.75,0.6666666666666666,0.65,1,26 -cellphone,0.3633333333333334,0.55,0.5166666666666666,0.49333333333333335,1,26 -potato,0.6466666666666667,1.0,0.5166666666666666,0.65,1,25 -light,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8866666666666667,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.6452777777777776 -F1-Score: 0.6831393298059966 -Precision: 0.897145061728395 -Recall: 0.6050925925925924 diff --git a/Validation/UW_raw_75_object_0.45.csv b/Validation/UW_raw_75_object_0.45.csv deleted file mode 100644 index b6e380f..0000000 --- a/Validation/UW_raw_75_object_0.45.csv +++ /dev/null @@ -1,2875 +0,0 @@ -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.7,0.95,0.6499999999999999,0.7166666666666666,1,24 -keyboard,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -glue,0.5966666666666667,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.4583333333333333,1.0,0.4166666666666667,0.5666666666666667,1,26 -flashlight,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -cup,0.14166666666666666,0.5,0.5499999999999999,0.49000000000000005,1,26 -folded,0.7516666666666667,1.0,0.6333333333333333,0.75,1,26 -jam,0.6566666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -black,0.8516666666666668,0.725,1.0,0.8304761904761906,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.58,1.0,0.4666666666666666,0.6166666666666667,1,26 -soccer,0.7083333333333334,1.0,0.6833333333333333,0.7666666666666666,1,26 -hat,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -brown,0.8483333333333334,1.0,0.8,0.8800000000000001,2,24 -coffee,0.7716666666666667,1.0,0.7166666666666666,0.8,1,25 -handle,0.5,1.0,0.4833333333333333,0.6333333333333333,1,25 -food,0.45,1.0,0.5499999999999999,0.6666666666666666,1,25 -towel,0.8666666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -chips,0.61,1.0,0.6333333333333333,0.7333333333333333,1,26 -stapler,0.42666666666666664,1.0,0.4333333333333333,0.5833333333333333,1,26 -onion,0.4633333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -bag,0.715,1.0,0.5666666666666667,0.7,1,26 -sponge,0.5416666666666666,1.0,0.4833333333333333,0.6166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7216666666666666,1.0,0.7166666666666666,0.8,1,25 -special,0.6166666666666667,1.0,0.6166666666666666,0.7166666666666667,1,26 -colgate,0.6016666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -leaf,0.7433333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -tube,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -cell,0.46333333333333326,0.6,0.6,0.5399999999999999,1,26 -mug,0.5966666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -yogurt,0.4766666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -plantain,0.71,1.0,0.5999999999999999,0.7166666666666666,1,26 -red,0.93,0.8,1.0,0.8666666666666666,3,24 -pepper,0.715,1.0,0.5666666666666667,0.7,1,26 -wheat,0.7183333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -kleenex,0.6383333333333333,1.0,0.6,0.7166666666666667,1,26 -toothbrush,0.5916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -binder,0.5666666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -baseball,0.7083333333333333,1.0,0.65,0.75,1,26 -pliers,0.6966666666666665,1.0,0.65,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -thins,0.73,1.0,0.7,0.7833333333333333,1,26 -package,0.7333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -k,0.7833333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -jelly,0.775,1.0,0.7333333333333333,0.8166666666666667,1,26 -fruit,0.8550000000000001,0.95,0.8333333333333333,0.8666666666666668,2,26 -apple,0.6466666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -bell,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -battery,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -jar,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -bound,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -lettuce,0.7,1.0,0.5833333333333333,0.7,1,26 -brush,0.51,1.0,0.5166666666666666,0.65,1,26 -scissors,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -lime,0.635,1.0,0.4833333333333334,0.6333333333333333,1,25 -toothpaste,0.5716666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -top,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.725,1.0,0.65,0.75,1,26 -handles,0.5633333333333332,1.0,0.4833333333333334,0.6333333333333333,1,25 -camera,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -eraser,0.805,1.0,0.7333333333333333,0.8166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.45,1.0,0.38333333333333336,0.55,1,26 -pitcher,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -phone,0.6083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -stick,0.7183333333333334,1.0,0.6499999999999999,0.75,1,25 -cereal,0.6583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.8933333333333333,1.0,0.8666666666666668,0.9200000000000002,2,26 -hair,0.705,1.0,0.6,0.7166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8683333333333334,1.0,0.7833333333333333,0.85,1,26 -can,0.8566666666666667,1.0,0.8,0.8800000000000001,2,25 -coca,0.775,1.0,0.7166666666666666,0.8,1,26 -crackers,0.6683333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -plate,0.9216666666666666,1.0,0.85,0.9,1,25 -calculator,0.7833333333333334,0.9,0.7666666666666666,0.7666666666666666,1,26 -tissues,0.6266666666666667,1.0,0.55,0.6833333333333333,1,26 -juice,0.755,1.0,0.6166666666666666,0.7333333333333333,1,26 -pink,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -lemon,0.6766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -peach,0.7499999999999999,1.0,0.7499999999999999,0.8166666666666667,1,26 -bowl,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.525,1.0,0.5166666666666666,0.65,1,26 -blue,0.5683333333333332,1.0,0.4666666666666666,0.6166666666666667,1,25 -used,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6583333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.705,1.0,0.6166666666666666,0.7333333333333334,1,25 -notebook,0.7266666666666666,1.0,0.6499999999999999,0.75,1,26 -garlic,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -cleaning,0.7066666666666667,1.0,0.6,0.7166666666666667,1,26 -pair,0.8083333333333333,1.0,0.8,0.8800000000000001,2,26 -container,0.755,1.0,0.6833333333333333,0.7833333333333333,1,25 -tomato,0.6666666666666666,0.85,0.7,0.6833333333333333,1,26 -cellphone,0.36,0.55,0.4833333333333333,0.4866666666666667,1,26 -potato,0.725,1.0,0.6,0.7166666666666667,1,25 -light,0.95,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,25 -bottle,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6396913580246912 -F1-Score: 0.683615520282187 -Precision: 0.9053240740740741 -Recall: 0.5996913580246912 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.73,1.0,0.7166666666666666,0.8,1,25 -yellow,0.8816666666666668,0.7583333333333333,1.0,0.8457142857142858,6,22 -looks,0.6283333333333332,0.6,0.75,0.59,1,24 -keyboard,0.6049999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.5133333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -flashlight,0.7666666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.23833333333333334,0.5,0.4666666666666666,0.4666666666666667,1,26 -folded,0.5333333333333333,1.0,0.45,0.6,1,26 -jam,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -black,1.0,1.0,1.0,1.0,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.705,1.0,0.6499999999999999,0.75,1,26 -soccer,0.6083333333333333,1.0,0.65,0.75,1,26 -hat,0.6833333333333333,1.0,0.7333333333333333,0.8,1,26 -brown,0.8616666666666667,1.0,0.8,0.8800000000000001,2,25 -coffee,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -handle,0.8233333333333335,1.0,0.7166666666666666,0.8,1,26 -food,0.535,1.0,0.4666666666666666,0.6166666666666667,1,24 -towel,0.7433333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -chips,0.6933333333333332,1.0,0.7,0.7833333333333333,1,26 -stapler,0.7100000000000001,1.0,0.6,0.7166666666666667,1,26 -onion,0.6183333333333333,1.0,0.4833333333333334,0.6333333333333333,1,26 -bag,0.7499999999999999,1.0,0.7333333333333333,0.8,1,26 -sponge,0.8166666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6166666666666666,1.0,0.5499999999999999,0.6666666666666666,1,25 -special,0.45499999999999996,1.0,0.4499999999999999,0.6,1,26 -colgate,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -leaf,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.8099999999999999,1.0,0.7333333333333333,0.8166666666666668,1,26 -cell,0.4833333333333333,1.0,0.5999999999999999,0.7,1,26 -mug,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -yogurt,0.705,1.0,0.5999999999999999,0.7166666666666667,1,26 -plantain,0.7133333333333333,0.95,0.6,0.6833333333333333,1,26 -red,0.8550000000000001,0.7083333333333333,1.0,0.8190476190476191,3,25 -pepper,0.6133333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -wheat,0.22999999999999998,1.0,0.36666666666666664,0.5333333333333333,1,26 -kleenex,0.7833333333333333,1.0,0.7999999999999999,0.85,1,26 -toothbrush,0.66,1.0,0.5833333333333333,0.7,1,26 -binder,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -baseball,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -pliers,0.6366666666666667,1.0,0.4666666666666666,0.6333333333333334,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.635,1.0,0.55,0.6833333333333333,1,26 -thins,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -package,0.7083333333333333,1.0,0.6333333333333333,0.75,1,26 -k,0.6100000000000001,1.0,0.55,0.6833333333333333,1,26 -jelly,0.735,1.0,0.65,0.75,1,26 -fruit,0.6849999999999999,0.55,0.9333333333333332,0.6733333333333333,2,25 -apple,0.53,0.95,0.5166666666666666,0.6166666666666667,1,25 -bell,0.55,1.0,0.5833333333333333,0.7,1,26 -battery,0.7933333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -jar,0.6466666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -bound,0.79,1.0,0.6333333333333333,0.75,1,26 -lettuce,0.585,1.0,0.5166666666666666,0.65,1,26 -brush,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -scissors,0.56,1.0,0.5833333333333333,0.7,1,26 -lime,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -toothpaste,0.76,1.0,0.6333333333333333,0.75,1,26 -top,0.7083333333333333,1.0,0.6,0.7166666666666667,1,26 -spiral,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666667,1,26 -handles,0.6733333333333333,1.0,0.5999999999999999,0.7166666666666667,1,25 -camera,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -eraser,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7166666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -pitcher,0.6616666666666666,1.0,0.4999999999999999,0.65,1,26 -phone,0.78,1.0,0.75,0.8166666666666667,1,26 -stick,0.5549999999999999,1.0,0.4833333333333333,0.6333333333333333,1,25 -cereal,0.7516666666666667,1.0,0.6499999999999999,0.75,1,26 -bulb,0.8916666666666666,1.0,0.8666666666666668,0.9200000000000002,2,26 -hair,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333334,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6583333333333333,1.0,0.6499999999999999,0.75,1,26 -can,0.8816666666666666,1.0,0.8333333333333333,0.9,2,24 -coca,0.8166666666666667,1.0,0.7833333333333333,0.85,1,26 -crackers,0.7466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.6216666666666667,1.0,0.6,0.7166666666666667,1,25 -calculator,0.635,1.0,0.5333333333333333,0.6666666666666667,1,26 -tissues,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -juice,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -pink,0.7133333333333334,1.0,0.6166666666666666,0.7333333333333333,1,25 -lemon,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -peach,0.43,1.0,0.4,0.5666666666666667,1,26 -bowl,0.8966666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8550000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -blue,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,25 -used,0.6,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.8133333333333332,1.0,0.7166666666666666,0.8,1,25 -notebook,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.6833333333333333,1.0,0.7333333333333333,0.8,1,26 -cleaning,0.5183333333333333,1.0,0.5166666666666666,0.65,1,26 -pair,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,27 -container,0.7,1.0,0.8,0.85,1,25 -tomato,0.625,0.65,0.7166666666666666,0.6,1,26 -cellphone,0.5549999999999999,1.0,0.5833333333333333,0.7,1,26 -potato,0.8400000000000001,1.0,0.7833333333333333,0.85,1,25 -light,0.96,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8766666666666666,1.0,0.8333333333333333,0.9,2,25 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6541049382716049 -F1-Score: 0.6952910052910051 -Precision: 0.9043209876543209 -Recall: 0.6179012345679011 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5333333333333333,1.0,0.55,0.6666666666666666,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.6216666666666666,0.95,0.5833333333333333,0.6666666666666667,1,24 -keyboard,0.7666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -glue,0.53,1.0,0.4166666666666667,0.5833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7350000000000001,1.0,0.5333333333333333,0.6833333333333333,1,26 -flashlight,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -cup,0.23833333333333337,0.5,0.5999999999999999,0.5066666666666667,1,26 -folded,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -jam,0.875,1.0,0.8833333333333332,0.9166666666666666,1,26 -black,0.8266666666666665,0.725,1.0,0.8323809523809524,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.73,1.0,0.7,0.7833333333333333,1,26 -soccer,0.5033333333333333,1.0,0.4,0.5666666666666667,1,26 -hat,0.6083333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -brown,0.9333333333333332,1.0,0.9333333333333332,0.96,2,25 -coffee,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -handle,0.6583333333333333,1.0,0.5666666666666667,0.7,1,25 -food,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -towel,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -chips,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -stapler,0.7166666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.41833333333333333,0.9,0.5499999999999999,0.6,1,26 -bag,0.5666666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -sponge,0.72,1.0,0.6166666666666666,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7383333333333333,1.0,0.5666666666666667,0.7,1,25 -special,0.7083333333333333,1.0,0.6,0.7166666666666667,1,26 -colgate,0.7216666666666666,1.0,0.65,0.75,1,26 -leaf,0.6216666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -tube,0.6799999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -cell,0.6216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -mug,0.5483333333333333,1.0,0.4666666666666666,0.6166666666666667,1,25 -yogurt,0.7033333333333334,1.0,0.5666666666666667,0.7,1,26 -plantain,0.6866666666666666,1.0,0.6,0.7166666666666667,1,26 -red,0.9433333333333334,0.8666666666666666,1.0,0.9133333333333333,3,26 -pepper,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -wheat,0.7433333333333333,1.0,0.5666666666666667,0.7,1,26 -kleenex,0.6166666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -toothbrush,0.6833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -binder,0.7216666666666666,1.0,0.7,0.7833333333333333,1,26 -baseball,0.725,1.0,0.6,0.7166666666666667,1,26 -pliers,0.6266666666666667,1.0,0.4833333333333334,0.6333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -thins,0.5933333333333334,1.0,0.5833333333333333,0.7,1,26 -package,0.4966666666666666,1.0,0.4833333333333332,0.6333333333333333,1,26 -k,0.69,1.0,0.5833333333333333,0.7,1,26 -jelly,0.7016666666666665,1.0,0.6499999999999999,0.75,1,26 -fruit,0.6933333333333335,0.5166666666666666,0.9333333333333332,0.6433333333333333,2,25 -apple,0.6416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,25 -bell,0.4883333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -battery,0.635,1.0,0.5333333333333333,0.6666666666666667,1,26 -jar,0.6983333333333334,1.0,0.5666666666666667,0.7,1,26 -bound,0.5633333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -lettuce,0.805,1.0,0.7166666666666666,0.8,1,26 -brush,0.4766666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -scissors,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -lime,0.5166666666666666,1.0,0.5166666666666666,0.65,1,25 -toothpaste,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -top,0.7216666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -spiral,0.5966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.7666666666666666,1.0,0.7166666666666666,0.8,1,25 -camera,0.6066666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.63,1.0,0.6,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.75,1.0,0.6833333333333333,0.7833333333333333,1,26 -pitcher,0.575,1.0,0.5333333333333333,0.6666666666666667,1,26 -phone,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -stick,0.605,1.0,0.5999999999999999,0.7166666666666666,1,25 -cereal,0.4333333333333333,1.0,0.5333333333333332,0.65,1,26 -bulb,0.9349999999999999,1.0,0.9,0.9400000000000001,2,26 -hair,0.6666666666666666,1.0,0.7,0.7833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.645,1.0,0.5,0.65,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -coca,0.5966666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -crackers,0.725,1.0,0.6,0.7166666666666667,1,26 -plate,0.7016666666666665,1.0,0.5333333333333333,0.6666666666666667,1,25 -calculator,0.3983333333333333,0.65,0.6333333333333333,0.5566666666666666,1,26 -tissues,0.8266666666666668,1.0,0.7666666666666666,0.8333333333333333,1,26 -juice,0.5733333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -pink,0.7883333333333333,1.0,0.6333333333333333,0.75,1,25 -lemon,0.7533333333333333,1.0,0.5666666666666667,0.7,1,26 -peach,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.7216666666666666,1.0,0.6,0.7166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7499999999999999,1.0,0.7333333333333333,0.8,1,26 -blue,0.6483333333333333,0.8,0.6499999999999999,0.6333333333333333,1,25 -used,0.655,1.0,0.7,0.7833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.4966666666666667,1.0,0.4499999999999999,0.6,1,26 -ball,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -garlic,0.725,1.0,0.6499999999999999,0.75,1,26 -cleaning,0.825,1.0,0.7333333333333333,0.8166666666666668,1,26 -pair,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -container,0.7833333333333333,1.0,0.6833333333333333,0.7833333333333333,1,25 -tomato,0.7249999999999999,0.6,0.75,0.6166666666666667,1,26 -cellphone,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -potato,0.8,1.0,0.75,0.8166666666666667,1,25 -light,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.85,1.0,0.8333333333333333,0.9,2,25 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6411574074074073 -F1-Score: 0.6827380952380955 -Precision: 0.901929012345679 -Recall: 0.6032407407407406 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6383333333333334,1.0,0.5499999999999999,0.6833333333333333,1,24 -yellow,0.9333333333333333,0.8166666666666667,1.0,0.8799999999999999,6,23 -looks,0.3883333333333333,1.0,0.4,0.5666666666666667,1,24 -keyboard,0.26666666666666666,1.0,0.35,0.5166666666666666,1,26 -glue,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -flashlight,0.6216666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -cup,0.45999999999999996,0.5,0.65,0.5366666666666667,1,26 -folded,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -jam,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.8800000000000001,0.75,1.0,0.8400000000000001,6,22 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -soccer,0.7466666666666666,1.0,0.7,0.7833333333333333,1,26 -hat,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,25 -coffee,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -handle,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666666,1,25 -food,0.6666666666666666,1.0,0.7,0.7833333333333333,1,24 -towel,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -chips,0.3716666666666667,1.0,0.4333333333333334,0.5833333333333333,1,26 -stapler,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -onion,0.6100000000000001,1.0,0.5833333333333333,0.7,1,26 -bag,0.6166666666666666,1.0,0.5999999999999999,0.7,1,26 -sponge,0.755,1.0,0.7,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -special,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -colgate,0.5133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -leaf,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.725,1.0,0.7,0.7833333333333333,1,26 -cell,0.6933333333333332,1.0,0.65,0.75,1,26 -mug,0.6166666666666667,1.0,0.55,0.6833333333333333,1,26 -yogurt,0.4,1.0,0.45,0.6,1,26 -plantain,0.755,1.0,0.6833333333333333,0.7833333333333333,1,26 -red,0.9833333333333334,0.9666666666666666,1.0,0.9800000000000001,3,24 -pepper,0.75,1.0,0.7333333333333333,0.8,1,26 -wheat,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -kleenex,0.5583333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -toothbrush,0.635,1.0,0.4666666666666666,0.6333333333333333,1,26 -binder,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -baseball,0.6849999999999999,1.0,0.5,0.65,1,26 -pliers,0.58,1.0,0.4999999999999999,0.6333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7016666666666667,1.0,0.6,0.7166666666666667,1,26 -thins,0.705,1.0,0.5999999999999999,0.7166666666666667,1,26 -package,0.8,1.0,0.8166666666666667,0.8666666666666666,1,26 -k,0.72,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -fruit,0.7683333333333333,0.6,0.9333333333333332,0.7066666666666667,2,25 -apple,0.6583333333333333,0.9,0.6333333333333333,0.6666666666666667,1,25 -bell,0.6133333333333333,1.0,0.5166666666666666,0.65,1,26 -battery,0.735,1.0,0.6166666666666666,0.7333333333333333,1,26 -jar,0.7416666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -bound,0.7833333333333333,1.0,0.7,0.7833333333333333,1,26 -lettuce,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -brush,0.5883333333333333,1.0,0.55,0.6833333333333333,1,26 -scissors,0.73,1.0,0.7,0.7833333333333333,1,26 -lime,0.45499999999999996,1.0,0.5166666666666666,0.65,1,25 -toothpaste,0.85,1.0,0.8333333333333333,0.8833333333333332,1,26 -top,0.6133333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -spiral,0.7849999999999999,1.0,0.6499999999999999,0.75,1,26 -handles,0.6983333333333334,1.0,0.5999999999999999,0.7166666666666666,1,25 -camera,0.6749999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -eraser,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5016666666666667,1.0,0.41666666666666663,0.5833333333333333,1,26 -pitcher,0.76,1.0,0.6666666666666666,0.7666666666666667,1,26 -phone,0.615,1.0,0.4333333333333334,0.6,1,26 -stick,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,25 -cereal,0.5166666666666667,1.0,0.5166666666666666,0.65,1,26 -bulb,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -hair,0.7816666666666666,1.0,0.6833333333333333,0.7833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.73,1.0,0.7499999999999999,0.8166666666666667,1,26 -can,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,25 -coca,0.7133333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -crackers,0.6666666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -plate,0.6433333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -calculator,0.5766666666666667,0.9,0.5833333333333333,0.6333333333333333,1,26 -tissues,0.5833333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -juice,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -pink,0.7766666666666666,1.0,0.7166666666666666,0.8,1,25 -lemon,0.735,1.0,0.5333333333333333,0.6833333333333333,1,26 -peach,0.6766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -bowl,0.6216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -blue,0.6466666666666667,1.0,0.5833333333333333,0.7,1,25 -used,0.7633333333333333,1.0,0.7166666666666666,0.8,1,23 -energizer,0,0,0,0,1,26 -pear,0.45,1.0,0.4333333333333333,0.5833333333333333,1,26 -ball,0.825,1.0,0.7833333333333333,0.85,1,25 -notebook,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -garlic,0.6,1.0,0.6166666666666666,0.7166666666666666,1,26 -cleaning,0.49000000000000005,1.0,0.4499999999999999,0.6,1,26 -pair,0.8716666666666667,1.0,0.8333333333333333,0.9,2,27 -container,0.725,1.0,0.6,0.7166666666666666,1,25 -tomato,0.4966666666666667,0.7,0.5333333333333333,0.54,1,26 -cellphone,0.735,1.0,0.5999999999999999,0.7166666666666667,1,26 -potato,0.61,1.0,0.6333333333333333,0.7333333333333333,1,25 -light,0.8483333333333334,1.0,0.8,0.8800000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6383333333333333 -F1-Score: 0.6852160493827161 -Precision: 0.9086419753086419 -Recall: 0.6016975308641975 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7833333333333333,1.0,0.75,0.8166666666666667,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.595,0.85,0.5833333333333333,0.6166666666666667,1,24 -keyboard,0.7466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.8816666666666666,1.0,0.75,0.8333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -flashlight,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.14666666666666667,0.5,0.5166666666666666,0.4833333333333334,1,26 -folded,0.6633333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -jam,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -black,0.865,0.7166666666666666,1.0,0.818095238095238,6,22 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.655,1.0,0.6,0.7166666666666667,1,26 -soccer,0.4883333333333333,1.0,0.4499999999999999,0.6,1,26 -hat,0.6666666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -brown,0.8616666666666667,1.0,0.8,0.8800000000000001,2,24 -coffee,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -handle,0.8166666666666667,1.0,0.7166666666666666,0.8,1,26 -food,0.8133333333333332,1.0,0.7166666666666666,0.8,1,24 -towel,0.6583333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -chips,0.655,1.0,0.5499999999999999,0.6833333333333333,1,26 -stapler,0.755,1.0,0.65,0.75,1,26 -onion,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.585,1.0,0.5333333333333333,0.6666666666666667,1,26 -sponge,0.7933333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.775,1.0,0.7666666666666666,0.8333333333333333,1,26 -special,0.705,1.0,0.6,0.7166666666666667,1,26 -colgate,0.7216666666666666,1.0,0.6,0.7166666666666667,1,26 -leaf,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -tube,0.62,1.0,0.5333333333333332,0.6666666666666666,1,26 -cell,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -mug,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -yogurt,0.5166666666666666,1.0,0.4166666666666667,0.5833333333333333,1,26 -plantain,0.6933333333333334,1.0,0.65,0.75,1,26 -red,0.9016666666666667,0.8083333333333332,1.0,0.879047619047619,3,27 -pepper,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -wheat,0.835,1.0,0.7833333333333333,0.85,1,26 -kleenex,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -toothbrush,0.5666666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -binder,0.6416666666666667,1.0,0.4999999999999999,0.65,1,26 -baseball,0.475,1.0,0.45,0.6,1,26 -pliers,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.705,1.0,0.5833333333333333,0.7166666666666667,1,26 -thins,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -package,0.605,1.0,0.5833333333333333,0.7,1,26 -k,0.8016666666666665,1.0,0.7166666666666666,0.8,1,26 -jelly,0.6016666666666667,1.0,0.5166666666666666,0.65,1,26 -fruit,0.7350000000000001,0.6,0.9333333333333332,0.72,2,25 -apple,0.7966666666666666,0.9,0.8166666666666667,0.8,1,25 -bell,0.8066666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -battery,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -jar,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.6799999999999999,1.0,0.6166666666666666,0.7333333333333334,1,26 -lettuce,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -brush,0.5549999999999999,1.0,0.4333333333333333,0.5833333333333333,1,26 -scissors,0.6299999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -lime,0.8,1.0,0.8166666666666667,0.8666666666666666,1,25 -toothpaste,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -top,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -spiral,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -handles,0.6799999999999999,1.0,0.5833333333333333,0.7,1,25 -camera,0.735,1.0,0.6166666666666666,0.7333333333333333,1,26 -eraser,0.45,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,23 -banana,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -pitcher,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -phone,0.6483333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -stick,0.45166666666666666,1.0,0.38333333333333336,0.55,1,25 -cereal,0.6016666666666666,1.0,0.5166666666666666,0.65,1,26 -bulb,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,27 -hair,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6849999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -can,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -coca,0.725,1.0,0.7,0.7833333333333333,1,26 -crackers,0.6166666666666667,1.0,0.5833333333333333,0.7,1,26 -plate,0.6166666666666666,1.0,0.5333333333333332,0.6666666666666666,1,25 -calculator,0.7233333333333334,0.75,0.7833333333333333,0.7,1,26 -tissues,0.7416666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -juice,0.8,1.0,0.7166666666666666,0.8,1,26 -pink,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -lemon,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -peach,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.71,1.0,0.5999999999999999,0.7166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -blue,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,25 -used,0.5333333333333333,1.0,0.5499999999999999,0.6666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.75,1.0,0.55,0.6833333333333333,1,26 -ball,0.8083333333333332,1.0,0.75,0.8166666666666667,1,25 -notebook,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -garlic,0.505,1.0,0.5166666666666666,0.65,1,26 -cleaning,0.44666666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -pair,0.95,1.0,0.9333333333333332,0.96,2,28 -container,0.5583333333333333,1.0,0.5166666666666666,0.65,1,25 -tomato,0.565,0.75,0.6,0.5900000000000001,1,26 -cellphone,0.6799999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -potato,0.44333333333333325,1.0,0.41666666666666663,0.5833333333333333,1,25 -light,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6504783950617286 -F1-Score: 0.6883994708994707 -Precision: 0.9057870370370369 -Recall: 0.6075617283950618 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6399999999999999,1.0,0.5,0.65,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.6583333333333333,1.0,0.5833333333333333,0.7,1,24 -keyboard,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -glue,0.4499999999999999,1.0,0.4333333333333333,0.5833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -flashlight,0.725,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.45833333333333337,0.55,0.6499999999999999,0.5466666666666666,1,26 -folded,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -jam,0.85,1.0,0.7833333333333333,0.85,1,26 -black,0.9433333333333334,0.85,1.0,0.9,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5999999999999999,1.0,0.5333333333333333,0.65,1,26 -soccer,0.635,1.0,0.5833333333333333,0.7,1,26 -hat,0.5633333333333332,1.0,0.55,0.6833333333333333,1,26 -brown,0.8400000000000001,1.0,0.8,0.8800000000000001,2,24 -coffee,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,25 -handle,0.7683333333333333,1.0,0.6499999999999999,0.75,1,26 -food,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -towel,0.6716666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.8550000000000001,1.0,0.8333333333333333,0.8833333333333332,1,26 -stapler,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.5233333333333333,0.85,0.6333333333333333,0.65,1,26 -bag,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.6683333333333332,1.0,0.5833333333333333,0.7,1,25 -special,0.7516666666666667,1.0,0.5666666666666667,0.7,1,26 -colgate,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -leaf,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -tube,0.705,1.0,0.55,0.6833333333333333,1,26 -cell,0.5549999999999999,1.0,0.5,0.6333333333333333,1,26 -mug,0.6183333333333333,1.0,0.5,0.65,1,25 -yogurt,0.78,1.0,0.7,0.7833333333333333,1,26 -plantain,0.5083333333333333,1.0,0.4499999999999999,0.6,1,26 -red,0.9433333333333334,0.8666666666666668,1.0,0.9133333333333333,3,26 -pepper,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -wheat,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -kleenex,0.4916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -toothbrush,0.9133333333333333,1.0,0.8833333333333332,0.9166666666666666,1,26 -binder,0.575,1.0,0.6,0.7166666666666666,1,26 -baseball,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -pliers,0.76,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -thins,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -package,0.4766666666666667,1.0,0.38333333333333336,0.55,1,26 -k,0.6833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -jelly,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -fruit,0.7983333333333333,0.75,0.9,0.78,2,25 -apple,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -bell,0.4766666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -battery,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -jar,0.745,1.0,0.5666666666666667,0.7,1,26 -bound,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -brush,0.5433333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -scissors,0.7499999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -lime,0.575,1.0,0.4166666666666667,0.5833333333333333,1,25 -toothpaste,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -top,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -handles,0.5549999999999999,1.0,0.4999999999999999,0.6333333333333333,1,25 -camera,0.7066666666666667,1.0,0.6,0.7166666666666667,1,26 -eraser,0.5466666666666666,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,0.9233333333333335,0.8666666666666666,1.0,0.9200000000000002,5,21 -banana,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.6883333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -phone,0.5549999999999999,1.0,0.5833333333333333,0.7,1,26 -stick,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -cereal,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -bulb,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -hair,0.735,1.0,0.6499999999999999,0.75,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.635,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,0.8816666666666666,1.0,0.8333333333333334,0.9000000000000001,2,24 -coca,0.655,1.0,0.5833333333333333,0.7,1,26 -crackers,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -plate,0.825,1.0,0.7666666666666666,0.8333333333333333,1,25 -calculator,0.6633333333333333,0.95,0.6833333333333332,0.7333333333333333,1,26 -tissues,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.4833333333333333,1.0,0.5999999999999999,0.7,1,26 -pink,0.915,1.0,0.8,0.8666666666666668,1,25 -lemon,0.655,1.0,0.6499999999999999,0.75,1,26 -peach,0.49333333333333335,1.0,0.4,0.5666666666666667,1,26 -bowl,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.655,1.0,0.5833333333333333,0.7,1,26 -blue,0.5833333333333333,0.85,0.6166666666666666,0.6166666666666667,1,25 -used,0.8150000000000001,1.0,0.7333333333333333,0.8166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -ball,0.6016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -notebook,0.605,1.0,0.5,0.65,1,26 -garlic,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -cleaning,0.805,1.0,0.7166666666666666,0.8,1,26 -pair,0.9066666666666666,1.0,0.8666666666666666,0.9199999999999999,2,26 -container,0.7416666666666667,1.0,0.65,0.75,1,26 -tomato,0.6383333333333334,0.75,0.5666666666666667,0.5833333333333333,1,26 -cellphone,0.625,1.0,0.5999999999999999,0.7166666666666667,1,26 -potato,0.78,1.0,0.7333333333333333,0.8166666666666667,1,25 -light,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9266666666666667,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6509567901234569 -F1-Score: 0.6904629629629631 -Precision: 0.9100308641975309 -Recall: 0.6083333333333333 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6833333333333333,1.0,0.5833333333333333,0.7,1,24 -yellow,0.93,0.8166666666666667,1.0,0.8800000000000001,6,24 -looks,0.6833333333333333,0.8,0.6833333333333333,0.6833333333333333,1,24 -keyboard,0.7,1.0,0.5833333333333333,0.7,1,26 -glue,0.7133333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.48,1.0,0.4666666666666666,0.6166666666666667,1,26 -flashlight,0.6733333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -cup,0.6883333333333332,0.5,0.75,0.5833333333333333,1,25 -folded,0.6599999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -jam,0.7,1.0,0.6499999999999999,0.75,1,26 -black,0.8616666666666667,0.6666666666666666,1.0,0.78,6,21 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.6249999999999999,1.0,0.5833333333333333,0.7,1,26 -soccer,0.655,1.0,0.6333333333333332,0.7333333333333333,1,26 -hat,0.975,1.0,0.95,0.9666666666666666,1,26 -brown,0.8099999999999999,1.0,0.7666666666666667,0.86,2,25 -coffee,0.5933333333333334,1.0,0.5333333333333332,0.6666666666666666,1,25 -handle,0.4833333333333333,1.0,0.41666666666666663,0.5833333333333333,1,26 -food,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -towel,0.6766666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.6799999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -stapler,0.7216666666666667,1.0,0.5666666666666667,0.7,1,26 -onion,0.7216666666666666,1.0,0.5833333333333333,0.7,1,26 -bag,0.7633333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -sponge,0.7516666666666666,1.0,0.6499999999999999,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.8016666666666665,1.0,0.6833333333333333,0.7833333333333333,1,25 -special,0.65,1.0,0.6666666666666666,0.75,1,26 -colgate,0.625,1.0,0.5166666666666666,0.65,1,26 -leaf,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -tube,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -cell,0.5083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -mug,0.6983333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -yogurt,0.575,1.0,0.5166666666666666,0.65,1,26 -plantain,0.6383333333333333,1.0,0.55,0.6833333333333333,1,26 -red,0.9666666666666668,0.9,1.0,0.9333333333333332,3,27 -pepper,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.78,1.0,0.7166666666666666,0.8,1,26 -kleenex,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333334,1,26 -toothbrush,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -binder,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.7,1.0,0.6499999999999999,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5016666666666667,1.0,0.5166666666666666,0.65,1,26 -thins,0.7066666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -package,0.5149999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -k,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -jelly,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -fruit,0.71,0.5166666666666666,0.9666666666666666,0.6533333333333333,2,26 -apple,0.5366666666666666,0.85,0.5666666666666667,0.6166666666666667,1,25 -bell,0.5883333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -battery,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -jar,0.7433333333333333,1.0,0.7,0.7833333333333333,1,26 -bound,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -lettuce,0.6483333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -brush,0.6583333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -scissors,0.7433333333333333,1.0,0.6,0.7166666666666667,1,26 -lime,0.525,1.0,0.5166666666666666,0.65,1,25 -toothpaste,0.73,1.0,0.7499999999999999,0.8166666666666667,1,26 -top,0.65,1.0,0.5499999999999999,0.6833333333333333,1,26 -spiral,0.76,1.0,0.6,0.7166666666666667,1,26 -handles,0.64,1.0,0.5333333333333333,0.6666666666666667,1,25 -camera,0.6799999999999999,1.0,0.6166666666666666,0.7333333333333334,1,26 -eraser,0.76,1.0,0.6666666666666666,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.605,0.95,0.65,0.7166666666666667,1,26 -pitcher,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -phone,0.7983333333333333,1.0,0.6333333333333333,0.75,1,26 -stick,0.6883333333333332,1.0,0.7,0.7833333333333333,1,25 -cereal,0.61,1.0,0.5499999999999999,0.6833333333333333,1,26 -bulb,0.9083333333333332,1.0,0.9,0.9400000000000001,2,27 -hair,0.5633333333333332,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.755,1.0,0.65,0.75,1,26 -can,0.9016666666666666,1.0,0.8666666666666668,0.9200000000000002,2,25 -coca,0.575,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.6016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -plate,0.7216666666666667,1.0,0.6499999999999999,0.75,1,25 -calculator,0.45999999999999996,0.7,0.5833333333333333,0.55,1,26 -tissues,0.7433333333333334,1.0,0.5666666666666667,0.7,1,26 -juice,0.7333333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -pink,0.6916666666666667,1.0,0.65,0.75,1,25 -lemon,0.7333333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -peach,0.7466666666666667,1.0,0.75,0.8166666666666667,1,26 -bowl,0.85,1.0,0.8333333333333333,0.8833333333333332,1,26 -camouflage,0,0,0,0,1,26 -digital,0.73,1.0,0.75,0.8166666666666667,1,26 -blue,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -used,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,23 -energizer,0,0,0,0,1,26 -pear,0.7683333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -ball,0.4666666666666666,1.0,0.4833333333333334,0.6166666666666666,1,25 -notebook,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -garlic,0.7133333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -cleaning,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -pair,0.9550000000000001,1.0,0.9333333333333332,0.96,2,27 -container,0.7183333333333334,1.0,0.5999999999999999,0.7166666666666666,1,25 -tomato,0.585,0.55,0.6666666666666666,0.5633333333333334,1,26 -cellphone,0.6683333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -potato,0.6066666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -light,0.8766666666666666,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8683333333333334,1.0,0.8333333333333333,0.9,2,25 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6483950617283951 -F1-Score: 0.6872530864197531 -Precision: 0.9004629629629629 -Recall: 0.6101851851851849 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7216666666666666,1.0,0.65,0.75,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.5333333333333333,1.0,0.5166666666666666,0.65,1,24 -keyboard,0.6833333333333333,1.0,0.65,0.75,1,26 -glue,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.55,0.5,0.7333333333333332,0.56,1,26 -folded,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -jam,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -black,0.8966666666666667,0.7583333333333333,1.0,0.8457142857142858,6,24 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.5683333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -soccer,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -hat,0.775,1.0,0.7,0.7833333333333333,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -coffee,0.6683333333333332,1.0,0.5333333333333333,0.6666666666666667,1,25 -handle,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -food,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,24 -towel,0.375,1.0,0.4999999999999999,0.6333333333333333,1,26 -chips,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -stapler,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -bag,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -sponge,0.725,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.7533333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -special,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -colgate,0.4749999999999999,1.0,0.4333333333333333,0.5833333333333333,1,26 -leaf,0.6816666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -tube,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -cell,0.6183333333333334,0.5,0.7333333333333333,0.5733333333333334,1,26 -mug,0.5133333333333333,1.0,0.4499999999999999,0.6,1,25 -yogurt,0.7516666666666666,1.0,0.6499999999999999,0.75,1,26 -plantain,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -red,0.9466666666666667,0.8666666666666666,1.0,0.9133333333333333,3,27 -pepper,0.76,1.0,0.7166666666666666,0.8,1,26 -wheat,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -kleenex,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -toothbrush,0.7383333333333333,1.0,0.65,0.75,1,26 -binder,0.755,1.0,0.65,0.75,1,26 -baseball,0.705,1.0,0.6499999999999999,0.75,1,26 -pliers,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5433333333333332,1.0,0.4499999999999999,0.6,1,26 -thins,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -package,0.875,1.0,0.8333333333333333,0.8833333333333332,1,26 -k,0.6516666666666666,1.0,0.5166666666666666,0.65,1,26 -jelly,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.795,0.6833333333333333,0.9333333333333332,0.7533333333333333,2,25 -apple,0.5149999999999999,0.85,0.5,0.55,1,25 -bell,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -battery,0.7833333333333333,1.0,0.7333333333333333,0.8,1,26 -jar,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -lettuce,0.675,1.0,0.5999999999999999,0.7166666666666667,1,26 -brush,0.8583333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -scissors,0.7033333333333334,1.0,0.5666666666666667,0.7,1,26 -lime,0.505,1.0,0.45,0.6,1,25 -toothpaste,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -top,0.7033333333333334,1.0,0.5666666666666667,0.7,1,26 -spiral,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -handles,0.675,1.0,0.5833333333333333,0.7,1,25 -camera,0.5833333333333333,1.0,0.6666666666666666,0.75,1,26 -eraser,0.7166666666666667,1.0,0.65,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.6433333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -pitcher,0.5916666666666667,1.0,0.5833333333333333,0.7,1,26 -phone,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -stick,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -cereal,0.7216666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -bulb,0.8383333333333333,1.0,0.8,0.8800000000000001,2,27 -hair,0.5833333333333334,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.78,1.0,0.8166666666666667,0.8666666666666666,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coca,0.59,1.0,0.5,0.65,1,26 -crackers,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.6766666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -calculator,0.6483333333333333,0.6,0.7666666666666666,0.6066666666666667,1,26 -tissues,0.71,1.0,0.65,0.75,1,26 -juice,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -pink,0.475,1.0,0.4166666666666667,0.5666666666666667,1,25 -lemon,0.8,1.0,0.8,0.85,1,26 -peach,0.655,1.0,0.5833333333333333,0.7,1,26 -bowl,0.75,1.0,0.7,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -blue,0.755,1.0,0.7166666666666666,0.8,1,25 -used,0.7649999999999999,1.0,0.5666666666666667,0.7,1,23 -energizer,0,0,0,0,1,26 -pear,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -ball,0.7966666666666666,1.0,0.7499999999999999,0.8166666666666667,1,25 -notebook,0.7133333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -garlic,0.6633333333333333,1.0,0.5,0.65,1,26 -cleaning,0.6216666666666667,1.0,0.5,0.65,1,26 -pair,0.9099999999999999,1.0,0.8666666666666666,0.9199999999999999,2,27 -container,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,25 -tomato,0.5966666666666667,0.8,0.5166666666666666,0.5833333333333333,1,26 -cellphone,0.5583333333333333,0.5,0.75,0.5700000000000001,1,26 -potato,0.58,1.0,0.6333333333333332,0.7333333333333333,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8649999999999999,1.0,0.8,0.8800000000000001,2,25 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6531327160493826 -F1-Score: 0.6895282186948852 -Precision: 0.8982253086419753 -Recall: 0.6157407407407407 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.5316666666666666,1.0,0.4666666666666666,0.6166666666666667,1,24 -keyboard,0.7466666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.7733333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.675,1.0,0.6833333333333333,0.7666666666666666,1,26 -flashlight,0.5933333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -cup,0.37666666666666665,0.5,0.5333333333333333,0.49333333333333335,1,26 -folded,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -jam,0.8166666666666667,1.0,0.7499999999999999,0.8166666666666667,1,26 -black,0.8916666666666668,0.7666666666666666,1.0,0.8466666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -soccer,0.5416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -hat,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -brown,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -handle,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -food,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -towel,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -chips,0.6266666666666667,1.0,0.6,0.7166666666666667,1,26 -stapler,0.6583333333333333,1.0,0.5499999999999999,0.6666666666666667,1,26 -onion,0.7083333333333333,1.0,0.5666666666666667,0.7,1,26 -bag,0.5016666666666667,1.0,0.4166666666666667,0.5833333333333333,1,26 -sponge,0.4716666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,25 -special,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -colgate,0.755,1.0,0.65,0.75,1,26 -leaf,0.6266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.5549999999999999,1.0,0.5833333333333333,0.7,1,26 -cell,0.45999999999999996,0.55,0.6499999999999999,0.5466666666666666,1,26 -mug,0.6933333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -yogurt,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -plantain,0.65,1.0,0.5,0.65,1,26 -red,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666665,3,24 -pepper,0.5916666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -wheat,0.5499999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -kleenex,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -toothbrush,0.63,1.0,0.5333333333333333,0.6666666666666666,1,26 -binder,0.6383333333333333,1.0,0.55,0.6833333333333333,1,26 -baseball,0.6599999999999999,1.0,0.5166666666666666,0.65,1,26 -pliers,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.85,1.0,0.7666666666666666,0.8333333333333333,1,26 -thins,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -package,0.56,1.0,0.41666666666666663,0.5833333333333333,1,26 -k,0.7466666666666666,1.0,0.7,0.7833333333333333,1,26 -jelly,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.8066666666666666,0.8,0.9,0.8166666666666668,2,25 -apple,0.61,1.0,0.4833333333333332,0.6333333333333333,1,25 -bell,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -battery,0.6616666666666666,1.0,0.55,0.6833333333333333,1,26 -jar,0.6133333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -bound,0.69,1.0,0.5499999999999999,0.6833333333333333,1,26 -lettuce,0.5633333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -brush,0.6933333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.41833333333333333,1.0,0.41666666666666663,0.5833333333333333,1,26 -lime,0.43499999999999994,1.0,0.4,0.5666666666666667,1,25 -toothpaste,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -top,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -spiral,0.6416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -handles,0.5716666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.6466666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -eraser,0.7266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7166666666666666,1.0,0.7333333333333332,0.8,1,26 -pitcher,0.5966666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.7133333333333334,1.0,0.7166666666666666,0.8,1,26 -stick,0.525,1.0,0.6166666666666666,0.7166666666666667,1,25 -cereal,0.6416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -bulb,0.9266666666666665,1.0,0.9,0.9400000000000001,2,26 -hair,0.8633333333333333,1.0,0.8166666666666667,0.8666666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -can,0.9099999999999999,1.0,0.8666666666666666,0.9199999999999999,2,24 -coca,0.5083333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -crackers,0.5716666666666665,1.0,0.4666666666666666,0.6166666666666667,1,26 -plate,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666666,1,24 -calculator,0.7083333333333333,1.0,0.4999999999999999,0.65,1,26 -tissues,0.5583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -juice,0.755,1.0,0.7166666666666666,0.8,1,26 -pink,0.8016666666666667,1.0,0.7333333333333333,0.8166666666666667,1,25 -lemon,0.625,1.0,0.5333333333333333,0.6666666666666666,1,26 -peach,0.7749999999999999,1.0,0.7,0.7833333333333333,1,26 -bowl,0.775,1.0,0.7,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7649999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -blue,0.8333333333333333,1.0,0.8666666666666666,0.9,1,25 -used,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.7216666666666666,1.0,0.6499999999999999,0.75,1,26 -ball,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -notebook,0.725,1.0,0.7,0.7833333333333333,1,26 -garlic,0.8933333333333333,1.0,0.8,0.8666666666666666,1,26 -cleaning,0.7216666666666667,1.0,0.7,0.7833333333333333,1,26 -pair,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -container,0.685,1.0,0.5166666666666666,0.6666666666666667,1,25 -tomato,0.5966666666666666,0.85,0.6333333333333332,0.6333333333333333,1,26 -cellphone,0.6033333333333333,0.5,0.7666666666666666,0.5800000000000001,1,26 -potato,0.5383333333333333,1.0,0.5166666666666666,0.65,1,25 -light,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9266666666666665,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6487345679012345 -F1-Score: 0.6888271604938271 -Precision: 0.9060185185185184 -Recall: 0.6080246913580246 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6883333333333332,1.0,0.6499999999999999,0.75,1,24 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.775,0.8,0.7333333333333333,0.6833333333333333,1,24 -keyboard,0.5933333333333334,1.0,0.5833333333333333,0.7,1,26 -glue,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -flashlight,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.45999999999999996,0.5,0.6166666666666666,0.53,1,25 -folded,0.605,1.0,0.5833333333333333,0.7,1,26 -jam,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -black,0.89,0.75,1.0,0.8400000000000001,6,23 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.72,1.0,0.5166666666666666,0.6666666666666667,1,26 -soccer,0.6216666666666666,1.0,0.5833333333333333,0.7,1,26 -hat,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -brown,0.8716666666666667,1.0,0.8333333333333333,0.9,2,24 -coffee,0.6216666666666666,1.0,0.55,0.6833333333333333,1,25 -handle,0.625,1.0,0.5666666666666667,0.7,1,25 -food,0.7,1.0,0.6499999999999999,0.75,1,24 -towel,0.6766666666666666,1.0,0.6,0.7166666666666667,1,26 -chips,0.6799999999999999,1.0,0.65,0.75,1,26 -stapler,0.6216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.7716666666666666,1.0,0.7166666666666666,0.8,1,26 -bag,0.805,1.0,0.7166666666666666,0.8,1,26 -sponge,0.675,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -special,0.6183333333333333,1.0,0.4666666666666666,0.6333333333333333,1,26 -colgate,0.7183333333333333,1.0,0.5666666666666667,0.7,1,26 -leaf,0.6883333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -tube,0.5933333333333333,1.0,0.5166666666666666,0.65,1,26 -cell,0.43499999999999994,0.6,0.6,0.54,1,26 -mug,0.6666666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -yogurt,0.6483333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -plantain,0.685,1.0,0.6,0.7166666666666667,1,26 -red,0.9166666666666667,0.8166666666666668,1.0,0.8866666666666667,3,25 -pepper,0.8083333333333332,1.0,0.75,0.8166666666666667,1,26 -wheat,0.63,1.0,0.6,0.7166666666666667,1,26 -kleenex,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -toothbrush,0.5133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.8233333333333335,1.0,0.7166666666666666,0.8,1,26 -baseball,0.66,1.0,0.55,0.6833333333333333,1,26 -pliers,0.5216666666666666,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5216666666666666,1.0,0.5,0.6333333333333333,1,26 -thins,0.6333333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -package,0.7016666666666667,1.0,0.65,0.75,1,26 -k,0.53,1.0,0.4666666666666666,0.6166666666666666,1,26 -jelly,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -fruit,0.7416666666666665,0.7333333333333334,0.8333333333333333,0.7333333333333334,2,26 -apple,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -bell,0.6166666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -battery,0.5916666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -jar,0.825,1.0,0.8166666666666667,0.8666666666666666,1,26 -bound,0.6433333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -lettuce,0.9,1.0,0.8833333333333332,0.9166666666666666,1,26 -brush,0.6416666666666667,1.0,0.5833333333333333,0.7,1,26 -scissors,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -lime,0.7166666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -toothpaste,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -top,0.63,1.0,0.4999999999999999,0.65,1,26 -spiral,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -handles,0.8550000000000001,1.0,0.7333333333333333,0.8166666666666668,1,25 -camera,0.8066666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -eraser,0.7183333333333334,1.0,0.5666666666666667,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -pitcher,0.76,1.0,0.65,0.75,1,26 -phone,0.735,1.0,0.6499999999999999,0.75,1,26 -stick,0.8266666666666665,1.0,0.7666666666666666,0.8333333333333333,1,25 -cereal,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -bulb,0.9083333333333332,1.0,0.9,0.9400000000000001,2,28 -hair,0.6266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.755,1.0,0.6666666666666666,0.7666666666666666,1,26 -can,0.8483333333333333,1.0,0.8,0.8800000000000001,2,25 -coca,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -crackers,0.575,1.0,0.6166666666666666,0.7166666666666666,1,26 -plate,0.38333333333333336,1.0,0.4833333333333332,0.6166666666666666,1,25 -calculator,0.4583333333333333,0.75,0.5333333333333333,0.5566666666666668,1,26 -tissues,0.7166666666666666,1.0,0.7333333333333333,0.8,1,26 -juice,0.5883333333333334,1.0,0.5166666666666666,0.65,1,26 -pink,0.45,1.0,0.45,0.6,1,25 -lemon,0.5383333333333333,1.0,0.4833333333333332,0.6333333333333333,1,26 -peach,0.7033333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -bowl,0.5799999999999998,1.0,0.4666666666666666,0.6166666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333334,1,26 -blue,0.825,1.0,0.7333333333333333,0.8166666666666668,1,25 -used,0.6916666666666667,1.0,0.6499999999999999,0.75,1,22 -energizer,0,0,0,0,1,26 -pear,0.7266666666666668,1.0,0.6166666666666666,0.7333333333333334,1,26 -ball,0.6799999999999999,1.0,0.6,0.7166666666666667,1,25 -notebook,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -garlic,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -cleaning,0.5549999999999999,1.0,0.5833333333333333,0.7,1,26 -pair,0.905,1.0,0.8666666666666666,0.9199999999999999,2,26 -container,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -tomato,0.5266666666666666,0.85,0.6333333333333333,0.6333333333333333,1,26 -cellphone,0.51,0.55,0.7,0.5633333333333334,1,26 -potato,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,27 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6553703703703704 -F1-Score: 0.6921604938271605 -Precision: 0.901388888888889 -Recall: 0.6148148148148147 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5583333333333333,1.0,0.5833333333333333,0.7,1,25 -yellow,0.9099999999999999,0.7666666666666667,1.0,0.8466666666666665,6,24 -looks,0.6216666666666667,0.9,0.6333333333333333,0.6666666666666666,1,24 -keyboard,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -glue,0.5083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.7899999999999999,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.58,1.0,0.5166666666666666,0.65,1,26 -cup,0.5183333333333333,0.5,0.6499999999999999,0.5366666666666667,1,26 -folded,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -jam,0.4716666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -black,0.8699999999999999,0.725,1.0,0.8257142857142856,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6883333333333332,1.0,0.6333333333333332,0.7333333333333333,1,26 -soccer,0.7016666666666667,1.0,0.55,0.6833333333333333,1,26 -hat,0.61,1.0,0.4666666666666666,0.6166666666666667,1,26 -brown,0.9099999999999999,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -handle,0.605,1.0,0.5333333333333333,0.6666666666666667,1,25 -food,0.73,1.0,0.6333333333333333,0.7333333333333333,1,26 -towel,0.6499999999999999,1.0,0.5166666666666666,0.65,1,26 -chips,0.4716666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -stapler,0.735,1.0,0.5999999999999999,0.7166666666666666,1,26 -onion,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -bag,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -sponge,0.6433333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,25 -special,0.6766666666666666,1.0,0.5666666666666667,0.7,1,26 -colgate,0.43,1.0,0.4499999999999999,0.6,1,26 -leaf,0.6466666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -tube,0.63,1.0,0.5833333333333333,0.7,1,26 -cell,0.3766666666666667,0.65,0.6166666666666666,0.5466666666666666,1,26 -mug,0.58,1.0,0.5499999999999999,0.6666666666666666,1,26 -yogurt,0.4833333333333333,1.0,0.4833333333333333,0.6166666666666667,1,26 -plantain,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -red,0.93,0.8333333333333333,1.0,0.8933333333333333,3,25 -pepper,0.48,1.0,0.5166666666666666,0.65,1,26 -wheat,0.5966666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.69,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -binder,0.8083333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -baseball,0.7899999999999999,1.0,0.7166666666666666,0.8,1,26 -pliers,0.5633333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6833333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -thins,0.5716666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -package,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -k,0.5683333333333332,1.0,0.4333333333333333,0.6,1,26 -jelly,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.6816666666666666,0.5833333333333333,0.9333333333333332,0.6833333333333333,2,25 -apple,0.53,0.7,0.6333333333333333,0.5800000000000001,1,25 -bell,0.7566666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -battery,0.6466666666666667,1.0,0.6,0.7166666666666667,1,26 -jar,0.5399999999999999,1.0,0.5166666666666666,0.65,1,26 -bound,0.755,1.0,0.6666666666666666,0.7666666666666666,1,26 -lettuce,0.6133333333333333,1.0,0.6,0.7166666666666667,1,26 -brush,0.7733333333333334,1.0,0.6333333333333333,0.75,1,26 -scissors,0.5216666666666666,1.0,0.4333333333333333,0.5833333333333333,1,26 -lime,0.6883333333333332,1.0,0.5166666666666666,0.6666666666666667,1,25 -toothpaste,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -top,0.5166666666666667,1.0,0.5833333333333333,0.7,1,26 -spiral,0.6883333333333332,1.0,0.5666666666666667,0.7,1,26 -handles,0.5799999999999998,1.0,0.5166666666666666,0.65,1,25 -camera,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -eraser,0.655,1.0,0.5999999999999999,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.9833333333333334,0.95,1.0,0.9666666666666666,5,22 -banana,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -pitcher,0.5916666666666667,1.0,0.5833333333333333,0.7,1,26 -phone,0.40499999999999997,1.0,0.4999999999999999,0.6333333333333333,1,26 -stick,0.605,1.0,0.5499999999999999,0.6833333333333333,1,25 -cereal,0.6916666666666667,1.0,0.65,0.75,1,26 -bulb,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5633333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -can,0.9333333333333332,1.0,0.9333333333333332,0.96,2,25 -coca,0.7583333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -crackers,0.5966666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -plate,0.6516666666666666,1.0,0.6,0.7166666666666667,1,25 -calculator,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -tissues,0.6249999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.8766666666666666,1.0,0.75,0.8333333333333333,1,26 -pink,0.705,1.0,0.5999999999999999,0.7166666666666667,1,25 -lemon,0.9216666666666666,1.0,0.85,0.9,1,26 -peach,0.7133333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -bowl,0.58,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5833333333333333,1.0,0.5999999999999999,0.7,1,26 -blue,0.5683333333333332,1.0,0.5499999999999999,0.6833333333333333,1,25 -used,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.6916666666666667,1.0,0.6833333333333332,0.7666666666666666,1,26 -ball,0.6799999999999999,1.0,0.5166666666666666,0.6666666666666667,1,25 -notebook,0.8049999999999999,1.0,0.7166666666666666,0.8,1,26 -garlic,0.6933333333333334,1.0,0.65,0.75,1,26 -cleaning,0.605,1.0,0.5833333333333333,0.7,1,26 -pair,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,27 -container,0.705,1.0,0.6166666666666666,0.7333333333333333,1,25 -tomato,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -cellphone,0.5366666666666666,0.55,0.7166666666666666,0.5733333333333334,1,26 -potato,0.475,1.0,0.4999999999999999,0.6333333333333333,1,25 -light,0.86,1.0,0.8333333333333334,0.9000000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.631898148148148 -F1-Score: 0.6793430335097003 -Precision: 0.8996141975308641 -Recall: 0.6009259259259259 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.705,1.0,0.6499999999999999,0.75,1,25 -yellow,0.9433333333333334,0.85,1.0,0.9,6,24 -looks,0.48500000000000004,0.8,0.5666666666666667,0.5666666666666667,1,24 -keyboard,0.73,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.75,1.0,0.7666666666666666,0.8333333333333333,1,26 -flashlight,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.49333333333333335,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.6849999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -jam,0.6766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -black,0.9600000000000002,0.9,1.0,0.9333333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -soccer,0.735,1.0,0.7166666666666666,0.8,1,26 -hat,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -coffee,0.6599999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -handle,0.7133333333333333,1.0,0.6499999999999999,0.75,1,25 -food,0.7166666666666666,1.0,0.6166666666666666,0.7333333333333333,1,25 -towel,0.6983333333333334,1.0,0.6,0.7166666666666666,1,26 -chips,0.5666666666666667,1.0,0.5833333333333333,0.7,1,26 -stapler,0.705,1.0,0.6499999999999999,0.75,1,26 -onion,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -bag,0.655,1.0,0.5833333333333333,0.7,1,26 -sponge,0.45499999999999996,1.0,0.4333333333333333,0.5833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5833333333333333,1.0,0.5166666666666666,0.65,1,25 -special,0.73,1.0,0.6499999999999999,0.75,1,26 -colgate,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -leaf,0.7166666666666667,1.0,0.6,0.7166666666666667,1,26 -tube,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.6183333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -mug,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -yogurt,0.4966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.5383333333333333,1.0,0.4833333333333334,0.6333333333333333,1,26 -red,0.8616666666666667,0.7166666666666667,1.0,0.82,3,25 -pepper,0.7,1.0,0.75,0.8166666666666667,1,26 -wheat,0.6616666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -kleenex,0.6266666666666667,1.0,0.5,0.65,1,26 -toothbrush,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -binder,0.7300000000000001,1.0,0.6666666666666666,0.7666666666666667,1,26 -baseball,0.7133333333333333,1.0,0.65,0.75,1,26 -pliers,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.63,1.0,0.5999999999999999,0.7166666666666667,1,26 -thins,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -package,0.6466666666666667,0.95,0.6333333333333332,0.7,1,26 -k,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -fruit,0.7233333333333334,0.6166666666666667,0.9333333333333332,0.7333333333333334,2,25 -apple,0.39499999999999996,0.9,0.41666666666666663,0.55,1,25 -bell,0.5433333333333332,1.0,0.5333333333333332,0.6666666666666666,1,26 -battery,0.6166666666666667,1.0,0.5833333333333333,0.7,1,26 -jar,0.6933333333333332,1.0,0.65,0.75,1,26 -bound,0.5966666666666666,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.6683333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -brush,0.6966666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.79,1.0,0.6333333333333333,0.75,1,26 -lime,0.5966666666666666,1.0,0.55,0.6833333333333333,1,25 -toothpaste,0.71,1.0,0.5999999999999999,0.7166666666666666,1,26 -top,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -spiral,0.46833333333333327,1.0,0.4,0.5666666666666667,1,26 -handles,0.705,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.8550000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -eraser,0.5766666666666667,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.705,1.0,0.7,0.7833333333333333,1,26 -pitcher,0.575,1.0,0.5333333333333333,0.6666666666666667,1,26 -phone,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -stick,0.4133333333333333,1.0,0.4833333333333333,0.6166666666666667,1,25 -cereal,0.46333333333333326,1.0,0.4666666666666666,0.6166666666666666,1,26 -bulb,0.8649999999999999,1.0,0.8,0.8800000000000001,2,26 -hair,0.5999999999999999,1.0,0.5999999999999999,0.7,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7166666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -can,0.8800000000000001,1.0,0.8666666666666666,0.9199999999999999,2,25 -coca,0.8766666666666666,1.0,0.75,0.8333333333333333,1,26 -crackers,0.65,1.0,0.55,0.6833333333333333,1,26 -plate,0.7,1.0,0.7499999999999999,0.8166666666666667,1,25 -calculator,0.72,0.85,0.7333333333333333,0.7333333333333333,1,26 -tissues,0.7483333333333333,1.0,0.5666666666666667,0.7,1,26 -juice,0.6133333333333334,1.0,0.4833333333333333,0.6333333333333334,1,26 -pink,0.6916666666666667,1.0,0.6166666666666666,0.7166666666666666,1,25 -lemon,0.8633333333333335,1.0,0.8166666666666667,0.8666666666666666,1,26 -peach,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -bowl,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6300000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -blue,0.6566666666666666,1.0,0.4833333333333333,0.6333333333333333,1,25 -used,0.63,1.0,0.5499999999999999,0.6833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.55,1.0,0.6166666666666666,0.7166666666666666,1,26 -ball,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666668,1,25 -notebook,0.75,1.0,0.7333333333333333,0.8,1,26 -garlic,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -cleaning,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -pair,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -container,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -tomato,0.5599999999999999,0.8,0.6166666666666666,0.5833333333333334,1,26 -cellphone,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -potato,0.6799999999999999,1.0,0.5499999999999999,0.6833333333333333,1,25 -light,0.9333333333333332,1.0,0.9333333333333332,0.9600000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,26 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6449691358024693 -F1-Score: 0.6875925925925925 -Precision: 0.9063271604938272 -Recall: 0.607716049382716 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7466666666666667,1.0,0.65,0.75,1,25 -yellow,0.93,0.8166666666666667,1.0,0.8800000000000001,6,24 -looks,0.51,0.85,0.5333333333333333,0.5833333333333333,1,24 -keyboard,0.5249999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -glue,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -cup,0.48166666666666663,0.5,0.7,0.5533333333333335,1,26 -folded,0.43833333333333335,1.0,0.4666666666666666,0.6166666666666667,1,26 -jam,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -black,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666665,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -soccer,0.7633333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -hat,0.7433333333333333,1.0,0.6499999999999999,0.75,1,26 -brown,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -coffee,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -handle,0.6416666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -food,0.6016666666666667,1.0,0.4833333333333332,0.6333333333333333,1,26 -towel,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -chips,0.63,1.0,0.6833333333333333,0.7666666666666666,1,26 -stapler,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -onion,0.5349999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -bag,0.875,1.0,0.8833333333333332,0.9166666666666666,1,26 -sponge,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6499999999999999,1.0,0.5833333333333333,0.7,1,25 -special,0.6566666666666666,1.0,0.55,0.6833333333333333,1,26 -colgate,0.6849999999999999,1.0,0.5833333333333333,0.7,1,26 -leaf,0.7633333333333334,1.0,0.65,0.75,1,26 -tube,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -cell,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -mug,0.4966666666666666,1.0,0.4833333333333333,0.6166666666666666,1,26 -yogurt,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -plantain,0.73,1.0,0.6833333333333333,0.7666666666666666,1,26 -red,0.865,0.725,1.0,0.8257142857142856,3,26 -pepper,0.6833333333333333,1.0,0.6,0.7166666666666667,1,26 -wheat,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -kleenex,0.6416666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -toothbrush,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -binder,0.53,1.0,0.5166666666666666,0.65,1,26 -baseball,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -pliers,0.5466666666666666,1.0,0.41666666666666663,0.5833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -thins,0.7566666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -package,0.6316666666666666,0.95,0.4833333333333333,0.6,1,26 -k,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -jelly,0.7166666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -fruit,0.7066666666666667,0.6833333333333333,0.8666666666666666,0.7333333333333334,2,26 -apple,0.7633333333333334,0.95,0.7166666666666666,0.7666666666666666,1,25 -bell,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -battery,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -jar,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -bound,0.7,1.0,0.65,0.75,1,26 -lettuce,0.745,1.0,0.6166666666666666,0.7333333333333333,1,26 -brush,0.53,1.0,0.45,0.6,1,26 -scissors,0.6083333333333333,1.0,0.5,0.65,1,26 -lime,0.63,1.0,0.6333333333333333,0.7333333333333333,1,25 -toothpaste,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.5416666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -spiral,0.7899999999999999,1.0,0.6333333333333333,0.75,1,26 -handles,0.735,1.0,0.5999999999999999,0.7166666666666666,1,25 -camera,0.6166666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.7266666666666667,1.0,0.6,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -pitcher,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.655,1.0,0.5499999999999999,0.6833333333333333,1,26 -stick,0.6133333333333334,1.0,0.5166666666666666,0.65,1,25 -cereal,0.63,1.0,0.5833333333333333,0.7,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -hair,0.6683333333333332,1.0,0.55,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -can,0.8999999999999998,1.0,0.8999999999999998,0.9400000000000001,2,26 -coca,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -crackers,0.74,1.0,0.6166666666666666,0.7333333333333333,1,26 -plate,0.5433333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -calculator,0.5483333333333332,0.85,0.6166666666666666,0.6166666666666667,1,26 -tissues,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -juice,0.7066666666666668,1.0,0.55,0.6833333333333333,1,26 -pink,0.5666666666666667,1.0,0.5999999999999999,0.7,1,25 -lemon,0.8266666666666665,1.0,0.7666666666666666,0.8333333333333333,1,26 -peach,0.4583333333333333,1.0,0.41666666666666663,0.5833333333333333,1,26 -bowl,0.7383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -blue,0.6566666666666666,1.0,0.5999999999999999,0.7166666666666667,1,25 -used,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.875,1.0,0.8833333333333332,0.9166666666666666,1,26 -ball,0.635,1.0,0.5833333333333333,0.7,1,25 -notebook,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -garlic,0.8666666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -cleaning,0.8099999999999999,1.0,0.7333333333333333,0.8166666666666668,1,26 -pair,0.9550000000000001,1.0,0.9333333333333332,0.96,2,27 -container,0.6583333333333333,1.0,0.6499999999999999,0.75,1,25 -tomato,0.5783333333333334,0.6,0.65,0.5633333333333334,1,26 -cellphone,0.7216666666666666,1.0,0.7,0.7833333333333333,1,26 -potato,0.65,1.0,0.6166666666666666,0.7166666666666666,1,25 -light,0.93,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,25 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6546450617283951 -F1-Score: 0.6899603174603174 -Precision: 0.9056327160493828 -Recall: 0.6114197530864197 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7133333333333333,1.0,0.6166666666666666,0.7166666666666667,1,25 -yellow,0.8666666666666666,0.675,1.0,0.7857142857142858,6,24 -looks,0.6016666666666667,0.8,0.6666666666666666,0.6333333333333333,1,24 -keyboard,0.4883333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -glue,0.5433333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6799999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -cup,0.44833333333333336,0.5,0.5833333333333333,0.51,1,26 -folded,0.6733333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -jam,0.75,1.0,0.7,0.7833333333333333,1,26 -black,0.8716666666666665,0.725,1.0,0.8257142857142856,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.5883333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -soccer,0.8216666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -hat,0.5433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -brown,0.9349999999999999,1.0,0.9,0.9400000000000001,2,26 -coffee,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -handle,0.5216666666666666,1.0,0.5166666666666666,0.65,1,26 -food,0.6716666666666666,1.0,0.5833333333333333,0.7,1,25 -towel,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -chips,0.44666666666666666,1.0,0.4333333333333333,0.6,1,26 -stapler,0.655,1.0,0.5833333333333333,0.7,1,26 -onion,0.6416666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -bag,0.5183333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -sponge,0.6266666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.8233333333333335,1.0,0.7166666666666666,0.8,1,25 -special,0.7,1.0,0.65,0.75,1,26 -colgate,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -leaf,0.725,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -cell,0.7133333333333333,1.0,0.65,0.75,1,26 -mug,0.625,1.0,0.6499999999999999,0.75,1,26 -yogurt,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -plantain,0.75,0.9,0.7,0.7166666666666667,1,26 -red,0.82,0.65,1.0,0.78,3,27 -pepper,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -wheat,0.7749999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -kleenex,0.525,1.0,0.5333333333333333,0.6666666666666667,1,26 -toothbrush,0.5833333333333333,1.0,0.5333333333333332,0.65,1,26 -binder,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -baseball,0.6466666666666667,1.0,0.65,0.75,1,26 -pliers,0.6633333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -thins,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -package,0.4883333333333333,0.8,0.4666666666666666,0.5333333333333333,1,26 -k,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -jelly,0.725,1.0,0.7,0.7833333333333333,1,26 -fruit,0.65,0.6666666666666667,0.8333333333333333,0.7033333333333334,2,26 -apple,0.5883333333333334,0.8,0.5999999999999999,0.6166666666666667,1,26 -bell,0.6166666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.675,1.0,0.5999999999999999,0.7166666666666667,1,26 -jar,0.6716666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -bound,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -lettuce,0.6416666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -brush,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -scissors,0.6433333333333333,1.0,0.6,0.7166666666666666,1,26 -lime,0.5083333333333333,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -top,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.65,1.0,0.6,0.7166666666666666,1,26 -handles,0.665,1.0,0.6,0.7166666666666667,1,25 -camera,0.4916666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -eraser,0.7383333333333333,1.0,0.6333333333333333,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,23 -banana,0.69,1.0,0.5,0.65,1,26 -pitcher,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -phone,0.4966666666666667,1.0,0.41666666666666663,0.5833333333333333,1,26 -stick,0.7266666666666667,1.0,0.6,0.7166666666666667,1,25 -cereal,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -bulb,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,27 -hair,0.5133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7083333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -can,0.8933333333333332,1.0,0.8666666666666666,0.9200000000000002,2,26 -coca,0.7666666666666667,1.0,0.75,0.8166666666666667,1,26 -crackers,0.6883333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -plate,0.585,1.0,0.5333333333333333,0.6666666666666667,1,25 -calculator,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -tissues,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -juice,0.6900000000000001,1.0,0.5833333333333333,0.7,1,26 -pink,0.375,1.0,0.4999999999999999,0.6333333333333333,1,25 -lemon,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -peach,0.6466666666666667,1.0,0.6,0.7166666666666667,1,26 -bowl,0.725,1.0,0.65,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -blue,0.3583333333333333,1.0,0.4166666666666667,0.5666666666666667,1,25 -used,0.5549999999999999,1.0,0.5166666666666666,0.65,1,24 -energizer,0,0,0,0,1,26 -pear,0.485,1.0,0.4666666666666666,0.6166666666666667,1,26 -ball,0.7716666666666666,1.0,0.7,0.7833333333333333,1,25 -notebook,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -garlic,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -cleaning,0.75,1.0,0.6833333333333333,0.7666666666666666,1,26 -pair,0.8566666666666667,1.0,0.8,0.8800000000000001,2,27 -container,0.51,1.0,0.4666666666666666,0.6166666666666666,1,25 -tomato,0.6866666666666666,0.8,0.6166666666666666,0.6166666666666667,1,26 -cellphone,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -potato,0.8066666666666666,1.0,0.7333333333333333,0.8166666666666667,1,25 -light,0.8866666666666667,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,25 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6371296296296296 -F1-Score: 0.6821737213403879 -Precision: 0.9010802469135802 -Recall: 0.6032407407407407 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6316666666666666,1.0,0.55,0.6833333333333333,1,24 -yellow,0.9633333333333333,0.9166666666666666,1.0,0.9466666666666667,6,23 -looks,0.7516666666666667,1.0,0.6499999999999999,0.75,1,24 -keyboard,0.8633333333333335,1.0,0.7833333333333333,0.85,1,26 -glue,0.675,1.0,0.6333333333333333,0.7333333333333334,1,26 -milk,0,0,0,0,1,26 -cola,0.8833333333333332,1.0,0.8,0.8666666666666666,1,26 -flashlight,0.6483333333333333,1.0,0.5,0.65,1,26 -cup,0.48500000000000004,0.5,0.6333333333333333,0.5266666666666666,1,26 -folded,0.53,1.0,0.5166666666666666,0.65,1,26 -jam,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -black,0.93,0.8166666666666667,1.0,0.8800000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -soccer,0.74,1.0,0.6666666666666666,0.7666666666666667,1,26 -hat,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -brown,0.9333333333333332,1.0,0.9333333333333332,0.9600000000000002,2,24 -coffee,0.63,1.0,0.5333333333333333,0.6666666666666667,1,25 -handle,0.675,1.0,0.7,0.7833333333333333,1,26 -food,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,24 -towel,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -stapler,0.7,1.0,0.7,0.7833333333333333,1,26 -onion,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -bag,0.71,1.0,0.6499999999999999,0.75,1,26 -sponge,0.8149999999999998,1.0,0.6833333333333333,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6966666666666667,1.0,0.6499999999999999,0.75,1,25 -special,0.7916666666666667,1.0,0.7166666666666666,0.8,1,26 -colgate,0.8016666666666665,1.0,0.65,0.7666666666666667,1,26 -leaf,0.735,1.0,0.6499999999999999,0.75,1,26 -tube,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -cell,0.7216666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -mug,0.6599999999999999,1.0,0.5833333333333333,0.7,1,25 -yogurt,0.7,1.0,0.7333333333333332,0.8,1,26 -plantain,0.6649999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -red,0.93,0.8333333333333333,1.0,0.8933333333333333,3,25 -pepper,0.5466666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -wheat,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.6833333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -toothbrush,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -binder,0.735,1.0,0.6499999999999999,0.75,1,26 -baseball,0.6883333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -pliers,0.8083333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -thins,0.58,1.0,0.5333333333333333,0.6666666666666666,1,26 -package,0.575,1.0,0.5499999999999999,0.6833333333333333,1,26 -k,0.6933333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -jelly,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -fruit,0.69,0.65,0.8333333333333333,0.7066666666666667,2,25 -apple,0.4966666666666667,1.0,0.45,0.6,1,25 -bell,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -battery,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jar,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -bound,0.7066666666666667,1.0,0.55,0.6833333333333333,1,26 -lettuce,0.53,1.0,0.5166666666666666,0.65,1,26 -brush,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -scissors,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.36666666666666664,1.0,0.4833333333333333,0.6166666666666667,1,25 -toothpaste,0.7483333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -top,0.6833333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -spiral,0.4683333333333334,1.0,0.4666666666666666,0.6166666666666666,1,26 -handles,0.41666666666666663,1.0,0.4666666666666666,0.6,1,25 -camera,0.6683333333333332,1.0,0.5666666666666667,0.7,1,26 -eraser,0.6416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.7216666666666666,1.0,0.7166666666666666,0.8,1,26 -pitcher,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.8816666666666666,1.0,0.75,0.8333333333333333,1,26 -stick,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -cereal,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -bulb,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -hair,0.7933333333333333,1.0,0.6333333333333333,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -can,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.605,1.0,0.5166666666666666,0.6666666666666667,1,26 -plate,0.5216666666666666,1.0,0.5166666666666666,0.65,1,25 -calculator,0.48,0.6,0.6833333333333333,0.5633333333333334,1,26 -tissues,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -juice,0.6033333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -pink,0.655,1.0,0.5833333333333333,0.7,1,25 -lemon,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -peach,0.7566666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -bowl,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6183333333333334,1.0,0.5166666666666666,0.65,1,26 -blue,0.7916666666666666,1.0,0.75,0.8166666666666667,1,25 -used,0.5766666666666667,1.0,0.5333333333333332,0.6666666666666666,1,23 -energizer,0,0,0,0,1,26 -pear,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -ball,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -notebook,0.74,1.0,0.5666666666666667,0.7,1,26 -garlic,0.33,1.0,0.38333333333333336,0.55,1,26 -cleaning,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -pair,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,26 -container,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,25 -tomato,0.7083333333333334,0.95,0.75,0.7833333333333333,1,26 -cellphone,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -potato,0.7,1.0,0.6333333333333333,0.7333333333333333,1,25 -light,0.8800000000000001,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6593981481481482 -F1-Score: 0.696574074074074 -Precision: 0.9098765432098765 -Recall: 0.6154320987654321 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6466666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -yellow,0.9100000000000001,0.7833333333333333,1.0,0.86,6,24 -looks,0.54,0.85,0.6,0.6333333333333334,1,24 -keyboard,0.6849999999999999,1.0,0.55,0.6833333333333333,1,26 -glue,0.6466666666666667,1.0,0.55,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7083333333333333,1.0,0.65,0.75,1,26 -flashlight,0.505,1.0,0.5166666666666666,0.65,1,26 -cup,0.15499999999999997,0.5,0.5166666666666666,0.4833333333333334,1,25 -folded,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -jam,0.6933333333333332,1.0,0.6499999999999999,0.75,1,26 -black,0.8733333333333334,0.7,1.0,0.8066666666666666,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7233333333333334,1.0,0.6,0.7166666666666667,1,26 -soccer,0.6966666666666665,1.0,0.6833333333333332,0.7666666666666666,1,26 -hat,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333334,1,26 -brown,0.9066666666666666,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -handle,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -food,0.7133333333333333,1.0,0.7,0.7833333333333333,1,25 -towel,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -chips,0.41666666666666663,1.0,0.4833333333333332,0.6166666666666666,1,26 -stapler,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.6316666666666666,1.0,0.5,0.65,1,26 -bag,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -sponge,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.5633333333333332,1.0,0.5499999999999999,0.6666666666666666,1,26 -special,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -colgate,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -leaf,0.63,1.0,0.65,0.75,1,26 -tube,0.905,1.0,0.8333333333333333,0.8833333333333332,1,26 -cell,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -mug,0.8,1.0,0.7166666666666666,0.8,1,26 -yogurt,0.5633333333333332,1.0,0.4833333333333333,0.6333333333333333,1,26 -plantain,0.6399999999999999,1.0,0.5833333333333333,0.7,1,26 -red,0.8466666666666667,0.7083333333333333,1.0,0.8171428571428571,3,26 -pepper,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -wheat,0.7083333333333333,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -toothbrush,0.6083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -binder,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -baseball,0.6883333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -pliers,0.635,1.0,0.5999999999999999,0.7166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.725,1.0,0.7499999999999999,0.8166666666666667,1,26 -thins,0.6916666666666667,1.0,0.6,0.7166666666666666,1,26 -package,0.63,0.95,0.5833333333333333,0.6666666666666667,1,26 -k,0.4916666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -jelly,0.5133333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -fruit,0.6716666666666666,0.5666666666666667,0.8999999999999998,0.6599999999999999,2,25 -apple,0.4666666666666666,0.85,0.4666666666666666,0.55,1,25 -bell,0.5,1.0,0.4999999999999999,0.6333333333333333,1,26 -battery,0.7333333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -jar,0.6333333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -bound,0.5816666666666668,1.0,0.4833333333333333,0.6333333333333334,1,26 -lettuce,0.8266666666666665,1.0,0.7333333333333333,0.8166666666666668,1,26 -brush,0.39666666666666667,1.0,0.4166666666666667,0.5833333333333333,1,26 -scissors,0.6649999999999999,1.0,0.5,0.65,1,26 -lime,0.6266666666666667,1.0,0.55,0.6833333333333333,1,25 -toothpaste,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.71,1.0,0.55,0.6833333333333333,1,26 -spiral,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -handles,0.6966666666666667,1.0,0.65,0.75,1,25 -camera,0.7983333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -eraser,0.71,1.0,0.65,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.63,1.0,0.5499999999999999,0.6666666666666666,1,26 -pitcher,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -phone,0.5416666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -stick,0.73,1.0,0.7,0.7833333333333333,1,25 -cereal,0.6416666666666667,1.0,0.55,0.6833333333333333,1,26 -bulb,0.905,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.5349999999999999,1.0,0.5333333333333333,0.6666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -can,0.8699999999999999,1.0,0.8,0.8800000000000001,2,26 -coca,0.58,1.0,0.5499999999999999,0.6666666666666666,1,26 -crackers,0.6849999999999999,1.0,0.65,0.75,1,26 -plate,0.6216666666666666,1.0,0.6499999999999999,0.75,1,25 -calculator,0.6066666666666667,0.85,0.6166666666666666,0.6166666666666667,1,26 -tissues,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -pink,0.73,1.0,0.7,0.7833333333333333,1,25 -lemon,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666666,1,26 -peach,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -bowl,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5666666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -blue,0.5216666666666667,1.0,0.4666666666666666,0.6166666666666667,1,25 -used,0.5166666666666666,1.0,0.5833333333333333,0.7,1,23 -energizer,0,0,0,0,1,26 -pear,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -ball,0.5166666666666667,1.0,0.4666666666666666,0.6166666666666667,1,25 -notebook,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.6083333333333333,1.0,0.6499999999999999,0.75,1,26 -cleaning,0.6583333333333333,1.0,0.5666666666666667,0.7,1,26 -pair,0.8800000000000001,1.0,0.8333333333333333,0.9,2,27 -container,0.7733333333333332,1.0,0.6333333333333333,0.75,1,25 -tomato,0.4866666666666667,0.6,0.65,0.5566666666666666,1,26 -cellphone,0.6683333333333333,1.0,0.55,0.6833333333333333,1,26 -potato,0.5766666666666667,1.0,0.5833333333333333,0.7,1,25 -light,0.8916666666666666,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.915,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6292283950617283 -F1-Score: 0.6758686067019402 -Precision: 0.901466049382716 -Recall: 0.5935185185185184 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.4749999999999999,1.0,0.4833333333333332,0.6166666666666666,1,25 -yellow,0.9433333333333334,0.85,1.0,0.9,6,24 -looks,0.5333333333333333,1.0,0.4333333333333333,0.5833333333333333,1,24 -keyboard,0.6966666666666665,1.0,0.6833333333333333,0.7666666666666666,1,26 -glue,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -flashlight,0.6633333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -cup,0.29833333333333334,0.5,0.5166666666666666,0.4833333333333334,1,26 -folded,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -jam,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -black,0.8383333333333333,0.65,1.0,0.7780952380952381,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -soccer,0.7466666666666666,1.0,0.6499999999999999,0.75,1,26 -hat,0.45999999999999996,1.0,0.41666666666666663,0.5833333333333333,1,26 -brown,0.9349999999999999,1.0,0.9,0.9400000000000001,2,25 -coffee,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -handle,0.775,1.0,0.6666666666666666,0.7666666666666666,1,26 -food,0.6466666666666667,1.0,0.6,0.7166666666666667,1,25 -towel,0.6799999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -chips,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -stapler,0.6799999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -onion,0.7666666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -bag,0.55,1.0,0.4833333333333333,0.6333333333333333,1,26 -sponge,0.6916666666666667,1.0,0.65,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.7983333333333333,1.0,0.6333333333333333,0.75,1,25 -special,0.7833333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -colgate,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -leaf,0.73,1.0,0.7499999999999999,0.8166666666666667,1,26 -tube,0.8083333333333332,1.0,0.75,0.8166666666666667,1,26 -cell,0.53,1.0,0.5499999999999999,0.6666666666666667,1,26 -mug,0.6183333333333334,1.0,0.5333333333333333,0.6666666666666666,1,26 -yogurt,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333334,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.7933333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -wheat,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.8266666666666665,1.0,0.7833333333333333,0.85,1,26 -toothbrush,0.625,1.0,0.55,0.6833333333333333,1,26 -binder,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.7333333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -pliers,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,24 -water,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -thins,0.5166666666666666,1.0,0.5,0.6333333333333333,1,26 -package,0.5416666666666667,0.9,0.5499999999999999,0.6,1,26 -k,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -fruit,0.6083333333333333,0.6,0.8333333333333333,0.6566666666666667,2,25 -apple,0.6666666666666666,1.0,0.65,0.75,1,25 -bell,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -battery,0.6933333333333332,1.0,0.5666666666666667,0.7,1,26 -jar,0.6833333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -bound,0.7016666666666667,1.0,0.55,0.6833333333333333,1,26 -lettuce,0.6266666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -brush,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.775,1.0,0.65,0.75,1,26 -lime,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -toothpaste,0.48,1.0,0.41666666666666663,0.5833333333333333,1,26 -top,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -spiral,0.7383333333333333,1.0,0.65,0.75,1,26 -handles,0.6083333333333333,1.0,0.4333333333333333,0.6,1,25 -camera,0.78,1.0,0.7166666666666666,0.8,1,26 -eraser,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.665,1.0,0.55,0.6833333333333333,1,26 -pitcher,0.6466666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -phone,0.5716666666666665,1.0,0.5166666666666666,0.65,1,26 -stick,0.6633333333333333,1.0,0.55,0.6833333333333333,1,25 -cereal,0.5883333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -bulb,0.9099999999999999,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.75,1.0,0.5333333333333333,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -can,0.8933333333333333,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.8583333333333332,1.0,0.7833333333333333,0.85,1,26 -plate,0.7683333333333333,1.0,0.5833333333333333,0.7166666666666667,1,25 -calculator,0.43166666666666664,0.6,0.6333333333333333,0.5466666666666666,1,26 -tissues,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -juice,0.6433333333333333,1.0,0.55,0.6833333333333333,1,26 -pink,0.6966666666666665,1.0,0.6333333333333333,0.7333333333333333,1,25 -lemon,0.61,1.0,0.5333333333333333,0.6666666666666666,1,26 -peach,0.6466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -bowl,0.5383333333333333,1.0,0.4499999999999999,0.6,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8550000000000001,1.0,0.8333333333333333,0.8833333333333332,1,26 -blue,0.5933333333333334,1.0,0.5833333333333333,0.7,1,25 -used,0.5633333333333332,1.0,0.4833333333333332,0.6166666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -ball,0.6833333333333333,1.0,0.65,0.75,1,25 -notebook,0.7466666666666667,1.0,0.6499999999999999,0.75,1,26 -garlic,0.4683333333333334,1.0,0.4499999999999999,0.6,1,26 -cleaning,0.7783333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -pair,0.9,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666667,1,25 -tomato,0.5533333333333333,0.9,0.4999999999999999,0.6166666666666666,1,26 -cellphone,0.7066666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -potato,0.61,1.0,0.5166666666666666,0.65,1,25 -light,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.642422839506173 -F1-Score: 0.6818650793650795 -Precision: 0.9074074074074074 -Recall: 0.5961419753086419 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6466666666666666,1.0,0.5833333333333333,0.7,1,24 -yellow,0.9466666666666667,0.8666666666666666,1.0,0.9133333333333333,6,24 -looks,0.6716666666666666,0.9,0.65,0.6833333333333333,1,24 -keyboard,0.5349999999999999,1.0,0.5166666666666666,0.65,1,26 -glue,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.5349999999999999,1.0,0.5166666666666666,0.65,1,26 -cup,0.5066666666666666,0.5,0.6666666666666666,0.5466666666666666,1,26 -folded,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -jam,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -black,0.8533333333333333,0.675,1.0,0.7923809523809523,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -soccer,0.5183333333333333,1.0,0.5166666666666666,0.65,1,26 -hat,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -brown,0.915,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.55,1.0,0.5666666666666667,0.6833333333333333,1,25 -handle,0.605,1.0,0.6333333333333333,0.7333333333333333,1,25 -food,0.8100000000000002,1.0,0.6833333333333333,0.7833333333333333,1,25 -towel,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -stapler,0.58,1.0,0.5833333333333333,0.7,1,26 -onion,0.7016666666666667,1.0,0.6,0.7166666666666667,1,26 -bag,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.6466666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.5633333333333332,1.0,0.6166666666666666,0.7166666666666666,1,25 -special,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -colgate,0.4333333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -leaf,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.735,1.0,0.5666666666666667,0.7,1,26 -cell,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -mug,0.73,1.0,0.5499999999999999,0.6833333333333333,1,25 -yogurt,0.755,1.0,0.65,0.75,1,26 -plantain,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -red,0.9400000000000001,0.85,1.0,0.9,3,26 -pepper,0.5966666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -wheat,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.7233333333333334,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -binder,0.6916666666666667,1.0,0.5833333333333333,0.7,1,26 -baseball,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -pliers,0.5166666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.78,1.0,0.6333333333333333,0.75,1,26 -thins,0.6066666666666667,1.0,0.4999999999999999,0.65,1,26 -package,0.5133333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -k,0.7266666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -jelly,0.6133333333333333,1.0,0.6,0.7166666666666667,1,26 -fruit,0.5716666666666667,0.6166666666666666,0.7333333333333333,0.65,2,25 -apple,0.4333333333333333,0.85,0.5666666666666667,0.6166666666666666,1,25 -bell,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.7849999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -jar,0.73,1.0,0.7166666666666666,0.8,1,26 -bound,0.6966666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -lettuce,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -brush,0.51,1.0,0.4666666666666666,0.6166666666666666,1,26 -scissors,0.55,1.0,0.5166666666666666,0.65,1,26 -lime,0.7383333333333333,1.0,0.6333333333333333,0.75,1,25 -toothpaste,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -spiral,0.8800000000000001,1.0,0.8333333333333333,0.8833333333333332,1,26 -handles,0.6133333333333334,1.0,0.4833333333333333,0.6333333333333334,1,25 -camera,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -eraser,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.9266666666666667,0.825,1.0,0.8857142857142858,5,21 -banana,0.78,1.0,0.6833333333333333,0.7666666666666666,1,26 -pitcher,0.4966666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -phone,0.41666666666666663,1.0,0.4333333333333333,0.5833333333333333,1,26 -stick,0.585,1.0,0.4666666666666666,0.6166666666666666,1,25 -cereal,0.5716666666666665,1.0,0.4499999999999999,0.6,1,26 -bulb,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.7683333333333333,1.0,0.7166666666666666,0.8,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5433333333333333,1.0,0.41666666666666663,0.5833333333333333,1,26 -can,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -coca,0.5466666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -crackers,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,24 -calculator,0.45166666666666655,0.95,0.38333333333333336,0.5333333333333333,1,26 -tissues,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -juice,0.7983333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.7766666666666666,1.0,0.7,0.7833333333333333,1,25 -lemon,0.6133333333333333,1.0,0.5166666666666666,0.65,1,26 -peach,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666666,1,26 -bowl,0.6583333333333333,1.0,0.6,0.7166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.75,1.0,0.7999999999999999,0.85,1,26 -blue,0.55,1.0,0.5999999999999999,0.7,1,25 -used,0.775,1.0,0.8166666666666667,0.8666666666666666,1,23 -energizer,0,0,0,0,1,26 -pear,0.8083333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -ball,0.8716666666666667,1.0,0.7833333333333333,0.85,1,25 -notebook,0.69,1.0,0.6499999999999999,0.75,1,26 -garlic,0.5166666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -cleaning,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -pair,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,27 -container,0.6266666666666667,1.0,0.5833333333333333,0.7,1,25 -tomato,0.5633333333333332,0.95,0.4833333333333334,0.6,1,26 -cellphone,0.6833333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -potato,0.6466666666666667,1.0,0.6833333333333333,0.7666666666666666,1,25 -light,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8366666666666667,1.0,0.7666666666666667,0.86,2,26 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6380555555555555 -F1-Score: 0.6842724867724868 -Precision: 0.907253086419753 -Recall: 0.6015432098765431 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7033333333333334,1.0,0.5333333333333333,0.6666666666666667,1,24 -yellow,0.9133333333333333,0.8,1.0,0.8733333333333334,6,25 -looks,0.6283333333333333,0.75,0.6166666666666666,0.6,1,24 -keyboard,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -glue,0.5966666666666667,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.6583333333333334,1.0,0.5,0.65,1,26 -flashlight,0.655,1.0,0.6499999999999999,0.75,1,26 -cup,0.3983333333333333,0.5,0.55,0.5033333333333333,1,26 -folded,0.7066666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -jam,0.6016666666666667,1.0,0.5166666666666666,0.65,1,26 -black,1.0,1.0,1.0,1.0,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.675,1.0,0.6166666666666666,0.7333333333333333,1,26 -soccer,0.29166666666666663,1.0,0.4166666666666667,0.5666666666666667,1,26 -hat,0.8066666666666666,1.0,0.7166666666666666,0.8,1,26 -brown,0.93,1.0,0.9,0.9400000000000001,2,26 -coffee,0.7933333333333333,1.0,0.7,0.7833333333333333,1,25 -handle,0.615,1.0,0.5333333333333332,0.6666666666666666,1,26 -food,0.6416666666666666,1.0,0.7,0.7833333333333333,1,25 -towel,0.5583333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -chips,0.37666666666666665,1.0,0.45,0.6,1,26 -stapler,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -onion,0.4966666666666667,0.8,0.55,0.5833333333333333,1,26 -bag,0.7216666666666667,1.0,0.65,0.75,1,26 -sponge,0.7,1.0,0.7,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7083333333333334,1.0,0.75,0.8166666666666667,1,25 -special,0.7166666666666666,1.0,0.7166666666666666,0.8,1,26 -colgate,0.8099999999999999,1.0,0.7333333333333333,0.8166666666666667,1,26 -leaf,0.78,1.0,0.65,0.7666666666666667,1,26 -tube,0.7466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -cell,0.6416666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -mug,0.5583333333333333,1.0,0.4833333333333334,0.6166666666666666,1,25 -yogurt,0.75,1.0,0.6166666666666666,0.7333333333333333,1,26 -plantain,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -wheat,0.7166666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -kleenex,0.72,1.0,0.6166666666666666,0.7333333333333333,1,26 -toothbrush,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -binder,0.6466666666666667,1.0,0.6,0.7166666666666667,1,26 -baseball,0.655,1.0,0.6166666666666666,0.7333333333333333,1,26 -pliers,0.8550000000000001,1.0,0.8333333333333333,0.8833333333333332,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -thins,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -package,0.78,0.85,0.7166666666666666,0.7,1,26 -k,0.6966666666666665,1.0,0.5833333333333333,0.7,1,26 -jelly,0.5966666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -fruit,0.6933333333333335,0.6666666666666667,0.8666666666666666,0.7166666666666666,2,26 -apple,0.5666666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -bell,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -battery,0.5733333333333334,1.0,0.5166666666666666,0.65,1,26 -jar,0.6733333333333332,1.0,0.5833333333333333,0.7,1,26 -bound,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.55,1.0,0.5166666666666666,0.65,1,26 -brush,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.7266666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -lime,0.7983333333333333,1.0,0.6333333333333333,0.75,1,25 -toothpaste,0.8666666666666666,1.0,0.7833333333333333,0.85,1,26 -top,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -spiral,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -handles,0.75,1.0,0.7,0.7833333333333333,1,25 -camera,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -eraser,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6666666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -pitcher,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -phone,0.6383333333333334,1.0,0.55,0.6833333333333333,1,26 -stick,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -cereal,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -bulb,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -hair,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.575,1.0,0.5166666666666666,0.65,1,26 -can,0.8733333333333333,1.0,0.8333333333333333,0.9,2,25 -coca,0.6849999999999999,1.0,0.5666666666666667,0.7,1,26 -crackers,0.6799999999999999,1.0,0.65,0.75,1,26 -plate,0.7233333333333334,1.0,0.5666666666666667,0.7,1,24 -calculator,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -tissues,0.6466666666666667,1.0,0.4999999999999999,0.65,1,26 -juice,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -pink,0.61,1.0,0.6333333333333332,0.7333333333333333,1,26 -lemon,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -peach,0.6300000000000001,1.0,0.5,0.65,1,26 -bowl,0.6183333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.735,1.0,0.65,0.75,1,26 -blue,0.48666666666666664,0.6,0.5666666666666667,0.52,1,25 -used,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666666,1,23 -energizer,0,0,0,0,1,26 -pear,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -ball,0.8066666666666666,1.0,0.6333333333333333,0.75,1,25 -notebook,0.7916666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -garlic,0.6183333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -cleaning,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -pair,0.885,1.0,0.8333333333333333,0.9,2,27 -container,0.8433333333333334,1.0,0.7,0.8,1,26 -tomato,0.6733333333333333,0.55,0.7333333333333333,0.5900000000000001,1,26 -cellphone,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -potato,0.5583333333333333,1.0,0.5333333333333333,0.6666666666666666,1,25 -light,0.8483333333333334,1.0,0.8,0.8800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.925,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6524074074074073 -F1-Score: 0.6866049382716048 -Precision: 0.9029320987654321 -Recall: 0.6041666666666665 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6716666666666666,1.0,0.6,0.7166666666666667,1,25 -yellow,0.9266666666666667,0.8333333333333333,1.0,0.8933333333333333,6,24 -looks,0.6333333333333333,0.7,0.55,0.5666666666666667,1,24 -keyboard,0.75,1.0,0.6666666666666666,0.7666666666666667,1,26 -glue,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.76,1.0,0.6166666666666666,0.7333333333333334,1,26 -flashlight,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -cup,0.6083333333333334,0.5,0.8166666666666667,0.5966666666666668,1,26 -folded,0.9083333333333332,1.0,0.85,0.8999999999999998,1,26 -jam,0.845,1.0,0.6833333333333333,0.7833333333333333,1,26 -black,1.0,1.0,1.0,1.0,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -soccer,0.7183333333333334,1.0,0.65,0.75,1,26 -hat,0.605,1.0,0.4833333333333333,0.6333333333333333,1,26 -brown,0.9266666666666665,1.0,0.9,0.9400000000000001,2,24 -coffee,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -handle,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -food,0.6483333333333332,1.0,0.4833333333333333,0.6333333333333333,1,24 -towel,0.38,1.0,0.4999999999999999,0.6333333333333333,1,26 -chips,0.7,1.0,0.6833333333333333,0.7666666666666667,1,26 -stapler,0.6683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -onion,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -bag,0.5349999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -sponge,0.65,1.0,0.65,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -special,0.76,1.0,0.6666666666666666,0.7666666666666666,1,26 -colgate,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -leaf,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -tube,0.655,1.0,0.6,0.7166666666666667,1,26 -cell,0.6966666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -mug,0.6583333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -yogurt,0.6883333333333334,1.0,0.65,0.75,1,26 -plantain,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -red,0.8900000000000002,0.75,1.0,0.8400000000000001,3,24 -pepper,0.78,1.0,0.6333333333333333,0.75,1,26 -wheat,0.6849999999999999,1.0,0.6499999999999999,0.75,1,26 -kleenex,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -toothbrush,0.6983333333333334,1.0,0.55,0.6833333333333333,1,26 -binder,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.5933333333333334,1.0,0.4333333333333333,0.6,1,26 -pliers,0.625,1.0,0.5333333333333333,0.6666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -thins,0.6166666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -package,0.6883333333333332,0.95,0.6,0.6833333333333333,1,26 -k,0.5516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -jelly,0.655,1.0,0.5833333333333333,0.7,1,26 -fruit,0.6483333333333333,0.5666666666666667,0.8666666666666666,0.6633333333333333,2,25 -apple,0.4683333333333334,1.0,0.5166666666666666,0.65,1,25 -bell,0.6333333333333334,1.0,0.5833333333333333,0.7,1,26 -battery,0.625,1.0,0.6833333333333333,0.7666666666666667,1,26 -jar,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -bound,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.6666666666666666,1.0,0.6666666666666666,0.75,1,26 -brush,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.6916666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -lime,0.6416666666666666,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.6333333333333333,1.0,0.6666666666666666,0.75,1,26 -top,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -spiral,0.7216666666666667,1.0,0.5833333333333333,0.7,1,26 -handles,0.5249999999999999,1.0,0.5499999999999999,0.6666666666666667,1,25 -camera,0.7166666666666666,1.0,0.65,0.75,1,26 -eraser,0.8266666666666668,1.0,0.6833333333333333,0.7833333333333334,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7849999999999999,0.9,0.6833333333333333,0.7166666666666667,1,26 -pitcher,0.775,1.0,0.7666666666666666,0.8333333333333333,1,26 -phone,0.5933333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -stick,0.4999999999999999,1.0,0.4666666666666666,0.6,1,25 -cereal,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -bulb,0.8550000000000001,1.0,0.8333333333333334,0.9000000000000001,2,26 -hair,0.6666666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.605,1.0,0.5833333333333333,0.7,1,26 -can,0.93,1.0,0.9,0.9400000000000001,2,25 -coca,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.4083333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -plate,0.6833333333333333,1.0,0.6499999999999999,0.75,1,25 -calculator,0.5416666666666666,0.5,0.6666666666666666,0.5466666666666666,1,26 -tissues,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -juice,0.53,1.0,0.5333333333333333,0.6666666666666667,1,26 -pink,0.7416666666666666,1.0,0.7,0.7833333333333333,1,25 -lemon,0.6100000000000001,1.0,0.5,0.65,1,26 -peach,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -bowl,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -blue,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -used,0.6716666666666666,1.0,0.6,0.7166666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -ball,0.7666666666666666,1.0,0.7166666666666666,0.8,1,25 -notebook,0.6083333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -garlic,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -cleaning,0.8083333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -pair,0.8583333333333332,1.0,0.8333333333333333,0.9,2,26 -container,0.6316666666666667,1.0,0.5,0.65,1,26 -tomato,0.445,0.65,0.4833333333333333,0.5133333333333334,1,26 -cellphone,0.5933333333333334,1.0,0.5166666666666666,0.65,1,26 -potato,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -light,0.8933333333333333,1.0,0.8666666666666668,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9016666666666667,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6474691358024692 -F1-Score: 0.6869444444444446 -Precision: 0.9013888888888888 -Recall: 0.607716049382716 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6050000000000001,1.0,0.5333333333333333,0.6666666666666667,1,25 -yellow,0.9066666666666668,0.7666666666666666,1.0,0.8466666666666667,6,24 -looks,0.5816666666666667,0.85,0.5999999999999999,0.6333333333333333,1,24 -keyboard,0.6516666666666666,1.0,0.5666666666666667,0.7,1,26 -glue,0.69,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -flashlight,0.7466666666666667,1.0,0.6499999999999999,0.75,1,26 -cup,0.17833333333333332,0.5,0.5166666666666666,0.4833333333333333,1,26 -folded,0.35833333333333334,1.0,0.4833333333333334,0.6166666666666666,1,26 -jam,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -black,0.8966666666666665,0.7916666666666667,1.0,0.8657142857142857,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -soccer,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -hat,0.4833333333333333,1.0,0.5,0.6333333333333333,1,26 -brown,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,24 -coffee,0.76,1.0,0.6666666666666666,0.7666666666666666,1,26 -handle,0.8083333333333332,1.0,0.7166666666666666,0.8,1,25 -food,0.8216666666666667,1.0,0.7833333333333333,0.85,1,25 -towel,0.525,1.0,0.5166666666666666,0.65,1,26 -chips,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.44666666666666666,1.0,0.4833333333333333,0.6166666666666667,1,26 -onion,0.705,1.0,0.7,0.7833333333333333,1,26 -bag,0.7816666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -sponge,0.61,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -special,0.4583333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -colgate,0.7483333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -leaf,0.625,1.0,0.5999999999999999,0.7166666666666667,1,26 -tube,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -mug,0.49333333333333335,1.0,0.4,0.5666666666666667,1,26 -yogurt,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -plantain,0.55,1.0,0.4666666666666666,0.6166666666666667,1,26 -red,0.9400000000000001,0.85,1.0,0.9,3,26 -pepper,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -wheat,0.625,1.0,0.55,0.6666666666666666,1,26 -kleenex,0.6766666666666666,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.73,1.0,0.5833333333333333,0.7166666666666667,1,26 -binder,0.73,1.0,0.6833333333333333,0.7666666666666666,1,26 -baseball,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -pliers,0.7466666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -thins,0.55,1.0,0.5166666666666666,0.65,1,26 -package,0.5583333333333333,0.85,0.6333333333333333,0.6333333333333334,1,26 -k,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -fruit,0.7183333333333334,0.6833333333333332,0.8666666666666666,0.7066666666666667,2,27 -apple,0.56,0.95,0.5333333333333333,0.65,1,25 -bell,0.625,1.0,0.55,0.6833333333333333,1,26 -battery,0.31666666666666665,1.0,0.4166666666666667,0.5666666666666667,1,26 -jar,0.7100000000000001,1.0,0.6166666666666666,0.7333333333333334,1,26 -bound,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -lettuce,0.5716666666666665,1.0,0.5333333333333333,0.6666666666666667,1,26 -brush,0.6549999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -scissors,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -lime,0.3916666666666667,1.0,0.4166666666666667,0.5666666666666667,1,25 -toothpaste,0.655,1.0,0.65,0.75,1,26 -top,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -spiral,0.4466666666666666,1.0,0.4333333333333333,0.5833333333333333,1,26 -handles,0.7183333333333334,1.0,0.5666666666666667,0.7,1,25 -camera,0.775,1.0,0.6833333333333333,0.7833333333333333,1,26 -eraser,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.9666666666666668,0.9,1.0,0.9333333333333332,5,22 -banana,0.7733333333333333,0.95,0.6166666666666666,0.7,1,26 -pitcher,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -phone,0.7183333333333334,1.0,0.55,0.6833333333333333,1,26 -stick,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,25 -cereal,0.7666666666666666,1.0,0.7333333333333332,0.8,1,26 -bulb,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,26 -hair,0.7433333333333334,1.0,0.6333333333333333,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -can,0.9,1.0,0.9,0.9400000000000001,2,26 -coca,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -crackers,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -plate,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -calculator,0.5783333333333334,0.8,0.5833333333333333,0.6,1,26 -tissues,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -juice,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.7316666666666667,1.0,0.5666666666666667,0.7,1,25 -lemon,0.5383333333333333,1.0,0.45,0.6166666666666667,1,26 -peach,0.8666666666666666,1.0,0.8666666666666666,0.9,1,26 -bowl,0.6433333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.75,1.0,0.7166666666666666,0.8,1,26 -blue,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,25 -used,0.5766666666666667,1.0,0.5,0.65,1,24 -energizer,0,0,0,0,1,26 -pear,0.525,1.0,0.5499999999999999,0.6666666666666666,1,26 -ball,0.7383333333333334,1.0,0.7,0.7833333333333333,1,25 -notebook,0.7133333333333334,1.0,0.6499999999999999,0.75,1,26 -garlic,0.8516666666666668,1.0,0.7333333333333333,0.8166666666666667,1,26 -cleaning,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -pair,0.9066666666666666,1.0,0.8666666666666668,0.9200000000000002,2,27 -container,0.4883333333333333,1.0,0.4333333333333333,0.5833333333333333,1,25 -tomato,0.6100000000000001,0.8,0.6333333333333333,0.6166666666666667,1,26 -cellphone,0.5066666666666666,1.0,0.4833333333333332,0.6333333333333333,1,26 -potato,0.5933333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -light,0.95,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6350617283950618 -F1-Score: 0.6826455026455025 -Precision: 0.9045524691358025 -Recall: 0.6015432098765432 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.63,1.0,0.6333333333333333,0.7333333333333333,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.5383333333333333,1.0,0.5166666666666666,0.65,1,24 -keyboard,0.6133333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -glue,0.705,1.0,0.6166666666666666,0.7333333333333334,1,26 -milk,0,0,0,0,1,26 -cola,0.735,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.6583333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -cup,0.5799999999999998,0.5,0.7666666666666666,0.58,1,26 -folded,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -jam,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -black,0.78,0.6083333333333334,1.0,0.7523809523809524,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -soccer,0.8,1.0,0.7166666666666666,0.8,1,26 -hat,0.6766666666666666,1.0,0.65,0.75,1,26 -brown,0.8633333333333333,1.0,0.8333333333333333,0.9,2,24 -coffee,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -handle,0.8416666666666666,1.0,0.8166666666666667,0.8666666666666668,1,26 -food,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -towel,0.7100000000000001,1.0,0.5833333333333333,0.7,1,26 -chips,0.7933333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -stapler,0.6433333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -onion,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -bag,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -sponge,0.7933333333333333,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,25 -special,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -colgate,0.625,1.0,0.6166666666666666,0.7166666666666666,1,26 -leaf,0.7166666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -tube,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -cell,0.38000000000000006,0.75,0.5499999999999999,0.5399999999999999,1,26 -mug,0.6016666666666667,1.0,0.5166666666666666,0.65,1,26 -yogurt,0.7933333333333333,1.0,0.6333333333333333,0.75,1,26 -plantain,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -red,0.9833333333333334,0.95,1.0,0.9666666666666666,3,24 -pepper,0.5333333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -wheat,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -kleenex,0.6916666666666667,1.0,0.6833333333333332,0.7666666666666666,1,26 -toothbrush,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -binder,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -baseball,0.6433333333333333,1.0,0.5166666666666666,0.65,1,26 -pliers,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.655,1.0,0.5833333333333333,0.7,1,26 -thins,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -package,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -jelly,0.86,1.0,0.8333333333333333,0.8833333333333332,1,26 -fruit,0.795,0.7166666666666667,0.9333333333333332,0.78,2,25 -apple,0.5516666666666666,1.0,0.4333333333333334,0.6,1,25 -bell,0.6716666666666666,1.0,0.65,0.75,1,26 -battery,0.7649999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -jar,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -lettuce,0.6966666666666665,1.0,0.6333333333333332,0.7333333333333333,1,26 -brush,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -lime,0.8299999999999998,1.0,0.7666666666666666,0.8333333333333333,1,25 -toothpaste,0.86,1.0,0.7833333333333333,0.85,1,26 -top,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -spiral,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -handles,0.6,1.0,0.5833333333333333,0.7,1,25 -camera,0.695,1.0,0.5,0.65,1,26 -eraser,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.6716666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -pitcher,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -phone,0.6433333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -stick,0.805,1.0,0.7166666666666666,0.8,1,25 -cereal,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -bulb,0.8816666666666666,1.0,0.8333333333333334,0.9000000000000001,2,26 -hair,0.55,1.0,0.4666666666666666,0.6166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.575,1.0,0.6833333333333333,0.7666666666666667,1,26 -can,0.915,1.0,0.8666666666666668,0.9200000000000002,2,25 -coca,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -crackers,0.655,1.0,0.5999999999999999,0.7166666666666667,1,26 -plate,0.6083333333333332,1.0,0.5333333333333332,0.6666666666666666,1,25 -calculator,0.8716666666666667,0.95,0.8,0.8333333333333333,1,26 -tissues,0.5216666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -juice,0.605,1.0,0.6333333333333333,0.7333333333333333,1,26 -pink,0.5816666666666667,1.0,0.5333333333333333,0.6666666666666666,1,25 -lemon,0.6933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -peach,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.5549999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5516666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -blue,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -used,0.78,1.0,0.6333333333333333,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.7233333333333333,1.0,0.6499999999999999,0.75,1,26 -ball,0.71,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.40166666666666667,1.0,0.4,0.5666666666666667,1,26 -garlic,0.7466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -cleaning,0.7216666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -pair,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -container,0.505,1.0,0.5666666666666667,0.6833333333333333,1,26 -tomato,0.7,0.95,0.65,0.7166666666666667,1,26 -cellphone,0.3916666666666667,0.7,0.4999999999999999,0.52,1,26 -potato,0.76,1.0,0.6166666666666666,0.7333333333333333,1,25 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.8566666666666667,1.0,0.8,0.8800000000000001,2,26 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6552314814814815 -F1-Score: 0.6940035273368607 -Precision: 0.9085648148148148 -Recall: 0.6134259259259258 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,24 -yellow,0.8516666666666668,0.6833333333333333,1.0,0.8,6,23 -looks,0.6183333333333334,0.95,0.5166666666666666,0.6166666666666667,1,24 -keyboard,0.6166666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -glue,0.6849999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.4883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -cup,0.5266666666666666,0.5,0.5833333333333333,0.5233333333333332,1,26 -folded,0.7066666666666668,1.0,0.6666666666666666,0.7666666666666667,1,26 -jam,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -black,0.9099999999999999,0.7833333333333333,1.0,0.86,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.51,1.0,0.5333333333333333,0.6666666666666666,1,26 -soccer,0.7683333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -hat,0.6883333333333332,1.0,0.65,0.75,1,26 -brown,0.8150000000000001,1.0,0.7666666666666667,0.8600000000000001,2,24 -coffee,0.6566666666666666,1.0,0.4999999999999999,0.65,1,25 -handle,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -food,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,24 -towel,0.725,1.0,0.6666666666666666,0.7666666666666666,1,26 -chips,0.7266666666666667,1.0,0.7166666666666666,0.8,1,26 -stapler,0.655,1.0,0.5833333333333333,0.7,1,26 -onion,0.6683333333333333,1.0,0.6,0.7166666666666667,1,26 -bag,0.6666666666666666,1.0,0.6499999999999999,0.75,1,26 -sponge,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.6766666666666666,1.0,0.6,0.7166666666666667,1,25 -special,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -colgate,0.8800000000000001,1.0,0.7833333333333333,0.85,1,26 -leaf,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -tube,0.8466666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -cell,0.48999999999999994,0.55,0.6833333333333333,0.5533333333333335,1,26 -mug,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -yogurt,0.705,1.0,0.6499999999999999,0.75,1,26 -plantain,0.665,1.0,0.5499999999999999,0.6833333333333333,1,26 -red,0.9633333333333333,0.9166666666666666,1.0,0.9466666666666667,3,25 -pepper,0.7716666666666667,1.0,0.6499999999999999,0.75,1,26 -wheat,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -binder,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -baseball,0.8416666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -pliers,0.6466666666666666,1.0,0.6499999999999999,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -thins,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -package,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -k,0.7216666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -jelly,0.6133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -fruit,0.7583333333333332,0.8,0.8333333333333334,0.7833333333333334,2,25 -apple,0.3883333333333333,0.95,0.41666666666666663,0.5333333333333333,1,25 -bell,0.7216666666666667,1.0,0.65,0.75,1,26 -battery,0.6266666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -jar,0.6666666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -bound,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -lettuce,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666667,1,26 -brush,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -scissors,0.6666666666666667,1.0,0.5666666666666667,0.7,1,26 -lime,0.7,1.0,0.6,0.7166666666666666,1,25 -toothpaste,0.7816666666666666,1.0,0.6833333333333333,0.7833333333333334,1,26 -top,0.7083333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -spiral,0.7433333333333334,1.0,0.65,0.75,1,26 -handles,0.7816666666666667,1.0,0.6333333333333333,0.75,1,25 -camera,0.65,1.0,0.5499999999999999,0.6833333333333333,1,26 -eraser,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.8483333333333334,0.6333333333333333,1.0,0.76,5,21 -banana,0.805,1.0,0.7166666666666666,0.8,1,26 -pitcher,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -phone,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -stick,0.4883333333333333,1.0,0.4499999999999999,0.6,1,25 -cereal,0.7083333333333333,1.0,0.65,0.75,1,26 -bulb,0.835,1.0,0.8,0.8800000000000001,2,27 -hair,0.7533333333333333,1.0,0.5666666666666667,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.65,1.0,0.5833333333333333,0.7,1,26 -can,0.8933333333333333,1.0,0.8666666666666666,0.9199999999999999,2,25 -coca,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -crackers,0.6766666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -plate,0.65,1.0,0.5333333333333333,0.6666666666666667,1,25 -calculator,0.67,0.8,0.6166666666666666,0.6166666666666667,1,26 -tissues,0.6466666666666666,1.0,0.6499999999999999,0.75,1,26 -juice,0.8300000000000001,1.0,0.7499999999999999,0.8166666666666667,1,26 -pink,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,25 -lemon,0.4383333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -peach,0.58,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.705,1.0,0.6499999999999999,0.75,1,26 -blue,0.5266666666666666,1.0,0.5166666666666666,0.65,1,25 -used,0.5333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.7466666666666667,1.0,0.7166666666666666,0.8,1,26 -ball,0.5133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,25 -notebook,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -garlic,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -cleaning,0.6266666666666667,1.0,0.6333333333333332,0.7333333333333333,1,26 -pair,0.8833333333333332,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -tomato,0.6333333333333333,0.85,0.5333333333333333,0.6,1,26 -cellphone,0.42333333333333334,0.65,0.6333333333333333,0.5566666666666666,1,26 -potato,0.725,1.0,0.5166666666666666,0.6666666666666667,1,25 -light,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8716666666666667,1.0,0.8333333333333334,0.9000000000000001,2,26 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6580555555555556 -F1-Score: 0.6916666666666669 -Precision: 0.8987654320987654 -Recall: 0.615432098765432 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.615,1.0,0.4333333333333334,0.6,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.7466666666666667,0.85,0.7666666666666666,0.7333333333333333,1,24 -keyboard,0.625,1.0,0.5999999999999999,0.7166666666666667,1,26 -glue,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.8099999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -flashlight,0.7216666666666666,1.0,0.6,0.7166666666666667,1,26 -cup,0.525,0.6,0.7,0.5733333333333334,1,26 -folded,0.4883333333333334,1.0,0.45,0.6,1,26 -jam,0.5133333333333334,1.0,0.5166666666666666,0.65,1,26 -black,0.9333333333333333,0.8333333333333333,1.0,0.8933333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -soccer,0.63,1.0,0.5833333333333333,0.7,1,26 -hat,0.7266666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -brown,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,24 -coffee,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -handle,0.7466666666666667,1.0,0.75,0.8166666666666667,1,25 -food,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666667,1,25 -towel,0.7333333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -chips,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.47999999999999987,1.0,0.4499999999999999,0.6,1,26 -onion,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -bag,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7516666666666667,1.0,0.6499999999999999,0.75,1,26 -special,0.76,1.0,0.6666666666666666,0.7666666666666666,1,26 -colgate,0.6383333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -leaf,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -tube,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -cell,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -mug,0.6216666666666666,1.0,0.5833333333333333,0.7,1,26 -yogurt,0.53,1.0,0.5,0.6333333333333333,1,26 -plantain,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -red,0.93,0.8166666666666667,1.0,0.8800000000000001,3,26 -pepper,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -wheat,0.6499999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.7866666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -toothbrush,0.575,1.0,0.5166666666666666,0.65,1,26 -binder,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.8733333333333334,1.0,0.7833333333333333,0.85,1,26 -pliers,0.6749999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -thins,0.7649999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -package,0.5183333333333333,1.0,0.41666666666666663,0.5833333333333333,1,26 -k,0.4916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -jelly,0.7516666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -fruit,0.7816666666666666,0.8166666666666667,0.8666666666666666,0.8133333333333335,2,26 -apple,0.37499999999999994,1.0,0.4999999999999999,0.6333333333333333,1,25 -bell,0.705,1.0,0.65,0.75,1,26 -battery,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -jar,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -brush,0.48999999999999994,0.5,0.65,0.5366666666666666,1,26 -scissors,0.6766666666666666,1.0,0.5,0.65,1,26 -lime,0.7849999999999999,1.0,0.6333333333333333,0.75,1,25 -toothpaste,0.5966666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -top,0.505,1.0,0.4666666666666666,0.6166666666666667,1,26 -spiral,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -handles,0.7916666666666666,1.0,0.7166666666666666,0.8,1,25 -camera,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -eraser,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,23 -banana,0.725,1.0,0.7499999999999999,0.8166666666666667,1,26 -pitcher,0.71,1.0,0.65,0.75,1,26 -phone,0.775,1.0,0.7,0.7833333333333333,1,26 -stick,0.6983333333333334,1.0,0.6,0.7166666666666667,1,25 -cereal,0.56,1.0,0.45,0.6,1,26 -bulb,0.8516666666666666,1.0,0.8,0.8800000000000001,2,26 -hair,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -can,0.8933333333333333,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -crackers,0.6733333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -plate,0.575,1.0,0.5166666666666666,0.65,1,25 -calculator,0.375,1.0,0.4333333333333333,0.5833333333333333,1,26 -tissues,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -juice,0.65,1.0,0.5833333333333333,0.7,1,26 -pink,0.78,1.0,0.6833333333333333,0.7833333333333333,1,25 -lemon,0.73,1.0,0.7,0.7833333333333333,1,26 -peach,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.9216666666666666,1.0,0.85,0.9,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -blue,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -used,0.48166666666666663,0.5,0.6499999999999999,0.5366666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -ball,0.6333333333333334,1.0,0.5833333333333333,0.7,1,25 -notebook,0.4666666666666666,1.0,0.45,0.6,1,26 -garlic,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -cleaning,0.7,1.0,0.6499999999999999,0.75,1,26 -pair,0.9400000000000001,1.0,0.9,0.9400000000000001,2,27 -container,0.5583333333333333,1.0,0.4833333333333333,0.6333333333333333,1,25 -tomato,0.6900000000000001,0.85,0.7,0.7,1,26 -cellphone,0.7533333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -potato,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8733333333333334,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6524845679012345 -F1-Score: 0.688425925925926 -Precision: 0.905246913580247 -Recall: 0.6069444444444443 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6966666666666667,1.0,0.6,0.7166666666666667,1,24 -yellow,0.8850000000000001,0.725,1.0,0.819047619047619,6,24 -looks,0.545,0.8,0.6333333333333333,0.6166666666666667,1,24 -keyboard,0.6733333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -glue,0.7533333333333334,1.0,0.6333333333333333,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.8683333333333334,1.0,0.7833333333333333,0.85,1,26 -flashlight,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -cup,0.44666666666666666,0.5,0.5833333333333333,0.51,1,26 -folded,0.805,1.0,0.7166666666666666,0.8,1,26 -jam,0.58,1.0,0.5166666666666666,0.65,1,26 -black,0.9066666666666666,0.7833333333333333,1.0,0.86,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.735,1.0,0.65,0.75,1,26 -soccer,0.665,1.0,0.5999999999999999,0.7166666666666666,1,26 -hat,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -brown,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,25 -coffee,0.8216666666666667,1.0,0.7166666666666666,0.8,1,25 -handle,0.725,1.0,0.7,0.7833333333333333,1,26 -food,0.6016666666666667,1.0,0.5166666666666666,0.65,1,25 -towel,0.6366666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -chips,0.705,1.0,0.5999999999999999,0.7166666666666667,1,26 -stapler,0.5983333333333334,1.0,0.4666666666666666,0.6166666666666666,1,26 -onion,0.4916666666666666,1.0,0.4833333333333334,0.6166666666666666,1,26 -bag,0.6266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.5483333333333332,1.0,0.4833333333333333,0.6333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.575,1.0,0.5166666666666666,0.65,1,25 -special,0.5266666666666666,1.0,0.4499999999999999,0.6,1,26 -colgate,0.7100000000000001,1.0,0.6,0.7166666666666667,1,26 -leaf,0.6950000000000001,1.0,0.5499999999999999,0.6833333333333333,1,26 -tube,0.8,1.0,0.7166666666666666,0.8,1,26 -cell,0.445,0.55,0.5999999999999999,0.53,1,26 -mug,0.6466666666666667,1.0,0.5166666666666666,0.65,1,25 -yogurt,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.7716666666666666,0.85,0.7833333333333333,0.75,1,26 -red,0.8766666666666667,0.725,1.0,0.819047619047619,3,24 -pepper,0.44333333333333336,1.0,0.41666666666666663,0.5833333333333333,1,26 -wheat,0.5883333333333334,1.0,0.5,0.65,1,26 -kleenex,0.705,1.0,0.7,0.7833333333333334,1,26 -toothbrush,0.5966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -binder,0.7516666666666667,1.0,0.65,0.75,1,26 -baseball,0.7266666666666667,1.0,0.6,0.7166666666666667,1,26 -pliers,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -thins,0.6499999999999999,1.0,0.5833333333333333,0.7,1,26 -package,0.75,1.0,0.5833333333333333,0.7166666666666667,1,26 -k,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.605,1.0,0.5,0.65,1,26 -fruit,0.6399999999999999,0.55,0.8666666666666666,0.63,2,25 -apple,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -bell,0.5,1.0,0.5666666666666667,0.6833333333333333,1,26 -battery,0.615,1.0,0.5333333333333333,0.6666666666666667,1,26 -jar,0.6766666666666665,1.0,0.5499999999999999,0.6833333333333333,1,26 -bound,0.655,1.0,0.5666666666666667,0.7,1,26 -lettuce,0.6683333333333332,1.0,0.6,0.7166666666666667,1,26 -brush,0.5650000000000001,1.0,0.4666666666666666,0.6166666666666667,1,26 -scissors,0.8466666666666665,1.0,0.7833333333333333,0.85,1,26 -lime,0.7633333333333334,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.575,1.0,0.6166666666666666,0.7166666666666666,1,26 -top,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -spiral,0.5383333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -handles,0.63,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.8283333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -eraser,0.6066666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,19 -banana,0.5000000000000001,0.95,0.5333333333333333,0.6333333333333333,1,26 -pitcher,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -phone,0.8066666666666666,1.0,0.6333333333333333,0.75,1,26 -stick,0.48,1.0,0.45,0.6,1,25 -cereal,0.6683333333333333,1.0,0.5833333333333333,0.7,1,26 -bulb,0.8733333333333334,1.0,0.8333333333333333,0.9,2,26 -hair,0.73,1.0,0.6333333333333333,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6883333333333334,1.0,0.5333333333333333,0.6833333333333333,1,26 -can,0.8766666666666667,1.0,0.8333333333333333,0.9,2,25 -coca,0.58,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.605,1.0,0.5499999999999999,0.6833333333333333,1,26 -plate,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -calculator,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -tissues,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -juice,0.6833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -pink,0.735,1.0,0.6166666666666666,0.7333333333333333,1,25 -lemon,0.6799999999999999,1.0,0.65,0.75,1,26 -peach,0.43,1.0,0.4833333333333332,0.6166666666666666,1,26 -bowl,0.6966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -blue,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -used,0.8266666666666665,1.0,0.7166666666666666,0.8,1,24 -energizer,0,0,0,0,1,26 -pear,0.5666666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -ball,0.5549999999999999,1.0,0.5166666666666666,0.65,1,25 -notebook,0.675,1.0,0.6833333333333333,0.7666666666666666,1,26 -garlic,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -pair,0.8333333333333333,1.0,0.8333333333333333,0.9,2,27 -container,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -tomato,0.6599999999999999,0.6,0.7333333333333333,0.6066666666666667,1,26 -cellphone,0.47166666666666657,0.55,0.6333333333333333,0.5366666666666667,1,26 -potato,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -light,0.835,1.0,0.8,0.8800000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.6408024691358024 -F1-Score: 0.6779453262786596 -Precision: 0.89429012345679 -Recall: 0.6003086419753086 diff --git a/Validation/UW_raw_75_object_0.5.csv b/Validation/UW_raw_75_object_0.5.csv deleted file mode 100644 index 7258be3..0000000 --- a/Validation/UW_raw_75_object_0.5.csv +++ /dev/null @@ -1,2875 +0,0 @@ -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5983333333333334,1.0,0.5,0.65,1,25 -yellow,0.9500000000000002,0.8999999999999998,1.0,0.9400000000000001,6,25 -looks,0.6266666666666667,0.8,0.6,0.6333333333333333,1,24 -keyboard,0.8583333333333332,1.0,0.7833333333333333,0.85,1,26 -glue,0.6583333333333333,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.825,1.0,0.7,0.8,1,26 -flashlight,0.675,1.0,0.7,0.7833333333333333,1,26 -cup,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -folded,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -jam,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -black,0.9100000000000001,0.7833333333333333,1.0,0.86,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6966666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -soccer,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -hat,0.8099999999999999,1.0,0.65,0.7666666666666667,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.6416666666666667,1.0,0.55,0.6833333333333333,1,25 -handle,0.7166666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -food,0.5683333333333334,1.0,0.5166666666666666,0.65,1,26 -towel,0.5883333333333334,1.0,0.6,0.7166666666666667,1,26 -chips,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.5083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -onion,0.7666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -bag,0.7083333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -sponge,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.5466666666666666,1.0,0.5499999999999999,0.6666666666666666,1,25 -special,0.7416666666666667,1.0,0.65,0.75,1,26 -colgate,0.4333333333333334,1.0,0.5999999999999999,0.7,1,26 -leaf,0.73,1.0,0.7166666666666666,0.8,1,26 -tube,0.5466666666666666,1.0,0.5833333333333333,0.7,1,26 -cell,0.6083333333333334,0.5,0.75,0.5700000000000001,1,26 -mug,0.655,1.0,0.5833333333333333,0.7,1,25 -yogurt,0.705,1.0,0.65,0.75,1,26 -plantain,0.6333333333333333,0.9,0.5999999999999999,0.65,1,26 -red,0.9066666666666668,0.7666666666666667,1.0,0.8466666666666667,3,27 -pepper,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -wheat,0.5716666666666665,1.0,0.5166666666666666,0.65,1,26 -kleenex,0.8233333333333335,1.0,0.6833333333333333,0.7833333333333333,1,26 -toothbrush,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -binder,0.5933333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.655,1.0,0.5833333333333333,0.7,1,26 -pliers,0.6333333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.735,1.0,0.65,0.75,1,26 -thins,0.6433333333333333,1.0,0.5,0.65,1,26 -package,0.76,1.0,0.6499999999999999,0.75,1,26 -k,0.43499999999999994,1.0,0.4,0.5666666666666667,1,26 -jelly,0.6466666666666666,1.0,0.6499999999999999,0.75,1,26 -fruit,0.76,0.7333333333333334,0.8666666666666668,0.7666666666666667,2,25 -apple,0.6283333333333333,0.75,0.7,0.6333333333333333,1,26 -bell,0.5183333333333333,1.0,0.45,0.6,1,26 -battery,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -jar,0.6833333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -bound,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.5766666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -brush,0.5383333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -scissors,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -lime,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -toothpaste,0.755,1.0,0.7166666666666666,0.8,1,26 -top,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -spiral,0.7183333333333334,1.0,0.65,0.75,1,26 -handles,0.8150000000000001,1.0,0.6833333333333333,0.7833333333333333,1,25 -camera,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.7133333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5433333333333333,0.95,0.4666666666666666,0.5833333333333333,1,26 -pitcher,0.575,1.0,0.6166666666666666,0.7166666666666666,1,26 -phone,0.6799999999999999,1.0,0.5166666666666666,0.65,1,26 -stick,0.71,1.0,0.7,0.7833333333333333,1,25 -cereal,0.6816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -bulb,0.8933333333333333,1.0,0.8666666666666666,0.9199999999999999,2,27 -hair,0.6033333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -can,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.5466666666666666,1.0,0.5,0.6333333333333333,1,26 -crackers,0.73,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.6683333333333333,1.0,0.5833333333333333,0.7,1,24 -calculator,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -tissues,0.805,1.0,0.65,0.7666666666666667,1,26 -juice,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -pink,0.7016666666666667,1.0,0.5833333333333333,0.7,1,25 -lemon,0.38,1.0,0.4833333333333332,0.6166666666666666,1,26 -peach,0.5266666666666666,1.0,0.5833333333333333,0.7,1,26 -bowl,0.45,1.0,0.5,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6766666666666666,1.0,0.5666666666666667,0.7,1,26 -blue,0.5083333333333333,1.0,0.5,0.6333333333333333,1,25 -used,0.7466666666666667,1.0,0.7,0.7833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -ball,0.5066666666666666,1.0,0.4666666666666666,0.6166666666666667,1,25 -notebook,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -garlic,0.75,1.0,0.8,0.85,1,26 -cleaning,0.7416666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -pair,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -container,0.6666666666666666,1.0,0.7,0.7833333333333333,1,26 -tomato,0.4866666666666667,0.65,0.6333333333333333,0.5566666666666666,1,26 -cellphone,0.38666666666666666,0.5,0.6,0.52,1,26 -potato,0.6833333333333333,1.0,0.6333333333333332,0.7333333333333333,1,25 -light,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.9099999999999999,1.0,0.8666666666666666,0.9200000000000002,2,27 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6394598765432099 -F1-Score: 0.6853395061728395 -Precision: 0.9003086419753085 -Recall: 0.6080246913580247 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7716666666666667,1.0,0.6499999999999999,0.75,1,24 -yellow,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666665,6,24 -looks,0.6183333333333334,0.9,0.5333333333333333,0.6,1,24 -keyboard,0.51,1.0,0.5166666666666666,0.65,1,26 -glue,0.7466666666666666,1.0,0.7,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.76,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.5866666666666667,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.775,1.0,0.7333333333333333,0.8166666666666667,1,26 -jam,0.5333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -black,0.9066666666666668,0.75,1.0,0.8333333333333334,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.5216666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -soccer,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -hat,0.5966666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -brown,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -coffee,0.7083333333333333,1.0,0.7,0.7833333333333333,1,25 -handle,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -food,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,24 -towel,0.605,1.0,0.5833333333333333,0.7,1,26 -chips,0.6183333333333334,1.0,0.5,0.65,1,26 -stapler,0.7166666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -onion,0.7183333333333333,1.0,0.5666666666666667,0.7,1,26 -bag,0.65,1.0,0.5999999999999999,0.7166666666666666,1,26 -sponge,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6249999999999999,1.0,0.6333333333333333,0.7333333333333333,1,25 -special,0.5683333333333332,1.0,0.4833333333333333,0.6333333333333334,1,26 -colgate,0.6900000000000001,1.0,0.65,0.75,1,26 -leaf,0.8099999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -tube,0.6533333333333333,1.0,0.6,0.7166666666666667,1,26 -cell,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -mug,0.6716666666666666,1.0,0.6,0.7166666666666667,1,25 -yogurt,0.755,1.0,0.7166666666666666,0.8,1,26 -plantain,0.5266666666666666,0.95,0.4999999999999999,0.6,1,26 -red,0.8600000000000001,0.725,1.0,0.8238095238095238,3,24 -pepper,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -wheat,0.5933333333333334,1.0,0.4333333333333333,0.6,1,26 -kleenex,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -toothbrush,0.8,1.0,0.7,0.7833333333333333,1,26 -binder,0.5266666666666666,1.0,0.5833333333333333,0.7,1,26 -baseball,0.755,1.0,0.7166666666666666,0.8,1,26 -pliers,0.7516666666666667,1.0,0.65,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.76,1.0,0.7166666666666666,0.8,1,26 -thins,0.7133333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -package,0.585,1.0,0.5,0.65,1,26 -k,0.5083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -jelly,0.5966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -fruit,0.6799999999999999,0.65,0.9,0.73,2,25 -apple,0.45999999999999996,0.95,0.41666666666666663,0.5666666666666667,1,25 -bell,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -battery,0.7983333333333333,1.0,0.6333333333333333,0.75,1,26 -jar,0.7166666666666666,1.0,0.6666666666666666,0.75,1,26 -bound,0.5383333333333333,1.0,0.45,0.6,1,26 -lettuce,0.7133333333333333,1.0,0.5666666666666667,0.7,1,26 -brush,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -scissors,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -lime,0.7433333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -toothpaste,0.9016666666666666,1.0,0.8,0.8666666666666666,1,26 -top,0.5466666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -spiral,0.5766666666666667,1.0,0.5,0.65,1,26 -handles,0.6316666666666666,1.0,0.5166666666666666,0.6666666666666667,1,25 -camera,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -eraser,0.85,1.0,0.6833333333333333,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,19 -banana,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -pitcher,0.6333333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -phone,0.6499999999999999,1.0,0.5833333333333333,0.7,1,26 -stick,0.7483333333333333,1.0,0.5666666666666667,0.7,1,25 -cereal,0.5566666666666666,1.0,0.45,0.6,1,26 -bulb,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,26 -hair,0.775,1.0,0.6666666666666666,0.7666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.89,1.0,0.75,0.8333333333333334,1,26 -can,0.9066666666666668,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.6566666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -crackers,0.7183333333333334,1.0,0.6499999999999999,0.75,1,26 -plate,0.71,1.0,0.5999999999999999,0.7166666666666667,1,25 -calculator,0.5766666666666667,0.9,0.5666666666666667,0.6166666666666667,1,26 -tissues,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -juice,0.655,1.0,0.6166666666666666,0.7333333333333333,1,26 -pink,0.85,1.0,0.75,0.8333333333333333,1,25 -lemon,0.8300000000000001,1.0,0.7,0.8,1,26 -peach,0.71,1.0,0.5999999999999999,0.7166666666666667,1,26 -bowl,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5833333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -blue,0.5549999999999999,1.0,0.4499999999999999,0.6,1,25 -used,0.705,1.0,0.5999999999999999,0.7166666666666667,1,23 -energizer,0,0,0,0,1,26 -pear,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -ball,0.805,1.0,0.7666666666666666,0.8333333333333333,1,25 -notebook,0.58,1.0,0.4833333333333332,0.6333333333333333,1,26 -garlic,0.725,1.0,0.6666666666666666,0.7666666666666666,1,26 -cleaning,0.4749999999999999,1.0,0.4833333333333332,0.6166666666666666,1,26 -pair,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -container,0.605,1.0,0.5833333333333333,0.7,1,25 -tomato,0.6933333333333332,0.65,0.7666666666666666,0.6333333333333333,1,26 -cellphone,0.7233333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -potato,0.63,1.0,0.55,0.6833333333333333,1,25 -light,0.8916666666666666,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6633333333333332 -F1-Score: 0.6921031746031745 -Precision: 0.9060956790123457 -Recall: 0.6123456790123456 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6133333333333333,1.0,0.5833333333333333,0.7,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.7383333333333334,1.0,0.6666666666666666,0.7666666666666667,1,24 -keyboard,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -glue,0.6133333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.8666666666666668,1.0,0.8333333333333333,0.8833333333333332,1,26 -flashlight,0.7483333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -cup,0.5816666666666667,0.55,0.7666666666666666,0.5900000000000001,1,26 -folded,0.5,1.0,0.5499999999999999,0.6666666666666667,1,26 -jam,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -black,0.9183333333333333,0.8333333333333333,1.0,0.8933333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6916666666666667,1.0,0.5833333333333333,0.7,1,26 -soccer,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -hat,0.6583333333333333,1.0,0.6499999999999999,0.75,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -handle,0.5183333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -food,0.7766666666666666,1.0,0.7166666666666666,0.8,1,24 -towel,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -chips,0.7916666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.53,1.0,0.5166666666666666,0.65,1,26 -onion,0.73,1.0,0.65,0.75,1,26 -bag,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -sponge,0.73,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.7616666666666666,1.0,0.5833333333333333,0.7166666666666667,1,25 -special,0.7166666666666666,1.0,0.7333333333333333,0.8,1,26 -colgate,0.5333333333333333,1.0,0.55,0.6666666666666667,1,26 -leaf,0.7849999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -tube,0.725,1.0,0.7499999999999999,0.8166666666666667,1,26 -cell,0.6799999999999999,0.6,0.7333333333333333,0.6066666666666667,1,26 -mug,0.7433333333333334,1.0,0.5666666666666667,0.7,1,26 -yogurt,0.6266666666666667,1.0,0.5166666666666666,0.65,1,26 -plantain,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.73,1.0,0.7,0.7833333333333334,1,26 -wheat,0.5466666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -kleenex,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.6783333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -binder,0.7583333333333333,1.0,0.6333333333333333,0.75,1,26 -baseball,0.5166666666666666,1.0,0.5166666666666666,0.65,1,26 -pliers,0.525,1.0,0.4666666666666666,0.6166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -thins,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -package,0.755,1.0,0.7166666666666666,0.8,1,26 -k,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -jelly,0.7183333333333333,1.0,0.5666666666666667,0.7,1,26 -fruit,0.8800000000000001,0.75,0.9666666666666666,0.8133333333333332,2,25 -apple,0.71,1.0,0.6499999999999999,0.75,1,25 -bell,0.55,1.0,0.5333333333333333,0.6666666666666667,1,26 -battery,0.5966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -jar,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -bound,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -lettuce,0.705,1.0,0.5999999999999999,0.7166666666666666,1,26 -brush,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.505,1.0,0.45,0.6,1,26 -lime,0.6183333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -toothpaste,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -top,0.705,1.0,0.5833333333333333,0.7166666666666667,1,26 -spiral,0.82,1.0,0.6833333333333333,0.7833333333333334,1,26 -handles,0.5349999999999999,1.0,0.4666666666666666,0.6166666666666666,1,25 -camera,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -eraser,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.8150000000000001,0.6083333333333334,1.0,0.7523809523809524,5,21 -banana,0.6416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -pitcher,0.655,1.0,0.6499999999999999,0.75,1,26 -phone,0.5133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -stick,0.7166666666666666,1.0,0.75,0.8166666666666667,1,25 -cereal,0.44666666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -bulb,0.875,1.0,0.8333333333333333,0.9,2,27 -hair,0.7966666666666666,1.0,0.7,0.7833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333334,1,26 -can,0.8749999999999998,1.0,0.8666666666666666,0.9200000000000002,2,24 -coca,0.6766666666666666,1.0,0.5666666666666667,0.7,1,26 -crackers,0.5466666666666666,1.0,0.5833333333333333,0.7,1,26 -plate,0.5633333333333334,1.0,0.6166666666666666,0.7166666666666667,1,25 -calculator,0.5466666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -tissues,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.4,0.5,0.5333333333333333,0.49333333333333335,1,26 -pink,0.74,1.0,0.6166666666666666,0.7333333333333333,1,25 -lemon,0.7133333333333333,1.0,0.65,0.75,1,26 -peach,0.6216666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -bowl,0.6683333333333332,1.0,0.65,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6666666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -blue,0.6316666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -used,0.7416666666666666,1.0,0.65,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.655,1.0,0.5833333333333333,0.7,1,26 -ball,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.6683333333333333,1.0,0.55,0.6833333333333333,1,26 -garlic,0.7100000000000001,1.0,0.6166666666666666,0.7333333333333334,1,26 -cleaning,0.8416666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -pair,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -container,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -tomato,0.7166666666666667,1.0,0.65,0.75,1,26 -cellphone,0.5,0.6,0.5999999999999999,0.5466666666666666,1,26 -potato,0.6833333333333333,1.0,0.6166666666666666,0.7333333333333334,1,25 -light,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,1.0,1.0,1.0,1.0,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6492438271604939 -F1-Score: 0.6917813051146384 -Precision: 0.9022376543209876 -Recall: 0.6141975308641975 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5349999999999999,1.0,0.4666666666666666,0.6166666666666666,1,24 -yellow,1.0,1.0,1.0,1.0,6,26 -looks,0.675,1.0,0.65,0.75,1,24 -keyboard,0.5633333333333332,1.0,0.4666666666666666,0.6166666666666667,1,26 -glue,0.6266666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.6749999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -cup,0.2733333333333333,0.5,0.55,0.5033333333333333,1,26 -folded,0.7483333333333333,1.0,0.6,0.7166666666666667,1,26 -jam,0.6933333333333332,1.0,0.7,0.7833333333333333,1,26 -black,0.93,0.8166666666666667,1.0,0.8800000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.7833333333333334,1.0,0.6833333333333333,0.7833333333333334,1,26 -soccer,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -hat,0.6950000000000001,1.0,0.5666666666666667,0.7,1,26 -brown,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,26 -coffee,0.705,1.0,0.6166666666666666,0.7333333333333333,1,25 -handle,0.6416666666666666,1.0,0.7,0.7833333333333333,1,26 -food,0.7433333333333333,1.0,0.65,0.75,1,25 -towel,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.63,1.0,0.6833333333333333,0.7666666666666666,1,26 -stapler,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -onion,0.53,1.0,0.4333333333333333,0.5833333333333334,1,26 -bag,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.7383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.74,1.0,0.7166666666666666,0.8,1,26 -special,0.6316666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -colgate,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.755,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.3466666666666666,1.0,0.38333333333333336,0.55,1,26 -cell,0.76,1.0,0.7666666666666666,0.8333333333333333,1,26 -mug,0.6666666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -yogurt,0.69,1.0,0.55,0.6833333333333333,1,26 -plantain,0.66,1.0,0.5,0.65,1,26 -red,0.8266666666666665,0.6833333333333333,1.0,0.8028571428571428,3,24 -pepper,0.5833333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -wheat,0.7499999999999999,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.7933333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -toothbrush,0.6233333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -binder,0.7166666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -baseball,0.7466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -pliers,0.78,1.0,0.6333333333333333,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.5183333333333333,1.0,0.5166666666666666,0.65,1,26 -thins,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -package,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -k,0.73,1.0,0.7,0.7833333333333333,1,26 -jelly,0.5349999999999999,1.0,0.5166666666666666,0.65,1,26 -fruit,0.6983333333333333,0.6666666666666667,0.8333333333333333,0.72,2,26 -apple,0.7033333333333334,0.7,0.7166666666666666,0.6166666666666667,1,25 -bell,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -battery,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -jar,0.725,1.0,0.7,0.7833333333333333,1,26 -bound,0.6883333333333334,1.0,0.5666666666666667,0.7,1,26 -lettuce,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -brush,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -scissors,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.7333333333333333,1.0,0.6499999999999999,0.75,1,25 -toothpaste,0.7483333333333333,1.0,0.6333333333333333,0.75,1,26 -top,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -spiral,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -handles,0.5883333333333333,1.0,0.5166666666666666,0.65,1,25 -camera,0.9416666666666667,1.0,0.9,0.9333333333333332,1,26 -eraser,0.655,1.0,0.6166666666666666,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7216666666666667,1.0,0.65,0.75,1,26 -pitcher,0.5416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -phone,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -stick,0.7383333333333333,1.0,0.6499999999999999,0.75,1,25 -cereal,0.475,1.0,0.4999999999999999,0.6333333333333333,1,26 -bulb,0.96,1.0,0.9333333333333332,0.96,2,27 -hair,0.7383333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7466666666666667,1.0,0.65,0.75,1,26 -can,0.9016666666666667,1.0,0.8666666666666668,0.9200000000000002,2,25 -coca,0.4033333333333333,1.0,0.4,0.5666666666666667,1,26 -crackers,0.675,1.0,0.6666666666666666,0.7666666666666666,1,26 -plate,0.7883333333333333,1.0,0.7166666666666666,0.8,1,25 -calculator,0.6816666666666666,0.8,0.65,0.6166666666666667,1,26 -tissues,0.7433333333333334,1.0,0.5666666666666667,0.7,1,26 -juice,0.675,1.0,0.65,0.75,1,26 -pink,0.73,1.0,0.7,0.7833333333333333,1,25 -lemon,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -peach,0.53,1.0,0.5499999999999999,0.6666666666666666,1,26 -bowl,0.73,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8166666666666667,1.0,0.7166666666666666,0.8,1,26 -blue,0.65,1.0,0.55,0.6833333333333333,1,25 -used,0.4583333333333333,1.0,0.4,0.5666666666666667,1,23 -energizer,0,0,0,0,1,26 -pear,0.7383333333333334,1.0,0.7,0.7833333333333333,1,26 -ball,0.63,1.0,0.5333333333333333,0.6666666666666667,1,25 -notebook,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -garlic,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -pair,0.8550000000000001,1.0,0.8333333333333333,0.9,2,27 -container,0.6683333333333333,1.0,0.5833333333333333,0.7,1,26 -tomato,0.5133333333333333,0.7,0.5833333333333333,0.5566666666666668,1,26 -cellphone,0.655,1.0,0.5166666666666666,0.65,1,26 -potato,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -light,0.9550000000000001,1.0,0.9333333333333332,0.96,2,27 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6535802469135803 -F1-Score: 0.6945943562610227 -Precision: 0.9061728395061728 -Recall: 0.6155864197530865 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5133333333333333,1.0,0.4833333333333333,0.6166666666666667,1,25 -yellow,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,6,24 -looks,0.6883333333333332,0.85,0.65,0.65,1,24 -keyboard,0.6433333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -glue,0.7,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -flashlight,0.7466666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -cup,0.39666666666666667,0.5,0.5499999999999999,0.5033333333333334,1,26 -folded,0.65,1.0,0.5833333333333333,0.7,1,26 -jam,0.8133333333333332,1.0,0.7833333333333333,0.85,1,26 -black,0.95,0.8666666666666666,1.0,0.9133333333333333,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5566666666666666,1.0,0.5166666666666666,0.65,1,26 -soccer,0.6416666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -hat,0.85,1.0,0.6833333333333333,0.7833333333333333,1,26 -brown,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.5083333333333333,1.0,0.5166666666666666,0.65,1,26 -handle,0.7183333333333333,1.0,0.5999999999999999,0.7166666666666667,1,25 -food,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -towel,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -chips,0.6416666666666667,1.0,0.5833333333333333,0.7,1,26 -stapler,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -onion,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -bag,0.47166666666666657,1.0,0.4,0.5666666666666667,1,26 -sponge,0.6083333333333333,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.575,1.0,0.4833333333333333,0.6333333333333333,1,26 -special,0.725,1.0,0.7,0.7833333333333333,1,26 -colgate,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -leaf,0.4666666666666666,1.0,0.4,0.5666666666666667,1,26 -tube,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -cell,0.7549999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -mug,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -yogurt,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -plantain,0.6933333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -red,0.8933333333333333,0.7916666666666666,1.0,0.8657142857142857,3,24 -pepper,0.5166666666666666,1.0,0.6,0.7,1,26 -wheat,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.655,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.655,1.0,0.65,0.75,1,26 -binder,0.7016666666666667,1.0,0.5666666666666667,0.7,1,26 -baseball,0.7916666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -pliers,0.8399999999999999,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6483333333333333,1.0,0.4333333333333333,0.6,1,26 -thins,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -package,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.8099999999999999,1.0,0.7,0.7833333333333333,1,26 -jelly,0.605,1.0,0.4833333333333333,0.6333333333333333,1,26 -fruit,0.8333333333333333,0.7166666666666667,0.9666666666666666,0.8033333333333333,2,25 -apple,0.5966666666666667,0.8,0.6333333333333333,0.6333333333333333,1,25 -bell,0.6266666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -battery,0.5966666666666667,1.0,0.5166666666666666,0.65,1,26 -jar,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -bound,0.725,1.0,0.65,0.75,1,26 -lettuce,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.44833333333333336,0.5,0.55,0.5033333333333334,1,26 -scissors,0.7416666666666666,1.0,0.6499999999999999,0.75,1,26 -lime,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -toothpaste,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -top,0.6966666666666665,1.0,0.5999999999999999,0.7166666666666667,1,26 -spiral,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -handles,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -camera,0.75,1.0,0.6666666666666666,0.7666666666666666,1,26 -eraser,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7,1.0,0.6499999999999999,0.75,1,26 -pitcher,0.8433333333333334,1.0,0.7,0.8,1,26 -phone,0.5766666666666667,1.0,0.5166666666666666,0.65,1,26 -stick,0.4966666666666667,1.0,0.4666666666666666,0.6166666666666667,1,25 -cereal,0.7183333333333334,1.0,0.6,0.7166666666666667,1,26 -bulb,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,27 -hair,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6066666666666667,1.0,0.5166666666666666,0.65,1,26 -can,0.8933333333333333,1.0,0.8666666666666666,0.9200000000000002,2,26 -coca,0.4666666666666667,1.0,0.5,0.6333333333333333,1,26 -crackers,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -plate,0.5083333333333333,1.0,0.4833333333333332,0.6166666666666666,1,25 -calculator,0.6166666666666667,0.65,0.7166666666666666,0.6066666666666667,1,26 -tissues,0.7316666666666667,1.0,0.5666666666666667,0.7,1,26 -juice,0.7716666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -pink,0.6833333333333333,1.0,0.6499999999999999,0.75,1,25 -lemon,0.73,1.0,0.7,0.7833333333333333,1,26 -peach,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -bowl,0.705,1.0,0.6,0.7166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6133333333333334,1.0,0.65,0.75,1,26 -blue,0.8516666666666666,1.0,0.7,0.8,1,25 -used,0.7133333333333333,1.0,0.65,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.6483333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -ball,0.8,1.0,0.7999999999999999,0.85,1,25 -notebook,0.7383333333333333,1.0,0.6,0.7166666666666667,1,26 -garlic,0.5216666666666667,1.0,0.5,0.6333333333333333,1,26 -cleaning,0.78,1.0,0.6499999999999999,0.75,1,26 -pair,0.95,1.0,0.9333333333333332,0.96,2,27 -container,0.7183333333333334,1.0,0.6,0.7166666666666667,1,26 -tomato,0.6950000000000001,0.7,0.7833333333333333,0.65,1,26 -cellphone,0.8916666666666668,1.0,0.8333333333333333,0.8833333333333332,1,26 -potato,0.6599999999999999,1.0,0.6499999999999999,0.75,1,25 -light,0.9333333333333332,1.0,0.9333333333333332,0.9600000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.95,1.0,0.9333333333333332,0.9600000000000002,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.656820987654321 -F1-Score: 0.6898059964726632 -Precision: 0.9008487654320988 -Recall: 0.6123456790123456 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6933333333333334,1.0,0.5833333333333333,0.7,1,25 -yellow,0.95,0.8666666666666666,1.0,0.9133333333333333,6,24 -looks,0.5333333333333333,1.0,0.4833333333333333,0.6333333333333333,1,24 -keyboard,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333334,1,26 -glue,0.6166666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -flashlight,0.655,1.0,0.5333333333333333,0.6666666666666667,1,26 -cup,0.5549999999999999,0.5,0.6166666666666666,0.53,1,26 -folded,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -jam,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -black,0.93,0.8416666666666666,1.0,0.8990476190476191,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7516666666666667,1.0,0.6499999999999999,0.75,1,26 -soccer,0.5666666666666667,1.0,0.5,0.65,1,26 -hat,0.725,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.9349999999999999,1.0,0.9,0.9400000000000001,2,25 -coffee,0.905,1.0,0.8333333333333333,0.8833333333333332,1,26 -handle,0.5216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -food,0.7249999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -towel,0.6066666666666667,1.0,0.5166666666666666,0.65,1,26 -chips,0.5599999999999999,1.0,0.4333333333333333,0.6,1,26 -stapler,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -onion,0.7,1.0,0.7333333333333333,0.8,1,26 -bag,0.76,1.0,0.65,0.75,1,26 -sponge,0.6683333333333332,1.0,0.6,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -special,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -colgate,0.5716666666666665,1.0,0.4999999999999999,0.6333333333333333,1,26 -leaf,0.8233333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -tube,0.4416666666666666,1.0,0.4833333333333333,0.6166666666666666,1,26 -cell,0.755,1.0,0.5833333333333333,0.7166666666666667,1,26 -mug,0.765,1.0,0.6166666666666666,0.7333333333333334,1,26 -yogurt,0.4916666666666666,1.0,0.4333333333333334,0.5833333333333333,1,26 -plantain,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -red,0.9633333333333333,0.9166666666666666,1.0,0.9466666666666667,3,25 -pepper,0.85,1.0,0.7833333333333333,0.85,1,26 -wheat,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.5,1.0,0.5166666666666666,0.65,1,26 -toothbrush,0.6883333333333334,1.0,0.65,0.75,1,26 -binder,0.655,1.0,0.5499999999999999,0.6833333333333333,1,26 -baseball,0.5766666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -pliers,0.6916666666666667,1.0,0.65,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -package,0.6666666666666666,1.0,0.65,0.75,1,26 -k,0.7633333333333333,1.0,0.65,0.75,1,26 -jelly,0.6066666666666667,1.0,0.6,0.7166666666666667,1,26 -fruit,0.65,0.5833333333333333,0.8666666666666666,0.66,2,25 -apple,0.5266666666666666,1.0,0.4666666666666666,0.6166666666666666,1,25 -bell,0.4083333333333333,1.0,0.38333333333333336,0.55,1,26 -battery,0.6100000000000001,1.0,0.5166666666666666,0.6666666666666667,1,26 -jar,0.7233333333333333,1.0,0.5833333333333333,0.7,1,26 -bound,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -lettuce,0.825,1.0,0.7333333333333333,0.8166666666666667,1,26 -brush,0.71,1.0,0.6,0.7166666666666666,1,26 -scissors,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -lime,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666667,1,25 -toothpaste,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -top,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -spiral,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -handles,0.7933333333333333,1.0,0.6333333333333333,0.75,1,25 -camera,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -eraser,0.7466666666666666,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.74,1.0,0.5999999999999999,0.7166666666666667,1,26 -pitcher,0.5599999999999999,1.0,0.45,0.6166666666666667,1,26 -phone,0.39666666666666667,1.0,0.4333333333333333,0.5833333333333333,1,26 -stick,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -cereal,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -bulb,0.8666666666666666,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.7733333333333332,1.0,0.7166666666666666,0.8,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6766666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -can,0.93,1.0,0.8999999999999998,0.9400000000000001,2,24 -coca,0.4966666666666667,1.0,0.5166666666666666,0.65,1,26 -crackers,0.7316666666666667,1.0,0.5666666666666667,0.7,1,26 -plate,0.4966666666666667,1.0,0.4833333333333332,0.6333333333333333,1,25 -calculator,0.5166666666666666,0.5,0.7,0.5533333333333333,1,26 -tissues,0.7166666666666666,1.0,0.6,0.7166666666666667,1,26 -juice,0.6566666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -pink,0.7183333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -lemon,0.5333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -peach,0.53,1.0,0.4,0.5666666666666667,1,26 -bowl,0.7249999999999999,1.0,0.7,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -blue,0.625,1.0,0.4833333333333333,0.6333333333333334,1,25 -used,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6216666666666666,1.0,0.4999999999999999,0.65,1,26 -ball,0.655,1.0,0.5333333333333333,0.6666666666666667,1,25 -notebook,0.685,1.0,0.6,0.7166666666666667,1,26 -garlic,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -cleaning,0.6216666666666666,1.0,0.5166666666666666,0.65,1,26 -pair,0.9133333333333333,1.0,0.9,0.9400000000000001,2,27 -container,0.5883333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -tomato,0.6233333333333333,0.75,0.5666666666666667,0.5833333333333333,1,26 -cellphone,0.605,1.0,0.5833333333333333,0.7,1,26 -potato,0.6166666666666666,1.0,0.6666666666666666,0.75,1,25 -light,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6440586419753087 -F1-Score: 0.679620811287478 -Precision: 0.9070216049382717 -Recall: 0.5933641975308641 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8,1.0,0.8166666666666667,0.8666666666666668,1,25 -yellow,0.8716666666666667,0.7166666666666666,1.0,0.818095238095238,6,24 -looks,0.5233333333333332,0.8,0.5,0.5833333333333333,1,24 -keyboard,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.6666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -flashlight,0.7549999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.34500000000000003,0.5,0.6333333333333332,0.5266666666666667,1,26 -folded,0.58,1.0,0.5833333333333333,0.7,1,26 -jam,0.775,1.0,0.6666666666666666,0.7666666666666666,1,26 -black,0.9133333333333334,0.7833333333333333,1.0,0.86,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7833333333333333,1.0,0.8,0.85,1,26 -soccer,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -hat,0.6933333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.95,1.0,0.9333333333333332,0.96,2,25 -coffee,0.625,1.0,0.5833333333333333,0.7,1,26 -handle,0.6916666666666667,1.0,0.65,0.75,1,25 -food,0.7716666666666667,1.0,0.65,0.75,1,25 -towel,0.7016666666666667,1.0,0.6,0.7166666666666666,1,26 -chips,0.7049999999999998,1.0,0.6499999999999999,0.75,1,26 -stapler,0.48,1.0,0.4833333333333332,0.6166666666666666,1,26 -onion,0.7933333333333333,1.0,0.65,0.7666666666666667,1,26 -bag,0.6216666666666666,1.0,0.5833333333333333,0.7,1,26 -sponge,0.5166666666666666,1.0,0.5999999999999999,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.7016666666666667,1.0,0.5666666666666667,0.7,1,25 -special,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -colgate,0.6749999999999999,1.0,0.6499999999999999,0.75,1,26 -leaf,0.4083333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -tube,0.5083333333333333,1.0,0.38333333333333336,0.55,1,26 -cell,0.76,1.0,0.6166666666666666,0.7333333333333334,1,26 -mug,0.6799999999999999,1.0,0.65,0.75,1,26 -yogurt,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -plantain,0.7166666666666667,1.0,0.7,0.7833333333333333,1,26 -red,0.9133333333333334,0.775,1.0,0.8523809523809524,3,25 -pepper,0.8133333333333332,1.0,0.7499999999999999,0.8166666666666667,1,26 -wheat,0.6366666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.575,1.0,0.5333333333333333,0.6666666666666666,1,26 -toothbrush,0.5966666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -binder,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -baseball,0.7666666666666666,1.0,0.75,0.8166666666666667,1,26 -pliers,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -thins,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -package,0.71,1.0,0.5833333333333333,0.7,1,26 -k,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.72,0.6333333333333333,0.9,0.72,2,25 -apple,0.6866666666666666,0.9,0.5666666666666667,0.6666666666666667,1,25 -bell,0.7266666666666667,1.0,0.6,0.7166666666666667,1,26 -battery,0.8633333333333333,1.0,0.8166666666666667,0.8666666666666666,1,26 -jar,0.5466666666666666,1.0,0.5,0.6333333333333333,1,26 -bound,0.75,1.0,0.7333333333333333,0.8,1,26 -lettuce,0.7083333333333333,1.0,0.5666666666666667,0.7,1,26 -brush,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -lime,0.7933333333333332,1.0,0.6333333333333333,0.75,1,25 -toothpaste,0.6383333333333333,1.0,0.6,0.7166666666666667,1,26 -top,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -spiral,0.7133333333333333,1.0,0.6,0.7166666666666667,1,26 -handles,0.8583333333333332,1.0,0.8166666666666667,0.8666666666666666,1,25 -camera,0.4716666666666667,1.0,0.5166666666666666,0.65,1,26 -eraser,0.7183333333333333,1.0,0.6,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -pitcher,0.7133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.7016666666666667,1.0,0.65,0.75,1,26 -stick,0.48,1.0,0.4999999999999999,0.6333333333333333,1,25 -cereal,0.6466666666666667,1.0,0.6499999999999999,0.75,1,26 -bulb,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.93,1.0,0.8833333333333332,0.9166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.4583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,25 -coca,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -crackers,0.6466666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -plate,0.9016666666666666,1.0,0.8,0.8666666666666666,1,25 -calculator,0.8766666666666666,1.0,0.75,0.8333333333333333,1,26 -tissues,0.6433333333333333,1.0,0.5666666666666667,0.7,1,26 -juice,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.5133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,25 -lemon,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -peach,0.5683333333333332,1.0,0.55,0.6833333333333333,1,26 -bowl,0.45999999999999996,1.0,0.45,0.6,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -blue,0.765,1.0,0.55,0.7,1,25 -used,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6983333333333333,1.0,0.6,0.7166666666666667,1,26 -ball,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -notebook,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -garlic,0.7166666666666667,1.0,0.65,0.75,1,26 -cleaning,0.7066666666666667,1.0,0.5666666666666667,0.7,1,26 -pair,0.9016666666666666,1.0,0.8666666666666668,0.9200000000000002,2,26 -container,0.53,1.0,0.5666666666666667,0.6833333333333333,1,25 -tomato,0.5700000000000001,0.65,0.5666666666666667,0.5633333333333332,1,26 -cellphone,0.5666666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -potato,0.63,1.0,0.5666666666666667,0.6833333333333333,1,25 -light,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.7716666666666667,1.0,0.7333333333333333,0.8400000000000001,2,25 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6582407407407408 -F1-Score: 0.6972883597883599 -Precision: 0.9051697530864198 -Recall: 0.6194444444444444 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.78,1.0,0.7166666666666666,0.8,1,24 -yellow,0.8150000000000001,0.6,1.0,0.7447619047619047,6,24 -looks,0.48166666666666663,0.6,0.6333333333333332,0.5466666666666666,1,24 -keyboard,0.63,1.0,0.5833333333333333,0.7,1,26 -glue,0.7416666666666666,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -flashlight,0.6733333333333332,1.0,0.6499999999999999,0.75,1,26 -cup,0.6083333333333333,1.0,0.65,0.75,1,26 -folded,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -jam,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.7916666666666667,0.675,1.0,0.8019047619047619,6,22 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.85,1.0,0.7666666666666666,0.8333333333333333,1,26 -soccer,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -hat,0.5483333333333335,1.0,0.45,0.6166666666666667,1,26 -brown,0.9349999999999999,1.0,0.9,0.9400000000000001,2,24 -coffee,0.4833333333333333,1.0,0.4833333333333333,0.6166666666666666,1,25 -handle,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -food,0.46499999999999997,1.0,0.4,0.5666666666666667,1,25 -towel,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -chips,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -stapler,0.7183333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -onion,0.575,1.0,0.5333333333333333,0.6666666666666666,1,26 -bag,0.655,1.0,0.5499999999999999,0.6833333333333333,1,26 -sponge,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -special,0.6533333333333333,1.0,0.4666666666666666,0.6333333333333334,1,26 -colgate,0.6749999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -leaf,0.45,1.0,0.4666666666666666,0.6,1,26 -tube,0.7666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -cell,0.4933333333333333,1.0,0.4499999999999999,0.6,1,26 -mug,0.7083333333333333,1.0,0.7166666666666666,0.8,1,25 -yogurt,0.45499999999999996,1.0,0.4,0.5666666666666667,1,26 -plantain,0.5133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -red,0.9500000000000002,0.8833333333333332,1.0,0.9266666666666667,3,26 -pepper,0.58,1.0,0.5166666666666666,0.65,1,26 -wheat,0.5666666666666667,1.0,0.5333333333333332,0.65,1,26 -kleenex,0.6766666666666666,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -binder,0.7316666666666667,1.0,0.5333333333333333,0.6833333333333333,1,26 -baseball,0.61,1.0,0.5666666666666667,0.6833333333333333,1,26 -pliers,0.5883333333333333,1.0,0.6,0.7166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7083333333333333,1.0,0.65,0.75,1,26 -thins,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -package,0.5766666666666667,1.0,0.5166666666666666,0.65,1,26 -k,0.8583333333333332,1.0,0.7833333333333333,0.85,1,26 -jelly,0.6733333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -fruit,0.7100000000000001,0.7,0.8666666666666666,0.7466666666666667,2,25 -apple,0.625,0.7,0.6166666666666666,0.5900000000000001,1,25 -bell,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -jar,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -lettuce,0.75,1.0,0.75,0.8166666666666667,1,26 -brush,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -scissors,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -lime,0.6516666666666667,1.0,0.4666666666666666,0.6333333333333334,1,25 -toothpaste,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -top,0.5816666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -spiral,0.6599999999999999,1.0,0.5666666666666667,0.7,1,26 -handles,0.6883333333333334,1.0,0.6,0.7166666666666667,1,25 -camera,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.79,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -pitcher,0.7216666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -phone,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -stick,0.6966666666666665,1.0,0.5999999999999999,0.7166666666666667,1,25 -cereal,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -bulb,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,27 -hair,0.61,1.0,0.6333333333333333,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6566666666666666,1.0,0.5166666666666666,0.65,1,26 -can,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,26 -coca,0.6666666666666666,1.0,0.55,0.6833333333333333,1,26 -crackers,0.46333333333333326,1.0,0.4833333333333333,0.6166666666666667,1,26 -plate,0.6566666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -calculator,0.485,0.7,0.5166666666666666,0.5366666666666667,1,26 -tissues,0.755,1.0,0.7,0.7833333333333333,1,26 -juice,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -pink,0.7166666666666666,1.0,0.7333333333333333,0.8,1,25 -lemon,0.7050000000000001,1.0,0.6166666666666666,0.7333333333333334,1,26 -peach,0.7416666666666666,1.0,0.75,0.8166666666666667,1,26 -bowl,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -blue,0.6966666666666665,0.95,0.5499999999999999,0.65,1,25 -used,0.6849999999999999,1.0,0.65,0.75,1,23 -energizer,0,0,0,0,1,26 -pear,0.705,1.0,0.7,0.7833333333333333,1,26 -ball,0.58,1.0,0.4833333333333332,0.6166666666666666,1,25 -notebook,0.45499999999999996,1.0,0.41666666666666663,0.5833333333333333,1,26 -garlic,0.7533333333333333,1.0,0.5333333333333333,0.6833333333333333,1,26 -cleaning,0.6633333333333333,1.0,0.65,0.75,1,26 -pair,1.0,1.0,1.0,1.0,2,27 -container,0.55,1.0,0.4666666666666666,0.6166666666666667,1,25 -tomato,0.38666666666666666,0.7,0.5166666666666666,0.5233333333333333,1,26 -cellphone,0.76,1.0,0.7166666666666666,0.8,1,26 -potato,0.625,1.0,0.5333333333333333,0.6666666666666667,1,25 -light,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6483641975308642 -F1-Score: 0.6852160493827161 -Precision: 0.9028549382716049 -Recall: 0.6054012345679012 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666667,1,25 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,24 -keyboard,0.71,1.0,0.5833333333333333,0.7,1,26 -glue,0.6416666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.9099999999999999,1.0,0.8,0.8666666666666668,1,26 -cup,0.45499999999999996,0.5,0.6166666666666666,0.53,1,26 -folded,0.6433333333333333,1.0,0.6,0.7166666666666667,1,26 -jam,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -black,0.8583333333333334,0.7083333333333333,1.0,0.8123809523809523,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -soccer,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -hat,0.5133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -brown,0.8683333333333334,1.0,0.8333333333333333,0.9,2,26 -coffee,0.44333333333333336,1.0,0.45,0.6,1,26 -handle,0.725,1.0,0.6499999999999999,0.75,1,26 -food,0.7016666666666667,1.0,0.6,0.7166666666666667,1,25 -towel,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.6716666666666667,1.0,0.6,0.7166666666666667,1,26 -stapler,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -onion,0.7416666666666667,1.0,0.6499999999999999,0.75,1,26 -bag,0.75,1.0,0.7166666666666666,0.8,1,26 -sponge,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.6166666666666666,1.0,0.4499999999999999,0.6166666666666667,1,25 -special,0.5466666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -colgate,0.7133333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -leaf,0.6883333333333332,1.0,0.5333333333333332,0.6666666666666666,1,26 -tube,0.6833333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -cell,0.6133333333333333,0.5,0.7333333333333333,0.5733333333333334,1,26 -mug,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -yogurt,0.6683333333333333,1.0,0.5666666666666667,0.7,1,26 -plantain,0.585,1.0,0.5833333333333333,0.7,1,26 -red,0.9833333333333334,0.95,1.0,0.9666666666666666,3,26 -pepper,0.5466666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -wheat,0.4666666666666666,1.0,0.6,0.7,1,26 -kleenex,0.525,1.0,0.5,0.6333333333333333,1,26 -toothbrush,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -binder,0.4583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -baseball,0.755,1.0,0.7166666666666666,0.8,1,26 -pliers,0.5733333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.76,1.0,0.7166666666666666,0.8,1,26 -thins,0.8966666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -package,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.5883333333333334,1.0,0.5833333333333333,0.7,1,26 -jelly,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666668,1,26 -fruit,0.8116666666666668,0.6666666666666666,0.9333333333333332,0.74,2,25 -apple,0.5183333333333333,1.0,0.4666666666666666,0.6166666666666666,1,25 -bell,0.7383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -battery,0.705,1.0,0.55,0.6833333333333333,1,26 -jar,0.6016666666666666,1.0,0.5166666666666666,0.65,1,26 -bound,0.76,1.0,0.6499999999999999,0.75,1,26 -lettuce,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -brush,0.6849999999999999,0.7,0.7333333333333333,0.6333333333333333,1,26 -scissors,0.655,1.0,0.5833333333333333,0.7,1,26 -lime,0.585,1.0,0.5166666666666666,0.65,1,25 -toothpaste,0.5933333333333334,1.0,0.4333333333333333,0.6,1,26 -top,0.7633333333333333,1.0,0.75,0.8166666666666667,1,26 -spiral,0.725,1.0,0.7,0.7833333333333333,1,26 -handles,0.6500000000000001,1.0,0.65,0.75,1,25 -camera,0.6966666666666667,1.0,0.5666666666666667,0.7,1,26 -eraser,0.58,1.0,0.5333333333333332,0.6666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -pitcher,0.7766666666666666,1.0,0.6,0.7333333333333333,1,26 -phone,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -stick,0.805,1.0,0.7166666666666666,0.8,1,25 -cereal,0.69,1.0,0.5666666666666667,0.7,1,26 -bulb,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -hair,0.69,1.0,0.55,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5566666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -can,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -coca,0.6133333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -plate,0.6216666666666667,1.0,0.5999999999999999,0.7166666666666666,1,25 -calculator,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -tissues,0.5883333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -juice,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666668,1,26 -pink,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -lemon,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -peach,0.6733333333333333,1.0,0.55,0.6833333333333333,1,26 -bowl,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -blue,0.755,1.0,0.6666666666666666,0.7666666666666667,1,25 -used,0.8,1.0,0.8166666666666667,0.8666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -ball,0.7216666666666667,1.0,0.6,0.7166666666666667,1,25 -notebook,0.7333333333333333,1.0,0.65,0.75,1,26 -garlic,0.8133333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -cleaning,0.6333333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -pair,0.9333333333333332,1.0,0.9333333333333332,0.9600000000000002,2,27 -container,0.6666666666666666,1.0,0.7333333333333333,0.8,1,25 -tomato,0.675,0.85,0.7,0.6833333333333333,1,26 -cellphone,0.4616666666666666,0.5,0.5666666666666667,0.5133333333333333,1,26 -potato,0.6849999999999999,1.0,0.6,0.7166666666666667,1,25 -light,0.9266666666666667,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6568827160493828 -F1-Score: 0.6921516754850088 -Precision: 0.9006944444444444 -Recall: 0.6152777777777777 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.755,1.0,0.7166666666666666,0.8,1,25 -yellow,0.9800000000000001,0.95,1.0,0.9666666666666666,6,24 -looks,0.6366666666666667,0.8,0.5833333333333333,0.6,1,24 -keyboard,0.8,1.0,0.7166666666666666,0.8,1,26 -glue,0.655,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.5883333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -flashlight,0.7316666666666667,1.0,0.6,0.7166666666666667,1,26 -cup,0.4033333333333333,0.5,0.6333333333333333,0.5266666666666666,1,26 -folded,0.775,1.0,0.7666666666666666,0.8333333333333333,1,26 -jam,0.74,1.0,0.6666666666666666,0.7666666666666667,1,26 -black,0.9233333333333335,0.8166666666666667,1.0,0.8799999999999999,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6583333333333333,1.0,0.4999999999999999,0.65,1,26 -soccer,0.7933333333333332,1.0,0.7,0.7833333333333333,1,26 -hat,0.6599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.9099999999999999,1.0,0.8666666666666666,0.9199999999999999,2,25 -coffee,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -handle,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -food,0.7466666666666666,1.0,0.6666666666666666,0.7666666666666667,1,25 -towel,0.7383333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -chips,0.7216666666666667,1.0,0.7,0.7833333333333333,1,26 -stapler,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.8066666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -bag,0.69,1.0,0.6499999999999999,0.75,1,26 -sponge,0.6666666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -special,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -colgate,0.675,1.0,0.5666666666666667,0.7,1,26 -leaf,0.5999999999999999,1.0,0.5166666666666666,0.65,1,26 -tube,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -cell,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -mug,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -yogurt,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -plantain,0.6133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -red,0.8783333333333333,0.7666666666666666,1.0,0.8533333333333333,3,25 -pepper,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -wheat,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.69,1.0,0.6,0.7166666666666667,1,26 -toothbrush,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -binder,0.5766666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -pliers,0.6066666666666667,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7,1.0,0.65,0.75,1,26 -thins,0.5216666666666666,1.0,0.5,0.6333333333333333,1,26 -package,0.7416666666666666,1.0,0.75,0.8166666666666667,1,26 -k,0.5466666666666666,1.0,0.5,0.6333333333333333,1,26 -jelly,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -fruit,0.6433333333333333,0.5499999999999999,0.8666666666666666,0.6433333333333333,2,25 -apple,0.5633333333333332,0.85,0.4333333333333333,0.55,1,25 -bell,0.715,1.0,0.5499999999999999,0.6833333333333333,1,26 -battery,0.635,1.0,0.5999999999999999,0.7166666666666666,1,26 -jar,0.5433333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -bound,0.75,1.0,0.7166666666666666,0.8,1,26 -lettuce,0.6433333333333333,1.0,0.6,0.7166666666666667,1,26 -brush,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -scissors,0.4966666666666667,1.0,0.5166666666666666,0.65,1,26 -lime,0.6516666666666666,1.0,0.6,0.7166666666666667,1,25 -toothpaste,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -top,0.5966666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -spiral,0.7833333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -handles,0.53,1.0,0.5333333333333332,0.6666666666666666,1,25 -camera,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -eraser,0.65,1.0,0.6666666666666666,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.8166666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -pitcher,0.6649999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -phone,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -stick,0.73,1.0,0.65,0.75,1,25 -cereal,0.6266666666666667,1.0,0.65,0.75,1,26 -bulb,0.9266666666666667,1.0,0.9,0.9400000000000001,2,26 -hair,0.78,1.0,0.7166666666666666,0.8,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.55,1.0,0.5999999999999999,0.7,1,26 -can,0.9400000000000001,1.0,0.8999999999999998,0.9400000000000001,2,26 -coca,0.6883333333333332,1.0,0.6,0.7166666666666666,1,26 -crackers,0.6983333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -plate,0.6633333333333333,1.0,0.6499999999999999,0.75,1,25 -calculator,0.3566666666666667,0.55,0.5666666666666667,0.51,1,26 -tissues,0.5016666666666667,1.0,0.4,0.5666666666666667,1,26 -juice,0.5966666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -pink,0.78,1.0,0.6333333333333333,0.75,1,25 -lemon,0.5433333333333333,1.0,0.4333333333333333,0.6,1,26 -peach,0.6633333333333333,1.0,0.65,0.75,1,26 -bowl,0.45,1.0,0.5666666666666667,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.675,1.0,0.6,0.7166666666666667,1,26 -blue,0.525,1.0,0.5166666666666666,0.65,1,25 -used,0.9099999999999999,1.0,0.8,0.8666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.74,1.0,0.5666666666666667,0.7,1,25 -notebook,0.8266666666666668,1.0,0.7833333333333333,0.85,1,26 -garlic,0.655,1.0,0.5166666666666666,0.65,1,26 -cleaning,0.55,1.0,0.6166666666666666,0.7166666666666667,1,26 -pair,0.8816666666666666,1.0,0.8333333333333334,0.9000000000000001,2,26 -container,0.5833333333333333,1.0,0.5999999999999999,0.7,1,25 -tomato,0.5766666666666667,0.85,0.5666666666666667,0.5833333333333333,1,26 -cellphone,0.665,1.0,0.5,0.65,1,26 -potato,0.8216666666666667,1.0,0.6833333333333333,0.7833333333333333,1,25 -light,0.8216666666666667,1.0,0.8,0.8800000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8716666666666667,1.0,0.8333333333333334,0.9000000000000001,2,25 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.647283950617284 -F1-Score: 0.6872839506172839 -Precision: 0.9040123456790125 -Recall: 0.6064814814814814 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.58,1.0,0.5333333333333333,0.6666666666666667,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.5799999999999998,0.85,0.5833333333333333,0.6,1,24 -keyboard,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -glue,0.66,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.6216666666666667,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.6166666666666666,1.0,0.5166666666666666,0.65,1,26 -cup,0.2533333333333333,0.5,0.5166666666666666,0.4833333333333334,1,26 -folded,0.7183333333333333,1.0,0.6499999999999999,0.75,1,26 -jam,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -black,1.0,1.0,1.0,1.0,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -soccer,0.6833333333333333,1.0,0.6,0.7166666666666667,1,26 -hat,0.6216666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -brown,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -coffee,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -handle,0.55,1.0,0.5333333333333333,0.6666666666666667,1,26 -food,0.705,1.0,0.5833333333333333,0.7,1,25 -towel,0.5666666666666667,1.0,0.5333333333333333,0.65,1,26 -chips,0.6433333333333333,1.0,0.4833333333333332,0.6333333333333333,1,26 -stapler,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -onion,0.6983333333333334,0.8,0.7,0.6666666666666666,1,26 -bag,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.635,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.6983333333333334,1.0,0.6,0.7166666666666666,1,25 -special,0.71,1.0,0.6666666666666666,0.7666666666666666,1,26 -colgate,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.45,1.0,0.5499999999999999,0.6666666666666666,1,26 -tube,0.7083333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -cell,0.45499999999999996,0.6,0.6333333333333332,0.5466666666666666,1,26 -mug,0.6016666666666667,1.0,0.4666666666666666,0.6166666666666666,1,25 -yogurt,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.6333333333333334,1.0,0.5833333333333333,0.7,1,26 -red,0.7983333333333333,0.625,1.0,0.7638095238095237,3,24 -pepper,0.5716666666666665,1.0,0.4999999999999999,0.6333333333333333,1,26 -wheat,0.775,1.0,0.7166666666666666,0.8,1,26 -kleenex,0.7333333333333333,1.0,0.6,0.7166666666666666,1,26 -toothbrush,0.5016666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -binder,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -baseball,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -pliers,0.785,1.0,0.6,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -thins,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -package,0.5966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -k,0.655,1.0,0.5166666666666666,0.65,1,26 -jelly,0.685,1.0,0.5666666666666667,0.7,1,26 -fruit,0.7633333333333334,0.65,0.9,0.72,2,25 -apple,0.7383333333333334,1.0,0.6166666666666666,0.7333333333333334,1,25 -bell,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -battery,0.6716666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -jar,0.6666666666666666,1.0,0.7,0.7833333333333333,1,26 -bound,0.675,1.0,0.5999999999999999,0.7166666666666667,1,26 -lettuce,0.7566666666666666,1.0,0.65,0.75,1,26 -brush,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -scissors,0.6333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -lime,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -toothpaste,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333334,1,26 -top,0.6966666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -spiral,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -handles,0.4633333333333334,1.0,0.4833333333333333,0.6166666666666667,1,25 -camera,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.75,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.53,1.0,0.4999999999999999,0.6333333333333333,1,26 -pitcher,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -phone,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -stick,0.8183333333333334,1.0,0.7166666666666666,0.8,1,25 -cereal,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -bulb,0.9016666666666666,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,24 -coca,0.6666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -crackers,0.775,1.0,0.7166666666666666,0.8,1,26 -plate,0.505,1.0,0.4666666666666666,0.6166666666666666,1,25 -calculator,0.7583333333333333,1.0,0.75,0.8166666666666667,1,26 -tissues,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -juice,0.7633333333333334,1.0,0.7166666666666666,0.8,1,26 -pink,0.66,1.0,0.5499999999999999,0.6833333333333333,1,25 -lemon,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -peach,0.7433333333333333,1.0,0.5666666666666667,0.7,1,26 -bowl,0.5766666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.685,1.0,0.5666666666666667,0.7,1,26 -blue,0.62,0.85,0.5166666666666666,0.6,1,25 -used,0.7266666666666667,1.0,0.6499999999999999,0.75,1,23 -energizer,0,0,0,0,1,26 -pear,0.5249999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -ball,0.65,1.0,0.6,0.7166666666666667,1,25 -notebook,0.7216666666666666,1.0,0.6,0.7166666666666667,1,26 -garlic,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.5766666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -pair,0.8766666666666666,1.0,0.8333333333333333,0.9,2,26 -container,0.6799999999999999,1.0,0.5833333333333333,0.7,1,25 -tomato,0.59,0.7,0.6499999999999999,0.5833333333333333,1,26 -cellphone,0.43833333333333335,0.55,0.5999999999999999,0.53,1,26 -potato,0.5683333333333332,1.0,0.5833333333333333,0.7,1,25 -light,0.915,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,25 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6463580246913581 -F1-Score: 0.6843253968253968 -Precision: 0.8993055555555556 -Recall: 0.6054012345679012 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666667,1,24 -yellow,1.0,1.0,1.0,1.0,6,26 -looks,0.55,1.0,0.6166666666666666,0.7166666666666667,1,24 -keyboard,0.625,1.0,0.5833333333333333,0.7,1,26 -glue,0.7016666666666667,1.0,0.6,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -flashlight,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -cup,0.32666666666666666,0.5,0.4833333333333333,0.4766666666666667,1,26 -folded,0.6633333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.5966666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -black,0.93,0.825,1.0,0.8857142857142858,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -soccer,0.6749999999999999,1.0,0.5833333333333333,0.7,1,26 -hat,0.4666666666666667,1.0,0.45,0.6,1,26 -brown,0.8383333333333333,1.0,0.8,0.8800000000000001,2,25 -coffee,0.6316666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -handle,0.6416666666666666,1.0,0.5833333333333333,0.7,1,25 -food,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -towel,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -chips,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -stapler,0.6483333333333332,1.0,0.4833333333333332,0.6333333333333333,1,26 -onion,0.6216666666666666,1.0,0.4999999999999999,0.65,1,26 -bag,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -sponge,0.6933333333333332,1.0,0.6,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6166666666666666,1.0,0.6333333333333332,0.7333333333333333,1,25 -special,0.6966666666666667,1.0,0.65,0.75,1,26 -colgate,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -leaf,0.635,1.0,0.5833333333333333,0.7,1,26 -tube,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -cell,0.35833333333333334,0.55,0.4999999999999999,0.4966666666666667,1,26 -mug,0.755,1.0,0.6666666666666666,0.7666666666666666,1,26 -yogurt,0.5833333333333333,1.0,0.4833333333333333,0.6166666666666667,1,26 -plantain,0.7266666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -red,0.9266666666666667,0.8,1.0,0.8666666666666666,3,24 -pepper,0.61,1.0,0.4833333333333332,0.6333333333333333,1,26 -wheat,0.7583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -kleenex,0.7516666666666667,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.5916666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -binder,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.605,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7966666666666666,1.0,0.75,0.8166666666666667,1,26 -thins,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -package,0.5,1.0,0.5999999999999999,0.7,1,26 -k,0.8766666666666667,1.0,0.75,0.8333333333333334,1,26 -jelly,0.7,1.0,0.6499999999999999,0.75,1,26 -fruit,0.7683333333333333,0.6833333333333333,0.8999999999999998,0.7466666666666667,2,25 -apple,0.7266666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -bell,0.63,1.0,0.6833333333333333,0.7666666666666666,1,26 -battery,0.8266666666666665,1.0,0.7666666666666666,0.8333333333333333,1,26 -jar,0.5733333333333334,1.0,0.4499999999999999,0.6166666666666666,1,26 -bound,0.6583333333333333,1.0,0.5666666666666667,0.7,1,26 -lettuce,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -brush,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -scissors,0.6733333333333333,1.0,0.5833333333333333,0.7,1,26 -lime,0.7583333333333333,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.6016666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -top,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -spiral,0.7933333333333333,1.0,0.6333333333333333,0.75,1,26 -handles,0.6333333333333333,1.0,0.4833333333333333,0.6333333333333333,1,25 -camera,0.5966666666666667,1.0,0.5166666666666666,0.65,1,26 -eraser,0.7383333333333333,1.0,0.6,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.705,1.0,0.5666666666666667,0.6833333333333333,1,26 -pitcher,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -phone,0.71,1.0,0.6166666666666666,0.7333333333333334,1,26 -stick,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666667,1,25 -cereal,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -bulb,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.6916666666666667,1.0,0.55,0.6833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8033333333333333,1.0,0.6333333333333333,0.75,1,26 -can,0.9016666666666667,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.3883333333333333,1.0,0.38333333333333336,0.55,1,26 -crackers,0.73,1.0,0.6333333333333333,0.75,1,26 -plate,0.76,1.0,0.65,0.75,1,25 -calculator,0.7916666666666666,0.95,0.7666666666666666,0.8,1,26 -tissues,0.7433333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -juice,0.61,1.0,0.5333333333333333,0.6666666666666667,1,26 -pink,0.8099999999999999,1.0,0.7,0.7833333333333333,1,25 -lemon,0.6566666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -peach,0.6183333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.5850000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7916666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -blue,0.585,1.0,0.5166666666666666,0.65,1,25 -used,0.7466666666666666,1.0,0.7,0.7833333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.6649999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -ball,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.71,1.0,0.6499999999999999,0.75,1,26 -garlic,0.5216666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -cleaning,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -pair,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -container,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -tomato,0.615,0.85,0.6,0.6333333333333334,1,26 -cellphone,0.5316666666666665,0.5,0.6333333333333333,0.54,1,26 -potato,0.4416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,25 -light,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9400000000000001,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6511574074074075 -F1-Score: 0.6857627865961199 -Precision: 0.9042438271604938 -Recall: 0.6020061728395062 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6516666666666666,1.0,0.55,0.6833333333333333,1,24 -yellow,0.9100000000000001,0.7666666666666666,1.0,0.8466666666666667,6,25 -looks,0.6599999999999999,0.8,0.7,0.65,1,24 -keyboard,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.7716666666666667,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.6083333333333333,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.705,1.0,0.65,0.75,1,26 -cup,0.5466666666666666,0.5,0.6499999999999999,0.5366666666666667,1,26 -folded,0.7466666666666667,1.0,0.65,0.75,1,26 -jam,0.6566666666666667,1.0,0.5666666666666667,0.7,1,26 -black,0.8850000000000001,0.7916666666666667,1.0,0.8723809523809525,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -soccer,0.6833333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -hat,0.5183333333333333,1.0,0.5166666666666666,0.65,1,26 -brown,0.8466666666666667,1.0,0.8,0.8800000000000001,2,25 -coffee,0.73,1.0,0.7,0.7833333333333333,1,25 -handle,0.7466666666666666,1.0,0.7,0.7833333333333333,1,26 -food,0.8933333333333333,1.0,0.8,0.8666666666666666,1,26 -towel,0.5766666666666667,1.0,0.5833333333333333,0.7,1,26 -chips,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -stapler,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -onion,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -bag,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -sponge,0.8083333333333332,1.0,0.7833333333333333,0.85,1,26 -zero,0,0,0,0,1,26 -computer,0.86,1.0,0.7833333333333333,0.85,1,25 -special,0.6766666666666666,1.0,0.6,0.7166666666666666,1,26 -colgate,0.6566666666666666,1.0,0.6,0.7166666666666667,1,26 -leaf,0.505,1.0,0.4999999999999999,0.6333333333333333,1,26 -tube,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.6,1.0,0.6166666666666666,0.7166666666666666,1,26 -mug,0.66,1.0,0.6,0.7166666666666667,1,25 -yogurt,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -plantain,0.585,1.0,0.5166666666666666,0.65,1,26 -red,0.8600000000000001,0.7,1.0,0.8066666666666666,3,27 -pepper,0.625,1.0,0.5833333333333333,0.7,1,26 -wheat,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.5466666666666666,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -binder,0.5333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -baseball,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -pliers,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.74,1.0,0.5666666666666667,0.7,1,26 -thins,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -package,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -k,0.6333333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -jelly,0.5466666666666666,1.0,0.4999999999999999,0.65,1,26 -fruit,0.6883333333333334,0.6,0.8999999999999998,0.6900000000000001,2,25 -apple,0.6,0.8,0.55,0.5833333333333334,1,25 -bell,0.705,1.0,0.6,0.7166666666666667,1,26 -battery,0.6016666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -jar,0.5933333333333334,1.0,0.5833333333333333,0.7,1,26 -bound,0.6916666666666667,1.0,0.6333333333333332,0.7333333333333333,1,26 -lettuce,0.6833333333333333,1.0,0.65,0.75,1,26 -brush,0.7716666666666666,1.0,0.7,0.7833333333333333,1,26 -scissors,0.7633333333333333,1.0,0.6333333333333333,0.75,1,26 -lime,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -toothpaste,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -top,0.4966666666666667,1.0,0.5166666666666666,0.65,1,26 -spiral,0.7266666666666667,1.0,0.6,0.7166666666666667,1,26 -handles,0.605,1.0,0.5833333333333333,0.7,1,25 -camera,0.6383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -eraser,0.65,1.0,0.6166666666666666,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5933333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -pitcher,0.5466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.505,1.0,0.5166666666666666,0.65,1,26 -stick,0.5549999999999999,1.0,0.4999999999999999,0.6333333333333333,1,25 -cereal,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -bulb,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,27 -hair,0.5433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5983333333333334,1.0,0.5,0.65,1,26 -can,0.9016666666666667,1.0,0.8666666666666666,0.9200000000000002,2,26 -coca,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -crackers,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -plate,0.7633333333333333,1.0,0.65,0.75,1,25 -calculator,0.6816666666666668,0.8,0.6666666666666666,0.65,1,26 -tissues,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -pink,0.71,1.0,0.7,0.7833333333333333,1,25 -lemon,0.7133333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -peach,0.605,1.0,0.5833333333333333,0.7,1,26 -bowl,0.6900000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7083333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -blue,0.5583333333333333,1.0,0.4333333333333333,0.6,1,25 -used,0.8216666666666667,1.0,0.7166666666666666,0.8,1,24 -energizer,0,0,0,0,1,26 -pear,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.7133333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -notebook,0.73,1.0,0.75,0.8166666666666668,1,26 -garlic,0.5683333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -cleaning,0.6399999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -pair,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,27 -container,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666666,1,25 -tomato,0.425,0.6,0.5333333333333333,0.5133333333333333,1,26 -cellphone,0.78,1.0,0.7499999999999999,0.8166666666666667,1,26 -potato,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -light,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8766666666666666,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6485493827160494 -F1-Score: 0.6863183421516756 -Precision: 0.901466049382716 -Recall: 0.6072530864197531 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7416666666666666,1.0,0.7,0.7833333333333333,1,25 -yellow,0.9100000000000001,0.75,1.0,0.8333333333333333,6,24 -looks,0.45833333333333337,0.8,0.5166666666666666,0.55,1,24 -keyboard,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -glue,0.46333333333333326,1.0,0.45,0.6,1,26 -milk,0,0,0,0,1,26 -cola,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -flashlight,0.6216666666666667,1.0,0.55,0.6833333333333333,1,26 -cup,0.5583333333333333,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -jam,0.6583333333333333,1.0,0.6,0.7166666666666667,1,26 -black,0.9100000000000001,0.7833333333333333,1.0,0.86,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7916666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -soccer,0.6799999999999999,1.0,0.65,0.75,1,26 -hat,0.6416666666666667,1.0,0.5833333333333333,0.7,1,26 -brown,0.9350000000000002,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.505,1.0,0.45,0.6,1,26 -handle,0.725,1.0,0.75,0.8166666666666667,1,26 -food,0.7066666666666667,1.0,0.55,0.6833333333333333,1,25 -towel,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -chips,0.6900000000000001,1.0,0.6,0.7166666666666667,1,26 -stapler,0.6133333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -bag,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -sponge,0.6016666666666667,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.6383333333333333,1.0,0.5833333333333333,0.7,1,25 -special,0.7216666666666667,1.0,0.7,0.7833333333333333,1,26 -colgate,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -leaf,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -tube,0.63,1.0,0.55,0.6833333333333333,1,26 -cell,0.7633333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -mug,0.61,1.0,0.5166666666666666,0.65,1,26 -yogurt,0.5599999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -plantain,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -red,0.8216666666666665,0.6166666666666667,1.0,0.7466666666666667,3,24 -pepper,0.6216666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -wheat,0.8016666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -kleenex,0.705,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.5599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.7166666666666667,1.0,0.7,0.7833333333333333,1,26 -pliers,0.8933333333333333,1.0,0.8333333333333333,0.8833333333333332,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5383333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -thins,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -package,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -k,0.6183333333333333,1.0,0.5,0.65,1,26 -jelly,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -fruit,0.7849999999999999,0.7833333333333333,0.8666666666666668,0.77,2,26 -apple,0.5266666666666666,0.95,0.4666666666666666,0.6,1,25 -bell,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -battery,0.4666666666666666,1.0,0.5,0.6333333333333333,1,26 -jar,0.6766666666666665,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -lettuce,0.625,1.0,0.5333333333333333,0.6666666666666666,1,26 -brush,0.5999999999999999,1.0,0.5333333333333332,0.65,1,26 -scissors,0.4916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.45499999999999996,1.0,0.45,0.6,1,25 -toothpaste,0.5133333333333334,1.0,0.5833333333333333,0.7,1,26 -top,0.5716666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -handles,0.755,1.0,0.6333333333333333,0.75,1,25 -camera,0.4766666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -eraser,0.6216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6633333333333333,1.0,0.65,0.75,1,26 -pitcher,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.6666666666666667,1.0,0.55,0.6833333333333333,1,26 -stick,0.6516666666666666,1.0,0.6,0.7166666666666667,1,25 -cereal,0.73,1.0,0.5999999999999999,0.7166666666666666,1,26 -bulb,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -hair,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6266666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -can,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,25 -coca,0.5966666666666667,1.0,0.5166666666666666,0.65,1,26 -crackers,0.615,1.0,0.5999999999999999,0.7166666666666667,1,26 -plate,0.6433333333333333,1.0,0.55,0.6833333333333333,1,24 -calculator,0.52,0.5,0.6166666666666666,0.53,1,26 -tissues,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -juice,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -pink,0.6966666666666667,1.0,0.6,0.7166666666666667,1,25 -lemon,0.49333333333333335,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -bowl,0.605,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8216666666666665,1.0,0.7666666666666666,0.8333333333333333,1,26 -blue,0.7,1.0,0.55,0.6833333333333333,1,25 -used,0.5466666666666666,1.0,0.5166666666666666,0.65,1,24 -energizer,0,0,0,0,1,26 -pear,0.6833333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -ball,0.7899999999999999,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.8166666666666667,1.0,0.7166666666666666,0.8,1,26 -garlic,0.505,1.0,0.4833333333333333,0.6333333333333333,1,26 -cleaning,0.4666666666666666,1.0,0.5166666666666666,0.65,1,26 -pair,0.8099999999999999,1.0,0.7666666666666667,0.8600000000000001,2,26 -container,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -tomato,0.5149999999999999,0.65,0.6833333333333332,0.5733333333333334,1,26 -cellphone,0.6933333333333332,1.0,0.5833333333333333,0.7,1,26 -potato,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -light,0.8633333333333333,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.925,1.0,0.9,0.9400000000000001,2,27 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6359722222222222 -F1-Score: 0.6811111111111111 -Precision: 0.9012345679012347 -Recall: 0.6009259259259259 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5816666666666667,1.0,0.41666666666666663,0.5833333333333334,1,25 -yellow,0.9466666666666667,0.8666666666666666,1.0,0.9133333333333333,6,24 -looks,0.6166666666666666,0.75,0.5166666666666666,0.5833333333333333,1,24 -keyboard,0.6316666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -glue,0.705,1.0,0.6,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.8066666666666666,1.0,0.6333333333333333,0.75,1,26 -flashlight,0.65,1.0,0.55,0.6833333333333333,1,26 -cup,0.3916666666666667,0.5,0.5833333333333333,0.51,1,26 -folded,0.775,1.0,0.7666666666666666,0.8333333333333334,1,26 -jam,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -black,0.9066666666666666,0.825,1.0,0.8923809523809524,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.5183333333333333,1.0,0.4333333333333333,0.6,1,26 -soccer,0.6266666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -hat,0.7633333333333334,1.0,0.7166666666666666,0.8,1,26 -brown,0.9133333333333333,1.0,0.9,0.9400000000000001,2,24 -coffee,0.755,1.0,0.7,0.7833333333333333,1,26 -handle,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,25 -food,0.6866666666666666,1.0,0.5166666666666666,0.6666666666666667,1,25 -towel,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -chips,0.6766666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -stapler,0.8099999999999999,1.0,0.7,0.7833333333333333,1,26 -onion,0.6766666666666666,1.0,0.6499999999999999,0.75,1,26 -bag,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -sponge,0.8466666666666665,1.0,0.8333333333333333,0.8833333333333332,1,26 -zero,0,0,0,0,1,26 -computer,0.6799999999999999,1.0,0.6499999999999999,0.75,1,25 -special,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -colgate,0.6833333333333333,1.0,0.6,0.7166666666666667,1,26 -leaf,0.41666666666666663,1.0,0.4499999999999999,0.6,1,26 -tube,0.61,1.0,0.4666666666666666,0.6166666666666667,1,26 -cell,0.675,1.0,0.7,0.7833333333333333,1,26 -mug,0.6633333333333333,1.0,0.65,0.75,1,26 -yogurt,0.6966666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -plantain,0.6716666666666666,1.0,0.65,0.75,1,26 -red,0.9466666666666667,0.85,1.0,0.9,3,25 -pepper,0.4916666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -wheat,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -kleenex,0.655,1.0,0.4999999999999999,0.65,1,26 -toothbrush,0.5549999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -binder,0.835,1.0,0.7166666666666666,0.8,1,26 -baseball,0.775,1.0,0.7499999999999999,0.8166666666666667,1,26 -pliers,0.5216666666666667,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -package,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.58,1.0,0.5166666666666666,0.65,1,26 -fruit,0.7766666666666666,0.65,0.9333333333333332,0.7366666666666667,2,27 -apple,0.5083333333333333,0.85,0.5166666666666666,0.5833333333333333,1,25 -bell,0.7,1.0,0.55,0.6833333333333333,1,26 -battery,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -jar,0.7216666666666667,1.0,0.7,0.7833333333333333,1,26 -bound,0.6766666666666666,1.0,0.6499999999999999,0.75,1,26 -lettuce,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -brush,0.6766666666666665,1.0,0.5999999999999999,0.7166666666666666,1,26 -scissors,0.7216666666666667,1.0,0.55,0.7,1,26 -lime,0.6,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.6716666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -top,0.6100000000000001,1.0,0.5833333333333333,0.7,1,26 -spiral,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -handles,0.605,1.0,0.4666666666666666,0.6166666666666666,1,25 -camera,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -eraser,0.765,1.0,0.6666666666666666,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.5166666666666666,1.0,0.5166666666666666,0.65,1,26 -pitcher,0.7416666666666666,1.0,0.6499999999999999,0.75,1,26 -phone,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -stick,0.65,1.0,0.5833333333333333,0.7,1,25 -cereal,0.5933333333333333,1.0,0.5166666666666666,0.65,1,26 -bulb,0.9016666666666667,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.5916666666666666,1.0,0.5166666666666666,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6666666666666666,1.0,0.6,0.7166666666666667,1,26 -can,0.9100000000000001,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.525,1.0,0.5166666666666666,0.65,1,26 -crackers,0.5999999999999999,1.0,0.5999999999999999,0.7,1,26 -plate,0.78,1.0,0.6,0.7333333333333333,1,24 -calculator,0.6333333333333333,0.95,0.6666666666666666,0.7166666666666666,1,26 -tissues,0.45833333333333337,1.0,0.5,0.6333333333333333,1,26 -juice,0.6633333333333333,1.0,0.65,0.75,1,26 -pink,0.575,1.0,0.5499999999999999,0.6666666666666666,1,25 -lemon,0.7066666666666668,1.0,0.5333333333333333,0.6666666666666667,1,26 -peach,0.7933333333333333,1.0,0.6333333333333333,0.75,1,26 -bowl,0.7083333333333333,1.0,0.75,0.8166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.56,1.0,0.5166666666666666,0.65,1,26 -blue,0.7633333333333334,1.0,0.6833333333333333,0.7833333333333333,1,25 -used,0.8099999999999999,1.0,0.7166666666666666,0.8,1,24 -energizer,0,0,0,0,1,26 -pear,0.5216666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -ball,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,25 -notebook,0.58,1.0,0.4666666666666666,0.6166666666666666,1,26 -garlic,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -cleaning,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -pair,0.8816666666666668,1.0,0.8333333333333334,0.9000000000000001,2,27 -container,0.7633333333333333,1.0,0.7166666666666666,0.8,1,25 -tomato,0.72,0.7,0.8166666666666667,0.6666666666666667,1,26 -cellphone,0.6,1.0,0.6666666666666666,0.75,1,26 -potato,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6492438271604938 -F1-Score: 0.6896516754850088 -Precision: 0.9068672839506172 -Recall: 0.6084876543209877 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7583333333333333,1.0,0.7499999999999999,0.8166666666666667,1,25 -yellow,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,6,24 -looks,0.5716666666666668,0.85,0.4999999999999999,0.6,1,24 -keyboard,0.6599999999999999,1.0,0.4833333333333333,0.6333333333333334,1,26 -glue,0.8083333333333332,1.0,0.7833333333333333,0.85,1,26 -milk,0,0,0,0,1,26 -cola,0.7483333333333333,1.0,0.5666666666666667,0.7,1,26 -flashlight,0.5166666666666666,1.0,0.5166666666666666,0.65,1,26 -cup,0.32166666666666666,0.5,0.4833333333333332,0.4766666666666667,1,26 -folded,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -jam,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -black,0.8366666666666667,0.6166666666666667,1.0,0.7533333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.4333333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -soccer,0.63,1.0,0.6333333333333333,0.7333333333333334,1,26 -hat,0.6633333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.8800000000000001,1.0,0.8666666666666666,0.9199999999999999,2,24 -coffee,0.7916666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -handle,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -food,0.8266666666666665,1.0,0.7833333333333333,0.85,1,25 -towel,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -chips,0.4333333333333333,1.0,0.4833333333333333,0.6166666666666666,1,26 -stapler,0.7133333333333333,1.0,0.7166666666666666,0.8,1,26 -onion,0.7083333333333333,1.0,0.5666666666666667,0.7,1,26 -bag,0.7833333333333333,1.0,0.8,0.85,1,26 -sponge,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.575,1.0,0.6833333333333332,0.7666666666666666,1,25 -special,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -leaf,0.8416666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -tube,0.755,1.0,0.7,0.7833333333333333,1,26 -cell,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -mug,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -yogurt,0.575,1.0,0.5166666666666666,0.65,1,26 -plantain,0.53,1.0,0.5499999999999999,0.6666666666666666,1,26 -red,0.9233333333333335,0.8,1.0,0.8666666666666668,3,26 -pepper,0.69,1.0,0.5999999999999999,0.7166666666666666,1,26 -wheat,0.6866666666666666,1.0,0.6,0.7166666666666667,1,26 -kleenex,0.5133333333333333,1.0,0.5,0.6333333333333333,1,26 -toothbrush,0.74,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.7466666666666667,1.0,0.65,0.75,1,26 -baseball,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -pliers,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.73,1.0,0.5999999999999999,0.7166666666666667,1,26 -thins,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -package,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -k,0.9,1.0,0.85,0.9,1,26 -jelly,0.655,1.0,0.5166666666666666,0.65,1,26 -fruit,0.7300000000000001,0.7,0.9,0.76,2,25 -apple,0.46499999999999997,0.85,0.5333333333333333,0.5833333333333333,1,25 -bell,0.5766666666666667,1.0,0.4333333333333333,0.6,1,26 -battery,0.6749999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -jar,0.8066666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -bound,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -lettuce,0.865,1.0,0.7333333333333333,0.8166666666666667,1,26 -brush,0.7166666666666667,1.0,0.5833333333333333,0.7,1,26 -scissors,0.8083333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -lime,0.7916666666666666,1.0,0.6833333333333333,0.7833333333333333,1,25 -toothpaste,0.6383333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -top,0.6933333333333334,1.0,0.65,0.75,1,26 -spiral,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -handles,0.475,1.0,0.5499999999999999,0.6666666666666667,1,25 -camera,0.65,1.0,0.5833333333333333,0.7,1,26 -eraser,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333334,1,26 -creamer,0,0,0,0,1,26 -white,0.9666666666666668,0.9,1.0,0.9333333333333332,5,22 -banana,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.585,1.0,0.5166666666666666,0.65,1,26 -phone,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -stick,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,25 -cereal,0.6799999999999999,1.0,0.65,0.75,1,26 -bulb,0.8516666666666666,1.0,0.8,0.8800000000000001,2,26 -hair,0.755,1.0,0.6166666666666666,0.7333333333333334,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.45999999999999996,1.0,0.5166666666666666,0.65,1,26 -can,0.8516666666666666,1.0,0.8,0.8800000000000001,2,25 -coca,0.7416666666666666,1.0,0.65,0.75,1,26 -crackers,0.5383333333333333,1.0,0.5,0.6333333333333333,1,26 -plate,0.7933333333333332,1.0,0.7666666666666666,0.8333333333333333,1,25 -calculator,0.58,0.5,0.6833333333333333,0.5566666666666666,1,26 -tissues,0.6666666666666667,1.0,0.5833333333333333,0.7,1,26 -juice,0.6183333333333334,1.0,0.5,0.65,1,26 -pink,0.525,1.0,0.5666666666666667,0.6833333333333333,1,25 -lemon,0.78,1.0,0.7166666666666666,0.8,1,26 -peach,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -bowl,0.7466666666666667,1.0,0.75,0.8166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.725,1.0,0.7,0.7833333333333333,1,26 -blue,0.755,1.0,0.6166666666666666,0.7333333333333333,1,25 -used,0.7633333333333333,1.0,0.6499999999999999,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.6333333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -ball,0.5166666666666666,1.0,0.6,0.7,1,25 -notebook,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -garlic,0.615,1.0,0.4666666666666666,0.6166666666666666,1,26 -cleaning,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -pair,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -container,0.7416666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -tomato,0.6583333333333333,0.55,0.7333333333333333,0.5900000000000001,1,26 -cellphone,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -potato,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -light,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6626851851851852 -F1-Score: 0.6951543209876543 -Precision: 0.8998456790123457 -Recall: 0.6197530864197531 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7416666666666667,1.0,0.7666666666666666,0.8333333333333333,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.7166666666666666,0.9,0.7499999999999999,0.75,1,24 -keyboard,0.755,1.0,0.6833333333333333,0.7833333333333333,1,26 -glue,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.6433333333333333,1.0,0.6,0.7166666666666667,1,26 -flashlight,0.5166666666666667,1.0,0.4833333333333333,0.6166666666666667,1,26 -cup,0.5,0.5,0.6666666666666666,0.5466666666666666,1,26 -folded,0.66,1.0,0.4999999999999999,0.65,1,26 -jam,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -black,0.9266666666666667,0.8166666666666667,1.0,0.8799999999999999,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6383333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -soccer,0.715,1.0,0.5666666666666667,0.7,1,26 -hat,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -brown,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -coffee,0.7683333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -handle,0.655,1.0,0.6166666666666666,0.7333333333333334,1,26 -food,0.6499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -towel,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -chips,0.7333333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -stapler,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -onion,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -bag,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.7,1.0,0.7,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6966666666666665,1.0,0.6333333333333333,0.7333333333333333,1,25 -special,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -colgate,0.7333333333333333,1.0,0.75,0.8166666666666668,1,26 -leaf,0.6849999999999999,1.0,0.5666666666666667,0.7,1,26 -tube,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -cell,0.35,0.6,0.5666666666666667,0.52,1,26 -mug,0.7333333333333333,1.0,0.6499999999999999,0.75,1,26 -yogurt,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -plantain,0.5499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -red,0.9666666666666668,0.9,1.0,0.9333333333333332,3,26 -pepper,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -wheat,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.7916666666666666,1.0,0.75,0.8166666666666667,1,26 -toothbrush,0.6299999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -binder,0.6833333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -baseball,0.5333333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -pliers,0.7100000000000001,1.0,0.5499999999999999,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,24 -water,0.6016666666666666,1.0,0.55,0.6833333333333333,1,26 -thins,0.7749999999999999,1.0,0.7,0.7833333333333333,1,26 -package,0.7483333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.5999999999999999,1.0,0.6666666666666666,0.75,1,26 -jelly,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -fruit,0.8033333333333333,0.7,0.9333333333333332,0.7666666666666666,2,25 -apple,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -bell,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -battery,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -jar,0.7466666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -lettuce,0.805,1.0,0.7166666666666666,0.8,1,26 -brush,0.8133333333333335,0.75,0.8666666666666666,0.7333333333333333,1,26 -scissors,0.6383333333333334,1.0,0.5833333333333333,0.7,1,26 -lime,0.6133333333333333,1.0,0.65,0.75,1,25 -toothpaste,0.7383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -top,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -spiral,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -handles,0.76,1.0,0.6666666666666666,0.7666666666666667,1,25 -camera,0.55,1.0,0.4999999999999999,0.6333333333333333,1,26 -eraser,0.8683333333333334,1.0,0.75,0.8333333333333334,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,23 -banana,0.7833333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -pitcher,0.6216666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -phone,0.78,1.0,0.7166666666666666,0.8,1,26 -stick,0.78,1.0,0.65,0.75,1,25 -cereal,0.755,1.0,0.6833333333333333,0.7833333333333333,1,26 -bulb,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -hair,0.4666666666666666,1.0,0.4833333333333334,0.6166666666666666,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.775,1.0,0.7,0.7833333333333333,1,26 -can,0.9016666666666666,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.6666666666666666,1.0,0.6833333333333332,0.7666666666666666,1,26 -crackers,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -plate,0.6266666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -calculator,0.725,0.95,0.7166666666666666,0.7666666666666667,1,26 -tissues,0.7633333333333334,1.0,0.6333333333333333,0.75,1,26 -juice,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -pink,0.6166666666666666,1.0,0.5166666666666666,0.65,1,25 -lemon,0.6633333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -peach,0.755,1.0,0.6833333333333333,0.7833333333333333,1,26 -bowl,0.8816666666666666,1.0,0.75,0.8333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7483333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -blue,0.5216666666666666,1.0,0.5833333333333333,0.7,1,25 -used,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.755,1.0,0.65,0.75,1,26 -ball,0.7533333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -garlic,0.7249999999999999,1.0,0.6499999999999999,0.75,1,26 -cleaning,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -pair,0.975,1.0,0.9666666666666666,0.9800000000000001,2,27 -container,0.55,1.0,0.4999999999999999,0.6333333333333333,1,25 -tomato,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -cellphone,0.4933333333333333,0.55,0.6,0.53,1,26 -potato,0.7683333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -light,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,27 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.674429012345679 -F1-Score: 0.702993827160494 -Precision: 0.9038580246913581 -Recall: 0.6285493827160493 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.55,1.0,0.5666666666666667,0.6833333333333333,1,24 -yellow,0.9633333333333333,0.9166666666666666,1.0,0.9466666666666667,6,24 -looks,0.6566666666666667,0.9,0.6,0.6666666666666667,1,24 -keyboard,0.55,1.0,0.5833333333333333,0.7,1,26 -glue,0.5766666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -flashlight,0.38333333333333325,1.0,0.4499999999999999,0.6,1,26 -cup,0.54,0.5,0.6833333333333333,0.5566666666666666,1,26 -folded,0.65,1.0,0.5999999999999999,0.7,1,26 -jam,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -black,0.9233333333333335,0.8166666666666667,1.0,0.8799999999999999,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -soccer,0.58,1.0,0.5166666666666666,0.65,1,26 -hat,0.8216666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -brown,0.8866666666666667,1.0,0.8333333333333333,0.9,2,25 -coffee,0.7166666666666666,1.0,0.6833333333333333,0.7666666666666666,1,25 -handle,0.4716666666666667,1.0,0.4499999999999999,0.6,1,25 -food,0.5966666666666667,1.0,0.4333333333333333,0.6,1,26 -towel,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -stapler,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.6316666666666666,1.0,0.55,0.6833333333333333,1,26 -bag,0.6466666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -sponge,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -special,0.6249999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -colgate,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -leaf,0.48,1.0,0.45,0.6,1,26 -tube,0.45,1.0,0.55,0.6666666666666667,1,26 -cell,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -mug,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,25 -yogurt,0.6366666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -plantain,0.5383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -red,0.8400000000000001,0.65,1.0,0.7780952380952381,3,26 -pepper,0.63,1.0,0.5333333333333333,0.6666666666666667,1,26 -wheat,0.7466666666666666,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.7733333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -toothbrush,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -binder,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -baseball,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -pliers,0.8066666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.9,1.0,0.9333333333333332,0.95,1,26 -thins,0.6516666666666666,1.0,0.4833333333333332,0.6333333333333333,1,26 -package,0.7666666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -k,0.5349999999999999,1.0,0.5166666666666666,0.65,1,26 -jelly,0.4749999999999999,1.0,0.4833333333333332,0.6166666666666666,1,26 -fruit,0.7716666666666667,0.7666666666666666,0.8666666666666668,0.7866666666666667,2,26 -apple,0.39166666666666666,0.7,0.4666666666666666,0.52,1,25 -bell,0.4833333333333333,1.0,0.55,0.6666666666666666,1,26 -battery,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -jar,0.8583333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -bound,0.5666666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -lettuce,0.725,1.0,0.65,0.75,1,26 -brush,0.4916666666666667,0.5,0.75,0.5700000000000001,1,26 -scissors,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -lime,0.805,1.0,0.6833333333333333,0.7833333333333333,1,25 -toothpaste,0.6633333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -top,0.5766666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.6599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.63,1.0,0.6166666666666666,0.7166666666666666,1,25 -camera,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -eraser,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.6916666666666667,0.9,0.6666666666666666,0.7,1,26 -pitcher,0.5599999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -phone,0.575,1.0,0.5166666666666666,0.65,1,26 -stick,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,25 -cereal,0.7416666666666666,1.0,0.6833333333333332,0.7666666666666666,1,26 -bulb,0.8633333333333333,1.0,0.8333333333333333,0.9,2,27 -hair,0.6266666666666667,1.0,0.5166666666666666,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7566666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -can,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -coca,0.6416666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.5716666666666665,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.5599999999999999,1.0,0.4999999999999999,0.6333333333333333,1,25 -calculator,0.4933333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -tissues,0.7266666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.7483333333333333,1.0,0.6333333333333333,0.75,1,26 -pink,0.425,1.0,0.4999999999999999,0.6333333333333333,1,25 -lemon,0.7016666666666667,1.0,0.5833333333333333,0.7,1,26 -peach,0.6966666666666667,1.0,0.7,0.7833333333333333,1,26 -bowl,0.6466666666666667,1.0,0.65,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.73,1.0,0.6499999999999999,0.75,1,26 -blue,0.43000000000000005,0.95,0.4833333333333332,0.5833333333333333,1,25 -used,0.4966666666666666,1.0,0.4833333333333333,0.6166666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.6383333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -ball,0.4833333333333333,1.0,0.4833333333333334,0.6166666666666666,1,25 -notebook,0.5966666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.5166666666666667,1.0,0.45,0.6,1,26 -cleaning,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -pair,0.9349999999999999,1.0,0.9,0.9400000000000001,2,27 -container,0.4216666666666667,1.0,0.4666666666666666,0.6166666666666666,1,25 -tomato,0.425,0.7,0.4999999999999999,0.52,1,26 -cellphone,0.5716666666666667,1.0,0.4333333333333334,0.6,1,26 -potato,0.48,1.0,0.5499999999999999,0.6666666666666666,1,25 -light,0.8766666666666666,1.0,0.8333333333333333,0.9,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,1.0,1.0,1.0,1.0,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6216512345679013 -F1-Score: 0.6750749559082893 -Precision: 0.900925925925926 -Recall: 0.5936728395061729 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7,1.0,0.7333333333333333,0.8,1,25 -yellow,0.8766666666666666,0.7,1.0,0.8066666666666666,6,24 -looks,0.6249999999999999,0.75,0.5833333333333333,0.5666666666666667,1,24 -keyboard,0.4216666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -glue,0.6316666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -flashlight,0.775,1.0,0.7,0.7833333333333334,1,26 -cup,0.5283333333333333,0.5,0.7333333333333333,0.5733333333333334,1,26 -folded,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -jam,0.6833333333333333,1.0,0.6,0.7166666666666667,1,26 -black,0.9266666666666667,0.8166666666666667,1.0,0.8800000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.38,1.0,0.4333333333333333,0.5833333333333333,1,26 -soccer,0.755,1.0,0.6166666666666666,0.7333333333333333,1,26 -hat,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.975,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -handle,0.66,1.0,0.5833333333333333,0.7,1,26 -food,0.6166666666666667,1.0,0.55,0.6833333333333333,1,24 -towel,0.575,1.0,0.4833333333333333,0.6333333333333333,1,26 -chips,0.8099999999999999,1.0,0.65,0.7666666666666667,1,26 -stapler,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -sponge,0.39999999999999997,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.55,1.0,0.6166666666666666,0.7166666666666666,1,26 -special,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -colgate,0.86,1.0,0.7666666666666666,0.8333333333333333,1,26 -leaf,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -tube,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -mug,0.775,1.0,0.6333333333333333,0.75,1,26 -yogurt,0.7666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -plantain,0.6333333333333333,1.0,0.5,0.65,1,26 -red,0.8416666666666666,0.6666666666666667,1.0,0.7914285714285714,3,26 -pepper,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -wheat,0.4866666666666667,1.0,0.41666666666666663,0.5833333333333333,1,26 -kleenex,0.805,1.0,0.7333333333333333,0.8166666666666668,1,26 -toothbrush,0.73,1.0,0.6833333333333332,0.7666666666666666,1,26 -binder,0.56,1.0,0.5333333333333333,0.6666666666666667,1,26 -baseball,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -pliers,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -thins,0.6216666666666667,1.0,0.6499999999999999,0.75,1,26 -package,0.7233333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -k,0.805,1.0,0.7,0.7833333333333333,1,26 -jelly,0.71,1.0,0.6499999999999999,0.75,1,26 -fruit,0.6016666666666667,0.6166666666666667,0.8,0.68,2,25 -apple,0.7150000000000001,0.95,0.6166666666666666,0.7,1,25 -bell,0.5499999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -battery,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -jar,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.62,1.0,0.4999999999999999,0.65,1,26 -lettuce,0.5916666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -brush,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.7483333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -lime,0.6083333333333333,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -spiral,0.8283333333333334,1.0,0.65,0.7666666666666667,1,26 -handles,0.7166666666666667,1.0,0.65,0.75,1,25 -camera,0.7533333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -eraser,0.5166666666666666,1.0,0.5999999999999999,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.8,0.85,0.7666666666666666,0.7333333333333333,1,26 -pitcher,0.6666666666666666,1.0,0.6499999999999999,0.75,1,26 -phone,0.48,1.0,0.4666666666666666,0.6166666666666667,1,26 -stick,0.5966666666666666,1.0,0.5166666666666666,0.65,1,25 -cereal,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -bulb,0.8583333333333332,1.0,0.8333333333333333,0.9,2,26 -hair,0.7266666666666667,1.0,0.5666666666666667,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6799999999999999,1.0,0.6,0.7166666666666666,1,26 -can,0.9099999999999999,1.0,0.8666666666666668,0.9200000000000002,2,25 -coca,0.6133333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -calculator,0.4216666666666667,0.85,0.4,0.5166666666666666,1,26 -tissues,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -juice,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666667,1,26 -pink,0.7133333333333334,1.0,0.6666666666666666,0.7666666666666667,1,25 -lemon,0.8216666666666667,1.0,0.7,0.8,1,26 -peach,0.725,1.0,0.65,0.75,1,26 -bowl,0.6166666666666667,1.0,0.65,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7466666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -blue,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666667,1,25 -used,0.5966666666666666,1.0,0.5333333333333333,0.6666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.66,1.0,0.5833333333333333,0.7,1,26 -ball,0.7416666666666667,1.0,0.7166666666666666,0.8,1,25 -notebook,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -garlic,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -cleaning,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -pair,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,27 -container,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -tomato,0.4116666666666666,0.6,0.5166666666666666,0.5033333333333333,1,26 -cellphone,0.5666666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -potato,0.4916666666666666,1.0,0.4833333333333332,0.6166666666666666,1,25 -light,0.7933333333333333,1.0,0.7666666666666667,0.8600000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9333333333333332,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.643611111111111 -F1-Score: 0.6884391534391534 -Precision: 0.900925925925926 -Recall: 0.6104938271604938 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5683333333333332,1.0,0.5833333333333333,0.7,1,24 -yellow,1.0,1.0,1.0,1.0,6,26 -looks,0.6433333333333333,0.85,0.6333333333333333,0.6333333333333333,1,24 -keyboard,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -glue,0.6900000000000001,1.0,0.5,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -flashlight,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -cup,0.47833333333333333,0.5,0.5499999999999999,0.5033333333333333,1,26 -folded,0.6833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jam,0.3466666666666667,1.0,0.41666666666666663,0.5666666666666667,1,26 -black,0.8300000000000001,0.6583333333333333,1.0,0.7790476190476191,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7383333333333333,1.0,0.6333333333333333,0.75,1,26 -soccer,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -hat,0.5633333333333334,1.0,0.5,0.6333333333333333,1,26 -brown,0.9266666666666667,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.7333333333333333,1.0,0.6333333333333333,0.75,1,25 -handle,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -food,0.5266666666666666,1.0,0.4666666666666666,0.6166666666666666,1,25 -towel,0.6083333333333333,1.0,0.6499999999999999,0.75,1,26 -chips,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -onion,0.6799999999999999,0.9,0.7,0.7166666666666666,1,26 -bag,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -sponge,0.835,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.5800000000000001,1.0,0.5333333333333333,0.6666666666666667,1,25 -special,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -colgate,0.6683333333333333,1.0,0.65,0.75,1,26 -leaf,0.7166666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -tube,0.75,1.0,0.65,0.75,1,26 -cell,0.5583333333333333,0.5,0.7,0.5533333333333335,1,26 -mug,0.6466666666666667,1.0,0.4833333333333333,0.6333333333333333,1,25 -yogurt,0.6266666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -plantain,0.58,1.0,0.5166666666666666,0.65,1,26 -red,0.9333333333333333,0.85,1.0,0.9066666666666666,3,27 -pepper,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -wheat,0.7299999999999999,1.0,0.6499999999999999,0.75,1,26 -kleenex,0.4716666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -toothbrush,0.4883333333333333,1.0,0.4333333333333334,0.5833333333333333,1,26 -binder,0.5683333333333332,1.0,0.4666666666666666,0.6166666666666667,1,26 -baseball,0.61,1.0,0.5166666666666666,0.65,1,26 -pliers,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7100000000000001,1.0,0.6,0.7166666666666667,1,26 -thins,0.53,1.0,0.5333333333333333,0.6666666666666667,1,26 -package,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -k,0.8516666666666668,1.0,0.7,0.8,1,26 -jelly,0.635,1.0,0.5666666666666667,0.7,1,26 -fruit,0.7866666666666666,0.75,0.8666666666666666,0.78,2,26 -apple,0.5633333333333332,1.0,0.5833333333333333,0.7,1,25 -bell,0.5766666666666667,1.0,0.5166666666666666,0.65,1,26 -battery,0.6916666666666667,1.0,0.65,0.75,1,26 -jar,0.5766666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -bound,0.6133333333333333,1.0,0.4999999999999999,0.65,1,26 -lettuce,0.6849999999999999,1.0,0.5666666666666667,0.7,1,26 -brush,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -scissors,0.7433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -lime,0.7833333333333333,1.0,0.7999999999999999,0.85,1,25 -toothpaste,0.775,1.0,0.6666666666666666,0.7666666666666667,1,26 -top,0.675,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -handles,0.8133333333333332,1.0,0.7499999999999999,0.8166666666666667,1,25 -camera,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.8666666666666666,1.0,0.8833333333333332,0.9166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7766666666666666,1.0,0.6499999999999999,0.75,1,26 -pitcher,0.6466666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -phone,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -stick,0.5683333333333332,1.0,0.5499999999999999,0.6833333333333333,1,25 -cereal,0.625,1.0,0.5333333333333333,0.6666666666666666,1,26 -bulb,0.8633333333333333,1.0,0.8333333333333334,0.9000000000000001,2,26 -hair,0.7333333333333333,1.0,0.6333333333333332,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -can,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.605,1.0,0.5333333333333333,0.6666666666666666,1,26 -crackers,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -plate,0.6066666666666667,1.0,0.4833333333333333,0.6333333333333333,1,25 -calculator,0.6766666666666667,0.95,0.6666666666666666,0.7333333333333334,1,26 -tissues,0.7,1.0,0.6499999999999999,0.75,1,26 -juice,0.6966666666666665,1.0,0.65,0.75,1,26 -pink,0.6766666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -lemon,0.7383333333333333,1.0,0.65,0.75,1,26 -peach,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -bowl,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5666666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -blue,0.6666666666666666,0.8,0.6666666666666666,0.6666666666666667,1,25 -used,0.7983333333333333,1.0,0.6666666666666666,0.7666666666666666,1,23 -energizer,0,0,0,0,1,26 -pear,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -ball,0.7383333333333333,1.0,0.65,0.75,1,25 -notebook,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.78,1.0,0.7166666666666666,0.8,1,26 -cleaning,0.7383333333333333,1.0,0.6,0.7166666666666667,1,26 -pair,0.9066666666666666,1.0,0.8666666666666668,0.9200000000000002,2,27 -container,0.75,1.0,0.6666666666666666,0.7666666666666667,1,25 -tomato,0.5683333333333334,0.9,0.5333333333333333,0.6,1,26 -cellphone,0.5266666666666666,0.55,0.7,0.5633333333333334,1,26 -potato,0.5933333333333334,1.0,0.5,0.65,1,25 -light,0.96,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,25 -bottle,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,27 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6470833333333333 -F1-Score: 0.686194885361552 -Precision: 0.9000771604938271 -Recall: 0.6084876543209877 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.605,1.0,0.4333333333333333,0.6,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.5466666666666666,1.0,0.5333333333333333,0.6666666666666667,1,24 -keyboard,0.4383333333333333,1.0,0.4,0.5666666666666667,1,26 -glue,0.8099999999999999,1.0,0.7333333333333333,0.8166666666666668,1,26 -milk,0,0,0,0,1,26 -cola,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -flashlight,0.6666666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -cup,0.72,0.5,0.9,0.6333333333333333,1,26 -folded,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -jam,0.735,1.0,0.5833333333333333,0.7,1,26 -black,0.9666666666666668,0.9,1.0,0.9333333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.8100000000000002,1.0,0.6833333333333333,0.7833333333333333,1,26 -soccer,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -hat,0.425,1.0,0.5,0.6333333333333333,1,26 -brown,0.9083333333333332,1.0,0.9,0.9400000000000001,2,24 -coffee,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -handle,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -food,0.55,1.0,0.6166666666666666,0.7166666666666666,1,24 -towel,0.8133333333333332,1.0,0.7499999999999999,0.8166666666666667,1,26 -chips,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -stapler,0.5966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.6933333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -bag,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -sponge,0.7633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.8016666666666667,1.0,0.7166666666666666,0.8,1,25 -special,0.745,1.0,0.5666666666666667,0.7,1,26 -colgate,0.5633333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -leaf,0.7883333333333333,1.0,0.7,0.7833333333333334,1,26 -tube,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -cell,0.7266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -mug,0.725,1.0,0.7,0.7833333333333333,1,26 -yogurt,0.5833333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -plantain,0.605,1.0,0.4999999999999999,0.65,1,26 -red,0.9666666666666668,0.9333333333333332,1.0,0.96,3,25 -pepper,0.4966666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -wheat,0.5549999999999999,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -toothbrush,0.71,1.0,0.6666666666666666,0.7666666666666666,1,26 -binder,0.5416666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -baseball,0.5583333333333333,1.0,0.5833333333333333,0.7,1,26 -pliers,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6849999999999999,1.0,0.55,0.6833333333333333,1,26 -thins,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -package,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -k,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -jelly,0.8316666666666667,1.0,0.65,0.7666666666666667,1,26 -fruit,0.8183333333333334,0.7333333333333333,0.9333333333333332,0.7866666666666667,2,25 -apple,0.6883333333333332,0.9,0.6333333333333333,0.6666666666666666,1,25 -bell,0.6766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -battery,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -jar,0.51,1.0,0.5166666666666666,0.65,1,26 -bound,0.6316666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -lettuce,0.4133333333333333,1.0,0.5499999999999999,0.6666666666666667,1,26 -brush,0.7416666666666667,1.0,0.7,0.7833333333333334,1,26 -scissors,0.585,1.0,0.5833333333333333,0.7,1,26 -lime,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666667,1,25 -toothpaste,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -top,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.5916666666666666,1.0,0.55,0.6833333333333333,1,25 -camera,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -eraser,0.7999999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7933333333333332,1.0,0.7,0.7833333333333333,1,26 -pitcher,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -phone,0.44666666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -stick,0.6799999999999999,1.0,0.65,0.75,1,25 -cereal,0.6683333333333333,1.0,0.6499999999999999,0.75,1,26 -bulb,0.8766666666666667,1.0,0.8333333333333333,0.9,2,26 -hair,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6249999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -can,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.7383333333333333,1.0,0.6,0.7166666666666667,1,26 -crackers,0.6433333333333333,1.0,0.6,0.7166666666666667,1,26 -plate,0.9349999999999999,1.0,0.85,0.9,1,25 -calculator,0.7350000000000001,0.95,0.6166666666666666,0.7,1,26 -tissues,0.7966666666666666,1.0,0.6333333333333333,0.75,1,26 -juice,0.3166666666666667,0.5,0.5666666666666667,0.5000000000000001,1,26 -pink,0.7633333333333333,1.0,0.7166666666666666,0.8,1,25 -lemon,0.7749999999999999,1.0,0.7166666666666666,0.8,1,26 -peach,0.475,0.5,0.6499999999999999,0.5366666666666667,1,26 -bowl,0.5183333333333333,1.0,0.45,0.6,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5166666666666666,1.0,0.5333333333333332,0.65,1,26 -blue,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -used,0.7633333333333333,1.0,0.7166666666666666,0.8,1,24 -energizer,0,0,0,0,1,26 -pear,0.5249999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -ball,0.73,1.0,0.5666666666666667,0.7,1,25 -notebook,0.76,1.0,0.6666666666666666,0.7666666666666666,1,26 -garlic,0.7666666666666667,1.0,0.6333333333333333,0.75,1,26 -cleaning,0.6933333333333334,1.0,0.5833333333333333,0.7,1,26 -pair,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -container,0.605,1.0,0.5833333333333333,0.7,1,26 -tomato,0.635,0.8,0.6333333333333333,0.6,1,26 -cellphone,0.51,1.0,0.4499999999999999,0.6,1,26 -potato,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666666,1,25 -light,0.905,1.0,0.8666666666666668,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6563117283950617 -F1-Score: 0.6945061728395061 -Precision: 0.904320987654321 -Recall: 0.6171296296296296 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5549999999999999,1.0,0.5833333333333333,0.7,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.6333333333333333,1.0,0.5166666666666666,0.65,1,24 -keyboard,0.65,1.0,0.5499999999999999,0.6833333333333333,1,26 -glue,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -flashlight,0.8466666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -cup,0.5349999999999999,0.5,0.6166666666666666,0.53,1,26 -folded,0.39666666666666667,1.0,0.45,0.6,1,26 -jam,0.7516666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -black,0.9066666666666666,0.8083333333333332,1.0,0.8790476190476191,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6083333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -soccer,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -hat,0.705,1.0,0.6499999999999999,0.75,1,26 -brown,0.8683333333333334,1.0,0.8333333333333333,0.9,2,25 -coffee,0.73,1.0,0.6499999999999999,0.75,1,26 -handle,0.6066666666666667,1.0,0.45,0.6166666666666667,1,25 -food,0.7483333333333333,1.0,0.6333333333333333,0.75,1,24 -towel,0.6166666666666666,1.0,0.5166666666666666,0.65,1,26 -chips,0.63,1.0,0.5833333333333333,0.7,1,26 -stapler,0.5916666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -bag,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -sponge,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,25 -special,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -colgate,0.6416666666666667,1.0,0.7,0.7833333333333334,1,26 -leaf,0.4766666666666667,1.0,0.5166666666666666,0.65,1,26 -tube,0.675,1.0,0.6,0.7166666666666666,1,26 -cell,0.31833333333333336,0.7,0.5499999999999999,0.53,1,26 -mug,0.705,1.0,0.6,0.7166666666666667,1,26 -yogurt,0.9,1.0,0.75,0.8333333333333333,1,26 -plantain,0.7333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.9666666666666668,0.9,1.0,0.9333333333333332,3,25 -pepper,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -wheat,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.5083333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -toothbrush,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.7233333333333334,1.0,0.6499999999999999,0.75,1,26 -baseball,0.75,1.0,0.6833333333333333,0.7833333333333334,1,26 -pliers,0.7983333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.655,1.0,0.6499999999999999,0.75,1,26 -thins,0.6683333333333333,1.0,0.5833333333333333,0.7,1,26 -package,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -k,0.5916666666666667,1.0,0.5166666666666666,0.65,1,26 -jelly,0.5833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -fruit,0.7566666666666666,0.8666666666666666,0.8,0.7966666666666666,2,25 -apple,0.4,1.0,0.4666666666666666,0.6,1,25 -bell,0.7333333333333333,1.0,0.8,0.85,1,26 -battery,0.5349999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -jar,0.7066666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -bound,0.655,1.0,0.6,0.7166666666666667,1,26 -lettuce,0.7066666666666667,1.0,0.55,0.6833333333333333,1,26 -brush,0.655,1.0,0.5499999999999999,0.6833333333333333,1,26 -scissors,0.6766666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.6966666666666667,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.58,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.45,1.0,0.5499999999999999,0.6666666666666666,1,26 -spiral,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -handles,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -camera,0.5966666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -eraser,0.655,1.0,0.5499999999999999,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -pitcher,0.6699999999999999,1.0,0.55,0.6833333333333333,1,26 -phone,0.71,1.0,0.5166666666666666,0.6666666666666667,1,26 -stick,0.7966666666666666,1.0,0.7166666666666666,0.8,1,25 -cereal,0.4766666666666667,1.0,0.4166666666666667,0.5833333333333333,1,26 -bulb,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -hair,0.6966666666666667,1.0,0.6,0.7166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.805,1.0,0.65,0.7666666666666667,1,26 -can,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -crackers,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -plate,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666666,1,24 -calculator,0.6433333333333333,0.65,0.6833333333333333,0.6,1,26 -tissues,0.505,1.0,0.4833333333333333,0.6333333333333333,1,26 -juice,0.5766666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -pink,0.6183333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -lemon,0.7,1.0,0.5999999999999999,0.7166666666666667,1,26 -peach,0.5,1.0,0.4833333333333333,0.6166666666666666,1,26 -bowl,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6416666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -blue,0.7933333333333333,1.0,0.7333333333333333,0.8166666666666667,1,25 -used,0.5216666666666667,1.0,0.4666666666666666,0.6166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.8100000000000002,1.0,0.7166666666666666,0.8,1,26 -ball,0.7933333333333332,1.0,0.7333333333333333,0.8166666666666668,1,25 -notebook,0.40499999999999997,1.0,0.4499999999999999,0.6,1,26 -garlic,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -cleaning,0.6016666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -pair,0.8883333333333333,1.0,0.8666666666666668,0.9200000000000002,2,27 -container,0.655,1.0,0.6,0.7166666666666666,1,25 -tomato,0.7166666666666667,0.9,0.65,0.6833333333333333,1,26 -cellphone,0.3266666666666667,0.6,0.5333333333333333,0.5133333333333333,1,26 -potato,0.5416666666666666,1.0,0.5,0.6333333333333333,1,26 -light,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9016666666666667,1.0,0.8666666666666668,0.9200000000000002,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6391975308641976 -F1-Score: 0.6834171075837743 -Precision: 0.90625 -Recall: 0.5984567901234568 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8016666666666665,1.0,0.6833333333333333,0.7833333333333333,1,24 -yellow,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,6,24 -looks,0.48,0.8,0.4666666666666666,0.5333333333333333,1,24 -keyboard,0.575,1.0,0.4999999999999999,0.6333333333333333,1,26 -glue,0.7733333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -milk,0,0,0,0,1,26 -cola,0.575,1.0,0.5333333333333333,0.6666666666666667,1,26 -flashlight,0.8066666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.32166666666666666,0.5,0.6333333333333333,0.5266666666666666,1,26 -folded,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -jam,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -black,0.8966666666666668,0.7583333333333334,1.0,0.8457142857142858,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -soccer,0.475,1.0,0.38333333333333336,0.55,1,26 -hat,0.6233333333333333,1.0,0.5166666666666666,0.65,1,26 -brown,0.8516666666666666,1.0,0.8,0.8800000000000001,2,24 -coffee,0.6966666666666667,1.0,0.6833333333333333,0.7666666666666666,1,25 -handle,0.6416666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -food,0.675,1.0,0.7,0.7833333333333333,1,26 -towel,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.5516666666666666,1.0,0.5166666666666666,0.65,1,26 -stapler,0.8966666666666667,1.0,0.8,0.8666666666666666,1,26 -onion,0.4716666666666667,0.65,0.6,0.5566666666666666,1,26 -bag,0.7666666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -special,0.6316666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -colgate,0.5016666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -leaf,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.7999999999999999,1.0,0.7166666666666666,0.8,1,26 -cell,0.5933333333333333,1.0,0.5166666666666666,0.65,1,26 -mug,0.6916666666666667,1.0,0.6333333333333332,0.7333333333333333,1,25 -yogurt,0.8,1.0,0.75,0.8166666666666667,1,26 -plantain,0.7666666666666666,1.0,0.7333333333333333,0.8,1,26 -red,0.9666666666666668,0.9,1.0,0.9333333333333332,3,27 -pepper,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -wheat,0.775,1.0,0.7333333333333333,0.8166666666666667,1,26 -kleenex,0.5833333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -toothbrush,0.5666666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -binder,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -baseball,0.73,1.0,0.6,0.7166666666666667,1,26 -pliers,0.73,1.0,0.6166666666666666,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.4883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -package,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.7216666666666667,1.0,0.5666666666666667,0.7,1,26 -jelly,0.6916666666666667,1.0,0.65,0.75,1,26 -fruit,0.635,0.6333333333333334,0.8,0.6900000000000001,2,25 -apple,0.575,0.9,0.6166666666666666,0.65,1,25 -bell,0.6383333333333334,1.0,0.55,0.6833333333333333,1,26 -battery,0.8066666666666666,1.0,0.6333333333333333,0.75,1,26 -jar,0.5766666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.705,1.0,0.5833333333333333,0.7,1,26 -brush,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -scissors,0.65,1.0,0.5999999999999999,0.7166666666666667,1,26 -lime,0.48999999999999994,1.0,0.4666666666666666,0.6166666666666667,1,25 -toothpaste,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.6383333333333333,1.0,0.5166666666666666,0.65,1,26 -spiral,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -handles,0.7083333333333334,1.0,0.7166666666666666,0.8,1,25 -camera,0.8466666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -eraser,0.75,1.0,0.6833333333333333,0.7833333333333334,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -pitcher,0.75,1.0,0.7166666666666666,0.8,1,26 -phone,0.7883333333333333,1.0,0.6333333333333333,0.75,1,26 -stick,0.6583333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -cereal,0.7216666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -bulb,0.8749999999999998,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.7016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.4716666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -can,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.655,1.0,0.5833333333333333,0.7,1,26 -crackers,0.8816666666666666,1.0,0.75,0.8333333333333333,1,26 -plate,0.5683333333333332,1.0,0.5833333333333333,0.7,1,24 -calculator,0.6266666666666667,1.0,0.6499999999999999,0.75,1,26 -tissues,0.6933333333333332,1.0,0.6,0.7166666666666667,1,26 -juice,0.805,1.0,0.7333333333333333,0.8166666666666668,1,26 -pink,0.58,1.0,0.5166666666666666,0.65,1,25 -lemon,0.5966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -peach,0.76,1.0,0.7166666666666666,0.8,1,26 -bowl,0.6383333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -blue,0.6133333333333334,0.55,0.7333333333333333,0.5833333333333334,1,25 -used,0.6083333333333332,1.0,0.5666666666666667,0.6833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -ball,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -garlic,0.65,1.0,0.7333333333333333,0.8,1,26 -cleaning,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -pair,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,27 -container,0.59,1.0,0.5166666666666666,0.65,1,25 -tomato,0.5716666666666665,0.55,0.6833333333333333,0.5666666666666667,1,26 -cellphone,0.5666666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -potato,0.7333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -light,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.64625 -F1-Score: 0.6873677248677249 -Precision: 0.8996141975308641 -Recall: 0.6092592592592593 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7416666666666666,1.0,0.7166666666666666,0.8,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.6,0.95,0.6166666666666666,0.6833333333333333,1,24 -keyboard,0.6066666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -glue,0.4,1.0,0.4833333333333332,0.6166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6483333333333333,1.0,0.55,0.6833333333333333,1,26 -flashlight,0.7933333333333332,1.0,0.6833333333333333,0.7833333333333334,1,26 -cup,0.4533333333333333,0.5,0.5833333333333333,0.51,1,26 -folded,0.6716666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -jam,0.605,1.0,0.4666666666666666,0.6166666666666667,1,26 -black,0.8066666666666666,0.6,1.0,0.74,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -soccer,0.6166666666666666,1.0,0.5,0.65,1,26 -hat,0.7083333333333333,1.0,0.65,0.75,1,26 -brown,0.9216666666666666,1.0,0.9,0.9400000000000001,2,24 -coffee,0.65,1.0,0.6833333333333333,0.7666666666666666,1,25 -handle,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -food,0.7466666666666666,1.0,0.7499999999999999,0.8166666666666667,1,25 -towel,0.6183333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -chips,0.675,1.0,0.6,0.7166666666666667,1,26 -stapler,0.7333333333333333,1.0,0.75,0.8166666666666667,1,26 -onion,0.5466666666666666,0.95,0.5833333333333333,0.6666666666666667,1,26 -bag,0.72,1.0,0.5666666666666667,0.7,1,26 -sponge,0.48,1.0,0.41666666666666663,0.5833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6466666666666667,1.0,0.5833333333333333,0.7,1,25 -special,0.735,1.0,0.65,0.75,1,26 -colgate,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -leaf,0.63,1.0,0.4999999999999999,0.65,1,26 -tube,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -cell,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -mug,0.6933333333333334,1.0,0.6,0.7166666666666667,1,25 -yogurt,0.635,1.0,0.6,0.7166666666666667,1,26 -plantain,0.5549999999999999,1.0,0.55,0.6833333333333333,1,26 -red,0.9833333333333334,0.95,1.0,0.9666666666666666,3,25 -pepper,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -wheat,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -kleenex,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -toothbrush,0.7216666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -binder,0.7,1.0,0.7333333333333332,0.8,1,26 -baseball,0.6733333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -pliers,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -thins,0.5833333333333333,1.0,0.5999999999999999,0.7,1,26 -package,0.7016666666666667,1.0,0.5333333333333333,0.6833333333333333,1,26 -k,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.5833333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -fruit,0.75,0.6833333333333333,0.8666666666666668,0.72,2,25 -apple,0.7466666666666666,1.0,0.6499999999999999,0.75,1,25 -bell,0.7183333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -battery,0.425,1.0,0.4833333333333334,0.6166666666666666,1,26 -jar,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -bound,0.6216666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -lettuce,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -brush,0.675,1.0,0.5999999999999999,0.7166666666666666,1,26 -scissors,0.7583333333333333,1.0,0.75,0.8166666666666667,1,26 -lime,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,25 -toothpaste,0.8966666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -top,0.71,1.0,0.6,0.7166666666666667,1,26 -spiral,0.905,1.0,0.8,0.8666666666666666,1,26 -handles,0.7666666666666666,1.0,0.8166666666666667,0.8666666666666666,1,25 -camera,0.8300000000000001,1.0,0.7166666666666666,0.8,1,26 -eraser,0.48,1.0,0.4666666666666666,0.6166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.865,0.7333333333333334,1.0,0.8333333333333334,5,21 -banana,0.6983333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -pitcher,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -phone,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -stick,0.7666666666666666,1.0,0.7166666666666666,0.8,1,25 -cereal,0.6133333333333333,1.0,0.5166666666666666,0.65,1,26 -bulb,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,27 -hair,0.6599999999999999,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,0.85,1.0,0.8333333333333333,0.9,2,26 -coca,0.625,1.0,0.5999999999999999,0.7166666666666666,1,26 -crackers,0.5249999999999999,1.0,0.4166666666666667,0.5833333333333333,1,26 -plate,0.78,1.0,0.7666666666666666,0.8333333333333333,1,25 -calculator,0.33999999999999997,0.75,0.45,0.5133333333333334,1,26 -tissues,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -juice,0.8166666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -pink,0.755,1.0,0.7166666666666666,0.8,1,25 -lemon,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -peach,0.6783333333333333,1.0,0.55,0.6833333333333333,1,26 -bowl,0.625,1.0,0.4999999999999999,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6749999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -blue,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,25 -used,0.6583333333333333,1.0,0.6166666666666666,0.7166666666666667,1,23 -energizer,0,0,0,0,1,26 -pear,0.7333333333333333,1.0,0.65,0.75,1,26 -ball,0.7233333333333334,1.0,0.6,0.7166666666666667,1,25 -notebook,0.755,1.0,0.6499999999999999,0.75,1,26 -garlic,0.6333333333333333,1.0,0.6666666666666666,0.75,1,26 -cleaning,0.505,1.0,0.41666666666666663,0.5833333333333333,1,26 -pair,0.93,1.0,0.9,0.9400000000000001,2,27 -container,0.6916666666666667,1.0,0.5833333333333333,0.7,1,25 -tomato,0.7066666666666668,0.9,0.65,0.7,1,26 -cellphone,0.6249999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -potato,0.65,1.0,0.7,0.7833333333333333,1,25 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6508333333333333 -F1-Score: 0.6914814814814814 -Precision: 0.9070987654320988 -Recall: 0.6109567901234569 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.55,1.0,0.4833333333333333,0.6333333333333333,1,24 -yellow,0.95,0.85,1.0,0.9,6,25 -looks,0.30833333333333335,1.0,0.3666666666666667,0.5333333333333333,1,24 -keyboard,0.7266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.8366666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6183333333333333,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.3416666666666667,0.5,0.6166666666666666,0.5166666666666667,1,26 -folded,0.74,1.0,0.5666666666666667,0.7,1,26 -jam,0.58,1.0,0.5833333333333333,0.7,1,26 -black,0.9233333333333335,0.8,1.0,0.8666666666666666,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6716666666666666,1.0,0.6,0.7166666666666666,1,26 -soccer,0.58,1.0,0.4833333333333333,0.6333333333333334,1,26 -hat,0.585,1.0,0.5333333333333332,0.6666666666666666,1,26 -brown,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,24 -coffee,0.7333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -handle,0.63,1.0,0.6333333333333333,0.7333333333333333,1,25 -food,0.63,1.0,0.6,0.7166666666666667,1,25 -towel,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -chips,0.7133333333333334,1.0,0.5666666666666667,0.7,1,26 -stapler,0.7016666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -onion,0.6766666666666666,1.0,0.65,0.75,1,26 -bag,0.725,1.0,0.7166666666666666,0.8,1,26 -sponge,0.7216666666666666,1.0,0.65,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.5833333333333333,1.0,0.5333333333333332,0.6666666666666666,1,25 -special,0.4966666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -colgate,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -leaf,0.605,1.0,0.4833333333333333,0.6333333333333334,1,26 -tube,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -cell,0.5316666666666666,0.55,0.6666666666666666,0.5566666666666666,1,26 -mug,0.6799999999999999,1.0,0.6499999999999999,0.75,1,25 -yogurt,0.6466666666666666,1.0,0.6,0.7166666666666667,1,26 -plantain,0.6766666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.905,0.7916666666666666,1.0,0.8657142857142859,3,24 -pepper,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -wheat,0.6466666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -kleenex,0.6399999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -toothbrush,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -binder,0.625,1.0,0.5333333333333333,0.6666666666666667,1,26 -baseball,0.6333333333333333,1.0,0.6666666666666666,0.75,1,26 -pliers,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.605,1.0,0.5166666666666666,0.65,1,26 -package,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -k,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.7766666666666666,0.6833333333333333,0.9,0.7533333333333334,2,26 -apple,0.7333333333333334,0.95,0.7,0.75,1,25 -bell,0.7083333333333333,1.0,0.5333333333333333,0.6833333333333333,1,26 -battery,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -jar,0.7166666666666666,1.0,0.65,0.75,1,26 -bound,0.5766666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -lettuce,0.375,1.0,0.4999999999999999,0.6333333333333333,1,26 -brush,0.6833333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -scissors,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -lime,0.7,1.0,0.5666666666666667,0.7,1,25 -toothpaste,0.6016666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -top,0.8549999999999999,1.0,0.75,0.8333333333333334,1,26 -spiral,0.6933333333333334,1.0,0.65,0.75,1,26 -handles,0.7783333333333333,1.0,0.5833333333333333,0.7166666666666667,1,25 -camera,0.585,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.8433333333333334,1.0,0.7,0.8,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -pitcher,0.6716666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -stick,0.7249999999999999,1.0,0.6166666666666666,0.7333333333333333,1,25 -cereal,0.755,1.0,0.6666666666666666,0.7666666666666666,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -hair,0.6733333333333333,1.0,0.6,0.7166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.64,1.0,0.4666666666666666,0.6166666666666666,1,26 -can,0.8550000000000001,1.0,0.8333333333333333,0.9,2,24 -coca,0.705,1.0,0.65,0.75,1,26 -crackers,0.6216666666666667,1.0,0.6,0.7166666666666667,1,26 -plate,0.705,1.0,0.65,0.75,1,25 -calculator,0.7216666666666667,0.9,0.6833333333333333,0.7166666666666667,1,26 -tissues,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -juice,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.4666666666666667,1.0,0.4999999999999999,0.6333333333333333,1,25 -lemon,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -peach,0.39999999999999997,1.0,0.4999999999999999,0.6333333333333333,1,26 -bowl,0.5516666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5933333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -blue,0.5599999999999999,1.0,0.4999999999999999,0.6333333333333333,1,25 -used,0.3966666666666666,1.0,0.4499999999999999,0.6,1,24 -energizer,0,0,0,0,1,26 -pear,0.69,1.0,0.55,0.6833333333333333,1,26 -ball,0.6416666666666666,1.0,0.6333333333333332,0.7333333333333333,1,25 -notebook,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -garlic,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.5933333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.9400000000000001,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.7266666666666667,1.0,0.7,0.7833333333333333,1,25 -tomato,0.6066666666666667,0.8,0.6,0.6,1,26 -cellphone,0.5083333333333333,0.55,0.6666666666666666,0.5566666666666666,1,26 -potato,0.8383333333333333,1.0,0.7,0.8,1,25 -light,0.8433333333333334,1.0,0.8,0.8800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9349999999999999,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6391203703703704 -F1-Score: 0.6802072310405642 -Precision: 0.9016203703703703 -Recall: 0.5978395061728394 diff --git a/Validation/UW_raw_75_object_0.55.csv b/Validation/UW_raw_75_object_0.55.csv deleted file mode 100644 index a403090..0000000 --- a/Validation/UW_raw_75_object_0.55.csv +++ /dev/null @@ -1,2875 +0,0 @@ -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333334,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,25 -looks,0.6599999999999999,0.85,0.6166666666666666,0.6333333333333333,1,24 -keyboard,0.5916666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.6683333333333333,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.4833333333333333,1.0,0.5,0.6333333333333333,1,26 -flashlight,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -cup,0.4133333333333334,0.5,0.7,0.5533333333333335,1,26 -folded,0.6433333333333333,1.0,0.55,0.6833333333333333,1,26 -jam,0.735,1.0,0.5833333333333333,0.7166666666666667,1,26 -black,0.9833333333333334,0.9666666666666666,1.0,0.9800000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.53,1.0,0.4499999999999999,0.6,1,26 -soccer,0.7916666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -hat,0.7483333333333333,1.0,0.6333333333333333,0.75,1,26 -brown,0.975,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -handle,0.6733333333333332,1.0,0.5833333333333333,0.7,1,26 -food,0.64,1.0,0.5833333333333333,0.7,1,25 -towel,0.6583333333333333,1.0,0.5666666666666667,0.7,1,26 -chips,0.8766666666666666,1.0,0.75,0.8333333333333333,1,26 -stapler,0.6083333333333334,1.0,0.6166666666666666,0.7166666666666667,1,26 -onion,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -bag,0.8550000000000001,1.0,0.7333333333333333,0.8166666666666668,1,26 -sponge,0.6583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7833333333333333,1.0,0.7499999999999999,0.8166666666666667,1,25 -special,0.6433333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -colgate,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -leaf,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.5566666666666668,1.0,0.4333333333333334,0.6,1,26 -cell,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -mug,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -yogurt,0.875,1.0,0.7833333333333333,0.85,1,26 -plantain,0.885,1.0,0.7833333333333333,0.85,1,26 -red,0.8550000000000001,0.725,1.0,0.8285714285714286,3,24 -pepper,0.6066666666666667,1.0,0.4999999999999999,0.65,1,26 -wheat,0.6416666666666666,1.0,0.6499999999999999,0.75,1,26 -kleenex,0.8,1.0,0.8166666666666667,0.8666666666666666,1,26 -toothbrush,0.5216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -baseball,0.8150000000000001,1.0,0.6666666666666666,0.7666666666666666,1,26 -pliers,0.605,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -thins,0.5216666666666666,1.0,0.5,0.6333333333333333,1,26 -package,0.6666666666666666,1.0,0.6,0.7,1,26 -k,0.7833333333333333,1.0,0.7,0.7833333333333333,1,26 -jelly,0.6333333333333333,1.0,0.6666666666666666,0.75,1,26 -fruit,0.6833333333333333,0.5833333333333333,0.8666666666666668,0.6399999999999999,2,25 -apple,0.7416666666666667,0.8,0.7166666666666666,0.7,1,25 -bell,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -battery,0.5599999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -jar,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -bound,0.6516666666666666,1.0,0.5,0.65,1,26 -lettuce,0.78,1.0,0.6833333333333333,0.7666666666666666,1,26 -brush,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -scissors,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -lime,0.6916666666666667,1.0,0.7,0.7833333333333333,1,25 -toothpaste,0.705,1.0,0.6499999999999999,0.75,1,26 -top,0.675,1.0,0.6833333333333333,0.7666666666666666,1,26 -spiral,0.5,1.0,0.4833333333333332,0.6166666666666666,1,26 -handles,0.6633333333333333,1.0,0.5833333333333333,0.7,1,25 -camera,0.5516666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -eraser,0.5933333333333334,1.0,0.4999999999999999,0.65,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6799999999999999,1.0,0.65,0.75,1,26 -pitcher,0.6383333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.765,1.0,0.6666666666666666,0.7666666666666666,1,26 -stick,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333333,1,25 -cereal,0.8049999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -bulb,0.9333333333333332,1.0,0.9333333333333332,0.96,2,26 -hair,0.6833333333333333,1.0,0.55,0.6833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -can,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,24 -coca,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -crackers,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -plate,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -calculator,0.6966666666666665,1.0,0.6,0.7166666666666667,1,26 -tissues,0.5333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -juice,0.43999999999999995,1.0,0.3833333333333333,0.55,1,26 -pink,0.8833333333333332,1.0,0.8666666666666666,0.9,1,25 -lemon,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -peach,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -bowl,0.40499999999999997,1.0,0.4499999999999999,0.6,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -blue,0.4216666666666667,1.0,0.5166666666666666,0.65,1,25 -used,0.8300000000000001,1.0,0.7499999999999999,0.8166666666666667,1,23 -energizer,0,0,0,0,1,26 -pear,0.705,1.0,0.6499999999999999,0.75,1,26 -ball,0.8,1.0,0.7166666666666666,0.8,1,25 -notebook,0.7,1.0,0.65,0.75,1,26 -garlic,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.7100000000000001,1.0,0.6166666666666666,0.7333333333333334,1,26 -pair,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.4883333333333333,1.0,0.4499999999999999,0.6,1,26 -tomato,0.7566666666666666,0.85,0.7166666666666666,0.7166666666666667,1,26 -cellphone,0.7833333333333333,1.0,0.7,0.7833333333333333,1,26 -potato,0.755,1.0,0.6499999999999999,0.75,1,25 -light,0.8833333333333332,1.0,0.8666666666666666,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8999999999999998,1.0,0.8999999999999998,0.9400000000000001,2,26 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6581172839506173 -F1-Score: 0.6970238095238095 -Precision: 0.9094907407407407 -Recall: 0.6177469135802469 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6266666666666667,1.0,0.65,0.75,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.6133333333333333,0.95,0.6166666666666666,0.6833333333333333,1,24 -keyboard,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -cup,0.39666666666666667,0.5,0.5833333333333333,0.51,1,26 -folded,0.505,1.0,0.45,0.6,1,26 -jam,0.5916666666666667,1.0,0.5833333333333333,0.7,1,26 -black,0.8600000000000001,0.7,1.0,0.8066666666666666,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -soccer,0.6583333333333333,1.0,0.65,0.75,1,26 -hat,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.8766666666666666,1.0,0.8333333333333333,0.9,2,25 -coffee,0.6066666666666667,1.0,0.5166666666666666,0.65,1,26 -handle,0.6516666666666666,1.0,0.55,0.6833333333333333,1,26 -food,0.6766666666666666,1.0,0.5833333333333333,0.7,1,24 -towel,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -chips,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -stapler,0.5549999999999999,1.0,0.4833333333333334,0.6333333333333333,1,26 -onion,0.8766666666666666,1.0,0.75,0.8333333333333333,1,26 -bag,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -sponge,0.6433333333333333,1.0,0.4833333333333332,0.6333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5166666666666666,1.0,0.5166666666666666,0.65,1,25 -special,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.6483333333333333,1.0,0.5,0.65,1,26 -leaf,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.8800000000000001,1.0,0.7833333333333333,0.85,1,26 -cell,0.5816666666666667,0.5,0.7666666666666666,0.5800000000000001,1,26 -mug,0.615,1.0,0.4833333333333334,0.6333333333333333,1,26 -yogurt,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -plantain,0.8099999999999999,1.0,0.7333333333333333,0.8166666666666668,1,26 -red,0.9266666666666667,0.8333333333333333,1.0,0.8933333333333333,3,26 -pepper,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -wheat,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.58,1.0,0.5499999999999999,0.6833333333333333,1,26 -toothbrush,0.4833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.6216666666666666,1.0,0.5166666666666666,0.65,1,26 -baseball,0.73,1.0,0.6833333333333333,0.7666666666666666,1,26 -pliers,0.7183333333333333,1.0,0.65,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.675,1.0,0.55,0.6833333333333333,1,26 -package,0.575,1.0,0.6166666666666666,0.7166666666666666,1,26 -k,0.7300000000000001,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.76,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.8433333333333334,0.8166666666666667,0.9333333333333332,0.8466666666666667,2,25 -apple,0.7966666666666666,0.85,0.7833333333333333,0.75,1,25 -bell,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -battery,0.71,1.0,0.5499999999999999,0.6833333333333333,1,26 -jar,0.5583333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -bound,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -lettuce,0.6516666666666666,1.0,0.4999999999999999,0.65,1,26 -brush,0.7166666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -scissors,0.5483333333333332,1.0,0.4666666666666666,0.6166666666666667,1,26 -lime,0.6566666666666666,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.735,1.0,0.65,0.75,1,26 -top,0.37499999999999994,1.0,0.4499999999999999,0.6,1,26 -spiral,0.6966666666666665,1.0,0.5833333333333333,0.7,1,26 -handles,0.4333333333333333,1.0,0.5333333333333332,0.65,1,25 -camera,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -eraser,0.8916666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -pitcher,0.53,1.0,0.5833333333333333,0.7,1,26 -phone,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -stick,0.7333333333333334,1.0,0.75,0.8166666666666667,1,25 -cereal,0.76,1.0,0.7166666666666666,0.8,1,26 -bulb,0.885,1.0,0.8333333333333333,0.9,2,27 -hair,0.8266666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -can,0.9266666666666665,1.0,0.9,0.9400000000000001,2,25 -coca,0.585,1.0,0.5166666666666666,0.65,1,26 -crackers,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -plate,0.6549999999999999,1.0,0.5833333333333333,0.7,1,25 -calculator,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -tissues,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -juice,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666666,1,26 -pink,0.5549999999999999,1.0,0.5,0.6333333333333333,1,25 -lemon,0.7433333333333333,1.0,0.65,0.75,1,26 -peach,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7416666666666667,1.0,0.7,0.7833333333333333,1,26 -blue,0.4833333333333333,1.0,0.5,0.6333333333333333,1,25 -used,0.5466666666666666,1.0,0.5333333333333333,0.6666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -ball,0.8216666666666667,1.0,0.6833333333333333,0.7833333333333333,1,25 -notebook,0.6266666666666666,1.0,0.4833333333333332,0.6333333333333333,1,26 -garlic,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -cleaning,0.8266666666666665,1.0,0.7166666666666666,0.8,1,26 -pair,0.8566666666666667,1.0,0.8,0.8800000000000001,2,27 -container,0.7666666666666667,1.0,0.7,0.7833333333333333,1,26 -tomato,0.5583333333333333,0.8,0.5999999999999999,0.6,1,26 -cellphone,0.47833333333333333,0.5,0.5333333333333333,0.5066666666666667,1,26 -potato,0.7,1.0,0.6333333333333333,0.7333333333333333,1,25 -light,0.9133333333333333,1.0,0.9,0.9400000000000001,2,27 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6506327160493827 -F1-Score: 0.6894753086419753 -Precision: 0.9023148148148148 -Recall: 0.6104938271604938 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7,1.0,0.65,0.75,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,23 -looks,0.735,0.95,0.6166666666666666,0.7,1,24 -keyboard,0.63,1.0,0.6833333333333333,0.7666666666666667,1,26 -glue,0.5716666666666665,1.0,0.5333333333333333,0.6666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -flashlight,0.72,1.0,0.5499999999999999,0.6833333333333333,1,26 -cup,0.29000000000000004,0.5,0.5166666666666666,0.4833333333333334,1,26 -folded,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -jam,0.775,1.0,0.75,0.8166666666666667,1,26 -black,0.865,0.6666666666666666,1.0,0.78,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7516666666666667,1.0,0.6499999999999999,0.75,1,26 -soccer,0.4133333333333334,1.0,0.4333333333333334,0.5833333333333333,1,26 -hat,0.7216666666666667,1.0,0.65,0.75,1,26 -brown,1.0,1.0,1.0,1.0,2,24 -coffee,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -handle,0.7466666666666667,1.0,0.6333333333333333,0.75,1,26 -food,0.86,1.0,0.7666666666666666,0.8333333333333333,1,24 -towel,0.7833333333333333,1.0,0.7999999999999999,0.85,1,26 -chips,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -stapler,0.5733333333333334,1.0,0.5833333333333333,0.7,1,26 -onion,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -bag,0.5933333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.6183333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6333333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -special,0.73,1.0,0.7166666666666666,0.8,1,26 -colgate,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -leaf,0.6216666666666667,1.0,0.5166666666666666,0.65,1,26 -tube,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -cell,0.5599999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -mug,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -yogurt,0.635,1.0,0.5999999999999999,0.7166666666666667,1,26 -plantain,0.3583333333333333,1.0,0.4166666666666667,0.5666666666666667,1,26 -red,0.9833333333333334,0.95,1.0,0.9666666666666666,3,27 -pepper,0.6233333333333333,1.0,0.5833333333333333,0.7,1,26 -wheat,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -kleenex,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -toothbrush,0.7516666666666667,1.0,0.6333333333333333,0.75,1,26 -binder,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -baseball,0.72,1.0,0.6666666666666666,0.7666666666666667,1,26 -pliers,0.705,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -thins,0.8299999999999998,1.0,0.7333333333333333,0.8166666666666667,1,26 -package,0.5083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -k,0.6333333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -jelly,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -fruit,0.7066666666666668,0.65,0.8666666666666666,0.7166666666666667,2,26 -apple,0.78,0.9,0.7666666666666666,0.7666666666666666,1,25 -bell,0.715,1.0,0.5499999999999999,0.6833333333333333,1,26 -battery,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jar,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -bound,0.7083333333333334,1.0,0.75,0.8166666666666668,1,26 -lettuce,0.7016666666666667,1.0,0.65,0.75,1,26 -brush,0.7083333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -scissors,0.7216666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -lime,0.8583333333333332,1.0,0.7833333333333333,0.85,1,25 -toothpaste,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -spiral,0.6483333333333332,1.0,0.5666666666666667,0.7,1,26 -handles,0.725,1.0,0.6499999999999999,0.75,1,25 -camera,0.5499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -eraser,0.4333333333333333,1.0,0.5,0.6333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.715,1.0,0.6166666666666666,0.7333333333333333,1,26 -pitcher,0.55,1.0,0.6166666666666666,0.7166666666666666,1,26 -phone,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -stick,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -cereal,0.665,1.0,0.5333333333333333,0.6666666666666666,1,26 -bulb,0.8733333333333334,1.0,0.8333333333333333,0.9,2,26 -hair,0.71,1.0,0.5499999999999999,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.635,1.0,0.5333333333333332,0.6666666666666666,1,26 -can,0.8833333333333332,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.4416666666666666,1.0,0.4499999999999999,0.6,1,26 -crackers,0.76,1.0,0.7166666666666666,0.8,1,26 -plate,0.7,1.0,0.6833333333333333,0.7666666666666667,1,25 -calculator,0.6933333333333334,0.85,0.6333333333333333,0.6666666666666667,1,26 -tissues,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -juice,0.6716666666666666,1.0,0.65,0.75,1,26 -pink,0.78,1.0,0.6666666666666666,0.7666666666666666,1,25 -lemon,0.44333333333333336,1.0,0.5,0.6333333333333333,1,26 -peach,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -bowl,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.76,1.0,0.65,0.75,1,26 -blue,0.86,1.0,0.7333333333333333,0.8166666666666667,1,25 -used,0.7833333333333333,1.0,0.7166666666666666,0.8,1,23 -energizer,0,0,0,0,1,26 -pear,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -ball,0.7666666666666667,1.0,0.7,0.7833333333333333,1,25 -notebook,0.7133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.6583333333333333,1.0,0.65,0.75,1,26 -cleaning,0.49333333333333335,1.0,0.4499999999999999,0.6,1,26 -pair,0.8550000000000001,1.0,0.8333333333333333,0.9,2,26 -container,0.6233333333333333,1.0,0.5166666666666666,0.65,1,25 -tomato,0.5233333333333333,0.6,0.5833333333333333,0.5366666666666667,1,26 -cellphone,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -potato,0.5133333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -light,0.8966666666666665,1.0,0.8666666666666668,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.905,1.0,0.8666666666666666,0.9199999999999999,2,25 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6523765432098764 -F1-Score: 0.6956172839506174 -Precision: 0.9070987654320988 -Recall: 0.6160493827160493 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,24 -yellow,0.9133333333333334,0.8,1.0,0.8733333333333334,6,25 -looks,0.5666666666666667,0.95,0.6666666666666666,0.7166666666666666,1,24 -keyboard,0.7083333333333333,1.0,0.5833333333333333,0.7,1,26 -glue,0.53,1.0,0.6166666666666666,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -flashlight,0.5416666666666667,1.0,0.5833333333333333,0.7,1,26 -cup,0.6166666666666667,0.5,0.7833333333333333,0.59,1,26 -folded,0.8400000000000001,1.0,0.6833333333333333,0.7833333333333333,1,26 -jam,0.625,1.0,0.6833333333333333,0.7666666666666667,1,26 -black,1.0,1.0,1.0,1.0,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7133333333333334,1.0,0.7,0.7833333333333333,1,26 -soccer,0.5999999999999999,1.0,0.5833333333333333,0.7,1,26 -hat,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -brown,0.8583333333333332,1.0,0.8333333333333334,0.9000000000000001,2,25 -coffee,0.8300000000000001,1.0,0.7499999999999999,0.8166666666666667,1,25 -handle,0.6799999999999999,1.0,0.55,0.6833333333333333,1,26 -food,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -towel,0.71,1.0,0.5833333333333333,0.7166666666666667,1,26 -chips,0.5766666666666667,1.0,0.5,0.6333333333333333,1,26 -stapler,0.6966666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -onion,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -bag,0.5383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -sponge,0.4833333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.58,1.0,0.5499999999999999,0.6666666666666666,1,25 -special,0.63,1.0,0.5833333333333333,0.7,1,26 -colgate,0.805,1.0,0.6666666666666666,0.7666666666666667,1,26 -leaf,0.625,1.0,0.5833333333333333,0.7,1,26 -tube,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -cell,0.4533333333333333,0.55,0.55,0.5133333333333333,1,26 -mug,0.725,1.0,0.65,0.75,1,25 -yogurt,0.7633333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -plantain,0.6266666666666666,1.0,0.5833333333333333,0.7,1,26 -red,0.9800000000000001,0.95,1.0,0.9666666666666666,3,27 -pepper,0.7066666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -wheat,0.78,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.7,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.7666666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -baseball,0.6083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -pliers,0.35,1.0,0.4833333333333332,0.6166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -thins,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -package,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -k,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -jelly,0.4883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -fruit,0.6633333333333333,0.7,0.8333333333333334,0.7333333333333334,2,25 -apple,0.5966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -bell,0.7183333333333333,1.0,0.55,0.6833333333333333,1,26 -battery,0.5466666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -jar,0.65,1.0,0.6666666666666666,0.75,1,26 -bound,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.7333333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -brush,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -scissors,0.6216666666666666,1.0,0.4999999999999999,0.65,1,26 -lime,0.7716666666666666,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.7583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -top,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.705,1.0,0.5999999999999999,0.7166666666666667,1,26 -handles,0.7333333333333333,1.0,0.7,0.7833333333333333,1,25 -camera,0.8099999999999999,1.0,0.65,0.7666666666666667,1,26 -eraser,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.775,1.0,0.8166666666666667,0.8666666666666666,1,26 -pitcher,0.6633333333333333,1.0,0.5166666666666666,0.65,1,26 -phone,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -stick,0.7583333333333333,1.0,0.7,0.7833333333333334,1,25 -cereal,0.4883333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -bulb,0.8766666666666666,1.0,0.8333333333333333,0.9,2,27 -hair,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5466666666666666,1.0,0.4833333333333333,0.6166666666666666,1,26 -can,0.93,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.7983333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -crackers,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -plate,0.7983333333333333,1.0,0.6333333333333333,0.75,1,24 -calculator,0.7066666666666667,1.0,0.5833333333333333,0.7,1,26 -tissues,0.5549999999999999,1.0,0.5,0.6333333333333333,1,26 -juice,0.6016666666666667,1.0,0.5166666666666666,0.65,1,26 -pink,0.775,1.0,0.7,0.7833333333333333,1,25 -lemon,0.7966666666666666,1.0,0.7,0.7833333333333333,1,26 -peach,0.5383333333333333,1.0,0.4,0.5666666666666667,1,26 -bowl,0.6333333333333334,1.0,0.6166666666666666,0.7166666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7133333333333333,1.0,0.5833333333333333,0.7,1,26 -blue,0.805,1.0,0.7166666666666666,0.8,1,25 -used,0.5416666666666666,1.0,0.6166666666666666,0.7166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.7433333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -ball,0.58,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -garlic,0.61,1.0,0.4833333333333332,0.6333333333333333,1,26 -cleaning,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -pair,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -container,0.7499999999999999,1.0,0.6666666666666666,0.7666666666666666,1,25 -tomato,0.7833333333333333,0.9,0.6833333333333333,0.7166666666666667,1,26 -cellphone,0.41,0.65,0.5833333333333333,0.54,1,26 -potato,0.725,1.0,0.7,0.7833333333333333,1,25 -light,0.905,1.0,0.8666666666666666,0.9199999999999999,2,27 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6549845679012345 -F1-Score: 0.6954012345679013 -Precision: 0.9074074074074074 -Recall: 0.6171296296296297 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,25 -looks,0.725,1.0,0.5666666666666667,0.7,1,24 -keyboard,0.6749999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -milk,0,0,0,0,1,26 -cola,0.65,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.6216666666666667,1.0,0.6499999999999999,0.75,1,26 -cup,0.47333333333333344,0.5,0.7,0.5533333333333335,1,26 -folded,0.6983333333333334,1.0,0.6,0.7166666666666666,1,26 -jam,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -black,0.9666666666666668,0.9,1.0,0.9333333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6733333333333332,1.0,0.6499999999999999,0.75,1,26 -soccer,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -hat,0.7,1.0,0.5999999999999999,0.7166666666666666,1,26 -brown,0.8666666666666666,1.0,0.8333333333333333,0.9,2,25 -coffee,0.5633333333333332,1.0,0.5833333333333333,0.7,1,25 -handle,0.5266666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -food,0.755,1.0,0.6666666666666666,0.7666666666666666,1,25 -towel,0.665,1.0,0.5,0.65,1,26 -chips,0.7516666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -onion,0.43,1.0,0.4333333333333334,0.5833333333333333,1,26 -bag,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.6983333333333334,1.0,0.5666666666666667,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.6749999999999999,1.0,0.5999999999999999,0.7166666666666666,1,25 -special,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.7416666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -leaf,0.6566666666666667,1.0,0.6,0.7166666666666667,1,26 -tube,0.63,1.0,0.5833333333333333,0.7,1,26 -cell,0.39166666666666666,0.55,0.5666666666666667,0.51,1,26 -mug,0.71,1.0,0.6666666666666666,0.7666666666666667,1,25 -yogurt,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.7,1.0,0.6166666666666666,0.7166666666666666,1,26 -red,0.8766666666666667,0.7,1.0,0.8066666666666666,3,26 -pepper,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -wheat,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -toothbrush,0.53,1.0,0.5166666666666666,0.65,1,26 -binder,0.43499999999999994,1.0,0.4,0.5666666666666667,1,26 -baseball,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -pliers,0.4833333333333333,1.0,0.4333333333333333,0.6,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.525,1.0,0.6166666666666666,0.7166666666666666,1,26 -thins,0.8550000000000001,1.0,0.75,0.8333333333333333,1,26 -package,0.5216666666666667,1.0,0.45,0.6,1,26 -k,0.875,1.0,0.8333333333333333,0.8833333333333332,1,26 -jelly,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -fruit,0.7499999999999999,0.6333333333333334,0.9,0.7033333333333334,2,25 -apple,0.5183333333333333,0.8,0.5,0.5666666666666667,1,25 -bell,0.7316666666666667,1.0,0.5666666666666667,0.7,1,26 -battery,0.5083333333333333,1.0,0.41666666666666663,0.5833333333333334,1,26 -jar,0.8066666666666666,1.0,0.65,0.7666666666666667,1,26 -bound,0.7466666666666666,1.0,0.6499999999999999,0.75,1,26 -lettuce,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -brush,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -lime,0.6966666666666667,1.0,0.7,0.7833333333333333,1,25 -toothpaste,0.6183333333333333,1.0,0.5166666666666666,0.65,1,26 -top,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -spiral,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -handles,0.6166666666666666,1.0,0.5833333333333333,0.7,1,25 -camera,0.5766666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -eraser,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -pitcher,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -phone,0.7266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -stick,0.6466666666666667,1.0,0.5833333333333333,0.7,1,25 -cereal,0.5499999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -bulb,0.9550000000000001,1.0,0.9333333333333332,0.96,2,27 -hair,0.675,1.0,0.5666666666666667,0.6833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8400000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -can,0.9266666666666667,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.7433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -crackers,0.7383333333333333,1.0,0.65,0.75,1,26 -plate,0.41666666666666663,1.0,0.4833333333333332,0.6166666666666666,1,25 -calculator,0.5366666666666666,0.6,0.65,0.5566666666666668,1,26 -tissues,0.76,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.775,1.0,0.6333333333333333,0.75,1,25 -lemon,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -peach,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -bowl,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -blue,0.625,1.0,0.5666666666666667,0.6833333333333333,1,25 -used,0.755,1.0,0.7666666666666666,0.8333333333333333,1,22 -energizer,0,0,0,0,1,26 -pear,0.5883333333333333,1.0,0.6,0.7166666666666667,1,26 -ball,0.76,1.0,0.7166666666666666,0.8,1,25 -notebook,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -garlic,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.4583333333333333,1.0,0.4833333333333333,0.6166666666666667,1,26 -pair,0.8916666666666666,1.0,0.8666666666666668,0.9200000000000002,2,26 -container,0.7999999999999999,1.0,0.8166666666666667,0.8666666666666666,1,26 -tomato,0.6716666666666666,0.8,0.7499999999999999,0.6833333333333333,1,26 -cellphone,0.385,0.65,0.5666666666666667,0.53,1,26 -potato,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,25 -light,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9016666666666667,1.0,0.8666666666666668,0.9200000000000002,2,26 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.642175925925926 -F1-Score: 0.6855864197530863 -Precision: 0.8989197530864198 -Recall: 0.6087962962962962 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5883333333333333,1.0,0.4666666666666666,0.6166666666666667,1,25 -yellow,0.9433333333333334,0.85,1.0,0.9,6,26 -looks,0.6566666666666667,0.8,0.7,0.65,1,24 -keyboard,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.6133333333333333,1.0,0.55,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -flashlight,0.5433333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -cup,0.36500000000000005,0.5,0.5833333333333333,0.51,1,26 -folded,0.7133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -jam,0.65,1.0,0.6499999999999999,0.75,1,26 -black,0.8733333333333334,0.7166666666666666,1.0,0.818095238095238,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7233333333333334,1.0,0.6499999999999999,0.75,1,26 -soccer,0.5383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -hat,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -brown,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.5433333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -handle,0.655,1.0,0.5833333333333333,0.7,1,25 -food,0.7133333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -towel,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -chips,0.6916666666666667,1.0,0.65,0.75,1,26 -stapler,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -onion,0.6183333333333334,1.0,0.5,0.65,1,26 -bag,0.8150000000000001,1.0,0.6833333333333333,0.7833333333333334,1,26 -sponge,0.86,1.0,0.7333333333333333,0.8166666666666668,1,26 -zero,0,0,0,0,1,26 -computer,0.7166666666666666,1.0,0.7,0.7833333333333333,1,25 -special,0.7433333333333333,1.0,0.6499999999999999,0.75,1,26 -colgate,0.6966666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -leaf,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -tube,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -cell,0.5666666666666667,1.0,0.6666666666666666,0.75,1,26 -mug,0.6133333333333333,1.0,0.4833333333333332,0.6333333333333333,1,26 -yogurt,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -plantain,0.725,1.0,0.6833333333333333,0.7666666666666666,1,26 -red,0.9500000000000002,0.8833333333333332,1.0,0.9266666666666665,3,26 -pepper,0.7,1.0,0.5166666666666666,0.6666666666666667,1,26 -wheat,0.8049999999999999,1.0,0.7166666666666666,0.8,1,26 -kleenex,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -toothbrush,0.7333333333333333,1.0,0.7166666666666666,0.8,1,26 -binder,0.8466666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -baseball,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -pliers,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.8466666666666667,1.0,0.7,0.8,1,26 -thins,0.6216666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -package,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.5183333333333333,1.0,0.5166666666666666,0.65,1,26 -jelly,0.7266666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.705,0.65,0.9333333333333332,0.7466666666666667,2,25 -apple,0.47666666666666674,0.9,0.5333333333333333,0.6166666666666667,1,25 -bell,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.755,1.0,0.7,0.7833333333333333,1,26 -jar,0.675,1.0,0.6833333333333332,0.7666666666666666,1,26 -bound,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -lettuce,0.875,1.0,0.8,0.8666666666666666,1,26 -brush,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -scissors,0.475,1.0,0.5,0.6333333333333333,1,26 -lime,0.55,1.0,0.45,0.6,1,25 -toothpaste,0.6383333333333333,1.0,0.6,0.7166666666666667,1,26 -top,0.5716666666666665,1.0,0.4666666666666666,0.6166666666666666,1,26 -spiral,0.5583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -handles,0.7,1.0,0.65,0.75,1,25 -camera,0.6083333333333333,1.0,0.6,0.7166666666666666,1,26 -eraser,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7133333333333334,1.0,0.7166666666666666,0.8,1,26 -pitcher,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -phone,0.5549999999999999,1.0,0.55,0.6833333333333333,1,26 -stick,0.4966666666666666,1.0,0.4666666666666666,0.6166666666666666,1,25 -cereal,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -bulb,0.9266666666666665,1.0,0.9,0.9400000000000001,2,26 -hair,0.6166666666666666,1.0,0.6,0.7166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6849999999999999,1.0,0.65,0.75,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -coca,0.7150000000000001,1.0,0.5666666666666667,0.7,1,26 -crackers,0.4833333333333333,1.0,0.4,0.5666666666666667,1,26 -plate,0.6849999999999999,1.0,0.6,0.7166666666666667,1,25 -calculator,0.6100000000000001,0.8,0.6833333333333332,0.6333333333333333,1,26 -tissues,0.755,1.0,0.7166666666666666,0.8,1,26 -juice,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -pink,0.5466666666666666,1.0,0.5333333333333333,0.6666666666666666,1,25 -lemon,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -peach,0.8300000000000001,1.0,0.7166666666666666,0.8,1,26 -bowl,0.6216666666666666,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -blue,0.675,1.0,0.6833333333333333,0.7666666666666666,1,25 -used,0.5599999999999999,1.0,0.4666666666666666,0.6166666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.7416666666666666,1.0,0.65,0.75,1,26 -ball,0.63,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -garlic,0.805,1.0,0.7166666666666666,0.8,1,26 -cleaning,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333334,1,26 -pair,0.8433333333333334,1.0,0.8,0.8800000000000001,2,27 -container,0.7966666666666666,1.0,0.7,0.7833333333333333,1,25 -tomato,0.5599999999999999,0.9,0.6666666666666666,0.6833333333333333,1,26 -cellphone,0.615,1.0,0.5499999999999999,0.6833333333333333,1,26 -potato,0.5633333333333332,1.0,0.5166666666666666,0.65,1,25 -light,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6501851851851851 -F1-Score: 0.6913403880070547 -Precision: 0.9074074074074074 -Recall: 0.6109567901234568 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.625,1.0,0.5833333333333333,0.7,1,24 -yellow,0.93,0.8333333333333333,1.0,0.8933333333333333,6,24 -looks,0.5166666666666666,0.95,0.4499999999999999,0.5666666666666667,1,24 -keyboard,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.48,1.0,0.4333333333333333,0.5833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.4416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -flashlight,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -cup,0.44000000000000006,0.5,0.5833333333333333,0.51,1,26 -folded,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -jam,0.6166666666666666,1.0,0.5999999999999999,0.7,1,26 -black,0.865,0.725,1.0,0.8257142857142858,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.625,1.0,0.6166666666666666,0.7166666666666667,1,26 -soccer,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -hat,0.705,1.0,0.6499999999999999,0.75,1,26 -brown,0.8850000000000001,1.0,0.8333333333333334,0.9000000000000001,2,24 -coffee,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666667,1,25 -handle,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -food,0.6816666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -towel,0.6883333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -stapler,0.8666666666666666,1.0,0.7833333333333333,0.85,1,26 -onion,0.4333333333333333,1.0,0.4499999999999999,0.6,1,26 -bag,0.6966666666666667,1.0,0.7,0.7833333333333333,1,26 -sponge,0.6599999999999999,1.0,0.5166666666666666,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7633333333333333,1.0,0.6499999999999999,0.75,1,26 -special,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.5133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -leaf,0.74,1.0,0.6666666666666666,0.7666666666666666,1,26 -tube,0.8549999999999999,1.0,0.7833333333333333,0.85,1,26 -cell,0.6183333333333334,1.0,0.5833333333333333,0.7,1,26 -mug,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -yogurt,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -plantain,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -red,0.9633333333333335,0.9166666666666666,1.0,0.9466666666666667,3,26 -pepper,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.71,1.0,0.65,0.75,1,26 -kleenex,0.5399999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -toothbrush,0.6583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -binder,0.725,1.0,0.7,0.7833333333333333,1,26 -baseball,0.5083333333333334,1.0,0.5833333333333333,0.7,1,26 -pliers,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.65,1.0,0.6666666666666666,0.75,1,26 -thins,0.7933333333333332,1.0,0.7333333333333333,0.8166666666666667,1,26 -package,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -k,0.635,1.0,0.5666666666666667,0.7,1,26 -jelly,0.59,1.0,0.5166666666666666,0.65,1,26 -fruit,0.8366666666666667,0.8,0.9,0.8133333333333335,2,25 -apple,0.6416666666666667,0.9,0.6333333333333333,0.6666666666666667,1,25 -bell,0.55,1.0,0.55,0.6833333333333333,1,26 -battery,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -jar,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -brush,0.32166666666666666,0.6,0.4833333333333333,0.4966666666666667,1,26 -scissors,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -lime,0.7683333333333333,1.0,0.6333333333333333,0.75,1,25 -toothpaste,0.7466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -top,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.6683333333333333,1.0,0.6,0.7166666666666667,1,26 -handles,0.7133333333333334,1.0,0.5666666666666667,0.7,1,25 -camera,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -eraser,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6249999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -pitcher,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -phone,0.6399999999999999,1.0,0.5833333333333333,0.7,1,26 -stick,0.6499999999999999,1.0,0.6833333333333333,0.7666666666666666,1,25 -cereal,0.6066666666666667,1.0,0.5166666666666666,0.65,1,26 -bulb,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.55,1.0,0.5999999999999999,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7849999999999999,1.0,0.6333333333333333,0.75,1,26 -can,0.8633333333333333,1.0,0.8333333333333334,0.9000000000000001,2,26 -coca,0.6016666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -crackers,0.7583333333333333,1.0,0.75,0.8166666666666667,1,26 -plate,0.7966666666666666,1.0,0.7499999999999999,0.8166666666666667,1,25 -calculator,0.6683333333333333,1.0,0.6,0.7166666666666667,1,26 -tissues,0.8183333333333334,1.0,0.65,0.7666666666666667,1,26 -juice,0.6483333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -pink,0.705,1.0,0.7,0.7833333333333333,1,25 -lemon,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -peach,0.58,1.0,0.5333333333333333,0.6666666666666666,1,26 -bowl,0.8033333333333333,1.0,0.6,0.7333333333333334,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5733333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -blue,0.7933333333333332,1.0,0.7166666666666666,0.8,1,25 -used,0.8550000000000001,1.0,0.7333333333333333,0.8166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.8666666666666666,1.0,0.7833333333333333,0.85,1,26 -ball,0.7333333333333334,1.0,0.5166666666666666,0.6666666666666667,1,25 -notebook,0.4916666666666666,1.0,0.5166666666666666,0.65,1,26 -garlic,0.5966666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -cleaning,0.85,1.0,0.7333333333333333,0.8166666666666668,1,26 -pair,0.8866666666666667,1.0,0.8333333333333333,0.9,2,27 -container,0.5633333333333332,1.0,0.5166666666666666,0.65,1,25 -tomato,0.6666666666666667,0.9,0.6499999999999999,0.6833333333333333,1,26 -cellphone,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -potato,0.6,1.0,0.6,0.7,1,25 -light,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.875,1.0,0.8666666666666668,0.9200000000000002,2,25 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6487499999999999 -F1-Score: 0.6958862433862435 -Precision: 0.9085648148148148 -Recall: 0.6155864197530863 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7633333333333333,1.0,0.65,0.75,1,24 -yellow,0.8616666666666667,0.7416666666666667,1.0,0.8390476190476189,6,23 -looks,0.5666666666666667,0.75,0.6499999999999999,0.6,1,24 -keyboard,0.7133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.7733333333333333,1.0,0.6333333333333333,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.78,1.0,0.6166666666666666,0.7333333333333334,1,26 -flashlight,0.5333333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -cup,0.725,1.0,0.6333333333333333,0.7333333333333333,1,26 -folded,0.655,1.0,0.5999999999999999,0.7166666666666666,1,26 -jam,0.6133333333333334,1.0,0.6499999999999999,0.75,1,26 -black,0.9133333333333334,0.8,1.0,0.8733333333333334,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6849999999999999,1.0,0.5666666666666667,0.7,1,26 -soccer,0.7299999999999999,1.0,0.6833333333333332,0.7666666666666666,1,26 -hat,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -brown,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,24 -coffee,0.5633333333333334,1.0,0.5833333333333333,0.7,1,25 -handle,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -food,0.4766666666666667,1.0,0.4499999999999999,0.6,1,25 -towel,0.73,1.0,0.7,0.7833333333333333,1,26 -chips,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -stapler,0.625,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.4916666666666667,0.7,0.5833333333333333,0.5566666666666668,1,26 -bag,0.5333333333333333,1.0,0.5833333333333333,0.7,1,26 -sponge,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6716666666666666,1.0,0.5666666666666667,0.7,1,25 -special,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -colgate,0.5433333333333332,1.0,0.5166666666666666,0.65,1,26 -leaf,0.7233333333333334,1.0,0.6,0.7166666666666667,1,26 -tube,0.625,1.0,0.5833333333333333,0.7,1,26 -cell,0.23666666666666666,0.5,0.4833333333333333,0.4766666666666667,1,26 -mug,0.7016666666666667,1.0,0.6,0.7166666666666667,1,25 -yogurt,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.5166666666666667,0.9,0.4833333333333332,0.55,1,26 -red,0.7833333333333334,0.7,1.0,0.8209523809523809,3,25 -pepper,0.8166666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -wheat,0.4,1.0,0.4999999999999999,0.6333333333333333,1,26 -kleenex,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -toothbrush,0.5133333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -binder,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -baseball,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -pliers,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.765,1.0,0.6166666666666666,0.7333333333333333,1,26 -thins,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -package,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -k,0.8466666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -jelly,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -fruit,0.5433333333333332,0.6333333333333333,0.8,0.6933333333333334,2,25 -apple,0.6699999999999999,0.8,0.6666666666666666,0.65,1,26 -bell,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -battery,0.5516666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -jar,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -bound,0.7216666666666667,1.0,0.7,0.7833333333333333,1,26 -lettuce,0.6583333333333333,1.0,0.6499999999999999,0.75,1,26 -brush,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -scissors,0.735,1.0,0.65,0.75,1,26 -lime,0.4883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -toothpaste,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -top,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -handles,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,25 -camera,0.73,1.0,0.7,0.7833333333333333,1,26 -eraser,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6583333333333334,1.0,0.5666666666666667,0.7,1,26 -pitcher,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.5166666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -stick,0.7933333333333333,1.0,0.6333333333333333,0.75,1,25 -cereal,0.7233333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -bulb,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -hair,0.7333333333333333,1.0,0.7,0.7833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.74,1.0,0.6166666666666666,0.7333333333333333,1,26 -can,0.9466666666666667,1.0,0.9333333333333332,0.96,2,24 -coca,0.7216666666666666,1.0,0.65,0.75,1,26 -crackers,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -plate,0.6249999999999999,1.0,0.6166666666666666,0.7166666666666667,1,25 -calculator,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -tissues,0.5166666666666666,1.0,0.5833333333333333,0.7,1,26 -juice,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -lemon,0.7483333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -peach,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -bowl,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -blue,0.6166666666666666,0.6,0.6666666666666666,0.5733333333333334,1,25 -used,0.75,1.0,0.7166666666666666,0.8,1,24 -energizer,0,0,0,0,1,26 -pear,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.6799999999999999,1.0,0.75,0.8166666666666667,1,25 -notebook,0.7516666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -garlic,0.5916666666666666,1.0,0.5166666666666666,0.65,1,26 -cleaning,0.6983333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -pair,0.8766666666666666,1.0,0.8333333333333333,0.9,2,26 -container,0.7833333333333333,1.0,0.7333333333333333,0.8166666666666667,1,25 -tomato,0.3716666666666667,0.6,0.5499999999999999,0.5233333333333332,1,26 -cellphone,0.5866666666666667,0.5,0.6833333333333333,0.5566666666666666,1,26 -potato,0.6799999999999999,1.0,0.5333333333333332,0.6666666666666666,1,25 -light,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9333333333333332,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6416203703703703 -F1-Score: 0.6855246913580245 -Precision: 0.8909722222222222 -Recall: 0.6120370370370369 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7183333333333334,1.0,0.55,0.6833333333333333,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.63,0.95,0.6166666666666666,0.6833333333333333,1,24 -keyboard,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -glue,0.7583333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.8,1.0,0.7499999999999999,0.8166666666666667,1,26 -flashlight,0.7266666666666666,1.0,0.7,0.7833333333333333,1,26 -cup,0.5616666666666666,0.5,0.6833333333333333,0.5566666666666666,1,25 -folded,0.72,1.0,0.5666666666666667,0.7,1,26 -jam,0.6833333333333333,1.0,0.6666666666666666,0.75,1,26 -black,0.9216666666666666,0.825,1.0,0.8857142857142858,6,23 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.8066666666666666,1.0,0.7166666666666666,0.8,1,26 -soccer,0.8916666666666666,1.0,0.8,0.8666666666666666,1,26 -hat,0.48,1.0,0.4999999999999999,0.6333333333333333,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.96,2,24 -coffee,0.6466666666666667,1.0,0.7,0.7833333333333333,1,26 -handle,0.6666666666666666,1.0,0.65,0.75,1,26 -food,0.575,1.0,0.5166666666666666,0.65,1,24 -towel,0.7033333333333334,1.0,0.5666666666666667,0.7,1,26 -chips,0.71,1.0,0.6333333333333333,0.7333333333333333,1,26 -stapler,0.505,1.0,0.5166666666666666,0.65,1,26 -onion,0.8850000000000001,1.0,0.7833333333333333,0.85,1,26 -bag,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -zero,0,0,0,0,1,26 -computer,0.6799999999999999,1.0,0.6166666666666666,0.7166666666666666,1,25 -special,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -colgate,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -leaf,0.5333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -tube,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -cell,0.5116666666666666,0.6,0.7,0.5733333333333335,1,26 -mug,0.655,1.0,0.5166666666666666,0.6666666666666667,1,26 -yogurt,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -plantain,0.875,1.0,0.8166666666666667,0.8666666666666666,1,26 -red,0.9466666666666667,0.85,1.0,0.9,3,26 -pepper,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -wheat,0.6233333333333333,1.0,0.4666666666666666,0.6333333333333333,1,26 -kleenex,0.755,1.0,0.7,0.7833333333333333,1,26 -toothbrush,0.5766666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -binder,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -baseball,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -pliers,0.7366666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -thins,0.8099999999999999,1.0,0.7333333333333333,0.8166666666666668,1,26 -package,0.8400000000000001,1.0,0.7833333333333333,0.85,1,26 -k,0.7416666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -jelly,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -fruit,0.7899999999999999,0.6666666666666666,0.9333333333333332,0.7433333333333334,2,25 -apple,0.635,0.8,0.5833333333333333,0.5833333333333334,1,25 -bell,0.5633333333333332,1.0,0.4666666666666666,0.6166666666666666,1,26 -battery,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jar,0.7133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -bound,0.5966666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -lettuce,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.5333333333333333,1.0,0.6,0.7,1,26 -lime,0.6416666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -toothpaste,0.6666666666666666,1.0,0.5999999999999999,0.7,1,26 -top,0.7183333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -spiral,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -handles,0.6883333333333332,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.7150000000000001,1.0,0.6166666666666666,0.7333333333333334,1,26 -eraser,0.6799999999999999,1.0,0.65,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5966666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -pitcher,0.6933333333333332,1.0,0.6,0.7166666666666667,1,26 -phone,0.6633333333333333,1.0,0.55,0.6833333333333333,1,26 -stick,0.55,1.0,0.4666666666666666,0.6,1,25 -cereal,0.6333333333333333,1.0,0.5999999999999999,0.7,1,26 -bulb,0.8383333333333333,1.0,0.8,0.8800000000000001,2,27 -hair,0.6183333333333334,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5766666666666667,1.0,0.5833333333333333,0.7,1,26 -can,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.7899999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -crackers,0.8266666666666668,1.0,0.6833333333333333,0.7833333333333333,1,26 -plate,0.6799999999999999,1.0,0.6333333333333332,0.7333333333333333,1,24 -calculator,0.7499999999999999,0.9,0.7333333333333333,0.75,1,26 -tissues,0.7216666666666667,1.0,0.5666666666666667,0.7,1,26 -juice,0.7933333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -pink,0.6833333333333333,1.0,0.5833333333333333,0.7,1,25 -lemon,0.6483333333333332,1.0,0.5666666666666667,0.7,1,26 -peach,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -bowl,0.63,1.0,0.6833333333333333,0.7666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5666666666666667,1.0,0.5833333333333333,0.7,1,26 -blue,0.775,1.0,0.7166666666666666,0.8,1,25 -used,0.655,1.0,0.6499999999999999,0.75,1,23 -energizer,0,0,0,0,1,26 -pear,0.6966666666666665,1.0,0.5999999999999999,0.7166666666666667,1,26 -ball,0.7816666666666666,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.755,1.0,0.6166666666666666,0.7333333333333333,1,26 -garlic,0.8483333333333334,1.0,0.7,0.8,1,26 -cleaning,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -pair,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,27 -container,0.5416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,25 -tomato,0.6516666666666667,0.8,0.6166666666666666,0.6166666666666667,1,26 -cellphone,0.30166666666666664,0.5,0.4499999999999999,0.45666666666666667,1,26 -potato,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -light,0.8949999999999999,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.95,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6620679012345678 -F1-Score: 0.6936640211640213 -Precision: 0.9013117283950618 -Recall: 0.6172839506172839 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7216666666666666,1.0,0.6499999999999999,0.75,1,24 -yellow,0.9466666666666667,0.8666666666666666,1.0,0.9133333333333333,6,24 -looks,0.4616666666666666,0.85,0.5666666666666667,0.6,1,24 -keyboard,0.7916666666666666,1.0,0.7166666666666666,0.8,1,26 -glue,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.6799999999999999,1.0,0.65,0.75,1,26 -flashlight,0.7299999999999999,1.0,0.6833333333333333,0.7666666666666667,1,26 -cup,0.49833333333333335,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.6849999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -jam,0.6799999999999999,1.0,0.5,0.65,1,26 -black,0.9099999999999999,0.8166666666666667,1.0,0.8866666666666667,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.525,1.0,0.5166666666666666,0.65,1,26 -soccer,0.5750000000000001,1.0,0.5666666666666667,0.6833333333333333,1,26 -hat,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -brown,0.9416666666666667,1.0,0.9333333333333332,0.96,2,24 -coffee,0.725,1.0,0.7,0.7833333333333333,1,25 -handle,0.6066666666666667,1.0,0.55,0.6833333333333333,1,25 -food,0.73,1.0,0.7,0.7833333333333333,1,25 -towel,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.7983333333333333,1.0,0.6333333333333333,0.75,1,26 -stapler,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -onion,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -bag,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -sponge,0.775,1.0,0.7,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6133333333333333,1.0,0.5166666666666666,0.65,1,25 -special,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -colgate,0.6666666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -leaf,0.46333333333333326,1.0,0.5,0.6333333333333333,1,26 -tube,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -cell,0.5833333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -mug,0.7466666666666666,1.0,0.6833333333333333,0.7666666666666666,1,25 -yogurt,0.8333333333333333,1.0,0.8666666666666666,0.9,1,26 -plantain,0.705,1.0,0.6499999999999999,0.75,1,26 -red,0.8566666666666667,0.6916666666666667,1.0,0.799047619047619,3,25 -pepper,0.755,1.0,0.65,0.75,1,26 -wheat,0.7233333333333334,1.0,0.5666666666666667,0.7,1,26 -kleenex,0.6833333333333333,1.0,0.6,0.7166666666666667,1,26 -toothbrush,0.8066666666666666,1.0,0.6333333333333333,0.75,1,26 -binder,0.6833333333333333,1.0,0.6,0.7166666666666667,1,26 -baseball,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -pliers,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.59,1.0,0.5333333333333333,0.6666666666666667,1,26 -thins,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -package,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -k,0.46333333333333326,1.0,0.5499999999999999,0.6666666666666666,1,26 -jelly,0.5249999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -fruit,0.7783333333333333,0.7,0.9,0.7366666666666667,2,25 -apple,0.595,0.85,0.55,0.6166666666666667,1,25 -bell,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -battery,0.45,1.0,0.5,0.6333333333333333,1,26 -jar,0.61,1.0,0.5833333333333333,0.7,1,26 -bound,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -lettuce,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -brush,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -scissors,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -lime,0.5916666666666667,1.0,0.4666666666666666,0.6166666666666667,1,25 -toothpaste,0.5883333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -top,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -spiral,0.7,1.0,0.5999999999999999,0.7166666666666666,1,26 -handles,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -eraser,0.6883333333333332,1.0,0.6333333333333332,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.8916666666666668,0.775,1.0,0.8523809523809524,5,21 -banana,0.9166666666666666,1.0,0.85,0.8999999999999998,1,26 -pitcher,0.9099999999999999,1.0,0.8333333333333333,0.8833333333333332,1,26 -phone,0.725,1.0,0.7,0.7833333333333333,1,26 -stick,0.7749999999999999,1.0,0.7166666666666666,0.8,1,25 -cereal,0.6,1.0,0.6333333333333333,0.7333333333333334,1,26 -bulb,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.6383333333333334,1.0,0.55,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -can,0.9349999999999999,1.0,0.9,0.9400000000000001,2,24 -coca,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -crackers,0.6733333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.865,1.0,0.7333333333333333,0.8166666666666667,1,25 -calculator,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -tissues,0.6,1.0,0.5833333333333333,0.7,1,26 -juice,0.655,1.0,0.6166666666666666,0.7333333333333333,1,26 -pink,0.5133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -lemon,0.7583333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -peach,0.5833333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.7466666666666666,1.0,0.6499999999999999,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -blue,0.5583333333333333,1.0,0.5166666666666666,0.65,1,25 -used,0.6799999999999999,1.0,0.6,0.7166666666666667,1,23 -energizer,0,0,0,0,1,26 -pear,0.7,1.0,0.65,0.75,1,26 -ball,0.5333333333333333,1.0,0.5333333333333332,0.65,1,25 -notebook,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -garlic,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -cleaning,0.7299999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -pair,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,27 -container,0.5966666666666667,1.0,0.5833333333333333,0.7,1,25 -tomato,0.6066666666666667,0.9,0.5166666666666666,0.6,1,26 -cellphone,0.5583333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -potato,0.5766666666666667,1.0,0.5833333333333333,0.7,1,25 -light,0.8133333333333332,1.0,0.7666666666666667,0.86,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6571759259259259 -F1-Score: 0.696062610229277 -Precision: 0.9069444444444444 -Recall: 0.6183641975308641 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.705,1.0,0.5999999999999999,0.7166666666666667,1,24 -yellow,0.9333333333333333,0.8,1.0,0.8666666666666666,6,24 -looks,0.7783333333333333,0.75,0.7833333333333333,0.7,1,24 -keyboard,0.7383333333333333,1.0,0.6,0.7166666666666667,1,26 -glue,0.6016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6216666666666666,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -cup,0.265,0.5,0.5833333333333333,0.51,1,26 -folded,0.6383333333333334,1.0,0.5833333333333333,0.7,1,26 -jam,0.7633333333333334,1.0,0.7499999999999999,0.8166666666666668,1,26 -black,0.93,0.8166666666666667,1.0,0.8800000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7666666666666666,1.0,0.75,0.8166666666666667,1,26 -soccer,0.6483333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -hat,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -brown,0.95,1.0,0.9333333333333332,0.96,2,24 -coffee,0.65,1.0,0.6833333333333333,0.7666666666666666,1,25 -handle,0.6499999999999999,1.0,0.5999999999999999,0.7,1,26 -food,0.5850000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -towel,0.6333333333333334,1.0,0.4666666666666666,0.6333333333333334,1,26 -chips,0.605,1.0,0.5999999999999999,0.7166666666666667,1,26 -stapler,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -onion,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -bag,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -sponge,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -special,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -leaf,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -tube,0.8416666666666668,1.0,0.7333333333333333,0.8166666666666668,1,26 -cell,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -mug,0.635,1.0,0.5666666666666667,0.7,1,25 -yogurt,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -plantain,0.5183333333333333,1.0,0.4333333333333333,0.6,1,26 -red,0.8733333333333334,0.6666666666666666,1.0,0.78,3,26 -pepper,0.5833333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -wheat,0.85,1.0,0.8333333333333333,0.8833333333333332,1,26 -kleenex,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -toothbrush,0.6216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -binder,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -baseball,0.5266666666666666,1.0,0.5833333333333333,0.7,1,26 -pliers,0.725,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.5083333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -thins,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333334,1,26 -package,0.615,1.0,0.4833333333333333,0.6333333333333333,1,26 -k,0.6249999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.6666666666666666,1.0,0.5666666666666667,0.7,1,26 -fruit,0.7433333333333333,0.6833333333333333,0.8666666666666666,0.7333333333333334,2,25 -apple,0.5416666666666666,1.0,0.5166666666666666,0.65,1,25 -bell,0.6016666666666667,1.0,0.4833333333333334,0.6333333333333333,1,26 -battery,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -jar,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -bound,0.605,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.75,1.0,0.6166666666666666,0.7333333333333333,1,26 -brush,0.4466666666666666,1.0,0.4,0.5666666666666667,1,26 -scissors,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.8099999999999999,1.0,0.7666666666666666,0.8333333333333333,1,25 -toothpaste,0.615,1.0,0.55,0.6833333333333333,1,26 -top,0.51,1.0,0.4833333333333333,0.6333333333333334,1,26 -spiral,0.7133333333333333,1.0,0.5833333333333333,0.7166666666666666,1,26 -handles,0.6133333333333333,1.0,0.4666666666666666,0.6166666666666667,1,25 -camera,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666667,1,26 -eraser,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -phone,0.525,1.0,0.5333333333333333,0.6666666666666667,1,26 -stick,0.7466666666666667,1.0,0.6833333333333333,0.7666666666666666,1,25 -cereal,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -bulb,0.9400000000000001,1.0,0.8999999999999998,0.9400000000000001,2,27 -hair,0.625,1.0,0.5666666666666667,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8466666666666667,1.0,0.65,0.7666666666666667,1,26 -can,0.8383333333333333,1.0,0.8,0.8800000000000001,2,26 -coca,0.8583333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -crackers,0.47333333333333333,1.0,0.4499999999999999,0.6,1,26 -plate,0.6799999999999999,1.0,0.5666666666666667,0.7,1,25 -calculator,0.48666666666666664,0.6,0.6,0.54,1,26 -tissues,0.6166666666666667,1.0,0.55,0.6833333333333333,1,26 -juice,0.5966666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -pink,0.6416666666666666,1.0,0.4999999999999999,0.65,1,25 -lemon,0.6466666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -peach,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -bowl,0.5,1.0,0.5499999999999999,0.6666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -blue,0.7433333333333334,1.0,0.5666666666666667,0.7,1,25 -used,0.7416666666666667,1.0,0.7666666666666666,0.8333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.4216666666666667,1.0,0.5166666666666666,0.65,1,26 -ball,0.6383333333333333,1.0,0.6,0.7166666666666667,1,25 -notebook,0.655,1.0,0.5999999999999999,0.7166666666666666,1,26 -garlic,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -cleaning,0.6383333333333334,1.0,0.5833333333333333,0.7,1,26 -pair,0.8299999999999998,1.0,0.8,0.8800000000000001,2,27 -container,0.5933333333333333,1.0,0.4833333333333333,0.6333333333333333,1,25 -tomato,0.4833333333333333,0.65,0.6333333333333333,0.5566666666666668,1,26 -cellphone,0.6183333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -potato,0.5583333333333333,1.0,0.5166666666666666,0.65,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8966666666666665,1.0,0.8666666666666668,0.9200000000000002,2,25 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6388734567901233 -F1-Score: 0.6844753086419755 -Precision: 0.9024691358024691 -Recall: 0.6033950617283949 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,24 -yellow,0.8933333333333333,0.7333333333333333,1.0,0.8266666666666665,6,25 -looks,0.6133333333333334,0.95,0.5499999999999999,0.65,1,24 -keyboard,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -glue,0.7133333333333333,1.0,0.6,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.8083333333333332,1.0,0.75,0.8166666666666667,1,26 -cup,0.74,1.0,0.5666666666666667,0.7,1,26 -folded,0.8049999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -jam,0.7466666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -black,0.9266666666666667,0.8166666666666667,1.0,0.8800000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7416666666666666,1.0,0.65,0.75,1,26 -soccer,0.6183333333333334,1.0,0.5,0.65,1,26 -hat,0.4833333333333333,1.0,0.55,0.6666666666666666,1,26 -brown,0.915,1.0,0.8666666666666668,0.9200000000000002,2,24 -coffee,0.7849999999999999,1.0,0.7166666666666666,0.8,1,25 -handle,0.8433333333333334,1.0,0.7,0.8,1,25 -food,0.6966666666666665,1.0,0.6666666666666666,0.7666666666666667,1,26 -towel,0.7499999999999999,1.0,0.7166666666666666,0.8,1,26 -chips,0.755,1.0,0.7666666666666666,0.8333333333333333,1,26 -stapler,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -onion,0.6316666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -bag,0.44333333333333336,1.0,0.38333333333333336,0.55,1,26 -sponge,0.655,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.7083333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -special,0.53,1.0,0.4499999999999999,0.6,1,26 -colgate,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.43,1.0,0.4999999999999999,0.6333333333333333,1,26 -tube,0.6733333333333333,1.0,0.5833333333333333,0.7,1,26 -cell,0.6466666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -mug,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -yogurt,0.8133333333333332,1.0,0.7499999999999999,0.8166666666666667,1,26 -plantain,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -red,0.8766666666666667,0.7166666666666667,1.0,0.8200000000000001,3,26 -pepper,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -wheat,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -kleenex,0.6316666666666667,1.0,0.55,0.6833333333333333,1,26 -toothbrush,0.6633333333333333,1.0,0.5666666666666667,0.7,1,26 -binder,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -baseball,0.5133333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -pliers,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -thins,0.8550000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -package,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.7333333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -jelly,0.5216666666666667,1.0,0.5166666666666666,0.65,1,26 -fruit,0.6249999999999999,0.6166666666666666,0.8333333333333333,0.69,2,25 -apple,0.7383333333333334,0.95,0.6666666666666666,0.7333333333333333,1,25 -bell,0.7383333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -battery,0.6383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -jar,0.77,1.0,0.6166666666666666,0.7333333333333333,1,26 -bound,0.8300000000000001,1.0,0.7166666666666666,0.8,1,26 -lettuce,0.6933333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -brush,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -scissors,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -lime,0.6633333333333333,1.0,0.6333333333333332,0.7333333333333333,1,25 -toothpaste,0.9200000000000002,1.0,0.8,0.8666666666666668,1,26 -top,0.75,1.0,0.6833333333333333,0.7833333333333333,1,26 -spiral,0.4333333333333333,1.0,0.4833333333333333,0.6166666666666667,1,26 -handles,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,25 -camera,0.625,1.0,0.5833333333333333,0.7,1,26 -eraser,0.63,1.0,0.5333333333333333,0.6666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666667,1,26 -pitcher,0.5983333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -phone,0.905,1.0,0.8333333333333334,0.8833333333333332,1,26 -stick,0.7150000000000001,1.0,0.5666666666666667,0.7,1,25 -cereal,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -bulb,0.85,1.0,0.8333333333333334,0.9000000000000001,2,27 -hair,0.575,1.0,0.5166666666666666,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6466666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -can,0.8883333333333333,1.0,0.8666666666666668,0.9200000000000002,2,25 -coca,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -crackers,0.7333333333333333,1.0,0.7999999999999999,0.85,1,26 -plate,0.71,1.0,0.65,0.75,1,25 -calculator,0.3616666666666667,0.5,0.6333333333333332,0.5266666666666667,1,26 -tissues,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -juice,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -pink,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -lemon,0.6933333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -peach,0.6966666666666667,1.0,0.7,0.7833333333333333,1,26 -bowl,0.63,1.0,0.6,0.7166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -blue,0.7266666666666666,0.9,0.7666666666666666,0.7666666666666667,1,25 -used,0.825,1.0,0.7666666666666666,0.8333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.655,1.0,0.5666666666666667,0.7,1,26 -ball,0.615,1.0,0.5999999999999999,0.7166666666666667,1,25 -notebook,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -garlic,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -cleaning,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -pair,0.9333333333333332,1.0,0.9333333333333332,0.96,2,26 -container,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -tomato,0.5549999999999999,0.6,0.7166666666666666,0.5833333333333333,1,26 -cellphone,0.5833333333333333,1.0,0.55,0.6666666666666667,1,26 -potato,0.655,1.0,0.5999999999999999,0.7166666666666667,1,25 -light,0.93,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.915,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6574537037037038 -F1-Score: 0.6937037037037037 -Precision: 0.9054012345679012 -Recall: 0.6148148148148147 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6833333333333333,1.0,0.6166666666666666,0.7333333333333334,1,25 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.5133333333333334,0.95,0.5166666666666666,0.6166666666666667,1,24 -keyboard,0.37166666666666665,1.0,0.41666666666666663,0.5833333333333334,1,26 -glue,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6383333333333333,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.5933333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -cup,0.6183333333333334,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -jam,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -black,0.9333333333333333,0.8333333333333334,1.0,0.8933333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.78,1.0,0.6333333333333333,0.75,1,26 -soccer,0.7833333333333333,1.0,0.8,0.85,1,26 -hat,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -brown,0.8683333333333334,1.0,0.8333333333333333,0.9,2,25 -coffee,0.6816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -handle,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -food,0.5549999999999999,1.0,0.5166666666666666,0.65,1,24 -towel,0.63,1.0,0.5333333333333333,0.6666666666666667,1,26 -chips,0.7350000000000001,1.0,0.5666666666666667,0.7,1,26 -stapler,0.40499999999999997,1.0,0.45,0.6,1,26 -onion,0.7,1.0,0.5999999999999999,0.7166666666666666,1,26 -bag,0.705,1.0,0.65,0.75,1,26 -sponge,0.705,1.0,0.7,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6016666666666667,1.0,0.4999999999999999,0.65,1,26 -special,0.7216666666666667,1.0,0.65,0.75,1,26 -colgate,0.5499999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -leaf,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -tube,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -cell,0.6916666666666667,1.0,0.6,0.7166666666666667,1,26 -mug,0.4883333333333334,1.0,0.5166666666666666,0.65,1,26 -yogurt,0.65,1.0,0.5833333333333333,0.7,1,26 -plantain,0.505,1.0,0.5166666666666666,0.65,1,26 -red,0.9016666666666667,0.75,1.0,0.8333333333333333,3,24 -pepper,0.7133333333333334,1.0,0.7,0.7833333333333333,1,26 -wheat,0.6499999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -kleenex,0.805,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -binder,0.5383333333333333,1.0,0.45,0.6,1,26 -baseball,0.6100000000000001,1.0,0.5499999999999999,0.6833333333333333,1,26 -pliers,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6733333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -thins,0.7216666666666666,1.0,0.7166666666666666,0.8,1,26 -package,0.73,1.0,0.6,0.7166666666666667,1,26 -k,0.775,1.0,0.7,0.7833333333333333,1,26 -jelly,0.6016666666666667,1.0,0.5166666666666666,0.65,1,26 -fruit,0.7116666666666667,0.65,0.9,0.7333333333333334,2,25 -apple,0.5133333333333333,0.95,0.5166666666666666,0.6166666666666667,1,25 -bell,0.805,1.0,0.7333333333333333,0.8166666666666668,1,26 -battery,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -jar,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.805,1.0,0.7,0.7833333333333333,1,26 -brush,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -scissors,0.7433333333333334,1.0,0.5333333333333333,0.6833333333333333,1,26 -lime,0.5333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -toothpaste,0.6666666666666666,1.0,0.65,0.75,1,26 -top,0.7166666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -spiral,0.655,1.0,0.5999999999999999,0.7166666666666667,1,26 -handles,0.58,1.0,0.5166666666666666,0.65,1,25 -camera,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -eraser,0.5966666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -pitcher,0.7116666666666667,1.0,0.5666666666666667,0.7,1,26 -phone,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -stick,0.69,1.0,0.6,0.7166666666666667,1,25 -cereal,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.9,1.0,0.9,0.9400000000000001,2,26 -hair,0.7766666666666666,1.0,0.6333333333333333,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5816666666666667,1.0,0.4333333333333333,0.6,1,26 -can,0.9349999999999999,1.0,0.9,0.9400000000000001,2,25 -coca,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -crackers,0.8133333333333332,1.0,0.65,0.7666666666666667,1,26 -plate,0.655,1.0,0.55,0.6833333333333333,1,25 -calculator,0.7266666666666667,0.65,0.7833333333333333,0.65,1,26 -tissues,0.5416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -juice,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -pink,0.6766666666666665,1.0,0.6,0.7166666666666667,1,25 -lemon,0.6666666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -peach,0.8133333333333332,1.0,0.7499999999999999,0.8166666666666668,1,26 -bowl,0.5583333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -blue,0.875,1.0,0.8166666666666667,0.8666666666666666,1,25 -used,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.5666666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -ball,0.6266666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -notebook,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -garlic,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -cleaning,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -pair,0.8699999999999999,1.0,0.8,0.8800000000000001,2,26 -container,0.8716666666666667,1.0,0.7833333333333333,0.85,1,25 -tomato,0.4966666666666666,0.7,0.55,0.55,1,26 -cellphone,0.705,1.0,0.55,0.6833333333333333,1,26 -potato,0.8366666666666667,1.0,0.65,0.7666666666666667,1,25 -light,0.8866666666666667,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.85,1.0,0.8333333333333334,0.9000000000000001,2,25 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6552006172839506 -F1-Score: 0.6888888888888891 -Precision: 0.9063271604938271 -Recall: 0.6066358024691358 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.755,1.0,0.6333333333333333,0.7333333333333333,1,24 -yellow,0.9133333333333333,0.7666666666666666,1.0,0.8466666666666667,6,24 -looks,0.7,1.0,0.5999999999999999,0.7166666666666667,1,24 -keyboard,0.46333333333333326,1.0,0.4166666666666667,0.5666666666666667,1,26 -glue,0.675,1.0,0.7,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -flashlight,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.5216666666666667,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.75,1.0,0.7333333333333333,0.8,1,26 -jam,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -black,0.8466666666666667,0.65,1.0,0.7733333333333333,6,22 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.6466666666666667,1.0,0.55,0.6833333333333333,1,26 -soccer,0.75,1.0,0.6666666666666666,0.7666666666666667,1,26 -hat,0.7166666666666666,1.0,0.65,0.75,1,26 -brown,0.9083333333333332,1.0,0.9,0.9400000000000001,2,24 -coffee,0.43,1.0,0.45,0.6,1,25 -handle,0.5833333333333333,1.0,0.5999999999999999,0.7,1,26 -food,0.8916666666666666,1.0,0.8,0.8666666666666666,1,24 -towel,0.4583333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -chips,0.5583333333333333,1.0,0.4833333333333332,0.6333333333333333,1,26 -stapler,0.685,1.0,0.5166666666666666,0.6666666666666667,1,26 -onion,0.7716666666666666,1.0,0.7,0.7833333333333333,1,26 -bag,0.78,1.0,0.7166666666666666,0.8,1,26 -sponge,0.625,1.0,0.6166666666666666,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -special,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -colgate,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -leaf,0.8133333333333332,1.0,0.7333333333333333,0.8166666666666667,1,26 -tube,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -cell,0.6183333333333333,1.0,0.5166666666666666,0.65,1,26 -mug,0.7466666666666667,1.0,0.7,0.7833333333333333,1,25 -yogurt,0.805,1.0,0.7166666666666666,0.8,1,26 -plantain,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.6916666666666667,1.0,0.65,0.75,1,26 -wheat,0.6583333333333333,1.0,0.6499999999999999,0.75,1,26 -kleenex,0.45999999999999996,1.0,0.4999999999999999,0.6333333333333333,1,26 -toothbrush,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -binder,0.625,1.0,0.5999999999999999,0.7166666666666667,1,26 -baseball,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.5133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -thins,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -package,0.5933333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -k,0.6266666666666667,1.0,0.45,0.6166666666666667,1,26 -jelly,0.6133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -fruit,0.8033333333333333,0.7,0.9333333333333332,0.78,2,27 -apple,0.7083333333333333,0.9,0.6666666666666666,0.7,1,25 -bell,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -battery,0.905,1.0,0.8,0.8666666666666666,1,26 -jar,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -bound,0.58,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.4933333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -brush,0.7633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -scissors,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.7499999999999999,1.0,0.7,0.7833333333333333,1,25 -toothpaste,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -top,0.8116666666666668,1.0,0.6,0.7333333333333333,1,26 -spiral,0.655,1.0,0.5833333333333333,0.7,1,26 -handles,0.64,1.0,0.5499999999999999,0.6833333333333333,1,25 -camera,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -eraser,0.425,1.0,0.41666666666666663,0.5666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -pitcher,0.4833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -phone,0.6383333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -stick,0.7633333333333333,1.0,0.6499999999999999,0.75,1,25 -cereal,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -bulb,0.915,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.5683333333333332,1.0,0.5333333333333333,0.6666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5016666666666667,1.0,0.45,0.6,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -coca,0.6733333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -crackers,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.5433333333333333,1.0,0.4833333333333333,0.6333333333333333,1,25 -calculator,0.6183333333333334,0.85,0.5833333333333333,0.6166666666666667,1,26 -tissues,0.575,1.0,0.5166666666666666,0.65,1,26 -juice,0.6133333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -pink,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -lemon,0.625,1.0,0.5833333333333333,0.7,1,26 -peach,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -bowl,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.86,1.0,0.7833333333333333,0.85,1,26 -blue,0.6483333333333333,1.0,0.55,0.6833333333333333,1,25 -used,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666666,1,23 -energizer,0,0,0,0,1,26 -pear,0.4749999999999999,1.0,0.4,0.5666666666666667,1,26 -ball,0.655,1.0,0.6,0.7166666666666667,1,25 -notebook,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -garlic,0.7083333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -cleaning,0.7,1.0,0.6499999999999999,0.75,1,26 -pair,0.8433333333333334,1.0,0.8,0.8800000000000001,2,26 -container,0.5216666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -tomato,0.5733333333333334,0.7,0.6333333333333333,0.58,1,26 -cellphone,0.5433333333333332,1.0,0.5333333333333332,0.6666666666666666,1,26 -potato,0.5166666666666667,1.0,0.5166666666666666,0.65,1,25 -light,0.8299999999999998,1.0,0.8,0.8800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8483333333333334,1.0,0.8,0.8800000000000001,2,26 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6455246913580246 -F1-Score: 0.6868827160493828 -Precision: 0.9080246913580247 -Recall: 0.6049382716049382 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5966666666666666,1.0,0.5333333333333333,0.6666666666666667,1,24 -yellow,0.95,0.8833333333333332,1.0,0.9266666666666667,6,24 -looks,0.6766666666666666,1.0,0.5166666666666666,0.6666666666666667,1,24 -keyboard,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -glue,0.7133333333333334,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.73,1.0,0.5999999999999999,0.7166666666666666,1,26 -flashlight,0.6133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -cup,0.495,0.5,0.6666666666666666,0.5466666666666667,1,25 -folded,0.6166666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -jam,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -black,0.9433333333333334,0.85,1.0,0.9,6,20 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.755,1.0,0.6166666666666666,0.7333333333333333,1,26 -soccer,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -hat,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -brown,0.9066666666666666,1.0,0.8666666666666668,0.9200000000000002,2,24 -coffee,0.5583333333333333,1.0,0.55,0.6666666666666667,1,25 -handle,0.6883333333333334,1.0,0.5166666666666666,0.6666666666666667,1,25 -food,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -towel,0.5,1.0,0.4666666666666666,0.6166666666666667,1,26 -chips,0.7383333333333333,1.0,0.6333333333333333,0.75,1,26 -stapler,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -onion,0.58,1.0,0.5166666666666666,0.65,1,26 -bag,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.6599999999999999,1.0,0.4833333333333333,0.6333333333333334,1,26 -zero,0,0,0,0,1,26 -computer,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -special,0.665,1.0,0.55,0.6833333333333333,1,26 -colgate,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -leaf,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -tube,0.7416666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -cell,0.47666666666666674,0.5,0.6499999999999999,0.5366666666666667,1,26 -mug,0.8166666666666667,1.0,0.7833333333333333,0.85,1,25 -yogurt,0.6849999999999999,1.0,0.6499999999999999,0.75,1,26 -plantain,0.6,1.0,0.6833333333333333,0.7666666666666666,1,26 -red,0.95,0.85,1.0,0.9,3,26 -pepper,0.8833333333333332,1.0,0.8333333333333333,0.8833333333333332,1,26 -wheat,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.8300000000000001,1.0,0.75,0.8166666666666667,1,26 -toothbrush,0.7466666666666666,1.0,0.6499999999999999,0.75,1,26 -binder,0.6183333333333334,1.0,0.5833333333333333,0.7,1,26 -baseball,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333334,1,26 -pliers,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.63,1.0,0.5833333333333333,0.7,1,26 -thins,0.4716666666666667,1.0,0.45,0.6,1,26 -package,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -k,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -jelly,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -fruit,0.725,0.55,0.9333333333333332,0.6766666666666666,2,26 -apple,0.8066666666666666,0.85,0.75,0.75,1,25 -bell,0.5133333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -battery,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -jar,0.5333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -bound,0.7666666666666666,1.0,0.7999999999999999,0.85,1,26 -lettuce,0.505,1.0,0.5666666666666667,0.6833333333333333,1,26 -brush,0.5383333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -scissors,0.63,1.0,0.5833333333333333,0.7,1,26 -lime,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,25 -toothpaste,0.6849999999999999,1.0,0.65,0.75,1,26 -top,0.5433333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -spiral,0.755,1.0,0.7,0.7833333333333333,1,26 -handles,0.735,1.0,0.6499999999999999,0.75,1,25 -camera,0.505,1.0,0.4999999999999999,0.6333333333333333,1,26 -eraser,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -pitcher,0.6966666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.725,1.0,0.5999999999999999,0.7166666666666666,1,26 -stick,0.7716666666666667,1.0,0.7166666666666666,0.8,1,25 -cereal,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666667,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -hair,0.6849999999999999,1.0,0.5666666666666667,0.7,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7883333333333333,1.0,0.6333333333333333,0.75,1,26 -can,0.8300000000000001,1.0,0.8,0.8800000000000001,2,25 -coca,0.7733333333333332,1.0,0.6166666666666666,0.7333333333333334,1,26 -crackers,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -plate,0.655,1.0,0.5666666666666667,0.6833333333333333,1,25 -calculator,0.42833333333333334,0.6,0.5833333333333333,0.53,1,26 -tissues,0.4966666666666667,1.0,0.4,0.5666666666666667,1,26 -juice,0.8633333333333333,1.0,0.75,0.8333333333333333,1,26 -pink,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -lemon,0.7666666666666667,1.0,0.7166666666666666,0.8,1,26 -peach,0.5499999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -bowl,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -blue,0.5966666666666667,1.0,0.5999999999999999,0.7166666666666667,1,25 -used,0.8583333333333332,1.0,0.75,0.8333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.7416666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -ball,0.6433333333333333,1.0,0.5833333333333333,0.7,1,25 -notebook,0.8883333333333333,1.0,0.8,0.8666666666666668,1,26 -garlic,0.78,1.0,0.6833333333333333,0.7666666666666666,1,26 -cleaning,0.7016666666666667,1.0,0.6,0.7166666666666667,1,26 -pair,0.9600000000000002,1.0,0.9333333333333332,0.9600000000000002,2,27 -container,0.5416666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -tomato,0.7266666666666667,0.9,0.65,0.7,1,26 -cellphone,0.37666666666666665,0.6,0.5499999999999999,0.5233333333333333,1,26 -potato,0.5933333333333333,1.0,0.5833333333333333,0.7,1,25 -light,0.8766666666666666,1.0,0.8333333333333333,0.9,2,27 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8433333333333334,1.0,0.8,0.8800000000000001,2,26 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6602006172839506 -F1-Score: 0.6951234567901236 -Precision: 0.8989197530864198 -Recall: 0.6194444444444444 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5516666666666666,1.0,0.4833333333333332,0.6333333333333333,1,24 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.8966666666666667,1.0,0.8,0.8666666666666666,1,24 -keyboard,0.71,1.0,0.5999999999999999,0.7166666666666667,1,26 -glue,0.8133333333333332,1.0,0.7833333333333333,0.85,1,26 -milk,0,0,0,0,1,26 -cola,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -flashlight,0.6966666666666667,1.0,0.55,0.6833333333333333,1,26 -cup,0.4883333333333333,0.5,0.7,0.5533333333333333,1,25 -folded,0.76,1.0,0.6166666666666666,0.7333333333333334,1,26 -jam,0.6933333333333334,1.0,0.6,0.7166666666666667,1,26 -black,0.9266666666666667,0.8333333333333333,1.0,0.8933333333333333,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.755,1.0,0.7166666666666666,0.8,1,26 -soccer,0.7483333333333333,1.0,0.5666666666666667,0.7,1,26 -hat,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -brown,0.8633333333333333,1.0,0.8333333333333333,0.9,2,26 -coffee,0.55,1.0,0.5666666666666667,0.6833333333333333,1,24 -handle,0.6,1.0,0.4666666666666666,0.6166666666666667,1,26 -food,0.7083333333333334,1.0,0.7166666666666666,0.8,1,25 -towel,0.7266666666666667,1.0,0.7166666666666666,0.8,1,26 -chips,0.595,1.0,0.5,0.65,1,26 -stapler,0.585,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.6733333333333333,1.0,0.4999999999999999,0.65,1,26 -bag,0.6316666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -sponge,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.7416666666666666,1.0,0.7,0.7833333333333333,1,25 -special,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -colgate,0.8216666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -leaf,0.6683333333333332,1.0,0.55,0.6833333333333333,1,26 -tube,0.5633333333333332,1.0,0.4666666666666666,0.6166666666666666,1,26 -cell,0.5733333333333334,0.5,0.7,0.5533333333333333,1,26 -mug,0.5916666666666666,1.0,0.5833333333333333,0.7,1,25 -yogurt,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.5933333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.95,0.8833333333333332,1.0,0.9266666666666667,3,25 -pepper,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -toothbrush,0.5083333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -binder,0.6433333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -pliers,0.7166666666666666,1.0,0.7333333333333332,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -thins,0.48,1.0,0.5666666666666667,0.6833333333333333,1,26 -package,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -k,0.7166666666666666,1.0,0.65,0.75,1,26 -jelly,0.6,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.7649999999999999,0.7333333333333334,0.8666666666666666,0.7466666666666667,2,25 -apple,0.6583333333333333,0.9,0.6333333333333332,0.6666666666666666,1,25 -bell,0.7166666666666666,1.0,0.7166666666666666,0.8,1,26 -battery,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -jar,0.6466666666666667,1.0,0.5166666666666666,0.65,1,26 -bound,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -lettuce,0.7133333333333334,1.0,0.5833333333333333,0.7,1,26 -brush,0.7466666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -scissors,0.7733333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -lime,0.805,1.0,0.6833333333333333,0.7833333333333333,1,25 -toothpaste,0.7733333333333333,1.0,0.7166666666666666,0.8,1,26 -top,0.8033333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -spiral,0.4966666666666667,1.0,0.5166666666666666,0.65,1,26 -handles,0.7016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -camera,0.675,1.0,0.6833333333333333,0.7666666666666666,1,26 -eraser,0.5966666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6516666666666666,1.0,0.5666666666666667,0.7,1,26 -pitcher,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -phone,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -stick,0.58,1.0,0.5333333333333333,0.6666666666666666,1,25 -cereal,0.71,1.0,0.5499999999999999,0.6833333333333333,1,26 -bulb,0.93,1.0,0.8999999999999998,0.9400000000000001,2,27 -hair,0.7016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -can,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -coca,0.7483333333333333,1.0,0.5666666666666667,0.7,1,26 -crackers,0.55,1.0,0.5166666666666666,0.65,1,26 -plate,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,24 -calculator,0.8583333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -tissues,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -juice,0.705,1.0,0.5999999999999999,0.7166666666666667,1,26 -pink,0.8399999999999999,1.0,0.7333333333333333,0.8166666666666668,1,25 -lemon,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -peach,0.7166666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5466666666666666,1.0,0.4333333333333333,0.6,1,26 -blue,0.7083333333333333,1.0,0.7166666666666666,0.8,1,25 -used,0.7866666666666666,1.0,0.6833333333333333,0.7833333333333333,1,22 -energizer,0,0,0,0,1,26 -pear,0.7,1.0,0.5999999999999999,0.7166666666666666,1,26 -ball,0.4716666666666667,1.0,0.4499999999999999,0.6,1,25 -notebook,0.7666666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -garlic,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -cleaning,0.6883333333333332,1.0,0.6333333333333332,0.7333333333333333,1,26 -pair,0.8883333333333333,1.0,0.8666666666666668,0.9200000000000002,2,26 -container,0.6566666666666667,1.0,0.5,0.65,1,25 -tomato,0.7333333333333333,0.8,0.6833333333333333,0.6833333333333333,1,26 -cellphone,0.5116666666666666,0.5,0.5666666666666667,0.5133333333333333,1,26 -potato,0.6849999999999999,1.0,0.5333333333333333,0.6666666666666666,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.93,1.0,0.8999999999999998,0.9400000000000001,2,26 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6652314814814815 -F1-Score: 0.6966358024691359 -Precision: 0.9041666666666666 -Recall: 0.6174382716049384 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.75,1.0,0.7499999999999999,0.8166666666666667,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,25 -looks,0.6966666666666667,0.8,0.75,0.6833333333333333,1,24 -keyboard,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -glue,0.7649999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.5933333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -flashlight,0.6133333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -cup,0.6316666666666666,0.5,0.7666666666666666,0.5800000000000001,1,26 -folded,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -jam,0.735,1.0,0.6166666666666666,0.7333333333333333,1,26 -black,0.8283333333333334,0.7333333333333333,1.0,0.840952380952381,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.76,1.0,0.6333333333333333,0.75,1,26 -soccer,0.6583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -hat,0.41666666666666663,1.0,0.4999999999999999,0.6333333333333333,1,26 -brown,0.95,1.0,0.9333333333333332,0.96,2,24 -coffee,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333333,1,25 -handle,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -food,0.5933333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -towel,0.505,1.0,0.4999999999999999,0.6333333333333333,1,26 -chips,0.6766666666666666,1.0,0.6499999999999999,0.75,1,26 -stapler,0.7416666666666667,1.0,0.7666666666666666,0.8333333333333334,1,26 -onion,0.45999999999999996,1.0,0.5166666666666666,0.65,1,26 -bag,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -sponge,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -zero,0,0,0,0,1,26 -computer,0.65,1.0,0.5833333333333333,0.7,1,25 -special,0.755,1.0,0.65,0.75,1,26 -colgate,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -leaf,0.4883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.6983333333333334,1.0,0.5666666666666667,0.7,1,26 -cell,0.395,0.5,0.5499999999999999,0.49000000000000005,1,26 -mug,0.6433333333333333,1.0,0.5666666666666667,0.7,1,25 -yogurt,0.8166666666666667,1.0,0.7833333333333333,0.85,1,26 -plantain,0.7,1.0,0.6499999999999999,0.75,1,26 -red,0.95,0.85,1.0,0.9,3,26 -pepper,0.5416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -kleenex,0.6683333333333333,1.0,0.55,0.6833333333333333,1,26 -toothbrush,0.5833333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -binder,0.65,1.0,0.6,0.7166666666666667,1,26 -baseball,0.53,1.0,0.4333333333333333,0.6,1,26 -pliers,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6666666666666666,1.0,0.6499999999999999,0.75,1,26 -thins,0.7083333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -package,0.5716666666666665,1.0,0.4999999999999999,0.6333333333333333,1,26 -k,0.4833333333333333,1.0,0.5333333333333333,0.65,1,26 -jelly,0.6133333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -fruit,0.7383333333333333,0.7,0.8666666666666668,0.73,2,25 -apple,0.5666666666666667,0.9,0.6166666666666666,0.65,1,25 -bell,0.5816666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -battery,0.4966666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -jar,0.55,1.0,0.5999999999999999,0.7,1,26 -bound,0.6799999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -lettuce,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -brush,0.735,1.0,0.6,0.7166666666666667,1,26 -scissors,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.6933333333333332,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.7216666666666666,1.0,0.5666666666666667,0.7,1,26 -top,0.7383333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -spiral,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -handles,0.5683333333333332,1.0,0.5833333333333333,0.7,1,25 -camera,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -eraser,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,0.8483333333333334,0.6916666666666667,1.0,0.8038095238095238,5,21 -banana,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -pitcher,0.65,1.0,0.55,0.6833333333333333,1,26 -phone,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -stick,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -cereal,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -hair,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -can,1.0,1.0,1.0,1.0,2,25 -coca,0.5683333333333332,1.0,0.41666666666666663,0.5833333333333333,1,26 -crackers,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -plate,0.7999999999999999,1.0,0.7499999999999999,0.8166666666666667,1,25 -calculator,0.6416666666666667,0.95,0.5833333333333333,0.6666666666666667,1,26 -tissues,0.6499999999999999,1.0,0.6499999999999999,0.75,1,26 -juice,0.6833333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -pink,0.7633333333333334,1.0,0.6166666666666666,0.7333333333333334,1,25 -lemon,0.5499999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -peach,0.44666666666666666,1.0,0.4833333333333334,0.6166666666666666,1,26 -bowl,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7216666666666667,1.0,0.5833333333333333,0.7,1,26 -blue,0.755,1.0,0.6666666666666666,0.7666666666666666,1,25 -used,0.45,1.0,0.5499999999999999,0.6666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.6016666666666667,1.0,0.4833333333333334,0.6333333333333333,1,26 -ball,0.585,1.0,0.5833333333333333,0.7,1,25 -notebook,0.6316666666666666,1.0,0.5,0.65,1,26 -garlic,0.58,1.0,0.5499999999999999,0.6666666666666666,1,26 -cleaning,0.4833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -pair,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -container,0.7533333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -tomato,0.6816666666666666,0.9,0.5666666666666667,0.65,1,26 -cellphone,0.7183333333333333,0.5,0.85,0.6166666666666666,1,26 -potato,0.6933333333333332,1.0,0.6166666666666666,0.7333333333333333,1,25 -light,0.8883333333333333,1.0,0.8666666666666668,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8766666666666667,1.0,0.8333333333333333,0.9,2,27 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6350617283950617 -F1-Score: 0.6785008818342152 -Precision: 0.8974537037037037 -Recall: 0.6013888888888888 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5333333333333333,1.0,0.5999999999999999,0.7,1,25 -yellow,0.8866666666666667,0.7166666666666666,1.0,0.8133333333333332,6,24 -looks,0.7166666666666667,0.85,0.7999999999999999,0.75,1,24 -keyboard,0.8333333333333333,1.0,0.8166666666666667,0.8666666666666666,1,26 -glue,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6583333333333333,1.0,0.65,0.75,1,26 -flashlight,0.6666666666666666,1.0,0.6666666666666666,0.75,1,26 -cup,0.6183333333333334,1.0,0.55,0.6833333333333333,1,26 -folded,0.8933333333333333,1.0,0.8333333333333333,0.8833333333333332,1,26 -jam,0.5216666666666667,1.0,0.5166666666666666,0.65,1,26 -black,0.9033333333333333,0.7666666666666667,1.0,0.8466666666666665,6,19 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -soccer,0.7483333333333333,1.0,0.6333333333333333,0.75,1,26 -hat,0.635,1.0,0.6,0.7166666666666667,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.96,2,24 -coffee,0.7566666666666666,1.0,0.6333333333333333,0.75,1,26 -handle,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666667,1,25 -food,0.75,1.0,0.7999999999999999,0.85,1,26 -towel,0.7183333333333334,1.0,0.5666666666666667,0.7,1,26 -chips,0.5933333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -stapler,0.65,1.0,0.6666666666666666,0.75,1,26 -onion,0.5666666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -bag,0.71,1.0,0.6166666666666666,0.7333333333333334,1,26 -sponge,0.9166666666666666,1.0,0.85,0.9,1,26 -zero,0,0,0,0,1,26 -computer,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666667,1,25 -special,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -colgate,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -leaf,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.5416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -cell,0.5383333333333333,0.5,0.7166666666666666,0.5633333333333334,1,26 -mug,0.65,1.0,0.6666666666666666,0.75,1,26 -yogurt,0.6749999999999999,1.0,0.4999999999999999,0.65,1,26 -plantain,0.6416666666666666,0.95,0.6333333333333333,0.7,1,26 -red,0.8516666666666668,0.6416666666666667,1.0,0.7657142857142857,3,24 -pepper,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -wheat,0.8300000000000001,1.0,0.6833333333333333,0.7833333333333334,1,26 -kleenex,0.655,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.6933333333333332,1.0,0.5333333333333332,0.6666666666666666,1,26 -binder,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -baseball,0.4833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -pliers,0.6683333333333332,1.0,0.6499999999999999,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.4966666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -thins,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -package,0.5216666666666666,1.0,0.5166666666666666,0.65,1,26 -k,0.7449999999999999,1.0,0.5666666666666667,0.7,1,26 -jelly,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -fruit,0.8450000000000001,0.9,0.8333333333333333,0.8333333333333334,2,25 -apple,0.825,0.9,0.8166666666666667,0.8,1,25 -bell,0.6916666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -battery,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -jar,0.725,1.0,0.7,0.7833333333333334,1,26 -bound,0.6966666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.73,1.0,0.65,0.75,1,26 -scissors,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.64,1.0,0.5333333333333333,0.6666666666666666,1,25 -toothpaste,0.8683333333333334,1.0,0.7833333333333333,0.85,1,26 -top,0.55,1.0,0.4833333333333333,0.6333333333333333,1,26 -spiral,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -handles,0.79,1.0,0.6333333333333333,0.75,1,25 -camera,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -eraser,0.705,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5766666666666667,0.95,0.4666666666666666,0.5833333333333333,1,26 -pitcher,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -phone,0.51,1.0,0.4999999999999999,0.6333333333333333,1,26 -stick,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -cereal,0.7266666666666667,1.0,0.6,0.7166666666666667,1,26 -bulb,0.8800000000000001,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5916666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -can,0.825,1.0,0.8,0.8800000000000001,2,25 -coca,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -crackers,0.5966666666666668,1.0,0.5666666666666667,0.6833333333333333,1,26 -plate,0.7333333333333333,1.0,0.65,0.75,1,25 -calculator,0.6883333333333332,0.7,0.6666666666666666,0.6166666666666667,1,26 -tissues,0.5966666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -juice,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.4883333333333333,1.0,0.4333333333333333,0.5833333333333333,1,25 -lemon,0.5516666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -peach,0.5333333333333333,1.0,0.5,0.6333333333333333,1,26 -bowl,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6133333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -blue,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666667,1,25 -used,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.43499999999999994,1.0,0.4,0.5666666666666667,1,26 -ball,0.6599999999999999,1.0,0.5833333333333333,0.7,1,25 -notebook,0.6383333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -garlic,0.7433333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -pair,0.905,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.85,1.0,0.7666666666666666,0.8333333333333333,1,25 -tomato,0.5316666666666666,0.85,0.5666666666666667,0.6,1,26 -cellphone,0.48,0.5,0.6166666666666666,0.53,1,26 -potato,0.8716666666666667,1.0,0.7833333333333333,0.85,1,25 -light,0.8933333333333332,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.8099999999999999,1.0,0.7666666666666667,0.86,2,25 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6499845679012345 -F1-Score: 0.6869973544973544 -Precision: 0.9002314814814815 -Recall: 0.6109567901234567 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,24 -yellow,0.8866666666666667,0.7333333333333333,1.0,0.8266666666666665,6,24 -looks,0.7133333333333334,0.75,0.7999999999999999,0.6833333333333333,1,24 -keyboard,0.7833333333333333,1.0,0.7,0.7833333333333333,1,26 -glue,0.5583333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6416666666666667,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.7066666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -cup,0.6766666666666666,0.5,0.85,0.6166666666666667,1,26 -folded,0.5216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -jam,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -black,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.8266666666666665,1.0,0.7166666666666666,0.8,1,26 -soccer,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -hat,0.5466666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.96,2,24 -coffee,0.5583333333333333,1.0,0.5499999999999999,0.6666666666666667,1,25 -handle,0.4833333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -food,0.7083333333333333,1.0,0.65,0.75,1,25 -towel,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.7566666666666666,1.0,0.6333333333333333,0.75,1,26 -stapler,0.5916666666666666,1.0,0.5166666666666666,0.65,1,26 -onion,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -bag,0.6833333333333333,1.0,0.65,0.75,1,26 -sponge,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.43,1.0,0.4333333333333333,0.5833333333333333,1,25 -special,0.5616666666666668,1.0,0.45,0.6166666666666667,1,26 -colgate,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -leaf,0.5833333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -tube,0.58,1.0,0.5166666666666666,0.65,1,26 -cell,0.41,0.55,0.5999999999999999,0.53,1,26 -mug,0.7633333333333333,1.0,0.75,0.8166666666666667,1,25 -yogurt,0.8166666666666667,1.0,0.6,0.7333333333333334,1,26 -plantain,0.7100000000000001,1.0,0.6,0.7166666666666667,1,26 -red,0.8566666666666667,0.725,1.0,0.8257142857142858,3,25 -pepper,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -wheat,0.6833333333333333,1.0,0.7333333333333333,0.8,1,26 -kleenex,0.5416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -toothbrush,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.4966666666666666,1.0,0.5166666666666666,0.65,1,26 -baseball,0.6966666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.835,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7150000000000001,1.0,0.55,0.6833333333333333,1,26 -thins,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -package,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -k,0.5216666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -jelly,0.5999999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -fruit,0.705,0.5833333333333333,0.9333333333333332,0.6866666666666668,2,25 -apple,0.6533333333333333,0.85,0.7166666666666666,0.7166666666666667,1,25 -bell,0.8,1.0,0.7166666666666666,0.8,1,26 -battery,0.8016666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -jar,0.6066666666666667,1.0,0.4999999999999999,0.65,1,26 -bound,0.6633333333333333,1.0,0.65,0.75,1,26 -lettuce,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -brush,0.6416666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -scissors,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -lime,0.8216666666666667,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333334,1,26 -spiral,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -handles,0.63,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.6266666666666667,1.0,0.6333333333333332,0.7333333333333333,1,26 -eraser,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -pitcher,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -phone,0.76,1.0,0.7,0.7833333333333333,1,26 -stick,0.7150000000000001,1.0,0.6666666666666666,0.7666666666666666,1,25 -cereal,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -bulb,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -hair,0.6216666666666667,1.0,0.4833333333333333,0.6333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -can,0.9349999999999999,1.0,0.9,0.9400000000000001,2,24 -coca,0.58,1.0,0.5833333333333333,0.7,1,26 -crackers,0.73,1.0,0.7166666666666666,0.8,1,26 -plate,0.5216666666666667,1.0,0.5166666666666666,0.65,1,25 -calculator,0.4616666666666667,0.85,0.4666666666666666,0.55,1,26 -tissues,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.605,1.0,0.5166666666666666,0.65,1,26 -pink,0.5466666666666666,1.0,0.4833333333333333,0.6333333333333333,1,25 -lemon,0.6333333333333334,1.0,0.5166666666666666,0.6666666666666667,1,26 -peach,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -bowl,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.655,1.0,0.6333333333333332,0.7333333333333333,1,26 -blue,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,25 -used,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.56,1.0,0.5833333333333333,0.7,1,26 -ball,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333333,1,25 -notebook,0.6916666666666667,1.0,0.65,0.75,1,26 -garlic,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.735,1.0,0.65,0.75,1,26 -pair,0.9016666666666666,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.65,1.0,0.7,0.7833333333333333,1,25 -tomato,0.5516666666666666,0.95,0.4666666666666666,0.5833333333333334,1,26 -cellphone,0.3533333333333334,0.6,0.5166666666666666,0.5033333333333333,1,26 -potato,0.6483333333333332,1.0,0.5333333333333333,0.6666666666666667,1,25 -light,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8866666666666667,1.0,0.8333333333333333,0.9,2,25 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6419907407407407 -F1-Score: 0.6844973544973547 -Precision: 0.8982253086419754 -Recall: 0.6084876543209875 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7249999999999999,1.0,0.6833333333333333,0.7666666666666666,1,25 -yellow,0.9100000000000001,0.8,1.0,0.8733333333333334,6,26 -looks,0.68,0.8,0.5666666666666667,0.6166666666666667,1,24 -keyboard,0.6966666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -glue,0.7716666666666666,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -flashlight,0.6266666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -cup,0.21000000000000002,0.5,0.4666666666666666,0.4666666666666667,1,26 -folded,0.7633333333333334,1.0,0.7,0.7833333333333333,1,26 -jam,0.8300000000000001,1.0,0.6833333333333333,0.7833333333333334,1,26 -black,0.9466666666666667,0.8666666666666666,1.0,0.9133333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.775,1.0,0.6666666666666666,0.7666666666666667,1,26 -soccer,0.6,1.0,0.5166666666666666,0.65,1,26 -hat,0.805,1.0,0.7166666666666666,0.8,1,26 -brown,0.905,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.6249999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -handle,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -food,0.63,1.0,0.5499999999999999,0.6666666666666666,1,25 -towel,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.6916666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -stapler,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -bag,0.7133333333333333,1.0,0.6,0.7166666666666667,1,26 -sponge,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7433333333333333,1.0,0.7,0.7833333333333333,1,26 -special,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -colgate,0.5933333333333333,1.0,0.5833333333333333,0.7,1,26 -leaf,0.6383333333333333,1.0,0.6,0.7166666666666667,1,26 -tube,0.4716666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -cell,0.5966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -mug,0.4833333333333333,1.0,0.4333333333333333,0.6,1,26 -yogurt,0.5916666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -plantain,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666668,1,26 -red,0.865,0.6833333333333333,1.0,0.7933333333333333,3,27 -pepper,0.7216666666666666,1.0,0.7,0.7833333333333333,1,26 -wheat,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.7633333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -toothbrush,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -binder,0.6666666666666666,1.0,0.5,0.65,1,26 -baseball,0.605,1.0,0.5833333333333333,0.7,1,26 -pliers,0.6833333333333333,1.0,0.7333333333333332,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.73,1.0,0.5999999999999999,0.7166666666666667,1,26 -thins,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -package,0.7266666666666667,1.0,0.6,0.7166666666666667,1,26 -k,0.7216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.5633333333333332,1.0,0.4833333333333333,0.6333333333333333,1,26 -fruit,0.725,0.5833333333333333,0.9333333333333332,0.7033333333333334,2,25 -apple,0.6216666666666667,0.9,0.6499999999999999,0.6833333333333333,1,25 -bell,0.6583333333333333,1.0,0.6,0.7166666666666667,1,26 -battery,0.7083333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -jar,0.7766666666666666,1.0,0.6499999999999999,0.75,1,26 -bound,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -brush,0.6416666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -scissors,0.4916666666666666,1.0,0.41666666666666663,0.5833333333333333,1,26 -lime,0.5933333333333334,1.0,0.5333333333333333,0.6666666666666667,1,25 -toothpaste,0.7633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -top,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -spiral,0.605,1.0,0.5833333333333333,0.7,1,26 -handles,0.63,1.0,0.5499999999999999,0.6666666666666666,1,25 -camera,0.6883333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -eraser,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6133333333333334,1.0,0.55,0.6833333333333333,1,26 -pitcher,0.5516666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -phone,0.8083333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -stick,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666666,1,25 -cereal,0.5983333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -bulb,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.615,1.0,0.55,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -can,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,26 -coca,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.8133333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -plate,0.7433333333333334,1.0,0.6333333333333333,0.75,1,25 -calculator,0.31833333333333336,0.55,0.4999999999999999,0.4833333333333334,1,26 -tissues,0.5466666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -juice,0.4833333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -pink,0.6799999999999999,1.0,0.65,0.75,1,25 -lemon,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -peach,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -bowl,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.85,1.0,0.8166666666666667,0.8666666666666666,1,26 -blue,0.675,1.0,0.6,0.7166666666666667,1,25 -used,0.7350000000000001,1.0,0.6166666666666666,0.7333333333333333,1,22 -energizer,0,0,0,0,1,26 -pear,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -ball,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -garlic,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -cleaning,0.725,1.0,0.6333333333333333,0.7333333333333333,1,26 -pair,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -container,0.8766666666666666,1.0,0.75,0.8333333333333333,1,25 -tomato,0.6833333333333333,0.65,0.7333333333333333,0.65,1,26 -cellphone,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -potato,0.7466666666666667,1.0,0.7166666666666666,0.8,1,25 -light,0.8800000000000001,1.0,0.8666666666666668,0.9200000000000002,2,27 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8549999999999999,1.0,0.8333333333333334,0.9000000000000001,2,26 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6561265432098765 -F1-Score: 0.6906172839506174 -Precision: 0.9012345679012347 -Recall: 0.6120370370370369 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,25 -yellow,0.9333333333333333,0.8,1.0,0.8666666666666666,6,24 -looks,0.6383333333333333,1.0,0.5833333333333333,0.7,1,24 -keyboard,0.73,1.0,0.7,0.7833333333333333,1,26 -glue,0.7100000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6799999999999999,1.0,0.6,0.7166666666666666,1,26 -flashlight,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -cup,0.2833333333333333,0.5,0.5333333333333333,0.49333333333333335,1,26 -folded,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333334,1,26 -jam,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -black,0.8733333333333334,0.7583333333333333,1.0,0.8457142857142858,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5900000000000001,1.0,0.4999999999999999,0.65,1,26 -soccer,0.6383333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -hat,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -brown,0.9099999999999999,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -handle,0.6,1.0,0.5666666666666667,0.6833333333333333,1,25 -food,0.6266666666666667,1.0,0.5166666666666666,0.65,1,25 -towel,0.7416666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -chips,0.6966666666666665,1.0,0.5499999999999999,0.6833333333333333,1,26 -stapler,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.7216666666666667,1.0,0.65,0.75,1,26 -bag,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7649999999999999,1.0,0.6,0.7166666666666667,1,25 -special,0.635,1.0,0.5999999999999999,0.7166666666666667,1,26 -colgate,0.5516666666666665,1.0,0.4166666666666667,0.5833333333333333,1,26 -leaf,0.53,1.0,0.5333333333333333,0.6666666666666667,1,26 -tube,0.7516666666666667,1.0,0.6,0.7166666666666667,1,26 -cell,0.4216666666666667,0.55,0.6666666666666666,0.5433333333333334,1,26 -mug,0.675,1.0,0.7,0.7833333333333333,1,25 -yogurt,0.5133333333333333,1.0,0.4833333333333334,0.6333333333333333,1,26 -plantain,0.7,1.0,0.65,0.75,1,26 -red,0.9666666666666668,0.9,1.0,0.9333333333333332,3,25 -pepper,0.7083333333333333,1.0,0.7,0.7833333333333334,1,26 -wheat,0.8016666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -kleenex,0.7416666666666666,1.0,0.75,0.8166666666666667,1,26 -toothbrush,0.6583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -binder,0.5549999999999999,1.0,0.4166666666666667,0.5833333333333333,1,26 -baseball,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -pliers,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7166666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -thins,0.735,1.0,0.6,0.7166666666666666,1,26 -package,0.4883333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -k,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.5216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -fruit,0.76,0.6833333333333333,0.9,0.7166666666666667,2,26 -apple,0.655,0.85,0.6333333333333333,0.6333333333333333,1,25 -bell,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -battery,0.5433333333333332,1.0,0.4666666666666666,0.6166666666666667,1,26 -jar,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.7249999999999999,1.0,0.6499999999999999,0.75,1,26 -lettuce,0.6399999999999999,1.0,0.6,0.7166666666666667,1,26 -brush,0.5933333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -scissors,0.8833333333333332,1.0,0.8333333333333333,0.8833333333333332,1,26 -lime,0.625,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.625,1.0,0.6166666666666666,0.7166666666666666,1,26 -top,0.6900000000000001,1.0,0.6499999999999999,0.75,1,26 -spiral,0.8299999999999998,1.0,0.7333333333333333,0.8166666666666667,1,26 -handles,0.5266666666666666,1.0,0.5166666666666666,0.65,1,25 -camera,0.71,1.0,0.65,0.75,1,26 -eraser,0.7150000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6316666666666666,1.0,0.4833333333333332,0.6333333333333333,1,26 -pitcher,0.36666666666666664,1.0,0.4833333333333334,0.6166666666666666,1,26 -phone,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -stick,0.45499999999999996,1.0,0.4999999999999999,0.6333333333333333,1,25 -cereal,0.6633333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -bulb,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -hair,0.7549999999999999,1.0,0.7166666666666666,0.8,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7633333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -can,0.8883333333333333,1.0,0.8666666666666668,0.9200000000000002,2,24 -coca,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -crackers,0.6833333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -plate,0.5666666666666667,1.0,0.4999999999999999,0.6333333333333333,1,25 -calculator,0.5999999999999999,0.95,0.6333333333333333,0.7,1,26 -tissues,0.6849999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -juice,0.6933333333333332,1.0,0.6499999999999999,0.75,1,26 -pink,0.8133333333333332,1.0,0.7166666666666666,0.8,1,25 -lemon,0.38499999999999995,1.0,0.38333333333333336,0.55,1,26 -peach,0.6633333333333333,1.0,0.65,0.75,1,26 -bowl,0.6233333333333333,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6983333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -blue,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -used,0.7,1.0,0.6166666666666666,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6466666666666667,1.0,0.65,0.75,1,26 -ball,0.7966666666666666,1.0,0.75,0.8166666666666667,1,25 -notebook,0.5183333333333333,1.0,0.41666666666666663,0.5833333333333333,1,26 -garlic,0.5383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -cleaning,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -pair,0.9016666666666667,1.0,0.8666666666666668,0.9200000000000002,2,26 -container,0.665,1.0,0.55,0.6833333333333333,1,25 -tomato,0.6399999999999999,0.8,0.65,0.6333333333333334,1,26 -cellphone,0.5599999999999999,0.55,0.7333333333333333,0.5833333333333333,1,26 -potato,0.69,1.0,0.5666666666666667,0.7,1,25 -light,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8516666666666666,1.0,0.8,0.8800000000000001,2,26 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6438734567901236 -F1-Score: 0.6829541446208113 -Precision: 0.9013117283950618 -Recall: 0.6032407407407407 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7216666666666667,1.0,0.7166666666666666,0.8,1,25 -yellow,0.95,0.85,1.0,0.9,6,24 -looks,0.7983333333333335,0.9,0.6833333333333333,0.7166666666666667,1,24 -keyboard,0.6633333333333333,1.0,0.5666666666666667,0.7,1,26 -glue,0.8216666666666667,1.0,0.7,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -flashlight,0.6833333333333333,1.0,0.65,0.75,1,26 -cup,0.14500000000000002,0.5,0.4833333333333332,0.4633333333333334,1,26 -folded,0.6583333333333333,1.0,0.5666666666666667,0.7,1,26 -jam,0.6416666666666667,1.0,0.65,0.75,1,26 -black,0.89,0.7666666666666667,1.0,0.8466666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6266666666666667,1.0,0.55,0.6833333333333333,1,26 -soccer,0.7133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -hat,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -brown,0.9466666666666667,1.0,0.9333333333333332,0.96,2,24 -coffee,0.7466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -handle,0.5466666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -food,0.7683333333333333,1.0,0.7166666666666666,0.8,1,25 -towel,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.8766666666666666,1.0,0.75,0.8333333333333333,1,26 -stapler,0.6966666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.45,1.0,0.4166666666666667,0.5666666666666667,1,26 -bag,0.8133333333333332,1.0,0.7333333333333333,0.8166666666666667,1,26 -sponge,0.8133333333333332,1.0,0.7833333333333333,0.85,1,26 -zero,0,0,0,0,1,26 -computer,0.76,1.0,0.6166666666666666,0.7333333333333333,1,25 -special,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -colgate,0.5516666666666666,1.0,0.45,0.6166666666666667,1,26 -leaf,0.705,1.0,0.6499999999999999,0.75,1,26 -tube,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -cell,0.38333333333333336,0.65,0.6166666666666666,0.5466666666666666,1,26 -mug,0.585,1.0,0.4833333333333333,0.6333333333333333,1,26 -yogurt,0.5133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -plantain,0.5016666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -red,0.9500000000000002,0.85,1.0,0.8999999999999998,3,26 -pepper,0.51,1.0,0.4666666666666666,0.6166666666666667,1,26 -wheat,0.58,1.0,0.5166666666666666,0.65,1,26 -kleenex,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -toothbrush,0.625,1.0,0.5333333333333333,0.6666666666666667,1,26 -binder,0.86,1.0,0.7833333333333333,0.85,1,26 -baseball,0.6233333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -pliers,0.6916666666666667,1.0,0.65,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -thins,0.6566666666666666,1.0,0.55,0.6833333333333333,1,26 -package,0.7083333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -jelly,0.7133333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -fruit,0.8183333333333334,0.75,0.9333333333333332,0.7899999999999999,2,25 -apple,0.6133333333333333,1.0,0.5,0.65,1,25 -bell,0.6483333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -battery,0.49833333333333335,1.0,0.41666666666666663,0.5833333333333333,1,26 -jar,0.6683333333333333,1.0,0.55,0.6833333333333333,1,26 -bound,0.5466666666666666,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.5083333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -brush,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -scissors,0.7350000000000001,1.0,0.5666666666666667,0.7,1,26 -lime,0.755,1.0,0.6499999999999999,0.75,1,25 -toothpaste,0.635,1.0,0.5166666666666666,0.65,1,26 -top,0.625,1.0,0.5499999999999999,0.6833333333333333,1,26 -spiral,0.7849999999999999,1.0,0.6833333333333333,0.7833333333333334,1,26 -handles,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -camera,0.7333333333333333,1.0,0.7166666666666666,0.8,1,26 -eraser,0.7283333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5900000000000001,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -phone,0.8016666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -stick,0.5583333333333333,1.0,0.5166666666666666,0.65,1,25 -cereal,0.5,1.0,0.4,0.5666666666666667,1,26 -bulb,0.915,1.0,0.8666666666666668,0.9200000000000002,2,26 -hair,0.7466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5833333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -can,0.8633333333333333,1.0,0.8333333333333333,0.9,2,24 -coca,0.6,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.4833333333333333,1.0,0.5333333333333333,0.65,1,26 -plate,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,24 -calculator,0.7066666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -tissues,0.6133333333333334,1.0,0.55,0.6833333333333333,1,26 -juice,0.7133333333333333,1.0,0.65,0.75,1,26 -pink,0.6416666666666666,1.0,0.6833333333333333,0.7666666666666667,1,25 -lemon,0.705,1.0,0.65,0.75,1,26 -peach,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -bowl,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.865,1.0,0.7333333333333333,0.8166666666666668,1,26 -blue,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666668,1,25 -used,0.51,1.0,0.5666666666666667,0.6833333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.7,1.0,0.7,0.7833333333333333,1,26 -ball,0.51,1.0,0.4666666666666666,0.6166666666666667,1,25 -notebook,0.5883333333333333,1.0,0.4999999999999999,0.65,1,26 -garlic,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.6383333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -pair,0.8383333333333333,1.0,0.8,0.8800000000000001,2,26 -container,0.86,1.0,0.7333333333333333,0.8166666666666667,1,25 -tomato,0.36666666666666664,1.0,0.4333333333333333,0.5833333333333333,1,26 -cellphone,0.45833333333333337,0.5,0.5666666666666667,0.5,1,26 -potato,0.6849999999999999,1.0,0.6,0.7166666666666667,1,25 -light,0.8549999999999999,1.0,0.8333333333333333,0.9,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9099999999999999,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6383179012345679 -F1-Score: 0.682962962962963 -Precision: 0.9052469135802469 -Recall: 0.5979938271604938 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8166666666666667,1.0,0.6833333333333333,0.7833333333333334,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.58,1.0,0.5166666666666666,0.65,1,24 -keyboard,0.7633333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -glue,0.6183333333333333,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.63,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -cup,0.43500000000000005,0.55,0.55,0.5133333333333333,1,26 -folded,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jam,0.7466666666666666,1.0,0.6499999999999999,0.75,1,26 -black,0.8816666666666666,0.775,1.0,0.8590476190476191,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7150000000000001,1.0,0.5499999999999999,0.6833333333333333,1,26 -soccer,0.6466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -hat,0.6716666666666666,1.0,0.6,0.7166666666666666,1,26 -brown,0.96,1.0,0.9333333333333332,0.96,2,24 -coffee,0.7433333333333334,1.0,0.65,0.75,1,26 -handle,0.6249999999999999,1.0,0.6333333333333333,0.7333333333333333,1,25 -food,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -towel,0.7016666666666667,1.0,0.5666666666666667,0.7,1,26 -chips,0.6733333333333332,1.0,0.65,0.75,1,26 -stapler,0.7383333333333333,1.0,0.5666666666666667,0.7,1,26 -onion,0.58,1.0,0.5833333333333333,0.7,1,26 -bag,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -sponge,0.61,1.0,0.4999999999999999,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.6050000000000001,1.0,0.5833333333333333,0.7,1,26 -special,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -colgate,0.5583333333333333,1.0,0.55,0.6833333333333333,1,26 -leaf,0.575,1.0,0.4833333333333333,0.6333333333333334,1,26 -tube,0.44666666666666666,1.0,0.4333333333333333,0.5833333333333333,1,26 -cell,0.7533333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -mug,0.5933333333333334,1.0,0.5,0.6333333333333333,1,26 -yogurt,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -plantain,0.6049999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -red,0.9833333333333334,0.95,1.0,0.9666666666666666,3,25 -pepper,0.6016666666666667,1.0,0.5166666666666666,0.65,1,26 -wheat,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -kleenex,0.6383333333333334,1.0,0.6,0.7166666666666667,1,26 -toothbrush,0.5166666666666666,1.0,0.5166666666666666,0.65,1,26 -binder,0.6066666666666667,1.0,0.5833333333333333,0.7,1,26 -baseball,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -pliers,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -thins,0.5266666666666666,1.0,0.41666666666666663,0.5833333333333333,1,26 -package,0.45666666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -k,0.7433333333333334,1.0,0.6,0.7166666666666666,1,26 -jelly,0.7833333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -fruit,0.8366666666666667,0.8666666666666666,0.8333333333333333,0.8133333333333332,2,25 -apple,0.7016666666666667,0.9,0.5999999999999999,0.65,1,25 -bell,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.6166666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -jar,0.6599999999999999,1.0,0.7,0.7833333333333333,1,26 -bound,0.525,1.0,0.5,0.6333333333333333,1,26 -lettuce,0.78,1.0,0.6499999999999999,0.75,1,26 -brush,0.7633333333333333,1.0,0.65,0.75,1,26 -scissors,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -lime,0.6766666666666666,1.0,0.55,0.6833333333333333,1,25 -toothpaste,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -top,0.71,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.5766666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -handles,0.6599999999999999,1.0,0.5166666666666666,0.65,1,25 -camera,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -eraser,0.5433333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.6583333333333332,1.0,0.6166666666666666,0.7166666666666666,1,26 -pitcher,0.6266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.65,1.0,0.5333333333333333,0.6666666666666667,1,26 -stick,0.6833333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -cereal,0.8150000000000001,1.0,0.6666666666666666,0.7666666666666667,1,26 -bulb,0.8916666666666666,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coca,0.5383333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -crackers,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -plate,0.8300000000000001,1.0,0.6833333333333333,0.7833333333333333,1,25 -calculator,0.6783333333333333,0.85,0.5999999999999999,0.6333333333333333,1,26 -tissues,0.6133333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -juice,0.22833333333333333,0.5,0.5166666666666666,0.4833333333333334,1,26 -pink,0.5549999999999999,1.0,0.5166666666666666,0.65,1,25 -lemon,0.635,1.0,0.5833333333333333,0.7,1,26 -peach,0.7016666666666667,1.0,0.5666666666666667,0.7,1,26 -bowl,0.71,1.0,0.6666666666666666,0.7666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -blue,0.8716666666666667,1.0,0.7833333333333333,0.85,1,25 -used,0.4216666666666667,1.0,0.5166666666666666,0.65,1,24 -energizer,0,0,0,0,1,26 -pear,0.6300000000000001,1.0,0.4833333333333333,0.6333333333333334,1,26 -ball,0.5349999999999999,1.0,0.4666666666666666,0.6166666666666666,1,25 -notebook,0.53,1.0,0.5333333333333333,0.6666666666666667,1,26 -garlic,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -cleaning,0.7166666666666666,1.0,0.65,0.75,1,26 -pair,0.925,1.0,0.8999999999999998,0.9400000000000001,2,27 -container,0.6883333333333332,1.0,0.5666666666666667,0.7,1,25 -tomato,0.6333333333333333,0.9,0.6333333333333333,0.6666666666666667,1,26 -cellphone,0.6166666666666666,1.0,0.5999999999999999,0.7,1,26 -potato,0.5249999999999999,1.0,0.4999999999999999,0.6333333333333333,1,25 -light,0.8899999999999999,1.0,0.8333333333333333,0.9,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8633333333333333,1.0,0.8333333333333333,0.9,2,25 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6356481481481482 -F1-Score: 0.6766887125220461 -Precision: 0.9096450617283951 -Recall: 0.5871913580246914 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5383333333333333,1.0,0.4499999999999999,0.6,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.6716666666666666,0.9,0.6666666666666666,0.7,1,24 -keyboard,0.7933333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -glue,0.675,1.0,0.5999999999999999,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.36333333333333334,0.5,0.4333333333333333,0.4600000000000001,1,26 -folded,0.5333333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -jam,0.7466666666666666,1.0,0.6833333333333333,0.7666666666666667,1,26 -black,0.95,0.8833333333333332,1.0,0.9266666666666665,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.625,1.0,0.5833333333333333,0.7,1,26 -soccer,0.5216666666666667,1.0,0.5833333333333333,0.7,1,26 -hat,0.4883333333333333,1.0,0.45,0.6,1,26 -brown,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -coffee,0.505,1.0,0.4166666666666667,0.5833333333333333,1,25 -handle,0.5966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -food,0.7983333333333333,1.0,0.6666666666666666,0.7666666666666667,1,24 -towel,0.765,1.0,0.5833333333333333,0.7166666666666667,1,26 -chips,0.8,1.0,0.7499999999999999,0.8166666666666668,1,26 -stapler,0.8216666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -onion,0.4583333333333333,1.0,0.5166666666666666,0.65,1,26 -bag,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -sponge,0.6966666666666665,1.0,0.6166666666666666,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.725,1.0,0.6666666666666666,0.7666666666666667,1,25 -special,0.6966666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.6333333333333333,1.0,0.6499999999999999,0.75,1,26 -leaf,0.615,1.0,0.5999999999999999,0.7166666666666666,1,26 -tube,0.7549999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -cell,0.5216666666666667,0.55,0.6666666666666666,0.5566666666666666,1,26 -mug,0.6849999999999999,1.0,0.6499999999999999,0.75,1,25 -yogurt,0.655,1.0,0.5,0.65,1,26 -plantain,0.7166666666666667,1.0,0.7166666666666666,0.8,1,26 -red,0.9666666666666668,0.9,1.0,0.9333333333333332,3,26 -pepper,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -wheat,0.5466666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -kleenex,0.6583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -toothbrush,0.8216666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -binder,0.6566666666666666,1.0,0.6,0.7166666666666667,1,26 -baseball,0.5599999999999999,1.0,0.5833333333333333,0.7,1,26 -pliers,0.8683333333333334,1.0,0.75,0.8333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -thins,0.6583333333333333,1.0,0.6499999999999999,0.75,1,26 -package,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -k,0.4050000000000001,1.0,0.45,0.6,1,26 -jelly,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -fruit,0.8766666666666666,0.95,0.8666666666666666,0.8866666666666667,2,26 -apple,0.7,1.0,0.4833333333333333,0.65,1,25 -bell,0.4916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -battery,0.7183333333333334,1.0,0.6499999999999999,0.75,1,26 -jar,0.6966666666666665,1.0,0.5833333333333333,0.7,1,26 -bound,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -brush,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -scissors,0.5133333333333333,1.0,0.55,0.6666666666666666,1,26 -lime,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -toothpaste,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -top,0.6666666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.7833333333333333,1.0,0.6333333333333333,0.75,1,26 -handles,0.63,1.0,0.5999999999999999,0.7166666666666666,1,25 -camera,0.6666666666666667,1.0,0.6,0.7166666666666667,1,26 -eraser,0.6916666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6,1.0,0.5499999999999999,0.6833333333333333,1,26 -pitcher,0.7083333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -phone,0.7716666666666666,1.0,0.6333333333333333,0.75,1,26 -stick,0.6916666666666667,1.0,0.7,0.7833333333333333,1,25 -cereal,0.705,1.0,0.6499999999999999,0.75,1,26 -bulb,0.8933333333333332,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.75,1.0,0.75,0.8166666666666668,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.74,1.0,0.5833333333333333,0.7,1,26 -can,0.9266666666666665,1.0,0.8999999999999998,0.9400000000000001,2,24 -coca,0.5166666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -crackers,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -plate,0.6583333333333333,1.0,0.6333333333333332,0.7333333333333333,1,25 -calculator,0.4583333333333333,0.7,0.4833333333333333,0.5233333333333333,1,26 -tissues,0.45499999999999996,1.0,0.41666666666666663,0.5833333333333334,1,26 -juice,0.6466666666666667,1.0,0.55,0.6833333333333333,1,26 -pink,0.6216666666666666,1.0,0.5166666666666666,0.65,1,25 -lemon,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -peach,0.5433333333333333,1.0,0.5166666666666666,0.65,1,26 -bowl,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333334,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8016666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -blue,0.635,1.0,0.5499999999999999,0.6833333333333333,1,25 -used,0.75,1.0,0.7,0.7833333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -ball,0.575,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.6133333333333334,1.0,0.6,0.7166666666666667,1,26 -garlic,0.78,1.0,0.6833333333333333,0.7666666666666667,1,26 -cleaning,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -pair,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,26 -container,0.5833333333333334,1.0,0.5333333333333333,0.6666666666666667,1,25 -tomato,0.5933333333333334,0.95,0.5666666666666667,0.65,1,26 -cellphone,0.545,0.55,0.7499999999999999,0.58,1,26 -potato,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -light,0.915,1.0,0.8666666666666666,0.9199999999999999,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6424228395061731 -F1-Score: 0.6862654320987654 -Precision: 0.9063271604938271 -Recall: 0.6013888888888888 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.735,1.0,0.6166666666666666,0.7333333333333334,1,25 -yellow,0.95,0.85,1.0,0.9,6,24 -looks,0.7583333333333334,0.9,0.7166666666666666,0.7333333333333334,1,24 -keyboard,0.6216666666666667,1.0,0.6499999999999999,0.75,1,26 -glue,0.6749999999999999,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.45833333333333337,1.0,0.4333333333333334,0.5833333333333333,1,26 -flashlight,0.45,1.0,0.4833333333333333,0.6166666666666667,1,26 -cup,0.4833333333333333,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.655,1.0,0.6166666666666666,0.7333333333333333,1,26 -jam,0.575,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.8766666666666666,0.7416666666666666,1.0,0.8323809523809522,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.69,1.0,0.5666666666666667,0.7,1,26 -soccer,0.705,1.0,0.6499999999999999,0.75,1,26 -hat,0.825,1.0,0.7333333333333333,0.8166666666666668,1,26 -brown,0.9266666666666665,1.0,0.9,0.9400000000000001,2,24 -coffee,0.635,1.0,0.4999999999999999,0.65,1,26 -handle,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -food,0.5,1.0,0.4499999999999999,0.6,1,25 -towel,0.725,1.0,0.7,0.7833333333333333,1,26 -chips,0.41666666666666663,1.0,0.4833333333333332,0.6166666666666666,1,26 -stapler,0.7433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -bag,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -sponge,0.6083333333333333,1.0,0.5,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.7,1.0,0.6333333333333332,0.7333333333333333,1,25 -special,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -leaf,0.725,1.0,0.5999999999999999,0.7166666666666667,1,26 -tube,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -cell,0.325,0.55,0.4833333333333333,0.48666666666666664,1,26 -mug,0.8099999999999999,1.0,0.7333333333333333,0.8166666666666668,1,26 -yogurt,0.7216666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -plantain,0.86,1.0,0.7833333333333333,0.85,1,26 -red,0.9633333333333333,0.9166666666666666,1.0,0.9466666666666667,3,24 -pepper,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -wheat,0.58,1.0,0.5166666666666666,0.65,1,26 -kleenex,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -toothbrush,0.655,1.0,0.5666666666666667,0.7,1,26 -binder,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -baseball,0.825,1.0,0.7333333333333333,0.8166666666666667,1,26 -pliers,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -thins,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -package,0.755,1.0,0.7,0.7833333333333333,1,26 -k,0.8016666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -jelly,0.8,1.0,0.8,0.85,1,26 -fruit,0.8033333333333333,0.7833333333333333,0.8666666666666666,0.7866666666666666,2,26 -apple,0.6966666666666665,0.7,0.7166666666666666,0.6333333333333333,1,25 -bell,0.63,1.0,0.55,0.6833333333333333,1,26 -battery,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -jar,0.6383333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -bound,0.6166666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -lettuce,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -brush,0.6216666666666666,1.0,0.55,0.6833333333333333,1,26 -scissors,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.5916666666666666,1.0,0.6333333333333332,0.7333333333333333,1,25 -toothpaste,0.5133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -top,0.7633333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -spiral,0.6383333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -handles,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -camera,0.655,1.0,0.5833333333333333,0.7,1,26 -eraser,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5683333333333332,1.0,0.5166666666666666,0.65,1,26 -pitcher,0.6333333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -phone,0.86,1.0,0.7,0.8,1,26 -stick,0.5383333333333333,1.0,0.5166666666666666,0.65,1,25 -cereal,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -bulb,1.0,1.0,1.0,1.0,2,26 -hair,0.6249999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5216666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,1.0,1.0,1.0,1.0,2,26 -coca,0.7499999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -crackers,0.65,1.0,0.65,0.75,1,26 -plate,0.5966666666666667,1.0,0.6333333333333332,0.7333333333333333,1,25 -calculator,0.61,0.9,0.5833333333333333,0.6333333333333333,1,26 -tissues,0.8016666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -juice,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -pink,0.7933333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -lemon,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -peach,0.5833333333333333,1.0,0.4333333333333334,0.6,1,26 -bowl,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -blue,0.6399999999999999,1.0,0.4833333333333332,0.6333333333333333,1,25 -used,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -ball,0.6633333333333333,1.0,0.6,0.7166666666666667,1,25 -notebook,0.675,1.0,0.7,0.7833333333333333,1,26 -garlic,0.725,1.0,0.6166666666666666,0.7333333333333333,1,26 -cleaning,0.5183333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -pair,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -container,0.595,1.0,0.4833333333333333,0.6333333333333334,1,26 -tomato,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cellphone,0.4716666666666667,0.5,0.6,0.52,1,26 -potato,0.7483333333333333,1.0,0.6333333333333333,0.75,1,25 -light,0.93,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.93,1.0,0.8999999999999998,0.9400000000000001,2,26 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6504320987654323 -F1-Score: 0.6905776014109347 -Precision: 0.9013117283950618 -Recall: 0.6125 diff --git a/Validation/UW_raw_75_object_0.6000000000000001.csv b/Validation/UW_raw_75_object_0.6000000000000001.csv deleted file mode 100644 index eb6ced6..0000000 --- a/Validation/UW_raw_75_object_0.6000000000000001.csv +++ /dev/null @@ -1,2875 +0,0 @@ -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6633333333333333,1.0,0.5,0.65,1,24 -yellow,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666665,6,24 -looks,0.6016666666666667,0.95,0.5833333333333333,0.6666666666666667,1,24 -keyboard,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -glue,0.7716666666666667,1.0,0.7,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.8066666666666666,1.0,0.6333333333333333,0.75,1,26 -cup,0.385,0.5,0.5333333333333333,0.49333333333333335,1,26 -folded,0.65,1.0,0.6833333333333332,0.7666666666666666,1,26 -jam,0.5049999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -black,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7383333333333333,1.0,0.65,0.75,1,26 -soccer,0.655,1.0,0.5833333333333333,0.7,1,26 -hat,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -brown,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,24 -coffee,0.675,1.0,0.7499999999999999,0.8166666666666667,1,25 -handle,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -food,0.5633333333333332,1.0,0.4833333333333333,0.6333333333333333,1,26 -towel,0.8966666666666667,1.0,0.8,0.8666666666666666,1,26 -chips,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -stapler,0.9099999999999999,1.0,0.8333333333333333,0.8833333333333332,1,26 -onion,0.73,1.0,0.7,0.7833333333333333,1,26 -bag,0.615,1.0,0.4833333333333333,0.6333333333333334,1,26 -sponge,0.6583333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6933333333333334,1.0,0.6333333333333332,0.7333333333333333,1,25 -special,0.8583333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -colgate,0.58,1.0,0.4999999999999999,0.65,1,26 -leaf,0.675,1.0,0.65,0.75,1,26 -tube,0.58,1.0,0.5499999999999999,0.6666666666666666,1,26 -cell,0.8516666666666666,1.0,0.7,0.8,1,26 -mug,0.8133333333333332,1.0,0.7166666666666666,0.8,1,25 -yogurt,0.7433333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -plantain,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -red,0.8633333333333333,0.6833333333333333,1.0,0.7933333333333333,3,24 -pepper,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -wheat,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -kleenex,0.5916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -toothbrush,0.5,1.0,0.5166666666666666,0.65,1,26 -binder,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -baseball,0.5266666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -pliers,0.7183333333333334,1.0,0.5666666666666667,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.71,1.0,0.5999999999999999,0.7166666666666667,1,26 -thins,0.7133333333333334,1.0,0.6499999999999999,0.75,1,26 -package,0.805,1.0,0.6833333333333333,0.7833333333333334,1,26 -k,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -fruit,0.7049999999999998,0.5666666666666667,0.9333333333333332,0.6866666666666668,2,25 -apple,0.4083333333333333,0.95,0.4999999999999999,0.6,1,25 -bell,0.7633333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -battery,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -jar,0.8,1.0,0.6833333333333333,0.7833333333333333,1,26 -bound,0.6866666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -lettuce,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -brush,0.86,1.0,0.7666666666666666,0.8333333333333333,1,26 -scissors,0.6649999999999999,1.0,0.5166666666666666,0.6666666666666667,1,26 -lime,0.7016666666666667,1.0,0.5166666666666666,0.6666666666666666,1,25 -toothpaste,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -top,0.8749999999999998,1.0,0.8333333333333333,0.8833333333333332,1,26 -spiral,0.6216666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -handles,0.6966666666666667,1.0,0.6833333333333333,0.7666666666666666,1,25 -camera,0.8016666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -eraser,0.5583333333333333,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7333333333333333,1.0,0.6499999999999999,0.75,1,26 -pitcher,0.675,1.0,0.55,0.6833333333333333,1,26 -phone,0.5933333333333334,1.0,0.5166666666666666,0.65,1,26 -stick,0.4416666666666666,1.0,0.4499999999999999,0.6,1,25 -cereal,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -bulb,0.8716666666666667,1.0,0.8333333333333333,0.9,2,26 -hair,0.6716666666666666,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6666666666666666,1.0,0.65,0.75,1,26 -can,0.95,1.0,0.9333333333333332,0.96,2,24 -coca,0.655,1.0,0.5166666666666666,0.65,1,26 -crackers,0.5766666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -plate,0.6666666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -calculator,0.595,0.8,0.6,0.6,1,26 -tissues,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -juice,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -pink,0.8266666666666665,1.0,0.7833333333333333,0.85,1,25 -lemon,0.8016666666666665,1.0,0.7166666666666666,0.8,1,26 -peach,0.505,1.0,0.5666666666666667,0.6833333333333333,1,26 -bowl,0.6466666666666666,1.0,0.65,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -blue,0.6799999999999999,1.0,0.5666666666666667,0.7,1,25 -used,0.8049999999999999,1.0,0.7166666666666666,0.8,1,24 -energizer,0,0,0,0,1,26 -pear,0.7933333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -ball,0.6583333333333333,1.0,0.6499999999999999,0.75,1,25 -notebook,0.74,1.0,0.6333333333333333,0.75,1,26 -garlic,0.5833333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -cleaning,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -pair,0.8633333333333333,1.0,0.8333333333333333,0.9,2,26 -container,0.7499999999999999,1.0,0.7333333333333332,0.8,1,25 -tomato,0.47333333333333333,0.8,0.5833333333333333,0.5833333333333333,1,26 -cellphone,0.5766666666666667,1.0,0.4833333333333332,0.6333333333333333,1,26 -potato,0.5766666666666665,1.0,0.5166666666666666,0.65,1,25 -light,0.8516666666666666,1.0,0.8,0.8800000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.8433333333333334,1.0,0.8,0.8800000000000001,2,26 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.66195987654321 -F1-Score: 0.6955555555555555 -Precision: 0.9078703703703704 -Recall: 0.6152777777777777 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.745,1.0,0.5333333333333333,0.6833333333333333,1,25 -yellow,0.9266666666666667,0.8166666666666667,1.0,0.8800000000000001,6,24 -looks,0.4766666666666667,0.95,0.4166666666666667,0.55,1,24 -keyboard,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -glue,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7916666666666667,1.0,0.7333333333333333,0.8166666666666668,1,26 -flashlight,0.75,1.0,0.7333333333333333,0.8,1,26 -cup,0.28166666666666673,0.5,0.5166666666666666,0.4833333333333334,1,26 -folded,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -jam,0.575,1.0,0.6166666666666666,0.7166666666666667,1,26 -black,0.8783333333333333,0.7,1.0,0.8,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -soccer,0.805,1.0,0.7333333333333333,0.8166666666666667,1,26 -hat,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.9,1.0,0.9,0.9400000000000001,2,24 -coffee,0.9,1.0,0.85,0.9,1,26 -handle,0.6166666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -food,0.73,1.0,0.7166666666666666,0.8,1,24 -towel,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -chips,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.5633333333333332,1.0,0.55,0.6666666666666667,1,26 -onion,0.6466666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -bag,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -sponge,0.7683333333333333,1.0,0.6499999999999999,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.6166666666666667,1.0,0.5833333333333333,0.7,1,25 -special,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -colgate,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -leaf,0.7833333333333333,1.0,0.7,0.7833333333333333,1,26 -tube,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -cell,0.5366666666666666,0.5,0.7166666666666666,0.5633333333333334,1,26 -mug,0.76,1.0,0.5999999999999999,0.7166666666666666,1,26 -yogurt,0.8516666666666668,1.0,0.7333333333333333,0.8166666666666667,1,26 -plantain,0.595,0.85,0.5333333333333333,0.6,1,26 -red,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,3,26 -pepper,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -wheat,0.75,1.0,0.65,0.75,1,26 -kleenex,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -toothbrush,0.745,1.0,0.5666666666666667,0.7,1,26 -binder,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -baseball,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -pliers,0.8550000000000001,1.0,0.75,0.8333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -thins,0.6816666666666666,1.0,0.4999999999999999,0.65,1,26 -package,0.7583333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -k,0.575,1.0,0.5499999999999999,0.6666666666666666,1,26 -jelly,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -fruit,0.6516666666666666,0.5333333333333333,0.8999999999999998,0.6433333333333333,2,26 -apple,0.735,0.85,0.6833333333333333,0.6833333333333333,1,25 -bell,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -battery,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -jar,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -bound,0.53,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -brush,0.5083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -scissors,0.5716666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.6900000000000001,1.0,0.5999999999999999,0.7166666666666666,1,25 -toothpaste,0.6799999999999999,1.0,0.7499999999999999,0.8166666666666667,1,26 -top,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.525,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.6333333333333334,1.0,0.6166666666666666,0.7333333333333334,1,25 -camera,0.605,1.0,0.5833333333333333,0.7,1,26 -eraser,0.5516666666666666,1.0,0.4833333333333332,0.6333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6816666666666666,0.85,0.7,0.7,1,26 -pitcher,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -phone,0.7166666666666666,1.0,0.7333333333333333,0.8,1,26 -stick,0.6466666666666666,1.0,0.6,0.7166666666666667,1,25 -cereal,0.7416666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -bulb,0.8683333333333334,1.0,0.8333333333333333,0.9,2,27 -hair,0.6266666666666667,1.0,0.5999999999999999,0.7166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6683333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -can,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,24 -coca,0.4333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -crackers,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -plate,0.675,1.0,0.6333333333333333,0.7333333333333333,1,25 -calculator,0.7,1.0,0.65,0.75,1,26 -tissues,0.7049999999999998,1.0,0.6499999999999999,0.75,1,26 -juice,0.8166666666666667,1.0,0.7166666666666666,0.8,1,26 -pink,0.6483333333333333,1.0,0.55,0.6833333333333333,1,25 -lemon,0.7,1.0,0.6499999999999999,0.75,1,26 -peach,0.605,1.0,0.5166666666666666,0.65,1,26 -bowl,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6666666666666666,1.0,0.6,0.7166666666666667,1,26 -blue,0.7216666666666667,1.0,0.5999999999999999,0.7166666666666667,1,25 -used,0.4333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -ball,0.5766666666666667,1.0,0.4333333333333333,0.6,1,25 -notebook,0.7716666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -garlic,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -cleaning,0.6583333333333333,1.0,0.6499999999999999,0.75,1,26 -pair,0.9266666666666665,1.0,0.9,0.9400000000000001,2,26 -container,0.73,1.0,0.7,0.7833333333333333,1,25 -tomato,0.7366666666666666,0.8,0.6666666666666666,0.6666666666666667,1,26 -cellphone,0.5283333333333333,0.6,0.7499999999999999,0.5900000000000001,1,26 -potato,0.5999999999999999,1.0,0.5999999999999999,0.7166666666666666,1,25 -light,0.8583333333333332,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6587345679012345 -F1-Score: 0.6950925925925927 -Precision: 0.8969135802469135 -Recall: 0.623148148148148 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6716666666666666,1.0,0.5833333333333333,0.7,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.505,0.95,0.5166666666666666,0.6166666666666666,1,24 -keyboard,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -glue,0.5166666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6766666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -flashlight,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -cup,0.6383333333333333,0.5,0.7333333333333333,0.5733333333333333,1,26 -folded,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -jam,0.7433333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -black,1.0,1.0,1.0,1.0,6,22 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.47166666666666657,1.0,0.4999999999999999,0.6333333333333333,1,26 -soccer,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -hat,0.675,1.0,0.55,0.6833333333333333,1,26 -brown,0.8816666666666666,1.0,0.8333333333333334,0.9000000000000001,2,27 -coffee,0.5666666666666667,1.0,0.41666666666666663,0.5833333333333333,1,25 -handle,0.765,1.0,0.6666666666666666,0.7666666666666666,1,25 -food,0.55,1.0,0.5666666666666667,0.6833333333333333,1,24 -towel,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -chips,0.4583333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -stapler,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -onion,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -bag,0.755,1.0,0.6833333333333333,0.7833333333333333,1,26 -sponge,0.485,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -special,0.6166666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -colgate,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -leaf,0.6816666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -tube,0.5,1.0,0.4499999999999999,0.6,1,26 -cell,0.7333333333333334,1.0,0.7,0.7833333333333333,1,26 -mug,0.73,1.0,0.6,0.7166666666666666,1,25 -yogurt,0.6716666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -plantain,0.6,0.9,0.5999999999999999,0.6333333333333333,1,26 -red,0.8483333333333333,0.7083333333333333,1.0,0.819047619047619,3,27 -pepper,0.55,1.0,0.5166666666666666,0.65,1,26 -wheat,0.7799999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -kleenex,0.5083333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -toothbrush,0.7849999999999999,1.0,0.6333333333333333,0.75,1,26 -binder,0.6716666666666666,1.0,0.5,0.65,1,26 -baseball,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -pliers,0.7333333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -thins,0.5433333333333332,1.0,0.4666666666666666,0.6166666666666667,1,26 -package,0.63,1.0,0.6499999999999999,0.75,1,26 -k,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.5933333333333334,1.0,0.4833333333333333,0.6333333333333334,1,26 -fruit,0.6983333333333335,0.5166666666666666,0.9666666666666666,0.64,2,26 -apple,0.6133333333333333,0.85,0.5999999999999999,0.6166666666666667,1,25 -bell,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -battery,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -jar,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -bound,0.675,1.0,0.6833333333333333,0.7666666666666666,1,26 -lettuce,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -brush,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -scissors,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -lime,0.5333333333333333,1.0,0.4833333333333333,0.6333333333333334,1,25 -toothpaste,0.63,1.0,0.6833333333333333,0.7666666666666667,1,26 -top,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -spiral,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -handles,0.8399999999999999,1.0,0.7833333333333333,0.85,1,25 -camera,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -eraser,0.53,1.0,0.4,0.5666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5549999999999999,0.95,0.5166666666666666,0.6166666666666667,1,26 -pitcher,0.75,1.0,0.7333333333333333,0.8,1,26 -phone,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -stick,0.7583333333333333,1.0,0.7166666666666666,0.8,1,25 -cereal,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -bulb,0.835,1.0,0.8,0.8800000000000001,2,27 -hair,0.875,1.0,0.8833333333333332,0.9166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8149999999999998,1.0,0.6333333333333333,0.75,1,26 -can,0.9016666666666667,1.0,0.8666666666666668,0.9200000000000002,2,26 -coca,0.6633333333333333,1.0,0.5666666666666667,0.7,1,26 -crackers,0.735,1.0,0.7166666666666666,0.8,1,26 -plate,0.63,1.0,0.6333333333333333,0.7333333333333333,1,25 -calculator,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -tissues,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -juice,0.635,1.0,0.55,0.6833333333333333,1,26 -pink,0.4883333333333333,1.0,0.45,0.6,1,25 -lemon,0.6433333333333333,1.0,0.55,0.6833333333333333,1,26 -peach,0.5983333333333334,1.0,0.4666666666666666,0.6166666666666666,1,26 -bowl,0.6049999999999999,1.0,0.5166666666666666,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7100000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -blue,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -used,0.5516666666666666,1.0,0.5166666666666666,0.65,1,23 -energizer,0,0,0,0,1,26 -pear,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -ball,0.635,1.0,0.4999999999999999,0.65,1,25 -notebook,0.8916666666666666,1.0,0.8,0.8666666666666666,1,26 -garlic,0.6333333333333333,1.0,0.6666666666666666,0.75,1,26 -cleaning,0.4083333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -pair,0.8933333333333333,1.0,0.8666666666666666,0.9200000000000002,2,27 -container,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -tomato,0.5583333333333333,0.75,0.6166666666666666,0.6,1,26 -cellphone,0.7233333333333334,1.0,0.6499999999999999,0.75,1,26 -potato,0.73,1.0,0.75,0.8166666666666667,1,25 -light,1.0,1.0,1.0,1.0,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6480401234567901 -F1-Score: 0.6876146384479718 -Precision: 0.9085648148148148 -Recall: 0.6064814814814815 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,24 -yellow,0.9000000000000001,0.7666666666666667,1.0,0.8533333333333333,6,25 -looks,0.4999999999999999,0.7,0.5333333333333333,0.5399999999999999,1,24 -keyboard,0.8066666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -glue,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.7066666666666667,1.0,0.5833333333333333,0.7,1,26 -cup,0.36833333333333335,0.5,0.6166666666666666,0.5166666666666667,1,26 -folded,0.7100000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -jam,0.5716666666666665,1.0,0.5166666666666666,0.65,1,26 -black,1.0,1.0,1.0,1.0,6,23 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -soccer,0.8066666666666666,1.0,0.6333333333333333,0.75,1,26 -hat,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -brown,0.9466666666666667,1.0,0.9333333333333332,0.96,2,24 -coffee,0.7383333333333333,1.0,0.5666666666666667,0.7,1,25 -handle,0.5966666666666667,1.0,0.5,0.65,1,26 -food,0.6883333333333332,1.0,0.65,0.75,1,25 -towel,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.7299999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -stapler,0.47333333333333333,1.0,0.45,0.6,1,26 -onion,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -bag,0.7133333333333333,1.0,0.65,0.75,1,26 -sponge,0.7666666666666666,1.0,0.7499999999999999,0.8166666666666668,1,26 -zero,0,0,0,0,1,26 -computer,0.805,1.0,0.65,0.7666666666666667,1,26 -special,0.6499999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -colgate,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -leaf,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -cell,0.5966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -mug,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,25 -yogurt,0.7933333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -plantain,0.66,0.95,0.5999999999999999,0.6833333333333333,1,26 -red,0.8099999999999999,0.65,1.0,0.7733333333333333,3,24 -pepper,0.58,1.0,0.4999999999999999,0.6333333333333333,1,26 -wheat,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -toothbrush,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -binder,0.735,1.0,0.5999999999999999,0.7166666666666666,1,26 -baseball,0.575,1.0,0.5833333333333333,0.7,1,26 -pliers,0.7899999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.605,1.0,0.5166666666666666,0.65,1,26 -thins,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -package,0.5433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -k,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -jelly,0.735,1.0,0.6,0.7166666666666666,1,26 -fruit,0.6383333333333333,0.5666666666666667,0.8666666666666666,0.6566666666666666,2,25 -apple,0.6833333333333333,1.0,0.6,0.7166666666666667,1,26 -bell,0.6016666666666667,1.0,0.4833333333333332,0.6333333333333333,1,26 -battery,0.7216666666666667,1.0,0.6,0.7166666666666667,1,26 -jar,0.6183333333333334,1.0,0.5833333333333333,0.7,1,26 -bound,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -lettuce,0.8,1.0,0.75,0.8166666666666667,1,26 -brush,0.2833333333333333,1.0,0.4666666666666666,0.6,1,26 -scissors,0.6916666666666667,1.0,0.65,0.75,1,26 -lime,0.6383333333333333,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.6416666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -top,0.6933333333333334,1.0,0.6333333333333332,0.7333333333333333,1,26 -spiral,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.6183333333333333,1.0,0.5833333333333333,0.7,1,25 -camera,0.7666666666666666,1.0,0.7999999999999999,0.85,1,26 -eraser,0.6966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.575,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -phone,0.575,1.0,0.5833333333333333,0.7,1,26 -stick,0.55,1.0,0.5999999999999999,0.7,1,25 -cereal,0.6733333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -bulb,0.8216666666666667,1.0,0.8,0.8800000000000001,2,27 -hair,0.5083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6966666666666665,1.0,0.6833333333333333,0.7666666666666666,1,26 -can,1.0,1.0,1.0,1.0,2,26 -coca,0.7733333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -crackers,0.4833333333333333,1.0,0.5,0.6333333333333333,1,26 -plate,0.6883333333333334,1.0,0.7,0.7833333333333333,1,24 -calculator,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -tissues,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -juice,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -pink,0.7266666666666667,1.0,0.5833333333333333,0.7166666666666667,1,25 -lemon,0.5766666666666665,1.0,0.5166666666666666,0.65,1,26 -peach,0.7916666666666666,1.0,0.7,0.7833333333333333,1,26 -bowl,0.675,1.0,0.7,0.7833333333333334,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7466666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -blue,0.4666666666666666,1.0,0.6,0.7,1,25 -used,0.7133333333333333,1.0,0.65,0.75,1,23 -energizer,0,0,0,0,1,26 -pear,0.59,1.0,0.5333333333333333,0.6666666666666667,1,26 -ball,0.5083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.7,1.0,0.7166666666666666,0.8,1,26 -garlic,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -cleaning,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -pair,0.89,1.0,0.8333333333333334,0.9000000000000001,2,27 -container,0.7216666666666667,1.0,0.65,0.75,1,25 -tomato,0.445,0.55,0.55,0.5133333333333334,1,26 -cellphone,0.5466666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -potato,0.775,1.0,0.6666666666666666,0.7666666666666667,1,25 -light,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,26 -green,0.9433333333333334,0.8666666666666666,1.0,0.9133333333333333,3,22 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6440432098765432 -F1-Score: 0.6883333333333332 -Precision: 0.9032407407407407 -Recall: 0.6092592592592591 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5633333333333332,1.0,0.5833333333333333,0.7,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.5666666666666667,1.0,0.5166666666666666,0.65,1,24 -keyboard,0.5650000000000001,1.0,0.4833333333333333,0.6333333333333333,1,26 -glue,0.6183333333333334,1.0,0.55,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.705,1.0,0.7,0.7833333333333333,1,26 -flashlight,0.735,1.0,0.65,0.75,1,26 -cup,0.44000000000000006,0.55,0.5499999999999999,0.5133333333333333,1,26 -folded,0.6666666666666666,1.0,0.6666666666666666,0.75,1,26 -jam,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -black,0.9666666666666668,0.9,1.0,0.9333333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7333333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -soccer,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -hat,0.6416666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.925,1.0,0.9,0.9400000000000001,2,24 -coffee,0.565,1.0,0.4333333333333333,0.6,1,26 -handle,0.55,1.0,0.6166666666666666,0.7166666666666667,1,25 -food,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,25 -towel,0.7066666666666668,1.0,0.65,0.75,1,26 -chips,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.6966666666666665,1.0,0.65,0.75,1,26 -onion,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.6216666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -sponge,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6799999999999999,1.0,0.6166666666666666,0.7166666666666666,1,25 -special,0.5916666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.6683333333333333,1.0,0.5833333333333333,0.7,1,26 -leaf,0.5549999999999999,1.0,0.5833333333333333,0.7,1,26 -tube,0.7466666666666667,1.0,0.6333333333333332,0.7333333333333333,1,26 -cell,0.5233333333333333,0.65,0.5999999999999999,0.55,1,26 -mug,0.73,1.0,0.6333333333333333,0.7333333333333333,1,26 -yogurt,0.6100000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -plantain,0.6966666666666665,1.0,0.6166666666666666,0.7333333333333333,1,26 -red,0.9833333333333334,0.95,1.0,0.9666666666666666,3,26 -pepper,0.45999999999999996,1.0,0.41666666666666663,0.5833333333333333,1,26 -wheat,0.48,1.0,0.5499999999999999,0.6666666666666666,1,26 -kleenex,0.5333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -toothbrush,0.605,1.0,0.5333333333333333,0.6666666666666666,1,26 -binder,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -baseball,0.5966666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -pliers,0.43,1.0,0.4499999999999999,0.6,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5383333333333333,1.0,0.5,0.6333333333333334,1,26 -thins,0.6383333333333333,1.0,0.4833333333333332,0.6333333333333333,1,26 -package,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -k,0.595,1.0,0.4833333333333333,0.6333333333333334,1,26 -jelly,0.7583333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -fruit,0.8466666666666665,0.9,0.8666666666666666,0.8533333333333335,2,25 -apple,0.465,1.0,0.4,0.5666666666666667,1,25 -bell,0.7,1.0,0.7,0.7833333333333333,1,26 -battery,0.5516666666666666,1.0,0.5166666666666666,0.65,1,26 -jar,0.8400000000000001,1.0,0.6833333333333333,0.7833333333333333,1,26 -bound,0.4916666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -lettuce,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -brush,0.5083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.6050000000000001,1.0,0.5833333333333333,0.7,1,26 -lime,0.6766666666666666,1.0,0.6499999999999999,0.75,1,25 -toothpaste,0.53,1.0,0.4666666666666666,0.6166666666666666,1,26 -top,0.8083333333333332,1.0,0.75,0.8166666666666667,1,26 -spiral,0.805,1.0,0.7166666666666666,0.8,1,26 -handles,0.5933333333333333,1.0,0.5333333333333333,0.6666666666666666,1,25 -camera,0.7383333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -eraser,0.7666666666666666,1.0,0.7333333333333333,0.8,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.71,1.0,0.6333333333333333,0.7333333333333333,1,26 -pitcher,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.6883333333333332,1.0,0.65,0.75,1,26 -stick,0.625,1.0,0.5833333333333333,0.7,1,25 -cereal,0.8583333333333332,1.0,0.75,0.8333333333333333,1,26 -bulb,0.975,1.0,0.9666666666666666,0.9800000000000001,2,27 -hair,0.6916666666666667,1.0,0.7,0.7833333333333334,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6883333333333332,1.0,0.65,0.75,1,26 -can,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.5716666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -crackers,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -plate,0.73,1.0,0.75,0.8166666666666667,1,25 -calculator,0.6016666666666666,0.7,0.6333333333333333,0.6,1,26 -tissues,0.5433333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -juice,0.5,0.5,0.6666666666666666,0.5466666666666666,1,26 -pink,0.7716666666666667,1.0,0.7166666666666666,0.8,1,25 -lemon,0.73,1.0,0.6333333333333333,0.75,1,26 -peach,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -bowl,0.6183333333333333,1.0,0.5166666666666666,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6216666666666666,1.0,0.5166666666666666,0.65,1,26 -blue,0.5466666666666666,1.0,0.4833333333333333,0.6333333333333333,1,25 -used,0.7683333333333333,1.0,0.65,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.5183333333333333,1.0,0.41666666666666663,0.5833333333333334,1,26 -ball,0.675,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -garlic,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -cleaning,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -pair,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -container,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -tomato,0.5133333333333334,1.0,0.4333333333333333,0.6,1,26 -cellphone,0.5783333333333334,0.6,0.5333333333333333,0.54,1,26 -potato,0.7,1.0,0.6499999999999999,0.75,1,25 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.95,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6395061728395063 -F1-Score: 0.6848148148148148 -Precision: 0.9050925925925926 -Recall: 0.6013888888888889 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8300000000000001,1.0,0.7166666666666666,0.8,1,24 -yellow,0.9166666666666667,0.8333333333333333,1.0,0.8980952380952381,6,23 -looks,0.45166666666666666,0.95,0.4499999999999999,0.5666666666666667,1,24 -keyboard,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.8683333333333334,1.0,0.75,0.8333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -flashlight,0.6083333333333333,1.0,0.5166666666666666,0.65,1,26 -cup,0.36,0.5,0.5333333333333332,0.49333333333333335,1,26 -folded,0.63,1.0,0.5833333333333333,0.7,1,26 -jam,0.6,1.0,0.6666666666666666,0.75,1,26 -black,0.9266666666666667,0.8166666666666667,1.0,0.8799999999999999,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -soccer,0.6,1.0,0.6166666666666666,0.7166666666666666,1,26 -hat,0.75,1.0,0.7499999999999999,0.8166666666666667,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.8216666666666667,1.0,0.6833333333333333,0.7833333333333333,1,25 -handle,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -food,0.8083333333333332,1.0,0.7499999999999999,0.8166666666666667,1,24 -towel,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -chips,0.7716666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.6766666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.74,1.0,0.6166666666666666,0.7333333333333333,1,26 -bag,0.485,1.0,0.4499999999999999,0.6,1,26 -sponge,0.5666666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.5133333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -special,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -colgate,0.6183333333333334,1.0,0.5833333333333333,0.7,1,26 -leaf,0.635,1.0,0.5166666666666666,0.65,1,26 -tube,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -cell,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -mug,0.6933333333333332,1.0,0.6333333333333333,0.7333333333333333,1,25 -yogurt,0.6666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -plantain,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -red,0.8316666666666667,0.6583333333333333,1.0,0.779047619047619,3,25 -pepper,0.76,1.0,0.7166666666666666,0.8,1,26 -wheat,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.7849999999999999,1.0,0.6333333333333333,0.75,1,26 -toothbrush,0.89,1.0,0.75,0.8333333333333334,1,26 -binder,0.58,1.0,0.55,0.6666666666666666,1,26 -baseball,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -pliers,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8,1.0,0.7166666666666666,0.8,1,26 -thins,0.6933333333333334,1.0,0.65,0.75,1,26 -package,0.7866666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.7133333333333333,1.0,0.65,0.75,1,26 -jelly,0.605,1.0,0.5833333333333333,0.7,1,26 -fruit,0.7649999999999999,0.65,0.9666666666666666,0.7733333333333334,2,25 -apple,0.4666666666666667,0.8,0.4999999999999999,0.5333333333333333,1,25 -bell,0.575,1.0,0.5333333333333333,0.6666666666666667,1,26 -battery,0.6916666666666667,1.0,0.65,0.75,1,26 -jar,0.5966666666666667,1.0,0.4833333333333334,0.6333333333333333,1,26 -bound,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.8083333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -scissors,0.805,1.0,0.7166666666666666,0.8,1,26 -lime,0.7433333333333333,1.0,0.6499999999999999,0.75,1,25 -toothpaste,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.4133333333333333,1.0,0.41666666666666663,0.5666666666666667,1,26 -spiral,0.6633333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.7,1.0,0.6166666666666666,0.7333333333333333,1,25 -camera,0.7433333333333333,1.0,0.65,0.75,1,26 -eraser,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6966666666666665,1.0,0.6833333333333333,0.7666666666666666,1,26 -pitcher,0.7716666666666667,1.0,0.65,0.75,1,26 -phone,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -stick,0.825,1.0,0.7333333333333333,0.8166666666666667,1,25 -cereal,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -bulb,0.9016666666666666,1.0,0.8666666666666668,0.9200000000000002,2,26 -hair,0.6833333333333333,1.0,0.6166666666666666,0.7333333333333334,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7999999999999999,1.0,0.7499999999999999,0.8166666666666667,1,26 -can,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -coca,0.7266666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -crackers,0.8233333333333335,1.0,0.65,0.7666666666666667,1,26 -plate,0.5549999999999999,1.0,0.41666666666666663,0.5833333333333334,1,25 -calculator,0.5199999999999999,0.55,0.6166666666666666,0.54,1,26 -tissues,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -juice,0.6966666666666667,1.0,0.7,0.7833333333333333,1,26 -pink,0.55,1.0,0.5166666666666666,0.65,1,25 -lemon,0.6599999999999999,1.0,0.65,0.75,1,26 -peach,0.6766666666666666,1.0,0.65,0.75,1,26 -bowl,0.6483333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5583333333333333,1.0,0.5833333333333333,0.7,1,26 -blue,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333334,1,25 -used,0.76,1.0,0.6499999999999999,0.75,1,23 -energizer,0,0,0,0,1,26 -pear,0.7683333333333333,1.0,0.65,0.75,1,26 -ball,0.7633333333333333,1.0,0.7166666666666666,0.8,1,25 -notebook,0.8150000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -garlic,0.44666666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -cleaning,0.6849999999999999,1.0,0.65,0.75,1,26 -pair,0.8300000000000001,1.0,0.8,0.8800000000000001,2,27 -container,0.8666666666666668,1.0,0.7833333333333333,0.85,1,25 -tomato,0.48999999999999994,0.75,0.55,0.5666666666666667,1,26 -cellphone,0.4133333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -potato,0.63,1.0,0.5666666666666667,0.6833333333333333,1,25 -light,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.663935185185185 -F1-Score: 0.6986155202821869 -Precision: 0.9028549382716049 -Recall: 0.6233024691358025 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7583333333333333,1.0,0.7166666666666666,0.8,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.5566666666666668,0.9,0.4666666666666666,0.5666666666666667,1,24 -keyboard,0.6966666666666667,1.0,0.65,0.75,1,26 -glue,0.6933333333333334,1.0,0.6,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.5599999999999999,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -cup,0.5066666666666667,0.5,0.6166666666666666,0.53,1,26 -folded,0.41666666666666663,1.0,0.5333333333333333,0.65,1,26 -jam,0.73,1.0,0.6833333333333333,0.7666666666666666,1,26 -black,0.795,0.6416666666666667,1.0,0.7723809523809524,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6833333333333333,1.0,0.6,0.7166666666666667,1,26 -soccer,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -hat,0.755,1.0,0.6833333333333333,0.7833333333333333,1,26 -brown,0.8266666666666665,1.0,0.8,0.8800000000000001,2,25 -coffee,0.8,1.0,0.8166666666666667,0.8666666666666668,1,25 -handle,0.605,1.0,0.5833333333333333,0.7,1,26 -food,0.8966666666666667,1.0,0.8,0.8666666666666668,1,25 -towel,0.63,1.0,0.5833333333333333,0.7,1,26 -chips,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -stapler,0.7816666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -onion,0.7016666666666667,1.0,0.5833333333333333,0.7,1,26 -bag,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -sponge,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.575,1.0,0.5833333333333333,0.7,1,25 -special,0.6416666666666666,1.0,0.65,0.75,1,26 -colgate,0.7466666666666667,1.0,0.6499999999999999,0.75,1,26 -leaf,0.635,1.0,0.65,0.75,1,26 -tube,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -cell,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -mug,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -yogurt,0.8333333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -plantain,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -red,0.9266666666666667,0.85,1.0,0.9047619047619048,3,25 -pepper,0.6133333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -wheat,0.7133333333333333,1.0,0.7166666666666666,0.8,1,26 -kleenex,0.85,1.0,0.7833333333333333,0.85,1,26 -toothbrush,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -baseball,0.7333333333333333,1.0,0.6666666666666666,0.75,1,26 -pliers,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6466666666666667,1.0,0.6499999999999999,0.75,1,26 -thins,0.6133333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -package,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.55,1.0,0.6166666666666666,0.7166666666666667,1,26 -jelly,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -fruit,0.7533333333333333,0.65,0.9333333333333332,0.7466666666666667,2,25 -apple,0.7416666666666667,0.7,0.7333333333333333,0.6333333333333334,1,25 -bell,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -battery,0.4883333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -jar,0.765,1.0,0.6666666666666666,0.7666666666666666,1,26 -bound,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -lettuce,0.6766666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -brush,0.6083333333333333,1.0,0.55,0.6833333333333333,1,26 -scissors,0.8066666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -lime,0.5966666666666667,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.71,1.0,0.6666666666666666,0.7666666666666667,1,26 -top,0.6649999999999999,1.0,0.4666666666666666,0.6333333333333333,1,26 -spiral,0.6666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -handles,0.575,1.0,0.5166666666666666,0.65,1,25 -camera,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -eraser,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -pitcher,0.5566666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -phone,0.4383333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -stick,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,25 -cereal,0.6166666666666666,1.0,0.5166666666666666,0.65,1,26 -bulb,0.9016666666666666,1.0,0.8666666666666668,0.9200000000000002,2,27 -hair,0.665,1.0,0.5333333333333333,0.6666666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6700000000000002,1.0,0.5,0.65,1,26 -can,0.9166666666666666,1.0,0.9,0.9400000000000001,2,24 -coca,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -crackers,0.8166666666666668,1.0,0.6833333333333333,0.7833333333333334,1,26 -plate,0.8233333333333335,1.0,0.6833333333333333,0.7833333333333333,1,25 -calculator,0.2916666666666667,0.65,0.5166666666666666,0.5133333333333334,1,26 -tissues,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -juice,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -pink,0.7150000000000001,1.0,0.6166666666666666,0.7333333333333333,1,25 -lemon,0.675,1.0,0.7,0.7833333333333333,1,26 -peach,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bowl,0.6516666666666666,1.0,0.6,0.7166666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -blue,0.6366666666666667,1.0,0.4999999999999999,0.65,1,25 -used,0.5333333333333333,1.0,0.5333333333333333,0.6666666666666666,1,23 -energizer,0,0,0,0,1,26 -pear,0.6216666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -ball,0.8300000000000001,1.0,0.7833333333333333,0.85,1,25 -notebook,0.805,1.0,0.7166666666666666,0.8,1,26 -garlic,0.78,1.0,0.6499999999999999,0.75,1,26 -cleaning,0.7133333333333334,1.0,0.6499999999999999,0.75,1,26 -pair,0.9016666666666666,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.705,1.0,0.65,0.75,1,25 -tomato,0.6033333333333333,0.7,0.6499999999999999,0.5900000000000001,1,26 -cellphone,0.625,1.0,0.5833333333333333,0.7,1,26 -potato,0.5766666666666665,1.0,0.5666666666666667,0.6833333333333333,1,25 -light,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,27 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6550617283950617 -F1-Score: 0.6944179894179895 -Precision: 0.9027006172839507 -Recall: 0.6174382716049384 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.755,1.0,0.7666666666666666,0.8333333333333333,1,25 -yellow,0.86,0.675,1.0,0.7923809523809525,6,23 -looks,0.5266666666666666,0.6,0.65,0.5566666666666666,1,24 -keyboard,0.5766666666666665,1.0,0.5166666666666666,0.65,1,26 -glue,0.7633333333333333,1.0,0.75,0.8166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6599999999999999,1.0,0.6,0.7166666666666666,1,26 -flashlight,0.7983333333333333,1.0,0.6333333333333333,0.75,1,26 -cup,0.835,1.0,0.7,0.8,1,26 -folded,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -jam,0.755,1.0,0.6333333333333333,0.75,1,26 -black,0.8583333333333334,0.7083333333333333,1.0,0.8123809523809523,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -soccer,0.7333333333333333,1.0,0.7166666666666666,0.8,1,26 -hat,0.39666666666666667,1.0,0.4833333333333332,0.6166666666666666,1,26 -brown,0.9466666666666667,1.0,0.9333333333333332,0.96,2,24 -coffee,0.5599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -handle,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666667,1,25 -food,0.525,1.0,0.5166666666666666,0.65,1,24 -towel,0.7849999999999999,1.0,0.6,0.7333333333333334,1,26 -chips,0.3416666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -stapler,0.7500000000000001,1.0,0.7499999999999999,0.8166666666666667,1,26 -onion,0.705,1.0,0.6666666666666666,0.7666666666666667,1,26 -bag,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.8099999999999999,1.0,0.7333333333333333,0.8166666666666668,1,26 -zero,0,0,0,0,1,26 -computer,0.725,1.0,0.6333333333333333,0.7333333333333333,1,25 -special,0.7133333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -colgate,0.5633333333333332,1.0,0.6166666666666666,0.7166666666666666,1,26 -leaf,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -tube,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -cell,0.7716666666666667,1.0,0.6333333333333333,0.75,1,26 -mug,0.7166666666666666,1.0,0.7166666666666666,0.8,1,26 -yogurt,0.8666666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -plantain,0.73,0.9,0.75,0.75,1,26 -red,0.82,0.6333333333333333,1.0,0.7695238095238095,3,24 -pepper,0.6933333333333334,1.0,0.5833333333333333,0.7,1,26 -wheat,0.5433333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -kleenex,0.6649999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -toothbrush,0.46833333333333327,1.0,0.4666666666666666,0.6166666666666667,1,26 -binder,0.7666666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -baseball,0.7466666666666666,1.0,0.65,0.75,1,26 -pliers,0.68,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.6666666666666666,1.0,0.5166666666666666,0.65,1,26 -package,0.775,1.0,0.7499999999999999,0.8166666666666667,1,26 -k,0.7183333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -jelly,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -fruit,0.6916666666666667,0.5833333333333333,0.9,0.6900000000000001,2,25 -apple,0.61,0.65,0.7166666666666666,0.6,1,25 -bell,0.5183333333333333,1.0,0.41666666666666663,0.5833333333333334,1,26 -battery,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -jar,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -bound,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.5466666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -brush,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -scissors,0.715,1.0,0.5999999999999999,0.7166666666666666,1,26 -lime,0.5133333333333333,1.0,0.4499999999999999,0.6,1,25 -toothpaste,0.41666666666666663,1.0,0.4,0.55,1,26 -top,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -spiral,0.505,1.0,0.4833333333333333,0.6333333333333333,1,26 -handles,0.8483333333333334,1.0,0.7,0.8,1,25 -camera,0.8,1.0,0.6666666666666666,0.7666666666666667,1,26 -eraser,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7,0.9,0.7666666666666666,0.7666666666666666,1,26 -pitcher,0.5833333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -phone,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -stick,0.6916666666666667,1.0,0.6499999999999999,0.75,1,25 -cereal,0.7,1.0,0.6833333333333332,0.7666666666666666,1,26 -bulb,0.905,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.7333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7383333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -can,0.9550000000000001,1.0,0.9333333333333332,0.96,2,24 -coca,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -plate,0.4666666666666666,1.0,0.4999999999999999,0.6333333333333333,1,25 -calculator,0.59,0.8,0.6166666666666666,0.6166666666666667,1,26 -tissues,0.7,1.0,0.7,0.7833333333333333,1,26 -juice,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -pink,0.7666666666666666,1.0,0.7166666666666666,0.8,1,25 -lemon,0.5333333333333333,1.0,0.5333333333333333,0.65,1,26 -peach,0.6466666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5683333333333332,1.0,0.4833333333333333,0.6333333333333333,1,26 -blue,0.5833333333333333,1.0,0.5166666666666666,0.65,1,25 -used,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -ball,0.605,1.0,0.5833333333333333,0.7,1,25 -notebook,0.63,1.0,0.5833333333333333,0.7,1,26 -garlic,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.7133333333333334,1.0,0.7166666666666666,0.8,1,26 -pair,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,26 -container,0.6333333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -tomato,0.5866666666666667,0.6,0.5833333333333333,0.5566666666666666,1,26 -cellphone,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -potato,0.605,1.0,0.5999999999999999,0.7166666666666666,1,25 -light,0.9349999999999999,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.65320987654321 -F1-Score: 0.6946075837742504 -Precision: 0.8986111111111111 -Recall: 0.6226851851851853 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6033333333333333,1.0,0.4999999999999999,0.65,1,24 -yellow,0.8933333333333335,0.7166666666666666,1.0,0.8133333333333332,6,24 -looks,0.6466666666666666,0.7,0.65,0.6,1,24 -keyboard,0.37499999999999994,1.0,0.4333333333333333,0.5833333333333333,1,26 -glue,0.6516666666666666,1.0,0.6,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -flashlight,0.6633333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,-0.019999999999999997,0.5,0.4833333333333333,0.4633333333333334,1,26 -folded,0.73,1.0,0.6333333333333333,0.7333333333333333,1,26 -jam,0.6266666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -black,0.9666666666666668,0.9333333333333332,1.0,0.96,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.8216666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -soccer,0.6966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -hat,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.9166666666666666,1.0,0.9,0.9400000000000001,2,24 -coffee,0.58,1.0,0.55,0.6833333333333333,1,25 -handle,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -food,0.4916666666666666,1.0,0.5166666666666666,0.65,1,25 -towel,0.5333333333333333,1.0,0.4833333333333333,0.6166666666666666,1,26 -chips,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -stapler,0.5016666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -onion,0.6633333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.6416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -sponge,0.7066666666666667,1.0,0.5666666666666667,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -special,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -colgate,0.6799999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -leaf,0.7816666666666666,1.0,0.6333333333333333,0.75,1,26 -tube,0.775,1.0,0.7666666666666666,0.8333333333333333,1,26 -cell,0.4683333333333334,1.0,0.4499999999999999,0.6,1,26 -mug,0.5966666666666666,1.0,0.6166666666666666,0.7166666666666667,1,25 -yogurt,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -plantain,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -red,0.96,0.9,1.0,0.9333333333333332,3,26 -pepper,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -wheat,0.7266666666666667,1.0,0.65,0.75,1,26 -kleenex,0.6483333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -toothbrush,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -binder,0.6866666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -baseball,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -pliers,0.6833333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.525,1.0,0.4999999999999999,0.6333333333333333,1,26 -thins,0.6983333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -package,0.4916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -k,0.8400000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -jelly,0.6,1.0,0.45,0.6166666666666667,1,26 -fruit,0.6833333333333333,0.6666666666666666,0.8333333333333333,0.6866666666666668,2,25 -apple,0.4916666666666667,0.95,0.5,0.6,1,25 -bell,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -battery,0.6166666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -jar,0.625,1.0,0.5999999999999999,0.7166666666666667,1,26 -bound,0.6849999999999999,1.0,0.65,0.75,1,26 -lettuce,0.76,1.0,0.6666666666666666,0.7666666666666667,1,26 -brush,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666666,1,26 -scissors,0.75,1.0,0.75,0.8166666666666667,1,26 -lime,0.655,1.0,0.5,0.65,1,25 -toothpaste,0.6799999999999999,1.0,0.65,0.75,1,26 -top,0.6566666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -spiral,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -handles,0.7383333333333333,1.0,0.7,0.7833333333333333,1,25 -camera,0.7416666666666667,1.0,0.5666666666666667,0.7,1,26 -eraser,0.45,1.0,0.5333333333333333,0.65,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -phone,0.8800000000000001,1.0,0.7833333333333333,0.85,1,26 -stick,0.8233333333333335,1.0,0.7166666666666666,0.8,1,25 -cereal,0.6716666666666666,1.0,0.65,0.75,1,26 -bulb,0.9099999999999999,1.0,0.8666666666666668,0.9200000000000002,2,27 -hair,0.8966666666666667,1.0,0.8,0.8666666666666668,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6683333333333332,1.0,0.6,0.7166666666666667,1,26 -can,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.5166666666666666,1.0,0.5166666666666666,0.65,1,26 -crackers,0.7633333333333333,1.0,0.6499999999999999,0.75,1,26 -plate,0.73,1.0,0.7166666666666666,0.8,1,25 -calculator,0.6883333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -tissues,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -juice,0.6466666666666667,1.0,0.5166666666666666,0.65,1,26 -pink,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -lemon,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -peach,0.51,1.0,0.4999999999999999,0.6333333333333333,1,26 -bowl,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7466666666666666,1.0,0.6833333333333333,0.7666666666666667,1,26 -blue,0.5583333333333333,0.95,0.5833333333333333,0.6666666666666667,1,25 -used,0.7499999999999999,1.0,0.7499999999999999,0.8166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.735,1.0,0.6,0.7166666666666666,1,26 -ball,0.5916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,25 -notebook,0.7666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -garlic,0.5966666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -cleaning,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -pair,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -container,0.7216666666666667,1.0,0.5833333333333333,0.7,1,25 -tomato,0.45666666666666667,0.65,0.6166666666666666,0.5466666666666666,1,26 -cellphone,0.61,1.0,0.5333333333333333,0.6666666666666666,1,26 -potato,0.7966666666666666,1.0,0.65,0.7666666666666667,1,25 -light,0.8933333333333332,1.0,0.8666666666666666,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8,1.0,0.7666666666666667,0.86,2,26 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6416666666666666 -F1-Score: 0.688425925925926 -Precision: 0.9070987654320988 -Recall: 0.6069444444444444 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,24 -yellow,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666665,6,24 -looks,0.68,0.8,0.7166666666666666,0.6666666666666667,1,24 -keyboard,0.63,1.0,0.5833333333333333,0.7,1,26 -glue,0.5466666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.5683333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -flashlight,0.6833333333333333,1.0,0.7333333333333333,0.8,1,26 -cup,0.1683333333333333,0.5,0.4333333333333333,0.4600000000000001,1,26 -folded,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -jam,0.8483333333333334,1.0,0.7,0.8,1,26 -black,0.9266666666666667,0.8333333333333333,1.0,0.8933333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6416666666666666,1.0,0.5666666666666667,0.7,1,26 -soccer,0.6733333333333333,1.0,0.55,0.6833333333333333,1,26 -hat,0.6499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.925,1.0,0.8999999999999998,0.9400000000000001,2,25 -coffee,0.6566666666666666,1.0,0.5333333333333333,0.6666666666666666,1,25 -handle,0.63,1.0,0.5499999999999999,0.6666666666666666,1,26 -food,0.7333333333333333,1.0,0.65,0.75,1,26 -towel,0.61,1.0,0.4666666666666666,0.6166666666666666,1,26 -chips,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -stapler,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -onion,0.73,1.0,0.6166666666666666,0.7333333333333333,1,26 -bag,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -sponge,0.6466666666666667,1.0,0.65,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -special,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -colgate,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -leaf,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -tube,0.7433333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -cell,0.8883333333333333,1.0,0.8,0.8666666666666666,1,26 -mug,0.6666666666666666,1.0,0.6166666666666666,0.7166666666666666,1,25 -yogurt,0.7266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.7333333333333334,0.95,0.7,0.75,1,26 -red,0.8866666666666667,0.75,1.0,0.8399999999999999,3,26 -pepper,0.655,1.0,0.4666666666666666,0.6333333333333334,1,26 -wheat,0.7666666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.6983333333333334,1.0,0.55,0.6833333333333333,1,26 -binder,0.5216666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -baseball,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.7216666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.4683333333333334,1.0,0.5166666666666666,0.65,1,26 -thins,0.6583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -package,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -k,0.7466666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -jelly,0.75,1.0,0.75,0.8166666666666668,1,26 -fruit,0.6950000000000001,0.5999999999999999,0.9,0.6866666666666668,2,26 -apple,0.7,0.7,0.7666666666666666,0.65,1,25 -bell,0.7333333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -battery,0.4966666666666667,1.0,0.4499999999999999,0.6,1,26 -jar,0.7383333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -lettuce,0.73,1.0,0.65,0.75,1,26 -brush,0.7333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.7633333333333333,1.0,0.65,0.75,1,26 -lime,0.755,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.6216666666666667,1.0,0.5666666666666667,0.7,1,26 -top,0.6333333333333333,1.0,0.6,0.7166666666666667,1,26 -spiral,0.6916666666666667,1.0,0.65,0.75,1,26 -handles,0.6966666666666667,1.0,0.5666666666666667,0.7,1,25 -camera,0.5666666666666667,1.0,0.4999999999999999,0.65,1,26 -eraser,0.58,1.0,0.4666666666666666,0.6166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6933333333333332,1.0,0.6499999999999999,0.75,1,26 -pitcher,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -phone,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -stick,0.4966666666666667,1.0,0.4999999999999999,0.6333333333333333,1,25 -cereal,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -bulb,0.8633333333333333,1.0,0.8333333333333333,0.9,2,26 -hair,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5333333333333334,1.0,0.5,0.6333333333333334,1,26 -can,1.0,1.0,1.0,1.0,2,24 -coca,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -crackers,0.6966666666666667,1.0,0.7,0.7833333333333333,1,26 -plate,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -calculator,0.41833333333333333,0.55,0.5999999999999999,0.53,1,26 -tissues,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -juice,0.705,1.0,0.6,0.7166666666666667,1,26 -pink,0.7649999999999999,1.0,0.6166666666666666,0.7333333333333334,1,25 -lemon,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -peach,0.775,1.0,0.7333333333333333,0.8166666666666667,1,26 -bowl,0.7016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -blue,0.6849999999999999,1.0,0.5166666666666666,0.6666666666666667,1,25 -used,0.705,1.0,0.6499999999999999,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.7916666666666666,1.0,0.7166666666666666,0.8,1,26 -ball,0.69,1.0,0.5999999999999999,0.7166666666666666,1,25 -notebook,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -garlic,0.73,1.0,0.6333333333333333,0.75,1,26 -cleaning,0.7133333333333333,1.0,0.5833333333333333,0.7,1,26 -pair,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.55,1.0,0.4666666666666666,0.6166666666666666,1,25 -tomato,0.5116666666666667,0.7,0.5999999999999999,0.5733333333333334,1,26 -cellphone,0.7983333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -potato,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,25 -light,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8733333333333334,1.0,0.8333333333333333,0.9,2,25 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6583950617283949 -F1-Score: 0.6919753086419753 -Precision: 0.9006172839506172 -Recall: 0.614969135802469 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7083333333333333,1.0,0.7166666666666666,0.8,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,24 -keyboard,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -glue,0.9133333333333333,1.0,0.85,0.9,1,26 -milk,0,0,0,0,1,26 -cola,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -flashlight,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.4966666666666667,0.6,0.7,0.5733333333333334,1,26 -folded,0.73,1.0,0.5999999999999999,0.7166666666666666,1,26 -jam,0.7649999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -black,0.8850000000000001,0.7583333333333333,1.0,0.8457142857142858,6,20 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.8566666666666667,1.0,0.7,0.8,1,26 -soccer,0.625,1.0,0.6833333333333333,0.7666666666666666,1,26 -hat,0.725,1.0,0.65,0.75,1,26 -brown,0.93,1.0,0.9,0.9400000000000001,2,25 -coffee,0.77,1.0,0.5833333333333333,0.7166666666666667,1,26 -handle,0.7183333333333333,1.0,0.65,0.75,1,26 -food,0.6716666666666666,1.0,0.5666666666666667,0.7,1,25 -towel,0.8216666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -chips,0.6766666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -stapler,0.5666666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -onion,0.63,1.0,0.5833333333333333,0.7,1,26 -bag,0.835,1.0,0.7,0.8,1,26 -sponge,0.6599999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -special,0.5166666666666666,1.0,0.5,0.6333333333333333,1,26 -colgate,0.9099999999999999,1.0,0.8333333333333333,0.8833333333333332,1,26 -leaf,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -tube,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -cell,0.705,1.0,0.55,0.6833333333333333,1,26 -mug,0.5383333333333333,1.0,0.45,0.6,1,26 -yogurt,0.8766666666666666,1.0,0.75,0.8333333333333333,1,26 -plantain,0.65,1.0,0.6166666666666666,0.7166666666666666,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.6433333333333333,1.0,0.55,0.6833333333333333,1,26 -wheat,0.7,1.0,0.6833333333333333,0.7666666666666667,1,26 -kleenex,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -toothbrush,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -binder,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -baseball,0.7366666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -pliers,0.5666666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.675,1.0,0.5333333333333333,0.6666666666666666,1,26 -thins,0.6166666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -package,0.9349999999999999,1.0,0.85,0.9,1,26 -k,0.575,1.0,0.5499999999999999,0.6666666666666666,1,26 -jelly,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -fruit,0.8083333333333333,0.7,0.9333333333333332,0.7666666666666667,2,26 -apple,0.835,0.95,0.7333333333333333,0.7833333333333334,1,25 -bell,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -battery,0.6766666666666666,1.0,0.65,0.75,1,26 -jar,0.56,1.0,0.5833333333333333,0.7,1,26 -bound,0.4983333333333334,1.0,0.4666666666666666,0.6166666666666666,1,26 -lettuce,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -brush,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.575,1.0,0.6166666666666666,0.7166666666666666,1,25 -toothpaste,0.5966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -top,0.5549999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.5499999999999999,1.0,0.5,0.6333333333333333,1,26 -handles,0.4133333333333333,1.0,0.4,0.5666666666666667,1,25 -camera,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -eraser,0.8,1.0,0.8666666666666666,0.9,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7466666666666667,1.0,0.75,0.8166666666666667,1,26 -pitcher,0.7216666666666667,1.0,0.7,0.7833333333333333,1,26 -phone,0.7133333333333334,1.0,0.65,0.75,1,26 -stick,0.63,1.0,0.6833333333333332,0.7666666666666666,1,25 -cereal,0.6933333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -bulb,0.915,1.0,0.8666666666666666,0.9199999999999999,2,26 -hair,0.6066666666666667,1.0,0.4999999999999999,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6499999999999999,1.0,0.5833333333333333,0.7,1,26 -can,0.9099999999999999,1.0,0.8666666666666666,0.9199999999999999,2,24 -coca,0.7183333333333333,1.0,0.6,0.7166666666666667,1,26 -crackers,0.9216666666666666,1.0,0.85,0.9,1,26 -plate,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666668,1,25 -calculator,0.6399999999999999,0.95,0.5999999999999999,0.6833333333333333,1,26 -tissues,0.7916666666666666,1.0,0.75,0.8166666666666667,1,26 -juice,0.5716666666666665,0.5,0.6666666666666666,0.5466666666666666,1,26 -pink,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333334,1,25 -lemon,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -peach,0.5766666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -bowl,0.41666666666666663,1.0,0.4999999999999999,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5133333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -blue,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666666,1,25 -used,0.6833333333333333,1.0,0.5333333333333333,0.6833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.55,1.0,0.5499999999999999,0.6666666666666666,1,25 -notebook,0.7,1.0,0.65,0.75,1,26 -garlic,0.5983333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -cleaning,0.8,1.0,0.7166666666666666,0.8,1,26 -pair,0.9349999999999999,1.0,0.9,0.9400000000000001,2,26 -container,0.5183333333333333,1.0,0.45,0.6,1,25 -tomato,0.525,1.0,0.5666666666666667,0.6833333333333333,1,26 -cellphone,0.58,1.0,0.5166666666666666,0.65,1,26 -potato,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -light,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.96,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6649537037037037 -F1-Score: 0.7006084656084656 -Precision: 0.9111882716049382 -Recall: 0.6206790123456789 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6416666666666667,1.0,0.6166666666666666,0.7333333333333333,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,25 -looks,0.545,0.8,0.5833333333333333,0.6,1,24 -keyboard,0.8,1.0,0.75,0.8166666666666667,1,26 -glue,0.7016666666666665,1.0,0.6,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.73,1.0,0.7,0.7833333333333333,1,26 -flashlight,0.6883333333333332,1.0,0.65,0.75,1,26 -cup,0.4766666666666667,0.5,0.6833333333333333,0.5433333333333333,1,26 -folded,0.6133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -jam,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -black,0.8983333333333334,0.825,1.0,0.8923809523809524,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6133333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -soccer,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -hat,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -brown,0.9016666666666667,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,25 -handle,0.675,1.0,0.7499999999999999,0.8166666666666667,1,26 -food,0.6933333333333332,1.0,0.5833333333333333,0.7,1,26 -towel,0.6249999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -chips,0.8266666666666668,1.0,0.7333333333333333,0.8166666666666667,1,26 -stapler,0.5883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -onion,0.67,1.0,0.5333333333333332,0.6666666666666666,1,26 -bag,0.5850000000000001,1.0,0.4999999999999999,0.65,1,26 -sponge,0.7516666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7183333333333333,1.0,0.6499999999999999,0.75,1,25 -special,0.44333333333333336,1.0,0.4333333333333334,0.5833333333333333,1,26 -colgate,0.7583333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -leaf,0.4966666666666667,1.0,0.4,0.5666666666666667,1,26 -tube,0.65,1.0,0.5833333333333333,0.7,1,26 -cell,0.7833333333333333,1.0,0.7333333333333333,0.8,1,26 -mug,0.6183333333333334,1.0,0.5833333333333333,0.7,1,25 -yogurt,0.7433333333333333,1.0,0.6,0.7166666666666667,1,26 -plantain,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -red,0.8683333333333334,0.7,1.0,0.8066666666666666,3,25 -pepper,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -wheat,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -kleenex,0.76,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -binder,0.5133333333333333,1.0,0.4166666666666667,0.5666666666666667,1,26 -baseball,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -pliers,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -thins,0.75,1.0,0.8,0.85,1,26 -package,0.8133333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -k,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.5383333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -fruit,0.76,0.6833333333333333,0.9,0.7466666666666668,2,26 -apple,0.6333333333333333,0.9,0.7,0.7166666666666666,1,25 -bell,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -battery,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -jar,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -bound,0.7433333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -lettuce,0.75,1.0,0.65,0.75,1,26 -brush,0.65,1.0,0.6833333333333333,0.7666666666666666,1,26 -scissors,0.6083333333333333,1.0,0.6499999999999999,0.75,1,26 -lime,0.8300000000000001,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.75,1.0,0.6333333333333332,0.7333333333333333,1,26 -top,0.7683333333333333,1.0,0.6333333333333333,0.75,1,26 -spiral,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -handles,0.7216666666666667,1.0,0.5666666666666667,0.7,1,25 -camera,0.725,1.0,0.6166666666666666,0.7333333333333334,1,26 -eraser,0.6399999999999999,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5599999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -pitcher,0.7083333333333333,1.0,0.6,0.7166666666666667,1,26 -phone,0.6433333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -stick,0.575,1.0,0.6333333333333333,0.7333333333333333,1,25 -cereal,0.625,1.0,0.6833333333333333,0.7666666666666666,1,26 -bulb,0.9,1.0,0.9,0.9400000000000001,2,26 -hair,0.7716666666666667,1.0,0.65,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -can,0.9266666666666665,1.0,0.9,0.9400000000000001,2,26 -coca,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -crackers,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -plate,0.8766666666666667,1.0,0.75,0.8333333333333334,1,25 -calculator,0.44333333333333336,0.95,0.4499999999999999,0.5833333333333333,1,26 -tissues,0.5966666666666667,1.0,0.6333333333333332,0.7333333333333333,1,26 -juice,0.7183333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -pink,0.6216666666666667,1.0,0.5833333333333333,0.7,1,25 -lemon,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -peach,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -bowl,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -blue,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666666,1,25 -used,0.5683333333333332,1.0,0.5166666666666666,0.65,1,23 -energizer,0,0,0,0,1,26 -pear,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666668,1,26 -ball,0.6933333333333332,1.0,0.5833333333333333,0.7,1,25 -notebook,0.5599999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -garlic,0.6166666666666666,1.0,0.6,0.7166666666666666,1,26 -cleaning,0.775,1.0,0.75,0.8166666666666667,1,26 -pair,0.8633333333333333,1.0,0.8333333333333333,0.9,2,26 -container,0.7583333333333333,1.0,0.7,0.7833333333333333,1,25 -tomato,0.47666666666666674,0.8,0.5166666666666666,0.5566666666666668,1,26 -cellphone,0.755,1.0,0.7166666666666666,0.8,1,26 -potato,0.6266666666666667,1.0,0.5999999999999999,0.7166666666666666,1,25 -light,0.8800000000000001,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,26 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6626234567901235 -F1-Score: 0.6991269841269842 -Precision: 0.9084104938271605 -Recall: 0.620679012345679 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5516666666666666,1.0,0.4666666666666666,0.6166666666666667,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.655,0.75,0.6,0.5833333333333334,1,24 -keyboard,0.725,1.0,0.6333333333333333,0.75,1,26 -glue,0.6833333333333333,1.0,0.7333333333333333,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.6083333333333332,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -cup,0.37833333333333335,0.5,0.4666666666666666,0.48,1,26 -folded,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333334,1,26 -jam,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -black,0.8516666666666666,0.7083333333333333,1.0,0.8123809523809523,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -soccer,0.6683333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -hat,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -brown,0.9349999999999999,1.0,0.9,0.9400000000000001,2,24 -coffee,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -handle,0.6683333333333332,1.0,0.6499999999999999,0.75,1,26 -food,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -towel,0.8099999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -chips,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -stapler,0.705,1.0,0.65,0.75,1,26 -onion,0.5549999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -bag,0.655,1.0,0.6,0.7166666666666667,1,26 -sponge,0.6066666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.73,1.0,0.6333333333333332,0.7333333333333333,1,25 -special,0.5966666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -colgate,0.9099999999999999,1.0,0.8333333333333333,0.8833333333333332,1,26 -leaf,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -tube,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -cell,0.635,1.0,0.5833333333333333,0.7,1,26 -mug,0.705,1.0,0.5833333333333333,0.7,1,26 -yogurt,0.5466666666666666,1.0,0.4333333333333333,0.5833333333333333,1,26 -plantain,0.655,1.0,0.5666666666666667,0.6833333333333333,1,26 -red,0.8566666666666667,0.6666666666666667,1.0,0.7866666666666666,3,25 -pepper,0.7216666666666666,1.0,0.65,0.75,1,26 -wheat,0.805,1.0,0.7333333333333333,0.8166666666666667,1,26 -kleenex,0.6216666666666667,1.0,0.55,0.6833333333333333,1,26 -toothbrush,0.6916666666666667,1.0,0.5833333333333333,0.7,1,26 -binder,0.55,1.0,0.4833333333333333,0.6333333333333334,1,26 -baseball,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.5633333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.5583333333333333,1.0,0.5,0.6333333333333333,1,26 -thins,0.7383333333333334,1.0,0.6333333333333333,0.75,1,26 -package,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -k,0.6883333333333332,1.0,0.55,0.6833333333333333,1,26 -jelly,0.5383333333333333,1.0,0.4499999999999999,0.6166666666666666,1,26 -fruit,0.6649999999999999,0.6,0.8666666666666666,0.69,2,25 -apple,0.605,1.0,0.5833333333333333,0.7,1,25 -bell,0.6766666666666665,1.0,0.5999999999999999,0.7166666666666667,1,26 -battery,0.6716666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -jar,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -bound,0.7833333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.6833333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -brush,0.7166666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -scissors,0.6,1.0,0.6833333333333333,0.7666666666666666,1,26 -lime,0.54,1.0,0.4166666666666667,0.5833333333333333,1,25 -toothpaste,0.775,1.0,0.75,0.8166666666666667,1,26 -top,0.7,1.0,0.7,0.7833333333333333,1,26 -spiral,0.6966666666666668,1.0,0.6166666666666666,0.7333333333333333,1,26 -handles,0.65,1.0,0.6,0.7166666666666667,1,25 -camera,0.7333333333333333,1.0,0.6499999999999999,0.75,1,26 -eraser,0.58,1.0,0.5499999999999999,0.6666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -pitcher,0.705,1.0,0.6499999999999999,0.75,1,26 -phone,0.6083333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -stick,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,25 -cereal,0.5466666666666666,1.0,0.5,0.65,1,26 -bulb,0.9099999999999999,1.0,0.8666666666666668,0.9200000000000002,2,27 -hair,0.5833333333333333,1.0,0.4666666666666666,0.6166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5966666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -can,0.78,1.0,0.7333333333333333,0.8400000000000001,2,26 -coca,0.64,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.59,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,25 -calculator,0.675,0.65,0.7666666666666666,0.6166666666666667,1,26 -tissues,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -juice,0.4416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -pink,0.6549999999999999,1.0,0.5833333333333333,0.7,1,25 -lemon,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -peach,0.58,1.0,0.5166666666666666,0.65,1,26 -bowl,0.8933333333333333,1.0,0.8,0.8666666666666668,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5883333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -blue,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -used,0.6799999999999999,1.0,0.7,0.7833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.8883333333333333,1.0,0.8333333333333333,0.8833333333333332,1,26 -ball,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,25 -notebook,0.8666666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -garlic,0.7649999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -cleaning,0.6916666666666667,1.0,0.6333333333333332,0.7333333333333333,1,26 -pair,0.8300000000000001,1.0,0.8,0.8800000000000001,2,27 -container,0.6716666666666666,1.0,0.55,0.6833333333333333,1,25 -tomato,0.51,0.75,0.5333333333333333,0.5633333333333334,1,26 -cellphone,0.5716666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -potato,0.73,1.0,0.6833333333333333,0.7666666666666666,1,25 -light,0.9266666666666665,1.0,0.8999999999999998,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.95,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6509567901234568 -F1-Score: 0.6851455026455027 -Precision: 0.9034722222222222 -Recall: 0.6035493827160494 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6966666666666665,1.0,0.6333333333333333,0.7333333333333333,1,24 -yellow,0.9166666666666667,0.7833333333333333,1.0,0.86,6,24 -looks,0.6583333333333333,0.85,0.6833333333333333,0.6666666666666667,1,24 -keyboard,0.5716666666666665,1.0,0.5333333333333333,0.6666666666666666,1,26 -glue,0.5133333333333333,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -flashlight,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.5233333333333332,0.5,0.6666666666666666,0.5466666666666666,1,26 -folded,0.635,1.0,0.4999999999999999,0.65,1,26 -jam,0.42333333333333334,1.0,0.4499999999999999,0.6,1,26 -black,0.9633333333333333,0.9,1.0,0.9333333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -soccer,0.5916666666666666,1.0,0.5166666666666666,0.65,1,26 -hat,0.49000000000000005,1.0,0.4666666666666666,0.6166666666666667,1,26 -brown,0.8383333333333333,1.0,0.8,0.8800000000000001,2,25 -coffee,0.755,1.0,0.7166666666666666,0.8,1,25 -handle,0.6399999999999999,1.0,0.5833333333333333,0.7,1,26 -food,0.65,1.0,0.6333333333333332,0.7333333333333333,1,25 -towel,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -chips,0.7666666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -stapler,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -onion,0.7183333333333334,0.75,0.7333333333333333,0.7,1,26 -bag,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -sponge,0.8666666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -special,0.44333333333333336,1.0,0.4499999999999999,0.6,1,26 -colgate,0.4966666666666667,1.0,0.45,0.6,1,26 -leaf,0.78,1.0,0.7166666666666666,0.8,1,26 -tube,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -cell,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -mug,0.7466666666666667,1.0,0.6499999999999999,0.75,1,25 -yogurt,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -plantain,0.45499999999999996,1.0,0.4999999999999999,0.6333333333333333,1,26 -red,0.9200000000000002,0.8,1.0,0.8666666666666668,3,25 -pepper,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -wheat,0.6933333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.725,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -binder,0.7466666666666666,1.0,0.6499999999999999,0.75,1,26 -baseball,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -pliers,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6416666666666666,1.0,0.55,0.6833333333333333,1,26 -thins,0.655,1.0,0.5833333333333333,0.7,1,26 -package,0.6,1.0,0.5333333333333333,0.6666666666666666,1,26 -k,0.7133333333333333,1.0,0.65,0.75,1,26 -jelly,0.6766666666666666,1.0,0.65,0.75,1,26 -fruit,0.8850000000000001,0.8,0.9666666666666666,0.8533333333333333,2,26 -apple,0.5783333333333333,0.85,0.5833333333333333,0.6166666666666667,1,25 -bell,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -jar,0.41666666666666663,1.0,0.4499999999999999,0.6,1,26 -bound,0.66,1.0,0.5166666666666666,0.6666666666666667,1,26 -lettuce,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -brush,0.6,1.0,0.6499999999999999,0.75,1,26 -scissors,0.6766666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -lime,0.72,1.0,0.5166666666666666,0.6666666666666667,1,25 -toothpaste,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -top,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -spiral,0.8166666666666667,1.0,0.7833333333333333,0.85,1,26 -handles,0.5766666666666667,1.0,0.4833333333333333,0.6333333333333334,1,25 -camera,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -eraser,0.5666666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7416666666666666,1.0,0.7166666666666666,0.8,1,26 -pitcher,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -stick,0.705,1.0,0.6333333333333333,0.7333333333333333,1,25 -cereal,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -bulb,0.8583333333333332,1.0,0.8333333333333334,0.9000000000000001,2,26 -hair,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5216666666666667,1.0,0.5,0.6333333333333333,1,26 -can,0.8549999999999999,1.0,0.8333333333333334,0.9000000000000001,2,25 -coca,0.5083333333333332,1.0,0.5499999999999999,0.6666666666666666,1,26 -crackers,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -plate,0.5900000000000001,1.0,0.5,0.65,1,25 -calculator,0.635,0.85,0.7,0.7,1,26 -tissues,0.735,1.0,0.6166666666666666,0.7333333333333333,1,26 -juice,0.5216666666666667,1.0,0.4333333333333333,0.6,1,26 -pink,0.5966666666666667,1.0,0.5833333333333333,0.7,1,25 -lemon,0.8,1.0,0.8166666666666667,0.8666666666666666,1,26 -peach,0.6033333333333333,0.5,0.7166666666666666,0.5633333333333334,1,26 -bowl,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -blue,0.6916666666666667,1.0,0.6499999999999999,0.75,1,25 -used,0.4683333333333334,0.75,0.5166666666666666,0.5466666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.56,1.0,0.5333333333333333,0.6666666666666667,1,26 -ball,0.7466666666666666,1.0,0.6499999999999999,0.75,1,25 -notebook,0.58,1.0,0.5166666666666666,0.65,1,26 -garlic,0.6399999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -cleaning,0.7333333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -pair,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -container,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666666,1,25 -tomato,0.6583333333333332,0.55,0.7666666666666666,0.5900000000000001,1,26 -cellphone,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -potato,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333334,1,25 -light,0.8716666666666667,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8866666666666667,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6487499999999999 -F1-Score: 0.6869135802469137 -Precision: 0.8970679012345678 -Recall: 0.6109567901234567 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6966666666666667,1.0,0.6499999999999999,0.75,1,25 -yellow,0.8416666666666668,0.65,1.0,0.7733333333333333,6,24 -looks,0.4583333333333333,1.0,0.4,0.5666666666666667,1,24 -keyboard,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -glue,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6416666666666666,1.0,0.6833333333333333,0.7666666666666667,1,26 -flashlight,0.6183333333333333,1.0,0.4999999999999999,0.65,1,26 -cup,0.33,0.5,0.4999999999999999,0.48666666666666664,1,26 -folded,0.73,1.0,0.7499999999999999,0.8166666666666667,1,26 -jam,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -black,0.8300000000000001,0.6083333333333333,1.0,0.7457142857142858,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6666666666666666,1.0,0.6,0.7166666666666666,1,26 -soccer,0.8466666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -hat,0.6966666666666665,1.0,0.6,0.7166666666666667,1,26 -brown,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -handle,0.7166666666666666,1.0,0.6499999999999999,0.75,1,25 -food,0.7649999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -towel,0.75,1.0,0.7166666666666666,0.8,1,26 -chips,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -stapler,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -onion,0.7583333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -bag,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -sponge,0.6599999999999999,1.0,0.4999999999999999,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.8,1.0,0.7166666666666666,0.8,1,25 -special,0.6166666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -colgate,0.5999999999999999,1.0,0.5833333333333333,0.7,1,26 -leaf,0.5483333333333333,1.0,0.4999999999999999,0.65,1,26 -tube,0.9333333333333332,1.0,0.9,0.9333333333333332,1,26 -cell,0.735,1.0,0.6,0.7166666666666667,1,26 -mug,0.61,1.0,0.5166666666666666,0.65,1,26 -yogurt,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.6083333333333333,0.9,0.6333333333333333,0.6666666666666666,1,26 -red,0.875,0.7916666666666666,1.0,0.8752380952380951,3,25 -pepper,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -wheat,0.6666666666666667,1.0,0.6,0.7166666666666667,1,26 -kleenex,0.5066666666666666,1.0,0.4499999999999999,0.6,1,26 -toothbrush,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -binder,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -baseball,0.7083333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -pliers,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.755,1.0,0.6499999999999999,0.75,1,26 -thins,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -package,0.6516666666666666,1.0,0.6,0.7166666666666667,1,26 -k,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -jelly,0.7133333333333333,1.0,0.6,0.7166666666666666,1,26 -fruit,0.61,0.6166666666666667,0.8333333333333333,0.6900000000000001,2,25 -apple,0.5366666666666666,0.75,0.4833333333333333,0.5333333333333333,1,25 -bell,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -battery,0.6216666666666667,1.0,0.4333333333333333,0.6,1,26 -jar,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -bound,0.775,1.0,0.7499999999999999,0.8166666666666667,1,26 -lettuce,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -scissors,0.4666666666666666,1.0,0.4833333333333334,0.6166666666666666,1,26 -lime,0.8800000000000001,1.0,0.8,0.8666666666666668,1,25 -toothpaste,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -top,0.5499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -handles,0.725,1.0,0.7166666666666666,0.8,1,25 -camera,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -eraser,0.8666666666666666,1.0,0.7833333333333333,0.85,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6133333333333333,0.95,0.6,0.6833333333333333,1,26 -pitcher,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -phone,0.85,1.0,0.7833333333333333,0.85,1,26 -stick,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,25 -cereal,0.6399999999999999,1.0,0.5666666666666667,0.7,1,26 -bulb,0.8416666666666666,1.0,0.8333333333333334,0.9000000000000001,2,26 -hair,0.6749999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7233333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -can,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,25 -coca,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -crackers,0.7216666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -plate,0.6016666666666667,1.0,0.5833333333333333,0.7,1,25 -calculator,0.6433333333333333,1.0,0.4833333333333332,0.6333333333333333,1,26 -tissues,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -juice,0.6633333333333333,1.0,0.65,0.75,1,26 -pink,0.78,1.0,0.6833333333333333,0.7833333333333333,1,25 -lemon,0.7533333333333334,1.0,0.6333333333333333,0.75,1,26 -peach,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -bowl,0.755,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -blue,0.715,1.0,0.6166666666666666,0.7333333333333333,1,25 -used,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.8066666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -ball,0.7483333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -notebook,0.5916666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.7066666666666667,1.0,0.5666666666666667,0.7,1,26 -cleaning,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -pair,0.8633333333333333,1.0,0.8333333333333333,0.9,2,26 -container,0.63,1.0,0.5999999999999999,0.7166666666666667,1,26 -tomato,0.6166666666666667,0.85,0.6,0.6166666666666667,1,26 -cellphone,0.6266666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -potato,0.7266666666666667,1.0,0.5666666666666667,0.7,1,25 -light,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,27 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.9266666666666667,1.0,0.8999999999999998,0.9400000000000001,2,26 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6608796296296297 -F1-Score: 0.6952865961199295 -Precision: 0.9038580246913581 -Recall: 0.6171296296296297 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6883333333333332,1.0,0.7,0.7833333333333333,1,25 -yellow,0.8266666666666665,0.6666666666666666,1.0,0.7847619047619048,6,23 -looks,0.48500000000000004,0.7,0.6333333333333333,0.5733333333333335,1,24 -keyboard,0.7083333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -glue,0.6799999999999999,1.0,0.6166666666666666,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6416666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -flashlight,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -cup,0.7783333333333333,1.0,0.55,0.7,1,26 -folded,0.7350000000000001,1.0,0.6666666666666666,0.7666666666666667,1,26 -jam,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.9466666666666667,0.8666666666666666,1.0,0.9133333333333333,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6566666666666666,1.0,0.6,0.7166666666666667,1,26 -soccer,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -hat,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -brown,0.96,1.0,0.9333333333333332,0.96,2,24 -coffee,0.8166666666666667,1.0,0.7166666666666666,0.8,1,26 -handle,0.65,1.0,0.6499999999999999,0.75,1,25 -food,0.705,1.0,0.6333333333333333,0.7333333333333333,1,25 -towel,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -chips,0.7,1.0,0.6833333333333332,0.7666666666666666,1,26 -stapler,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -onion,0.6433333333333333,1.0,0.5666666666666667,0.7,1,26 -bag,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -sponge,0.7466666666666667,1.0,0.7499999999999999,0.8166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7433333333333334,1.0,0.6499999999999999,0.75,1,25 -special,0.5683333333333332,1.0,0.5166666666666666,0.65,1,26 -colgate,0.8383333333333333,1.0,0.7,0.8,1,26 -leaf,0.6799999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -tube,0.6083333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -cell,0.5799999999999998,1.0,0.4333333333333333,0.6,1,26 -mug,0.6216666666666667,1.0,0.6,0.7166666666666667,1,26 -yogurt,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -plantain,0.7333333333333333,1.0,0.7166666666666666,0.8,1,26 -red,0.865,0.75,1.0,0.8447619047619048,3,24 -pepper,0.905,1.0,0.8,0.8666666666666666,1,26 -wheat,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.7183333333333333,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.8083333333333332,1.0,0.7833333333333333,0.85,1,26 -binder,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -baseball,0.6916666666666667,1.0,0.5833333333333333,0.7,1,26 -pliers,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -thins,0.3433333333333333,1.0,0.36666666666666664,0.5333333333333333,1,26 -package,0.6416666666666667,1.0,0.6499999999999999,0.75,1,26 -k,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -jelly,0.5333333333333333,1.0,0.5,0.6333333333333333,1,26 -fruit,0.6516666666666666,0.6666666666666666,0.8333333333333333,0.7033333333333334,2,26 -apple,0.5466666666666666,0.65,0.6499999999999999,0.5733333333333333,1,25 -bell,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -battery,0.6849999999999999,1.0,0.5833333333333333,0.7,1,26 -jar,0.705,1.0,0.5666666666666667,0.7,1,26 -bound,0.43499999999999994,1.0,0.4499999999999999,0.6,1,26 -lettuce,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -brush,0.6849999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -scissors,0.65,1.0,0.5666666666666667,0.7,1,26 -lime,0.8083333333333332,1.0,0.7333333333333333,0.8166666666666668,1,25 -toothpaste,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -top,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -spiral,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -handles,0.725,1.0,0.7499999999999999,0.8166666666666667,1,25 -camera,0.7133333333333333,1.0,0.5666666666666667,0.7,1,26 -eraser,0.675,1.0,0.5666666666666667,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.43,0.9,0.5499999999999999,0.6,1,26 -pitcher,0.5733333333333334,1.0,0.4499999999999999,0.6,1,26 -phone,0.6216666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -stick,0.8633333333333333,1.0,0.75,0.8333333333333333,1,25 -cereal,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -bulb,0.8766666666666667,1.0,0.8333333333333333,0.9,2,27 -hair,0.4333333333333333,1.0,0.4833333333333333,0.6166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -can,0.9400000000000001,1.0,0.9,0.9400000000000001,2,26 -coca,0.805,1.0,0.7166666666666666,0.8,1,26 -crackers,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.7016666666666667,1.0,0.6499999999999999,0.75,1,25 -calculator,0.33999999999999997,0.8,0.4666666666666666,0.5333333333333333,1,26 -tissues,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -juice,0.6466666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -pink,0.5833333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -lemon,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.6716666666666666,1.0,0.5,0.65,1,26 -bowl,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5166666666666667,1.0,0.5166666666666666,0.65,1,26 -blue,0.45166666666666666,1.0,0.4,0.5666666666666667,1,25 -used,0.7683333333333333,1.0,0.65,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.8216666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -ball,0.76,1.0,0.6166666666666666,0.7333333333333334,1,25 -notebook,0.75,1.0,0.6499999999999999,0.75,1,26 -garlic,0.605,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -pair,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,27 -container,0.6416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -tomato,0.34500000000000003,0.65,0.5166666666666666,0.5133333333333334,1,26 -cellphone,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -potato,0.5916666666666667,1.0,0.6166666666666666,0.7166666666666667,1,25 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6441512345679011 -F1-Score: 0.687310405643739 -Precision: 0.9041666666666667 -Recall: 0.6070987654320987 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.4933333333333333,1.0,0.4499999999999999,0.6,1,25 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.5183333333333333,0.95,0.4833333333333333,0.6,1,24 -keyboard,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -glue,0.5716666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.7216666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -cup,0.25,0.5,0.4999999999999999,0.47333333333333344,1,26 -folded,0.7,1.0,0.6499999999999999,0.75,1,26 -jam,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.8083333333333333,0.625,1.0,0.7590476190476191,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6516666666666666,1.0,0.6,0.7166666666666667,1,26 -soccer,0.7083333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -hat,0.8450000000000001,1.0,0.6833333333333333,0.7833333333333334,1,26 -brown,1.0,1.0,1.0,1.0,2,25 -coffee,0.73,1.0,0.6499999999999999,0.75,1,26 -handle,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -food,0.5133333333333333,1.0,0.45,0.6,1,25 -towel,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -chips,0.5666666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -stapler,0.8216666666666665,1.0,0.7833333333333333,0.85,1,26 -onion,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -bag,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -sponge,0.7150000000000001,1.0,0.5833333333333333,0.7166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.5633333333333332,1.0,0.5166666666666666,0.65,1,25 -special,0.675,1.0,0.5333333333333333,0.6666666666666666,1,26 -colgate,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -leaf,0.7849999999999999,1.0,0.6166666666666666,0.7333333333333334,1,26 -tube,0.63,1.0,0.6,0.7166666666666667,1,26 -cell,0.4333333333333333,0.55,0.5999999999999999,0.53,1,26 -mug,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -yogurt,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -plantain,0.55,1.0,0.4666666666666666,0.6166666666666666,1,26 -red,0.93,0.85,1.0,0.9066666666666666,3,24 -pepper,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -wheat,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -kleenex,0.7416666666666667,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.7499999999999999,1.0,0.7499999999999999,0.8166666666666667,1,26 -binder,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -baseball,0.525,1.0,0.5,0.6333333333333333,1,26 -pliers,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,28 -water,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.5383333333333333,1.0,0.4999999999999999,0.65,1,26 -package,0.5416666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -k,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -jelly,0.705,1.0,0.6,0.7166666666666666,1,26 -fruit,0.8383333333333333,0.6666666666666667,1.0,0.7866666666666667,2,25 -apple,0.7633333333333333,0.9,0.7166666666666666,0.7333333333333333,1,25 -bell,0.75,1.0,0.6166666666666666,0.7333333333333333,1,26 -battery,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -jar,0.8166666666666667,1.0,0.7833333333333333,0.85,1,26 -bound,0.8816666666666666,1.0,0.75,0.8333333333333334,1,26 -lettuce,0.8066666666666666,1.0,0.6333333333333333,0.75,1,26 -brush,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -scissors,0.73,1.0,0.6499999999999999,0.75,1,26 -lime,0.6466666666666666,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.6883333333333332,1.0,0.55,0.6833333333333333,1,26 -top,0.6716666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -spiral,0.625,1.0,0.6166666666666666,0.7166666666666666,1,26 -handles,0.73,1.0,0.6666666666666666,0.7666666666666667,1,25 -camera,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -eraser,0.5416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7,1.0,0.7499999999999999,0.8166666666666667,1,26 -pitcher,0.6016666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -phone,0.6183333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -stick,0.7416666666666666,1.0,0.7,0.7833333333333333,1,25 -cereal,0.5166666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -bulb,0.85,1.0,0.8333333333333333,0.9,2,26 -hair,0.755,1.0,0.7,0.7833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -can,0.8516666666666666,1.0,0.8,0.8800000000000001,2,25 -coca,0.8049999999999999,1.0,0.7166666666666666,0.8,1,26 -crackers,0.6816666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -plate,0.6799999999999999,1.0,0.5833333333333333,0.7,1,25 -calculator,0.5716666666666667,0.85,0.65,0.65,1,26 -tissues,0.6933333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -juice,0.825,1.0,0.6333333333333333,0.75,1,26 -pink,0.605,1.0,0.5499999999999999,0.6833333333333333,1,25 -lemon,0.5516666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -peach,0.41,1.0,0.4333333333333333,0.5833333333333333,1,26 -bowl,0.7,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8800000000000001,1.0,0.8833333333333332,0.9166666666666666,1,26 -blue,0.6883333333333332,1.0,0.6166666666666666,0.7333333333333333,1,25 -used,0.6583333333333333,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.6583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -ball,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -garlic,0.625,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.61,1.0,0.4999999999999999,0.65,1,26 -pair,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -container,0.655,1.0,0.5666666666666667,0.6833333333333333,1,25 -tomato,0.385,0.9,0.4333333333333334,0.5333333333333333,1,26 -cellphone,0.58,0.55,0.7166666666666666,0.5733333333333334,1,26 -potato,0.53,1.0,0.5499999999999999,0.6666666666666666,1,26 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8816666666666666,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6432407407407406 -F1-Score: 0.6829850088183422 -Precision: 0.9013117283950618 -Recall: 0.602469135802469 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6466666666666666,1.0,0.6166666666666666,0.7166666666666666,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.6133333333333334,1.0,0.4833333333333333,0.6333333333333334,1,24 -keyboard,0.71,1.0,0.5833333333333333,0.7,1,26 -glue,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.5966666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -cup,0.3466666666666667,0.5,0.5666666666666667,0.5,1,26 -folded,0.5966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -jam,0.5583333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -black,0.9133333333333334,0.7666666666666667,1.0,0.8466666666666665,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.8233333333333335,1.0,0.7166666666666666,0.8,1,26 -soccer,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -hat,0.7466666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -brown,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coffee,0.725,1.0,0.6166666666666666,0.7333333333333333,1,25 -handle,0.6016666666666667,1.0,0.5166666666666666,0.65,1,26 -food,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666667,1,24 -towel,0.45499999999999996,1.0,0.4333333333333334,0.5833333333333333,1,26 -chips,0.675,1.0,0.65,0.75,1,26 -stapler,0.7383333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -onion,0.58,1.0,0.5833333333333333,0.7,1,26 -bag,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.5599999999999999,1.0,0.45,0.6,1,26 -zero,0,0,0,0,1,26 -computer,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666667,1,25 -special,0.5416666666666666,1.0,0.4833333333333334,0.6166666666666666,1,26 -colgate,0.7016666666666668,1.0,0.5833333333333333,0.7166666666666667,1,26 -leaf,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -tube,0.48,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.35500000000000004,0.6,0.5666666666666667,0.52,1,26 -mug,0.5716666666666665,1.0,0.5166666666666666,0.65,1,25 -yogurt,0.6633333333333333,1.0,0.65,0.75,1,26 -plantain,0.6933333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.9666666666666668,0.9,1.0,0.9333333333333332,3,26 -pepper,0.8916666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -wheat,0.93,1.0,0.85,0.8999999999999998,1,26 -kleenex,0.675,1.0,0.6666666666666666,0.7666666666666667,1,26 -toothbrush,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -binder,0.975,1.0,0.95,0.9666666666666666,1,26 -baseball,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -pliers,0.4499999999999999,1.0,0.5333333333333332,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -thins,0.7383333333333333,1.0,0.6333333333333333,0.75,1,26 -package,0.6900000000000001,1.0,0.4999999999999999,0.65,1,26 -k,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -jelly,0.55,1.0,0.6666666666666666,0.75,1,26 -fruit,0.7516666666666667,0.6333333333333333,0.9,0.6866666666666666,2,25 -apple,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -bell,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -battery,0.655,1.0,0.5999999999999999,0.7166666666666667,1,26 -jar,0.7266666666666667,1.0,0.6499999999999999,0.75,1,26 -bound,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.6433333333333333,1.0,0.5666666666666667,0.7,1,26 -brush,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -scissors,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -lime,0.6716666666666666,1.0,0.6499999999999999,0.75,1,25 -toothpaste,0.655,1.0,0.5833333333333333,0.7,1,26 -top,0.5683333333333332,1.0,0.5166666666666666,0.65,1,26 -spiral,0.6,1.0,0.6333333333333333,0.7333333333333333,1,26 -handles,0.6933333333333334,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.5583333333333333,1.0,0.4333333333333333,0.6,1,26 -eraser,0.73,1.0,0.7,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6883333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -pitcher,0.7,1.0,0.65,0.75,1,26 -phone,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -stick,0.6966666666666665,1.0,0.6833333333333333,0.7666666666666666,1,25 -cereal,0.6933333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -bulb,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.525,1.0,0.4666666666666666,0.6166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6516666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -can,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.585,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.6300000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.755,1.0,0.6666666666666666,0.7666666666666667,1,25 -calculator,0.585,0.95,0.4833333333333333,0.6,1,26 -tissues,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -juice,0.7716666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -pink,0.55,1.0,0.5166666666666666,0.65,1,25 -lemon,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -peach,0.4916666666666666,1.0,0.4499999999999999,0.6,1,26 -bowl,0.705,1.0,0.5833333333333333,0.7166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6933333333333334,1.0,0.6333333333333332,0.7333333333333333,1,26 -blue,0.7,1.0,0.6333333333333333,0.7333333333333333,1,25 -used,0.6483333333333334,1.0,0.5999999999999999,0.7166666666666666,1,23 -energizer,0,0,0,0,1,26 -pear,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -ball,0.65,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.8483333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -garlic,0.4333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -cleaning,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -pair,0.9266666666666667,1.0,0.9,0.9400000000000001,2,27 -container,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -tomato,0.63,0.95,0.5999999999999999,0.6833333333333333,1,26 -cellphone,0.39333333333333337,0.5,0.5666666666666667,0.5,1,26 -potato,0.7233333333333334,1.0,0.65,0.75,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,25 -bottle,0.925,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6435648148148146 -F1-Score: 0.6882716049382716 -Precision: 0.9050925925925926 -Recall: 0.6075617283950616 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6599999999999999,1.0,0.6499999999999999,0.75,1,25 -yellow,0.95,0.8666666666666666,1.0,0.9133333333333333,6,25 -looks,0.6733333333333332,0.8,0.6499999999999999,0.6333333333333333,1,24 -keyboard,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -glue,0.705,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.55,1.0,0.6166666666666666,0.7166666666666666,1,26 -flashlight,0.6016666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -cup,0.43833333333333335,0.5,0.6,0.52,1,26 -folded,0.7916666666666666,1.0,0.7,0.7833333333333333,1,26 -jam,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -black,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666665,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -soccer,0.46333333333333326,1.0,0.45,0.6,1,26 -hat,0.53,1.0,0.4999999999999999,0.6333333333333333,1,26 -brown,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -coffee,0.5883333333333334,1.0,0.4999999999999999,0.65,1,26 -handle,0.6383333333333334,1.0,0.5499999999999999,0.6833333333333333,1,25 -food,0.8283333333333334,1.0,0.65,0.7666666666666667,1,25 -towel,0.5466666666666666,1.0,0.41666666666666663,0.5833333333333334,1,26 -chips,0.75,1.0,0.6499999999999999,0.75,1,26 -stapler,0.7083333333333333,1.0,0.5666666666666667,0.7,1,26 -onion,0.7933333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -bag,0.6249999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -sponge,0.61,1.0,0.5333333333333333,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.76,1.0,0.7166666666666666,0.8,1,25 -special,0.71,1.0,0.7,0.7833333333333334,1,26 -colgate,0.5416666666666667,1.0,0.5,0.6333333333333333,1,26 -leaf,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -tube,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333334,1,26 -mug,0.49000000000000005,1.0,0.4666666666666666,0.6166666666666667,1,26 -yogurt,0.5966666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -plantain,0.5833333333333333,1.0,0.5999999999999999,0.7,1,26 -red,0.8483333333333334,0.6666666666666666,1.0,0.7866666666666667,3,25 -pepper,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -wheat,0.63,1.0,0.5666666666666667,0.7,1,26 -kleenex,0.7416666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -toothbrush,0.6499999999999999,1.0,0.5833333333333333,0.7,1,26 -binder,0.5299999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -baseball,0.5833333333333333,1.0,0.4999999999999999,0.65,1,26 -pliers,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5633333333333332,1.0,0.4833333333333333,0.6333333333333333,1,26 -thins,0.7249999999999999,1.0,0.7,0.7833333333333333,1,26 -package,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.75,1.0,0.7666666666666666,0.8333333333333333,1,26 -jelly,0.8100000000000002,1.0,0.7166666666666666,0.8,1,26 -fruit,0.7166666666666666,0.6833333333333333,0.8333333333333334,0.7333333333333334,2,25 -apple,0.4966666666666666,0.95,0.5333333333333333,0.6166666666666666,1,25 -bell,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -battery,0.36666666666666664,1.0,0.4333333333333333,0.5833333333333333,1,26 -jar,0.6049999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -bound,0.8400000000000001,1.0,0.7166666666666666,0.8,1,26 -lettuce,0.6849999999999999,1.0,0.5666666666666667,0.7,1,26 -brush,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -scissors,0.36666666666666664,1.0,0.38333333333333336,0.55,1,26 -lime,0.835,1.0,0.7333333333333333,0.8166666666666667,1,25 -toothpaste,0.6316666666666666,1.0,0.55,0.6833333333333333,1,26 -top,0.6183333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -spiral,0.63,1.0,0.5833333333333333,0.7,1,26 -handles,0.5266666666666666,1.0,0.5166666666666666,0.65,1,25 -camera,0.8016666666666665,1.0,0.7166666666666666,0.8,1,26 -eraser,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6,1.0,0.5499999999999999,0.6666666666666666,1,26 -pitcher,0.7066666666666667,1.0,0.5833333333333333,0.7,1,26 -phone,0.6166666666666667,1.0,0.5833333333333333,0.7,1,26 -stick,0.7,1.0,0.6333333333333333,0.7333333333333334,1,25 -cereal,0.44333333333333325,1.0,0.4333333333333334,0.5833333333333333,1,26 -bulb,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,26 -hair,0.5349999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7666666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -can,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -coca,0.6799999999999999,1.0,0.55,0.6833333333333333,1,26 -crackers,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -plate,0.655,1.0,0.6499999999999999,0.75,1,25 -calculator,0.615,0.65,0.6666666666666666,0.59,1,26 -tissues,0.6383333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -juice,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666666,1,26 -pink,0.7999999999999999,1.0,0.8166666666666667,0.8666666666666666,1,25 -lemon,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -peach,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -bowl,0.71,1.0,0.5333333333333333,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.4966666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -blue,0.5666666666666667,1.0,0.5166666666666666,0.65,1,25 -used,0.5416666666666667,1.0,0.5166666666666666,0.65,1,24 -energizer,0,0,0,0,1,26 -pear,0.7849999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -ball,0.7333333333333333,1.0,0.7,0.7833333333333334,1,25 -notebook,0.6783333333333333,1.0,0.4999999999999999,0.65,1,26 -garlic,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -cleaning,0.7466666666666666,1.0,0.6833333333333333,0.7666666666666667,1,26 -pair,0.9166666666666666,1.0,0.9,0.9400000000000001,2,27 -container,0.7333333333333333,1.0,0.8,0.85,1,26 -tomato,0.575,0.95,0.55,0.65,1,26 -cellphone,0.82,1.0,0.6833333333333333,0.7833333333333334,1,26 -potato,0.6,1.0,0.5833333333333333,0.7,1,25 -light,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9016666666666666,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6376234567901234 -F1-Score: 0.6839197530864197 -Precision: 0.9069444444444443 -Recall: 0.6010802469135802 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5266666666666666,1.0,0.5333333333333333,0.6666666666666667,1,24 -yellow,0.95,0.85,1.0,0.9,6,24 -looks,0.74,0.9,0.7166666666666666,0.7333333333333333,1,24 -keyboard,0.7416666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -flashlight,0.6483333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -cup,0.41500000000000004,0.5,0.6333333333333333,0.5266666666666667,1,26 -folded,0.5833333333333333,1.0,0.55,0.6666666666666666,1,26 -jam,0.655,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.9400000000000001,0.85,1.0,0.8999999999999998,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.5666666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -soccer,0.8383333333333335,1.0,0.7666666666666666,0.8333333333333333,1,26 -hat,0.6166666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.8716666666666667,1.0,0.8333333333333333,0.9,2,25 -coffee,0.755,1.0,0.7166666666666666,0.8,1,25 -handle,0.7466666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -food,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -towel,0.75,1.0,0.8,0.85,1,26 -chips,0.6683333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -stapler,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -onion,0.46333333333333326,1.0,0.5,0.6333333333333333,1,26 -bag,0.5166666666666666,1.0,0.4333333333333333,0.6,1,26 -sponge,0.61,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,25 -special,0.5166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -colgate,0.6883333333333334,1.0,0.5666666666666667,0.7,1,26 -leaf,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -cell,0.30333333333333334,0.65,0.4999999999999999,0.5033333333333333,1,26 -mug,0.5466666666666666,1.0,0.5333333333333333,0.6666666666666666,1,25 -yogurt,0.485,1.0,0.5166666666666666,0.65,1,26 -plantain,0.64,1.0,0.4999999999999999,0.65,1,26 -red,0.9666666666666668,0.9,1.0,0.9333333333333332,3,25 -pepper,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.6216666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -kleenex,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -toothbrush,0.8016666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -binder,0.8583333333333332,1.0,0.75,0.8333333333333333,1,26 -baseball,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -pliers,0.6216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.735,1.0,0.7166666666666666,0.8,1,26 -thins,0.5416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -package,0.835,1.0,0.7166666666666666,0.8,1,26 -k,0.8633333333333333,1.0,0.75,0.8333333333333333,1,26 -jelly,0.6333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -fruit,0.8800000000000001,0.9,0.9,0.8733333333333334,2,25 -apple,0.5216666666666667,0.8,0.4833333333333333,0.55,1,25 -bell,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -battery,0.6933333333333334,1.0,0.6,0.7166666666666667,1,26 -jar,0.6666666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -lettuce,0.63,1.0,0.5166666666666666,0.65,1,26 -brush,0.8166666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -scissors,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -lime,0.6649999999999999,1.0,0.55,0.6833333333333333,1,25 -toothpaste,0.65,1.0,0.55,0.6833333333333333,1,26 -top,0.5249999999999999,1.0,0.5166666666666666,0.65,1,26 -spiral,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -handles,0.7416666666666666,1.0,0.7166666666666666,0.8,1,25 -camera,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -eraser,0.705,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -pitcher,0.59,1.0,0.4666666666666666,0.6166666666666666,1,26 -phone,0.5966666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -stick,0.6683333333333332,1.0,0.5999999999999999,0.7166666666666666,1,25 -cereal,0.4883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -bulb,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7166666666666666,1.0,0.6499999999999999,0.75,1,26 -can,0.8933333333333333,1.0,0.8666666666666668,0.9200000000000002,2,25 -coca,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -crackers,0.7933333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -plate,0.7,1.0,0.6333333333333333,0.75,1,24 -calculator,0.5966666666666666,0.9,0.5499999999999999,0.6166666666666667,1,26 -tissues,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -juice,0.72,1.0,0.5666666666666667,0.7,1,26 -pink,0.7933333333333333,1.0,0.6333333333333333,0.75,1,25 -lemon,0.7266666666666667,1.0,0.65,0.75,1,26 -peach,0.3516666666666667,0.5,0.5333333333333333,0.49333333333333335,1,26 -bowl,0.8800000000000001,1.0,0.8,0.8666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7183333333333333,1.0,0.6499999999999999,0.75,1,26 -blue,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,25 -used,0.4833333333333334,1.0,0.4666666666666666,0.6166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -ball,0.5216666666666667,1.0,0.5166666666666666,0.65,1,25 -notebook,0.6966666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.5349999999999999,1.0,0.4166666666666667,0.5833333333333333,1,26 -cleaning,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -pair,0.9350000000000002,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.5833333333333333,1.0,0.6666666666666666,0.75,1,26 -tomato,0.5766666666666667,0.8,0.6333333333333333,0.6,1,26 -cellphone,0.3983333333333333,0.6,0.5666666666666667,0.52,1,26 -potato,0.5683333333333332,1.0,0.4666666666666666,0.6166666666666667,1,25 -light,0.8916666666666666,1.0,0.8666666666666668,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.975,1.0,0.9666666666666666,0.9800000000000001,2,27 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6464660493827159 -F1-Score: 0.6894135802469136 -Precision: 0.8995370370370369 -Recall: 0.6117283950617284 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.755,1.0,0.7,0.7833333333333333,1,25 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.755,0.85,0.7,0.6833333333333333,1,24 -keyboard,0.86,1.0,0.7666666666666666,0.8333333333333333,1,26 -glue,0.6683333333333332,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.65,1.0,0.65,0.75,1,26 -flashlight,0.6516666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -cup,0.47833333333333333,0.5,0.65,0.5366666666666666,1,26 -folded,0.475,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -black,0.8433333333333334,0.675,1.0,0.7923809523809524,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -soccer,0.8216666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -hat,0.7216666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -brown,0.8633333333333333,1.0,0.8333333333333334,0.9000000000000001,2,25 -coffee,0.6749999999999999,1.0,0.7,0.7833333333333333,1,26 -handle,0.6066666666666667,1.0,0.5833333333333333,0.7,1,25 -food,0.6833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -towel,0.705,1.0,0.5999999999999999,0.7166666666666666,1,26 -chips,0.6816666666666666,1.0,0.5,0.65,1,26 -stapler,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -onion,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -bag,0.7316666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -sponge,0.4583333333333333,1.0,0.4833333333333333,0.6166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6166666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -special,0.7516666666666667,1.0,0.5666666666666667,0.7,1,26 -colgate,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -leaf,0.6833333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -tube,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -cell,0.4933333333333333,0.55,0.6499999999999999,0.5466666666666666,1,26 -mug,0.705,1.0,0.65,0.75,1,26 -yogurt,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -plantain,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -red,0.9333333333333333,0.8166666666666667,1.0,0.8800000000000001,3,25 -pepper,0.7466666666666667,1.0,0.6499999999999999,0.75,1,26 -wheat,0.6183333333333333,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.6766666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -toothbrush,0.6966666666666665,1.0,0.5499999999999999,0.6833333333333333,1,26 -binder,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -baseball,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -pliers,0.4466666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6799999999999999,1.0,0.7499999999999999,0.8166666666666667,1,26 -thins,0.5083333333333333,1.0,0.55,0.6666666666666666,1,26 -package,0.7833333333333333,1.0,0.7,0.7833333333333333,1,26 -k,0.7533333333333333,1.0,0.5666666666666667,0.7,1,26 -jelly,0.6683333333333333,1.0,0.4999999999999999,0.65,1,26 -fruit,0.77,0.6499999999999999,0.9333333333333332,0.7333333333333334,2,25 -apple,0.585,0.75,0.7,0.6166666666666667,1,25 -bell,0.7966666666666666,1.0,0.7,0.7833333333333333,1,26 -battery,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -jar,0.73,1.0,0.65,0.75,1,26 -bound,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.7133333333333333,1.0,0.65,0.75,1,26 -brush,0.5416666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -scissors,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.5216666666666667,1.0,0.4666666666666666,0.6166666666666666,1,25 -toothpaste,0.61,1.0,0.5333333333333333,0.6666666666666667,1,26 -top,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -spiral,0.6716666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -handles,0.71,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -eraser,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5183333333333333,1.0,0.5166666666666666,0.65,1,26 -pitcher,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -phone,0.8083333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -stick,0.735,1.0,0.6166666666666666,0.7333333333333333,1,25 -cereal,0.6316666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -bulb,0.9,1.0,0.8666666666666666,0.9199999999999999,2,27 -hair,0.78,1.0,0.7,0.7833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -can,0.8899999999999999,1.0,0.8333333333333333,0.9,2,25 -coca,0.32166666666666666,1.0,0.38333333333333336,0.55,1,26 -crackers,0.7433333333333333,1.0,0.6499999999999999,0.75,1,26 -plate,0.5933333333333334,1.0,0.5666666666666667,0.6833333333333333,1,24 -calculator,0.5566666666666668,0.7,0.6499999999999999,0.5833333333333333,1,26 -tissues,0.675,1.0,0.5833333333333333,0.7,1,26 -juice,0.8149999999999998,1.0,0.6833333333333333,0.7833333333333333,1,26 -pink,0.7983333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -lemon,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -peach,0.705,1.0,0.65,0.75,1,26 -bowl,0.45,1.0,0.45,0.6,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6,1.0,0.5333333333333333,0.6666666666666667,1,26 -blue,0.6583333333333333,1.0,0.6166666666666666,0.7166666666666667,1,25 -used,0.73,1.0,0.5999999999999999,0.7166666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.58,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.7666666666666666,1.0,0.7166666666666666,0.8,1,25 -notebook,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -garlic,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -cleaning,0.7433333333333334,1.0,0.6499999999999999,0.75,1,26 -pair,0.8683333333333334,1.0,0.8333333333333333,0.9,2,26 -container,0.8916666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -tomato,0.51,0.85,0.5166666666666666,0.5666666666666667,1,26 -cellphone,0.5516666666666667,0.55,0.7499999999999999,0.58,1,26 -potato,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -light,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6526697530864197 -F1-Score: 0.6910097001763669 -Precision: 0.897145061728395 -Recall: 0.6189814814814815 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.6049999999999999,0.9,0.6333333333333333,0.6666666666666667,1,24 -keyboard,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -glue,0.755,1.0,0.6833333333333333,0.7833333333333334,1,26 -milk,0,0,0,0,1,26 -cola,0.7066666666666667,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.53,1.0,0.5333333333333333,0.6666666666666667,1,26 -cup,0.395,0.5,0.65,0.5366666666666667,1,26 -folded,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -jam,0.655,1.0,0.5833333333333333,0.7,1,26 -black,0.9666666666666668,0.9333333333333332,1.0,0.96,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -soccer,0.5833333333333333,1.0,0.5499999999999999,0.6666666666666667,1,26 -hat,0.525,1.0,0.5166666666666666,0.65,1,26 -brown,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,25 -coffee,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -handle,0.5716666666666665,1.0,0.4666666666666666,0.6166666666666667,1,26 -food,0.4666666666666666,1.0,0.4666666666666666,0.6,1,25 -towel,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -chips,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666666,1,26 -stapler,0.6333333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -onion,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -bag,0.475,1.0,0.5666666666666667,0.6833333333333333,1,26 -sponge,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6583333333333333,1.0,0.6,0.7166666666666666,1,25 -special,0.7266666666666667,1.0,0.6,0.7166666666666666,1,26 -colgate,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -leaf,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -tube,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -cell,0.6966666666666665,0.55,0.8833333333333332,0.6333333333333333,1,26 -mug,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -yogurt,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -plantain,0.65,1.0,0.6166666666666666,0.7166666666666667,1,26 -red,0.8883333333333334,0.8,1.0,0.8780952380952382,3,24 -pepper,0.6066666666666667,1.0,0.4999999999999999,0.65,1,26 -wheat,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -kleenex,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -toothbrush,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -binder,0.8633333333333333,1.0,0.8166666666666667,0.8666666666666666,1,26 -baseball,0.6900000000000001,1.0,0.5999999999999999,0.7166666666666666,1,26 -pliers,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.675,1.0,0.6166666666666666,0.7166666666666666,1,26 -thins,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -package,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -jelly,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -fruit,0.755,0.75,0.8333333333333333,0.7533333333333333,2,25 -apple,0.4533333333333333,0.75,0.4833333333333333,0.5333333333333333,1,25 -bell,0.7333333333333333,1.0,0.6499999999999999,0.75,1,26 -battery,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -jar,0.6966666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.6266666666666667,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.7183333333333333,1.0,0.6499999999999999,0.75,1,26 -brush,0.75,1.0,0.75,0.8166666666666667,1,26 -scissors,0.8699999999999999,1.0,0.7,0.8,1,26 -lime,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -toothpaste,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.505,1.0,0.4666666666666666,0.6166666666666666,1,26 -spiral,0.5966666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -handles,0.4216666666666666,1.0,0.4666666666666666,0.6166666666666667,1,25 -camera,0.63,1.0,0.65,0.75,1,26 -eraser,0.4966666666666667,1.0,0.41666666666666663,0.5833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -pitcher,0.7,1.0,0.7166666666666666,0.8,1,26 -phone,0.7466666666666667,1.0,0.7166666666666666,0.8,1,26 -stick,0.6633333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -cereal,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666668,1,26 -bulb,0.8283333333333334,1.0,0.7666666666666667,0.86,2,26 -hair,0.71,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.58,1.0,0.5833333333333333,0.7,1,26 -can,0.9400000000000001,1.0,0.9,0.9400000000000001,2,24 -coca,0.7066666666666667,1.0,0.5833333333333333,0.7,1,26 -crackers,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -plate,0.6566666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -calculator,0.67,0.75,0.7166666666666666,0.6333333333333333,1,26 -tissues,0.4333333333333333,1.0,0.4666666666666666,0.6,1,26 -juice,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -pink,0.5416666666666667,1.0,0.55,0.6833333333333333,1,25 -lemon,0.6833333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -peach,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -bowl,0.63,1.0,0.5999999999999999,0.7166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -blue,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666667,1,25 -used,0.6016666666666666,1.0,0.5333333333333332,0.6666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.7583333333333333,1.0,0.6499999999999999,0.75,1,25 -notebook,0.79,1.0,0.6833333333333333,0.7833333333333333,1,26 -garlic,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -cleaning,0.8116666666666668,1.0,0.6,0.7333333333333333,1,26 -pair,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,26 -container,0.7633333333333334,1.0,0.7,0.7833333333333333,1,25 -tomato,0.53,0.85,0.45,0.5666666666666667,1,26 -cellphone,0.3883333333333333,0.65,0.5833333333333333,0.5399999999999999,1,26 -potato,0.6183333333333333,1.0,0.4833333333333333,0.6333333333333334,1,25 -light,0.9400000000000001,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6486265432098768 -F1-Score: 0.6862477954144621 -Precision: 0.9016975308641975 -Recall: 0.6063271604938271 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6216666666666667,1.0,0.55,0.6833333333333333,1,25 -yellow,0.95,0.85,1.0,0.9,6,24 -looks,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,24 -keyboard,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.6049999999999999,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.5516666666666666,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.505,0.55,0.6166666666666666,0.54,1,26 -folded,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -jam,0.8133333333333332,1.0,0.65,0.7666666666666667,1,26 -black,0.86,0.7333333333333333,1.0,0.8380952380952381,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7,1.0,0.6166666666666666,0.7166666666666666,1,26 -soccer,0.805,1.0,0.7166666666666666,0.8,1,26 -hat,0.85,1.0,0.7833333333333333,0.85,1,26 -brown,0.9016666666666666,1.0,0.8666666666666668,0.9200000000000002,2,24 -coffee,0.805,1.0,0.7166666666666666,0.8,1,26 -handle,0.73,1.0,0.6666666666666666,0.7666666666666666,1,25 -food,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,25 -towel,0.73,1.0,0.5833333333333333,0.7166666666666667,1,26 -chips,0.7916666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -stapler,0.74,1.0,0.5999999999999999,0.7166666666666666,1,26 -onion,0.7533333333333333,1.0,0.6,0.7166666666666667,1,26 -bag,0.6983333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -sponge,0.8216666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.31666666666666665,1.0,0.4833333333333332,0.6166666666666666,1,25 -special,0.6516666666666666,1.0,0.5666666666666667,0.7,1,26 -colgate,0.5666666666666667,1.0,0.5833333333333333,0.7,1,26 -leaf,0.6183333333333333,1.0,0.5833333333333333,0.7,1,26 -tube,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -mug,0.64,1.0,0.5333333333333332,0.6666666666666666,1,26 -yogurt,0.65,1.0,0.6499999999999999,0.75,1,26 -plantain,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -red,0.9266666666666667,0.8166666666666668,1.0,0.8800000000000001,3,24 -pepper,0.6483333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -wheat,0.7166666666666667,1.0,0.7333333333333332,0.8,1,26 -kleenex,0.5850000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -toothbrush,0.6333333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -binder,0.8616666666666667,1.0,0.7,0.8,1,26 -baseball,0.6799999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -pliers,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.78,1.0,0.6833333333333333,0.7833333333333333,1,26 -thins,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -package,0.6833333333333333,1.0,0.65,0.75,1,26 -k,0.7833333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -jelly,0.73,1.0,0.65,0.75,1,26 -fruit,0.7649999999999999,0.7333333333333333,0.8666666666666666,0.7533333333333334,2,25 -apple,0.7433333333333334,1.0,0.65,0.75,1,25 -bell,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -battery,0.6166666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -jar,0.8266666666666668,1.0,0.7666666666666666,0.8333333333333333,1,26 -bound,0.7833333333333333,1.0,0.75,0.8166666666666667,1,26 -lettuce,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -brush,0.7466666666666666,1.0,0.6499999999999999,0.75,1,26 -scissors,0.6133333333333333,1.0,0.4999999999999999,0.65,1,26 -lime,0.675,1.0,0.5999999999999999,0.7166666666666666,1,25 -toothpaste,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666668,1,26 -top,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -spiral,0.8049999999999999,1.0,0.7166666666666666,0.8,1,26 -handles,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333334,1,25 -camera,0.6933333333333332,1.0,0.65,0.75,1,26 -eraser,0.6933333333333332,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -pitcher,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -phone,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -stick,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666666,1,25 -cereal,0.6383333333333333,1.0,0.55,0.6833333333333333,1,26 -bulb,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -hair,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.55,1.0,0.5499999999999999,0.6666666666666667,1,26 -can,0.9266666666666665,1.0,0.9,0.9400000000000001,2,25 -coca,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -crackers,0.475,1.0,0.5166666666666666,0.65,1,26 -plate,0.6599999999999999,1.0,0.55,0.6833333333333333,1,25 -calculator,0.7500000000000001,0.95,0.6666666666666666,0.7333333333333333,1,26 -tissues,0.4749999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -juice,0.31166666666666665,0.5,0.6333333333333333,0.5266666666666666,1,26 -pink,0.715,1.0,0.6666666666666666,0.7666666666666667,1,25 -lemon,0.6733333333333333,1.0,0.55,0.6833333333333333,1,26 -peach,0.6383333333333333,1.0,0.6,0.7166666666666666,1,26 -bowl,0.4583333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -blue,0.73,1.0,0.6666666666666666,0.7666666666666666,1,25 -used,0.6483333333333333,0.6,0.6833333333333333,0.59,1,24 -energizer,0,0,0,0,1,26 -pear,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.7633333333333333,1.0,0.7166666666666666,0.8,1,25 -notebook,0.735,1.0,0.5666666666666667,0.7,1,26 -garlic,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.63,1.0,0.5999999999999999,0.7166666666666667,1,26 -pair,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -container,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -tomato,0.575,0.8,0.5333333333333333,0.5666666666666667,1,26 -cellphone,0.5233333333333333,1.0,0.5166666666666666,0.65,1,26 -potato,0.59,1.0,0.5333333333333333,0.6666666666666667,1,25 -light,0.925,1.0,0.8999999999999998,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8800000000000001,1.0,0.8333333333333333,0.9,2,25 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6612345679012344 -F1-Score: 0.696741622574956 -Precision: 0.9030864197530865 -Recall: 0.6189814814814815 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.69,1.0,0.65,0.75,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.4883333333333333,0.75,0.6833333333333333,0.6,1,24 -keyboard,0.6599999999999999,1.0,0.65,0.75,1,26 -glue,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.45499999999999996,1.0,0.4666666666666666,0.6166666666666667,1,26 -flashlight,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -cup,0.24166666666666664,0.5,0.5666666666666667,0.5000000000000001,1,26 -folded,0.6933333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -jam,0.6383333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -black,0.8566666666666667,0.675,1.0,0.7857142857142857,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -soccer,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -hat,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -brown,0.8566666666666667,1.0,0.8,0.8800000000000001,2,25 -coffee,0.5416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,25 -handle,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -food,0.6633333333333333,1.0,0.5833333333333333,0.7,1,25 -towel,0.5933333333333335,1.0,0.5833333333333333,0.7,1,26 -chips,0.6933333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -stapler,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -onion,0.875,1.0,0.8333333333333333,0.8833333333333332,1,26 -bag,0.76,1.0,0.6666666666666666,0.7666666666666666,1,26 -sponge,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6333333333333333,1.0,0.6666666666666666,0.75,1,25 -special,0.5599999999999999,1.0,0.5,0.6333333333333334,1,26 -colgate,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -leaf,0.5183333333333333,1.0,0.5166666666666666,0.65,1,26 -tube,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -cell,0.805,1.0,0.7,0.7833333333333333,1,26 -mug,0.6833333333333333,1.0,0.6,0.7166666666666667,1,25 -yogurt,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.5833333333333333,0.95,0.5,0.6166666666666667,1,26 -red,0.8683333333333334,0.7333333333333333,1.0,0.8314285714285713,3,26 -pepper,0.575,1.0,0.5833333333333333,0.7,1,26 -wheat,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -kleenex,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -toothbrush,0.5083333333333334,1.0,0.5499999999999999,0.6666666666666666,1,26 -binder,0.8133333333333332,1.0,0.7499999999999999,0.8166666666666667,1,26 -baseball,0.6983333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -pliers,0.6183333333333334,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.475,1.0,0.5166666666666666,0.65,1,26 -thins,0.7933333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -package,0.7266666666666667,1.0,0.5333333333333333,0.6833333333333333,1,26 -k,0.44333333333333336,1.0,0.38333333333333336,0.55,1,26 -jelly,0.6633333333333333,1.0,0.65,0.75,1,26 -fruit,0.6849999999999998,0.6333333333333333,0.9,0.7166666666666667,2,25 -apple,0.76,0.7,0.7833333333333333,0.6833333333333333,1,25 -bell,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -battery,0.5166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -jar,0.6583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -lettuce,0.5299999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -brush,0.5016666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -scissors,0.9400000000000001,1.0,0.85,0.9,1,26 -lime,0.805,1.0,0.6333333333333333,0.75,1,25 -toothpaste,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -top,0.8133333333333332,1.0,0.7333333333333333,0.8166666666666667,1,26 -spiral,0.5,1.0,0.6166666666666666,0.7166666666666666,1,26 -handles,0.6433333333333333,1.0,0.5833333333333333,0.7,1,25 -camera,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -eraser,0.655,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6916666666666667,0.95,0.7,0.75,1,26 -pitcher,0.355,1.0,0.4,0.5666666666666667,1,26 -phone,0.76,1.0,0.7,0.7833333333333333,1,26 -stick,0.6483333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -cereal,0.8333333333333334,1.0,0.7833333333333333,0.85,1,26 -bulb,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.5916666666666666,1.0,0.55,0.6666666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5299999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,0.95,1.0,0.9333333333333332,0.96,2,26 -coca,0.6133333333333334,1.0,0.5833333333333333,0.7,1,26 -crackers,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -plate,0.835,1.0,0.7166666666666666,0.8,1,25 -calculator,0.45500000000000007,0.55,0.6,0.53,1,26 -tissues,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.635,1.0,0.5666666666666667,0.7,1,26 -pink,0.6833333333333333,1.0,0.6666666666666666,0.75,1,25 -lemon,0.5166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.6816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -bowl,0.8300000000000001,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -blue,0.6833333333333333,1.0,0.6333333333333332,0.7333333333333333,1,25 -used,0.655,1.0,0.7,0.7833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.5433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -ball,0.6133333333333333,1.0,0.4666666666666666,0.6166666666666667,1,25 -notebook,0.525,1.0,0.5,0.6333333333333333,1,26 -garlic,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.6933333333333334,1.0,0.5166666666666666,0.6666666666666667,1,26 -pair,0.96,1.0,0.9333333333333332,0.96,2,27 -container,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666668,1,25 -tomato,0.6716666666666666,0.9,0.7166666666666666,0.7333333333333333,1,26 -cellphone,0.7933333333333333,1.0,0.7,0.7833333333333333,1,26 -potato,0.6083333333333333,1.0,0.4833333333333333,0.6333333333333333,1,25 -light,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,26 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6383641975308642 -F1-Score: 0.685436507936508 -Precision: 0.9013117283950618 -Recall: 0.6074074074074074 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.625,1.0,0.5333333333333333,0.6666666666666667,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,25 -looks,0.635,0.9,0.5999999999999999,0.65,1,24 -keyboard,0.8466666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -glue,0.735,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -flashlight,0.4083333333333333,1.0,0.4833333333333333,0.6166666666666667,1,26 -cup,0.4883333333333334,0.5,0.7499999999999999,0.5700000000000001,1,26 -folded,0.65,1.0,0.5833333333333333,0.7,1,26 -jam,0.7100000000000001,1.0,0.5499999999999999,0.6833333333333333,1,26 -black,0.9133333333333334,0.75,1.0,0.8333333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.705,1.0,0.7,0.7833333333333333,1,26 -soccer,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -hat,0.76,1.0,0.7,0.7833333333333333,1,26 -brown,0.8550000000000001,1.0,0.8333333333333333,0.9,2,24 -coffee,0.7,1.0,0.6666666666666666,0.75,1,25 -handle,0.5216666666666667,1.0,0.4333333333333333,0.5833333333333334,1,26 -food,0.635,1.0,0.45,0.6166666666666667,1,26 -towel,0.755,1.0,0.7166666666666666,0.8,1,26 -chips,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -stapler,0.8,1.0,0.7833333333333333,0.85,1,26 -onion,0.7166666666666667,1.0,0.7,0.7833333333333333,1,26 -bag,0.7649999999999999,1.0,0.5833333333333333,0.7166666666666667,1,26 -sponge,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7633333333333334,1.0,0.7166666666666666,0.8,1,25 -special,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -colgate,0.7649999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -leaf,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -tube,0.655,1.0,0.55,0.6833333333333333,1,26 -cell,0.5433333333333332,0.55,0.6166666666666666,0.54,1,26 -mug,0.7666666666666666,1.0,0.6333333333333333,0.75,1,25 -yogurt,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.6599999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.5816666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -wheat,0.5016666666666667,1.0,0.41666666666666663,0.5833333333333333,1,26 -kleenex,0.6183333333333333,1.0,0.5166666666666666,0.65,1,26 -toothbrush,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -binder,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -pliers,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.875,1.0,0.8333333333333333,0.8833333333333332,1,26 -package,0.8566666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -k,0.5883333333333334,1.0,0.5833333333333333,0.7,1,26 -jelly,0.7416666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -fruit,0.7466666666666667,0.75,0.8333333333333334,0.7566666666666666,2,25 -apple,0.6249999999999999,0.9,0.6499999999999999,0.6833333333333333,1,25 -bell,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -battery,0.6316666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -jar,0.7100000000000001,1.0,0.6,0.7166666666666667,1,26 -bound,0.7466666666666667,1.0,0.65,0.75,1,26 -lettuce,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -brush,0.6016666666666667,1.0,0.5166666666666666,0.65,1,26 -scissors,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.6,1.0,0.6166666666666666,0.7166666666666666,1,25 -toothpaste,0.4966666666666667,1.0,0.4499999999999999,0.6,1,26 -top,0.7666666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -spiral,0.5666666666666667,1.0,0.5833333333333333,0.7,1,26 -handles,0.6166666666666666,1.0,0.5999999999999999,0.7,1,25 -camera,0.5166666666666666,1.0,0.5999999999999999,0.7,1,26 -eraser,0.6416666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -phone,0.835,1.0,0.7833333333333333,0.85,1,26 -stick,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333334,1,25 -cereal,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -bulb,0.8633333333333333,1.0,0.8333333333333333,0.9,2,27 -hair,0.7,1.0,0.7499999999999999,0.8166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5216666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -can,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -coca,0.6666666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -crackers,0.6933333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -plate,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,24 -calculator,0.6749999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -tissues,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333334,1,26 -juice,0.6,1.0,0.5499999999999999,0.6666666666666666,1,26 -pink,0.6716666666666666,1.0,0.55,0.6833333333333333,1,25 -lemon,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -peach,0.5,1.0,0.5999999999999999,0.7,1,26 -bowl,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7666666666666666,1.0,0.5833333333333333,0.7166666666666667,1,26 -blue,0.6683333333333332,1.0,0.5833333333333333,0.7,1,25 -used,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -ball,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666667,1,25 -notebook,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -garlic,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -cleaning,0.46333333333333326,1.0,0.4999999999999999,0.6333333333333333,1,26 -pair,0.8633333333333333,1.0,0.8333333333333334,0.9000000000000001,2,26 -container,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -tomato,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -cellphone,0.42833333333333334,0.5,0.5333333333333333,0.49333333333333335,1,26 -potato,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8583333333333332,1.0,0.8333333333333334,0.9000000000000001,2,27 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6499691358024692 -F1-Score: 0.6954320987654322 -Precision: 0.9050925925925926 -Recall: 0.6171296296296296 diff --git a/Validation/UW_raw_75_object_0.65.csv b/Validation/UW_raw_75_object_0.65.csv deleted file mode 100644 index 3439ec9..0000000 --- a/Validation/UW_raw_75_object_0.65.csv +++ /dev/null @@ -1,2875 +0,0 @@ -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.775,1.0,0.6333333333333333,0.75,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,23 -looks,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,24 -keyboard,0.6683333333333333,1.0,0.6,0.7166666666666666,1,26 -glue,0.6016666666666667,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.6599999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -flashlight,0.6266666666666667,1.0,0.4999999999999999,0.65,1,26 -cup,0.3516666666666667,0.5,0.6499999999999999,0.5366666666666667,1,26 -folded,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -jam,0.605,1.0,0.5833333333333333,0.7,1,26 -black,0.9500000000000002,0.8833333333333332,1.0,0.9266666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -soccer,0.525,1.0,0.5499999999999999,0.6666666666666666,1,26 -hat,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -coffee,0.6183333333333334,1.0,0.5833333333333333,0.7,1,25 -handle,0.8116666666666668,1.0,0.6,0.7333333333333333,1,26 -food,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -towel,0.71,1.0,0.55,0.6833333333333333,1,26 -chips,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -stapler,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.8333333333333333,1.0,0.8333333333333334,0.8833333333333332,1,26 -bag,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -special,0.7633333333333333,1.0,0.75,0.8166666666666667,1,26 -colgate,0.605,1.0,0.5333333333333332,0.6666666666666666,1,26 -leaf,0.5833333333333333,1.0,0.6,0.7166666666666667,1,26 -tube,0.5383333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -cell,0.4699999999999999,0.5,0.5999999999999999,0.52,1,26 -mug,0.755,1.0,0.6666666666666666,0.7666666666666666,1,25 -yogurt,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -plantain,0.8683333333333334,1.0,0.75,0.8333333333333333,1,26 -red,0.9666666666666668,0.9,1.0,0.9333333333333332,3,24 -pepper,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -wheat,0.6466666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -kleenex,0.5266666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -toothbrush,0.6016666666666667,1.0,0.5833333333333333,0.7,1,26 -binder,0.7083333333333333,1.0,0.6,0.7166666666666667,1,26 -baseball,0.63,1.0,0.5833333333333333,0.7,1,26 -pliers,0.5933333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7749999999999999,1.0,0.7,0.7833333333333333,1,26 -thins,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -package,0.6183333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -k,0.6833333333333333,1.0,0.6666666666666666,0.75,1,26 -jelly,0.7066666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.8400000000000001,0.8666666666666666,0.8666666666666666,0.8333333333333334,2,25 -apple,0.38,1.0,0.41666666666666663,0.5666666666666667,1,25 -bell,0.6266666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -battery,0.8133333333333332,1.0,0.7333333333333333,0.8166666666666667,1,26 -jar,0.7216666666666667,1.0,0.6,0.7166666666666667,1,26 -bound,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -lettuce,0.5233333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -brush,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -scissors,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.8183333333333334,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.5833333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -spiral,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.7666666666666666,1.0,0.6499999999999999,0.75,1,25 -camera,0.6,1.0,0.5833333333333333,0.7,1,26 -eraser,0.5216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -pitcher,0.7416666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -phone,0.6266666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -stick,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,25 -cereal,0.6466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.7383333333333333,1.0,0.7,0.7833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -can,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -coca,0.685,1.0,0.55,0.6833333333333333,1,26 -crackers,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -plate,0.6716666666666666,1.0,0.65,0.75,1,25 -calculator,0.6316666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -tissues,0.725,1.0,0.5333333333333333,0.6833333333333333,1,26 -juice,0.6066666666666667,1.0,0.4999999999999999,0.65,1,26 -pink,0.73,1.0,0.7,0.7833333333333333,1,25 -lemon,0.575,1.0,0.5166666666666666,0.65,1,26 -peach,0.6216666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -bowl,0.6000000000000001,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7466666666666667,1.0,0.5666666666666667,0.7,1,26 -blue,0.61,1.0,0.5333333333333333,0.6666666666666667,1,25 -used,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.7116666666666667,1.0,0.5666666666666667,0.7,1,26 -ball,0.7616666666666667,1.0,0.5666666666666667,0.7,1,25 -notebook,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -garlic,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -cleaning,0.6933333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -pair,0.86,1.0,0.8,0.8800000000000001,2,26 -container,0.5633333333333332,1.0,0.5833333333333333,0.7,1,25 -tomato,0.7466666666666666,0.9,0.6666666666666666,0.7,1,26 -cellphone,0.5116666666666666,0.5,0.6333333333333333,0.54,1,26 -potato,0.5633333333333332,1.0,0.4499999999999999,0.6,1,25 -light,0.8216666666666667,1.0,0.8,0.8800000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.96,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6511728395061728 -F1-Score: 0.685648148148148 -Precision: 0.9069444444444443 -Recall: 0.5998456790123456 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7383333333333333,1.0,0.7,0.7833333333333333,1,24 -yellow,1.0,1.0,1.0,1.0,6,26 -looks,0.7716666666666667,0.95,0.6666666666666666,0.7333333333333333,1,24 -keyboard,0.8166666666666668,1.0,0.7,0.8,1,26 -glue,0.6466666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6083333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -flashlight,0.715,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.16166666666666668,0.5,0.4666666666666666,0.4666666666666667,1,26 -folded,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -jam,0.6466666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -black,0.9633333333333333,0.9,1.0,0.9333333333333332,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.8083333333333332,1.0,0.7499999999999999,0.8166666666666667,1,26 -soccer,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -hat,0.795,1.0,0.6833333333333333,0.7833333333333333,1,26 -brown,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -coffee,0.6883333333333334,1.0,0.6,0.7166666666666667,1,25 -handle,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -food,0.6933333333333332,1.0,0.5499999999999999,0.6833333333333333,1,25 -towel,0.8833333333333332,1.0,0.8333333333333333,0.8833333333333332,1,26 -chips,0.65,1.0,0.7333333333333333,0.8,1,26 -stapler,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -onion,0.5333333333333333,0.8,0.5833333333333333,0.6,1,26 -bag,0.835,1.0,0.7833333333333333,0.85,1,26 -sponge,0.655,1.0,0.6,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -special,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -colgate,0.6383333333333333,1.0,0.55,0.6833333333333333,1,26 -leaf,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -tube,0.6166666666666667,1.0,0.5833333333333333,0.7,1,26 -cell,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -mug,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -yogurt,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -plantain,0.6183333333333333,1.0,0.5833333333333333,0.7,1,26 -red,0.9833333333333334,0.9666666666666666,1.0,0.9800000000000001,3,26 -pepper,0.6016666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -wheat,0.7583333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.78,1.0,0.6166666666666666,0.7333333333333334,1,26 -toothbrush,0.655,1.0,0.5833333333333333,0.7,1,26 -binder,0.6583333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -baseball,0.7683333333333333,1.0,0.6499999999999999,0.75,1,26 -pliers,0.575,1.0,0.55,0.6666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -thins,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -package,0.53,1.0,0.4499999999999999,0.6,1,26 -k,0.7183333333333334,1.0,0.5833333333333333,0.7,1,26 -jelly,0.6466666666666667,1.0,0.65,0.75,1,26 -fruit,0.695,0.65,0.8666666666666666,0.7166666666666667,2,27 -apple,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,25 -bell,0.4716666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -battery,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -jar,0.55,1.0,0.5166666666666666,0.65,1,26 -bound,0.6683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -lettuce,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.6133333333333333,1.0,0.4999999999999999,0.65,1,26 -scissors,0.46333333333333326,1.0,0.4833333333333332,0.6166666666666666,1,26 -lime,0.6,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.5433333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -top,0.8,1.0,0.8,0.85,1,26 -spiral,0.76,1.0,0.6666666666666666,0.7666666666666667,1,26 -handles,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,25 -camera,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -eraser,0.7550000000000001,1.0,0.5333333333333333,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,23 -banana,0.6166666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -pitcher,0.6966666666666667,1.0,0.55,0.6833333333333333,1,26 -phone,0.6916666666666667,1.0,0.5666666666666667,0.7,1,26 -stick,0.6666666666666666,1.0,0.6166666666666666,0.7166666666666667,1,25 -cereal,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -bulb,0.9083333333333332,1.0,0.9,0.9400000000000001,2,27 -hair,0.655,1.0,0.6499999999999999,0.75,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.63,1.0,0.55,0.6666666666666667,1,26 -can,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -coca,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -crackers,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -plate,0.6216666666666667,1.0,0.6,0.7166666666666667,1,25 -calculator,0.5433333333333333,1.0,0.41666666666666663,0.5833333333333334,1,26 -tissues,0.7233333333333334,1.0,0.6499999999999999,0.75,1,26 -juice,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -pink,0.72,1.0,0.5999999999999999,0.7166666666666667,1,25 -lemon,0.8516666666666666,1.0,0.7,0.8,1,26 -peach,0.705,1.0,0.6166666666666666,0.7333333333333334,1,26 -bowl,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -blue,0.7183333333333334,0.8,0.6666666666666666,0.6833333333333333,1,25 -used,0.5633333333333334,1.0,0.5333333333333333,0.6666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -ball,0.605,1.0,0.5833333333333333,0.7,1,25 -notebook,0.5599999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -garlic,0.675,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.605,1.0,0.5833333333333333,0.7,1,26 -pair,0.8766666666666666,1.0,0.8333333333333333,0.9,2,27 -container,0.5633333333333334,1.0,0.5,0.65,1,26 -tomato,0.5933333333333334,0.75,0.7,0.6166666666666667,1,26 -cellphone,0.7166666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -potato,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9016666666666667,1.0,0.8666666666666668,0.9200000000000002,2,27 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6567746913580246 -F1-Score: 0.6967283950617283 -Precision: 0.9103395061728394 -Recall: 0.6137345679012344 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6733333333333332,1.0,0.5833333333333333,0.7,1,25 -yellow,0.9633333333333335,0.9,1.0,0.9333333333333332,6,24 -looks,0.6016666666666666,0.9,0.55,0.6166666666666667,1,24 -keyboard,0.7916666666666666,1.0,0.7166666666666666,0.8,1,26 -glue,0.6316666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.7150000000000001,1.0,0.5999999999999999,0.7166666666666666,1,26 -cup,0.5633333333333332,0.5,0.7333333333333333,0.5733333333333333,1,26 -folded,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -jam,0.7716666666666667,1.0,0.7,0.7833333333333333,1,26 -black,0.95,0.8833333333333332,1.0,0.9266666666666665,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -soccer,0.4716666666666667,1.0,0.5166666666666666,0.65,1,26 -hat,0.8066666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -brown,0.875,1.0,0.8666666666666668,0.9200000000000002,2,24 -coffee,0.6683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -handle,0.53,1.0,0.4666666666666666,0.6166666666666666,1,26 -food,0.625,1.0,0.6333333333333333,0.7333333333333333,1,25 -towel,0.725,1.0,0.6166666666666666,0.7333333333333333,1,26 -chips,0.635,1.0,0.5499999999999999,0.6833333333333333,1,26 -stapler,0.5383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -onion,0.705,1.0,0.6499999999999999,0.75,1,26 -bag,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5466666666666666,1.0,0.4999999999999999,0.65,1,25 -special,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -colgate,0.8300000000000001,1.0,0.7833333333333333,0.85,1,26 -leaf,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -cell,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -mug,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -yogurt,0.6333333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -plantain,0.8166666666666668,0.9,0.7333333333333333,0.75,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.875,1.0,0.8333333333333333,0.8833333333333332,1,26 -wheat,0.575,1.0,0.5166666666666666,0.65,1,26 -kleenex,0.5083333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -toothbrush,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -binder,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.7916666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -pliers,0.6633333333333333,1.0,0.55,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.76,1.0,0.65,0.75,1,26 -thins,0.5716666666666665,1.0,0.5333333333333333,0.6666666666666667,1,26 -package,0.6766666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -k,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.8300000000000001,1.0,0.6833333333333333,0.7833333333333333,1,26 -fruit,0.7233333333333334,0.7166666666666667,0.8333333333333333,0.7133333333333333,2,25 -apple,0.6466666666666667,0.75,0.6,0.5833333333333333,1,25 -bell,0.5833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -battery,0.7466666666666667,1.0,0.7166666666666666,0.8,1,26 -jar,0.5633333333333332,1.0,0.45,0.6,1,26 -bound,0.5166666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -lettuce,0.61,1.0,0.5166666666666666,0.65,1,26 -brush,0.63,1.0,0.6833333333333333,0.7666666666666666,1,26 -scissors,0.7266666666666668,1.0,0.6166666666666666,0.7333333333333334,1,26 -lime,0.6466666666666666,1.0,0.6833333333333333,0.7666666666666666,1,25 -toothpaste,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -top,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.6833333333333332,1.0,0.6333333333333332,0.7333333333333333,1,26 -handles,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.6333333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -eraser,0.685,1.0,0.5499999999999999,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6433333333333333,0.95,0.5666666666666667,0.65,1,26 -pitcher,0.53,1.0,0.4666666666666666,0.6166666666666667,1,26 -phone,0.6883333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -stick,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -cereal,0.585,1.0,0.5166666666666666,0.65,1,26 -bulb,1.0,1.0,1.0,1.0,2,26 -hair,0.7383333333333333,1.0,0.6499999999999999,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7683333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -can,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -coca,0.79,1.0,0.6166666666666666,0.7333333333333333,1,26 -crackers,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.58,1.0,0.6166666666666666,0.7166666666666666,1,25 -calculator,0.6216666666666666,0.9,0.5999999999999999,0.65,1,26 -tissues,0.46333333333333326,1.0,0.4333333333333333,0.5833333333333333,1,26 -juice,0.5166666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -pink,0.725,1.0,0.65,0.75,1,25 -lemon,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -peach,0.7666666666666667,1.0,0.7166666666666666,0.8,1,26 -bowl,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -blue,0.48,1.0,0.4333333333333333,0.5833333333333333,1,25 -used,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.5933333333333334,1.0,0.55,0.6833333333333333,1,26 -ball,0.6799999999999999,1.0,0.6,0.7166666666666667,1,25 -notebook,0.53,1.0,0.4666666666666666,0.6166666666666667,1,26 -garlic,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -pair,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,27 -container,0.6133333333333333,1.0,0.5833333333333333,0.7,1,25 -tomato,0.61,0.9,0.5333333333333333,0.6,1,26 -cellphone,0.705,1.0,0.5833333333333333,0.7,1,26 -potato,0.6183333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -light,0.9066666666666666,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6481635802469136 -F1-Score: 0.6873148148148148 -Precision: 0.9101851851851852 -Recall: 0.6041666666666666 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.655,1.0,0.5333333333333333,0.6666666666666667,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.7433333333333333,0.95,0.6166666666666666,0.7,1,24 -keyboard,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -glue,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.5916666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -flashlight,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -cup,0.3716666666666667,0.5,0.4833333333333333,0.4766666666666667,1,26 -folded,0.505,1.0,0.38333333333333336,0.55,1,26 -jam,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -black,0.8933333333333335,0.7833333333333333,1.0,0.8647619047619047,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6766666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -soccer,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -hat,0.7183333333333333,1.0,0.6499999999999999,0.75,1,26 -brown,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -coffee,0.6916666666666667,1.0,0.65,0.75,1,26 -handle,0.755,1.0,0.6166666666666666,0.7333333333333333,1,26 -food,0.8099999999999999,1.0,0.7666666666666666,0.8333333333333333,1,25 -towel,0.6183333333333333,1.0,0.45,0.6166666666666667,1,26 -chips,0.85,1.0,0.7833333333333333,0.85,1,26 -stapler,0.5966666666666667,1.0,0.5166666666666666,0.65,1,26 -onion,0.7166666666666666,1.0,0.6499999999999999,0.75,1,26 -bag,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -sponge,0.7466666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,25 -special,0.655,1.0,0.5833333333333333,0.7,1,26 -colgate,0.5816666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -leaf,0.6966666666666665,1.0,0.55,0.6833333333333333,1,26 -tube,0.6133333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -cell,0.5033333333333332,0.55,0.6666666666666666,0.5566666666666666,1,26 -mug,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -yogurt,0.5633333333333334,1.0,0.55,0.6833333333333333,1,26 -plantain,0.6666666666666666,1.0,0.7333333333333333,0.8,1,26 -red,0.9633333333333333,0.9,1.0,0.9333333333333332,3,26 -pepper,0.5966666666666666,1.0,0.5166666666666666,0.65,1,26 -wheat,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -kleenex,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -toothbrush,0.7499999999999999,1.0,0.7,0.7833333333333333,1,26 -binder,0.6666666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -baseball,0.7066666666666667,1.0,0.55,0.6833333333333333,1,26 -pliers,0.75,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7083333333333333,1.0,0.65,0.75,1,26 -thins,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -package,0.625,1.0,0.55,0.6833333333333333,1,26 -k,0.6333333333333333,1.0,0.7,0.7833333333333333,1,26 -jelly,0.6016666666666667,1.0,0.5833333333333333,0.7,1,26 -fruit,0.8350000000000002,0.8333333333333333,0.9,0.8333333333333333,2,26 -apple,0.8583333333333332,0.95,0.8333333333333333,0.85,1,25 -bell,0.5666666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -battery,0.565,1.0,0.4833333333333333,0.6333333333333333,1,26 -jar,0.5166666666666667,1.0,0.5999999999999999,0.7,1,26 -bound,0.5249999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -lettuce,0.71,1.0,0.5833333333333333,0.7,1,26 -brush,0.7333333333333333,1.0,0.65,0.75,1,26 -scissors,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.825,1.0,0.7333333333333333,0.8166666666666668,1,25 -toothpaste,0.5999999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -top,0.46333333333333326,1.0,0.4833333333333333,0.6333333333333333,1,26 -spiral,0.5916666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -handles,0.75,1.0,0.7666666666666666,0.8333333333333333,1,25 -camera,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.7133333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -pitcher,0.6499999999999999,1.0,0.5833333333333333,0.7,1,26 -phone,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -stick,0.86,1.0,0.8333333333333333,0.8833333333333332,1,25 -cereal,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -bulb,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -hair,0.7283333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7183333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -can,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -coca,0.79,1.0,0.6833333333333333,0.7833333333333333,1,26 -crackers,0.7566666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -plate,0.73,1.0,0.5999999999999999,0.7166666666666666,1,25 -calculator,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -tissues,0.75,1.0,0.7333333333333333,0.8,1,26 -juice,0.505,1.0,0.4666666666666666,0.6166666666666667,1,26 -pink,0.7416666666666667,1.0,0.7499999999999999,0.8166666666666667,1,25 -lemon,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -peach,0.8,1.0,0.7166666666666666,0.8,1,26 -bowl,0.6216666666666667,1.0,0.55,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8466666666666667,1.0,0.7,0.8,1,26 -blue,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,25 -used,0.5266666666666666,1.0,0.5,0.6333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.5166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -ball,0.6599999999999999,1.0,0.6,0.7166666666666667,1,25 -notebook,0.6399999999999999,1.0,0.4999999999999999,0.65,1,26 -garlic,0.63,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.5599999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -pair,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,27 -container,0.7166666666666666,1.0,0.65,0.75,1,25 -tomato,0.48,0.95,0.45,0.5666666666666667,1,26 -cellphone,0.4016666666666667,0.5,0.5666666666666667,0.5,1,26 -potato,0.69,1.0,0.5833333333333333,0.7,1,25 -light,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9016666666666667,1.0,0.8666666666666668,0.9200000000000002,2,25 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6528086419753087 -F1-Score: 0.6920811287477953 -Precision: 0.9061728395061728 -Recall: 0.610185185185185 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.35,0.85,0.4666666666666666,0.55,1,24 -keyboard,0.5166666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -glue,0.55,1.0,0.5499999999999999,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -flashlight,0.7183333333333333,1.0,0.55,0.6833333333333333,1,26 -cup,0.4616666666666667,0.5,0.5833333333333333,0.51,1,26 -folded,0.6466666666666667,1.0,0.6499999999999999,0.75,1,26 -jam,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.8866666666666667,0.7583333333333333,1.0,0.8457142857142858,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -soccer,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -hat,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.9349999999999999,1.0,0.9,0.9400000000000001,2,24 -coffee,0.6833333333333333,1.0,0.6,0.7166666666666667,1,26 -handle,0.775,1.0,0.6666666666666666,0.7666666666666667,1,26 -food,0.64,1.0,0.4833333333333333,0.6333333333333333,1,25 -towel,0.5166666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -chips,0.8016666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -stapler,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -onion,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -bag,0.635,1.0,0.55,0.6833333333333333,1,26 -sponge,0.785,1.0,0.6666666666666666,0.7666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.5966666666666666,1.0,0.4833333333333334,0.6333333333333333,1,25 -special,0.48,1.0,0.4333333333333333,0.5833333333333333,1,26 -colgate,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -leaf,0.6216666666666666,1.0,0.5833333333333333,0.7,1,26 -tube,0.715,1.0,0.6,0.7166666666666667,1,26 -cell,0.4499999999999999,0.55,0.5499999999999999,0.5133333333333333,1,26 -mug,0.5766666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -yogurt,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -plantain,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -red,0.8816666666666666,0.7916666666666667,1.0,0.8723809523809523,3,26 -pepper,0.6633333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -wheat,0.575,1.0,0.6166666666666666,0.7166666666666666,1,26 -kleenex,0.7383333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -toothbrush,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -binder,0.5433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -baseball,0.5766666666666665,1.0,0.5333333333333333,0.6666666666666667,1,26 -pliers,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.61,1.0,0.5833333333333333,0.7,1,26 -thins,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -package,0.8800000000000001,1.0,0.7833333333333333,0.85,1,26 -k,0.425,1.0,0.5,0.6333333333333333,1,26 -jelly,0.7616666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -fruit,0.7166666666666666,0.65,0.8999999999999998,0.7166666666666666,2,25 -apple,0.6333333333333333,0.8,0.6,0.6166666666666667,1,26 -bell,0.6599999999999999,1.0,0.6,0.7166666666666667,1,26 -battery,0.5499999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -jar,0.69,1.0,0.5833333333333333,0.7,1,26 -bound,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.44666666666666666,1.0,0.4,0.5666666666666667,1,26 -brush,0.6983333333333335,1.0,0.5333333333333333,0.6833333333333333,1,26 -scissors,0.6133333333333333,1.0,0.6499999999999999,0.75,1,26 -lime,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -toothpaste,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -top,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -spiral,0.6933333333333332,1.0,0.5833333333333333,0.7,1,26 -handles,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -eraser,0.7499999999999999,1.0,0.7,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -pitcher,0.7049999999999998,1.0,0.5999999999999999,0.7166666666666667,1,26 -phone,0.61,1.0,0.5833333333333333,0.7,1,26 -stick,0.7233333333333334,1.0,0.55,0.6833333333333333,1,25 -cereal,0.6933333333333334,1.0,0.55,0.6833333333333333,1,26 -bulb,0.8999999999999998,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.48166666666666663,1.0,0.4166666666666667,0.5833333333333333,1,26 -can,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -coca,0.5333333333333333,1.0,0.5499999999999999,0.6666666666666667,1,26 -crackers,0.9,1.0,0.85,0.9,1,26 -plate,0.605,1.0,0.5833333333333333,0.7,1,25 -calculator,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -tissues,0.5383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -juice,0.6733333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -pink,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -lemon,0.5499999999999999,1.0,0.4833333333333332,0.6166666666666666,1,26 -peach,0.58,1.0,0.4833333333333333,0.6333333333333334,1,26 -bowl,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6233333333333333,1.0,0.4333333333333333,0.6,1,26 -blue,0.7416666666666666,1.0,0.7,0.7833333333333333,1,25 -used,0.61,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.5966666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -ball,0.8683333333333332,1.0,0.75,0.8333333333333333,1,25 -notebook,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -garlic,0.7666666666666666,1.0,0.7333333333333333,0.8,1,26 -cleaning,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -pair,0.9083333333333332,1.0,0.9,0.9400000000000001,2,27 -container,0.61,1.0,0.6333333333333333,0.7333333333333333,1,25 -tomato,0.6083333333333333,0.8,0.5833333333333333,0.5833333333333334,1,26 -cellphone,0.49333333333333335,0.5,0.6833333333333332,0.5433333333333333,1,26 -potato,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,25 -light,0.8916666666666666,1.0,0.8666666666666668,0.9200000000000002,2,26 -green,0.95,0.85,1.0,0.9,3,23 -bottle,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6372376543209877 -F1-Score: 0.6783156966490301 -Precision: 0.8986111111111111 -Recall: 0.5979938271604938 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,25 -yellow,0.885,0.7666666666666666,1.0,0.8514285714285714,6,24 -looks,0.7716666666666667,0.8,0.7666666666666666,0.7,1,24 -keyboard,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.5766666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -flashlight,0.6083333333333334,1.0,0.5833333333333333,0.7,1,26 -cup,0.3816666666666667,0.5,0.6666666666666666,0.5333333333333334,1,26 -folded,0.8300000000000001,1.0,0.75,0.8166666666666667,1,26 -jam,0.5533333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -black,0.8666666666666668,0.725,1.0,0.8257142857142856,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.755,1.0,0.65,0.75,1,26 -soccer,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -hat,0.635,1.0,0.6,0.7166666666666667,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -coffee,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -handle,0.5549999999999999,1.0,0.6333333333333333,0.7333333333333333,1,25 -food,0.6366666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -towel,0.56,1.0,0.4833333333333333,0.6333333333333333,1,26 -chips,0.795,1.0,0.6333333333333333,0.75,1,26 -stapler,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -onion,0.93,1.0,0.85,0.9,1,26 -bag,0.605,1.0,0.5833333333333333,0.7,1,26 -sponge,0.61,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.7033333333333334,1.0,0.6,0.7166666666666667,1,25 -special,0.5583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -colgate,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -leaf,0.4916666666666666,1.0,0.55,0.6666666666666666,1,26 -tube,0.8266666666666665,1.0,0.7833333333333333,0.85,1,26 -cell,0.4666666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -mug,0.6399999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -yogurt,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -plantain,0.6333333333333333,0.8,0.6333333333333333,0.6333333333333333,1,26 -red,0.8966666666666668,0.775,1.0,0.8590476190476191,3,26 -pepper,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -wheat,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -kleenex,0.575,1.0,0.5333333333333333,0.6666666666666667,1,26 -toothbrush,0.7766666666666666,1.0,0.6499999999999999,0.75,1,26 -binder,0.6383333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -baseball,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -pliers,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7866666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -thins,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -package,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -k,0.58,1.0,0.4833333333333333,0.6333333333333333,1,26 -jelly,0.465,1.0,0.4666666666666666,0.6166666666666667,1,26 -fruit,0.6516666666666666,0.6166666666666666,0.8666666666666666,0.67,2,25 -apple,0.5666666666666667,0.9,0.5499999999999999,0.6166666666666667,1,26 -bell,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -battery,0.59,1.0,0.5166666666666666,0.65,1,26 -jar,0.53,1.0,0.4833333333333333,0.6333333333333334,1,26 -bound,0.715,1.0,0.6166666666666666,0.7333333333333334,1,26 -lettuce,0.655,1.0,0.6,0.7166666666666667,1,26 -brush,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -lime,0.705,1.0,0.6333333333333333,0.7333333333333333,1,25 -toothpaste,0.635,1.0,0.4999999999999999,0.65,1,26 -top,0.635,1.0,0.5833333333333333,0.7,1,26 -spiral,0.6083333333333333,1.0,0.5166666666666666,0.65,1,26 -handles,0.5916666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -camera,0.59,1.0,0.5166666666666666,0.65,1,26 -eraser,0.4966666666666666,1.0,0.5499999999999999,0.6666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6433333333333333,0.85,0.6333333333333332,0.6333333333333333,1,26 -pitcher,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -phone,0.58,1.0,0.5333333333333332,0.6666666666666666,1,26 -stick,0.775,1.0,0.6666666666666666,0.7666666666666667,1,25 -cereal,0.6300000000000001,1.0,0.45,0.6166666666666667,1,26 -bulb,0.8550000000000001,1.0,0.8333333333333333,0.9,2,26 -hair,0.63,1.0,0.5499999999999999,0.6666666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8200000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -can,0.93,1.0,0.9,0.9400000000000001,2,24 -coca,0.6666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -crackers,0.5,1.0,0.4666666666666666,0.6166666666666667,1,26 -plate,0.6933333333333332,1.0,0.6333333333333333,0.7333333333333333,1,25 -calculator,0.6216666666666667,1.0,0.5166666666666666,0.65,1,26 -tissues,0.76,1.0,0.6166666666666666,0.7333333333333334,1,26 -juice,0.6416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -pink,0.65,1.0,0.65,0.75,1,25 -lemon,0.5133333333333333,1.0,0.5,0.6333333333333333,1,26 -peach,0.5916666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -bowl,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -blue,0.9016666666666666,1.0,0.8,0.8666666666666666,1,25 -used,0.4666666666666666,1.0,0.5999999999999999,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -ball,0.5633333333333332,1.0,0.4666666666666666,0.6166666666666666,1,25 -notebook,0.61,1.0,0.5166666666666666,0.65,1,26 -garlic,0.5083333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -cleaning,0.7466666666666667,1.0,0.65,0.75,1,26 -pair,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -container,0.71,1.0,0.7,0.7833333333333333,1,25 -tomato,0.5266666666666666,0.6,0.5999999999999999,0.5399999999999999,1,26 -cellphone,0.905,1.0,0.8333333333333333,0.8833333333333332,1,26 -potato,0.6683333333333333,1.0,0.5166666666666666,0.65,1,25 -light,0.9600000000000002,1.0,0.9333333333333332,0.9600000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6444907407407408 -F1-Score: 0.6836992945326279 -Precision: 0.9012345679012346 -Recall: 0.6060185185185184 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.75,1.0,0.6499999999999999,0.75,1,24 -yellow,0.9433333333333334,0.85,1.0,0.9,6,24 -looks,0.5716666666666665,0.9,0.6166666666666666,0.65,1,24 -keyboard,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.76,1.0,0.5833333333333333,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.805,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -cup,0.2266666666666667,0.5,0.5833333333333333,0.51,1,26 -folded,0.7916666666666667,1.0,0.7166666666666666,0.8,1,26 -jam,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -black,0.915,0.8333333333333333,1.0,0.8933333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.8083333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -soccer,0.705,1.0,0.6499999999999999,0.75,1,26 -hat,0.6849999999999999,1.0,0.5833333333333333,0.7,1,26 -brown,0.9216666666666666,1.0,0.9,0.9400000000000001,2,24 -coffee,0.6749999999999999,1.0,0.6499999999999999,0.75,1,25 -handle,0.605,1.0,0.6333333333333332,0.7333333333333333,1,25 -food,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,25 -towel,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -chips,0.625,1.0,0.6833333333333333,0.7666666666666666,1,26 -stapler,0.7649999999999999,1.0,0.6333333333333333,0.75,1,26 -onion,0.4666666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -bag,0.8466666666666665,1.0,0.75,0.8333333333333333,1,26 -sponge,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7216666666666667,1.0,0.65,0.75,1,26 -special,0.615,1.0,0.55,0.6833333333333333,1,26 -colgate,0.76,1.0,0.6833333333333333,0.7833333333333333,1,26 -leaf,0.575,1.0,0.5499999999999999,0.6666666666666666,1,26 -tube,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666666,1,26 -cell,0.65,1.0,0.5999999999999999,0.7,1,26 -mug,0.7466666666666666,1.0,0.6499999999999999,0.75,1,25 -yogurt,0.6666666666666667,1.0,0.7,0.7833333333333333,1,26 -plantain,0.6599999999999999,1.0,0.65,0.75,1,26 -red,0.8983333333333334,0.7833333333333333,1.0,0.8600000000000001,3,26 -pepper,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -wheat,0.735,1.0,0.65,0.75,1,26 -kleenex,0.5666666666666667,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -binder,0.7716666666666666,1.0,0.7,0.7833333333333333,1,26 -baseball,0.8433333333333334,1.0,0.7,0.8,1,26 -pliers,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -thins,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -package,0.6466666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -k,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -jelly,0.76,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.7566666666666666,0.6166666666666667,0.9666666666666666,0.7300000000000001,2,26 -apple,0.5466666666666667,0.8,0.5333333333333333,0.5833333333333333,1,25 -bell,0.7883333333333333,1.0,0.65,0.7666666666666667,1,26 -battery,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -jar,0.46333333333333326,1.0,0.4666666666666666,0.6166666666666667,1,26 -bound,0.6466666666666666,1.0,0.4999999999999999,0.65,1,26 -lettuce,0.5916666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -scissors,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -lime,0.7516666666666667,1.0,0.5833333333333333,0.7166666666666667,1,25 -toothpaste,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -top,0.6166666666666666,1.0,0.6499999999999999,0.75,1,26 -spiral,0.575,1.0,0.5833333333333333,0.7,1,26 -handles,0.6633333333333333,1.0,0.5833333333333333,0.7,1,25 -camera,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -eraser,0.725,1.0,0.6833333333333333,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.675,1.0,0.5666666666666667,0.7,1,26 -pitcher,0.49333333333333335,1.0,0.4999999999999999,0.6333333333333333,1,26 -phone,0.805,1.0,0.7166666666666666,0.8,1,26 -stick,0.7383333333333333,1.0,0.7,0.7833333333333333,1,25 -cereal,0.5733333333333334,1.0,0.4999999999999999,0.65,1,26 -bulb,0.875,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.6633333333333333,1.0,0.6499999999999999,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -coca,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -crackers,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.8216666666666667,1.0,0.7833333333333333,0.85,1,25 -calculator,0.35333333333333333,0.6,0.5666666666666667,0.52,1,26 -tissues,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -juice,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -pink,0.705,1.0,0.5999999999999999,0.7166666666666666,1,25 -lemon,0.5766666666666667,1.0,0.5166666666666666,0.65,1,26 -peach,0.6933333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.6583333333333334,1.0,0.65,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -blue,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333334,1,25 -used,0.7233333333333334,1.0,0.5499999999999999,0.6833333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.7716666666666667,1.0,0.7,0.7833333333333333,1,26 -ball,0.6433333333333333,1.0,0.5333333333333332,0.6666666666666666,1,25 -notebook,0.8883333333333333,1.0,0.8,0.8666666666666666,1,26 -garlic,0.6933333333333332,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.735,1.0,0.6166666666666666,0.7333333333333333,1,26 -pair,0.9333333333333332,1.0,0.9333333333333332,0.96,2,27 -container,0.6383333333333333,1.0,0.5333333333333332,0.6666666666666666,1,25 -tomato,0.6416666666666667,0.75,0.6666666666666666,0.6166666666666667,1,26 -cellphone,0.78,1.0,0.7166666666666666,0.8,1,26 -potato,0.6466666666666667,1.0,0.7,0.7833333333333333,1,25 -light,0.8416666666666666,1.0,0.8333333333333333,0.9,2,25 -green,0.9666666666666668,0.9,1.0,0.9333333333333332,3,23 -bottle,0.93,1.0,0.8999999999999998,0.9400000000000001,2,26 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6641666666666667 -F1-Score: 0.7007716049382716 -Precision: 0.9030864197530865 -Recall: 0.6257716049382716 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7316666666666667,1.0,0.5666666666666667,0.7,1,24 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.48166666666666663,1.0,0.4333333333333334,0.6,1,24 -keyboard,0.8266666666666665,1.0,0.7333333333333333,0.8166666666666668,1,26 -glue,0.89,1.0,0.75,0.8333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6083333333333333,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.6566666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -cup,0.43499999999999994,0.5,0.6,0.52,1,26 -folded,0.7916666666666667,1.0,0.7,0.7833333333333333,1,26 -jam,0.7933333333333332,1.0,0.7,0.7833333333333333,1,26 -black,1.0,1.0,1.0,1.0,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -soccer,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -hat,0.76,1.0,0.6666666666666666,0.7666666666666667,1,26 -brown,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -coffee,0.605,1.0,0.5166666666666666,0.65,1,25 -handle,0.7633333333333333,1.0,0.7166666666666666,0.8,1,25 -food,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -towel,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -chips,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -stapler,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -onion,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -bag,0.7333333333333333,1.0,0.6,0.7166666666666666,1,26 -sponge,0.5,1.0,0.5499999999999999,0.6666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.6966666666666667,1.0,0.65,0.75,1,25 -special,0.7716666666666667,1.0,0.6499999999999999,0.75,1,26 -colgate,0.6183333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -leaf,0.58,1.0,0.4666666666666666,0.6166666666666667,1,26 -tube,0.6166666666666666,1.0,0.5999999999999999,0.7,1,26 -cell,0.3166666666666667,0.6,0.5166666666666666,0.5033333333333333,1,26 -mug,0.8100000000000002,1.0,0.7166666666666666,0.8,1,25 -yogurt,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -plantain,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -wheat,0.5583333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -kleenex,0.4666666666666667,1.0,0.4833333333333333,0.6166666666666667,1,26 -toothbrush,0.5166666666666666,1.0,0.5166666666666666,0.65,1,26 -binder,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.4833333333333333,1.0,0.4833333333333333,0.6166666666666666,1,26 -pliers,0.7166666666666666,1.0,0.65,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5016666666666667,1.0,0.45,0.6,1,26 -thins,0.6016666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -package,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -k,0.6683333333333333,1.0,0.65,0.75,1,26 -jelly,0.63,1.0,0.4999999999999999,0.6333333333333333,1,26 -fruit,0.755,0.8166666666666668,0.8,0.78,2,26 -apple,0.675,0.95,0.7,0.75,1,25 -bell,0.605,1.0,0.5166666666666666,0.65,1,26 -battery,0.695,1.0,0.4999999999999999,0.65,1,26 -jar,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -bound,0.665,1.0,0.4999999999999999,0.65,1,26 -lettuce,0.675,1.0,0.7,0.7833333333333333,1,26 -brush,0.5966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -lime,0.58,1.0,0.5333333333333333,0.6666666666666667,1,25 -toothpaste,0.6166666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -top,0.6966666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -spiral,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -handles,0.5566666666666666,1.0,0.4833333333333333,0.6333333333333333,1,25 -camera,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -eraser,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7916666666666666,1.0,0.7166666666666666,0.8,1,26 -pitcher,0.46333333333333326,1.0,0.4333333333333333,0.5833333333333333,1,26 -phone,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -stick,0.635,1.0,0.5166666666666666,0.65,1,25 -cereal,0.6183333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -bulb,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,27 -hair,0.7066666666666667,1.0,0.6,0.7166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -can,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coca,0.6583333333333333,1.0,0.6499999999999999,0.75,1,26 -crackers,0.5683333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.5633333333333332,1.0,0.5166666666666666,0.65,1,25 -calculator,0.5483333333333333,0.6,0.6499999999999999,0.5633333333333334,1,26 -tissues,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -juice,0.7,1.0,0.5833333333333333,0.7,1,26 -pink,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666667,1,25 -lemon,0.655,1.0,0.5833333333333333,0.7,1,26 -peach,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.74,1.0,0.5333333333333333,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -blue,0.5716666666666665,0.95,0.5166666666666666,0.6166666666666667,1,25 -used,0.5666666666666667,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.6133333333333333,1.0,0.5166666666666666,0.65,1,26 -ball,0.78,1.0,0.6333333333333333,0.75,1,25 -notebook,0.6799999999999999,1.0,0.4999999999999999,0.65,1,26 -garlic,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -cleaning,0.5466666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -pair,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -container,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,25 -tomato,0.6933333333333334,1.0,0.5166666666666666,0.6666666666666667,1,26 -cellphone,0.47000000000000003,0.5,0.5833333333333333,0.51,1,26 -potato,0.7016666666666667,1.0,0.6,0.7166666666666667,1,25 -light,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8566666666666667,1.0,0.8,0.8800000000000001,2,25 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6418672839506173 -F1-Score: 0.6784259259259259 -Precision: 0.9066358024691357 -Recall: 0.5896604938271605 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6933333333333334,1.0,0.5333333333333333,0.6666666666666667,1,24 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.875,0.9,0.85,0.8333333333333333,1,24 -keyboard,0.6333333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -glue,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6133333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -flashlight,0.5983333333333333,1.0,0.4999999999999999,0.65,1,26 -cup,0.5233333333333332,0.5,0.6333333333333333,0.5399999999999999,1,26 -folded,0.61,1.0,0.4833333333333333,0.6333333333333333,1,26 -jam,0.755,1.0,0.6166666666666666,0.7333333333333333,1,26 -black,0.77,0.625,1.0,0.7504761904761904,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5083333333333333,1.0,0.5166666666666666,0.65,1,26 -soccer,0.5133333333333333,1.0,0.45,0.6,1,26 -hat,0.6766666666666665,1.0,0.5999999999999999,0.7166666666666667,1,26 -brown,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -coffee,0.705,1.0,0.5666666666666667,0.7,1,26 -handle,0.6666666666666667,1.0,0.6,0.7166666666666667,1,25 -food,0.5516666666666666,1.0,0.4833333333333333,0.6333333333333333,1,25 -towel,0.4999999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -chips,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -onion,0.9266666666666665,1.0,0.85,0.9,1,26 -bag,0.8166666666666668,1.0,0.7333333333333333,0.8166666666666667,1,26 -sponge,0.5833333333333333,1.0,0.4999999999999999,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.7266666666666667,1.0,0.6499999999999999,0.75,1,25 -special,0.5166666666666666,1.0,0.5333333333333333,0.65,1,26 -colgate,0.7166666666666666,1.0,0.7166666666666666,0.8,1,26 -leaf,0.7899999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -tube,0.655,1.0,0.5499999999999999,0.6833333333333333,1,26 -cell,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -mug,0.6233333333333333,1.0,0.4999999999999999,0.65,1,26 -yogurt,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.7783333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -red,0.9100000000000001,0.7666666666666667,1.0,0.8466666666666667,3,26 -pepper,0.7633333333333333,1.0,0.65,0.75,1,26 -wheat,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -kleenex,0.6583333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -toothbrush,0.6666666666666666,1.0,0.55,0.6833333333333333,1,26 -binder,0.4966666666666667,1.0,0.5166666666666666,0.65,1,26 -baseball,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -pliers,0.75,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.7416666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -package,0.74,1.0,0.5666666666666667,0.7,1,26 -k,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -jelly,0.48,1.0,0.55,0.6666666666666667,1,26 -fruit,0.7233333333333334,0.8666666666666668,0.7666666666666667,0.7766666666666667,2,25 -apple,0.635,1.0,0.5333333333333333,0.6666666666666667,1,26 -bell,0.705,1.0,0.65,0.75,1,26 -battery,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -jar,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.8099999999999999,1.0,0.65,0.7666666666666667,1,26 -brush,0.635,1.0,0.5833333333333333,0.7,1,26 -scissors,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -lime,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666667,1,25 -toothpaste,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -top,0.8,1.0,0.7,0.7833333333333333,1,26 -spiral,0.6883333333333332,1.0,0.6,0.7166666666666667,1,26 -handles,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,25 -camera,0.5883333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -eraser,0.7633333333333334,1.0,0.6333333333333333,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -pitcher,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666666,1,26 -phone,0.755,1.0,0.7,0.7833333333333333,1,26 -stick,0.6833333333333333,1.0,0.6,0.7166666666666667,1,25 -cereal,0.725,1.0,0.6666666666666666,0.7666666666666666,1,26 -bulb,0.9083333333333332,1.0,0.9,0.9400000000000001,2,27 -hair,0.6799999999999999,1.0,0.5333333333333333,0.6666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6249999999999999,1.0,0.5166666666666666,0.65,1,26 -can,0.9,1.0,0.9,0.9400000000000001,2,24 -coca,0.62,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.5916666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -plate,0.51,1.0,0.4333333333333333,0.6,1,25 -calculator,0.61,1.0,0.5166666666666666,0.65,1,26 -tissues,0.8683333333333334,1.0,0.7833333333333333,0.85,1,26 -juice,0.7183333333333333,1.0,0.6,0.7166666666666667,1,26 -pink,0.58,1.0,0.4666666666666666,0.6166666666666666,1,25 -lemon,0.5466666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -peach,0.6849999999999999,1.0,0.5833333333333333,0.7,1,26 -bowl,0.6199999999999999,1.0,0.45,0.6166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5016666666666667,1.0,0.4833333333333332,0.6333333333333333,1,26 -blue,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333333,1,25 -used,0.715,1.0,0.6,0.7166666666666667,1,23 -energizer,0,0,0,0,1,26 -pear,0.8,1.0,0.7333333333333333,0.8166666666666668,1,26 -ball,0.7966666666666666,1.0,0.7166666666666666,0.8,1,25 -notebook,0.7583333333333332,1.0,0.7,0.7833333333333333,1,26 -garlic,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -cleaning,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -pair,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -container,0.575,1.0,0.6166666666666666,0.7166666666666667,1,25 -tomato,0.795,0.65,0.8833333333333332,0.6833333333333333,1,26 -cellphone,0.7833333333333332,1.0,0.7166666666666666,0.8,1,26 -potato,0.5016666666666667,1.0,0.5166666666666666,0.65,1,25 -light,0.875,1.0,0.8333333333333334,0.9000000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.93,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6641975308641976 -F1-Score: 0.6946031746031746 -Precision: 0.9102623456790124 -Recall: 0.6120370370370369 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8566666666666667,1.0,0.7333333333333333,0.8166666666666667,1,25 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.48500000000000004,0.95,0.4666666666666666,0.6,1,24 -keyboard,0.5583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -glue,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.7183333333333333,1.0,0.5666666666666667,0.7,1,26 -flashlight,0.705,1.0,0.5499999999999999,0.6833333333333333,1,26 -cup,0.22999999999999998,0.5,0.45,0.47000000000000003,1,26 -folded,0.6466666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -jam,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333334,1,26 -black,0.905,0.7916666666666666,1.0,0.8657142857142859,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -soccer,0.5216666666666667,1.0,0.5,0.65,1,26 -hat,0.4833333333333334,1.0,0.5,0.6333333333333333,1,26 -brown,0.885,1.0,0.8333333333333333,0.9,2,25 -coffee,0.7916666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -handle,0.72,1.0,0.5666666666666667,0.7,1,25 -food,0.8300000000000001,1.0,0.7166666666666666,0.8,1,25 -towel,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -chips,0.7583333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.6799999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -onion,0.53,1.0,0.5499999999999999,0.6666666666666667,1,26 -bag,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -sponge,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -special,0.8016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -colgate,0.6900000000000001,1.0,0.5666666666666667,0.7,1,26 -leaf,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -tube,0.605,1.0,0.5833333333333333,0.7,1,26 -cell,0.6483333333333333,1.0,0.55,0.6833333333333333,1,26 -mug,0.5799999999999998,1.0,0.4333333333333334,0.6,1,26 -yogurt,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -plantain,0.6833333333333333,1.0,0.6666666666666666,0.75,1,26 -red,0.8550000000000001,0.675,1.0,0.7923809523809524,3,26 -pepper,0.4333333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -wheat,0.6433333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -kleenex,0.6333333333333334,1.0,0.6166666666666666,0.7166666666666666,1,26 -toothbrush,0.6916666666666667,1.0,0.5833333333333333,0.7,1,26 -binder,0.55,1.0,0.45,0.6,1,26 -baseball,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -pliers,0.505,1.0,0.4999999999999999,0.6333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7283333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -thins,0.7416666666666666,1.0,0.6499999999999999,0.75,1,26 -package,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -k,0.725,1.0,0.6499999999999999,0.75,1,26 -jelly,0.8216666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -fruit,0.6483333333333333,0.65,0.8333333333333333,0.7033333333333334,2,26 -apple,0.6666666666666666,0.95,0.6666666666666666,0.7333333333333333,1,25 -bell,0.6783333333333333,1.0,0.5,0.65,1,26 -battery,0.755,1.0,0.65,0.75,1,26 -jar,0.6266666666666667,1.0,0.4999999999999999,0.65,1,26 -bound,0.5466666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -lettuce,0.73,1.0,0.6499999999999999,0.75,1,26 -brush,0.6433333333333333,1.0,0.5166666666666666,0.65,1,26 -scissors,0.6416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.625,1.0,0.5999999999999999,0.7166666666666666,1,25 -toothpaste,0.65,1.0,0.5999999999999999,0.7166666666666666,1,26 -top,0.5633333333333332,1.0,0.5499999999999999,0.6666666666666666,1,26 -spiral,0.6633333333333333,1.0,0.5,0.65,1,26 -handles,0.5399999999999999,1.0,0.5166666666666666,0.65,1,25 -camera,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333334,1,26 -eraser,0.5666666666666667,1.0,0.5999999999999999,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7066666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -pitcher,0.6799999999999999,1.0,0.65,0.75,1,26 -phone,0.5883333333333333,1.0,0.55,0.6833333333333333,1,26 -stick,0.58,1.0,0.5666666666666667,0.6833333333333333,1,25 -cereal,0.5633333333333332,1.0,0.4666666666666666,0.6166666666666667,1,26 -bulb,0.93,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333334,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7916666666666667,1.0,0.7,0.7833333333333333,1,26 -can,0.93,1.0,0.9,0.9400000000000001,2,27 -coca,0.755,1.0,0.65,0.75,1,26 -crackers,0.5883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -plate,0.7416666666666667,1.0,0.7,0.7833333333333333,1,25 -calculator,0.3466666666666667,0.55,0.5166666666666666,0.49333333333333335,1,26 -tissues,0.7433333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -juice,0.7216666666666666,1.0,0.7,0.7833333333333333,1,26 -pink,0.7,1.0,0.7166666666666666,0.8,1,25 -lemon,0.8133333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -peach,0.7416666666666667,1.0,0.6333333333333333,0.7333333333333334,1,26 -bowl,0.5666666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.78,1.0,0.6833333333333332,0.7666666666666666,1,26 -blue,0.6366666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -used,0.575,1.0,0.5666666666666667,0.6833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6716666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -ball,0.6733333333333333,1.0,0.5,0.65,1,25 -notebook,0.675,1.0,0.6166666666666666,0.7166666666666666,1,26 -garlic,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -cleaning,0.6,1.0,0.6833333333333333,0.7666666666666666,1,26 -pair,0.9266666666666665,1.0,0.9,0.9400000000000001,2,26 -container,0.6416666666666666,1.0,0.6,0.7166666666666667,1,25 -tomato,0.43,0.8,0.5666666666666667,0.5733333333333334,1,26 -cellphone,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -potato,0.625,1.0,0.6166666666666666,0.7166666666666666,1,25 -light,0.8550000000000001,1.0,0.8333333333333333,0.9,2,25 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,24 -bottle,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6466203703703705 -F1-Score: 0.6814638447971784 -Precision: 0.904783950617284 -Recall: 0.5964506172839507 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6499999999999999,1.0,0.6333333333333333,0.7333333333333333,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,23 -looks,0.7216666666666667,1.0,0.5833333333333333,0.7,1,24 -keyboard,0.5499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.46333333333333326,1.0,0.4833333333333334,0.6166666666666666,1,26 -flashlight,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.43499999999999994,0.5,0.55,0.5033333333333333,1,26 -folded,0.71,1.0,0.6666666666666666,0.7666666666666666,1,26 -jam,0.73,1.0,0.6499999999999999,0.75,1,26 -black,0.9166666666666667,0.8583333333333332,1.0,0.917142857142857,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -soccer,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -hat,0.8016666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -brown,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -coffee,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,25 -handle,0.605,1.0,0.5833333333333333,0.7,1,26 -food,0.5833333333333333,1.0,0.5833333333333333,0.7,1,24 -towel,0.6133333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -chips,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -stapler,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -onion,0.6316666666666666,0.8,0.6499999999999999,0.6333333333333333,1,26 -bag,0.5016666666666667,1.0,0.5166666666666666,0.65,1,26 -sponge,0.7416666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6133333333333333,1.0,0.45,0.6166666666666667,1,25 -special,0.6783333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -colgate,0.6166666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.8333333333333333,1.0,0.8166666666666667,0.8666666666666666,1,26 -tube,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -cell,0.38,0.6,0.5666666666666667,0.52,1,26 -mug,0.8,1.0,0.7,0.7833333333333333,1,25 -yogurt,0.4916666666666666,1.0,0.45,0.6,1,26 -plantain,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -red,0.8716666666666667,0.7583333333333333,1.0,0.8523809523809524,3,24 -pepper,0.7066666666666667,1.0,0.5666666666666667,0.7,1,26 -wheat,0.6933333333333332,1.0,0.55,0.6833333333333333,1,26 -kleenex,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -toothbrush,0.63,1.0,0.5333333333333333,0.6666666666666667,1,26 -binder,0.8300000000000001,1.0,0.7166666666666666,0.8,1,26 -baseball,0.7016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -pliers,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.575,1.0,0.4666666666666666,0.6166666666666666,1,26 -thins,0.4716666666666667,1.0,0.5166666666666666,0.65,1,26 -package,0.7333333333333334,1.0,0.7,0.7833333333333333,1,26 -k,0.5966666666666666,1.0,0.6,0.7166666666666667,1,26 -jelly,0.5833333333333333,1.0,0.55,0.6833333333333333,1,26 -fruit,0.7816666666666665,0.75,0.8666666666666666,0.7666666666666667,2,26 -apple,0.805,1.0,0.7166666666666666,0.8,1,25 -bell,0.6649999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -battery,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -jar,0.4716666666666667,1.0,0.5166666666666666,0.65,1,26 -bound,0.6383333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -lettuce,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -brush,0.4,1.0,0.4333333333333333,0.5833333333333333,1,26 -scissors,0.5716666666666665,1.0,0.5333333333333332,0.6666666666666666,1,26 -lime,0.7133333333333333,1.0,0.6499999999999999,0.75,1,25 -toothpaste,0.5383333333333333,1.0,0.41666666666666663,0.5833333333333333,1,26 -top,0.675,1.0,0.7499999999999999,0.8166666666666667,1,26 -spiral,0.6749999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -handles,0.605,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -eraser,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,19 -banana,0.7516666666666667,1.0,0.6333333333333333,0.75,1,26 -pitcher,0.7666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -phone,0.6399999999999999,1.0,0.55,0.6833333333333333,1,26 -stick,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666666,1,25 -cereal,0.6883333333333334,1.0,0.6,0.7166666666666667,1,26 -bulb,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -hair,0.725,1.0,0.5666666666666667,0.7,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5633333333333332,1.0,0.5499999999999999,0.6666666666666666,1,26 -can,0.8383333333333333,1.0,0.8,0.8800000000000001,2,24 -coca,0.7183333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -crackers,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -plate,0.7,1.0,0.6499999999999999,0.75,1,25 -calculator,0.5166666666666667,1.0,0.5166666666666666,0.65,1,26 -tissues,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -juice,0.5966666666666667,1.0,0.55,0.6833333333333333,1,26 -pink,0.6466666666666667,1.0,0.6333333333333332,0.7333333333333333,1,25 -lemon,0.5666666666666667,1.0,0.4833333333333332,0.6166666666666666,1,26 -peach,0.5166666666666666,1.0,0.5333333333333333,0.65,1,26 -bowl,0.6333333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7416666666666666,1.0,0.75,0.8166666666666667,1,26 -blue,0.585,0.85,0.5833333333333333,0.6,1,25 -used,0.5083333333333333,1.0,0.4833333333333333,0.6333333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.9466666666666667,1.0,0.9,0.9333333333333332,1,26 -ball,0.6,1.0,0.5833333333333333,0.7,1,25 -notebook,0.525,1.0,0.4499999999999999,0.6,1,26 -garlic,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -cleaning,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -pair,0.96,1.0,0.9333333333333332,0.96,2,26 -container,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -tomato,0.4716666666666667,0.6,0.5333333333333333,0.5133333333333333,1,26 -cellphone,0.3583333333333333,0.65,0.5333333333333333,0.5233333333333333,1,26 -potato,0.7350000000000001,1.0,0.6333333333333333,0.75,1,25 -light,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6313425925925926 -F1-Score: 0.6782363315696649 -Precision: 0.9010802469135802 -Recall: 0.595216049382716 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.805,1.0,0.6833333333333333,0.7833333333333333,1,24 -yellow,1.0,1.0,1.0,1.0,6,23 -looks,0.7216666666666666,1.0,0.6666666666666666,0.7666666666666667,1,24 -keyboard,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.8066666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.71,1.0,0.5666666666666667,0.7,1,26 -flashlight,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.31166666666666665,0.5,0.55,0.5033333333333333,1,26 -folded,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.6516666666666666,1.0,0.4999999999999999,0.65,1,26 -black,1.0,1.0,1.0,1.0,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7383333333333333,1.0,0.65,0.75,1,26 -soccer,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -hat,0.8416666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -brown,0.975,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.6649999999999999,1.0,0.5166666666666666,0.6666666666666667,1,25 -handle,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -food,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -towel,0.4966666666666666,1.0,0.5166666666666666,0.65,1,26 -chips,0.63,1.0,0.5499999999999999,0.6833333333333333,1,26 -stapler,0.6666666666666666,1.0,0.6666666666666666,0.75,1,26 -onion,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -bag,0.8083333333333332,1.0,0.75,0.8166666666666668,1,26 -sponge,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,25 -special,0.675,1.0,0.5999999999999999,0.7166666666666666,1,26 -colgate,0.5666666666666667,1.0,0.5999999999999999,0.7,1,26 -leaf,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -tube,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -cell,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -mug,0.66,1.0,0.5499999999999999,0.6833333333333333,1,25 -yogurt,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -plantain,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.9033333333333335,0.7666666666666666,1.0,0.8466666666666667,3,25 -pepper,0.605,1.0,0.4833333333333333,0.6333333333333333,1,26 -wheat,0.6666666666666666,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.7266666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -toothbrush,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.4833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -baseball,0.5166666666666667,1.0,0.5833333333333333,0.7,1,26 -pliers,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -thins,0.655,1.0,0.5833333333333333,0.7,1,26 -package,0.8733333333333334,1.0,0.7833333333333333,0.85,1,26 -k,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.6066666666666667,1.0,0.5833333333333333,0.7,1,26 -fruit,0.7849999999999999,0.7333333333333333,0.9,0.7866666666666667,2,25 -apple,0.5633333333333334,0.95,0.4999999999999999,0.6,1,25 -bell,0.7516666666666667,1.0,0.6,0.7166666666666667,1,26 -battery,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -jar,0.655,1.0,0.5833333333333333,0.7,1,26 -bound,0.6,1.0,0.6166666666666666,0.7166666666666666,1,26 -lettuce,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -brush,0.5966666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -scissors,0.4133333333333333,1.0,0.4833333333333333,0.6166666666666666,1,26 -lime,0.5583333333333333,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.6333333333333332,1.0,0.5833333333333333,0.7,1,26 -top,0.4883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -spiral,0.6266666666666667,1.0,0.6499999999999999,0.75,1,26 -handles,0.6833333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -camera,0.6716666666666666,1.0,0.6,0.7166666666666666,1,26 -eraser,0.755,1.0,0.7666666666666666,0.8333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.86,1.0,0.7333333333333333,0.8166666666666667,1,26 -pitcher,0.6166666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -phone,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -stick,0.63,1.0,0.5499999999999999,0.6666666666666667,1,25 -cereal,0.7716666666666666,1.0,0.7166666666666666,0.8,1,26 -bulb,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -hair,0.65,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6933333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -coca,0.505,1.0,0.4333333333333333,0.6,1,26 -crackers,0.7583333333333333,1.0,0.65,0.75,1,26 -plate,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666667,1,25 -calculator,0.7133333333333334,0.95,0.5833333333333333,0.6666666666666667,1,26 -tissues,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -juice,0.675,1.0,0.5333333333333333,0.6666666666666667,1,26 -pink,0.5416666666666667,1.0,0.5166666666666666,0.65,1,25 -lemon,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -peach,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -bowl,0.715,1.0,0.5666666666666667,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6883333333333332,1.0,0.5166666666666666,0.6666666666666667,1,26 -blue,0.63,1.0,0.5999999999999999,0.7166666666666666,1,25 -used,0.4666666666666666,1.0,0.5666666666666667,0.6833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.65,1.0,0.7333333333333333,0.8,1,26 -ball,0.6583333333333333,1.0,0.65,0.75,1,25 -notebook,0.7466666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -garlic,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -cleaning,0.775,1.0,0.7166666666666666,0.8,1,26 -pair,0.9016666666666666,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -tomato,0.5566666666666666,0.6,0.6666666666666666,0.5666666666666667,1,26 -cellphone,0.625,1.0,0.5166666666666666,0.65,1,26 -potato,0.675,1.0,0.5999999999999999,0.7166666666666667,1,25 -light,0.8749999999999998,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6492283950617284 -F1-Score: 0.6931481481481482 -Precision: 0.9120370370370371 -Recall: 0.6092592592592594 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666667,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.6133333333333335,0.9,0.65,0.6833333333333333,1,24 -keyboard,0.76,1.0,0.65,0.75,1,26 -glue,0.5999999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.75,1.0,0.6166666666666666,0.7333333333333333,1,26 -flashlight,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.4833333333333334,0.5,0.6333333333333333,0.5266666666666667,1,26 -folded,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -jam,0.8749999999999998,1.0,0.8,0.8666666666666666,1,26 -black,0.9100000000000001,0.8083333333333332,1.0,0.8790476190476191,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.58,1.0,0.4666666666666666,0.6166666666666667,1,26 -soccer,0.7383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -hat,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -brown,0.9066666666666666,1.0,0.8666666666666668,0.9200000000000002,2,24 -coffee,0.585,1.0,0.5333333333333333,0.6666666666666666,1,26 -handle,0.775,1.0,0.6833333333333333,0.7666666666666667,1,25 -food,0.5083333333333333,1.0,0.5166666666666666,0.65,1,24 -towel,0.7516666666666667,1.0,0.5666666666666667,0.7,1,26 -chips,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -stapler,0.6883333333333332,1.0,0.65,0.75,1,26 -onion,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -bag,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -sponge,0.6516666666666666,1.0,0.4999999999999999,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.6433333333333333,1.0,0.55,0.6833333333333333,1,25 -special,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -colgate,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -leaf,0.5549999999999999,1.0,0.4499999999999999,0.6,1,26 -tube,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -cell,0.74,1.0,0.6666666666666666,0.7666666666666666,1,26 -mug,0.7150000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -yogurt,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -plantain,0.475,1.0,0.4499999999999999,0.6,1,26 -red,0.9099999999999999,0.7666666666666666,1.0,0.8466666666666667,3,25 -pepper,0.7066666666666667,1.0,0.5833333333333333,0.7,1,26 -wheat,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -kleenex,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -toothbrush,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -binder,0.7933333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -baseball,0.4666666666666667,1.0,0.4333333333333333,0.5833333333333333,1,26 -pliers,0.5466666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.86,1.0,0.7833333333333333,0.85,1,26 -package,0.615,1.0,0.5499999999999999,0.6833333333333333,1,26 -k,0.375,1.0,0.4333333333333333,0.5833333333333333,1,26 -jelly,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -fruit,0.695,0.65,0.8666666666666666,0.72,2,25 -apple,0.51,0.9,0.5499999999999999,0.6,1,25 -bell,0.63,1.0,0.5833333333333333,0.7,1,26 -battery,0.65,1.0,0.6833333333333333,0.7666666666666667,1,26 -jar,0.53,1.0,0.4666666666666666,0.6166666666666666,1,26 -bound,0.5083333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -lettuce,0.5966666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -brush,0.6466666666666667,1.0,0.6333333333333332,0.7333333333333333,1,26 -scissors,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.625,1.0,0.6333333333333333,0.7333333333333333,1,25 -toothpaste,0.6016666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -top,0.79,1.0,0.6666666666666666,0.7666666666666666,1,26 -spiral,0.6916666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -handles,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -camera,0.625,1.0,0.5833333333333333,0.7,1,26 -eraser,0.4883333333333333,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7416666666666667,1.0,0.65,0.75,1,26 -pitcher,0.5,1.0,0.6,0.7,1,26 -phone,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -stick,0.6933333333333332,1.0,0.6333333333333333,0.7333333333333333,1,25 -cereal,0.5216666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -bulb,0.825,1.0,0.8,0.8800000000000001,2,26 -hair,0.575,1.0,0.4999999999999999,0.6333333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6300000000000001,1.0,0.6333333333333333,0.7333333333333333,1,26 -can,0.8799999999999999,1.0,0.8666666666666666,0.9200000000000002,2,24 -coca,0.6966666666666667,1.0,0.55,0.6833333333333333,1,26 -crackers,0.7333333333333333,1.0,0.6,0.7166666666666667,1,26 -plate,0.7183333333333333,1.0,0.6166666666666666,0.7333333333333334,1,25 -calculator,0.37333333333333335,0.5,0.5833333333333333,0.51,1,26 -tissues,0.7283333333333333,1.0,0.5666666666666667,0.7,1,26 -juice,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -pink,0.6016666666666667,1.0,0.5166666666666666,0.65,1,25 -lemon,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -peach,0.42666666666666664,1.0,0.4499999999999999,0.6,1,26 -bowl,0.7433333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -blue,0.7883333333333333,1.0,0.7166666666666666,0.8,1,25 -used,0.6966666666666665,1.0,0.6166666666666666,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.4766666666666667,1.0,0.4333333333333333,0.5833333333333333,1,26 -ball,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.5133333333333334,1.0,0.5166666666666666,0.65,1,26 -garlic,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.5883333333333334,1.0,0.55,0.6833333333333333,1,26 -pair,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -container,0.8099999999999999,1.0,0.7166666666666666,0.8,1,25 -tomato,0.67,0.85,0.5666666666666667,0.6333333333333333,1,26 -cellphone,0.7833333333333332,1.0,0.7166666666666666,0.8,1,26 -potato,0.635,1.0,0.5166666666666666,0.65,1,25 -light,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8800000000000001,1.0,0.8666666666666666,0.9199999999999999,2,25 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.634537037037037 -F1-Score: 0.6794973544973545 -Precision: 0.9057870370370371 -Recall: 0.594753086419753 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5733333333333334,1.0,0.4666666666666666,0.6166666666666667,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.6533333333333333,0.95,0.5333333333333333,0.6333333333333334,1,24 -keyboard,0.45,1.0,0.4833333333333333,0.6166666666666666,1,26 -glue,0.8300000000000001,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.5433333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -cup,0.31166666666666665,0.5,0.55,0.5033333333333333,1,26 -folded,0.675,1.0,0.5333333333333333,0.6666666666666666,1,26 -jam,0.4833333333333333,1.0,0.45,0.6,1,26 -black,0.9466666666666667,0.8666666666666666,1.0,0.9133333333333333,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -soccer,0.7133333333333333,1.0,0.7166666666666666,0.8,1,26 -hat,0.5966666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -brown,0.8266666666666668,1.0,0.8,0.8800000000000001,2,24 -coffee,0.78,1.0,0.7166666666666666,0.8,1,26 -handle,0.6883333333333332,1.0,0.5833333333333333,0.7,1,25 -food,0.7150000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -towel,0.8550000000000001,1.0,0.8333333333333333,0.8833333333333332,1,26 -chips,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333334,1,26 -stapler,0.7716666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -onion,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -bag,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -sponge,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.48,1.0,0.45,0.6,1,25 -special,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -colgate,0.8216666666666665,1.0,0.7166666666666666,0.8,1,26 -leaf,0.635,1.0,0.5666666666666667,0.7,1,26 -tube,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -cell,0.6066666666666667,0.5,0.6333333333333333,0.54,1,26 -mug,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -yogurt,0.5999999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -wheat,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -kleenex,0.705,1.0,0.6,0.7166666666666667,1,26 -toothbrush,0.6583333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -binder,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -baseball,0.75,1.0,0.6166666666666666,0.7333333333333334,1,26 -pliers,0.7,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -thins,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -package,0.6466666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -k,0.7183333333333333,1.0,0.5666666666666667,0.7,1,26 -jelly,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -fruit,0.835,0.85,0.9,0.8466666666666667,2,26 -apple,0.69,1.0,0.5666666666666667,0.7,1,25 -bell,0.8649999999999999,1.0,0.7333333333333333,0.8166666666666668,1,26 -battery,0.5133333333333333,1.0,0.5,0.6333333333333333,1,26 -jar,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.8,1.0,0.6833333333333333,0.7833333333333334,1,26 -lettuce,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -brush,0.775,1.0,0.7166666666666666,0.8,1,26 -scissors,0.6183333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -lime,0.74,1.0,0.6166666666666666,0.7333333333333334,1,25 -toothpaste,0.78,1.0,0.6333333333333333,0.75,1,26 -top,0.5599999999999999,1.0,0.5833333333333333,0.7,1,26 -spiral,0.63,1.0,0.4999999999999999,0.6333333333333333,1,26 -handles,0.6666666666666667,1.0,0.6499999999999999,0.75,1,25 -camera,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -eraser,0.6100000000000001,1.0,0.4833333333333333,0.6333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -pitcher,0.7416666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -phone,0.8150000000000001,1.0,0.6833333333333333,0.7833333333333333,1,26 -stick,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666667,1,25 -cereal,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -bulb,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,27 -hair,0.45499999999999996,1.0,0.4,0.5666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5916666666666666,1.0,0.5499999999999999,0.6666666666666667,1,26 -can,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,24 -coca,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -crackers,0.7383333333333333,1.0,0.6333333333333333,0.75,1,26 -plate,0.6583333333333333,1.0,0.5333333333333332,0.6666666666666666,1,25 -calculator,0.6266666666666667,0.9,0.5999999999999999,0.65,1,26 -tissues,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -juice,0.6466666666666667,1.0,0.65,0.75,1,26 -pink,0.5966666666666666,1.0,0.6166666666666666,0.7166666666666666,1,25 -lemon,0.63,1.0,0.65,0.75,1,26 -peach,0.6300000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.6016666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -blue,0.69,1.0,0.5999999999999999,0.7166666666666666,1,25 -used,0.675,1.0,0.5833333333333333,0.7,1,24 -energizer,0,0,0,0,1,26 -pear,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -ball,0.8083333333333333,1.0,0.7333333333333333,0.8166666666666668,1,25 -notebook,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -garlic,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -cleaning,0.6883333333333332,1.0,0.65,0.75,1,26 -pair,0.8666666666666666,1.0,0.8333333333333333,0.9,2,27 -container,0.5883333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -tomato,0.5333333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -cellphone,0.545,0.5,0.6166666666666666,0.53,1,26 -potato,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -light,0.8816666666666666,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,26 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6565277777777778 -F1-Score: 0.6904012345679013 -Precision: 0.9075617283950618 -Recall: 0.6052469135802468 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6883333333333332,1.0,0.5666666666666667,0.6833333333333333,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,25 -looks,0.6416666666666667,0.9,0.5833333333333333,0.6333333333333333,1,24 -keyboard,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.76,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.605,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -cup,0.35500000000000004,0.5,0.5833333333333333,0.51,1,26 -folded,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -jam,0.6766666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.9633333333333333,0.9166666666666666,1.0,0.9466666666666667,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -soccer,0.635,1.0,0.5999999999999999,0.7166666666666666,1,26 -hat,0.8116666666666668,1.0,0.6333333333333333,0.75,1,26 -brown,0.925,1.0,0.9,0.9400000000000001,2,26 -coffee,0.6133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,25 -handle,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -food,0.8466666666666667,1.0,0.8333333333333333,0.8833333333333332,1,25 -towel,0.585,1.0,0.5833333333333333,0.7,1,26 -chips,0.73,1.0,0.7,0.7833333333333333,1,26 -stapler,0.8,1.0,0.7333333333333333,0.8166666666666667,1,26 -onion,0.6616666666666667,0.8,0.6666666666666666,0.65,1,26 -bag,0.9166666666666666,1.0,0.85,0.9,1,26 -sponge,0.735,1.0,0.5666666666666667,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.5883333333333333,1.0,0.5833333333333333,0.7,1,25 -special,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -colgate,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -leaf,0.8133333333333332,1.0,0.7333333333333333,0.8166666666666667,1,26 -tube,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -cell,0.7333333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -mug,0.8166666666666667,1.0,0.6833333333333333,0.7833333333333333,1,25 -yogurt,0.7716666666666667,1.0,0.6333333333333333,0.75,1,26 -plantain,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -red,0.9016666666666667,0.8083333333333332,1.0,0.8790476190476191,3,25 -pepper,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -wheat,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.6983333333333333,1.0,0.6,0.7166666666666667,1,26 -toothbrush,0.655,1.0,0.6,0.7166666666666667,1,25 -binder,0.4416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -baseball,0.7466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -pliers,0.5249999999999999,1.0,0.4833333333333332,0.6166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,24 -water,0.705,1.0,0.6,0.7166666666666667,1,26 -thins,0.4833333333333334,1.0,0.5999999999999999,0.7,1,26 -package,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -k,0.8066666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -jelly,0.7016666666666667,1.0,0.6,0.7166666666666667,1,26 -fruit,0.7466666666666668,0.65,0.9333333333333332,0.7300000000000001,2,25 -apple,0.6433333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -bell,0.71,1.0,0.5999999999999999,0.7166666666666667,1,26 -battery,0.6,1.0,0.6,0.7,1,26 -jar,0.755,1.0,0.6166666666666666,0.7333333333333333,1,26 -bound,0.7566666666666666,1.0,0.6333333333333333,0.75,1,26 -lettuce,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -brush,0.4883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -scissors,0.6333333333333333,1.0,0.6666666666666666,0.75,1,26 -lime,0.7899999999999999,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.6633333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -top,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -spiral,0.6416666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.7049999999999998,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.7516666666666667,1.0,0.6499999999999999,0.75,1,26 -eraser,0.4133333333333333,1.0,0.4499999999999999,0.6,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.4916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -pitcher,0.6133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -phone,0.73,1.0,0.65,0.75,1,26 -stick,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666667,1,25 -cereal,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -bulb,0.8516666666666666,1.0,0.8,0.8800000000000001,2,26 -hair,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -can,0.8666666666666666,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.505,1.0,0.5166666666666666,0.65,1,26 -crackers,0.705,1.0,0.65,0.75,1,26 -plate,0.7416666666666666,1.0,0.7166666666666666,0.8,1,25 -calculator,0.7,0.85,0.7999999999999999,0.75,1,26 -tissues,0.4499999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -juice,0.6016666666666667,1.0,0.5166666666666666,0.6666666666666666,1,26 -pink,0.71,1.0,0.5666666666666667,0.7,1,25 -lemon,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -peach,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bowl,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -blue,0.6016666666666667,0.85,0.5833333333333333,0.6,1,25 -used,0.6499999999999999,1.0,0.6166666666666666,0.7166666666666666,1,23 -energizer,0,0,0,0,1,26 -pear,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -ball,0.7133333333333333,1.0,0.65,0.75,1,25 -notebook,0.5466666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -garlic,0.5,1.0,0.5333333333333333,0.65,1,26 -cleaning,0.6599999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -pair,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -container,0.5,1.0,0.5166666666666666,0.65,1,25 -tomato,0.5016666666666667,0.65,0.6499999999999999,0.5733333333333334,1,26 -cellphone,0.6666666666666666,1.0,0.6666666666666666,0.75,1,26 -potato,0.6083333333333333,1.0,0.5833333333333333,0.7,1,25 -light,0.8550000000000001,1.0,0.8333333333333333,0.9,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.805,1.0,0.7666666666666667,0.8600000000000001,2,25 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6534104938271605 -F1-Score: 0.6987566137566138 -Precision: 0.90625 -Recall: 0.622685185185185 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.73,1.0,0.7,0.7833333333333333,1,25 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.74,1.0,0.6666666666666666,0.7666666666666666,1,24 -keyboard,0.5816666666666668,1.0,0.4333333333333334,0.6,1,26 -glue,0.5333333333333333,1.0,0.4499999999999999,0.6,1,26 -milk,0,0,0,0,1,26 -cola,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -cup,0.4333333333333334,0.5,0.7,0.5533333333333335,1,26 -folded,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -jam,0.6,1.0,0.4833333333333333,0.6333333333333333,1,26 -black,0.9266666666666667,0.8333333333333333,1.0,0.8933333333333333,6,23 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.8966666666666667,1.0,0.8,0.8666666666666666,1,26 -soccer,0.6683333333333332,1.0,0.6499999999999999,0.75,1,26 -hat,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -brown,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,25 -coffee,0.765,1.0,0.6,0.7166666666666666,1,26 -handle,0.5716666666666665,1.0,0.5166666666666666,0.65,1,26 -food,0.6333333333333333,1.0,0.6333333333333332,0.7333333333333333,1,25 -towel,0.61,1.0,0.5333333333333333,0.6666666666666666,1,26 -chips,0.4666666666666666,1.0,0.4333333333333333,0.5833333333333333,1,26 -stapler,0.675,1.0,0.6833333333333333,0.7666666666666666,1,26 -onion,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -bag,0.705,1.0,0.65,0.75,1,26 -sponge,0.7350000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6799999999999999,1.0,0.6333333333333332,0.7333333333333333,1,25 -special,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -colgate,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -leaf,0.8666666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -tube,0.7133333333333334,1.0,0.55,0.6833333333333333,1,26 -cell,0.5266666666666666,0.55,0.7,0.5633333333333334,1,26 -mug,0.6866666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -yogurt,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -plantain,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -red,0.9433333333333334,0.85,1.0,0.8999999999999998,3,25 -pepper,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -wheat,0.5599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -kleenex,0.505,1.0,0.5666666666666667,0.6833333333333333,1,26 -toothbrush,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -binder,0.835,1.0,0.7833333333333333,0.85,1,26 -baseball,0.825,1.0,0.7333333333333333,0.8166666666666668,1,26 -pliers,0.47333333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7766666666666666,1.0,0.6499999999999999,0.75,1,26 -thins,0.755,1.0,0.6333333333333332,0.7333333333333333,1,26 -package,0.7133333333333333,1.0,0.7499999999999999,0.8166666666666668,1,26 -k,0.7683333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -jelly,0.5966666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -fruit,0.7733333333333333,0.6166666666666666,0.9333333333333332,0.7066666666666668,2,26 -apple,0.5666666666666667,1.0,0.5333333333333333,0.6666666666666666,1,25 -bell,0.69,1.0,0.6166666666666666,0.7333333333333334,1,26 -battery,0.525,1.0,0.6166666666666666,0.7166666666666666,1,26 -jar,0.6316666666666666,1.0,0.55,0.6833333333333333,1,26 -bound,0.7216666666666666,1.0,0.7,0.7833333333333333,1,26 -lettuce,0.775,1.0,0.7,0.7833333333333333,1,26 -brush,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -scissors,0.6133333333333333,1.0,0.5166666666666666,0.65,1,26 -lime,0.7916666666666666,1.0,0.7333333333333333,0.8166666666666667,1,25 -toothpaste,0.525,1.0,0.4666666666666666,0.6166666666666667,1,26 -top,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -spiral,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -handles,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.7133333333333333,1.0,0.65,0.75,1,26 -eraser,0.86,1.0,0.7333333333333333,0.8166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666668,1,26 -pitcher,0.6133333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -phone,0.63,1.0,0.5499999999999999,0.6833333333333333,1,26 -stick,0.5833333333333333,1.0,0.4833333333333333,0.6166666666666666,1,25 -cereal,0.8233333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -bulb,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -hair,0.64,1.0,0.55,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.775,1.0,0.7666666666666666,0.8333333333333333,1,26 -can,0.8733333333333334,1.0,0.8333333333333333,0.9,2,25 -coca,0.6766666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.605,1.0,0.4833333333333332,0.6333333333333333,1,26 -plate,0.7633333333333333,1.0,0.6499999999999999,0.75,1,25 -calculator,0.5916666666666667,0.65,0.6333333333333333,0.5833333333333333,1,26 -tissues,0.7,1.0,0.6499999999999999,0.75,1,26 -juice,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -pink,0.575,1.0,0.5666666666666667,0.6833333333333333,1,25 -lemon,0.6249999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -bowl,0.7016666666666665,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7183333333333333,1.0,0.65,0.75,1,26 -blue,0.5333333333333333,1.0,0.4666666666666666,0.6166666666666667,1,25 -used,0.8099999999999999,1.0,0.7166666666666666,0.8,1,24 -energizer,0,0,0,0,1,26 -pear,0.8166666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -ball,0.755,1.0,0.7,0.7833333333333333,1,25 -notebook,0.6,1.0,0.5833333333333333,0.7,1,26 -garlic,0.73,1.0,0.6499999999999999,0.75,1,26 -cleaning,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -pair,0.9016666666666666,1.0,0.8666666666666666,0.9200000000000002,2,27 -container,0.63,1.0,0.5833333333333333,0.7,1,25 -tomato,0.6649999999999999,0.7,0.6333333333333333,0.6,1,26 -cellphone,0.5549999999999999,0.55,0.6833333333333333,0.5666666666666667,1,26 -potato,0.6833333333333333,1.0,0.6499999999999999,0.75,1,25 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,25 -bottle,0.8683333333333334,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6608024691358025 -F1-Score: 0.6938888888888889 -Precision: 0.9004629629629629 -Recall: 0.6183641975308641 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6966666666666667,1.0,0.55,0.6833333333333333,1,25 -yellow,0.8583333333333334,0.7083333333333334,1.0,0.8123809523809523,6,23 -looks,0.5716666666666665,0.7,0.5999999999999999,0.5666666666666667,1,24 -keyboard,0.7066666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -glue,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.48,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.2416666666666667,0.5,0.5,0.47333333333333344,1,26 -folded,0.5766666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.78,1.0,0.6333333333333333,0.75,1,26 -black,0.9133333333333334,0.7833333333333333,1.0,0.86,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -soccer,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -hat,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -brown,0.8216666666666667,1.0,0.8,0.8800000000000001,2,24 -coffee,0.5166666666666667,1.0,0.55,0.6666666666666667,1,26 -handle,0.9083333333333334,1.0,0.8833333333333332,0.9166666666666666,1,25 -food,0.6799999999999999,1.0,0.65,0.75,1,25 -towel,0.5966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.4583333333333333,1.0,0.4833333333333333,0.6166666666666667,1,26 -stapler,0.8133333333333332,1.0,0.7499999999999999,0.8166666666666668,1,26 -onion,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -bag,0.65,1.0,0.5666666666666667,0.6833333333333333,1,26 -sponge,0.7916666666666666,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.6216666666666666,1.0,0.5166666666666666,0.6666666666666667,1,25 -special,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -colgate,0.76,1.0,0.7666666666666666,0.8333333333333333,1,26 -leaf,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -cell,0.47833333333333333,0.5,0.55,0.5033333333333333,1,26 -mug,0.5,1.0,0.4499999999999999,0.6,1,26 -yogurt,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -plantain,0.68,0.9,0.65,0.6833333333333333,1,26 -red,0.8766666666666666,0.7,1.0,0.8066666666666666,3,26 -pepper,0.38333333333333336,1.0,0.4833333333333334,0.6166666666666666,1,26 -wheat,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -toothbrush,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.7433333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -baseball,0.6916666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -pliers,0.63,1.0,0.55,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -thins,0.6966666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -package,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -k,0.67,1.0,0.5999999999999999,0.7166666666666667,1,26 -jelly,0.625,1.0,0.5333333333333333,0.6666666666666667,1,26 -fruit,0.6866666666666666,0.6666666666666666,0.8333333333333333,0.6866666666666668,2,26 -apple,0.575,0.75,0.6,0.5833333333333334,1,26 -bell,0.7983333333333333,1.0,0.6333333333333333,0.75,1,26 -battery,0.6216666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -jar,0.5,1.0,0.4999999999999999,0.6333333333333333,1,26 -bound,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -lettuce,0.7333333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -brush,0.8216666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -scissors,0.5333333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -lime,0.7416666666666666,1.0,0.6499999999999999,0.75,1,25 -toothpaste,0.8416666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -top,0.6233333333333333,1.0,0.5166666666666666,0.65,1,26 -spiral,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.6466666666666667,1.0,0.5833333333333333,0.7,1,25 -camera,0.4216666666666667,1.0,0.4333333333333333,0.5833333333333333,1,26 -eraser,0.6466666666666667,1.0,0.6,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.805,0.95,0.6833333333333333,0.75,1,26 -pitcher,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.6649999999999999,1.0,0.4666666666666666,0.6333333333333333,1,26 -stick,0.525,1.0,0.5166666666666666,0.65,1,25 -cereal,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -hair,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5916666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,0.8299999999999998,1.0,0.8,0.8800000000000001,2,25 -coca,0.39666666666666667,1.0,0.4833333333333333,0.6166666666666666,1,26 -crackers,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -plate,0.8699999999999999,1.0,0.7333333333333333,0.8166666666666668,1,25 -calculator,0.75,1.0,0.7166666666666666,0.8,1,26 -tissues,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -juice,0.7466666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -pink,0.58,1.0,0.4999999999999999,0.65,1,25 -lemon,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -peach,0.655,1.0,0.5999999999999999,0.7166666666666666,1,26 -bowl,0.4383333333333333,1.0,0.4,0.5666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.4133333333333333,1.0,0.36666666666666664,0.5333333333333333,1,26 -blue,0.6249999999999999,1.0,0.5833333333333333,0.7,1,25 -used,0.5499999999999999,1.0,0.4833333333333334,0.6166666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -ball,0.55,1.0,0.4833333333333332,0.6166666666666666,1,25 -notebook,0.575,1.0,0.6166666666666666,0.7166666666666667,1,26 -garlic,0.7166666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -cleaning,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -pair,0.9066666666666666,1.0,0.8666666666666666,0.9199999999999999,2,27 -container,0.5683333333333332,1.0,0.4833333333333333,0.6333333333333333,1,25 -tomato,0.6933333333333334,0.95,0.5833333333333333,0.6833333333333333,1,26 -cellphone,0.635,0.5,0.7333333333333333,0.5733333333333334,1,26 -potato,0.85,1.0,0.8166666666666667,0.8666666666666666,1,25 -light,0.9266666666666667,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.93,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.639320987654321 -F1-Score: 0.681657848324515 -Precision: 0.8945216049382716 -Recall: 0.605246913580247 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,25 -looks,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,24 -keyboard,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.55,1.0,0.4666666666666666,0.6166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.735,1.0,0.6166666666666666,0.7333333333333333,1,26 -flashlight,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -cup,0.4716666666666667,0.5,0.6666666666666666,0.5466666666666666,1,26 -folded,0.505,1.0,0.5166666666666666,0.65,1,26 -jam,0.69,1.0,0.6166666666666666,0.7333333333333333,1,26 -black,0.8933333333333333,0.7916666666666667,1.0,0.8723809523809525,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.45166666666666666,1.0,0.45,0.6,1,26 -soccer,0.5183333333333333,1.0,0.5166666666666666,0.65,1,26 -hat,0.6849999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -brown,0.8166666666666667,1.0,0.8,0.8800000000000001,2,24 -coffee,0.6216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -handle,0.7233333333333334,1.0,0.65,0.75,1,26 -food,0.5633333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -towel,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -chips,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -stapler,0.4716666666666667,1.0,0.4499999999999999,0.6,1,26 -onion,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -bag,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.6583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6883333333333332,1.0,0.6499999999999999,0.75,1,25 -special,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -colgate,0.505,1.0,0.4666666666666666,0.6166666666666667,1,26 -leaf,0.4133333333333333,1.0,0.4833333333333333,0.6166666666666666,1,26 -tube,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -cell,0.48166666666666674,0.55,0.6499999999999999,0.5466666666666666,1,26 -mug,0.6849999999999999,1.0,0.5666666666666667,0.7,1,26 -yogurt,0.5683333333333332,1.0,0.4666666666666666,0.6166666666666667,1,26 -plantain,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.95,0.85,1.0,0.9,3,26 -pepper,0.5133333333333334,1.0,0.5833333333333333,0.7,1,26 -wheat,0.71,1.0,0.6,0.7166666666666667,1,26 -kleenex,0.705,1.0,0.7,0.7833333333333333,1,26 -toothbrush,0.5666666666666667,1.0,0.5333333333333332,0.65,1,26 -binder,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -baseball,0.8,1.0,0.7499999999999999,0.8166666666666667,1,26 -pliers,0.4999999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5183333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -thins,0.4,1.0,0.41666666666666663,0.5666666666666667,1,26 -package,0.6933333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.6216666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -jelly,0.7083333333333333,1.0,0.6,0.7166666666666667,1,26 -fruit,0.9083333333333334,0.9166666666666666,0.9333333333333332,0.9066666666666666,2,27 -apple,0.6633333333333333,0.9,0.6333333333333333,0.6666666666666667,1,25 -bell,0.66,1.0,0.65,0.75,1,26 -battery,0.575,1.0,0.6166666666666666,0.7166666666666666,1,26 -jar,0.8416666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -bound,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -lettuce,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -brush,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -scissors,0.4916666666666666,1.0,0.5499999999999999,0.6666666666666667,1,26 -lime,0.5733333333333333,1.0,0.4833333333333333,0.6333333333333333,1,25 -toothpaste,0.6266666666666667,1.0,0.5,0.65,1,26 -top,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -spiral,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.6716666666666666,1.0,0.6,0.7166666666666667,1,25 -camera,0.6216666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -eraser,0.7216666666666666,1.0,0.7,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,23 -banana,0.74,1.0,0.6666666666666666,0.7666666666666667,1,26 -pitcher,0.6383333333333334,1.0,0.6333333333333333,0.7333333333333334,1,26 -phone,0.7933333333333332,1.0,0.7,0.7833333333333333,1,26 -stick,0.635,1.0,0.4999999999999999,0.65,1,25 -cereal,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -bulb,0.95,1.0,0.9333333333333332,0.96,2,27 -hair,0.6016666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -can,0.915,1.0,0.8666666666666666,0.9199999999999999,2,25 -coca,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -crackers,0.805,1.0,0.6666666666666666,0.7666666666666667,1,26 -plate,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666667,1,25 -calculator,0.62,0.55,0.7166666666666666,0.5733333333333334,1,26 -tissues,0.6183333333333333,1.0,0.5166666666666666,0.65,1,26 -juice,0.6683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -pink,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,25 -lemon,0.45499999999999996,1.0,0.4666666666666666,0.6166666666666666,1,26 -peach,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -bowl,0.4133333333333334,1.0,0.45,0.6,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -blue,0.6,1.0,0.5666666666666667,0.6833333333333333,1,25 -used,0.5349999999999999,1.0,0.4666666666666666,0.6166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.8683333333333334,1.0,0.75,0.8333333333333333,1,26 -ball,0.4966666666666667,1.0,0.4833333333333333,0.6166666666666666,1,25 -notebook,0.53,1.0,0.5499999999999999,0.6666666666666667,1,26 -garlic,0.7583333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -cleaning,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333334,1,26 -pair,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,27 -container,0.6183333333333334,1.0,0.4666666666666666,0.6166666666666666,1,25 -tomato,0.5266666666666666,0.85,0.5833333333333333,0.6,1,26 -cellphone,0.43833333333333335,0.55,0.5666666666666667,0.5233333333333333,1,26 -potato,0.655,1.0,0.6,0.7166666666666667,1,25 -light,0.8583333333333332,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,26 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6190586419753085 -F1-Score: 0.6719973544973548 -Precision: 0.901466049382716 -Recall: 0.5887345679012346 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5499999999999999,1.0,0.6166666666666666,0.7166666666666666,1,25 -yellow,0.9466666666666667,0.8666666666666666,1.0,0.9133333333333333,6,24 -looks,0.6299999999999999,0.65,0.7666666666666666,0.6333333333333334,1,24 -keyboard,0.425,1.0,0.4999999999999999,0.6333333333333333,1,26 -glue,0.64,1.0,0.4833333333333332,0.6333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.8300000000000001,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -cup,0.36833333333333335,0.5,0.6333333333333333,0.5266666666666666,1,26 -folded,0.6849999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -jam,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.8466666666666667,0.7416666666666667,1.0,0.8438095238095238,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7966666666666666,1.0,0.7,0.7833333333333333,1,26 -soccer,0.63,1.0,0.6499999999999999,0.75,1,26 -hat,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666667,1,26 -brown,0.8550000000000001,1.0,0.8333333333333333,0.9,2,24 -coffee,0.7883333333333333,1.0,0.6333333333333333,0.75,1,26 -handle,0.7433333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -food,0.5733333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -towel,0.655,1.0,0.6499999999999999,0.75,1,26 -chips,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -stapler,0.8233333333333335,1.0,0.7166666666666666,0.8,1,26 -onion,0.685,1.0,0.6,0.7166666666666667,1,26 -bag,0.48,1.0,0.4999999999999999,0.6333333333333333,1,26 -sponge,0.6333333333333333,1.0,0.7333333333333333,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.7633333333333334,1.0,0.6833333333333333,0.7833333333333333,1,25 -special,0.6416666666666666,1.0,0.7,0.7833333333333333,1,26 -colgate,0.635,1.0,0.5333333333333333,0.6666666666666667,1,26 -leaf,0.5683333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -tube,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.6133333333333333,1.0,0.5166666666666666,0.65,1,26 -mug,0.6333333333333334,1.0,0.65,0.75,1,26 -yogurt,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -plantain,0.89,1.0,0.75,0.8333333333333333,1,26 -red,0.9833333333333334,0.95,1.0,0.9666666666666666,3,25 -pepper,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -wheat,0.7383333333333333,1.0,0.65,0.75,1,26 -kleenex,0.6166666666666666,1.0,0.6666666666666666,0.75,1,26 -toothbrush,0.655,1.0,0.6,0.7166666666666667,1,26 -binder,0.6749999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -baseball,0.6383333333333334,1.0,0.55,0.6833333333333333,1,26 -pliers,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5716666666666665,1.0,0.5166666666666666,0.65,1,26 -thins,0.78,1.0,0.7166666666666666,0.8,1,26 -package,0.7749999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -k,0.71,1.0,0.65,0.75,1,26 -jelly,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -fruit,0.7733333333333333,0.7333333333333333,0.8999999999999998,0.7666666666666667,2,26 -apple,0.3833333333333333,1.0,0.38333333333333336,0.55,1,25 -bell,0.6466666666666667,1.0,0.6,0.7166666666666667,1,26 -battery,0.45499999999999996,1.0,0.5166666666666666,0.65,1,26 -jar,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -bound,0.655,1.0,0.5499999999999999,0.6833333333333333,1,26 -lettuce,0.7733333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -brush,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -scissors,0.7016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -lime,0.655,1.0,0.5666666666666667,0.6833333333333333,1,25 -toothpaste,0.4583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -top,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -spiral,0.75,1.0,0.65,0.75,1,26 -handles,0.7166666666666667,1.0,0.6833333333333333,0.7666666666666667,1,25 -camera,0.755,1.0,0.7166666666666666,0.8,1,26 -eraser,0.7166666666666666,1.0,0.7166666666666666,0.8,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.73,1.0,0.7,0.7833333333333333,1,26 -pitcher,0.8333333333333333,1.0,0.8333333333333333,0.8833333333333332,1,26 -phone,0.68,1.0,0.55,0.6833333333333333,1,26 -stick,0.7266666666666667,1.0,0.5833333333333333,0.7,1,25 -cereal,0.5133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.9349999999999999,1.0,0.8999999999999998,0.9400000000000001,2,27 -hair,0.5233333333333333,1.0,0.5166666666666666,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8166666666666667,1.0,0.8,0.85,1,26 -can,0.8916666666666666,1.0,0.8666666666666666,0.9200000000000002,2,24 -coca,0.45499999999999996,1.0,0.5166666666666666,0.65,1,26 -crackers,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -plate,0.505,1.0,0.4666666666666666,0.6166666666666667,1,25 -calculator,0.7366666666666666,0.65,0.7833333333333333,0.6333333333333333,1,26 -tissues,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -juice,0.4883333333333333,1.0,0.5,0.6333333333333333,1,26 -pink,0.7133333333333333,1.0,0.55,0.6833333333333333,1,25 -lemon,0.5249999999999999,1.0,0.4833333333333332,0.6166666666666666,1,26 -peach,0.6666666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -bowl,0.64,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.58,1.0,0.5833333333333333,0.7,1,26 -blue,0.7249999999999999,1.0,0.6499999999999999,0.75,1,25 -used,0.4216666666666667,0.5,0.5833333333333333,0.51,1,24 -energizer,0,0,0,0,1,26 -pear,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -ball,0.5433333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.8133333333333332,1.0,0.75,0.8166666666666667,1,26 -garlic,0.7266666666666667,1.0,0.55,0.6833333333333333,1,26 -cleaning,0.7633333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -pair,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,27 -container,0.58,1.0,0.5666666666666667,0.6833333333333333,1,25 -tomato,0.5033333333333333,0.7,0.6333333333333333,0.5733333333333335,1,26 -cellphone,0.565,1.0,0.4666666666666666,0.6166666666666667,1,26 -potato,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666668,1,25 -light,0.8916666666666666,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6491820987654322 -F1-Score: 0.6926587301587301 -Precision: 0.9008487654320987 -Recall: 0.6177469135802468 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.55,1.0,0.5999999999999999,0.7,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.565,0.85,0.5666666666666667,0.6,1,24 -keyboard,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -glue,0.5516666666666666,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.7566666666666666,1.0,0.6,0.7166666666666667,1,26 -flashlight,0.655,1.0,0.7,0.7833333333333333,1,26 -cup,0.24666666666666667,0.5,0.5666666666666667,0.5000000000000001,1,26 -folded,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -jam,0.5266666666666666,1.0,0.5833333333333333,0.7,1,26 -black,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6133333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -soccer,0.7133333333333333,1.0,0.6,0.7166666666666667,1,26 -hat,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -brown,1.0,1.0,1.0,1.0,2,24 -coffee,0.635,1.0,0.4833333333333332,0.6333333333333333,1,26 -handle,0.72,1.0,0.5999999999999999,0.7166666666666666,1,26 -food,0.73,1.0,0.6166666666666666,0.7333333333333333,1,25 -towel,0.6933333333333334,1.0,0.55,0.6833333333333333,1,26 -chips,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -stapler,0.6799999999999999,1.0,0.5166666666666666,0.6666666666666667,1,26 -onion,0.71,1.0,0.65,0.75,1,26 -bag,0.7499999999999999,1.0,0.7166666666666666,0.8,1,26 -sponge,0.625,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.725,1.0,0.7499999999999999,0.8166666666666667,1,25 -special,0.65,1.0,0.5833333333333333,0.7,1,26 -colgate,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -leaf,0.65,1.0,0.5833333333333333,0.7,1,26 -tube,0.6950000000000001,1.0,0.55,0.6833333333333333,1,26 -cell,0.4,0.6,0.5166666666666666,0.5166666666666666,1,26 -mug,0.8383333333333335,1.0,0.7333333333333333,0.8166666666666667,1,26 -yogurt,0.7433333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -plantain,0.7,1.0,0.7,0.7833333333333333,1,26 -red,0.8850000000000001,0.775,1.0,0.8590476190476191,3,24 -pepper,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -wheat,0.5216666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -kleenex,0.7633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -toothbrush,0.6666666666666667,1.0,0.6,0.7166666666666667,1,26 -binder,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.73,1.0,0.6,0.7166666666666667,1,26 -pliers,0.7833333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.69,1.0,0.4999999999999999,0.65,1,26 -thins,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -package,0.48,1.0,0.4499999999999999,0.6,1,26 -k,0.7333333333333333,1.0,0.8,0.85,1,26 -jelly,0.6766666666666666,1.0,0.65,0.75,1,26 -fruit,0.7266666666666667,0.65,0.9,0.7166666666666667,2,25 -apple,0.7000000000000001,0.95,0.65,0.7166666666666667,1,25 -bell,0.7683333333333333,1.0,0.65,0.75,1,26 -battery,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -jar,0.8083333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -bound,0.78,1.0,0.7166666666666666,0.8,1,26 -lettuce,0.7166666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -scissors,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -lime,0.63,1.0,0.6333333333333333,0.7333333333333333,1,25 -toothpaste,0.76,1.0,0.6666666666666666,0.7666666666666666,1,26 -top,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -handles,0.6016666666666667,1.0,0.5833333333333333,0.7,1,25 -camera,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -eraser,0.6649999999999999,1.0,0.55,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -pitcher,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -phone,0.75,1.0,0.7166666666666666,0.8,1,26 -stick,0.5833333333333333,1.0,0.5833333333333333,0.7,1,25 -cereal,0.6733333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -bulb,0.8816666666666666,1.0,0.8333333333333334,0.9000000000000001,2,26 -hair,0.6883333333333332,1.0,0.5666666666666667,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6683333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,0.8716666666666667,1.0,0.8333333333333333,0.9,2,25 -coca,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -crackers,0.8166666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -plate,0.6416666666666666,1.0,0.5833333333333333,0.7,1,25 -calculator,0.62,0.5,0.7333333333333333,0.5733333333333334,1,26 -tissues,0.7133333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -juice,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -pink,0.7066666666666667,1.0,0.5666666666666667,0.7,1,25 -lemon,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -peach,0.6566666666666666,1.0,0.55,0.6833333333333333,1,26 -bowl,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6,1.0,0.4333333333333333,0.6,1,26 -blue,0.43,1.0,0.4333333333333333,0.5833333333333333,1,25 -used,0.655,1.0,0.5999999999999999,0.7166666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.6883333333333332,1.0,0.6333333333333332,0.7333333333333333,1,26 -ball,0.7766666666666666,1.0,0.7166666666666666,0.8,1,25 -notebook,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -garlic,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -pair,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.6666666666666666,1.0,0.5833333333333333,0.7,1,25 -tomato,0.6733333333333335,0.75,0.7166666666666666,0.65,1,26 -cellphone,0.2583333333333333,0.55,0.4333333333333333,0.4566666666666667,1,26 -potato,0.6916666666666667,1.0,0.7,0.7833333333333333,1,25 -light,0.8433333333333334,1.0,0.8,0.8800000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6541975308641975 -F1-Score: 0.6915343915343917 -Precision: 0.898070987654321 -Recall: 0.6146604938271604 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -yellow,0.9466666666666667,0.8666666666666666,1.0,0.9133333333333333,6,24 -looks,0.47333333333333333,0.9,0.45,0.55,1,24 -keyboard,0.7833333333333334,1.0,0.7,0.7833333333333334,1,26 -glue,0.7166666666666666,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.78,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.3416666666666667,1.0,0.45,0.6,1,26 -cup,0.27,0.5,0.5166666666666666,0.4833333333333334,1,26 -folded,0.805,1.0,0.7166666666666666,0.8,1,26 -jam,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -black,0.8533333333333333,0.7416666666666666,1.0,0.839047619047619,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.63,1.0,0.5333333333333332,0.6666666666666666,1,26 -soccer,0.525,1.0,0.5499999999999999,0.6666666666666667,1,26 -hat,0.655,1.0,0.5833333333333333,0.7,1,26 -brown,0.8916666666666666,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -handle,0.8716666666666667,1.0,0.7833333333333333,0.85,1,25 -food,0.8416666666666668,1.0,0.8333333333333333,0.8833333333333332,1,24 -towel,0.6649999999999999,1.0,0.55,0.6833333333333333,1,26 -chips,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -stapler,0.71,1.0,0.7,0.7833333333333333,1,26 -onion,0.5333333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -bag,0.7016666666666667,1.0,0.65,0.75,1,26 -sponge,0.8183333333333334,1.0,0.65,0.7666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.5933333333333334,1.0,0.5833333333333333,0.7,1,25 -special,0.7416666666666666,1.0,0.7166666666666666,0.8,1,26 -colgate,0.5716666666666665,1.0,0.5833333333333333,0.7,1,26 -leaf,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -tube,0.6683333333333333,1.0,0.5166666666666666,0.65,1,26 -cell,0.6950000000000001,1.0,0.5666666666666667,0.7,1,26 -mug,0.7266666666666667,1.0,0.65,0.75,1,26 -yogurt,0.625,1.0,0.5333333333333333,0.6666666666666667,1,26 -plantain,0.7100000000000001,0.85,0.6666666666666666,0.6666666666666667,1,26 -red,0.9066666666666668,0.7916666666666666,1.0,0.8657142857142857,3,26 -pepper,0.7816666666666666,1.0,0.6333333333333333,0.75,1,26 -wheat,0.6633333333333333,1.0,0.5666666666666667,0.7,1,26 -kleenex,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -toothbrush,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -binder,0.45499999999999996,1.0,0.4666666666666666,0.6166666666666666,1,26 -baseball,0.61,1.0,0.5499999999999999,0.6833333333333333,1,26 -pliers,0.655,1.0,0.6499999999999999,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666667,1,26 -thins,0.6716666666666666,1.0,0.55,0.6833333333333333,1,26 -package,0.8166666666666667,1.0,0.7999999999999999,0.85,1,26 -k,0.6416666666666666,1.0,0.65,0.75,1,26 -jelly,0.805,1.0,0.5833333333333333,0.7166666666666667,1,26 -fruit,0.6616666666666666,0.65,0.8666666666666668,0.72,2,26 -apple,0.5983333333333334,0.85,0.5999999999999999,0.6333333333333333,1,25 -bell,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -battery,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -jar,0.6333333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -bound,0.5333333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -lettuce,0.765,1.0,0.6666666666666666,0.7666666666666666,1,26 -brush,0.6666666666666666,1.0,0.5333333333333333,0.6833333333333333,1,26 -scissors,0.73,1.0,0.7,0.7833333333333333,1,26 -lime,0.63,1.0,0.6166666666666666,0.7166666666666666,1,25 -toothpaste,0.8416666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -top,0.7466666666666667,1.0,0.5666666666666667,0.7,1,26 -spiral,0.7383333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -handles,0.8216666666666667,1.0,0.7833333333333333,0.85,1,25 -camera,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7266666666666666,0.95,0.7,0.75,1,26 -pitcher,0.5716666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -phone,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -stick,0.7833333333333333,1.0,0.7,0.7833333333333333,1,25 -cereal,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -bulb,0.8683333333333332,1.0,0.8333333333333333,0.9,2,26 -hair,0.7999999999999999,1.0,0.7499999999999999,0.8166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.675,1.0,0.6333333333333332,0.7333333333333333,1,26 -can,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -crackers,0.7,1.0,0.5499999999999999,0.6833333333333333,1,26 -plate,0.675,1.0,0.6333333333333333,0.7333333333333333,1,25 -calculator,0.61,0.75,0.6166666666666666,0.6,1,26 -tissues,0.7899999999999999,1.0,0.6333333333333333,0.75,1,26 -juice,0.69,1.0,0.4833333333333333,0.6333333333333333,1,26 -pink,0.69,1.0,0.5833333333333333,0.7,1,25 -lemon,0.78,1.0,0.6333333333333333,0.75,1,26 -peach,0.5766666666666665,1.0,0.4666666666666666,0.6166666666666666,1,26 -bowl,0.5333333333333333,1.0,0.5,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.63,1.0,0.5666666666666667,0.7,1,26 -blue,0.7583333333333333,1.0,0.7,0.7833333333333333,1,25 -used,0.725,1.0,0.6833333333333333,0.7666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.55,1.0,0.5499999999999999,0.6666666666666666,1,25 -notebook,0.7216666666666666,1.0,0.6499999999999999,0.75,1,26 -garlic,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -cleaning,0.7183333333333333,1.0,0.65,0.75,1,26 -pair,0.925,1.0,0.9,0.9400000000000001,2,26 -container,0.7416666666666666,1.0,0.7,0.7833333333333333,1,25 -tomato,0.5183333333333333,0.6,0.5999999999999999,0.5466666666666667,1,26 -cellphone,0.725,1.0,0.6666666666666666,0.7666666666666666,1,26 -potato,0.5883333333333333,1.0,0.4833333333333333,0.6333333333333333,1,25 -light,0.8883333333333333,1.0,0.8666666666666668,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6529166666666667 -F1-Score: 0.6908774250440918 -Precision: 0.9023148148148147 -Recall: 0.6124999999999999 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7916666666666666,1.0,0.7333333333333333,0.8166666666666667,1,25 -yellow,0.9800000000000001,0.95,1.0,0.9666666666666666,6,24 -looks,0.7083333333333333,1.0,0.6499999999999999,0.75,1,24 -keyboard,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -glue,0.7416666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.5216666666666667,1.0,0.4499999999999999,0.6,1,26 -flashlight,0.6833333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -cup,0.36833333333333335,0.5,0.4833333333333332,0.4766666666666667,1,26 -folded,0.6799999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -jam,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -black,0.85,0.6416666666666667,1.0,0.7657142857142857,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.4416666666666666,1.0,0.41666666666666663,0.5666666666666667,1,26 -soccer,0.5333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -hat,0.6,1.0,0.5833333333333333,0.7,1,26 -brown,0.9099999999999999,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -handle,0.7833333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -food,0.6749999999999999,1.0,0.6833333333333333,0.7666666666666666,1,25 -towel,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -chips,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.7266666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -bag,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -sponge,0.5133333333333333,1.0,0.4833333333333333,0.6166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.73,1.0,0.6499999999999999,0.75,1,25 -special,0.7466666666666666,1.0,0.6333333333333333,0.75,1,26 -colgate,0.8166666666666667,1.0,0.7833333333333333,0.85,1,26 -leaf,0.65,1.0,0.65,0.75,1,26 -tube,0.8966666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -cell,0.445,0.5,0.55,0.5033333333333333,1,26 -mug,0.6849999999999999,1.0,0.65,0.75,1,26 -yogurt,0.605,1.0,0.5499999999999999,0.6833333333333333,1,26 -plantain,0.6416666666666667,0.9,0.7,0.7166666666666666,1,26 -red,0.9433333333333336,0.8666666666666666,1.0,0.9133333333333333,3,25 -pepper,0.675,1.0,0.6833333333333333,0.7666666666666666,1,26 -wheat,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666668,1,26 -kleenex,0.7716666666666667,1.0,0.7,0.7833333333333333,1,26 -toothbrush,0.6166666666666666,1.0,0.6666666666666666,0.75,1,26 -binder,0.6666666666666666,1.0,0.4999999999999999,0.65,1,26 -baseball,0.7816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -pliers,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -thins,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -package,0.7833333333333333,1.0,0.6333333333333333,0.75,1,26 -k,0.6266666666666667,1.0,0.65,0.75,1,26 -jelly,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -fruit,0.695,0.5833333333333333,0.9333333333333332,0.7033333333333334,2,25 -apple,0.41,0.95,0.4166666666666667,0.55,1,25 -bell,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -battery,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -jar,0.5716666666666667,1.0,0.4499999999999999,0.6,1,26 -bound,0.6516666666666666,1.0,0.55,0.6833333333333333,1,26 -lettuce,0.76,1.0,0.7166666666666666,0.8,1,26 -brush,0.7633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -scissors,0.4966666666666666,1.0,0.4,0.5666666666666667,1,26 -lime,0.71,1.0,0.65,0.75,1,25 -toothpaste,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -top,0.6849999999999999,1.0,0.5666666666666667,0.7,1,26 -spiral,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -handles,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.53,1.0,0.4833333333333333,0.6333333333333334,1,26 -eraser,0.7266666666666667,1.0,0.65,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.58,0.95,0.5833333333333333,0.6666666666666667,1,26 -pitcher,0.4466666666666666,1.0,0.5166666666666666,0.65,1,26 -phone,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -stick,0.5633333333333334,1.0,0.5833333333333333,0.7,1,25 -cereal,0.605,1.0,0.5166666666666666,0.65,1,26 -bulb,0.8916666666666666,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.4766666666666667,1.0,0.4499999999999999,0.6,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.655,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,24 -coca,0.5349999999999999,1.0,0.5166666666666666,0.65,1,26 -crackers,0.7733333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -plate,0.825,1.0,0.8166666666666667,0.8666666666666666,1,25 -calculator,0.5933333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -tissues,0.4749999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -juice,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -pink,0.6983333333333334,1.0,0.5499999999999999,0.6833333333333333,1,25 -lemon,0.7333333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -peach,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -bowl,0.5349999999999999,1.0,0.5166666666666666,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5683333333333334,1.0,0.4499999999999999,0.6,1,26 -blue,0.6683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -used,0.8099999999999999,1.0,0.7166666666666666,0.8,1,24 -energizer,0,0,0,0,1,26 -pear,0.6216666666666667,1.0,0.65,0.75,1,26 -ball,0.7066666666666667,1.0,0.6499999999999999,0.75,1,25 -notebook,0.5966666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -garlic,0.7433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.775,1.0,0.7166666666666666,0.8,1,26 -pair,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -container,0.78,1.0,0.6666666666666666,0.7666666666666667,1,25 -tomato,0.7849999999999999,0.75,0.75,0.7166666666666667,1,26 -cellphone,0.5199999999999999,0.6,0.7,0.5733333333333334,1,26 -potato,0.36666666666666664,1.0,0.4833333333333334,0.6166666666666666,1,25 -light,0.925,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8833333333333332,1.0,0.8666666666666668,0.9200000000000002,2,25 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6453395061728394 -F1-Score: 0.6873368606701938 -Precision: 0.8999228395061728 -Recall: 0.6092592592592593 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -yellow,0.8899999999999999,0.7333333333333333,1.0,0.8266666666666665,6,23 -looks,0.49000000000000005,0.85,0.5166666666666666,0.5666666666666667,1,24 -keyboard,0.5716666666666665,1.0,0.5333333333333333,0.6666666666666667,1,26 -glue,0.5666666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6933333333333332,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.7183333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -cup,0.2816666666666667,0.5,0.5666666666666667,0.5,1,26 -folded,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -jam,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -black,0.8933333333333333,0.7833333333333333,1.0,0.86,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -soccer,0.755,1.0,0.6666666666666666,0.7666666666666666,1,26 -hat,0.5666666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -brown,0.9349999999999999,1.0,0.9,0.9400000000000001,2,24 -coffee,0.6933333333333334,1.0,0.5833333333333333,0.7,1,26 -handle,0.6333333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -food,0.6833333333333333,1.0,0.6666666666666666,0.75,1,24 -towel,0.86,1.0,0.7666666666666666,0.8333333333333333,1,26 -chips,0.66,1.0,0.55,0.6833333333333333,1,26 -stapler,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -bag,0.55,1.0,0.4999999999999999,0.6333333333333333,1,26 -sponge,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5399999999999999,1.0,0.41666666666666663,0.5833333333333333,1,26 -special,0.7183333333333333,1.0,0.6,0.7166666666666667,1,26 -colgate,0.5516666666666666,1.0,0.4499999999999999,0.6166666666666667,1,26 -leaf,0.735,1.0,0.5833333333333333,0.7,1,26 -tube,0.6133333333333333,1.0,0.5166666666666666,0.65,1,26 -cell,0.3833333333333333,1.0,0.4333333333333334,0.5833333333333333,1,26 -mug,0.8083333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -yogurt,0.6683333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -plantain,0.7816666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -red,0.9400000000000001,0.8833333333333332,1.0,0.9266666666666665,3,25 -pepper,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -wheat,0.7916666666666666,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.6683333333333333,1.0,0.5166666666666666,0.6666666666666666,1,26 -toothbrush,0.63,1.0,0.5499999999999999,0.6666666666666666,1,26 -binder,0.7216666666666666,1.0,0.6499999999999999,0.75,1,26 -baseball,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -pliers,0.7516666666666667,1.0,0.6,0.7166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -thins,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -package,0.6849999999999999,1.0,0.5833333333333333,0.7,1,26 -k,0.4766666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -jelly,0.8550000000000001,1.0,0.8333333333333334,0.8833333333333332,1,26 -fruit,0.6933333333333332,0.5666666666666667,0.9333333333333332,0.6900000000000001,2,25 -apple,0.38833333333333336,1.0,0.38333333333333336,0.55,1,25 -bell,0.6499999999999999,1.0,0.5833333333333333,0.7,1,26 -battery,0.4466666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -jar,0.5916666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -bound,0.705,1.0,0.6499999999999999,0.75,1,26 -lettuce,0.39666666666666667,1.0,0.45,0.6,1,26 -brush,0.8,1.0,0.7166666666666666,0.8,1,26 -scissors,0.685,1.0,0.5666666666666667,0.7,1,26 -lime,0.6799999999999999,1.0,0.65,0.75,1,25 -toothpaste,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -top,0.7,1.0,0.7333333333333333,0.8,1,26 -spiral,0.79,1.0,0.7166666666666666,0.8,1,26 -handles,0.6933333333333334,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.7583333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -eraser,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.705,1.0,0.5666666666666667,0.7,1,26 -pitcher,0.82,1.0,0.7333333333333333,0.8166666666666667,1,26 -phone,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -stick,0.7333333333333333,1.0,0.6,0.7166666666666667,1,25 -cereal,0.635,1.0,0.4999999999999999,0.65,1,26 -bulb,0.9400000000000001,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.74,1.0,0.5666666666666667,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5216666666666666,1.0,0.45,0.6,1,26 -can,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,25 -coca,0.7166666666666667,1.0,0.5666666666666667,0.7,1,26 -crackers,0.7433333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -plate,0.825,1.0,0.7333333333333333,0.8166666666666668,1,25 -calculator,0.6333333333333333,0.7,0.7166666666666666,0.6166666666666667,1,26 -tissues,0.715,1.0,0.5666666666666667,0.7,1,26 -juice,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -pink,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,25 -lemon,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -peach,0.74,1.0,0.6666666666666666,0.7666666666666667,1,26 -bowl,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -blue,0.5516666666666665,1.0,0.4666666666666666,0.6166666666666667,1,25 -used,0.5933333333333333,1.0,0.4833333333333332,0.6333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6683333333333332,1.0,0.4999999999999999,0.65,1,26 -ball,0.7333333333333333,1.0,0.7499999999999999,0.8166666666666667,1,25 -notebook,0.76,1.0,0.5833333333333333,0.7166666666666667,1,26 -garlic,0.635,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -pair,0.8150000000000001,1.0,0.7666666666666667,0.8600000000000001,2,26 -container,0.735,1.0,0.65,0.75,1,25 -tomato,0.45999999999999996,0.75,0.5333333333333332,0.5566666666666666,1,26 -cellphone,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -potato,0.53,1.0,0.5666666666666667,0.6833333333333333,1,25 -light,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6523148148148148 -F1-Score: 0.6849382716049383 -Precision: 0.9052469135802469 -Recall: 0.6030864197530863 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6499999999999999,1.0,0.6166666666666666,0.7166666666666666,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.6116666666666666,0.9,0.5166666666666666,0.6333333333333333,1,24 -keyboard,0.5633333333333334,1.0,0.5833333333333333,0.7,1,26 -glue,0.6483333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -flashlight,0.8666666666666666,1.0,0.7833333333333333,0.85,1,26 -cup,0.2916666666666667,0.55,0.4666666666666666,0.4766666666666667,1,26 -folded,0.5499999999999999,1.0,0.5999999999999999,0.7,1,26 -jam,0.65,1.0,0.6166666666666666,0.7333333333333333,1,26 -black,0.8766666666666666,0.75,1.0,0.8400000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.53,1.0,0.5166666666666666,0.65,1,26 -soccer,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -hat,0.6583333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -brown,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,24 -coffee,0.6333333333333333,1.0,0.6666666666666666,0.75,1,26 -handle,0.73,1.0,0.7,0.7833333333333333,1,25 -food,0.7283333333333333,1.0,0.5166666666666666,0.6666666666666667,1,25 -towel,0.5416666666666666,1.0,0.4499999999999999,0.6,1,26 -chips,0.4883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -onion,0.59,1.0,0.5333333333333333,0.6666666666666667,1,26 -bag,0.745,1.0,0.6166666666666666,0.7333333333333333,1,26 -sponge,0.85,1.0,0.8166666666666667,0.8666666666666668,1,26 -zero,0,0,0,0,1,26 -computer,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -special,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -leaf,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -tube,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.4333333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -mug,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -yogurt,0.7416666666666666,1.0,0.6499999999999999,0.75,1,26 -plantain,0.7449999999999999,1.0,0.5666666666666667,0.7,1,26 -red,0.8383333333333333,0.6833333333333333,1.0,0.798095238095238,3,26 -pepper,0.6416666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.7733333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -kleenex,0.5716666666666667,1.0,0.5,0.65,1,26 -toothbrush,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -binder,0.5416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -baseball,0.7133333333333333,1.0,0.65,0.75,1,26 -pliers,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.8800000000000001,1.0,0.8333333333333333,0.8833333333333332,1,26 -package,0.4583333333333333,1.0,0.3833333333333333,0.55,1,26 -k,0.7899999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.7183333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -fruit,0.6599999999999999,0.6333333333333334,0.8666666666666668,0.7033333333333334,2,25 -apple,0.5666666666666667,0.85,0.6333333333333333,0.6333333333333333,1,26 -bell,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -battery,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -jar,0.79,1.0,0.6833333333333333,0.7833333333333333,1,26 -bound,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -lettuce,0.5416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -brush,0.7,1.0,0.7333333333333333,0.8,1,26 -scissors,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -lime,0.78,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -top,0.7366666666666666,1.0,0.6,0.7166666666666667,1,26 -spiral,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -handles,0.78,1.0,0.6833333333333333,0.7833333333333333,1,25 -camera,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -eraser,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7100000000000001,1.0,0.6166666666666666,0.7333333333333334,1,26 -pitcher,0.7383333333333333,1.0,0.65,0.75,1,26 -phone,0.6933333333333332,1.0,0.7,0.7833333333333333,1,26 -stick,0.7433333333333334,1.0,0.5999999999999999,0.7166666666666666,1,25 -cereal,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -bulb,0.9266666666666665,1.0,0.9,0.9400000000000001,2,27 -hair,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5,1.0,0.4999999999999999,0.6333333333333333,1,26 -can,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -coca,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -crackers,0.4933333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -plate,0.6466666666666667,1.0,0.5166666666666666,0.6666666666666667,1,25 -calculator,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -tissues,0.865,1.0,0.7,0.8,1,26 -juice,0.8300000000000001,1.0,0.7166666666666666,0.8,1,26 -pink,0.6466666666666666,1.0,0.5833333333333333,0.7,1,25 -lemon,0.73,1.0,0.6499999999999999,0.75,1,26 -peach,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -bowl,0.6833333333333333,1.0,0.6,0.7166666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.425,1.0,0.38333333333333336,0.55,1,26 -blue,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -used,0.6166666666666667,1.0,0.5166666666666666,0.65,1,24 -energizer,0,0,0,0,1,26 -pear,0.6966666666666667,1.0,0.7,0.7833333333333333,1,26 -ball,0.6966666666666667,1.0,0.5999999999999999,0.7166666666666667,1,25 -notebook,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -garlic,0.705,1.0,0.7,0.7833333333333333,1,26 -cleaning,0.5716666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -pair,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -container,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -tomato,0.5883333333333334,0.7,0.6666666666666666,0.6,1,26 -cellphone,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -potato,0.63,1.0,0.5166666666666666,0.6666666666666667,1,25 -light,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.905,1.0,0.8666666666666666,0.9199999999999999,2,26 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6581635802469135 -F1-Score: 0.6963712522045855 -Precision: 0.9075617283950618 -Recall: 0.6166666666666666 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6166666666666666,1.0,0.5833333333333333,0.7,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,25 -looks,0.6716666666666666,0.8,0.6166666666666666,0.65,1,24 -keyboard,0.625,1.0,0.5499999999999999,0.6833333333333333,1,26 -glue,0.775,1.0,0.7666666666666666,0.8333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.7133333333333333,1.0,0.65,0.75,1,26 -cup,0.35666666666666674,0.5,0.5666666666666667,0.5000000000000001,1,26 -folded,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -jam,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -black,1.0,1.0,1.0,1.0,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7216666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -soccer,0.7133333333333334,1.0,0.5666666666666667,0.7,1,26 -hat,0.6433333333333333,1.0,0.5666666666666667,0.7,1,26 -brown,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -coffee,0.6016666666666668,1.0,0.5,0.65,1,25 -handle,0.71,1.0,0.65,0.75,1,25 -food,0.6799999999999999,1.0,0.5833333333333333,0.7,1,25 -towel,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -chips,0.6483333333333332,1.0,0.55,0.6833333333333333,1,26 -stapler,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -onion,0.6766666666666666,1.0,0.5666666666666667,0.7,1,26 -bag,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -sponge,0.575,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,25 -special,0.8216666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -colgate,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -leaf,0.61,1.0,0.5499999999999999,0.6833333333333333,1,26 -tube,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -cell,0.4883333333333333,0.5,0.6333333333333333,0.54,1,26 -mug,0.7416666666666666,1.0,0.7499999999999999,0.8166666666666667,1,25 -yogurt,0.8300000000000001,1.0,0.7,0.8,1,26 -plantain,0.7016666666666667,0.95,0.6166666666666666,0.7,1,26 -red,0.9016666666666667,0.8083333333333332,1.0,0.879047619047619,3,24 -pepper,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -wheat,0.7216666666666667,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.5549999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -toothbrush,0.53,1.0,0.5166666666666666,0.65,1,26 -binder,0.6666666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -baseball,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -pliers,0.7833333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.58,1.0,0.5833333333333333,0.7,1,26 -thins,0.665,1.0,0.5166666666666666,0.6666666666666667,1,26 -package,0.7633333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -k,0.35,1.0,0.4999999999999999,0.6333333333333333,1,26 -jelly,0.7983333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -fruit,0.7433333333333333,0.7166666666666667,0.8333333333333333,0.7333333333333334,2,26 -apple,0.58,1.0,0.5499999999999999,0.6666666666666666,1,25 -bell,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -battery,0.6133333333333333,1.0,0.65,0.75,1,26 -jar,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.7816666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.5583333333333333,1.0,0.55,0.6666666666666667,1,26 -brush,0.8266666666666665,1.0,0.7,0.8,1,26 -scissors,0.7966666666666666,1.0,0.75,0.8166666666666667,1,26 -lime,0.6216666666666667,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.7,1.0,0.5999999999999999,0.7166666666666666,1,26 -top,0.525,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -handles,0.7683333333333333,1.0,0.6499999999999999,0.75,1,25 -camera,0.5466666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -eraser,0.925,1.0,0.8833333333333332,0.9166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.705,0.95,0.7166666666666666,0.7666666666666667,1,26 -pitcher,0.5733333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -phone,0.635,1.0,0.5166666666666666,0.65,1,26 -stick,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -cereal,0.5,1.0,0.4333333333333333,0.5833333333333333,1,26 -bulb,0.96,1.0,0.9333333333333332,0.96,2,26 -hair,0.705,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6683333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -can,0.8833333333333332,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.8583333333333332,1.0,0.7833333333333333,0.85,1,26 -crackers,0.73,1.0,0.65,0.75,1,26 -plate,0.6216666666666667,1.0,0.6499999999999999,0.75,1,25 -calculator,0.6666666666666666,1.0,0.6666666666666666,0.75,1,26 -tissues,0.6683333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -juice,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -pink,0.6033333333333333,1.0,0.4833333333333333,0.6333333333333334,1,25 -lemon,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -peach,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -bowl,0.6599999999999999,1.0,0.4999999999999999,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -blue,0.6966666666666665,1.0,0.6,0.7166666666666667,1,25 -used,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -ball,0.63,1.0,0.55,0.6833333333333333,1,25 -notebook,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -garlic,0.655,1.0,0.7,0.7833333333333333,1,26 -cleaning,0.7083333333333333,1.0,0.7166666666666666,0.8,1,26 -pair,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,27 -container,0.7766666666666666,1.0,0.7166666666666666,0.8,1,25 -tomato,0.6050000000000001,0.55,0.6,0.55,1,26 -cellphone,0.38666666666666666,0.5,0.5166666666666666,0.4833333333333334,1,26 -potato,0.6966666666666665,1.0,0.6499999999999999,0.75,1,25 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8883333333333333,1.0,0.8666666666666668,0.9200000000000002,2,26 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6521296296296297 -F1-Score: 0.6942195767195768 -Precision: 0.9002314814814816 -Recall: 0.6155864197530863 diff --git a/Validation/UW_raw_75_object_0.7000000000000001.csv b/Validation/UW_raw_75_object_0.7000000000000001.csv deleted file mode 100644 index 14e1a8a..0000000 --- a/Validation/UW_raw_75_object_0.7000000000000001.csv +++ /dev/null @@ -1,2875 +0,0 @@ -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7133333333333333,1.0,0.65,0.75,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.755,0.9,0.7666666666666666,0.7666666666666667,1,24 -keyboard,0.5133333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -flashlight,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.315,0.5,0.65,0.5366666666666666,1,26 -folded,0.6683333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -jam,0.5633333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -black,0.9466666666666667,0.8666666666666666,1.0,0.9133333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7,1.0,0.7,0.7833333333333333,1,26 -soccer,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -hat,0.6816666666666666,1.0,0.6,0.7166666666666667,1,26 -brown,0.9333333333333332,1.0,0.9333333333333332,0.96,2,26 -coffee,0.66,1.0,0.5166666666666666,0.6666666666666667,1,25 -handle,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -food,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -towel,0.6833333333333333,1.0,0.65,0.75,1,26 -chips,0.6333333333333334,1.0,0.6666666666666666,0.75,1,26 -stapler,0.6083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -onion,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -bag,0.48,1.0,0.4999999999999999,0.6333333333333333,1,26 -sponge,0.4766666666666667,1.0,0.4499999999999999,0.6,1,26 -zero,0,0,0,0,1,26 -computer,0.5766666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -special,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -colgate,0.8800000000000001,1.0,0.8833333333333332,0.9166666666666666,1,26 -leaf,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -tube,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -cell,0.5316666666666666,0.55,0.6666666666666666,0.5566666666666666,1,26 -mug,0.6566666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -yogurt,0.755,1.0,0.65,0.75,1,26 -plantain,0.86,1.0,0.7333333333333333,0.8166666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.61,1.0,0.4999999999999999,0.65,1,26 -wheat,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -kleenex,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -toothbrush,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -binder,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -baseball,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -pliers,0.8133333333333332,1.0,0.7333333333333333,0.8166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.61,1.0,0.5666666666666667,0.6833333333333333,1,26 -thins,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -package,0.4083333333333333,1.0,0.5,0.6333333333333333,1,26 -k,0.53,1.0,0.4666666666666666,0.6166666666666667,1,26 -jelly,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -fruit,0.8666666666666666,0.8666666666666666,0.8666666666666668,0.8333333333333334,2,25 -apple,0.6166666666666667,0.95,0.6333333333333333,0.7,1,25 -bell,0.575,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -jar,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.7633333333333334,1.0,0.7,0.7833333333333333,1,26 -scissors,0.45499999999999996,1.0,0.45,0.6,1,26 -lime,0.5416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,25 -toothpaste,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -top,0.7366666666666666,1.0,0.6,0.7166666666666667,1,26 -spiral,0.7083333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -handles,0.605,1.0,0.5333333333333333,0.6666666666666667,1,25 -camera,0.5716666666666667,1.0,0.4999999999999999,0.65,1,26 -eraser,0.7083333333333334,1.0,0.6833333333333333,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7749999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -pitcher,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -phone,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -stick,0.635,1.0,0.5333333333333333,0.6666666666666667,1,25 -cereal,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.9400000000000001,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.655,1.0,0.5833333333333333,0.7,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -can,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,24 -coca,0.8666666666666666,1.0,0.7833333333333333,0.85,1,26 -crackers,0.7183333333333334,1.0,0.6,0.7166666666666666,1,26 -plate,0.6,1.0,0.4833333333333333,0.6333333333333333,1,25 -calculator,0.5866666666666667,0.65,0.65,0.5733333333333334,1,26 -tissues,0.755,1.0,0.7,0.7833333333333333,1,26 -juice,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -pink,0.7966666666666666,1.0,0.75,0.8166666666666667,1,25 -lemon,0.7433333333333334,1.0,0.65,0.75,1,26 -peach,0.7516666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -bowl,0.7666666666666667,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6883333333333332,1.0,0.6,0.7166666666666667,1,26 -blue,0.5466666666666666,1.0,0.4999999999999999,0.6333333333333333,1,25 -used,0.5933333333333334,1.0,0.6,0.7166666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.5499999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -ball,0.6466666666666667,1.0,0.5833333333333333,0.7,1,25 -notebook,0.5266666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -garlic,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -cleaning,0.7,1.0,0.7,0.7833333333333333,1,26 -pair,0.9400000000000001,1.0,0.9,0.9400000000000001,2,26 -container,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -tomato,0.6416666666666666,0.75,0.5999999999999999,0.5833333333333333,1,26 -cellphone,0.6666666666666667,0.5,0.7833333333333333,0.5900000000000001,1,26 -potato,0.7216666666666667,1.0,0.65,0.75,1,25 -light,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6448302469135803 -F1-Score: 0.6891666666666667 -Precision: 0.9030864197530865 -Recall: 0.6114197530864197 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7833333333333333,1.0,0.7499999999999999,0.8166666666666668,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,25 -looks,0.6916666666666667,0.85,0.7666666666666666,0.7333333333333333,1,24 -keyboard,0.76,1.0,0.6833333333333333,0.7833333333333333,1,26 -glue,0.6766666666666666,1.0,0.6,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -flashlight,0.71,1.0,0.5999999999999999,0.7166666666666667,1,26 -cup,0.4116666666666666,0.5,0.6,0.52,1,26 -folded,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -jam,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.8700000000000001,0.7416666666666667,1.0,0.839047619047619,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -soccer,0.7966666666666666,1.0,0.7,0.7833333333333333,1,26 -hat,0.65,1.0,0.6166666666666666,0.7166666666666666,1,26 -brown,0.9466666666666667,1.0,0.9333333333333332,0.96,2,24 -coffee,0.4916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -handle,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -food,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -towel,0.6666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -chips,0.58,1.0,0.4833333333333334,0.6333333333333333,1,26 -stapler,0.5916666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -onion,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -bag,0.655,1.0,0.5666666666666667,0.7,1,26 -sponge,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,25 -special,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -colgate,0.6799999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -leaf,0.73,1.0,0.6833333333333333,0.7666666666666666,1,26 -tube,0.675,1.0,0.6833333333333332,0.7666666666666666,1,26 -cell,0.4966666666666666,0.65,0.6833333333333333,0.5733333333333335,1,26 -mug,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,25 -yogurt,0.6466666666666667,1.0,0.5166666666666666,0.6666666666666666,1,26 -plantain,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -wheat,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -kleenex,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -toothbrush,0.6566666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -binder,0.4666666666666667,1.0,0.4833333333333333,0.6166666666666667,1,26 -baseball,0.705,1.0,0.5999999999999999,0.7166666666666666,1,26 -pliers,0.78,1.0,0.6333333333333333,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.575,1.0,0.5166666666666666,0.65,1,26 -thins,0.5333333333333333,1.0,0.5999999999999999,0.7,1,26 -package,0.69,1.0,0.5333333333333333,0.6666666666666666,1,26 -k,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -jelly,0.8133333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -fruit,0.8016666666666667,0.8,0.8666666666666666,0.7933333333333333,2,26 -apple,0.5,1.0,0.5333333333333333,0.6666666666666667,1,25 -bell,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -battery,0.725,1.0,0.6333333333333333,0.75,1,26 -jar,0.6083333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -bound,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.5249999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -brush,0.7633333333333334,1.0,0.6333333333333333,0.75,1,26 -scissors,0.7383333333333334,1.0,0.65,0.75,1,26 -lime,0.6833333333333333,1.0,0.5666666666666667,0.7,1,25 -toothpaste,0.63,1.0,0.6833333333333333,0.7666666666666666,1,26 -top,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -spiral,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -handles,0.6666666666666666,1.0,0.5833333333333333,0.7,1,25 -camera,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -eraser,0.7016666666666665,1.0,0.5499999999999999,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -pitcher,0.5666666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -phone,0.625,1.0,0.6333333333333332,0.7333333333333333,1,26 -stick,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -cereal,0.6716666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -bulb,0.8816666666666666,1.0,0.8333333333333333,0.9,2,26 -hair,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7533333333333333,1.0,0.5666666666666667,0.7,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -coca,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -crackers,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -plate,0.6683333333333333,1.0,0.6166666666666666,0.7333333333333334,1,25 -calculator,0.7333333333333333,0.9,0.7,0.7166666666666666,1,26 -tissues,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -juice,0.8083333333333332,1.0,0.8166666666666667,0.8666666666666668,1,26 -pink,0.645,1.0,0.4999999999999999,0.65,1,25 -lemon,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -peach,0.7133333333333333,1.0,0.7166666666666666,0.8,1,26 -bowl,0.5966666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -blue,0.755,1.0,0.6499999999999999,0.75,1,25 -used,0.5466666666666666,1.0,0.5166666666666666,0.65,1,24 -energizer,0,0,0,0,1,26 -pear,0.5933333333333334,1.0,0.6,0.7166666666666667,1,26 -ball,0.5466666666666666,1.0,0.45,0.6,1,25 -notebook,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.6183333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -cleaning,0.605,1.0,0.5499999999999999,0.6833333333333333,1,26 -pair,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -container,0.4966666666666666,1.0,0.4499999999999999,0.6,1,25 -tomato,0.715,0.9,0.6666666666666666,0.7,1,26 -cellphone,0.43833333333333335,0.65,0.5666666666666667,0.5366666666666667,1,26 -potato,0.8966666666666667,1.0,0.8,0.8666666666666668,1,25 -light,0.8933333333333333,1.0,0.8666666666666668,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6513425925925924 -F1-Score: 0.6930467372134038 -Precision: 0.9068672839506172 -Recall: 0.6131172839506172 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.7383333333333333,1.0,0.7,0.7833333333333333,1,24 -keyboard,0.4683333333333334,1.0,0.4666666666666666,0.6166666666666666,1,26 -glue,0.8166666666666667,1.0,0.7333333333333333,0.8166666666666668,1,26 -milk,0,0,0,0,1,26 -cola,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -flashlight,0.7183333333333333,1.0,0.65,0.75,1,26 -cup,0.44333333333333336,0.5,0.5499999999999999,0.5033333333333333,1,26 -folded,0.6100000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -jam,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.93,0.8166666666666667,1.0,0.8800000000000001,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5933333333333333,1.0,0.5166666666666666,0.65,1,26 -soccer,0.6399999999999999,1.0,0.6,0.7166666666666667,1,26 -hat,0.65,1.0,0.55,0.6833333333333333,1,26 -brown,0.9600000000000002,1.0,0.9333333333333332,0.9600000000000002,2,24 -coffee,0.7083333333333333,1.0,0.5833333333333333,0.7,1,26 -handle,0.6683333333333333,1.0,0.55,0.6833333333333333,1,25 -food,0.5933333333333334,1.0,0.5333333333333333,0.6666666666666667,1,25 -towel,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -chips,0.7583333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -stapler,0.9166666666666666,1.0,0.8833333333333332,0.9166666666666666,1,26 -onion,0.6833333333333333,1.0,0.5,0.65,1,26 -bag,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -sponge,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.7216666666666666,1.0,0.7166666666666666,0.8,1,25 -special,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -colgate,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -leaf,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -tube,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -cell,0.47000000000000003,0.55,0.6166666666666666,0.5399999999999999,1,26 -mug,0.705,1.0,0.5666666666666667,0.7,1,26 -yogurt,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -plantain,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -wheat,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -kleenex,0.5883333333333334,1.0,0.5166666666666666,0.6666666666666667,1,26 -toothbrush,0.8683333333333334,1.0,0.75,0.8333333333333333,1,26 -binder,0.6916666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.7016666666666667,1.0,0.6,0.7166666666666667,1,26 -pliers,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -thins,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -package,0.5783333333333334,1.0,0.4833333333333332,0.6333333333333333,1,26 -k,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -jelly,0.5666666666666667,1.0,0.5999999999999999,0.7,1,26 -fruit,0.7216666666666667,0.5666666666666667,0.9333333333333332,0.6533333333333333,2,25 -apple,0.6583333333333333,0.9,0.65,0.6833333333333333,1,25 -bell,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.7933333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -jar,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bound,0.6966666666666667,1.0,0.65,0.75,1,26 -lettuce,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.5266666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.8083333333333332,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -top,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.575,1.0,0.5166666666666666,0.65,1,26 -handles,0.655,1.0,0.6499999999999999,0.75,1,25 -camera,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -eraser,0.5733333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7150000000000001,1.0,0.5166666666666666,0.6666666666666667,1,26 -pitcher,0.5966666666666667,1.0,0.6166666666666666,0.7166666666666667,1,26 -phone,0.86,1.0,0.7666666666666666,0.8333333333333333,1,26 -stick,0.6716666666666666,1.0,0.6,0.7166666666666666,1,25 -cereal,0.5333333333333333,1.0,0.5999999999999999,0.7,1,26 -bulb,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5683333333333334,1.0,0.41666666666666663,0.5833333333333334,1,26 -can,0.925,1.0,0.9,0.9400000000000001,2,25 -coca,0.655,1.0,0.5833333333333333,0.7,1,26 -crackers,0.7216666666666667,1.0,0.6333333333333333,0.75,1,26 -plate,0.655,1.0,0.65,0.75,1,25 -calculator,0.6583333333333333,0.9,0.6833333333333333,0.7,1,26 -tissues,0.565,1.0,0.4833333333333334,0.6333333333333333,1,26 -juice,0.5516666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -pink,0.7083333333333333,1.0,0.65,0.75,1,25 -lemon,0.7133333333333333,1.0,0.65,0.75,1,26 -peach,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.5416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -blue,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -used,0.475,1.0,0.4999999999999999,0.6333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.5216666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -ball,0.71,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.46333333333333326,1.0,0.45,0.6,1,26 -garlic,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -cleaning,0.61,1.0,0.5499999999999999,0.6833333333333333,1,26 -pair,0.7983333333333333,1.0,0.7333333333333334,0.8400000000000001,2,26 -container,0.6433333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -tomato,0.5366666666666666,0.8,0.65,0.6333333333333333,1,26 -cellphone,0.41833333333333333,0.5,0.6333333333333333,0.5266666666666667,1,26 -potato,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.651358024691358 -F1-Score: 0.6895987654320989 -Precision: 0.9030864197530865 -Recall: 0.610185185185185 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.55,1.0,0.6166666666666666,0.7166666666666666,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.5833333333333333,0.95,0.5333333333333333,0.6333333333333333,1,24 -keyboard,0.6966666666666665,1.0,0.5666666666666667,0.7,1,26 -glue,0.8433333333333334,1.0,0.7,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.3883333333333333,1.0,0.38333333333333336,0.55,1,26 -cup,0.53,0.55,0.6833333333333333,0.5666666666666667,1,26 -folded,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -jam,0.6333333333333333,1.0,0.6666666666666666,0.75,1,26 -black,0.95,0.8833333333333332,1.0,0.9266666666666665,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6499999999999999,1.0,0.5999999999999999,0.7,1,26 -soccer,0.625,1.0,0.5499999999999999,0.6666666666666666,1,26 -hat,0.78,1.0,0.7166666666666666,0.8,1,26 -brown,0.905,1.0,0.8666666666666666,0.9199999999999999,2,25 -coffee,0.6966666666666667,1.0,0.7,0.7833333333333333,1,25 -handle,0.51,1.0,0.4833333333333333,0.6333333333333333,1,25 -food,0.7166666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -towel,0.39333333333333337,1.0,0.4999999999999999,0.6333333333333333,1,26 -chips,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -stapler,0.6166666666666667,1.0,0.55,0.6833333333333333,1,26 -onion,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -bag,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -sponge,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5249999999999999,1.0,0.5499999999999999,0.6666666666666666,1,25 -special,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -colgate,0.5983333333333334,1.0,0.5,0.65,1,26 -leaf,0.7499999999999999,1.0,0.7,0.7833333333333333,1,26 -tube,0.7333333333333333,1.0,0.65,0.75,1,26 -cell,0.64,0.55,0.7833333333333333,0.6,1,26 -mug,0.5216666666666666,1.0,0.5166666666666666,0.65,1,25 -yogurt,0.61,1.0,0.5333333333333333,0.6666666666666667,1,26 -plantain,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -wheat,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -kleenex,0.6599999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -toothbrush,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -binder,0.835,1.0,0.7333333333333333,0.8166666666666668,1,26 -baseball,0.6466666666666667,1.0,0.6499999999999999,0.75,1,26 -pliers,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.755,1.0,0.6499999999999999,0.75,1,26 -thins,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -package,0.7083333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -jelly,0.7016666666666665,1.0,0.6,0.7166666666666667,1,26 -fruit,0.865,0.7333333333333333,0.9666666666666666,0.8066666666666666,2,26 -apple,0.7216666666666667,0.8,0.7,0.65,1,26 -bell,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.6683333333333333,1.0,0.6,0.7166666666666667,1,26 -jar,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -bound,0.5916666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -lettuce,0.44666666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -brush,0.4999999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -scissors,0.53,1.0,0.5833333333333333,0.7,1,26 -lime,0.705,1.0,0.65,0.75,1,25 -toothpaste,0.5883333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -top,0.6749999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -spiral,0.625,1.0,0.6333333333333333,0.7333333333333334,1,26 -handles,0.625,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.75,1.0,0.6666666666666666,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -pitcher,0.6183333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -phone,0.6849999999999999,1.0,0.65,0.75,1,26 -stick,0.6216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -cereal,0.5466666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -bulb,0.885,1.0,0.8333333333333333,0.9,2,26 -hair,0.7966666666666666,1.0,0.7166666666666666,0.8,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7333333333333333,1.0,0.65,0.75,1,26 -can,0.8883333333333333,1.0,0.8666666666666668,0.9200000000000002,2,24 -coca,0.6766666666666666,1.0,0.65,0.75,1,26 -crackers,0.58,1.0,0.5166666666666666,0.65,1,26 -plate,0.8150000000000001,1.0,0.6833333333333333,0.7833333333333333,1,25 -calculator,0.7933333333333333,1.0,0.6333333333333333,0.75,1,26 -tissues,0.6166666666666667,1.0,0.6,0.7166666666666667,1,26 -juice,0.5166666666666667,1.0,0.5,0.6333333333333333,1,26 -pink,0.6766666666666666,1.0,0.5,0.65,1,25 -lemon,0.6933333333333334,1.0,0.55,0.6833333333333333,1,26 -peach,0.6183333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.7233333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7733333333333332,1.0,0.6833333333333333,0.7833333333333334,1,26 -blue,0.8150000000000001,1.0,0.6666666666666666,0.7666666666666666,1,25 -used,0.7633333333333334,1.0,0.6833333333333333,0.7833333333333334,1,24 -energizer,0,0,0,0,1,26 -pear,0.6799999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -ball,0.5133333333333334,1.0,0.36666666666666664,0.5333333333333333,1,25 -notebook,0.5316666666666666,1.0,0.41666666666666663,0.5833333333333333,1,26 -garlic,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333334,1,26 -cleaning,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -pair,0.9333333333333332,1.0,0.9333333333333332,0.96,2,27 -container,0.705,1.0,0.6333333333333333,0.7333333333333333,1,25 -tomato,0.8049999999999999,0.85,0.7833333333333333,0.75,1,26 -cellphone,0.6383333333333333,0.65,0.7166666666666666,0.6,1,26 -potato,0.73,1.0,0.5666666666666667,0.7,1,26 -light,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,25 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6522839506172841 -F1-Score: 0.6898765432098766 -Precision: 0.9066358024691357 -Recall: 0.6098765432098765 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -yellow,0.9633333333333333,0.9166666666666666,1.0,0.9466666666666667,6,24 -looks,0.705,0.95,0.5666666666666667,0.6666666666666666,1,24 -keyboard,0.775,1.0,0.7666666666666666,0.8333333333333333,1,26 -glue,0.4833333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.5499999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -flashlight,0.6216666666666666,1.0,0.6499999999999999,0.75,1,26 -cup,0.23833333333333334,0.5,0.55,0.5033333333333333,1,26 -folded,0.6883333333333332,1.0,0.55,0.6833333333333333,1,26 -jam,0.7833333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -black,0.8183333333333334,0.6416666666666667,1.0,0.7723809523809524,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.4383333333333333,1.0,0.5,0.6333333333333333,1,26 -soccer,0.6716666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -hat,0.605,1.0,0.5166666666666666,0.65,1,26 -brown,0.8816666666666666,1.0,0.8333333333333334,0.9000000000000001,2,25 -coffee,0.6333333333333332,1.0,0.6166666666666666,0.7166666666666666,1,26 -handle,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -food,0.8800000000000001,1.0,0.7833333333333333,0.85,1,25 -towel,0.5399999999999999,1.0,0.4499999999999999,0.6,1,26 -chips,0.7150000000000001,1.0,0.5333333333333333,0.6666666666666666,1,26 -stapler,0.5683333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.705,1.0,0.6499999999999999,0.75,1,26 -bag,0.7566666666666666,1.0,0.6499999999999999,0.75,1,26 -sponge,0.5083333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.63,1.0,0.5833333333333333,0.7,1,26 -special,0.575,1.0,0.5499999999999999,0.6833333333333333,1,26 -colgate,0.6499999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -leaf,0.65,1.0,0.6666666666666666,0.75,1,26 -tube,0.5816666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -cell,0.775,1.0,0.7166666666666666,0.8,1,26 -mug,0.7583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -yogurt,0.7216666666666666,1.0,0.65,0.75,1,26 -plantain,0.5466666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.7183333333333334,1.0,0.5666666666666667,0.7,1,26 -wheat,0.6983333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -kleenex,0.45999999999999996,1.0,0.4666666666666666,0.6166666666666667,1,26 -toothbrush,0.7016666666666667,1.0,0.5666666666666667,0.7,1,26 -binder,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -baseball,0.45,1.0,0.5,0.6333333333333333,1,26 -pliers,0.61,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,24 -water,0.6483333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -thins,0.78,1.0,0.7,0.7833333333333333,1,26 -package,0.6566666666666666,1.0,0.5666666666666667,0.7,1,26 -k,0.8,1.0,0.7499999999999999,0.8166666666666668,1,26 -jelly,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -fruit,0.71,0.5666666666666667,0.9,0.6766666666666667,2,25 -apple,0.42333333333333334,0.8,0.5499999999999999,0.55,1,25 -bell,0.885,1.0,0.75,0.8333333333333333,1,26 -battery,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -jar,0.63,1.0,0.5666666666666667,0.7,1,26 -bound,0.7,1.0,0.5999999999999999,0.7166666666666666,1,26 -lettuce,0.5333333333333333,1.0,0.5999999999999999,0.7,1,26 -brush,0.7166666666666666,1.0,0.6499999999999999,0.75,1,26 -scissors,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -lime,0.7633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -toothpaste,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666668,1,26 -top,0.63,1.0,0.5333333333333333,0.6666666666666666,1,26 -spiral,0.5166666666666666,1.0,0.55,0.6666666666666666,1,26 -handles,0.48,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.71,1.0,0.6666666666666666,0.7666666666666667,1,26 -eraser,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333334,1,26 -pitcher,0.505,1.0,0.4999999999999999,0.6333333333333333,1,26 -phone,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -stick,0.575,1.0,0.5166666666666666,0.65,1,25 -cereal,0.5166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -hair,0.6,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6933333333333334,1.0,0.6,0.7166666666666667,1,26 -can,0.8683333333333334,1.0,0.8333333333333333,0.9,2,25 -coca,0.655,1.0,0.5833333333333333,0.7,1,26 -crackers,0.5383333333333333,1.0,0.41666666666666663,0.5833333333333334,1,26 -plate,0.6049999999999999,1.0,0.5166666666666666,0.65,1,25 -calculator,0.7883333333333333,0.85,0.7,0.7,1,26 -tissues,0.51,1.0,0.4333333333333333,0.5833333333333333,1,26 -juice,0.93,1.0,0.85,0.9,1,26 -pink,0.585,1.0,0.5333333333333333,0.6666666666666667,1,25 -lemon,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -peach,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -bowl,0.7,1.0,0.7,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8083333333333332,1.0,0.7833333333333333,0.85,1,26 -blue,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,25 -used,0.8266666666666668,1.0,0.6833333333333333,0.7833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.775,1.0,0.7499999999999999,0.8166666666666667,1,26 -ball,0.6216666666666667,1.0,0.5999999999999999,0.7166666666666667,1,25 -notebook,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333334,1,26 -garlic,0.51,1.0,0.41666666666666663,0.5833333333333333,1,26 -cleaning,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -pair,0.9166666666666666,1.0,0.9,0.9400000000000001,2,27 -container,0.71,1.0,0.6499999999999999,0.75,1,25 -tomato,0.5383333333333333,0.65,0.5999999999999999,0.5566666666666666,1,26 -cellphone,0.665,1.0,0.5499999999999999,0.6833333333333333,1,26 -potato,0.775,1.0,0.6666666666666666,0.7666666666666667,1,25 -light,0.96,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6418055555555555 -F1-Score: 0.6868121693121693 -Precision: 0.90625 -Recall: 0.6054012345679012 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,24 -yellow,0.9333333333333333,0.85,1.0,0.9066666666666666,6,24 -looks,0.5433333333333333,0.9,0.55,0.6333333333333333,1,24 -keyboard,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -glue,0.8416666666666668,1.0,0.75,0.8333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.8166666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -cup,0.205,0.5,0.55,0.5033333333333333,1,26 -folded,0.59,1.0,0.4333333333333333,0.6,1,26 -jam,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -black,0.9133333333333334,0.7833333333333333,1.0,0.86,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5683333333333334,1.0,0.55,0.6833333333333333,1,26 -soccer,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -hat,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -brown,0.9166666666666666,1.0,0.9,0.9400000000000001,2,24 -coffee,0.6883333333333332,1.0,0.6,0.7166666666666666,1,25 -handle,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,25 -food,0.5933333333333333,1.0,0.5166666666666666,0.65,1,26 -towel,0.55,1.0,0.5499999999999999,0.6666666666666666,1,26 -chips,0.8150000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -stapler,0.5916666666666666,1.0,0.5166666666666666,0.65,1,26 -onion,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -bag,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -sponge,0.5883333333333334,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,25 -special,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -colgate,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -tube,0.605,1.0,0.5166666666666666,0.65,1,26 -cell,0.6950000000000001,0.5,0.85,0.6166666666666667,1,26 -mug,0.5433333333333332,1.0,0.41666666666666663,0.5833333333333333,1,25 -yogurt,0.85,1.0,0.7833333333333333,0.85,1,26 -plantain,0.6266666666666667,1.0,0.55,0.6833333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.835,1.0,0.7166666666666666,0.8,1,26 -wheat,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.6966666666666665,1.0,0.6833333333333333,0.7666666666666666,1,26 -toothbrush,0.5766666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -binder,0.7716666666666667,1.0,0.7,0.7833333333333333,1,26 -baseball,0.7083333333333333,1.0,0.6,0.7166666666666667,1,26 -pliers,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.65,1.0,0.6166666666666666,0.7333333333333333,1,26 -thins,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -package,0.7383333333333333,1.0,0.65,0.75,1,26 -k,0.8633333333333333,1.0,0.8166666666666667,0.8666666666666666,1,26 -jelly,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -fruit,0.7466666666666666,0.6833333333333333,0.8666666666666666,0.7200000000000001,2,25 -apple,0.6633333333333333,1.0,0.5,0.65,1,25 -bell,0.525,1.0,0.5499999999999999,0.6666666666666666,1,26 -battery,0.6183333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -jar,0.48500000000000004,1.0,0.4666666666666666,0.6166666666666667,1,26 -bound,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -lettuce,0.6683333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -brush,0.73,1.0,0.65,0.75,1,26 -scissors,0.765,1.0,0.5833333333333333,0.7166666666666667,1,26 -lime,0.7133333333333333,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.875,1.0,0.8333333333333333,0.8833333333333332,1,26 -top,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -spiral,0.585,1.0,0.5333333333333333,0.6666666666666667,1,26 -handles,0.4833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -camera,0.7016666666666667,1.0,0.5666666666666667,0.7,1,26 -eraser,0.7383333333333334,1.0,0.6333333333333333,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7416666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -pitcher,0.4883333333333333,1.0,0.4499999999999999,0.6,1,26 -phone,0.65,1.0,0.5666666666666667,0.6833333333333333,1,26 -stick,0.5233333333333333,1.0,0.4833333333333333,0.6333333333333333,1,25 -cereal,0.575,1.0,0.5833333333333333,0.7,1,26 -bulb,0.95,1.0,0.9333333333333332,0.96,2,27 -hair,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666668,1,26 -can,0.8916666666666668,1.0,0.8666666666666668,0.9200000000000002,2,24 -coca,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -crackers,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -plate,0.6816666666666666,1.0,0.5666666666666667,0.7,1,25 -calculator,0.375,1.0,0.4166666666666667,0.5666666666666667,1,26 -tissues,0.6966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -juice,0.5383333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -pink,0.7633333333333333,1.0,0.7,0.7833333333333333,1,25 -lemon,0.7533333333333333,1.0,0.5666666666666667,0.7,1,26 -peach,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333334,1,26 -bowl,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -blue,0.5999999999999999,1.0,0.5999999999999999,0.7,1,25 -used,0.6,1.0,0.5166666666666666,0.65,1,24 -energizer,0,0,0,0,1,26 -pear,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -ball,0.655,1.0,0.6,0.7166666666666667,1,25 -notebook,0.5583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -garlic,0.525,1.0,0.5333333333333332,0.6666666666666666,1,26 -cleaning,0.7233333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -pair,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -container,0.5683333333333334,1.0,0.5333333333333333,0.6666666666666667,1,25 -tomato,0.7183333333333333,0.75,0.7,0.6333333333333334,1,26 -cellphone,0.39333333333333337,0.55,0.5333333333333333,0.5033333333333333,1,26 -potato,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,25 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,25 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6410493827160493 -F1-Score: 0.6821296296296295 -Precision: 0.9029320987654321 -Recall: 0.5998456790123456 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.725,1.0,0.6166666666666666,0.7333333333333333,1,24 -yellow,0.9633333333333333,0.9,1.0,0.9333333333333332,6,24 -looks,0.4416666666666666,0.95,0.5499999999999999,0.6333333333333333,1,24 -keyboard,0.715,1.0,0.5666666666666667,0.7,1,26 -glue,0.7516666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.85,1.0,0.7833333333333333,0.85,1,26 -flashlight,0.8583333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -cup,0.37,0.5,0.6499999999999999,0.5366666666666667,1,26 -folded,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -jam,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -black,0.95,0.9,1.0,0.9380952380952381,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -soccer,0.8083333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -hat,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -brown,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -coffee,0.5883333333333334,1.0,0.5166666666666666,0.65,1,25 -handle,0.7083333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -food,0.7666666666666666,1.0,0.7166666666666666,0.8,1,25 -towel,0.7350000000000001,1.0,0.5666666666666667,0.7,1,26 -chips,0.7133333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.6416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -onion,0.77,1.0,0.6166666666666666,0.7333333333333333,1,26 -bag,0.7799999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.69,1.0,0.5499999999999999,0.6833333333333333,1,26 -special,0.4716666666666667,1.0,0.5166666666666666,0.65,1,26 -colgate,0.46333333333333326,1.0,0.4333333333333333,0.5833333333333333,1,26 -leaf,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -tube,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -cell,0.53,1.0,0.4999999999999999,0.6333333333333333,1,26 -mug,0.85,1.0,0.7666666666666666,0.8333333333333333,1,25 -yogurt,0.4416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -plantain,0.5333333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -wheat,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -kleenex,0.7083333333333333,1.0,0.65,0.75,1,26 -toothbrush,0.7833333333333333,1.0,0.7,0.7833333333333333,1,26 -binder,0.5966666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -baseball,0.6916666666666667,1.0,0.65,0.75,1,26 -pliers,0.6683333333333332,1.0,0.65,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.795,1.0,0.6833333333333333,0.7833333333333333,1,26 -thins,0.7133333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -package,0.7866666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -k,0.5966666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -jelly,0.655,1.0,0.6,0.7166666666666667,1,26 -fruit,0.7499999999999999,0.5166666666666667,0.9666666666666666,0.6599999999999999,2,25 -apple,0.6183333333333333,0.7,0.6166666666666666,0.5833333333333333,1,25 -bell,0.4833333333333333,1.0,0.4499999999999999,0.6,1,26 -battery,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -jar,0.6799999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -bound,0.8100000000000002,1.0,0.7166666666666666,0.8,1,26 -lettuce,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -brush,0.7183333333333334,1.0,0.5833333333333333,0.7,1,26 -scissors,0.58,1.0,0.6166666666666666,0.7166666666666666,1,26 -lime,0.5549999999999999,1.0,0.5499999999999999,0.6833333333333333,1,25 -toothpaste,0.44333333333333336,1.0,0.4,0.5666666666666667,1,26 -top,0.73,1.0,0.75,0.8166666666666667,1,26 -spiral,0.6133333333333333,1.0,0.5166666666666666,0.65,1,26 -handles,0.7083333333333333,1.0,0.7,0.7833333333333333,1,25 -camera,0.5216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -eraser,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7833333333333333,1.0,0.7999999999999999,0.85,1,26 -pitcher,0.635,1.0,0.5166666666666666,0.65,1,26 -phone,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -stick,0.6933333333333332,1.0,0.5499999999999999,0.6833333333333333,1,25 -cereal,0.5900000000000001,1.0,0.5,0.65,1,26 -bulb,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,26 -hair,0.6833333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8949999999999999,1.0,0.75,0.8333333333333333,1,26 -can,0.8416666666666668,1.0,0.8333333333333333,0.9,2,26 -coca,0.705,1.0,0.5499999999999999,0.6833333333333333,1,26 -crackers,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -plate,0.8583333333333332,1.0,0.7833333333333333,0.85,1,25 -calculator,0.6266666666666667,0.55,0.7666666666666666,0.5900000000000001,1,26 -tissues,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -juice,0.6183333333333334,1.0,0.4833333333333333,0.6333333333333334,1,26 -pink,0.5833333333333333,1.0,0.5833333333333333,0.7,1,25 -lemon,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -peach,0.5599999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.6316666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -blue,0.4916666666666666,1.0,0.5166666666666666,0.65,1,25 -used,0.6233333333333333,1.0,0.5333333333333332,0.6666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.6833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -ball,0.5766666666666667,1.0,0.5166666666666666,0.65,1,25 -notebook,0.805,1.0,0.7333333333333333,0.8166666666666668,1,26 -garlic,0.5216666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -cleaning,0.4999999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -pair,0.8633333333333333,1.0,0.8333333333333334,0.9000000000000001,2,26 -container,0.63,1.0,0.6333333333333333,0.7333333333333333,1,25 -tomato,0.5700000000000001,0.6,0.7,0.5800000000000001,1,26 -cellphone,0.5766666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -potato,0.6216666666666667,1.0,0.5333333333333332,0.6666666666666666,1,25 -light,0.8416666666666668,1.0,0.8333333333333333,0.9,2,25 -green,1.0,1.0,1.0,1.0,3,25 -bottle,0.96,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6476851851851853 -F1-Score: 0.6886552028218694 -Precision: 0.903858024691358 -Recall: 0.6094135802469135 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5716666666666667,1.0,0.5833333333333333,0.7,1,24 -yellow,0.9333333333333333,0.85,1.0,0.9066666666666666,6,24 -looks,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,24 -keyboard,0.6316666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -glue,0.7066666666666667,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.665,1.0,0.5999999999999999,0.7166666666666666,1,26 -flashlight,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.6283333333333333,0.5,0.7333333333333333,0.5733333333333334,1,26 -folded,0.48,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.6133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -black,0.8416666666666668,0.725,1.0,0.8323809523809524,6,20 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.4666666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -soccer,0.5683333333333332,1.0,0.5166666666666666,0.65,1,26 -hat,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.96,2,24 -coffee,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,25 -handle,0.735,1.0,0.6,0.7166666666666666,1,25 -food,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,25 -towel,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -chips,0.7416666666666666,1.0,0.6499999999999999,0.75,1,26 -stapler,0.6516666666666666,1.0,0.55,0.6833333333333333,1,26 -onion,0.5966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -bag,0.5416666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -sponge,0.8,1.0,0.6333333333333333,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.6549999999999999,1.0,0.5499999999999999,0.6833333333333333,1,25 -special,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -colgate,0.8066666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -leaf,0.8083333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -tube,0.5433333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -cell,0.44666666666666666,0.55,0.6833333333333333,0.5533333333333335,1,26 -mug,0.6933333333333332,1.0,0.65,0.75,1,25 -yogurt,0.76,1.0,0.6666666666666666,0.7666666666666666,1,26 -plantain,0.40499999999999997,1.0,0.4333333333333333,0.5833333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.6000000000000001,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.635,1.0,0.6,0.7166666666666667,1,26 -kleenex,0.6633333333333333,1.0,0.6,0.7166666666666666,1,26 -toothbrush,0.6399999999999999,1.0,0.6499999999999999,0.75,1,26 -binder,0.775,1.0,0.7,0.7833333333333333,1,26 -baseball,0.7333333333333333,1.0,0.6499999999999999,0.75,1,26 -pliers,0.8066666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.63,1.0,0.5166666666666666,0.65,1,26 -thins,0.4,1.0,0.4166666666666667,0.5666666666666667,1,26 -package,0.6466666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.45,1.0,0.5499999999999999,0.6666666666666666,1,26 -jelly,0.7066666666666667,1.0,0.5666666666666667,0.7,1,26 -fruit,0.7350000000000001,0.7166666666666667,0.8666666666666666,0.7433333333333334,2,26 -apple,0.6183333333333333,0.95,0.5333333333333333,0.6333333333333333,1,25 -bell,0.6166666666666667,1.0,0.6666666666666666,0.75,1,26 -battery,0.7133333333333334,1.0,0.7166666666666666,0.8,1,26 -jar,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -bound,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -lettuce,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -brush,0.7083333333333333,1.0,0.65,0.75,1,26 -scissors,0.7716666666666666,1.0,0.7,0.7833333333333333,1,26 -lime,0.5966666666666666,1.0,0.4666666666666666,0.6166666666666667,1,25 -toothpaste,0.7183333333333334,1.0,0.6499999999999999,0.75,1,26 -top,0.6399999999999999,1.0,0.5166666666666666,0.65,1,26 -spiral,0.6183333333333334,1.0,0.55,0.6833333333333333,1,26 -handles,0.7333333333333333,1.0,0.75,0.8166666666666667,1,25 -camera,0.7066666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -eraser,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.73,1.0,0.6166666666666666,0.7333333333333333,1,26 -pitcher,0.675,1.0,0.7,0.7833333333333333,1,26 -phone,0.51,1.0,0.5166666666666666,0.65,1,26 -stick,0.5333333333333333,1.0,0.4833333333333334,0.6166666666666666,1,25 -cereal,0.5583333333333332,1.0,0.5499999999999999,0.6666666666666666,1,26 -bulb,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.7333333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.4833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -can,0.8833333333333332,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.7,1.0,0.6166666666666666,0.7333333333333334,1,26 -crackers,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -plate,0.625,1.0,0.6166666666666666,0.7166666666666666,1,25 -calculator,0.8099999999999999,1.0,0.7333333333333333,0.8166666666666667,1,26 -tissues,0.7,1.0,0.6499999999999999,0.75,1,26 -juice,0.5266666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -pink,0.6483333333333332,1.0,0.4999999999999999,0.65,1,25 -lemon,0.575,1.0,0.5833333333333333,0.7,1,26 -peach,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bowl,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -blue,0.5383333333333333,1.0,0.5166666666666666,0.65,1,25 -used,0.755,1.0,0.7166666666666666,0.8,1,23 -energizer,0,0,0,0,1,26 -pear,0.9016666666666666,1.0,0.8,0.8666666666666666,1,26 -ball,0.5250000000000001,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.7183333333333333,1.0,0.5833333333333333,0.7,1,26 -garlic,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -pair,0.8716666666666667,1.0,0.8333333333333333,0.9,2,27 -container,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -tomato,0.5516666666666665,0.8,0.5333333333333333,0.5833333333333333,1,26 -cellphone,0.605,0.5,0.7333333333333333,0.5733333333333335,1,26 -potato,0.4666666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -light,0.8550000000000001,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6379012345679014 -F1-Score: 0.6860714285714287 -Precision: 0.9036265432098766 -Recall: 0.6061728395061728 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8016666666666667,1.0,0.7333333333333333,0.8166666666666667,1,24 -yellow,0.9099999999999999,0.7833333333333333,1.0,0.86,6,24 -looks,0.6333333333333333,0.8,0.6166666666666666,0.6333333333333333,1,24 -keyboard,0.6966666666666665,1.0,0.6166666666666666,0.7333333333333334,1,26 -glue,0.5383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -flashlight,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.44833333333333336,0.5,0.5999999999999999,0.52,1,26 -folded,0.7416666666666666,1.0,0.7166666666666666,0.8,1,26 -jam,0.7533333333333333,1.0,0.6333333333333333,0.75,1,26 -black,0.8933333333333333,0.8,1.0,0.8733333333333334,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7033333333333334,1.0,0.6,0.7166666666666667,1,26 -soccer,0.6266666666666667,1.0,0.5,0.6333333333333333,1,26 -hat,0.48999999999999994,1.0,0.4499999999999999,0.6,1,26 -brown,0.8666666666666666,1.0,0.8333333333333333,0.9,2,24 -coffee,0.755,1.0,0.6499999999999999,0.75,1,25 -handle,0.8966666666666667,1.0,0.8,0.8666666666666666,1,25 -food,0.6483333333333333,1.0,0.4999999999999999,0.65,1,25 -towel,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -chips,0.6900000000000001,1.0,0.55,0.6833333333333333,1,26 -stapler,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -onion,0.44666666666666666,1.0,0.4833333333333333,0.6166666666666666,1,26 -bag,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -sponge,0.8483333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7049999999999998,1.0,0.5999999999999999,0.7166666666666666,1,26 -special,0.6216666666666667,1.0,0.6499999999999999,0.75,1,26 -colgate,0.7933333333333332,1.0,0.7,0.7833333333333333,1,26 -leaf,0.59,1.0,0.41666666666666663,0.5833333333333333,1,26 -tube,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.4766666666666667,1.0,0.4499999999999999,0.6,1,26 -mug,0.6766666666666666,1.0,0.6499999999999999,0.75,1,25 -yogurt,0.3833333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -plantain,0.45499999999999996,1.0,0.4333333333333333,0.5833333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.755,1.0,0.6499999999999999,0.75,1,26 -wheat,0.485,1.0,0.45,0.6,1,26 -kleenex,0.55,1.0,0.6166666666666666,0.7166666666666666,1,26 -toothbrush,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -binder,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -baseball,0.7749999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -pliers,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6666666666666667,1.0,0.6,0.7166666666666667,1,26 -thins,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -package,0.5299999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -k,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -jelly,0.76,1.0,0.7666666666666666,0.8333333333333333,1,26 -fruit,0.7666666666666667,0.7166666666666666,0.9,0.7466666666666667,2,25 -apple,0.5366666666666665,0.85,0.4833333333333333,0.5666666666666667,1,25 -bell,0.7133333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -battery,0.6383333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -jar,0.53,1.0,0.5166666666666666,0.65,1,26 -bound,0.4166666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -lettuce,0.4966666666666666,1.0,0.4833333333333333,0.6166666666666666,1,26 -brush,0.7066666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -scissors,0.6333333333333333,1.0,0.6499999999999999,0.75,1,26 -lime,0.5816666666666667,1.0,0.4833333333333333,0.6333333333333333,1,25 -toothpaste,0.6016666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -top,0.5933333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -spiral,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -handles,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -camera,0.58,1.0,0.5166666666666666,0.65,1,26 -eraser,0.7383333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7583333333333332,1.0,0.7,0.7833333333333333,1,26 -pitcher,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -phone,0.5683333333333332,1.0,0.4666666666666666,0.6166666666666666,1,26 -stick,0.425,1.0,0.4499999999999999,0.6,1,25 -cereal,0.65,1.0,0.6666666666666666,0.75,1,26 -bulb,0.93,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.5266666666666666,1.0,0.5166666666666666,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.71,1.0,0.6333333333333332,0.7333333333333333,1,26 -can,0.8300000000000001,1.0,0.8,0.8800000000000001,2,26 -coca,0.6066666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.6849999999999999,1.0,0.65,0.75,1,26 -plate,0.8266666666666668,1.0,0.7166666666666666,0.8,1,25 -calculator,0.6783333333333333,0.8,0.6666666666666666,0.65,1,26 -tissues,0.5733333333333334,1.0,0.5,0.65,1,26 -juice,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -pink,0.7633333333333333,1.0,0.7,0.7833333333333333,1,25 -lemon,0.43500000000000005,1.0,0.4,0.5666666666666667,1,26 -peach,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -bowl,0.6133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8,1.0,0.7166666666666666,0.8,1,26 -blue,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -used,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.63,1.0,0.5999999999999999,0.7166666666666667,1,26 -ball,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,25 -notebook,0.5599999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -garlic,0.5133333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -cleaning,0.5166666666666666,1.0,0.5833333333333333,0.7,1,26 -pair,0.96,1.0,0.9333333333333332,0.96,2,27 -container,0.4966666666666667,1.0,0.5499999999999999,0.6666666666666666,1,25 -tomato,0.6233333333333333,0.9,0.5999999999999999,0.6666666666666667,1,26 -cellphone,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -potato,0.53,1.0,0.5333333333333333,0.6666666666666667,1,25 -light,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6284104938271605 -F1-Score: 0.6794444444444444 -Precision: 0.9087962962962963 -Recall: 0.5939814814814814 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8716666666666667,1.0,0.75,0.8333333333333333,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,25 -looks,0.33333333333333337,0.95,0.4833333333333333,0.5833333333333333,1,24 -keyboard,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -glue,0.5916666666666666,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.5383333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -flashlight,0.5233333333333333,1.0,0.5166666666666666,0.65,1,26 -cup,0.5483333333333332,0.5,0.7666666666666666,0.5800000000000001,1,26 -folded,0.8299999999999998,1.0,0.7333333333333333,0.8166666666666667,1,26 -jam,0.3833333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -black,0.93,0.8166666666666667,1.0,0.8800000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -soccer,0.5216666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -hat,0.6933333333333332,1.0,0.5166666666666666,0.6666666666666666,1,26 -brown,0.9600000000000002,1.0,0.9333333333333332,0.9600000000000002,2,25 -coffee,0.7083333333333333,1.0,0.7166666666666666,0.8,1,25 -handle,0.6383333333333333,1.0,0.5166666666666666,0.65,1,26 -food,0.7183333333333334,1.0,0.5666666666666667,0.7,1,25 -towel,0.7583333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -chips,0.7733333333333333,1.0,0.7166666666666666,0.8,1,26 -stapler,0.55,1.0,0.6166666666666666,0.7166666666666667,1,26 -onion,0.7683333333333333,0.95,0.6666666666666666,0.7333333333333333,1,26 -bag,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -sponge,0.655,1.0,0.5166666666666666,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.585,1.0,0.5166666666666666,0.65,1,25 -special,0.645,1.0,0.55,0.6833333333333333,1,26 -colgate,0.425,1.0,0.4833333333333334,0.6166666666666666,1,26 -leaf,0.835,1.0,0.7833333333333333,0.85,1,26 -tube,0.6583333333333333,1.0,0.6,0.7166666666666667,1,26 -cell,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -mug,0.6216666666666667,1.0,0.5833333333333333,0.7,1,25 -yogurt,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -plantain,0.605,1.0,0.5833333333333333,0.7,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.585,1.0,0.5166666666666666,0.65,1,26 -wheat,0.4883333333333333,1.0,0.4333333333333333,0.6,1,26 -kleenex,0.8233333333333335,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.5683333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -binder,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -baseball,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -pliers,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.5766666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -thins,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -package,0.675,1.0,0.6,0.7166666666666667,1,26 -k,0.73,1.0,0.7,0.7833333333333333,1,26 -jelly,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -fruit,0.7583333333333333,0.75,0.8333333333333333,0.7466666666666667,2,25 -apple,0.6266666666666667,1.0,0.6,0.7166666666666667,1,25 -bell,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -battery,0.6933333333333332,1.0,0.5666666666666667,0.7,1,26 -jar,0.41666666666666663,1.0,0.4333333333333333,0.5833333333333333,1,26 -bound,0.7433333333333333,1.0,0.6,0.7166666666666667,1,26 -lettuce,0.44666666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -brush,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.8300000000000001,1.0,0.7833333333333333,0.85,1,26 -lime,0.7266666666666667,1.0,0.5666666666666667,0.7,1,25 -toothpaste,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666668,1,26 -top,0.8099999999999999,1.0,0.7,0.7833333333333333,1,26 -spiral,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -handles,0.8966666666666667,1.0,0.8333333333333333,0.8833333333333332,1,25 -camera,0.6466666666666667,1.0,0.55,0.6833333333333333,1,26 -eraser,0.5016666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.5933333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -pitcher,0.6649999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -phone,0.6216666666666667,1.0,0.6,0.7166666666666666,1,26 -stick,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -cereal,0.5183333333333333,1.0,0.41666666666666663,0.5833333333333333,1,26 -bulb,0.9266666666666667,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -can,0.925,1.0,0.9,0.9400000000000001,2,25 -coca,0.61,1.0,0.5833333333333333,0.7,1,26 -crackers,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.7716666666666666,1.0,0.7166666666666666,0.8,1,25 -calculator,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -tissues,0.6383333333333334,1.0,0.55,0.6833333333333333,1,26 -juice,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -pink,0.8083333333333332,1.0,0.7666666666666666,0.8333333333333334,1,25 -lemon,0.4383333333333333,1.0,0.4333333333333334,0.5833333333333333,1,26 -peach,0.6666666666666666,1.0,0.65,0.75,1,26 -bowl,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6300000000000001,1.0,0.5166666666666666,0.6666666666666667,1,26 -blue,0.8300000000000001,1.0,0.7166666666666666,0.8,1,25 -used,0.43,0.6,0.5833333333333333,0.53,1,24 -energizer,0,0,0,0,1,26 -pear,0.8099999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -ball,0.6849999999999999,1.0,0.5333333333333333,0.6666666666666667,1,25 -notebook,0.6416666666666666,1.0,0.6,0.7166666666666667,1,26 -garlic,0.8616666666666667,1.0,0.7,0.8,1,26 -cleaning,0.655,1.0,0.5833333333333333,0.7,1,26 -pair,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,27 -container,0.7849999999999999,1.0,0.65,0.75,1,25 -tomato,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -cellphone,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -potato,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -light,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8649999999999999,1.0,0.8,0.8800000000000001,2,27 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.646759259259259 -F1-Score: 0.6889506172839506 -Precision: 0.9117283950617284 -Recall: 0.6037037037037037 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6283333333333333,1.0,0.55,0.6833333333333333,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,25 -looks,0.5883333333333333,0.95,0.5333333333333333,0.6333333333333333,1,24 -keyboard,0.76,1.0,0.6666666666666666,0.7666666666666666,1,26 -glue,0.425,1.0,0.38333333333333336,0.55,1,26 -milk,0,0,0,0,1,26 -cola,0.5516666666666666,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.705,1.0,0.6,0.7166666666666667,1,26 -cup,0.375,0.5,0.6166666666666666,0.5166666666666667,1,25 -folded,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -black,0.9433333333333334,0.8666666666666666,1.0,0.9133333333333333,6,23 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.31666666666666665,1.0,0.4666666666666666,0.6,1,26 -soccer,0.7133333333333333,1.0,0.65,0.75,1,26 -hat,0.7633333333333333,1.0,0.65,0.75,1,26 -brown,0.8933333333333333,1.0,0.8666666666666668,0.9200000000000002,2,25 -coffee,0.6716666666666666,1.0,0.65,0.75,1,24 -handle,0.625,1.0,0.6333333333333333,0.7333333333333333,1,25 -food,0.6416666666666667,1.0,0.6499999999999999,0.75,1,25 -towel,0.8466666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -chips,0.7466666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -stapler,0.7333333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -onion,0.6416666666666666,1.0,0.6833333333333333,0.7666666666666667,1,26 -bag,0.7016666666666667,1.0,0.5833333333333333,0.7,1,26 -sponge,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6733333333333333,1.0,0.55,0.6833333333333333,1,25 -special,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -colgate,0.56,1.0,0.5333333333333333,0.6666666666666667,1,26 -leaf,0.75,1.0,0.6499999999999999,0.75,1,26 -tube,0.8266666666666665,1.0,0.65,0.7666666666666667,1,26 -cell,0.6266666666666667,0.5,0.7666666666666666,0.5800000000000001,1,26 -mug,0.67,1.0,0.5333333333333333,0.6666666666666666,1,25 -yogurt,0.5466666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -plantain,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,25 -binder,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -baseball,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.865,1.0,0.7333333333333333,0.8166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.39166666666666666,1.0,0.41666666666666663,0.5666666666666667,1,26 -package,0.6583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.6266666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -jelly,0.7,1.0,0.7,0.7833333333333333,1,26 -fruit,0.7666666666666667,0.75,0.8666666666666666,0.77,2,25 -apple,0.385,0.95,0.4499999999999999,0.5833333333333333,1,25 -bell,0.5683333333333332,1.0,0.5166666666666666,0.65,1,26 -battery,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -jar,0.705,1.0,0.5833333333333333,0.7,1,26 -bound,0.5299999999999999,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -brush,0.7183333333333334,1.0,0.6,0.7166666666666667,1,26 -scissors,0.5916666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -lime,0.9349999999999999,1.0,0.85,0.9,1,25 -toothpaste,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -top,0.605,1.0,0.5833333333333333,0.7,1,25 -spiral,0.5433333333333333,1.0,0.5166666666666666,0.65,1,26 -handles,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -camera,0.6566666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -eraser,0.6083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.76,1.0,0.6666666666666666,0.7666666666666667,1,26 -pitcher,0.7983333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -phone,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -stick,0.7466666666666667,1.0,0.6833333333333333,0.7833333333333333,1,25 -cereal,0.705,1.0,0.6499999999999999,0.75,1,26 -bulb,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,27 -hair,0.6433333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6399999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -can,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,27 -coca,0.6966666666666667,1.0,0.65,0.75,1,26 -crackers,0.58,1.0,0.5333333333333332,0.6666666666666666,1,26 -plate,0.8583333333333334,1.0,0.8166666666666667,0.8666666666666666,1,25 -calculator,0.7066666666666667,0.95,0.5999999999999999,0.6833333333333333,1,26 -tissues,0.7816666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -juice,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -pink,0.5133333333333333,1.0,0.4666666666666666,0.6166666666666666,1,25 -lemon,0.65,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.8416666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -bowl,0.7133333333333333,1.0,0.5666666666666667,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8149999999999998,1.0,0.6833333333333333,0.7833333333333333,1,26 -blue,0.6333333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -used,0.63,1.0,0.5499999999999999,0.6833333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.635,1.0,0.5833333333333333,0.7,1,26 -ball,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.8383333333333335,1.0,0.7666666666666666,0.8333333333333333,1,26 -garlic,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -cleaning,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -pair,0.8883333333333333,1.0,0.8666666666666668,0.9200000000000002,2,27 -container,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -tomato,0.5816666666666667,0.9,0.55,0.6333333333333333,1,26 -cellphone,0.4583333333333333,0.6,0.6499999999999999,0.5566666666666666,1,26 -potato,0.6599999999999999,1.0,0.6499999999999999,0.75,1,25 -light,0.8933333333333333,1.0,0.8666666666666666,0.9200000000000002,2,27 -green,1.0,1.0,1.0,1.0,3,25 -bottle,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6511111111111111 -F1-Score: 0.6917283950617283 -Precision: 0.9061728395061729 -Recall: 0.6111111111111112 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.655,1.0,0.5333333333333333,0.6666666666666666,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.5083333333333333,0.9,0.5666666666666667,0.6166666666666667,1,24 -keyboard,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -glue,0.63,1.0,0.5999999999999999,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6183333333333334,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.6833333333333333,1.0,0.65,0.75,1,26 -cup,0.36833333333333335,0.5,0.65,0.5366666666666667,1,26 -folded,0.5266666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -jam,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -black,0.8766666666666666,0.75,1.0,0.8399999999999999,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.4133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -soccer,0.6733333333333333,1.0,0.5833333333333333,0.7,1,26 -hat,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -brown,0.8416666666666666,1.0,0.8333333333333334,0.9000000000000001,2,24 -coffee,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,25 -handle,0.475,1.0,0.4499999999999999,0.6,1,25 -food,0.7516666666666667,1.0,0.5833333333333333,0.7166666666666667,1,25 -towel,0.5133333333333334,1.0,0.45,0.6,1,26 -chips,0.7849999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.8633333333333335,1.0,0.7833333333333333,0.85,1,26 -onion,0.6266666666666667,1.0,0.55,0.6833333333333333,1,26 -bag,0.4933333333333333,1.0,0.4499999999999999,0.6,1,26 -sponge,0.8916666666666666,1.0,0.8,0.8666666666666668,1,26 -zero,0,0,0,0,1,26 -computer,0.6583333333333333,1.0,0.65,0.75,1,25 -special,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -colgate,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -leaf,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -cell,0.51,0.5,0.6666666666666666,0.5466666666666666,1,26 -mug,0.605,1.0,0.5666666666666667,0.6833333333333333,1,25 -yogurt,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -plantain,0.6716666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -wheat,0.675,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.7,1.0,0.5999999999999999,0.7166666666666667,1,26 -toothbrush,0.6466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.7033333333333334,1.0,0.5666666666666667,0.7,1,26 -baseball,0.675,1.0,0.7,0.7833333333333333,1,26 -pliers,0.65,1.0,0.5499999999999999,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.705,1.0,0.5833333333333333,0.7,1,26 -thins,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -package,0.7316666666666667,1.0,0.5333333333333333,0.6833333333333333,1,26 -k,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -jelly,0.8083333333333332,1.0,0.7333333333333333,0.8166666666666667,1,26 -fruit,0.735,0.75,0.8,0.7333333333333333,2,25 -apple,0.5700000000000001,0.8,0.5833333333333333,0.5833333333333333,1,25 -bell,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -battery,0.8,1.0,0.7166666666666666,0.8,1,26 -jar,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -bound,0.6666666666666667,1.0,0.7,0.7833333333333333,1,26 -lettuce,0.575,1.0,0.5166666666666666,0.65,1,26 -brush,0.55,1.0,0.6166666666666666,0.7166666666666666,1,26 -scissors,0.42666666666666664,1.0,0.4333333333333334,0.5833333333333333,1,26 -lime,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -toothpaste,0.6883333333333332,1.0,0.6333333333333332,0.7333333333333333,1,26 -top,0.7066666666666667,1.0,0.5666666666666667,0.7,1,26 -spiral,0.8216666666666665,1.0,0.7666666666666666,0.8333333333333333,1,26 -handles,0.65,1.0,0.65,0.75,1,25 -camera,0.75,1.0,0.6499999999999999,0.75,1,26 -eraser,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.73,1.0,0.6333333333333333,0.7333333333333333,1,26 -pitcher,0.6883333333333334,1.0,0.5833333333333333,0.7,1,26 -phone,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -stick,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -cereal,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -bulb,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.5133333333333333,1.0,0.4833333333333334,0.6333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.63,1.0,0.5,0.65,1,26 -can,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -crackers,0.5683333333333334,1.0,0.4833333333333332,0.6333333333333333,1,26 -plate,0.78,1.0,0.7499999999999999,0.8166666666666667,1,25 -calculator,0.365,0.75,0.4999999999999999,0.5233333333333333,1,26 -tissues,0.735,1.0,0.5666666666666667,0.7,1,26 -juice,0.8216666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -pink,0.7216666666666667,1.0,0.7,0.7833333333333333,1,25 -lemon,0.7633333333333334,1.0,0.6833333333333333,0.7833333333333334,1,26 -peach,0.5499999999999999,1.0,0.5999999999999999,0.7,1,26 -bowl,0.61,1.0,0.5333333333333333,0.6666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.73,1.0,0.6499999999999999,0.75,1,26 -blue,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -used,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6266666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -ball,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.635,1.0,0.5333333333333332,0.6666666666666666,1,26 -garlic,0.7366666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -cleaning,0.8066666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -pair,1.0,1.0,1.0,1.0,2,26 -container,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,25 -tomato,0.6399999999999999,0.85,0.7,0.7,1,26 -cellphone,0.5666666666666667,0.6,0.7166666666666666,0.5833333333333333,1,26 -potato,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666666,1,25 -light,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9066666666666666,1.0,0.8666666666666666,0.9200000000000002,2,25 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6478240740740739 -F1-Score: 0.6878086419753087 -Precision: 0.9009259259259259 -Recall: 0.6092592592592593 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7766666666666666,1.0,0.7166666666666666,0.8,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.7183333333333334,0.95,0.6333333333333333,0.7166666666666666,1,24 -keyboard,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -glue,0.53,1.0,0.4833333333333333,0.6333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.4683333333333334,1.0,0.4499999999999999,0.6,1,26 -flashlight,0.5583333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -cup,0.4383333333333333,0.5,0.6166666666666666,0.53,1,26 -folded,0.8550000000000001,1.0,0.75,0.8333333333333334,1,26 -jam,0.8516666666666666,1.0,0.7,0.8,1,26 -black,0.9250000000000002,0.8416666666666668,1.0,0.8990476190476191,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.9216666666666666,1.0,0.85,0.8999999999999998,1,26 -soccer,0.7183333333333333,1.0,0.65,0.75,1,26 -hat,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.9016666666666667,1.0,0.8666666666666668,0.9200000000000002,2,25 -coffee,0.6933333333333332,1.0,0.6499999999999999,0.75,1,26 -handle,0.6933333333333334,1.0,0.65,0.75,1,26 -food,0.6416666666666667,1.0,0.65,0.75,1,24 -towel,0.6883333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -chips,0.8083333333333332,1.0,0.75,0.8166666666666667,1,26 -stapler,0.6683333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.73,1.0,0.75,0.8166666666666667,1,26 -bag,0.66,1.0,0.4999999999999999,0.65,1,26 -sponge,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.8333333333333333,1.0,0.8333333333333333,0.8833333333333332,1,25 -special,0.7133333333333333,1.0,0.65,0.75,1,26 -colgate,0.74,1.0,0.5333333333333333,0.6833333333333333,1,26 -leaf,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -tube,0.5833333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -cell,0.5566666666666666,0.5,0.6833333333333333,0.5566666666666666,1,26 -mug,0.8633333333333333,1.0,0.75,0.8333333333333333,1,26 -yogurt,0.6716666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -plantain,0.8300000000000001,1.0,0.7,0.8,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -wheat,0.755,1.0,0.7666666666666666,0.8333333333333333,1,26 -kleenex,0.6416666666666666,1.0,0.7,0.7833333333333333,1,26 -toothbrush,0.7216666666666667,1.0,0.6,0.7166666666666667,1,26 -binder,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -baseball,0.58,1.0,0.5499999999999999,0.6666666666666666,1,26 -pliers,0.5966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.675,1.0,0.7,0.7833333333333333,1,26 -thins,0.705,1.0,0.5833333333333333,0.7,1,26 -package,0.5716666666666665,1.0,0.5166666666666666,0.65,1,26 -k,0.5083333333333333,1.0,0.4499999999999999,0.6,1,26 -jelly,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -fruit,0.6866666666666666,0.5833333333333333,0.8666666666666666,0.6766666666666666,2,25 -apple,0.8033333333333333,0.95,0.6333333333333333,0.7166666666666667,1,25 -bell,0.525,1.0,0.45,0.6,1,26 -battery,0.5716666666666667,1.0,0.4833333333333334,0.6333333333333333,1,26 -jar,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.6466666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.635,1.0,0.6499999999999999,0.75,1,26 -lime,0.6166666666666666,1.0,0.5166666666666666,0.65,1,25 -toothpaste,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -top,0.69,1.0,0.5333333333333333,0.6666666666666667,1,26 -spiral,0.575,1.0,0.6166666666666666,0.7166666666666666,1,26 -handles,0.5266666666666666,1.0,0.5166666666666666,0.65,1,25 -camera,0.8300000000000001,1.0,0.7833333333333333,0.85,1,26 -eraser,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.76,1.0,0.7166666666666666,0.8,1,26 -pitcher,0.6849999999999999,1.0,0.6166666666666666,0.7333333333333334,1,26 -phone,0.39166666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -stick,0.525,1.0,0.4833333333333333,0.6333333333333333,1,25 -cereal,0.735,1.0,0.6,0.7166666666666667,1,26 -bulb,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,27 -hair,0.6133333333333334,1.0,0.5333333333333333,0.6666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.78,1.0,0.7166666666666666,0.8,1,26 -can,0.8433333333333334,1.0,0.8,0.8800000000000001,2,25 -coca,0.4,1.0,0.4833333333333333,0.6166666666666666,1,26 -crackers,0.6016666666666667,1.0,0.55,0.6833333333333333,1,26 -plate,0.735,1.0,0.5999999999999999,0.7166666666666667,1,25 -calculator,0.705,1.0,0.6,0.7166666666666667,1,26 -tissues,0.705,1.0,0.55,0.6833333333333333,1,26 -juice,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -pink,0.58,1.0,0.6833333333333333,0.7666666666666666,1,25 -lemon,0.725,1.0,0.6333333333333333,0.7333333333333333,1,26 -peach,0.7183333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -bowl,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6799999999999999,1.0,0.5333333333333333,0.6833333333333333,1,26 -blue,0.6683333333333333,1.0,0.55,0.6833333333333333,1,25 -used,0.6333333333333334,1.0,0.65,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.5966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -ball,0.7933333333333332,1.0,0.7333333333333333,0.8166666666666667,1,25 -notebook,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -garlic,0.7183333333333334,1.0,0.6,0.7166666666666666,1,26 -cleaning,0.6849999999999999,1.0,0.6,0.7166666666666666,1,26 -pair,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -container,0.6833333333333333,1.0,0.6666666666666666,0.75,1,25 -tomato,0.615,0.85,0.5833333333333333,0.6166666666666667,1,26 -cellphone,0.5916666666666666,0.5,0.7666666666666666,0.5800000000000001,1,26 -potato,0.5933333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -light,0.8933333333333332,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8800000000000001,1.0,0.8666666666666668,0.9200000000000002,2,26 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6546913580246914 -F1-Score: 0.6915035273368607 -Precision: 0.9039351851851852 -Recall: 0.6109567901234565 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7466666666666666,1.0,0.7166666666666666,0.8,1,25 -yellow,0.9233333333333335,0.8,1.0,0.8666666666666666,6,24 -looks,0.6916666666666667,0.8,0.7166666666666666,0.6666666666666667,1,24 -keyboard,0.675,1.0,0.7,0.7833333333333333,1,26 -glue,0.5,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.7716666666666667,1.0,0.6333333333333333,0.75,1,26 -flashlight,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -cup,0.3533333333333334,0.5,0.5666666666666667,0.5,1,26 -folded,0.6683333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -jam,0.85,1.0,0.7833333333333333,0.85,1,26 -black,0.8533333333333333,0.6666666666666666,1.0,0.7866666666666667,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.71,1.0,0.6499999999999999,0.75,1,26 -soccer,0.6466666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -hat,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,24 -coffee,0.5466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -handle,0.8,1.0,0.7666666666666666,0.8333333333333333,1,25 -food,0.5466666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -towel,0.5966666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -stapler,0.4416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -onion,0.58,1.0,0.6833333333333333,0.7666666666666666,1,26 -bag,0.7666666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -sponge,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -special,0.6066666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -colgate,0.625,1.0,0.6166666666666666,0.7166666666666667,1,26 -leaf,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -tube,0.74,1.0,0.6166666666666666,0.7333333333333334,1,26 -cell,0.85,1.0,0.8166666666666667,0.8666666666666666,1,26 -mug,0.6633333333333333,1.0,0.5166666666666666,0.65,1,26 -yogurt,0.8550000000000001,1.0,0.8333333333333333,0.8833333333333332,1,26 -plantain,0.715,1.0,0.5499999999999999,0.6833333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.61,1.0,0.5499999999999999,0.6833333333333333,1,26 -wheat,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.6766666666666665,1.0,0.5499999999999999,0.6833333333333333,1,26 -toothbrush,0.7716666666666666,1.0,0.7,0.7833333333333333,1,26 -binder,0.7083333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -baseball,0.7433333333333333,1.0,0.65,0.75,1,26 -pliers,0.7183333333333333,1.0,0.6499999999999999,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.5733333333333334,1.0,0.5833333333333333,0.7,1,26 -thins,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -package,0.6633333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -k,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.6799999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -fruit,0.6716666666666667,0.7166666666666667,0.8333333333333333,0.73,2,25 -apple,0.5433333333333333,0.95,0.41666666666666663,0.5666666666666667,1,25 -bell,0.625,1.0,0.45,0.6166666666666667,1,26 -battery,0.73,1.0,0.6166666666666666,0.7333333333333334,1,26 -jar,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -lettuce,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -brush,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -scissors,0.7416666666666666,1.0,0.6499999999999999,0.75,1,26 -lime,0.78,1.0,0.7,0.7833333333333333,1,25 -toothpaste,0.73,1.0,0.5666666666666667,0.7,1,26 -top,0.6916666666666667,1.0,0.5833333333333333,0.7,1,26 -spiral,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -handles,0.585,1.0,0.5166666666666666,0.65,1,25 -camera,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.7133333333333333,1.0,0.7166666666666666,0.8,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.44666666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -pitcher,0.705,1.0,0.6333333333333332,0.7333333333333333,1,26 -phone,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -stick,0.9099999999999999,1.0,0.8333333333333333,0.8833333333333332,1,25 -cereal,0.7333333333333333,1.0,0.65,0.75,1,26 -bulb,0.9400000000000001,1.0,0.9,0.9400000000000001,2,26 -hair,0.705,1.0,0.65,0.75,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.4833333333333333,1.0,0.4833333333333333,0.6166666666666667,1,26 -can,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -crackers,0.9266666666666667,1.0,0.85,0.9,1,26 -plate,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666666,1,25 -calculator,0.46333333333333326,0.55,0.5499999999999999,0.5133333333333333,1,26 -tissues,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -pink,0.5133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -lemon,0.6883333333333332,1.0,0.6,0.7166666666666667,1,26 -peach,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -bowl,0.705,1.0,0.6166666666666666,0.7333333333333334,1,26 -camouflage,0,0,0,0,1,26 -digital,0.38,1.0,0.5499999999999999,0.6666666666666666,1,26 -blue,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333333,1,25 -used,0.6433333333333333,1.0,0.6,0.7166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.6433333333333333,1.0,0.55,0.6833333333333333,1,26 -ball,0.6716666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -notebook,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -garlic,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666668,1,26 -cleaning,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -pair,0.9550000000000001,1.0,0.9333333333333332,0.96,2,27 -container,0.5883333333333333,1.0,0.4999999999999999,0.65,1,26 -tomato,0.655,0.75,0.6,0.6,1,26 -cellphone,0.8966666666666667,1.0,0.8,0.8666666666666666,1,26 -potato,0.6433333333333333,1.0,0.55,0.6833333333333333,1,25 -light,0.8933333333333333,1.0,0.8666666666666668,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.9349999999999999,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6529938271604939 -F1-Score: 0.6956790123456791 -Precision: 0.9049382716049382 -Recall: 0.6171296296296296 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6900000000000001,1.0,0.5666666666666667,0.7,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,25 -looks,0.7683333333333333,1.0,0.5833333333333333,0.7166666666666667,1,24 -keyboard,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -glue,0.71,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -flashlight,0.7,1.0,0.6666666666666666,0.75,1,26 -cup,0.37833333333333335,0.5,0.5499999999999999,0.5033333333333333,1,26 -folded,0.78,1.0,0.7166666666666666,0.8,1,26 -jam,0.7166666666666667,1.0,0.6,0.7166666666666667,1,26 -black,0.8516666666666666,0.6916666666666667,1.0,0.8057142857142857,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.58,1.0,0.5833333333333333,0.7,1,26 -soccer,0.6666666666666666,1.0,0.7,0.7833333333333333,1,26 -hat,0.7216666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -brown,0.93,1.0,0.9,0.9400000000000001,2,26 -coffee,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -handle,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -food,0.6216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,24 -towel,0.8400000000000001,1.0,0.7,0.8,1,26 -chips,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -stapler,0.5683333333333332,1.0,0.4833333333333332,0.6333333333333333,1,26 -onion,0.875,1.0,0.8333333333333333,0.8833333333333332,1,26 -bag,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.625,1.0,0.6,0.7166666666666667,1,25 -special,0.8233333333333335,1.0,0.7166666666666666,0.8,1,26 -colgate,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -leaf,0.7183333333333333,1.0,0.6499999999999999,0.75,1,26 -tube,0.505,1.0,0.4666666666666666,0.6166666666666666,1,26 -cell,0.655,1.0,0.5499999999999999,0.6833333333333333,1,26 -mug,0.7383333333333333,1.0,0.65,0.75,1,25 -yogurt,0.4,1.0,0.4999999999999999,0.6333333333333333,1,26 -plantain,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.6633333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -wheat,0.5633333333333332,1.0,0.6166666666666666,0.7166666666666666,1,26 -kleenex,0.8083333333333332,1.0,0.6833333333333333,0.7833333333333334,1,26 -toothbrush,0.71,1.0,0.5833333333333333,0.7,1,26 -binder,0.605,1.0,0.5833333333333333,0.7,1,26 -baseball,0.5166666666666666,1.0,0.55,0.6666666666666666,1,26 -pliers,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.725,1.0,0.6833333333333333,0.7666666666666666,1,26 -thins,0.7116666666666667,1.0,0.5666666666666667,0.7,1,26 -package,0.6133333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -k,0.5266666666666667,1.0,0.41666666666666663,0.5833333333333334,1,26 -jelly,0.355,1.0,0.36666666666666664,0.5333333333333333,1,26 -fruit,0.6716666666666666,0.7166666666666667,0.8,0.7333333333333333,2,26 -apple,0.6433333333333333,1.0,0.4833333333333333,0.6333333333333333,1,25 -bell,0.7116666666666667,1.0,0.5666666666666667,0.7,1,26 -battery,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -jar,0.5216666666666667,1.0,0.4833333333333332,0.6333333333333333,1,26 -bound,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -brush,0.73,1.0,0.65,0.75,1,26 -scissors,0.5916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -lime,0.65,1.0,0.65,0.75,1,25 -toothpaste,0.5416666666666666,1.0,0.5833333333333333,0.7,1,26 -top,0.6333333333333333,1.0,0.55,0.6833333333333333,1,26 -spiral,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -handles,0.5666666666666667,1.0,0.5833333333333333,0.7,1,25 -camera,0.755,1.0,0.5999999999999999,0.7166666666666666,1,26 -eraser,0.73,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7899999999999999,1.0,0.6166666666666666,0.7333333333333334,1,26 -pitcher,0.7233333333333333,1.0,0.65,0.75,1,26 -phone,0.5516666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -stick,0.5516666666666666,1.0,0.4666666666666666,0.6166666666666667,1,25 -cereal,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -bulb,0.8483333333333334,1.0,0.8,0.8800000000000001,2,27 -hair,0.7166666666666666,1.0,0.5666666666666667,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.55,1.0,0.5166666666666666,0.65,1,26 -can,0.8633333333333333,1.0,0.8333333333333333,0.9,2,26 -coca,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -crackers,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -plate,0.735,1.0,0.6166666666666666,0.7333333333333333,1,25 -calculator,0.47833333333333333,0.6,0.65,0.5566666666666668,1,26 -tissues,0.45166666666666666,1.0,0.41666666666666663,0.5833333333333333,1,26 -juice,0.6833333333333333,1.0,0.65,0.75,1,26 -pink,0.6933333333333334,1.0,0.6666666666666666,0.7666666666666666,1,25 -lemon,0.6833333333333333,1.0,0.7333333333333333,0.8,1,26 -peach,0.735,1.0,0.5999999999999999,0.7166666666666666,1,26 -bowl,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7,1.0,0.6499999999999999,0.75,1,26 -blue,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,25 -used,0.735,1.0,0.65,0.75,1,23 -energizer,0,0,0,0,1,26 -pear,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -ball,0.76,1.0,0.7,0.7833333333333333,1,25 -notebook,0.53,1.0,0.4333333333333333,0.6,1,26 -garlic,0.5416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -cleaning,0.42666666666666664,1.0,0.4,0.5666666666666667,1,26 -pair,0.8933333333333333,1.0,0.8666666666666668,0.9200000000000002,2,27 -container,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,25 -tomato,0.6883333333333334,0.55,0.7833333333333333,0.6066666666666667,1,26 -cellphone,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -potato,0.4766666666666667,1.0,0.5166666666666666,0.65,1,25 -light,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8433333333333334,1.0,0.8,0.8800000000000001,2,26 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6460493827160495 -F1-Score: 0.6870899470899471 -Precision: 0.9074845679012346 -Recall: 0.6027777777777777 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,24 -yellow,0.9100000000000001,0.7666666666666666,1.0,0.8466666666666667,6,24 -looks,0.5833333333333333,0.95,0.6166666666666666,0.6833333333333333,1,24 -keyboard,0.775,1.0,0.6499999999999999,0.75,1,26 -glue,0.63,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -flashlight,0.5016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -cup,0.25833333333333336,0.5,0.5333333333333333,0.49333333333333335,1,26 -folded,0.6766666666666666,1.0,0.65,0.75,1,26 -jam,0.5599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,1.0,1.0,1.0,1.0,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333334,1,26 -soccer,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -hat,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -coffee,0.635,1.0,0.5833333333333333,0.7,1,25 -handle,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -food,0.6833333333333333,1.0,0.6499999999999999,0.75,1,24 -towel,0.6216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.705,1.0,0.65,0.75,1,26 -stapler,0.8416666666666668,1.0,0.75,0.8333333333333333,1,26 -onion,0.675,1.0,0.7,0.7833333333333333,1,26 -bag,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -sponge,0.7,1.0,0.6666666666666666,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.6516666666666666,1.0,0.6,0.7166666666666667,1,25 -special,0.7666666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -colgate,0.425,1.0,0.4833333333333332,0.6166666666666666,1,26 -leaf,0.675,1.0,0.6499999999999999,0.75,1,26 -tube,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -cell,0.4966666666666667,0.55,0.5499999999999999,0.5133333333333333,1,26 -mug,0.6166666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -yogurt,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -plantain,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666666,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.7733333333333333,1.0,0.7166666666666666,0.8,1,26 -wheat,0.6633333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -kleenex,0.5833333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -toothbrush,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -binder,0.6683333333333333,1.0,0.5833333333333333,0.7,1,26 -baseball,0.685,1.0,0.55,0.6833333333333333,1,26 -pliers,0.58,1.0,0.4999999999999999,0.6333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,24 -water,0.6233333333333333,1.0,0.55,0.6833333333333333,1,26 -thins,0.74,1.0,0.6166666666666666,0.7333333333333333,1,26 -package,0.6050000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -k,0.6816666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -jelly,0.6833333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -fruit,0.8049999999999999,0.8,0.9,0.8266666666666668,2,25 -apple,0.7733333333333333,0.9,0.7333333333333333,0.75,1,25 -bell,0.7083333333333333,1.0,0.55,0.6833333333333333,1,26 -battery,0.7216666666666667,1.0,0.5666666666666667,0.7,1,26 -jar,0.6683333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -bound,0.5433333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -lettuce,0.4749999999999999,1.0,0.4833333333333332,0.6166666666666666,1,26 -brush,0.6766666666666666,1.0,0.65,0.75,1,26 -scissors,0.7383333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.585,1.0,0.5166666666666666,0.65,1,25 -toothpaste,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -top,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.51,1.0,0.4333333333333333,0.5833333333333333,1,26 -handles,0.6966666666666667,1.0,0.55,0.6833333333333333,1,25 -camera,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -eraser,0.625,1.0,0.6166666666666666,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -pitcher,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -stick,0.6133333333333334,1.0,0.5333333333333333,0.6666666666666667,1,25 -cereal,0.3966666666666666,1.0,0.45,0.6,1,26 -bulb,0.93,1.0,0.9,0.9400000000000001,2,26 -hair,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6599999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,0.8683333333333334,1.0,0.8333333333333334,0.9000000000000001,2,24 -coca,0.7466666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -crackers,0.755,1.0,0.7,0.7833333333333333,1,26 -plate,0.675,1.0,0.6,0.7166666666666666,1,25 -calculator,0.605,1.0,0.6333333333333333,0.7333333333333333,1,26 -tissues,0.7333333333333333,1.0,0.7166666666666666,0.8,1,26 -juice,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -pink,0.71,1.0,0.5666666666666667,0.7,1,25 -lemon,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -peach,0.8800000000000001,1.0,0.8833333333333332,0.9166666666666666,1,26 -bowl,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -blue,0.6083333333333333,1.0,0.5,0.65,1,25 -used,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,23 -energizer,0,0,0,0,1,26 -pear,0.6166666666666666,1.0,0.6666666666666666,0.75,1,26 -ball,0.7733333333333333,1.0,0.65,0.75,1,25 -notebook,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -garlic,0.805,1.0,0.65,0.7666666666666667,1,26 -cleaning,0.8300000000000001,1.0,0.7166666666666666,0.8,1,26 -pair,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.5216666666666666,1.0,0.4999999999999999,0.6333333333333333,1,25 -tomato,0.6583333333333333,0.95,0.5999999999999999,0.6833333333333333,1,26 -cellphone,0.5183333333333333,0.5,0.6166666666666666,0.53,1,26 -potato,0.7683333333333333,1.0,0.5833333333333333,0.7166666666666667,1,25 -light,0.9266666666666665,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6488117283950616 -F1-Score: 0.6913580246913581 -Precision: 0.9066358024691357 -Recall: 0.609104938271605 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.615,0.8,0.6666666666666666,0.65,1,24 -keyboard,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.5933333333333334,1.0,0.5333333333333332,0.6666666666666666,1,26 -flashlight,0.7466666666666667,1.0,0.6333333333333333,0.75,1,26 -cup,0.44000000000000006,0.5,0.6,0.52,1,25 -folded,0.775,1.0,0.7166666666666666,0.8,1,26 -jam,0.6849999999999999,1.0,0.5666666666666667,0.7,1,26 -black,0.9233333333333335,0.8,1.0,0.8666666666666668,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.75,1.0,0.7166666666666666,0.8,1,26 -soccer,0.46333333333333326,1.0,0.45,0.6,1,26 -hat,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -brown,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.6133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -handle,0.6216666666666668,1.0,0.5833333333333333,0.7,1,26 -food,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -towel,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -chips,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -stapler,0.525,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -bag,0.79,1.0,0.6833333333333333,0.7833333333333334,1,26 -sponge,0.5583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6383333333333333,1.0,0.5833333333333333,0.7,1,25 -special,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -colgate,0.635,1.0,0.5333333333333333,0.6666666666666666,1,26 -leaf,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -tube,0.6933333333333334,1.0,0.6666666666666666,0.7666666666666666,1,26 -cell,0.54,0.6,0.7499999999999999,0.5900000000000001,1,26 -mug,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -yogurt,0.6216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.7100000000000001,1.0,0.5833333333333333,0.7,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.7716666666666666,1.0,0.6833333333333333,0.7833333333333334,1,26 -wheat,0.6183333333333333,1.0,0.5166666666666666,0.65,1,26 -kleenex,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -toothbrush,0.4833333333333333,1.0,0.45,0.6,1,26 -binder,0.7883333333333333,1.0,0.6333333333333333,0.75,1,26 -baseball,0.6183333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -pliers,0.7483333333333333,1.0,0.6,0.7166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.645,1.0,0.4999999999999999,0.65,1,26 -thins,0.4416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -package,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.5583333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -jelly,0.45166666666666666,1.0,0.4,0.5666666666666667,1,26 -fruit,0.6783333333333333,0.6333333333333334,0.8666666666666666,0.7,2,25 -apple,0.7183333333333334,1.0,0.6499999999999999,0.75,1,26 -bell,0.7516666666666666,1.0,0.6499999999999999,0.75,1,26 -battery,0.605,1.0,0.5833333333333333,0.7,1,26 -jar,0.75,1.0,0.75,0.8166666666666667,1,26 -bound,0.58,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.6683333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -brush,0.625,1.0,0.5833333333333333,0.7,1,26 -scissors,0.4416666666666667,1.0,0.45,0.6,1,26 -lime,0.7183333333333334,1.0,0.5666666666666667,0.7,1,25 -toothpaste,0.605,1.0,0.55,0.6833333333333333,1,26 -top,0.8616666666666667,1.0,0.7,0.8,1,26 -spiral,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -handles,0.6883333333333332,1.0,0.6,0.7166666666666666,1,25 -camera,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -eraser,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.8216666666666665,1.0,0.7,0.8,1,26 -pitcher,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -phone,0.61,1.0,0.5499999999999999,0.6833333333333333,1,26 -stick,0.8833333333333332,1.0,0.8666666666666666,0.9,1,25 -cereal,0.74,1.0,0.5666666666666667,0.7,1,26 -bulb,0.9266666666666667,1.0,0.9,0.9400000000000001,2,27 -hair,0.46333333333333326,1.0,0.4333333333333333,0.5833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6766666666666666,1.0,0.5,0.65,1,26 -can,0.9400000000000001,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -crackers,0.6649999999999999,1.0,0.55,0.6833333333333333,1,26 -plate,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333333,1,25 -calculator,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -tissues,0.585,1.0,0.5333333333333333,0.6666666666666667,1,26 -juice,0.6233333333333333,1.0,0.5166666666666666,0.65,1,26 -pink,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -lemon,0.6483333333333333,1.0,0.6,0.7166666666666667,1,26 -peach,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -bowl,0.7166666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8283333333333334,1.0,0.6833333333333333,0.7833333333333334,1,26 -blue,0.735,1.0,0.65,0.75,1,25 -used,0.795,1.0,0.6333333333333333,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.9166666666666666,1.0,0.85,0.8999999999999998,1,26 -ball,0.6599999999999999,1.0,0.5166666666666666,0.65,1,25 -notebook,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -garlic,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -pair,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,26 -container,0.6216666666666667,1.0,0.5833333333333333,0.7,1,25 -tomato,0.4766666666666667,0.8,0.5166666666666666,0.5666666666666667,1,26 -cellphone,0.33333333333333337,0.55,0.5166666666666666,0.49333333333333335,1,26 -potato,0.5766666666666665,1.0,0.5666666666666667,0.6833333333333333,1,25 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,25 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6464969135802469 -F1-Score: 0.6866666666666668 -Precision: 0.9044753086419753 -Recall: 0.6040123456790124 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.735,1.0,0.6666666666666666,0.7666666666666666,1,25 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.7383333333333333,0.95,0.6666666666666666,0.7333333333333333,1,24 -keyboard,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -glue,0.5216666666666666,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.5833333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -flashlight,0.5549999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -cup,0.33166666666666667,0.5,0.5666666666666667,0.5,1,26 -folded,0.6983333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -jam,0.5333333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -black,0.93,0.85,1.0,0.9066666666666666,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -soccer,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -hat,0.75,1.0,0.7,0.7833333333333333,1,26 -brown,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,24 -coffee,0.6916666666666667,1.0,0.65,0.75,1,26 -handle,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333334,1,25 -food,0.4833333333333333,1.0,0.5499999999999999,0.6666666666666667,1,26 -towel,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -chips,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -stapler,0.69,1.0,0.6166666666666666,0.7333333333333333,1,26 -onion,0.48,1.0,0.5499999999999999,0.6666666666666667,1,26 -bag,0.6433333333333333,1.0,0.4999999999999999,0.65,1,26 -sponge,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.8300000000000001,1.0,0.7833333333333333,0.85,1,25 -special,0.78,1.0,0.6333333333333333,0.75,1,26 -colgate,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -leaf,0.39166666666666666,1.0,0.4,0.5666666666666667,1,26 -tube,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -cell,0.47000000000000003,0.5,0.6499999999999999,0.5366666666666667,1,26 -mug,0.65,1.0,0.5666666666666667,0.6833333333333333,1,26 -yogurt,0.7466666666666667,1.0,0.7166666666666666,0.8,1,26 -plantain,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.525,1.0,0.5666666666666667,0.6833333333333333,1,26 -wheat,0.5916666666666666,1.0,0.5499999999999999,0.6666666666666667,1,26 -kleenex,0.5333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -toothbrush,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -binder,0.875,1.0,0.8,0.8666666666666666,1,26 -baseball,0.51,1.0,0.5,0.6333333333333333,1,26 -pliers,0.5183333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.58,1.0,0.4666666666666666,0.6166666666666666,1,26 -thins,0.7350000000000001,1.0,0.6666666666666666,0.7666666666666667,1,26 -package,0.705,1.0,0.7,0.7833333333333333,1,26 -k,0.7133333333333333,1.0,0.65,0.75,1,26 -jelly,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -fruit,0.735,0.65,0.9,0.7333333333333334,2,26 -apple,0.675,0.9,0.6,0.65,1,25 -bell,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -jar,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -bound,0.475,1.0,0.4999999999999999,0.6333333333333333,1,26 -lettuce,0.7816666666666666,1.0,0.5833333333333333,0.7166666666666667,1,26 -brush,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -scissors,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.7916666666666666,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.6633333333333333,1.0,0.5666666666666667,0.7,1,26 -top,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -spiral,0.8633333333333333,1.0,0.75,0.8333333333333333,1,26 -handles,0.6599999999999999,1.0,0.6,0.7166666666666667,1,25 -camera,0.7,1.0,0.65,0.75,1,26 -eraser,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.78,1.0,0.65,0.75,1,26 -pitcher,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.7466666666666666,1.0,0.7,0.7833333333333333,1,26 -stick,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -cereal,0.8816666666666666,1.0,0.75,0.8333333333333333,1,26 -bulb,0.975,1.0,0.9666666666666666,0.9800000000000001,2,27 -hair,0.6966666666666667,1.0,0.5666666666666667,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.78,1.0,0.8166666666666667,0.8666666666666666,1,26 -can,0.8716666666666667,1.0,0.8333333333333333,0.9,2,25 -coca,0.7166666666666666,1.0,0.7166666666666666,0.8,1,26 -crackers,0.505,1.0,0.4499999999999999,0.6,1,26 -plate,0.6266666666666667,1.0,0.5166666666666666,0.65,1,25 -calculator,0.5983333333333334,0.5,0.7,0.5666666666666667,1,26 -tissues,0.6583333333333333,1.0,0.6,0.7166666666666667,1,26 -juice,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -pink,0.58,1.0,0.4833333333333333,0.6333333333333333,1,25 -lemon,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -bowl,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.675,1.0,0.7,0.7833333333333334,1,26 -blue,0.675,1.0,0.6333333333333333,0.7333333333333333,1,25 -used,0.755,1.0,0.6166666666666666,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.7233333333333334,1.0,0.5666666666666667,0.7,1,26 -ball,0.75,1.0,0.6499999999999999,0.75,1,25 -notebook,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -garlic,0.6416666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -cleaning,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -pair,0.9016666666666667,1.0,0.8666666666666666,0.9200000000000002,2,27 -container,0.45999999999999996,1.0,0.4333333333333333,0.5833333333333333,1,25 -tomato,0.6383333333333334,0.65,0.7833333333333333,0.6333333333333334,1,26 -cellphone,0.5650000000000001,0.5,0.6833333333333333,0.5566666666666666,1,26 -potato,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6514506172839506 -F1-Score: 0.6935493827160493 -Precision: 0.8972222222222221 -Recall: 0.6189814814814815 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8466666666666667,1.0,0.7,0.8,1,24 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.555,0.95,0.5666666666666667,0.65,1,24 -keyboard,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -cup,0.38,0.5,0.6,0.5199999999999999,1,26 -folded,0.7266666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -jam,0.5216666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -black,0.9583333333333334,0.925,1.0,0.9523809523809523,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.665,1.0,0.5666666666666667,0.7,1,26 -soccer,0.7116666666666667,1.0,0.5666666666666667,0.7,1,26 -hat,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.9333333333333332,1.0,0.9333333333333332,0.96,2,24 -coffee,0.5466666666666666,1.0,0.5166666666666666,0.65,1,25 -handle,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -food,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -towel,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -chips,0.5133333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -stapler,0.635,1.0,0.5666666666666667,0.7,1,26 -onion,0.75,1.0,0.7166666666666666,0.8,1,26 -bag,0.7416666666666667,1.0,0.7,0.7833333333333333,1,26 -sponge,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.7216666666666666,1.0,0.7,0.7833333333333333,1,25 -special,0.7849999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -colgate,0.4583333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -leaf,0.525,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.7133333333333333,1.0,0.75,0.8166666666666667,1,26 -cell,0.4716666666666667,0.6,0.6333333333333333,0.5466666666666667,1,26 -mug,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -yogurt,0.9466666666666667,1.0,0.9,0.9333333333333332,1,26 -plantain,0.6666666666666666,1.0,0.6833333333333332,0.7666666666666666,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.7216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -toothbrush,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -binder,0.575,1.0,0.4666666666666666,0.6166666666666666,1,26 -baseball,0.8099999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -pliers,0.6933333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5933333333333334,1.0,0.5833333333333333,0.7,1,26 -thins,0.5183333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -package,0.6566666666666666,1.0,0.6,0.7166666666666667,1,26 -k,0.705,1.0,0.5833333333333333,0.7,1,26 -jelly,0.6183333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -fruit,0.725,0.7,0.8333333333333333,0.74,2,26 -apple,0.7133333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -bell,0.6433333333333333,1.0,0.6,0.7166666666666667,1,26 -battery,0.765,1.0,0.5833333333333333,0.7166666666666667,1,26 -jar,0.76,1.0,0.6166666666666666,0.7333333333333334,1,26 -bound,0.5633333333333334,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.45999999999999996,1.0,0.4333333333333333,0.5833333333333333,1,26 -brush,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.8483333333333334,1.0,0.7,0.8,1,26 -lime,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -toothpaste,0.7216666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -top,0.6566666666666667,1.0,0.55,0.6833333333333333,1,26 -spiral,0.8400000000000001,1.0,0.65,0.7666666666666667,1,26 -handles,0.7566666666666666,1.0,0.6333333333333333,0.75,1,25 -camera,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -eraser,0.755,1.0,0.6666666666666666,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.6799999999999999,1.0,0.6,0.7166666666666666,1,26 -pitcher,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -phone,0.7633333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -stick,0.6916666666666667,1.0,0.5999999999999999,0.7166666666666667,1,25 -cereal,0.5433333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -bulb,0.96,1.0,0.9333333333333332,0.96,2,26 -hair,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -can,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.6666666666666666,1.0,0.6666666666666666,0.75,1,26 -crackers,0.6766666666666665,1.0,0.5999999999999999,0.7166666666666667,1,26 -plate,0.8716666666666667,1.0,0.7833333333333333,0.85,1,25 -calculator,0.5266666666666666,0.5,0.6666666666666666,0.5466666666666666,1,26 -tissues,0.89,1.0,0.7833333333333333,0.85,1,26 -juice,0.5433333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -pink,0.5833333333333333,1.0,0.4833333333333333,0.6333333333333333,1,25 -lemon,0.6849999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -peach,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -bowl,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7683333333333333,1.0,0.6499999999999999,0.75,1,26 -blue,0.755,1.0,0.6833333333333333,0.7833333333333333,1,25 -used,0.605,1.0,0.5666666666666667,0.6833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -ball,0.5499999999999999,1.0,0.5999999999999999,0.7,1,25 -notebook,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.5216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -cleaning,0.8149999999999998,1.0,0.7333333333333333,0.8166666666666668,1,26 -pair,0.8933333333333333,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.6833333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -tomato,0.62,0.8,0.6333333333333333,0.6166666666666667,1,26 -cellphone,0.28500000000000003,0.55,0.4999999999999999,0.4833333333333334,1,26 -potato,0.6383333333333334,1.0,0.55,0.6833333333333333,1,25 -light,0.8766666666666667,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6558641975308643 -F1-Score: 0.6932627865961201 -Precision: 0.9030092592592593 -Recall: 0.6121913580246913 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8083333333333332,1.0,0.7166666666666666,0.8,1,25 -yellow,0.9333333333333333,0.8333333333333333,1.0,0.8933333333333332,6,24 -looks,0.6083333333333334,0.9,0.65,0.6833333333333333,1,24 -keyboard,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.7333333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.63,1.0,0.5166666666666666,0.65,1,26 -cup,0.14333333333333337,0.5,0.5,0.47333333333333344,1,26 -folded,0.675,1.0,0.65,0.75,1,26 -jam,0.8316666666666667,1.0,0.65,0.7666666666666667,1,26 -black,0.8766666666666667,0.725,1.0,0.8257142857142856,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.655,1.0,0.5833333333333333,0.7,1,26 -soccer,0.5766666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -hat,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -brown,0.8916666666666666,1.0,0.8666666666666666,0.9200000000000002,2,26 -coffee,0.7433333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -handle,0.6799999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -food,0.7133333333333333,1.0,0.6,0.7166666666666667,1,24 -towel,0.6833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -chips,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.7083333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -onion,0.8016666666666667,1.0,0.7166666666666666,0.8,1,26 -bag,0.8550000000000001,1.0,0.8333333333333334,0.8833333333333332,1,26 -sponge,0.6183333333333334,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.6716666666666666,1.0,0.6,0.7166666666666667,1,25 -special,0.665,1.0,0.5999999999999999,0.7166666666666666,1,26 -colgate,0.5716666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -leaf,0.71,1.0,0.5166666666666666,0.6666666666666667,1,26 -tube,0.4583333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -cell,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -mug,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -yogurt,0.58,1.0,0.5833333333333333,0.7,1,26 -plantain,0.6133333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -wheat,0.7916666666666666,1.0,0.7166666666666666,0.8,1,26 -kleenex,0.6016666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -toothbrush,0.6966666666666665,1.0,0.5999999999999999,0.7166666666666667,1,26 -binder,0.7083333333333333,1.0,0.5666666666666667,0.7,1,26 -baseball,0.6183333333333334,1.0,0.5,0.65,1,26 -pliers,0.5,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.775,1.0,0.6666666666666666,0.7666666666666667,1,26 -thins,0.85,1.0,0.75,0.8333333333333333,1,26 -package,0.5966666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -jelly,0.6916666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -fruit,0.8066666666666666,0.7166666666666666,0.9333333333333332,0.7766666666666666,2,26 -apple,0.6499999999999999,0.85,0.6833333333333333,0.6666666666666667,1,25 -bell,0.7266666666666667,1.0,0.7166666666666666,0.8,1,26 -battery,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -jar,0.7183333333333334,1.0,0.6,0.7166666666666667,1,26 -bound,0.6766666666666666,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -brush,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -scissors,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -lime,0.58,1.0,0.4499999999999999,0.6,1,25 -toothpaste,0.69,1.0,0.5833333333333333,0.7,1,26 -top,0.6183333333333334,1.0,0.5833333333333333,0.7,1,26 -spiral,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -handles,0.71,1.0,0.5999999999999999,0.7166666666666667,1,25 -camera,0.7166666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -eraser,0.5666666666666667,1.0,0.55,0.6666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.58,1.0,0.4666666666666666,0.6166666666666667,1,26 -pitcher,0.5683333333333332,1.0,0.5833333333333333,0.7,1,26 -phone,0.53,1.0,0.4999999999999999,0.6333333333333333,1,26 -stick,0.655,1.0,0.5833333333333333,0.7,1,25 -cereal,0.85,1.0,0.8166666666666667,0.8666666666666666,1,26 -bulb,0.8583333333333332,1.0,0.8333333333333333,0.9,2,26 -hair,0.4583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6583333333333333,1.0,0.6499999999999999,0.75,1,26 -can,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coca,0.6266666666666667,1.0,0.6,0.7166666666666667,1,26 -crackers,0.6983333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -plate,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -calculator,0.705,1.0,0.6166666666666666,0.7333333333333334,1,26 -tissues,0.5083333333333333,1.0,0.5833333333333333,0.7,1,26 -juice,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -pink,0.7749999999999999,1.0,0.7499999999999999,0.8166666666666667,1,25 -lemon,0.525,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333334,1,26 -bowl,0.4883333333333334,1.0,0.4999999999999999,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.73,1.0,0.6833333333333333,0.7666666666666666,1,26 -blue,0.605,1.0,0.4666666666666666,0.6166666666666667,1,25 -used,0.805,1.0,0.7666666666666666,0.8333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -ball,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666667,1,25 -notebook,0.775,1.0,0.7166666666666666,0.8,1,26 -garlic,0.5333333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -cleaning,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -pair,0.825,1.0,0.8,0.8800000000000001,2,27 -container,0.6266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -tomato,0.5233333333333333,0.6,0.5999999999999999,0.5466666666666666,1,26 -cellphone,0.76,1.0,0.6333333333333333,0.75,1,26 -potato,0.7333333333333333,1.0,0.6333333333333332,0.7333333333333333,1,25 -light,0.9066666666666666,1.0,0.8666666666666666,0.9199999999999999,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6500771604938271 -F1-Score: 0.6919047619047619 -Precision: 0.9085648148148148 -Recall: 0.6095679012345678 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,25 -looks,0.39,0.9,0.4833333333333333,0.5666666666666667,1,24 -keyboard,0.6833333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.9216666666666666,1.0,0.85,0.9,1,26 -flashlight,0.7216666666666667,1.0,0.6,0.7166666666666667,1,26 -cup,0.2633333333333333,0.5,0.6,0.5066666666666667,1,25 -folded,0.8166666666666667,1.0,0.7999999999999999,0.85,1,26 -jam,0.8300000000000001,1.0,0.7833333333333333,0.85,1,26 -black,0.8300000000000001,0.6,1.0,0.7333333333333334,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -soccer,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -hat,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.9333333333333332,1.0,0.9333333333333332,0.9600000000000002,2,26 -coffee,0.835,1.0,0.7166666666666666,0.8,1,26 -handle,0.5633333333333332,1.0,0.4833333333333333,0.6333333333333333,1,26 -food,0.61,1.0,0.5666666666666667,0.6833333333333333,1,25 -towel,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -chips,0.6233333333333333,1.0,0.5,0.65,1,26 -stapler,0.7266666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -onion,0.78,1.0,0.7166666666666666,0.8,1,26 -bag,0.3966666666666666,1.0,0.38333333333333336,0.55,1,26 -sponge,0.68,1.0,0.5999999999999999,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7216666666666666,1.0,0.65,0.75,1,25 -special,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -colgate,0.765,1.0,0.6166666666666666,0.7333333333333334,1,26 -leaf,0.7983333333333333,1.0,0.6333333333333333,0.75,1,26 -tube,0.46333333333333326,1.0,0.4,0.5666666666666667,1,26 -cell,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -mug,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -yogurt,0.7666666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -plantain,0.73,1.0,0.7166666666666666,0.8,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -wheat,0.5966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -kleenex,0.6766666666666665,1.0,0.5499999999999999,0.6833333333333333,1,26 -toothbrush,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -binder,0.58,1.0,0.55,0.6666666666666667,1,26 -baseball,0.7749999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -pliers,0.5599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -thins,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -package,0.8833333333333332,1.0,0.8333333333333333,0.8833333333333332,1,26 -k,0.73,1.0,0.6333333333333333,0.75,1,26 -jelly,0.4416666666666666,1.0,0.4833333333333334,0.6166666666666666,1,26 -fruit,0.7533333333333334,0.6833333333333333,0.8999999999999998,0.7466666666666667,2,26 -apple,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -bell,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -battery,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -jar,0.6333333333333333,1.0,0.6666666666666666,0.75,1,26 -bound,0.7566666666666666,1.0,0.6333333333333333,0.75,1,26 -lettuce,0.8566666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -brush,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -scissors,0.7166666666666667,1.0,0.65,0.75,1,26 -lime,0.5599999999999999,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.51,1.0,0.5166666666666666,0.65,1,26 -top,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -spiral,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -handles,0.7583333333333333,1.0,0.7499999999999999,0.8166666666666667,1,25 -camera,0.5883333333333333,1.0,0.55,0.6833333333333333,1,26 -eraser,0.6883333333333334,1.0,0.65,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7216666666666667,1.0,0.65,0.75,1,26 -pitcher,0.4833333333333333,1.0,0.5333333333333333,0.65,1,26 -phone,0.8833333333333332,1.0,0.8333333333333333,0.8833333333333332,1,26 -stick,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,25 -cereal,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -bulb,0.8666666666666666,1.0,0.8333333333333333,0.9,2,26 -hair,0.4833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7183333333333334,1.0,0.65,0.75,1,26 -can,0.9266666666666667,1.0,0.9,0.9400000000000001,2,25 -coca,0.7916666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -crackers,0.93,1.0,0.85,0.9,1,26 -plate,0.5833333333333333,1.0,0.6666666666666666,0.75,1,25 -calculator,0.705,1.0,0.5999999999999999,0.7166666666666666,1,26 -tissues,0.7249999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.7933333333333332,1.0,0.7,0.7833333333333333,1,26 -pink,0.705,1.0,0.5666666666666667,0.6833333333333333,1,25 -lemon,0.8216666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -peach,0.5700000000000001,1.0,0.4833333333333333,0.6333333333333333,1,26 -bowl,0.6883333333333332,1.0,0.5333333333333333,0.6666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -blue,0.675,1.0,0.5833333333333333,0.7,1,25 -used,0.5766666666666667,1.0,0.4666666666666666,0.6166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -ball,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.73,1.0,0.7,0.7833333333333333,1,26 -garlic,0.6916666666666667,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.7083333333333333,1.0,0.7166666666666666,0.8,1,26 -pair,0.9016666666666666,1.0,0.8666666666666666,0.9200000000000002,2,27 -container,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -tomato,0.5483333333333333,0.7,0.6333333333333333,0.5733333333333334,1,26 -cellphone,0.6183333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -potato,0.705,1.0,0.6,0.7166666666666666,1,25 -light,0.93,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,26 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6650771604938273 -F1-Score: 0.7056172839506173 -Precision: 0.9104938271604939 -Recall: 0.6287037037037037 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8216666666666667,1.0,0.7666666666666666,0.8333333333333333,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.8383333333333333,0.9,0.7833333333333333,0.7833333333333333,1,24 -keyboard,0.7516666666666667,1.0,0.6333333333333333,0.75,1,26 -glue,0.605,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.7216666666666667,1.0,0.6,0.7166666666666667,1,26 -flashlight,0.7133333333333334,1.0,0.6333333333333333,0.75,1,26 -cup,0.4383333333333333,0.5,0.6166666666666666,0.53,1,26 -folded,0.7333333333333333,1.0,0.6666666666666666,0.75,1,26 -jam,0.8683333333333334,1.0,0.75,0.8333333333333333,1,26 -black,0.9100000000000001,0.8,1.0,0.8733333333333334,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7416666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -soccer,0.6666666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -hat,0.7133333333333333,1.0,0.75,0.8166666666666668,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.8800000000000001,1.0,0.7833333333333333,0.85,1,25 -handle,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,25 -food,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -towel,0.6,1.0,0.5499999999999999,0.6666666666666666,1,26 -chips,0.5833333333333333,1.0,0.6666666666666666,0.75,1,26 -stapler,0.7666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -onion,0.5716666666666665,0.85,0.5,0.6,1,26 -bag,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -sponge,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -zero,0,0,0,0,1,26 -computer,0.625,1.0,0.5333333333333333,0.6666666666666667,1,25 -special,0.7633333333333333,1.0,0.6333333333333333,0.75,1,26 -colgate,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -leaf,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -tube,0.6649999999999999,1.0,0.55,0.6833333333333333,1,26 -cell,0.8,1.0,0.7833333333333333,0.85,1,26 -mug,0.7883333333333333,1.0,0.5833333333333333,0.7166666666666667,1,25 -yogurt,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.625,1.0,0.4833333333333333,0.6333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -wheat,0.5933333333333333,1.0,0.5166666666666666,0.65,1,26 -kleenex,0.6166666666666667,1.0,0.6,0.7166666666666667,1,26 -toothbrush,0.5933333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -binder,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -baseball,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -pliers,0.8,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.635,1.0,0.5833333333333333,0.7,1,26 -thins,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -package,0.505,1.0,0.45,0.6,1,26 -k,0.71,1.0,0.5499999999999999,0.6833333333333333,1,26 -jelly,0.6933333333333334,1.0,0.5333333333333333,0.6666666666666666,1,26 -fruit,0.7316666666666667,0.6833333333333333,0.9,0.7466666666666667,2,26 -apple,0.5233333333333332,0.9,0.4666666666666666,0.5666666666666667,1,25 -bell,0.6833333333333333,1.0,0.6,0.7166666666666666,1,26 -battery,0.6183333333333333,1.0,0.5166666666666666,0.65,1,26 -jar,0.6383333333333333,1.0,0.5666666666666667,0.7,1,26 -bound,0.5516666666666666,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.655,1.0,0.5999999999999999,0.7166666666666667,1,26 -brush,0.75,1.0,0.7333333333333333,0.8,1,26 -scissors,0.425,1.0,0.5,0.6333333333333333,1,26 -lime,0.625,1.0,0.6,0.7166666666666666,1,25 -toothpaste,0.6266666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -top,0.6533333333333333,1.0,0.6,0.7166666666666667,1,26 -spiral,0.75,1.0,0.6499999999999999,0.75,1,26 -handles,0.6649999999999999,1.0,0.5333333333333333,0.6666666666666667,1,25 -camera,0.63,1.0,0.5833333333333333,0.7,1,26 -eraser,0.5599999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.8683333333333334,1.0,0.75,0.8333333333333333,1,26 -pitcher,0.46333333333333326,1.0,0.4999999999999999,0.6333333333333333,1,26 -phone,0.5633333333333332,1.0,0.4666666666666666,0.6166666666666666,1,26 -stick,0.7683333333333333,1.0,0.7166666666666666,0.8,1,25 -cereal,0.5883333333333333,1.0,0.5,0.65,1,26 -bulb,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.7166666666666667,1.0,0.6499999999999999,0.75,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -can,0.8466666666666667,1.0,0.8333333333333333,0.9,2,24 -coca,0.7133333333333334,1.0,0.5666666666666667,0.7,1,26 -crackers,0.7466666666666667,1.0,0.6499999999999999,0.75,1,26 -plate,0.5133333333333333,1.0,0.4833333333333333,0.6166666666666667,1,25 -calculator,0.7166666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -tissues,0.7899999999999999,1.0,0.6499999999999999,0.75,1,26 -juice,0.5716666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -pink,0.725,1.0,0.75,0.8166666666666667,1,25 -lemon,0.65,1.0,0.5833333333333333,0.7,1,26 -peach,0.725,1.0,0.7,0.7833333333333333,1,26 -bowl,0.7866666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7083333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -blue,0.5683333333333334,0.95,0.4666666666666666,0.6,1,25 -used,0.5966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.6950000000000001,1.0,0.5666666666666667,0.7,1,26 -ball,0.6633333333333333,1.0,0.6833333333333332,0.7666666666666666,1,25 -notebook,0.8099999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -garlic,0.7966666666666666,1.0,0.6333333333333333,0.75,1,26 -cleaning,0.5083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.93,1.0,0.9,0.9400000000000001,2,26 -container,0.5483333333333332,1.0,0.4666666666666666,0.6166666666666667,1,26 -tomato,0.7166666666666666,0.75,0.7166666666666666,0.65,1,26 -cellphone,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -potato,0.6849999999999999,1.0,0.5666666666666667,0.7,1,25 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,27 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6560802469135802 -F1-Score: 0.6909876543209876 -Precision: 0.9100308641975309 -Recall: 0.6072530864197531 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5666666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.6666666666666666,1.0,0.5666666666666667,0.7,1,24 -keyboard,0.4466666666666666,1.0,0.4333333333333333,0.5833333333333333,1,26 -glue,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6133333333333333,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666668,1,26 -cup,0.41500000000000004,0.55,0.6666666666666666,0.5433333333333334,1,26 -folded,0.735,1.0,0.6166666666666666,0.7333333333333334,1,26 -jam,0.6483333333333333,1.0,0.45,0.6166666666666667,1,26 -black,0.93,0.85,1.0,0.9066666666666666,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -soccer,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -hat,0.4833333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.5650000000000001,1.0,0.4833333333333332,0.6333333333333333,1,26 -handle,0.7366666666666666,1.0,0.6166666666666666,0.7333333333333333,1,25 -food,0.8049999999999999,1.0,0.7166666666666666,0.8,1,25 -towel,0.4216666666666667,1.0,0.38333333333333336,0.55,1,26 -chips,0.725,1.0,0.7,0.7833333333333333,1,26 -stapler,0.76,1.0,0.6666666666666666,0.7666666666666666,1,26 -onion,0.63,1.0,0.5333333333333332,0.6666666666666666,1,26 -bag,0.7350000000000001,1.0,0.5833333333333333,0.7166666666666667,1,26 -sponge,0.7433333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -special,0.525,1.0,0.4666666666666666,0.6166666666666667,1,26 -colgate,0.6799999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -leaf,0.6466666666666666,1.0,0.45,0.6166666666666667,1,26 -tube,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -cell,0.41166666666666674,0.65,0.5166666666666666,0.5133333333333333,1,26 -mug,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -yogurt,0.6599999999999999,1.0,0.6,0.7166666666666667,1,26 -plantain,0.5583333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -wheat,0.665,1.0,0.4833333333333333,0.6333333333333334,1,26 -kleenex,0.575,1.0,0.5166666666666666,0.65,1,26 -toothbrush,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -binder,0.5466666666666666,1.0,0.5833333333333333,0.7,1,26 -baseball,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -pliers,0.6333333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -thins,0.6566666666666666,1.0,0.5666666666666667,0.7,1,26 -package,0.7,1.0,0.7,0.7833333333333333,1,26 -k,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.6333333333333333,1.0,0.55,0.6833333333333333,1,26 -fruit,0.8466666666666667,0.85,0.9,0.8400000000000001,2,25 -apple,0.5866666666666667,0.75,0.5999999999999999,0.5833333333333333,1,25 -bell,0.8083333333333332,1.0,0.7833333333333333,0.85,1,26 -battery,0.625,1.0,0.5499999999999999,0.6833333333333333,1,26 -jar,0.675,1.0,0.6499999999999999,0.75,1,26 -bound,0.7166666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -lettuce,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -brush,0.775,1.0,0.75,0.8166666666666668,1,26 -scissors,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -lime,0.6633333333333333,1.0,0.6,0.7166666666666667,1,25 -toothpaste,0.7466666666666667,1.0,0.75,0.8166666666666667,1,26 -top,0.5416666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -spiral,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -handles,0.7466666666666667,1.0,0.7666666666666666,0.8333333333333334,1,25 -camera,0.6466666666666666,1.0,0.6,0.7166666666666667,1,26 -eraser,0.74,1.0,0.5999999999999999,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.4883333333333333,1.0,0.5166666666666666,0.65,1,26 -pitcher,0.4766666666666667,1.0,0.5166666666666666,0.65,1,26 -phone,0.6649999999999999,1.0,0.55,0.6833333333333333,1,26 -stick,0.7499999999999999,1.0,0.7166666666666666,0.8,1,25 -cereal,0.8166666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -bulb,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -hair,0.71,1.0,0.5999999999999999,0.7166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.375,1.0,0.4833333333333334,0.6166666666666666,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.96,2,24 -coca,0.6649999999999999,1.0,0.5166666666666666,0.6666666666666667,1,26 -crackers,0.5666666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -plate,0.8216666666666667,1.0,0.7666666666666666,0.8333333333333333,1,24 -calculator,0.6366666666666666,0.65,0.7666666666666666,0.6166666666666667,1,26 -tissues,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -juice,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -pink,0.78,1.0,0.7666666666666666,0.8333333333333333,1,25 -lemon,0.6,1.0,0.5999999999999999,0.7,1,26 -peach,0.61,1.0,0.5166666666666666,0.65,1,26 -bowl,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -blue,0.8216666666666665,1.0,0.7833333333333333,0.85,1,25 -used,0.5999999999999999,1.0,0.6333333333333332,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6566666666666666,1.0,0.55,0.6833333333333333,1,26 -ball,0.5133333333333333,1.0,0.5166666666666666,0.65,1,25 -notebook,0.755,1.0,0.65,0.75,1,26 -garlic,0.6683333333333333,1.0,0.6,0.7166666666666667,1,26 -cleaning,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.9083333333333332,1.0,0.9,0.9400000000000001,2,27 -container,0.7849999999999999,1.0,0.6499999999999999,0.75,1,25 -tomato,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -cellphone,0.575,0.7,0.5666666666666667,0.5666666666666667,1,26 -potato,0.7083333333333333,1.0,0.7166666666666666,0.8,1,25 -light,0.8399999999999999,1.0,0.8,0.8800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6402314814814815 -F1-Score: 0.6857407407407407 -Precision: 0.9069444444444444 -Recall: 0.6023148148148147 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666667,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.6766666666666667,0.95,0.6333333333333333,0.7,1,24 -keyboard,0.705,1.0,0.5999999999999999,0.7166666666666667,1,26 -glue,0.575,1.0,0.5499999999999999,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.61,1.0,0.55,0.6833333333333333,1,26 -flashlight,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -cup,0.325,0.5,0.5666666666666667,0.5000000000000001,1,26 -folded,0.61,1.0,0.5833333333333333,0.7,1,26 -jam,0.5549999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -black,0.8233333333333335,0.65,1.0,0.778095238095238,6,23 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6666666666666667,1.0,0.7333333333333332,0.8,1,26 -soccer,0.5666666666666667,1.0,0.5833333333333333,0.7,1,26 -hat,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.8866666666666667,1.0,0.8333333333333333,0.9,2,26 -coffee,0.63,1.0,0.5833333333333333,0.7,1,26 -handle,0.76,1.0,0.6666666666666666,0.7666666666666667,1,25 -food,0.7016666666666667,1.0,0.6,0.7166666666666667,1,24 -towel,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -chips,0.5433333333333332,1.0,0.41666666666666663,0.5833333333333334,1,26 -stapler,0.7249999999999999,1.0,0.6499999999999999,0.75,1,26 -onion,0.6383333333333334,1.0,0.5833333333333333,0.7,1,26 -bag,0.4383333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -sponge,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.8766666666666667,1.0,0.75,0.8333333333333333,1,25 -special,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -colgate,0.6916666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -leaf,0.7183333333333334,1.0,0.6499999999999999,0.75,1,26 -tube,0.7333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -mug,0.6216666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -yogurt,0.5999999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -plantain,0.44000000000000006,1.0,0.5166666666666666,0.65,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.54,1.0,0.5833333333333333,0.7,1,26 -wheat,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -toothbrush,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.705,1.0,0.5666666666666667,0.7,1,26 -baseball,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -pliers,0.46333333333333326,1.0,0.4833333333333333,0.6166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -thins,0.7583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -package,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -k,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -jelly,0.6716666666666666,1.0,0.65,0.75,1,26 -fruit,0.8133333333333332,0.6666666666666667,0.9666666666666666,0.7733333333333334,2,26 -apple,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -bell,0.5666666666666667,1.0,0.5833333333333333,0.7,1,26 -battery,0.77,1.0,0.6333333333333333,0.75,1,26 -jar,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -bound,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.505,1.0,0.4999999999999999,0.6333333333333333,1,26 -brush,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -scissors,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.5999999999999999,1.0,0.5333333333333333,0.65,1,25 -toothpaste,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -top,0.5716666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.6666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -handles,0.615,1.0,0.5499999999999999,0.6833333333333333,1,25 -camera,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -eraser,0.575,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,23 -banana,0.635,1.0,0.5333333333333332,0.6666666666666666,1,26 -pitcher,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -phone,0.7166666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -stick,0.7283333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -cereal,0.505,1.0,0.5166666666666666,0.65,1,26 -bulb,0.875,1.0,0.8666666666666668,0.9200000000000002,2,27 -hair,0.7383333333333333,1.0,0.6499999999999999,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5349999999999999,1.0,0.5166666666666666,0.65,1,26 -can,0.93,1.0,0.9,0.9400000000000001,2,25 -coca,0.8166666666666667,1.0,0.7833333333333333,0.85,1,26 -crackers,0.6499999999999999,1.0,0.5833333333333333,0.7,1,26 -plate,0.4916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,25 -calculator,0.6733333333333333,1.0,0.65,0.75,1,26 -tissues,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -pink,0.78,1.0,0.7166666666666666,0.8,1,25 -lemon,0.8133333333333332,1.0,0.75,0.8166666666666667,1,26 -peach,0.7583333333333333,1.0,0.65,0.75,1,26 -bowl,0.4133333333333334,1.0,0.4333333333333334,0.5833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.655,1.0,0.5666666666666667,0.6833333333333333,1,26 -blue,0.58,1.0,0.5333333333333333,0.6666666666666667,1,25 -used,0.7383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.8883333333333333,1.0,0.8333333333333333,0.8833333333333332,1,26 -ball,0.7033333333333334,1.0,0.5666666666666667,0.7,1,25 -notebook,0.6849999999999999,1.0,0.6499999999999999,0.75,1,26 -garlic,0.5433333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -cleaning,0.7849999999999999,1.0,0.6166666666666666,0.7333333333333334,1,26 -pair,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -container,0.7416666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -tomato,0.37333333333333335,0.65,0.4999999999999999,0.5033333333333333,1,26 -cellphone,0.505,1.0,0.5666666666666667,0.6833333333333333,1,26 -potato,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -light,0.9266666666666665,1.0,0.8999999999999998,0.9400000000000001,2,27 -green,1.0,1.0,1.0,1.0,3,25 -bottle,0.93,1.0,0.8999999999999998,0.9400000000000001,2,27 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6376234567901234 -F1-Score: 0.6903527336860671 -Precision: 0.9112654320987653 -Recall: 0.6074074074074074 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5166666666666667,1.0,0.4833333333333333,0.6333333333333334,1,25 -yellow,0.9433333333333334,0.85,1.0,0.8999999999999998,6,23 -looks,0.6733333333333332,0.85,0.6666666666666666,0.6833333333333333,1,24 -keyboard,0.6966666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -glue,0.7683333333333333,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.48,1.0,0.4999999999999999,0.6333333333333333,1,26 -flashlight,0.75,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.4666666666666666,0.5,0.6666666666666666,0.5466666666666666,1,26 -folded,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jam,0.7766666666666666,1.0,0.6,0.7333333333333334,1,26 -black,0.9466666666666669,0.8833333333333332,1.0,0.9266666666666665,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -soccer,0.4833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -hat,0.5166666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.48,1.0,0.5166666666666666,0.65,1,26 -handle,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666667,1,25 -food,0.6383333333333334,1.0,0.5833333333333333,0.7,1,24 -towel,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.6016666666666667,1.0,0.4666666666666666,0.6333333333333333,1,26 -stapler,0.5516666666666665,1.0,0.4499999999999999,0.6,1,26 -onion,0.655,1.0,0.6,0.7166666666666667,1,26 -bag,0.625,1.0,0.5833333333333333,0.7,1,26 -sponge,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6183333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -special,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -colgate,0.6,1.0,0.6166666666666666,0.7166666666666666,1,26 -leaf,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -tube,0.7716666666666667,1.0,0.7,0.7833333333333333,1,26 -cell,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -mug,0.5633333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -yogurt,0.7733333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -plantain,0.35833333333333334,1.0,0.4333333333333333,0.5833333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.735,1.0,0.6499999999999999,0.75,1,26 -wheat,0.66,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -toothbrush,0.45166666666666666,1.0,0.4499999999999999,0.6,1,26 -binder,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -baseball,0.6183333333333333,1.0,0.5833333333333333,0.7,1,26 -pliers,0.36666666666666664,1.0,0.4833333333333333,0.6166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7233333333333333,1.0,0.65,0.75,1,26 -thins,0.5650000000000001,1.0,0.4833333333333333,0.6333333333333333,1,26 -package,0.7816666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -k,0.655,1.0,0.6166666666666666,0.7333333333333334,1,26 -jelly,0.6599999999999999,1.0,0.7,0.7833333333333333,1,26 -fruit,0.8233333333333335,0.75,0.9333333333333332,0.8066666666666666,2,26 -apple,0.755,0.95,0.6666666666666666,0.7333333333333333,1,25 -bell,0.65,1.0,0.5333333333333333,0.6666666666666667,1,26 -battery,0.7266666666666667,1.0,0.6333333333333333,0.75,1,26 -jar,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.6733333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -lettuce,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -brush,0.7,1.0,0.7499999999999999,0.8166666666666667,1,26 -scissors,0.6,1.0,0.5166666666666666,0.65,1,26 -lime,0.6849999999999999,1.0,0.5499999999999999,0.6833333333333333,1,25 -toothpaste,0.8083333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -top,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.6166666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -handles,0.6966666666666667,1.0,0.65,0.75,1,25 -camera,0.4833333333333333,1.0,0.4499999999999999,0.6,1,26 -eraser,0.61,1.0,0.4666666666666666,0.6166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7816666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -pitcher,0.7916666666666666,1.0,0.7,0.7833333333333333,1,26 -phone,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -stick,0.505,1.0,0.45,0.6,1,25 -cereal,0.75,1.0,0.7166666666666666,0.8,1,26 -bulb,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -hair,0.735,1.0,0.6499999999999999,0.75,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.655,1.0,0.5833333333333333,0.7,1,26 -can,0.93,1.0,0.9,0.9400000000000001,2,25 -coca,0.6433333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -crackers,0.8,1.0,0.7166666666666666,0.8,1,26 -plate,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666667,1,25 -calculator,0.6433333333333333,0.85,0.6499999999999999,0.65,1,26 -tissues,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -juice,0.71,1.0,0.5999999999999999,0.7166666666666666,1,26 -pink,0.8800000000000001,1.0,0.7833333333333333,0.85,1,25 -lemon,0.95,1.0,0.9,0.9333333333333332,1,26 -peach,0.6433333333333333,1.0,0.6,0.7166666666666667,1,26 -bowl,0.7816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -blue,0.5633333333333334,1.0,0.5666666666666667,0.6833333333333333,1,25 -used,0.6966666666666667,1.0,0.6,0.7166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.6683333333333333,1.0,0.5666666666666667,0.7,1,26 -ball,0.5966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.6816666666666666,1.0,0.6,0.7166666666666667,1,26 -garlic,0.73,1.0,0.5999999999999999,0.7166666666666667,1,26 -cleaning,0.635,1.0,0.5999999999999999,0.7166666666666667,1,26 -pair,0.95,1.0,0.9333333333333332,0.9600000000000002,2,27 -container,0.7633333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -tomato,0.6083333333333333,0.8,0.5333333333333333,0.5666666666666667,1,26 -cellphone,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -potato,0.78,1.0,0.7666666666666666,0.8333333333333333,1,25 -light,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6493209876543211 -F1-Score: 0.6913888888888889 -Precision: 0.9114197530864198 -Recall: 0.6080246913580246 diff --git a/Validation/UW_raw_75_object_0.75.csv b/Validation/UW_raw_75_object_0.75.csv deleted file mode 100644 index 6dd81b1..0000000 --- a/Validation/UW_raw_75_object_0.75.csv +++ /dev/null @@ -1,2875 +0,0 @@ -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,24 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.63,0.95,0.5666666666666667,0.65,1,24 -keyboard,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -glue,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.7933333333333333,1.0,0.6333333333333333,0.75,1,26 -flashlight,0.6966666666666665,1.0,0.6833333333333333,0.7666666666666666,1,26 -cup,0.29333333333333333,0.5,0.4833333333333333,0.4766666666666667,1,26 -folded,0.7833333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -jam,0.6866666666666666,1.0,0.6,0.7166666666666667,1,26 -black,0.9466666666666667,0.85,1.0,0.9,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6216666666666666,1.0,0.5833333333333333,0.7,1,26 -soccer,0.6716666666666666,1.0,0.55,0.6833333333333333,1,26 -hat,0.7383333333333333,1.0,0.5666666666666667,0.7,1,26 -brown,0.96,1.0,0.9333333333333332,0.96,2,24 -coffee,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -handle,0.5549999999999999,1.0,0.5833333333333333,0.7,1,25 -food,0.7133333333333333,1.0,0.65,0.75,1,25 -towel,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -chips,0.63,1.0,0.6333333333333332,0.7333333333333333,1,26 -stapler,0.9333333333333332,1.0,0.9333333333333332,0.95,1,26 -onion,0.705,1.0,0.5499999999999999,0.6833333333333333,1,26 -bag,0.7333333333333333,1.0,0.65,0.75,1,26 -sponge,0.4683333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.605,1.0,0.5166666666666666,0.65,1,25 -special,0.6133333333333334,1.0,0.5833333333333333,0.7,1,26 -colgate,0.6933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -leaf,0.675,1.0,0.6666666666666666,0.7666666666666667,1,26 -tube,0.6083333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.45999999999999996,0.5,0.5999999999999999,0.52,1,26 -mug,0.71,1.0,0.6166666666666666,0.7333333333333333,1,25 -yogurt,0.6183333333333334,1.0,0.5833333333333333,0.7,1,26 -plantain,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -wheat,0.7433333333333334,1.0,0.5666666666666667,0.7,1,26 -kleenex,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -toothbrush,0.6666666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -binder,0.7466666666666667,1.0,0.65,0.75,1,26 -baseball,0.6983333333333334,1.0,0.55,0.6833333333333333,1,26 -pliers,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7333333333333333,1.0,0.65,0.75,1,26 -thins,0.9,1.0,0.8833333333333332,0.9166666666666666,1,26 -package,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.5766666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -jelly,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -fruit,0.745,0.65,0.8666666666666668,0.7066666666666667,2,26 -apple,0.5933333333333333,0.7,0.6499999999999999,0.5833333333333333,1,25 -bell,0.6399999999999999,1.0,0.4999999999999999,0.65,1,26 -battery,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -jar,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -bound,0.5266666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -lettuce,0.7116666666666667,1.0,0.5666666666666667,0.7,1,26 -brush,0.6433333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -scissors,0.53,1.0,0.41666666666666663,0.5833333333333334,1,26 -lime,0.685,1.0,0.5666666666666667,0.7,1,25 -toothpaste,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -spiral,0.7166666666666666,1.0,0.7333333333333332,0.8,1,26 -handles,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666667,1,25 -camera,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -eraser,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -pitcher,0.8016666666666667,1.0,0.7166666666666666,0.8,1,26 -phone,0.6933333333333334,1.0,0.6666666666666666,0.7666666666666666,1,26 -stick,0.6216666666666666,1.0,0.6333333333333332,0.7333333333333333,1,25 -cereal,0.4749999999999999,1.0,0.4833333333333332,0.6166666666666666,1,26 -bulb,0.9400000000000001,1.0,0.9,0.9400000000000001,2,27 -hair,0.5966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6783333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -can,0.8833333333333332,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.6016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -crackers,0.6883333333333334,1.0,0.55,0.6833333333333333,1,26 -plate,0.7216666666666667,1.0,0.5666666666666667,0.7,1,25 -calculator,0.6966666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -tissues,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -juice,0.5683333333333334,1.0,0.5166666666666666,0.65,1,26 -pink,0.6483333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -lemon,0.8433333333333334,1.0,0.7,0.8,1,26 -peach,0.7133333333333333,1.0,0.65,0.75,1,26 -bowl,0.7683333333333333,1.0,0.65,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -blue,0.5916666666666666,1.0,0.5833333333333333,0.7,1,25 -used,0.5083333333333334,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.8,1.0,0.7333333333333333,0.8166666666666667,1,26 -ball,0.75,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.71,1.0,0.6,0.7166666666666667,1,26 -garlic,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -cleaning,0.6,1.0,0.5166666666666666,0.65,1,26 -pair,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,26 -container,0.635,1.0,0.5333333333333333,0.6666666666666667,1,25 -tomato,0.5166666666666666,0.8,0.5166666666666666,0.55,1,26 -cellphone,0.5033333333333333,0.5,0.6666666666666666,0.5466666666666667,1,26 -potato,0.4966666666666667,1.0,0.5166666666666666,0.65,1,25 -light,0.9266666666666665,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.96,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6522993827160493 -F1-Score: 0.6853086419753086 -Precision: 0.8930555555555556 -Recall: 0.6064814814814815 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,24 -yellow,0.9633333333333333,0.9166666666666666,1.0,0.9466666666666667,6,25 -looks,0.665,0.75,0.6666666666666666,0.6166666666666667,1,24 -keyboard,0.74,1.0,0.5999999999999999,0.7166666666666667,1,26 -glue,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -flashlight,0.5083333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -cup,0.35500000000000004,0.5,0.65,0.5366666666666667,1,26 -folded,0.6483333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -jam,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.8883333333333333,0.775,1.0,0.8590476190476191,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5833333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -soccer,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -hat,0.46333333333333326,1.0,0.4333333333333333,0.5833333333333333,1,26 -brown,0.86,1.0,0.8333333333333333,0.9,2,24 -coffee,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -handle,0.6883333333333332,1.0,0.7,0.7833333333333333,1,25 -food,0.6666666666666666,1.0,0.6,0.7166666666666667,1,26 -towel,0.6883333333333332,1.0,0.6,0.7166666666666666,1,26 -chips,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -stapler,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.9016666666666667,1.0,0.8,0.8666666666666666,1,26 -bag,0.6916666666666667,1.0,0.65,0.75,1,26 -sponge,0.7383333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6516666666666666,1.0,0.5833333333333333,0.7,1,25 -special,0.7016666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -colgate,0.9349999999999999,1.0,0.85,0.9,1,26 -leaf,0.5166666666666666,1.0,0.5166666666666666,0.65,1,26 -tube,0.6266666666666667,1.0,0.4999999999999999,0.65,1,26 -cell,0.6499999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -mug,0.40166666666666667,1.0,0.4,0.5666666666666667,1,26 -yogurt,0.6883333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -plantain,0.6433333333333333,1.0,0.4999999999999999,0.65,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.63,1.0,0.6,0.7166666666666667,1,26 -wheat,0.61,1.0,0.5166666666666666,0.65,1,26 -kleenex,0.45499999999999996,1.0,0.4,0.5666666666666667,1,26 -toothbrush,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -binder,0.7216666666666666,1.0,0.7,0.7833333333333333,1,26 -baseball,0.5416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -pliers,0.5499999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.71,1.0,0.65,0.75,1,26 -thins,0.7666666666666666,1.0,0.6499999999999999,0.75,1,26 -package,0.505,1.0,0.4499999999999999,0.6,1,26 -k,0.7133333333333334,1.0,0.6499999999999999,0.75,1,26 -jelly,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -fruit,0.6966666666666665,0.55,0.9666666666666666,0.6900000000000001,2,25 -apple,0.5233333333333333,0.85,0.6166666666666666,0.6333333333333334,1,25 -bell,0.8166666666666668,1.0,0.7666666666666666,0.8333333333333333,1,26 -battery,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -jar,0.5833333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -bound,0.5,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.755,1.0,0.7166666666666666,0.8,1,26 -brush,0.55,1.0,0.5999999999999999,0.7,1,26 -scissors,0.5716666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -lime,0.705,1.0,0.65,0.75,1,25 -toothpaste,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -top,0.75,1.0,0.6833333333333333,0.7666666666666666,1,26 -spiral,0.625,1.0,0.5333333333333333,0.6666666666666667,1,26 -handles,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -camera,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -eraser,0.6933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.61,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.5466666666666666,1.0,0.4166666666666667,0.5833333333333333,1,26 -phone,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -stick,0.75,1.0,0.7,0.7833333333333333,1,25 -cereal,0.73,1.0,0.65,0.75,1,26 -bulb,0.8600000000000001,1.0,0.8333333333333333,0.9,2,27 -hair,0.6799999999999999,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -coca,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -crackers,0.7649999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -plate,0.6766666666666666,1.0,0.4999999999999999,0.65,1,25 -calculator,0.6449999999999999,0.9,0.5166666666666666,0.6333333333333333,1,26 -tissues,0.7,1.0,0.5833333333333333,0.7,1,26 -juice,0.8966666666666667,1.0,0.8,0.8666666666666668,1,26 -pink,0.6799999999999999,1.0,0.5666666666666667,0.7,1,25 -lemon,0.835,1.0,0.6833333333333333,0.7833333333333333,1,26 -peach,0.575,1.0,0.5499999999999999,0.6833333333333333,1,26 -bowl,0.6666666666666666,1.0,0.65,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.76,1.0,0.6666666666666666,0.7666666666666667,1,26 -blue,0.5216666666666667,1.0,0.4666666666666666,0.6166666666666666,1,25 -used,0.26166666666666666,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -ball,0.7683333333333333,1.0,0.65,0.75,1,25 -notebook,0.46333333333333326,1.0,0.4499999999999999,0.6,1,26 -garlic,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -cleaning,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -pair,0.8433333333333334,1.0,0.8,0.8800000000000001,2,27 -container,0.7383333333333334,1.0,0.65,0.75,1,25 -tomato,0.5733333333333334,0.65,0.6666666666666666,0.5900000000000001,1,26 -cellphone,0.7083333333333333,1.0,0.65,0.75,1,26 -potato,0.71,1.0,0.6499999999999999,0.75,1,25 -light,0.8833333333333332,1.0,0.8666666666666666,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6432716049382715 -F1-Score: 0.6788492063492064 -Precision: 0.897145061728395 -Recall: 0.5969135802469134 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666666,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.6483333333333333,0.7,0.6333333333333333,0.6,1,24 -keyboard,0.5933333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -glue,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.6599999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -cup,0.5716666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -folded,0.655,1.0,0.5166666666666666,0.6666666666666667,1,26 -jam,0.85,1.0,0.7333333333333333,0.8166666666666668,1,26 -black,0.7949999999999999,0.6666666666666666,1.0,0.7980952380952381,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7716666666666666,1.0,0.7,0.7833333333333334,1,26 -soccer,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -hat,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.9016666666666667,1.0,0.8666666666666666,0.9200000000000002,2,25 -coffee,0.625,1.0,0.6333333333333333,0.7333333333333333,1,25 -handle,0.755,1.0,0.6666666666666666,0.7666666666666667,1,25 -food,0.61,1.0,0.5,0.65,1,25 -towel,0.6666666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -chips,0.6183333333333333,1.0,0.55,0.6833333333333333,1,26 -stapler,0.925,1.0,0.8833333333333332,0.9166666666666666,1,26 -onion,0.6483333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -bag,0.5633333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -sponge,0.8100000000000002,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.4883333333333333,1.0,0.4666666666666666,0.6166666666666667,1,25 -special,0.71,1.0,0.65,0.75,1,26 -colgate,0.6333333333333333,1.0,0.55,0.6833333333333333,1,26 -leaf,0.7383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -cell,0.24666666666666667,0.5,0.4666666666666666,0.4666666666666667,1,26 -mug,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,25 -yogurt,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.6649999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.625,1.0,0.55,0.6833333333333333,1,26 -wheat,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -kleenex,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.675,1.0,0.5999999999999999,0.7166666666666666,1,26 -binder,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -baseball,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -pliers,0.6916666666666667,1.0,0.6166666666666666,0.7166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5166666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -thins,0.705,1.0,0.7,0.7833333333333333,1,26 -package,0.9550000000000001,1.0,0.9,0.9333333333333332,1,26 -k,0.6683333333333334,1.0,0.6,0.7166666666666667,1,26 -jelly,0.7133333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.7766666666666666,0.8333333333333333,0.8333333333333333,0.7933333333333333,2,26 -apple,0.6799999999999999,0.95,0.6,0.6833333333333333,1,25 -bell,0.5766666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -battery,0.6216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -jar,0.7333333333333333,1.0,0.6333333333333333,0.75,1,26 -bound,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -lettuce,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -brush,0.6466666666666667,1.0,0.6333333333333332,0.7333333333333333,1,26 -scissors,0.7066666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -lime,0.625,1.0,0.6166666666666666,0.7166666666666666,1,25 -toothpaste,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -top,0.7383333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -spiral,0.8566666666666667,1.0,0.7,0.8,1,26 -handles,0.72,1.0,0.6,0.7166666666666666,1,25 -camera,0.8733333333333334,1.0,0.7833333333333333,0.85,1,26 -eraser,0.9550000000000001,1.0,0.9,0.9333333333333332,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.65,1.0,0.6,0.7166666666666667,1,26 -pitcher,0.73,1.0,0.7,0.7833333333333333,1,26 -phone,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -stick,0.6166666666666667,1.0,0.5999999999999999,0.7166666666666667,1,25 -cereal,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -bulb,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.8,1.0,0.7166666666666666,0.8,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -can,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.655,1.0,0.6499999999999999,0.75,1,26 -crackers,0.6466666666666667,1.0,0.6,0.7166666666666667,1,26 -plate,0.6966666666666665,1.0,0.55,0.6833333333333333,1,25 -calculator,0.6316666666666666,0.8,0.7,0.65,1,26 -tissues,0.5166666666666666,1.0,0.5166666666666666,0.65,1,26 -juice,0.8266666666666665,1.0,0.7666666666666666,0.8333333333333333,1,26 -pink,0.6466666666666667,1.0,0.5166666666666666,0.6666666666666667,1,25 -lemon,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -peach,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -bowl,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -blue,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -used,0.12166666666666673,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.5966666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -ball,0.8683333333333334,1.0,0.7833333333333333,0.85,1,25 -notebook,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -garlic,0.65,1.0,0.6499999999999999,0.75,1,26 -cleaning,0.875,1.0,0.8333333333333333,0.8833333333333332,1,26 -pair,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -container,0.5133333333333333,1.0,0.4833333333333333,0.6333333333333333,1,25 -tomato,0.5599999999999999,0.6,0.5999999999999999,0.54,1,26 -cellphone,0.5383333333333333,0.5,0.7166666666666666,0.5633333333333334,1,26 -potato,0.6749999999999999,1.0,0.5999999999999999,0.7166666666666666,1,25 -light,0.8633333333333333,1.0,0.8333333333333333,0.9,2,25 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,24 -bottle,0.875,1.0,0.8666666666666668,0.9200000000000002,2,25 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6629783950617282 -F1-Score: 0.6941798941798942 -Precision: 0.8935185185185185 -Recall: 0.6183641975308639 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8233333333333335,1.0,0.6833333333333333,0.7833333333333333,1,25 -yellow,0.9433333333333334,0.85,1.0,0.8999999999999998,6,24 -looks,0.6666666666666667,1.0,0.6333333333333333,0.7333333333333333,1,24 -keyboard,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -glue,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.78,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.7499999999999999,1.0,0.6833333333333332,0.7666666666666666,1,26 -cup,0.5783333333333334,0.5,0.8166666666666667,0.5966666666666667,1,26 -folded,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -jam,0.6749999999999999,1.0,0.7,0.7833333333333333,1,26 -black,0.9633333333333333,0.9,1.0,0.9333333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -soccer,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -hat,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -brown,0.8933333333333333,1.0,0.8666666666666666,0.9199999999999999,2,24 -coffee,0.7233333333333334,1.0,0.6499999999999999,0.75,1,26 -handle,0.7716666666666666,1.0,0.7,0.7833333333333333,1,26 -food,0.48,1.0,0.4666666666666666,0.6166666666666667,1,26 -towel,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.675,1.0,0.6,0.7166666666666666,1,26 -stapler,0.75,1.0,0.6166666666666666,0.7333333333333333,1,26 -onion,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -bag,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.7166666666666667,1.0,0.5333333333333333,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.655,1.0,0.6333333333333333,0.7333333333333333,1,25 -special,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.8666666666666666,1.0,0.8,0.8666666666666666,1,26 -leaf,0.755,1.0,0.6333333333333333,0.75,1,26 -tube,0.6166666666666667,1.0,0.6333333333333333,0.7333333333333334,1,26 -cell,0.58,0.55,0.7666666666666666,0.59,1,26 -mug,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -yogurt,0.8666666666666666,1.0,0.8833333333333332,0.9166666666666666,1,26 -plantain,0.6249999999999999,1.0,0.5166666666666666,0.65,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -wheat,0.55,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.7416666666666666,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.5633333333333332,1.0,0.55,0.6666666666666666,1,26 -binder,0.755,1.0,0.5833333333333333,0.7166666666666667,1,26 -baseball,0.77,1.0,0.6166666666666666,0.7333333333333333,1,26 -pliers,0.6766666666666666,1.0,0.6499999999999999,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8,1.0,0.7166666666666666,0.8,1,26 -thins,0.7816666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -package,0.7083333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -k,0.655,1.0,0.5833333333333333,0.7,1,26 -jelly,0.7583333333333333,1.0,0.75,0.8166666666666667,1,26 -fruit,0.675,0.6166666666666666,0.8999999999999998,0.7033333333333334,2,25 -apple,0.6183333333333333,0.9,0.5499999999999999,0.6166666666666667,1,25 -bell,0.7383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -battery,0.6483333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -jar,0.6883333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -bound,0.7016666666666667,1.0,0.65,0.75,1,26 -lettuce,0.5666666666666667,1.0,0.5833333333333333,0.7,1,26 -brush,0.6383333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -scissors,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -lime,0.6666666666666666,1.0,0.5333333333333332,0.6666666666666666,1,25 -toothpaste,0.805,1.0,0.7333333333333333,0.8166666666666667,1,26 -top,0.6849999999999999,1.0,0.5666666666666667,0.7,1,26 -spiral,0.5183333333333333,1.0,0.4499999999999999,0.6,1,26 -handles,0.48,1.0,0.4999999999999999,0.6333333333333333,1,25 -camera,0.7049999999999998,1.0,0.5999999999999999,0.7166666666666667,1,26 -eraser,0.705,1.0,0.5499999999999999,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -pitcher,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -phone,0.5683333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -stick,0.8099999999999999,1.0,0.7166666666666666,0.8,1,25 -cereal,0.8300000000000001,1.0,0.7499999999999999,0.8166666666666667,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -hair,0.7016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8583333333333332,1.0,0.7833333333333333,0.85,1,26 -can,0.95,1.0,0.9333333333333332,0.96,2,25 -coca,0.7383333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -crackers,0.5333333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -plate,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,25 -calculator,0.48,0.55,0.65,0.5466666666666666,1,26 -tissues,0.85,1.0,0.7833333333333333,0.85,1,26 -juice,0.6,1.0,0.5499999999999999,0.6666666666666666,1,26 -pink,0.71,1.0,0.5666666666666667,0.7,1,25 -lemon,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -peach,0.575,1.0,0.5499999999999999,0.6666666666666666,1,26 -bowl,0.47666666666666657,1.0,0.4499999999999999,0.6,1,26 -camouflage,0,0,0,0,1,26 -digital,0.805,1.0,0.7166666666666666,0.8,1,26 -blue,0.7,1.0,0.6166666666666666,0.7166666666666666,1,25 -used,0.4699999999999999,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -ball,0.7583333333333333,1.0,0.7,0.7833333333333333,1,25 -notebook,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -garlic,0.40499999999999997,1.0,0.4499999999999999,0.6,1,26 -cleaning,0.5016666666666667,1.0,0.4,0.5666666666666667,1,26 -pair,0.9350000000000002,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.725,1.0,0.6666666666666666,0.7666666666666667,1,25 -tomato,0.5049999999999999,0.8,0.4999999999999999,0.5666666666666667,1,26 -cellphone,0.5216666666666666,0.55,0.5833333333333333,0.5333333333333333,1,26 -potato,0.7249999999999999,1.0,0.6499999999999999,0.75,1,25 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,26 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6565277777777777 -F1-Score: 0.6874382716049382 -Precision: 0.890895061728395 -Recall: 0.6132716049382715 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7183333333333334,1.0,0.5833333333333333,0.7166666666666667,1,24 -yellow,0.9466666666666667,0.85,1.0,0.8999999999999998,6,24 -looks,0.735,0.9,0.6666666666666666,0.7,1,24 -keyboard,0.73,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.7,1.0,0.7333333333333333,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.43,1.0,0.4499999999999999,0.6,1,26 -flashlight,0.4666666666666666,1.0,0.5166666666666666,0.65,1,26 -cup,0.5366666666666667,0.5,0.7,0.5533333333333335,1,26 -folded,0.6566666666666666,1.0,0.5,0.65,1,26 -jam,0.5633333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -black,0.8316666666666668,0.675,1.0,0.7923809523809524,6,24 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.5666666666666667,1.0,0.5,0.6333333333333333,1,26 -soccer,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -hat,0.6,1.0,0.5833333333333333,0.7,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,24 -coffee,0.705,1.0,0.65,0.75,1,24 -handle,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -food,0.6950000000000001,1.0,0.5333333333333333,0.6833333333333333,1,25 -towel,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.51,1.0,0.5166666666666666,0.65,1,26 -bag,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -sponge,0.5933333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5,1.0,0.4999999999999999,0.6333333333333333,1,25 -special,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -colgate,0.7333333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -leaf,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -tube,0.7183333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -cell,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -mug,0.7683333333333333,1.0,0.7166666666666666,0.8,1,25 -yogurt,0.775,1.0,0.7,0.7833333333333333,1,26 -plantain,0.585,1.0,0.4833333333333333,0.6333333333333334,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.7383333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -wheat,0.635,1.0,0.5333333333333332,0.6666666666666666,1,26 -kleenex,0.8216666666666665,1.0,0.7333333333333333,0.8166666666666668,1,26 -toothbrush,0.7100000000000001,1.0,0.55,0.6833333333333333,1,26 -binder,0.6816666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -baseball,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -pliers,0.6833333333333333,1.0,0.65,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.525,1.0,0.5499999999999999,0.6666666666666666,1,26 -package,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -k,0.85,1.0,0.8333333333333333,0.8833333333333332,1,26 -jelly,0.3,1.0,0.41666666666666663,0.5666666666666667,1,26 -fruit,0.7649999999999999,0.7666666666666667,0.8666666666666668,0.78,2,25 -apple,0.48999999999999994,0.85,0.5166666666666666,0.5666666666666667,1,25 -bell,0.63,1.0,0.6,0.7166666666666667,1,26 -battery,0.7,1.0,0.6499999999999999,0.75,1,26 -jar,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -bound,0.6216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -lettuce,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -brush,0.735,1.0,0.6166666666666666,0.7333333333333333,1,26 -scissors,0.5933333333333334,1.0,0.4999999999999999,0.65,1,26 -lime,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -toothpaste,0.7,1.0,0.6666666666666666,0.75,1,26 -top,0.74,1.0,0.6333333333333333,0.75,1,26 -spiral,0.5816666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -handles,0.6666666666666666,1.0,0.7,0.7833333333333333,1,25 -camera,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -eraser,0.68,1.0,0.6,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -pitcher,0.5166666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -phone,0.45499999999999996,1.0,0.4499999999999999,0.6,1,26 -stick,0.4766666666666667,1.0,0.4166666666666667,0.5833333333333333,1,25 -cereal,0.73,1.0,0.7,0.7833333333333333,1,26 -bulb,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,27 -hair,0.735,1.0,0.6666666666666666,0.7666666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6399999999999999,1.0,0.6,0.7166666666666667,1,26 -can,0.8350000000000002,1.0,0.8,0.8800000000000001,2,26 -coca,0.6216666666666667,1.0,0.5166666666666666,0.65,1,26 -crackers,0.775,1.0,0.7166666666666666,0.8,1,26 -plate,0.5833333333333333,1.0,0.5999999999999999,0.7,1,25 -calculator,0.51,0.85,0.5166666666666666,0.5666666666666667,1,26 -tissues,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -juice,0.6833333333333333,1.0,0.7333333333333333,0.8,1,26 -pink,0.6433333333333333,1.0,0.5666666666666667,0.7,1,25 -lemon,0.5966666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -peach,0.19833333333333333,0.5,0.5166666666666666,0.4833333333333334,1,26 -bowl,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6183333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -blue,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -used,0.33666666666666667,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -ball,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -notebook,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -garlic,0.7433333333333334,1.0,0.6333333333333333,0.75,1,26 -cleaning,0.6599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,26 -container,0.4883333333333334,1.0,0.4833333333333333,0.6333333333333334,1,25 -tomato,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -cellphone,0.495,1.0,0.41666666666666663,0.5833333333333334,1,26 -potato,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666667,1,25 -light,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.905,1.0,0.8666666666666666,0.9199999999999999,2,26 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6305555555555554 -F1-Score: 0.6755467372134037 -Precision: 0.8971450617283951 -Recall: 0.5925925925925926 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.675,1.0,0.5333333333333333,0.6666666666666667,1,25 -yellow,1.0,1.0,1.0,1.0,6,23 -looks,0.63,1.0,0.6166666666666666,0.7166666666666667,1,24 -keyboard,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -glue,0.5349999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.485,1.0,0.45,0.6,1,26 -flashlight,0.7133333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -cup,0.2783333333333334,0.5,0.4666666666666666,0.4666666666666667,1,26 -folded,0.5683333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -jam,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -black,0.905,0.7833333333333333,1.0,0.86,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.71,1.0,0.5499999999999999,0.6833333333333333,1,26 -soccer,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -hat,0.705,1.0,0.6499999999999999,0.75,1,26 -brown,0.9416666666666667,1.0,0.9333333333333332,0.96,2,24 -coffee,0.3833333333333333,1.0,0.45,0.6,1,26 -handle,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -food,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,24 -towel,0.5800000000000001,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.885,1.0,0.75,0.8333333333333333,1,26 -stapler,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -onion,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -bag,0.86,1.0,0.75,0.8333333333333334,1,26 -sponge,0.5549999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6466666666666667,1.0,0.65,0.75,1,25 -special,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -colgate,0.485,1.0,0.45,0.6,1,26 -leaf,0.6316666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -tube,0.7216666666666667,1.0,0.6,0.7166666666666667,1,26 -cell,0.42333333333333334,0.6,0.6333333333333332,0.5466666666666666,1,26 -mug,0.6533333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -yogurt,0.6383333333333334,1.0,0.5,0.65,1,26 -plantain,0.7083333333333333,1.0,0.5833333333333333,0.7,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -wheat,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -toothbrush,0.64,1.0,0.5666666666666667,0.7,1,26 -binder,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -baseball,0.66,1.0,0.6166666666666666,0.7333333333333333,1,26 -pliers,0.675,1.0,0.5666666666666667,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.705,1.0,0.7,0.7833333333333333,1,26 -thins,0.72,1.0,0.5499999999999999,0.6833333333333333,1,26 -package,0.4883333333333333,1.0,0.4,0.5666666666666667,1,26 -k,0.6866666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -jelly,0.9066666666666666,1.0,0.8,0.8666666666666666,1,26 -fruit,0.7416666666666666,0.7333333333333333,0.8333333333333334,0.7333333333333334,2,25 -apple,0.7100000000000001,0.95,0.5666666666666667,0.6666666666666667,1,25 -bell,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -battery,0.7633333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -jar,0.505,1.0,0.5666666666666667,0.6833333333333333,1,26 -bound,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -lettuce,0.7416666666666666,1.0,0.65,0.75,1,26 -brush,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -scissors,0.7933333333333332,1.0,0.6,0.7333333333333334,1,26 -lime,0.705,1.0,0.6333333333333333,0.7333333333333333,1,25 -toothpaste,0.6683333333333333,1.0,0.6499999999999999,0.75,1,26 -top,0.7533333333333334,1.0,0.6333333333333333,0.75,1,26 -spiral,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -handles,0.5766666666666667,1.0,0.5166666666666666,0.65,1,25 -camera,0.6333333333333333,1.0,0.5666666666666667,0.7,1,26 -eraser,0.6216666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -pitcher,0.7083333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -phone,0.45499999999999996,1.0,0.4666666666666666,0.6166666666666667,1,26 -stick,0.36833333333333335,1.0,0.38333333333333336,0.55,1,25 -cereal,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -hair,0.63,1.0,0.6,0.7166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8883333333333333,1.0,0.8,0.8666666666666666,1,26 -can,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.7016666666666668,1.0,0.55,0.6833333333333333,1,26 -crackers,0.5133333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -plate,0.5916666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -calculator,0.41666666666666663,0.9,0.5,0.5666666666666667,1,26 -tissues,0.58,1.0,0.5833333333333333,0.7,1,26 -juice,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -pink,0.8266666666666668,1.0,0.7833333333333333,0.85,1,25 -lemon,0.6666666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -bowl,0.8800000000000001,1.0,0.8,0.8666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -blue,0.7133333333333333,1.0,0.6499999999999999,0.75,1,25 -used,0.41500000000000004,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -ball,0.4933333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -notebook,0.7833333333333333,1.0,0.75,0.8166666666666668,1,26 -garlic,0.755,1.0,0.6666666666666666,0.7666666666666666,1,26 -cleaning,0.6216666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -pair,0.8466666666666667,1.0,0.8,0.8800000000000001,2,26 -container,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -tomato,0.615,0.8,0.6499999999999999,0.6166666666666667,1,26 -cellphone,0.43666666666666665,0.5,0.5833333333333333,0.51,1,26 -potato,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -light,0.8816666666666666,1.0,0.8333333333333334,0.9000000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8216666666666667,1.0,0.8,0.8800000000000001,2,26 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6459259259259258 -F1-Score: 0.6818827160493827 -Precision: 0.8959876543209876 -Recall: 0.6 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7849999999999999,1.0,0.7166666666666666,0.8,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.45499999999999996,1.0,0.4666666666666666,0.6166666666666667,1,24 -keyboard,0.6433333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -glue,0.73,1.0,0.7,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.45499999999999996,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.6666666666666666,1.0,0.5,0.65,1,26 -cup,0.3166666666666667,0.5,0.5166666666666666,0.4833333333333334,1,26 -folded,0.6583333333333333,1.0,0.5499999999999999,0.6666666666666667,1,26 -jam,0.4966666666666667,1.0,0.4499999999999999,0.6,1,26 -black,0.9466666666666669,0.8916666666666666,1.0,0.9323809523809523,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.8333333333333334,1.0,0.7833333333333333,0.85,1,26 -soccer,0.73,1.0,0.5666666666666667,0.7,1,26 -hat,0.78,1.0,0.7,0.7833333333333333,1,26 -brown,0.9199999999999999,1.0,0.8666666666666666,0.9199999999999999,2,25 -coffee,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -handle,0.6849999999999999,1.0,0.55,0.6833333333333333,1,25 -food,0.8266666666666665,1.0,0.7833333333333333,0.85,1,24 -towel,0.7933333333333332,1.0,0.7333333333333333,0.8166666666666667,1,26 -chips,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.6966666666666667,1.0,0.65,0.75,1,26 -onion,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -bag,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -sponge,0.55,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.7683333333333333,1.0,0.6333333333333333,0.75,1,25 -special,0.6933333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -leaf,0.7133333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -tube,0.6599999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -cell,0.5416666666666666,1.0,0.55,0.6666666666666666,1,26 -mug,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -yogurt,0.6716666666666666,1.0,0.65,0.75,1,26 -plantain,0.6216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -wheat,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -toothbrush,0.63,1.0,0.5833333333333333,0.7,1,26 -binder,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -baseball,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -pliers,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5233333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -thins,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -package,0.6966666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -k,0.5583333333333333,1.0,0.5833333333333333,0.7,1,26 -jelly,0.5883333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -fruit,0.755,0.7166666666666666,0.8666666666666666,0.7533333333333334,2,27 -apple,0.6466666666666667,0.95,0.6333333333333332,0.7,1,25 -bell,0.655,1.0,0.7,0.7833333333333333,1,26 -battery,0.5399999999999999,1.0,0.5166666666666666,0.65,1,26 -jar,0.5666666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.6133333333333334,1.0,0.6,0.7166666666666667,1,26 -brush,0.6216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -lime,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,25 -toothpaste,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -top,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -spiral,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -handles,0.605,1.0,0.5333333333333333,0.6666666666666666,1,25 -camera,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.5933333333333334,1.0,0.4999999999999999,0.65,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.8333333333333334,1.0,0.7,0.8,1,26 -pitcher,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.6383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -stick,0.5349999999999999,1.0,0.45,0.6,1,25 -cereal,0.5766666666666667,1.0,0.55,0.6833333333333333,1,26 -bulb,0.9266666666666667,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.73,1.0,0.6833333333333333,0.7666666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -can,0.8800000000000001,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -crackers,0.6416666666666666,1.0,0.6499999999999999,0.75,1,26 -plate,0.6533333333333333,1.0,0.4999999999999999,0.65,1,25 -calculator,0.7483333333333333,1.0,0.5666666666666667,0.7,1,26 -tissues,0.6416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.6283333333333333,1.0,0.4999999999999999,0.65,1,26 -pink,0.655,1.0,0.5833333333333333,0.7,1,25 -lemon,0.9066666666666666,1.0,0.8,0.8666666666666666,1,26 -peach,0.7183333333333333,1.0,0.6,0.7166666666666667,1,26 -bowl,0.825,1.0,0.7499999999999999,0.8166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5983333333333334,1.0,0.5,0.65,1,26 -blue,0.805,1.0,0.7166666666666666,0.8,1,25 -used,0.37,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.5683333333333334,1.0,0.5333333333333333,0.6666666666666666,1,26 -ball,0.7916666666666666,1.0,0.7166666666666666,0.8,1,25 -notebook,0.4833333333333334,1.0,0.5499999999999999,0.6666666666666666,1,26 -garlic,0.8683333333333334,1.0,0.7833333333333333,0.85,1,26 -cleaning,0.8466666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -pair,0.8766666666666667,1.0,0.8333333333333334,0.9000000000000001,2,27 -container,0.6266666666666667,1.0,0.5833333333333333,0.7,1,25 -tomato,0.5700000000000001,0.8,0.6833333333333333,0.65,1,26 -cellphone,0.55,1.0,0.4999999999999999,0.6333333333333333,1,26 -potato,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -light,0.8116666666666668,1.0,0.7333333333333333,0.8400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,27 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6457098765432098 -F1-Score: 0.6845282186948856 -Precision: 0.9056327160493828 -Recall: 0.5984567901234568 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.43,1.0,0.4666666666666666,0.6166666666666666,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,25 -looks,0.6,1.0,0.5499999999999999,0.6833333333333333,1,24 -keyboard,0.8466666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -glue,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6733333333333333,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.7133333333333333,1.0,0.7166666666666666,0.8,1,26 -cup,0.425,0.65,0.5833333333333333,0.5399999999999999,1,26 -folded,0.78,1.0,0.6333333333333333,0.75,1,26 -jam,0.7999999999999999,1.0,0.7499999999999999,0.8166666666666667,1,26 -black,0.8966666666666667,0.7666666666666666,1.0,0.8466666666666667,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -soccer,0.6766666666666666,1.0,0.5666666666666667,0.7,1,26 -hat,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -brown,0.8216666666666667,1.0,0.8,0.8800000000000001,2,24 -coffee,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333334,1,25 -handle,0.6483333333333333,1.0,0.6,0.7166666666666667,1,25 -food,0.24166666666666664,0.5,0.4666666666666666,0.4666666666666667,1,26 -towel,0.8133333333333332,1.0,0.65,0.7666666666666667,1,26 -chips,0.6416666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -stapler,0.5883333333333334,1.0,0.55,0.6833333333333333,1,26 -onion,0.5216666666666667,1.0,0.4499999999999999,0.6,1,26 -bag,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -sponge,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -special,0.41666666666666663,1.0,0.4833333333333332,0.6166666666666666,1,26 -colgate,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -leaf,0.7083333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -tube,0.73,1.0,0.6333333333333333,0.75,1,26 -cell,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -mug,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666667,1,25 -yogurt,0.6233333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -plantain,0.655,1.0,0.5833333333333333,0.7,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.7933333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -wheat,0.7999999999999999,1.0,0.7499999999999999,0.8166666666666667,1,26 -kleenex,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -toothbrush,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -binder,0.6233333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -baseball,0.4333333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -pliers,0.4416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -thins,0.9166666666666666,1.0,0.85,0.9,1,26 -package,0.3966666666666666,1.0,0.38333333333333336,0.55,1,26 -k,0.6383333333333333,1.0,0.55,0.6833333333333333,1,26 -jelly,0.6849999999999999,1.0,0.5666666666666667,0.7,1,26 -fruit,0.9233333333333335,0.9,0.9333333333333332,0.8933333333333333,2,25 -apple,0.475,0.9,0.6166666666666666,0.65,1,25 -bell,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -battery,0.61,1.0,0.5499999999999999,0.6833333333333333,1,26 -jar,0.56,1.0,0.5833333333333333,0.7,1,26 -bound,0.6749999999999999,1.0,0.6833333333333333,0.7666666666666667,1,26 -lettuce,0.53,1.0,0.4833333333333333,0.6333333333333333,1,26 -brush,0.6883333333333334,1.0,0.65,0.75,1,26 -scissors,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -lime,0.6183333333333333,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.8216666666666665,1.0,0.7166666666666666,0.8,1,26 -top,0.6266666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -spiral,0.6799999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -handles,0.49333333333333335,1.0,0.5,0.6333333333333333,1,25 -camera,0.4666666666666666,1.0,0.5166666666666666,0.65,1,26 -eraser,0.575,1.0,0.45,0.6,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7666666666666666,1.0,0.75,0.8166666666666667,1,26 -pitcher,0.6316666666666667,1.0,0.5,0.65,1,26 -phone,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333334,1,26 -stick,0.7466666666666667,1.0,0.6499999999999999,0.75,1,25 -cereal,0.63,1.0,0.5499999999999999,0.6833333333333333,1,26 -bulb,0.975,1.0,0.9666666666666666,0.9800000000000001,2,27 -hair,0.8183333333333334,1.0,0.7166666666666666,0.8,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6733333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -can,0.8866666666666667,1.0,0.8333333333333334,0.9000000000000001,2,25 -coca,0.6883333333333334,1.0,0.55,0.6833333333333333,1,26 -crackers,0.625,1.0,0.6833333333333333,0.7666666666666666,1,26 -plate,0.6883333333333332,1.0,0.5833333333333333,0.7,1,25 -calculator,0.43499999999999994,0.85,0.4666666666666666,0.5566666666666668,1,26 -tissues,0.8766666666666666,1.0,0.75,0.8333333333333333,1,26 -juice,0.41833333333333333,0.5,0.55,0.5033333333333333,1,26 -pink,0.6016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -lemon,0.48,1.0,0.4499999999999999,0.6,1,26 -peach,0.755,1.0,0.6499999999999999,0.75,1,26 -bowl,0.5933333333333334,1.0,0.5166666666666666,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6733333333333333,1.0,0.6,0.7166666666666667,1,26 -blue,0.5133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -used,0.3866666666666667,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -ball,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333334,1,25 -notebook,0.58,1.0,0.5499999999999999,0.6833333333333333,1,26 -garlic,0.76,1.0,0.7166666666666666,0.8,1,26 -cleaning,0.6983333333333334,1.0,0.6,0.7166666666666667,1,26 -pair,0.8633333333333333,1.0,0.8333333333333333,0.9,2,26 -container,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666666,1,25 -tomato,0.6416666666666667,0.9,0.6,0.65,1,26 -cellphone,0.55,1.0,0.6166666666666666,0.7166666666666667,1,26 -potato,0.6383333333333333,1.0,0.5833333333333333,0.7,1,25 -light,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8633333333333333,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6280092592592593 -F1-Score: 0.6739814814814815 -Precision: 0.8969135802469135 -Recall: 0.5881172839506172 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.775,1.0,0.7166666666666666,0.8,1,25 -yellow,0.95,0.9,1.0,0.9400000000000001,6,24 -looks,0.6733333333333333,0.75,0.7,0.6166666666666667,1,24 -keyboard,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.7216666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -flashlight,0.4716666666666667,1.0,0.5166666666666666,0.65,1,26 -cup,0.3516666666666667,0.5,0.4833333333333333,0.47666666666666674,1,26 -folded,0.46333333333333326,1.0,0.5499999999999999,0.6666666666666666,1,26 -jam,0.7449999999999999,1.0,0.5666666666666667,0.7,1,26 -black,0.8699999999999999,0.75,1.0,0.8400000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.8300000000000001,1.0,0.7,0.8,1,26 -soccer,0.6300000000000001,1.0,0.6,0.7166666666666667,1,26 -hat,0.7216666666666667,1.0,0.5666666666666667,0.7,1,26 -brown,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,25 -coffee,0.7166666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -handle,0.65,1.0,0.7333333333333333,0.8,1,25 -food,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,24 -towel,0.5416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -chips,0.6183333333333333,1.0,0.55,0.6833333333333333,1,26 -stapler,0.5999999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -onion,0.6,1.0,0.5166666666666666,0.65,1,26 -bag,0.7266666666666667,1.0,0.6,0.7166666666666667,1,26 -sponge,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5900000000000001,1.0,0.5333333333333332,0.6666666666666666,1,25 -special,0.8666666666666666,1.0,0.7833333333333333,0.85,1,26 -colgate,0.6900000000000001,1.0,0.6499999999999999,0.75,1,26 -leaf,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -cell,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -mug,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -yogurt,0.75,1.0,0.7,0.7833333333333333,1,26 -plantain,0.6666666666666666,0.9,0.65,0.6833333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.6566666666666666,1.0,0.4999999999999999,0.65,1,26 -wheat,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.73,1.0,0.5999999999999999,0.7166666666666666,1,26 -toothbrush,0.605,1.0,0.5833333333333333,0.7,1,26 -binder,0.5016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -baseball,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -pliers,0.675,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.5416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -thins,0.5750000000000001,1.0,0.5666666666666667,0.6833333333333333,1,26 -package,0.5216666666666667,1.0,0.5166666666666666,0.65,1,26 -k,0.7066666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -jelly,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -fruit,0.6316666666666667,0.6166666666666667,0.8333333333333334,0.6599999999999999,2,25 -apple,0.7816666666666667,0.8,0.8333333333333333,0.7666666666666667,1,25 -bell,0.6516666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -battery,0.85,1.0,0.8166666666666667,0.8666666666666666,1,26 -jar,0.4466666666666666,1.0,0.4833333333333333,0.6166666666666667,1,26 -bound,0.8066666666666666,1.0,0.6333333333333333,0.75,1,26 -lettuce,0.705,1.0,0.5833333333333333,0.7,1,26 -brush,0.5683333333333334,1.0,0.45,0.6166666666666667,1,26 -scissors,0.8300000000000001,1.0,0.7499999999999999,0.8166666666666667,1,26 -lime,0.6966666666666665,1.0,0.5666666666666667,0.6833333333333333,1,25 -toothpaste,0.7333333333333333,1.0,0.8,0.85,1,26 -top,0.775,1.0,0.7499999999999999,0.8166666666666667,1,26 -spiral,0.7899999999999999,1.0,0.7166666666666666,0.8,1,26 -handles,0.8333333333333333,1.0,0.8333333333333333,0.8833333333333332,1,25 -camera,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -eraser,0.7816666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.6133333333333333,0.95,0.5666666666666667,0.65,1,26 -pitcher,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -phone,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -stick,0.8716666666666667,1.0,0.75,0.8333333333333333,1,25 -cereal,0.7466666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -bulb,0.9266666666666667,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -can,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.6900000000000001,1.0,0.5,0.65,1,26 -plate,0.6883333333333332,1.0,0.5833333333333333,0.7,1,25 -calculator,0.4683333333333334,0.55,0.6499999999999999,0.5466666666666666,1,26 -tissues,0.7216666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -juice,0.7083333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -pink,0.5216666666666667,1.0,0.4499999999999999,0.6,1,25 -lemon,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -peach,0.8416666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -bowl,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -blue,0.7166666666666666,1.0,0.7166666666666666,0.8,1,25 -used,0.26000000000000006,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.7833333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -ball,0.6166666666666666,1.0,0.5499999999999999,0.6666666666666666,1,25 -notebook,0.5516666666666665,1.0,0.4833333333333333,0.6333333333333333,1,26 -garlic,0.7366666666666667,1.0,0.55,0.6833333333333333,1,26 -cleaning,0.7216666666666666,1.0,0.7,0.7833333333333333,1,26 -pair,0.8383333333333333,1.0,0.8,0.8800000000000001,2,26 -container,0.6133333333333333,1.0,0.5333333333333332,0.6666666666666666,1,25 -tomato,0.48,0.7,0.5833333333333333,0.55,1,26 -cellphone,0.6916666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -potato,0.5883333333333333,1.0,0.5,0.65,1,25 -light,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.8716666666666667,1.0,0.8333333333333333,0.9,2,25 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6516820987654321 -F1-Score: 0.6883333333333334 -Precision: 0.8927469135802469 -Recall: 0.6134259259259259 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7483333333333333,1.0,0.6166666666666666,0.7333333333333333,1,24 -yellow,0.9466666666666669,0.8666666666666666,1.0,0.9133333333333333,6,24 -looks,0.6233333333333333,1.0,0.4833333333333333,0.6333333333333334,1,24 -keyboard,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -glue,0.6316666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.76,1.0,0.6499999999999999,0.75,1,26 -cup,0.5816666666666667,0.5,0.6833333333333333,0.5566666666666666,1,26 -folded,0.9,1.0,0.8333333333333333,0.8833333333333332,1,26 -jam,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666666,1,26 -black,0.7966666666666666,0.5833333333333333,1.0,0.7266666666666668,6,22 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.5166666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -soccer,0.655,1.0,0.55,0.6833333333333333,1,26 -hat,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.7466666666666667,1.0,0.7,0.7833333333333333,1,25 -handle,0.64,1.0,0.6,0.7166666666666666,1,26 -food,0.7100000000000001,1.0,0.5833333333333333,0.7,1,24 -towel,0.6266666666666667,1.0,0.4999999999999999,0.65,1,26 -chips,0.61,1.0,0.5333333333333333,0.6666666666666667,1,26 -stapler,0.5916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -onion,0.705,1.0,0.7,0.7833333333333333,1,26 -bag,0.6649999999999999,1.0,0.4833333333333333,0.6333333333333334,1,26 -sponge,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.605,1.0,0.6333333333333333,0.7333333333333333,1,25 -special,0.7183333333333333,1.0,0.6499999999999999,0.75,1,26 -colgate,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.63,1.0,0.5333333333333333,0.6666666666666667,1,26 -tube,0.6799999999999999,1.0,0.55,0.6833333333333333,1,26 -cell,0.5833333333333333,1.0,0.6666666666666666,0.75,1,26 -mug,0.7166666666666666,1.0,0.6666666666666666,0.7666666666666667,1,25 -yogurt,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.5966666666666667,1.0,0.5,0.65,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -wheat,0.635,1.0,0.5333333333333333,0.6666666666666666,1,26 -kleenex,0.7133333333333333,1.0,0.6,0.7166666666666667,1,26 -toothbrush,0.85,1.0,0.8666666666666666,0.9,1,26 -binder,0.6933333333333334,1.0,0.6,0.7166666666666667,1,26 -baseball,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -pliers,0.7100000000000001,1.0,0.65,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7,1.0,0.75,0.8166666666666667,1,26 -thins,0.6300000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -package,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -k,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -jelly,0.63,1.0,0.4833333333333334,0.6333333333333333,1,26 -fruit,0.6483333333333333,0.4999999999999999,0.9,0.6133333333333334,2,25 -apple,0.6016666666666667,0.85,0.6166666666666666,0.6166666666666667,1,25 -bell,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -battery,0.5599999999999999,1.0,0.4499999999999999,0.6,1,26 -jar,0.5599999999999999,1.0,0.4333333333333333,0.6,1,26 -bound,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -lettuce,0.6166666666666666,1.0,0.65,0.75,1,26 -brush,0.7416666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -scissors,0.6633333333333333,1.0,0.5666666666666667,0.7,1,26 -lime,0.685,1.0,0.6,0.7166666666666667,1,25 -toothpaste,0.705,1.0,0.6,0.7166666666666666,1,26 -top,0.6383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -spiral,0.4966666666666666,1.0,0.4333333333333333,0.5833333333333333,1,26 -handles,0.58,1.0,0.4999999999999999,0.6333333333333333,1,25 -camera,0.7433333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -eraser,0.6166666666666666,1.0,0.6,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7066666666666668,1.0,0.6,0.7166666666666667,1,26 -pitcher,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -phone,0.575,1.0,0.5499999999999999,0.6833333333333333,1,26 -stick,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -cereal,0.59,1.0,0.5333333333333333,0.6666666666666667,1,26 -bulb,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.6333333333333332,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7033333333333334,1.0,0.6,0.7166666666666666,1,26 -can,0.95,1.0,0.9333333333333332,0.96,2,24 -coca,0.6016666666666667,1.0,0.55,0.6833333333333333,1,26 -crackers,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -plate,0.755,1.0,0.65,0.75,1,25 -calculator,0.6416666666666666,0.8,0.65,0.65,1,26 -tissues,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -juice,0.7933333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -pink,0.61,1.0,0.6333333333333332,0.7333333333333333,1,25 -lemon,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -peach,0.675,1.0,0.55,0.6833333333333333,1,26 -bowl,0.5083333333333333,1.0,0.5166666666666666,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.425,1.0,0.5499999999999999,0.6666666666666666,1,26 -blue,0.7466666666666667,1.0,0.5666666666666667,0.7,1,25 -used,0.49833333333333335,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -ball,0.7166666666666666,1.0,0.65,0.75,1,25 -notebook,0.6,1.0,0.6,0.7,1,26 -garlic,0.7166666666666667,1.0,0.7,0.7833333333333333,1,26 -cleaning,0.6633333333333333,1.0,0.55,0.6833333333333333,1,26 -pair,0.8716666666666667,1.0,0.8333333333333333,0.9,2,26 -container,0.5766666666666667,1.0,0.4833333333333333,0.6333333333333334,1,25 -tomato,0.7216666666666666,0.95,0.7,0.75,1,26 -cellphone,0.8666666666666666,1.0,0.8666666666666666,0.9,1,26 -potato,0.6599999999999999,1.0,0.5833333333333333,0.7,1,25 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8633333333333333,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6482098765432098 -F1-Score: 0.6766358024691358 -Precision: 0.8986111111111111 -Recall: 0.5941358024691357 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8716666666666667,1.0,0.7833333333333333,0.85,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.5333333333333333,0.9,0.5833333333333333,0.6333333333333333,1,24 -keyboard,0.5216666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -glue,0.705,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -flashlight,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -cup,0.425,0.5,0.65,0.5366666666666667,1,26 -folded,0.6649999999999999,1.0,0.55,0.6833333333333333,1,26 -jam,0.6,1.0,0.5166666666666666,0.65,1,26 -black,0.8799999999999999,0.75,1.0,0.8447619047619048,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.8166666666666667,1.0,0.7166666666666666,0.8,1,26 -soccer,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -hat,0.6799999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -coffee,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -handle,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -food,0.7566666666666666,1.0,0.5666666666666667,0.7,1,25 -towel,0.6766666666666666,1.0,0.6499999999999999,0.75,1,26 -chips,0.58,1.0,0.4666666666666666,0.6166666666666667,1,26 -stapler,0.755,1.0,0.7,0.7833333333333334,1,26 -onion,0.6766666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -bag,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.6249999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7166666666666667,1.0,0.7,0.7833333333333333,1,25 -special,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -colgate,0.8466666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -leaf,0.7616666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -tube,0.61,1.0,0.4999999999999999,0.6333333333333333,1,26 -cell,0.5166666666666666,0.55,0.6499999999999999,0.5466666666666666,1,26 -mug,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -yogurt,0.8100000000000002,1.0,0.6833333333333333,0.7833333333333333,1,26 -plantain,0.5399999999999999,1.0,0.45,0.6,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -wheat,0.35500000000000004,1.0,0.3666666666666667,0.5333333333333333,1,26 -kleenex,0.8483333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -toothbrush,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -binder,0.7833333333333334,1.0,0.6833333333333333,0.7833333333333334,1,26 -baseball,0.8083333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -pliers,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6066666666666667,1.0,0.4833333333333332,0.6333333333333333,1,26 -thins,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -package,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -k,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.8,1.0,0.7,0.7833333333333333,1,26 -fruit,0.7183333333333334,0.5999999999999999,0.9,0.6533333333333334,2,26 -apple,0.7966666666666666,1.0,0.7166666666666666,0.8,1,25 -bell,0.4883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -battery,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -jar,0.4499999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -bound,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.5916666666666667,1.0,0.55,0.6833333333333333,1,26 -brush,0.3583333333333333,1.0,0.4333333333333334,0.5833333333333333,1,26 -scissors,0.6016666666666667,1.0,0.5833333333333333,0.7,1,26 -lime,0.4666666666666666,1.0,0.4333333333333333,0.5833333333333333,1,25 -toothpaste,0.71,1.0,0.6666666666666666,0.7666666666666666,1,26 -top,0.6966666666666667,1.0,0.6,0.7166666666666666,1,26 -spiral,0.6133333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -handles,0.5133333333333333,1.0,0.5166666666666666,0.65,1,25 -camera,0.575,1.0,0.5499999999999999,0.6666666666666667,1,26 -eraser,0.7083333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.735,1.0,0.6166666666666666,0.7333333333333333,1,26 -pitcher,0.6666666666666666,1.0,0.5666666666666667,0.7,1,26 -phone,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -stick,0.6966666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -cereal,0.4883333333333333,1.0,0.4,0.5666666666666667,1,26 -bulb,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.735,1.0,0.6,0.7166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -can,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,24 -coca,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -crackers,0.7383333333333334,1.0,0.5666666666666667,0.7,1,26 -plate,0.6733333333333333,1.0,0.4833333333333333,0.6333333333333333,1,25 -calculator,0.8133333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -tissues,0.7116666666666667,1.0,0.5666666666666667,0.7,1,26 -juice,0.5416666666666667,1.0,0.4333333333333333,0.6,1,26 -pink,0.7666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,25 -lemon,0.7433333333333334,1.0,0.5833333333333333,0.7166666666666666,1,26 -peach,0.525,1.0,0.5499999999999999,0.6666666666666666,1,26 -bowl,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666667,1,26 -blue,0.5966666666666666,1.0,0.5166666666666666,0.65,1,25 -used,0.32999999999999996,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.7,1.0,0.7,0.7833333333333333,1,26 -ball,0.6966666666666665,1.0,0.6166666666666666,0.7166666666666666,1,25 -notebook,0.6983333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -garlic,0.735,1.0,0.65,0.75,1,26 -cleaning,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -pair,0.9099999999999999,1.0,0.8666666666666668,0.9200000000000002,2,27 -container,0.7966666666666666,1.0,0.7166666666666666,0.8,1,25 -tomato,0.5583333333333333,0.95,0.5666666666666667,0.65,1,26 -cellphone,0.31666666666666665,0.7,0.5166666666666666,0.5233333333333332,1,26 -potato,0.7999999999999999,1.0,0.7499999999999999,0.8166666666666667,1,26 -light,0.8883333333333333,1.0,0.8666666666666668,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8866666666666667,1.0,0.8333333333333333,0.9,2,25 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6475154320987655 -F1-Score: 0.6815564373897708 -Precision: 0.897685185185185 -Recall: 0.6012345679012344 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6833333333333333,1.0,0.5833333333333333,0.7,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.5666666666666667,1.0,0.5166666666666666,0.65,1,24 -keyboard,0.6616666666666667,1.0,0.4999999999999999,0.65,1,26 -glue,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7916666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -flashlight,0.4583333333333333,1.0,0.4499999999999999,0.6,1,26 -cup,0.3816666666666667,0.5,0.7,0.5533333333333335,1,26 -folded,0.4833333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -jam,0.6666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -black,0.8966666666666667,0.7833333333333333,1.0,0.8647619047619047,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6,1.0,0.5833333333333333,0.7,1,26 -soccer,0.53,1.0,0.45,0.6,1,26 -hat,0.45999999999999996,1.0,0.4,0.5666666666666667,1,26 -brown,0.9333333333333332,1.0,0.9333333333333332,0.96,2,25 -coffee,0.5816666666666667,1.0,0.4333333333333333,0.6,1,26 -handle,0.6633333333333333,1.0,0.6833333333333332,0.7666666666666666,1,25 -food,0.7916666666666666,1.0,0.6833333333333333,0.7833333333333333,1,25 -towel,0.7849999999999999,1.0,0.6166666666666666,0.7333333333333334,1,26 -chips,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -stapler,0.6233333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -onion,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bag,0.655,1.0,0.65,0.75,1,26 -sponge,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.4683333333333334,1.0,0.4666666666666666,0.6166666666666667,1,25 -special,0.7333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -colgate,0.6100000000000001,1.0,0.4666666666666666,0.6166666666666667,1,26 -leaf,0.8683333333333334,1.0,0.75,0.8333333333333333,1,26 -tube,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -cell,0.7716666666666667,1.0,0.7,0.7833333333333333,1,26 -mug,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -yogurt,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -plantain,0.625,1.0,0.5333333333333333,0.6666666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -wheat,0.7733333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.6083333333333333,1.0,0.5166666666666666,0.65,1,26 -toothbrush,0.705,1.0,0.5999999999999999,0.7166666666666667,1,26 -binder,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -baseball,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -pliers,0.5583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6166666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.5933333333333334,1.0,0.5,0.65,1,26 -package,0.6433333333333333,1.0,0.6,0.7166666666666667,1,26 -k,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.7666666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -fruit,0.7316666666666667,0.6333333333333333,0.9,0.7166666666666667,2,25 -apple,0.5333333333333333,0.95,0.5999999999999999,0.6666666666666667,1,25 -bell,0.6166666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -battery,0.585,1.0,0.4333333333333333,0.6,1,26 -jar,0.5916666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.4583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -lettuce,0.5216666666666667,1.0,0.5833333333333333,0.7,1,26 -brush,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -scissors,0.6749999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -lime,0.6916666666666667,1.0,0.6166666666666666,0.7166666666666666,1,25 -toothpaste,0.6333333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -top,0.595,1.0,0.4333333333333333,0.6,1,26 -spiral,0.6483333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -handles,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -eraser,0.4,1.0,0.4666666666666666,0.6,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,19 -banana,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -pitcher,0.7933333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -phone,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -stick,0.5666666666666667,1.0,0.5166666666666666,0.65,1,25 -cereal,0.49333333333333335,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.86,1.0,0.8,0.8800000000000001,2,26 -hair,0.6799999999999999,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6716666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -can,0.8683333333333334,1.0,0.8333333333333333,0.9,2,25 -coca,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -crackers,0.5266666666666666,1.0,0.4333333333333333,0.6,1,26 -plate,0.6083333333333333,1.0,0.6833333333333333,0.7666666666666667,1,25 -calculator,0.5650000000000001,0.9,0.5333333333333333,0.6166666666666667,1,26 -tissues,0.7333333333333334,1.0,0.75,0.8166666666666667,1,26 -juice,0.8066666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.7283333333333333,1.0,0.5833333333333333,0.7166666666666667,1,25 -lemon,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -peach,0.6483333333333333,1.0,0.55,0.6833333333333333,1,26 -bowl,0.605,1.0,0.4999999999999999,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -blue,0.7966666666666666,1.0,0.7166666666666666,0.8,1,25 -used,0.5233333333333333,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.5966666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -ball,0.6216666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -notebook,0.7166666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -pair,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,26 -container,0.8883333333333333,1.0,0.8,0.8666666666666666,1,25 -tomato,0.5483333333333332,0.65,0.55,0.5399999999999999,1,26 -cellphone,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -potato,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -light,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9349999999999999,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6310185185185185 -F1-Score: 0.6768959435626101 -Precision: 0.9020061728395061 -Recall: 0.591820987654321 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6133333333333333,1.0,0.5833333333333333,0.7,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,25 -looks,0.5633333333333334,0.9,0.5666666666666667,0.6166666666666667,1,24 -keyboard,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -glue,0.6716666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.7066666666666667,1.0,0.55,0.6833333333333333,1,26 -flashlight,0.6,1.0,0.6666666666666666,0.75,1,26 -cup,0.41500000000000004,0.5,0.5833333333333333,0.51,1,26 -folded,0.7416666666666666,1.0,0.7166666666666666,0.8,1,26 -jam,0.6599999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -black,0.8883333333333334,0.775,1.0,0.8590476190476191,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6683333333333333,1.0,0.4999999999999999,0.65,1,26 -soccer,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -hat,0.71,1.0,0.6499999999999999,0.75,1,26 -brown,0.9349999999999999,1.0,0.9,0.9400000000000001,2,25 -coffee,0.55,1.0,0.5166666666666666,0.65,1,25 -handle,0.575,1.0,0.6333333333333332,0.7333333333333333,1,25 -food,0.6216666666666667,1.0,0.4999999999999999,0.65,1,26 -towel,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -chips,0.6466666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -stapler,0.8550000000000001,1.0,0.8333333333333333,0.8833333333333332,1,26 -onion,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -bag,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -sponge,0.7,1.0,0.7333333333333333,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.6833333333333333,1.0,0.6499999999999999,0.75,1,25 -special,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -colgate,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.5933333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -tube,0.65,1.0,0.5833333333333333,0.7,1,26 -cell,0.295,0.5,0.41666666666666663,0.45,1,26 -mug,0.705,1.0,0.5666666666666667,0.7,1,25 -yogurt,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -plantain,0.8300000000000001,1.0,0.7833333333333333,0.85,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.6966666666666667,1.0,0.7,0.7833333333333333,1,26 -wheat,0.4916666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -kleenex,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -toothbrush,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -binder,0.7433333333333333,1.0,0.6499999999999999,0.75,1,26 -baseball,0.73,1.0,0.7166666666666666,0.8,1,26 -pliers,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7833333333333333,1.0,0.8,0.85,1,26 -thins,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -package,0.6266666666666666,1.0,0.55,0.6833333333333333,1,26 -k,0.76,1.0,0.6499999999999999,0.75,1,26 -jelly,0.7849999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -fruit,0.7933333333333333,0.7,0.9333333333333332,0.78,2,26 -apple,0.7233333333333334,0.85,0.7166666666666666,0.7166666666666666,1,25 -bell,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -battery,0.7183333333333333,1.0,0.6499999999999999,0.75,1,26 -jar,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -bound,0.8383333333333333,1.0,0.7,0.8,1,26 -lettuce,0.695,1.0,0.5666666666666667,0.7,1,26 -brush,0.6883333333333332,1.0,0.6,0.7166666666666667,1,26 -scissors,0.675,1.0,0.5833333333333333,0.7,1,26 -lime,0.73,1.0,0.6166666666666666,0.7333333333333334,1,25 -toothpaste,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -top,0.675,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.7833333333333333,1.0,0.7,0.7833333333333333,1,26 -handles,0.6666666666666666,1.0,0.65,0.75,1,25 -camera,0.705,1.0,0.5999999999999999,0.7166666666666667,1,26 -eraser,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -pitcher,0.71,1.0,0.5833333333333333,0.7,1,26 -phone,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -stick,0.73,1.0,0.6666666666666666,0.7666666666666666,1,25 -cereal,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -bulb,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.53,1.0,0.4999999999999999,0.6333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -coca,0.675,1.0,0.7,0.7833333333333333,1,26 -crackers,0.7583333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -plate,0.86,1.0,0.8333333333333333,0.8833333333333332,1,25 -calculator,0.3733333333333334,0.65,0.5666666666666667,0.53,1,26 -tissues,0.635,1.0,0.55,0.6833333333333333,1,26 -juice,0.7716666666666667,1.0,0.7,0.7833333333333333,1,26 -pink,0.6916666666666667,1.0,0.6499999999999999,0.75,1,25 -lemon,0.7583333333333334,1.0,0.5666666666666667,0.7,1,26 -peach,0.5833333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -bowl,0.835,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -blue,0.7966666666666666,1.0,0.75,0.8166666666666667,1,25 -used,0.49833333333333324,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.75,1.0,0.7166666666666666,0.8,1,26 -ball,0.7433333333333334,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -garlic,0.8300000000000001,1.0,0.7833333333333333,0.85,1,26 -cleaning,0.6399999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -pair,0.85,1.0,0.8333333333333333,0.9,2,27 -container,0.7583333333333333,1.0,0.7,0.7833333333333333,1,25 -tomato,0.58,0.8,0.5666666666666667,0.6166666666666666,1,26 -cellphone,0.38499999999999995,0.55,0.5666666666666667,0.51,1,26 -potato,0.875,1.0,0.8166666666666667,0.8666666666666666,1,25 -light,0.9333333333333332,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8683333333333334,1.0,0.8333333333333333,0.9,2,25 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6607407407407409 -F1-Score: 0.694589947089947 -Precision: 0.8905092592592594 -Recall: 0.620679012345679 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8183333333333334,1.0,0.7166666666666666,0.8,1,24 -yellow,0.9333333333333333,0.8166666666666667,1.0,0.8799999999999999,6,22 -looks,0.6266666666666667,0.95,0.5666666666666667,0.65,1,24 -keyboard,0.7583333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -glue,0.4083333333333333,1.0,0.4833333333333334,0.6166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -flashlight,0.6916666666666667,1.0,0.5833333333333333,0.7,1,26 -cup,0.24166666666666664,0.5,0.4833333333333333,0.4766666666666667,1,26 -folded,0.615,1.0,0.5499999999999999,0.6833333333333333,1,26 -jam,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -black,0.8183333333333334,0.7083333333333333,1.0,0.8238095238095238,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.59,1.0,0.5333333333333333,0.6666666666666667,1,26 -soccer,0.6849999999999999,1.0,0.6499999999999999,0.75,1,26 -hat,0.8550000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -brown,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.7433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,25 -handle,0.6799999999999999,1.0,0.65,0.75,1,26 -food,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,24 -towel,0.7583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -chips,0.5633333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -stapler,0.53,1.0,0.5499999999999999,0.6666666666666666,1,26 -onion,0.5933333333333333,0.75,0.5499999999999999,0.5666666666666667,1,26 -bag,0.6133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -sponge,0.7899999999999999,1.0,0.65,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.8066666666666666,1.0,0.6666666666666666,0.7666666666666667,1,25 -special,0.575,1.0,0.5499999999999999,0.6666666666666666,1,26 -colgate,0.6866666666666666,1.0,0.5166666666666666,0.6666666666666666,1,26 -leaf,0.7933333333333332,1.0,0.7333333333333333,0.8166666666666668,1,26 -tube,0.6983333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -cell,0.6133333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -mug,0.6216666666666667,1.0,0.6,0.7166666666666667,1,25 -yogurt,0.5433333333333332,1.0,0.5166666666666666,0.65,1,26 -plantain,0.6833333333333333,1.0,0.7333333333333333,0.8,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.7133333333333333,1.0,0.5666666666666667,0.7,1,26 -wheat,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -kleenex,0.8266666666666665,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.61,1.0,0.4833333333333332,0.6333333333333333,1,26 -baseball,0.4166666666666667,1.0,0.5333333333333332,0.65,1,26 -pliers,0.5166666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7,1.0,0.7499999999999999,0.8166666666666667,1,26 -thins,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -package,0.5599999999999999,1.0,0.4833333333333333,0.6333333333333334,1,26 -k,0.5733333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -jelly,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -fruit,0.7483333333333333,0.6333333333333334,0.9333333333333332,0.7333333333333333,2,25 -apple,0.6433333333333333,0.85,0.6333333333333333,0.6333333333333334,1,25 -bell,0.5133333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -battery,0.6383333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -jar,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -bound,0.4466666666666666,1.0,0.4333333333333333,0.5833333333333333,1,26 -lettuce,0.5466666666666666,1.0,0.4499999999999999,0.6,1,26 -brush,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -scissors,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -lime,0.6799999999999999,1.0,0.6,0.7166666666666666,1,25 -toothpaste,0.58,1.0,0.5833333333333333,0.7,1,26 -top,0.61,1.0,0.5833333333333333,0.7,1,26 -spiral,0.8266666666666665,1.0,0.7666666666666666,0.8333333333333333,1,26 -handles,0.5466666666666666,1.0,0.5166666666666666,0.65,1,25 -camera,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -eraser,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.6766666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -pitcher,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -phone,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -stick,0.7216666666666667,1.0,0.5999999999999999,0.7166666666666666,1,25 -cereal,0.4966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -bulb,0.9266666666666667,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.6516666666666666,1.0,0.6,0.7166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -can,0.9266666666666665,1.0,0.9,0.9400000000000001,2,25 -coca,0.7916666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -crackers,0.6666666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -plate,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -calculator,0.61,0.5,0.7,0.5666666666666667,1,26 -tissues,0.7216666666666667,1.0,0.7,0.7833333333333333,1,26 -juice,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -pink,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -lemon,0.7233333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -peach,0.6933333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -bowl,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6933333333333334,1.0,0.65,0.75,1,26 -blue,0.515,0.9,0.5,0.6,1,25 -used,0.15166666666666667,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.55,1.0,0.5,0.6333333333333333,1,26 -ball,0.4833333333333334,1.0,0.4333333333333334,0.5833333333333333,1,25 -notebook,0.635,1.0,0.5833333333333333,0.7,1,26 -garlic,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -cleaning,0.58,1.0,0.5499999999999999,0.6666666666666666,1,26 -pair,0.8550000000000001,1.0,0.8333333333333333,0.9,2,26 -container,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -tomato,0.44333333333333336,0.7,0.4999999999999999,0.5333333333333333,1,26 -cellphone,0.755,1.0,0.6666666666666666,0.7666666666666666,1,26 -potato,0.5933333333333333,1.0,0.5166666666666666,0.65,1,25 -light,0.96,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.9266666666666667,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6318981481481482 -F1-Score: 0.6742945326278659 -Precision: 0.8917438271604938 -Recall: 0.59429012345679 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8066666666666666,1.0,0.6333333333333333,0.75,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,25 -looks,0.6983333333333334,0.95,0.5833333333333333,0.6833333333333333,1,24 -keyboard,0.6249999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.8333333333333333,1.0,0.8166666666666667,0.8666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.5416666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.7016666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -cup,0.4366666666666667,0.5,0.5833333333333333,0.51,1,25 -folded,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -jam,0.5416666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.8966666666666668,0.7333333333333334,1.0,0.8266666666666665,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.8716666666666667,1.0,0.75,0.8333333333333333,1,26 -soccer,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -hat,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.95,1.0,0.9333333333333332,0.96,2,25 -coffee,0.8966666666666667,1.0,0.8,0.8666666666666668,1,24 -handle,0.71,1.0,0.6,0.7166666666666667,1,25 -food,0.6416666666666666,1.0,0.5999999999999999,0.7166666666666667,1,25 -towel,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.5683333333333332,1.0,0.5833333333333333,0.7,1,26 -onion,0.6833333333333333,0.95,0.5833333333333333,0.6666666666666667,1,26 -bag,0.5833333333333333,1.0,0.5999999999999999,0.7,1,26 -sponge,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7983333333333333,1.0,0.6333333333333333,0.75,1,25 -special,0.7,1.0,0.7,0.7833333333333333,1,26 -colgate,0.7083333333333333,1.0,0.75,0.8166666666666667,1,26 -leaf,0.6166666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -tube,0.6249999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -cell,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -mug,0.76,1.0,0.6666666666666666,0.7666666666666666,1,25 -yogurt,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.7266666666666667,1.0,0.6,0.7166666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.735,1.0,0.6499999999999999,0.75,1,26 -wheat,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -kleenex,0.8066666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -toothbrush,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.755,1.0,0.7166666666666666,0.8,1,26 -baseball,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -pliers,0.7033333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -thins,0.4966666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -package,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -k,0.6316666666666666,1.0,0.4999999999999999,0.65,1,26 -jelly,0.6599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -fruit,0.6483333333333333,0.7166666666666667,0.8,0.7333333333333334,2,25 -apple,0.8083333333333332,1.0,0.7166666666666666,0.8,1,25 -bell,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -battery,0.6216666666666666,1.0,0.55,0.6833333333333333,1,26 -jar,0.775,1.0,0.75,0.8166666666666667,1,26 -bound,0.7166666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -lettuce,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -brush,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.51,1.0,0.5333333333333333,0.6666666666666667,1,26 -lime,0.505,1.0,0.4833333333333333,0.6333333333333333,1,25 -toothpaste,0.6,1.0,0.5833333333333333,0.7,1,26 -top,0.51,1.0,0.4499999999999999,0.6,1,26 -spiral,0.5633333333333334,1.0,0.4999999999999999,0.65,1,26 -handles,0.615,1.0,0.5333333333333333,0.6666666666666667,1,25 -camera,0.7749999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -eraser,0.5083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,19 -banana,0.3716666666666666,1.0,0.38333333333333336,0.55,1,26 -pitcher,0.5499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.5583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -stick,0.6749999999999999,1.0,0.5499999999999999,0.6833333333333333,1,25 -cereal,0.6799999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -bulb,0.9133333333333333,1.0,0.9,0.9400000000000001,2,27 -hair,0.3966666666666666,1.0,0.4333333333333333,0.5833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.575,1.0,0.4833333333333333,0.6333333333333333,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,24 -coca,0.73,1.0,0.65,0.75,1,26 -crackers,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -plate,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,24 -calculator,0.705,1.0,0.6166666666666666,0.7333333333333334,1,26 -tissues,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333334,1,26 -juice,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -pink,0.3716666666666667,1.0,0.4333333333333333,0.5833333333333333,1,25 -lemon,0.7433333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -peach,0.6183333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -bowl,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -blue,0.65,0.95,0.5999999999999999,0.6833333333333333,1,25 -used,0.43,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.9216666666666666,1.0,0.85,0.9,1,26 -ball,0.7583333333333333,1.0,0.7,0.7833333333333334,1,25 -notebook,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -garlic,0.7266666666666667,1.0,0.65,0.75,1,26 -cleaning,0.7016666666666667,1.0,0.55,0.6833333333333333,1,26 -pair,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -container,0.5799999999999998,1.0,0.4666666666666666,0.6166666666666666,1,26 -tomato,0.7833333333333333,0.95,0.7666666666666666,0.8,1,26 -cellphone,0.7583333333333333,1.0,0.75,0.8166666666666667,1,26 -potato,0.7466666666666666,1.0,0.7,0.7833333333333333,1,26 -light,0.9333333333333332,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6524074074074074 -F1-Score: 0.689074074074074 -Precision: 0.9046296296296296 -Recall: 0.6057098765432097 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6249999999999999,1.0,0.6166666666666666,0.7166666666666666,1,25 -yellow,0.8400000000000001,0.625,1.0,0.759047619047619,6,24 -looks,0.6566666666666666,0.75,0.6666666666666666,0.6166666666666667,1,24 -keyboard,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -glue,0.5766666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -cup,0.5333333333333334,0.5,0.6166666666666666,0.53,1,26 -folded,0.6466666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -jam,0.6316666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -black,0.8200000000000001,0.6916666666666667,1.0,0.8104761904761905,6,21 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -soccer,0.73,1.0,0.6,0.7166666666666667,1,26 -hat,0.5333333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -brown,0.9333333333333332,1.0,0.9333333333333332,0.96,2,24 -coffee,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -handle,0.6283333333333333,1.0,0.4833333333333334,0.6333333333333333,1,26 -food,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -towel,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -chips,0.35,1.0,0.4333333333333333,0.5833333333333333,1,26 -stapler,0.7183333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -onion,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -bag,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -sponge,0.5583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.73,1.0,0.65,0.75,1,25 -special,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -colgate,0.7416666666666666,1.0,0.6499999999999999,0.75,1,26 -leaf,0.5966666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -tube,0.625,1.0,0.6833333333333333,0.7666666666666666,1,26 -cell,0.5216666666666666,1.0,0.4499999999999999,0.6,1,26 -mug,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -yogurt,0.5916666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.6599999999999999,0.95,0.5999999999999999,0.6833333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.7433333333333333,1.0,0.7,0.7833333333333333,1,26 -wheat,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -toothbrush,0.6683333333333333,1.0,0.6,0.7166666666666667,1,26 -binder,0.7,1.0,0.7333333333333333,0.8,1,26 -baseball,0.79,1.0,0.6333333333333333,0.75,1,26 -pliers,0.76,1.0,0.6166666666666666,0.7333333333333334,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -thins,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -package,0.7166666666666666,1.0,0.65,0.75,1,26 -k,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -jelly,0.7516666666666667,1.0,0.65,0.75,1,26 -fruit,0.735,0.55,0.9666666666666666,0.6866666666666668,2,26 -apple,0.8099999999999999,0.95,0.6833333333333333,0.75,1,26 -bell,0.5900000000000001,1.0,0.4666666666666666,0.6166666666666666,1,26 -battery,0.7833333333333333,1.0,0.7333333333333333,0.8,1,26 -jar,0.8133333333333332,1.0,0.7833333333333333,0.85,1,26 -bound,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -brush,0.6833333333333333,1.0,0.6,0.7166666666666666,1,26 -scissors,0.7666666666666666,1.0,0.7999999999999999,0.85,1,26 -lime,0.74,1.0,0.5666666666666667,0.7,1,25 -toothpaste,0.53,1.0,0.5333333333333333,0.6666666666666667,1,26 -top,0.3833333333333333,1.0,0.41666666666666663,0.5833333333333334,1,26 -spiral,0.7916666666666666,1.0,0.7166666666666666,0.8,1,26 -handles,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -camera,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -eraser,0.4666666666666666,1.0,0.4499999999999999,0.6,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.5766666666666667,1.0,0.5166666666666666,0.65,1,26 -pitcher,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -phone,0.73,1.0,0.6166666666666666,0.7333333333333333,1,26 -stick,0.8033333333333333,1.0,0.6,0.7333333333333334,1,25 -cereal,0.6666666666666666,1.0,0.6499999999999999,0.75,1,26 -bulb,1.0,1.0,1.0,1.0,2,27 -hair,0.6166666666666666,1.0,0.6666666666666666,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5916666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,0.93,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.4966666666666666,1.0,0.5166666666666666,0.65,1,26 -crackers,0.375,1.0,0.4333333333333333,0.5833333333333333,1,26 -plate,0.5166666666666666,1.0,0.4833333333333332,0.6166666666666666,1,25 -calculator,0.65,1.0,0.5999999999999999,0.7166666666666667,1,26 -tissues,0.7266666666666667,1.0,0.7166666666666666,0.8,1,26 -juice,0.6683333333333333,1.0,0.5666666666666667,0.7,1,26 -pink,0.53,1.0,0.5666666666666667,0.6833333333333333,1,25 -lemon,0.505,1.0,0.5166666666666666,0.65,1,26 -peach,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -bowl,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.75,1.0,0.7,0.7833333333333333,1,26 -blue,0.5966666666666667,0.9,0.6333333333333333,0.6666666666666667,1,25 -used,0.45999999999999996,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.71,1.0,0.6,0.7166666666666667,1,26 -ball,0.665,1.0,0.5666666666666667,0.7,1,25 -notebook,0.6216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -garlic,0.6599999999999999,1.0,0.5166666666666666,0.6666666666666666,1,26 -cleaning,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -pair,0.8683333333333334,1.0,0.8333333333333333,0.9,2,26 -container,0.51,1.0,0.4499999999999999,0.6,1,25 -tomato,0.55,0.75,0.5833333333333333,0.5666666666666667,1,26 -cellphone,0.6499999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -potato,0.5666666666666667,1.0,0.4999999999999999,0.65,1,25 -light,0.875,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,26 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6394753086419753 -F1-Score: 0.6768165784832451 -Precision: 0.8950617283950616 -Recall: 0.5973765432098765 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6133333333333334,1.0,0.6333333333333333,0.7333333333333333,1,25 -yellow,0.9100000000000001,0.8,1.0,0.8733333333333333,6,24 -looks,0.7933333333333333,1.0,0.7,0.7833333333333333,1,24 -keyboard,0.7,1.0,0.6499999999999999,0.75,1,26 -glue,0.7666666666666666,1.0,0.7999999999999999,0.85,1,26 -milk,0,0,0,0,1,26 -cola,0.8166666666666667,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.7466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -cup,0.5266666666666666,0.5,0.6666666666666666,0.5466666666666666,1,26 -folded,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -jam,0.5266666666666666,1.0,0.5166666666666666,0.65,1,26 -black,0.8933333333333333,0.7666666666666666,1.0,0.8466666666666667,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.585,1.0,0.4833333333333333,0.6333333333333333,1,26 -soccer,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -hat,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -brown,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -coffee,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -handle,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -food,0.58,1.0,0.5499999999999999,0.6666666666666667,1,24 -towel,0.73,1.0,0.5999999999999999,0.7166666666666666,1,26 -chips,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -onion,0.6233333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -bag,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -sponge,0.6533333333333333,1.0,0.5,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.8066666666666666,1.0,0.6833333333333333,0.7833333333333333,1,25 -special,0.78,1.0,0.75,0.8166666666666667,1,26 -colgate,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -leaf,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -tube,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -cell,0.51,0.55,0.6499999999999999,0.5466666666666666,1,26 -mug,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -yogurt,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -plantain,0.7233333333333334,1.0,0.5666666666666667,0.7,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.5716666666666665,1.0,0.5333333333333333,0.6666666666666667,1,26 -wheat,0.7999999999999999,1.0,0.7166666666666666,0.8,1,26 -kleenex,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -toothbrush,0.6583333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -binder,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -pliers,0.8800000000000001,1.0,0.8833333333333332,0.9166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6716666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -thins,0.7583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -package,0.49333333333333335,1.0,0.5,0.6333333333333333,1,26 -k,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -jelly,0.7433333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.72,0.5166666666666666,0.9333333333333332,0.6266666666666667,2,25 -apple,0.7633333333333334,0.95,0.7,0.75,1,25 -bell,0.735,1.0,0.65,0.75,1,26 -battery,0.4883333333333333,1.0,0.5166666666666666,0.65,1,26 -jar,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -bound,0.6233333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -lettuce,0.755,1.0,0.5833333333333333,0.7166666666666667,1,26 -brush,0.42666666666666664,1.0,0.45,0.6,1,26 -scissors,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -lime,0.6133333333333333,1.0,0.65,0.75,1,25 -toothpaste,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -top,0.5249999999999999,1.0,0.5166666666666666,0.65,1,26 -spiral,0.9083333333333332,1.0,0.8833333333333332,0.9166666666666666,1,26 -handles,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666667,1,25 -camera,0.71,1.0,0.7,0.7833333333333333,1,26 -eraser,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.575,1.0,0.6333333333333333,0.7333333333333333,1,26 -pitcher,0.38499999999999995,1.0,0.38333333333333336,0.55,1,26 -phone,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -stick,0.6633333333333333,1.0,0.6,0.7166666666666667,1,25 -cereal,0.4383333333333333,1.0,0.4499999999999999,0.6,1,26 -bulb,0.9266666666666665,1.0,0.9,0.9400000000000001,2,27 -hair,0.8049999999999999,1.0,0.6833333333333333,0.7833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7516666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -can,0.8716666666666665,1.0,0.8333333333333333,0.9,2,25 -coca,0.7716666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -crackers,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -plate,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,25 -calculator,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -tissues,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -juice,0.6133333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -pink,0.6799999999999999,1.0,0.6,0.7166666666666667,1,25 -lemon,0.7133333333333333,1.0,0.6,0.7166666666666666,1,26 -peach,0.76,1.0,0.6833333333333333,0.7833333333333333,1,26 -bowl,0.7683333333333333,1.0,0.6333333333333333,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -blue,0.73,1.0,0.5833333333333333,0.7166666666666667,1,25 -used,0.5716666666666665,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.6416666666666667,1.0,0.5833333333333333,0.7,1,26 -ball,0.705,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -cleaning,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -pair,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,27 -container,0.6266666666666667,1.0,0.6499999999999999,0.75,1,25 -tomato,0.6066666666666667,0.8,0.65,0.6166666666666667,1,26 -cellphone,0.5866666666666667,0.5,0.7666666666666666,0.5800000000000001,1,26 -potato,0.6833333333333333,1.0,0.7333333333333333,0.8,1,25 -light,0.9100000000000001,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.915,1.0,0.8666666666666666,0.9200000000000002,2,25 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6562654320987655 -F1-Score: 0.6891666666666666 -Precision: 0.8924382716049382 -Recall: 0.6160493827160493 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.635,1.0,0.6499999999999999,0.75,1,25 -yellow,0.95,0.8833333333333332,1.0,0.9266666666666665,6,24 -looks,0.6366666666666666,0.9,0.55,0.65,1,24 -keyboard,0.75,1.0,0.7,0.7833333333333333,1,26 -glue,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.73,1.0,0.6333333333333332,0.7333333333333333,1,26 -flashlight,0.46833333333333327,1.0,0.4499999999999999,0.6,1,26 -cup,0.385,0.5,0.6166666666666666,0.53,1,26 -folded,0.53,1.0,0.4499999999999999,0.6,1,26 -jam,0.5683333333333334,1.0,0.55,0.6833333333333333,1,26 -black,0.95,0.85,1.0,0.9,6,19 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -soccer,0.5716666666666665,1.0,0.5333333333333333,0.6666666666666667,1,26 -hat,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -brown,0.9349999999999999,1.0,0.9,0.9400000000000001,2,24 -coffee,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -handle,0.5883333333333333,1.0,0.5833333333333333,0.7,1,25 -food,0.8,1.0,0.75,0.8166666666666668,1,26 -towel,0.5933333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.605,1.0,0.5833333333333333,0.7,1,26 -stapler,0.8333333333333333,1.0,0.8166666666666667,0.8666666666666666,1,26 -onion,0.6216666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -bag,0.6416666666666667,1.0,0.5833333333333333,0.7,1,26 -sponge,0.625,1.0,0.55,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -special,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.8566666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -leaf,0.63,1.0,0.5999999999999999,0.7166666666666667,1,26 -tube,0.78,1.0,0.6333333333333333,0.75,1,26 -cell,0.7016666666666667,1.0,0.5833333333333333,0.7,1,26 -mug,0.6299999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -yogurt,0.7083333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -plantain,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,28 -pepper,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.7150000000000001,1.0,0.6666666666666666,0.7666666666666666,1,26 -toothbrush,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -binder,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -baseball,0.5683333333333332,1.0,0.5333333333333332,0.6666666666666666,1,26 -pliers,0.655,1.0,0.6499999999999999,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.5916666666666667,1.0,0.5166666666666666,0.65,1,26 -thins,0.7999999999999999,1.0,0.7166666666666666,0.8,1,26 -package,0.76,1.0,0.7,0.7833333333333333,1,26 -k,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -jelly,0.7550000000000001,1.0,0.7166666666666666,0.8,1,26 -fruit,0.615,0.6666666666666666,0.7666666666666666,0.6766666666666666,2,25 -apple,0.6483333333333333,0.85,0.5833333333333333,0.6166666666666667,1,25 -bell,0.7516666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -battery,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -jar,0.61,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.54,1.0,0.4666666666666666,0.6166666666666666,1,26 -lettuce,0.40499999999999997,1.0,0.3666666666666667,0.5333333333333333,1,26 -brush,0.755,1.0,0.6833333333333333,0.7833333333333333,1,26 -scissors,0.49333333333333335,1.0,0.4999999999999999,0.6333333333333333,1,26 -lime,0.8616666666666667,1.0,0.7,0.8,1,25 -toothpaste,0.8916666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -top,0.55,1.0,0.4999999999999999,0.6333333333333333,1,26 -spiral,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -handles,0.7666666666666666,1.0,0.8166666666666667,0.8666666666666666,1,25 -camera,0.51,1.0,0.5666666666666667,0.6833333333333333,1,26 -eraser,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.5916666666666666,1.0,0.5166666666666666,0.65,1,26 -phone,0.705,1.0,0.6499999999999999,0.75,1,26 -stick,0.6733333333333333,1.0,0.55,0.6833333333333333,1,25 -cereal,0.755,1.0,0.6499999999999999,0.75,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -hair,0.615,1.0,0.4333333333333333,0.6,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.55,1.0,0.5833333333333333,0.7,1,26 -can,0.8716666666666667,1.0,0.8333333333333333,0.9,2,25 -coca,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -crackers,0.615,1.0,0.55,0.6833333333333333,1,26 -plate,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -calculator,0.5349999999999999,0.55,0.7,0.5633333333333334,1,26 -tissues,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -juice,0.7499999999999999,1.0,0.7499999999999999,0.8166666666666667,1,26 -pink,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,25 -lemon,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -peach,0.6549999999999999,1.0,0.5833333333333333,0.7,1,26 -bowl,0.7083333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6766666666666666,1.0,0.5666666666666667,0.7,1,26 -blue,0.6766666666666666,1.0,0.65,0.75,1,25 -used,0.5516666666666666,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -ball,0.6066666666666667,1.0,0.5833333333333333,0.7,1,25 -notebook,0.7166666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.7466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.7133333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -pair,0.9133333333333333,1.0,0.9,0.9400000000000001,2,27 -container,0.6666666666666666,1.0,0.7333333333333333,0.8,1,25 -tomato,0.5399999999999999,0.7,0.6,0.5733333333333334,1,26 -cellphone,0.5333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -potato,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -light,0.905,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,24 -bottle,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6451697530864197 -F1-Score: 0.6838271604938271 -Precision: 0.8967592592592594 -Recall: 0.6035493827160494 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8150000000000001,1.0,0.6833333333333333,0.7833333333333334,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.5466666666666666,0.95,0.5,0.6166666666666667,1,24 -keyboard,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -glue,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6499999999999999,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.725,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.31999999999999995,0.5,0.5499999999999999,0.5033333333333333,1,26 -folded,0.6,1.0,0.5833333333333333,0.7,1,26 -jam,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -black,0.8566666666666667,0.7166666666666666,1.0,0.8247619047619047,6,23 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.605,1.0,0.4999999999999999,0.6333333333333333,1,26 -soccer,0.6583333333333333,1.0,0.55,0.6833333333333333,1,26 -hat,0.6233333333333333,1.0,0.5833333333333333,0.7,1,26 -brown,0.93,1.0,0.9,0.9400000000000001,2,25 -coffee,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,25 -handle,0.6383333333333333,1.0,0.5833333333333333,0.7,1,25 -food,0.7300000000000001,1.0,0.7,0.7833333333333333,1,25 -towel,0.525,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.8133333333333332,1.0,0.7499999999999999,0.8166666666666667,1,26 -stapler,0.7433333333333334,1.0,0.5666666666666667,0.7,1,26 -onion,0.7666666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -bag,0.73,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.4883333333333334,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.755,1.0,0.65,0.75,1,25 -special,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -colgate,0.6666666666666666,1.0,0.6499999999999999,0.75,1,26 -leaf,0.74,1.0,0.6499999999999999,0.75,1,26 -tube,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -cell,0.5533333333333333,0.5,0.7166666666666666,0.5633333333333334,1,26 -mug,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -yogurt,0.6866666666666666,1.0,0.4833333333333333,0.65,1,26 -plantain,0.5166666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.5966666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -wheat,0.4883333333333333,1.0,0.4,0.5666666666666667,1,26 -kleenex,0.75,1.0,0.7333333333333333,0.8,1,26 -toothbrush,0.63,1.0,0.5166666666666666,0.65,1,26 -binder,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -baseball,0.6383333333333334,1.0,0.6,0.7166666666666667,1,26 -pliers,0.7666666666666666,1.0,0.7333333333333333,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -thins,0.6083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -package,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -k,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -fruit,0.7483333333333333,0.7,0.8666666666666666,0.7533333333333333,2,25 -apple,0.6249999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -bell,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -battery,0.48,1.0,0.4999999999999999,0.6333333333333333,1,26 -jar,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.685,1.0,0.6,0.7166666666666667,1,26 -lettuce,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.6266666666666667,1.0,0.6499999999999999,0.75,1,26 -scissors,0.725,1.0,0.6,0.7166666666666667,1,26 -lime,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -toothpaste,0.6166666666666666,1.0,0.65,0.75,1,26 -top,0.725,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.5383333333333333,1.0,0.4499999999999999,0.6,1,26 -handles,0.625,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.8800000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -eraser,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -pitcher,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -phone,0.7583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -stick,0.5466666666666666,1.0,0.5166666666666666,0.65,1,25 -cereal,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -bulb,0.8283333333333334,1.0,0.7666666666666667,0.86,2,26 -hair,0.755,1.0,0.7166666666666666,0.8,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5166666666666666,1.0,0.5333333333333332,0.65,1,26 -can,0.8766666666666666,1.0,0.8333333333333333,0.9,2,25 -coca,0.6883333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -crackers,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.65,1.0,0.7333333333333333,0.8,1,25 -calculator,0.71,0.65,0.8333333333333333,0.65,1,26 -tissues,0.8150000000000001,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.7216666666666667,1.0,0.5833333333333333,0.7,1,26 -pink,0.7133333333333334,1.0,0.65,0.75,1,25 -lemon,0.5883333333333334,1.0,0.45,0.6,1,26 -peach,0.75,1.0,0.6666666666666666,0.7666666666666666,1,26 -bowl,0.7583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.56,1.0,0.5166666666666666,0.65,1,26 -blue,0.6766666666666666,1.0,0.6,0.7166666666666667,1,25 -used,0.05166666666666666,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -ball,0.5333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -notebook,0.78,1.0,0.75,0.8166666666666667,1,26 -garlic,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -cleaning,0.63,1.0,0.5999999999999999,0.7166666666666667,1,26 -pair,0.9400000000000001,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.6633333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -tomato,0.5349999999999999,0.9,0.4666666666666666,0.5666666666666667,1,26 -cellphone,0.605,0.55,0.7833333333333333,0.6,1,26 -potato,0.78,1.0,0.7499999999999999,0.8166666666666667,1,25 -light,0.95,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6433333333333334 -F1-Score: 0.6813403880070545 -Precision: 0.892283950617284 -Recall: 0.6050925925925925 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7166666666666666,1.0,0.6666666666666666,0.7666666666666667,1,24 -yellow,0.9333333333333333,0.8333333333333333,1.0,0.8933333333333333,6,24 -looks,0.4583333333333333,1.0,0.4499999999999999,0.6,1,24 -keyboard,0.6516666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -glue,0.6399999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.5166666666666666,1.0,0.5,0.6333333333333333,1,26 -flashlight,0.4933333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -cup,0.6933333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -folded,0.5966666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -jam,0.8466666666666665,1.0,0.7833333333333333,0.85,1,26 -black,0.8933333333333333,0.7666666666666667,1.0,0.8533333333333333,6,19 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6300000000000001,1.0,0.5666666666666667,0.7,1,26 -soccer,0.7266666666666667,1.0,0.6499999999999999,0.75,1,26 -hat,0.4833333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -brown,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,25 -coffee,0.625,1.0,0.6333333333333333,0.7333333333333333,1,25 -handle,0.7416666666666666,1.0,0.75,0.8166666666666667,1,26 -food,0.7083333333333333,1.0,0.6833333333333332,0.7666666666666666,1,25 -towel,0.725,1.0,0.5166666666666666,0.6666666666666667,1,26 -chips,0.5549999999999999,1.0,0.4,0.5666666666666667,1,26 -stapler,0.8399999999999999,1.0,0.7166666666666666,0.8,1,26 -onion,0.7100000000000001,1.0,0.55,0.6833333333333333,1,26 -bag,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -sponge,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.825,1.0,0.7333333333333333,0.8166666666666667,1,25 -special,0.6599999999999999,1.0,0.6,0.7166666666666667,1,26 -colgate,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -leaf,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -tube,0.51,1.0,0.4833333333333333,0.6333333333333334,1,26 -cell,0.26166666666666666,0.5,0.5666666666666667,0.5000000000000001,1,26 -mug,0.775,1.0,0.7666666666666666,0.8333333333333333,1,25 -yogurt,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -plantain,0.71,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -wheat,0.53,1.0,0.4499999999999999,0.6,1,26 -kleenex,0.5966666666666667,1.0,0.5166666666666666,0.65,1,26 -toothbrush,0.6433333333333333,1.0,0.6,0.7166666666666667,1,26 -binder,0.5416666666666666,1.0,0.5833333333333333,0.7,1,26 -baseball,0.8333333333333333,1.0,0.8666666666666666,0.9,1,26 -pliers,0.7183333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.705,1.0,0.6499999999999999,0.75,1,26 -thins,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -package,0.7566666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -k,0.7466666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -fruit,0.6483333333333333,0.65,0.8333333333333333,0.72,2,25 -apple,0.675,0.95,0.65,0.7166666666666667,1,25 -bell,0.5633333333333332,1.0,0.4666666666666666,0.6166666666666667,1,26 -battery,0.6216666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -jar,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.6466666666666667,1.0,0.65,0.75,1,26 -lettuce,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -brush,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -scissors,0.7433333333333333,1.0,0.6333333333333333,0.75,1,26 -lime,0.7633333333333333,1.0,0.7499999999999999,0.8166666666666667,1,25 -toothpaste,0.71,1.0,0.65,0.75,1,26 -top,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -spiral,0.73,1.0,0.7,0.7833333333333333,1,26 -handles,0.7933333333333333,1.0,0.7166666666666666,0.8,1,25 -camera,0.5883333333333334,1.0,0.5166666666666666,0.65,1,26 -eraser,0.5583333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.705,1.0,0.6499999999999999,0.75,1,26 -pitcher,0.7133333333333334,1.0,0.7,0.7833333333333333,1,26 -phone,0.685,1.0,0.55,0.6833333333333333,1,26 -stick,0.5549999999999999,1.0,0.5166666666666666,0.65,1,25 -cereal,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -bulb,0.8383333333333333,1.0,0.8,0.8800000000000001,2,26 -hair,0.5883333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6666666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -can,1.0,1.0,1.0,1.0,2,25 -coca,0.6133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -crackers,0.6433333333333333,1.0,0.6,0.7166666666666667,1,26 -plate,0.5883333333333333,1.0,0.5166666666666666,0.65,1,25 -calculator,0.6183333333333334,1.0,0.5833333333333333,0.7,1,26 -tissues,0.53,1.0,0.4666666666666666,0.6166666666666667,1,26 -juice,0.525,1.0,0.5,0.6333333333333333,1,26 -pink,0.63,1.0,0.6499999999999999,0.75,1,25 -lemon,0.6,1.0,0.6833333333333333,0.7666666666666666,1,26 -peach,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -bowl,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -blue,0.7633333333333333,0.85,0.7333333333333333,0.7166666666666667,1,25 -used,0.44499999999999995,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -ball,0.7083333333333333,1.0,0.6499999999999999,0.75,1,25 -notebook,0.5499999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -garlic,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -pair,0.8766666666666666,1.0,0.8333333333333333,0.9,2,26 -container,0.6983333333333334,1.0,0.5666666666666667,0.7,1,26 -tomato,0.75,1.0,0.6333333333333333,0.75,1,26 -cellphone,0.4916666666666667,0.5,0.5833333333333333,0.51,1,26 -potato,0.6166666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -light,0.8166666666666667,1.0,0.8,0.8800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,26 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.644969135802469 -F1-Score: 0.6828703703703703 -Precision: 0.8986111111111111 -Recall: 0.5999999999999999 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6733333333333332,1.0,0.5,0.65,1,24 -yellow,0.93,0.85,1.0,0.9066666666666666,6,24 -looks,0.7016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,24 -keyboard,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -glue,0.76,1.0,0.6333333333333333,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.6133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -flashlight,0.8066666666666666,1.0,0.7166666666666666,0.8,1,26 -cup,0.5216666666666667,0.5,0.6333333333333333,0.5399999999999999,1,26 -folded,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -jam,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -black,0.93,0.8166666666666667,1.0,0.8799999999999999,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7166666666666666,1.0,0.65,0.75,1,26 -soccer,0.6566666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -hat,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -brown,0.9349999999999999,1.0,0.9,0.9400000000000001,2,26 -coffee,0.635,1.0,0.5499999999999999,0.6833333333333333,1,25 -handle,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,25 -food,0.7083333333333333,1.0,0.7166666666666666,0.8,1,25 -towel,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -chips,0.4583333333333333,1.0,0.5499999999999999,0.6666666666666667,1,26 -stapler,0.6983333333333334,1.0,0.5666666666666667,0.7,1,26 -onion,0.93,1.0,0.85,0.8999999999999998,1,26 -bag,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -sponge,0.8550000000000001,1.0,0.8333333333333333,0.8833333333333332,1,26 -zero,0,0,0,0,1,26 -computer,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -special,0.89,1.0,0.75,0.8333333333333333,1,26 -colgate,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -leaf,0.775,1.0,0.6333333333333333,0.75,1,26 -tube,0.58,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -mug,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -yogurt,0.76,1.0,0.6499999999999999,0.75,1,26 -plantain,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -wheat,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -kleenex,0.5666666666666667,1.0,0.6666666666666666,0.75,1,26 -toothbrush,0.6266666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -binder,0.8266666666666668,1.0,0.7,0.8,1,26 -baseball,0.73,1.0,0.7,0.7833333333333333,1,26 -pliers,0.7216666666666667,1.0,0.6,0.7166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -thins,0.58,1.0,0.55,0.6666666666666666,1,26 -package,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -k,0.76,1.0,0.7,0.7833333333333333,1,26 -jelly,0.805,1.0,0.7166666666666666,0.8,1,26 -fruit,0.7383333333333334,0.7166666666666666,0.8333333333333333,0.72,2,26 -apple,0.7633333333333333,0.85,0.7166666666666666,0.7,1,25 -bell,0.5633333333333334,1.0,0.5166666666666666,0.65,1,26 -battery,0.6916666666666667,1.0,0.6,0.7166666666666667,1,26 -jar,0.5433333333333333,1.0,0.45,0.6,1,26 -bound,0.73,1.0,0.6166666666666666,0.7333333333333333,1,26 -lettuce,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -brush,0.61,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -lime,0.7,1.0,0.6833333333333333,0.7666666666666666,1,25 -toothpaste,0.8133333333333332,1.0,0.7833333333333333,0.85,1,26 -top,0.67,1.0,0.5333333333333333,0.6666666666666667,1,26 -spiral,0.4916666666666667,1.0,0.5166666666666666,0.65,1,26 -handles,0.6633333333333333,1.0,0.4666666666666666,0.6333333333333333,1,25 -camera,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -eraser,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.5716666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -pitcher,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -phone,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -stick,0.7766666666666666,1.0,0.7,0.7833333333333333,1,25 -cereal,0.6466666666666667,1.0,0.65,0.75,1,26 -bulb,0.96,1.0,0.9333333333333332,0.96,2,26 -hair,0.69,1.0,0.5999999999999999,0.7166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -can,0.8283333333333334,1.0,0.7666666666666667,0.86,2,25 -coca,0.5333333333333333,1.0,0.4999999999999999,0.65,1,26 -crackers,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -calculator,0.36,0.55,0.5333333333333333,0.5033333333333333,1,26 -tissues,0.8083333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -juice,0.7766666666666666,1.0,0.65,0.75,1,26 -pink,0.705,1.0,0.65,0.75,1,25 -lemon,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -peach,0.6100000000000001,1.0,0.55,0.6833333333333333,1,26 -bowl,0.755,1.0,0.6499999999999999,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.74,1.0,0.5666666666666667,0.7,1,26 -blue,0.6466666666666667,1.0,0.5833333333333333,0.7,1,25 -used,0.095,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.635,1.0,0.5499999999999999,0.6833333333333333,1,26 -ball,0.58,1.0,0.5833333333333333,0.7,1,25 -notebook,0.8,1.0,0.6333333333333333,0.75,1,26 -garlic,0.575,1.0,0.4666666666666666,0.6166666666666667,1,26 -cleaning,0.7816666666666666,1.0,0.6833333333333333,0.7833333333333334,1,26 -pair,0.9349999999999999,1.0,0.9,0.9400000000000001,2,27 -container,0.8166666666666667,1.0,0.8166666666666667,0.8666666666666666,1,25 -tomato,0.4583333333333333,0.75,0.5666666666666667,0.5566666666666666,1,26 -cellphone,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -potato,0.5799999999999998,1.0,0.5166666666666666,0.65,1,25 -light,0.835,1.0,0.8,0.8800000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8716666666666667,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.664074074074074 -F1-Score: 0.6946296296296297 -Precision: 0.8984567901234568 -Recall: 0.6155864197530863 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6466666666666667,1.0,0.5833333333333333,0.7,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.5633333333333332,0.85,0.6166666666666666,0.6166666666666667,1,24 -keyboard,0.53,1.0,0.5333333333333333,0.6666666666666667,1,26 -glue,0.6083333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6399999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -flashlight,0.655,1.0,0.6,0.7166666666666667,1,26 -cup,0.355,0.5,0.6166666666666666,0.53,1,26 -folded,0.37166666666666665,1.0,0.4499999999999999,0.6,1,26 -jam,0.635,1.0,0.6,0.7166666666666667,1,26 -black,0.8566666666666667,0.725,1.0,0.8304761904761904,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.655,1.0,0.6499999999999999,0.75,1,26 -soccer,0.5966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -hat,0.6666666666666666,1.0,0.6,0.7166666666666667,1,26 -brown,0.9400000000000001,1.0,0.9,0.9400000000000001,2,24 -coffee,0.86,1.0,0.7833333333333333,0.85,1,26 -handle,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,25 -food,0.5433333333333333,1.0,0.5166666666666666,0.65,1,24 -towel,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -chips,0.6216666666666667,1.0,0.55,0.6833333333333333,1,26 -stapler,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -onion,0.6849999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -bag,0.61,1.0,0.5666666666666667,0.6833333333333333,1,26 -sponge,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -special,0.5850000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -colgate,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -leaf,0.61,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -cell,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -mug,0.6566666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -yogurt,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -plantain,0.6133333333333333,0.9,0.6,0.65,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.735,1.0,0.6499999999999999,0.75,1,26 -wheat,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -kleenex,0.7216666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -toothbrush,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.79,1.0,0.6166666666666666,0.7333333333333333,1,26 -baseball,0.7183333333333334,1.0,0.65,0.75,1,26 -pliers,0.6966666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6849999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -thins,0.6383333333333333,1.0,0.6,0.7166666666666667,1,26 -package,0.63,1.0,0.5499999999999999,0.6833333333333333,1,26 -k,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -jelly,0.7100000000000001,1.0,0.5833333333333333,0.7166666666666667,1,26 -fruit,0.7216666666666666,0.5833333333333333,0.9,0.6766666666666667,2,25 -apple,0.6799999999999999,0.95,0.6166666666666666,0.7,1,25 -bell,0.5333333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -battery,0.73,1.0,0.6333333333333333,0.75,1,26 -jar,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -bound,0.6833333333333333,1.0,0.65,0.75,1,26 -lettuce,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -brush,0.735,1.0,0.6166666666666666,0.7333333333333333,1,26 -scissors,0.6833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -lime,0.725,1.0,0.6499999999999999,0.75,1,25 -toothpaste,0.6933333333333334,1.0,0.7,0.7833333333333333,1,26 -top,0.675,1.0,0.5999999999999999,0.7166666666666666,1,26 -spiral,0.8550000000000001,1.0,0.75,0.8333333333333333,1,26 -handles,0.6666666666666667,1.0,0.6,0.7166666666666667,1,25 -camera,0.76,1.0,0.5833333333333333,0.7166666666666667,1,26 -eraser,0.8483333333333334,1.0,0.7,0.8,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6633333333333333,0.9,0.6666666666666666,0.7,1,26 -pitcher,0.49333333333333335,1.0,0.45,0.6,1,26 -phone,0.705,1.0,0.7,0.7833333333333333,1,26 -stick,0.7666666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -cereal,0.6966666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -bulb,0.8633333333333333,1.0,0.8333333333333333,0.9,2,27 -hair,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8166666666666667,1.0,0.7833333333333333,0.85,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -coca,0.7216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.75,1.0,0.6666666666666666,0.7666666666666667,1,26 -plate,0.5700000000000001,1.0,0.5333333333333333,0.6666666666666666,1,25 -calculator,0.49333333333333335,0.5,0.6333333333333333,0.5266666666666666,1,26 -tissues,0.7183333333333334,1.0,0.6,0.7166666666666667,1,26 -juice,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -pink,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -lemon,0.58,1.0,0.5833333333333333,0.7,1,26 -peach,0.8,1.0,0.7499999999999999,0.8166666666666667,1,26 -bowl,0.9016666666666666,1.0,0.8,0.8666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.43499999999999994,1.0,0.4,0.5666666666666667,1,26 -blue,0.6,1.0,0.6166666666666666,0.7166666666666666,1,25 -used,0.11333333333333333,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.8083333333333332,1.0,0.7833333333333333,0.85,1,26 -ball,0.585,1.0,0.5,0.65,1,25 -notebook,0.7916666666666666,1.0,0.7166666666666666,0.8,1,26 -garlic,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.6183333333333334,1.0,0.5166666666666666,0.65,1,26 -pair,0.8749999999999998,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.705,1.0,0.6333333333333333,0.7333333333333333,1,25 -tomato,0.7466666666666667,0.65,0.7833333333333333,0.65,1,26 -cellphone,0.775,1.0,0.6666666666666666,0.7666666666666667,1,26 -potato,0.8266666666666665,1.0,0.7166666666666666,0.8,1,25 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6541203703703703 -F1-Score: 0.6892019400352732 -Precision: 0.8931327160493827 -Recall: 0.6135802469135803 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.725,1.0,0.7166666666666666,0.8,1,24 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.6633333333333333,1.0,0.5666666666666667,0.6833333333333333,1,24 -keyboard,0.575,1.0,0.5833333333333333,0.7,1,26 -glue,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.7916666666666667,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.7433333333333333,1.0,0.6333333333333333,0.75,1,26 -cup,0.255,0.5,0.5333333333333333,0.49333333333333335,1,25 -folded,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -jam,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -black,0.9133333333333334,0.7666666666666667,1.0,0.8466666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -soccer,0.6466666666666666,1.0,0.6833333333333333,0.7666666666666667,1,26 -hat,0.5766666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -brown,0.925,1.0,0.9,0.9400000000000001,2,24 -coffee,0.5516666666666665,1.0,0.4666666666666666,0.6166666666666667,1,25 -handle,0.6749999999999999,1.0,0.5833333333333333,0.7,1,25 -food,0.7833333333333333,1.0,0.75,0.8166666666666667,1,26 -towel,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -chips,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -stapler,0.6066666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -onion,0.375,1.0,0.5,0.6333333333333333,1,26 -bag,0.6100000000000001,1.0,0.5166666666666666,0.65,1,26 -sponge,0.8833333333333334,1.0,0.8333333333333333,0.8833333333333332,1,26 -zero,0,0,0,0,1,26 -computer,0.525,1.0,0.4999999999999999,0.6333333333333333,1,26 -special,0.5249999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -colgate,0.505,1.0,0.5166666666666666,0.65,1,26 -leaf,0.58,1.0,0.55,0.6833333333333333,1,26 -tube,0.6016666666666667,1.0,0.5166666666666666,0.65,1,26 -cell,0.8,1.0,0.7166666666666666,0.8,1,26 -mug,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -yogurt,0.705,1.0,0.7,0.7833333333333333,1,26 -plantain,0.7933333333333332,1.0,0.7166666666666666,0.8,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.73,1.0,0.6166666666666666,0.7333333333333333,1,26 -wheat,0.6733333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -kleenex,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -toothbrush,0.6466666666666667,1.0,0.5,0.65,1,26 -binder,0.6666666666666666,1.0,0.6499999999999999,0.75,1,26 -baseball,0.4916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -pliers,0.6216666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7416666666666666,1.0,0.75,0.8166666666666667,1,26 -thins,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -package,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -k,0.6216666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -jelly,0.6433333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -fruit,0.7816666666666667,0.9,0.7666666666666667,0.7933333333333333,2,26 -apple,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666666,1,25 -bell,0.48,1.0,0.4833333333333334,0.6166666666666666,1,26 -battery,0.7466666666666667,1.0,0.6333333333333333,0.75,1,26 -jar,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -bound,0.5383333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -lettuce,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -brush,0.6683333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -scissors,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -lime,0.6666666666666666,1.0,0.6499999999999999,0.75,1,25 -toothpaste,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -top,0.45499999999999996,1.0,0.3833333333333333,0.55,1,26 -spiral,0.6133333333333333,1.0,0.55,0.6833333333333333,1,26 -handles,0.8116666666666668,1.0,0.6333333333333333,0.75,1,25 -camera,0.3633333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -eraser,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.755,1.0,0.6666666666666666,0.7666666666666666,1,26 -pitcher,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -phone,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -stick,0.725,1.0,0.7,0.7833333333333333,1,25 -cereal,0.8016666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -bulb,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,27 -hair,0.825,1.0,0.7666666666666666,0.8333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -can,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,27 -coca,0.7916666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -crackers,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.705,1.0,0.5999999999999999,0.7166666666666666,1,25 -calculator,0.5233333333333332,0.85,0.5666666666666667,0.6,1,26 -tissues,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -juice,0.7433333333333334,1.0,0.5666666666666667,0.7,1,26 -pink,0.6849999999999999,1.0,0.6,0.7166666666666666,1,25 -lemon,0.8166666666666667,1.0,0.7833333333333333,0.85,1,26 -peach,0.17333333333333334,0.5,0.41666666666666663,0.45,1,26 -bowl,0.7433333333333333,1.0,0.7,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.775,1.0,0.7499999999999999,0.8166666666666668,1,26 -blue,0.6599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -used,0.4766666666666667,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.5833333333333333,1.0,0.5999999999999999,0.7,1,26 -ball,0.8216666666666665,1.0,0.7666666666666666,0.8333333333333333,1,25 -notebook,0.5733333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -garlic,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -cleaning,0.635,1.0,0.5833333333333333,0.7,1,26 -pair,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -container,0.6916666666666667,1.0,0.6499999999999999,0.75,1,25 -tomato,0.6883333333333332,1.0,0.6,0.7166666666666667,1,26 -cellphone,0.505,1.0,0.5166666666666666,0.65,1,26 -potato,0.575,1.0,0.6333333333333333,0.7333333333333333,1,25 -light,0.875,1.0,0.8666666666666668,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8800000000000001,1.0,0.8333333333333333,0.9,2,25 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6441358024691358 -F1-Score: 0.6861728395061729 -Precision: 0.9029320987654321 -Recall: 0.6010802469135802 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7049999999999998,1.0,0.6333333333333333,0.7333333333333333,1,25 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.655,0.95,0.5499999999999999,0.65,1,24 -keyboard,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -glue,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.655,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.5416666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -cup,0.39,0.5,0.55,0.5033333333333334,1,26 -folded,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.6366666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -black,0.8933333333333333,0.7666666666666666,1.0,0.8514285714285714,6,23 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -soccer,0.615,1.0,0.4666666666666666,0.6166666666666667,1,26 -hat,0.8416666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -brown,0.8733333333333334,1.0,0.8333333333333333,0.9,2,25 -coffee,0.7999999999999999,1.0,0.7166666666666666,0.8,1,26 -handle,0.42666666666666664,1.0,0.5,0.6333333333333333,1,26 -food,0.7849999999999999,1.0,0.65,0.75,1,25 -towel,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.5716666666666665,1.0,0.4833333333333332,0.6333333333333333,1,26 -bag,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333334,1,26 -sponge,0.775,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,25 -special,0.5933333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -colgate,0.505,1.0,0.4499999999999999,0.6,1,26 -leaf,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -tube,0.5349999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -cell,0.8816666666666666,1.0,0.75,0.8333333333333333,1,26 -mug,0.5700000000000001,1.0,0.4833333333333332,0.6333333333333333,1,26 -yogurt,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666668,1,26 -plantain,0.7166666666666666,1.0,0.7166666666666666,0.8,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.775,1.0,0.7666666666666666,0.8333333333333333,1,26 -wheat,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -kleenex,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -binder,0.6133333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.5383333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -pliers,0.71,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6516666666666666,1.0,0.5166666666666666,0.6666666666666666,1,26 -thins,0.5733333333333334,1.0,0.4833333333333333,0.6333333333333334,1,26 -package,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -k,0.71,1.0,0.5999999999999999,0.7166666666666666,1,26 -jelly,0.7933333333333332,1.0,0.7166666666666666,0.8,1,26 -fruit,0.7183333333333334,0.5666666666666667,0.8999999999999998,0.66,2,27 -apple,0.7016666666666665,1.0,0.6499999999999999,0.75,1,25 -bell,0.6966666666666665,1.0,0.6,0.7166666666666667,1,26 -battery,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -jar,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -bound,0.6966666666666667,1.0,0.6,0.7166666666666666,1,26 -lettuce,0.6983333333333334,1.0,0.5666666666666667,0.7,1,26 -brush,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -scissors,0.8150000000000001,1.0,0.6833333333333333,0.7833333333333334,1,26 -lime,0.76,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -top,0.5416666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -spiral,0.6683333333333333,1.0,0.5833333333333333,0.7,1,26 -handles,0.71,1.0,0.5833333333333333,0.7166666666666667,1,25 -camera,0.6633333333333333,1.0,0.55,0.6833333333333333,1,26 -eraser,0.6716666666666666,1.0,0.65,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6849999999999999,1.0,0.6166666666666666,0.7333333333333334,1,26 -pitcher,0.6683333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -phone,0.575,1.0,0.5,0.6333333333333333,1,26 -stick,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -cereal,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -bulb,0.9400000000000001,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.705,1.0,0.5666666666666667,0.7,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -can,1.0,1.0,1.0,1.0,2,25 -coca,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -crackers,0.6383333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.575,1.0,0.5166666666666666,0.65,1,25 -calculator,0.5999999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -tissues,0.7466666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -juice,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -pink,0.5133333333333333,1.0,0.4666666666666666,0.6166666666666667,1,25 -lemon,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -peach,0.61,1.0,0.5166666666666666,0.6666666666666667,1,26 -bowl,0.6766666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.73,1.0,0.6833333333333332,0.7666666666666666,1,26 -blue,0.6866666666666666,1.0,0.6,0.7166666666666667,1,25 -used,0.41500000000000004,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -ball,0.5466666666666666,1.0,0.5499999999999999,0.6666666666666667,1,25 -notebook,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -garlic,0.5133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -cleaning,0.7266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -pair,0.9166666666666666,1.0,0.9,0.9400000000000001,2,27 -container,0.6950000000000001,1.0,0.5,0.65,1,26 -tomato,0.39999999999999997,0.95,0.45,0.5666666666666667,1,26 -cellphone,0.5466666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -potato,0.605,1.0,0.5,0.65,1,25 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.96,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6447067901234568 -F1-Score: 0.6763403880070546 -Precision: 0.9049382716049382 -Recall: 0.5876543209876542 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.86,1.0,0.7666666666666666,0.8333333333333333,1,24 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.63,1.0,0.6,0.7166666666666667,1,24 -keyboard,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -flashlight,0.5,1.0,0.4499999999999999,0.6,1,26 -cup,0.37666666666666676,0.5,0.7333333333333333,0.56,1,26 -folded,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -jam,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -black,0.9333333333333333,0.8666666666666666,1.0,0.9200000000000002,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.8300000000000001,1.0,0.7166666666666666,0.8,1,26 -soccer,0.7,1.0,0.7333333333333333,0.8,1,26 -hat,0.4133333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -brown,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coffee,0.8,1.0,0.8166666666666667,0.8666666666666666,1,25 -handle,0.7016666666666667,1.0,0.6499999999999999,0.75,1,25 -food,0.6583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -towel,0.75,1.0,0.7166666666666666,0.8,1,26 -chips,0.5933333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -stapler,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -onion,0.7766666666666666,0.85,0.6833333333333333,0.6833333333333333,1,26 -bag,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -sponge,0.4683333333333334,1.0,0.4499999999999999,0.6,1,26 -zero,0,0,0,0,1,26 -computer,0.6466666666666666,1.0,0.5833333333333333,0.7,1,25 -special,0.655,1.0,0.65,0.75,1,26 -colgate,0.8033333333333333,1.0,0.6333333333333333,0.75,1,26 -leaf,0.65,1.0,0.5166666666666666,0.65,1,26 -tube,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -cell,0.5866666666666667,0.7,0.6666666666666666,0.6,1,26 -mug,0.7316666666666667,1.0,0.5999999999999999,0.7166666666666667,1,25 -yogurt,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -plantain,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -wheat,0.4883333333333333,1.0,0.5,0.6333333333333333,1,26 -kleenex,0.5916666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -toothbrush,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -binder,0.7333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.5999999999999999,1.0,0.5999999999999999,0.7,1,26 -pliers,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -thins,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -package,0.6683333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -k,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.7516666666666667,1.0,0.6499999999999999,0.75,1,26 -fruit,0.8850000000000001,0.8333333333333333,0.9333333333333332,0.8533333333333333,2,26 -apple,0.7216666666666667,1.0,0.6499999999999999,0.75,1,25 -bell,0.5499999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -battery,0.745,1.0,0.6166666666666666,0.7333333333333333,1,26 -jar,0.6033333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -bound,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -brush,0.7266666666666667,1.0,0.55,0.6833333333333333,1,26 -scissors,0.65,1.0,0.5999999999999999,0.7166666666666667,1,26 -lime,0.7416666666666666,1.0,0.7,0.7833333333333333,1,25 -toothpaste,0.4916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -top,0.8,1.0,0.7166666666666666,0.8,1,26 -spiral,0.5349999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -handles,0.53,1.0,0.4666666666666666,0.6166666666666667,1,25 -camera,0.7466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -eraser,0.48,1.0,0.5,0.6333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6466666666666667,1.0,0.7,0.7833333333333333,1,26 -pitcher,0.6883333333333334,1.0,0.65,0.75,1,26 -phone,0.7683333333333333,1.0,0.6333333333333333,0.75,1,26 -stick,0.7583333333333333,1.0,0.65,0.75,1,25 -cereal,0.58,1.0,0.4666666666666666,0.6166666666666667,1,26 -bulb,0.8933333333333333,1.0,0.8666666666666666,0.9199999999999999,2,27 -hair,0.5416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -can,0.9333333333333332,1.0,0.9333333333333332,0.96,2,25 -coca,0.715,1.0,0.5499999999999999,0.6833333333333333,1,26 -crackers,0.5483333333333333,1.0,0.5,0.65,1,26 -plate,0.7583333333333333,1.0,0.7166666666666666,0.8,1,24 -calculator,0.5183333333333333,0.8,0.5499999999999999,0.5900000000000001,1,26 -tissues,0.665,1.0,0.55,0.6833333333333333,1,26 -juice,0.725,1.0,0.7,0.7833333333333333,1,26 -pink,0.5416666666666667,1.0,0.5166666666666666,0.65,1,25 -lemon,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -peach,0.39166666666666666,1.0,0.3666666666666667,0.5333333333333333,1,26 -bowl,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5216666666666667,1.0,0.5833333333333333,0.7,1,26 -blue,0.61,1.0,0.4999999999999999,0.65,1,25 -used,0.33333333333333337,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.53,1.0,0.5166666666666666,0.65,1,26 -ball,0.6916666666666667,1.0,0.7,0.7833333333333333,1,25 -notebook,0.705,1.0,0.6166666666666666,0.7333333333333334,1,26 -garlic,0.5999999999999999,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -pair,0.9066666666666666,1.0,0.8666666666666666,0.9199999999999999,2,26 -container,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -tomato,0.7933333333333333,0.9,0.8,0.7833333333333333,1,26 -cellphone,0.4666666666666666,0.65,0.5833333333333333,0.5399999999999999,1,26 -potato,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,25 -light,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,26 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6433641975308642 -F1-Score: 0.6836728395061729 -Precision: 0.899074074074074 -Recall: 0.6033950617283951 diff --git a/Validation/UW_raw_75_object_0.8.csv b/Validation/UW_raw_75_object_0.8.csv deleted file mode 100644 index 8f079d5..0000000 --- a/Validation/UW_raw_75_object_0.8.csv +++ /dev/null @@ -1,2875 +0,0 @@ -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.4916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,24 -yellow,1.0,1.0,1.0,1.0,6,23 -looks,0.5933333333333333,1.0,0.5666666666666667,0.6833333333333333,1,24 -keyboard,0.705,1.0,0.5833333333333333,0.7,1,26 -glue,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6083333333333333,1.0,0.65,0.75,1,26 -flashlight,0.5933333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -cup,0.155,0.5,0.5166666666666666,0.4833333333333334,1,26 -folded,0.78,1.0,0.5666666666666667,0.7,1,26 -jam,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -black,0.9100000000000001,0.7833333333333333,1.0,0.86,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.75,1.0,0.6833333333333333,0.7666666666666666,1,26 -soccer,0.7833333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -hat,0.73,1.0,0.6,0.7166666666666667,1,26 -brown,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,24 -coffee,0.78,1.0,0.6666666666666666,0.7666666666666666,1,25 -handle,0.8216666666666667,1.0,0.7833333333333333,0.85,1,25 -food,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -towel,0.6399999999999999,1.0,0.5,0.65,1,26 -chips,0.7433333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -stapler,0.45,1.0,0.5499999999999999,0.6666666666666666,1,26 -onion,0.7000000000000001,0.95,0.6,0.6833333333333333,1,26 -bag,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -sponge,0.8150000000000001,1.0,0.6833333333333333,0.7833333333333334,1,26 -zero,0,0,0,0,1,26 -computer,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -special,0.705,1.0,0.7,0.7833333333333333,1,26 -colgate,0.7466666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -leaf,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.9550000000000001,1.0,0.9,0.9333333333333332,1,26 -mug,0.5,1.0,0.5666666666666667,0.6833333333333333,1,25 -yogurt,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -plantain,0.73,1.0,0.65,0.75,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.49000000000000005,1.0,0.41666666666666663,0.5833333333333334,1,26 -wheat,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -kleenex,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -toothbrush,0.7266666666666666,1.0,0.5666666666666667,0.7,1,26 -binder,0.6683333333333332,1.0,0.55,0.6833333333333333,1,26 -baseball,0.7216666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -pliers,0.755,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7166666666666666,1.0,0.6499999999999999,0.75,1,26 -thins,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -package,0.705,1.0,0.65,0.75,1,26 -k,0.6583333333333333,1.0,0.55,0.6833333333333333,1,26 -jelly,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.7866666666666667,0.7166666666666666,0.9,0.76,2,25 -apple,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -bell,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -battery,0.705,1.0,0.7,0.7833333333333333,1,26 -jar,0.56,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -lettuce,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -brush,0.44666666666666666,1.0,0.4333333333333333,0.5833333333333333,1,26 -scissors,0.7133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -lime,0.4666666666666666,1.0,0.5166666666666666,0.65,1,25 -toothpaste,0.7466666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -top,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -spiral,0.71,1.0,0.5833333333333333,0.7,1,26 -handles,0.8016666666666665,1.0,0.6333333333333333,0.75,1,25 -camera,0.61,1.0,0.5833333333333333,0.7,1,26 -eraser,0.5933333333333334,1.0,0.4833333333333332,0.6333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -pitcher,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -phone,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -stick,0.55,1.0,0.55,0.6833333333333333,1,25 -cereal,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -bulb,0.8683333333333334,1.0,0.8333333333333334,0.9000000000000001,2,27 -hair,0.7583333333333333,1.0,0.65,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -can,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -coca,0.8,1.0,0.7833333333333333,0.85,1,26 -crackers,0.6299999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -plate,0.6933333333333332,1.0,0.6499999999999999,0.75,1,25 -calculator,0.6416666666666667,0.7,0.6833333333333333,0.6166666666666667,1,26 -tissues,0.6766666666666666,1.0,0.6,0.7166666666666667,1,26 -juice,0.655,1.0,0.7,0.7833333333333333,1,26 -pink,0.7583333333333333,1.0,0.7166666666666666,0.8,1,25 -lemon,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -peach,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.82,1.0,0.7333333333333333,0.8166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.755,1.0,0.7166666666666666,0.8,1,26 -blue,0.6466666666666666,1.0,0.5166666666666666,0.6666666666666667,1,25 -used,0.605,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.7666666666666666,1.0,0.7333333333333333,0.8,1,26 -ball,0.7283333333333333,1.0,0.5333333333333333,0.6833333333333333,1,25 -notebook,0.755,1.0,0.6166666666666666,0.7333333333333334,1,26 -garlic,0.7583333333333333,1.0,0.75,0.8166666666666667,1,26 -cleaning,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -pair,0.9133333333333333,1.0,0.9,0.9400000000000001,2,27 -container,0.63,1.0,0.5833333333333333,0.7,1,25 -tomato,0.6916666666666667,1.0,0.5833333333333333,0.7,1,26 -cellphone,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -potato,0.8083333333333332,1.0,0.7166666666666666,0.8,1,25 -light,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.93,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.6649845679012346 -F1-Score: 0.6983641975308643 -Precision: 0.9041666666666667 -Recall: 0.6180555555555557 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8133333333333332,1.0,0.7166666666666666,0.8,1,24 -yellow,0.9666666666666668,0.9333333333333332,1.0,0.9600000000000002,6,23 -looks,0.615,0.7,0.6166666666666666,0.5833333333333333,1,24 -keyboard,0.75,1.0,0.7166666666666666,0.8,1,26 -glue,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.6799999999999999,1.0,0.5,0.65,1,26 -flashlight,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -cup,0.525,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.65,1.0,0.55,0.6833333333333333,1,26 -jam,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.9633333333333335,0.9,1.0,0.9333333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.4216666666666667,1.0,0.4,0.5666666666666667,1,26 -soccer,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -hat,0.8149999999999998,1.0,0.7333333333333333,0.8166666666666668,1,26 -brown,0.9349999999999999,1.0,0.9,0.9400000000000001,2,25 -coffee,0.905,1.0,0.8333333333333334,0.8833333333333332,1,25 -handle,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -food,0.65,1.0,0.6833333333333333,0.7666666666666666,1,24 -towel,0.7916666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -chips,0.7133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -stapler,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -onion,0.6183333333333333,1.0,0.5833333333333333,0.7,1,26 -bag,0.8550000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -sponge,0.5433333333333332,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.73,1.0,0.7499999999999999,0.8166666666666667,1,25 -special,0.6883333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -colgate,0.655,1.0,0.55,0.6833333333333333,1,26 -leaf,0.6849999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -tube,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -cell,0.5599999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -mug,0.6883333333333334,1.0,0.6166666666666666,0.7333333333333333,1,25 -yogurt,0.8166666666666668,1.0,0.7,0.8,1,26 -plantain,0.7649999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -wheat,0.6416666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.4216666666666667,1.0,0.4333333333333333,0.5833333333333333,1,26 -toothbrush,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -binder,0.655,1.0,0.5999999999999999,0.7166666666666667,1,26 -baseball,0.7383333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -pliers,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.57,1.0,0.4666666666666666,0.6166666666666667,1,26 -thins,0.6100000000000001,1.0,0.5833333333333333,0.7,1,26 -package,0.6666666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -jelly,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -fruit,0.7383333333333334,0.6,0.9333333333333332,0.7166666666666667,2,25 -apple,0.5833333333333333,1.0,0.4833333333333333,0.6333333333333333,1,25 -bell,0.7583333333333334,1.0,0.75,0.8166666666666668,1,26 -battery,0.6716666666666666,1.0,0.55,0.6833333333333333,1,26 -jar,0.6799999999999999,1.0,0.65,0.75,1,26 -bound,0.6849999999999999,1.0,0.65,0.75,1,26 -lettuce,0.7433333333333334,1.0,0.6333333333333333,0.75,1,26 -brush,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -scissors,0.7166666666666667,1.0,0.75,0.8166666666666667,1,26 -lime,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,25 -toothpaste,0.6583333333333333,1.0,0.6,0.7166666666666667,1,26 -top,0.7466666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -spiral,0.7133333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -handles,0.5516666666666666,1.0,0.45,0.6,1,25 -camera,0.5499999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -eraser,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.8083333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -pitcher,0.6166666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -phone,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -stick,0.7433333333333333,1.0,0.6333333333333333,0.75,1,25 -cereal,0.7166666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -bulb,0.8633333333333333,1.0,0.8333333333333333,0.9,2,27 -hair,0.75,1.0,0.6833333333333333,0.7833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.725,1.0,0.7,0.7833333333333333,1,26 -can,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -coca,0.6166666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -plate,0.9133333333333333,1.0,0.8833333333333332,0.9166666666666666,1,25 -calculator,0.45166666666666666,0.5,0.5833333333333333,0.51,1,26 -tissues,0.6816666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -juice,0.755,1.0,0.7166666666666666,0.8,1,26 -pink,0.635,1.0,0.5499999999999999,0.6833333333333333,1,25 -lemon,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -peach,0.655,1.0,0.65,0.75,1,26 -bowl,0.7249999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -blue,0.6,1.0,0.5499999999999999,0.6833333333333333,1,25 -used,0.355,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.635,1.0,0.5999999999999999,0.7166666666666666,1,26 -ball,0.5183333333333333,1.0,0.4666666666666666,0.6166666666666667,1,25 -notebook,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -garlic,0.4333333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -cleaning,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -pair,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -container,0.625,1.0,0.5833333333333333,0.7,1,25 -tomato,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -cellphone,0.9133333333333333,1.0,0.85,0.9,1,26 -potato,0.7433333333333333,1.0,0.5333333333333333,0.6833333333333333,1,26 -light,0.9,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.915,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.6643055555555557 -F1-Score: 0.695216049382716 -Precision: 0.8993827160493827 -Recall: 0.6168209876543209 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.7216666666666667,0.75,0.75,0.65,1,24 -keyboard,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -glue,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.8466666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -flashlight,0.73,1.0,0.5999999999999999,0.7166666666666667,1,26 -cup,0.5216666666666667,0.5,0.6166666666666666,0.53,1,26 -folded,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -jam,0.6083333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -black,0.86,0.675,1.0,0.7923809523809523,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -soccer,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -hat,0.73,1.0,0.7,0.7833333333333333,1,26 -brown,0.8150000000000001,1.0,0.7666666666666667,0.8600000000000001,2,24 -coffee,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -handle,0.7983333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -food,0.76,1.0,0.6,0.7166666666666666,1,25 -towel,0.76,1.0,0.5999999999999999,0.7166666666666666,1,26 -chips,0.585,1.0,0.4666666666666666,0.6166666666666666,1,26 -stapler,0.7266666666666668,1.0,0.5333333333333333,0.6833333333333333,1,26 -onion,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bag,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.7683333333333333,1.0,0.6499999999999999,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.7,1.0,0.5999999999999999,0.7166666666666666,1,25 -special,0.8400000000000001,1.0,0.6833333333333333,0.7833333333333334,1,26 -colgate,0.6233333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -leaf,0.635,1.0,0.5333333333333333,0.6666666666666667,1,26 -tube,0.6216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.6399999999999999,1.0,0.6,0.7166666666666667,1,26 -mug,0.5166666666666666,1.0,0.4999999999999999,0.6333333333333333,1,25 -yogurt,0.755,1.0,0.7166666666666666,0.8,1,26 -plantain,0.7416666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.6916666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -wheat,0.7383333333333333,1.0,0.6,0.7166666666666667,1,26 -kleenex,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -toothbrush,0.6633333333333333,1.0,0.4999999999999999,0.65,1,26 -binder,0.5599999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -baseball,0.6333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -pliers,0.8,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.755,1.0,0.5833333333333333,0.7166666666666667,1,26 -thins,0.6466666666666666,1.0,0.6,0.7166666666666667,1,26 -package,0.7466666666666667,1.0,0.6499999999999999,0.75,1,26 -k,0.7933333333333333,1.0,0.7,0.7833333333333333,1,26 -jelly,0.7466666666666667,1.0,0.7166666666666666,0.8,1,26 -fruit,0.6833333333333333,0.6166666666666667,0.9,0.7166666666666666,2,25 -apple,0.635,1.0,0.5833333333333333,0.7,1,25 -bell,0.82,1.0,0.6333333333333333,0.75,1,26 -battery,0.655,1.0,0.5833333333333333,0.7,1,26 -jar,0.8733333333333334,1.0,0.7833333333333333,0.85,1,26 -bound,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -lettuce,0.7166666666666667,1.0,0.6333333333333333,0.75,1,26 -brush,0.6466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.7383333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -lime,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,25 -toothpaste,0.4966666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -top,0.5466666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -spiral,0.5766666666666667,1.0,0.5166666666666666,0.65,1,26 -handles,0.6883333333333334,1.0,0.6666666666666666,0.7666666666666667,1,25 -camera,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -eraser,0.6216666666666666,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.7183333333333334,1.0,0.6,0.7166666666666666,1,26 -pitcher,0.72,1.0,0.6166666666666666,0.7333333333333333,1,26 -phone,0.735,1.0,0.6166666666666666,0.7333333333333333,1,26 -stick,0.625,1.0,0.5833333333333333,0.7,1,25 -cereal,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -bulb,0.9099999999999999,1.0,0.8666666666666668,0.9200000000000002,2,26 -hair,0.5916666666666667,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6983333333333333,1.0,0.55,0.6833333333333333,1,26 -can,0.9133333333333333,1.0,0.9,0.9400000000000001,2,24 -coca,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -crackers,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -plate,0.805,1.0,0.6833333333333333,0.7833333333333334,1,25 -calculator,0.41999999999999993,0.55,0.5666666666666667,0.5233333333333332,1,26 -tissues,0.75,1.0,0.7166666666666666,0.8,1,26 -juice,0.575,1.0,0.5166666666666666,0.65,1,26 -pink,0.7416666666666666,1.0,0.7,0.7833333333333333,1,25 -lemon,0.73,1.0,0.6499999999999999,0.75,1,26 -peach,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -bowl,0.45,1.0,0.45,0.6,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6466666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -blue,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666667,1,25 -used,0.4083333333333334,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.585,1.0,0.4999999999999999,0.65,1,26 -ball,0.6599999999999999,1.0,0.6,0.7166666666666666,1,25 -notebook,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.8150000000000001,1.0,0.6666666666666666,0.7666666666666667,1,26 -cleaning,0.5383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -pair,0.9166666666666666,1.0,0.9,0.9400000000000001,2,27 -container,0.4083333333333333,1.0,0.4333333333333334,0.5833333333333333,1,25 -tomato,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -cellphone,0.4583333333333333,1.0,0.4833333333333333,0.6166666666666666,1,26 -potato,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,25 -light,0.915,1.0,0.8666666666666666,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.6562962962962965 -F1-Score: 0.681657848324515 -Precision: 0.898533950617284 -Recall: 0.5978395061728394 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.49333333333333335,1.0,0.4999999999999999,0.6333333333333333,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,26 -looks,0.745,1.0,0.6166666666666666,0.7333333333333333,1,24 -keyboard,0.5933333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -glue,0.4666666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.605,1.0,0.4999999999999999,0.65,1,26 -flashlight,0.725,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.27999999999999997,0.5,0.5333333333333333,0.49333333333333335,1,26 -folded,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -jam,0.75,1.0,0.7166666666666666,0.8,1,26 -black,0.8433333333333334,0.7083333333333333,1.0,0.8171428571428571,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6100000000000001,1.0,0.5,0.65,1,26 -soccer,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -hat,0.725,1.0,0.6,0.7166666666666666,1,26 -brown,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -coffee,0.6383333333333333,1.0,0.5666666666666667,0.7,1,25 -handle,0.7383333333333333,1.0,0.6,0.7166666666666667,1,26 -food,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -towel,0.5716666666666665,1.0,0.4833333333333332,0.6333333333333333,1,26 -chips,0.6583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -stapler,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -onion,0.5733333333333334,0.85,0.5833333333333333,0.6166666666666666,1,26 -bag,0.6333333333333333,1.0,0.7333333333333333,0.8,1,26 -sponge,0.5166666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5349999999999999,1.0,0.5166666666666666,0.65,1,25 -special,0.8666666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -colgate,0.575,1.0,0.5166666666666666,0.65,1,26 -leaf,0.6133333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -cell,0.6799999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -mug,0.605,1.0,0.5166666666666666,0.65,1,25 -yogurt,0.6749999999999999,1.0,0.6833333333333332,0.7666666666666666,1,26 -plantain,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.7066666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -wheat,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -kleenex,0.6383333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -toothbrush,0.7383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -binder,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -baseball,0.5799999999999998,1.0,0.5166666666666666,0.65,1,26 -pliers,0.7416666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7283333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -thins,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -package,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.6216666666666666,1.0,0.5166666666666666,0.65,1,26 -jelly,0.44666666666666666,1.0,0.4,0.5666666666666667,1,26 -fruit,0.7133333333333334,0.6166666666666667,0.9,0.72,2,25 -apple,0.5983333333333334,0.95,0.5499999999999999,0.65,1,25 -bell,0.6883333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -battery,0.725,1.0,0.6499999999999999,0.75,1,26 -jar,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -bound,0.755,1.0,0.7166666666666666,0.8,1,26 -lettuce,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666666,1,26 -brush,0.6799999999999999,1.0,0.4999999999999999,0.65,1,26 -scissors,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333334,1,26 -lime,0.6433333333333333,1.0,0.55,0.6833333333333333,1,25 -toothpaste,0.7583333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -top,0.5166666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -spiral,0.5433333333333333,1.0,0.5,0.65,1,26 -handles,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,25 -camera,0.5633333333333332,1.0,0.4833333333333333,0.6333333333333333,1,26 -eraser,0.5249999999999999,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.4833333333333333,1.0,0.4499999999999999,0.6,1,26 -pitcher,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.45499999999999996,1.0,0.5166666666666666,0.65,1,26 -stick,0.425,1.0,0.4833333333333333,0.6166666666666667,1,25 -cereal,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -bulb,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -hair,0.615,1.0,0.55,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -can,0.9133333333333333,1.0,0.9,0.9400000000000001,2,24 -coca,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -crackers,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -plate,0.6216666666666667,1.0,0.5833333333333333,0.7,1,25 -calculator,0.6266666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -tissues,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -juice,0.875,1.0,0.7833333333333333,0.85,1,26 -pink,0.7716666666666667,1.0,0.6166666666666666,0.7333333333333334,1,25 -lemon,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -bowl,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -blue,0.6633333333333333,1.0,0.5833333333333333,0.7,1,25 -used,0.35,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -ball,0.655,1.0,0.55,0.6833333333333333,1,25 -notebook,0.7100000000000001,1.0,0.6499999999999999,0.75,1,26 -garlic,0.63,1.0,0.5166666666666666,0.65,1,26 -cleaning,0.525,1.0,0.5166666666666666,0.65,1,26 -pair,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -container,0.58,1.0,0.5166666666666666,0.65,1,25 -tomato,0.7733333333333333,1.0,0.6499999999999999,0.75,1,26 -cellphone,0.5966666666666667,1.0,0.5166666666666666,0.65,1,26 -potato,0.7666666666666667,1.0,0.7666666666666666,0.8333333333333333,1,25 -light,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.6424382716049384 -F1-Score: 0.6790476190476191 -Precision: 0.9034722222222221 -Recall: 0.5922839506172839 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7933333333333332,1.0,0.6333333333333333,0.75,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.7483333333333333,1.0,0.6333333333333333,0.75,1,24 -keyboard,0.7916666666666667,1.0,0.7166666666666666,0.8,1,26 -glue,0.7066666666666667,1.0,0.55,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6433333333333333,1.0,0.5666666666666667,0.7,1,26 -flashlight,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -cup,0.35500000000000004,0.5,0.6166666666666666,0.53,1,26 -folded,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -jam,0.6416666666666666,1.0,0.7,0.7833333333333333,1,26 -black,0.8883333333333333,0.7833333333333333,1.0,0.8647619047619047,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5266666666666666,1.0,0.41666666666666663,0.5833333333333333,1,26 -soccer,0.7150000000000001,1.0,0.55,0.6833333333333333,1,26 -hat,0.72,1.0,0.6666666666666666,0.7666666666666667,1,26 -brown,0.9416666666666667,1.0,0.9333333333333332,0.96,2,24 -coffee,0.6833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -handle,0.4,1.0,0.4499999999999999,0.6,1,25 -food,0.6216666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -towel,0.8,1.0,0.75,0.8166666666666667,1,26 -chips,0.585,1.0,0.5333333333333333,0.6666666666666667,1,26 -stapler,0.44666666666666666,1.0,0.45,0.6,1,26 -onion,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -bag,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -sponge,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.835,1.0,0.6833333333333333,0.7833333333333333,1,25 -special,0.5183333333333333,1.0,0.4333333333333333,0.6,1,26 -colgate,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -leaf,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -tube,0.8666666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -cell,0.32333333333333336,0.6,0.5499999999999999,0.51,1,26 -mug,0.7383333333333334,1.0,0.7,0.7833333333333333,1,26 -yogurt,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -plantain,0.6683333333333333,1.0,0.65,0.75,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -wheat,0.5583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -kleenex,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333334,1,26 -toothbrush,0.6216666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -binder,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -pliers,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6683333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -thins,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -package,0.805,1.0,0.7166666666666666,0.8,1,26 -k,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -fruit,0.775,0.7166666666666666,0.9,0.7633333333333334,2,26 -apple,0.7866666666666667,0.75,0.8333333333333333,0.7333333333333333,1,25 -bell,0.635,1.0,0.55,0.6833333333333333,1,26 -battery,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -jar,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -bound,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -lettuce,0.5583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -brush,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -scissors,0.7249999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -lime,0.6966666666666667,1.0,0.5999999999999999,0.7166666666666667,1,25 -toothpaste,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -top,0.8766666666666667,1.0,0.75,0.8333333333333333,1,26 -spiral,0.6599999999999999,1.0,0.5666666666666667,0.7,1,26 -handles,0.8416666666666666,1.0,0.7333333333333333,0.8166666666666667,1,25 -camera,0.73,1.0,0.6499999999999999,0.75,1,26 -eraser,0.72,1.0,0.55,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.61,1.0,0.5666666666666667,0.6833333333333333,1,26 -pitcher,0.7083333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -phone,0.5916666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -stick,0.59,1.0,0.5833333333333333,0.7,1,25 -cereal,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -bulb,0.8299999999999998,1.0,0.8,0.8800000000000001,2,26 -hair,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,24 -coca,0.7433333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -plate,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -calculator,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -tissues,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -juice,0.9,1.0,0.8666666666666666,0.9,1,26 -pink,0.6516666666666666,1.0,0.6,0.7166666666666667,1,25 -lemon,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -peach,0.6633333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -bowl,0.6499999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.625,1.0,0.5166666666666666,0.65,1,26 -blue,0.8166666666666667,1.0,0.7166666666666666,0.8,1,25 -used,0.46333333333333326,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.7433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.73,1.0,0.6166666666666666,0.7333333333333333,1,25 -notebook,0.7716666666666666,1.0,0.7,0.7833333333333333,1,26 -garlic,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -cleaning,0.5549999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -pair,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.73,1.0,0.7,0.7833333333333333,1,25 -tomato,0.6133333333333333,1.0,0.4833333333333334,0.6333333333333333,1,26 -cellphone,0.3716666666666667,0.6,0.5999999999999999,0.5266666666666667,1,26 -potato,0.63,1.0,0.5833333333333333,0.7,1,25 -light,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9066666666666666,1.0,0.8666666666666666,0.9200000000000002,2,27 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.6574537037037038 -F1-Score: 0.6890255731922401 -Precision: 0.8972222222222223 -Recall: 0.6104938271604937 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.655,1.0,0.55,0.6833333333333333,1,25 -yellow,0.95,0.8833333333333332,1.0,0.9266666666666667,6,24 -looks,0.7,0.75,0.7166666666666666,0.65,1,24 -keyboard,0.6316666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -glue,0.6333333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.5933333333333334,1.0,0.4999999999999999,0.65,1,26 -cup,0.5883333333333333,0.5,0.75,0.5700000000000001,1,26 -folded,0.7016666666666667,1.0,0.5833333333333333,0.7,1,26 -jam,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -black,0.9066666666666668,0.8166666666666668,1.0,0.8866666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.5933333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -soccer,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -hat,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -coffee,0.735,1.0,0.6166666666666666,0.7333333333333333,1,26 -handle,0.755,1.0,0.7,0.7833333333333333,1,25 -food,0.6833333333333333,1.0,0.5833333333333333,0.7,1,25 -towel,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.735,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.61,1.0,0.4833333333333333,0.6333333333333333,1,26 -onion,0.66,1.0,0.5666666666666667,0.7,1,26 -bag,0.5766666666666665,1.0,0.4333333333333334,0.5833333333333333,1,26 -sponge,0.7833333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6466666666666667,1.0,0.65,0.75,1,25 -special,0.5666666666666667,1.0,0.41666666666666663,0.5833333333333333,1,26 -colgate,0.71,1.0,0.55,0.6833333333333333,1,26 -leaf,0.6133333333333333,1.0,0.5166666666666666,0.65,1,26 -tube,0.7983333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -cell,0.6183333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -mug,0.605,1.0,0.5166666666666666,0.65,1,26 -yogurt,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -plantain,0.6516666666666666,1.0,0.6,0.7166666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.6516666666666666,1.0,0.5666666666666667,0.7,1,26 -wheat,0.7083333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -kleenex,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -toothbrush,0.79,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.7266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.5516666666666666,1.0,0.41666666666666663,0.5833333333333334,1,26 -pliers,0.655,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -thins,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -package,0.755,1.0,0.7166666666666666,0.8,1,26 -k,0.6666666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.6966666666666665,1.0,0.5999999999999999,0.7166666666666666,1,26 -fruit,0.82,0.7333333333333333,0.9333333333333332,0.7933333333333333,2,25 -apple,0.73,0.9,0.6833333333333333,0.7166666666666667,1,25 -bell,0.5299999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -battery,0.7066666666666667,1.0,0.5833333333333333,0.7,1,26 -jar,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -bound,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666666,1,26 -lettuce,0.6516666666666666,1.0,0.5166666666666666,0.65,1,26 -brush,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -scissors,0.7266666666666667,1.0,0.7166666666666666,0.8,1,26 -lime,0.5766666666666667,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.75,1.0,0.65,0.75,1,26 -top,0.78,1.0,0.7,0.7833333333333333,1,26 -spiral,0.6416666666666666,1.0,0.55,0.6833333333333333,1,26 -handles,0.5966666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -camera,0.725,1.0,0.65,0.75,1,26 -eraser,0.755,1.0,0.6166666666666666,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -pitcher,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -phone,0.6266666666666667,1.0,0.55,0.6833333333333333,1,26 -stick,0.8533333333333333,1.0,0.7333333333333333,0.8166666666666667,1,25 -cereal,0.6083333333333333,1.0,0.5166666666666666,0.65,1,26 -bulb,0.8883333333333333,1.0,0.8666666666666668,0.9200000000000002,2,26 -hair,0.375,1.0,0.4333333333333333,0.5833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.805,1.0,0.7166666666666666,0.8,1,26 -can,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coca,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -crackers,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.6133333333333334,1.0,0.5166666666666666,0.65,1,25 -calculator,0.74,1.0,0.6666666666666666,0.7666666666666667,1,26 -tissues,0.7649999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.6799999999999999,1.0,0.65,0.75,1,26 -pink,0.7583333333333333,1.0,0.7,0.7833333333333333,1,25 -lemon,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -peach,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -bowl,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.725,1.0,0.65,0.75,1,26 -blue,0.675,1.0,0.75,0.8166666666666667,1,25 -used,0.44000000000000006,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.71,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.6183333333333334,1.0,0.4833333333333333,0.6333333333333333,1,25 -notebook,0.7,1.0,0.7,0.7833333333333333,1,26 -garlic,0.7466666666666667,1.0,0.7166666666666666,0.8,1,26 -cleaning,0.475,1.0,0.4833333333333332,0.6166666666666666,1,26 -pair,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.8083333333333332,1.0,0.7833333333333333,0.85,1,25 -tomato,0.6666666666666666,1.0,0.5666666666666667,0.7,1,26 -cellphone,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -potato,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -light,0.9016666666666667,1.0,0.8666666666666668,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.6626851851851852 -F1-Score: 0.690679012345679 -Precision: 0.9035493827160495 -Recall: 0.6101851851851853 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.48,1.0,0.4666666666666666,0.6166666666666667,1,25 -yellow,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666665,6,24 -looks,0.5916666666666667,0.75,0.6333333333333332,0.5833333333333333,1,24 -keyboard,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.6666666666666666,1.0,0.6666666666666666,0.75,1,26 -cup,0.185,0.5,0.5666666666666667,0.5000000000000001,1,26 -folded,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -jam,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.8850000000000001,0.775,1.0,0.8571428571428571,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -soccer,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -hat,0.6933333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.8933333333333333,1.0,0.8666666666666668,0.9200000000000002,2,24 -coffee,0.605,1.0,0.5333333333333333,0.6666666666666666,1,26 -handle,0.5933333333333333,1.0,0.4999999999999999,0.65,1,26 -food,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,25 -towel,0.6499999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.7433333333333334,1.0,0.65,0.75,1,26 -stapler,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -onion,0.7666666666666666,1.0,0.7,0.7833333333333334,1,26 -bag,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -sponge,0.7783333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7733333333333333,1.0,0.65,0.75,1,25 -special,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -colgate,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -tube,0.5766666666666667,1.0,0.45,0.6,1,26 -cell,0.3633333333333333,1.0,0.4333333333333334,0.5833333333333333,1,26 -mug,0.59,1.0,0.5333333333333333,0.6666666666666667,1,26 -yogurt,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -plantain,0.48,1.0,0.5499999999999999,0.6666666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.6983333333333334,1.0,0.6,0.7166666666666667,1,26 -wheat,0.7683333333333333,1.0,0.65,0.75,1,26 -kleenex,0.725,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.625,1.0,0.5333333333333333,0.6666666666666667,1,26 -binder,0.7350000000000001,1.0,0.6666666666666666,0.7666666666666667,1,26 -baseball,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -pliers,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6666666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -thins,0.5966666666666667,1.0,0.6333333333333332,0.7333333333333333,1,26 -package,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -k,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -jelly,0.75,1.0,0.7,0.7833333333333333,1,26 -fruit,0.6966666666666667,0.65,0.8999999999999998,0.7166666666666667,2,25 -apple,0.7066666666666668,0.95,0.65,0.7166666666666667,1,25 -bell,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -battery,0.8049999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -jar,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -bound,0.635,1.0,0.5999999999999999,0.7166666666666667,1,26 -lettuce,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -brush,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.7899999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.5966666666666666,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -top,0.6483333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -spiral,0.675,1.0,0.5833333333333333,0.7,1,26 -handles,0.5583333333333332,1.0,0.5499999999999999,0.6666666666666666,1,25 -camera,0.6849999999999999,1.0,0.6,0.7166666666666666,1,26 -eraser,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -pitcher,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -phone,0.6883333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -stick,0.5416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,25 -cereal,0.5416666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.8699999999999999,1.0,0.8,0.8800000000000001,2,27 -hair,0.735,1.0,0.6,0.7166666666666666,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.71,1.0,0.6333333333333333,0.7333333333333333,1,26 -can,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.45166666666666666,1.0,0.4,0.5666666666666667,1,26 -crackers,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -plate,0.6133333333333334,1.0,0.5333333333333333,0.6666666666666667,1,24 -calculator,0.6616666666666666,0.75,0.6166666666666666,0.6333333333333334,1,26 -tissues,0.8316666666666667,1.0,0.65,0.7666666666666667,1,26 -juice,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -pink,0.5816666666666667,1.0,0.4999999999999999,0.65,1,25 -lemon,0.4083333333333334,1.0,0.5499999999999999,0.6666666666666666,1,26 -peach,0.7483333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -bowl,0.7016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7716666666666666,1.0,0.7166666666666666,0.8,1,26 -blue,0.7266666666666666,1.0,0.7,0.7833333333333334,1,25 -used,0.6483333333333333,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.5583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -ball,0.775,1.0,0.75,0.8166666666666667,1,25 -notebook,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -garlic,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.9266666666666665,1.0,0.9,0.9400000000000001,2,27 -container,0.6466666666666667,1.0,0.6333333333333332,0.7333333333333333,1,26 -tomato,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -cellphone,0.7016666666666667,1.0,0.5666666666666667,0.7,1,26 -potato,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -light,0.8833333333333332,1.0,0.8666666666666666,0.9200000000000002,2,27 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8300000000000001,1.0,0.8,0.8800000000000001,2,26 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.6416820987654321 -F1-Score: 0.6805291005291004 -Precision: 0.9005401234567901 -Recall: 0.5979938271604938 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -yellow,0.9400000000000001,0.85,1.0,0.8999999999999998,6,24 -looks,0.5483333333333333,0.8,0.6499999999999999,0.6333333333333333,1,24 -keyboard,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -glue,0.6966666666666665,1.0,0.6833333333333332,0.7666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666666,1,26 -flashlight,0.7916666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -cup,0.335,0.5,0.5833333333333333,0.51,1,25 -folded,0.6,1.0,0.5833333333333333,0.7,1,26 -jam,0.69,1.0,0.5999999999999999,0.7166666666666667,1,26 -black,0.885,0.775,1.0,0.8590476190476191,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7983333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -soccer,0.61,1.0,0.4833333333333333,0.6333333333333333,1,26 -hat,0.65,1.0,0.65,0.75,1,26 -brown,0.93,1.0,0.9,0.9400000000000001,2,25 -coffee,0.4666666666666667,1.0,0.5166666666666666,0.65,1,25 -handle,0.6566666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -food,0.6433333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -towel,0.575,1.0,0.6833333333333333,0.7666666666666666,1,26 -chips,0.5833333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -stapler,0.8683333333333334,1.0,0.7833333333333333,0.85,1,26 -onion,0.76,1.0,0.6833333333333333,0.7833333333333333,1,26 -bag,0.4683333333333334,1.0,0.45,0.6,1,26 -sponge,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.7933333333333333,1.0,0.6333333333333333,0.75,1,25 -special,0.5966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -colgate,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -leaf,0.6683333333333332,1.0,0.5166666666666666,0.65,1,26 -tube,0.6333333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -cell,0.5,1.0,0.5,0.6333333333333333,1,26 -mug,0.755,1.0,0.65,0.75,1,26 -yogurt,0.635,1.0,0.5333333333333333,0.6666666666666667,1,26 -plantain,0.5833333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.8083333333333332,1.0,0.75,0.8166666666666668,1,26 -wheat,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.7083333333333333,1.0,0.75,0.8166666666666668,1,26 -toothbrush,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -binder,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -baseball,0.9083333333333332,1.0,0.85,0.9,1,26 -pliers,0.73,1.0,0.6833333333333333,0.7666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7466666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -thins,0.6833333333333333,1.0,0.65,0.75,1,26 -package,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -k,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -jelly,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -fruit,0.7733333333333333,0.6333333333333333,0.9666666666666666,0.7333333333333333,2,25 -apple,0.705,1.0,0.65,0.75,1,25 -bell,0.7466666666666667,1.0,0.75,0.8166666666666667,1,26 -battery,0.7583333333333333,1.0,0.65,0.75,1,26 -jar,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -bound,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -lettuce,0.7,1.0,0.6666666666666666,0.7666666666666667,1,26 -brush,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -scissors,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.605,1.0,0.4666666666666666,0.6166666666666667,1,25 -toothpaste,0.6683333333333332,1.0,0.6499999999999999,0.75,1,26 -top,0.55,1.0,0.5333333333333333,0.6666666666666667,1,26 -spiral,0.5883333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -handles,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.5966666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -pitcher,0.5866666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -phone,0.6799999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -stick,0.74,1.0,0.6166666666666666,0.7333333333333333,1,25 -cereal,0.6916666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -bulb,0.8433333333333334,1.0,0.8,0.8800000000000001,2,26 -hair,0.5083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -can,0.8816666666666666,1.0,0.8333333333333334,0.9000000000000001,2,25 -coca,0.7183333333333334,1.0,0.5666666666666667,0.7,1,26 -crackers,0.79,1.0,0.6666666666666666,0.7666666666666667,1,26 -plate,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,25 -calculator,0.5933333333333334,0.9,0.5833333333333333,0.65,1,26 -tissues,0.7133333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -juice,0.6466666666666667,1.0,0.55,0.6833333333333333,1,26 -pink,0.7333333333333333,1.0,0.6499999999999999,0.75,1,25 -lemon,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -peach,0.35000000000000003,0.5,0.6333333333333333,0.5266666666666666,1,26 -bowl,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.725,1.0,0.6666666666666666,0.7666666666666666,1,26 -blue,0.7666666666666667,1.0,0.7166666666666666,0.8,1,25 -used,0.31833333333333336,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -ball,0.4833333333333333,1.0,0.45,0.6,1,25 -notebook,0.63,1.0,0.5166666666666666,0.65,1,26 -garlic,0.6933333333333332,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.7,1.0,0.65,0.75,1,26 -pair,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -container,0.6166666666666667,1.0,0.6833333333333333,0.7666666666666667,1,25 -tomato,0.5933333333333333,1.0,0.5166666666666666,0.65,1,26 -cellphone,0.6683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -potato,0.655,1.0,0.5833333333333333,0.7,1,25 -light,0.8766666666666666,1.0,0.8333333333333333,0.9,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,1.0,1.0,1.0,1.0,2,26 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.6448456790123457 -F1-Score: 0.6852380952380953 -Precision: 0.8977623456790125 -Recall: 0.6055555555555555 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7683333333333333,1.0,0.7166666666666666,0.8,1,24 -yellow,0.96,0.9,1.0,0.9333333333333332,6,24 -looks,0.5766666666666667,0.85,0.5833333333333333,0.6166666666666667,1,24 -keyboard,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -flashlight,0.7816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -cup,0.40499999999999997,0.5,0.5833333333333333,0.51,1,26 -folded,0.5716666666666665,1.0,0.5166666666666666,0.65,1,26 -jam,0.6433333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.8233333333333335,0.6333333333333333,1.0,0.7647619047619048,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.3466666666666666,1.0,0.38333333333333336,0.55,1,26 -soccer,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -hat,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -brown,0.9016666666666666,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -handle,0.805,1.0,0.7166666666666666,0.8,1,26 -food,0.6100000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -towel,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.4966666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -stapler,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -onion,0.5433333333333333,1.0,0.5166666666666666,0.65,1,26 -bag,0.8216666666666667,1.0,0.65,0.7666666666666667,1,26 -sponge,0.5666666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7,1.0,0.7,0.7833333333333333,1,25 -special,0.665,1.0,0.5166666666666666,0.6666666666666667,1,26 -colgate,0.775,1.0,0.7666666666666666,0.8333333333333333,1,26 -leaf,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -tube,0.6416666666666667,1.0,0.6833333333333332,0.7666666666666666,1,26 -cell,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -mug,0.7416666666666666,1.0,0.7166666666666666,0.8,1,25 -yogurt,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -plantain,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.735,1.0,0.7166666666666666,0.8,1,26 -wheat,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -kleenex,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -toothbrush,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.6466666666666667,1.0,0.7,0.7833333333333333,1,26 -baseball,0.6316666666666666,1.0,0.4499999999999999,0.6166666666666667,1,26 -pliers,0.8149999999999998,1.0,0.65,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7666666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -thins,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -package,0.5999999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -k,0.675,1.0,0.6166666666666666,0.7333333333333334,1,26 -jelly,0.4766666666666667,1.0,0.5,0.6333333333333334,1,26 -fruit,0.7733333333333334,0.7,0.9333333333333332,0.7633333333333333,2,26 -apple,0.7233333333333333,0.85,0.6666666666666666,0.6833333333333333,1,25 -bell,0.7483333333333333,1.0,0.6333333333333333,0.75,1,26 -battery,0.7433333333333333,1.0,0.7,0.7833333333333333,1,26 -jar,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -bound,0.5683333333333332,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.715,1.0,0.6,0.7166666666666667,1,26 -brush,0.8683333333333334,1.0,0.7833333333333333,0.85,1,26 -scissors,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -lime,0.9016666666666667,1.0,0.8,0.8666666666666668,1,25 -toothpaste,0.6966666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -top,0.7166666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -spiral,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -handles,0.605,1.0,0.5166666666666666,0.65,1,25 -camera,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.8916666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,23 -banana,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -phone,0.6916666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -stick,0.7216666666666666,1.0,0.6499999999999999,0.75,1,25 -cereal,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -bulb,0.925,1.0,0.9,0.9400000000000001,2,27 -hair,0.8133333333333332,1.0,0.7666666666666666,0.8333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6933333333333332,1.0,0.5666666666666667,0.7,1,26 -can,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -coca,0.6383333333333334,1.0,0.55,0.6833333333333333,1,26 -crackers,0.5066666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -plate,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -calculator,0.2916666666666667,0.6,0.5499999999999999,0.51,1,26 -tissues,0.6966666666666665,1.0,0.6833333333333333,0.7666666666666667,1,26 -juice,0.6833333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -pink,0.6716666666666666,1.0,0.6,0.7166666666666667,1,25 -lemon,0.735,1.0,0.6166666666666666,0.7333333333333334,1,26 -peach,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -bowl,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8,1.0,0.8166666666666667,0.8666666666666666,1,26 -blue,0.8166666666666668,1.0,0.7666666666666666,0.8333333333333333,1,25 -used,0.2783333333333334,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.8300000000000001,1.0,0.75,0.8166666666666668,1,26 -ball,0.4750000000000001,1.0,0.45,0.6,1,25 -notebook,0.525,1.0,0.5499999999999999,0.6666666666666666,1,26 -garlic,0.4416666666666666,1.0,0.4333333333333333,0.5833333333333333,1,26 -cleaning,0.7083333333333333,1.0,0.65,0.75,1,26 -pair,0.925,1.0,0.9,0.9400000000000001,2,26 -container,0.61,1.0,0.5666666666666667,0.6833333333333333,1,25 -tomato,0.7416666666666666,1.0,0.6499999999999999,0.75,1,26 -cellphone,0.5499999999999999,1.0,0.5999999999999999,0.7,1,26 -potato,0.6666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -light,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8633333333333333,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.660787037037037 -F1-Score: 0.6956305114638448 -Precision: 0.8984567901234568 -Recall: 0.618827160493827 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666666,1,24 -yellow,1.0,1.0,1.0,1.0,6,26 -looks,0.8,1.0,0.7666666666666666,0.8333333333333333,1,24 -keyboard,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -glue,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.73,1.0,0.6166666666666666,0.7333333333333333,1,26 -flashlight,0.6416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -cup,0.34833333333333333,0.5,0.6333333333333333,0.5266666666666666,1,26 -folded,0.8400000000000001,1.0,0.7833333333333333,0.85,1,26 -jam,0.6333333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -black,0.95,0.8833333333333332,1.0,0.9266666666666667,6,22 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -soccer,0.735,1.0,0.6499999999999999,0.75,1,26 -hat,0.6749999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.9400000000000001,1.0,0.9,0.9400000000000001,2,24 -coffee,0.7516666666666667,1.0,0.65,0.75,1,25 -handle,0.6966666666666665,1.0,0.6499999999999999,0.75,1,25 -food,0.6416666666666666,1.0,0.5833333333333333,0.7,1,25 -towel,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -chips,0.7433333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -onion,0.6683333333333333,1.0,0.6499999999999999,0.75,1,26 -bag,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -sponge,0.705,1.0,0.6499999999999999,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666667,1,25 -special,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -colgate,0.575,1.0,0.5499999999999999,0.6666666666666666,1,26 -leaf,0.5633333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -cell,0.25166666666666665,0.6,0.4,0.45999999999999996,1,26 -mug,0.735,1.0,0.65,0.75,1,25 -yogurt,0.7133333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -plantain,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.865,1.0,0.7333333333333333,0.8166666666666667,1,26 -wheat,0.73,1.0,0.5999999999999999,0.7166666666666666,1,26 -kleenex,0.5683333333333334,1.0,0.4833333333333333,0.6333333333333334,1,26 -toothbrush,0.5666666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -binder,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -baseball,0.5916666666666666,1.0,0.5166666666666666,0.65,1,26 -pliers,0.6416666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,24 -water,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -thins,0.8583333333333334,1.0,0.7833333333333333,0.85,1,26 -package,0.5833333333333333,1.0,0.4999999999999999,0.65,1,26 -k,0.6183333333333334,1.0,0.5833333333333333,0.7,1,26 -jelly,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -fruit,0.7666666666666668,0.6499999999999999,0.9333333333333332,0.7333333333333334,2,25 -apple,0.6966666666666665,1.0,0.6499999999999999,0.75,1,25 -bell,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -jar,0.7166666666666666,1.0,0.6499999999999999,0.75,1,26 -bound,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -lettuce,0.45999999999999996,1.0,0.4833333333333332,0.6333333333333333,1,26 -brush,0.5816666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -scissors,0.585,1.0,0.5333333333333333,0.6666666666666667,1,26 -lime,0.835,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.5166666666666666,1.0,0.5999999999999999,0.7,1,26 -top,0.78,1.0,0.75,0.8166666666666667,1,26 -spiral,0.7733333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -handles,0.675,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.635,1.0,0.5166666666666666,0.65,1,26 -eraser,0.6883333333333334,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.4966666666666666,1.0,0.5,0.6333333333333333,1,26 -pitcher,0.5966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -stick,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666667,1,25 -cereal,0.6983333333333334,1.0,0.5666666666666667,0.7,1,26 -bulb,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,27 -hair,0.685,1.0,0.5999999999999999,0.7166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coca,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -crackers,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -calculator,0.6100000000000001,0.9,0.5666666666666667,0.6166666666666666,1,26 -tissues,0.6866666666666666,1.0,0.4999999999999999,0.65,1,26 -juice,0.5666666666666667,1.0,0.6,0.7,1,26 -pink,0.655,1.0,0.55,0.6833333333333333,1,25 -lemon,0.6883333333333332,1.0,0.6333333333333332,0.7333333333333333,1,26 -peach,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.5683333333333332,1.0,0.4833333333333333,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6933333333333334,1.0,0.6,0.7166666666666667,1,26 -blue,0.605,1.0,0.5166666666666666,0.6666666666666666,1,25 -used,0.47333333333333333,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.7,1.0,0.6499999999999999,0.75,1,25 -notebook,0.6966666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -garlic,0.5433333333333332,1.0,0.45,0.6,1,26 -cleaning,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -pair,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,26 -container,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -tomato,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -cellphone,0.4833333333333333,0.65,0.6499999999999999,0.5666666666666667,1,26 -potato,0.7866666666666666,1.0,0.6333333333333333,0.75,1,25 -light,0.925,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8833333333333332,1.0,0.8666666666666668,0.9200000000000002,2,26 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.6505864197530863 -F1-Score: 0.6878703703703702 -Precision: 0.8998456790123457 -Recall: 0.6066358024691356 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -yellow,0.8949999999999999,0.8,1.0,0.8733333333333334,6,24 -looks,0.5366666666666666,0.6,0.6166666666666666,0.55,1,24 -keyboard,0.7483333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -glue,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7016666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -flashlight,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -cup,0.3166666666666667,0.5,0.4833333333333333,0.47666666666666674,1,26 -folded,0.6216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -black,0.9133333333333334,0.7833333333333333,1.0,0.8600000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -soccer,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -hat,0.69,1.0,0.5666666666666667,0.7,1,26 -brown,0.9100000000000001,1.0,0.8666666666666666,0.9200000000000002,2,25 -coffee,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -handle,0.5933333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -food,0.675,1.0,0.4999999999999999,0.65,1,25 -towel,0.7,1.0,0.65,0.75,1,26 -chips,0.4499999999999999,1.0,0.5333333333333332,0.65,1,26 -stapler,0.6666666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -onion,0.7016666666666667,1.0,0.5833333333333333,0.7,1,26 -bag,0.805,1.0,0.7166666666666666,0.8,1,26 -sponge,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -special,0.7100000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -colgate,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -leaf,0.56,1.0,0.5333333333333333,0.6666666666666667,1,26 -tube,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -mug,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -yogurt,0.6016666666666667,1.0,0.5833333333333333,0.7,1,26 -plantain,0.73,1.0,0.6166666666666666,0.7333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -wheat,0.61,1.0,0.4666666666666666,0.6166666666666667,1,26 -kleenex,0.4766666666666667,1.0,0.45,0.6,1,26 -toothbrush,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.4833333333333333,1.0,0.4,0.5666666666666667,1,26 -baseball,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -pliers,0.6666666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -thins,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -package,0.705,1.0,0.6499999999999999,0.75,1,26 -k,0.4966666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -jelly,0.38,1.0,0.5,0.6333333333333333,1,26 -fruit,0.7649999999999999,0.8,0.8333333333333333,0.77,2,26 -apple,0.825,0.8,0.8333333333333334,0.75,1,25 -bell,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -battery,0.6883333333333334,1.0,0.6,0.7166666666666667,1,26 -jar,0.6733333333333333,1.0,0.5666666666666667,0.7,1,26 -bound,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.74,1.0,0.6166666666666666,0.7333333333333333,1,26 -brush,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -scissors,0.79,1.0,0.6833333333333333,0.7833333333333333,1,26 -lime,0.8233333333333335,1.0,0.6833333333333333,0.7833333333333333,1,25 -toothpaste,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -top,0.6466666666666667,1.0,0.6499999999999999,0.75,1,26 -spiral,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -handles,0.8133333333333332,1.0,0.7166666666666666,0.8,1,25 -camera,0.47999999999999987,1.0,0.4499999999999999,0.6,1,26 -eraser,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6266666666666667,0.9,0.6333333333333333,0.6666666666666667,1,26 -pitcher,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -phone,0.525,1.0,0.5666666666666667,0.6833333333333333,1,26 -stick,0.71,1.0,0.5499999999999999,0.6833333333333333,1,25 -cereal,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -bulb,0.8799999999999999,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.71,1.0,0.6166666666666666,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6,1.0,0.5833333333333333,0.7,1,26 -can,0.85,1.0,0.7666666666666667,0.8600000000000001,2,25 -coca,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -crackers,0.6666666666666666,1.0,0.65,0.75,1,26 -plate,0.65,1.0,0.7,0.7833333333333333,1,25 -calculator,0.78,1.0,0.65,0.75,1,26 -tissues,0.76,1.0,0.7166666666666666,0.8,1,26 -juice,0.6499999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -pink,0.875,1.0,0.8833333333333332,0.9166666666666666,1,25 -lemon,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -peach,0.5766666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -bowl,0.5766666666666667,1.0,0.5166666666666666,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.755,1.0,0.6499999999999999,0.75,1,26 -blue,0.6833333333333333,1.0,0.6666666666666666,0.75,1,25 -used,0.25000000000000006,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.71,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.8133333333333332,1.0,0.7166666666666666,0.8,1,25 -notebook,0.6666666666666667,1.0,0.7,0.7833333333333333,1,26 -garlic,0.7066666666666668,1.0,0.6,0.7166666666666667,1,26 -cleaning,0.5933333333333334,1.0,0.5833333333333333,0.7,1,26 -pair,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -container,0.7216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -tomato,0.5383333333333333,1.0,0.4333333333333334,0.5833333333333333,1,26 -cellphone,0.5349999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -potato,0.7649999999999999,1.0,0.5833333333333333,0.7166666666666667,1,25 -light,0.9266666666666665,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.6499382716049382 -F1-Score: 0.6841666666666667 -Precision: 0.8998456790123457 -Recall: 0.6016975308641975 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.45999999999999996,1.0,0.41666666666666663,0.5833333333333333,1,25 -yellow,0.9466666666666667,0.8666666666666666,1.0,0.9133333333333333,6,24 -looks,0.5833333333333333,0.95,0.6166666666666666,0.6833333333333333,1,24 -keyboard,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -glue,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.705,1.0,0.6166666666666666,0.7333333333333334,1,26 -cup,0.3766666666666667,0.5,0.6166666666666666,0.53,1,26 -folded,0.7916666666666667,1.0,0.7,0.7833333333333333,1,26 -jam,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.9100000000000001,0.8166666666666667,1.0,0.8847619047619049,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5416666666666667,1.0,0.5833333333333333,0.7,1,26 -soccer,0.51,1.0,0.41666666666666663,0.5833333333333333,1,26 -hat,0.76,1.0,0.7666666666666666,0.8333333333333333,1,26 -brown,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -handle,0.6,1.0,0.5999999999999999,0.7166666666666666,1,25 -food,0.8233333333333335,1.0,0.65,0.7666666666666667,1,25 -towel,0.7566666666666666,1.0,0.5833333333333333,0.7166666666666667,1,26 -chips,0.6599999999999999,1.0,0.6,0.7166666666666666,1,26 -stapler,0.6166666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -onion,0.6316666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -bag,0.575,1.0,0.5833333333333333,0.7,1,26 -sponge,0.7466666666666666,1.0,0.65,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.755,1.0,0.7166666666666666,0.8,1,25 -special,0.675,1.0,0.6833333333333333,0.7666666666666666,1,26 -colgate,0.7416666666666667,1.0,0.7166666666666666,0.8,1,26 -leaf,0.45,1.0,0.5333333333333333,0.65,1,26 -tube,0.6883333333333332,1.0,0.6,0.7166666666666667,1,26 -cell,0.5133333333333333,0.55,0.6,0.53,1,26 -mug,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -yogurt,0.6,1.0,0.5833333333333333,0.7,1,26 -plantain,0.485,1.0,0.5166666666666666,0.65,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.7166666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -wheat,0.58,1.0,0.5166666666666666,0.65,1,26 -kleenex,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.4583333333333333,1.0,0.4499999999999999,0.6,1,26 -binder,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -baseball,0.7466666666666666,1.0,0.7,0.7833333333333333,1,26 -pliers,0.5833333333333334,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.525,1.0,0.6166666666666666,0.7166666666666667,1,26 -thins,0.6666666666666667,1.0,0.6,0.7166666666666667,1,26 -package,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -k,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -jelly,0.43,1.0,0.5,0.6333333333333333,1,26 -fruit,0.6849999999999999,0.6,0.9,0.67,2,25 -apple,0.5733333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -bell,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -battery,0.4216666666666666,1.0,0.38333333333333336,0.55,1,26 -jar,0.6966666666666667,1.0,0.55,0.6833333333333333,1,26 -bound,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -lettuce,0.705,1.0,0.7,0.7833333333333333,1,26 -brush,0.605,1.0,0.5333333333333333,0.6666666666666666,1,26 -scissors,0.7566666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.735,1.0,0.6666666666666666,0.7666666666666667,1,25 -toothpaste,0.7233333333333334,1.0,0.5166666666666666,0.6666666666666667,1,26 -top,0.8,1.0,0.7166666666666666,0.8,1,26 -spiral,0.5666666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -handles,0.625,1.0,0.55,0.6833333333333333,1,25 -camera,0.7633333333333333,1.0,0.6499999999999999,0.75,1,26 -eraser,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -pitcher,0.735,1.0,0.7166666666666666,0.8,1,26 -phone,0.7216666666666666,1.0,0.6,0.7166666666666667,1,26 -stick,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666666,1,25 -cereal,0.6249999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -bulb,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,27 -hair,0.6716666666666666,1.0,0.6166666666666666,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -can,0.8966666666666665,1.0,0.8666666666666668,0.9200000000000002,2,25 -coca,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -crackers,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -plate,0.76,1.0,0.7166666666666666,0.8,1,25 -calculator,0.8666666666666666,1.0,0.7833333333333333,0.85,1,26 -tissues,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -juice,0.7133333333333333,1.0,0.65,0.75,1,26 -pink,0.7,1.0,0.6499999999999999,0.75,1,25 -lemon,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -peach,0.63,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.48500000000000004,1.0,0.4666666666666666,0.6166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6433333333333333,1.0,0.55,0.6833333333333333,1,26 -blue,0.5499999999999999,1.0,0.5999999999999999,0.7,1,25 -used,0.32166666666666666,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.735,1.0,0.6333333333333333,0.75,1,26 -ball,0.6516666666666666,1.0,0.55,0.6833333333333333,1,25 -notebook,0.825,1.0,0.7333333333333333,0.8166666666666667,1,26 -garlic,0.6666666666666666,1.0,0.6666666666666666,0.75,1,26 -cleaning,0.6416666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -pair,0.8916666666666666,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.6133333333333333,1.0,0.4333333333333333,0.6,1,25 -tomato,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -cellphone,0.5716666666666665,0.5,0.6833333333333333,0.5566666666666666,1,26 -potato,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -light,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.95,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.6368055555555556 -F1-Score: 0.683531746031746 -Precision: 0.8961419753086419 -Recall: 0.6041666666666666 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666668,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,25 -looks,0.7133333333333333,0.95,0.6666666666666666,0.7333333333333333,1,24 -keyboard,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.6933333333333332,1.0,0.6,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.5083333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -flashlight,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -cup,0.45833333333333337,0.5,0.65,0.5366666666666667,1,25 -folded,0.6716666666666666,1.0,0.65,0.75,1,26 -jam,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -black,0.865,0.7416666666666666,1.0,0.839047619047619,6,23 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6666666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -soccer,0.755,1.0,0.6666666666666666,0.7666666666666666,1,26 -hat,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -brown,0.93,1.0,0.9,0.9400000000000001,2,25 -coffee,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -handle,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333334,1,25 -food,0.6983333333333334,1.0,0.5499999999999999,0.6833333333333333,1,25 -towel,0.73,1.0,0.5999999999999999,0.7166666666666667,1,26 -chips,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.6016666666666668,1.0,0.5166666666666666,0.6666666666666667,1,26 -onion,0.8266666666666668,1.0,0.6833333333333333,0.7833333333333333,1,26 -bag,0.585,1.0,0.4833333333333332,0.6333333333333333,1,26 -sponge,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.8,1.0,0.7666666666666666,0.8333333333333333,1,25 -special,0.45499999999999996,1.0,0.5166666666666666,0.65,1,26 -colgate,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -leaf,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -tube,0.7483333333333333,1.0,0.5666666666666667,0.7,1,26 -cell,0.49833333333333335,0.5,0.5999999999999999,0.52,1,26 -mug,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -yogurt,0.6216666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -plantain,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.8016666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -wheat,0.5766666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -kleenex,0.7216666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -toothbrush,0.7350000000000001,1.0,0.6666666666666666,0.7666666666666667,1,25 -binder,0.7133333333333333,1.0,0.5666666666666667,0.7,1,26 -baseball,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -pliers,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6666666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -thins,0.5933333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -package,0.4666666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -k,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -jelly,0.71,1.0,0.55,0.6833333333333333,1,26 -fruit,0.8150000000000001,0.8,0.9,0.8133333333333332,2,25 -apple,0.7133333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -bell,0.705,1.0,0.5833333333333333,0.7,1,26 -battery,0.6916666666666667,1.0,0.65,0.75,1,26 -jar,0.6483333333333333,1.0,0.4999999999999999,0.65,1,26 -bound,0.625,1.0,0.5999999999999999,0.7166666666666667,1,26 -lettuce,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -brush,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -scissors,0.645,1.0,0.5,0.65,1,26 -lime,0.6933333333333334,1.0,0.6666666666666666,0.7666666666666667,1,25 -toothpaste,0.7666666666666666,1.0,0.75,0.8166666666666667,1,26 -top,0.7033333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -spiral,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.5633333333333332,1.0,0.5166666666666666,0.65,1,25 -camera,0.7133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.6266666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.875,1.0,0.8333333333333333,0.8833333333333332,1,26 -pitcher,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -phone,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -stick,0.6849999999999999,1.0,0.6,0.7166666666666666,1,25 -cereal,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -bulb,0.9133333333333333,1.0,0.9,0.9400000000000001,2,27 -hair,0.7649999999999999,1.0,0.6,0.7166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6716666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -can,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -coca,0.485,1.0,0.41666666666666663,0.5833333333333333,1,26 -crackers,0.58,1.0,0.4833333333333333,0.6333333333333333,1,26 -plate,0.75,1.0,0.7333333333333332,0.8,1,25 -calculator,0.6849999999999999,1.0,0.5833333333333333,0.7,1,26 -tissues,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -juice,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -pink,0.725,1.0,0.6833333333333333,0.7666666666666666,1,25 -lemon,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -peach,0.6166666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -bowl,0.76,1.0,0.7,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6166666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -blue,0.63,1.0,0.6166666666666666,0.7166666666666666,1,25 -used,0.4616666666666666,0.0,0.0,0.0,1,22 -energizer,0,0,0,0,1,26 -pear,0.8266666666666668,1.0,0.6833333333333333,0.7833333333333333,1,26 -ball,0.5166666666666666,1.0,0.5999999999999999,0.7,1,25 -notebook,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -garlic,0.5916666666666666,1.0,0.5166666666666666,0.65,1,26 -cleaning,0.5966666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -pair,0.9349999999999999,1.0,0.9,0.9400000000000001,2,27 -container,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -tomato,0.6566666666666666,1.0,0.55,0.6833333333333333,1,26 -cellphone,0.5566666666666666,0.55,0.7499999999999999,0.5800000000000001,1,26 -potato,0.8049999999999999,1.0,0.6833333333333333,0.7833333333333333,1,25 -light,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,25 -bottle,0.9600000000000002,1.0,0.9333333333333332,0.9600000000000002,2,27 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.6600771604938273 -F1-Score: 0.6877072310405644 -Precision: 0.8980709876543209 -Recall: 0.6075617283950618 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5999999999999999,1.0,0.6333333333333332,0.7333333333333333,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.7133333333333333,1.0,0.6,0.7166666666666667,1,24 -keyboard,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -glue,0.8299999999999998,1.0,0.7333333333333333,0.8166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.5066666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -flashlight,0.635,1.0,0.5499999999999999,0.6833333333333333,1,26 -cup,0.41500000000000004,0.5,0.5999999999999999,0.52,1,26 -folded,0.7033333333333334,1.0,0.6,0.7166666666666667,1,26 -jam,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -black,0.8350000000000002,0.6666666666666666,1.0,0.7847619047619048,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6066666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -soccer,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -hat,0.7133333333333334,1.0,0.7,0.7833333333333333,1,26 -brown,1.0,1.0,1.0,1.0,2,24 -coffee,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -handle,0.6900000000000001,1.0,0.55,0.6833333333333333,1,25 -food,0.6583333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -towel,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -chips,0.6,1.0,0.5333333333333333,0.6666666666666666,1,26 -stapler,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -onion,0.7066666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -bag,0.4133333333333333,1.0,0.4833333333333333,0.6166666666666667,1,26 -sponge,0.5016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.5766666666666667,1.0,0.5166666666666666,0.65,1,25 -special,0.6716666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -colgate,0.7466666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -leaf,0.4916666666666666,1.0,0.4499999999999999,0.6,1,26 -tube,0.7433333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -cell,0.6399999999999999,0.5,0.7833333333333333,0.5900000000000001,1,26 -mug,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -yogurt,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -plantain,0.785,1.0,0.6333333333333333,0.75,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.8266666666666668,1.0,0.6833333333333333,0.7833333333333333,1,26 -wheat,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -kleenex,0.5933333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -toothbrush,0.8016666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -binder,0.6966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.7716666666666666,1.0,0.6333333333333333,0.75,1,26 -pliers,0.6066666666666667,1.0,0.5,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.4133333333333333,1.0,0.4499999999999999,0.6,1,26 -thins,0.6,1.0,0.5333333333333333,0.6666666666666667,1,26 -package,0.7849999999999999,1.0,0.5833333333333333,0.7166666666666667,1,26 -k,0.725,1.0,0.6,0.7166666666666666,1,26 -jelly,0.6566666666666666,1.0,0.55,0.6833333333333333,1,26 -fruit,0.7466666666666667,0.6,0.9333333333333332,0.6766666666666666,2,25 -apple,0.665,1.0,0.4833333333333333,0.6333333333333333,1,25 -bell,0.8133333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -battery,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -jar,0.51,1.0,0.5166666666666666,0.65,1,26 -bound,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -brush,0.8,1.0,0.7166666666666666,0.8,1,26 -scissors,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -lime,0.7783333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -toothpaste,0.7316666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -top,0.6766666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -spiral,0.7266666666666667,1.0,0.6499999999999999,0.75,1,26 -handles,0.85,1.0,0.7666666666666666,0.8333333333333333,1,25 -camera,0.8333333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -eraser,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6666666666666666,1.0,0.5666666666666667,0.7,1,26 -pitcher,0.7183333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -phone,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -stick,0.6333333333333333,1.0,0.5999999999999999,0.7,1,25 -cereal,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -bulb,0.915,1.0,0.8666666666666666,0.9199999999999999,2,26 -hair,0.43,1.0,0.4,0.5666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8416666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -can,0.8383333333333333,1.0,0.8,0.8800000000000001,2,25 -coca,0.655,1.0,0.5833333333333333,0.7,1,26 -crackers,0.595,1.0,0.5499999999999999,0.6833333333333333,1,26 -plate,0.585,1.0,0.4666666666666666,0.6166666666666666,1,25 -calculator,0.625,0.95,0.6833333333333333,0.7333333333333333,1,26 -tissues,0.675,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.4999999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -pink,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,25 -lemon,0.6466666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -peach,0.7433333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.6833333333333333,1.0,0.7333333333333333,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -blue,0.6933333333333332,1.0,0.5499999999999999,0.6833333333333333,1,25 -used,0.49833333333333335,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6316666666666666,1.0,0.55,0.6833333333333333,1,26 -ball,0.8083333333333333,1.0,0.8166666666666667,0.8666666666666666,1,25 -notebook,0.7249999999999999,1.0,0.7,0.7833333333333333,1,26 -garlic,0.6583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -cleaning,0.6916666666666667,1.0,0.65,0.75,1,26 -pair,0.8800000000000001,1.0,0.8666666666666666,0.9199999999999999,2,26 -container,0.79,1.0,0.6333333333333333,0.75,1,25 -tomato,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -cellphone,0.44000000000000006,0.6,0.6333333333333333,0.5466666666666666,1,26 -potato,0.8550000000000001,1.0,0.7333333333333333,0.8166666666666668,1,25 -light,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.96,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.66320987654321 -F1-Score: 0.6890873015873015 -Precision: 0.8964506172839506 -Recall: 0.6108024691358025 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,24 -keyboard,0.5833333333333334,1.0,0.6333333333333333,0.7333333333333334,1,26 -glue,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333334,1,26 -flashlight,0.7633333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.53,0.5,0.7666666666666666,0.5800000000000001,1,26 -folded,0.5249999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -black,0.9133333333333334,0.7833333333333333,1.0,0.86,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6166666666666667,1.0,0.55,0.6833333333333333,1,26 -soccer,0.3383333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -hat,0.6016666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -brown,0.8799999999999999,1.0,0.8666666666666666,0.9200000000000002,2,25 -coffee,0.45166666666666666,1.0,0.4666666666666666,0.6166666666666666,1,25 -handle,0.8683333333333334,1.0,0.75,0.8333333333333333,1,25 -food,0.4966666666666666,1.0,0.4999999999999999,0.6333333333333333,1,24 -towel,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -chips,0.7633333333333333,1.0,0.6499999999999999,0.75,1,26 -stapler,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -onion,0.4883333333333333,0.9,0.55,0.6,1,26 -bag,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -sponge,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.4833333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -special,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -colgate,0.735,1.0,0.6499999999999999,0.75,1,26 -leaf,0.58,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -cell,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -mug,0.585,1.0,0.5833333333333333,0.7,1,25 -yogurt,0.7166666666666666,1.0,0.7333333333333333,0.8,1,26 -plantain,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.9,1.0,0.8833333333333332,0.9166666666666666,1,26 -wheat,0.7183333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.705,1.0,0.65,0.75,1,26 -baseball,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -pliers,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6083333333333332,1.0,0.5833333333333333,0.7,1,26 -thins,0.6033333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -package,0.7416666666666666,1.0,0.65,0.75,1,26 -k,0.7,1.0,0.65,0.75,1,26 -jelly,0.7916666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -fruit,0.6866666666666666,0.65,0.8333333333333333,0.7066666666666668,2,26 -apple,0.6166666666666667,0.95,0.5666666666666667,0.65,1,25 -bell,0.775,1.0,0.7666666666666666,0.8333333333333333,1,26 -battery,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -jar,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.6933333333333334,1.0,0.6,0.7166666666666667,1,26 -lettuce,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666668,1,26 -brush,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -lime,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666667,1,25 -toothpaste,0.9800000000000001,1.0,0.95,0.9666666666666666,1,26 -top,0.6433333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -spiral,0.53,1.0,0.4833333333333333,0.6333333333333334,1,26 -handles,0.7150000000000001,1.0,0.5499999999999999,0.6833333333333333,1,25 -camera,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -eraser,0.6216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.7116666666666667,1.0,0.5666666666666667,0.7,1,26 -pitcher,0.73,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.5549999999999999,1.0,0.55,0.6833333333333333,1,26 -stick,0.6633333333333333,1.0,0.5833333333333333,0.7,1,25 -cereal,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -hair,0.7983333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -can,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -coca,0.6966666666666667,1.0,0.55,0.6833333333333333,1,26 -crackers,0.78,1.0,0.75,0.8166666666666667,1,26 -plate,0.6133333333333333,1.0,0.5833333333333333,0.7,1,25 -calculator,0.4616666666666666,0.5,0.5833333333333333,0.51,1,26 -tissues,0.805,1.0,0.7166666666666666,0.8,1,26 -juice,0.5766666666666667,1.0,0.5833333333333333,0.7,1,26 -pink,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -lemon,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -peach,0.7516666666666667,1.0,0.6499999999999999,0.75,1,26 -bowl,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6833333333333333,1.0,0.7333333333333333,0.8,1,26 -blue,0.5216666666666667,1.0,0.4666666666666666,0.6166666666666666,1,25 -used,0.5399999999999999,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.5833333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -ball,0.8083333333333332,1.0,0.7499999999999999,0.8166666666666667,1,25 -notebook,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -garlic,0.475,1.0,0.4333333333333333,0.5833333333333333,1,26 -cleaning,0.6083333333333333,1.0,0.5166666666666666,0.65,1,26 -pair,0.9333333333333332,1.0,0.9333333333333332,0.96,2,27 -container,0.575,1.0,0.4999999999999999,0.6333333333333333,1,26 -tomato,0.6333333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -cellphone,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -potato,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666666,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.6538117283950616 -F1-Score: 0.689753086419753 -Precision: 0.9007716049382716 -Recall: 0.6104938271604938 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.625,1.0,0.6333333333333333,0.7333333333333333,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.7883333333333333,0.95,0.7666666666666666,0.8,1,24 -keyboard,0.6233333333333333,1.0,0.5833333333333333,0.7,1,26 -glue,0.6683333333333333,1.0,0.5666666666666667,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.6583333333333333,1.0,0.5666666666666667,0.7,1,26 -flashlight,0.61,1.0,0.5999999999999999,0.7166666666666666,1,26 -cup,0.135,0.5,0.5166666666666666,0.4833333333333334,1,26 -folded,0.6583333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -jam,0.55,1.0,0.5333333333333333,0.6666666666666667,1,26 -black,0.9666666666666668,0.9,1.0,0.9333333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7166666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -soccer,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -hat,0.5599999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -brown,0.9016666666666667,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.575,1.0,0.5499999999999999,0.6833333333333333,1,25 -handle,0.5933333333333334,1.0,0.4999999999999999,0.65,1,25 -food,0.7416666666666667,1.0,0.7,0.7833333333333333,1,25 -towel,0.8483333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -chips,0.5216666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -stapler,0.61,1.0,0.5999999999999999,0.7166666666666666,1,26 -onion,0.6,0.9,0.6333333333333333,0.6666666666666667,1,26 -bag,0.7899999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.48,1.0,0.4499999999999999,0.6,1,26 -zero,0,0,0,0,1,26 -computer,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -special,0.63,1.0,0.6499999999999999,0.75,1,26 -colgate,0.6233333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -leaf,0.7383333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -tube,0.8800000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -cell,0.7,1.0,0.6499999999999999,0.75,1,26 -mug,0.45,1.0,0.4999999999999999,0.6333333333333333,1,25 -yogurt,0.5999999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -plantain,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -red,1.0,1.0,1.0,1.0,3,28 -pepper,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -wheat,0.76,1.0,0.65,0.75,1,26 -kleenex,0.6416666666666666,1.0,0.5666666666666667,0.7,1,26 -toothbrush,0.4883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -binder,0.5166666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -baseball,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -pliers,0.7333333333333332,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.4766666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -thins,0.625,1.0,0.6333333333333332,0.7333333333333333,1,26 -package,0.7383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -k,0.7166666666666666,1.0,0.6499999999999999,0.75,1,26 -jelly,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -fruit,0.7,0.6333333333333333,0.8666666666666668,0.7033333333333334,2,25 -apple,0.675,1.0,0.6,0.7166666666666667,1,26 -bell,0.5433333333333333,1.0,0.5,0.65,1,26 -battery,0.61,1.0,0.5166666666666666,0.65,1,26 -jar,0.7466666666666667,1.0,0.65,0.75,1,26 -bound,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -lettuce,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -brush,0.655,1.0,0.5333333333333333,0.6666666666666667,1,26 -scissors,0.7733333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.755,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -top,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -spiral,0.6,1.0,0.5166666666666666,0.65,1,26 -handles,0.7216666666666666,1.0,0.5999999999999999,0.7166666666666667,1,25 -camera,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -eraser,0.8049999999999999,1.0,0.7166666666666666,0.8,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.53,1.0,0.4999999999999999,0.6333333333333333,1,26 -pitcher,0.7633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -phone,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -stick,0.5349999999999999,1.0,0.45,0.6,1,25 -cereal,0.75,1.0,0.5833333333333333,0.7166666666666667,1,26 -bulb,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -hair,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7,1.0,0.6166666666666666,0.7333333333333334,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coca,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -crackers,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -plate,0.7,1.0,0.7,0.7833333333333333,1,25 -calculator,0.5966666666666666,1.0,0.5166666666666666,0.65,1,26 -tissues,0.4916666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -juice,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.6166666666666666,1.0,0.5833333333333333,0.7,1,25 -lemon,0.5666666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -peach,0.33166666666666667,0.5,0.6333333333333333,0.5266666666666667,1,26 -bowl,0.6016666666666667,1.0,0.5166666666666666,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -blue,0.5916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,25 -used,0.4216666666666667,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.5633333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -ball,0.4583333333333333,1.0,0.45,0.6,1,25 -notebook,0.6799999999999999,1.0,0.5166666666666666,0.6666666666666667,1,26 -garlic,0.7133333333333333,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.4466666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -pair,0.95,1.0,0.9333333333333332,0.96,2,27 -container,0.6716666666666666,1.0,0.5833333333333333,0.7,1,25 -tomato,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -cellphone,0.525,1.0,0.5166666666666666,0.65,1,26 -potato,0.7266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -light,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8266666666666668,1.0,0.7666666666666667,0.86,2,26 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.6324382716049384 -F1-Score: 0.6776234567901234 -Precision: 0.9007716049382716 -Recall: 0.5919753086419752 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5916666666666666,1.0,0.5166666666666666,0.65,1,25 -yellow,0.8766666666666666,0.7833333333333333,1.0,0.8647619047619047,6,24 -looks,0.5466666666666666,0.75,0.5999999999999999,0.5833333333333333,1,24 -keyboard,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -glue,0.6266666666666667,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.6216666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -flashlight,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -cup,0.6333333333333333,0.5,0.75,0.5833333333333334,1,26 -folded,0.77,1.0,0.5833333333333333,0.7166666666666667,1,26 -jam,0.65,1.0,0.6166666666666666,0.7166666666666666,1,26 -black,0.9066666666666668,0.8166666666666667,1.0,0.8847619047619049,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7216666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -soccer,0.6333333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -hat,0.41666666666666663,1.0,0.4833333333333333,0.6166666666666666,1,26 -brown,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -handle,0.7083333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -food,0.605,1.0,0.4666666666666666,0.6166666666666666,1,25 -towel,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666666,1,26 -chips,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -stapler,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.6916666666666667,1.0,0.6,0.7166666666666667,1,26 -bag,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -sponge,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6833333333333333,1.0,0.65,0.75,1,25 -special,0.7383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -leaf,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -tube,0.5683333333333332,1.0,0.5166666666666666,0.65,1,26 -cell,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -mug,0.7733333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -yogurt,0.39666666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -plantain,0.6733333333333333,0.95,0.5666666666666667,0.6666666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -wheat,0.6966666666666667,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -toothbrush,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -binder,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -baseball,0.6333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -pliers,0.7933333333333333,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333334,1,26 -thins,0.665,1.0,0.5499999999999999,0.6833333333333333,1,26 -package,0.7166666666666666,1.0,0.6499999999999999,0.75,1,26 -k,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.5133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -fruit,0.5383333333333333,0.4833333333333333,0.8999999999999998,0.6038095238095238,2,26 -apple,0.6599999999999999,0.85,0.55,0.6,1,25 -bell,0.7166666666666667,1.0,0.6333333333333333,0.75,1,26 -battery,0.4716666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -jar,0.635,1.0,0.5499999999999999,0.6833333333333333,1,26 -bound,0.635,1.0,0.6,0.7166666666666667,1,26 -lettuce,0.7633333333333333,1.0,0.75,0.8166666666666667,1,26 -brush,0.7633333333333334,1.0,0.7166666666666666,0.8,1,26 -scissors,0.425,1.0,0.4999999999999999,0.6333333333333333,1,26 -lime,0.775,1.0,0.6666666666666666,0.7666666666666666,1,25 -toothpaste,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -top,0.5416666666666666,1.0,0.5833333333333333,0.7,1,26 -spiral,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -handles,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -camera,0.605,1.0,0.5,0.6333333333333333,1,26 -eraser,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.53,0.95,0.5333333333333333,0.6333333333333333,1,26 -pitcher,0.6849999999999999,1.0,0.6,0.7166666666666666,1,26 -phone,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -stick,0.6633333333333333,1.0,0.6,0.7166666666666667,1,25 -cereal,0.5466666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -bulb,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,27 -hair,0.5133333333333333,1.0,0.5166666666666666,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6216666666666667,1.0,0.6333333333333332,0.7333333333333333,1,26 -can,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -coca,0.425,1.0,0.5499999999999999,0.6666666666666666,1,26 -crackers,0.6649999999999999,1.0,0.5666666666666667,0.7,1,26 -plate,0.7483333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -calculator,0.605,1.0,0.6333333333333333,0.7333333333333333,1,26 -tissues,0.4416666666666666,1.0,0.55,0.6666666666666667,1,26 -juice,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -pink,0.7083333333333333,1.0,0.7499999999999999,0.8166666666666667,1,25 -lemon,0.7166666666666666,1.0,0.65,0.75,1,26 -peach,0.4666666666666667,1.0,0.4333333333333333,0.5833333333333333,1,26 -bowl,0.61,1.0,0.55,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5983333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -blue,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -used,0.4083333333333334,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.5499999999999999,1.0,0.5999999999999999,0.7,1,26 -ball,0.5549999999999999,1.0,0.4833333333333333,0.6333333333333334,1,25 -notebook,0.635,1.0,0.5499999999999999,0.6833333333333333,1,26 -garlic,0.6333333333333334,1.0,0.7333333333333333,0.8,1,26 -cleaning,0.71,1.0,0.65,0.75,1,26 -pair,0.96,1.0,0.9333333333333332,0.96,2,26 -container,0.7466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,25 -tomato,0.58,1.0,0.5833333333333333,0.7,1,26 -cellphone,0.7166666666666667,1.0,0.75,0.8166666666666667,1,26 -potato,0.6033333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -light,0.9099999999999999,1.0,0.8666666666666668,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.6310648148148148 -F1-Score: 0.6786728395061729 -Precision: 0.8989197530864197 -Recall: 0.5976851851851852 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6883333333333332,1.0,0.65,0.75,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,25 -looks,0.6266666666666667,0.9,0.5499999999999999,0.6333333333333333,1,24 -keyboard,0.6883333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.4833333333333333,1.0,0.45,0.6,1,26 -milk,0,0,0,0,1,26 -cola,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -flashlight,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -cup,0.645,0.5,0.7666666666666666,0.58,1,26 -folded,0.7933333333333332,1.0,0.7333333333333333,0.8166666666666667,1,26 -jam,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -black,0.93,0.8166666666666667,1.0,0.8800000000000001,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -soccer,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -hat,0.4916666666666667,1.0,0.4333333333333334,0.5833333333333333,1,26 -brown,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,25 -coffee,0.6833333333333333,1.0,0.6666666666666666,0.75,1,26 -handle,0.5916666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -food,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -towel,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.6466666666666667,1.0,0.55,0.6833333333333333,1,26 -stapler,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.5716666666666665,1.0,0.5,0.6333333333333333,1,26 -sponge,0.65,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.6466666666666666,1.0,0.6499999999999999,0.75,1,25 -special,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.475,1.0,0.4833333333333333,0.6166666666666667,1,26 -leaf,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -tube,0.6166666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.7633333333333334,1.0,0.55,0.7,1,26 -mug,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -yogurt,0.6,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.7266666666666666,1.0,0.5666666666666667,0.7,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -wheat,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -toothbrush,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -binder,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -baseball,0.6799999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -pliers,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.73,1.0,0.7499999999999999,0.8166666666666667,1,26 -thins,0.7633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -package,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -k,0.4383333333333333,1.0,0.5,0.6333333333333333,1,26 -jelly,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -fruit,0.7016666666666667,0.6,0.9,0.7033333333333334,2,26 -apple,0.6183333333333334,0.95,0.4666666666666666,0.5833333333333333,1,25 -bell,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -battery,0.7383333333333333,1.0,0.6333333333333333,0.75,1,26 -jar,0.7299999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -bound,0.7083333333333333,1.0,0.75,0.8166666666666667,1,26 -lettuce,0.705,1.0,0.5999999999999999,0.7166666666666667,1,26 -brush,0.5133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -scissors,0.6000000000000001,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.7183333333333333,1.0,0.65,0.75,1,25 -toothpaste,0.7666666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -top,0.4666666666666666,1.0,0.55,0.6666666666666666,1,26 -spiral,0.6883333333333332,1.0,0.6333333333333332,0.7333333333333333,1,26 -handles,0.655,1.0,0.5499999999999999,0.6833333333333333,1,25 -camera,0.5966666666666666,1.0,0.5499999999999999,0.6666666666666667,1,26 -eraser,0.6733333333333333,1.0,0.55,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.4333333333333333,1.0,0.4833333333333333,0.6166666666666667,1,26 -pitcher,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -phone,0.775,1.0,0.7,0.7833333333333333,1,26 -stick,0.6699999999999999,1.0,0.5,0.65,1,25 -cereal,0.7550000000000001,1.0,0.6333333333333333,0.75,1,26 -bulb,0.95,1.0,0.9333333333333332,0.96,2,27 -hair,0.7166666666666666,1.0,0.6499999999999999,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6833333333333333,1.0,0.65,0.75,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.96,2,24 -coca,0.655,1.0,0.55,0.6833333333333333,1,26 -crackers,0.7333333333333333,1.0,0.7999999999999999,0.85,1,26 -plate,0.715,1.0,0.6166666666666666,0.7333333333333333,1,25 -calculator,0.5083333333333333,1.0,0.45,0.6,1,26 -tissues,0.7216666666666667,1.0,0.7,0.7833333333333333,1,26 -juice,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -pink,0.6816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,25 -lemon,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.4833333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -bowl,0.7316666666666667,1.0,0.55,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -blue,0.8333333333333333,1.0,0.7999999999999999,0.85,1,25 -used,0.4133333333333333,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.7,1.0,0.6499999999999999,0.75,1,26 -ball,0.7249999999999999,1.0,0.6499999999999999,0.75,1,25 -notebook,0.605,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -cleaning,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -pair,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,27 -container,0.4583333333333333,1.0,0.4499999999999999,0.6,1,25 -tomato,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -cellphone,0.7633333333333333,1.0,0.6499999999999999,0.75,1,26 -potato,0.6733333333333333,1.0,0.6499999999999999,0.75,1,25 -light,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,27 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.6440277777777778 -F1-Score: 0.6829629629629631 -Precision: 0.904783950617284 -Recall: 0.5990740740740741 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5883333333333333,1.0,0.5999999999999999,0.7166666666666667,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.6183333333333334,0.95,0.6,0.6833333333333333,1,24 -keyboard,0.6466666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -cup,0.615,0.5,0.8333333333333333,0.6066666666666667,1,26 -folded,0.6883333333333332,1.0,0.5166666666666666,0.6666666666666667,1,26 -jam,0.5983333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -black,0.9333333333333333,0.8,1.0,0.8666666666666666,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.48,1.0,0.5166666666666666,0.65,1,26 -soccer,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -hat,0.5933333333333334,1.0,0.5333333333333333,0.6666666666666666,1,26 -brown,0.8049999999999999,1.0,0.7666666666666667,0.86,2,24 -coffee,0.45499999999999996,1.0,0.5,0.6333333333333333,1,25 -handle,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -food,0.7733333333333333,1.0,0.65,0.75,1,25 -towel,0.805,1.0,0.7166666666666666,0.8,1,26 -chips,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -stapler,0.4966666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -onion,0.6233333333333333,0.85,0.5833333333333333,0.6,1,26 -bag,0.6849999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -sponge,0.7249999999999999,1.0,0.6499999999999999,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.6799999999999999,1.0,0.5833333333333333,0.7,1,25 -special,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -colgate,0.7100000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -leaf,0.6566666666666666,1.0,0.5666666666666667,0.7,1,26 -tube,0.605,1.0,0.5499999999999999,0.6833333333333333,1,26 -cell,0.37333333333333335,0.6,0.5666666666666667,0.52,1,26 -mug,0.7466666666666667,1.0,0.6833333333333333,0.7666666666666666,1,25 -yogurt,0.7433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.585,1.0,0.5333333333333333,0.6666666666666666,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.7983333333333332,1.0,0.6333333333333333,0.75,1,26 -wheat,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -kleenex,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -toothbrush,0.725,1.0,0.6833333333333332,0.7666666666666666,1,26 -binder,0.6166666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -baseball,0.49833333333333335,1.0,0.41666666666666663,0.5833333333333333,1,26 -pliers,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.5083333333333333,1.0,0.45,0.6,1,26 -thins,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -package,0.6183333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -k,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.5716666666666665,1.0,0.4999999999999999,0.6333333333333333,1,26 -fruit,0.7733333333333333,0.5666666666666667,0.9333333333333332,0.68,2,26 -apple,0.5266666666666666,0.95,0.4666666666666666,0.5833333333333333,1,26 -bell,0.6916666666666667,1.0,0.5833333333333333,0.7,1,26 -battery,0.4716666666666667,1.0,0.4,0.5666666666666667,1,26 -jar,0.7999999999999999,1.0,0.8166666666666667,0.8666666666666666,1,26 -bound,0.6833333333333333,1.0,0.65,0.75,1,26 -lettuce,0.5716666666666665,1.0,0.5833333333333333,0.7,1,26 -brush,0.575,1.0,0.5833333333333333,0.7,1,26 -scissors,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -lime,0.6933333333333334,1.0,0.6,0.7166666666666666,1,25 -toothpaste,0.775,1.0,0.7166666666666666,0.8,1,26 -top,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -spiral,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -handles,0.7,1.0,0.6166666666666666,0.7333333333333333,1,25 -camera,0.705,1.0,0.5666666666666667,0.7,1,26 -eraser,0.705,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.8066666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -pitcher,0.74,1.0,0.6499999999999999,0.75,1,26 -phone,0.5516666666666666,1.0,0.4499999999999999,0.6,1,26 -stick,0.85,1.0,0.8166666666666667,0.8666666666666668,1,25 -cereal,0.59,1.0,0.5333333333333333,0.6666666666666667,1,26 -bulb,0.8166666666666667,1.0,0.8,0.8800000000000001,2,27 -hair,0.7666666666666667,1.0,0.7,0.7833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -can,0.975,1.0,0.9666666666666666,0.9800000000000001,2,24 -coca,0.73,1.0,0.5833333333333333,0.7,1,26 -crackers,0.8683333333333334,1.0,0.7833333333333333,0.85,1,26 -plate,0.7,1.0,0.65,0.75,1,25 -calculator,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -tissues,0.5083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -juice,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -pink,0.7633333333333333,1.0,0.7499999999999999,0.8166666666666667,1,25 -lemon,0.5966666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.5683333333333332,1.0,0.4499999999999999,0.6,1,26 -bowl,0.5499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -blue,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666667,1,25 -used,0.31833333333333336,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.8100000000000002,1.0,0.65,0.7666666666666667,1,25 -notebook,0.6466666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -garlic,0.505,1.0,0.4666666666666666,0.6166666666666667,1,26 -cleaning,0.805,1.0,0.7166666666666666,0.8,1,26 -pair,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,27 -container,0.7016666666666665,1.0,0.5833333333333333,0.7,1,26 -tomato,0.8300000000000001,1.0,0.6833333333333333,0.7833333333333334,1,26 -cellphone,0.38166666666666665,0.55,0.5333333333333333,0.5033333333333333,1,26 -potato,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -light,0.8550000000000001,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.9600000000000002,1.0,0.9333333333333332,0.9600000000000002,2,26 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.6454166666666666 -F1-Score: 0.6792901234567901 -Precision: 0.8959876543209876 -Recall: 0.5986111111111112 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6966666666666667,1.0,0.65,0.75,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.71,1.0,0.55,0.6833333333333333,1,24 -keyboard,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -glue,0.5583333333333333,1.0,0.5,0.6333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.4883333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -flashlight,0.6916666666666667,1.0,0.65,0.75,1,26 -cup,0.12666666666666665,0.5,0.4833333333333333,0.47666666666666674,1,26 -folded,0.8216666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -jam,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -black,0.8600000000000001,0.6916666666666667,1.0,0.7990476190476191,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -soccer,0.6666666666666666,1.0,0.6833333333333332,0.7666666666666666,1,26 -hat,0.7383333333333333,1.0,0.5666666666666667,0.7,1,26 -brown,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,24 -coffee,0.9166666666666666,1.0,0.8833333333333332,0.9166666666666666,1,26 -handle,0.4083333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -food,0.755,1.0,0.6166666666666666,0.7333333333333333,1,26 -towel,0.7233333333333334,1.0,0.5666666666666667,0.7,1,26 -chips,0.7083333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.6916666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -onion,0.7466666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -bag,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -sponge,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.725,1.0,0.6333333333333333,0.75,1,25 -special,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -colgate,0.705,1.0,0.6666666666666666,0.7666666666666667,1,26 -leaf,0.4499999999999999,1.0,0.4666666666666666,0.6,1,26 -tube,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -cell,0.5083333333333334,0.55,0.5999999999999999,0.53,1,26 -mug,0.6799999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -yogurt,0.6466666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -plantain,0.6766666666666665,1.0,0.5499999999999999,0.6833333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.8116666666666668,1.0,0.6333333333333333,0.75,1,26 -kleenex,0.5466666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -toothbrush,0.7166666666666666,1.0,0.7166666666666666,0.8,1,26 -binder,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.61,1.0,0.55,0.6833333333333333,1,26 -pliers,0.9016666666666666,1.0,0.8,0.8666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7166666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -thins,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -package,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.5966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -jelly,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -fruit,0.74,0.7166666666666667,0.8333333333333334,0.7433333333333334,2,25 -apple,0.6733333333333333,0.7,0.7166666666666666,0.6333333333333333,1,25 -bell,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -battery,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -jar,0.7583333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -bound,0.725,1.0,0.65,0.75,1,26 -lettuce,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.73,1.0,0.5666666666666667,0.7,1,26 -scissors,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -lime,0.8550000000000001,1.0,0.7833333333333333,0.85,1,25 -toothpaste,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -top,0.41666666666666663,1.0,0.4999999999999999,0.6333333333333333,1,26 -spiral,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -handles,0.8466666666666667,1.0,0.7833333333333333,0.85,1,25 -camera,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -eraser,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.51,1.0,0.4166666666666667,0.5833333333333333,1,26 -pitcher,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -phone,0.6883333333333332,1.0,0.6,0.7166666666666666,1,26 -stick,0.6133333333333334,1.0,0.5333333333333333,0.6666666666666667,1,25 -cereal,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -bulb,0.9166666666666666,1.0,0.9,0.9400000000000001,2,27 -hair,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6966666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -can,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.885,1.0,0.7833333333333333,0.85,1,26 -crackers,0.7466666666666666,1.0,0.6499999999999999,0.75,1,26 -plate,0.4833333333333334,1.0,0.5333333333333333,0.65,1,24 -calculator,0.7233333333333334,0.95,0.6166666666666666,0.7,1,26 -tissues,0.7666666666666666,1.0,0.8,0.85,1,26 -juice,0.6216666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -pink,0.5499999999999999,1.0,0.6166666666666666,0.7166666666666666,1,25 -lemon,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -peach,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -bowl,0.67,1.0,0.5666666666666667,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6833333333333333,1.0,0.6666666666666666,0.75,1,26 -blue,0.6566666666666666,1.0,0.55,0.6833333333333333,1,25 -used,0.3583333333333333,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.5633333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -ball,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.6033333333333333,1.0,0.5,0.65,1,26 -garlic,0.4716666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -cleaning,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -pair,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -container,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -tomato,0.6883333333333332,1.0,0.7,0.7833333333333334,1,26 -cellphone,0.29,0.65,0.4999999999999999,0.5033333333333333,1,26 -potato,0.71,1.0,0.6,0.7166666666666666,1,25 -light,0.9333333333333332,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9333333333333332,1.0,0.9333333333333332,0.9600000000000002,2,26 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.6477623456790123 -F1-Score: 0.6860405643738976 -Precision: 0.8954475308641975 -Recall: 0.6070987654320987 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6933333333333334,1.0,0.6166666666666666,0.7333333333333333,1,24 -yellow,0.93,0.8333333333333333,1.0,0.8933333333333332,6,24 -looks,0.625,1.0,0.5666666666666667,0.6833333333333333,1,24 -keyboard,0.575,1.0,0.4499999999999999,0.6,1,26 -glue,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.5466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -flashlight,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.2316666666666667,0.5,0.4999999999999999,0.47333333333333333,1,26 -folded,0.5716666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -jam,0.655,1.0,0.5499999999999999,0.6833333333333333,1,26 -black,0.8666666666666668,0.7166666666666666,1.0,0.82,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -soccer,0.6966666666666665,1.0,0.7,0.7833333333333333,1,26 -hat,0.4766666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -brown,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,25 -coffee,0.5683333333333334,1.0,0.5166666666666666,0.65,1,25 -handle,0.6983333333333333,1.0,0.55,0.6833333333333333,1,25 -food,0.755,1.0,0.7,0.7833333333333333,1,25 -towel,0.6966666666666667,1.0,0.65,0.75,1,26 -chips,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -stapler,0.5433333333333333,1.0,0.5166666666666666,0.65,1,26 -onion,0.7266666666666667,0.75,0.7833333333333333,0.6833333333333333,1,26 -bag,0.6399999999999999,1.0,0.5833333333333333,0.7,1,26 -sponge,0.8133333333333332,1.0,0.7333333333333333,0.8166666666666668,1,26 -zero,0,0,0,0,1,26 -computer,0.6383333333333333,1.0,0.55,0.6833333333333333,1,26 -special,0.725,1.0,0.6499999999999999,0.75,1,26 -colgate,0.7566666666666666,1.0,0.6333333333333333,0.75,1,26 -leaf,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -mug,0.6799999999999999,1.0,0.65,0.75,1,25 -yogurt,0.6933333333333332,1.0,0.7,0.7833333333333333,1,26 -plantain,0.7316666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.6049999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -wheat,0.6133333333333334,1.0,0.6,0.7166666666666667,1,26 -kleenex,0.5516666666666665,1.0,0.45,0.6,1,26 -toothbrush,0.7150000000000001,1.0,0.6666666666666666,0.7666666666666666,1,26 -binder,0.5966666666666666,1.0,0.6,0.7166666666666667,1,26 -baseball,0.7633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -pliers,0.525,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.73,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.7216666666666666,1.0,0.7,0.7833333333333333,1,26 -package,0.5433333333333332,1.0,0.4999999999999999,0.65,1,26 -k,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.8,1.0,0.7166666666666666,0.8,1,26 -fruit,0.6783333333333333,0.5166666666666666,0.9,0.6300000000000001,2,26 -apple,0.6849999999999999,0.9,0.5666666666666667,0.65,1,25 -bell,0.6216666666666666,1.0,0.6499999999999999,0.75,1,26 -battery,0.5166666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -jar,0.705,1.0,0.6,0.7166666666666667,1,26 -bound,0.5083333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -lettuce,0.6499999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -brush,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -scissors,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,25 -toothpaste,0.6433333333333333,1.0,0.4999999999999999,0.65,1,26 -top,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -spiral,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -handles,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -eraser,0.6983333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.65,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.7133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.8683333333333334,1.0,0.75,0.8333333333333333,1,26 -stick,0.6466666666666666,1.0,0.55,0.6833333333333333,1,25 -cereal,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -bulb,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,27 -hair,0.4083333333333334,1.0,0.5,0.6333333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8266666666666668,1.0,0.7833333333333333,0.85,1,26 -can,0.9349999999999999,1.0,0.9,0.9400000000000001,2,25 -coca,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -crackers,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -plate,0.6849999999999999,1.0,0.5833333333333333,0.7,1,25 -calculator,0.8216666666666667,0.95,0.7333333333333333,0.7833333333333333,1,26 -tissues,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -juice,0.725,1.0,0.65,0.75,1,26 -pink,0.31333333333333335,1.0,0.38333333333333336,0.55,1,25 -lemon,0.5133333333333333,1.0,0.41666666666666663,0.5833333333333333,1,26 -peach,0.5433333333333333,1.0,0.4499999999999999,0.6166666666666666,1,26 -bowl,0.75,1.0,0.7,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6883333333333332,1.0,0.65,0.75,1,26 -blue,0.605,1.0,0.5333333333333333,0.6666666666666666,1,25 -used,0.45666666666666667,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -ball,0.5383333333333333,1.0,0.4666666666666666,0.6166666666666667,1,25 -notebook,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -garlic,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.7383333333333333,1.0,0.6333333333333333,0.75,1,26 -pair,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -container,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -tomato,0.725,1.0,0.6833333333333333,0.7666666666666666,1,26 -cellphone,0.5083333333333333,1.0,0.5,0.6333333333333333,1,26 -potato,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -light,0.9099999999999999,1.0,0.8666666666666666,0.9199999999999999,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.95,1.0,0.9333333333333332,0.9600000000000002,2,27 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.635324074074074 -F1-Score: 0.6771296296296296 -Precision: 0.8996913580246912 -Recall: 0.5942901234567901 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6833333333333333,1.0,0.6499999999999999,0.75,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.6399999999999999,1.0,0.5833333333333333,0.7,1,24 -keyboard,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -glue,0.5933333333333333,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -flashlight,0.725,1.0,0.75,0.8166666666666667,1,26 -cup,0.36500000000000005,0.5,0.5833333333333333,0.51,1,25 -folded,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -jam,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -black,0.8850000000000001,0.7333333333333333,1.0,0.8266666666666668,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.755,1.0,0.6166666666666666,0.7333333333333333,1,26 -soccer,0.76,1.0,0.5833333333333333,0.7166666666666667,1,26 -hat,0.6466666666666667,1.0,0.5,0.65,1,26 -brown,0.9,1.0,0.9,0.9400000000000001,2,24 -coffee,0.755,1.0,0.6666666666666666,0.7666666666666667,1,24 -handle,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -food,0.5,1.0,0.5499999999999999,0.6666666666666666,1,25 -towel,0.6833333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -chips,0.7150000000000001,1.0,0.5666666666666667,0.7,1,26 -stapler,0.5766666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -onion,0.5599999999999999,1.0,0.5833333333333333,0.7,1,26 -bag,0.6816666666666666,1.0,0.45,0.6166666666666667,1,26 -sponge,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -special,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -colgate,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -leaf,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -tube,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666666,1,26 -cell,0.5416666666666667,0.55,0.6666666666666666,0.5566666666666666,1,26 -mug,0.63,1.0,0.5333333333333333,0.6666666666666667,1,25 -yogurt,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -plantain,0.635,1.0,0.5833333333333333,0.7,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.5166666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -wheat,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.4966666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -toothbrush,0.4916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.6766666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -baseball,0.675,1.0,0.7,0.7833333333333333,1,26 -pliers,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -thins,0.71,1.0,0.65,0.75,1,26 -package,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -k,0.525,1.0,0.4666666666666666,0.6166666666666666,1,26 -jelly,0.5266666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -fruit,0.78,0.6333333333333333,0.9333333333333332,0.7200000000000001,2,25 -apple,0.6266666666666666,0.9,0.5666666666666667,0.6166666666666667,1,25 -bell,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -battery,0.78,1.0,0.7,0.7833333333333333,1,26 -jar,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -bound,0.5416666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -lettuce,0.6566666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -brush,0.6966666666666665,1.0,0.5833333333333333,0.7,1,26 -scissors,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -lime,0.6216666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -toothpaste,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -top,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -spiral,0.7,1.0,0.6,0.7166666666666667,1,26 -handles,0.7183333333333333,1.0,0.5666666666666667,0.7,1,25 -camera,0.7416666666666667,1.0,0.7,0.7833333333333333,1,26 -eraser,0.6016666666666667,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,19 -banana,0.8166666666666667,1.0,0.7499999999999999,0.8166666666666667,1,26 -pitcher,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -phone,0.5733333333333334,1.0,0.4666666666666666,0.6166666666666666,1,26 -stick,0.6666666666666666,1.0,0.6166666666666666,0.7166666666666667,1,25 -cereal,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -bulb,0.8016666666666667,1.0,0.7666666666666667,0.86,2,26 -hair,0.5683333333333334,1.0,0.4833333333333333,0.6333333333333334,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6333333333333333,1.0,0.55,0.6833333333333333,1,26 -can,0.8483333333333334,1.0,0.8,0.8800000000000001,2,25 -coca,0.625,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.7416666666666667,1.0,0.7166666666666666,0.8,1,26 -plate,0.78,1.0,0.7666666666666666,0.8333333333333333,1,25 -calculator,0.7083333333333333,1.0,0.5666666666666667,0.7,1,26 -tissues,0.7316666666666667,1.0,0.55,0.6833333333333333,1,26 -juice,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -pink,0.7416666666666666,1.0,0.7166666666666666,0.8,1,25 -lemon,0.4833333333333334,1.0,0.4499999999999999,0.6,1,26 -peach,0.5816666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -bowl,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7233333333333334,1.0,0.6,0.7166666666666667,1,26 -blue,0.6883333333333332,1.0,0.5833333333333333,0.7,1,25 -used,0.31333333333333335,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.7016666666666667,1.0,0.65,0.75,1,26 -ball,0.73,1.0,0.5999999999999999,0.7166666666666666,1,25 -notebook,0.73,1.0,0.7,0.7833333333333333,1,26 -garlic,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -pair,1.0,1.0,1.0,1.0,2,27 -container,0.6749999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -tomato,0.71,1.0,0.5333333333333333,0.6833333333333333,1,26 -cellphone,0.3350000000000001,0.55,0.5666666666666667,0.51,1,26 -potato,0.66,1.0,0.6499999999999999,0.75,1,25 -light,0.9349999999999999,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.6466358024691359 -F1-Score: 0.6819753086419752 -Precision: 0.8969135802469137 -Recall: 0.6007716049382715 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666667,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666667,1,24 -keyboard,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -glue,0.8066666666666666,1.0,0.6333333333333333,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.4383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -flashlight,0.6333333333333333,1.0,0.6,0.7166666666666667,1,26 -cup,0.6583333333333333,0.5,0.7833333333333333,0.5900000000000001,1,26 -folded,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -jam,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -black,0.8766666666666666,0.6666666666666666,1.0,0.78,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7133333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -soccer,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -hat,0.6216666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -brown,0.93,1.0,0.9,0.9400000000000001,2,24 -coffee,0.7716666666666667,1.0,0.5333333333333333,0.6833333333333333,1,26 -handle,0.6666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,25 -food,0.7383333333333333,1.0,0.7,0.7833333333333333,1,25 -towel,0.705,1.0,0.6499999999999999,0.75,1,26 -chips,0.6266666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -stapler,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.7266666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -bag,0.5933333333333333,1.0,0.5166666666666666,0.65,1,26 -sponge,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6966666666666665,1.0,0.6833333333333333,0.7666666666666666,1,25 -special,0.5916666666666666,1.0,0.4333333333333334,0.6,1,26 -colgate,0.41666666666666663,1.0,0.4333333333333333,0.5833333333333333,1,26 -leaf,0.7166666666666666,1.0,0.6666666666666666,0.75,1,26 -tube,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -cell,0.28,0.6,0.4,0.4600000000000001,1,26 -mug,0.6683333333333332,1.0,0.65,0.75,1,26 -yogurt,0.7433333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -plantain,0.5833333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.5966666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -wheat,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -kleenex,0.5416666666666667,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.71,1.0,0.5999999999999999,0.7166666666666667,1,26 -binder,0.7816666666666666,1.0,0.6333333333333333,0.75,1,26 -baseball,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -pliers,0.45499999999999996,1.0,0.45,0.6,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.5683333333333332,1.0,0.5166666666666666,0.65,1,26 -thins,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -package,0.3333333333333333,1.0,0.4666666666666666,0.6,1,26 -k,0.755,1.0,0.7166666666666666,0.8,1,26 -jelly,0.7433333333333333,1.0,0.65,0.75,1,26 -fruit,0.8,0.75,0.9,0.7933333333333333,2,26 -apple,0.5616666666666668,0.8,0.6,0.6166666666666667,1,25 -bell,0.605,1.0,0.55,0.6833333333333333,1,26 -battery,0.5816666666666667,1.0,0.55,0.6833333333333333,1,26 -jar,0.715,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.7933333333333333,1.0,0.7,0.7833333333333333,1,26 -brush,0.8016666666666665,1.0,0.7166666666666666,0.8,1,26 -scissors,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.7216666666666667,1.0,0.5666666666666667,0.7,1,25 -toothpaste,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -top,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -spiral,0.6333333333333333,1.0,0.7333333333333333,0.8,1,26 -handles,0.4133333333333333,1.0,0.4833333333333332,0.6166666666666666,1,25 -camera,0.605,1.0,0.6333333333333333,0.7333333333333334,1,26 -eraser,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6916666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -pitcher,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -phone,0.5583333333333333,1.0,0.5,0.6333333333333333,1,26 -stick,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,25 -cereal,0.755,1.0,0.6666666666666666,0.7666666666666666,1,26 -bulb,0.905,1.0,0.8666666666666668,0.9200000000000002,2,27 -hair,0.6333333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -can,0.8949999999999999,1.0,0.8333333333333333,0.9,2,25 -coca,0.5583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -crackers,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -plate,0.8766666666666666,1.0,0.7833333333333333,0.85,1,24 -calculator,0.6566666666666666,0.6,0.7,0.6,1,26 -tissues,0.43833333333333335,1.0,0.45,0.6,1,26 -juice,0.7433333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -pink,0.4216666666666667,1.0,0.4333333333333333,0.5833333333333333,1,25 -lemon,0.875,1.0,0.7833333333333333,0.85,1,26 -peach,0.5249999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -bowl,0.6216666666666666,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.63,1.0,0.6499999999999999,0.75,1,26 -blue,0.6666666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -used,0.40166666666666667,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -ball,0.6666666666666666,1.0,0.5833333333333333,0.7,1,25 -notebook,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -garlic,0.705,1.0,0.65,0.75,1,26 -cleaning,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -pair,0.9099999999999999,1.0,0.8666666666666668,0.9200000000000002,2,26 -container,0.6166666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -tomato,0.8233333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -cellphone,0.32333333333333336,0.7,0.5499999999999999,0.53,1,26 -potato,0.5633333333333332,1.0,0.4666666666666666,0.6166666666666667,1,25 -light,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.6372376543209877 -F1-Score: 0.6788271604938271 -Precision: 0.8941358024691358 -Recall: 0.5993827160493828 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6416666666666666,1.0,0.6499999999999999,0.75,1,24 -yellow,1.0,1.0,1.0,1.0,6,23 -looks,0.705,0.9,0.7,0.7166666666666667,1,24 -keyboard,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -glue,0.8666666666666666,1.0,0.7833333333333333,0.85,1,26 -milk,0,0,0,0,1,26 -cola,0.7183333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -flashlight,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.23666666666666666,0.5,0.4833333333333333,0.4766666666666667,1,26 -folded,0.7416666666666667,1.0,0.65,0.75,1,26 -jam,0.655,1.0,0.5833333333333333,0.7,1,26 -black,1.0,1.0,1.0,1.0,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6483333333333333,1.0,0.55,0.6833333333333333,1,26 -soccer,0.78,1.0,0.7333333333333333,0.8166666666666667,1,26 -hat,0.6733333333333333,1.0,0.65,0.75,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,25 -handle,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,25 -food,0.825,1.0,0.7666666666666666,0.8333333333333333,1,25 -towel,0.5833333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -chips,0.6016666666666667,1.0,0.5833333333333333,0.7,1,26 -stapler,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -onion,0.8383333333333333,0.95,0.7833333333333333,0.8166666666666668,1,26 -bag,0.6066666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -sponge,0.6266666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -special,0.7916666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -colgate,0.735,1.0,0.6499999999999999,0.75,1,26 -leaf,0.7949999999999999,1.0,0.6333333333333333,0.75,1,26 -tube,0.5833333333333333,1.0,0.5999999999999999,0.7,1,26 -cell,0.6983333333333333,1.0,0.6,0.7166666666666667,1,26 -mug,0.65,1.0,0.5499999999999999,0.6833333333333333,1,25 -yogurt,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -plantain,0.5383333333333333,1.0,0.5,0.6333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.4333333333333333,1.0,0.41666666666666663,0.5833333333333334,1,26 -wheat,0.6416666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -toothbrush,0.6133333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -binder,0.775,1.0,0.75,0.8166666666666667,1,26 -baseball,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -pliers,0.6900000000000001,1.0,0.5666666666666667,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -thins,0.8066666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -package,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -k,0.6383333333333333,1.0,0.55,0.6833333333333333,1,26 -jelly,0.6166666666666666,1.0,0.65,0.75,1,26 -fruit,0.7216666666666667,0.75,0.8666666666666668,0.7733333333333333,2,25 -apple,0.6916666666666667,0.8,0.6833333333333333,0.6333333333333333,1,25 -bell,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -battery,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -jar,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -bound,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -lettuce,0.6266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -scissors,0.6983333333333334,1.0,0.55,0.6833333333333333,1,26 -lime,0.5,1.0,0.5999999999999999,0.7,1,25 -toothpaste,0.3716666666666667,1.0,0.45,0.6,1,26 -top,0.6916666666666667,1.0,0.7,0.7833333333333334,1,26 -spiral,0.5999999999999999,1.0,0.5999999999999999,0.7,1,26 -handles,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -camera,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.8766666666666666,1.0,0.75,0.8333333333333334,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6683333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -pitcher,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -phone,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -stick,0.6066666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -cereal,0.6016666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -bulb,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -hair,0.6183333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.655,1.0,0.6499999999999999,0.75,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -coca,0.575,1.0,0.6166666666666666,0.7166666666666666,1,26 -crackers,0.5966666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -plate,0.6383333333333333,1.0,0.5833333333333333,0.7,1,25 -calculator,0.7666666666666667,0.85,0.7833333333333333,0.75,1,26 -tissues,0.5933333333333333,1.0,0.5166666666666666,0.65,1,26 -juice,0.7133333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -pink,0.6083333333333333,1.0,0.5833333333333333,0.7,1,25 -lemon,0.6433333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -peach,0.4683333333333334,0.5,0.7166666666666666,0.5633333333333334,1,26 -bowl,0.7133333333333334,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7216666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -blue,0.6633333333333333,1.0,0.65,0.75,1,25 -used,0.2866666666666667,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.5216666666666667,1.0,0.5,0.6333333333333333,1,26 -ball,0.5833333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -notebook,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -garlic,0.8833333333333332,1.0,0.8,0.8666666666666666,1,26 -cleaning,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -pair,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -container,0.4883333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -tomato,0.72,1.0,0.5666666666666667,0.7,1,26 -cellphone,0.53,1.0,0.5499999999999999,0.6666666666666666,1,26 -potato,0.5799999999999998,1.0,0.5499999999999999,0.6666666666666667,1,25 -light,0.85,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.6457098765432098 -F1-Score: 0.6861111111111112 -Precision: 0.9004629629629629 -Recall: 0.604320987654321 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6716666666666666,1.0,0.6,0.7166666666666666,1,25 -yellow,0.9133333333333334,0.8083333333333332,1.0,0.8790476190476191,6,24 -looks,0.5183333333333333,0.7,0.5833333333333333,0.5633333333333334,1,24 -keyboard,0.5349999999999999,1.0,0.41666666666666663,0.5833333333333333,1,26 -glue,0.5133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6166666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -flashlight,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -cup,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -folded,0.5133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -jam,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -black,0.9100000000000001,0.7833333333333333,1.0,0.86,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6433333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -soccer,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -hat,0.555,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.8583333333333332,1.0,0.8333333333333333,0.9,2,26 -coffee,0.6983333333333334,1.0,0.5666666666666667,0.7,1,26 -handle,0.7083333333333333,1.0,0.5999999999999999,0.7166666666666667,1,25 -food,0.705,1.0,0.55,0.6833333333333333,1,26 -towel,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -chips,0.4583333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -stapler,0.5599999999999999,1.0,0.4833333333333332,0.6333333333333333,1,26 -onion,0.6416666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -bag,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -sponge,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.4133333333333333,1.0,0.5,0.6333333333333333,1,25 -special,0.7016666666666667,1.0,0.6499999999999999,0.75,1,26 -colgate,0.6916666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -leaf,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -cell,0.3466666666666667,0.5,0.6166666666666666,0.5166666666666667,1,26 -mug,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -yogurt,0.725,1.0,0.7,0.7833333333333333,1,26 -plantain,0.555,0.9,0.5333333333333333,0.6,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -wheat,0.8549999999999999,1.0,0.7833333333333333,0.85,1,26 -kleenex,0.8583333333333332,1.0,0.7833333333333333,0.85,1,26 -toothbrush,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -binder,0.5933333333333334,1.0,0.5833333333333333,0.7,1,26 -baseball,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -pliers,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6966666666666665,1.0,0.5499999999999999,0.6833333333333333,1,26 -thins,0.71,1.0,0.6499999999999999,0.75,1,26 -package,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -k,0.7833333333333333,1.0,0.7333333333333333,0.8,1,26 -jelly,0.7700000000000001,1.0,0.5833333333333333,0.7166666666666667,1,26 -fruit,0.6799999999999999,0.6166666666666667,0.9,0.6866666666666668,2,25 -apple,0.8733333333333334,0.95,0.75,0.8,1,26 -bell,0.425,1.0,0.4499999999999999,0.6,1,26 -battery,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -jar,0.7,1.0,0.7499999999999999,0.8166666666666667,1,26 -bound,0.5916666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -lettuce,0.8183333333333334,1.0,0.65,0.7666666666666667,1,26 -brush,0.605,1.0,0.5166666666666666,0.65,1,26 -scissors,0.6766666666666665,1.0,0.5833333333333333,0.7,1,26 -lime,0.5916666666666666,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -top,0.5933333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.5216666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -handles,0.6466666666666666,1.0,0.6333333333333332,0.7333333333333333,1,25 -camera,0.5,1.0,0.5499999999999999,0.6666666666666667,1,26 -eraser,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6883333333333332,0.95,0.6333333333333333,0.7,1,26 -pitcher,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -phone,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -stick,0.7216666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -cereal,0.8099999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -hair,0.6483333333333333,1.0,0.6,0.7166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -can,0.9166666666666666,1.0,0.9,0.9400000000000001,2,24 -coca,0.375,1.0,0.4333333333333334,0.5833333333333333,1,26 -crackers,0.8583333333333332,1.0,0.7833333333333333,0.85,1,26 -plate,0.6183333333333334,1.0,0.5333333333333333,0.6666666666666667,1,25 -calculator,0.765,1.0,0.6166666666666666,0.7333333333333334,1,26 -tissues,0.635,1.0,0.4666666666666666,0.6166666666666667,1,26 -juice,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.8166666666666667,1.0,0.8166666666666667,0.8666666666666666,1,25 -lemon,0.8666666666666666,1.0,0.7,0.8,1,26 -peach,0.6183333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -bowl,0.8266666666666665,1.0,0.65,0.7666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -blue,0.755,1.0,0.65,0.75,1,25 -used,0.2516666666666667,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6133333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -ball,0.6466666666666667,1.0,0.55,0.6833333333333333,1,25 -notebook,0.805,1.0,0.7166666666666666,0.8,1,26 -garlic,0.675,1.0,0.7,0.7833333333333333,1,26 -cleaning,0.675,1.0,0.6,0.7166666666666667,1,26 -pair,0.9550000000000001,1.0,0.9333333333333332,0.96,2,27 -container,0.6766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,25 -tomato,0.6383333333333334,1.0,0.5833333333333333,0.7,1,26 -cellphone,0.20166666666666672,0.5,0.5666666666666667,0.5,1,26 -potato,0.8933333333333333,1.0,0.8,0.8666666666666666,1,25 -light,1.0,1.0,1.0,1.0,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.645679012345679 -F1-Score: 0.6860097001763668 -Precision: 0.8954475308641976 -Recall: 0.6083333333333334 diff --git a/Validation/UW_raw_75_object_0.8500000000000001.csv b/Validation/UW_raw_75_object_0.8500000000000001.csv deleted file mode 100644 index 5602f81..0000000 --- a/Validation/UW_raw_75_object_0.8500000000000001.csv +++ /dev/null @@ -1,2875 +0,0 @@ -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.605,1.0,0.5833333333333333,0.7,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,23 -looks,0.6599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,24 -keyboard,0.6166666666666667,1.0,0.5666666666666667,0.7,1,26 -glue,0.7716666666666666,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -flashlight,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -cup,0.58,0.5,0.6333333333333333,0.5399999999999999,1,26 -folded,0.5683333333333332,1.0,0.4666666666666666,0.6166666666666667,1,26 -jam,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.9266666666666667,0.8,1.0,0.8666666666666666,6,22 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -soccer,0.4416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -hat,0.64,1.0,0.5833333333333333,0.7,1,26 -brown,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coffee,0.675,1.0,0.6499999999999999,0.75,1,25 -handle,0.6716666666666666,1.0,0.5166666666666666,0.6666666666666667,1,25 -food,0.7083333333333333,1.0,0.5999999999999999,0.7166666666666667,1,24 -towel,0.7033333333333334,1.0,0.5666666666666667,0.7,1,26 -chips,0.9016666666666666,1.0,0.8,0.8666666666666666,1,26 -stapler,0.805,1.0,0.7166666666666666,0.8,1,26 -onion,0.6533333333333333,0.85,0.6166666666666666,0.65,1,26 -bag,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -special,0.6333333333333333,1.0,0.5999999999999999,0.7,1,26 -colgate,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -leaf,0.6333333333333333,1.0,0.6666666666666666,0.75,1,26 -tube,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -cell,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -mug,0.6883333333333332,1.0,0.65,0.75,1,25 -yogurt,0.675,1.0,0.6833333333333333,0.7666666666666666,1,26 -plantain,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -wheat,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -kleenex,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -toothbrush,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -binder,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -baseball,0.7633333333333333,1.0,0.75,0.8166666666666667,1,26 -pliers,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -thins,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -package,0.7083333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -k,0.7416666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -jelly,0.6383333333333334,1.0,0.5833333333333333,0.7,1,26 -fruit,0.7883333333333333,0.7166666666666666,0.9,0.7733333333333333,2,25 -apple,0.7050000000000001,1.0,0.5666666666666667,0.7,1,25 -bell,0.7133333333333334,1.0,0.65,0.75,1,26 -battery,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -jar,0.6833333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -bound,0.5083333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -lettuce,0.6766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -brush,0.7483333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -scissors,0.655,1.0,0.5833333333333333,0.7,1,26 -lime,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,25 -toothpaste,0.7233333333333333,1.0,0.5833333333333333,0.7,1,26 -top,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -spiral,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.7483333333333333,1.0,0.6,0.7166666666666667,1,25 -camera,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -eraser,0.7833333333333333,1.0,0.7999999999999999,0.85,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -pitcher,0.9133333333333333,1.0,0.85,0.9,1,26 -phone,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -stick,0.7383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -cereal,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -bulb,0.8716666666666667,1.0,0.8333333333333333,0.9,2,26 -hair,0.6433333333333333,1.0,0.4833333333333333,0.6333333333333334,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6183333333333333,1.0,0.5,0.65,1,26 -can,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.59,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.7333333333333333,1.0,0.65,0.75,1,26 -plate,0.76,1.0,0.6666666666666666,0.7666666666666667,1,25 -calculator,0.8766666666666666,1.0,0.75,0.8333333333333333,1,26 -tissues,0.4833333333333334,1.0,0.5333333333333333,0.65,1,26 -juice,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -pink,0.44333333333333336,1.0,0.4333333333333333,0.6,1,25 -lemon,0.585,1.0,0.5333333333333333,0.6666666666666667,1,26 -peach,0.43,1.0,0.4499999999999999,0.6,1,26 -bowl,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.505,1.0,0.5166666666666666,0.65,1,26 -blue,0.5666666666666667,1.0,0.6666666666666666,0.75,1,25 -used,0.4533333333333333,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -ball,0.6583333333333333,1.0,0.55,0.6833333333333333,1,25 -notebook,0.5216666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -garlic,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -cleaning,0.6566666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -pair,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -tomato,0.7433333333333333,1.0,0.6499999999999999,0.75,1,26 -cellphone,0.6933333333333334,1.0,0.5333333333333333,0.6666666666666666,1,26 -potato,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666667,1,25 -light,0.8416666666666666,1.0,0.8333333333333333,0.9,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8749999999999998,1.0,0.8666666666666666,0.9200000000000002,2,25 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.6591512345679013 -F1-Score: 0.6929012345679013 -Precision: 0.9057098765432099 -Recall: 0.6098765432098765 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,24 -yellow,0.9633333333333335,0.9166666666666666,1.0,0.9466666666666667,6,24 -looks,0.6416666666666666,0.95,0.6333333333333333,0.7,1,24 -keyboard,0.5599999999999999,1.0,0.5833333333333333,0.7,1,26 -glue,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6966666666666665,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.6333333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -cup,0.2966666666666667,0.5,0.5,0.47333333333333333,1,26 -folded,0.7100000000000001,1.0,0.5666666666666667,0.7,1,26 -jam,0.6383333333333333,1.0,0.5166666666666666,0.65,1,26 -black,0.8866666666666667,0.7166666666666666,1.0,0.8133333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6633333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -soccer,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -hat,0.8099999999999999,1.0,0.7333333333333333,0.8166666666666667,1,26 -brown,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,26 -coffee,0.5916666666666667,1.0,0.55,0.6833333333333333,1,25 -handle,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333334,1,25 -food,0.8,1.0,0.7499999999999999,0.8166666666666667,1,25 -towel,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.5,1.0,0.5333333333333333,0.65,1,26 -stapler,0.8150000000000001,1.0,0.6666666666666666,0.7666666666666667,1,26 -onion,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -bag,0.6133333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -sponge,0.655,1.0,0.5999999999999999,0.7166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666668,1,25 -special,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -colgate,0.755,1.0,0.6666666666666666,0.7666666666666666,1,26 -leaf,0.5583333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -tube,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -cell,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -mug,0.6716666666666666,1.0,0.6166666666666666,0.7333333333333333,1,25 -yogurt,0.6216666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -plantain,0.7466666666666666,1.0,0.6,0.7166666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.655,1.0,0.5833333333333333,0.7,1,26 -wheat,0.7016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -kleenex,0.7,1.0,0.65,0.75,1,26 -toothbrush,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -binder,0.615,1.0,0.4999999999999999,0.65,1,26 -baseball,0.6216666666666667,1.0,0.6,0.7166666666666667,1,26 -pliers,0.5716666666666665,1.0,0.5,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -thins,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -package,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -k,0.7033333333333334,1.0,0.5,0.65,1,26 -jelly,0.6499999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -fruit,0.76,0.5666666666666667,1.0,0.7133333333333333,2,25 -apple,0.6383333333333333,0.95,0.5833333333333333,0.6666666666666667,1,25 -bell,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -battery,0.655,1.0,0.5666666666666667,0.6833333333333333,1,26 -jar,0.63,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.8466666666666665,1.0,0.7833333333333333,0.85,1,26 -lettuce,0.7899999999999999,1.0,0.7166666666666666,0.8,1,26 -brush,0.45,1.0,0.5,0.6333333333333333,1,26 -scissors,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -lime,0.725,1.0,0.6,0.7166666666666667,1,25 -toothpaste,0.5883333333333334,1.0,0.55,0.6833333333333333,1,26 -top,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -spiral,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -handles,0.5133333333333333,1.0,0.5166666666666666,0.65,1,25 -camera,0.7683333333333333,1.0,0.6333333333333333,0.75,1,26 -eraser,0.6,1.0,0.6166666666666666,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -pitcher,0.4999999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -phone,0.7333333333333333,1.0,0.7166666666666666,0.8,1,26 -stick,0.6016666666666667,1.0,0.5833333333333333,0.7,1,25 -cereal,0.6433333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -bulb,0.8799999999999999,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.6566666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,0.86,1.0,0.8333333333333333,0.9,2,26 -coca,0.7816666666666666,1.0,0.6333333333333333,0.75,1,26 -crackers,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -plate,0.5499999999999999,1.0,0.5999999999999999,0.7,1,25 -calculator,0.5416666666666666,0.95,0.55,0.65,1,26 -tissues,0.6383333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -juice,0.7166666666666666,1.0,0.75,0.8166666666666667,1,26 -pink,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -lemon,0.45999999999999996,1.0,0.5166666666666666,0.65,1,26 -peach,0.6749999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -bowl,0.7133333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.75,1.0,0.6833333333333333,0.7833333333333334,1,26 -blue,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -used,0.25,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.8133333333333332,1.0,0.7499999999999999,0.8166666666666667,1,26 -ball,0.7,1.0,0.65,0.75,1,25 -notebook,0.6933333333333334,1.0,0.6,0.7166666666666667,1,26 -garlic,0.6883333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -cleaning,0.6766666666666666,1.0,0.5666666666666667,0.7,1,26 -pair,0.8266666666666665,1.0,0.8,0.8800000000000001,2,27 -container,0.65,1.0,0.65,0.75,1,25 -tomato,0.5833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -cellphone,0.5533333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -potato,0.5633333333333332,1.0,0.5833333333333333,0.7,1,25 -light,0.86,1.0,0.8333333333333333,0.9,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.875,1.0,0.8666666666666668,0.9200000000000002,2,25 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.644753086419753 -F1-Score: 0.6832098765432101 -Precision: 0.9032407407407407 -Recall: 0.5984567901234568 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,25 -yellow,1.0,1.0,1.0,1.0,6,25 -looks,0.5333333333333333,1.0,0.45,0.6166666666666667,1,24 -keyboard,0.7833333333333333,1.0,0.7,0.7833333333333333,1,26 -glue,0.6849999999999999,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -cup,0.43166666666666664,0.6,0.5999999999999999,0.54,1,25 -folded,0.8266666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -jam,0.74,1.0,0.6166666666666666,0.7333333333333334,1,26 -black,0.8616666666666667,0.6833333333333333,1.0,0.7933333333333332,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7,1.0,0.6833333333333333,0.7666666666666667,1,26 -soccer,0.6633333333333333,1.0,0.4999999999999999,0.65,1,26 -hat,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -brown,0.9266666666666667,1.0,0.9,0.9400000000000001,2,24 -coffee,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -handle,0.5516666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -food,0.6499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -towel,0.8216666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -chips,0.5483333333333333,1.0,0.4333333333333333,0.6,1,26 -stapler,0.6666666666666666,1.0,0.6499999999999999,0.75,1,26 -onion,0.5583333333333333,1.0,0.5833333333333333,0.7,1,26 -bag,0.65,1.0,0.6833333333333333,0.7666666666666667,1,26 -sponge,0.655,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7649999999999999,1.0,0.6666666666666666,0.7666666666666667,1,25 -special,0.7316666666666667,1.0,0.6,0.7166666666666667,1,26 -colgate,0.715,1.0,0.5166666666666666,0.6666666666666667,1,26 -leaf,0.6433333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -tube,0.705,1.0,0.6333333333333332,0.7333333333333333,1,26 -cell,0.4216666666666667,0.65,0.5333333333333333,0.5233333333333332,1,26 -mug,0.7133333333333334,1.0,0.5666666666666667,0.7,1,26 -yogurt,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -plantain,0.5416666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -wheat,0.48,1.0,0.5,0.6333333333333333,1,26 -kleenex,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -toothbrush,0.4883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.6749999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -baseball,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -pliers,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -thins,0.8150000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -package,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -k,0.8416666666666668,1.0,0.7833333333333333,0.85,1,26 -jelly,0.6683333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -fruit,0.8483333333333334,0.9333333333333332,0.8333333333333333,0.8600000000000001,2,26 -apple,0.5833333333333333,1.0,0.6666666666666666,0.75,1,25 -bell,0.675,1.0,0.6833333333333333,0.7666666666666666,1,26 -battery,0.7483333333333333,1.0,0.5666666666666667,0.7,1,26 -jar,0.6666666666666667,1.0,0.7,0.7833333333333333,1,26 -bound,0.7833333333333333,1.0,0.7999999999999999,0.85,1,26 -lettuce,0.71,1.0,0.6499999999999999,0.75,1,26 -brush,0.6083333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -scissors,0.7333333333333333,1.0,0.65,0.75,1,26 -lime,0.7416666666666667,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -top,0.6133333333333333,1.0,0.5166666666666666,0.65,1,26 -spiral,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -handles,0.6599999999999999,1.0,0.7,0.7833333333333333,1,25 -camera,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666666,1,26 -eraser,0.8633333333333333,1.0,0.8166666666666667,0.8666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -pitcher,0.625,1.0,0.6499999999999999,0.75,1,26 -phone,0.6883333333333332,1.0,0.6,0.7166666666666667,1,26 -stick,0.7433333333333334,1.0,0.6499999999999999,0.75,1,25 -cereal,0.8266666666666668,1.0,0.6833333333333333,0.7833333333333334,1,26 -bulb,0.9166666666666666,1.0,0.9,0.9400000000000001,2,27 -hair,0.675,1.0,0.6333333333333333,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6066666666666667,1.0,0.5833333333333333,0.7,1,26 -can,0.875,1.0,0.8666666666666668,0.9200000000000002,2,25 -coca,0.5549999999999999,1.0,0.4499999999999999,0.6,1,26 -crackers,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -plate,0.6583333333333333,1.0,0.6333333333333332,0.7333333333333333,1,25 -calculator,0.5,0.6,0.5333333333333333,0.5133333333333334,1,26 -tissues,0.8400000000000001,1.0,0.7166666666666666,0.8,1,26 -juice,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -pink,0.5716666666666665,1.0,0.4833333333333333,0.6333333333333333,1,25 -lemon,0.6866666666666666,1.0,0.5,0.65,1,26 -peach,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333334,1,26 -camouflage,0,0,0,0,1,26 -digital,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -blue,0.6433333333333333,1.0,0.5833333333333333,0.7,1,25 -used,0.2966666666666667,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6766666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -ball,0.6416666666666666,1.0,0.4833333333333332,0.6333333333333333,1,25 -notebook,0.7166666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -garlic,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -cleaning,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666666,1,26 -pair,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,27 -container,0.7249999999999999,1.0,0.7,0.7833333333333333,1,25 -tomato,0.535,1.0,0.41666666666666663,0.5833333333333334,1,26 -cellphone,0.6,0.65,0.6666666666666666,0.5900000000000001,1,26 -potato,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -light,0.915,1.0,0.8666666666666666,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8616666666666667,1.0,0.8,0.8800000000000001,2,27 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.6516512345679012 -F1-Score: 0.684320987654321 -Precision: 0.8992283950617285 -Recall: 0.6010802469135802 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7166666666666666,1.0,0.7,0.7833333333333333,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.7483333333333333,1.0,0.5666666666666667,0.7,1,24 -keyboard,0.8933333333333333,1.0,0.8333333333333333,0.8833333333333332,1,26 -glue,0.4966666666666667,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.6033333333333333,1.0,0.4999999999999999,0.65,1,26 -flashlight,0.6433333333333333,1.0,0.6,0.7166666666666667,1,26 -cup,0.45166666666666666,0.5,0.5499999999999999,0.5033333333333333,1,26 -folded,0.8333333333333333,1.0,0.7833333333333333,0.85,1,26 -jam,0.4133333333333333,1.0,0.4166666666666667,0.5666666666666667,1,26 -black,0.9233333333333335,0.8166666666666667,1.0,0.8800000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -soccer,0.6666666666666667,1.0,0.5666666666666667,0.7,1,26 -hat,0.4216666666666667,1.0,0.4333333333333333,0.5833333333333333,1,26 -brown,0.8466666666666667,1.0,0.8333333333333333,0.9,2,24 -coffee,0.8,1.0,0.7166666666666666,0.8,1,26 -handle,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -food,0.58,1.0,0.4333333333333333,0.6,1,25 -towel,0.6016666666666667,1.0,0.5166666666666666,0.65,1,26 -chips,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -stapler,0.6483333333333333,1.0,0.5666666666666667,0.7,1,26 -onion,0.5683333333333334,1.0,0.4666666666666666,0.6166666666666666,1,26 -bag,0.6966666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -sponge,0.7233333333333334,1.0,0.65,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.6833333333333333,1.0,0.7,0.7833333333333333,1,25 -special,0.7150000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -colgate,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -leaf,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -tube,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -cell,0.6183333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -mug,0.5,1.0,0.4,0.5666666666666667,1,26 -yogurt,0.7716666666666666,1.0,0.7166666666666666,0.8,1,26 -plantain,0.8183333333333334,1.0,0.65,0.7666666666666666,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.6300000000000001,1.0,0.6,0.7166666666666667,1,26 -wheat,0.61,1.0,0.4833333333333333,0.6333333333333333,1,26 -kleenex,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -toothbrush,0.75,1.0,0.7,0.7833333333333333,1,26 -binder,0.655,1.0,0.6166666666666666,0.7333333333333333,1,26 -baseball,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -pliers,0.7,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7466666666666667,1.0,0.7166666666666666,0.8,1,26 -thins,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -package,0.7566666666666666,1.0,0.6333333333333333,0.75,1,26 -k,0.6883333333333334,1.0,0.5833333333333333,0.7,1,26 -jelly,0.605,1.0,0.4666666666666666,0.6166666666666667,1,26 -fruit,0.7849999999999999,0.9,0.8,0.8166666666666668,2,26 -apple,0.7683333333333333,0.95,0.6333333333333333,0.7333333333333333,1,25 -bell,0.6666666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -battery,0.7233333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -jar,0.5900000000000001,1.0,0.4666666666666666,0.6166666666666666,1,26 -bound,0.8166666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -lettuce,0.6849999999999999,1.0,0.5666666666666667,0.7,1,26 -brush,0.725,1.0,0.6166666666666666,0.7333333333333333,1,26 -scissors,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -lime,0.755,1.0,0.6666666666666666,0.7666666666666666,1,25 -toothpaste,0.6216666666666666,1.0,0.4833333333333332,0.6333333333333333,1,26 -top,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -spiral,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -handles,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -camera,0.705,1.0,0.65,0.75,1,26 -eraser,0.5166666666666666,1.0,0.5999999999999999,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -phone,0.7166666666666666,1.0,0.7166666666666666,0.8,1,26 -stick,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -cereal,0.6,1.0,0.5499999999999999,0.6833333333333333,1,26 -bulb,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,27 -hair,0.8400000000000001,1.0,0.6833333333333333,0.7833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -can,0.9016666666666667,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.6133333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -crackers,0.6066666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -plate,0.58,1.0,0.6833333333333333,0.7666666666666667,1,25 -calculator,0.59,0.85,0.65,0.6666666666666667,1,26 -tissues,0.635,1.0,0.5333333333333333,0.6666666666666666,1,26 -juice,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -pink,0.4916666666666666,1.0,0.5333333333333333,0.6666666666666666,1,25 -lemon,0.8133333333333332,1.0,0.7833333333333333,0.85,1,26 -peach,0.42000000000000004,0.5,0.65,0.5366666666666667,1,26 -bowl,0.74,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -blue,0.725,1.0,0.7,0.7833333333333333,1,25 -used,0.27999999999999997,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.5416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -ball,0.5383333333333333,1.0,0.4499999999999999,0.6,1,25 -notebook,0.755,1.0,0.6166666666666666,0.7333333333333333,1,26 -garlic,0.6583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -cleaning,0.6883333333333332,1.0,0.6,0.7166666666666666,1,26 -pair,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,27 -container,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -tomato,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -cellphone,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -potato,0.5766666666666665,1.0,0.5166666666666666,0.65,1,25 -light,0.9099999999999999,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9266666666666667,1.0,0.8999999999999998,0.9400000000000001,2,25 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.6483487654320987 -F1-Score: 0.6847222222222222 -Precision: 0.9024691358024691 -Recall: 0.598611111111111 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,25 -looks,0.7133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,24 -keyboard,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -glue,0.6233333333333334,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.6216666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -flashlight,0.78,1.0,0.7,0.7833333333333333,1,26 -cup,0.18833333333333332,0.5,0.45,0.4566666666666667,1,26 -folded,0.5066666666666666,1.0,0.5166666666666666,0.65,1,26 -jam,0.5216666666666666,1.0,0.5166666666666666,0.65,1,26 -black,0.8850000000000001,0.7416666666666666,1.0,0.8323809523809524,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -soccer,0.6,1.0,0.5833333333333333,0.7,1,26 -hat,0.51,1.0,0.4666666666666666,0.6166666666666666,1,26 -brown,0.9216666666666666,1.0,0.9,0.9400000000000001,2,24 -coffee,0.7,1.0,0.65,0.75,1,26 -handle,0.6766666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -food,0.725,1.0,0.6833333333333333,0.7666666666666666,1,26 -towel,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666666,1,26 -chips,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -stapler,0.7216666666666667,1.0,0.65,0.75,1,26 -onion,0.7083333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -bag,0.6333333333333333,1.0,0.5166666666666666,0.65,1,26 -sponge,0.735,1.0,0.6,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.39166666666666666,1.0,0.4999999999999999,0.6333333333333333,1,25 -special,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333334,1,26 -colgate,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.72,1.0,0.5666666666666667,0.7,1,26 -tube,0.5499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.31833333333333336,0.55,0.4999999999999999,0.4833333333333334,1,26 -mug,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -yogurt,0.6399999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -plantain,0.7566666666666667,1.0,0.6,0.7166666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.5633333333333332,1.0,0.5499999999999999,0.6666666666666666,1,26 -wheat,0.725,1.0,0.65,0.75,1,26 -kleenex,0.8083333333333332,1.0,0.8166666666666667,0.8666666666666668,1,26 -toothbrush,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -binder,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -baseball,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.55,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -thins,0.7383333333333334,1.0,0.5666666666666667,0.7,1,26 -package,0.95,1.0,0.9,0.9333333333333332,1,26 -k,0.6833333333333333,1.0,0.5666666666666667,0.7,1,26 -jelly,0.58,1.0,0.4833333333333333,0.6333333333333334,1,26 -fruit,0.7983333333333333,0.7333333333333333,0.8999999999999998,0.7666666666666667,2,25 -apple,0.7433333333333334,0.75,0.6833333333333333,0.6666666666666667,1,25 -bell,0.755,1.0,0.6499999999999999,0.75,1,26 -battery,0.6216666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -jar,0.7,1.0,0.7333333333333332,0.8,1,26 -bound,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -lettuce,0.38333333333333336,1.0,0.4166666666666667,0.5666666666666667,1,26 -brush,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -scissors,0.5133333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -lime,0.55,1.0,0.5666666666666667,0.6833333333333333,1,25 -toothpaste,0.6133333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -top,0.5599999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -spiral,0.8233333333333335,1.0,0.6833333333333333,0.7833333333333333,1,26 -handles,0.7633333333333333,1.0,0.7,0.7833333333333333,1,25 -camera,0.5916666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -eraser,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333334,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6083333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -pitcher,0.6633333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -phone,0.7133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -stick,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -cereal,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -bulb,0.925,1.0,0.9,0.9400000000000001,2,27 -hair,0.6666666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5499999999999999,1.0,0.5,0.6333333333333333,1,26 -can,0.8716666666666667,1.0,0.8333333333333333,0.9,2,25 -coca,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -crackers,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.65,1.0,0.5999999999999999,0.7166666666666667,1,24 -calculator,0.595,0.7,0.65,0.5900000000000001,1,26 -tissues,0.5916666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -juice,0.78,1.0,0.7166666666666666,0.8,1,26 -pink,0.5466666666666666,1.0,0.5,0.6333333333333333,1,25 -lemon,0.5716666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -peach,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -bowl,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -blue,0.7133333333333334,1.0,0.6166666666666666,0.7333333333333333,1,25 -used,0.4033333333333333,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.41833333333333333,1.0,0.4499999999999999,0.6,1,26 -ball,0.6966666666666665,1.0,0.6166666666666666,0.7333333333333333,1,25 -notebook,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -garlic,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -cleaning,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -pair,0.915,1.0,0.8666666666666668,0.9200000000000002,2,27 -container,0.8083333333333332,1.0,0.7166666666666666,0.8,1,25 -tomato,0.675,1.0,0.6833333333333333,0.7666666666666666,1,26 -cellphone,0.4533333333333333,0.55,0.6333333333333333,0.5366666666666667,1,26 -potato,0.7183333333333333,1.0,0.65,0.75,1,25 -light,0.8716666666666667,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,25 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.6323148148148149 -F1-Score: 0.673941798941799 -Precision: 0.892824074074074 -Recall: 0.591820987654321 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8549999999999999,1.0,0.75,0.8333333333333334,1,24 -yellow,1.0,1.0,1.0,1.0,6,26 -looks,0.7016666666666665,1.0,0.5999999999999999,0.7166666666666667,1,24 -keyboard,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -glue,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.3916666666666667,1.0,0.4166666666666667,0.5666666666666667,1,26 -flashlight,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.5516666666666666,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.7166666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -jam,0.73,1.0,0.7,0.7833333333333333,1,26 -black,0.8166666666666668,0.6333333333333333,1.0,0.7666666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6599999999999999,1.0,0.65,0.75,1,26 -soccer,0.5599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -hat,0.9133333333333333,1.0,0.85,0.9,1,26 -brown,0.9350000000000002,1.0,0.8999999999999998,0.9400000000000001,2,26 -coffee,0.5549999999999999,1.0,0.4999999999999999,0.65,1,24 -handle,0.7,1.0,0.65,0.75,1,25 -food,0.72,1.0,0.5166666666666666,0.6666666666666667,1,25 -towel,0.585,1.0,0.5333333333333333,0.6666666666666667,1,26 -chips,0.7100000000000001,1.0,0.6499999999999999,0.75,1,26 -stapler,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666667,1,26 -onion,0.8133333333333332,1.0,0.7333333333333333,0.8166666666666667,1,26 -bag,0.75,1.0,0.6333333333333333,0.75,1,26 -sponge,0.6766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.735,1.0,0.6666666666666666,0.7666666666666667,1,25 -special,0.7583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -colgate,0.7666666666666667,1.0,0.6333333333333333,0.75,1,26 -leaf,0.6683333333333333,1.0,0.6,0.7166666666666667,1,26 -tube,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.32999999999999996,0.65,0.5666666666666667,0.53,1,26 -mug,0.6666666666666667,1.0,0.6499999999999999,0.75,1,25 -yogurt,0.7833333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -plantain,0.675,1.0,0.6833333333333333,0.7666666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -wheat,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -kleenex,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -toothbrush,0.6883333333333332,1.0,0.6,0.7166666666666667,1,26 -binder,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -baseball,0.6133333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -pliers,0.6433333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -thins,0.7249999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -package,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.7633333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -jelly,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -fruit,0.8883333333333333,0.9333333333333332,0.9,0.9,2,26 -apple,0.6799999999999999,1.0,0.5333333333333333,0.6666666666666667,1,25 -bell,0.605,1.0,0.5166666666666666,0.65,1,26 -battery,0.74,1.0,0.5999999999999999,0.7166666666666667,1,26 -jar,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.8833333333333332,1.0,0.8333333333333333,0.8833333333333332,1,26 -lettuce,0.675,1.0,0.6833333333333333,0.7666666666666666,1,26 -brush,0.5666666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -scissors,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.6383333333333333,1.0,0.5166666666666666,0.65,1,25 -toothpaste,0.74,1.0,0.6,0.7166666666666667,1,26 -top,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -spiral,0.6333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -handles,0.755,1.0,0.7,0.7833333333333333,1,25 -camera,0.8083333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -eraser,0.8066666666666666,1.0,0.6333333333333333,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.61,1.0,0.4833333333333333,0.6333333333333333,1,26 -pitcher,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -phone,0.7933333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -stick,0.6633333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -cereal,0.5433333333333332,1.0,0.5333333333333333,0.6666666666666666,1,26 -bulb,0.8633333333333333,1.0,0.8333333333333333,0.9,2,27 -hair,0.5599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.655,1.0,0.5833333333333333,0.7,1,26 -can,0.86,1.0,0.8,0.8800000000000001,2,26 -coca,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -crackers,0.6966666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -plate,0.635,1.0,0.4999999999999999,0.65,1,25 -calculator,0.49833333333333335,0.7,0.5833333333333333,0.5566666666666668,1,26 -tissues,0.71,1.0,0.5666666666666667,0.7,1,26 -juice,0.7166666666666666,1.0,0.5666666666666667,0.7,1,26 -pink,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -lemon,0.2833333333333333,1.0,0.3666666666666667,0.5333333333333333,1,26 -peach,0.5216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.5349999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -blue,0.4916666666666666,1.0,0.4833333333333332,0.6166666666666666,1,25 -used,0.43166666666666664,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.4766666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -ball,0.48,1.0,0.4333333333333333,0.5833333333333333,1,25 -notebook,0.6749999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -garlic,0.76,1.0,0.5833333333333333,0.7166666666666666,1,26 -cleaning,0.65,1.0,0.6,0.7166666666666667,1,26 -pair,0.8,1.0,0.7666666666666666,0.8600000000000001,2,28 -container,0.7,1.0,0.55,0.6833333333333333,1,26 -tomato,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -cellphone,0.55,0.55,0.6666666666666666,0.5566666666666666,1,26 -potato,0.735,1.0,0.7166666666666666,0.8,1,26 -light,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,27 -green,1.0,1.0,1.0,1.0,3,23 -bottle,1.0,1.0,1.0,1.0,2,27 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.6497222222222222 -F1-Score: 0.6851234567901234 -Precision: 0.8978395061728395 -Recall: 0.6037037037037036 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6666666666666666,1.0,0.5833333333333333,0.7,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,25 -looks,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666666,1,24 -keyboard,0.3916666666666667,1.0,0.4833333333333332,0.6166666666666666,1,26 -glue,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.575,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.725,1.0,0.7,0.7833333333333333,1,26 -cup,0.25833333333333336,0.5,0.4666666666666666,0.4666666666666667,1,26 -folded,0.4883333333333334,1.0,0.5166666666666666,0.65,1,26 -jam,0.5633333333333332,1.0,0.4499999999999999,0.6,1,26 -black,0.96,0.9,1.0,0.9333333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -soccer,0.5816666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -hat,0.7216666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666668,1,25 -handle,0.7933333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -food,0.7333333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -towel,0.8150000000000001,1.0,0.6666666666666666,0.7666666666666666,1,26 -chips,0.7799999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -stapler,0.73,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.7466666666666667,0.7,0.8166666666666667,0.6833333333333333,1,26 -bag,0.6266666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -sponge,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -special,0.55,1.0,0.4833333333333332,0.6166666666666666,1,26 -colgate,0.7016666666666667,1.0,0.65,0.75,1,26 -leaf,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -tube,0.6499999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -mug,0.58,1.0,0.4833333333333332,0.6333333333333333,1,25 -yogurt,0.755,1.0,0.65,0.75,1,26 -plantain,0.795,1.0,0.6833333333333333,0.7833333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.3583333333333333,1.0,0.4166666666666667,0.5666666666666667,1,26 -wheat,0.5083333333333334,1.0,0.5,0.6333333333333334,1,26 -kleenex,0.6833333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -toothbrush,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -binder,0.4966666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -baseball,0.5716666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -pliers,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.8033333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -thins,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -package,0.7,1.0,0.7499999999999999,0.8166666666666667,1,26 -k,0.7333333333333333,1.0,0.6499999999999999,0.75,1,26 -jelly,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.8216666666666667,0.6666666666666667,0.9666666666666666,0.7733333333333334,2,25 -apple,0.6666666666666666,0.95,0.6166666666666666,0.7,1,25 -bell,0.575,1.0,0.5166666666666666,0.65,1,26 -battery,0.6216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -jar,0.6633333333333333,1.0,0.5666666666666667,0.7,1,26 -bound,0.73,1.0,0.7,0.7833333333333333,1,26 -lettuce,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -brush,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -scissors,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -lime,0.7749999999999999,1.0,0.7,0.7833333333333333,1,25 -toothpaste,0.8400000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -top,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -spiral,0.605,1.0,0.6333333333333333,0.7333333333333333,1,26 -handles,0.39666666666666667,1.0,0.41666666666666663,0.5666666666666667,1,25 -camera,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -eraser,0.7133333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6883333333333334,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.585,1.0,0.5833333333333333,0.7,1,26 -phone,0.7966666666666666,1.0,0.75,0.8166666666666667,1,26 -stick,0.5333333333333333,1.0,0.55,0.6666666666666666,1,25 -cereal,0.73,1.0,0.7,0.7833333333333333,1,26 -bulb,0.9133333333333333,1.0,0.9,0.9400000000000001,2,27 -hair,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.585,1.0,0.5166666666666666,0.65,1,26 -can,0.8683333333333334,1.0,0.8333333333333333,0.9,2,25 -coca,0.5583333333333333,1.0,0.5,0.6333333333333334,1,26 -crackers,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -plate,0.42666666666666664,1.0,0.4666666666666666,0.6166666666666667,1,25 -calculator,0.5916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -tissues,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.7483333333333333,1.0,0.5666666666666667,0.7,1,26 -pink,0.4766666666666667,1.0,0.4333333333333333,0.5833333333333333,1,25 -lemon,0.8466666666666665,1.0,0.7333333333333333,0.8166666666666668,1,26 -peach,0.7233333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -bowl,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.61,1.0,0.6333333333333333,0.7333333333333333,1,26 -blue,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -used,0.225,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.5516666666666666,1.0,0.45,0.6,1,26 -ball,0.58,1.0,0.5333333333333333,0.6666666666666667,1,25 -notebook,0.7583333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -garlic,0.51,1.0,0.4499999999999999,0.6,1,26 -cleaning,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -pair,0.85,1.0,0.8333333333333334,0.9000000000000001,2,27 -container,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -tomato,0.58,1.0,0.5166666666666666,0.65,1,26 -cellphone,0.8833333333333332,1.0,0.8333333333333333,0.8833333333333332,1,26 -potato,0.7633333333333333,1.0,0.6499999999999999,0.75,1,25 -light,0.8683333333333334,1.0,0.8333333333333333,0.9,2,27 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9016666666666667,1.0,0.8666666666666668,0.9200000000000002,2,26 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.6460956790123459 -F1-Score: 0.6870061728395063 -Precision: 0.9043209876543209 -Recall: 0.604783950617284 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.73,1.0,0.6,0.7166666666666667,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,25 -looks,0.6533333333333333,0.7,0.7499999999999999,0.6333333333333333,1,24 -keyboard,0.5333333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -glue,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -flashlight,0.5299999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -cup,0.31833333333333336,0.5,0.7,0.5533333333333335,1,26 -folded,0.61,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -black,0.9066666666666668,0.8,1.0,0.8733333333333334,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -soccer,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -hat,0.55,1.0,0.5333333333333333,0.6666666666666666,1,26 -brown,0.93,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.6183333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -handle,0.755,1.0,0.6666666666666666,0.7666666666666667,1,25 -food,0.44666666666666666,1.0,0.45,0.6,1,25 -towel,0.6883333333333334,1.0,0.5833333333333333,0.7,1,26 -chips,0.6133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -stapler,0.6333333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -onion,0.5883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -bag,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -special,0.5266666666666666,1.0,0.45,0.6,1,26 -colgate,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.7133333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -tube,0.6333333333333333,1.0,0.6,0.7166666666666667,1,26 -cell,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333334,1,26 -mug,0.58,1.0,0.5166666666666666,0.65,1,25 -yogurt,0.8149999999999998,1.0,0.7333333333333333,0.8166666666666667,1,26 -plantain,0.7183333333333333,0.95,0.65,0.7166666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.6133333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -wheat,0.6916666666666667,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -toothbrush,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -binder,0.7433333333333334,1.0,0.65,0.75,1,26 -baseball,0.7083333333333333,1.0,0.65,0.75,1,26 -pliers,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,24 -water,0.52,1.0,0.4833333333333333,0.6333333333333333,1,26 -thins,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -package,0.6849999999999999,1.0,0.6499999999999999,0.75,1,26 -k,0.6133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -jelly,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -fruit,0.6833333333333333,0.6666666666666666,0.8666666666666666,0.7166666666666667,2,25 -apple,0.6083333333333333,0.95,0.5833333333333333,0.6666666666666667,1,25 -bell,0.69,1.0,0.55,0.6833333333333333,1,26 -battery,0.6683333333333333,1.0,0.55,0.6833333333333333,1,26 -jar,0.585,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.7016666666666667,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -scissors,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -lime,0.5966666666666666,1.0,0.5333333333333332,0.6666666666666666,1,25 -toothpaste,0.5916666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -top,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -spiral,0.4216666666666667,1.0,0.38333333333333336,0.55,1,26 -handles,0.63,1.0,0.5666666666666667,0.7,1,25 -camera,0.75,1.0,0.7999999999999999,0.85,1,26 -eraser,0.6416666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6649999999999999,0.95,0.5333333333333333,0.6333333333333333,1,26 -pitcher,0.5383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -phone,0.6499999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -stick,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666666,1,25 -cereal,0.6466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -hair,0.7166666666666666,1.0,0.65,0.75,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7066666666666667,1.0,0.55,0.6833333333333333,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -coca,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -crackers,0.5349999999999999,1.0,0.4833333333333332,0.6333333333333333,1,26 -plate,0.6,1.0,0.6166666666666666,0.7166666666666666,1,25 -calculator,0.6983333333333334,1.0,0.55,0.6833333333333333,1,26 -tissues,0.7183333333333333,1.0,0.6499999999999999,0.75,1,26 -juice,0.8800000000000001,1.0,0.7833333333333333,0.85,1,26 -pink,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -lemon,0.6933333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -peach,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333334,1,26 -bowl,0.6133333333333334,1.0,0.6833333333333333,0.7666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -blue,0.6516666666666666,1.0,0.5,0.65,1,25 -used,0.5383333333333333,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.55,1.0,0.6166666666666666,0.7166666666666666,1,26 -ball,0.6849999999999999,1.0,0.5333333333333333,0.6666666666666667,1,25 -notebook,0.63,1.0,0.55,0.6833333333333333,1,26 -garlic,0.5716666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -cleaning,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,27 -container,0.7833333333333333,1.0,0.6333333333333333,0.75,1,26 -tomato,0.7716666666666666,1.0,0.7,0.7833333333333333,1,26 -cellphone,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -potato,0.33333333333333337,1.0,0.35,0.5166666666666666,1,25 -light,0.8683333333333332,1.0,0.8333333333333334,0.9000000000000001,2,26 -green,0.9833333333333334,0.95,1.0,0.9666666666666666,3,23 -bottle,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.6434722222222221 -F1-Score: 0.6780864197530865 -Precision: 0.9020061728395062 -Recall: 0.5945987654320988 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -yellow,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,6,24 -looks,0.5466666666666666,1.0,0.5833333333333333,0.7,1,24 -keyboard,0.78,1.0,0.65,0.75,1,26 -glue,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -flashlight,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.5116666666666667,0.55,0.7,0.5633333333333332,1,26 -folded,0.6133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -jam,0.6216666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -black,0.9166666666666667,0.7833333333333333,1.0,0.86,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7,1.0,0.6499999999999999,0.75,1,26 -soccer,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -hat,0.7,1.0,0.6499999999999999,0.75,1,26 -brown,0.8416666666666666,1.0,0.8333333333333334,0.9000000000000001,2,24 -coffee,0.53,1.0,0.5499999999999999,0.6666666666666666,1,26 -handle,0.6766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,25 -food,0.5599999999999999,1.0,0.5833333333333333,0.7,1,26 -towel,0.4133333333333334,1.0,0.55,0.6666666666666667,1,26 -chips,0.7916666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -stapler,0.7299999999999999,1.0,0.6499999999999999,0.75,1,26 -onion,0.6633333333333333,1.0,0.65,0.75,1,26 -bag,0.63,1.0,0.6166666666666666,0.7166666666666667,1,26 -sponge,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.6566666666666666,1.0,0.4833333333333333,0.6333333333333333,1,25 -special,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -colgate,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -leaf,0.4966666666666666,1.0,0.5166666666666666,0.65,1,26 -tube,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -cell,0.625,1.0,0.5666666666666667,0.7,1,26 -mug,0.6183333333333334,1.0,0.5833333333333333,0.7,1,26 -yogurt,0.655,1.0,0.6,0.7166666666666666,1,26 -plantain,0.7666666666666666,0.95,0.7666666666666666,0.8,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.6266666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -wheat,0.7333333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.5083333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -toothbrush,0.7516666666666666,1.0,0.6499999999999999,0.75,1,26 -binder,0.7299999999999999,1.0,0.7,0.7833333333333333,1,26 -baseball,0.78,1.0,0.6833333333333333,0.7833333333333334,1,26 -pliers,0.785,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7416666666666666,1.0,0.6833333333333332,0.7666666666666666,1,26 -thins,0.55,1.0,0.5333333333333333,0.6666666666666667,1,26 -package,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -k,0.6216666666666666,1.0,0.5833333333333333,0.7,1,26 -jelly,0.575,1.0,0.4999999999999999,0.6333333333333333,1,26 -fruit,0.7533333333333334,0.8,0.8333333333333333,0.78,2,26 -apple,0.74,0.95,0.6666666666666666,0.7333333333333333,1,26 -bell,0.6666666666666666,1.0,0.7333333333333333,0.8,1,26 -battery,0.5433333333333332,1.0,0.4833333333333333,0.6333333333333334,1,26 -jar,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -bound,0.8633333333333333,1.0,0.8166666666666667,0.8666666666666668,1,26 -lettuce,0.635,1.0,0.5333333333333333,0.6666666666666666,1,26 -brush,0.615,1.0,0.5333333333333333,0.6666666666666667,1,26 -scissors,0.58,1.0,0.4833333333333333,0.6333333333333333,1,26 -lime,0.6666666666666666,1.0,0.5999999999999999,0.7,1,25 -toothpaste,0.525,1.0,0.55,0.6666666666666666,1,26 -top,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -spiral,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -handles,0.5433333333333332,1.0,0.45,0.6,1,25 -camera,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -eraser,0.4383333333333333,1.0,0.45,0.6,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7133333333333333,0.95,0.6333333333333333,0.7166666666666666,1,26 -pitcher,0.685,1.0,0.5666666666666667,0.7,1,26 -phone,0.45,1.0,0.5333333333333333,0.65,1,26 -stick,0.5916666666666666,1.0,0.5833333333333333,0.7,1,25 -cereal,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -bulb,0.8999999999999998,1.0,0.8999999999999998,0.9400000000000001,2,27 -hair,0.7216666666666666,1.0,0.65,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -can,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -crackers,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -plate,0.6266666666666667,1.0,0.4333333333333333,0.6,1,24 -calculator,0.43833333333333335,1.0,0.4666666666666666,0.6166666666666667,1,26 -tissues,0.5933333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.7266666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -pink,0.8550000000000001,1.0,0.7833333333333333,0.85,1,25 -lemon,0.615,1.0,0.5333333333333333,0.6666666666666666,1,26 -peach,0.5533333333333333,0.55,0.7166666666666666,0.5733333333333334,1,26 -bowl,0.715,1.0,0.55,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -blue,0.585,1.0,0.4666666666666666,0.6166666666666666,1,25 -used,0.20166666666666666,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -ball,0.7166666666666666,1.0,0.7,0.7833333333333333,1,25 -notebook,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -garlic,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -cleaning,0.6583333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -pair,0.9349999999999999,1.0,0.9,0.9400000000000001,2,27 -container,0.4083333333333333,1.0,0.4833333333333332,0.6166666666666666,1,25 -tomato,0.6666666666666667,1.0,0.4666666666666666,0.6333333333333334,1,26 -cellphone,0.6749999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -potato,0.8133333333333332,1.0,0.75,0.8166666666666667,1,25 -light,0.9100000000000001,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9099999999999999,1.0,0.8666666666666668,0.9200000000000002,2,26 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.6428858024691358 -F1-Score: 0.6850925925925927 -Precision: 0.9023148148148147 -Recall: 0.6027777777777776 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,25 -looks,0.5766666666666667,0.85,0.5499999999999999,0.6,1,24 -keyboard,0.705,1.0,0.7,0.7833333333333333,1,26 -glue,0.7216666666666667,1.0,0.6,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6966666666666667,1.0,0.65,0.75,1,26 -flashlight,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -cup,0.39333333333333337,0.5,0.5999999999999999,0.52,1,26 -folded,0.635,1.0,0.5499999999999999,0.6833333333333333,1,26 -jam,0.7083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -black,0.86,0.75,1.0,0.8447619047619048,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -soccer,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -hat,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -brown,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -handle,0.6933333333333334,1.0,0.6333333333333333,0.7333333333333333,1,25 -food,0.8,1.0,0.7,0.7833333333333333,1,25 -towel,0.69,1.0,0.4999999999999999,0.65,1,26 -chips,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -stapler,0.6633333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -onion,0.7,1.0,0.7333333333333333,0.8,1,26 -bag,0.4966666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -sponge,0.6516666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7633333333333334,1.0,0.6833333333333333,0.7833333333333333,1,25 -special,0.7083333333333333,1.0,0.6,0.7166666666666667,1,26 -colgate,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -leaf,0.55,1.0,0.5166666666666666,0.65,1,26 -tube,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -cell,0.6466666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -mug,0.6,1.0,0.5166666666666666,0.65,1,26 -yogurt,0.7083333333333334,1.0,0.6833333333333333,0.7666666666666666,1,26 -plantain,0.6233333333333333,1.0,0.4833333333333332,0.6333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.7216666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -wheat,0.705,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.5883333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -toothbrush,0.5633333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -binder,0.7350000000000001,1.0,0.6666666666666666,0.7666666666666667,1,26 -baseball,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -pliers,0.7166666666666666,1.0,0.75,0.8166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -thins,0.9349999999999999,1.0,0.85,0.9,1,26 -package,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -k,0.9,1.0,0.8666666666666666,0.9,1,26 -jelly,0.6816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -fruit,0.7683333333333333,0.6166666666666666,0.9666666666666666,0.73,2,25 -apple,0.6583333333333333,0.8,0.6499999999999999,0.6333333333333333,1,25 -bell,0.6799999999999999,1.0,0.65,0.75,1,26 -battery,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -jar,0.6933333333333332,1.0,0.6,0.7166666666666667,1,26 -bound,0.6,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.5633333333333334,1.0,0.5166666666666666,0.65,1,26 -brush,0.5216666666666667,1.0,0.4333333333333333,0.6,1,26 -scissors,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -lime,0.5633333333333332,1.0,0.5166666666666666,0.65,1,25 -toothpaste,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -top,0.755,1.0,0.7666666666666666,0.8333333333333333,1,26 -spiral,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -handles,0.755,1.0,0.7,0.7833333333333333,1,25 -camera,0.6683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -eraser,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.675,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.78,1.0,0.7499999999999999,0.8166666666666667,1,26 -phone,0.7516666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -stick,0.46333333333333326,1.0,0.4666666666666666,0.6166666666666667,1,25 -cereal,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -bulb,0.95,1.0,0.9333333333333332,0.96,2,27 -hair,0.7816666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6933333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -can,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.6933333333333334,1.0,0.7,0.7833333333333333,1,26 -crackers,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -calculator,0.6216666666666667,0.9,0.6,0.65,1,26 -tissues,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -juice,0.4883333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -pink,0.73,1.0,0.7499999999999999,0.8166666666666667,1,25 -lemon,0.5483333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -peach,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -bowl,0.5466666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6483333333333332,1.0,0.5166666666666666,0.6666666666666667,1,26 -blue,0.6683333333333332,1.0,0.5999999999999999,0.7166666666666666,1,25 -used,0.4666666666666666,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6966666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -ball,0.6583333333333333,1.0,0.6499999999999999,0.75,1,25 -notebook,0.5216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -garlic,0.5983333333333334,1.0,0.4666666666666666,0.6166666666666666,1,26 -cleaning,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -pair,0.8466666666666667,1.0,0.8,0.8800000000000001,2,27 -container,0.71,1.0,0.65,0.75,1,26 -tomato,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -cellphone,0.6433333333333333,1.0,0.5,0.65,1,26 -potato,0.89,1.0,0.7833333333333333,0.85,1,25 -light,0.8133333333333332,1.0,0.7666666666666667,0.8600000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.875,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.6550462962962962 -F1-Score: 0.6893650793650793 -Precision: 0.9015432098765431 -Recall: 0.6087962962962962 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5733333333333334,1.0,0.5333333333333332,0.6666666666666666,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.6799999999999999,0.85,0.6166666666666666,0.6333333333333334,1,24 -keyboard,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -glue,0.8216666666666665,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -flashlight,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -cup,0.255,0.5,0.5166666666666666,0.4833333333333334,1,26 -folded,0.505,1.0,0.5166666666666666,0.65,1,26 -jam,0.5083333333333333,1.0,0.4,0.5666666666666667,1,26 -black,0.8316666666666667,0.65,1.0,0.7733333333333332,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -soccer,0.5133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -hat,0.6583333333333333,1.0,0.65,0.75,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -coffee,0.8533333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -handle,0.46333333333333326,1.0,0.55,0.6666666666666666,1,26 -food,0.8016666666666665,1.0,0.7166666666666666,0.8,1,24 -towel,0.3516666666666667,1.0,0.38333333333333336,0.55,1,26 -chips,0.7133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -stapler,0.73,1.0,0.7,0.7833333333333333,1,26 -onion,0.6100000000000001,1.0,0.5,0.65,1,26 -bag,0.6333333333333333,1.0,0.7,0.7833333333333333,1,26 -sponge,0.5933333333333334,1.0,0.5333333333333333,0.6666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.8066666666666666,1.0,0.6833333333333333,0.7833333333333333,1,25 -special,0.8133333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -colgate,0.78,1.0,0.6333333333333333,0.75,1,26 -leaf,0.7,1.0,0.5999999999999999,0.7166666666666666,1,26 -tube,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -cell,0.43666666666666665,0.5,0.5,0.4866666666666667,1,26 -mug,0.6983333333333334,1.0,0.6,0.7166666666666667,1,26 -yogurt,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -plantain,0.82,1.0,0.6666666666666666,0.7666666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666666,1,26 -wheat,0.615,1.0,0.5999999999999999,0.7166666666666666,1,26 -kleenex,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -binder,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -baseball,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -pliers,0.8233333333333335,1.0,0.65,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.73,1.0,0.6,0.7166666666666667,1,26 -thins,0.5466666666666666,1.0,0.55,0.6833333333333333,1,26 -package,0.7516666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -k,0.775,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -fruit,0.755,0.6,0.9333333333333332,0.7066666666666668,2,25 -apple,0.45166666666666666,0.95,0.4,0.55,1,25 -bell,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -battery,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -jar,0.735,1.0,0.6,0.7166666666666667,1,26 -bound,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -lettuce,0.8,1.0,0.8166666666666667,0.8666666666666666,1,26 -brush,0.6683333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -scissors,0.53,1.0,0.4499999999999999,0.6,1,26 -lime,0.6799999999999999,1.0,0.65,0.75,1,25 -toothpaste,0.7216666666666666,1.0,0.65,0.75,1,26 -top,0.775,1.0,0.7166666666666666,0.8,1,26 -spiral,0.8333333333333333,1.0,0.8333333333333333,0.8833333333333332,1,26 -handles,0.7416666666666667,1.0,0.6833333333333333,0.7833333333333333,1,25 -camera,0.655,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.7183333333333333,1.0,0.65,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.7183333333333334,1.0,0.55,0.6833333333333333,1,26 -pitcher,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.5916666666666666,1.0,0.5166666666666666,0.65,1,26 -stick,0.705,1.0,0.6499999999999999,0.75,1,25 -cereal,0.6183333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -bulb,0.89,1.0,0.8333333333333333,0.9,2,27 -hair,0.5716666666666667,1.0,0.5166666666666666,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.705,1.0,0.5499999999999999,0.6833333333333333,1,26 -can,0.8800000000000001,1.0,0.8333333333333333,0.9,2,25 -coca,0.735,1.0,0.5499999999999999,0.6833333333333333,1,26 -crackers,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -plate,0.6883333333333332,1.0,0.6499999999999999,0.75,1,24 -calculator,0.5166666666666666,0.65,0.5499999999999999,0.5466666666666666,1,26 -tissues,0.5816666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -juice,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -pink,0.7383333333333334,1.0,0.6166666666666666,0.7333333333333333,1,25 -lemon,0.6083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -peach,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5716666666666665,1.0,0.5166666666666666,0.65,1,26 -blue,0.5333333333333333,1.0,0.5166666666666666,0.65,1,25 -used,0.51,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -ball,0.8716666666666667,1.0,0.75,0.8333333333333333,1,25 -notebook,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -garlic,0.6216666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -cleaning,0.71,1.0,0.6666666666666666,0.7666666666666666,1,26 -pair,0.975,1.0,0.9666666666666666,0.9800000000000001,2,27 -container,0.725,1.0,0.7,0.7833333333333333,1,25 -tomato,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -cellphone,0.51,0.55,0.7,0.5633333333333334,1,26 -potato,0.6649999999999999,1.0,0.55,0.6833333333333333,1,25 -light,0.8716666666666667,1.0,0.8333333333333333,0.9,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.975,1.0,0.9666666666666666,0.9800000000000001,2,27 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.6532561728395061 -F1-Score: 0.6831790123456791 -Precision: 0.8912037037037037 -Recall: 0.6046296296296297 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7833333333333333,1.0,0.65,0.7666666666666667,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.6466666666666666,0.95,0.6333333333333333,0.7,1,24 -keyboard,0.775,1.0,0.6666666666666666,0.7666666666666666,1,26 -glue,0.7166666666666667,1.0,0.7,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.73,1.0,0.6833333333333333,0.7666666666666666,1,26 -flashlight,0.7183333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -cup,0.43000000000000005,0.5,0.6333333333333333,0.54,1,26 -folded,0.7383333333333333,1.0,0.65,0.75,1,26 -jam,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -black,0.8733333333333334,0.6833333333333333,1.0,0.7933333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -soccer,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -hat,0.5766666666666667,1.0,0.5833333333333333,0.7,1,26 -brown,0.8933333333333333,1.0,0.8666666666666666,0.9199999999999999,2,24 -coffee,0.58,1.0,0.5666666666666667,0.6833333333333333,1,25 -handle,0.825,1.0,0.7333333333333333,0.8166666666666667,1,25 -food,0.59,1.0,0.4833333333333334,0.6333333333333333,1,26 -towel,0.575,1.0,0.4833333333333333,0.6333333333333333,1,26 -chips,0.525,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.6883333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -onion,0.58,0.75,0.5999999999999999,0.5833333333333333,1,26 -bag,0.655,1.0,0.5833333333333333,0.7,1,26 -sponge,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6533333333333333,1.0,0.5,0.65,1,25 -special,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.475,1.0,0.4999999999999999,0.6333333333333333,1,26 -leaf,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -tube,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -mug,0.5833333333333333,1.0,0.5999999999999999,0.7,1,25 -yogurt,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -plantain,0.425,1.0,0.45,0.6,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.82,1.0,0.6333333333333333,0.75,1,26 -wheat,0.6216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -toothbrush,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -binder,0.705,1.0,0.5833333333333333,0.7,1,26 -baseball,0.675,1.0,0.7,0.7833333333333333,1,26 -pliers,0.5650000000000001,1.0,0.4833333333333333,0.6333333333333334,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6666666666666666,1.0,0.6833333333333332,0.7666666666666666,1,26 -thins,0.6666666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -package,0.5266666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -k,0.6166666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -jelly,0.3583333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -fruit,0.7699999999999999,0.6833333333333333,0.9333333333333332,0.7733333333333333,2,25 -apple,0.73,0.85,0.6666666666666666,0.6666666666666667,1,25 -bell,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -battery,0.6716666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -jar,0.6966666666666665,1.0,0.5499999999999999,0.6833333333333333,1,26 -bound,0.6466666666666667,1.0,0.55,0.6833333333333333,1,26 -lettuce,0.7416666666666666,1.0,0.75,0.8166666666666667,1,26 -brush,0.505,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -lime,0.5466666666666666,1.0,0.5166666666666666,0.65,1,25 -toothpaste,0.7566666666666666,1.0,0.6499999999999999,0.75,1,26 -top,0.6766666666666665,1.0,0.65,0.75,1,26 -spiral,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -handles,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,25 -camera,0.8633333333333333,1.0,0.8166666666666667,0.8666666666666666,1,26 -eraser,0.6849999999999999,1.0,0.5666666666666667,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -pitcher,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666667,1,26 -phone,0.6249999999999999,1.0,0.5833333333333333,0.7,1,26 -stick,0.6466666666666666,1.0,0.5,0.65,1,25 -cereal,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -bulb,0.825,1.0,0.8,0.8800000000000001,2,26 -hair,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.705,1.0,0.5999999999999999,0.7166666666666666,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coca,0.6416666666666667,1.0,0.6499999999999999,0.75,1,26 -crackers,0.5466666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.7083333333333333,1.0,0.5666666666666667,0.7,1,25 -calculator,0.6433333333333333,0.9,0.6499999999999999,0.6833333333333333,1,26 -tissues,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -juice,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333334,1,26 -pink,0.5716666666666667,1.0,0.4833333333333333,0.6333333333333333,1,25 -lemon,0.8150000000000001,1.0,0.6833333333333333,0.7833333333333333,1,26 -peach,0.7166666666666666,1.0,0.6499999999999999,0.75,1,26 -bowl,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7150000000000001,1.0,0.6,0.7166666666666667,1,26 -blue,0.805,1.0,0.7666666666666666,0.8333333333333333,1,25 -used,0.5399999999999999,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.7633333333333333,1.0,0.6499999999999999,0.75,1,26 -ball,0.915,1.0,0.8,0.8666666666666666,1,25 -notebook,0.505,1.0,0.5166666666666666,0.65,1,26 -garlic,0.5633333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -cleaning,0.5716666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -pair,0.8483333333333334,1.0,0.8,0.8800000000000001,2,26 -container,0.6883333333333332,1.0,0.5833333333333333,0.7,1,25 -tomato,0.4883333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -cellphone,0.6416666666666666,1.0,0.7,0.7833333333333333,1,26 -potato,0.7466666666666667,1.0,0.7,0.7833333333333333,1,25 -light,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.8766666666666666,1.0,0.8333333333333334,0.9000000000000001,2,26 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.6466512345679012 -F1-Score: 0.6836728395061729 -Precision: 0.9006172839506174 -Recall: 0.6018518518518517 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.58,1.0,0.5166666666666666,0.65,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,26 -looks,0.4966666666666667,0.95,0.4666666666666666,0.5833333333333333,1,24 -keyboard,0.575,1.0,0.5499999999999999,0.6666666666666666,1,26 -glue,0.43,1.0,0.4999999999999999,0.6333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7933333333333332,1.0,0.7,0.7833333333333333,1,26 -flashlight,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -cup,0.39333333333333337,0.5,0.6666666666666666,0.5333333333333334,1,26 -folded,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -jam,0.7216666666666667,1.0,0.5666666666666667,0.7,1,26 -black,0.8850000000000001,0.7666666666666666,1.0,0.8514285714285714,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -soccer,0.6916666666666667,1.0,0.5833333333333333,0.7,1,26 -hat,0.775,1.0,0.6666666666666666,0.7666666666666666,1,26 -brown,0.8933333333333333,1.0,0.8666666666666666,0.9199999999999999,2,25 -coffee,0.7466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -handle,0.5383333333333333,1.0,0.4833333333333332,0.6333333333333333,1,25 -food,0.4833333333333333,1.0,0.5333333333333332,0.65,1,25 -towel,0.8083333333333332,1.0,0.75,0.8166666666666667,1,26 -chips,0.36666666666666664,1.0,0.4333333333333333,0.5833333333333333,1,26 -stapler,0.6133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -onion,0.5083333333333333,1.0,0.5166666666666666,0.65,1,26 -bag,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6983333333333334,1.0,0.55,0.6833333333333333,1,25 -special,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -colgate,0.5166666666666666,1.0,0.5166666666666666,0.65,1,26 -leaf,0.8100000000000002,1.0,0.6833333333333333,0.7833333333333333,1,26 -tube,0.625,1.0,0.5499999999999999,0.6833333333333333,1,26 -cell,0.38,0.5,0.5333333333333333,0.49333333333333335,1,26 -mug,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -yogurt,0.5083333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -plantain,0.7066666666666667,1.0,0.5666666666666667,0.7,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -wheat,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -kleenex,0.6049999999999999,1.0,0.5166666666666666,0.65,1,26 -toothbrush,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -binder,0.525,1.0,0.5333333333333333,0.6666666666666666,1,26 -baseball,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -pliers,0.8,1.0,0.8,0.85,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -thins,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -package,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -k,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.7283333333333333,0.65,0.8666666666666666,0.7200000000000001,2,26 -apple,0.6683333333333332,0.8,0.6166666666666666,0.6166666666666667,1,25 -bell,0.655,1.0,0.5833333333333333,0.7,1,26 -battery,0.71,1.0,0.5499999999999999,0.6833333333333333,1,26 -jar,0.5466666666666666,1.0,0.4499999999999999,0.6,1,26 -bound,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -lettuce,0.6166666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -brush,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -scissors,0.5133333333333334,1.0,0.4999999999999999,0.6333333333333333,1,26 -lime,0.6066666666666667,1.0,0.5166666666666666,0.65,1,25 -toothpaste,0.6666666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -top,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -spiral,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -handles,0.4966666666666667,1.0,0.4999999999999999,0.6333333333333333,1,25 -camera,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -eraser,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -pitcher,0.6849999999999999,1.0,0.5666666666666667,0.7,1,26 -phone,0.78,1.0,0.7,0.7833333333333333,1,26 -stick,0.625,1.0,0.6333333333333332,0.7333333333333333,1,25 -cereal,0.45499999999999996,1.0,0.4999999999999999,0.6333333333333333,1,26 -bulb,0.8466666666666667,1.0,0.8,0.8800000000000001,2,27 -hair,0.8100000000000002,1.0,0.6833333333333333,0.7833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7333333333333333,1.0,0.65,0.75,1,26 -can,0.8516666666666666,1.0,0.8,0.8800000000000001,2,25 -coca,0.8683333333333334,1.0,0.7833333333333333,0.85,1,26 -crackers,0.7416666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -plate,0.7133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -calculator,0.805,1.0,0.7166666666666666,0.8,1,26 -tissues,0.8466666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -juice,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -pink,0.6416666666666666,1.0,0.5333333333333332,0.6666666666666666,1,25 -lemon,0.63,1.0,0.5333333333333333,0.6666666666666667,1,26 -peach,0.6383333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -bowl,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.735,1.0,0.6499999999999999,0.75,1,26 -blue,0.5933333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -used,0.475,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.6183333333333334,1.0,0.5,0.65,1,26 -ball,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.5549999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -garlic,0.6183333333333334,1.0,0.5333333333333333,0.6666666666666666,1,26 -cleaning,0.61,1.0,0.5333333333333333,0.6666666666666667,1,26 -pair,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -container,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -tomato,0.5933333333333333,1.0,0.5,0.65,1,26 -cellphone,0.3616666666666667,0.55,0.4666666666666666,0.4766666666666667,1,26 -potato,0.76,1.0,0.6166666666666666,0.7333333333333333,1,25 -light,0.9400000000000001,1.0,0.9,0.9400000000000001,2,27 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.6449382716049383 -F1-Score: 0.6816490299823633 -Precision: 0.8950617283950616 -Recall: 0.6007716049382715 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7333333333333333,1.0,0.6499999999999999,0.75,1,24 -yellow,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,6,24 -looks,0.5683333333333334,1.0,0.4833333333333333,0.6333333333333333,1,24 -keyboard,0.73,1.0,0.7166666666666666,0.8,1,26 -glue,0.715,1.0,0.6166666666666666,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -flashlight,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -cup,0.3016666666666667,0.5,0.6166666666666666,0.5166666666666667,1,25 -folded,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -jam,0.6566666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -black,1.0,1.0,1.0,1.0,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.71,1.0,0.5999999999999999,0.7166666666666667,1,26 -soccer,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -hat,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -coffee,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,25 -handle,0.7166666666666666,1.0,0.7333333333333333,0.8,1,25 -food,0.5333333333333333,1.0,0.5333333333333332,0.65,1,26 -towel,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.4083333333333333,1.0,0.4833333333333333,0.6166666666666666,1,26 -stapler,0.6333333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -onion,0.48999999999999994,0.8,0.5666666666666667,0.5666666666666667,1,26 -bag,0.6216666666666667,1.0,0.55,0.6833333333333333,1,26 -sponge,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333334,1,26 -special,0.7633333333333334,1.0,0.6333333333333333,0.75,1,26 -colgate,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -leaf,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -tube,0.7433333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -cell,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -mug,0.7883333333333333,1.0,0.7166666666666666,0.8,1,25 -yogurt,0.5666666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -plantain,0.6666666666666666,1.0,0.7,0.7833333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.7383333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -wheat,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -kleenex,0.6966666666666667,1.0,0.55,0.6833333333333333,1,26 -toothbrush,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -binder,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -baseball,0.5633333333333332,1.0,0.5499999999999999,0.6666666666666666,1,26 -pliers,0.6316666666666666,1.0,0.4833333333333332,0.6333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.5966666666666667,1.0,0.5166666666666666,0.65,1,26 -thins,0.5216666666666667,1.0,0.5,0.6333333333333333,1,26 -package,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.7466666666666667,1.0,0.7166666666666666,0.8,1,26 -jelly,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -fruit,0.7483333333333333,0.65,0.9,0.7466666666666667,2,26 -apple,0.5549999999999999,1.0,0.4833333333333333,0.6333333333333333,1,25 -bell,0.6933333333333332,1.0,0.55,0.6833333333333333,1,26 -battery,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -jar,0.7966666666666666,1.0,0.65,0.7666666666666667,1,26 -bound,0.6016666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -lettuce,0.6666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -brush,0.475,1.0,0.5,0.6333333333333333,1,26 -scissors,0.78,1.0,0.65,0.75,1,26 -lime,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333333,1,25 -toothpaste,0.725,1.0,0.6166666666666666,0.7333333333333334,1,26 -top,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -handles,0.5133333333333333,1.0,0.4666666666666666,0.6166666666666667,1,25 -camera,0.6816666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -eraser,0.6799999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,23 -banana,0.63,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -phone,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -stick,0.7249999999999999,1.0,0.6499999999999999,0.75,1,25 -cereal,0.5883333333333333,1.0,0.4999999999999999,0.65,1,26 -bulb,0.9016666666666666,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.8266666666666665,1.0,0.7333333333333333,0.8166666666666668,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7016666666666667,1.0,0.55,0.6833333333333333,1,26 -can,0.865,1.0,0.8,0.8800000000000001,2,26 -coca,0.5916666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -crackers,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.6766666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -calculator,0.4833333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -tissues,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -juice,0.8916666666666666,1.0,0.8,0.8666666666666666,1,26 -pink,0.675,1.0,0.6166666666666666,0.7333333333333333,1,26 -lemon,0.7899999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -peach,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.5266666666666666,1.0,0.5166666666666666,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -blue,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -used,0.4116666666666666,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.7933333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -ball,0.6966666666666665,1.0,0.6166666666666666,0.7166666666666666,1,25 -notebook,0.7466666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -garlic,0.5766666666666667,1.0,0.4999999999999999,0.65,1,26 -cleaning,0.5883333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -pair,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -container,0.8233333333333333,1.0,0.6833333333333333,0.7833333333333333,1,25 -tomato,0.7133333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -cellphone,0.45166666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -potato,0.7133333333333333,1.0,0.6499999999999999,0.75,1,25 -light,0.8633333333333333,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.6523148148148148 -F1-Score: 0.6884876543209877 -Precision: 0.9061728395061728 -Recall: 0.6032407407407407 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6066666666666667,1.0,0.5833333333333333,0.7,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.43833333333333335,0.95,0.5166666666666666,0.6166666666666666,1,24 -keyboard,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -glue,0.5933333333333333,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.7166666666666666,1.0,0.6499999999999999,0.75,1,26 -flashlight,0.6416666666666667,1.0,0.7,0.7833333333333333,1,26 -cup,0.45999999999999996,0.5,0.65,0.5366666666666666,1,26 -folded,0.525,1.0,0.41666666666666663,0.5833333333333333,1,26 -jam,0.5766666666666667,1.0,0.4333333333333333,0.6,1,26 -black,0.9466666666666667,0.8916666666666666,1.0,0.9323809523809524,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6799999999999999,1.0,0.7499999999999999,0.8166666666666667,1,26 -soccer,0.7416666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -hat,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -brown,0.8566666666666667,1.0,0.8,0.8800000000000001,2,25 -coffee,0.8133333333333332,1.0,0.7833333333333333,0.85,1,26 -handle,0.6466666666666667,1.0,0.6,0.7166666666666667,1,25 -food,0.7899999999999999,1.0,0.6666666666666666,0.7666666666666667,1,25 -towel,0.6549999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -chips,0.8550000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -stapler,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -onion,0.7683333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -bag,0.7166666666666667,1.0,0.5666666666666667,0.7,1,26 -sponge,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7033333333333334,1.0,0.5666666666666667,0.7,1,25 -special,0.755,1.0,0.7166666666666666,0.8,1,26 -colgate,0.6499999999999999,1.0,0.6833333333333332,0.7666666666666666,1,26 -leaf,0.7266666666666667,1.0,0.6,0.7166666666666666,1,26 -tube,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -cell,0.5399999999999999,0.55,0.7333333333333333,0.5833333333333333,1,26 -mug,0.4883333333333333,1.0,0.4333333333333334,0.5833333333333333,1,26 -yogurt,0.75,1.0,0.6166666666666666,0.7333333333333333,1,26 -plantain,0.7499999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.5650000000000001,1.0,0.4666666666666666,0.6166666666666667,1,26 -wheat,0.65,1.0,0.65,0.75,1,26 -kleenex,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -toothbrush,0.8300000000000001,1.0,0.7166666666666666,0.8,1,26 -binder,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -baseball,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -pliers,0.5933333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.5916666666666666,1.0,0.5166666666666666,0.65,1,26 -thins,0.5983333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -package,0.825,1.0,0.6833333333333333,0.7833333333333333,1,26 -k,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -jelly,0.755,1.0,0.7,0.7833333333333333,1,26 -fruit,0.795,0.7166666666666666,0.8999999999999998,0.7533333333333333,2,26 -apple,0.6849999999999999,1.0,0.5499999999999999,0.6833333333333333,1,25 -bell,0.775,1.0,0.6333333333333333,0.75,1,26 -battery,0.7133333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -jar,0.7166666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -bound,0.705,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.61,1.0,0.4833333333333333,0.6333333333333333,1,26 -brush,0.675,1.0,0.6333333333333332,0.7333333333333333,1,26 -scissors,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -lime,0.75,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.6683333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -top,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -spiral,0.4833333333333333,1.0,0.5499999999999999,0.6666666666666667,1,26 -handles,0.8083333333333332,1.0,0.7499999999999999,0.8166666666666667,1,25 -camera,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666668,1,26 -eraser,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.6166666666666666,1.0,0.5999999999999999,0.7,1,26 -pitcher,0.575,1.0,0.4833333333333332,0.6333333333333333,1,26 -phone,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -stick,0.45499999999999996,1.0,0.41666666666666663,0.5833333333333334,1,25 -cereal,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,27 -hair,0.6716666666666666,1.0,0.65,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7916666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -can,0.9266666666666665,1.0,0.9,0.9400000000000001,2,26 -coca,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -crackers,0.725,1.0,0.7499999999999999,0.8166666666666667,1,26 -plate,0.65,1.0,0.65,0.75,1,25 -calculator,0.53,1.0,0.6166666666666666,0.7166666666666666,1,26 -tissues,0.5900000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -juice,0.625,1.0,0.6166666666666666,0.7166666666666666,1,26 -pink,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -lemon,0.6466666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -peach,0.73,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.675,1.0,0.65,0.75,1,26 -blue,0.7766666666666666,1.0,0.7166666666666666,0.8,1,25 -used,0.4216666666666667,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -ball,0.7133333333333333,1.0,0.65,0.75,1,25 -notebook,0.46333333333333326,1.0,0.4999999999999999,0.6333333333333333,1,26 -garlic,0.58,1.0,0.5166666666666666,0.65,1,26 -cleaning,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -pair,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,27 -container,0.605,1.0,0.4999999999999999,0.6333333333333333,1,25 -tomato,0.6599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -cellphone,0.40499999999999997,0.55,0.5666666666666667,0.51,1,26 -potato,0.7833333333333333,1.0,0.7499999999999999,0.8166666666666667,1,25 -light,0.8733333333333334,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8683333333333334,1.0,0.8333333333333333,0.9,2,27 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.6506635802469135 -F1-Score: 0.6867195767195768 -Precision: 0.8991512345679012 -Recall: 0.6060185185185185 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7416666666666667,1.0,0.6499999999999999,0.75,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.58,1.0,0.4833333333333334,0.6333333333333333,1,24 -keyboard,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -glue,0.4666666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -flashlight,0.5966666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -cup,0.18,0.5,0.6166666666666666,0.5166666666666667,1,26 -folded,0.6583333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -jam,0.76,1.0,0.6666666666666666,0.7666666666666667,1,26 -black,0.8966666666666667,0.775,1.0,0.8590476190476191,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -soccer,0.6966666666666667,1.0,0.65,0.75,1,26 -hat,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -brown,0.8749999999999998,1.0,0.8666666666666666,0.9200000000000002,2,25 -coffee,0.71,1.0,0.5833333333333333,0.7,1,25 -handle,0.71,1.0,0.6333333333333332,0.7333333333333333,1,26 -food,0.605,1.0,0.5833333333333333,0.7,1,25 -towel,0.8099999999999999,1.0,0.7333333333333333,0.8166666666666667,1,26 -chips,0.5900000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -stapler,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -onion,0.6083333333333332,1.0,0.5499999999999999,0.6666666666666666,1,26 -bag,0.835,1.0,0.7,0.8,1,26 -sponge,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.7849999999999999,1.0,0.6499999999999999,0.75,1,25 -special,0.5666666666666667,1.0,0.4999999999999999,0.65,1,26 -colgate,0.73,1.0,0.7,0.7833333333333333,1,26 -leaf,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -tube,0.655,1.0,0.6499999999999999,0.75,1,26 -cell,0.5783333333333334,0.55,0.7666666666666666,0.5900000000000001,1,26 -mug,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333334,1,25 -yogurt,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -plantain,0.5466666666666666,1.0,0.5,0.6333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.8316666666666667,1.0,0.65,0.7666666666666667,1,26 -wheat,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -kleenex,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -toothbrush,0.7416666666666666,1.0,0.65,0.75,1,26 -binder,0.6183333333333334,1.0,0.5833333333333333,0.7,1,26 -baseball,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -pliers,0.6249999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,24 -water,0.5766666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -thins,0.655,1.0,0.6499999999999999,0.75,1,26 -package,0.605,1.0,0.5166666666666666,0.65,1,26 -k,0.7100000000000001,1.0,0.6,0.7166666666666667,1,26 -jelly,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.8150000000000001,0.7,0.9333333333333332,0.7566666666666666,2,25 -apple,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -bell,0.705,1.0,0.65,0.75,1,26 -battery,0.6483333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -jar,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -bound,0.505,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.6816666666666668,1.0,0.6166666666666666,0.7333333333333333,1,26 -brush,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -scissors,0.6633333333333333,1.0,0.65,0.75,1,26 -lime,0.7416666666666666,1.0,0.7,0.7833333333333333,1,25 -toothpaste,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -top,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.5766666666666667,1.0,0.5833333333333333,0.7,1,26 -handles,0.4716666666666667,1.0,0.45,0.6,1,25 -camera,0.39166666666666666,1.0,0.4333333333333333,0.5833333333333333,1,26 -eraser,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -pitcher,0.5883333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -phone,0.5999999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -stick,0.625,1.0,0.5999999999999999,0.7166666666666667,1,25 -cereal,0.7449999999999999,1.0,0.5666666666666667,0.7,1,26 -bulb,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.805,1.0,0.7666666666666666,0.8333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -can,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -coca,0.8099999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -crackers,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -plate,0.6433333333333333,1.0,0.5833333333333333,0.7,1,25 -calculator,0.5533333333333333,0.6,0.65,0.5566666666666668,1,26 -tissues,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -juice,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666666,1,26 -pink,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666666,1,25 -lemon,0.7216666666666667,1.0,0.7,0.7833333333333333,1,26 -peach,0.7516666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -bowl,0.6916666666666667,1.0,0.65,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7333333333333333,1.0,0.6666666666666666,0.75,1,26 -blue,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,25 -used,0.4483333333333334,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.63,1.0,0.5833333333333333,0.7,1,26 -ball,0.625,1.0,0.6,0.7166666666666667,1,25 -notebook,0.8433333333333334,1.0,0.7,0.8,1,26 -garlic,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.6516666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -pair,1.0,1.0,1.0,1.0,2,26 -container,0.85,1.0,0.7666666666666666,0.8333333333333334,1,25 -tomato,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333334,1,26 -cellphone,0.4066666666666666,0.55,0.5833333333333333,0.52,1,26 -potato,0.73,1.0,0.6666666666666666,0.7666666666666667,1,25 -light,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8633333333333333,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.652175925925926 -F1-Score: 0.6855467372134039 -Precision: 0.8946759259259259 -Recall: 0.6069444444444444 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.4966666666666667,1.0,0.5,0.6333333333333333,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.6333333333333333,0.95,0.6166666666666666,0.6833333333333333,1,24 -keyboard,0.785,1.0,0.6333333333333333,0.75,1,26 -glue,0.615,1.0,0.4833333333333333,0.6333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.8016666666666667,1.0,0.7166666666666666,0.8,1,26 -cup,0.2783333333333333,0.5,0.5666666666666667,0.5000000000000001,1,26 -folded,0.6566666666666666,1.0,0.5666666666666667,0.7,1,26 -jam,0.7066666666666667,1.0,0.5666666666666667,0.7,1,26 -black,0.8933333333333333,0.7833333333333333,1.0,0.86,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6566666666666666,1.0,0.5833333333333333,0.7,1,26 -soccer,0.7133333333333333,1.0,0.75,0.8166666666666667,1,26 -hat,0.755,1.0,0.6166666666666666,0.7333333333333333,1,26 -brown,0.8166666666666668,1.0,0.8,0.8800000000000001,2,24 -coffee,0.755,1.0,0.7,0.7833333333333333,1,26 -handle,0.6433333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -food,0.5366666666666667,1.0,0.4833333333333333,0.6333333333333333,1,25 -towel,0.7716666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -chips,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666666,1,26 -stapler,0.6166666666666666,1.0,0.5999999999999999,0.7,1,26 -onion,0.58,1.0,0.5499999999999999,0.6666666666666666,1,26 -bag,0.8266666666666668,1.0,0.7333333333333333,0.8166666666666667,1,26 -sponge,0.605,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.5883333333333333,1.0,0.4666666666666666,0.6166666666666667,1,25 -special,0.5416666666666666,1.0,0.55,0.6666666666666667,1,26 -colgate,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -leaf,0.7383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -tube,0.7433333333333333,1.0,0.5666666666666667,0.7,1,26 -cell,0.32500000000000007,0.65,0.5166666666666666,0.5133333333333333,1,26 -mug,0.6933333333333334,1.0,0.7,0.7833333333333333,1,26 -yogurt,0.7383333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -plantain,0.4916666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.475,1.0,0.4333333333333333,0.5833333333333333,1,26 -wheat,0.6083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -kleenex,0.7100000000000001,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.905,1.0,0.8333333333333333,0.8833333333333332,1,26 -binder,0.48,1.0,0.4666666666666666,0.6166666666666667,1,26 -baseball,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -pliers,0.5383333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7083333333333333,1.0,0.7166666666666666,0.8,1,26 -thins,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -package,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -k,0.58,1.0,0.4999999999999999,0.65,1,26 -jelly,0.73,1.0,0.65,0.75,1,26 -fruit,0.7583333333333333,0.75,0.8666666666666668,0.78,2,26 -apple,0.635,0.95,0.5333333333333333,0.65,1,25 -bell,0.625,1.0,0.5333333333333333,0.6666666666666666,1,26 -battery,0.55,1.0,0.5166666666666666,0.65,1,26 -jar,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -brush,0.7983333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -scissors,0.7183333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -lime,0.755,1.0,0.7,0.7833333333333333,1,25 -toothpaste,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -spiral,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -handles,0.6599999999999999,1.0,0.6499999999999999,0.75,1,25 -camera,0.78,1.0,0.7666666666666666,0.8333333333333334,1,26 -eraser,0.6633333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5633333333333334,1.0,0.5166666666666666,0.65,1,26 -pitcher,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -stick,0.7816666666666666,1.0,0.6333333333333333,0.75,1,25 -cereal,0.7583333333333333,1.0,0.6333333333333333,0.75,1,26 -bulb,0.8883333333333333,1.0,0.8666666666666668,0.9200000000000002,2,27 -hair,0.6716666666666666,1.0,0.5333333333333332,0.6666666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.58,1.0,0.5999999999999999,0.7166666666666667,1,26 -can,0.9600000000000002,1.0,0.9333333333333332,0.9600000000000002,2,25 -coca,0.6633333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -crackers,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -plate,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666667,1,25 -calculator,0.5566666666666666,0.65,0.6,0.5633333333333334,1,26 -tissues,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -juice,0.6933333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -pink,0.6216666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -lemon,0.55,1.0,0.45,0.6,1,26 -peach,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.835,1.0,0.7,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.835,1.0,0.7333333333333333,0.8166666666666668,1,26 -blue,0.5433333333333332,1.0,0.4666666666666666,0.6166666666666667,1,25 -used,0.5,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.7816666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -ball,0.39666666666666667,1.0,0.4333333333333334,0.5833333333333333,1,25 -notebook,0.5766666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -garlic,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -cleaning,0.605,1.0,0.5499999999999999,0.6833333333333333,1,26 -pair,0.9266666666666667,1.0,0.8999999999999998,0.9400000000000001,2,27 -container,0.5433333333333333,1.0,0.4666666666666666,0.6166666666666666,1,25 -tomato,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -cellphone,0.3666666666666667,0.6,0.5166666666666666,0.5033333333333333,1,26 -potato,0.7333333333333334,1.0,0.7,0.7833333333333333,1,25 -light,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9349999999999999,1.0,0.8999999999999998,0.9400000000000001,2,26 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.6421141975308642 -F1-Score: 0.6781172839506172 -Precision: 0.8966049382716049 -Recall: 0.5933641975308641 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.7933333333333333,0.9,0.7166666666666666,0.7333333333333333,1,24 -keyboard,0.45499999999999996,1.0,0.5166666666666666,0.65,1,26 -glue,0.585,1.0,0.5333333333333333,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -flashlight,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -cup,0.5033333333333333,0.5,0.6166666666666666,0.53,1,25 -folded,0.705,1.0,0.5999999999999999,0.7166666666666667,1,26 -jam,0.6166666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -black,0.9833333333333334,0.95,1.0,0.9666666666666666,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.4833333333333333,1.0,0.5,0.6333333333333333,1,26 -soccer,0.5,1.0,0.4666666666666666,0.6166666666666667,1,26 -hat,0.735,1.0,0.6499999999999999,0.75,1,26 -brown,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -coffee,0.63,1.0,0.5833333333333333,0.7,1,25 -handle,0.74,1.0,0.7166666666666666,0.8,1,26 -food,0.7266666666666667,1.0,0.65,0.75,1,24 -towel,0.6966666666666667,1.0,0.65,0.75,1,26 -chips,0.6483333333333333,1.0,0.45,0.6166666666666667,1,26 -stapler,0.7683333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -onion,0.6,0.75,0.5999999999999999,0.5833333333333333,1,26 -bag,0.6983333333333334,1.0,0.5666666666666667,0.7,1,26 -sponge,0.73,1.0,0.6333333333333333,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.6683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -special,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -colgate,0.5666666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -leaf,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -tube,0.7416666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -cell,0.7,1.0,0.5833333333333333,0.7166666666666667,1,26 -mug,0.8099999999999999,1.0,0.7666666666666666,0.8333333333333333,1,25 -yogurt,0.725,1.0,0.6833333333333333,0.7666666666666666,1,26 -plantain,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.6083333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -wheat,0.55,1.0,0.6,0.7,1,26 -kleenex,0.6933333333333334,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -binder,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -baseball,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.725,1.0,0.65,0.75,1,26 -thins,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -package,0.71,1.0,0.5833333333333333,0.7166666666666667,1,26 -k,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -jelly,0.6,1.0,0.5499999999999999,0.6666666666666666,1,26 -fruit,0.7433333333333333,0.7,0.8333333333333334,0.7266666666666667,2,26 -apple,0.7333333333333332,0.85,0.7333333333333333,0.7,1,25 -bell,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -battery,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -jar,0.4416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -bound,0.6716666666666667,1.0,0.6,0.7166666666666667,1,26 -lettuce,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -brush,0.5299999999999999,1.0,0.4499999999999999,0.6,1,26 -scissors,0.4766666666666667,1.0,0.5166666666666666,0.65,1,26 -lime,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -toothpaste,0.7216666666666666,1.0,0.7,0.7833333333333333,1,26 -top,0.655,1.0,0.5333333333333333,0.6666666666666667,1,26 -spiral,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -handles,0.71,1.0,0.5499999999999999,0.6833333333333333,1,25 -camera,0.38,1.0,0.4333333333333333,0.5833333333333333,1,26 -eraser,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.8333333333333333,1.0,0.8333333333333334,0.8833333333333332,1,26 -pitcher,0.5383333333333333,1.0,0.5,0.6333333333333333,1,26 -phone,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -stick,0.5666666666666667,1.0,0.5166666666666666,0.65,1,25 -cereal,0.5916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -bulb,0.9083333333333332,1.0,0.9,0.9400000000000001,2,27 -hair,0.845,1.0,0.6833333333333333,0.7833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7,1.0,0.6499999999999999,0.75,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -coca,0.6649999999999999,1.0,0.4833333333333332,0.6333333333333333,1,26 -crackers,0.6049999999999999,1.0,0.5833333333333333,0.7,1,26 -plate,0.6883333333333332,1.0,0.5666666666666667,0.7,1,25 -calculator,0.45999999999999996,0.55,0.6333333333333333,0.5366666666666667,1,26 -tissues,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -juice,0.635,1.0,0.5666666666666667,0.7,1,26 -pink,0.75,1.0,0.7166666666666666,0.8,1,25 -lemon,0.5933333333333334,1.0,0.5833333333333333,0.7,1,26 -peach,0.8800000000000001,1.0,0.8,0.8666666666666668,1,26 -bowl,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.71,1.0,0.65,0.75,1,26 -blue,0.53,1.0,0.5499999999999999,0.6666666666666667,1,25 -used,0.5816666666666667,0.0,0.0,0.0,1,22 -energizer,0,0,0,0,1,26 -pear,0.7183333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -ball,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,25 -notebook,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.6016666666666667,1.0,0.5166666666666666,0.65,1,26 -cleaning,0.7366666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -pair,0.8683333333333334,1.0,0.8333333333333334,0.9000000000000001,2,27 -container,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -tomato,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -cellphone,0.6900000000000001,1.0,0.5499999999999999,0.6833333333333333,1,26 -potato,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -light,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.6512345679012346 -F1-Score: 0.6848456790123457 -Precision: 0.9 -Recall: 0.6026234567901234 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6683333333333332,1.0,0.5999999999999999,0.7166666666666667,1,24 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,26 -looks,0.5599999999999999,0.85,0.5999999999999999,0.6,1,24 -keyboard,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -glue,0.6799999999999999,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.665,1.0,0.5499999999999999,0.6833333333333333,1,26 -flashlight,0.6666666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -cup,0.1933333333333333,0.5,0.4666666666666666,0.4666666666666667,1,26 -folded,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -jam,0.76,1.0,0.7166666666666666,0.8,1,26 -black,0.8783333333333333,0.7333333333333333,1.0,0.8266666666666665,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6016666666666667,1.0,0.4833333333333334,0.6333333333333333,1,26 -soccer,0.7933333333333333,1.0,0.6333333333333333,0.75,1,26 -hat,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -brown,0.8766666666666666,1.0,0.8333333333333333,0.9,2,25 -coffee,0.6133333333333333,1.0,0.5833333333333333,0.7,1,25 -handle,0.5383333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -food,0.73,1.0,0.7166666666666666,0.8,1,26 -towel,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -chips,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -stapler,0.5666666666666667,1.0,0.5333333333333332,0.65,1,26 -onion,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -bag,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.7183333333333334,1.0,0.6499999999999999,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.825,1.0,0.8166666666666667,0.8666666666666666,1,25 -special,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -colgate,0.6766666666666666,1.0,0.5666666666666667,0.7,1,26 -leaf,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -cell,0.5783333333333334,0.55,0.6333333333333333,0.55,1,26 -mug,0.755,1.0,0.7,0.7833333333333333,1,25 -yogurt,0.6316666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -plantain,0.5583333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.7183333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -wheat,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -kleenex,0.5566666666666666,1.0,0.5166666666666666,0.65,1,26 -toothbrush,0.6599999999999999,1.0,0.7,0.7833333333333334,1,26 -binder,0.6066666666666667,1.0,0.5833333333333333,0.7,1,26 -baseball,0.61,1.0,0.5666666666666667,0.6833333333333333,1,26 -pliers,0.6966666666666667,1.0,0.65,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.5916666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -thins,0.6666666666666666,1.0,0.5666666666666667,0.7,1,26 -package,0.8266666666666665,1.0,0.65,0.7666666666666667,1,26 -k,0.8833333333333334,1.0,0.8333333333333334,0.8833333333333332,1,26 -jelly,0.7633333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -fruit,0.7533333333333333,0.7333333333333333,0.8666666666666666,0.7500000000000001,2,26 -apple,0.6849999999999999,0.9,0.65,0.7,1,25 -bell,0.5166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -battery,0.5633333333333332,1.0,0.5333333333333332,0.6666666666666666,1,26 -jar,0.53,1.0,0.4666666666666666,0.6166666666666666,1,26 -bound,0.48,1.0,0.4666666666666666,0.6166666666666667,1,26 -lettuce,0.7016666666666667,1.0,0.6,0.7166666666666667,1,26 -brush,0.6066666666666667,1.0,0.5166666666666666,0.65,1,26 -scissors,0.585,1.0,0.5833333333333333,0.7,1,26 -lime,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -toothpaste,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -top,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.78,1.0,0.7166666666666666,0.8,1,26 -handles,0.6433333333333333,1.0,0.5833333333333333,0.7,1,25 -camera,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -eraser,0.6416666666666666,1.0,0.65,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -pitcher,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -phone,0.48500000000000004,1.0,0.4666666666666666,0.6166666666666667,1,26 -stick,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -cereal,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -bulb,0.8600000000000001,1.0,0.8333333333333333,0.9,2,27 -hair,0.5549999999999999,1.0,0.4999999999999999,0.6333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5933333333333334,1.0,0.4999999999999999,0.65,1,26 -can,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -coca,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -crackers,0.575,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.7233333333333334,1.0,0.5833333333333333,0.7166666666666667,1,24 -calculator,0.40499999999999997,0.55,0.5333333333333333,0.5033333333333333,1,26 -tissues,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -juice,0.7383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -pink,0.6466666666666666,1.0,0.6333333333333332,0.7333333333333333,1,25 -lemon,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -peach,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -bowl,0.6333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -blue,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -used,0.3833333333333333,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.61,1.0,0.55,0.6833333333333333,1,26 -ball,0.5883333333333333,1.0,0.5833333333333333,0.7,1,25 -notebook,0.7216666666666666,1.0,0.7,0.7833333333333333,1,26 -garlic,0.6266666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -cleaning,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.8550000000000001,1.0,0.8333333333333333,0.9,2,27 -container,0.8233333333333333,1.0,0.6833333333333333,0.7833333333333333,1,25 -tomato,0.7183333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -cellphone,0.44333333333333336,0.55,0.6166666666666666,0.54,1,26 -potato,0.5983333333333334,1.0,0.4,0.5666666666666667,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.825,1.0,0.8,0.8800000000000001,2,26 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.6321604938271604 -F1-Score: 0.6748456790123455 -Precision: 0.8913580246913582 -Recall: 0.593364197530864 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6016666666666667,1.0,0.5833333333333333,0.7,1,24 -yellow,0.9333333333333333,0.85,1.0,0.9066666666666666,6,24 -looks,0.6133333333333333,0.8,0.6833333333333332,0.6333333333333333,1,24 -keyboard,0.8133333333333332,1.0,0.75,0.8166666666666667,1,26 -glue,0.7383333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -flashlight,0.655,1.0,0.6,0.7166666666666667,1,26 -cup,0.2816666666666666,0.5,0.6,0.52,1,26 -folded,0.6583333333333333,1.0,0.6,0.7166666666666666,1,26 -jam,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333334,1,26 -black,0.8933333333333333,0.7916666666666666,1.0,0.8704761904761904,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7816666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -soccer,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666668,1,26 -hat,0.5883333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -brown,0.93,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.6183333333333334,1.0,0.55,0.6833333333333333,1,25 -handle,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -food,0.425,1.0,0.4833333333333332,0.6166666666666666,1,24 -towel,0.635,1.0,0.5333333333333333,0.6666666666666667,1,26 -chips,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -stapler,0.6966666666666667,1.0,0.7,0.7833333333333333,1,26 -onion,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.6716666666666666,1.0,0.5166666666666666,0.65,1,26 -sponge,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.63,1.0,0.5999999999999999,0.7166666666666667,1,25 -special,0.8083333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -colgate,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -leaf,0.735,1.0,0.6499999999999999,0.75,1,26 -tube,0.8483333333333334,1.0,0.7,0.8,1,26 -cell,0.635,1.0,0.55,0.6833333333333333,1,26 -mug,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -yogurt,0.5666666666666667,1.0,0.5999999999999999,0.7,1,26 -plantain,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -kleenex,0.65,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -baseball,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -pliers,0.735,1.0,0.6166666666666666,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -thins,0.7633333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -package,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.78,1.0,0.6333333333333333,0.75,1,26 -jelly,0.825,1.0,0.7499999999999999,0.8166666666666667,1,26 -fruit,0.7533333333333333,0.7,0.9,0.76,2,26 -apple,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333334,1,25 -bell,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -battery,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -jar,0.53,1.0,0.4833333333333333,0.6333333333333334,1,26 -bound,0.755,1.0,0.6833333333333333,0.7833333333333333,1,26 -lettuce,0.8300000000000001,1.0,0.75,0.8166666666666667,1,26 -brush,0.5833333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -scissors,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333334,1,26 -lime,0.8016666666666667,1.0,0.7333333333333333,0.8166666666666667,1,25 -toothpaste,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -top,0.7716666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -spiral,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -handles,0.7649999999999999,1.0,0.6166666666666666,0.7333333333333334,1,25 -camera,0.53,1.0,0.4666666666666666,0.6166666666666666,1,26 -eraser,0.575,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6249999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -pitcher,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -phone,0.7183333333333334,1.0,0.65,0.75,1,26 -stick,0.715,1.0,0.5666666666666667,0.7,1,25 -cereal,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -bulb,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -hair,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.64,1.0,0.5833333333333333,0.7,1,26 -can,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -coca,0.7666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -crackers,0.7233333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -plate,0.7166666666666667,1.0,0.6333333333333333,0.75,1,25 -calculator,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -tissues,0.7466666666666666,1.0,0.65,0.75,1,26 -juice,0.5833333333333333,1.0,0.6,0.7166666666666667,1,26 -pink,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -lemon,0.6799999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -peach,0.51,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.6016666666666666,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -blue,0.6733333333333333,1.0,0.5833333333333333,0.7,1,25 -used,0.4766666666666667,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.6466666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -ball,0.7966666666666666,1.0,0.7,0.7833333333333333,1,25 -notebook,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -garlic,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -cleaning,0.9,1.0,0.8333333333333333,0.8833333333333332,1,26 -pair,0.8716666666666667,1.0,0.8333333333333333,0.9,2,26 -container,0.7633333333333334,1.0,0.6333333333333333,0.75,1,26 -tomato,0.615,1.0,0.5333333333333333,0.6666666666666667,1,26 -cellphone,0.4,1.0,0.4999999999999999,0.6333333333333333,1,26 -potato,0.755,1.0,0.6499999999999999,0.75,1,25 -light,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9016666666666667,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.6621913580246913 -F1-Score: 0.6929673721340388 -Precision: 0.9040895061728395 -Recall: 0.6112654320987653 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.4883333333333333,1.0,0.4666666666666666,0.6166666666666667,1,25 -yellow,0.93,0.8333333333333333,1.0,0.8933333333333333,6,24 -looks,0.6966666666666667,0.9,0.6666666666666666,0.7,1,24 -keyboard,0.6666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -glue,0.5399999999999999,1.0,0.4833333333333332,0.6333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.8550000000000001,1.0,0.8333333333333333,0.8833333333333332,1,26 -flashlight,0.8150000000000001,1.0,0.6833333333333333,0.7833333333333333,1,26 -cup,0.5316666666666666,0.5,0.7666666666666666,0.5800000000000001,1,26 -folded,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -jam,0.7583333333333333,1.0,0.65,0.75,1,26 -black,0.93,0.85,1.0,0.9,6,23 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.58,1.0,0.6333333333333333,0.7333333333333333,1,26 -soccer,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -hat,0.3666666666666667,1.0,0.4833333333333332,0.6166666666666666,1,26 -brown,0.8766666666666666,1.0,0.8333333333333334,0.9000000000000001,2,25 -coffee,0.5933333333333334,1.0,0.6333333333333332,0.7333333333333333,1,26 -handle,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -food,0.7083333333333333,1.0,0.6166666666666666,0.7333333333333333,1,24 -towel,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -chips,0.425,1.0,0.4,0.5666666666666667,1,26 -stapler,0.7,1.0,0.7,0.7833333333333333,1,26 -onion,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -bag,0.8016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.7466666666666667,1.0,0.6,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7433333333333334,1.0,0.6333333333333333,0.75,1,25 -special,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -colgate,0.635,1.0,0.5833333333333333,0.7,1,26 -leaf,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -tube,0.4416666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -cell,0.4416666666666667,0.55,0.5499999999999999,0.5133333333333333,1,26 -mug,0.6916666666666667,1.0,0.6,0.7166666666666667,1,26 -yogurt,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -plantain,0.4583333333333333,1.0,0.41666666666666663,0.5833333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.7633333333333334,1.0,0.7166666666666666,0.8,1,26 -wheat,0.6666666666666667,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.7083333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -toothbrush,0.69,1.0,0.55,0.6833333333333333,1,26 -binder,0.8150000000000001,1.0,0.6833333333333333,0.7833333333333333,1,26 -baseball,0.6966666666666665,1.0,0.5999999999999999,0.7166666666666666,1,26 -pliers,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6499999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -package,0.65,1.0,0.5999999999999999,0.7166666666666667,1,26 -k,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -jelly,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -fruit,0.8150000000000001,0.7,0.9333333333333332,0.7666666666666667,2,25 -apple,0.58,1.0,0.55,0.6833333333333333,1,26 -bell,0.6849999999999999,1.0,0.5833333333333333,0.7,1,26 -battery,0.705,1.0,0.6,0.7166666666666667,1,26 -jar,0.7133333333333333,1.0,0.65,0.75,1,26 -bound,0.5683333333333332,1.0,0.4833333333333333,0.6333333333333333,1,26 -lettuce,0.6966666666666665,1.0,0.6833333333333333,0.7666666666666667,1,26 -brush,0.7466666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -scissors,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -lime,0.75,1.0,0.6833333333333333,0.7833333333333334,1,25 -toothpaste,0.735,1.0,0.5833333333333333,0.7166666666666667,1,26 -top,0.7016666666666667,1.0,0.5833333333333333,0.7,1,26 -spiral,0.5683333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -handles,0.7133333333333333,1.0,0.6499999999999999,0.75,1,25 -camera,0.6216666666666667,1.0,0.65,0.75,1,26 -eraser,0.7633333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6483333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -pitcher,0.6466666666666667,1.0,0.55,0.6833333333333333,1,26 -phone,0.5716666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -stick,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,25 -cereal,0.71,1.0,0.6,0.7166666666666667,1,26 -bulb,0.8799999999999999,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.6849999999999999,1.0,0.6,0.7166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -can,0.8916666666666666,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -crackers,0.6683333333333333,1.0,0.6,0.7166666666666667,1,26 -plate,0.755,1.0,0.7166666666666666,0.8,1,25 -calculator,0.6583333333333333,1.0,0.6499999999999999,0.75,1,26 -tissues,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -juice,0.5966666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -pink,0.5166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -lemon,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -peach,0.49333333333333335,1.0,0.4999999999999999,0.6333333333333333,1,26 -bowl,0.63,1.0,0.5666666666666667,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -blue,0.7999999999999999,1.0,0.8166666666666667,0.8666666666666666,1,25 -used,0.36666666666666664,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -ball,0.7266666666666667,1.0,0.65,0.75,1,25 -notebook,0.6133333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -garlic,0.805,1.0,0.6666666666666666,0.7666666666666667,1,26 -cleaning,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.8766666666666666,1.0,0.8333333333333333,0.9,2,27 -container,0.6883333333333332,1.0,0.65,0.75,1,25 -tomato,0.655,1.0,0.6499999999999999,0.75,1,26 -cellphone,0.28500000000000003,0.75,0.4999999999999999,0.5233333333333332,1,26 -potato,0.575,1.0,0.5166666666666666,0.65,1,25 -light,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9333333333333332,1.0,0.9333333333333332,0.9600000000000002,2,26 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.6407561728395061 -F1-Score: 0.6823148148148148 -Precision: 0.8989197530864198 -Recall: 0.5996913580246913 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6666666666666666,1.0,0.7333333333333333,0.8,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.7,0.8,0.75,0.6833333333333333,1,24 -keyboard,0.53,1.0,0.4999999999999999,0.6333333333333333,1,26 -glue,0.61,1.0,0.5499999999999999,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7333333333333333,1.0,0.75,0.8166666666666667,1,26 -flashlight,0.7316666666666667,1.0,0.5333333333333333,0.6833333333333333,1,26 -cup,0.4616666666666667,0.5,0.65,0.5366666666666667,1,26 -folded,0.8883333333333333,1.0,0.8,0.8666666666666666,1,26 -jam,0.725,1.0,0.75,0.8166666666666667,1,26 -black,0.86,0.7083333333333333,1.0,0.8171428571428571,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7233333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -soccer,0.5883333333333334,1.0,0.5833333333333333,0.7,1,26 -hat,0.6416666666666667,1.0,0.6499999999999999,0.75,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.6799999999999999,1.0,0.5833333333333333,0.7,1,25 -handle,0.6799999999999999,1.0,0.6,0.7166666666666667,1,25 -food,0.7816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -towel,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -chips,0.6683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.5599999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.8133333333333332,1.0,0.7499999999999999,0.8166666666666667,1,26 -bag,0.66,1.0,0.5499999999999999,0.6833333333333333,1,26 -sponge,0.755,1.0,0.6166666666666666,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.49333333333333335,1.0,0.41666666666666663,0.5833333333333333,1,25 -special,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -colgate,0.76,1.0,0.6166666666666666,0.7333333333333334,1,26 -leaf,0.5133333333333333,1.0,0.4499999999999999,0.6,1,26 -tube,0.7233333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -cell,0.36166666666666664,0.55,0.4833333333333332,0.4866666666666667,1,26 -mug,0.6666666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -yogurt,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -plantain,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.73,1.0,0.7,0.7833333333333333,1,26 -wheat,0.3716666666666667,1.0,0.4333333333333334,0.5833333333333333,1,26 -kleenex,0.775,1.0,0.6666666666666666,0.7666666666666667,1,26 -toothbrush,0.7333333333333333,1.0,0.7166666666666666,0.8,1,26 -binder,0.8083333333333332,1.0,0.7833333333333333,0.85,1,26 -baseball,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -pliers,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.79,1.0,0.6666666666666666,0.7666666666666666,1,26 -thins,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -package,0.755,1.0,0.65,0.75,1,26 -k,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.6433333333333333,1.0,0.5,0.65,1,26 -fruit,0.7566666666666666,0.7,0.8666666666666666,0.7333333333333334,2,26 -apple,0.665,0.8,0.6499999999999999,0.6333333333333333,1,25 -bell,0.8466666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -battery,0.6133333333333333,1.0,0.6499999999999999,0.75,1,26 -jar,0.725,1.0,0.7,0.7833333333333333,1,26 -bound,0.53,1.0,0.5333333333333333,0.6666666666666667,1,26 -lettuce,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666666,1,26 -brush,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -scissors,0.5966666666666667,1.0,0.5,0.65,1,26 -lime,0.705,1.0,0.65,0.75,1,25 -toothpaste,0.5433333333333332,1.0,0.5166666666666666,0.65,1,26 -top,0.5666666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -spiral,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -handles,0.575,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.7433333333333334,1.0,0.5666666666666667,0.7,1,26 -eraser,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -pitcher,0.725,1.0,0.7,0.7833333333333333,1,26 -phone,0.8883333333333333,1.0,0.8,0.8666666666666666,1,26 -stick,0.6666666666666666,1.0,0.7,0.7833333333333333,1,25 -cereal,0.7016666666666667,1.0,0.6499999999999999,0.75,1,26 -bulb,0.9400000000000001,1.0,0.9,0.9400000000000001,2,26 -hair,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -can,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -coca,0.705,1.0,0.6499999999999999,0.75,1,26 -crackers,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -plate,0.6566666666666666,1.0,0.5,0.65,1,25 -calculator,0.6366666666666667,0.6,0.6833333333333333,0.5900000000000001,1,26 -tissues,0.6833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -juice,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -pink,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,25 -lemon,0.45499999999999996,1.0,0.5166666666666666,0.65,1,26 -peach,0.6833333333333333,1.0,0.7333333333333333,0.8,1,26 -bowl,0.6249999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.58,1.0,0.6166666666666666,0.7166666666666666,1,26 -blue,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666668,1,25 -used,0.3883333333333333,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.7566666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -ball,0.6883333333333332,1.0,0.5833333333333333,0.7,1,25 -notebook,0.75,1.0,0.75,0.8166666666666667,1,26 -garlic,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -cleaning,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666666,1,26 -pair,0.8683333333333334,1.0,0.8333333333333333,0.9,2,26 -container,0.73,1.0,0.7,0.7833333333333333,1,25 -tomato,0.5083333333333333,1.0,0.5166666666666666,0.65,1,26 -cellphone,0.3433333333333334,0.7,0.5333333333333333,0.5333333333333333,1,26 -potato,0.7333333333333333,1.0,0.6166666666666666,0.7333333333333334,1,25 -light,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8683333333333332,1.0,0.8333333333333334,0.9000000000000001,2,26 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.6541512345679013 -F1-Score: 0.6905291005291005 -Precision: 0.8922067901234568 -Recall: 0.6148148148148147 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5933333333333334,1.0,0.5166666666666666,0.65,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.7516666666666667,0.9,0.65,0.6833333333333333,1,24 -keyboard,0.6666666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -glue,0.8666666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.4833333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -flashlight,0.6483333333333333,1.0,0.6,0.7166666666666667,1,26 -cup,0.3866666666666667,0.5,0.6,0.52,1,26 -folded,0.4966666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -jam,0.7566666666666666,1.0,0.5833333333333333,0.7166666666666667,1,26 -black,0.8266666666666668,0.6583333333333333,1.0,0.7904761904761906,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -soccer,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -hat,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.5633333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -handle,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -food,0.5766666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -towel,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -stapler,0.6966666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -onion,0.8216666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -bag,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -sponge,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7266666666666667,1.0,0.5999999999999999,0.7166666666666667,1,25 -special,0.5133333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -colgate,0.9216666666666666,1.0,0.85,0.9,1,26 -leaf,0.4716666666666667,1.0,0.41666666666666663,0.5833333333333333,1,26 -tube,0.9166666666666666,1.0,0.85,0.9,1,26 -cell,0.44833333333333336,0.55,0.6499999999999999,0.5466666666666666,1,26 -mug,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -yogurt,0.5516666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -plantain,0.53,1.0,0.45,0.6,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.65,1.0,0.5833333333333333,0.7,1,26 -wheat,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -toothbrush,0.625,1.0,0.5833333333333333,0.7,1,26 -binder,0.655,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -pliers,0.7716666666666667,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5,1.0,0.5499999999999999,0.6666666666666666,1,26 -thins,0.6966666666666667,1.0,0.65,0.75,1,26 -package,0.675,1.0,0.6333333333333333,0.7333333333333334,1,26 -k,0.7916666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -jelly,0.4583333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -fruit,0.7683333333333333,0.8666666666666666,0.8333333333333333,0.8100000000000002,2,25 -apple,0.8333333333333334,0.8,0.8333333333333333,0.75,1,25 -bell,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -battery,0.6233333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -jar,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -bound,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -lettuce,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -brush,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -lime,0.635,1.0,0.4999999999999999,0.65,1,25 -toothpaste,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -top,0.6183333333333334,1.0,0.5,0.65,1,26 -spiral,0.65,1.0,0.5666666666666667,0.7,1,26 -handles,0.6833333333333333,1.0,0.5999999999999999,0.7166666666666667,1,25 -camera,0.7649999999999999,1.0,0.5833333333333333,0.7166666666666667,1,26 -eraser,0.5133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.575,1.0,0.4999999999999999,0.6333333333333333,1,26 -pitcher,0.67,1.0,0.5,0.65,1,26 -phone,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -stick,0.6433333333333333,1.0,0.55,0.6833333333333333,1,25 -cereal,0.5249999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -bulb,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -hair,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -can,0.8666666666666666,1.0,0.8333333333333333,0.9,2,24 -coca,0.6033333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -plate,0.86,1.0,0.7333333333333333,0.8166666666666668,1,25 -calculator,0.46499999999999997,0.7,0.6166666666666666,0.5566666666666668,1,26 -tissues,0.7083333333333334,1.0,0.5666666666666667,0.7,1,26 -juice,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -pink,0.755,1.0,0.7166666666666666,0.8,1,25 -lemon,0.6583333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -peach,0.6216666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -bowl,0.7733333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -blue,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666668,1,25 -used,0.485,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.5666666666666667,1.0,0.5833333333333333,0.7,1,26 -ball,0.655,1.0,0.65,0.75,1,25 -notebook,0.7833333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -garlic,0.6716666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -cleaning,0.805,1.0,0.7166666666666666,0.8,1,26 -pair,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -container,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666668,1,25 -tomato,0.755,1.0,0.7166666666666666,0.8,1,26 -cellphone,0.2583333333333333,0.6,0.4333333333333333,0.4666666666666667,1,26 -potato,0.755,1.0,0.7166666666666666,0.8,1,25 -light,0.8766666666666666,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9066666666666666,1.0,0.8666666666666666,0.9200000000000002,2,26 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.6441666666666666 -F1-Score: 0.6797266313932981 -Precision: 0.894212962962963 -Recall: 0.5989197530864198 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.9216666666666666,1.0,0.85,0.9,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.5833333333333333,1.0,0.4666666666666666,0.6166666666666667,1,24 -keyboard,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -glue,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -flashlight,0.6016666666666666,1.0,0.4333333333333333,0.6,1,26 -cup,0.48666666666666664,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -jam,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -black,0.8216666666666667,0.625,1.0,0.759047619047619,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -soccer,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -hat,0.5466666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -brown,0.8916666666666666,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.8683333333333334,1.0,0.7833333333333333,0.85,1,25 -handle,0.5416666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -food,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -towel,0.7166666666666666,1.0,0.6,0.7166666666666666,1,26 -chips,0.5,1.0,0.5166666666666666,0.65,1,26 -stapler,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -onion,0.5166666666666666,1.0,0.4833333333333332,0.6333333333333333,1,26 -bag,0.6416666666666666,1.0,0.5166666666666666,0.65,1,26 -sponge,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.36833333333333335,1.0,0.4,0.5666666666666667,1,25 -special,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -colgate,0.8400000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -leaf,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -tube,0.54,1.0,0.5333333333333333,0.6666666666666666,1,26 -cell,0.5016666666666667,0.6,0.5499999999999999,0.5233333333333333,1,26 -mug,0.7466666666666667,1.0,0.65,0.75,1,25 -yogurt,0.6583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -plantain,0.6933333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.7716666666666667,1.0,0.6499999999999999,0.75,1,26 -wheat,0.5916666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -kleenex,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -toothbrush,0.755,1.0,0.7,0.7833333333333333,1,26 -binder,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -baseball,0.705,1.0,0.65,0.75,1,26 -pliers,0.5933333333333333,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -thins,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -package,0.7466666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.54,1.0,0.5833333333333333,0.7,1,26 -jelly,0.6866666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -fruit,0.7983333333333332,0.75,0.9,0.7733333333333333,2,25 -apple,0.635,1.0,0.5833333333333333,0.7,1,25 -bell,0.5266666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -battery,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -jar,0.5416666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -lettuce,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -brush,0.86,1.0,0.7666666666666666,0.8333333333333333,1,26 -scissors,0.5233333333333333,1.0,0.5166666666666666,0.65,1,26 -lime,0.8,1.0,0.7833333333333333,0.85,1,25 -toothpaste,0.7150000000000001,1.0,0.6,0.7166666666666667,1,26 -top,0.575,1.0,0.5166666666666666,0.65,1,26 -spiral,0.835,1.0,0.65,0.7666666666666667,1,26 -handles,0.6333333333333333,1.0,0.5833333333333333,0.7,1,25 -camera,0.575,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.8016666666666665,1.0,0.7166666666666666,0.8,1,26 -pitcher,0.6583333333333332,1.0,0.5833333333333333,0.7,1,26 -phone,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -stick,0.7883333333333333,1.0,0.7,0.7833333333333333,1,25 -cereal,0.5416666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.6133333333333334,1.0,0.4333333333333333,0.6,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.635,1.0,0.5166666666666666,0.6666666666666667,1,26 -can,0.8683333333333334,1.0,0.8333333333333333,0.9,2,24 -coca,0.7350000000000001,1.0,0.6666666666666666,0.7666666666666667,1,26 -crackers,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -plate,0.65,1.0,0.6499999999999999,0.75,1,24 -calculator,0.55,0.7,0.7,0.6,1,26 -tissues,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -juice,0.6183333333333334,1.0,0.5166666666666666,0.65,1,26 -pink,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -lemon,0.5333333333333332,1.0,0.5499999999999999,0.6666666666666666,1,26 -peach,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -bowl,0.7016666666666667,1.0,0.6499999999999999,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7,1.0,0.7499999999999999,0.8166666666666667,1,26 -blue,0.705,1.0,0.65,0.75,1,25 -used,0.28666666666666674,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.7333333333333334,1.0,0.7333333333333333,0.8,1,26 -ball,0.7933333333333333,1.0,0.6333333333333333,0.75,1,25 -notebook,0.4833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -garlic,0.6933333333333332,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.5833333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.9400000000000001,1.0,0.9,0.9400000000000001,2,26 -container,0.8216666666666667,1.0,0.6833333333333333,0.7833333333333333,1,25 -tomato,0.5666666666666667,1.0,0.5999999999999999,0.7,1,26 -cellphone,0.6133333333333334,0.6,0.7166666666666666,0.5900000000000001,1,26 -potato,0.76,1.0,0.65,0.75,1,25 -light,0.905,1.0,0.8666666666666666,0.9199999999999999,2,27 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.6476697530864198 -F1-Score: 0.6835714285714286 -Precision: 0.8960648148148148 -Recall: 0.604320987654321 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.76,1.0,0.6666666666666666,0.7666666666666666,1,24 -yellow,1.0,1.0,1.0,1.0,6,26 -looks,0.7133333333333333,1.0,0.6666666666666666,0.7666666666666666,1,24 -keyboard,0.7333333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -glue,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6583333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -flashlight,0.5583333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -cup,0.29833333333333334,0.5,0.6833333333333333,0.5433333333333333,1,26 -folded,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -jam,0.7466666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -black,0.9133333333333333,0.7833333333333333,1.0,0.86,6,20 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.36666666666666664,1.0,0.4666666666666666,0.6,1,26 -soccer,0.6216666666666667,1.0,0.6499999999999999,0.75,1,26 -hat,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -brown,0.93,1.0,0.9,0.9400000000000001,2,25 -coffee,0.6633333333333333,1.0,0.5833333333333333,0.7,1,25 -handle,0.7466666666666667,1.0,0.65,0.75,1,25 -food,0.7433333333333334,1.0,0.6333333333333333,0.75,1,26 -towel,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -chips,0.7183333333333333,1.0,0.65,0.75,1,26 -stapler,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -onion,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -bag,0.73,1.0,0.6166666666666666,0.7333333333333334,1,26 -sponge,0.5633333333333332,1.0,0.4833333333333333,0.6333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -special,0.6266666666666667,1.0,0.5166666666666666,0.65,1,26 -colgate,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -leaf,0.7816666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -tube,0.61,1.0,0.55,0.6833333333333333,1,26 -cell,0.5616666666666666,0.7,0.6166666666666666,0.5833333333333333,1,26 -mug,0.6583333333333333,1.0,0.65,0.75,1,25 -yogurt,0.7216666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -plantain,0.705,1.0,0.7,0.7833333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,27 -pepper,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -wheat,0.6749999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.53,1.0,0.6166666666666666,0.7166666666666666,1,26 -toothbrush,0.6166666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -binder,0.525,1.0,0.4666666666666666,0.6166666666666667,1,26 -baseball,0.725,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.655,1.0,0.5833333333333333,0.7,1,26 -thins,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -package,0.525,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -fruit,0.8516666666666666,0.9166666666666666,0.8666666666666666,0.8666666666666666,2,26 -apple,0.5599999999999999,1.0,0.5333333333333333,0.6666666666666666,1,25 -bell,0.85,1.0,0.8166666666666667,0.8666666666666668,1,26 -battery,0.655,1.0,0.5333333333333333,0.6666666666666667,1,26 -jar,0.75,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -brush,0.7216666666666667,1.0,0.6,0.7166666666666666,1,26 -scissors,0.605,1.0,0.5833333333333333,0.7,1,26 -lime,0.6933333333333332,1.0,0.6333333333333333,0.7333333333333333,1,25 -toothpaste,0.44666666666666666,1.0,0.4499999999999999,0.6,1,26 -top,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -spiral,0.5333333333333333,1.0,0.5333333333333333,0.65,1,26 -handles,0.53,1.0,0.4666666666666666,0.6166666666666666,1,25 -camera,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -eraser,0.8133333333333332,1.0,0.7333333333333333,0.8166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.7166666666666666,1.0,0.65,0.75,1,26 -pitcher,0.8099999999999999,1.0,0.7333333333333333,0.8166666666666667,1,26 -phone,0.71,1.0,0.5999999999999999,0.7166666666666667,1,26 -stick,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -cereal,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -bulb,0.9349999999999999,1.0,0.9,0.9400000000000001,2,27 -hair,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7066666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -can,1.0,1.0,1.0,1.0,2,25 -coca,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -crackers,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -plate,0.5633333333333334,1.0,0.4833333333333333,0.6333333333333334,1,25 -calculator,0.6,1.0,0.6833333333333333,0.7666666666666666,1,26 -tissues,0.7833333333333333,1.0,0.7999999999999999,0.85,1,26 -juice,0.5716666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -pink,0.6516666666666666,1.0,0.5833333333333333,0.7,1,25 -lemon,0.6983333333333334,1.0,0.5666666666666667,0.7,1,26 -peach,0.4966666666666667,1.0,0.4499999999999999,0.6,1,26 -bowl,0.725,1.0,0.5666666666666667,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7783333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -blue,0.625,1.0,0.45,0.6166666666666667,1,25 -used,0.32333333333333336,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.7999999999999999,1.0,0.8166666666666667,0.8666666666666666,1,25 -notebook,0.655,1.0,0.5333333333333333,0.6666666666666667,1,26 -garlic,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -cleaning,0.7183333333333334,1.0,0.5666666666666667,0.7,1,26 -pair,0.8633333333333333,1.0,0.8333333333333333,0.9,2,27 -container,0.47166666666666657,1.0,0.4999999999999999,0.6333333333333333,1,25 -tomato,0.675,1.0,0.7,0.7833333333333333,1,26 -cellphone,0.5066666666666666,0.65,0.6333333333333333,0.5633333333333334,1,26 -potato,0.6183333333333334,1.0,0.5333333333333333,0.6666666666666667,1,25 -light,0.93,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.643996913580247 -F1-Score: 0.6832716049382717 -Precision: 0.9032407407407407 -Recall: 0.5987654320987653 diff --git a/Validation/UW_raw_75_object_0.9.csv b/Validation/UW_raw_75_object_0.9.csv deleted file mode 100644 index 6b3a6a0..0000000 --- a/Validation/UW_raw_75_object_0.9.csv +++ /dev/null @@ -1,2875 +0,0 @@ -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6499999999999999,1.0,0.5499999999999999,0.6666666666666666,1,25 -yellow,0.8783333333333333,0.95,0.7666666666666666,0.8133333333333332,6,24 -looks,0.6066666666666667,0.65,0.6166666666666666,0.5666666666666667,1,24 -keyboard,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -glue,0.5416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.73,1.0,0.65,0.75,1,26 -flashlight,0.5966666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -cup,0.3716666666666667,0.5,0.6166666666666666,0.5166666666666667,1,26 -folded,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -jam,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -black,0.925,0.8333333333333333,1.0,0.8933333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.3833333333333333,1.0,0.38333333333333336,0.55,1,26 -soccer,0.6433333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -hat,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,25 -coffee,0.74,1.0,0.6166666666666666,0.7333333333333333,1,26 -handle,0.5383333333333333,1.0,0.5166666666666666,0.65,1,25 -food,0.5683333333333334,1.0,0.41666666666666663,0.5833333333333333,1,25 -towel,0.6416666666666667,1.0,0.5833333333333333,0.7,1,26 -chips,0.6250000000000001,1.0,0.6333333333333333,0.7333333333333333,1,26 -stapler,0.7083333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -onion,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -bag,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.63,1.0,0.5166666666666666,0.65,1,25 -special,0.6466666666666667,1.0,0.6499999999999999,0.75,1,26 -colgate,0.4966666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -leaf,0.8683333333333334,1.0,0.7833333333333333,0.85,1,26 -tube,0.5383333333333333,1.0,0.41666666666666663,0.5833333333333333,1,26 -cell,0.48999999999999994,1.0,0.4499999999999999,0.6,1,26 -mug,0.65,1.0,0.6166666666666666,0.7333333333333333,1,26 -yogurt,0.6483333333333333,1.0,0.45,0.6166666666666667,1,26 -plantain,0.6716666666666666,0.9,0.65,0.6833333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.755,1.0,0.6333333333333333,0.75,1,26 -wheat,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -kleenex,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -toothbrush,0.6166666666666667,1.0,0.5833333333333333,0.7,1,26 -binder,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -baseball,0.7833333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -pliers,0.7466666666666666,1.0,0.6833333333333332,0.7666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6466666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -thins,0.65,1.0,0.6166666666666666,0.7166666666666666,1,26 -package,0.835,1.0,0.7166666666666666,0.8,1,26 -k,0.835,1.0,0.7166666666666666,0.8,1,26 -jelly,0.86,1.0,0.7333333333333333,0.8166666666666668,1,26 -fruit,0.6449999999999999,0.4999999999999999,0.9333333333333332,0.6266666666666667,2,25 -apple,0.7016666666666667,0.95,0.6166666666666666,0.7166666666666667,1,25 -bell,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -battery,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -jar,0.6933333333333332,1.0,0.6,0.7166666666666667,1,26 -bound,0.6433333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -lettuce,0.4966666666666667,1.0,0.5166666666666666,0.65,1,26 -brush,0.8833333333333332,1.0,0.8333333333333333,0.8833333333333332,1,26 -scissors,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -lime,0.5716666666666665,1.0,0.4999999999999999,0.6333333333333333,1,25 -toothpaste,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.67,1.0,0.5,0.65,1,26 -spiral,0.835,1.0,0.7,0.8,1,26 -handles,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -camera,0.605,1.0,0.5833333333333333,0.7,1,26 -eraser,0.5700000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.8133333333333332,0.9,0.7833333333333333,0.7833333333333334,1,26 -pitcher,0.7383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.755,1.0,0.7166666666666666,0.8,1,26 -stick,0.655,1.0,0.6333333333333332,0.7333333333333333,1,25 -cereal,0.7266666666666667,1.0,0.6,0.7166666666666667,1,26 -bulb,0.8833333333333332,1.0,0.8666666666666668,0.9200000000000002,2,26 -hair,0.6599999999999999,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -can,0.96,1.0,0.9333333333333332,0.96,2,25 -coca,0.7899999999999999,1.0,0.7166666666666666,0.8,1,26 -crackers,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -plate,0.71,1.0,0.7,0.7833333333333333,1,25 -calculator,0.6266666666666667,0.75,0.7,0.65,1,26 -tissues,0.7166666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -pink,0.6316666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -lemon,0.375,1.0,0.4999999999999999,0.6333333333333333,1,26 -peach,0.7933333333333333,1.0,0.6333333333333333,0.75,1,26 -bowl,0.45499999999999996,1.0,0.4333333333333333,0.5833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6166666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -blue,0.6333333333333333,1.0,0.5833333333333333,0.7,1,25 -used,0.43000000000000005,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -ball,0.86,1.0,0.7833333333333333,0.85,1,25 -notebook,0.58,1.0,0.6166666666666666,0.7166666666666666,1,26 -garlic,0.585,1.0,0.5333333333333333,0.6666666666666667,1,26 -cleaning,0.6133333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.9,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.6,1.0,0.5833333333333333,0.7,1,25 -tomato,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -cellphone,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -potato,0.5416666666666666,1.0,0.4666666666666666,0.6166666666666666,1,25 -light,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8583333333333332,1.0,0.8333333333333333,0.9,2,25 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.6450617283950618 -F1-Score: 0.6800925925925926 -Precision: 0.8975308641975309 -Recall: 0.5993827160493828 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5499999999999999,1.0,0.5333333333333332,0.65,1,24 -yellow,0.8400000000000001,1.0,0.6666666666666666,0.7866666666666667,6,24 -looks,0.5466666666666666,1.0,0.4999999999999999,0.6333333333333333,1,24 -keyboard,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -glue,0.755,1.0,0.7,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.605,1.0,0.5,0.6333333333333334,1,26 -flashlight,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -cup,0.3383333333333334,0.5,0.6166666666666666,0.5166666666666668,1,25 -folded,0.7433333333333333,1.0,0.5666666666666667,0.7,1,26 -jam,0.6666666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -black,0.8966666666666667,0.7666666666666666,1.0,0.8466666666666667,6,23 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.705,1.0,0.65,0.75,1,26 -soccer,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -hat,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -brown,0.925,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.5333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,24 -handle,0.7333333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -food,0.78,1.0,0.7666666666666666,0.8333333333333333,1,25 -towel,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -onion,0.5666666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -bag,0.755,1.0,0.7166666666666666,0.8,1,26 -sponge,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.6066666666666667,1.0,0.5833333333333333,0.7,1,26 -special,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -colgate,0.74,1.0,0.6666666666666666,0.7666666666666666,1,26 -leaf,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -cell,0.655,1.0,0.65,0.75,1,26 -mug,0.5716666666666665,1.0,0.5333333333333333,0.6666666666666667,1,25 -yogurt,0.61,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.6,1.0,0.55,0.6666666666666666,1,26 -wheat,0.7633333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -kleenex,0.705,1.0,0.5499999999999999,0.6833333333333333,1,26 -toothbrush,0.7,1.0,0.65,0.75,1,26 -binder,0.65,1.0,0.7,0.7833333333333333,1,26 -baseball,0.6,1.0,0.6,0.7166666666666667,1,26 -pliers,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7133333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -thins,0.5933333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -package,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -k,0.5966666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -fruit,0.7949999999999999,0.75,0.9,0.78,2,25 -apple,0.6633333333333333,0.95,0.5499999999999999,0.65,1,25 -bell,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -jar,0.5316666666666666,1.0,0.4166666666666667,0.5833333333333333,1,26 -bound,0.6266666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -lettuce,0.6733333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -brush,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -scissors,0.775,1.0,0.7166666666666666,0.8,1,26 -lime,0.7833333333333333,1.0,0.6833333333333333,0.7833333333333334,1,25 -toothpaste,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -top,0.5166666666666666,1.0,0.5166666666666666,0.65,1,26 -spiral,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -handles,0.6016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -camera,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.6249999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -pitcher,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -phone,0.7016666666666667,1.0,0.6499999999999999,0.75,1,26 -stick,0.7333333333333333,1.0,0.7333333333333333,0.8,1,25 -cereal,0.505,1.0,0.4333333333333333,0.5833333333333333,1,26 -bulb,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.9550000000000001,1.0,0.9,0.9333333333333332,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -coca,0.5716666666666667,1.0,0.41666666666666663,0.5833333333333334,1,26 -crackers,0.6633333333333333,1.0,0.55,0.6833333333333333,1,26 -plate,0.5083333333333333,1.0,0.5,0.6333333333333333,1,25 -calculator,0.6883333333333332,0.8,0.6666666666666666,0.6833333333333333,1,26 -tissues,0.605,1.0,0.5833333333333333,0.7,1,26 -juice,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -pink,0.7566666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -lemon,0.6933333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -peach,0.2966666666666667,0.5,0.5833333333333333,0.51,1,26 -bowl,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7049999999999998,1.0,0.6499999999999999,0.75,1,26 -blue,0.5933333333333333,1.0,0.5833333333333333,0.7,1,25 -used,0.28833333333333333,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.55,1.0,0.4999999999999999,0.6333333333333333,1,26 -ball,0.6416666666666666,1.0,0.6333333333333332,0.7333333333333333,1,25 -notebook,0.5583333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -garlic,0.5666666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -cleaning,0.6966666666666665,1.0,0.6,0.7166666666666667,1,26 -pair,0.8883333333333333,1.0,0.8666666666666668,0.9200000000000002,2,27 -container,0.36833333333333335,1.0,0.45,0.6,1,25 -tomato,0.5900000000000001,1.0,0.4666666666666666,0.6166666666666667,1,26 -cellphone,0.5766666666666665,1.0,0.5166666666666666,0.65,1,26 -potato,0.6016666666666667,1.0,0.5999999999999999,0.7166666666666666,1,25 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,25 -bottle,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.6335339506172841 -F1-Score: 0.6774691358024691 -Precision: 0.9006172839506172 -Recall: 0.5919753086419753 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6966666666666667,1.0,0.6499999999999999,0.75,1,24 -yellow,0.8016666666666667,0.8,0.7666666666666666,0.7200000000000001,6,24 -looks,0.6,0.95,0.5166666666666666,0.6166666666666666,1,24 -keyboard,0.6583333333333332,1.0,0.5833333333333333,0.7,1,26 -glue,0.725,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.7666666666666666,1.0,0.6333333333333333,0.75,1,26 -flashlight,0.8266666666666665,1.0,0.7833333333333333,0.85,1,26 -cup,0.5116666666666666,0.5,0.6666666666666666,0.5466666666666666,1,26 -folded,0.6466666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -jam,0.865,1.0,0.7333333333333333,0.8166666666666667,1,26 -black,0.9133333333333333,0.8083333333333332,1.0,0.8790476190476191,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -soccer,0.6666666666666667,1.0,0.6499999999999999,0.75,1,26 -hat,0.8016666666666665,1.0,0.7166666666666666,0.8,1,26 -brown,0.9349999999999999,1.0,0.9,0.9400000000000001,2,25 -coffee,0.4916666666666666,1.0,0.4499999999999999,0.6,1,25 -handle,0.5716666666666667,1.0,0.4833333333333333,0.6333333333333333,1,25 -food,0.8133333333333332,1.0,0.7166666666666666,0.8,1,25 -towel,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -chips,0.6183333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -stapler,0.8016666666666667,1.0,0.7166666666666666,0.8,1,26 -onion,0.6,1.0,0.4833333333333333,0.6333333333333333,1,26 -bag,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -sponge,0.425,1.0,0.4499999999999999,0.6,1,26 -zero,0,0,0,0,1,26 -computer,0.655,1.0,0.6333333333333333,0.7333333333333333,1,25 -special,0.7933333333333332,1.0,0.7333333333333333,0.8166666666666667,1,26 -colgate,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -leaf,0.5966666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -tube,0.7516666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -cell,0.41,0.55,0.5333333333333333,0.5033333333333333,1,26 -mug,0.7583333333333333,1.0,0.7166666666666666,0.8,1,25 -yogurt,0.5966666666666666,1.0,0.55,0.6833333333333333,1,26 -plantain,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.725,1.0,0.7,0.7833333333333333,1,26 -wheat,0.835,1.0,0.7833333333333333,0.85,1,26 -kleenex,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -toothbrush,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.715,1.0,0.5833333333333333,0.7166666666666667,1,26 -baseball,0.7533333333333333,1.0,0.5666666666666667,0.7,1,26 -pliers,0.6249999999999999,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6,1.0,0.5833333333333333,0.7,1,26 -thins,0.7216666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -package,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -k,0.5933333333333334,1.0,0.5833333333333333,0.7,1,26 -jelly,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -fruit,0.7766666666666666,0.7666666666666666,0.8666666666666666,0.7666666666666666,2,26 -apple,0.4716666666666667,0.95,0.4666666666666666,0.5833333333333333,1,25 -bell,0.6333333333333333,1.0,0.5999999999999999,0.7,1,26 -battery,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -jar,0.5383333333333333,1.0,0.41666666666666663,0.5833333333333333,1,26 -bound,0.5166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -lettuce,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -brush,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -scissors,0.655,1.0,0.5833333333333333,0.7,1,26 -lime,0.40499999999999997,1.0,0.38333333333333336,0.55,1,25 -toothpaste,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -top,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -spiral,0.8466666666666665,1.0,0.7333333333333333,0.8166666666666668,1,26 -handles,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -camera,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -pitcher,0.6399999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -phone,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -stick,0.76,1.0,0.7166666666666666,0.8,1,25 -cereal,0.725,1.0,0.7,0.7833333333333333,1,26 -bulb,0.8916666666666666,1.0,0.8666666666666668,0.9200000000000002,2,26 -hair,0.7133333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.78,1.0,0.7,0.7833333333333334,1,26 -can,0.8816666666666666,1.0,0.8333333333333333,0.9,2,24 -coca,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -crackers,0.8366666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -plate,0.36666666666666664,1.0,0.4333333333333333,0.5833333333333333,1,25 -calculator,0.735,1.0,0.6166666666666666,0.7333333333333333,1,26 -tissues,0.585,1.0,0.5,0.65,1,26 -juice,0.6216666666666666,1.0,0.4999999999999999,0.65,1,26 -pink,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -lemon,0.6233333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -peach,0.6766666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -blue,0.6383333333333333,1.0,0.5166666666666666,0.65,1,25 -used,0.37,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.5166666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -ball,0.73,1.0,0.6666666666666666,0.7666666666666666,1,25 -notebook,0.76,1.0,0.7166666666666666,0.8,1,26 -garlic,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -cleaning,0.63,1.0,0.5333333333333333,0.6666666666666666,1,26 -pair,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -tomato,0.9216666666666666,1.0,0.85,0.8999999999999998,1,26 -cellphone,0.345,0.55,0.5333333333333333,0.5033333333333333,1,26 -potato,0.6966666666666667,1.0,0.6,0.7166666666666667,1,25 -light,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9200000000000002,1.0,0.8666666666666668,0.9200000000000002,2,26 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.6492746913580248 -F1-Score: 0.680330687830688 -Precision: 0.8969907407407407 -Recall: 0.5962962962962962 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.505,1.0,0.45,0.6,1,24 -yellow,0.825,0.8,0.7833333333333333,0.7433333333333334,6,24 -looks,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,24 -keyboard,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -glue,0.6266666666666667,1.0,0.4999999999999999,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.5716666666666667,1.0,0.5,0.6333333333333333,1,26 -flashlight,0.4083333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -cup,0.5583333333333333,0.5,0.7333333333333333,0.5733333333333334,1,26 -folded,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -jam,0.8300000000000001,1.0,0.6833333333333333,0.7833333333333333,1,26 -black,0.8883333333333333,0.7416666666666666,1.0,0.8323809523809522,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.8166666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -soccer,0.8150000000000001,1.0,0.65,0.7666666666666667,1,26 -hat,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -coffee,0.5633333333333334,1.0,0.5166666666666666,0.65,1,25 -handle,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -food,0.6666666666666666,1.0,0.6499999999999999,0.75,1,24 -towel,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -chips,0.6766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.63,1.0,0.5499999999999999,0.6833333333333333,1,26 -onion,0.6666666666666667,1.0,0.6,0.7166666666666667,1,26 -bag,0.6983333333333334,1.0,0.6,0.7166666666666667,1,26 -sponge,0.6683333333333333,1.0,0.6499999999999999,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.5349999999999999,1.0,0.5166666666666666,0.65,1,25 -special,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -colgate,0.5566666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -leaf,0.5683333333333334,1.0,0.55,0.6833333333333333,1,26 -tube,0.53,1.0,0.4666666666666666,0.6166666666666667,1,26 -cell,0.5583333333333333,0.5,0.6666666666666666,0.5466666666666667,1,26 -mug,0.78,1.0,0.7,0.7833333333333333,1,25 -yogurt,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -plantain,0.6249999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.705,1.0,0.7,0.7833333333333333,1,26 -wheat,0.8133333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -kleenex,0.65,1.0,0.5333333333333333,0.6666666666666667,1,26 -toothbrush,0.8666666666666666,1.0,0.8833333333333332,0.9166666666666666,1,26 -binder,0.655,1.0,0.6333333333333332,0.7333333333333333,1,26 -baseball,0.67,1.0,0.5499999999999999,0.6833333333333333,1,26 -pliers,0.5266666666666666,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8233333333333335,1.0,0.65,0.7666666666666667,1,26 -thins,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -package,0.5083333333333333,1.0,0.4833333333333333,0.6166666666666666,1,26 -k,0.5216666666666666,1.0,0.4499999999999999,0.6,1,26 -jelly,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -fruit,0.7983333333333332,0.65,0.9333333333333332,0.7266666666666668,2,26 -apple,0.6216666666666666,0.95,0.5999999999999999,0.6833333333333333,1,26 -bell,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -battery,0.5333333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -jar,0.5566666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -bound,0.53,1.0,0.4666666666666666,0.6166666666666667,1,26 -lettuce,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -scissors,0.4083333333333333,1.0,0.38333333333333336,0.55,1,26 -lime,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -toothpaste,0.5516666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -top,0.75,1.0,0.65,0.75,1,26 -spiral,0.7549999999999999,1.0,0.7,0.7833333333333333,1,26 -handles,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -eraser,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6966666666666665,1.0,0.6166666666666666,0.7333333333333333,1,26 -pitcher,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.7083333333333333,1.0,0.55,0.6833333333333333,1,26 -stick,0.6666666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -cereal,0.5499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.9400000000000001,1.0,0.9,0.9400000000000001,2,27 -hair,0.65,1.0,0.5499999999999999,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.73,1.0,0.7,0.7833333333333333,1,26 -can,0.9333333333333332,1.0,0.9333333333333332,0.96,2,25 -coca,0.6266666666666667,1.0,0.4999999999999999,0.65,1,26 -crackers,0.7849999999999999,1.0,0.6333333333333333,0.75,1,26 -plate,0.5633333333333332,1.0,0.6166666666666666,0.7166666666666667,1,25 -calculator,0.7133333333333334,1.0,0.7166666666666666,0.8,1,26 -tissues,0.6299999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -juice,0.675,1.0,0.7499999999999999,0.8166666666666667,1,26 -pink,0.7216666666666667,1.0,0.7166666666666666,0.8,1,25 -lemon,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -peach,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -bowl,0.6633333333333333,1.0,0.5166666666666666,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7933333333333333,1.0,0.7166666666666666,0.8,1,26 -blue,0.6,1.0,0.5166666666666666,0.65,1,25 -used,0.18333333333333335,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -ball,0.5666666666666667,1.0,0.4999999999999999,0.6333333333333333,1,25 -notebook,0.6466666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -garlic,0.525,1.0,0.5333333333333333,0.6666666666666667,1,26 -cleaning,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -pair,0.93,1.0,0.9,0.9400000000000001,2,26 -container,0.8733333333333334,1.0,0.7833333333333333,0.85,1,25 -tomato,0.6399999999999999,1.0,0.55,0.6833333333333333,1,26 -cellphone,0.42666666666666664,0.5,0.6333333333333333,0.5266666666666667,1,26 -potato,0.65,1.0,0.6,0.7166666666666667,1,25 -light,0.95,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8883333333333333,1.0,0.8666666666666668,0.9200000000000002,2,26 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.641280864197531 -F1-Score: 0.6789726631393298 -Precision: 0.8948302469135803 -Recall: 0.5987654320987653 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.735,1.0,0.6166666666666666,0.7333333333333333,1,25 -yellow,0.8133333333333332,0.95,0.65,0.74,6,24 -looks,0.5383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,24 -keyboard,0.8550000000000001,1.0,0.75,0.8333333333333333,1,26 -glue,0.8816666666666666,1.0,0.75,0.8333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.63,1.0,0.5999999999999999,0.7166666666666667,1,26 -flashlight,0.7716666666666667,1.0,0.7,0.7833333333333333,1,26 -cup,0.425,0.5,0.55,0.5033333333333333,1,26 -folded,0.6799999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.735,1.0,0.6,0.7166666666666667,1,26 -black,0.9100000000000001,0.7833333333333333,1.0,0.8600000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -soccer,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -hat,0.6633333333333333,1.0,0.65,0.75,1,26 -brown,0.9066666666666666,1.0,0.8666666666666668,0.9200000000000002,2,24 -coffee,0.85,1.0,0.7666666666666666,0.8333333333333333,1,26 -handle,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -food,0.6933333333333334,1.0,0.6666666666666666,0.7666666666666667,1,25 -towel,0.7216666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -chips,0.725,1.0,0.6666666666666666,0.7666666666666666,1,26 -stapler,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.625,1.0,0.5833333333333333,0.7,1,26 -bag,0.6466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -sponge,0.725,1.0,0.6666666666666666,0.7666666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.6,1.0,0.5833333333333333,0.7,1,25 -special,0.8133333333333332,1.0,0.7333333333333333,0.8166666666666667,1,26 -colgate,0.5249999999999999,1.0,0.5499999999999999,0.6666666666666666,1,26 -leaf,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -tube,0.725,1.0,0.7499999999999999,0.8166666666666667,1,26 -cell,0.8666666666666668,1.0,0.8333333333333333,0.8833333333333332,1,26 -mug,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -yogurt,0.6683333333333332,1.0,0.65,0.75,1,26 -plantain,0.8716666666666665,1.0,0.7833333333333333,0.85,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -wheat,0.6583333333333334,1.0,0.6833333333333333,0.7666666666666666,1,26 -kleenex,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -toothbrush,0.5333333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -binder,0.6216666666666667,1.0,0.5166666666666666,0.65,1,26 -baseball,0.43499999999999994,1.0,0.45,0.6,1,26 -pliers,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7133333333333333,1.0,0.5833333333333333,0.7,1,26 -thins,0.655,1.0,0.6499999999999999,0.75,1,26 -package,0.7466666666666666,1.0,0.6833333333333333,0.7666666666666667,1,26 -k,0.4133333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -jelly,0.5333333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -fruit,0.8433333333333334,0.9166666666666666,0.8666666666666668,0.8666666666666668,2,25 -apple,0.5466666666666666,1.0,0.5333333333333333,0.6666666666666666,1,25 -bell,0.5516666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -battery,0.7666666666666666,1.0,0.7333333333333333,0.8,1,26 -jar,0.76,1.0,0.7166666666666666,0.8,1,26 -bound,0.575,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.6599999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -brush,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -scissors,0.5966666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -lime,0.7066666666666667,1.0,0.6166666666666666,0.7333333333333334,1,25 -toothpaste,0.675,1.0,0.75,0.8166666666666667,1,26 -top,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -spiral,0.7133333333333333,1.0,0.5833333333333333,0.7,1,26 -handles,0.41000000000000003,1.0,0.4499999999999999,0.6,1,25 -camera,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -eraser,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.585,1.0,0.4999999999999999,0.65,1,26 -pitcher,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -phone,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -stick,0.6799999999999999,1.0,0.6666666666666666,0.7666666666666667,1,25 -cereal,0.55,1.0,0.5833333333333333,0.7,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,27 -hair,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8633333333333333,1.0,0.8166666666666667,0.8666666666666666,1,26 -can,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,25 -coca,0.7966666666666666,1.0,0.75,0.8166666666666667,1,26 -crackers,0.6883333333333332,1.0,0.6,0.7166666666666666,1,26 -plate,0.7466666666666666,1.0,0.7,0.7833333333333333,1,24 -calculator,0.39333333333333337,0.75,0.5666666666666667,0.5566666666666666,1,26 -tissues,0.6849999999999999,1.0,0.5833333333333333,0.7,1,26 -juice,0.7033333333333334,1.0,0.55,0.6833333333333333,1,26 -pink,0.655,1.0,0.5333333333333333,0.6666666666666667,1,25 -lemon,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -peach,0.32333333333333336,0.6,0.4833333333333333,0.4966666666666667,1,26 -bowl,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -blue,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -used,0.18166666666666667,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6216666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -ball,0.7016666666666667,1.0,0.5833333333333333,0.7,1,25 -notebook,0.5466666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -garlic,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.6416666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -pair,0.8683333333333334,1.0,0.8333333333333333,0.9,2,27 -container,0.725,1.0,0.6499999999999999,0.75,1,25 -tomato,0.6833333333333333,1.0,0.5666666666666667,0.7,1,26 -cellphone,0.6516666666666666,1.0,0.55,0.6833333333333333,1,26 -potato,0.655,1.0,0.5833333333333333,0.7,1,25 -light,0.925,1.0,0.8999999999999998,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.6472685185185185 -F1-Score: 0.6905555555555556 -Precision: 0.9027777777777778 -Recall: 0.6080246913580246 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,24 -yellow,0.8116666666666668,0.7,0.8166666666666667,0.6966666666666665,6,24 -looks,0.67,0.8,0.7666666666666666,0.7,1,24 -keyboard,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -glue,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.705,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.7,1.0,0.6499999999999999,0.75,1,26 -cup,0.3083333333333333,0.5,0.5333333333333332,0.49333333333333335,1,26 -folded,0.53,1.0,0.5166666666666666,0.65,1,26 -jam,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.8383333333333333,0.65,1.0,0.778095238095238,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7,1.0,0.6499999999999999,0.75,1,26 -soccer,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -hat,0.7366666666666667,1.0,0.55,0.6833333333333333,1,26 -brown,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coffee,0.5133333333333333,1.0,0.5166666666666666,0.65,1,25 -handle,0.7933333333333333,1.0,0.6333333333333333,0.75,1,26 -food,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,25 -towel,0.5666666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -chips,0.47166666666666657,1.0,0.4499999999999999,0.6,1,26 -stapler,0.53,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.7,1.0,0.6666666666666666,0.75,1,26 -bag,0.7216666666666667,1.0,0.6333333333333333,0.75,1,26 -sponge,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -special,0.835,1.0,0.7,0.8,1,26 -colgate,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -leaf,0.6883333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -tube,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -cell,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -mug,0.8433333333333334,1.0,0.7,0.8,1,25 -yogurt,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -plantain,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.8816666666666666,1.0,0.75,0.8333333333333333,1,26 -wheat,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -kleenex,0.7849999999999999,1.0,0.6333333333333333,0.75,1,26 -toothbrush,0.4966666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -binder,0.7333333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -baseball,0.7133333333333333,1.0,0.65,0.75,1,26 -pliers,0.4416666666666666,1.0,0.5,0.6333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.8166666666666668,1.0,0.7833333333333333,0.85,1,26 -thins,0.85,1.0,0.7666666666666666,0.8333333333333333,1,26 -package,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -k,0.6583333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -jelly,0.6566666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -fruit,0.6316666666666666,0.55,0.8666666666666666,0.6433333333333333,2,25 -apple,0.6883333333333334,0.95,0.6499999999999999,0.7166666666666667,1,25 -bell,0.6183333333333334,1.0,0.5833333333333333,0.7,1,26 -battery,0.6266666666666667,1.0,0.5166666666666666,0.65,1,26 -jar,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -bound,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -lettuce,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -brush,0.7833333333333333,1.0,0.7,0.7833333333333333,1,26 -scissors,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -lime,0.5883333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -toothpaste,0.6633333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -top,0.875,1.0,0.8333333333333333,0.8833333333333332,1,26 -spiral,0.78,1.0,0.7,0.7833333333333333,1,26 -handles,0.7649999999999999,1.0,0.6166666666666666,0.7333333333333334,1,25 -camera,0.7216666666666667,1.0,0.5333333333333333,0.6833333333333333,1,26 -eraser,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.7583333333333333,1.0,0.6333333333333333,0.75,1,26 -pitcher,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.7133333333333334,1.0,0.7166666666666666,0.8,1,26 -stick,0.7966666666666666,1.0,0.7166666666666666,0.8,1,25 -cereal,0.6933333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -bulb,0.8933333333333333,1.0,0.8666666666666668,0.9200000000000002,2,26 -hair,0.75,1.0,0.7499999999999999,0.8166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6666666666666667,1.0,0.6,0.7166666666666667,1,26 -can,0.8433333333333334,1.0,0.8,0.8800000000000001,2,25 -coca,0.6316666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.43999999999999995,1.0,0.4,0.5666666666666667,1,26 -plate,0.7016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -calculator,0.29333333333333333,0.65,0.41666666666666663,0.4800000000000001,1,26 -tissues,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -juice,0.5966666666666667,1.0,0.5166666666666666,0.65,1,26 -pink,0.6749999999999999,1.0,0.6333333333333333,0.7333333333333333,1,25 -lemon,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -peach,0.6833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -bowl,0.6,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -blue,0.5166666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -used,0.4766666666666667,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.7016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -ball,0.8466666666666665,1.0,0.7333333333333333,0.8166666666666668,1,25 -notebook,0.7166666666666666,1.0,0.7333333333333333,0.8,1,26 -garlic,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.725,1.0,0.6499999999999999,0.75,1,26 -pair,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.6050000000000001,1.0,0.5833333333333333,0.7,1,25 -tomato,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -cellphone,0.7333333333333333,1.0,0.6,0.7166666666666667,1,26 -potato,0.6816666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -light,0.9333333333333332,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.6578549382716049 -F1-Score: 0.6866181657848324 -Precision: 0.8962962962962963 -Recall: 0.6069444444444443 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -yellow,0.8316666666666667,0.9,0.7666666666666666,0.7866666666666667,6,24 -looks,0.6816666666666666,0.85,0.6666666666666666,0.6833333333333333,1,24 -keyboard,0.8550000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -glue,0.85,1.0,0.75,0.8333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.5383333333333333,1.0,0.5,0.6333333333333333,1,26 -flashlight,0.605,1.0,0.5833333333333333,0.7,1,26 -cup,0.49333333333333335,0.5,0.7499999999999999,0.5700000000000001,1,26 -folded,0.7816666666666667,1.0,0.6333333333333333,0.75,1,26 -jam,0.7383333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -black,0.8566666666666667,0.6666666666666666,1.0,0.7847619047619048,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -soccer,0.6516666666666666,1.0,0.6,0.7166666666666667,1,26 -hat,0.585,1.0,0.5833333333333333,0.7,1,26 -brown,0.915,1.0,0.8666666666666668,0.9200000000000002,2,24 -coffee,0.46833333333333327,1.0,0.4666666666666666,0.6166666666666666,1,26 -handle,0.75,1.0,0.75,0.8166666666666667,1,25 -food,0.4333333333333333,1.0,0.4833333333333333,0.6166666666666667,1,25 -towel,0.76,1.0,0.7166666666666666,0.8,1,26 -chips,0.73,1.0,0.65,0.75,1,26 -stapler,0.7583333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -onion,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -bag,0.6466666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -sponge,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -zero,0,0,0,0,1,26 -computer,0.6416666666666667,1.0,0.7,0.7833333333333333,1,25 -special,0.7333333333333334,1.0,0.65,0.75,1,26 -colgate,0.7083333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -leaf,0.4083333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -tube,0.5966666666666666,1.0,0.5166666666666666,0.65,1,26 -cell,0.7933333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -mug,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -yogurt,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -plantain,0.6383333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.8,1.0,0.7166666666666666,0.8,1,26 -wheat,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -kleenex,0.505,1.0,0.4999999999999999,0.6333333333333333,1,26 -toothbrush,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.775,1.0,0.6666666666666666,0.7666666666666667,1,26 -baseball,0.5999999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.75,1.0,0.75,0.8166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6416666666666667,1.0,0.6,0.7166666666666667,1,26 -thins,0.8800000000000001,1.0,0.8,0.8666666666666666,1,26 -package,0.7216666666666667,1.0,0.5833333333333333,0.7,1,26 -k,0.4883333333333333,1.0,0.4499999999999999,0.6,1,26 -jelly,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.6216666666666667,0.5666666666666667,0.8666666666666666,0.6599999999999999,2,25 -apple,0.8266666666666665,0.9,0.7833333333333333,0.7833333333333333,1,25 -bell,0.6416666666666667,1.0,0.5833333333333333,0.7,1,26 -battery,0.6966666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -jar,0.58,1.0,0.6166666666666666,0.7166666666666666,1,26 -bound,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666666,1,26 -lettuce,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -brush,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -scissors,0.7033333333333334,1.0,0.5666666666666667,0.7,1,26 -lime,0.5599999999999999,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.695,1.0,0.55,0.6833333333333333,1,26 -top,0.5516666666666666,1.0,0.41666666666666663,0.5833333333333333,1,26 -spiral,0.7466666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -handles,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -camera,0.6066666666666667,1.0,0.5,0.65,1,26 -eraser,0.45,1.0,0.5999999999999999,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.775,1.0,0.7666666666666666,0.8333333333333333,1,26 -pitcher,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.525,1.0,0.5666666666666667,0.6833333333333333,1,26 -stick,0.5716666666666667,1.0,0.5166666666666666,0.65,1,25 -cereal,0.6133333333333333,1.0,0.55,0.6833333333333333,1,26 -bulb,0.8916666666666666,1.0,0.8666666666666668,0.9200000000000002,2,26 -hair,0.75,1.0,0.7,0.7833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8083333333333332,1.0,0.75,0.8166666666666668,1,26 -can,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -crackers,0.6516666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -plate,0.7133333333333333,1.0,0.5833333333333333,0.7,1,25 -calculator,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -tissues,0.72,1.0,0.6166666666666666,0.7333333333333334,1,26 -juice,0.8099999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -pink,0.655,1.0,0.5999999999999999,0.7166666666666666,1,25 -lemon,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -peach,0.4966666666666667,1.0,0.5166666666666666,0.65,1,26 -bowl,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.76,1.0,0.6666666666666666,0.7666666666666666,1,26 -blue,0.7166666666666666,1.0,0.6166666666666666,0.7333333333333333,1,25 -used,0.5650000000000001,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.755,1.0,0.7166666666666666,0.8,1,26 -ball,0.5833333333333334,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.7633333333333333,1.0,0.75,0.8166666666666667,1,26 -garlic,0.6333333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -cleaning,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -pair,0.8383333333333333,1.0,0.8,0.8800000000000001,2,27 -container,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -tomato,0.5599999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -cellphone,0.5716666666666665,1.0,0.5333333333333333,0.6666666666666667,1,26 -potato,0.5216666666666667,1.0,0.4666666666666666,0.6166666666666667,1,25 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.96,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.6567283950617283 -F1-Score: 0.6943033509700176 -Precision: 0.9016975308641975 -Recall: 0.6157407407407407 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8416666666666668,1.0,0.7333333333333333,0.8166666666666668,1,25 -yellow,0.7183333333333334,0.55,0.75,0.6166666666666667,6,24 -looks,0.5183333333333333,0.65,0.6333333333333333,0.5633333333333334,1,24 -keyboard,0.45,1.0,0.5499999999999999,0.6666666666666666,1,26 -glue,0.6799999999999999,1.0,0.6166666666666666,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.8683333333333334,1.0,0.7833333333333333,0.85,1,26 -flashlight,0.7249999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -cup,0.5116666666666666,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.655,1.0,0.5833333333333333,0.7,1,26 -jam,0.61,1.0,0.4666666666666666,0.6166666666666667,1,26 -black,0.8400000000000001,0.675,1.0,0.7923809523809524,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -soccer,0.65,1.0,0.5333333333333333,0.6666666666666667,1,26 -hat,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -brown,0.9400000000000001,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -handle,0.6799999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -food,0.6683333333333332,1.0,0.5833333333333333,0.7,1,24 -towel,0.7233333333333334,1.0,0.5666666666666667,0.7,1,26 -chips,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -stapler,0.685,1.0,0.5333333333333333,0.6833333333333333,1,26 -onion,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -bag,0.705,1.0,0.6166666666666666,0.7333333333333334,1,26 -sponge,0.4716666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.71,1.0,0.6166666666666666,0.7333333333333334,1,25 -special,0.49333333333333335,1.0,0.5666666666666667,0.6833333333333333,1,26 -colgate,0.655,1.0,0.6499999999999999,0.75,1,26 -leaf,0.8,1.0,0.7333333333333333,0.8,1,26 -tube,0.7350000000000001,1.0,0.6333333333333333,0.75,1,26 -cell,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -mug,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -yogurt,0.6966666666666667,1.0,0.65,0.75,1,26 -plantain,0.76,1.0,0.65,0.75,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.725,1.0,0.6333333333333333,0.75,1,26 -wheat,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -kleenex,0.675,1.0,0.55,0.6833333333333333,1,26 -toothbrush,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -binder,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -baseball,0.5916666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -pliers,0.58,1.0,0.5,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.8666666666666668,1.0,0.8166666666666667,0.8666666666666668,1,26 -thins,0.525,1.0,0.5166666666666666,0.65,1,26 -package,0.9166666666666666,1.0,0.85,0.9,1,26 -k,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -jelly,0.9,1.0,0.8333333333333333,0.8833333333333332,1,26 -fruit,0.575,0.6,0.8333333333333333,0.6766666666666666,2,25 -apple,0.7883333333333333,0.95,0.7166666666666666,0.7666666666666667,1,26 -bell,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -battery,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -jar,0.6433333333333333,1.0,0.55,0.6833333333333333,1,26 -bound,0.6583333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -lettuce,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -brush,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -scissors,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -lime,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666667,1,25 -toothpaste,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -top,0.7466666666666667,1.0,0.7166666666666666,0.8,1,26 -spiral,0.65,1.0,0.6499999999999999,0.75,1,26 -handles,0.6933333333333334,1.0,0.7,0.7833333333333333,1,25 -camera,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -eraser,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6333333333333333,1.0,0.5166666666666666,0.65,1,26 -pitcher,0.7533333333333333,1.0,0.6,0.7166666666666667,1,26 -phone,0.6749999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -stick,0.4583333333333333,1.0,0.4,0.5666666666666667,1,25 -cereal,0.755,1.0,0.7166666666666666,0.8,1,26 -bulb,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,27 -hair,0.5966666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -can,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,24 -coca,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.605,1.0,0.5833333333333333,0.7,1,26 -plate,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -calculator,0.5599999999999999,1.0,0.5833333333333333,0.7,1,26 -tissues,0.7016666666666667,1.0,0.6,0.7166666666666667,1,26 -juice,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -pink,0.8416666666666666,1.0,0.8333333333333333,0.8833333333333332,1,25 -lemon,0.5166666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -peach,0.875,1.0,0.8833333333333332,0.9166666666666666,1,26 -bowl,0.6216666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5833333333333333,1.0,0.5,0.65,1,26 -blue,0.5833333333333333,0.95,0.5333333333333333,0.6333333333333333,1,25 -used,0.3616666666666667,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.5349999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -ball,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.74,1.0,0.6666666666666666,0.7666666666666666,1,26 -garlic,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -cleaning,0.7133333333333334,1.0,0.5666666666666667,0.7,1,26 -pair,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -container,0.73,1.0,0.75,0.8166666666666667,1,26 -tomato,0.71,1.0,0.6666666666666666,0.7666666666666667,1,26 -cellphone,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -potato,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -light,0.9066666666666666,1.0,0.8666666666666666,0.9199999999999999,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,26 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.6561882716049382 -F1-Score: 0.6908245149911818 -Precision: 0.8969907407407407 -Recall: 0.6131172839506172 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.39333333333333337,1.0,0.4333333333333333,0.5833333333333333,1,25 -yellow,0.8866666666666669,1.0,0.7333333333333333,0.8266666666666665,6,24 -looks,0.625,1.0,0.6333333333333333,0.7333333333333334,1,24 -keyboard,0.6183333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -glue,0.725,1.0,0.7,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.5733333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -flashlight,0.7833333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.33,0.5,0.5333333333333333,0.49333333333333335,1,26 -folded,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -jam,0.625,1.0,0.5833333333333333,0.7,1,26 -black,0.8666666666666668,0.725,1.0,0.8257142857142856,6,23 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.5483333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -soccer,0.6966666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -hat,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -brown,0.8766666666666667,1.0,0.8333333333333333,0.9,2,25 -coffee,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -handle,0.6466666666666667,1.0,0.5166666666666666,0.65,1,26 -food,0.7016666666666667,1.0,0.55,0.6833333333333333,1,25 -towel,0.41,1.0,0.45,0.6,1,26 -chips,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -stapler,0.7333333333333333,1.0,0.6499999999999999,0.75,1,26 -onion,0.6416666666666667,1.0,0.55,0.6833333333333333,1,26 -bag,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -sponge,0.5333333333333333,1.0,0.5999999999999999,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.755,1.0,0.6166666666666666,0.7333333333333333,1,25 -special,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -colgate,0.74,1.0,0.6166666666666666,0.7333333333333334,1,26 -leaf,0.4966666666666666,1.0,0.5,0.6333333333333333,1,26 -tube,0.72,1.0,0.5166666666666666,0.6666666666666666,1,26 -cell,0.4483333333333334,0.5,0.5666666666666667,0.5000000000000001,1,26 -mug,0.6333333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -yogurt,0.7266666666666667,1.0,0.5833333333333333,0.7,1,26 -plantain,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.7416666666666666,1.0,0.7166666666666666,0.8,1,26 -kleenex,0.675,1.0,0.65,0.75,1,26 -toothbrush,0.655,1.0,0.65,0.75,1,26 -binder,0.615,1.0,0.55,0.6833333333333333,1,26 -baseball,0.655,1.0,0.5833333333333333,0.7,1,26 -pliers,0.5916666666666666,1.0,0.5499999999999999,0.6666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.74,1.0,0.6666666666666666,0.7666666666666666,1,26 -thins,0.7683333333333333,1.0,0.6333333333333333,0.75,1,26 -package,0.6749999999999999,1.0,0.6833333333333333,0.7666666666666667,1,26 -k,0.7166666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -jelly,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.8,0.65,0.9666666666666666,0.75,2,25 -apple,0.6166666666666667,0.95,0.6333333333333333,0.7,1,25 -bell,0.775,1.0,0.6333333333333333,0.75,1,26 -battery,0.735,1.0,0.6166666666666666,0.7333333333333333,1,26 -jar,0.7066666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -bound,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.7066666666666667,1.0,0.5666666666666667,0.7,1,26 -brush,0.6966666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.5516666666666666,1.0,0.4499999999999999,0.6,1,26 -lime,0.6900000000000001,1.0,0.5666666666666667,0.7,1,25 -toothpaste,0.5666666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -top,0.705,1.0,0.5833333333333333,0.7,1,26 -spiral,0.5083333333333333,1.0,0.4499999999999999,0.6,1,26 -handles,0.5716666666666667,1.0,0.5833333333333333,0.7,1,25 -camera,0.8466666666666665,1.0,0.8333333333333333,0.8833333333333332,1,26 -eraser,0.6799999999999999,1.0,0.7499999999999999,0.8166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -pitcher,0.6916666666666667,1.0,0.65,0.75,1,26 -phone,0.585,1.0,0.5166666666666666,0.65,1,26 -stick,0.7716666666666667,1.0,0.6333333333333333,0.75,1,25 -cereal,0.5833333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -bulb,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -hair,0.6516666666666666,1.0,0.4999999999999999,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6183333333333334,1.0,0.5166666666666666,0.65,1,26 -can,0.8083333333333332,1.0,0.8,0.8800000000000001,2,26 -coca,0.655,1.0,0.65,0.75,1,26 -crackers,0.5349999999999999,1.0,0.45,0.6,1,26 -plate,0.5966666666666667,1.0,0.4666666666666666,0.6166666666666667,1,25 -calculator,0.6333333333333334,0.95,0.5999999999999999,0.6833333333333333,1,26 -tissues,0.8,1.0,0.7166666666666666,0.8,1,26 -juice,0.5466666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -pink,0.7216666666666667,1.0,0.7166666666666666,0.8,1,25 -lemon,0.7333333333333334,1.0,0.6,0.7166666666666667,1,26 -peach,0.5266666666666666,1.0,0.5166666666666666,0.65,1,26 -bowl,0.5116666666666666,1.0,0.4333333333333333,0.6,1,26 -camouflage,0,0,0,0,1,26 -digital,0.4933333333333333,1.0,0.4499999999999999,0.6,1,26 -blue,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -used,0.36833333333333335,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6133333333333334,1.0,0.6,0.7166666666666667,1,26 -ball,0.6799999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -garlic,0.65,1.0,0.6833333333333332,0.7666666666666666,1,26 -cleaning,0.755,1.0,0.5999999999999999,0.7166666666666666,1,26 -pair,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -container,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -tomato,0.6449999999999999,1.0,0.55,0.6833333333333333,1,26 -cellphone,0.44333333333333336,0.65,0.6,0.55,1,26 -potato,0.7183333333333334,1.0,0.5999999999999999,0.7166666666666667,1,25 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.635 -F1-Score: 0.6723368606701939 -Precision: 0.8974537037037037 -Recall: 0.5868827160493826 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5566666666666666,1.0,0.4833333333333333,0.6333333333333333,1,24 -yellow,0.8,0.75,0.75,0.6900000000000001,6,25 -looks,0.8566666666666667,0.75,0.9333333333333332,0.7833333333333333,1,24 -keyboard,0.7633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.5216666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -flashlight,0.8216666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -cup,0.265,0.5,0.5666666666666667,0.5,1,26 -folded,0.5133333333333333,1.0,0.4,0.5666666666666667,1,26 -jam,0.75,1.0,0.65,0.75,1,26 -black,0.9066666666666668,0.8,1.0,0.8733333333333334,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5349999999999999,1.0,0.5166666666666666,0.65,1,26 -soccer,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -hat,0.55,1.0,0.5166666666666666,0.65,1,26 -brown,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666667,1,25 -handle,0.6633333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -food,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -towel,0.715,1.0,0.5499999999999999,0.6833333333333333,1,26 -chips,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -stapler,0.8083333333333332,1.0,0.6833333333333333,0.7833333333333334,1,26 -onion,0.7633333333333333,1.0,0.6499999999999999,0.75,1,26 -bag,0.8,1.0,0.6833333333333333,0.7833333333333333,1,26 -sponge,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -zero,0,0,0,0,1,26 -computer,0.6266666666666667,1.0,0.5833333333333333,0.7,1,25 -special,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -colgate,0.6733333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -leaf,0.805,1.0,0.6666666666666666,0.7666666666666667,1,26 -tube,0.65,1.0,0.5333333333333333,0.6666666666666666,1,26 -cell,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -mug,0.6216666666666667,1.0,0.5333333333333332,0.6666666666666666,1,25 -yogurt,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -plantain,0.5816666666666667,1.0,0.5,0.65,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.6916666666666667,1.0,0.6833333333333332,0.7666666666666666,1,26 -wheat,0.6916666666666667,1.0,0.65,0.75,1,26 -kleenex,0.5583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -toothbrush,0.6466666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -binder,0.4666666666666666,1.0,0.5166666666666666,0.65,1,26 -baseball,0.6683333333333332,1.0,0.4833333333333333,0.6333333333333334,1,26 -pliers,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -package,0.7,1.0,0.5999999999999999,0.7166666666666667,1,26 -k,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -jelly,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -fruit,0.6733333333333335,0.65,0.8666666666666666,0.7,2,25 -apple,0.6733333333333333,0.85,0.7166666666666666,0.7,1,25 -bell,0.95,1.0,0.9333333333333332,0.95,1,26 -battery,0.55,1.0,0.5833333333333333,0.7,1,26 -jar,0.5216666666666667,1.0,0.5166666666666666,0.65,1,26 -bound,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -brush,0.505,1.0,0.4999999999999999,0.6333333333333333,1,26 -scissors,0.5799999999999998,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.7833333333333333,1.0,0.7333333333333333,0.8166666666666667,1,25 -toothpaste,0.7499999999999999,1.0,0.7499999999999999,0.8166666666666667,1,26 -top,0.5383333333333333,1.0,0.5166666666666666,0.65,1,26 -spiral,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -handles,0.635,1.0,0.5333333333333333,0.6666666666666667,1,25 -camera,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -eraser,0.6966666666666665,1.0,0.6666666666666666,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -pitcher,0.5566666666666666,1.0,0.5166666666666666,0.65,1,26 -phone,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -stick,0.6599999999999999,1.0,0.6,0.7166666666666667,1,25 -cereal,0.9099999999999999,1.0,0.8333333333333333,0.8833333333333332,1,26 -bulb,0.86,1.0,0.8333333333333333,0.9,2,26 -hair,0.6433333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -can,1.0,1.0,1.0,1.0,2,25 -coca,0.735,1.0,0.6166666666666666,0.7333333333333334,1,26 -crackers,0.69,1.0,0.5499999999999999,0.6833333333333333,1,26 -plate,0.6933333333333332,1.0,0.6,0.7166666666666667,1,25 -calculator,0.6216666666666666,0.75,0.6499999999999999,0.6166666666666667,1,26 -tissues,0.7133333333333333,1.0,0.55,0.6833333333333333,1,26 -juice,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.7566666666666666,1.0,0.6,0.7166666666666667,1,25 -lemon,0.45500000000000007,1.0,0.4,0.5666666666666667,1,26 -peach,0.775,1.0,0.7166666666666666,0.8,1,26 -bowl,0.7499999999999999,1.0,0.6499999999999999,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -blue,0.74,1.0,0.6166666666666666,0.7333333333333333,1,25 -used,0.395,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6683333333333333,1.0,0.4999999999999999,0.65,1,26 -ball,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,25 -notebook,0.6933333333333334,1.0,0.6,0.7166666666666667,1,26 -garlic,0.7183333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -cleaning,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -pair,0.8549999999999999,1.0,0.8333333333333333,0.9,2,26 -container,0.39666666666666667,1.0,0.4333333333333334,0.5833333333333333,1,25 -tomato,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -cellphone,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -potato,0.7683333333333333,1.0,0.7166666666666666,0.8,1,25 -light,0.9016666666666666,1.0,0.8666666666666668,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9100000000000001,1.0,0.8666666666666666,0.9200000000000002,2,25 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.6503858024691357 -F1-Score: 0.6813888888888889 -Precision: 0.8986111111111112 -Recall: 0.5993827160493828 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.625,1.0,0.5999999999999999,0.7166666666666667,1,24 -yellow,0.8166666666666668,1.0,0.6166666666666667,0.7533333333333333,6,24 -looks,0.655,0.9,0.5999999999999999,0.65,1,24 -keyboard,0.6166666666666666,1.0,0.6666666666666666,0.75,1,26 -glue,0.725,1.0,0.7,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.8683333333333334,1.0,0.7833333333333333,0.85,1,26 -flashlight,0.7899999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -cup,0.49833333333333335,0.5,0.5499999999999999,0.5033333333333333,1,26 -folded,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -jam,0.7649999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -black,0.8933333333333333,0.8333333333333333,1.0,0.9028571428571428,6,22 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.835,1.0,0.7,0.8,1,26 -soccer,0.36333333333333334,1.0,0.41666666666666663,0.5666666666666667,1,26 -hat,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.96,2,24 -coffee,0.65,1.0,0.5833333333333333,0.7,1,25 -handle,0.78,1.0,0.6333333333333333,0.75,1,25 -food,0.775,1.0,0.7,0.7833333333333333,1,25 -towel,0.5666666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.6666666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -stapler,0.7100000000000001,1.0,0.65,0.75,1,26 -onion,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -bag,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.5349999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7883333333333333,1.0,0.7166666666666666,0.8,1,25 -special,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -colgate,0.76,1.0,0.6166666666666666,0.7333333333333334,1,26 -leaf,0.6833333333333333,1.0,0.6666666666666666,0.75,1,26 -tube,0.6466666666666666,1.0,0.6833333333333333,0.7666666666666667,1,26 -cell,0.38500000000000006,0.55,0.5333333333333333,0.5033333333333333,1,26 -mug,0.7333333333333333,1.0,0.7499999999999999,0.8166666666666667,1,25 -yogurt,0.9,1.0,0.8333333333333333,0.8833333333333332,1,26 -plantain,0.58,1.0,0.5166666666666666,0.65,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.4966666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -wheat,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -kleenex,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -toothbrush,0.8,1.0,0.75,0.8166666666666667,1,26 -binder,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -baseball,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -pliers,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6666666666666667,1.0,0.65,0.75,1,26 -thins,0.6766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -package,0.4916666666666666,1.0,0.4499999999999999,0.6,1,26 -k,0.5266666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.745,1.0,0.6166666666666666,0.7333333333333333,1,26 -fruit,0.7449999999999999,0.7333333333333333,0.8666666666666666,0.7466666666666668,2,25 -apple,0.625,1.0,0.5999999999999999,0.7166666666666667,1,25 -bell,0.8966666666666665,1.0,0.8333333333333333,0.8833333333333332,1,26 -battery,0.5549999999999999,1.0,0.6333333333333333,0.7333333333333334,1,26 -jar,0.6516666666666666,1.0,0.55,0.6833333333333333,1,26 -bound,0.6433333333333333,1.0,0.4999999999999999,0.65,1,26 -lettuce,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -brush,0.8166666666666668,1.0,0.7833333333333333,0.85,1,26 -scissors,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -lime,0.535,1.0,0.41666666666666663,0.5833333333333334,1,25 -toothpaste,0.635,1.0,0.5833333333333333,0.7,1,26 -top,0.6399999999999999,1.0,0.5833333333333333,0.7,1,26 -spiral,0.7183333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -handles,0.675,1.0,0.5,0.65,1,25 -camera,0.72,1.0,0.5666666666666667,0.7,1,26 -eraser,0.5216666666666667,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.7516666666666667,1.0,0.6499999999999999,0.75,1,26 -pitcher,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -phone,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -stick,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -cereal,0.6883333333333334,1.0,0.5666666666666667,0.7,1,26 -bulb,0.8,1.0,0.8,0.8800000000000001,2,26 -hair,0.79,1.0,0.6833333333333333,0.7833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.73,1.0,0.7499999999999999,0.8166666666666667,1,26 -can,0.9349999999999999,1.0,0.9,0.9400000000000001,2,25 -coca,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -crackers,0.685,1.0,0.5666666666666667,0.7,1,26 -plate,0.7633333333333333,1.0,0.65,0.75,1,25 -calculator,0.6516666666666666,0.9,0.5499999999999999,0.6333333333333333,1,26 -tissues,0.505,1.0,0.4833333333333333,0.6333333333333333,1,26 -juice,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -pink,0.5916666666666666,1.0,0.4999999999999999,0.6333333333333333,1,25 -lemon,0.65,1.0,0.6833333333333333,0.7666666666666666,1,26 -peach,0.885,1.0,0.7833333333333333,0.85,1,26 -bowl,0.7166666666666666,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -blue,0.6833333333333333,1.0,0.6,0.7166666666666667,1,25 -used,0.37333333333333335,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6683333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -ball,0.8016666666666665,1.0,0.6833333333333333,0.7833333333333334,1,25 -notebook,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -garlic,0.655,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.625,1.0,0.6,0.7166666666666667,1,26 -pair,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -container,0.475,1.0,0.4666666666666666,0.6166666666666666,1,25 -tomato,0.8966666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -cellphone,0.42833333333333334,0.55,0.5833333333333333,0.52,1,26 -potato,0.655,1.0,0.5833333333333333,0.7,1,25 -light,0.9016666666666666,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,25 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.6492746913580246 -F1-Score: 0.68663139329806 -Precision: 0.8978395061728395 -Recall: 0.6047839506172837 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7333333333333333,1.0,0.7,0.7833333333333333,1,24 -yellow,0.8333333333333333,1.0,0.65,0.7733333333333333,6,24 -looks,0.605,1.0,0.5833333333333333,0.7,1,24 -keyboard,0.76,1.0,0.6666666666666666,0.7666666666666667,1,26 -glue,0.7066666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.7433333333333334,1.0,0.6333333333333333,0.75,1,26 -flashlight,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -cup,0.43166666666666675,0.5,0.5666666666666667,0.5,1,26 -folded,0.5666666666666667,1.0,0.55,0.6666666666666666,1,26 -jam,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -black,0.8983333333333334,0.75,1.0,0.8333333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.63,1.0,0.6,0.7166666666666667,1,26 -soccer,0.4883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -hat,0.7,1.0,0.7,0.7833333333333333,1,26 -brown,0.9100000000000001,1.0,0.8666666666666666,0.9200000000000002,2,25 -coffee,0.6466666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -handle,0.6183333333333333,1.0,0.5833333333333333,0.7,1,26 -food,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,24 -towel,0.6933333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -chips,0.5333333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -stapler,0.7,1.0,0.7,0.7833333333333333,1,26 -onion,0.4966666666666666,1.0,0.5499999999999999,0.6666666666666667,1,26 -bag,0.5333333333333333,1.0,0.5333333333333333,0.65,1,26 -sponge,0.6833333333333333,1.0,0.65,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.635,1.0,0.4999999999999999,0.65,1,25 -special,0.53,1.0,0.6166666666666666,0.7166666666666666,1,26 -colgate,0.5216666666666666,1.0,0.38333333333333336,0.55,1,26 -leaf,0.5816666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -tube,0.5416666666666666,1.0,0.5833333333333333,0.7,1,26 -cell,0.4666666666666667,0.55,0.6499999999999999,0.5466666666666666,1,26 -mug,0.7833333333333333,1.0,0.8,0.85,1,25 -yogurt,0.86,1.0,0.7666666666666666,0.8333333333333333,1,26 -plantain,0.7433333333333334,1.0,0.6333333333333333,0.75,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.5416666666666666,1.0,0.5833333333333333,0.7,1,26 -wheat,0.5833333333333333,1.0,0.6,0.7166666666666666,1,26 -kleenex,0.7333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -toothbrush,0.6833333333333333,1.0,0.6666666666666666,0.75,1,26 -binder,0.7166666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -baseball,0.7966666666666666,1.0,0.6333333333333333,0.75,1,26 -pliers,0.5249999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -thins,0.6749999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -package,0.705,1.0,0.5499999999999999,0.6833333333333333,1,26 -k,0.7150000000000001,1.0,0.5666666666666667,0.7,1,26 -jelly,0.6499999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -fruit,0.8,0.8,0.8666666666666666,0.8066666666666666,2,25 -apple,0.7433333333333333,1.0,0.7,0.7833333333333333,1,25 -bell,0.5166666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -battery,0.75,1.0,0.6666666666666666,0.7666666666666666,1,26 -jar,0.3833333333333333,1.0,0.4,0.55,1,26 -bound,0.8400000000000001,1.0,0.7166666666666666,0.8,1,26 -lettuce,0.8150000000000001,1.0,0.6333333333333333,0.75,1,26 -brush,0.6466666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -scissors,0.8883333333333333,1.0,0.8333333333333333,0.8833333333333332,1,26 -lime,0.625,1.0,0.5666666666666667,0.6833333333333333,1,25 -toothpaste,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -top,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -spiral,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -handles,0.7716666666666666,1.0,0.7,0.7833333333333333,1,25 -camera,0.7083333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -eraser,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.6399999999999999,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -phone,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -stick,0.6716666666666666,1.0,0.6,0.7166666666666667,1,25 -cereal,0.7333333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -bulb,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -hair,0.5916666666666666,1.0,0.5333333333333332,0.6666666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -can,0.8066666666666666,1.0,0.7333333333333334,0.8400000000000001,2,25 -coca,0.4166666666666667,1.0,0.38333333333333336,0.55,1,26 -crackers,0.6749999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.755,1.0,0.7,0.7833333333333333,1,25 -calculator,0.655,0.95,0.6499999999999999,0.7166666666666666,1,26 -tissues,0.475,1.0,0.4666666666666666,0.6166666666666667,1,26 -juice,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -pink,0.6716666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -lemon,0.835,1.0,0.7166666666666666,0.8,1,26 -peach,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -bowl,0.7133333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8166666666666668,1.0,0.8166666666666667,0.8666666666666668,1,26 -blue,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,25 -used,0.705,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.7,1.0,0.7499999999999999,0.8166666666666667,1,26 -ball,0.6083333333333333,1.0,0.5,0.6333333333333333,1,25 -notebook,0.6216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -cleaning,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -pair,0.9266666666666665,1.0,0.9,0.9400000000000001,2,27 -container,0.725,1.0,0.7166666666666666,0.8,1,25 -tomato,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -cellphone,0.305,0.5,0.4999999999999999,0.47333333333333344,1,26 -potato,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.6510185185185184 -F1-Score: 0.6879320987654319 -Precision: 0.8986111111111111 -Recall: 0.6072530864197531 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.775,1.0,0.7,0.7833333333333333,1,25 -yellow,0.8883333333333334,0.85,0.8666666666666666,0.8133333333333332,6,24 -looks,0.7016666666666667,0.95,0.6166666666666666,0.7,1,24 -keyboard,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.8683333333333334,1.0,0.7833333333333333,0.85,1,26 -cup,0.4216666666666667,0.5,0.6333333333333332,0.5266666666666667,1,26 -folded,0.775,1.0,0.7166666666666666,0.8,1,26 -jam,0.6416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.9466666666666667,0.8666666666666666,1.0,0.9133333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6316666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -soccer,0.5266666666666666,1.0,0.4333333333333333,0.6,1,26 -hat,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.96,2,24 -coffee,0.525,1.0,0.4999999999999999,0.6333333333333333,1,26 -handle,0.8066666666666666,1.0,0.6333333333333333,0.75,1,26 -food,0.8766666666666666,1.0,0.75,0.8333333333333333,1,25 -towel,0.6383333333333334,1.0,0.6,0.7166666666666667,1,26 -chips,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -stapler,0.6466666666666666,1.0,0.6499999999999999,0.75,1,26 -onion,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -bag,0.58,1.0,0.5333333333333332,0.6666666666666666,1,26 -sponge,0.75,1.0,0.8,0.85,1,26 -zero,0,0,0,0,1,26 -computer,0.4383333333333333,1.0,0.41666666666666663,0.5833333333333334,1,25 -special,0.7,1.0,0.6166666666666666,0.7333333333333334,1,26 -colgate,0.8716666666666665,1.0,0.7833333333333333,0.85,1,26 -leaf,0.74,1.0,0.6166666666666666,0.7333333333333333,1,26 -tube,0.8216666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -cell,0.5266666666666666,0.5,0.6499999999999999,0.5366666666666667,1,26 -mug,0.78,1.0,0.7,0.7833333333333333,1,26 -yogurt,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -plantain,0.6799999999999999,1.0,0.7,0.7833333333333334,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.5833333333333333,1.0,0.45,0.6166666666666667,1,26 -wheat,0.675,1.0,0.6666666666666666,0.7666666666666667,1,26 -kleenex,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -toothbrush,0.85,1.0,0.8333333333333333,0.8833333333333332,1,26 -binder,0.655,1.0,0.5833333333333333,0.7,1,26 -baseball,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -pliers,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5766666666666667,1.0,0.5166666666666666,0.65,1,26 -thins,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -package,0.65,1.0,0.6499999999999999,0.75,1,26 -k,0.4766666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -jelly,0.6333333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -fruit,0.82,0.6833333333333333,0.9666666666666666,0.7699999999999999,2,25 -apple,0.6333333333333334,0.85,0.6166666666666666,0.6333333333333334,1,25 -bell,0.7833333333333333,1.0,0.7,0.7833333333333333,1,26 -battery,0.73,1.0,0.5999999999999999,0.7166666666666667,1,26 -jar,0.7433333333333333,1.0,0.5333333333333333,0.6833333333333333,1,26 -bound,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -lettuce,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.7433333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -scissors,0.7416666666666667,1.0,0.5333333333333333,0.6833333333333333,1,26 -lime,0.7150000000000001,1.0,0.6166666666666666,0.7333333333333333,1,25 -toothpaste,0.475,1.0,0.5,0.6333333333333333,1,26 -top,0.5900000000000001,1.0,0.5833333333333333,0.7,1,26 -spiral,0.705,1.0,0.65,0.75,1,26 -handles,0.635,1.0,0.5499999999999999,0.6833333333333333,1,25 -camera,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -eraser,0.7466666666666666,1.0,0.6833333333333332,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6183333333333334,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.6966666666666665,1.0,0.5999999999999999,0.7166666666666666,1,26 -phone,0.6933333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -stick,0.6266666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -cereal,0.735,1.0,0.65,0.75,1,26 -bulb,0.9550000000000001,1.0,0.9333333333333332,0.96,2,27 -hair,0.5016666666666667,1.0,0.4499999999999999,0.6,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -can,0.9199999999999999,1.0,0.8666666666666666,0.9199999999999999,2,25 -coca,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666668,1,26 -crackers,0.6883333333333332,1.0,0.6,0.7166666666666667,1,26 -plate,0.62,1.0,0.4833333333333333,0.6333333333333333,1,24 -calculator,0.7183333333333334,0.95,0.5999999999999999,0.6833333333333333,1,26 -tissues,0.64,1.0,0.5833333333333333,0.7,1,26 -juice,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -pink,0.6849999999999999,1.0,0.6166666666666666,0.7333333333333333,1,25 -lemon,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -peach,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.7583333333333333,1.0,0.6333333333333333,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -blue,0.715,1.0,0.6166666666666666,0.7333333333333334,1,25 -used,0.605,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6849999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -ball,0.7133333333333333,1.0,0.6,0.7166666666666667,1,25 -notebook,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -garlic,0.6666666666666667,1.0,0.4999999999999999,0.65,1,26 -cleaning,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -pair,0.9016666666666666,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.7266666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -tomato,0.6683333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -cellphone,0.465,0.55,0.65,0.5466666666666666,1,26 -potato,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666666,1,25 -light,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9099999999999999,1.0,0.8666666666666666,0.9199999999999999,2,25 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.660570987654321 -F1-Score: 0.6865432098765432 -Precision: 0.8953703703703704 -Recall: 0.6075617283950616 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.4883333333333333,1.0,0.4499999999999999,0.6,1,25 -yellow,0.7449999999999999,0.75,0.7166666666666666,0.6866666666666668,6,24 -looks,0.72,0.75,0.8166666666666667,0.7,1,24 -keyboard,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -glue,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.5999999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -flashlight,0.55,1.0,0.5166666666666666,0.65,1,26 -cup,0.32666666666666666,0.5,0.6833333333333332,0.5433333333333333,1,25 -folded,0.6249999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.7083333333333333,1.0,0.5833333333333333,0.7,1,26 -black,0.9100000000000001,0.825,1.0,0.8923809523809524,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.5349999999999999,1.0,0.5166666666666666,0.65,1,26 -soccer,0.7433333333333334,1.0,0.65,0.75,1,26 -hat,0.7583333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -brown,0.8683333333333334,1.0,0.8333333333333333,0.9,2,24 -coffee,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -handle,0.78,1.0,0.7,0.7833333333333333,1,26 -food,0.73,1.0,0.6333333333333333,0.75,1,25 -towel,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -chips,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.5266666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -onion,0.8433333333333334,1.0,0.7,0.8,1,26 -bag,0.5166666666666666,1.0,0.5999999999999999,0.7,1,26 -sponge,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7716666666666667,1.0,0.6499999999999999,0.75,1,25 -special,0.7433333333333333,1.0,0.7,0.7833333333333333,1,26 -colgate,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -leaf,0.5933333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.5633333333333332,1.0,0.4666666666666666,0.6166666666666667,1,26 -cell,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -mug,0.6049999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -yogurt,0.6966666666666665,1.0,0.5166666666666666,0.6666666666666667,1,26 -plantain,0.7266666666666667,1.0,0.65,0.75,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.44666666666666666,1.0,0.4499999999999999,0.6,1,26 -wheat,0.5883333333333333,1.0,0.4999999999999999,0.65,1,26 -kleenex,0.63,1.0,0.6333333333333332,0.7333333333333333,1,26 -toothbrush,0.5466666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -binder,0.45499999999999996,1.0,0.4666666666666666,0.6166666666666667,1,26 -baseball,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -pliers,0.475,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -package,0.8266666666666665,1.0,0.7166666666666666,0.8,1,26 -k,0.4600000000000001,1.0,0.4999999999999999,0.6333333333333333,1,26 -jelly,0.30833333333333335,1.0,0.4333333333333333,0.5833333333333333,1,26 -fruit,0.8183333333333334,0.65,0.9666666666666666,0.76,2,26 -apple,0.5516666666666666,1.0,0.4666666666666666,0.6166666666666666,1,25 -bell,0.6966666666666667,1.0,0.6499999999999999,0.75,1,26 -battery,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -jar,0.73,1.0,0.7,0.7833333333333333,1,26 -bound,0.5416666666666666,1.0,0.55,0.6666666666666667,1,26 -lettuce,0.7916666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -brush,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333334,1,26 -lime,0.6216666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -toothpaste,0.7966666666666666,1.0,0.6333333333333333,0.75,1,26 -top,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -spiral,0.75,1.0,0.6166666666666666,0.7333333333333334,1,26 -handles,0.78,1.0,0.6499999999999999,0.75,1,25 -camera,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -eraser,0.77,1.0,0.6166666666666666,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6049999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -pitcher,0.6216666666666667,1.0,0.5166666666666666,0.65,1,26 -phone,0.5716666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -stick,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -cereal,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -bulb,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.6133333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -can,0.8833333333333332,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.7466666666666666,1.0,0.5833333333333333,0.7166666666666667,1,26 -crackers,0.73,1.0,0.5999999999999999,0.7166666666666667,1,26 -plate,0.6250000000000001,1.0,0.6333333333333333,0.7333333333333333,1,25 -calculator,0.7333333333333333,1.0,0.7999999999999999,0.85,1,26 -tissues,0.475,1.0,0.4666666666666666,0.6166666666666666,1,26 -juice,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -pink,0.775,1.0,0.7666666666666666,0.8333333333333333,1,25 -lemon,0.5966666666666666,1.0,0.5499999999999999,0.6666666666666667,1,26 -peach,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -bowl,0.6933333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666666,1,26 -blue,0.7316666666666667,1.0,0.5833333333333333,0.7166666666666667,1,25 -used,0.41500000000000004,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.7216666666666667,1.0,0.5833333333333333,0.7,1,26 -ball,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,25 -notebook,0.7016666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -garlic,0.6383333333333333,1.0,0.6,0.7166666666666667,1,26 -cleaning,0.5266666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -pair,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.76,1.0,0.6666666666666666,0.7666666666666666,1,26 -tomato,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -cellphone,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -potato,0.71,1.0,0.6166666666666666,0.7333333333333334,1,25 -light,0.8433333333333334,1.0,0.8,0.8800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.6482716049382715 -F1-Score: 0.6871208112874777 -Precision: 0.9025462962962962 -Recall: 0.605246913580247 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.74,1.0,0.6166666666666666,0.7333333333333334,1,25 -yellow,0.8400000000000001,1.0,0.6666666666666667,0.7866666666666667,6,26 -looks,0.6916666666666667,0.8,0.6499999999999999,0.65,1,24 -keyboard,0.7,1.0,0.6499999999999999,0.75,1,26 -glue,0.6583333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6933333333333332,1.0,0.6,0.7166666666666667,1,26 -flashlight,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -cup,0.5599999999999999,0.5,0.7333333333333333,0.5733333333333334,1,26 -folded,0.6166666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -jam,0.8,1.0,0.7166666666666666,0.8,1,26 -black,0.8683333333333334,0.725,1.0,0.8257142857142856,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.5966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -soccer,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -hat,0.5666666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -brown,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -coffee,0.6333333333333333,1.0,0.5166666666666666,0.65,1,26 -handle,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -food,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,25 -towel,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -chips,0.6683333333333332,1.0,0.4999999999999999,0.65,1,26 -stapler,0.73,1.0,0.7166666666666666,0.8,1,26 -onion,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -bag,0.7016666666666665,1.0,0.5833333333333333,0.7,1,26 -sponge,0.59,1.0,0.5333333333333333,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.5333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -special,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -colgate,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -leaf,0.6416666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -tube,0.6316666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -cell,0.8966666666666665,1.0,0.8,0.8666666666666668,1,26 -mug,0.6666666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -yogurt,0.7,1.0,0.7,0.7833333333333333,1,26 -plantain,0.5633333333333334,0.9,0.5833333333333333,0.6333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.73,1.0,0.6,0.7166666666666667,1,26 -wheat,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.6016666666666667,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -binder,0.7383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -baseball,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -pliers,0.85,1.0,0.8333333333333334,0.8833333333333332,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -thins,0.7533333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -package,0.75,1.0,0.8,0.85,1,26 -k,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.7516666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -fruit,0.6733333333333332,0.6,0.9,0.67,2,25 -apple,0.6366666666666666,0.75,0.6333333333333333,0.5833333333333334,1,25 -bell,0.6016666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -battery,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -jar,0.58,1.0,0.5166666666666666,0.65,1,26 -bound,0.6216666666666667,1.0,0.65,0.75,1,26 -lettuce,0.45999999999999996,1.0,0.5166666666666666,0.65,1,26 -brush,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.6249999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -toothpaste,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -top,0.6883333333333332,1.0,0.6499999999999999,0.75,1,26 -spiral,0.7266666666666667,1.0,0.7,0.7833333333333333,1,26 -handles,0.6583333333333333,1.0,0.5833333333333333,0.7,1,25 -camera,0.6716666666666666,1.0,0.4999999999999999,0.65,1,26 -eraser,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.4416666666666666,1.0,0.4499999999999999,0.6,1,26 -pitcher,0.4666666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -stick,0.6633333333333333,1.0,0.65,0.75,1,25 -cereal,0.7249999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -bulb,0.8466666666666667,1.0,0.8333333333333333,0.9,2,27 -hair,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7333333333333333,1.0,0.6499999999999999,0.75,1,26 -can,0.8416666666666666,1.0,0.8333333333333334,0.9000000000000001,2,26 -coca,0.8083333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -crackers,0.6716666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -plate,0.6883333333333334,1.0,0.5499999999999999,0.6833333333333333,1,25 -calculator,0.315,0.6,0.5166666666666666,0.5033333333333333,1,26 -tissues,0.6433333333333333,1.0,0.55,0.6833333333333333,1,26 -juice,0.675,1.0,0.5833333333333333,0.7,1,26 -pink,0.7583333333333333,1.0,0.6833333333333333,0.7833333333333333,1,25 -lemon,0.65,1.0,0.5833333333333333,0.7,1,26 -peach,0.6666666666666666,1.0,0.6666666666666666,0.75,1,26 -bowl,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.9,1.0,0.8833333333333332,0.9166666666666666,1,26 -blue,0.6966666666666667,1.0,0.65,0.75,1,25 -used,0.5983333333333334,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -ball,0.6183333333333334,1.0,0.5499999999999999,0.6833333333333333,1,25 -notebook,0.7133333333333333,1.0,0.6,0.7166666666666667,1,26 -garlic,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -cleaning,0.7883333333333333,1.0,0.6333333333333333,0.75,1,26 -pair,0.9166666666666666,1.0,0.9,0.9400000000000001,2,27 -container,0.755,1.0,0.6666666666666666,0.7666666666666667,1,25 -tomato,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -cellphone,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -potato,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -light,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.6558333333333333 -F1-Score: 0.685299823633157 -Precision: 0.8969907407407407 -Recall: 0.6061728395061728 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8633333333333333,1.0,0.7833333333333333,0.85,1,25 -yellow,0.8183333333333334,0.95,0.6666666666666666,0.7533333333333334,6,24 -looks,0.6766666666666666,1.0,0.5666666666666667,0.7,1,24 -keyboard,0.7983333333333333,1.0,0.6333333333333333,0.75,1,26 -glue,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.61,1.0,0.5333333333333333,0.6666666666666666,1,26 -flashlight,0.825,1.0,0.7166666666666666,0.8,1,26 -cup,0.37333333333333335,0.6,0.5666666666666667,0.52,1,26 -folded,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -black,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666665,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.55,1.0,0.5,0.6333333333333333,1,26 -soccer,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -hat,0.705,1.0,0.65,0.75,1,26 -brown,0.9,1.0,0.9,0.9400000000000001,2,26 -coffee,0.75,1.0,0.7166666666666666,0.8,1,26 -handle,0.7166666666666667,1.0,0.65,0.75,1,26 -food,0.7666666666666667,1.0,0.6666666666666666,0.7666666666666667,1,24 -towel,0.6333333333333332,1.0,0.5833333333333333,0.7,1,26 -chips,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.58,1.0,0.5166666666666666,0.65,1,26 -onion,0.71,1.0,0.5333333333333333,0.6666666666666667,1,26 -bag,0.655,1.0,0.5833333333333333,0.7,1,26 -sponge,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5466666666666666,1.0,0.4999999999999999,0.65,1,25 -special,0.825,1.0,0.8166666666666667,0.8666666666666666,1,26 -colgate,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -leaf,0.6816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -tube,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -cell,0.6866666666666666,0.65,0.7833333333333333,0.6333333333333333,1,26 -mug,0.58,1.0,0.4999999999999999,0.65,1,26 -yogurt,0.41666666666666663,1.0,0.4666666666666666,0.6,1,26 -plantain,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333334,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -wheat,0.5933333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -kleenex,0.5916666666666667,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.7116666666666667,1.0,0.5333333333333333,0.6833333333333333,1,26 -binder,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -baseball,0.655,1.0,0.6499999999999999,0.75,1,26 -pliers,0.4583333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,24 -water,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.6966666666666665,1.0,0.6166666666666666,0.7333333333333333,1,26 -package,0.8316666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -k,0.695,1.0,0.55,0.6833333333333333,1,26 -jelly,0.73,1.0,0.7,0.7833333333333333,1,26 -fruit,0.8233333333333335,0.85,0.8333333333333333,0.8,2,25 -apple,0.7266666666666667,0.95,0.5999999999999999,0.6833333333333333,1,26 -bell,0.5716666666666667,1.0,0.4833333333333332,0.6333333333333333,1,26 -battery,0.8583333333333332,1.0,0.7833333333333333,0.85,1,26 -jar,0.58,1.0,0.4999999999999999,0.65,1,26 -bound,0.6466666666666667,1.0,0.6,0.7166666666666666,1,26 -lettuce,0.6916666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -brush,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -scissors,0.7216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -lime,0.6883333333333332,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.635,1.0,0.5333333333333332,0.6666666666666666,1,26 -top,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -spiral,0.6416666666666666,1.0,0.7,0.7833333333333333,1,26 -handles,0.5383333333333333,1.0,0.5166666666666666,0.65,1,25 -camera,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -eraser,0.8,1.0,0.7833333333333333,0.85,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.6266666666666667,1.0,0.55,0.6833333333333333,1,26 -pitcher,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -phone,0.655,1.0,0.5999999999999999,0.7166666666666667,1,26 -stick,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,25 -cereal,0.58,1.0,0.4833333333333333,0.6333333333333333,1,26 -bulb,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -hair,0.63,1.0,0.6166666666666666,0.7166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6133333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -can,0.8433333333333334,1.0,0.8,0.8800000000000001,2,25 -coca,0.45,1.0,0.5166666666666666,0.65,1,26 -crackers,0.6,1.0,0.6666666666666666,0.75,1,26 -plate,0.79,1.0,0.7166666666666666,0.8,1,25 -calculator,0.5266666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -tissues,0.735,1.0,0.6499999999999999,0.75,1,26 -juice,0.6249999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -pink,0.735,1.0,0.5666666666666667,0.7,1,25 -lemon,0.7249999999999999,1.0,0.7,0.7833333333333333,1,26 -peach,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.6016666666666667,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6066666666666667,1.0,0.4333333333333333,0.6,1,26 -blue,0.5549999999999999,1.0,0.4833333333333333,0.6333333333333334,1,25 -used,0.3566666666666667,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -ball,0.6266666666666667,1.0,0.5833333333333333,0.7,1,25 -notebook,0.5633333333333334,1.0,0.5166666666666666,0.65,1,26 -garlic,0.6166666666666666,1.0,0.6499999999999999,0.75,1,26 -cleaning,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.8733333333333334,1.0,0.8333333333333333,0.9,2,26 -container,0.805,1.0,0.6666666666666666,0.7666666666666667,1,25 -tomato,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -cellphone,0.4966666666666666,0.65,0.6333333333333333,0.5633333333333334,1,26 -potato,0.7333333333333333,1.0,0.6499999999999999,0.75,1,25 -light,0.8666666666666666,1.0,0.8666666666666666,0.9199999999999999,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,25 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.6459259259259258 -F1-Score: 0.6829012345679013 -Precision: 0.9030864197530865 -Recall: 0.5984567901234569 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6383333333333333,1.0,0.5166666666666666,0.65,1,24 -yellow,0.8683333333333334,1.0,0.7,0.8066666666666666,6,25 -looks,0.7666666666666667,1.0,0.7166666666666666,0.8,1,24 -keyboard,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.58,1.0,0.4666666666666666,0.6166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -flashlight,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -cup,0.3283333333333333,0.5,0.5333333333333333,0.49333333333333335,1,26 -folded,0.7533333333333333,1.0,0.5666666666666667,0.7,1,26 -jam,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -black,0.9216666666666666,0.8,1.0,0.8666666666666666,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7066666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -soccer,0.8333333333333333,1.0,0.7833333333333333,0.85,1,26 -hat,0.705,1.0,0.5999999999999999,0.7166666666666666,1,26 -brown,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coffee,0.8433333333333334,1.0,0.7,0.8,1,25 -handle,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -food,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,25 -towel,0.65,1.0,0.6499999999999999,0.75,1,26 -chips,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -stapler,0.8066666666666666,1.0,0.65,0.7666666666666667,1,26 -onion,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -bag,0.8233333333333335,1.0,0.6833333333333333,0.7833333333333333,1,26 -sponge,0.8416666666666668,1.0,0.65,0.7666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.73,1.0,0.5999999999999999,0.7166666666666667,1,25 -special,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -colgate,0.6383333333333334,1.0,0.5833333333333333,0.7,1,26 -leaf,0.505,1.0,0.41666666666666663,0.5833333333333333,1,26 -tube,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -cell,0.45999999999999996,0.5,0.6166666666666666,0.53,1,26 -mug,0.8133333333333332,1.0,0.75,0.8166666666666667,1,25 -yogurt,0.6849999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -plantain,0.7333333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -wheat,0.7466666666666666,1.0,0.6,0.7166666666666667,1,26 -kleenex,0.4916666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -toothbrush,0.715,1.0,0.55,0.6833333333333333,1,26 -binder,0.7533333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -baseball,0.6833333333333333,1.0,0.6666666666666666,0.75,1,26 -pliers,0.6516666666666666,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.775,1.0,0.6666666666666666,0.7666666666666667,1,26 -thins,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -package,0.75,1.0,0.6666666666666666,0.7666666666666666,1,26 -k,0.6133333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.5716666666666665,1.0,0.5333333333333333,0.6666666666666666,1,26 -fruit,0.8366666666666667,0.8333333333333333,0.8666666666666666,0.8133333333333335,2,26 -apple,0.6466666666666667,1.0,0.6,0.7166666666666667,1,25 -bell,0.8166666666666668,1.0,0.8166666666666667,0.8666666666666668,1,26 -battery,0.79,1.0,0.7166666666666666,0.8,1,26 -jar,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -bound,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -lettuce,0.6433333333333333,1.0,0.5,0.65,1,26 -brush,0.64,1.0,0.45,0.6166666666666667,1,26 -scissors,0.6883333333333332,1.0,0.5666666666666667,0.7,1,26 -lime,0.38,1.0,0.4333333333333333,0.5833333333333333,1,25 -toothpaste,0.8583333333333332,1.0,0.7833333333333333,0.85,1,26 -top,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -spiral,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -handles,0.5833333333333333,1.0,0.4833333333333332,0.6333333333333333,1,25 -camera,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -eraser,0.6633333333333333,1.0,0.65,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6016666666666667,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.4916666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -phone,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -stick,0.7633333333333333,1.0,0.7166666666666666,0.8,1,25 -cereal,0.5583333333333333,1.0,0.5833333333333333,0.7,1,26 -bulb,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7183333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -can,0.8216666666666667,1.0,0.8,0.8800000000000001,2,26 -coca,0.73,1.0,0.65,0.75,1,26 -crackers,0.8300000000000001,1.0,0.7833333333333333,0.85,1,26 -plate,0.58,1.0,0.5166666666666666,0.65,1,25 -calculator,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -tissues,0.7433333333333334,1.0,0.5666666666666667,0.7,1,26 -juice,0.7516666666666667,1.0,0.6499999999999999,0.75,1,26 -pink,0.8,1.0,0.55,0.7,1,25 -lemon,0.655,1.0,0.5833333333333333,0.7,1,26 -peach,0.6816666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6433333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -blue,0.76,1.0,0.6166666666666666,0.7333333333333333,1,25 -used,0.19333333333333333,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.7466666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -ball,0.43,1.0,0.4333333333333333,0.5833333333333333,1,25 -notebook,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -garlic,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.63,1.0,0.5499999999999999,0.6666666666666666,1,26 -pair,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -container,0.725,1.0,0.7499999999999999,0.8166666666666667,1,25 -tomato,0.525,1.0,0.5499999999999999,0.6666666666666666,1,26 -cellphone,0.4916666666666667,0.5,0.5999999999999999,0.52,1,26 -potato,0.4666666666666666,1.0,0.5166666666666666,0.65,1,26 -light,0.7966666666666666,1.0,0.7666666666666667,0.86,2,25 -green,1.0,1.0,1.0,1.0,3,22 -bottle,1.0,1.0,1.0,1.0,2,26 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.6624691358024691 -F1-Score: 0.6897222222222223 -Precision: 0.8993827160493827 -Recall: 0.6064814814814815 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -yellow,0.7166666666666667,0.6666666666666666,0.6666666666666667,0.6399999999999999,6,23 -looks,0.595,0.6,0.7499999999999999,0.59,1,24 -keyboard,0.8083333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -glue,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.4499999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -flashlight,0.4833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -cup,0.76,1.0,0.65,0.75,1,26 -folded,0.475,1.0,0.4666666666666666,0.6166666666666667,1,26 -jam,0.55,1.0,0.5833333333333333,0.7,1,26 -black,0.9266666666666667,0.8333333333333333,1.0,0.8933333333333333,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7849999999999999,1.0,0.6333333333333333,0.75,1,26 -soccer,0.7183333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -hat,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.7266666666666667,1.0,0.65,0.75,1,26 -handle,0.7849999999999999,1.0,0.7166666666666666,0.8,1,25 -food,0.7133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -towel,0.85,1.0,0.7833333333333333,0.85,1,26 -chips,0.635,1.0,0.5833333333333333,0.7,1,26 -stapler,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -onion,0.8233333333333335,1.0,0.65,0.7666666666666667,1,26 -bag,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -sponge,0.6399999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.42666666666666664,1.0,0.45,0.6,1,26 -special,0.5916666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -colgate,0.8433333333333334,1.0,0.7,0.8,1,26 -leaf,0.6066666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -tube,0.5416666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -cell,0.605,1.0,0.5833333333333333,0.7,1,26 -mug,0.47333333333333344,1.0,0.4666666666666666,0.6166666666666667,1,26 -yogurt,0.78,1.0,0.5833333333333333,0.7166666666666667,1,26 -plantain,0.655,0.75,0.6666666666666666,0.65,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -wheat,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -kleenex,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -toothbrush,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -binder,0.6316666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -baseball,0.7166666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.8266666666666668,1.0,0.7333333333333333,0.8166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.61,1.0,0.5333333333333333,0.6666666666666666,1,26 -thins,0.65,1.0,0.6499999999999999,0.75,1,26 -package,0.7166666666666666,1.0,0.7333333333333333,0.8,1,26 -k,0.5549999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -jelly,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -fruit,0.6433333333333333,0.6333333333333333,0.8333333333333334,0.6733333333333332,2,25 -apple,0.5349999999999999,0.7,0.5833333333333333,0.5633333333333334,1,25 -bell,0.575,1.0,0.5833333333333333,0.7,1,26 -battery,0.8,1.0,0.7166666666666666,0.8,1,26 -jar,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -bound,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -lettuce,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -brush,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -scissors,0.675,1.0,0.7,0.7833333333333333,1,26 -lime,0.6966666666666665,1.0,0.6499999999999999,0.75,1,25 -toothpaste,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -top,0.7183333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -spiral,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -handles,0.7716666666666667,1.0,0.7166666666666666,0.8,1,25 -camera,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -eraser,0.7583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.66,0.9,0.5833333333333333,0.6666666666666667,1,26 -pitcher,0.5133333333333333,1.0,0.5833333333333333,0.7,1,26 -phone,0.505,1.0,0.4499999999999999,0.6,1,26 -stick,0.7933333333333333,1.0,0.7333333333333333,0.8166666666666667,1,25 -cereal,0.75,1.0,0.7,0.7833333333333333,1,26 -bulb,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,27 -hair,0.6966666666666667,1.0,0.6,0.7166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -can,0.9400000000000001,1.0,0.9,0.9400000000000001,2,25 -coca,0.4966666666666667,1.0,0.5166666666666666,0.65,1,26 -crackers,0.6916666666666667,1.0,0.6,0.7166666666666667,1,26 -plate,0.7933333333333333,1.0,0.6333333333333333,0.75,1,25 -calculator,0.6083333333333333,0.5,0.8333333333333333,0.6066666666666667,1,26 -tissues,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -juice,0.7166666666666666,1.0,0.7166666666666666,0.8,1,26 -pink,0.6066666666666667,1.0,0.5166666666666666,0.65,1,25 -lemon,0.6666666666666666,1.0,0.6666666666666666,0.75,1,26 -peach,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -bowl,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7183333333333334,1.0,0.5666666666666667,0.7,1,26 -blue,0.5666666666666667,0.9,0.5499999999999999,0.6,1,25 -used,0.5466666666666666,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.65,1.0,0.6833333333333333,0.7666666666666667,1,26 -ball,0.5983333333333334,1.0,0.5333333333333333,0.6666666666666666,1,25 -notebook,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -garlic,0.655,1.0,0.6333333333333332,0.7333333333333333,1,26 -cleaning,0.73,1.0,0.65,0.75,1,26 -pair,0.875,1.0,0.8666666666666668,0.9200000000000002,2,27 -container,0.4916666666666666,1.0,0.5499999999999999,0.6666666666666667,1,26 -tomato,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -cellphone,0.7333333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -potato,0.63,1.0,0.5333333333333332,0.6666666666666666,1,25 -light,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.650432098765432 -F1-Score: 0.6816049382716051 -Precision: 0.8933641975308642 -Recall: 0.6037037037037037 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6666666666666667,1.0,0.6333333333333333,0.7333333333333333,1,25 -yellow,0.85,0.9,0.7833333333333333,0.7933333333333333,6,25 -looks,0.68,1.0,0.6,0.7166666666666667,1,24 -keyboard,0.5566666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -glue,0.5966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.5,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.5633333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -cup,0.38333333333333336,0.5,0.6166666666666666,0.53,1,26 -folded,0.63,1.0,0.5333333333333333,0.6666666666666667,1,26 -jam,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.8,0.7083333333333333,1.0,0.8285714285714285,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7666666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -soccer,0.73,1.0,0.7,0.7833333333333333,1,26 -hat,0.74,1.0,0.6666666666666666,0.7666666666666667,1,26 -brown,0.865,1.0,0.8,0.8800000000000001,2,24 -coffee,0.85,1.0,0.8166666666666667,0.8666666666666666,1,26 -handle,0.8800000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -food,0.7166666666666667,1.0,0.75,0.8166666666666667,1,24 -towel,0.6,1.0,0.5499999999999999,0.6666666666666666,1,26 -chips,0.8149999999999998,1.0,0.6833333333333333,0.7833333333333333,1,26 -stapler,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -onion,0.7499999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -bag,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -sponge,0.61,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5516666666666666,1.0,0.5166666666666666,0.65,1,25 -special,0.575,1.0,0.5999999999999999,0.7166666666666666,1,26 -colgate,0.6,1.0,0.6166666666666666,0.7166666666666667,1,26 -leaf,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -tube,0.8166666666666668,1.0,0.7833333333333333,0.85,1,26 -cell,0.45166666666666655,0.5,0.6,0.52,1,26 -mug,0.875,1.0,0.8166666666666667,0.8666666666666666,1,26 -yogurt,0.6249999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -plantain,0.6983333333333335,0.95,0.6666666666666666,0.7333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.5716666666666665,1.0,0.5166666666666666,0.65,1,26 -wheat,0.7933333333333333,1.0,0.6333333333333333,0.75,1,26 -kleenex,0.705,1.0,0.5999999999999999,0.7166666666666667,1,26 -toothbrush,0.7083333333333333,1.0,0.5666666666666667,0.7,1,26 -binder,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.7633333333333334,1.0,0.6333333333333333,0.75,1,26 -pliers,0.6183333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5416666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -thins,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -package,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -k,0.7350000000000001,1.0,0.6,0.7166666666666667,1,26 -jelly,0.75,1.0,0.6166666666666666,0.7333333333333333,1,26 -fruit,0.6966666666666667,0.6,0.9333333333333332,0.6966666666666667,2,25 -apple,0.5866666666666667,0.9,0.4833333333333333,0.6,1,25 -bell,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -battery,0.7133333333333334,1.0,0.65,0.75,1,26 -jar,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -bound,0.8416666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -lettuce,0.53,1.0,0.5499999999999999,0.6666666666666666,1,26 -brush,0.5716666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -lime,0.7583333333333333,1.0,0.6333333333333333,0.75,1,25 -toothpaste,0.6766666666666666,1.0,0.6,0.7166666666666667,1,26 -top,0.635,1.0,0.5333333333333333,0.6666666666666666,1,26 -spiral,0.675,1.0,0.7,0.7833333333333333,1,26 -handles,0.7666666666666666,1.0,0.7166666666666666,0.8,1,25 -camera,0.525,1.0,0.4833333333333333,0.6333333333333333,1,26 -eraser,0.8383333333333333,1.0,0.7,0.8,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.8016666666666665,0.9,0.7833333333333333,0.7833333333333333,1,26 -pitcher,0.73,1.0,0.5666666666666667,0.7,1,26 -phone,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -stick,0.73,1.0,0.7,0.7833333333333333,1,25 -cereal,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -bulb,0.89,1.0,0.8333333333333334,0.9000000000000001,2,26 -hair,0.7333333333333333,1.0,0.6833333333333333,0.7666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5966666666666667,1.0,0.45,0.6166666666666667,1,26 -can,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,24 -coca,0.4966666666666667,1.0,0.4333333333333333,0.5833333333333333,1,26 -crackers,0.5766666666666667,1.0,0.5833333333333333,0.7,1,26 -plate,0.6933333333333334,1.0,0.5666666666666667,0.7,1,25 -calculator,0.5716666666666667,0.65,0.5666666666666667,0.5566666666666666,1,26 -tissues,0.6166666666666667,1.0,0.6333333333333333,0.7333333333333334,1,26 -juice,0.8416666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -pink,0.8516666666666666,1.0,0.7,0.8,1,25 -lemon,0.6849999999999999,1.0,0.6499999999999999,0.75,1,26 -peach,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -bowl,0.725,1.0,0.6666666666666666,0.7666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.58,1.0,0.5166666666666666,0.65,1,26 -blue,0.705,1.0,0.65,0.75,1,25 -used,0.6249999999999999,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.5599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -ball,0.5883333333333333,1.0,0.4833333333333333,0.6333333333333333,1,25 -notebook,0.525,1.0,0.5666666666666667,0.6833333333333333,1,26 -garlic,0.7066666666666668,1.0,0.6666666666666666,0.7666666666666667,1,26 -cleaning,0.65,1.0,0.5499999999999999,0.6833333333333333,1,26 -pair,0.9133333333333333,1.0,0.9,0.9400000000000001,2,27 -container,0.5683333333333334,1.0,0.55,0.6833333333333333,1,25 -tomato,0.6266666666666666,1.0,0.5833333333333333,0.7,1,26 -cellphone,0.63,0.55,0.7833333333333333,0.6,1,26 -potato,0.8150000000000001,1.0,0.7333333333333333,0.8166666666666667,1,25 -light,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.8933333333333333,1.0,0.8666666666666666,0.9200000000000002,2,25 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.6531790123456789 -F1-Score: 0.685789241622575 -Precision: 0.890354938271605 -Recall: 0.6094135802469135 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,24 -yellow,0.8933333333333333,0.9,0.8833333333333332,0.8600000000000001,6,23 -looks,0.6966666666666667,1.0,0.5833333333333333,0.7,1,24 -keyboard,0.6333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -glue,0.6833333333333333,1.0,0.7,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -flashlight,0.565,1.0,0.4833333333333332,0.6333333333333333,1,26 -cup,0.7249999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -folded,0.7916666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -jam,0.605,1.0,0.5833333333333333,0.7,1,26 -black,0.8483333333333334,0.6833333333333333,1.0,0.7980952380952381,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.5766666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -soccer,0.5599999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -hat,0.7433333333333334,1.0,0.6499999999999999,0.75,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.6799999999999999,1.0,0.6499999999999999,0.75,1,25 -handle,0.8099999999999999,1.0,0.65,0.7666666666666667,1,26 -food,0.5799999999999998,1.0,0.5166666666666666,0.65,1,24 -towel,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.6799999999999999,1.0,0.5333333333333333,0.6833333333333333,1,26 -stapler,0.7216666666666666,1.0,0.7,0.7833333333333333,1,26 -onion,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -bag,0.5383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -sponge,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7166666666666667,1.0,0.5999999999999999,0.7166666666666667,1,25 -special,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -colgate,0.6166666666666666,1.0,0.5166666666666666,0.65,1,26 -leaf,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -tube,0.635,1.0,0.5833333333333333,0.7,1,26 -cell,0.5,0.5,0.6,0.5333333333333333,1,26 -mug,0.5716666666666667,1.0,0.5833333333333333,0.7,1,25 -yogurt,0.5683333333333332,1.0,0.5333333333333333,0.6666666666666666,1,26 -plantain,0.875,1.0,0.8166666666666667,0.8666666666666666,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -wheat,0.4999999999999999,1.0,0.4166666666666667,0.5833333333333333,1,26 -kleenex,0.5766666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -toothbrush,0.5333333333333334,1.0,0.5166666666666666,0.65,1,26 -binder,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -baseball,0.7499999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -pliers,0.755,1.0,0.7666666666666666,0.8333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.5833333333333333,1.0,0.6666666666666666,0.75,1,26 -thins,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -package,0.4666666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -k,0.675,1.0,0.65,0.75,1,26 -jelly,0.605,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.8016666666666667,0.75,0.8999999999999998,0.78,2,25 -apple,0.5916666666666666,0.9,0.6333333333333332,0.6666666666666666,1,25 -bell,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -battery,0.7266666666666666,1.0,0.7,0.7833333333333333,1,26 -jar,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -bound,0.63,1.0,0.6333333333333332,0.7333333333333333,1,26 -lettuce,0.6083333333333332,1.0,0.5499999999999999,0.6666666666666666,1,26 -brush,0.63,1.0,0.5333333333333333,0.6666666666666667,1,26 -scissors,0.79,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.5266666666666666,1.0,0.5,0.6333333333333333,1,25 -toothpaste,0.7,1.0,0.75,0.8166666666666667,1,26 -top,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -spiral,0.8400000000000001,1.0,0.7,0.8,1,26 -handles,0.7016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -camera,0.6583333333333333,1.0,0.5,0.65,1,26 -eraser,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5833333333333333,1.0,0.5999999999999999,0.7,1,26 -pitcher,0.46333333333333326,1.0,0.4833333333333332,0.6166666666666666,1,26 -phone,0.49333333333333335,1.0,0.45,0.6,1,26 -stick,0.7166666666666666,1.0,0.7333333333333333,0.8,1,25 -cereal,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.96,1.0,0.9333333333333332,0.96,2,26 -hair,0.78,1.0,0.7166666666666666,0.8,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -can,0.8383333333333333,1.0,0.8,0.8800000000000001,2,25 -coca,0.5299999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -crackers,0.7133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -plate,0.7133333333333333,1.0,0.7,0.7833333333333333,1,25 -calculator,0.29166666666666663,0.5,0.45,0.45666666666666667,1,26 -tissues,0.7933333333333332,1.0,0.7166666666666666,0.8,1,26 -juice,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -pink,0.675,1.0,0.6,0.7166666666666667,1,25 -lemon,0.605,1.0,0.5333333333333333,0.6666666666666666,1,26 -peach,0.5966666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -bowl,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5083333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -blue,0.6466666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -used,0.5366666666666666,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.5599999999999999,1.0,0.45,0.6166666666666667,1,26 -ball,0.7466666666666667,1.0,0.7166666666666666,0.8,1,25 -notebook,0.7516666666666667,1.0,0.6499999999999999,0.75,1,26 -garlic,0.6383333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -cleaning,0.7,1.0,0.55,0.6833333333333333,1,26 -pair,0.975,1.0,0.9666666666666666,0.9800000000000001,2,27 -container,0.635,1.0,0.4833333333333333,0.6333333333333333,1,26 -tomato,0.8833333333333332,1.0,0.8333333333333333,0.8833333333333332,1,26 -cellphone,0.5216666666666667,0.5,0.6166666666666666,0.53,1,26 -potato,0.5966666666666667,1.0,0.5166666666666666,0.65,1,25 -light,0.9349999999999999,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.6389506172839506 -F1-Score: 0.6815255731922398 -Precision: 0.8956790123456789 -Recall: 0.6007716049382715 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.74,1.0,0.6166666666666666,0.7333333333333333,1,24 -yellow,0.8416666666666666,0.85,0.7833333333333333,0.76,6,24 -looks,0.515,0.85,0.5666666666666667,0.6,1,24 -keyboard,0.745,1.0,0.5833333333333333,0.7166666666666667,1,26 -glue,0.705,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.75,1.0,0.6833333333333333,0.7833333333333333,1,26 -flashlight,0.63,1.0,0.5833333333333333,0.7,1,26 -cup,0.3366666666666667,0.5,0.6333333333333333,0.5266666666666666,1,26 -folded,0.6683333333333332,1.0,0.6499999999999999,0.75,1,26 -jam,0.5416666666666666,1.0,0.5833333333333333,0.7,1,26 -black,0.845,0.7,1.0,0.8114285714285714,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7016666666666667,1.0,0.65,0.75,1,26 -soccer,0.635,1.0,0.6,0.7166666666666667,1,26 -hat,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -brown,0.9333333333333332,1.0,0.9333333333333332,0.9600000000000002,2,25 -coffee,0.5266666666666666,1.0,0.41666666666666663,0.5833333333333333,1,26 -handle,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -food,0.5916666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -towel,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -chips,0.5083333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -stapler,0.5083333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.7233333333333334,1.0,0.5833333333333333,0.7,1,26 -bag,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -sponge,0.4416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666666,1,25 -special,0.79,1.0,0.6666666666666666,0.7666666666666667,1,26 -colgate,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -leaf,0.7,1.0,0.5999999999999999,0.7166666666666667,1,26 -tube,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -cell,0.5216666666666666,1.0,0.5166666666666666,0.65,1,26 -mug,0.7516666666666667,1.0,0.6333333333333333,0.75,1,26 -yogurt,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.9083333333333334,0.9,0.9,0.8666666666666666,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.5683333333333334,1.0,0.4833333333333333,0.6333333333333334,1,26 -wheat,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -kleenex,0.6666666666666667,1.0,0.6166666666666666,0.7166666666666667,1,26 -toothbrush,0.61,1.0,0.4999999999999999,0.6333333333333333,1,26 -binder,0.8099999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -baseball,0.6716666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -pliers,0.6416666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6516666666666666,1.0,0.6,0.7166666666666667,1,26 -thins,0.69,1.0,0.5333333333333333,0.6666666666666666,1,26 -package,0.745,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.75,1.0,0.75,0.8166666666666667,1,26 -jelly,0.7350000000000001,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.6466666666666667,0.6666666666666667,0.8333333333333334,0.7166666666666667,2,25 -apple,0.6316666666666666,0.9,0.5499999999999999,0.6333333333333333,1,25 -bell,0.7083333333333333,1.0,0.5833333333333333,0.7,1,26 -battery,0.5583333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -jar,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -bound,0.6216666666666666,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -brush,0.8216666666666667,1.0,0.7833333333333333,0.85,1,26 -scissors,0.575,1.0,0.4833333333333333,0.6333333333333333,1,26 -lime,0.7216666666666667,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.7133333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -top,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -spiral,0.755,1.0,0.7166666666666666,0.8,1,26 -handles,0.5766666666666665,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.4933333333333333,1.0,0.45,0.6,1,26 -eraser,0.6483333333333334,1.0,0.5666666666666667,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.5499999999999999,1.0,0.5166666666666666,0.65,1,26 -pitcher,0.705,1.0,0.5999999999999999,0.7166666666666667,1,26 -phone,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -stick,0.5549999999999999,1.0,0.4999999999999999,0.6333333333333333,1,25 -cereal,0.4216666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -bulb,0.96,1.0,0.9333333333333332,0.96,2,27 -hair,0.7216666666666667,1.0,0.6,0.7166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.775,1.0,0.6666666666666666,0.7666666666666666,1,26 -can,0.8766666666666667,1.0,0.8333333333333333,0.9,2,25 -coca,0.5633333333333332,1.0,0.6166666666666666,0.7166666666666667,1,26 -crackers,0.6166666666666667,1.0,0.5833333333333333,0.7,1,26 -plate,0.7633333333333333,1.0,0.7,0.7833333333333333,1,25 -calculator,0.7383333333333334,0.85,0.6833333333333333,0.6833333333333333,1,26 -tissues,0.585,1.0,0.5333333333333333,0.6666666666666667,1,26 -juice,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -pink,0.4916666666666666,1.0,0.4666666666666666,0.6166666666666666,1,25 -lemon,0.6816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -peach,0.655,1.0,0.6499999999999999,0.75,1,26 -bowl,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.9083333333333332,1.0,0.8833333333333332,0.9166666666666666,1,26 -blue,0.7216666666666666,1.0,0.7166666666666666,0.8,1,25 -used,0.40499999999999997,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.8483333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -ball,0.6849999999999999,1.0,0.6,0.7166666666666667,1,25 -notebook,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -garlic,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666667,1,26 -cleaning,0.38333333333333336,1.0,0.38333333333333336,0.55,1,26 -pair,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -container,0.6933333333333332,1.0,0.6333333333333333,0.7333333333333333,1,25 -tomato,0.86,1.0,0.7,0.8,1,26 -cellphone,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -potato,0.49333333333333335,1.0,0.4333333333333333,0.5833333333333333,1,25 -light,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8216666666666667,1.0,0.8,0.8800000000000001,2,25 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.6415740740740743 -F1-Score: 0.6791181657848324 -Precision: 0.9001543209876544 -Recall: 0.5950617283950616 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6633333333333333,1.0,0.4999999999999999,0.65,1,24 -yellow,0.8350000000000002,0.85,0.7666666666666667,0.77,6,24 -looks,0.6783333333333333,0.8,0.7166666666666666,0.6833333333333333,1,24 -keyboard,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -glue,0.77,1.0,0.6333333333333333,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.5216666666666667,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.6,1.0,0.6166666666666666,0.7166666666666666,1,26 -cup,0.25166666666666665,0.5,0.5166666666666666,0.4833333333333334,1,26 -folded,0.53,1.0,0.5166666666666666,0.65,1,26 -jam,0.6599999999999999,1.0,0.6,0.7166666666666666,1,26 -black,0.9066666666666668,0.7666666666666667,1.0,0.8466666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -soccer,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -hat,0.6216666666666666,1.0,0.65,0.75,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -coffee,0.705,1.0,0.5833333333333333,0.7,1,25 -handle,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -food,0.51,1.0,0.4666666666666666,0.6166666666666666,1,24 -towel,0.65,1.0,0.6,0.7166666666666667,1,26 -chips,0.6816666666666666,1.0,0.6,0.7166666666666666,1,26 -stapler,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -onion,0.7416666666666666,1.0,0.7166666666666666,0.8,1,26 -bag,0.725,1.0,0.5666666666666667,0.7,1,26 -sponge,0.73,1.0,0.7499999999999999,0.8166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.65,1.0,0.6833333333333333,0.7666666666666667,1,26 -special,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -colgate,0.7183333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -leaf,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.6766666666666665,1.0,0.5333333333333333,0.6666666666666667,1,26 -cell,0.5216666666666667,1.0,0.5166666666666666,0.65,1,26 -mug,0.7166666666666666,1.0,0.6666666666666666,0.75,1,25 -yogurt,0.5966666666666667,1.0,0.6333333333333332,0.7333333333333333,1,26 -plantain,0.6666666666666667,1.0,0.6,0.7166666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.45499999999999996,1.0,0.45,0.6,1,26 -wheat,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -kleenex,0.6833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -toothbrush,0.7016666666666667,1.0,0.6499999999999999,0.75,1,26 -binder,0.7616666666666667,1.0,0.5666666666666667,0.7,1,26 -baseball,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -pliers,0.705,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8333333333333333,1.0,0.8333333333333333,0.8833333333333332,1,26 -thins,0.6966666666666667,1.0,0.7,0.7833333333333333,1,26 -package,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -k,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -jelly,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -fruit,0.735,0.7333333333333333,0.8333333333333334,0.7366666666666667,2,26 -apple,0.665,0.8,0.6166666666666666,0.6166666666666667,1,25 -bell,0.5216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -battery,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jar,0.7116666666666667,1.0,0.4999999999999999,0.65,1,26 -bound,0.5133333333333333,1.0,0.4833333333333333,0.6166666666666667,1,26 -lettuce,0.6416666666666666,1.0,0.65,0.75,1,26 -brush,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -scissors,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.5633333333333332,1.0,0.6166666666666666,0.7166666666666667,1,25 -toothpaste,0.485,1.0,0.4499999999999999,0.6,1,26 -top,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -spiral,0.53,1.0,0.5166666666666666,0.65,1,26 -handles,0.71,1.0,0.6166666666666666,0.7333333333333333,1,25 -camera,0.76,1.0,0.6833333333333333,0.7833333333333334,1,26 -eraser,0.6399999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6733333333333332,1.0,0.5166666666666666,0.6666666666666667,1,26 -pitcher,0.8466666666666667,1.0,0.75,0.8333333333333333,1,26 -phone,0.59,1.0,0.5166666666666666,0.65,1,26 -stick,0.6883333333333332,1.0,0.6499999999999999,0.75,1,25 -cereal,0.6583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.8916666666666666,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.4766666666666667,1.0,0.5166666666666666,0.65,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -coca,0.5966666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -crackers,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -plate,0.8766666666666666,1.0,0.7833333333333333,0.85,1,25 -calculator,0.47333333333333344,0.55,0.65,0.5466666666666666,1,26 -tissues,0.48,1.0,0.4999999999999999,0.6333333333333333,1,26 -juice,0.8266666666666668,1.0,0.7833333333333333,0.85,1,26 -pink,0.6033333333333333,1.0,0.4333333333333333,0.6,1,25 -lemon,0.45,1.0,0.5166666666666666,0.65,1,26 -peach,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -bowl,0.76,1.0,0.6499999999999999,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -blue,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -used,0.27666666666666667,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.6766666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -ball,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,25 -notebook,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -garlic,0.65,1.0,0.6666666666666666,0.75,1,26 -cleaning,0.7216666666666667,1.0,0.6333333333333333,0.75,1,26 -pair,0.835,1.0,0.8,0.8800000000000001,2,27 -container,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -tomato,0.605,1.0,0.6333333333333333,0.7333333333333333,1,26 -cellphone,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -potato,0.7466666666666666,1.0,0.6666666666666666,0.7666666666666667,1,25 -light,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,27 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8916666666666666,1.0,0.8666666666666666,0.9199999999999999,2,26 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.6410648148148149 -F1-Score: 0.6810493827160493 -Precision: 0.8981481481481481 -Recall: 0.5981481481481481 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.825,1.0,0.7333333333333333,0.8166666666666667,1,24 -yellow,0.8550000000000001,1.0,0.7,0.8066666666666666,6,24 -looks,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666666,1,24 -keyboard,0.6966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.6166666666666666,1.0,0.5999999999999999,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.7166666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -flashlight,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.56,0.5,0.7499999999999999,0.5700000000000001,1,26 -folded,0.5599999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -jam,0.4416666666666666,1.0,0.4833333333333333,0.6166666666666666,1,26 -black,0.8850000000000001,0.7333333333333333,1.0,0.8266666666666665,6,20 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -soccer,0.525,1.0,0.5,0.6333333333333333,1,26 -hat,0.6966666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.8683333333333334,1.0,0.8333333333333333,0.9,2,24 -coffee,0.675,1.0,0.6,0.7166666666666667,1,25 -handle,0.7466666666666666,1.0,0.6666666666666666,0.7666666666666667,1,25 -food,0.425,1.0,0.4333333333333333,0.5833333333333333,1,26 -towel,0.8333333333333334,1.0,0.8333333333333333,0.8833333333333332,1,26 -chips,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -stapler,0.7366666666666666,1.0,0.5666666666666667,0.7,1,26 -onion,0.575,1.0,0.5166666666666666,0.65,1,26 -bag,0.5716666666666665,1.0,0.5833333333333333,0.7,1,26 -sponge,0.5416666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -zero,0,0,0,0,1,26 -computer,0.6716666666666666,1.0,0.5833333333333333,0.7,1,25 -special,0.5349999999999999,1.0,0.5166666666666666,0.65,1,26 -colgate,0.4916666666666666,1.0,0.5,0.6333333333333333,1,26 -leaf,0.8416666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -tube,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -cell,0.48166666666666663,0.55,0.7,0.5633333333333334,1,26 -mug,0.8016666666666665,1.0,0.7166666666666666,0.8,1,25 -yogurt,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -plantain,0.635,1.0,0.6,0.7166666666666667,1,26 -red,1.0,1.0,1.0,1.0,3,25 -pepper,0.655,1.0,0.55,0.6833333333333333,1,26 -wheat,0.615,1.0,0.55,0.6833333333333333,1,26 -kleenex,0.6583333333333333,1.0,0.5666666666666667,0.7,1,26 -toothbrush,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -binder,0.65,1.0,0.6166666666666666,0.7166666666666666,1,26 -baseball,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -pliers,0.6766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -thins,0.7433333333333333,1.0,0.6,0.7166666666666667,1,26 -package,0.6900000000000001,1.0,0.5833333333333333,0.7,1,26 -k,0.6883333333333334,1.0,0.55,0.6833333333333333,1,26 -jelly,0.7466666666666668,1.0,0.7166666666666666,0.8,1,26 -fruit,0.8383333333333335,0.85,0.8666666666666668,0.82,2,25 -apple,0.4216666666666666,1.0,0.38333333333333336,0.55,1,25 -bell,0.5183333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -battery,0.585,1.0,0.5333333333333333,0.6666666666666667,1,26 -jar,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.5916666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.7566666666666666,1.0,0.5666666666666667,0.7,1,26 -brush,0.7833333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -scissors,0.7583333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -lime,0.5133333333333333,1.0,0.5166666666666666,0.65,1,25 -toothpaste,0.6716666666666666,1.0,0.55,0.6833333333333333,1,26 -top,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.6916666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -handles,0.6583333333333333,1.0,0.6,0.7166666666666667,1,25 -camera,0.58,1.0,0.4999999999999999,0.6333333333333333,1,26 -eraser,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.505,1.0,0.41666666666666663,0.5833333333333334,1,26 -pitcher,0.5799999999999998,1.0,0.5499999999999999,0.6666666666666667,1,26 -phone,0.4800000000000001,1.0,0.4666666666666666,0.6166666666666667,1,26 -stick,0.71,1.0,0.5499999999999999,0.6833333333333333,1,25 -cereal,0.8166666666666668,1.0,0.6833333333333333,0.7833333333333333,1,26 -bulb,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,26 -hair,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6233333333333333,1.0,0.5833333333333333,0.7,1,26 -can,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,24 -coca,0.6466666666666666,1.0,0.6833333333333332,0.7666666666666666,1,26 -crackers,0.685,1.0,0.6,0.7166666666666667,1,26 -plate,0.5766666666666667,1.0,0.5166666666666666,0.65,1,25 -calculator,0.5133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -tissues,0.7583333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -juice,0.6733333333333333,1.0,0.5666666666666667,0.7,1,26 -pink,0.7083333333333333,1.0,0.65,0.75,1,25 -lemon,0.775,1.0,0.7333333333333333,0.8166666666666667,1,26 -peach,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -bowl,0.7133333333333333,1.0,0.65,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6716666666666667,1.0,0.6,0.7166666666666667,1,26 -blue,0.775,1.0,0.55,0.7,1,25 -used,0.41833333333333333,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.575,1.0,0.5333333333333333,0.6666666666666667,1,26 -ball,0.8150000000000001,1.0,0.6833333333333333,0.7833333333333333,1,25 -notebook,0.7683333333333333,1.0,0.65,0.75,1,26 -garlic,0.58,1.0,0.55,0.6833333333333333,1,26 -cleaning,0.7133333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -pair,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -container,0.6133333333333333,1.0,0.5166666666666666,0.65,1,25 -tomato,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -cellphone,0.4383333333333333,0.5,0.55,0.5033333333333334,1,26 -potato,0.7183333333333333,1.0,0.65,0.75,1,25 -light,0.8933333333333333,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.6378549382716048 -F1-Score: 0.6762962962962962 -Precision: 0.8993827160493827 -Recall: 0.5899691358024691 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.425,1.0,0.4333333333333334,0.5833333333333333,1,24 -yellow,0.8183333333333334,1.0,0.6333333333333333,0.7666666666666667,6,24 -looks,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,24 -keyboard,0.6266666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -glue,0.6233333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -flashlight,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -cup,0.4733333333333333,0.5,0.7,0.5533333333333335,1,26 -folded,0.53,1.0,0.5333333333333333,0.6666666666666667,1,26 -jam,0.7016666666666667,1.0,0.65,0.75,1,26 -black,0.9333333333333333,0.8166666666666667,1.0,0.8799999999999999,6,22 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -soccer,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -hat,0.5916666666666667,1.0,0.6166666666666666,0.7166666666666667,1,26 -brown,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coffee,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -handle,0.5083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -food,0.45499999999999996,1.0,0.4,0.5666666666666667,1,24 -towel,0.7716666666666667,1.0,0.6499999999999999,0.75,1,26 -chips,0.76,1.0,0.6666666666666666,0.7666666666666666,1,26 -stapler,0.7216666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -onion,0.6499999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -bag,0.45,1.0,0.5499999999999999,0.6666666666666666,1,26 -sponge,0.6466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.675,1.0,0.6333333333333333,0.7333333333333333,1,25 -special,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -colgate,0.48,1.0,0.4999999999999999,0.6333333333333333,1,26 -leaf,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -tube,0.705,1.0,0.7,0.7833333333333333,1,26 -cell,0.3866666666666666,0.55,0.4833333333333334,0.4866666666666667,1,26 -mug,0.7816666666666666,1.0,0.6833333333333333,0.7833333333333333,1,25 -yogurt,0.6933333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -plantain,0.7916666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.7066666666666668,1.0,0.5166666666666666,0.6666666666666667,1,26 -wheat,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -kleenex,0.6766666666666666,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.605,1.0,0.4666666666666666,0.6166666666666666,1,26 -binder,0.5766666666666667,1.0,0.5166666666666666,0.65,1,26 -baseball,0.5966666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -pliers,0.7333333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -thins,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666666,1,26 -package,0.7133333333333333,1.0,0.6,0.7166666666666667,1,26 -k,0.7733333333333332,1.0,0.6666666666666666,0.7666666666666666,1,26 -jelly,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -fruit,0.825,0.6666666666666667,0.9666666666666666,0.7733333333333334,2,26 -apple,0.6883333333333332,1.0,0.5666666666666667,0.7,1,25 -bell,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -battery,0.655,1.0,0.6166666666666666,0.7333333333333334,1,26 -jar,0.72,1.0,0.6166666666666666,0.7333333333333333,1,26 -bound,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -lettuce,0.4833333333333333,1.0,0.4333333333333334,0.5833333333333333,1,26 -brush,0.675,1.0,0.6166666666666666,0.7333333333333333,1,26 -scissors,0.6016666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -lime,0.8550000000000001,1.0,0.8333333333333333,0.8833333333333332,1,25 -toothpaste,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -top,0.6833333333333333,1.0,0.65,0.75,1,26 -spiral,0.8166666666666667,1.0,0.7833333333333333,0.85,1,26 -handles,0.605,1.0,0.5166666666666666,0.65,1,25 -camera,0.7,1.0,0.6499999999999999,0.75,1,26 -eraser,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5766666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -pitcher,0.5333333333333333,1.0,0.4833333333333334,0.6333333333333333,1,26 -phone,0.6433333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -stick,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,25 -cereal,0.7733333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,27 -hair,0.505,1.0,0.4666666666666666,0.6166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666666,1,26 -can,0.8833333333333332,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.5166666666666666,1.0,0.4833333333333332,0.6166666666666666,1,26 -crackers,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -plate,0.755,1.0,0.6499999999999999,0.75,1,25 -calculator,0.5516666666666665,0.7,0.55,0.5566666666666666,1,26 -tissues,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -pink,0.5,1.0,0.4999999999999999,0.6333333333333333,1,25 -lemon,0.7016666666666667,1.0,0.5666666666666667,0.7,1,26 -peach,0.8183333333333334,1.0,0.65,0.7666666666666667,1,26 -bowl,0.5916666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.89,1.0,0.75,0.8333333333333333,1,26 -blue,0.565,1.0,0.5333333333333333,0.6666666666666667,1,25 -used,0.34833333333333333,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.6716666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -ball,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -notebook,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -garlic,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.8466666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -pair,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,27 -container,0.475,1.0,0.4333333333333333,0.5833333333333333,1,25 -tomato,0.75,1.0,0.7166666666666666,0.8,1,26 -cellphone,0.395,0.6,0.5333333333333333,0.5133333333333333,1,26 -potato,0.6483333333333333,1.0,0.55,0.6833333333333333,1,26 -light,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8216666666666667,1.0,0.8,0.8800000000000001,2,27 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.6354166666666666 -F1-Score: 0.6749382716049382 -Precision: 0.896604938271605 -Recall: 0.5898148148148147 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -yellow,0.875,1.0,0.7833333333333333,0.8666666666666668,6,24 -looks,0.7966666666666666,0.95,0.6833333333333333,0.75,1,24 -keyboard,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -glue,0.5399999999999999,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.5266666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -cup,0.26166666666666666,0.5,0.6166666666666666,0.5166666666666667,1,26 -folded,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -jam,0.6933333333333332,1.0,0.6499999999999999,0.75,1,26 -black,0.8483333333333333,0.7083333333333333,1.0,0.8171428571428571,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -soccer,0.5583333333333333,1.0,0.5,0.6333333333333333,1,26 -hat,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -coffee,0.7066666666666668,1.0,0.6666666666666666,0.7666666666666667,1,25 -handle,0.5666666666666667,1.0,0.5999999999999999,0.7,1,26 -food,0.7383333333333333,1.0,0.65,0.75,1,26 -towel,0.7916666666666666,1.0,0.7166666666666666,0.8,1,26 -chips,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -stapler,0.46333333333333326,1.0,0.4666666666666666,0.6166666666666666,1,26 -onion,0.5633333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -bag,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -sponge,0.7716666666666666,1.0,0.6333333333333333,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -special,0.5633333333333332,1.0,0.4999999999999999,0.65,1,26 -colgate,0.825,1.0,0.8166666666666667,0.8666666666666666,1,26 -leaf,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -tube,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -cell,0.5666666666666667,0.55,0.75,0.58,1,26 -mug,0.7016666666666667,1.0,0.6,0.7166666666666667,1,25 -yogurt,0.6716666666666666,1.0,0.6,0.7166666666666666,1,26 -plantain,0.8766666666666667,1.0,0.7833333333333333,0.85,1,26 -red,1.0,1.0,1.0,1.0,3,26 -pepper,0.7766666666666666,1.0,0.65,0.75,1,26 -wheat,0.8133333333333332,1.0,0.7499999999999999,0.8166666666666667,1,26 -kleenex,0.58,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.7216666666666667,1.0,0.6333333333333333,0.75,1,26 -binder,0.7583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -baseball,0.51,1.0,0.4833333333333333,0.6333333333333333,1,26 -pliers,0.6166666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7333333333333333,1.0,0.65,0.75,1,26 -thins,0.655,1.0,0.5833333333333333,0.7,1,26 -package,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -k,0.805,1.0,0.7333333333333333,0.8166666666666668,1,26 -jelly,0.6799999999999999,1.0,0.65,0.75,1,26 -fruit,0.7749999999999999,0.8166666666666667,0.8333333333333334,0.8,2,25 -apple,0.6516666666666666,1.0,0.5333333333333332,0.6666666666666666,1,25 -bell,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -battery,0.6716666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -jar,0.7583333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -bound,0.8099999999999999,1.0,0.65,0.7666666666666667,1,26 -lettuce,0.53,1.0,0.4833333333333332,0.6166666666666666,1,26 -brush,0.5933333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.7516666666666667,1.0,0.6499999999999999,0.75,1,26 -lime,0.44666666666666666,1.0,0.5,0.6333333333333333,1,25 -toothpaste,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -top,0.5416666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -spiral,0.5083333333333333,1.0,0.5166666666666666,0.65,1,26 -handles,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.8016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -eraser,0.6166666666666667,1.0,0.6666666666666666,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.3833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -pitcher,0.6416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.7066666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -stick,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -cereal,0.6716666666666666,1.0,0.6,0.7166666666666666,1,26 -bulb,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -hair,0.8583333333333332,1.0,0.75,0.8333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6216666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -can,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -coca,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -crackers,0.835,1.0,0.7166666666666666,0.8,1,26 -plate,0.6166666666666667,1.0,0.5833333333333333,0.7,1,25 -calculator,0.48666666666666664,0.75,0.6333333333333333,0.5833333333333333,1,26 -tissues,0.7183333333333333,1.0,0.5666666666666667,0.7,1,26 -juice,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -pink,0.8283333333333334,1.0,0.6833333333333333,0.7833333333333333,1,25 -lemon,0.6466666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -peach,0.7166666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -bowl,0.5966666666666667,1.0,0.55,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -blue,0.8066666666666666,1.0,0.6333333333333333,0.75,1,25 -used,0.32333333333333336,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666668,1,26 -ball,0.6133333333333334,1.0,0.4833333333333333,0.6333333333333333,1,25 -notebook,0.6016666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -garlic,0.78,1.0,0.7333333333333333,0.8166666666666667,1,26 -cleaning,0.5933333333333334,1.0,0.5833333333333333,0.7,1,26 -pair,0.8800000000000001,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666667,1,25 -tomato,0.85,1.0,0.75,0.8333333333333333,1,26 -cellphone,0.40499999999999997,0.6,0.6333333333333332,0.5466666666666666,1,26 -potato,0.8216666666666667,1.0,0.7166666666666666,0.8,1,25 -light,0.95,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.6536265432098766 -F1-Score: 0.6886772486772484 -Precision: 0.8969907407407407 -Recall: 0.6100308641975308 diff --git a/Validation/UW_raw_75_object_0.9500000000000001.csv b/Validation/UW_raw_75_object_0.9500000000000001.csv deleted file mode 100644 index 44e3d54..0000000 --- a/Validation/UW_raw_75_object_0.9500000000000001.csv +++ /dev/null @@ -1,2875 +0,0 @@ -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.58,1.0,0.4833333333333333,0.6333333333333333,1,25 -yellow,0.8433333333333334,0.95,0.7166666666666666,0.7866666666666667,6,24 -looks,0.7083333333333333,1.0,0.75,0.8166666666666667,1,24 -keyboard,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.7166666666666666,1.0,0.7166666666666666,0.8,1,26 -milk,0,0,0,0,1,26 -cola,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -flashlight,0.65,1.0,0.65,0.75,1,26 -cup,0.41833333333333333,0.5,0.6499999999999999,0.5366666666666667,1,26 -folded,0.5716666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.5,1.0,0.55,0.6666666666666666,1,26 -black,0.8983333333333334,0.7666666666666666,1.0,0.8466666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.4216666666666667,1.0,0.45,0.6,1,26 -soccer,0.5433333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -hat,0.6266666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -brown,0.975,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -handle,0.6216666666666666,1.0,0.5833333333333333,0.7,1,26 -food,0.5633333333333334,1.0,0.4666666666666666,0.6166666666666667,1,25 -towel,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.71,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -onion,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -bag,0.6299999999999999,1.0,0.5833333333333333,0.7,1,26 -sponge,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.6883333333333332,1.0,0.5833333333333333,0.7,1,25 -special,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -leaf,0.45999999999999996,1.0,0.4,0.5666666666666667,1,26 -tube,0.63,1.0,0.5833333333333333,0.7,1,26 -cell,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -mug,0.5933333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -yogurt,0.705,1.0,0.6166666666666666,0.7333333333333334,1,26 -plantain,0.5133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -red,0.785,0.5,0.2833333333333333,0.36,3,25 -pepper,0.4583333333333333,1.0,0.4833333333333333,0.6166666666666667,1,26 -wheat,0.705,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.6716666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -toothbrush,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -binder,0.6166666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.65,1.0,0.6166666666666666,0.7166666666666666,1,26 -pliers,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6050000000000001,1.0,0.55,0.6833333333333333,1,26 -thins,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -package,0.7666666666666666,1.0,0.8,0.85,1,26 -k,0.7350000000000001,1.0,0.5999999999999999,0.7166666666666667,1,26 -jelly,0.76,1.0,0.6166666666666666,0.7333333333333334,1,26 -fruit,0.8483333333333334,0.85,0.9,0.8400000000000001,2,25 -apple,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -bell,0.8016666666666667,1.0,0.6833333333333333,0.7833333333333334,1,26 -battery,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -jar,0.79,1.0,0.6666666666666666,0.7666666666666666,1,26 -bound,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.485,1.0,0.45,0.6,1,26 -brush,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -scissors,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -lime,0.6966666666666667,1.0,0.6,0.7166666666666667,1,25 -toothpaste,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -top,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -spiral,0.5383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -handles,0.585,1.0,0.45,0.6,1,25 -camera,0.605,1.0,0.5333333333333333,0.6666666666666666,1,26 -eraser,0.585,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,0.9433333333333334,1.0,0.9,0.9400000000000001,5,21 -banana,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -pitcher,0.745,1.0,0.6166666666666666,0.7333333333333333,1,26 -phone,0.5933333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -stick,0.715,1.0,0.55,0.6833333333333333,1,25 -cereal,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -bulb,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.925,1.0,0.85,0.8999999999999998,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,24 -coca,0.6,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -plate,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -calculator,0.6616666666666666,0.7,0.7166666666666666,0.6166666666666667,1,26 -tissues,0.7216666666666666,1.0,0.6499999999999999,0.75,1,26 -juice,0.5633333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -pink,0.6133333333333334,1.0,0.5666666666666667,0.6833333333333333,1,25 -lemon,0.75,1.0,0.6166666666666666,0.7333333333333333,1,26 -peach,0.4666666666666667,0.5,0.65,0.5366666666666667,1,26 -bowl,0.6249999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -blue,0.5349999999999999,1.0,0.5166666666666666,0.65,1,25 -used,0.7483333333333333,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.63,1.0,0.6833333333333333,0.7666666666666666,1,26 -ball,0.5133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -notebook,0.6583333333333333,1.0,0.6499999999999999,0.75,1,26 -garlic,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -cleaning,0.5766666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -pair,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -container,0.7583333333333333,1.0,0.7166666666666666,0.8,1,25 -tomato,0.6100000000000001,1.0,0.5166666666666666,0.6666666666666667,1,26 -cellphone,0.5666666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -potato,0.7016666666666667,1.0,0.55,0.6833333333333333,1,25 -light,0.8383333333333333,1.0,0.8,0.8800000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,25 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.6344290123456792 -F1-Score: 0.6677777777777777 -Precision: 0.8959876543209876 -Recall: 0.5814814814814814 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,25 -yellow,0.8150000000000001,0.9,0.65,0.7066666666666668,6,24 -looks,0.5966666666666667,0.9,0.6499999999999999,0.6833333333333333,1,24 -keyboard,0.7583333333333333,1.0,0.65,0.75,1,26 -glue,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.41666666666666663,1.0,0.4499999999999999,0.6,1,26 -flashlight,0.705,1.0,0.6499999999999999,0.75,1,26 -cup,0.2833333333333333,0.5,0.55,0.5033333333333334,1,25 -folded,0.44666666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -jam,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.8766666666666666,0.7166666666666666,1.0,0.82,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7333333333333333,1.0,0.6499999999999999,0.75,1,26 -soccer,0.705,1.0,0.6,0.7166666666666667,1,26 -hat,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -brown,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,24 -coffee,0.4916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -handle,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -food,0.5916666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -towel,0.76,1.0,0.7166666666666666,0.8,1,26 -chips,0.4066666666666666,1.0,0.45,0.6,1,26 -stapler,0.605,1.0,0.5833333333333333,0.7,1,26 -onion,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -bag,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -sponge,0.73,1.0,0.65,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.7633333333333333,1.0,0.75,0.8166666666666667,1,25 -special,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -colgate,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -cell,0.6966666666666665,1.0,0.5333333333333333,0.6666666666666667,1,26 -mug,0.7833333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -yogurt,0.5599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.8816666666666666,1.0,0.75,0.8333333333333334,1,26 -red,0.7933333333333333,0.4,0.2333333333333333,0.29333333333333333,3,24 -pepper,0.65,1.0,0.5666666666666667,0.7,1,26 -wheat,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -kleenex,0.7350000000000001,1.0,0.5999999999999999,0.7166666666666667,1,26 -toothbrush,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -binder,0.5916666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -baseball,0.5683333333333332,1.0,0.4499999999999999,0.6,1,26 -pliers,0.5266666666666666,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.78,1.0,0.7166666666666666,0.8,1,26 -thins,0.49333333333333335,1.0,0.41666666666666663,0.5833333333333333,1,26 -package,0.8800000000000001,1.0,0.8333333333333333,0.8833333333333332,1,26 -k,0.7133333333333333,1.0,0.65,0.75,1,26 -jelly,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -fruit,0.735,0.75,0.8666666666666666,0.7466666666666667,2,25 -apple,0.6,1.0,0.4666666666666666,0.6166666666666667,1,25 -bell,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.6466666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -jar,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666666,1,26 -bound,0.58,1.0,0.6333333333333333,0.7333333333333333,1,26 -lettuce,0.655,1.0,0.5499999999999999,0.6833333333333333,1,26 -brush,0.8,1.0,0.6833333333333333,0.7833333333333333,1,26 -scissors,0.835,1.0,0.7166666666666666,0.8,1,26 -lime,0.58,1.0,0.5499999999999999,0.6666666666666666,1,25 -toothpaste,0.755,1.0,0.65,0.75,1,26 -top,0.725,1.0,0.65,0.75,1,26 -spiral,0.7133333333333333,1.0,0.5666666666666667,0.7,1,26 -handles,0.705,1.0,0.6499999999999999,0.75,1,25 -camera,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -eraser,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.9383333333333332,1.0,0.9,0.9400000000000001,5,21 -banana,0.8016666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -pitcher,0.765,1.0,0.6166666666666666,0.7333333333333333,1,26 -phone,0.7066666666666667,1.0,0.55,0.6833333333333333,1,26 -stick,0.6416666666666667,1.0,0.6,0.7166666666666667,1,25 -cereal,0.53,1.0,0.4833333333333333,0.6333333333333333,1,26 -bulb,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -hair,0.6066666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6333333333333333,1.0,0.6666666666666666,0.75,1,26 -can,0.8483333333333334,1.0,0.8,0.8800000000000001,2,24 -coca,0.4833333333333333,1.0,0.5333333333333332,0.65,1,26 -crackers,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -plate,0.675,1.0,0.75,0.8166666666666667,1,25 -calculator,0.6016666666666666,0.5,0.75,0.5833333333333334,1,26 -tissues,0.6133333333333333,1.0,0.5166666666666666,0.65,1,26 -juice,0.6466666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -pink,0.765,1.0,0.5833333333333333,0.7166666666666667,1,25 -lemon,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -peach,0.755,1.0,0.6666666666666666,0.7666666666666666,1,26 -bowl,0.8633333333333333,1.0,0.75,0.8333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -blue,0.665,1.0,0.55,0.6833333333333333,1,25 -used,0.335,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.5083333333333333,1.0,0.5,0.6333333333333333,1,26 -ball,0.73,1.0,0.5666666666666667,0.7,1,25 -notebook,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -garlic,0.7516666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -cleaning,0.5566666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -pair,0.975,1.0,0.9666666666666666,0.9800000000000001,2,27 -container,0.85,1.0,0.7333333333333333,0.8166666666666667,1,25 -tomato,0.4966666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -cellphone,0.5933333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -potato,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -light,0.85,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.6432407407407406 -F1-Score: 0.6744444444444445 -Precision: 0.8950617283950616 -Recall: 0.5896604938271603 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.76,1.0,0.7166666666666666,0.8,1,25 -yellow,0.8133333333333332,0.9,0.65,0.7066666666666667,6,24 -looks,0.6983333333333334,1.0,0.5666666666666667,0.7,1,24 -keyboard,0.585,1.0,0.5166666666666666,0.65,1,26 -glue,0.7433333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -milk,0,0,0,0,1,26 -cola,0.6466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -flashlight,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -cup,0.54,0.5,0.6499999999999999,0.5366666666666667,1,26 -folded,0.6916666666666667,1.0,0.5833333333333333,0.7166666666666666,1,26 -jam,0.7916666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -black,1.0,1.0,1.0,1.0,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.625,1.0,0.5333333333333333,0.6666666666666667,1,26 -soccer,0.5083333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -hat,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -brown,0.875,1.0,0.8,0.8800000000000001,2,24 -coffee,0.5966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -handle,0.5483333333333332,1.0,0.4833333333333333,0.6333333333333333,1,25 -food,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -towel,0.8733333333333334,1.0,0.75,0.8333333333333333,1,26 -chips,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -stapler,0.63,1.0,0.55,0.6833333333333333,1,26 -onion,0.53,1.0,0.5,0.6333333333333334,1,26 -bag,0.6816666666666666,1.0,0.4833333333333332,0.6333333333333333,1,26 -sponge,0.5583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7633333333333334,1.0,0.6833333333333333,0.7833333333333333,1,25 -special,0.4666666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -colgate,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -leaf,0.6799999999999999,1.0,0.5666666666666667,0.7,1,26 -tube,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -cell,0.24666666666666667,0.5,0.4666666666666666,0.4666666666666667,1,26 -mug,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -yogurt,0.6799999999999999,1.0,0.65,0.75,1,26 -plantain,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -red,0.8116666666666668,0.7,0.3833333333333333,0.4933333333333333,3,25 -pepper,0.675,1.0,0.6499999999999999,0.75,1,26 -wheat,0.7683333333333333,1.0,0.65,0.75,1,26 -kleenex,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -toothbrush,0.63,1.0,0.4999999999999999,0.65,1,26 -binder,0.6983333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -baseball,0.6333333333333333,1.0,0.5166666666666666,0.65,1,26 -pliers,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -thins,0.7983333333333332,1.0,0.6,0.7333333333333334,1,26 -package,0.6633333333333333,1.0,0.5166666666666666,0.65,1,26 -k,0.5466666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -jelly,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.7299999999999999,0.7333333333333334,0.8333333333333333,0.73,2,25 -apple,0.49333333333333335,0.85,0.5499999999999999,0.5666666666666667,1,26 -bell,0.86,1.0,0.7833333333333333,0.85,1,26 -battery,0.5083333333333333,1.0,0.4333333333333333,0.6,1,26 -jar,0.9016666666666666,1.0,0.8,0.8666666666666666,1,26 -bound,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.6666666666666666,1.0,0.6499999999999999,0.75,1,26 -brush,0.7816666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -scissors,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -lime,0.6716666666666666,1.0,0.6,0.7166666666666667,1,25 -toothpaste,0.7216666666666666,1.0,0.7,0.7833333333333333,1,26 -top,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -spiral,0.6166666666666667,1.0,0.6166666666666666,0.7166666666666667,1,26 -handles,0.5916666666666666,1.0,0.5333333333333333,0.6666666666666666,1,25 -camera,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.89,1.0,0.8333333333333333,0.9,5,22 -banana,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -pitcher,0.6183333333333333,1.0,0.5833333333333333,0.7,1,26 -phone,0.7566666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -stick,0.5416666666666667,1.0,0.6166666666666666,0.7166666666666667,1,25 -cereal,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -bulb,0.8216666666666667,1.0,0.8,0.8800000000000001,2,26 -hair,0.6266666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6733333333333333,1.0,0.55,0.6833333333333333,1,26 -can,0.9333333333333332,1.0,0.9333333333333332,0.96,2,24 -coca,0.605,1.0,0.4833333333333333,0.6333333333333333,1,26 -crackers,0.7899999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -plate,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -calculator,0.5583333333333333,0.55,0.6499999999999999,0.5466666666666666,1,26 -tissues,0.65,1.0,0.5166666666666666,0.65,1,26 -juice,0.8466666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -pink,0.6766666666666665,1.0,0.6,0.7166666666666667,1,25 -lemon,0.8183333333333334,1.0,0.65,0.7666666666666667,1,26 -peach,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.655,1.0,0.65,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5916666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -blue,0.5833333333333333,1.0,0.55,0.6666666666666667,1,25 -used,0.49833333333333324,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.5983333333333334,1.0,0.5,0.65,1,26 -ball,0.5166666666666666,1.0,0.4999999999999999,0.6333333333333333,1,25 -notebook,0.6216666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -garlic,0.6966666666666667,1.0,0.55,0.6833333333333333,1,26 -cleaning,0.7899999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -pair,0.8999999999999998,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.7633333333333333,1.0,0.65,0.75,1,25 -tomato,0.68,1.0,0.55,0.6833333333333333,1,26 -cellphone,0.40166666666666667,0.6,0.5833333333333333,0.53,1,26 -potato,0.6916666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -light,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.85,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.646651234567901 -F1-Score: 0.6726234567901235 -Precision: 0.8919753086419754 -Recall: 0.5861111111111111 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6166666666666666,1.0,0.5,0.6333333333333333,1,24 -yellow,0.8966666666666668,1.0,0.8,0.8733333333333334,6,25 -looks,0.6233333333333333,1.0,0.5166666666666666,0.65,1,24 -keyboard,0.8683333333333334,1.0,0.75,0.8333333333333333,1,26 -glue,0.67,1.0,0.4999999999999999,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.705,1.0,0.5666666666666667,0.7,1,26 -flashlight,0.6833333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -cup,0.3416666666666667,0.5,0.4333333333333333,0.4600000000000001,1,26 -folded,0.6666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.735,1.0,0.5999999999999999,0.7166666666666666,1,26 -black,0.9466666666666667,0.8666666666666666,1.0,0.9133333333333333,6,22 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -soccer,0.7216666666666667,1.0,0.5833333333333333,0.7,1,26 -hat,0.6733333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -brown,0.8933333333333333,1.0,0.8666666666666666,0.9200000000000002,2,25 -coffee,0.4916666666666666,1.0,0.5166666666666666,0.65,1,25 -handle,0.8883333333333334,1.0,0.8333333333333334,0.8833333333333332,1,25 -food,0.7066666666666667,1.0,0.6166666666666666,0.7333333333333334,1,25 -towel,0.63,1.0,0.6833333333333333,0.7666666666666666,1,26 -chips,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -stapler,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.6799999999999999,0.85,0.6666666666666666,0.6666666666666667,1,26 -bag,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -sponge,0.38333333333333336,1.0,0.4666666666666666,0.6,1,26 -zero,0,0,0,0,1,26 -computer,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -special,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -colgate,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -leaf,0.6816666666666666,1.0,0.55,0.6833333333333333,1,26 -tube,0.665,1.0,0.5499999999999999,0.6833333333333333,1,26 -cell,0.71,1.0,0.5999999999999999,0.7166666666666667,1,26 -mug,0.6416666666666666,1.0,0.5999999999999999,0.7166666666666666,1,25 -yogurt,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -plantain,0.73,1.0,0.6333333333333333,0.75,1,26 -red,0.79,0.8,0.4666666666666666,0.5866666666666667,3,25 -pepper,0.6849999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -wheat,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666666,1,26 -kleenex,0.7166666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -toothbrush,0.8,1.0,0.7166666666666666,0.8,1,26 -binder,0.705,1.0,0.5833333333333333,0.7,1,26 -baseball,0.7583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -pliers,0.6183333333333334,1.0,0.4999999999999999,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6183333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -thins,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -package,0.7,1.0,0.6499999999999999,0.75,1,26 -k,0.6966666666666667,1.0,0.65,0.75,1,26 -jelly,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -fruit,0.73,0.65,0.9,0.73,2,26 -apple,0.7466666666666666,0.95,0.7166666666666666,0.7666666666666667,1,25 -bell,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -battery,0.5966666666666667,1.0,0.55,0.6666666666666666,1,26 -jar,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -bound,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -lettuce,0.61,1.0,0.55,0.6833333333333333,1,26 -brush,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -scissors,0.6183333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -lime,0.6583333333333333,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -top,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -spiral,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -handles,0.6983333333333334,1.0,0.5666666666666667,0.7,1,25 -camera,0.5349999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -eraser,0.8683333333333334,1.0,0.75,0.8333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.9083333333333334,1.0,0.8666666666666668,0.9200000000000002,5,21 -banana,0.6466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -pitcher,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -phone,0.49000000000000005,1.0,0.4333333333333333,0.6,1,26 -stick,0.805,1.0,0.7333333333333333,0.8166666666666667,1,25 -cereal,0.675,1.0,0.7499999999999999,0.8166666666666667,1,26 -bulb,0.86,1.0,0.8333333333333333,0.9,2,27 -hair,0.6583333333333333,1.0,0.65,0.75,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.63,1.0,0.55,0.6833333333333333,1,26 -can,0.96,1.0,0.9333333333333332,0.96,2,26 -coca,0.6966666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -crackers,0.615,1.0,0.4666666666666666,0.6333333333333334,1,26 -plate,0.7733333333333333,1.0,0.7166666666666666,0.8,1,25 -calculator,0.63,1.0,0.4999999999999999,0.65,1,26 -tissues,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.4966666666666667,1.0,0.4333333333333333,0.5833333333333333,1,26 -pink,0.5349999999999999,1.0,0.4833333333333332,0.6333333333333333,1,25 -lemon,0.44333333333333336,1.0,0.45,0.6,1,26 -peach,0.4833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -bowl,0.8566666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -blue,0.71,1.0,0.5833333333333333,0.7,1,25 -used,0.265,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.7566666666666666,1.0,0.6333333333333333,0.75,1,26 -ball,0.6683333333333332,1.0,0.5999999999999999,0.7166666666666666,1,25 -notebook,0.605,1.0,0.45,0.6166666666666667,1,26 -garlic,0.7666666666666666,1.0,0.75,0.8166666666666667,1,26 -cleaning,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -pair,0.8566666666666667,1.0,0.8,0.8800000000000001,2,26 -container,0.5349999999999999,1.0,0.4333333333333334,0.6,1,26 -tomato,0.7683333333333333,1.0,0.65,0.75,1,26 -cellphone,0.5183333333333333,1.0,0.5166666666666666,0.65,1,26 -potato,0.6966666666666665,1.0,0.6333333333333332,0.7333333333333333,1,25 -light,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,27 -green,1.0,1.0,1.0,1.0,3,23 -bottle,1.0,1.0,1.0,1.0,2,27 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.6407098765432099 -F1-Score: 0.6717901234567902 -Precision: 0.9038580246913581 -Recall: 0.5793209876543209 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7083333333333333,1.0,0.6,0.7166666666666667,1,24 -yellow,0.8883333333333334,1.0,0.7833333333333333,0.8666666666666666,6,25 -looks,0.755,1.0,0.6666666666666666,0.7666666666666667,1,24 -keyboard,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -glue,0.6683333333333332,1.0,0.6,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6133333333333333,1.0,0.65,0.75,1,26 -flashlight,0.635,1.0,0.5833333333333333,0.7,1,26 -cup,0.44666666666666666,0.5,0.5,0.48666666666666664,1,26 -folded,0.55,1.0,0.5,0.6333333333333333,1,26 -jam,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -black,0.93,0.8166666666666667,1.0,0.8800000000000001,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -soccer,0.73,1.0,0.6333333333333333,0.7333333333333333,1,26 -hat,0.71,1.0,0.7,0.7833333333333333,1,26 -brown,0.9466666666666667,1.0,0.9333333333333332,0.96,2,24 -coffee,0.655,1.0,0.5833333333333333,0.7,1,25 -handle,0.6766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,25 -food,0.835,1.0,0.7166666666666666,0.8,1,26 -towel,0.73,1.0,0.6166666666666666,0.7333333333333333,1,26 -chips,0.5466666666666666,1.0,0.5166666666666666,0.65,1,26 -stapler,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -onion,0.8033333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -bag,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -sponge,0.5683333333333332,1.0,0.4666666666666666,0.6166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,25 -special,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -colgate,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.5916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.5599999999999999,1.0,0.41666666666666663,0.5833333333333333,1,26 -cell,0.5133333333333333,0.65,0.55,0.5466666666666666,1,26 -mug,0.49000000000000005,1.0,0.4333333333333333,0.6,1,25 -yogurt,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.7516666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -red,0.7966666666666666,0.9,0.5166666666666666,0.6533333333333334,3,26 -pepper,0.6616666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -wheat,0.6683333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -toothbrush,0.8233333333333335,1.0,0.6833333333333333,0.7833333333333333,1,26 -binder,0.6249999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -baseball,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -pliers,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.4333333333333333,1.0,0.4499999999999999,0.6,1,26 -thins,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -package,0.6033333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -k,0.6833333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -jelly,0.755,1.0,0.65,0.75,1,26 -fruit,0.8233333333333333,0.7333333333333333,0.9333333333333332,0.7866666666666667,2,25 -apple,0.54,1.0,0.5333333333333333,0.6666666666666667,1,26 -bell,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -battery,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -jar,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.8466666666666665,1.0,0.7333333333333333,0.8166666666666668,1,26 -lettuce,0.7,1.0,0.7166666666666666,0.8,1,26 -brush,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.64,1.0,0.4999999999999999,0.65,1,26 -lime,0.73,1.0,0.6833333333333333,0.7666666666666666,1,25 -toothpaste,0.5583333333333333,1.0,0.5166666666666666,0.65,1,26 -top,0.4916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -spiral,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -handles,0.73,1.0,0.6666666666666666,0.7666666666666667,1,25 -camera,0.75,1.0,0.7999999999999999,0.85,1,26 -eraser,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,0.9466666666666667,1.0,0.9,0.9400000000000001,5,21 -banana,0.6683333333333333,1.0,0.5666666666666667,0.7,1,26 -pitcher,0.8099999999999999,1.0,0.7,0.7833333333333333,1,26 -phone,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -stick,0.8099999999999999,1.0,0.7166666666666666,0.8,1,25 -cereal,0.7933333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -bulb,0.8749999999999998,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -can,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.8200000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -plate,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,25 -calculator,0.63,1.0,0.5166666666666666,0.65,1,26 -tissues,0.7416666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -pink,0.5716666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -lemon,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -peach,0.725,1.0,0.6666666666666666,0.7666666666666667,1,26 -bowl,0.45999999999999996,1.0,0.4499999999999999,0.6,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5633333333333332,1.0,0.41666666666666663,0.5833333333333333,1,26 -blue,0.6883333333333332,1.0,0.5666666666666667,0.7,1,25 -used,0.14333333333333334,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6333333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -ball,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -notebook,0.6633333333333333,1.0,0.4999999999999999,0.65,1,26 -garlic,0.6966666666666665,1.0,0.6,0.7166666666666667,1,26 -cleaning,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -pair,0.9416666666666667,1.0,0.9333333333333332,0.96,2,27 -container,0.7133333333333333,1.0,0.5666666666666667,0.7,1,25 -tomato,0.5083333333333333,1.0,0.5166666666666666,0.65,1,26 -cellphone,0.6033333333333333,0.55,0.6666666666666666,0.5633333333333332,1,26 -potato,0.5399999999999999,1.0,0.4833333333333333,0.6333333333333333,1,25 -light,0.8799999999999999,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,25 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.651712962962963 -F1-Score: 0.6816358024691359 -Precision: 0.8995370370370371 -Recall: 0.5955246913580247 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,24 -yellow,0.8216666666666667,0.9,0.7166666666666667,0.7533333333333333,6,24 -looks,0.6433333333333333,1.0,0.5833333333333333,0.7,1,24 -keyboard,0.6766666666666666,1.0,0.6,0.7166666666666667,1,26 -glue,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.6749999999999999,1.0,0.6499999999999999,0.75,1,26 -flashlight,0.8966666666666667,1.0,0.8,0.8666666666666666,1,26 -cup,0.20166666666666666,0.5,0.6166666666666666,0.5166666666666668,1,26 -folded,0.78,1.0,0.7,0.7833333333333333,1,26 -jam,0.6266666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -black,0.8233333333333335,0.6583333333333334,1.0,0.7857142857142858,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.4916666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -soccer,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -hat,0.735,1.0,0.6499999999999999,0.75,1,26 -brown,0.9550000000000001,1.0,0.9333333333333332,0.96,2,24 -coffee,0.78,1.0,0.7,0.7833333333333333,1,25 -handle,0.7816666666666666,1.0,0.6333333333333333,0.75,1,26 -food,0.6466666666666667,1.0,0.7,0.7833333333333333,1,26 -towel,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -chips,0.6766666666666666,1.0,0.5666666666666667,0.7,1,26 -stapler,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.705,1.0,0.5833333333333333,0.7166666666666667,1,26 -sponge,0.7383333333333333,1.0,0.6,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.525,1.0,0.5666666666666667,0.6833333333333333,1,25 -special,0.7016666666666667,1.0,0.65,0.75,1,26 -colgate,0.7516666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -leaf,0.805,1.0,0.7333333333333333,0.8166666666666668,1,26 -tube,0.4966666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -cell,0.5183333333333333,0.6,0.7166666666666666,0.5833333333333334,1,26 -mug,0.6383333333333333,1.0,0.5833333333333333,0.7,1,25 -yogurt,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -red,0.7833333333333333,0.8,0.4833333333333333,0.6,3,26 -pepper,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -kleenex,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.5766666666666667,1.0,0.5166666666666666,0.65,1,26 -binder,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -baseball,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -pliers,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6183333333333333,1.0,0.5833333333333333,0.7,1,26 -thins,0.45,1.0,0.4666666666666666,0.6166666666666667,1,26 -package,0.4083333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -k,0.3083333333333333,1.0,0.4166666666666667,0.5666666666666667,1,26 -jelly,0.7416666666666666,1.0,0.7166666666666666,0.8,1,26 -fruit,0.6883333333333334,0.75,0.8,0.7466666666666667,2,25 -apple,0.7300000000000001,0.9,0.65,0.6833333333333333,1,25 -bell,0.5683333333333332,1.0,0.5333333333333332,0.6666666666666666,1,26 -battery,0.605,1.0,0.5166666666666666,0.65,1,26 -jar,0.6883333333333334,1.0,0.6,0.7166666666666667,1,26 -bound,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -lettuce,0.4666666666666666,1.0,0.45,0.6,1,26 -brush,0.5499999999999999,1.0,0.4833333333333334,0.6333333333333333,1,26 -scissors,0.73,1.0,0.7,0.7833333333333333,1,26 -lime,0.6716666666666666,1.0,0.6,0.7166666666666667,1,25 -toothpaste,0.5399999999999999,1.0,0.5166666666666666,0.65,1,26 -top,0.675,1.0,0.6499999999999999,0.75,1,26 -spiral,0.705,1.0,0.55,0.6833333333333333,1,26 -handles,0.5083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -camera,0.6333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.6699999999999999,1.0,0.55,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.9633333333333333,1.0,0.9333333333333332,0.96,5,21 -banana,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -pitcher,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -phone,0.5133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -stick,0.8099999999999999,1.0,0.65,0.7666666666666667,1,25 -cereal,0.82,1.0,0.6333333333333333,0.75,1,26 -bulb,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.7116666666666667,1.0,0.4999999999999999,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6683333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -can,0.805,1.0,0.7666666666666667,0.86,2,25 -coca,0.4716666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -crackers,0.7083333333333333,1.0,0.7166666666666666,0.8,1,26 -plate,0.5733333333333334,1.0,0.5,0.65,1,25 -calculator,0.5349999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -tissues,0.5599999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -juice,0.4333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -pink,0.8,1.0,0.7,0.7833333333333333,1,25 -lemon,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -peach,0.6716666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -bowl,0.7416666666666666,1.0,0.75,0.8166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.73,1.0,0.7,0.7833333333333333,1,26 -blue,0.6766666666666666,1.0,0.5833333333333333,0.7,1,25 -used,0.2666666666666667,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.82,1.0,0.6666666666666666,0.7666666666666666,1,26 -ball,0.5666666666666667,1.0,0.5499999999999999,0.6666666666666666,1,25 -notebook,0.5716666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -garlic,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -cleaning,0.6649999999999999,1.0,0.45,0.6166666666666667,1,26 -pair,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -container,0.625,1.0,0.6333333333333332,0.7333333333333333,1,25 -tomato,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -cellphone,0.5349999999999999,0.5,0.7333333333333333,0.5733333333333334,1,26 -potato,0.655,1.0,0.5833333333333333,0.7,1,25 -light,0.8466666666666667,1.0,0.8333333333333333,0.9,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9099999999999999,1.0,0.8666666666666666,0.9200000000000002,2,25 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.628364197530864 -F1-Score: 0.6709479717813053 -Precision: 0.8945216049382716 -Recall: 0.5862654320987655 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6799999999999999,1.0,0.5833333333333333,0.7,1,24 -yellow,0.8333333333333334,1.0,0.65,0.7733333333333333,6,25 -looks,0.575,1.0,0.5833333333333333,0.7,1,24 -keyboard,0.6633333333333333,1.0,0.6,0.7166666666666666,1,26 -glue,0.5733333333333334,1.0,0.5166666666666666,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.6766666666666665,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.31833333333333325,0.5,0.5833333333333333,0.51,1,26 -folded,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -jam,0.8699999999999999,1.0,0.7333333333333333,0.8166666666666667,1,26 -black,0.8833333333333334,0.7833333333333334,1.0,0.8666666666666666,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6799999999999999,1.0,0.6166666666666666,0.7166666666666667,1,26 -soccer,0.75,1.0,0.6166666666666666,0.7333333333333334,1,26 -hat,0.5349999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -brown,0.9083333333333332,1.0,0.9,0.9400000000000001,2,24 -coffee,0.7233333333333334,1.0,0.5833333333333333,0.7166666666666666,1,25 -handle,0.45833333333333337,1.0,0.4833333333333334,0.6166666666666666,1,26 -food,0.625,1.0,0.5999999999999999,0.7166666666666666,1,26 -towel,0.7483333333333334,1.0,0.6666666666666666,0.7666666666666666,1,26 -chips,0.7866666666666667,1.0,0.6333333333333333,0.75,1,26 -stapler,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -onion,0.5183333333333333,0.9,0.4666666666666666,0.5666666666666667,1,26 -bag,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -sponge,0.765,1.0,0.6166666666666666,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5833333333333333,1.0,0.5833333333333333,0.7,1,25 -special,0.755,1.0,0.6166666666666666,0.7333333333333333,1,26 -colgate,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -leaf,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -tube,0.7433333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -cell,0.6566666666666666,0.5,0.8666666666666666,0.6133333333333334,1,26 -mug,0.5183333333333333,1.0,0.41666666666666663,0.5833333333333333,1,25 -yogurt,0.5883333333333333,1.0,0.5833333333333333,0.7,1,26 -plantain,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.7783333333333333,0.8,0.45,0.5733333333333334,3,26 -pepper,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -wheat,0.675,1.0,0.6833333333333333,0.7666666666666666,1,26 -kleenex,0.7,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -binder,0.7166666666666666,1.0,0.6499999999999999,0.75,1,26 -baseball,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.735,1.0,0.6,0.7166666666666666,1,26 -thins,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -package,0.65,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.6583333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -jelly,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -fruit,0.7683333333333333,0.75,0.8666666666666666,0.7666666666666667,2,25 -apple,0.5266666666666666,0.9,0.5666666666666667,0.6166666666666667,1,25 -bell,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -battery,0.6833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -jar,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -bound,0.7083333333333333,1.0,0.65,0.75,1,26 -lettuce,0.5216666666666667,1.0,0.5166666666666666,0.65,1,26 -brush,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -scissors,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -lime,0.6466666666666666,1.0,0.6166666666666666,0.7166666666666666,1,25 -toothpaste,0.8016666666666665,1.0,0.7166666666666666,0.8,1,26 -top,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -spiral,0.575,1.0,0.5166666666666666,0.65,1,26 -handles,0.86,1.0,0.8333333333333333,0.8833333333333332,1,25 -camera,0.655,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.8933333333333333,1.0,0.8333333333333333,0.9,5,21 -banana,0.7833333333333333,1.0,0.7499999999999999,0.8166666666666668,1,26 -pitcher,0.6133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -phone,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -stick,0.7166666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -cereal,0.8833333333333332,1.0,0.8333333333333333,0.8833333333333332,1,26 -bulb,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,26 -hair,0.605,1.0,0.5833333333333333,0.7,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.36666666666666664,1.0,0.4833333333333332,0.6166666666666666,1,26 -can,0.93,1.0,0.9,0.9400000000000001,2,24 -coca,0.5766666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.705,1.0,0.5833333333333333,0.7,1,26 -plate,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -calculator,0.7516666666666667,0.95,0.6833333333333333,0.75,1,26 -tissues,0.61,1.0,0.4666666666666666,0.6166666666666666,1,26 -juice,0.6816666666666666,1.0,0.5,0.65,1,26 -pink,0.585,1.0,0.4333333333333334,0.6,1,25 -lemon,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -peach,0.755,1.0,0.7,0.7833333333333333,1,26 -bowl,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8,1.0,0.7833333333333333,0.85,1,26 -blue,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -used,0.22333333333333333,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -ball,0.8266666666666668,1.0,0.7833333333333333,0.85,1,25 -notebook,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -garlic,0.505,1.0,0.4666666666666666,0.6166666666666667,1,26 -cleaning,0.5583333333333333,1.0,0.5833333333333333,0.7,1,26 -pair,0.915,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.6933333333333332,1.0,0.5666666666666667,0.7,1,26 -tomato,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -cellphone,0.3833333333333334,0.5,0.6166666666666666,0.53,1,26 -potato,0.915,1.0,0.8,0.8666666666666668,1,26 -light,0.9266666666666667,1.0,0.8999999999999998,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.6457561728395063 -F1-Score: 0.6805864197530861 -Precision: 0.89429012345679 -Recall: 0.5995370370370369 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6466666666666666,1.0,0.5833333333333333,0.7,1,24 -yellow,0.8233333333333335,0.75,0.8166666666666667,0.7366666666666667,6,24 -looks,0.5900000000000001,0.85,0.5833333333333333,0.6166666666666667,1,24 -keyboard,0.65,1.0,0.5333333333333333,0.6666666666666667,1,26 -glue,0.7483333333333333,1.0,0.5666666666666667,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.5966666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -flashlight,0.615,1.0,0.4833333333333333,0.6333333333333333,1,26 -cup,0.4416666666666666,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -jam,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -black,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666665,6,19 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -soccer,0.5833333333333333,1.0,0.6666666666666666,0.75,1,26 -hat,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -brown,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,24 -coffee,0.755,1.0,0.6333333333333333,0.75,1,25 -handle,0.7333333333333333,1.0,0.6499999999999999,0.75,1,25 -food,0.75,1.0,0.7666666666666666,0.8333333333333333,1,26 -towel,0.58,1.0,0.5499999999999999,0.6666666666666666,1,26 -chips,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -stapler,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -onion,0.7216666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -bag,0.7583333333333333,1.0,0.65,0.75,1,26 -sponge,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.6583333333333333,1.0,0.5166666666666666,0.6666666666666667,1,25 -special,0.7833333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -colgate,0.5266666666666666,1.0,0.5166666666666666,0.65,1,26 -leaf,0.6466666666666666,1.0,0.4833333333333332,0.6333333333333333,1,26 -tube,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -cell,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -mug,0.6966666666666665,1.0,0.65,0.75,1,25 -yogurt,0.6483333333333333,1.0,0.5,0.65,1,26 -plantain,0.7166666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -red,0.8016666666666667,0.6,0.35,0.44000000000000006,3,26 -pepper,0.7133333333333333,1.0,0.65,0.75,1,26 -wheat,0.6266666666666667,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.6416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -toothbrush,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -binder,0.6433333333333333,1.0,0.5,0.65,1,26 -baseball,0.6933333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -pliers,0.5666666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -thins,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -package,0.75,1.0,0.5666666666666667,0.7,1,26 -k,0.8066666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -fruit,0.7383333333333333,0.65,0.8999999999999998,0.7,2,25 -apple,0.5983333333333333,0.9,0.55,0.6333333333333333,1,25 -bell,0.5166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -battery,0.705,1.0,0.6499999999999999,0.75,1,26 -jar,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -bound,0.8166666666666667,1.0,0.7,0.8,1,26 -lettuce,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -scissors,0.8,1.0,0.7499999999999999,0.8166666666666667,1,26 -lime,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -toothpaste,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -top,0.7433333333333333,1.0,0.6333333333333333,0.75,1,26 -spiral,0.6,1.0,0.5833333333333333,0.7,1,26 -handles,0.7583333333333333,1.0,0.7166666666666666,0.8,1,25 -camera,0.5916666666666666,1.0,0.55,0.6666666666666666,1,26 -eraser,0.7916666666666666,1.0,0.7166666666666666,0.8,1,26 -creamer,0,0,0,0,1,26 -white,0.9416666666666668,1.0,0.9,0.9400000000000001,5,21 -banana,0.6916666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -pitcher,0.6666666666666667,1.0,0.7,0.7833333333333333,1,26 -phone,0.7716666666666666,1.0,0.7,0.7833333333333333,1,26 -stick,0.8416666666666666,1.0,0.7833333333333333,0.85,1,25 -cereal,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -bulb,0.8800000000000001,1.0,0.8666666666666668,0.9200000000000002,2,27 -hair,0.8550000000000001,1.0,0.8333333333333333,0.8833333333333332,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -can,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.6733333333333333,1.0,0.6499999999999999,0.75,1,26 -crackers,0.5349999999999999,1.0,0.4499999999999999,0.6,1,26 -plate,0.725,1.0,0.7,0.7833333333333333,1,25 -calculator,0.595,0.55,0.7666666666666666,0.5900000000000001,1,26 -tissues,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -juice,0.635,1.0,0.5999999999999999,0.7166666666666666,1,26 -pink,0.6033333333333333,1.0,0.5333333333333333,0.6666666666666666,1,25 -lemon,0.6,1.0,0.6666666666666666,0.75,1,26 -peach,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -bowl,0.6833333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6583333333333334,1.0,0.6,0.7166666666666667,1,26 -blue,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333334,1,25 -used,0.2916666666666667,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.4766666666666667,1.0,0.4499999999999999,0.6,1,26 -ball,0.5633333333333332,1.0,0.5833333333333333,0.7,1,25 -notebook,0.85,1.0,0.7833333333333333,0.85,1,26 -garlic,0.8716666666666667,1.0,0.75,0.8333333333333333,1,26 -cleaning,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -pair,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -container,0.775,1.0,0.7166666666666666,0.8,1,25 -tomato,0.7483333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -cellphone,0.5383333333333333,1.0,0.5,0.6333333333333334,1,26 -potato,0.825,1.0,0.7666666666666666,0.8333333333333333,1,25 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9333333333333332,1.0,0.9333333333333332,0.96,2,26 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.6633641975308643 -F1-Score: 0.6890123456790122 -Precision: 0.895216049382716 -Recall: 0.6109567901234568 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666666,1,25 -yellow,0.8066666666666666,0.8,0.7166666666666666,0.7133333333333334,6,24 -looks,0.565,0.9,0.5166666666666666,0.6,1,24 -keyboard,0.755,1.0,0.7166666666666666,0.8,1,26 -glue,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.5466666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -flashlight,0.425,1.0,0.4833333333333334,0.6166666666666666,1,26 -cup,0.5833333333333333,0.5,0.7333333333333333,0.5733333333333334,1,26 -folded,0.5883333333333334,1.0,0.4333333333333334,0.6,1,26 -jam,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -black,0.8733333333333334,0.7,1.0,0.8066666666666666,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -soccer,0.5633333333333332,1.0,0.4833333333333333,0.6333333333333334,1,26 -hat,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.95,1.0,0.9333333333333332,0.96,2,24 -coffee,0.46333333333333326,1.0,0.4999999999999999,0.6333333333333333,1,26 -handle,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -food,0.3883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,24 -towel,0.5966666666666666,1.0,0.5166666666666666,0.65,1,26 -chips,0.6133333333333333,1.0,0.5166666666666666,0.65,1,26 -stapler,0.5766666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -onion,0.47166666666666657,1.0,0.4499999999999999,0.6,1,26 -bag,0.7133333333333333,1.0,0.65,0.75,1,26 -sponge,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5816666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -special,0.5216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -colgate,0.5883333333333334,1.0,0.5166666666666666,0.65,1,26 -leaf,0.73,1.0,0.6166666666666666,0.7333333333333334,1,26 -tube,0.46333333333333326,1.0,0.4833333333333333,0.6333333333333333,1,26 -cell,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -mug,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -yogurt,0.6466666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -plantain,0.4966666666666667,0.9,0.5166666666666666,0.5833333333333333,1,26 -red,0.7849999999999999,0.8,0.5,0.6133333333333334,3,24 -pepper,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -wheat,0.8816666666666666,1.0,0.75,0.8333333333333333,1,26 -kleenex,0.6733333333333332,1.0,0.4833333333333333,0.6333333333333333,1,26 -toothbrush,0.6466666666666667,1.0,0.6499999999999999,0.75,1,26 -binder,0.6883333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.7433333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -pliers,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -thins,0.7416666666666666,1.0,0.7166666666666666,0.8,1,26 -package,0.5999999999999999,1.0,0.5166666666666666,0.65,1,26 -k,0.5683333333333332,1.0,0.5166666666666666,0.65,1,26 -jelly,0.46333333333333326,1.0,0.4499999999999999,0.6,1,26 -fruit,0.6833333333333333,0.6666666666666667,0.8666666666666666,0.7333333333333334,2,25 -apple,0.635,0.9,0.5999999999999999,0.6666666666666666,1,25 -bell,0.755,1.0,0.7166666666666666,0.8,1,26 -battery,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -jar,0.5,1.0,0.4833333333333332,0.6166666666666666,1,26 -bound,0.7233333333333334,1.0,0.6,0.7166666666666667,1,26 -lettuce,0.675,1.0,0.6166666666666666,0.7333333333333333,1,26 -brush,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -scissors,0.575,1.0,0.5499999999999999,0.6666666666666666,1,26 -lime,0.6633333333333333,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.5633333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -top,0.5916666666666666,1.0,0.4499999999999999,0.6,1,26 -spiral,0.6916666666666667,1.0,0.65,0.75,1,26 -handles,0.8833333333333332,1.0,0.8333333333333333,0.8833333333333332,1,25 -camera,0.6466666666666667,1.0,0.5666666666666667,0.7,1,26 -eraser,0.735,1.0,0.6166666666666666,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.95,1.0,0.9333333333333332,0.96,5,20 -banana,0.4883333333333333,0.9,0.4999999999999999,0.5666666666666667,1,26 -pitcher,0.4716666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -phone,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -stick,0.6799999999999999,1.0,0.5666666666666667,0.7,1,25 -cereal,0.7016666666666667,1.0,0.5833333333333333,0.7,1,26 -bulb,0.9349999999999999,1.0,0.9,0.9400000000000001,2,26 -hair,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5249999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -can,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.4216666666666667,1.0,0.4333333333333333,0.5833333333333333,1,26 -crackers,0.7150000000000001,1.0,0.6166666666666666,0.7333333333333334,1,26 -plate,0.6733333333333333,1.0,0.65,0.75,1,25 -calculator,0.6883333333333332,0.8,0.7166666666666666,0.6666666666666667,1,26 -tissues,0.765,1.0,0.6166666666666666,0.7333333333333333,1,26 -juice,0.7483333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -pink,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -lemon,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -peach,0.705,1.0,0.5833333333333333,0.7,1,26 -bowl,0.665,1.0,0.5166666666666666,0.6666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -blue,0.7849999999999999,1.0,0.7166666666666666,0.8,1,25 -used,0.43999999999999995,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6183333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -ball,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -notebook,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -garlic,0.55,1.0,0.4833333333333333,0.6333333333333333,1,26 -cleaning,0.6916666666666667,1.0,0.5666666666666667,0.7,1,26 -pair,0.8416666666666668,1.0,0.8333333333333333,0.9,2,27 -container,0.66,1.0,0.5166666666666666,0.6666666666666667,1,25 -tomato,0.6033333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -cellphone,0.64,1.0,0.4999999999999999,0.65,1,26 -potato,0.7716666666666666,1.0,0.7166666666666666,0.8,1,25 -light,0.8933333333333333,1.0,0.8666666666666666,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.6218364197530862 -F1-Score: 0.6611419753086418 -Precision: 0.8969135802469137 -Recall: 0.5720679012345679 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,24 -yellow,0.7933333333333333,0.8,0.7,0.7066666666666668,6,23 -looks,0.43000000000000005,0.8,0.5166666666666666,0.55,1,24 -keyboard,0.5850000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -glue,0.58,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.9350000000000002,1.0,0.85,0.8999999999999998,1,26 -flashlight,0.4716666666666667,1.0,0.41666666666666663,0.5833333333333334,1,26 -cup,0.37833333333333335,0.5,0.5833333333333333,0.51,1,26 -folded,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -jam,0.43,1.0,0.4666666666666666,0.6166666666666667,1,26 -black,0.8466666666666667,0.6,1.0,0.7333333333333334,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.55,1.0,0.5166666666666666,0.65,1,26 -soccer,0.6083333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -hat,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -brown,0.9266666666666665,1.0,0.9,0.9400000000000001,2,24 -coffee,0.7066666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -handle,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -food,0.9166666666666666,1.0,0.8833333333333332,0.9166666666666666,1,25 -towel,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.75,1.0,0.6833333333333333,0.7666666666666666,1,26 -stapler,0.58,1.0,0.5833333333333333,0.7,1,26 -onion,0.7966666666666666,1.0,0.75,0.8166666666666667,1,26 -bag,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -sponge,0.7433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6766666666666665,1.0,0.65,0.75,1,26 -special,0.7416666666666667,1.0,0.7166666666666666,0.8,1,26 -colgate,0.6599999999999999,1.0,0.4999999999999999,0.65,1,26 -leaf,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -tube,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -cell,0.5833333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -mug,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666666,1,25 -yogurt,0.5583333333333333,1.0,0.5833333333333333,0.7,1,26 -plantain,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.7849999999999999,0.7,0.41666666666666663,0.52,3,25 -pepper,0.7266666666666667,1.0,0.65,0.75,1,26 -wheat,0.7183333333333334,1.0,0.6499999999999999,0.75,1,26 -kleenex,0.665,1.0,0.4999999999999999,0.65,1,26 -toothbrush,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -binder,0.6183333333333334,1.0,0.5833333333333333,0.7,1,26 -baseball,0.86,1.0,0.7333333333333333,0.8166666666666667,1,26 -pliers,0.6933333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7933333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -thins,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -package,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.635,1.0,0.5833333333333333,0.7,1,26 -jelly,0.8800000000000001,1.0,0.7833333333333333,0.85,1,26 -fruit,0.7683333333333333,0.6833333333333333,0.9,0.7333333333333334,2,26 -apple,0.575,0.95,0.5833333333333333,0.6666666666666667,1,25 -bell,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -battery,0.5583333333333333,1.0,0.4499999999999999,0.6,1,26 -jar,0.655,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -lettuce,0.7583333333333332,1.0,0.6666666666666666,0.7666666666666666,1,26 -brush,0.7083333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -scissors,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.6849999999999999,1.0,0.5666666666666667,0.7,1,25 -toothpaste,0.6799999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -top,0.6966666666666665,1.0,0.6833333333333333,0.7666666666666666,1,26 -spiral,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -handles,0.5833333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -camera,0.7033333333333334,1.0,0.5666666666666667,0.7,1,26 -eraser,0.6416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.9016666666666667,1.0,0.8333333333333333,0.9,5,21 -banana,0.7983333333333332,1.0,0.6333333333333333,0.75,1,26 -pitcher,0.43,1.0,0.4499999999999999,0.6,1,26 -phone,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -stick,0.7516666666666667,1.0,0.65,0.75,1,25 -cereal,0.48,1.0,0.4333333333333333,0.5833333333333333,1,26 -bulb,0.93,1.0,0.9,0.9400000000000001,2,26 -hair,0.7383333333333333,1.0,0.7,0.7833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.875,1.0,0.7833333333333333,0.85,1,26 -can,0.9349999999999999,1.0,0.9,0.9400000000000001,2,24 -coca,0.7066666666666667,1.0,0.6499999999999999,0.75,1,26 -crackers,0.7066666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -plate,0.6966666666666667,1.0,0.6833333333333333,0.7666666666666666,1,25 -calculator,0.615,0.85,0.6333333333333333,0.6333333333333333,1,26 -tissues,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -juice,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -pink,0.6466666666666667,1.0,0.5833333333333333,0.7,1,25 -lemon,0.86,1.0,0.7333333333333333,0.8166666666666667,1,26 -peach,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -bowl,0.74,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6466666666666667,1.0,0.55,0.6833333333333333,1,26 -blue,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -used,0.26166666666666666,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -ball,0.6383333333333333,1.0,0.5833333333333333,0.7,1,25 -notebook,0.775,1.0,0.7499999999999999,0.8166666666666667,1,26 -garlic,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -cleaning,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -pair,0.9133333333333333,1.0,0.9,0.9400000000000001,2,27 -container,0.5433333333333333,1.0,0.4833333333333333,0.6333333333333334,1,25 -tomato,0.6066666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -cellphone,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -potato,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333334,1,25 -light,0.9349999999999999,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.6592438271604939 -F1-Score: 0.6848765432098765 -Precision: 0.8970679012345678 -Recall: 0.6035493827160494 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6766666666666665,1.0,0.5666666666666667,0.7,1,24 -yellow,0.8600000000000001,0.9,0.7833333333333333,0.7933333333333332,6,26 -looks,0.425,0.95,0.4999999999999999,0.6,1,24 -keyboard,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -glue,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.73,1.0,0.5999999999999999,0.7166666666666666,1,26 -flashlight,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -cup,0.32833333333333337,0.5,0.4833333333333333,0.47666666666666674,1,26 -folded,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -jam,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -black,0.8233333333333335,0.65,1.0,0.7780952380952382,6,21 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -soccer,0.6966666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -hat,0.6533333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -brown,0.9133333333333333,1.0,0.9,0.9400000000000001,2,24 -coffee,0.5383333333333333,1.0,0.4666666666666666,0.6166666666666666,1,25 -handle,0.75,1.0,0.7,0.7833333333333333,1,26 -food,0.6333333333333333,1.0,0.4833333333333332,0.6333333333333333,1,26 -towel,0.7933333333333332,1.0,0.7,0.7833333333333333,1,26 -chips,0.8016666666666665,1.0,0.6833333333333333,0.7833333333333333,1,26 -stapler,0.8,1.0,0.7166666666666666,0.8,1,26 -onion,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -bag,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -sponge,0.40499999999999997,1.0,0.4333333333333333,0.5833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -special,0.5166666666666667,1.0,0.5,0.6333333333333333,1,26 -colgate,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.55,1.0,0.4999999999999999,0.6333333333333333,1,26 -cell,0.675,1.0,0.55,0.6833333333333333,1,26 -mug,0.7849999999999999,1.0,0.6833333333333333,0.7833333333333333,1,25 -yogurt,0.6133333333333333,1.0,0.5166666666666666,0.65,1,26 -plantain,0.7516666666666667,1.0,0.6333333333333333,0.75,1,26 -red,0.7783333333333334,0.4,0.2333333333333333,0.29333333333333333,3,26 -pepper,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -wheat,0.5416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -kleenex,0.6733333333333332,1.0,0.6166666666666666,0.7333333333333334,1,26 -toothbrush,0.5633333333333332,1.0,0.5499999999999999,0.6666666666666666,1,26 -binder,0.6216666666666666,1.0,0.6,0.7166666666666667,1,26 -baseball,0.6083333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -pliers,0.5166666666666666,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.36833333333333335,1.0,0.4499999999999999,0.6,1,26 -thins,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -package,0.7516666666666666,1.0,0.65,0.75,1,26 -k,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -jelly,0.6466666666666667,1.0,0.55,0.6833333333333333,1,26 -fruit,0.6616666666666667,0.6833333333333333,0.8,0.7066666666666667,2,26 -apple,0.6883333333333332,0.95,0.6166666666666666,0.7,1,25 -bell,0.6166666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -battery,0.4749999999999999,1.0,0.4333333333333333,0.5833333333333333,1,26 -jar,0.7283333333333333,1.0,0.5666666666666667,0.7,1,26 -bound,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -lettuce,0.7816666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -brush,0.7183333333333334,1.0,0.65,0.75,1,26 -scissors,0.7133333333333334,1.0,0.6,0.7166666666666667,1,26 -lime,0.5399999999999999,1.0,0.5166666666666666,0.65,1,25 -toothpaste,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -top,0.5466666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -spiral,0.63,1.0,0.6333333333333332,0.7333333333333333,1,26 -handles,0.85,1.0,0.8666666666666666,0.9,1,25 -camera,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -eraser,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -creamer,0,0,0,0,1,26 -white,0.96,1.0,0.9333333333333332,0.96,5,21 -banana,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.7,1.0,0.65,0.75,1,26 -phone,0.7,1.0,0.6333333333333333,0.7333333333333333,1,26 -stick,0.6166666666666666,1.0,0.5333333333333333,0.6666666666666667,1,25 -cereal,0.45166666666666666,1.0,0.4,0.5666666666666667,1,26 -bulb,0.9016666666666667,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.6083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7233333333333334,1.0,0.5833333333333333,0.7,1,26 -can,0.9400000000000001,1.0,0.9,0.9400000000000001,2,25 -coca,0.5983333333333334,1.0,0.4833333333333333,0.6333333333333334,1,26 -crackers,0.755,1.0,0.7,0.7833333333333333,1,26 -plate,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,25 -calculator,0.62,0.8,0.6333333333333333,0.6166666666666667,1,26 -tissues,0.40166666666666667,1.0,0.4,0.5666666666666667,1,26 -juice,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -pink,0.7933333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -lemon,0.8616666666666667,1.0,0.7,0.8,1,26 -peach,0.5633333333333332,1.0,0.6166666666666666,0.7166666666666666,1,26 -bowl,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -blue,0.4883333333333333,1.0,0.4499999999999999,0.6,1,25 -used,0.33666666666666667,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.5683333333333334,1.0,0.4999999999999999,0.65,1,26 -ball,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666667,1,25 -notebook,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -garlic,0.6416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -cleaning,0.6849999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -pair,0.9600000000000002,1.0,0.9333333333333332,0.9600000000000002,2,27 -container,0.5266666666666666,1.0,0.4166666666666667,0.5833333333333333,1,25 -tomato,0.74,1.0,0.5666666666666667,0.7,1,26 -cellphone,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -potato,0.55,1.0,0.4666666666666666,0.6166666666666667,1,25 -light,0.8816666666666666,1.0,0.8333333333333334,0.9000000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.6356635802469135 -F1-Score: 0.6689329805996472 -Precision: 0.896604938271605 -Recall: 0.5811728395061728 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.605,1.0,0.4999999999999999,0.6333333333333333,1,24 -yellow,0.7649999999999999,0.9,0.5833333333333333,0.6766666666666667,6,25 -looks,0.6166666666666667,0.85,0.6166666666666666,0.6166666666666667,1,24 -keyboard,0.7266666666666667,1.0,0.5833333333333333,0.7,1,26 -glue,0.7716666666666667,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.5,1.0,0.5499999999999999,0.6666666666666666,1,26 -flashlight,0.4383333333333333,1.0,0.4499999999999999,0.6,1,26 -cup,0.2566666666666667,0.5,0.55,0.5033333333333333,1,26 -folded,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -jam,0.745,1.0,0.5666666666666667,0.7,1,26 -black,0.93,0.875,1.0,0.9257142857142858,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.63,1.0,0.4999999999999999,0.65,1,26 -soccer,0.625,1.0,0.5999999999999999,0.7166666666666667,1,26 -hat,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.8633333333333333,1.0,0.8333333333333334,0.9000000000000001,2,24 -coffee,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -handle,0.4916666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -food,0.7533333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -towel,0.7216666666666667,1.0,0.6,0.7166666666666667,1,26 -chips,0.5166666666666666,1.0,0.5,0.6333333333333333,1,26 -stapler,0.5966666666666666,1.0,0.5166666666666666,0.65,1,26 -onion,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.5333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -sponge,0.6599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6799999999999999,1.0,0.7,0.7833333333333333,1,25 -special,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -colgate,0.41666666666666663,1.0,0.4333333333333333,0.5833333333333333,1,26 -leaf,0.605,1.0,0.5833333333333333,0.7,1,26 -tube,0.7683333333333333,1.0,0.6333333333333333,0.75,1,26 -cell,0.7716666666666666,1.0,0.65,0.75,1,26 -mug,0.625,1.0,0.6166666666666666,0.7166666666666666,1,25 -yogurt,0.6599999999999999,1.0,0.5166666666666666,0.6666666666666667,1,26 -plantain,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -red,0.7933333333333333,0.7,0.39999999999999997,0.5066666666666667,3,24 -pepper,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -wheat,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.6216666666666666,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.805,1.0,0.7166666666666666,0.8,1,26 -binder,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -baseball,0.6633333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -pliers,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -thins,0.4416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -package,0.505,1.0,0.4833333333333333,0.6333333333333333,1,26 -k,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -jelly,0.6833333333333333,1.0,0.7333333333333333,0.8,1,26 -fruit,0.6616666666666667,0.6499999999999999,0.8333333333333333,0.6900000000000001,2,25 -apple,0.655,1.0,0.5833333333333333,0.7,1,25 -bell,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.7183333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -jar,0.7933333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -bound,0.7183333333333333,1.0,0.65,0.75,1,26 -lettuce,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -brush,0.5383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -scissors,0.695,1.0,0.5166666666666666,0.6666666666666667,1,26 -lime,0.6283333333333333,1.0,0.4833333333333333,0.6333333333333334,1,25 -toothpaste,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -top,0.5,1.0,0.4999999999999999,0.6333333333333333,1,26 -spiral,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333334,1,25 -camera,0.5383333333333333,1.0,0.45,0.6,1,26 -eraser,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.9133333333333333,1.0,0.8666666666666666,0.9199999999999999,5,20 -banana,0.48,0.95,0.4666666666666666,0.5833333333333333,1,26 -pitcher,0.6399999999999999,1.0,0.4999999999999999,0.65,1,26 -phone,0.7466666666666666,1.0,0.7166666666666666,0.8,1,26 -stick,0.4666666666666666,1.0,0.45,0.6,1,25 -cereal,0.6216666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -bulb,0.8816666666666666,1.0,0.8333333333333333,0.9,2,27 -hair,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -can,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -crackers,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,25 -calculator,0.6933333333333332,1.0,0.5833333333333333,0.7,1,26 -tissues,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -juice,0.6883333333333334,1.0,0.6,0.7166666666666667,1,26 -pink,0.7016666666666667,1.0,0.6499999999999999,0.75,1,25 -lemon,0.7666666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -peach,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -bowl,0.7216666666666667,1.0,0.65,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7183333333333334,1.0,0.6,0.7166666666666666,1,26 -blue,0.655,1.0,0.6,0.7166666666666667,1,25 -used,0.39666666666666667,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -ball,0.51,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.5133333333333333,1.0,0.4833333333333334,0.6333333333333333,1,26 -garlic,0.8133333333333332,1.0,0.75,0.8166666666666667,1,26 -cleaning,0.755,1.0,0.6499999999999999,0.75,1,26 -pair,0.9266666666666665,1.0,0.9,0.9400000000000001,2,26 -container,0.525,1.0,0.5166666666666666,0.65,1,26 -tomato,0.7433333333333333,1.0,0.6499999999999999,0.75,1,26 -cellphone,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -potato,0.6583333333333334,1.0,0.6499999999999999,0.75,1,25 -light,0.8733333333333334,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9349999999999999,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.6247222222222222 -F1-Score: 0.6660405643738978 -Precision: 0.9020833333333333 -Recall: 0.5748456790123456 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.475,1.0,0.4999999999999999,0.6333333333333333,1,25 -yellow,0.8566666666666667,1.0,0.7333333333333334,0.8400000000000001,6,25 -looks,0.6633333333333333,0.9,0.6,0.65,1,24 -keyboard,0.625,1.0,0.6166666666666666,0.7166666666666667,1,26 -glue,0.6916666666666667,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.7416666666666666,1.0,0.7166666666666666,0.8,1,26 -cup,0.43999999999999995,0.5,0.6166666666666666,0.53,1,26 -folded,0.6983333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -jam,0.6883333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -black,0.865,0.7,1.0,0.8066666666666666,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5900000000000001,1.0,0.4666666666666666,0.6166666666666667,1,26 -soccer,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -hat,0.7933333333333333,1.0,0.7,0.7833333333333333,1,26 -brown,0.9333333333333332,1.0,0.9333333333333332,0.96,2,26 -coffee,0.8300000000000001,1.0,0.75,0.8166666666666667,1,26 -handle,0.7366666666666666,1.0,0.5666666666666667,0.7,1,25 -food,0.6583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -towel,0.4666666666666666,1.0,0.4666666666666666,0.6,1,26 -chips,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.5383333333333333,1.0,0.5,0.6333333333333333,1,26 -onion,0.7183333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -bag,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -sponge,0.6183333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.8550000000000001,1.0,0.7833333333333333,0.85,1,25 -special,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -colgate,0.6649999999999999,1.0,0.55,0.6833333333333333,1,26 -leaf,0.5549999999999999,1.0,0.5833333333333333,0.7,1,26 -tube,0.735,1.0,0.6666666666666666,0.7666666666666667,1,26 -cell,0.525,0.6,0.65,0.5566666666666666,1,26 -mug,0.9166666666666666,1.0,0.85,0.8999999999999998,1,26 -yogurt,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.8400000000000001,1.0,0.6833333333333333,0.7833333333333333,1,26 -red,0.7816666666666667,0.5,0.2833333333333333,0.36,3,27 -pepper,0.5599999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -wheat,0.6016666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -kleenex,0.6833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -toothbrush,0.615,1.0,0.5333333333333333,0.6666666666666666,1,26 -binder,0.7549999999999999,1.0,0.7,0.7833333333333333,1,26 -baseball,0.6083333333333333,1.0,0.6499999999999999,0.75,1,26 -pliers,0.6683333333333332,1.0,0.55,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7133333333333333,1.0,0.65,0.75,1,26 -thins,0.7833333333333333,1.0,0.7,0.7833333333333334,1,26 -package,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.6966666666666665,1.0,0.6,0.7166666666666667,1,26 -jelly,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666667,1,26 -fruit,0.7366666666666666,0.7166666666666666,0.8666666666666666,0.7333333333333334,2,26 -apple,0.6966666666666668,0.95,0.6,0.6833333333333333,1,25 -bell,0.6966666666666665,1.0,0.6666666666666666,0.7666666666666667,1,26 -battery,0.55,1.0,0.55,0.6666666666666667,1,26 -jar,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.7216666666666667,1.0,0.6333333333333332,0.7333333333333333,1,26 -lettuce,0.6383333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -brush,0.625,1.0,0.5499999999999999,0.6833333333333333,1,26 -scissors,0.55,1.0,0.6,0.7,1,26 -lime,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -toothpaste,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -top,0.6433333333333333,1.0,0.5666666666666667,0.7,1,26 -spiral,0.73,1.0,0.65,0.75,1,26 -handles,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -camera,0.8833333333333332,1.0,0.8333333333333333,0.8833333333333332,1,26 -eraser,0.575,1.0,0.6166666666666666,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,0.9,1.0,0.8333333333333333,0.9,5,22 -banana,0.675,1.0,0.7,0.7833333333333333,1,26 -pitcher,0.75,1.0,0.7,0.7833333333333333,1,26 -phone,0.71,1.0,0.6666666666666666,0.7666666666666667,1,26 -stick,0.525,1.0,0.4666666666666666,0.6166666666666666,1,25 -cereal,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -bulb,0.9550000000000001,1.0,0.9333333333333332,0.96,2,27 -hair,0.605,1.0,0.5666666666666667,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -can,0.9066666666666666,1.0,0.8666666666666668,0.9200000000000002,2,25 -coca,0.6199999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -crackers,0.78,1.0,0.7166666666666666,0.8,1,26 -plate,0.58,1.0,0.6166666666666666,0.7166666666666666,1,24 -calculator,0.6816666666666666,1.0,0.5666666666666667,0.7,1,26 -tissues,0.4883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -juice,0.7633333333333333,1.0,0.75,0.8166666666666667,1,26 -pink,0.73,1.0,0.6833333333333332,0.7666666666666666,1,25 -lemon,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666666,1,26 -peach,0.7516666666666667,1.0,0.5666666666666667,0.7,1,26 -bowl,0.5216666666666667,1.0,0.4,0.5666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8966666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -blue,0.75,1.0,0.5833333333333333,0.7166666666666667,1,25 -used,0.28,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -ball,0.7833333333333333,1.0,0.7333333333333333,0.8166666666666667,1,25 -notebook,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -garlic,0.4883333333333333,1.0,0.5166666666666666,0.65,1,26 -cleaning,0.575,1.0,0.5833333333333333,0.7,1,26 -pair,0.9083333333333332,1.0,0.9,0.9400000000000001,2,27 -container,0.4833333333333333,1.0,0.4333333333333334,0.5833333333333333,1,25 -tomato,0.6716666666666666,1.0,0.6,0.7166666666666666,1,26 -cellphone,0.39333333333333337,0.6,0.5333333333333333,0.5133333333333334,1,26 -potato,0.835,1.0,0.7833333333333333,0.85,1,25 -light,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9349999999999999,1.0,0.9,0.9400000000000001,2,26 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.6437962962962962 -F1-Score: 0.6775925925925925 -Precision: 0.8932098765432099 -Recall: 0.595679012345679 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -yellow,0.845,0.85,0.7833333333333334,0.7766666666666666,6,24 -looks,0.5549999999999999,1.0,0.5166666666666666,0.65,1,24 -keyboard,0.78,1.0,0.6833333333333333,0.7666666666666666,1,26 -glue,0.76,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -flashlight,0.7366666666666666,1.0,0.5666666666666667,0.7,1,26 -cup,0.4366666666666667,0.5,0.5499999999999999,0.5033333333333333,1,26 -folded,0.74,1.0,0.6,0.7166666666666667,1,26 -jam,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -black,0.8333333333333334,0.6583333333333333,1.0,0.779047619047619,6,23 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.5883333333333333,1.0,0.41666666666666663,0.5833333333333333,1,26 -soccer,0.6683333333333332,1.0,0.6499999999999999,0.75,1,26 -hat,0.6266666666666667,1.0,0.5166666666666666,0.65,1,26 -brown,0.9016666666666667,1.0,0.8666666666666666,0.9200000000000002,2,25 -coffee,0.605,1.0,0.5166666666666666,0.65,1,26 -handle,0.705,1.0,0.5333333333333333,0.6833333333333333,1,25 -food,0.8,1.0,0.7833333333333333,0.85,1,25 -towel,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -stapler,0.635,1.0,0.6,0.7166666666666667,1,26 -onion,0.6166666666666666,1.0,0.6666666666666666,0.75,1,26 -bag,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -sponge,0.8166666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6633333333333333,1.0,0.6499999999999999,0.75,1,25 -special,0.5966666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -colgate,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -leaf,0.585,1.0,0.4499999999999999,0.6,1,26 -tube,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -cell,0.8433333333333334,1.0,0.7,0.8,1,26 -mug,0.5883333333333333,1.0,0.4333333333333334,0.6,1,26 -yogurt,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -plantain,0.6133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.7933333333333332,0.8,0.45,0.5733333333333334,3,24 -pepper,0.6216666666666667,1.0,0.4833333333333332,0.6333333333333333,1,26 -wheat,0.58,1.0,0.4833333333333333,0.6333333333333333,1,26 -kleenex,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -toothbrush,0.605,1.0,0.5333333333333333,0.6666666666666667,1,25 -binder,0.755,1.0,0.6499999999999999,0.75,1,26 -baseball,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -pliers,0.7333333333333333,1.0,0.6,0.7166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7666666666666666,1.0,0.75,0.8166666666666667,1,26 -thins,0.61,1.0,0.5833333333333333,0.7,1,26 -package,0.7,1.0,0.65,0.75,1,26 -k,0.8149999999999998,1.0,0.6833333333333333,0.7833333333333333,1,26 -jelly,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -fruit,0.7000000000000001,0.6833333333333333,0.8333333333333334,0.72,2,25 -apple,0.66,0.75,0.65,0.6166666666666667,1,25 -bell,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -battery,0.5216666666666666,1.0,0.45,0.6,1,26 -jar,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.5,1.0,0.6166666666666666,0.7166666666666666,1,26 -lettuce,0.5683333333333334,1.0,0.4333333333333334,0.6,1,26 -brush,0.755,1.0,0.7166666666666666,0.8,1,26 -scissors,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -lime,0.675,1.0,0.7499999999999999,0.8166666666666667,1,25 -toothpaste,0.8383333333333335,1.0,0.7666666666666666,0.8333333333333333,1,26 -top,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -handles,0.8166666666666667,1.0,0.7333333333333333,0.8166666666666667,1,25 -camera,0.7216666666666667,1.0,0.6,0.7166666666666666,1,26 -eraser,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -creamer,0,0,0,0,1,26 -white,0.8966666666666667,1.0,0.8333333333333333,0.9,5,21 -banana,0.6766666666666665,1.0,0.6333333333333333,0.7333333333333334,1,26 -pitcher,0.7666666666666666,1.0,0.6333333333333333,0.75,1,26 -phone,0.7833333333333333,1.0,0.7333333333333333,0.8,1,26 -stick,0.7816666666666666,1.0,0.6166666666666666,0.7333333333333334,1,25 -cereal,0.73,1.0,0.5666666666666667,0.7,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -hair,0.74,1.0,0.6499999999999999,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7849999999999999,1.0,0.6333333333333333,0.75,1,26 -can,0.8483333333333334,1.0,0.8,0.8800000000000001,2,25 -coca,0.6716666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -crackers,0.4966666666666667,1.0,0.5166666666666666,0.65,1,26 -plate,0.6,1.0,0.5833333333333333,0.7,1,25 -calculator,0.45833333333333337,0.75,0.55,0.5466666666666666,1,26 -tissues,0.6966666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -juice,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -pink,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666667,1,25 -lemon,0.7433333333333333,1.0,0.7,0.7833333333333333,1,26 -peach,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.5083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6683333333333332,1.0,0.5166666666666666,0.65,1,26 -blue,0.425,1.0,0.4499999999999999,0.6,1,25 -used,0.3416666666666667,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.8833333333333332,1.0,0.8333333333333333,0.8833333333333332,1,26 -ball,0.6333333333333333,1.0,0.5833333333333333,0.7,1,25 -notebook,0.4766666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -garlic,0.6399999999999999,1.0,0.45,0.6166666666666667,1,26 -cleaning,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -pair,0.9133333333333333,1.0,0.9,0.9400000000000001,2,27 -container,0.6416666666666666,1.0,0.5166666666666666,0.65,1,25 -tomato,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -cellphone,0.8933333333333332,1.0,0.8,0.8666666666666666,1,26 -potato,0.5549999999999999,1.0,0.5833333333333333,0.7,1,25 -light,0.8966666666666665,1.0,0.8666666666666668,0.9200000000000002,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8683333333333334,1.0,0.8333333333333333,0.9,2,25 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.6427932098765432 -F1-Score: 0.6761022927689595 -Precision: 0.898070987654321 -Recall: 0.5905864197530865 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.54,1.0,0.4666666666666666,0.6166666666666667,1,25 -yellow,0.8766666666666667,0.9,0.8,0.8066666666666666,6,23 -looks,0.5966666666666667,0.9,0.5166666666666666,0.5833333333333333,1,24 -keyboard,0.65,1.0,0.55,0.6833333333333333,1,26 -glue,0.655,1.0,0.5,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.6666666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -flashlight,0.5083333333333333,1.0,0.4499999999999999,0.6,1,26 -cup,0.16166666666666668,0.5,0.4666666666666666,0.4666666666666667,1,26 -folded,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -jam,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -black,0.9666666666666668,0.9,1.0,0.9333333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -soccer,0.73,1.0,0.75,0.8166666666666667,1,26 -hat,0.6666666666666666,1.0,0.6499999999999999,0.75,1,26 -brown,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -coffee,0.655,1.0,0.5833333333333333,0.7,1,26 -handle,0.44666666666666666,1.0,0.4499999999999999,0.6,1,25 -food,0.5833333333333334,1.0,0.5,0.65,1,24 -towel,0.7,1.0,0.5666666666666667,0.7,1,26 -chips,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -onion,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -bag,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -sponge,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.69,1.0,0.5833333333333333,0.7,1,25 -special,0.74,1.0,0.6166666666666666,0.7333333333333333,1,26 -colgate,0.63,1.0,0.4333333333333333,0.6,1,26 -leaf,0.5633333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -tube,0.655,1.0,0.55,0.6833333333333333,1,26 -cell,0.59,0.55,0.6833333333333333,0.5666666666666667,1,26 -mug,0.5349999999999999,1.0,0.5166666666666666,0.65,1,26 -yogurt,0.5933333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.655,1.0,0.55,0.6833333333333333,1,26 -red,0.7733333333333333,0.8,0.45,0.5733333333333334,3,25 -pepper,0.6433333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -wheat,0.6966666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -kleenex,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.78,1.0,0.7,0.7833333333333333,1,26 -binder,0.6766666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -baseball,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -pliers,0.5333333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -thins,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -package,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -k,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -jelly,0.635,1.0,0.5333333333333333,0.6666666666666667,1,26 -fruit,0.8483333333333334,0.6833333333333333,0.9666666666666666,0.7733333333333333,2,26 -apple,0.37666666666666665,0.8,0.45,0.5166666666666667,1,25 -bell,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.7350000000000001,1.0,0.6666666666666666,0.7666666666666667,1,26 -jar,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -bound,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -lettuce,0.6716666666666666,1.0,0.6,0.7166666666666666,1,26 -brush,0.635,1.0,0.4999999999999999,0.65,1,26 -scissors,0.7016666666666667,1.0,0.6,0.7166666666666667,1,26 -lime,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -toothpaste,0.6966666666666667,1.0,0.65,0.75,1,26 -top,0.805,1.0,0.7666666666666666,0.8333333333333333,1,26 -spiral,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -handles,0.655,1.0,0.5833333333333333,0.7,1,25 -camera,0.7766666666666666,1.0,0.7166666666666666,0.8,1,26 -eraser,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.93,1.0,0.9,0.9400000000000001,5,23 -banana,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -pitcher,0.75,1.0,0.7166666666666666,0.8,1,26 -phone,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -stick,0.6599999999999999,1.0,0.55,0.6833333333333333,1,25 -cereal,0.6583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -bulb,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,27 -hair,0.46333333333333326,1.0,0.4499999999999999,0.6,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7166666666666666,1.0,0.6,0.7166666666666666,1,26 -can,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -coca,0.6683333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -crackers,0.69,1.0,0.5166666666666666,0.6666666666666667,1,26 -plate,0.8550000000000001,1.0,0.7333333333333333,0.8166666666666667,1,25 -calculator,0.6633333333333333,0.9,0.6166666666666666,0.6666666666666667,1,26 -tissues,0.765,1.0,0.6166666666666666,0.7333333333333333,1,26 -juice,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -pink,0.6833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -lemon,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -peach,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -bowl,0.7016666666666667,1.0,0.55,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8133333333333332,1.0,0.7333333333333333,0.8166666666666668,1,26 -blue,0.6833333333333333,1.0,0.6666666666666666,0.75,1,25 -used,0.41833333333333333,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6016666666666667,1.0,0.4999999999999999,0.65,1,26 -ball,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -notebook,0.43,1.0,0.4,0.5666666666666667,1,26 -garlic,0.5633333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -cleaning,0.78,1.0,0.6333333333333333,0.75,1,26 -pair,0.9349999999999999,1.0,0.8999999999999998,0.9400000000000001,2,27 -container,0.5383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -tomato,0.4833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -cellphone,0.5116666666666666,0.55,0.7,0.5633333333333334,1,26 -potato,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -light,0.8766666666666666,1.0,0.8333333333333333,0.9,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.93,1.0,0.9,0.9400000000000001,2,25 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.6430864197530864 -F1-Score: 0.6724074074074075 -Precision: 0.8933641975308644 -Recall: 0.5884259259259258 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5716666666666667,1.0,0.5166666666666666,0.65,1,24 -yellow,0.805,0.8,0.7666666666666667,0.72,6,24 -looks,0.5916666666666666,0.8,0.5833333333333333,0.6,1,24 -keyboard,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -glue,0.58,1.0,0.5333333333333333,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -flashlight,0.6066666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -cup,0.39166666666666666,0.5,0.7,0.5533333333333335,1,26 -folded,0.7,1.0,0.6166666666666666,0.7333333333333333,1,26 -jam,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -black,0.9833333333333334,0.9666666666666666,1.0,0.9800000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5683333333333334,1.0,0.5833333333333333,0.7,1,26 -soccer,0.5549999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -hat,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -brown,0.8916666666666666,1.0,0.8666666666666668,0.9200000000000002,2,24 -coffee,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -handle,0.575,1.0,0.5166666666666666,0.65,1,25 -food,0.6316666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -towel,0.5933333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -chips,0.61,1.0,0.5833333333333333,0.7,1,26 -stapler,0.725,1.0,0.6,0.7166666666666667,1,26 -onion,0.8166666666666667,1.0,0.7833333333333333,0.85,1,26 -bag,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -sponge,0.6883333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -special,0.6183333333333334,1.0,0.5499999999999999,0.6833333333333333,1,26 -colgate,0.5083333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -leaf,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -tube,0.48,1.0,0.4833333333333332,0.6166666666666666,1,26 -cell,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -mug,0.7933333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -yogurt,0.575,1.0,0.5166666666666666,0.65,1,26 -plantain,0.5599999999999999,1.0,0.5833333333333333,0.7,1,26 -red,0.7783333333333333,0.8,0.4833333333333334,0.6,3,24 -pepper,0.6566666666666666,1.0,0.5833333333333333,0.7,1,26 -wheat,0.45499999999999996,1.0,0.5166666666666666,0.65,1,26 -kleenex,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -toothbrush,0.6583333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -binder,0.6733333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -baseball,0.6399999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -pliers,0.6666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -thins,0.6749999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -package,0.74,1.0,0.6666666666666666,0.7666666666666667,1,26 -k,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -jelly,0.45,1.0,0.4999999999999999,0.6333333333333333,1,26 -fruit,0.7183333333333333,0.6,0.9666666666666666,0.7166666666666667,2,25 -apple,0.6233333333333333,0.8,0.5999999999999999,0.6,1,25 -bell,0.5466666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -battery,0.7566666666666666,1.0,0.5666666666666667,0.7,1,26 -jar,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -bound,0.7333333333333333,1.0,0.7333333333333333,0.8,1,26 -lettuce,0.7299999999999999,1.0,0.6499999999999999,0.75,1,26 -brush,0.5516666666666666,1.0,0.5166666666666666,0.65,1,26 -scissors,0.5266666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -lime,0.6799999999999999,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.69,1.0,0.5666666666666667,0.7,1,26 -top,0.5883333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -spiral,0.605,1.0,0.5833333333333333,0.7,1,26 -handles,0.7433333333333334,1.0,0.6333333333333333,0.75,1,25 -camera,0.5383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -eraser,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,0.9183333333333333,1.0,0.8666666666666668,0.9200000000000002,5,20 -banana,0.8666666666666668,0.85,0.85,0.8,1,26 -pitcher,0.44666666666666666,1.0,0.4499999999999999,0.6,1,26 -phone,0.75,1.0,0.7166666666666666,0.8,1,26 -stick,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -cereal,0.6799999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -bulb,0.9266666666666665,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.8766666666666666,1.0,0.75,0.8333333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -can,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -coca,0.6666666666666666,1.0,0.6499999999999999,0.75,1,26 -crackers,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -plate,0.8916666666666666,1.0,0.8333333333333333,0.8833333333333332,1,25 -calculator,0.26666666666666666,0.7,0.5166666666666666,0.5233333333333333,1,26 -tissues,0.5766666666666667,1.0,0.5166666666666666,0.65,1,26 -juice,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -pink,0.7933333333333333,1.0,0.7,0.7833333333333333,1,25 -lemon,0.8400000000000001,1.0,0.6833333333333333,0.7833333333333334,1,26 -peach,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.55,1.0,0.5333333333333332,0.6666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8016666666666665,1.0,0.7166666666666666,0.8,1,26 -blue,0.8233333333333335,1.0,0.7166666666666666,0.8,1,25 -used,0.515,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -ball,0.5016666666666667,1.0,0.4,0.5666666666666667,1,25 -notebook,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.875,1.0,0.8166666666666667,0.8666666666666666,1,26 -cleaning,0.755,1.0,0.7166666666666666,0.8,1,26 -pair,0.9099999999999999,1.0,0.8666666666666668,0.9200000000000002,2,27 -container,0.7333333333333333,1.0,0.6333333333333333,0.75,1,26 -tomato,0.7766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -cellphone,0.775,1.0,0.6333333333333333,0.75,1,26 -potato,0.605,1.0,0.5833333333333333,0.7,1,25 -light,0.8666666666666666,1.0,0.8333333333333334,0.9000000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.6426543209876543 -F1-Score: 0.6782407407407407 -Precision: 0.8964506172839506 -Recall: 0.5949074074074074 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5933333333333333,1.0,0.5833333333333333,0.7,1,24 -yellow,0.8983333333333334,1.0,0.7666666666666666,0.8466666666666667,6,24 -looks,0.7166666666666666,1.0,0.6333333333333332,0.7333333333333333,1,24 -keyboard,0.7416666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -glue,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -flashlight,0.82,1.0,0.7333333333333333,0.8166666666666667,1,26 -cup,0.13333333333333333,0.7,0.4166666666666667,0.47666666666666674,1,26 -folded,0.86,1.0,0.8333333333333333,0.8833333333333332,1,26 -jam,0.5166666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -black,0.9666666666666668,0.9,1.0,0.9333333333333332,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -soccer,0.5216666666666666,1.0,0.45,0.6,1,26 -hat,0.6583333333333333,1.0,0.6,0.7166666666666667,1,26 -brown,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coffee,0.5416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,25 -handle,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -food,0.6,1.0,0.6833333333333333,0.7666666666666666,1,24 -towel,0.58,1.0,0.5833333333333333,0.7,1,26 -chips,0.7166666666666667,1.0,0.7,0.7833333333333333,1,26 -stapler,0.705,1.0,0.5999999999999999,0.7166666666666666,1,26 -onion,0.585,1.0,0.5333333333333333,0.6666666666666667,1,26 -bag,0.6599999999999999,1.0,0.65,0.75,1,26 -sponge,0.5266666666666666,1.0,0.41666666666666663,0.5833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,25 -special,0.7383333333333333,1.0,0.6333333333333333,0.75,1,26 -colgate,0.8299999999999998,1.0,0.7333333333333333,0.8166666666666667,1,26 -leaf,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -tube,0.71,1.0,0.7,0.7833333333333333,1,26 -cell,0.5466666666666666,0.6,0.65,0.5566666666666668,1,26 -mug,0.6133333333333333,1.0,0.5166666666666666,0.65,1,25 -yogurt,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.8016666666666665,0.1,0.05,0.06666666666666667,3,27 -pepper,0.6166666666666666,1.0,0.5166666666666666,0.65,1,26 -wheat,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -kleenex,0.55,1.0,0.5166666666666666,0.65,1,26 -toothbrush,0.585,1.0,0.5333333333333333,0.6666666666666667,1,26 -binder,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -baseball,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -pliers,0.5183333333333333,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.63,1.0,0.6333333333333332,0.7333333333333333,1,26 -thins,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -package,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -k,0.78,1.0,0.7,0.7833333333333333,1,26 -jelly,0.6216666666666667,1.0,0.5166666666666666,0.65,1,26 -fruit,0.8816666666666666,0.85,0.9333333333333332,0.86,2,25 -apple,0.7433333333333334,0.9,0.6333333333333333,0.6833333333333333,1,25 -bell,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -battery,0.6133333333333333,1.0,0.6499999999999999,0.75,1,26 -jar,0.6,1.0,0.5833333333333333,0.7,1,26 -bound,0.7249999999999999,1.0,0.6833333333333332,0.7666666666666666,1,26 -lettuce,0.6083333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -brush,0.6833333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -scissors,0.5416666666666666,1.0,0.5,0.6333333333333333,1,26 -lime,0.5133333333333333,1.0,0.5166666666666666,0.65,1,25 -toothpaste,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -top,0.74,1.0,0.65,0.75,1,26 -spiral,0.6133333333333334,1.0,0.5499999999999999,0.6666666666666667,1,26 -handles,0.655,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.6566666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -eraser,0.63,1.0,0.65,0.75,1,26 -creamer,0,0,0,0,1,26 -white,0.95,1.0,0.9333333333333332,0.96,5,21 -banana,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -pitcher,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -phone,0.8966666666666667,1.0,0.8333333333333334,0.8833333333333332,1,26 -stick,0.5133333333333333,1.0,0.4666666666666666,0.6166666666666666,1,25 -cereal,0.6,1.0,0.6166666666666666,0.7166666666666666,1,26 -bulb,1.0,1.0,1.0,1.0,2,26 -hair,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6883333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -can,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.5499999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -crackers,0.7466666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -plate,0.71,1.0,0.6,0.7166666666666666,1,25 -calculator,0.5583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -tissues,0.5766666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -juice,0.75,1.0,0.7166666666666666,0.8,1,26 -pink,0.575,1.0,0.5166666666666666,0.65,1,25 -lemon,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -peach,0.58,1.0,0.4833333333333333,0.6333333333333334,1,26 -bowl,0.725,1.0,0.7,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7016666666666667,1.0,0.65,0.75,1,26 -blue,0.6833333333333333,1.0,0.7333333333333332,0.8,1,25 -used,0.4933333333333333,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.4916666666666666,1.0,0.5499999999999999,0.6666666666666667,1,26 -ball,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333334,1,25 -notebook,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -garlic,0.6466666666666667,1.0,0.55,0.6833333333333333,1,26 -cleaning,0.65,1.0,0.6166666666666666,0.7166666666666666,1,26 -pair,0.8666666666666668,1.0,0.8666666666666668,0.9200000000000002,2,27 -container,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -tomato,0.7,1.0,0.7499999999999999,0.8166666666666667,1,26 -cellphone,0.5233333333333333,0.7,0.6166666666666666,0.5833333333333333,1,26 -potato,0.7333333333333333,1.0,0.6833333333333333,0.7833333333333333,1,25 -light,0.8899999999999999,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.96,1.0,0.9333333333333332,0.96,2,27 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.6347993827160493 -F1-Score: 0.6758024691358024 -Precision: 0.8958333333333334 -Recall: 0.5924382716049382 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.725,1.0,0.6666666666666666,0.7666666666666667,1,24 -yellow,0.8383333333333333,0.75,0.85,0.7333333333333333,6,24 -looks,0.7216666666666667,0.9,0.6833333333333333,0.7166666666666667,1,24 -keyboard,0.5399999999999999,1.0,0.4499999999999999,0.6,1,26 -glue,0.5666666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.5633333333333332,1.0,0.4666666666666666,0.6166666666666667,1,26 -flashlight,0.635,1.0,0.5499999999999999,0.6833333333333333,1,26 -cup,0.30333333333333334,0.5,0.6333333333333333,0.5266666666666666,1,26 -folded,0.655,1.0,0.55,0.6833333333333333,1,26 -jam,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.8183333333333334,0.6333333333333333,1.0,0.7647619047619048,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6983333333333334,1.0,0.5333333333333333,0.6833333333333333,1,26 -soccer,0.5966666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -hat,0.8150000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -brown,0.8766666666666666,1.0,0.8333333333333333,0.9,2,24 -coffee,0.565,1.0,0.4499999999999999,0.6166666666666666,1,25 -handle,0.5333333333333333,1.0,0.5333333333333333,0.6666666666666666,1,25 -food,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -towel,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.7033333333333334,1.0,0.5666666666666667,0.7,1,26 -stapler,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -onion,0.6666666666666666,0.95,0.5499999999999999,0.65,1,26 -bag,0.6733333333333333,1.0,0.6,0.7166666666666667,1,26 -sponge,0.6799999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7133333333333333,1.0,0.6499999999999999,0.75,1,25 -special,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -colgate,0.5966666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -leaf,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -tube,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -cell,0.5883333333333333,0.5,0.6833333333333333,0.5566666666666666,1,26 -mug,0.7633333333333334,1.0,0.6833333333333333,0.7833333333333333,1,25 -yogurt,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -plantain,0.8133333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -red,0.7766666666666667,0.7,0.4333333333333333,0.5333333333333333,3,25 -pepper,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -wheat,0.6683333333333333,1.0,0.65,0.75,1,26 -kleenex,0.6933333333333334,1.0,0.7,0.7833333333333333,1,26 -toothbrush,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -binder,0.7483333333333333,1.0,0.6333333333333333,0.75,1,26 -baseball,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -pliers,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -thins,0.44666666666666666,1.0,0.4,0.5666666666666667,1,26 -package,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -k,0.51,1.0,0.4666666666666666,0.6166666666666667,1,26 -jelly,0.5733333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -fruit,0.865,0.85,0.9333333333333332,0.8733333333333334,2,26 -apple,0.6916666666666667,0.8,0.75,0.6833333333333333,1,25 -bell,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -battery,0.5883333333333334,1.0,0.5166666666666666,0.65,1,26 -jar,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -bound,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -brush,0.6966666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -scissors,0.4966666666666666,1.0,0.41666666666666663,0.5833333333333333,1,26 -lime,0.71,1.0,0.5499999999999999,0.6833333333333333,1,25 -toothpaste,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -top,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -spiral,0.65,1.0,0.65,0.75,1,26 -handles,0.64,1.0,0.5499999999999999,0.6833333333333333,1,25 -camera,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -eraser,0.6633333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.96,1.0,0.9333333333333332,0.96,5,21 -banana,0.8166666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -pitcher,0.8083333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -phone,0.5499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -stick,0.6749999999999999,1.0,0.5999999999999999,0.7166666666666667,1,25 -cereal,0.625,1.0,0.4666666666666666,0.6166666666666666,1,26 -bulb,0.7916666666666667,1.0,0.7666666666666667,0.8600000000000001,2,27 -hair,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6383333333333334,1.0,0.4999999999999999,0.65,1,26 -can,0.8300000000000001,1.0,0.8,0.8800000000000001,2,25 -coca,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -crackers,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -plate,0.8083333333333332,1.0,0.7833333333333333,0.85,1,25 -calculator,0.8933333333333332,1.0,0.8,0.8666666666666666,1,26 -tissues,0.76,1.0,0.6499999999999999,0.75,1,26 -juice,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -pink,0.6083333333333333,1.0,0.5,0.65,1,25 -lemon,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -peach,0.7016666666666667,1.0,0.6499999999999999,0.75,1,26 -bowl,0.675,1.0,0.5499999999999999,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -blue,0.5549999999999999,1.0,0.5833333333333333,0.7,1,25 -used,0.13833333333333334,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.735,1.0,0.6166666666666666,0.7333333333333334,1,26 -ball,0.6833333333333333,1.0,0.5166666666666666,0.6666666666666667,1,25 -notebook,0.755,1.0,0.7,0.7833333333333333,1,26 -garlic,0.75,1.0,0.7166666666666666,0.8,1,26 -cleaning,0.625,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.95,1.0,0.9333333333333332,0.96,2,26 -container,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,25 -tomato,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -cellphone,0.2666666666666667,0.65,0.4833333333333333,0.49333333333333335,1,26 -potato,0.5833333333333333,1.0,0.5166666666666666,0.65,1,25 -light,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.905,1.0,0.8666666666666666,0.9199999999999999,2,25 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.6397222222222223 -F1-Score: 0.6747354497354497 -Precision: 0.8910493827160494 -Recall: 0.5922839506172838 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.805,1.0,0.7666666666666666,0.8333333333333333,1,24 -yellow,0.8016666666666665,0.85,0.7,0.7233333333333334,6,24 -looks,0.5883333333333333,0.8,0.5999999999999999,0.6166666666666666,1,24 -keyboard,0.6666666666666666,1.0,0.6666666666666666,0.75,1,26 -glue,0.635,1.0,0.5499999999999999,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.8166666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -flashlight,0.6166666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -cup,0.19333333333333333,0.5,0.5166666666666666,0.4833333333333334,1,26 -folded,0.8,1.0,0.7999999999999999,0.85,1,26 -jam,0.7633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -black,0.8,0.55,1.0,0.7066666666666668,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -soccer,0.6666666666666667,1.0,0.6666666666666666,0.75,1,26 -hat,0.7916666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -brown,0.825,1.0,0.8,0.8800000000000001,2,25 -coffee,0.585,1.0,0.5833333333333333,0.7,1,25 -handle,0.5633333333333332,1.0,0.4666666666666666,0.6166666666666666,1,25 -food,0.6966666666666665,1.0,0.7,0.7833333333333333,1,25 -towel,0.575,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -stapler,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.5599999999999999,0.65,0.5999999999999999,0.5633333333333332,1,26 -bag,0.6216666666666667,1.0,0.5166666666666666,0.65,1,26 -sponge,0.6233333333333333,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666666,1,25 -special,0.775,1.0,0.6499999999999999,0.75,1,26 -colgate,0.615,1.0,0.4833333333333333,0.6333333333333333,1,26 -leaf,0.46333333333333326,1.0,0.4666666666666666,0.6166666666666667,1,26 -tube,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -cell,0.7433333333333333,1.0,0.6499999999999999,0.75,1,26 -mug,0.6833333333333333,1.0,0.5833333333333333,0.7,1,25 -yogurt,0.5549999999999999,1.0,0.4166666666666667,0.5833333333333333,1,26 -plantain,0.7,1.0,0.6833333333333333,0.7666666666666666,1,26 -red,0.79,0.7,0.45,0.5466666666666667,3,27 -pepper,0.44666666666666666,1.0,0.4499999999999999,0.6,1,26 -wheat,0.7466666666666666,1.0,0.6499999999999999,0.75,1,26 -kleenex,0.61,1.0,0.5166666666666666,0.65,1,26 -toothbrush,0.6900000000000001,1.0,0.6499999999999999,0.75,1,26 -binder,0.3,1.0,0.38333333333333336,0.55,1,26 -baseball,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.7316666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -thins,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -package,0.6766666666666666,1.0,0.4666666666666666,0.6333333333333333,1,26 -k,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -fruit,0.5766666666666665,0.6166666666666667,0.8333333333333333,0.6900000000000001,2,25 -apple,0.5549999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -bell,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.6766666666666665,1.0,0.5833333333333333,0.7,1,26 -jar,0.5466666666666666,1.0,0.4333333333333333,0.6,1,26 -bound,0.7066666666666667,1.0,0.5666666666666667,0.7,1,26 -lettuce,0.5716666666666667,1.0,0.4999999999999999,0.65,1,26 -brush,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -scissors,0.8333333333333333,1.0,0.8333333333333333,0.8833333333333332,1,26 -lime,0.6716666666666666,1.0,0.6,0.7166666666666667,1,25 -toothpaste,0.6816666666666666,1.0,0.6,0.7166666666666666,1,26 -top,0.5966666666666667,1.0,0.6166666666666666,0.7166666666666667,1,26 -spiral,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -handles,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -camera,0.5933333333333334,1.0,0.5833333333333333,0.7,1,26 -eraser,0.7916666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.9083333333333334,1.0,0.8333333333333333,0.9,5,21 -banana,0.4916666666666667,1.0,0.5,0.6333333333333333,1,26 -pitcher,0.7433333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -phone,0.7150000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -stick,0.63,1.0,0.65,0.75,1,25 -cereal,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -bulb,0.9550000000000001,1.0,0.9333333333333332,0.96,2,27 -hair,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.51,1.0,0.45,0.6,1,26 -can,0.95,1.0,0.9333333333333332,0.96,2,25 -coca,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -crackers,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666666,1,26 -plate,0.5666666666666667,1.0,0.4666666666666666,0.6166666666666667,1,25 -calculator,0.6833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -tissues,0.5983333333333334,1.0,0.4833333333333333,0.6333333333333334,1,26 -juice,0.6466666666666667,1.0,0.6499999999999999,0.75,1,26 -pink,0.655,1.0,0.6499999999999999,0.75,1,25 -lemon,0.5166666666666666,1.0,0.5333333333333333,0.65,1,26 -peach,0.7416666666666667,1.0,0.7,0.7833333333333333,1,26 -bowl,0.74,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -blue,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -used,0.5283333333333333,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6966666666666667,1.0,0.65,0.75,1,26 -ball,0.8266666666666668,1.0,0.7333333333333333,0.8166666666666667,1,25 -notebook,0.6133333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -garlic,0.58,1.0,0.4666666666666666,0.6166666666666667,1,26 -cleaning,0.6549999999999999,1.0,0.5666666666666667,0.7,1,26 -pair,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.605,1.0,0.4833333333333334,0.6333333333333333,1,26 -tomato,0.6749999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -cellphone,0.725,1.0,0.6666666666666666,0.7666666666666666,1,26 -potato,0.655,1.0,0.5833333333333333,0.7,1,25 -light,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9550000000000001,1.0,0.9333333333333332,0.96,2,27 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.6335802469135802 -F1-Score: 0.6695987654320988 -Precision: 0.8950617283950616 -Recall: 0.5831790123456789 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.6916666666666667,1.0,0.7,0.7833333333333333,1,24 -yellow,0.86,0.95,0.7666666666666667,0.82,6,26 -looks,0.7666666666666667,0.75,0.7833333333333333,0.7,1,24 -keyboard,0.8716666666666667,1.0,0.75,0.8333333333333334,1,26 -glue,0.75,1.0,0.7,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.735,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.75,1.0,0.7,0.7833333333333333,1,26 -cup,0.15666666666666668,0.5,0.5666666666666667,0.5,1,26 -folded,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -jam,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -black,0.93,0.8333333333333333,1.0,0.8933333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6233333333333333,1.0,0.5166666666666666,0.65,1,26 -soccer,0.5933333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -hat,0.6516666666666666,1.0,0.5,0.65,1,26 -brown,0.9133333333333333,1.0,0.9,0.9400000000000001,2,25 -coffee,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -handle,0.8166666666666668,1.0,0.6833333333333333,0.7833333333333333,1,25 -food,0.605,1.0,0.5166666666666666,0.65,1,26 -towel,0.6883333333333332,1.0,0.65,0.75,1,26 -chips,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -stapler,0.6683333333333332,1.0,0.55,0.6833333333333333,1,26 -onion,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -bag,0.58,1.0,0.4499999999999999,0.6,1,26 -sponge,0.73,1.0,0.7,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -special,0.5583333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -colgate,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -leaf,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -tube,0.7133333333333333,1.0,0.5666666666666667,0.7,1,26 -cell,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -mug,0.8066666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -yogurt,0.6216666666666667,1.0,0.5,0.65,1,26 -plantain,0.725,1.0,0.6166666666666666,0.7333333333333334,1,26 -red,0.7816666666666667,0.5,0.2833333333333333,0.36,3,26 -pepper,0.655,1.0,0.5166666666666666,0.65,1,26 -wheat,0.6066666666666667,1.0,0.5166666666666666,0.65,1,26 -kleenex,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -toothbrush,0.7133333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -binder,0.8066666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -baseball,0.6966666666666667,1.0,0.7,0.7833333333333333,1,26 -pliers,0.58,1.0,0.5333333333333333,0.6666666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.755,1.0,0.6833333333333333,0.7833333333333333,1,26 -thins,0.635,1.0,0.5833333333333333,0.7,1,26 -package,0.6883333333333332,1.0,0.5833333333333333,0.7,1,26 -k,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.71,1.0,0.5499999999999999,0.6833333333333333,1,26 -fruit,0.705,0.5833333333333333,0.9333333333333332,0.6866666666666668,2,26 -apple,0.755,1.0,0.7166666666666666,0.8,1,25 -bell,0.6133333333333333,1.0,0.5,0.65,1,26 -battery,0.735,1.0,0.5999999999999999,0.7166666666666667,1,26 -jar,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -bound,0.8,1.0,0.7499999999999999,0.8166666666666667,1,26 -lettuce,0.8416666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -brush,0.45499999999999996,1.0,0.45,0.6,1,26 -scissors,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -lime,0.6133333333333334,1.0,0.5499999999999999,0.6833333333333333,1,25 -toothpaste,0.6683333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -top,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -spiral,0.6466666666666667,1.0,0.55,0.6833333333333333,1,26 -handles,0.6616666666666667,1.0,0.5666666666666667,0.7,1,25 -camera,0.8133333333333332,1.0,0.65,0.7666666666666667,1,26 -eraser,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.9433333333333334,1.0,0.9,0.9400000000000001,5,23 -banana,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -pitcher,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -phone,0.71,1.0,0.5999999999999999,0.7166666666666667,1,26 -stick,0.5166666666666667,1.0,0.45,0.6,1,25 -cereal,0.5549999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -bulb,0.835,1.0,0.8,0.8800000000000001,2,27 -hair,0.6633333333333333,1.0,0.6,0.7166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.705,1.0,0.6,0.7166666666666667,1,26 -can,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -coca,0.5,1.0,0.4999999999999999,0.6333333333333333,1,26 -crackers,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -plate,0.6466666666666667,1.0,0.55,0.6833333333333333,1,25 -calculator,0.5266666666666666,0.9,0.5666666666666667,0.6166666666666666,1,26 -tissues,0.6833333333333333,1.0,0.65,0.75,1,26 -juice,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -pink,0.4333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,25 -lemon,0.7666666666666667,1.0,0.7,0.7833333333333333,1,26 -peach,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -bowl,0.5716666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.75,1.0,0.65,0.75,1,26 -blue,0.6133333333333333,1.0,0.6,0.7166666666666667,1,25 -used,0.3666666666666667,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.5883333333333333,1.0,0.4999999999999999,0.65,1,26 -ball,0.7733333333333332,1.0,0.7166666666666666,0.8,1,25 -notebook,0.5666666666666667,1.0,0.5833333333333333,0.7,1,26 -garlic,0.7433333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -cleaning,0.7266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -pair,0.8683333333333332,1.0,0.8333333333333333,0.9,2,26 -container,0.85,1.0,0.7833333333333333,0.85,1,25 -tomato,0.8016666666666665,1.0,0.6666666666666666,0.7666666666666667,1,26 -cellphone,0.725,1.0,0.7,0.7833333333333333,1,26 -potato,0.6066666666666667,1.0,0.5333333333333332,0.6666666666666666,1,25 -light,0.8666666666666668,1.0,0.8666666666666668,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8766666666666666,1.0,0.8333333333333333,0.9,2,26 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.652469135802469 -F1-Score: 0.6808641975308645 -Precision: 0.8983024691358025 -Recall: 0.5962962962962962 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7083333333333333,1.0,0.7,0.7833333333333333,1,25 -yellow,0.8083333333333333,0.8,0.75,0.7233333333333334,6,24 -looks,0.5766666666666667,0.9,0.5666666666666667,0.65,1,24 -keyboard,0.73,1.0,0.7,0.7833333333333333,1,26 -glue,0.4416666666666666,1.0,0.41666666666666663,0.5666666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -cup,0.2033333333333333,0.5,0.4499999999999999,0.4566666666666667,1,26 -folded,0.615,1.0,0.4666666666666666,0.6166666666666666,1,26 -jam,0.73,1.0,0.65,0.75,1,26 -black,0.9633333333333333,0.9,1.0,0.9333333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6566666666666666,1.0,0.55,0.6833333333333333,1,26 -soccer,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -hat,0.46333333333333326,1.0,0.4499999999999999,0.6,1,26 -brown,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,24 -coffee,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -handle,0.7683333333333333,1.0,0.7166666666666666,0.8,1,25 -food,0.7583333333333333,1.0,0.7166666666666666,0.8,1,25 -towel,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -chips,0.7833333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -stapler,0.6216666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -onion,0.78,1.0,0.7,0.7833333333333333,1,26 -bag,0.79,1.0,0.6833333333333333,0.7833333333333333,1,26 -sponge,0.71,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.6883333333333332,1.0,0.65,0.75,1,25 -special,0.65,1.0,0.5833333333333333,0.7,1,26 -colgate,0.5349999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -leaf,0.7633333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -tube,0.5083333333333334,1.0,0.5833333333333333,0.7,1,26 -cell,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -mug,0.8066666666666666,1.0,0.7166666666666666,0.8,1,26 -yogurt,0.705,1.0,0.65,0.75,1,26 -plantain,0.725,1.0,0.6666666666666666,0.7666666666666666,1,26 -red,0.7933333333333333,0.8,0.4833333333333333,0.6,3,25 -pepper,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -wheat,0.7466666666666667,1.0,0.75,0.8166666666666667,1,26 -kleenex,0.8166666666666667,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.58,1.0,0.5333333333333333,0.6666666666666667,1,26 -binder,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -baseball,0.7383333333333333,1.0,0.6,0.7166666666666667,1,26 -pliers,0.6616666666666666,1.0,0.55,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -thins,0.705,1.0,0.5499999999999999,0.6833333333333333,1,26 -package,0.7416666666666666,1.0,0.75,0.8166666666666667,1,26 -k,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -jelly,0.5516666666666666,1.0,0.5,0.65,1,26 -fruit,0.7566666666666667,0.6333333333333333,0.9333333333333332,0.7033333333333334,2,25 -apple,0.5700000000000001,0.85,0.55,0.6166666666666667,1,25 -bell,0.7733333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -battery,0.6833333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -jar,0.4683333333333334,1.0,0.41666666666666663,0.5833333333333333,1,26 -bound,0.5266666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -lettuce,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -brush,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.7816666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -lime,0.625,1.0,0.5666666666666667,0.6833333333333333,1,25 -toothpaste,0.5216666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -top,0.7100000000000001,1.0,0.65,0.75,1,26 -spiral,0.705,1.0,0.7,0.7833333333333333,1,26 -handles,0.63,1.0,0.6333333333333333,0.7333333333333333,1,25 -camera,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -eraser,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.9183333333333333,1.0,0.8666666666666668,0.9200000000000002,5,22 -banana,0.575,1.0,0.6166666666666666,0.7166666666666666,1,26 -pitcher,0.6599999999999999,1.0,0.5,0.65,1,26 -phone,0.7899999999999999,1.0,0.6333333333333333,0.75,1,26 -stick,0.6883333333333334,1.0,0.6166666666666666,0.7333333333333333,1,25 -cereal,0.6566666666666666,1.0,0.4833333333333332,0.6333333333333333,1,26 -bulb,1.0,1.0,1.0,1.0,2,27 -hair,0.4833333333333333,1.0,0.5999999999999999,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -coca,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -crackers,0.7333333333333333,1.0,0.6666666666666666,0.75,1,26 -plate,0.46333333333333326,1.0,0.4666666666666666,0.6166666666666666,1,25 -calculator,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -tissues,0.6933333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -juice,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -pink,0.8866666666666667,1.0,0.75,0.8333333333333333,1,25 -lemon,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -peach,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -bowl,0.8266666666666665,1.0,0.7833333333333333,0.85,1,26 -camouflage,0,0,0,0,1,26 -digital,0.585,1.0,0.5833333333333333,0.7,1,26 -blue,0.7383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,25 -used,0.30500000000000005,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6799999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -ball,0.4749999999999999,1.0,0.5499999999999999,0.6666666666666666,1,25 -notebook,0.6466666666666667,1.0,0.6,0.7166666666666667,1,26 -garlic,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -cleaning,0.7883333333333333,1.0,0.6333333333333333,0.75,1,26 -pair,0.8466666666666667,1.0,0.8,0.8800000000000001,2,27 -container,0.6633333333333333,1.0,0.6499999999999999,0.75,1,25 -tomato,0.3833333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -cellphone,0.805,1.0,0.6333333333333333,0.75,1,26 -potato,0.7,1.0,0.7,0.7833333333333333,1,25 -light,0.915,1.0,0.8666666666666666,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8816666666666666,1.0,0.8333333333333334,0.9000000000000001,2,27 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.6467592592592594 -F1-Score: 0.6853395061728397 -Precision: 0.9016975308641975 -Recall: 0.6006172839506172 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.75,1.0,0.7166666666666666,0.8,1,25 -yellow,0.8600000000000001,1.0,0.6833333333333333,0.7933333333333333,6,24 -looks,0.8166666666666667,1.0,0.6833333333333333,0.7833333333333333,1,24 -keyboard,0.71,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.9466666666666667,1.0,0.9,0.9333333333333332,1,26 -milk,0,0,0,0,1,26 -cola,0.7616666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -flashlight,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -cup,0.39333333333333337,0.5,0.6166666666666666,0.5166666666666667,1,26 -folded,0.605,1.0,0.4833333333333333,0.6333333333333333,1,26 -jam,0.5883333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -black,1.0,1.0,1.0,1.0,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -soccer,0.4666666666666666,1.0,0.4333333333333333,0.5833333333333333,1,26 -hat,0.705,1.0,0.65,0.75,1,26 -brown,0.9349999999999999,1.0,0.9,0.9400000000000001,2,24 -coffee,0.6933333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -handle,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -food,0.5,1.0,0.4833333333333332,0.6166666666666666,1,25 -towel,0.7966666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -chips,0.8766666666666666,1.0,0.75,0.8333333333333333,1,26 -stapler,0.755,1.0,0.6499999999999999,0.75,1,26 -onion,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -bag,0.6849999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -sponge,0.6833333333333333,1.0,0.6666666666666666,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.7166666666666667,1.0,0.6333333333333333,0.75,1,25 -special,0.45,1.0,0.4666666666666666,0.6166666666666667,1,26 -colgate,0.7133333333333333,1.0,0.6499999999999999,0.75,1,26 -leaf,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -tube,0.6499999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -cell,0.4766666666666667,0.65,0.5333333333333333,0.5366666666666667,1,26 -mug,0.725,1.0,0.5666666666666667,0.7,1,26 -yogurt,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -plantain,0.705,1.0,0.6499999999999999,0.75,1,26 -red,0.8150000000000001,0.6,0.36666666666666664,0.4533333333333333,3,24 -pepper,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -wheat,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.4766666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -toothbrush,0.6,1.0,0.5833333333333333,0.7,1,26 -binder,0.5333333333333333,1.0,0.41666666666666663,0.5833333333333334,1,26 -baseball,0.5599999999999999,1.0,0.45,0.6,1,26 -pliers,0.6683333333333333,1.0,0.6499999999999999,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6216666666666667,1.0,0.5166666666666666,0.65,1,26 -thins,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -package,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.6799999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -jelly,0.75,1.0,0.7166666666666666,0.8,1,26 -fruit,0.8383333333333333,0.9166666666666666,0.8333333333333333,0.8466666666666667,2,25 -apple,0.5983333333333334,0.55,0.7499999999999999,0.5800000000000001,1,25 -bell,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -battery,0.655,1.0,0.55,0.6833333333333333,1,26 -jar,0.5633333333333332,1.0,0.4666666666666666,0.6166666666666667,1,26 -bound,0.73,1.0,0.7499999999999999,0.8166666666666667,1,26 -lettuce,0.7350000000000001,1.0,0.6,0.7166666666666667,1,26 -brush,0.6466666666666667,1.0,0.6,0.7166666666666666,1,26 -scissors,0.59,1.0,0.4499999999999999,0.6,1,26 -lime,0.7383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -toothpaste,0.7133333333333333,1.0,0.6,0.7166666666666667,1,26 -top,0.575,1.0,0.5333333333333332,0.6666666666666666,1,26 -spiral,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -handles,0.6416666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -camera,0.5633333333333332,1.0,0.5333333333333332,0.6666666666666666,1,26 -eraser,0.44333333333333336,1.0,0.4333333333333333,0.5833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,0.8983333333333334,1.0,0.8333333333333333,0.9,5,21 -banana,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.7416666666666666,1.0,0.7,0.7833333333333333,1,26 -phone,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -stick,0.55,1.0,0.6166666666666666,0.7166666666666666,1,25 -cereal,0.7666666666666666,1.0,0.75,0.8166666666666667,1,26 -bulb,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,27 -hair,0.6166666666666666,1.0,0.6666666666666666,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.74,1.0,0.6499999999999999,0.75,1,26 -can,0.86,1.0,0.8333333333333333,0.9,2,25 -coca,0.585,1.0,0.5833333333333333,0.7,1,26 -crackers,0.6900000000000001,1.0,0.5666666666666667,0.7,1,26 -plate,0.73,1.0,0.7166666666666666,0.8,1,25 -calculator,0.6916666666666667,0.95,0.7166666666666666,0.7666666666666666,1,26 -tissues,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -juice,0.5966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -pink,0.6183333333333333,1.0,0.5833333333333333,0.7,1,25 -lemon,0.58,1.0,0.4666666666666666,0.6166666666666667,1,26 -peach,0.6933333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -bowl,0.6066666666666667,1.0,0.5166666666666666,0.65,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6333333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -blue,0.6266666666666667,1.0,0.5333333333333332,0.6666666666666666,1,25 -used,0.034999999999999996,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.5133333333333334,1.0,0.6166666666666666,0.7166666666666667,1,26 -ball,0.8166666666666667,1.0,0.7833333333333333,0.85,1,25 -notebook,0.5133333333333334,1.0,0.4666666666666666,0.6166666666666667,1,26 -garlic,0.775,1.0,0.6666666666666666,0.7666666666666667,1,26 -cleaning,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -pair,0.8683333333333334,1.0,0.8333333333333334,0.9000000000000001,2,26 -container,0.7916666666666666,1.0,0.7,0.7833333333333333,1,25 -tomato,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -cellphone,0.5166666666666666,0.75,0.5499999999999999,0.5733333333333334,1,26 -potato,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.6365123456790124 -F1-Score: 0.6774999999999999 -Precision: 0.8973765432098765 -Recall: 0.5918209876543209 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7166666666666666,1.0,0.5999999999999999,0.7166666666666667,1,24 -yellow,0.8466666666666667,0.9,0.7666666666666667,0.7866666666666666,6,23 -looks,0.655,0.95,0.5333333333333333,0.6333333333333333,1,24 -keyboard,0.7216666666666667,1.0,0.65,0.75,1,26 -glue,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -flashlight,0.885,1.0,0.7833333333333333,0.85,1,26 -cup,0.075,0.5,0.4999999999999999,0.47333333333333333,1,26 -folded,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -black,0.8433333333333334,0.6166666666666666,1.0,0.7466666666666667,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.5666666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -soccer,0.6166666666666666,1.0,0.65,0.75,1,26 -hat,0.44666666666666666,1.0,0.45,0.6,1,26 -brown,0.9349999999999999,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.655,1.0,0.6499999999999999,0.75,1,25 -handle,0.5883333333333333,1.0,0.5833333333333333,0.7,1,25 -food,0.4716666666666667,1.0,0.4666666666666666,0.6166666666666666,1,25 -towel,0.615,1.0,0.55,0.6833333333333333,1,26 -chips,0.7466666666666667,1.0,0.6499999999999999,0.75,1,26 -stapler,0.525,1.0,0.5,0.65,1,26 -onion,0.55,1.0,0.4833333333333333,0.6166666666666667,1,26 -bag,0.4133333333333334,1.0,0.4333333333333334,0.5833333333333333,1,26 -sponge,0.4883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.5633333333333332,1.0,0.5833333333333333,0.7,1,25 -special,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -colgate,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -leaf,0.705,1.0,0.65,0.75,1,26 -tube,0.8233333333333335,1.0,0.7166666666666666,0.8,1,26 -cell,0.335,0.55,0.4833333333333333,0.4866666666666667,1,26 -mug,0.6166666666666666,1.0,0.5333333333333333,0.6666666666666666,1,25 -yogurt,0.655,1.0,0.5166666666666666,0.65,1,26 -plantain,0.5633333333333332,1.0,0.4999999999999999,0.6333333333333333,1,26 -red,0.8066666666666666,0.7,0.3833333333333333,0.49333333333333335,3,24 -pepper,0.6399999999999999,1.0,0.4999999999999999,0.65,1,26 -wheat,0.4216666666666667,1.0,0.5166666666666666,0.65,1,26 -kleenex,0.7699999999999999,1.0,0.6333333333333333,0.75,1,26 -toothbrush,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -binder,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -baseball,0.58,1.0,0.5833333333333333,0.7,1,26 -pliers,0.8416666666666666,1.0,0.8333333333333333,0.8833333333333332,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6733333333333333,1.0,0.5833333333333333,0.7,1,26 -thins,0.4716666666666667,1.0,0.41666666666666663,0.5833333333333334,1,26 -package,0.5633333333333332,1.0,0.4666666666666666,0.6166666666666666,1,26 -k,0.7549999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -fruit,0.7233333333333334,0.75,0.8,0.7333333333333333,2,25 -apple,0.6566666666666666,0.7,0.7,0.6166666666666667,1,25 -bell,0.6333333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -battery,0.53,1.0,0.5166666666666666,0.65,1,26 -jar,0.6266666666666667,1.0,0.6333333333333332,0.7333333333333333,1,26 -bound,0.5549999999999999,1.0,0.4666666666666666,0.6166666666666666,1,26 -lettuce,0.5166666666666666,1.0,0.5,0.6333333333333333,1,26 -brush,0.7749999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -scissors,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -lime,0.605,1.0,0.5333333333333333,0.6666666666666666,1,25 -toothpaste,0.61,1.0,0.5333333333333333,0.6666666666666667,1,26 -top,0.7333333333333333,1.0,0.7,0.7833333333333333,1,26 -spiral,0.6333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -handles,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,25 -camera,0.45499999999999996,1.0,0.5166666666666666,0.65,1,26 -eraser,0.7633333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -creamer,0,0,0,0,1,26 -white,0.9133333333333334,1.0,0.8666666666666668,0.9200000000000002,5,20 -banana,0.43,1.0,0.4999999999999999,0.6333333333333333,1,26 -pitcher,0.4133333333333333,1.0,0.4,0.5666666666666667,1,26 -phone,0.7916666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -stick,0.6216666666666667,1.0,0.5999999999999999,0.7166666666666666,1,25 -cereal,0.4083333333333333,1.0,0.4,0.5666666666666667,1,26 -bulb,0.8683333333333334,1.0,0.8333333333333333,0.9,2,26 -hair,0.6416666666666666,1.0,0.5666666666666667,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -can,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.6466666666666667,1.0,0.5833333333333333,0.7,1,26 -crackers,0.7366666666666666,1.0,0.5666666666666667,0.7,1,26 -plate,0.7416666666666666,1.0,0.7,0.7833333333333333,1,25 -calculator,0.7616666666666667,0.95,0.5833333333333333,0.6833333333333333,1,26 -tissues,0.73,1.0,0.6499999999999999,0.75,1,26 -juice,0.7849999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -pink,0.6633333333333333,1.0,0.6,0.7166666666666667,1,25 -lemon,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -peach,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -bowl,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -blue,0.7933333333333333,1.0,0.7166666666666666,0.8,1,25 -used,0.6116666666666666,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -ball,0.6383333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -notebook,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -garlic,0.7016666666666667,1.0,0.6,0.7166666666666667,1,26 -cleaning,0.45499999999999996,1.0,0.45,0.6,1,26 -pair,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -container,0.58,1.0,0.5666666666666667,0.6833333333333333,1,25 -tomato,0.6933333333333332,1.0,0.6166666666666666,0.7333333333333333,1,26 -cellphone,0.38333333333333336,0.55,0.5166666666666666,0.49333333333333335,1,26 -potato,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -light,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.96,1.0,0.9333333333333332,0.96,2,25 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.6188425925925926 -F1-Score: 0.6625925925925925 -Precision: 0.8904320987654322 -Recall: 0.5757716049382715 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.7466666666666666,1.0,0.7666666666666666,0.8333333333333333,1,24 -yellow,0.8,0.8,0.75,0.7066666666666667,6,24 -looks,0.5383333333333333,0.9,0.5,0.5666666666666667,1,24 -keyboard,0.58,1.0,0.5166666666666666,0.65,1,26 -glue,0.6383333333333333,1.0,0.6,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.6883333333333332,1.0,0.6666666666666666,0.7666666666666666,1,26 -flashlight,0.6666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -cup,0.6649999999999999,0.5,0.8,0.6,1,26 -folded,0.625,1.0,0.5999999999999999,0.7166666666666667,1,26 -jam,0.6833333333333333,1.0,0.6666666666666666,0.75,1,26 -black,0.8133333333333335,0.6333333333333333,1.0,0.7666666666666668,6,22 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.675,1.0,0.6499999999999999,0.75,1,26 -soccer,0.65,1.0,0.6,0.7166666666666667,1,26 -hat,0.7999999999999999,1.0,0.7166666666666666,0.8,1,26 -brown,0.9349999999999999,1.0,0.9,0.9400000000000001,2,25 -coffee,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -handle,0.7133333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -food,0.7433333333333333,1.0,0.7,0.7833333333333333,1,24 -towel,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -chips,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -stapler,0.7383333333333333,1.0,0.6,0.7166666666666667,1,26 -onion,0.605,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.6683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.615,1.0,0.5499999999999999,0.6833333333333333,1,25 -special,0.5466666666666666,1.0,0.4333333333333333,0.5833333333333333,1,26 -colgate,0.6166666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -leaf,0.7133333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -tube,0.6599999999999999,1.0,0.5833333333333333,0.7,1,26 -cell,0.5083333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -mug,0.5549999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -yogurt,0.5516666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -plantain,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -red,0.7916666666666666,0.7,0.3833333333333333,0.49333333333333335,3,26 -pepper,0.6133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -wheat,0.73,1.0,0.6666666666666666,0.7666666666666666,1,26 -kleenex,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -toothbrush,0.7416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -binder,0.6416666666666666,1.0,0.5833333333333333,0.7,1,26 -baseball,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -pliers,0.4083333333333333,1.0,0.4333333333333333,0.5833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -thins,0.6266666666666667,1.0,0.5,0.65,1,26 -package,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -k,0.7633333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.7083333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -fruit,0.6966666666666665,0.4833333333333334,0.9666666666666666,0.6266666666666667,2,25 -apple,0.7416666666666666,0.8,0.6833333333333333,0.6833333333333333,1,25 -bell,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -battery,0.605,1.0,0.55,0.6833333333333333,1,26 -jar,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -bound,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -lettuce,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.7633333333333334,1.0,0.6333333333333333,0.75,1,26 -scissors,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -lime,0.4666666666666666,1.0,0.45,0.6,1,25 -toothpaste,0.7416666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -top,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -spiral,0.6416666666666666,1.0,0.55,0.6833333333333333,1,26 -handles,0.7499999999999999,1.0,0.6666666666666666,0.7666666666666666,1,25 -camera,0.6016666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -eraser,0.635,1.0,0.4999999999999999,0.65,1,26 -creamer,0,0,0,0,1,26 -white,0.9583333333333334,1.0,0.9333333333333332,0.96,5,21 -banana,0.6,1.0,0.5666666666666667,0.6833333333333333,1,26 -pitcher,0.8333333333333333,1.0,0.8166666666666667,0.8666666666666668,1,26 -phone,0.5333333333333333,1.0,0.6,0.7,1,26 -stick,0.7016666666666667,1.0,0.65,0.75,1,25 -cereal,0.625,1.0,0.5166666666666666,0.65,1,26 -bulb,0.9016666666666666,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.6666666666666666,1.0,0.65,0.75,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -can,0.9333333333333332,1.0,0.9333333333333332,0.96,2,25 -coca,0.7416666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -crackers,0.7466666666666667,1.0,0.6499999999999999,0.75,1,26 -plate,0.8100000000000002,1.0,0.65,0.7666666666666667,1,25 -calculator,0.6216666666666667,1.0,0.55,0.6833333333333333,1,26 -tissues,0.6583333333333333,1.0,0.5666666666666667,0.7,1,26 -juice,0.725,1.0,0.75,0.8166666666666667,1,26 -pink,0.7416666666666666,1.0,0.7166666666666666,0.8,1,25 -lemon,0.6883333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -peach,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -bowl,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5916666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -blue,0.7766666666666666,1.0,0.7166666666666666,0.8,1,25 -used,0.3433333333333334,0.0,0.0,0.0,1,23 -energizer,0,0,0,0,1,26 -pear,0.7283333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -ball,0.5666666666666667,1.0,0.5166666666666666,0.65,1,25 -notebook,0.85,1.0,0.75,0.8333333333333333,1,26 -garlic,0.7583333333333333,1.0,0.75,0.8166666666666667,1,26 -cleaning,0.72,1.0,0.6,0.7166666666666667,1,26 -pair,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,27 -container,0.6583333333333334,1.0,0.6,0.7166666666666667,1,25 -tomato,0.7833333333333333,1.0,0.7,0.7833333333333333,1,26 -cellphone,0.735,1.0,0.5999999999999999,0.7166666666666666,1,26 -potato,0.7066666666666668,1.0,0.55,0.6833333333333333,1,26 -light,0.8233333333333335,1.0,0.7666666666666666,0.8600000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9333333333333332,1.0,0.9333333333333332,0.96,2,27 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.6486265432098764 -F1-Score: 0.6798456790123458 -Precision: 0.8964506172839506 -Recall: 0.5992283950617283 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.8083333333333332,1.0,0.75,0.8166666666666667,1,25 -yellow,0.8633333333333335,1.0,0.7,0.8066666666666666,6,24 -looks,0.7166666666666667,1.0,0.5333333333333333,0.6833333333333333,1,24 -keyboard,0.8166666666666667,1.0,0.7166666666666666,0.8,1,26 -glue,0.6466666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6633333333333333,1.0,0.6,0.7166666666666667,1,26 -flashlight,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.5549999999999999,0.5,0.7333333333333333,0.5733333333333334,1,26 -folded,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -jam,0.6483333333333333,1.0,0.5,0.65,1,26 -black,0.9833333333333334,0.9666666666666666,1.0,0.9800000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.8150000000000001,1.0,0.6833333333333333,0.7833333333333334,1,26 -soccer,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -hat,0.5966666666666667,1.0,0.5166666666666666,0.65,1,26 -brown,0.93,1.0,0.9,0.9400000000000001,2,25 -coffee,0.355,1.0,0.45,0.6,1,26 -handle,0.5716666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -food,0.5549999999999999,1.0,0.4833333333333333,0.6333333333333333,1,25 -towel,0.5966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.4766666666666667,1.0,0.4499999999999999,0.6,1,26 -stapler,0.7849999999999999,1.0,0.6333333333333333,0.75,1,26 -onion,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.635,1.0,0.6,0.7166666666666666,1,26 -sponge,0.7016666666666667,1.0,0.65,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.625,1.0,0.5666666666666667,0.6833333333333333,1,25 -special,0.8333333333333333,1.0,0.8666666666666666,0.9,1,26 -colgate,0.805,1.0,0.6833333333333333,0.7833333333333334,1,26 -leaf,0.5516666666666666,1.0,0.5166666666666666,0.65,1,26 -tube,0.5766666666666667,1.0,0.5166666666666666,0.65,1,26 -cell,0.5733333333333333,0.5,0.7333333333333333,0.5733333333333334,1,26 -mug,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -yogurt,0.53,1.0,0.4666666666666666,0.6166666666666666,1,26 -plantain,0.6833333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -red,0.7916666666666666,0.8,0.4333333333333333,0.56,3,27 -pepper,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -wheat,0.42666666666666664,1.0,0.4333333333333333,0.5833333333333333,1,26 -kleenex,0.875,1.0,0.8,0.8666666666666668,1,26 -toothbrush,0.76,1.0,0.6333333333333333,0.75,1,26 -binder,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -baseball,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7133333333333334,1.0,0.5666666666666667,0.7,1,26 -thins,0.505,1.0,0.4499999999999999,0.6,1,26 -package,0.635,1.0,0.4833333333333333,0.6333333333333334,1,26 -k,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.61,1.0,0.4999999999999999,0.6333333333333333,1,26 -fruit,0.8333333333333334,0.7,0.9666666666666666,0.7866666666666667,2,25 -apple,0.6766666666666667,0.95,0.5999999999999999,0.6833333333333333,1,25 -bell,0.6883333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -battery,0.5733333333333334,1.0,0.4333333333333334,0.6,1,26 -jar,0.63,1.0,0.6,0.7166666666666666,1,26 -bound,0.68,1.0,0.65,0.75,1,26 -lettuce,0.65,1.0,0.6166666666666666,0.7166666666666667,1,26 -brush,0.5916666666666666,1.0,0.6,0.7166666666666667,1,26 -scissors,0.4916666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -lime,0.8083333333333332,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.7433333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -top,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -spiral,0.5333333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -handles,0.805,1.0,0.7,0.7833333333333333,1,25 -camera,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -eraser,0.7416666666666666,1.0,0.7166666666666666,0.8,1,26 -creamer,0,0,0,0,1,26 -white,0.9016666666666667,1.0,0.8333333333333334,0.9000000000000001,5,21 -banana,0.5933333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -pitcher,0.76,1.0,0.7666666666666666,0.8333333333333333,1,26 -phone,0.505,1.0,0.4499999999999999,0.6,1,26 -stick,0.8633333333333333,1.0,0.7833333333333333,0.85,1,25 -cereal,0.975,1.0,0.95,0.9666666666666666,1,26 -bulb,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.7100000000000001,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5583333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -can,0.9466666666666667,1.0,0.9333333333333332,0.96,2,25 -coca,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -crackers,0.8183333333333334,1.0,0.7166666666666666,0.8,1,26 -plate,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -calculator,0.5516666666666667,0.65,0.6833333333333333,0.5800000000000001,1,26 -tissues,0.65,1.0,0.6833333333333333,0.7666666666666666,1,26 -juice,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -pink,0.55,1.0,0.5499999999999999,0.6833333333333333,1,25 -lemon,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -peach,0.4749999999999999,1.0,0.4833333333333332,0.6166666666666666,1,26 -bowl,0.655,1.0,0.6499999999999999,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -blue,0.6483333333333333,1.0,0.6,0.7166666666666667,1,25 -used,0.4,0.0,0.0,0.0,1,24 -energizer,0,0,0,0,1,26 -pear,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -ball,0.6666666666666666,1.0,0.5999999999999999,0.7,1,25 -notebook,0.7350000000000001,1.0,0.6,0.7166666666666667,1,26 -garlic,0.53,1.0,0.4333333333333333,0.5833333333333333,1,26 -cleaning,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -pair,0.9100000000000001,1.0,0.8666666666666666,0.9200000000000002,2,26 -container,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -tomato,0.5799999999999998,1.0,0.6333333333333333,0.7333333333333333,1,26 -cellphone,0.30166666666666664,0.55,0.4166666666666667,0.4600000000000001,1,26 -potato,0.7,1.0,0.6666666666666666,0.75,1,25 -light,1.0,1.0,1.0,1.0,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8916666666666666,1.0,0.8666666666666668,0.9200000000000002,2,25 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.6350462962962964 -F1-Score: 0.6729938271604938 -Precision: 0.8945987654320988 -Recall: 0.5895061728395061 diff --git a/Validation/all_0.5_output.csv b/Validation/all_0.5_output.csv deleted file mode 100644 index 4362a1a..0000000 --- a/Validation/all_0.5_output.csv +++ /dev/null @@ -1,2 +0,0 @@ -Recall ,Precision,F1 -0.609,0.903,0.698 \ No newline at end of file diff --git a/Validation/all_0.5_output.txt b/Validation/all_0.5_output.txt deleted file mode 100644 index 474b116..0000000 --- a/Validation/all_0.5_output.txt +++ /dev/null @@ -1,2701 +0,0 @@ -token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -ceramic,0.5983333333333334,1.0,0.5,0.65,1,25 -yellow,0.9500000000000002,0.8999999999999998,1.0,0.9400000000000001,6,25 -looks,0.6266666666666667,0.8,0.6,0.6333333333333333,1,24 -keyboard,0.8583333333333332,1.0,0.7833333333333333,0.85,1,26 -glue,0.6583333333333333,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.825,1.0,0.7,0.8,1,26 -flashlight,0.675,1.0,0.7,0.7833333333333333,1,26 -cup,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -folded,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -jam,0.6849999999999999,1.0,0.6,0.7166666666666667,1,26 -black,0.9100000000000001,0.7833333333333333,1.0,0.86,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6966666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -soccer,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -hat,0.8099999999999999,1.0,0.65,0.7666666666666667,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.6416666666666667,1.0,0.55,0.6833333333333333,1,25 -handle,0.7166666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -food,0.5683333333333334,1.0,0.5166666666666666,0.65,1,26 -towel,0.5883333333333334,1.0,0.6,0.7166666666666667,1,26 -chips,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -stapler,0.5083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -onion,0.7666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -bag,0.7083333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -sponge,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.5466666666666666,1.0,0.5499999999999999,0.6666666666666666,1,25 -special,0.7416666666666667,1.0,0.65,0.75,1,26 -colgate,0.4333333333333334,1.0,0.5999999999999999,0.7,1,26 -leaf,0.73,1.0,0.7166666666666666,0.8,1,26 -tube,0.5466666666666666,1.0,0.5833333333333333,0.7,1,26 -cell,0.6083333333333334,0.5,0.75,0.5700000000000001,1,26 -mug,0.655,1.0,0.5833333333333333,0.7,1,25 -yogurt,0.705,1.0,0.65,0.75,1,26 -plantain,0.6333333333333333,0.9,0.5999999999999999,0.65,1,26 -red,0.9066666666666668,0.7666666666666667,1.0,0.8466666666666667,3,27 -pepper,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -wheat,0.5716666666666665,1.0,0.5166666666666666,0.65,1,26 -kleenex,0.8233333333333335,1.0,0.6833333333333333,0.7833333333333333,1,26 -toothbrush,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -binder,0.5933333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.655,1.0,0.5833333333333333,0.7,1,26 -pliers,0.6333333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.735,1.0,0.65,0.75,1,26 -thins,0.6433333333333333,1.0,0.5,0.65,1,26 -package,0.76,1.0,0.6499999999999999,0.75,1,26 -k,0.43499999999999994,1.0,0.4,0.5666666666666667,1,26 -jelly,0.6466666666666666,1.0,0.6499999999999999,0.75,1,26 -fruit,0.76,0.7333333333333334,0.8666666666666668,0.7666666666666667,2,25 -apple,0.6283333333333333,0.75,0.7,0.6333333333333333,1,26 -bell,0.5183333333333333,1.0,0.45,0.6,1,26 -battery,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -jar,0.6833333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -bound,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -lettuce,0.5766666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -brush,0.5383333333333333,1.0,0.4666666666666666,0.6166666666666666,1,26 -scissors,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -lime,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -toothpaste,0.755,1.0,0.7166666666666666,0.8,1,26 -top,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -spiral,0.7183333333333334,1.0,0.65,0.75,1,26 -handles,0.8150000000000001,1.0,0.6833333333333333,0.7833333333333333,1,25 -camera,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.7133333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5433333333333333,0.95,0.4666666666666666,0.5833333333333333,1,26 -pitcher,0.575,1.0,0.6166666666666666,0.7166666666666666,1,26 -phone,0.6799999999999999,1.0,0.5166666666666666,0.65,1,26 -stick,0.71,1.0,0.7,0.7833333333333333,1,25 -cereal,0.6816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -bulb,0.8933333333333333,1.0,0.8666666666666666,0.9199999999999999,2,27 -hair,0.6033333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -can,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.5466666666666666,1.0,0.5,0.6333333333333333,1,26 -crackers,0.73,1.0,0.6333333333333333,0.7333333333333333,1,26 -plate,0.6683333333333333,1.0,0.5833333333333333,0.7,1,24 -calculator,0.6633333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -tissues,0.805,1.0,0.65,0.7666666666666667,1,26 -juice,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -pink,0.7016666666666667,1.0,0.5833333333333333,0.7,1,25 -lemon,0.38,1.0,0.4833333333333332,0.6166666666666666,1,26 -peach,0.5266666666666666,1.0,0.5833333333333333,0.7,1,26 -bowl,0.45,1.0,0.5,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6766666666666666,1.0,0.5666666666666667,0.7,1,26 -blue,0.5083333333333333,1.0,0.5,0.6333333333333333,1,25 -used,0.7466666666666667,1.0,0.7,0.7833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -ball,0.5066666666666666,1.0,0.4666666666666666,0.6166666666666667,1,25 -notebook,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -garlic,0.75,1.0,0.8,0.85,1,26 -cleaning,0.7416666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -pair,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -container,0.6666666666666666,1.0,0.7,0.7833333333333333,1,26 -tomato,0.4866666666666667,0.65,0.6333333333333333,0.5566666666666666,1,26 -cellphone,0.38666666666666666,0.5,0.6,0.52,1,26 -potato,0.6833333333333333,1.0,0.6333333333333332,0.7333333333333333,1,25 -light,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.9099999999999999,1.0,0.8666666666666666,0.9200000000000002,2,27 -ceramic,0.7716666666666667,1.0,0.6499999999999999,0.75,1,24 -yellow,0.9466666666666667,0.8833333333333332,1.0,0.9266666666666665,6,24 -looks,0.6183333333333334,0.9,0.5333333333333333,0.6,1,24 -keyboard,0.51,1.0,0.5166666666666666,0.65,1,26 -glue,0.7466666666666666,1.0,0.7,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.76,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -cup,0.5866666666666667,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.775,1.0,0.7333333333333333,0.8166666666666667,1,26 -jam,0.5333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -black,0.9066666666666668,0.75,1.0,0.8333333333333334,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.5216666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -soccer,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -hat,0.5966666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -brown,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -coffee,0.7083333333333333,1.0,0.7,0.7833333333333333,1,25 -handle,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -food,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,24 -towel,0.605,1.0,0.5833333333333333,0.7,1,26 -chips,0.6183333333333334,1.0,0.5,0.65,1,26 -stapler,0.7166666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -onion,0.7183333333333333,1.0,0.5666666666666667,0.7,1,26 -bag,0.65,1.0,0.5999999999999999,0.7166666666666666,1,26 -sponge,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6249999999999999,1.0,0.6333333333333333,0.7333333333333333,1,25 -special,0.5683333333333332,1.0,0.4833333333333333,0.6333333333333334,1,26 -colgate,0.6900000000000001,1.0,0.65,0.75,1,26 -leaf,0.8099999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -tube,0.6533333333333333,1.0,0.6,0.7166666666666667,1,26 -cell,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -mug,0.6716666666666666,1.0,0.6,0.7166666666666667,1,25 -yogurt,0.755,1.0,0.7166666666666666,0.8,1,26 -plantain,0.5266666666666666,0.95,0.4999999999999999,0.6,1,26 -red,0.8600000000000001,0.725,1.0,0.8238095238095238,3,24 -pepper,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -wheat,0.5933333333333334,1.0,0.4333333333333333,0.6,1,26 -kleenex,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -toothbrush,0.8,1.0,0.7,0.7833333333333333,1,26 -binder,0.5266666666666666,1.0,0.5833333333333333,0.7,1,26 -baseball,0.755,1.0,0.7166666666666666,0.8,1,26 -pliers,0.7516666666666667,1.0,0.65,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.76,1.0,0.7166666666666666,0.8,1,26 -thins,0.7133333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -package,0.585,1.0,0.5,0.65,1,26 -k,0.5083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -jelly,0.5966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -fruit,0.6799999999999999,0.65,0.9,0.73,2,25 -apple,0.45999999999999996,0.95,0.41666666666666663,0.5666666666666667,1,25 -bell,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -battery,0.7983333333333333,1.0,0.6333333333333333,0.75,1,26 -jar,0.7166666666666666,1.0,0.6666666666666666,0.75,1,26 -bound,0.5383333333333333,1.0,0.45,0.6,1,26 -lettuce,0.7133333333333333,1.0,0.5666666666666667,0.7,1,26 -brush,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -scissors,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -lime,0.7433333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -toothpaste,0.9016666666666666,1.0,0.8,0.8666666666666666,1,26 -top,0.5466666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -spiral,0.5766666666666667,1.0,0.5,0.65,1,26 -handles,0.6316666666666666,1.0,0.5166666666666666,0.6666666666666667,1,25 -camera,0.6799999999999999,1.0,0.6499999999999999,0.75,1,26 -eraser,0.85,1.0,0.6833333333333333,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,19 -banana,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -pitcher,0.6333333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -phone,0.6499999999999999,1.0,0.5833333333333333,0.7,1,26 -stick,0.7483333333333333,1.0,0.5666666666666667,0.7,1,25 -cereal,0.5566666666666666,1.0,0.45,0.6,1,26 -bulb,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,26 -hair,0.775,1.0,0.6666666666666666,0.7666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.89,1.0,0.75,0.8333333333333334,1,26 -can,0.9066666666666668,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.6566666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -crackers,0.7183333333333334,1.0,0.6499999999999999,0.75,1,26 -plate,0.71,1.0,0.5999999999999999,0.7166666666666667,1,25 -calculator,0.5766666666666667,0.9,0.5666666666666667,0.6166666666666667,1,26 -tissues,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -juice,0.655,1.0,0.6166666666666666,0.7333333333333333,1,26 -pink,0.85,1.0,0.75,0.8333333333333333,1,25 -lemon,0.8300000000000001,1.0,0.7,0.8,1,26 -peach,0.71,1.0,0.5999999999999999,0.7166666666666667,1,26 -bowl,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5833333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -blue,0.5549999999999999,1.0,0.4499999999999999,0.6,1,25 -used,0.705,1.0,0.5999999999999999,0.7166666666666667,1,23 -energizer,0,0,0,0,1,26 -pear,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -ball,0.805,1.0,0.7666666666666666,0.8333333333333333,1,25 -notebook,0.58,1.0,0.4833333333333332,0.6333333333333333,1,26 -garlic,0.725,1.0,0.6666666666666666,0.7666666666666666,1,26 -cleaning,0.4749999999999999,1.0,0.4833333333333332,0.6166666666666666,1,26 -pair,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -container,0.605,1.0,0.5833333333333333,0.7,1,25 -tomato,0.6933333333333332,0.65,0.7666666666666666,0.6333333333333333,1,26 -cellphone,0.7233333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -potato,0.63,1.0,0.55,0.6833333333333333,1,25 -light,0.8916666666666666,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -ceramic,0.6133333333333333,1.0,0.5833333333333333,0.7,1,25 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.7383333333333334,1.0,0.6666666666666666,0.7666666666666667,1,24 -keyboard,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -glue,0.6133333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.8666666666666668,1.0,0.8333333333333333,0.8833333333333332,1,26 -flashlight,0.7483333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -cup,0.5816666666666667,0.55,0.7666666666666666,0.5900000000000001,1,26 -folded,0.5,1.0,0.5499999999999999,0.6666666666666667,1,26 -jam,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -black,0.9183333333333333,0.8333333333333333,1.0,0.8933333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6916666666666667,1.0,0.5833333333333333,0.7,1,26 -soccer,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -hat,0.6583333333333333,1.0,0.6499999999999999,0.75,1,26 -brown,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -handle,0.5183333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -food,0.7766666666666666,1.0,0.7166666666666666,0.8,1,24 -towel,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -chips,0.7916666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.53,1.0,0.5166666666666666,0.65,1,26 -onion,0.73,1.0,0.65,0.75,1,26 -bag,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -sponge,0.73,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.7616666666666666,1.0,0.5833333333333333,0.7166666666666667,1,25 -special,0.7166666666666666,1.0,0.7333333333333333,0.8,1,26 -colgate,0.5333333333333333,1.0,0.55,0.6666666666666667,1,26 -leaf,0.7849999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -tube,0.725,1.0,0.7499999999999999,0.8166666666666667,1,26 -cell,0.6799999999999999,0.6,0.7333333333333333,0.6066666666666667,1,26 -mug,0.7433333333333334,1.0,0.5666666666666667,0.7,1,26 -yogurt,0.6266666666666667,1.0,0.5166666666666666,0.65,1,26 -plantain,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -red,1.0,1.0,1.0,1.0,3,24 -pepper,0.73,1.0,0.7,0.7833333333333334,1,26 -wheat,0.5466666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -kleenex,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -toothbrush,0.6783333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -binder,0.7583333333333333,1.0,0.6333333333333333,0.75,1,26 -baseball,0.5166666666666666,1.0,0.5166666666666666,0.65,1,26 -pliers,0.525,1.0,0.4666666666666666,0.6166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6166666666666666,1.0,0.5833333333333333,0.7,1,26 -thins,0.6716666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -package,0.755,1.0,0.7166666666666666,0.8,1,26 -k,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -jelly,0.7183333333333333,1.0,0.5666666666666667,0.7,1,26 -fruit,0.8800000000000001,0.75,0.9666666666666666,0.8133333333333332,2,25 -apple,0.71,1.0,0.6499999999999999,0.75,1,25 -bell,0.55,1.0,0.5333333333333333,0.6666666666666667,1,26 -battery,0.5966666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -jar,0.5666666666666667,1.0,0.5166666666666666,0.65,1,26 -bound,0.6966666666666665,1.0,0.6499999999999999,0.75,1,26 -lettuce,0.705,1.0,0.5999999999999999,0.7166666666666666,1,26 -brush,0.55,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.505,1.0,0.45,0.6,1,26 -lime,0.6183333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -toothpaste,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -top,0.705,1.0,0.5833333333333333,0.7166666666666667,1,26 -spiral,0.82,1.0,0.6833333333333333,0.7833333333333334,1,26 -handles,0.5349999999999999,1.0,0.4666666666666666,0.6166666666666666,1,25 -camera,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -eraser,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.8150000000000001,0.6083333333333334,1.0,0.7523809523809524,5,21 -banana,0.6416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -pitcher,0.655,1.0,0.6499999999999999,0.75,1,26 -phone,0.5133333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -stick,0.7166666666666666,1.0,0.75,0.8166666666666667,1,25 -cereal,0.44666666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -bulb,0.875,1.0,0.8333333333333333,0.9,2,27 -hair,0.7966666666666666,1.0,0.7,0.7833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333334,1,26 -can,0.8749999999999998,1.0,0.8666666666666666,0.9200000000000002,2,24 -coca,0.6766666666666666,1.0,0.5666666666666667,0.7,1,26 -crackers,0.5466666666666666,1.0,0.5833333333333333,0.7,1,26 -plate,0.5633333333333334,1.0,0.6166666666666666,0.7166666666666667,1,25 -calculator,0.5466666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -tissues,0.5416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -juice,0.4,0.5,0.5333333333333333,0.49333333333333335,1,26 -pink,0.74,1.0,0.6166666666666666,0.7333333333333333,1,25 -lemon,0.7133333333333333,1.0,0.65,0.75,1,26 -peach,0.6216666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -bowl,0.6683333333333332,1.0,0.65,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6666666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -blue,0.6316666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -used,0.7416666666666666,1.0,0.65,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.655,1.0,0.5833333333333333,0.7,1,26 -ball,0.7933333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.6683333333333333,1.0,0.55,0.6833333333333333,1,26 -garlic,0.7100000000000001,1.0,0.6166666666666666,0.7333333333333334,1,26 -cleaning,0.8416666666666666,1.0,0.8166666666666667,0.8666666666666666,1,26 -pair,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -container,0.5633333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -tomato,0.7166666666666667,1.0,0.65,0.75,1,26 -cellphone,0.5,0.6,0.5999999999999999,0.5466666666666666,1,26 -potato,0.6833333333333333,1.0,0.6166666666666666,0.7333333333333334,1,25 -light,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,1.0,1.0,1.0,1.0,2,26 -ceramic,0.5349999999999999,1.0,0.4666666666666666,0.6166666666666666,1,24 -yellow,1.0,1.0,1.0,1.0,6,26 -looks,0.675,1.0,0.65,0.75,1,24 -keyboard,0.5633333333333332,1.0,0.4666666666666666,0.6166666666666667,1,26 -glue,0.6266666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.7666666666666666,1.0,0.7166666666666666,0.8,1,26 -flashlight,0.6749999999999999,1.0,0.6833333333333333,0.7666666666666666,1,26 -cup,0.2733333333333333,0.5,0.55,0.5033333333333333,1,26 -folded,0.7483333333333333,1.0,0.6,0.7166666666666667,1,26 -jam,0.6933333333333332,1.0,0.7,0.7833333333333333,1,26 -black,0.93,0.8166666666666667,1.0,0.8800000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,27 -folder,0.7833333333333334,1.0,0.6833333333333333,0.7833333333333334,1,26 -soccer,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -hat,0.6950000000000001,1.0,0.5666666666666667,0.7,1,26 -brown,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,26 -coffee,0.705,1.0,0.6166666666666666,0.7333333333333333,1,25 -handle,0.6416666666666666,1.0,0.7,0.7833333333333333,1,26 -food,0.7433333333333333,1.0,0.65,0.75,1,25 -towel,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.63,1.0,0.6833333333333333,0.7666666666666666,1,26 -stapler,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -onion,0.53,1.0,0.4333333333333333,0.5833333333333334,1,26 -bag,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.7383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.74,1.0,0.7166666666666666,0.8,1,26 -special,0.6316666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -colgate,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.755,1.0,0.6333333333333333,0.7333333333333333,1,26 -tube,0.3466666666666666,1.0,0.38333333333333336,0.55,1,26 -cell,0.76,1.0,0.7666666666666666,0.8333333333333333,1,26 -mug,0.6666666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -yogurt,0.69,1.0,0.55,0.6833333333333333,1,26 -plantain,0.66,1.0,0.5,0.65,1,26 -red,0.8266666666666665,0.6833333333333333,1.0,0.8028571428571428,3,24 -pepper,0.5833333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -wheat,0.7499999999999999,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.7933333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -toothbrush,0.6233333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -binder,0.7166666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -baseball,0.7466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -pliers,0.78,1.0,0.6333333333333333,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.5183333333333333,1.0,0.5166666666666666,0.65,1,26 -thins,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -package,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -k,0.73,1.0,0.7,0.7833333333333333,1,26 -jelly,0.5349999999999999,1.0,0.5166666666666666,0.65,1,26 -fruit,0.6983333333333333,0.6666666666666667,0.8333333333333333,0.72,2,26 -apple,0.7033333333333334,0.7,0.7166666666666666,0.6166666666666667,1,25 -bell,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -battery,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -jar,0.725,1.0,0.7,0.7833333333333333,1,26 -bound,0.6883333333333334,1.0,0.5666666666666667,0.7,1,26 -lettuce,0.7016666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -brush,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -scissors,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -lime,0.7333333333333333,1.0,0.6499999999999999,0.75,1,25 -toothpaste,0.7483333333333333,1.0,0.6333333333333333,0.75,1,26 -top,0.7233333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -spiral,0.5633333333333332,1.0,0.5833333333333333,0.7,1,26 -handles,0.5883333333333333,1.0,0.5166666666666666,0.65,1,25 -camera,0.9416666666666667,1.0,0.9,0.9333333333333332,1,26 -eraser,0.655,1.0,0.6166666666666666,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7216666666666667,1.0,0.65,0.75,1,26 -pitcher,0.5416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -phone,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -stick,0.7383333333333333,1.0,0.6499999999999999,0.75,1,25 -cereal,0.475,1.0,0.4999999999999999,0.6333333333333333,1,26 -bulb,0.96,1.0,0.9333333333333332,0.96,2,27 -hair,0.7383333333333334,1.0,0.6666666666666666,0.7666666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7466666666666667,1.0,0.65,0.75,1,26 -can,0.9016666666666667,1.0,0.8666666666666668,0.9200000000000002,2,25 -coca,0.4033333333333333,1.0,0.4,0.5666666666666667,1,26 -crackers,0.675,1.0,0.6666666666666666,0.7666666666666666,1,26 -plate,0.7883333333333333,1.0,0.7166666666666666,0.8,1,25 -calculator,0.6816666666666666,0.8,0.65,0.6166666666666667,1,26 -tissues,0.7433333333333334,1.0,0.5666666666666667,0.7,1,26 -juice,0.675,1.0,0.65,0.75,1,26 -pink,0.73,1.0,0.7,0.7833333333333333,1,25 -lemon,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -peach,0.53,1.0,0.5499999999999999,0.6666666666666666,1,26 -bowl,0.73,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8166666666666667,1.0,0.7166666666666666,0.8,1,26 -blue,0.65,1.0,0.55,0.6833333333333333,1,25 -used,0.4583333333333333,1.0,0.4,0.5666666666666667,1,23 -energizer,0,0,0,0,1,26 -pear,0.7383333333333334,1.0,0.7,0.7833333333333333,1,26 -ball,0.63,1.0,0.5333333333333333,0.6666666666666667,1,25 -notebook,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -garlic,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -pair,0.8550000000000001,1.0,0.8333333333333333,0.9,2,27 -container,0.6683333333333333,1.0,0.5833333333333333,0.7,1,26 -tomato,0.5133333333333333,0.7,0.5833333333333333,0.5566666666666668,1,26 -cellphone,0.655,1.0,0.5166666666666666,0.65,1,26 -potato,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -light,0.9550000000000001,1.0,0.9333333333333332,0.96,2,27 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -ceramic,0.5133333333333333,1.0,0.4833333333333333,0.6166666666666667,1,25 -yellow,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,6,24 -looks,0.6883333333333332,0.85,0.65,0.65,1,24 -keyboard,0.6433333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -glue,0.7,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -flashlight,0.7466666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -cup,0.39666666666666667,0.5,0.5499999999999999,0.5033333333333334,1,26 -folded,0.65,1.0,0.5833333333333333,0.7,1,26 -jam,0.8133333333333332,1.0,0.7833333333333333,0.85,1,26 -black,0.95,0.8666666666666666,1.0,0.9133333333333333,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.5566666666666666,1.0,0.5166666666666666,0.65,1,26 -soccer,0.6416666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -hat,0.85,1.0,0.6833333333333333,0.7833333333333333,1,26 -brown,0.8966666666666667,1.0,0.8666666666666666,0.9200000000000002,2,24 -coffee,0.5083333333333333,1.0,0.5166666666666666,0.65,1,26 -handle,0.7183333333333333,1.0,0.5999999999999999,0.7166666666666667,1,25 -food,0.6083333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -towel,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -chips,0.6416666666666667,1.0,0.5833333333333333,0.7,1,26 -stapler,0.7766666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -onion,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -bag,0.47166666666666657,1.0,0.4,0.5666666666666667,1,26 -sponge,0.6083333333333333,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.575,1.0,0.4833333333333333,0.6333333333333333,1,26 -special,0.725,1.0,0.7,0.7833333333333333,1,26 -colgate,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -leaf,0.4666666666666666,1.0,0.4,0.5666666666666667,1,26 -tube,0.6216666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -cell,0.7549999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -mug,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -yogurt,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -plantain,0.6933333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -red,0.8933333333333333,0.7916666666666666,1.0,0.8657142857142857,3,24 -pepper,0.5166666666666666,1.0,0.6,0.7,1,26 -wheat,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.655,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.655,1.0,0.65,0.75,1,26 -binder,0.7016666666666667,1.0,0.5666666666666667,0.7,1,26 -baseball,0.7916666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -pliers,0.8399999999999999,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6483333333333333,1.0,0.4333333333333333,0.6,1,26 -thins,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -package,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.8099999999999999,1.0,0.7,0.7833333333333333,1,26 -jelly,0.605,1.0,0.4833333333333333,0.6333333333333333,1,26 -fruit,0.8333333333333333,0.7166666666666667,0.9666666666666666,0.8033333333333333,2,25 -apple,0.5966666666666667,0.8,0.6333333333333333,0.6333333333333333,1,25 -bell,0.6266666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -battery,0.5966666666666667,1.0,0.5166666666666666,0.65,1,26 -jar,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -bound,0.725,1.0,0.65,0.75,1,26 -lettuce,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -brush,0.44833333333333336,0.5,0.55,0.5033333333333334,1,26 -scissors,0.7416666666666666,1.0,0.6499999999999999,0.75,1,26 -lime,0.6633333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -toothpaste,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -top,0.6966666666666665,1.0,0.5999999999999999,0.7166666666666667,1,26 -spiral,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -handles,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333333,1,25 -camera,0.75,1.0,0.6666666666666666,0.7666666666666666,1,26 -eraser,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7,1.0,0.6499999999999999,0.75,1,26 -pitcher,0.8433333333333334,1.0,0.7,0.8,1,26 -phone,0.5766666666666667,1.0,0.5166666666666666,0.65,1,26 -stick,0.4966666666666667,1.0,0.4666666666666666,0.6166666666666667,1,25 -cereal,0.7183333333333334,1.0,0.6,0.7166666666666667,1,26 -bulb,0.8966666666666667,1.0,0.8666666666666668,0.9200000000000002,2,27 -hair,0.6883333333333332,1.0,0.7,0.7833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6066666666666667,1.0,0.5166666666666666,0.65,1,26 -can,0.8933333333333333,1.0,0.8666666666666666,0.9200000000000002,2,26 -coca,0.4666666666666667,1.0,0.5,0.6333333333333333,1,26 -crackers,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -plate,0.5083333333333333,1.0,0.4833333333333332,0.6166666666666666,1,25 -calculator,0.6166666666666667,0.65,0.7166666666666666,0.6066666666666667,1,26 -tissues,0.7316666666666667,1.0,0.5666666666666667,0.7,1,26 -juice,0.7716666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -pink,0.6833333333333333,1.0,0.6499999999999999,0.75,1,25 -lemon,0.73,1.0,0.7,0.7833333333333333,1,26 -peach,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -bowl,0.705,1.0,0.6,0.7166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6133333333333334,1.0,0.65,0.75,1,26 -blue,0.8516666666666666,1.0,0.7,0.8,1,25 -used,0.7133333333333333,1.0,0.65,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.6483333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -ball,0.8,1.0,0.7999999999999999,0.85,1,25 -notebook,0.7383333333333333,1.0,0.6,0.7166666666666667,1,26 -garlic,0.5216666666666667,1.0,0.5,0.6333333333333333,1,26 -cleaning,0.78,1.0,0.6499999999999999,0.75,1,26 -pair,0.95,1.0,0.9333333333333332,0.96,2,27 -container,0.7183333333333334,1.0,0.6,0.7166666666666667,1,26 -tomato,0.6950000000000001,0.7,0.7833333333333333,0.65,1,26 -cellphone,0.8916666666666668,1.0,0.8333333333333333,0.8833333333333332,1,26 -potato,0.6599999999999999,1.0,0.6499999999999999,0.75,1,25 -light,0.9333333333333332,1.0,0.9333333333333332,0.9600000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.95,1.0,0.9333333333333332,0.9600000000000002,2,26 -ceramic,0.6933333333333334,1.0,0.5833333333333333,0.7,1,25 -yellow,0.95,0.8666666666666666,1.0,0.9133333333333333,6,24 -looks,0.5333333333333333,1.0,0.4833333333333333,0.6333333333333333,1,24 -keyboard,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333334,1,26 -glue,0.6166666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -flashlight,0.655,1.0,0.5333333333333333,0.6666666666666667,1,26 -cup,0.5549999999999999,0.5,0.6166666666666666,0.53,1,26 -folded,0.6599999999999999,1.0,0.6499999999999999,0.75,1,26 -jam,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -black,0.93,0.8416666666666666,1.0,0.8990476190476191,6,20 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7516666666666667,1.0,0.6499999999999999,0.75,1,26 -soccer,0.5666666666666667,1.0,0.5,0.65,1,26 -hat,0.725,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.9349999999999999,1.0,0.9,0.9400000000000001,2,25 -coffee,0.905,1.0,0.8333333333333333,0.8833333333333332,1,26 -handle,0.5216666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -food,0.7249999999999999,1.0,0.6166666666666666,0.7333333333333333,1,26 -towel,0.6066666666666667,1.0,0.5166666666666666,0.65,1,26 -chips,0.5599999999999999,1.0,0.4333333333333333,0.6,1,26 -stapler,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -onion,0.7,1.0,0.7333333333333333,0.8,1,26 -bag,0.76,1.0,0.65,0.75,1,26 -sponge,0.6683333333333332,1.0,0.6,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -special,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -colgate,0.5716666666666665,1.0,0.4999999999999999,0.6333333333333333,1,26 -leaf,0.8233333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -tube,0.4416666666666666,1.0,0.4833333333333333,0.6166666666666666,1,26 -cell,0.755,1.0,0.5833333333333333,0.7166666666666667,1,26 -mug,0.765,1.0,0.6166666666666666,0.7333333333333334,1,26 -yogurt,0.4916666666666666,1.0,0.4333333333333334,0.5833333333333333,1,26 -plantain,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -red,0.9633333333333333,0.9166666666666666,1.0,0.9466666666666667,3,25 -pepper,0.85,1.0,0.7833333333333333,0.85,1,26 -wheat,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.5,1.0,0.5166666666666666,0.65,1,26 -toothbrush,0.6883333333333334,1.0,0.65,0.75,1,26 -binder,0.655,1.0,0.5499999999999999,0.6833333333333333,1,26 -baseball,0.5766666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -pliers,0.6916666666666667,1.0,0.65,0.75,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.6799999999999999,1.0,0.5833333333333333,0.7,1,26 -package,0.6666666666666666,1.0,0.65,0.75,1,26 -k,0.7633333333333333,1.0,0.65,0.75,1,26 -jelly,0.6066666666666667,1.0,0.6,0.7166666666666667,1,26 -fruit,0.65,0.5833333333333333,0.8666666666666666,0.66,2,25 -apple,0.5266666666666666,1.0,0.4666666666666666,0.6166666666666666,1,25 -bell,0.4083333333333333,1.0,0.38333333333333336,0.55,1,26 -battery,0.6100000000000001,1.0,0.5166666666666666,0.6666666666666667,1,26 -jar,0.7233333333333333,1.0,0.5833333333333333,0.7,1,26 -bound,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -lettuce,0.825,1.0,0.7333333333333333,0.8166666666666667,1,26 -brush,0.71,1.0,0.6,0.7166666666666666,1,26 -scissors,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -lime,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666667,1,25 -toothpaste,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -top,0.6683333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -spiral,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -handles,0.7933333333333333,1.0,0.6333333333333333,0.75,1,25 -camera,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -eraser,0.7466666666666666,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.74,1.0,0.5999999999999999,0.7166666666666667,1,26 -pitcher,0.5599999999999999,1.0,0.45,0.6166666666666667,1,26 -phone,0.39666666666666667,1.0,0.4333333333333333,0.5833333333333333,1,26 -stick,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -cereal,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -bulb,0.8666666666666666,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.7733333333333332,1.0,0.7166666666666666,0.8,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6766666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -can,0.93,1.0,0.8999999999999998,0.9400000000000001,2,24 -coca,0.4966666666666667,1.0,0.5166666666666666,0.65,1,26 -crackers,0.7316666666666667,1.0,0.5666666666666667,0.7,1,26 -plate,0.4966666666666667,1.0,0.4833333333333332,0.6333333333333333,1,25 -calculator,0.5166666666666666,0.5,0.7,0.5533333333333333,1,26 -tissues,0.7166666666666666,1.0,0.6,0.7166666666666667,1,26 -juice,0.6566666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -pink,0.7183333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -lemon,0.5333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -peach,0.53,1.0,0.4,0.5666666666666667,1,26 -bowl,0.7249999999999999,1.0,0.7,0.7833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -blue,0.625,1.0,0.4833333333333333,0.6333333333333334,1,25 -used,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6216666666666666,1.0,0.4999999999999999,0.65,1,26 -ball,0.655,1.0,0.5333333333333333,0.6666666666666667,1,25 -notebook,0.685,1.0,0.6,0.7166666666666667,1,26 -garlic,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -cleaning,0.6216666666666666,1.0,0.5166666666666666,0.65,1,26 -pair,0.9133333333333333,1.0,0.9,0.9400000000000001,2,27 -container,0.5883333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -tomato,0.6233333333333333,0.75,0.5666666666666667,0.5833333333333333,1,26 -cellphone,0.605,1.0,0.5833333333333333,0.7,1,26 -potato,0.6166666666666666,1.0,0.6666666666666666,0.75,1,25 -light,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9466666666666667,1.0,0.9333333333333332,0.96,2,26 -ceramic,0.8,1.0,0.8166666666666667,0.8666666666666668,1,25 -yellow,0.8716666666666667,0.7166666666666666,1.0,0.818095238095238,6,24 -looks,0.5233333333333332,0.8,0.5,0.5833333333333333,1,24 -keyboard,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.6666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -flashlight,0.7549999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.34500000000000003,0.5,0.6333333333333332,0.5266666666666667,1,26 -folded,0.58,1.0,0.5833333333333333,0.7,1,26 -jam,0.775,1.0,0.6666666666666666,0.7666666666666666,1,26 -black,0.9133333333333334,0.7833333333333333,1.0,0.86,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.7833333333333333,1.0,0.8,0.85,1,26 -soccer,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -hat,0.6933333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -brown,0.95,1.0,0.9333333333333332,0.96,2,25 -coffee,0.625,1.0,0.5833333333333333,0.7,1,26 -handle,0.6916666666666667,1.0,0.65,0.75,1,25 -food,0.7716666666666667,1.0,0.65,0.75,1,25 -towel,0.7016666666666667,1.0,0.6,0.7166666666666666,1,26 -chips,0.7049999999999998,1.0,0.6499999999999999,0.75,1,26 -stapler,0.48,1.0,0.4833333333333332,0.6166666666666666,1,26 -onion,0.7933333333333333,1.0,0.65,0.7666666666666667,1,26 -bag,0.6216666666666666,1.0,0.5833333333333333,0.7,1,26 -sponge,0.5166666666666666,1.0,0.5999999999999999,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.7016666666666667,1.0,0.5666666666666667,0.7,1,25 -special,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -colgate,0.6749999999999999,1.0,0.6499999999999999,0.75,1,26 -leaf,0.4083333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -tube,0.5083333333333333,1.0,0.38333333333333336,0.55,1,26 -cell,0.76,1.0,0.6166666666666666,0.7333333333333334,1,26 -mug,0.6799999999999999,1.0,0.65,0.75,1,26 -yogurt,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -plantain,0.7166666666666667,1.0,0.7,0.7833333333333333,1,26 -red,0.9133333333333334,0.775,1.0,0.8523809523809524,3,25 -pepper,0.8133333333333332,1.0,0.7499999999999999,0.8166666666666667,1,26 -wheat,0.6366666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.575,1.0,0.5333333333333333,0.6666666666666666,1,26 -toothbrush,0.5966666666666667,1.0,0.5499999999999999,0.6666666666666666,1,26 -binder,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -baseball,0.7666666666666666,1.0,0.75,0.8166666666666667,1,26 -pliers,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -thins,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -package,0.71,1.0,0.5833333333333333,0.7,1,26 -k,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -jelly,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -fruit,0.72,0.6333333333333333,0.9,0.72,2,25 -apple,0.6866666666666666,0.9,0.5666666666666667,0.6666666666666667,1,25 -bell,0.7266666666666667,1.0,0.6,0.7166666666666667,1,26 -battery,0.8633333333333333,1.0,0.8166666666666667,0.8666666666666666,1,26 -jar,0.5466666666666666,1.0,0.5,0.6333333333333333,1,26 -bound,0.75,1.0,0.7333333333333333,0.8,1,26 -lettuce,0.7083333333333333,1.0,0.5666666666666667,0.7,1,26 -brush,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -scissors,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -lime,0.7933333333333332,1.0,0.6333333333333333,0.75,1,25 -toothpaste,0.6383333333333333,1.0,0.6,0.7166666666666667,1,26 -top,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -spiral,0.7133333333333333,1.0,0.6,0.7166666666666667,1,26 -handles,0.8583333333333332,1.0,0.8166666666666667,0.8666666666666666,1,25 -camera,0.4716666666666667,1.0,0.5166666666666666,0.65,1,26 -eraser,0.7183333333333333,1.0,0.6,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -pitcher,0.7133333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.7016666666666667,1.0,0.65,0.75,1,26 -stick,0.48,1.0,0.4999999999999999,0.6333333333333333,1,25 -cereal,0.6466666666666667,1.0,0.6499999999999999,0.75,1,26 -bulb,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -hair,0.93,1.0,0.8833333333333332,0.9166666666666666,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.4583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -can,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,25 -coca,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -crackers,0.6466666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -plate,0.9016666666666666,1.0,0.8,0.8666666666666666,1,25 -calculator,0.8766666666666666,1.0,0.75,0.8333333333333333,1,26 -tissues,0.6433333333333333,1.0,0.5666666666666667,0.7,1,26 -juice,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.5133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,25 -lemon,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -peach,0.5683333333333332,1.0,0.55,0.6833333333333333,1,26 -bowl,0.45999999999999996,1.0,0.45,0.6,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -blue,0.765,1.0,0.55,0.7,1,25 -used,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.6983333333333333,1.0,0.6,0.7166666666666667,1,26 -ball,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -notebook,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -garlic,0.7166666666666667,1.0,0.65,0.75,1,26 -cleaning,0.7066666666666667,1.0,0.5666666666666667,0.7,1,26 -pair,0.9016666666666666,1.0,0.8666666666666668,0.9200000000000002,2,26 -container,0.53,1.0,0.5666666666666667,0.6833333333333333,1,25 -tomato,0.5700000000000001,0.65,0.5666666666666667,0.5633333333333332,1,26 -cellphone,0.5666666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -potato,0.63,1.0,0.5666666666666667,0.6833333333333333,1,25 -light,0.9166666666666666,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.7716666666666667,1.0,0.7333333333333333,0.8400000000000001,2,25 -ceramic,0.78,1.0,0.7166666666666666,0.8,1,24 -yellow,0.8150000000000001,0.6,1.0,0.7447619047619047,6,24 -looks,0.48166666666666663,0.6,0.6333333333333332,0.5466666666666666,1,24 -keyboard,0.63,1.0,0.5833333333333333,0.7,1,26 -glue,0.7416666666666666,1.0,0.65,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666666,1,26 -flashlight,0.6733333333333332,1.0,0.6499999999999999,0.75,1,26 -cup,0.6083333333333333,1.0,0.65,0.75,1,26 -folded,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -jam,0.705,1.0,0.6333333333333333,0.7333333333333333,1,26 -black,0.7916666666666667,0.675,1.0,0.8019047619047619,6,22 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.85,1.0,0.7666666666666666,0.8333333333333333,1,26 -soccer,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -hat,0.5483333333333335,1.0,0.45,0.6166666666666667,1,26 -brown,0.9349999999999999,1.0,0.9,0.9400000000000001,2,24 -coffee,0.4833333333333333,1.0,0.4833333333333333,0.6166666666666666,1,25 -handle,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,25 -food,0.46499999999999997,1.0,0.4,0.5666666666666667,1,25 -towel,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -chips,0.6433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -stapler,0.7183333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -onion,0.575,1.0,0.5333333333333333,0.6666666666666666,1,26 -bag,0.655,1.0,0.5499999999999999,0.6833333333333333,1,26 -sponge,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -special,0.6533333333333333,1.0,0.4666666666666666,0.6333333333333334,1,26 -colgate,0.6749999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -leaf,0.45,1.0,0.4666666666666666,0.6,1,26 -tube,0.7666666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -cell,0.4933333333333333,1.0,0.4499999999999999,0.6,1,26 -mug,0.7083333333333333,1.0,0.7166666666666666,0.8,1,25 -yogurt,0.45499999999999996,1.0,0.4,0.5666666666666667,1,26 -plantain,0.5133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -red,0.9500000000000002,0.8833333333333332,1.0,0.9266666666666667,3,26 -pepper,0.58,1.0,0.5166666666666666,0.65,1,26 -wheat,0.5666666666666667,1.0,0.5333333333333332,0.65,1,26 -kleenex,0.6766666666666666,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -binder,0.7316666666666667,1.0,0.5333333333333333,0.6833333333333333,1,26 -baseball,0.61,1.0,0.5666666666666667,0.6833333333333333,1,26 -pliers,0.5883333333333333,1.0,0.6,0.7166666666666666,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.7083333333333333,1.0,0.65,0.75,1,26 -thins,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,26 -package,0.5766666666666667,1.0,0.5166666666666666,0.65,1,26 -k,0.8583333333333332,1.0,0.7833333333333333,0.85,1,26 -jelly,0.6733333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -fruit,0.7100000000000001,0.7,0.8666666666666666,0.7466666666666667,2,25 -apple,0.625,0.7,0.6166666666666666,0.5900000000000001,1,25 -bell,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -battery,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -jar,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -lettuce,0.75,1.0,0.75,0.8166666666666667,1,26 -brush,0.6683333333333332,1.0,0.5833333333333333,0.7,1,26 -scissors,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -lime,0.6516666666666667,1.0,0.4666666666666666,0.6333333333333334,1,25 -toothpaste,0.7883333333333333,1.0,0.7,0.7833333333333333,1,26 -top,0.5816666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -spiral,0.6599999999999999,1.0,0.5666666666666667,0.7,1,26 -handles,0.6883333333333334,1.0,0.6,0.7166666666666667,1,25 -camera,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.79,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -pitcher,0.7216666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -phone,0.735,1.0,0.6666666666666666,0.7666666666666666,1,26 -stick,0.6966666666666665,1.0,0.5999999999999999,0.7166666666666667,1,25 -cereal,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -bulb,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,27 -hair,0.61,1.0,0.6333333333333333,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6566666666666666,1.0,0.5166666666666666,0.65,1,26 -can,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,26 -coca,0.6666666666666666,1.0,0.55,0.6833333333333333,1,26 -crackers,0.46333333333333326,1.0,0.4833333333333333,0.6166666666666667,1,26 -plate,0.6566666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -calculator,0.485,0.7,0.5166666666666666,0.5366666666666667,1,26 -tissues,0.755,1.0,0.7,0.7833333333333333,1,26 -juice,0.7966666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -pink,0.7166666666666666,1.0,0.7333333333333333,0.8,1,25 -lemon,0.7050000000000001,1.0,0.6166666666666666,0.7333333333333334,1,26 -peach,0.7416666666666666,1.0,0.75,0.8166666666666667,1,26 -bowl,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8166666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -blue,0.6966666666666665,0.95,0.5499999999999999,0.65,1,25 -used,0.6849999999999999,1.0,0.65,0.75,1,23 -energizer,0,0,0,0,1,26 -pear,0.705,1.0,0.7,0.7833333333333333,1,26 -ball,0.58,1.0,0.4833333333333332,0.6166666666666666,1,25 -notebook,0.45499999999999996,1.0,0.41666666666666663,0.5833333333333333,1,26 -garlic,0.7533333333333333,1.0,0.5333333333333333,0.6833333333333333,1,26 -cleaning,0.6633333333333333,1.0,0.65,0.75,1,26 -pair,1.0,1.0,1.0,1.0,2,27 -container,0.55,1.0,0.4666666666666666,0.6166666666666667,1,25 -tomato,0.38666666666666666,0.7,0.5166666666666666,0.5233333333333333,1,26 -cellphone,0.76,1.0,0.7166666666666666,0.8,1,26 -potato,0.625,1.0,0.5333333333333333,0.6666666666666667,1,25 -light,0.9550000000000001,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,25 -ceramic,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666667,1,25 -yellow,0.9666666666666668,0.9,1.0,0.9333333333333332,6,24 -looks,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,24 -keyboard,0.71,1.0,0.5833333333333333,0.7,1,26 -glue,0.6416666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -flashlight,0.9099999999999999,1.0,0.8,0.8666666666666668,1,26 -cup,0.45499999999999996,0.5,0.6166666666666666,0.53,1,26 -folded,0.6433333333333333,1.0,0.6,0.7166666666666667,1,26 -jam,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -black,0.8583333333333334,0.7083333333333333,1.0,0.8123809523809523,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -soccer,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -hat,0.5133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -brown,0.8683333333333334,1.0,0.8333333333333333,0.9,2,26 -coffee,0.44333333333333336,1.0,0.45,0.6,1,26 -handle,0.725,1.0,0.6499999999999999,0.75,1,26 -food,0.7016666666666667,1.0,0.6,0.7166666666666667,1,25 -towel,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -chips,0.6716666666666667,1.0,0.6,0.7166666666666667,1,26 -stapler,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -onion,0.7416666666666667,1.0,0.6499999999999999,0.75,1,26 -bag,0.75,1.0,0.7166666666666666,0.8,1,26 -sponge,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.6166666666666666,1.0,0.4499999999999999,0.6166666666666667,1,25 -special,0.5466666666666666,1.0,0.5499999999999999,0.6666666666666666,1,26 -colgate,0.7133333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -leaf,0.6883333333333332,1.0,0.5333333333333332,0.6666666666666666,1,26 -tube,0.6833333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -cell,0.6133333333333333,0.5,0.7333333333333333,0.5733333333333334,1,26 -mug,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666667,1,26 -yogurt,0.6683333333333333,1.0,0.5666666666666667,0.7,1,26 -plantain,0.585,1.0,0.5833333333333333,0.7,1,26 -red,0.9833333333333334,0.95,1.0,0.9666666666666666,3,26 -pepper,0.5466666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -wheat,0.4666666666666666,1.0,0.6,0.7,1,26 -kleenex,0.525,1.0,0.5,0.6333333333333333,1,26 -toothbrush,0.7683333333333333,1.0,0.7166666666666666,0.8,1,26 -binder,0.4583333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -baseball,0.755,1.0,0.7166666666666666,0.8,1,26 -pliers,0.5733333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.76,1.0,0.7166666666666666,0.8,1,26 -thins,0.8966666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -package,0.575,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.5883333333333334,1.0,0.5833333333333333,0.7,1,26 -jelly,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666668,1,26 -fruit,0.8116666666666668,0.6666666666666666,0.9333333333333332,0.74,2,25 -apple,0.5183333333333333,1.0,0.4666666666666666,0.6166666666666666,1,25 -bell,0.7383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -battery,0.705,1.0,0.55,0.6833333333333333,1,26 -jar,0.6016666666666666,1.0,0.5166666666666666,0.65,1,26 -bound,0.76,1.0,0.6499999999999999,0.75,1,26 -lettuce,0.8550000000000001,1.0,0.7833333333333333,0.85,1,26 -brush,0.6849999999999999,0.7,0.7333333333333333,0.6333333333333333,1,26 -scissors,0.655,1.0,0.5833333333333333,0.7,1,26 -lime,0.585,1.0,0.5166666666666666,0.65,1,25 -toothpaste,0.5933333333333334,1.0,0.4333333333333333,0.6,1,26 -top,0.7633333333333333,1.0,0.75,0.8166666666666667,1,26 -spiral,0.725,1.0,0.7,0.7833333333333333,1,26 -handles,0.6500000000000001,1.0,0.65,0.75,1,25 -camera,0.6966666666666667,1.0,0.5666666666666667,0.7,1,26 -eraser,0.58,1.0,0.5333333333333332,0.6666666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -pitcher,0.7766666666666666,1.0,0.6,0.7333333333333333,1,26 -phone,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -stick,0.805,1.0,0.7166666666666666,0.8,1,25 -cereal,0.69,1.0,0.5666666666666667,0.7,1,26 -bulb,0.9166666666666666,1.0,0.9,0.9400000000000001,2,26 -hair,0.69,1.0,0.55,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5566666666666666,1.0,0.4833333333333333,0.6333333333333334,1,26 -can,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -coca,0.6133333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -plate,0.6216666666666667,1.0,0.5999999999999999,0.7166666666666666,1,25 -calculator,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -tissues,0.5883333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -juice,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666668,1,26 -pink,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -lemon,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -peach,0.6733333333333333,1.0,0.55,0.6833333333333333,1,26 -bowl,0.6466666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -blue,0.755,1.0,0.6666666666666666,0.7666666666666667,1,25 -used,0.8,1.0,0.8166666666666667,0.8666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -ball,0.7216666666666667,1.0,0.6,0.7166666666666667,1,25 -notebook,0.7333333333333333,1.0,0.65,0.75,1,26 -garlic,0.8133333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -cleaning,0.6333333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -pair,0.9333333333333332,1.0,0.9333333333333332,0.9600000000000002,2,27 -container,0.6666666666666666,1.0,0.7333333333333333,0.8,1,25 -tomato,0.675,0.85,0.7,0.6833333333333333,1,26 -cellphone,0.4616666666666666,0.5,0.5666666666666667,0.5133333333333333,1,26 -potato,0.6849999999999999,1.0,0.6,0.7166666666666667,1,25 -light,0.9266666666666667,1.0,0.9,0.9400000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,26 -ceramic,0.755,1.0,0.7166666666666666,0.8,1,25 -yellow,0.9800000000000001,0.95,1.0,0.9666666666666666,6,24 -looks,0.6366666666666667,0.8,0.5833333333333333,0.6,1,24 -keyboard,0.8,1.0,0.7166666666666666,0.8,1,26 -glue,0.655,1.0,0.5833333333333333,0.7,1,26 -milk,0,0,0,0,1,26 -cola,0.5883333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -flashlight,0.7316666666666667,1.0,0.6,0.7166666666666667,1,26 -cup,0.4033333333333333,0.5,0.6333333333333333,0.5266666666666666,1,26 -folded,0.775,1.0,0.7666666666666666,0.8333333333333333,1,26 -jam,0.74,1.0,0.6666666666666666,0.7666666666666667,1,26 -black,0.9233333333333335,0.8166666666666667,1.0,0.8799999999999999,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6583333333333333,1.0,0.4999999999999999,0.65,1,26 -soccer,0.7933333333333332,1.0,0.7,0.7833333333333333,1,26 -hat,0.6599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.9099999999999999,1.0,0.8666666666666666,0.9199999999999999,2,25 -coffee,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -handle,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,25 -food,0.7466666666666666,1.0,0.6666666666666666,0.7666666666666667,1,25 -towel,0.7383333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -chips,0.7216666666666667,1.0,0.7,0.7833333333333333,1,26 -stapler,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.8066666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -bag,0.69,1.0,0.6499999999999999,0.75,1,26 -sponge,0.6666666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -special,0.5966666666666666,1.0,0.5833333333333333,0.7,1,26 -colgate,0.675,1.0,0.5666666666666667,0.7,1,26 -leaf,0.5999999999999999,1.0,0.5166666666666666,0.65,1,26 -tube,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -cell,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -mug,0.6766666666666666,1.0,0.5833333333333333,0.7,1,26 -yogurt,0.8766666666666666,1.0,0.7833333333333333,0.85,1,26 -plantain,0.6133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -red,0.8783333333333333,0.7666666666666666,1.0,0.8533333333333333,3,25 -pepper,0.6466666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -wheat,0.605,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.69,1.0,0.6,0.7166666666666667,1,26 -toothbrush,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -binder,0.5766666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -pliers,0.6066666666666667,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7,1.0,0.65,0.75,1,26 -thins,0.5216666666666666,1.0,0.5,0.6333333333333333,1,26 -package,0.7416666666666666,1.0,0.75,0.8166666666666667,1,26 -k,0.5466666666666666,1.0,0.5,0.6333333333333333,1,26 -jelly,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -fruit,0.6433333333333333,0.5499999999999999,0.8666666666666666,0.6433333333333333,2,25 -apple,0.5633333333333332,0.85,0.4333333333333333,0.55,1,25 -bell,0.715,1.0,0.5499999999999999,0.6833333333333333,1,26 -battery,0.635,1.0,0.5999999999999999,0.7166666666666666,1,26 -jar,0.5433333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -bound,0.75,1.0,0.7166666666666666,0.8,1,26 -lettuce,0.6433333333333333,1.0,0.6,0.7166666666666667,1,26 -brush,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -scissors,0.4966666666666667,1.0,0.5166666666666666,0.65,1,26 -lime,0.6516666666666666,1.0,0.6,0.7166666666666667,1,25 -toothpaste,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -top,0.5966666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -spiral,0.7833333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -handles,0.53,1.0,0.5333333333333332,0.6666666666666666,1,25 -camera,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -eraser,0.65,1.0,0.6666666666666666,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.8166666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -pitcher,0.6649999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -phone,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -stick,0.73,1.0,0.65,0.75,1,25 -cereal,0.6266666666666667,1.0,0.65,0.75,1,26 -bulb,0.9266666666666667,1.0,0.9,0.9400000000000001,2,26 -hair,0.78,1.0,0.7166666666666666,0.8,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.55,1.0,0.5999999999999999,0.7,1,26 -can,0.9400000000000001,1.0,0.8999999999999998,0.9400000000000001,2,26 -coca,0.6883333333333332,1.0,0.6,0.7166666666666666,1,26 -crackers,0.6983333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -plate,0.6633333333333333,1.0,0.6499999999999999,0.75,1,25 -calculator,0.3566666666666667,0.55,0.5666666666666667,0.51,1,26 -tissues,0.5016666666666667,1.0,0.4,0.5666666666666667,1,26 -juice,0.5966666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -pink,0.78,1.0,0.6333333333333333,0.75,1,25 -lemon,0.5433333333333333,1.0,0.4333333333333333,0.6,1,26 -peach,0.6633333333333333,1.0,0.65,0.75,1,26 -bowl,0.45,1.0,0.5666666666666667,0.6833333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.675,1.0,0.6,0.7166666666666667,1,26 -blue,0.525,1.0,0.5166666666666666,0.65,1,25 -used,0.9099999999999999,1.0,0.8,0.8666666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.74,1.0,0.5666666666666667,0.7,1,25 -notebook,0.8266666666666668,1.0,0.7833333333333333,0.85,1,26 -garlic,0.655,1.0,0.5166666666666666,0.65,1,26 -cleaning,0.55,1.0,0.6166666666666666,0.7166666666666667,1,26 -pair,0.8816666666666666,1.0,0.8333333333333334,0.9000000000000001,2,26 -container,0.5833333333333333,1.0,0.5999999999999999,0.7,1,25 -tomato,0.5766666666666667,0.85,0.5666666666666667,0.5833333333333333,1,26 -cellphone,0.665,1.0,0.5,0.65,1,26 -potato,0.8216666666666667,1.0,0.6833333333333333,0.7833333333333333,1,25 -light,0.8216666666666667,1.0,0.8,0.8800000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8716666666666667,1.0,0.8333333333333334,0.9000000000000001,2,25 -ceramic,0.58,1.0,0.5333333333333333,0.6666666666666667,1,24 -yellow,1.0,1.0,1.0,1.0,6,24 -looks,0.5799999999999998,0.85,0.5833333333333333,0.6,1,24 -keyboard,0.6916666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -glue,0.66,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.6216666666666667,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.6166666666666666,1.0,0.5166666666666666,0.65,1,26 -cup,0.2533333333333333,0.5,0.5166666666666666,0.4833333333333334,1,26 -folded,0.7183333333333333,1.0,0.6499999999999999,0.75,1,26 -jam,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -black,1.0,1.0,1.0,1.0,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -soccer,0.6833333333333333,1.0,0.6,0.7166666666666667,1,26 -hat,0.6216666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -brown,0.9083333333333332,1.0,0.9,0.9400000000000001,2,25 -coffee,0.6333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -handle,0.55,1.0,0.5333333333333333,0.6666666666666667,1,26 -food,0.705,1.0,0.5833333333333333,0.7,1,25 -towel,0.5666666666666667,1.0,0.5333333333333333,0.65,1,26 -chips,0.6433333333333333,1.0,0.4833333333333332,0.6333333333333333,1,26 -stapler,0.8416666666666666,1.0,0.7833333333333333,0.85,1,26 -onion,0.6983333333333334,0.8,0.7,0.6666666666666666,1,26 -bag,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -sponge,0.635,1.0,0.5833333333333333,0.7,1,26 -zero,0,0,0,0,1,26 -computer,0.6983333333333334,1.0,0.6,0.7166666666666666,1,25 -special,0.71,1.0,0.6666666666666666,0.7666666666666666,1,26 -colgate,0.6916666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -leaf,0.45,1.0,0.5499999999999999,0.6666666666666666,1,26 -tube,0.7083333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -cell,0.45499999999999996,0.6,0.6333333333333332,0.5466666666666666,1,26 -mug,0.6016666666666667,1.0,0.4666666666666666,0.6166666666666666,1,25 -yogurt,0.655,1.0,0.6333333333333333,0.7333333333333333,1,26 -plantain,0.6333333333333334,1.0,0.5833333333333333,0.7,1,26 -red,0.7983333333333333,0.625,1.0,0.7638095238095237,3,24 -pepper,0.5716666666666665,1.0,0.4999999999999999,0.6333333333333333,1,26 -wheat,0.775,1.0,0.7166666666666666,0.8,1,26 -kleenex,0.7333333333333333,1.0,0.6,0.7166666666666666,1,26 -toothbrush,0.5016666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -binder,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -baseball,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -pliers,0.785,1.0,0.6,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.6633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -thins,0.8550000000000001,1.0,0.7666666666666666,0.8333333333333333,1,26 -package,0.5966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -k,0.655,1.0,0.5166666666666666,0.65,1,26 -jelly,0.685,1.0,0.5666666666666667,0.7,1,26 -fruit,0.7633333333333334,0.65,0.9,0.72,2,25 -apple,0.7383333333333334,1.0,0.6166666666666666,0.7333333333333334,1,25 -bell,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -battery,0.6716666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -jar,0.6666666666666666,1.0,0.7,0.7833333333333333,1,26 -bound,0.675,1.0,0.5999999999999999,0.7166666666666667,1,26 -lettuce,0.7566666666666666,1.0,0.65,0.75,1,26 -brush,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -scissors,0.6333333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -lime,0.6016666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -toothpaste,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333334,1,26 -top,0.6966666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -spiral,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -handles,0.4633333333333334,1.0,0.4833333333333333,0.6166666666666667,1,25 -camera,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.75,1.0,0.6499999999999999,0.75,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.53,1.0,0.4999999999999999,0.6333333333333333,1,26 -pitcher,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -phone,0.8,1.0,0.7666666666666666,0.8333333333333333,1,26 -stick,0.8183333333333334,1.0,0.7166666666666666,0.8,1,25 -cereal,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -bulb,0.9016666666666666,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.7383333333333333,1.0,0.6166666666666666,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -can,0.9216666666666666,1.0,0.9,0.9400000000000001,2,24 -coca,0.6666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -crackers,0.775,1.0,0.7166666666666666,0.8,1,26 -plate,0.505,1.0,0.4666666666666666,0.6166666666666666,1,25 -calculator,0.7583333333333333,1.0,0.75,0.8166666666666667,1,26 -tissues,0.835,1.0,0.7333333333333333,0.8166666666666667,1,26 -juice,0.7633333333333334,1.0,0.7166666666666666,0.8,1,26 -pink,0.66,1.0,0.5499999999999999,0.6833333333333333,1,25 -lemon,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -peach,0.7433333333333333,1.0,0.5666666666666667,0.7,1,26 -bowl,0.5766666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.685,1.0,0.5666666666666667,0.7,1,26 -blue,0.62,0.85,0.5166666666666666,0.6,1,25 -used,0.7266666666666667,1.0,0.6499999999999999,0.75,1,23 -energizer,0,0,0,0,1,26 -pear,0.5249999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -ball,0.65,1.0,0.6,0.7166666666666667,1,25 -notebook,0.7216666666666666,1.0,0.6,0.7166666666666667,1,26 -garlic,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.5766666666666667,1.0,0.4666666666666666,0.6166666666666666,1,26 -pair,0.8766666666666666,1.0,0.8333333333333333,0.9,2,26 -container,0.6799999999999999,1.0,0.5833333333333333,0.7,1,25 -tomato,0.59,0.7,0.6499999999999999,0.5833333333333333,1,26 -cellphone,0.43833333333333335,0.55,0.5999999999999999,0.53,1,26 -potato,0.5683333333333332,1.0,0.5833333333333333,0.7,1,25 -light,0.915,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,25 -ceramic,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666667,1,24 -yellow,1.0,1.0,1.0,1.0,6,26 -looks,0.55,1.0,0.6166666666666666,0.7166666666666667,1,24 -keyboard,0.625,1.0,0.5833333333333333,0.7,1,26 -glue,0.7016666666666667,1.0,0.6,0.7166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -flashlight,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666667,1,26 -cup,0.32666666666666666,0.5,0.4833333333333333,0.4766666666666667,1,26 -folded,0.6633333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -jam,0.5966666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -black,0.93,0.825,1.0,0.8857142857142858,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -soccer,0.6749999999999999,1.0,0.5833333333333333,0.7,1,26 -hat,0.4666666666666667,1.0,0.45,0.6,1,26 -brown,0.8383333333333333,1.0,0.8,0.8800000000000001,2,25 -coffee,0.6316666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -handle,0.6416666666666666,1.0,0.5833333333333333,0.7,1,25 -food,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -towel,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -chips,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -stapler,0.6483333333333332,1.0,0.4833333333333332,0.6333333333333333,1,26 -onion,0.6216666666666666,1.0,0.4999999999999999,0.65,1,26 -bag,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -sponge,0.6933333333333332,1.0,0.6,0.7166666666666667,1,26 -zero,0,0,0,0,1,26 -computer,0.6166666666666666,1.0,0.6333333333333332,0.7333333333333333,1,25 -special,0.6966666666666667,1.0,0.65,0.75,1,26 -colgate,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -leaf,0.635,1.0,0.5833333333333333,0.7,1,26 -tube,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -cell,0.35833333333333334,0.55,0.4999999999999999,0.4966666666666667,1,26 -mug,0.755,1.0,0.6666666666666666,0.7666666666666666,1,26 -yogurt,0.5833333333333333,1.0,0.4833333333333333,0.6166666666666667,1,26 -plantain,0.7266666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -red,0.9266666666666667,0.8,1.0,0.8666666666666666,3,24 -pepper,0.61,1.0,0.4833333333333332,0.6333333333333333,1,26 -wheat,0.7583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -kleenex,0.7516666666666667,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.5916666666666667,1.0,0.5333333333333333,0.6666666666666667,1,25 -binder,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -baseball,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -pliers,0.605,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.7966666666666666,1.0,0.75,0.8166666666666667,1,26 -thins,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -package,0.5,1.0,0.5999999999999999,0.7,1,26 -k,0.8766666666666667,1.0,0.75,0.8333333333333334,1,26 -jelly,0.7,1.0,0.6499999999999999,0.75,1,26 -fruit,0.7683333333333333,0.6833333333333333,0.8999999999999998,0.7466666666666667,2,25 -apple,0.7266666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -bell,0.63,1.0,0.6833333333333333,0.7666666666666666,1,26 -battery,0.8266666666666665,1.0,0.7666666666666666,0.8333333333333333,1,26 -jar,0.5733333333333334,1.0,0.4499999999999999,0.6166666666666666,1,26 -bound,0.6583333333333333,1.0,0.5666666666666667,0.7,1,26 -lettuce,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,26 -brush,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -scissors,0.6733333333333333,1.0,0.5833333333333333,0.7,1,26 -lime,0.7583333333333333,1.0,0.7166666666666666,0.8,1,25 -toothpaste,0.6016666666666667,1.0,0.4833333333333333,0.6333333333333334,1,26 -top,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -spiral,0.7933333333333333,1.0,0.6333333333333333,0.75,1,26 -handles,0.6333333333333333,1.0,0.4833333333333333,0.6333333333333333,1,25 -camera,0.5966666666666667,1.0,0.5166666666666666,0.65,1,26 -eraser,0.7383333333333333,1.0,0.6,0.7166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.705,1.0,0.5666666666666667,0.6833333333333333,1,26 -pitcher,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -phone,0.71,1.0,0.6166666666666666,0.7333333333333334,1,26 -stick,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666667,1,25 -cereal,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -bulb,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,26 -hair,0.6916666666666667,1.0,0.55,0.6833333333333333,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.8033333333333333,1.0,0.6333333333333333,0.75,1,26 -can,0.9016666666666667,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.3883333333333333,1.0,0.38333333333333336,0.55,1,26 -crackers,0.73,1.0,0.6333333333333333,0.75,1,26 -plate,0.76,1.0,0.65,0.75,1,25 -calculator,0.7916666666666666,0.95,0.7666666666666666,0.8,1,26 -tissues,0.7433333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -juice,0.61,1.0,0.5333333333333333,0.6666666666666667,1,26 -pink,0.8099999999999999,1.0,0.7,0.7833333333333333,1,25 -lemon,0.6566666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -peach,0.6183333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -bowl,0.5850000000000001,1.0,0.5333333333333333,0.6666666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7916666666666666,1.0,0.7333333333333333,0.8166666666666668,1,26 -blue,0.585,1.0,0.5166666666666666,0.65,1,25 -used,0.7466666666666666,1.0,0.7,0.7833333333333333,1,23 -energizer,0,0,0,0,1,26 -pear,0.6649999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -ball,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,25 -notebook,0.71,1.0,0.6499999999999999,0.75,1,26 -garlic,0.5216666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -cleaning,0.705,1.0,0.6166666666666666,0.7333333333333333,1,26 -pair,0.9416666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -container,0.7766666666666666,1.0,0.6333333333333333,0.75,1,26 -tomato,0.615,0.85,0.6,0.6333333333333334,1,26 -cellphone,0.5316666666666665,0.5,0.6333333333333333,0.54,1,26 -potato,0.4416666666666666,1.0,0.4999999999999999,0.6333333333333333,1,25 -light,0.9550000000000001,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9400000000000001,1.0,0.9,0.9400000000000001,2,26 -ceramic,0.6516666666666666,1.0,0.55,0.6833333333333333,1,24 -yellow,0.9100000000000001,0.7666666666666666,1.0,0.8466666666666667,6,25 -looks,0.6599999999999999,0.8,0.7,0.65,1,24 -keyboard,0.7316666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -glue,0.7716666666666667,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.6083333333333333,1.0,0.5166666666666666,0.65,1,26 -flashlight,0.705,1.0,0.65,0.75,1,26 -cup,0.5466666666666666,0.5,0.6499999999999999,0.5366666666666667,1,26 -folded,0.7466666666666667,1.0,0.65,0.75,1,26 -jam,0.6566666666666667,1.0,0.5666666666666667,0.7,1,26 -black,0.8850000000000001,0.7916666666666667,1.0,0.8723809523809525,6,22 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,26 -soccer,0.6833333333333333,1.0,0.6166666666666666,0.7333333333333334,1,26 -hat,0.5183333333333333,1.0,0.5166666666666666,0.65,1,26 -brown,0.8466666666666667,1.0,0.8,0.8800000000000001,2,25 -coffee,0.73,1.0,0.7,0.7833333333333333,1,25 -handle,0.7466666666666666,1.0,0.7,0.7833333333333333,1,26 -food,0.8933333333333333,1.0,0.8,0.8666666666666666,1,26 -towel,0.5766666666666667,1.0,0.5833333333333333,0.7,1,26 -chips,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -stapler,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -onion,0.5883333333333333,1.0,0.5166666666666666,0.65,1,26 -bag,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -sponge,0.8083333333333332,1.0,0.7833333333333333,0.85,1,26 -zero,0,0,0,0,1,26 -computer,0.86,1.0,0.7833333333333333,0.85,1,25 -special,0.6766666666666666,1.0,0.6,0.7166666666666666,1,26 -colgate,0.6566666666666666,1.0,0.6,0.7166666666666667,1,26 -leaf,0.505,1.0,0.4999999999999999,0.6333333333333333,1,26 -tube,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -cell,0.6,1.0,0.6166666666666666,0.7166666666666666,1,26 -mug,0.66,1.0,0.6,0.7166666666666667,1,25 -yogurt,0.78,1.0,0.7666666666666666,0.8333333333333333,1,26 -plantain,0.585,1.0,0.5166666666666666,0.65,1,26 -red,0.8600000000000001,0.7,1.0,0.8066666666666666,3,27 -pepper,0.625,1.0,0.5833333333333333,0.7,1,26 -wheat,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.5466666666666666,1.0,0.5833333333333333,0.7,1,26 -toothbrush,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -binder,0.5333333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -baseball,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -pliers,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.74,1.0,0.5666666666666667,0.7,1,26 -thins,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -package,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -k,0.6333333333333333,1.0,0.5499999999999999,0.6666666666666666,1,26 -jelly,0.5466666666666666,1.0,0.4999999999999999,0.65,1,26 -fruit,0.6883333333333334,0.6,0.8999999999999998,0.6900000000000001,2,25 -apple,0.6,0.8,0.55,0.5833333333333334,1,25 -bell,0.705,1.0,0.6,0.7166666666666667,1,26 -battery,0.6016666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -jar,0.5933333333333334,1.0,0.5833333333333333,0.7,1,26 -bound,0.6916666666666667,1.0,0.6333333333333332,0.7333333333333333,1,26 -lettuce,0.6833333333333333,1.0,0.65,0.75,1,26 -brush,0.7716666666666666,1.0,0.7,0.7833333333333333,1,26 -scissors,0.7633333333333333,1.0,0.6333333333333333,0.75,1,26 -lime,0.5383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -toothpaste,0.6466666666666667,1.0,0.5499999999999999,0.6833333333333333,1,26 -top,0.4966666666666667,1.0,0.5166666666666666,0.65,1,26 -spiral,0.7266666666666667,1.0,0.6,0.7166666666666667,1,26 -handles,0.605,1.0,0.5833333333333333,0.7,1,25 -camera,0.6383333333333333,1.0,0.4833333333333333,0.6333333333333333,1,26 -eraser,0.65,1.0,0.6166666666666666,0.7166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5933333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -pitcher,0.5466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.505,1.0,0.5166666666666666,0.65,1,26 -stick,0.5549999999999999,1.0,0.4999999999999999,0.6333333333333333,1,25 -cereal,0.7133333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -bulb,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,27 -hair,0.5433333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5983333333333334,1.0,0.5,0.65,1,26 -can,0.9016666666666667,1.0,0.8666666666666666,0.9200000000000002,2,26 -coca,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -crackers,0.6466666666666666,1.0,0.5833333333333333,0.7,1,26 -plate,0.7633333333333333,1.0,0.65,0.75,1,25 -calculator,0.6816666666666668,0.8,0.6666666666666666,0.65,1,26 -tissues,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.7216666666666667,1.0,0.6499999999999999,0.75,1,26 -pink,0.71,1.0,0.7,0.7833333333333333,1,25 -lemon,0.7133333333333333,1.0,0.6666666666666666,0.7666666666666666,1,26 -peach,0.605,1.0,0.5833333333333333,0.7,1,26 -bowl,0.6900000000000001,1.0,0.6166666666666666,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7083333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -blue,0.5583333333333333,1.0,0.4333333333333333,0.6,1,25 -used,0.8216666666666667,1.0,0.7166666666666666,0.8,1,24 -energizer,0,0,0,0,1,26 -pear,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -ball,0.7133333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -notebook,0.73,1.0,0.75,0.8166666666666668,1,26 -garlic,0.5683333333333332,1.0,0.5333333333333333,0.6666666666666667,1,26 -cleaning,0.6399999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -pair,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,27 -container,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666666,1,25 -tomato,0.425,0.6,0.5333333333333333,0.5133333333333333,1,26 -cellphone,0.78,1.0,0.7499999999999999,0.8166666666666667,1,26 -potato,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666666,1,25 -light,0.9133333333333333,1.0,0.8999999999999998,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8766666666666666,1.0,0.8333333333333333,0.9,2,26 -ceramic,0.7416666666666666,1.0,0.7,0.7833333333333333,1,25 -yellow,0.9100000000000001,0.75,1.0,0.8333333333333333,6,24 -looks,0.45833333333333337,0.8,0.5166666666666666,0.55,1,24 -keyboard,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -glue,0.46333333333333326,1.0,0.45,0.6,1,26 -milk,0,0,0,0,1,26 -cola,0.8466666666666667,1.0,0.7833333333333333,0.85,1,26 -flashlight,0.6216666666666667,1.0,0.55,0.6833333333333333,1,26 -cup,0.5583333333333333,0.5,0.7166666666666666,0.5633333333333334,1,26 -folded,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -jam,0.6583333333333333,1.0,0.6,0.7166666666666667,1,26 -black,0.9100000000000001,0.7833333333333333,1.0,0.86,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.7916666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -soccer,0.6799999999999999,1.0,0.65,0.75,1,26 -hat,0.6416666666666667,1.0,0.5833333333333333,0.7,1,26 -brown,0.9350000000000002,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.505,1.0,0.45,0.6,1,26 -handle,0.725,1.0,0.75,0.8166666666666667,1,26 -food,0.7066666666666667,1.0,0.55,0.6833333333333333,1,25 -towel,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -chips,0.6900000000000001,1.0,0.6,0.7166666666666667,1,26 -stapler,0.6133333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333334,1,26 -bag,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -sponge,0.6016666666666667,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.6383333333333333,1.0,0.5833333333333333,0.7,1,25 -special,0.7216666666666667,1.0,0.7,0.7833333333333333,1,26 -colgate,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -leaf,0.6933333333333334,1.0,0.5666666666666667,0.7,1,26 -tube,0.63,1.0,0.55,0.6833333333333333,1,26 -cell,0.7633333333333333,1.0,0.7499999999999999,0.8166666666666667,1,26 -mug,0.61,1.0,0.5166666666666666,0.65,1,26 -yogurt,0.5599999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -plantain,0.5716666666666667,1.0,0.5166666666666666,0.65,1,26 -red,0.8216666666666665,0.6166666666666667,1.0,0.7466666666666667,3,24 -pepper,0.6216666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -wheat,0.8016666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -kleenex,0.705,1.0,0.6499999999999999,0.75,1,26 -toothbrush,0.63,1.0,0.5666666666666667,0.6833333333333333,1,26 -binder,0.5599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -baseball,0.7166666666666667,1.0,0.7,0.7833333333333333,1,26 -pliers,0.8933333333333333,1.0,0.8333333333333333,0.8833333333333332,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.5383333333333333,1.0,0.4666666666666666,0.6166666666666667,1,26 -thins,0.7016666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -package,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -k,0.6183333333333333,1.0,0.5,0.65,1,26 -jelly,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -fruit,0.7849999999999999,0.7833333333333333,0.8666666666666668,0.77,2,26 -apple,0.5266666666666666,0.95,0.4666666666666666,0.6,1,25 -bell,0.63,1.0,0.6166666666666666,0.7166666666666666,1,26 -battery,0.4666666666666666,1.0,0.5,0.6333333333333333,1,26 -jar,0.6766666666666665,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -lettuce,0.625,1.0,0.5333333333333333,0.6666666666666666,1,26 -brush,0.5999999999999999,1.0,0.5333333333333332,0.65,1,26 -scissors,0.4916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.45499999999999996,1.0,0.45,0.6,1,25 -toothpaste,0.5133333333333334,1.0,0.5833333333333333,0.7,1,26 -top,0.5716666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.78,1.0,0.6666666666666666,0.7666666666666666,1,26 -handles,0.755,1.0,0.6333333333333333,0.75,1,25 -camera,0.4766666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -eraser,0.6216666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6633333333333333,1.0,0.65,0.75,1,26 -pitcher,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -phone,0.6666666666666667,1.0,0.55,0.6833333333333333,1,26 -stick,0.6516666666666666,1.0,0.6,0.7166666666666667,1,25 -cereal,0.73,1.0,0.5999999999999999,0.7166666666666666,1,26 -bulb,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -hair,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6266666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -can,0.8833333333333332,1.0,0.8666666666666666,0.9199999999999999,2,25 -coca,0.5966666666666667,1.0,0.5166666666666666,0.65,1,26 -crackers,0.615,1.0,0.5999999999999999,0.7166666666666667,1,26 -plate,0.6433333333333333,1.0,0.55,0.6833333333333333,1,24 -calculator,0.52,0.5,0.6166666666666666,0.53,1,26 -tissues,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -juice,0.8716666666666667,1.0,0.7833333333333333,0.85,1,26 -pink,0.6966666666666667,1.0,0.6,0.7166666666666667,1,25 -lemon,0.49333333333333335,1.0,0.5666666666666667,0.6833333333333333,1,26 -peach,0.5916666666666666,1.0,0.5833333333333333,0.7,1,26 -bowl,0.605,1.0,0.5833333333333333,0.7,1,26 -camouflage,0,0,0,0,1,26 -digital,0.8216666666666665,1.0,0.7666666666666666,0.8333333333333333,1,26 -blue,0.7,1.0,0.55,0.6833333333333333,1,25 -used,0.5466666666666666,1.0,0.5166666666666666,0.65,1,24 -energizer,0,0,0,0,1,26 -pear,0.6833333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -ball,0.7899999999999999,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.8166666666666667,1.0,0.7166666666666666,0.8,1,26 -garlic,0.505,1.0,0.4833333333333333,0.6333333333333333,1,26 -cleaning,0.4666666666666666,1.0,0.5166666666666666,0.65,1,26 -pair,0.8099999999999999,1.0,0.7666666666666667,0.8600000000000001,2,26 -container,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -tomato,0.5149999999999999,0.65,0.6833333333333332,0.5733333333333334,1,26 -cellphone,0.6933333333333332,1.0,0.5833333333333333,0.7,1,26 -potato,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -light,0.8633333333333333,1.0,0.8333333333333333,0.9,2,26 -green,1.0,1.0,1.0,1.0,3,22 -bottle,0.925,1.0,0.9,0.9400000000000001,2,27 -ceramic,0.5816666666666667,1.0,0.41666666666666663,0.5833333333333334,1,25 -yellow,0.9466666666666667,0.8666666666666666,1.0,0.9133333333333333,6,24 -looks,0.6166666666666666,0.75,0.5166666666666666,0.5833333333333333,1,24 -keyboard,0.6316666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -glue,0.705,1.0,0.6,0.7166666666666667,1,26 -milk,0,0,0,0,1,26 -cola,0.8066666666666666,1.0,0.6333333333333333,0.75,1,26 -flashlight,0.65,1.0,0.55,0.6833333333333333,1,26 -cup,0.3916666666666667,0.5,0.5833333333333333,0.51,1,26 -folded,0.775,1.0,0.7666666666666666,0.8333333333333334,1,26 -jam,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -black,0.9066666666666666,0.825,1.0,0.8923809523809524,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.5183333333333333,1.0,0.4333333333333333,0.6,1,26 -soccer,0.6266666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -hat,0.7633333333333334,1.0,0.7166666666666666,0.8,1,26 -brown,0.9133333333333333,1.0,0.9,0.9400000000000001,2,24 -coffee,0.755,1.0,0.7,0.7833333333333333,1,26 -handle,0.8300000000000001,1.0,0.8166666666666667,0.8666666666666666,1,25 -food,0.6866666666666666,1.0,0.5166666666666666,0.6666666666666667,1,25 -towel,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -chips,0.6766666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -stapler,0.8099999999999999,1.0,0.7,0.7833333333333333,1,26 -onion,0.6766666666666666,1.0,0.6499999999999999,0.75,1,26 -bag,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -sponge,0.8466666666666665,1.0,0.8333333333333333,0.8833333333333332,1,26 -zero,0,0,0,0,1,26 -computer,0.6799999999999999,1.0,0.6499999999999999,0.75,1,25 -special,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -colgate,0.6833333333333333,1.0,0.6,0.7166666666666667,1,26 -leaf,0.41666666666666663,1.0,0.4499999999999999,0.6,1,26 -tube,0.61,1.0,0.4666666666666666,0.6166666666666667,1,26 -cell,0.675,1.0,0.7,0.7833333333333333,1,26 -mug,0.6633333333333333,1.0,0.65,0.75,1,26 -yogurt,0.6966666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -plantain,0.6716666666666666,1.0,0.65,0.75,1,26 -red,0.9466666666666667,0.85,1.0,0.9,3,25 -pepper,0.4916666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -wheat,0.6799999999999999,1.0,0.6,0.7166666666666667,1,26 -kleenex,0.655,1.0,0.4999999999999999,0.65,1,26 -toothbrush,0.5549999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -binder,0.835,1.0,0.7166666666666666,0.8,1,26 -baseball,0.775,1.0,0.7499999999999999,0.8166666666666667,1,26 -pliers,0.5216666666666667,1.0,0.5166666666666666,0.65,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.5416666666666666,1.0,0.5166666666666666,0.65,1,26 -package,0.76,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -jelly,0.58,1.0,0.5166666666666666,0.65,1,26 -fruit,0.7766666666666666,0.65,0.9333333333333332,0.7366666666666667,2,27 -apple,0.5083333333333333,0.85,0.5166666666666666,0.5833333333333333,1,25 -bell,0.7,1.0,0.55,0.6833333333333333,1,26 -battery,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -jar,0.7216666666666667,1.0,0.7,0.7833333333333333,1,26 -bound,0.6766666666666666,1.0,0.6499999999999999,0.75,1,26 -lettuce,0.6166666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -brush,0.6766666666666665,1.0,0.5999999999999999,0.7166666666666666,1,26 -scissors,0.7216666666666667,1.0,0.55,0.7,1,26 -lime,0.6,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.6716666666666666,1.0,0.6166666666666666,0.7333333333333334,1,26 -top,0.6100000000000001,1.0,0.5833333333333333,0.7,1,26 -spiral,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -handles,0.605,1.0,0.4666666666666666,0.6166666666666666,1,25 -camera,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -eraser,0.765,1.0,0.6666666666666666,0.7666666666666667,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.5166666666666666,1.0,0.5166666666666666,0.65,1,26 -pitcher,0.7416666666666666,1.0,0.6499999999999999,0.75,1,26 -phone,0.6916666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -stick,0.65,1.0,0.5833333333333333,0.7,1,25 -cereal,0.5933333333333333,1.0,0.5166666666666666,0.65,1,26 -bulb,0.9016666666666667,1.0,0.8666666666666666,0.9200000000000002,2,26 -hair,0.5916666666666666,1.0,0.5166666666666666,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6666666666666666,1.0,0.6,0.7166666666666667,1,26 -can,0.9100000000000001,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.525,1.0,0.5166666666666666,0.65,1,26 -crackers,0.5999999999999999,1.0,0.5999999999999999,0.7,1,26 -plate,0.78,1.0,0.6,0.7333333333333333,1,24 -calculator,0.6333333333333333,0.95,0.6666666666666666,0.7166666666666666,1,26 -tissues,0.45833333333333337,1.0,0.5,0.6333333333333333,1,26 -juice,0.6633333333333333,1.0,0.65,0.75,1,26 -pink,0.575,1.0,0.5499999999999999,0.6666666666666666,1,25 -lemon,0.7066666666666668,1.0,0.5333333333333333,0.6666666666666667,1,26 -peach,0.7933333333333333,1.0,0.6333333333333333,0.75,1,26 -bowl,0.7083333333333333,1.0,0.75,0.8166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.56,1.0,0.5166666666666666,0.65,1,26 -blue,0.7633333333333334,1.0,0.6833333333333333,0.7833333333333333,1,25 -used,0.8099999999999999,1.0,0.7166666666666666,0.8,1,24 -energizer,0,0,0,0,1,26 -pear,0.5216666666666666,1.0,0.4666666666666666,0.6166666666666666,1,26 -ball,0.8300000000000001,1.0,0.7666666666666666,0.8333333333333333,1,25 -notebook,0.58,1.0,0.4666666666666666,0.6166666666666666,1,26 -garlic,0.5966666666666667,1.0,0.5333333333333333,0.6666666666666666,1,26 -cleaning,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -pair,0.8816666666666668,1.0,0.8333333333333334,0.9000000000000001,2,27 -container,0.7633333333333333,1.0,0.7166666666666666,0.8,1,25 -tomato,0.72,0.7,0.8166666666666667,0.6666666666666667,1,26 -cellphone,0.6,1.0,0.6666666666666666,0.75,1,26 -potato,0.5333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,25 -light,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9216666666666666,1.0,0.9,0.9400000000000001,2,25 -ceramic,0.7583333333333333,1.0,0.7499999999999999,0.8166666666666667,1,25 -yellow,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,6,24 -looks,0.5716666666666668,0.85,0.4999999999999999,0.6,1,24 -keyboard,0.6599999999999999,1.0,0.4833333333333333,0.6333333333333334,1,26 -glue,0.8083333333333332,1.0,0.7833333333333333,0.85,1,26 -milk,0,0,0,0,1,26 -cola,0.7483333333333333,1.0,0.5666666666666667,0.7,1,26 -flashlight,0.5166666666666666,1.0,0.5166666666666666,0.65,1,26 -cup,0.32166666666666666,0.5,0.4833333333333332,0.4766666666666667,1,26 -folded,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -jam,0.6966666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -black,0.8366666666666667,0.6166666666666667,1.0,0.7533333333333333,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.4333333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -soccer,0.63,1.0,0.6333333333333333,0.7333333333333334,1,26 -hat,0.6633333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.8800000000000001,1.0,0.8666666666666666,0.9199999999999999,2,24 -coffee,0.7916666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -handle,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -food,0.8266666666666665,1.0,0.7833333333333333,0.85,1,25 -towel,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -chips,0.4333333333333333,1.0,0.4833333333333333,0.6166666666666666,1,26 -stapler,0.7133333333333333,1.0,0.7166666666666666,0.8,1,26 -onion,0.7083333333333333,1.0,0.5666666666666667,0.7,1,26 -bag,0.7833333333333333,1.0,0.8,0.85,1,26 -sponge,0.6599999999999999,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.575,1.0,0.6833333333333332,0.7666666666666666,1,25 -special,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -colgate,0.7766666666666666,1.0,0.7,0.7833333333333333,1,26 -leaf,0.8416666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -tube,0.755,1.0,0.7,0.7833333333333333,1,26 -cell,0.6266666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -mug,0.7666666666666666,1.0,0.7,0.7833333333333333,1,26 -yogurt,0.575,1.0,0.5166666666666666,0.65,1,26 -plantain,0.53,1.0,0.5499999999999999,0.6666666666666666,1,26 -red,0.9233333333333335,0.8,1.0,0.8666666666666668,3,26 -pepper,0.69,1.0,0.5999999999999999,0.7166666666666666,1,26 -wheat,0.6866666666666666,1.0,0.6,0.7166666666666667,1,26 -kleenex,0.5133333333333333,1.0,0.5,0.6333333333333333,1,26 -toothbrush,0.74,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.7466666666666667,1.0,0.65,0.75,1,26 -baseball,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -pliers,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.73,1.0,0.5999999999999999,0.7166666666666667,1,26 -thins,0.8433333333333334,1.0,0.7333333333333333,0.8166666666666667,1,26 -package,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -k,0.9,1.0,0.85,0.9,1,26 -jelly,0.655,1.0,0.5166666666666666,0.65,1,26 -fruit,0.7300000000000001,0.7,0.9,0.76,2,25 -apple,0.46499999999999997,0.85,0.5333333333333333,0.5833333333333333,1,25 -bell,0.5766666666666667,1.0,0.4333333333333333,0.6,1,26 -battery,0.6749999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -jar,0.8066666666666666,1.0,0.6833333333333333,0.7833333333333333,1,26 -bound,0.6883333333333332,1.0,0.5999999999999999,0.7166666666666667,1,26 -lettuce,0.865,1.0,0.7333333333333333,0.8166666666666667,1,26 -brush,0.7166666666666667,1.0,0.5833333333333333,0.7,1,26 -scissors,0.8083333333333332,1.0,0.7666666666666666,0.8333333333333333,1,26 -lime,0.7916666666666666,1.0,0.6833333333333333,0.7833333333333333,1,25 -toothpaste,0.6383333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -top,0.6933333333333334,1.0,0.65,0.75,1,26 -spiral,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -handles,0.475,1.0,0.5499999999999999,0.6666666666666667,1,25 -camera,0.65,1.0,0.5833333333333333,0.7,1,26 -eraser,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333334,1,26 -creamer,0,0,0,0,1,26 -white,0.9666666666666668,0.9,1.0,0.9333333333333332,5,22 -banana,0.6966666666666667,1.0,0.5833333333333333,0.7,1,26 -pitcher,0.585,1.0,0.5166666666666666,0.65,1,26 -phone,0.755,1.0,0.6666666666666666,0.7666666666666667,1,26 -stick,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,25 -cereal,0.6799999999999999,1.0,0.65,0.75,1,26 -bulb,0.8516666666666666,1.0,0.8,0.8800000000000001,2,26 -hair,0.755,1.0,0.6166666666666666,0.7333333333333334,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.45999999999999996,1.0,0.5166666666666666,0.65,1,26 -can,0.8516666666666666,1.0,0.8,0.8800000000000001,2,25 -coca,0.7416666666666666,1.0,0.65,0.75,1,26 -crackers,0.5383333333333333,1.0,0.5,0.6333333333333333,1,26 -plate,0.7933333333333332,1.0,0.7666666666666666,0.8333333333333333,1,25 -calculator,0.58,0.5,0.6833333333333333,0.5566666666666666,1,26 -tissues,0.6666666666666667,1.0,0.5833333333333333,0.7,1,26 -juice,0.6183333333333334,1.0,0.5,0.65,1,26 -pink,0.525,1.0,0.5666666666666667,0.6833333333333333,1,25 -lemon,0.78,1.0,0.7166666666666666,0.8,1,26 -peach,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -bowl,0.7466666666666667,1.0,0.75,0.8166666666666667,1,26 -camouflage,0,0,0,0,1,26 -digital,0.725,1.0,0.7,0.7833333333333333,1,26 -blue,0.755,1.0,0.6166666666666666,0.7333333333333333,1,25 -used,0.7633333333333333,1.0,0.6499999999999999,0.75,1,24 -energizer,0,0,0,0,1,26 -pear,0.6333333333333333,1.0,0.5499999999999999,0.6833333333333333,1,26 -ball,0.5166666666666666,1.0,0.6,0.7,1,25 -notebook,0.7383333333333333,1.0,0.7,0.7833333333333333,1,26 -garlic,0.615,1.0,0.4666666666666666,0.6166666666666666,1,26 -cleaning,0.6083333333333333,1.0,0.5833333333333333,0.7,1,26 -pair,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -container,0.7416666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -tomato,0.6583333333333333,0.55,0.7333333333333333,0.5900000000000001,1,26 -cellphone,0.6766666666666666,1.0,0.55,0.6833333333333333,1,26 -potato,0.6416666666666666,1.0,0.6333333333333333,0.7333333333333333,1,25 -light,0.975,1.0,0.9666666666666666,0.9800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.8883333333333333,1.0,0.8666666666666666,0.9200000000000002,2,26 -ceramic,0.7416666666666667,1.0,0.7666666666666666,0.8333333333333333,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.7166666666666666,0.9,0.7499999999999999,0.75,1,24 -keyboard,0.755,1.0,0.6833333333333333,0.7833333333333333,1,26 -glue,0.7383333333333333,1.0,0.6499999999999999,0.75,1,26 -milk,0,0,0,0,1,26 -cola,0.6433333333333333,1.0,0.6,0.7166666666666667,1,26 -flashlight,0.5166666666666667,1.0,0.4833333333333333,0.6166666666666667,1,26 -cup,0.5,0.5,0.6666666666666666,0.5466666666666666,1,26 -folded,0.66,1.0,0.4999999999999999,0.65,1,26 -jam,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -black,0.9266666666666667,0.8166666666666667,1.0,0.8799999999999999,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6383333333333333,1.0,0.4833333333333333,0.6333333333333334,1,26 -soccer,0.715,1.0,0.5666666666666667,0.7,1,26 -hat,0.7216666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -brown,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,26 -coffee,0.7683333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -handle,0.655,1.0,0.6166666666666666,0.7333333333333334,1,26 -food,0.6499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,25 -towel,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -chips,0.7333333333333333,1.0,0.6833333333333332,0.7666666666666666,1,26 -stapler,0.8216666666666667,1.0,0.7166666666666666,0.8,1,26 -onion,0.7883333333333333,1.0,0.7333333333333333,0.8166666666666667,1,26 -bag,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.7,1.0,0.7,0.7833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6966666666666665,1.0,0.6333333333333333,0.7333333333333333,1,25 -special,0.7216666666666667,1.0,0.7166666666666666,0.8,1,26 -colgate,0.7333333333333333,1.0,0.75,0.8166666666666668,1,26 -leaf,0.6849999999999999,1.0,0.5666666666666667,0.7,1,26 -tube,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -cell,0.35,0.6,0.5666666666666667,0.52,1,26 -mug,0.7333333333333333,1.0,0.6499999999999999,0.75,1,26 -yogurt,0.7466666666666667,1.0,0.7,0.7833333333333333,1,26 -plantain,0.5499999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -red,0.9666666666666668,0.9,1.0,0.9333333333333332,3,26 -pepper,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -wheat,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.7916666666666666,1.0,0.75,0.8166666666666667,1,26 -toothbrush,0.6299999999999999,1.0,0.5333333333333332,0.6666666666666666,1,26 -binder,0.6833333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -baseball,0.5333333333333333,1.0,0.4833333333333332,0.6166666666666666,1,26 -pliers,0.7100000000000001,1.0,0.5499999999999999,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,24 -water,0.6016666666666666,1.0,0.55,0.6833333333333333,1,26 -thins,0.7749999999999999,1.0,0.7,0.7833333333333333,1,26 -package,0.7483333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -k,0.5999999999999999,1.0,0.6666666666666666,0.75,1,26 -jelly,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -fruit,0.8033333333333333,0.7,0.9333333333333332,0.7666666666666666,2,25 -apple,0.6083333333333333,1.0,0.6166666666666666,0.7166666666666666,1,25 -bell,0.6516666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -battery,0.7733333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -jar,0.7466666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -lettuce,0.805,1.0,0.7166666666666666,0.8,1,26 -brush,0.8133333333333335,0.75,0.8666666666666666,0.7333333333333333,1,26 -scissors,0.6383333333333334,1.0,0.5833333333333333,0.7,1,26 -lime,0.6133333333333333,1.0,0.65,0.75,1,25 -toothpaste,0.7383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,26 -top,0.7083333333333333,1.0,0.6499999999999999,0.75,1,26 -spiral,0.7266666666666667,1.0,0.5666666666666667,0.7,1,26 -handles,0.76,1.0,0.6666666666666666,0.7666666666666667,1,25 -camera,0.55,1.0,0.4999999999999999,0.6333333333333333,1,26 -eraser,0.8683333333333334,1.0,0.75,0.8333333333333334,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,23 -banana,0.7833333333333333,1.0,0.7333333333333333,0.8166666666666668,1,26 -pitcher,0.6216666666666667,1.0,0.5999999999999999,0.7166666666666666,1,26 -phone,0.78,1.0,0.7166666666666666,0.8,1,26 -stick,0.78,1.0,0.65,0.75,1,25 -cereal,0.755,1.0,0.6833333333333333,0.7833333333333333,1,26 -bulb,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -hair,0.4666666666666666,1.0,0.4833333333333334,0.6166666666666666,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.775,1.0,0.7,0.7833333333333333,1,26 -can,0.9016666666666666,1.0,0.8666666666666666,0.9200000000000002,2,25 -coca,0.6666666666666666,1.0,0.6833333333333332,0.7666666666666666,1,26 -crackers,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -plate,0.6266666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -calculator,0.725,0.95,0.7166666666666666,0.7666666666666667,1,26 -tissues,0.7633333333333334,1.0,0.6333333333333333,0.75,1,26 -juice,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -pink,0.6166666666666666,1.0,0.5166666666666666,0.65,1,25 -lemon,0.6633333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -peach,0.755,1.0,0.6833333333333333,0.7833333333333333,1,26 -bowl,0.8816666666666666,1.0,0.75,0.8333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7483333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -blue,0.5216666666666666,1.0,0.5833333333333333,0.7,1,25 -used,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.755,1.0,0.65,0.75,1,26 -ball,0.7533333333333333,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -garlic,0.7249999999999999,1.0,0.6499999999999999,0.75,1,26 -cleaning,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -pair,0.975,1.0,0.9666666666666666,0.9800000000000001,2,27 -container,0.55,1.0,0.4999999999999999,0.6333333333333333,1,25 -tomato,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666666,1,26 -cellphone,0.4933333333333333,0.55,0.6,0.53,1,26 -potato,0.7683333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -light,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,27 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,26 -ceramic,0.55,1.0,0.5666666666666667,0.6833333333333333,1,24 -yellow,0.9633333333333333,0.9166666666666666,1.0,0.9466666666666667,6,24 -looks,0.6566666666666667,0.9,0.6,0.6666666666666667,1,24 -keyboard,0.55,1.0,0.5833333333333333,0.7,1,26 -glue,0.5766666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -flashlight,0.38333333333333325,1.0,0.4499999999999999,0.6,1,26 -cup,0.54,0.5,0.6833333333333333,0.5566666666666666,1,26 -folded,0.65,1.0,0.5999999999999999,0.7,1,26 -jam,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -black,0.9233333333333335,0.8166666666666667,1.0,0.8799999999999999,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -soccer,0.58,1.0,0.5166666666666666,0.65,1,26 -hat,0.8216666666666667,1.0,0.7666666666666666,0.8333333333333333,1,26 -brown,0.8866666666666667,1.0,0.8333333333333333,0.9,2,25 -coffee,0.7166666666666666,1.0,0.6833333333333333,0.7666666666666666,1,25 -handle,0.4716666666666667,1.0,0.4499999999999999,0.6,1,25 -food,0.5966666666666667,1.0,0.4333333333333333,0.6,1,26 -towel,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -chips,0.6833333333333333,1.0,0.5833333333333333,0.7,1,26 -stapler,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -onion,0.6316666666666666,1.0,0.55,0.6833333333333333,1,26 -bag,0.6466666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -sponge,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,26 -special,0.6249999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -colgate,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -leaf,0.48,1.0,0.45,0.6,1,26 -tube,0.45,1.0,0.55,0.6666666666666667,1,26 -cell,0.6466666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -mug,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666666,1,25 -yogurt,0.6366666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -plantain,0.5383333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -red,0.8400000000000001,0.65,1.0,0.7780952380952381,3,26 -pepper,0.63,1.0,0.5333333333333333,0.6666666666666667,1,26 -wheat,0.7466666666666666,1.0,0.7,0.7833333333333333,1,26 -kleenex,0.7733333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -toothbrush,0.5633333333333332,1.0,0.5166666666666666,0.65,1,26 -binder,0.7583333333333333,1.0,0.7166666666666666,0.8,1,26 -baseball,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -pliers,0.8066666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.9,1.0,0.9333333333333332,0.95,1,26 -thins,0.6516666666666666,1.0,0.4833333333333332,0.6333333333333333,1,26 -package,0.7666666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -k,0.5349999999999999,1.0,0.5166666666666666,0.65,1,26 -jelly,0.4749999999999999,1.0,0.4833333333333332,0.6166666666666666,1,26 -fruit,0.7716666666666667,0.7666666666666666,0.8666666666666668,0.7866666666666667,2,26 -apple,0.39166666666666666,0.7,0.4666666666666666,0.52,1,25 -bell,0.4833333333333333,1.0,0.55,0.6666666666666666,1,26 -battery,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -jar,0.8583333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -bound,0.5666666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -lettuce,0.725,1.0,0.65,0.75,1,26 -brush,0.4916666666666667,0.5,0.75,0.5700000000000001,1,26 -scissors,0.6133333333333333,1.0,0.5833333333333333,0.7,1,26 -lime,0.805,1.0,0.6833333333333333,0.7833333333333333,1,25 -toothpaste,0.6633333333333333,1.0,0.5166666666666666,0.6666666666666667,1,26 -top,0.5766666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.6599999999999999,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.63,1.0,0.6166666666666666,0.7166666666666666,1,25 -camera,0.7266666666666667,1.0,0.6166666666666666,0.7333333333333333,1,26 -eraser,0.6383333333333333,1.0,0.5833333333333333,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,22 -banana,0.6916666666666667,0.9,0.6666666666666666,0.7,1,26 -pitcher,0.5599999999999999,1.0,0.4666666666666666,0.6166666666666667,1,26 -phone,0.575,1.0,0.5166666666666666,0.65,1,26 -stick,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,25 -cereal,0.7416666666666666,1.0,0.6833333333333332,0.7666666666666666,1,26 -bulb,0.8633333333333333,1.0,0.8333333333333333,0.9,2,27 -hair,0.6266666666666667,1.0,0.5166666666666666,0.65,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.7566666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -can,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,26 -coca,0.6416666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -crackers,0.5716666666666665,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.5599999999999999,1.0,0.4999999999999999,0.6333333333333333,1,25 -calculator,0.4933333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -tissues,0.7266666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -juice,0.7483333333333333,1.0,0.6333333333333333,0.75,1,26 -pink,0.425,1.0,0.4999999999999999,0.6333333333333333,1,25 -lemon,0.7016666666666667,1.0,0.5833333333333333,0.7,1,26 -peach,0.6966666666666667,1.0,0.7,0.7833333333333333,1,26 -bowl,0.6466666666666667,1.0,0.65,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.73,1.0,0.6499999999999999,0.75,1,26 -blue,0.43000000000000005,0.95,0.4833333333333332,0.5833333333333333,1,25 -used,0.4966666666666666,1.0,0.4833333333333333,0.6166666666666666,1,24 -energizer,0,0,0,0,1,26 -pear,0.6383333333333333,1.0,0.5333333333333332,0.6666666666666666,1,26 -ball,0.4833333333333333,1.0,0.4833333333333334,0.6166666666666666,1,25 -notebook,0.5966666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.5166666666666667,1.0,0.45,0.6,1,26 -cleaning,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -pair,0.9349999999999999,1.0,0.9,0.9400000000000001,2,27 -container,0.4216666666666667,1.0,0.4666666666666666,0.6166666666666666,1,25 -tomato,0.425,0.7,0.4999999999999999,0.52,1,26 -cellphone,0.5716666666666667,1.0,0.4333333333333334,0.6,1,26 -potato,0.48,1.0,0.5499999999999999,0.6666666666666666,1,25 -light,0.8766666666666666,1.0,0.8333333333333333,0.9,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,1.0,1.0,1.0,1.0,2,26 -ceramic,0.7,1.0,0.7333333333333333,0.8,1,25 -yellow,0.8766666666666666,0.7,1.0,0.8066666666666666,6,24 -looks,0.6249999999999999,0.75,0.5833333333333333,0.5666666666666667,1,24 -keyboard,0.4216666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -glue,0.6316666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6266666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -flashlight,0.775,1.0,0.7,0.7833333333333334,1,26 -cup,0.5283333333333333,0.5,0.7333333333333333,0.5733333333333334,1,26 -folded,0.6916666666666667,1.0,0.6499999999999999,0.75,1,26 -jam,0.6833333333333333,1.0,0.6,0.7166666666666667,1,26 -black,0.9266666666666667,0.8166666666666667,1.0,0.8800000000000001,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.38,1.0,0.4333333333333333,0.5833333333333333,1,26 -soccer,0.755,1.0,0.6166666666666666,0.7333333333333333,1,26 -hat,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -brown,0.975,1.0,0.9666666666666666,0.9800000000000001,2,24 -coffee,0.8133333333333332,1.0,0.7166666666666666,0.8,1,26 -handle,0.66,1.0,0.5833333333333333,0.7,1,26 -food,0.6166666666666667,1.0,0.55,0.6833333333333333,1,24 -towel,0.575,1.0,0.4833333333333333,0.6333333333333333,1,26 -chips,0.8099999999999999,1.0,0.65,0.7666666666666667,1,26 -stapler,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.5633333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -bag,0.7633333333333333,1.0,0.7,0.7833333333333333,1,26 -sponge,0.39999999999999997,1.0,0.5166666666666666,0.65,1,26 -zero,0,0,0,0,1,26 -computer,0.55,1.0,0.6166666666666666,0.7166666666666666,1,26 -special,0.6583333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -colgate,0.86,1.0,0.7666666666666666,0.8333333333333333,1,26 -leaf,0.5716666666666667,1.0,0.5833333333333333,0.7,1,26 -tube,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -cell,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -mug,0.775,1.0,0.6333333333333333,0.75,1,26 -yogurt,0.7666666666666666,1.0,0.6833333333333333,0.7666666666666666,1,26 -plantain,0.6333333333333333,1.0,0.5,0.65,1,26 -red,0.8416666666666666,0.6666666666666667,1.0,0.7914285714285714,3,26 -pepper,0.805,1.0,0.6833333333333333,0.7833333333333333,1,26 -wheat,0.4866666666666667,1.0,0.41666666666666663,0.5833333333333333,1,26 -kleenex,0.805,1.0,0.7333333333333333,0.8166666666666668,1,26 -toothbrush,0.73,1.0,0.6833333333333332,0.7666666666666666,1,26 -binder,0.56,1.0,0.5333333333333333,0.6666666666666667,1,26 -baseball,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -pliers,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -thins,0.6216666666666667,1.0,0.6499999999999999,0.75,1,26 -package,0.7233333333333334,1.0,0.5833333333333333,0.7166666666666667,1,26 -k,0.805,1.0,0.7,0.7833333333333333,1,26 -jelly,0.71,1.0,0.6499999999999999,0.75,1,26 -fruit,0.6016666666666667,0.6166666666666667,0.8,0.68,2,25 -apple,0.7150000000000001,0.95,0.6166666666666666,0.7,1,25 -bell,0.5499999999999999,1.0,0.5333333333333333,0.6666666666666666,1,26 -battery,0.5666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -jar,0.7433333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -bound,0.62,1.0,0.4999999999999999,0.65,1,26 -lettuce,0.5916666666666666,1.0,0.5333333333333332,0.6666666666666666,1,26 -brush,0.6833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -scissors,0.7483333333333333,1.0,0.5833333333333333,0.7166666666666667,1,26 -lime,0.6083333333333333,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.63,1.0,0.5999999999999999,0.7166666666666666,1,26 -spiral,0.8283333333333334,1.0,0.65,0.7666666666666667,1,26 -handles,0.7166666666666667,1.0,0.65,0.75,1,25 -camera,0.7533333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -eraser,0.5166666666666666,1.0,0.5999999999999999,0.7,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.8,0.85,0.7666666666666666,0.7333333333333333,1,26 -pitcher,0.6666666666666666,1.0,0.6499999999999999,0.75,1,26 -phone,0.48,1.0,0.4666666666666666,0.6166666666666667,1,26 -stick,0.5966666666666666,1.0,0.5166666666666666,0.65,1,25 -cereal,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,26 -bulb,0.8583333333333332,1.0,0.8333333333333333,0.9,2,26 -hair,0.7266666666666667,1.0,0.5666666666666667,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6799999999999999,1.0,0.6,0.7166666666666666,1,26 -can,0.9099999999999999,1.0,0.8666666666666668,0.9200000000000002,2,25 -coca,0.6133333333333334,1.0,0.6333333333333333,0.7333333333333333,1,26 -crackers,0.5883333333333334,1.0,0.5333333333333333,0.6666666666666667,1,26 -plate,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -calculator,0.4216666666666667,0.85,0.4,0.5166666666666666,1,26 -tissues,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -juice,0.6799999999999999,1.0,0.6833333333333333,0.7666666666666667,1,26 -pink,0.7133333333333334,1.0,0.6666666666666666,0.7666666666666667,1,25 -lemon,0.8216666666666667,1.0,0.7,0.8,1,26 -peach,0.725,1.0,0.65,0.75,1,26 -bowl,0.6166666666666667,1.0,0.65,0.75,1,26 -camouflage,0,0,0,0,1,26 -digital,0.7466666666666666,1.0,0.7499999999999999,0.8166666666666667,1,26 -blue,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666667,1,25 -used,0.5966666666666666,1.0,0.5333333333333333,0.6666666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.66,1.0,0.5833333333333333,0.7,1,26 -ball,0.7416666666666667,1.0,0.7166666666666666,0.8,1,25 -notebook,0.7849999999999999,1.0,0.7166666666666666,0.8,1,26 -garlic,0.5916666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -cleaning,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -pair,0.9666666666666666,1.0,0.9666666666666666,0.9800000000000001,2,27 -container,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,25 -tomato,0.4116666666666666,0.6,0.5166666666666666,0.5033333333333333,1,26 -cellphone,0.5666666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -potato,0.4916666666666666,1.0,0.4833333333333332,0.6166666666666666,1,25 -light,0.7933333333333333,1.0,0.7666666666666667,0.8600000000000001,2,25 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9333333333333332,1.0,0.9333333333333332,0.96,2,26 -ceramic,0.5683333333333332,1.0,0.5833333333333333,0.7,1,24 -yellow,1.0,1.0,1.0,1.0,6,26 -looks,0.6433333333333333,0.85,0.6333333333333333,0.6333333333333333,1,24 -keyboard,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -glue,0.6900000000000001,1.0,0.5,0.65,1,26 -milk,0,0,0,0,1,26 -cola,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -flashlight,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -cup,0.47833333333333333,0.5,0.5499999999999999,0.5033333333333333,1,26 -folded,0.6833333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -jam,0.3466666666666667,1.0,0.41666666666666663,0.5666666666666667,1,26 -black,0.8300000000000001,0.6583333333333333,1.0,0.7790476190476191,6,22 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.7383333333333333,1.0,0.6333333333333333,0.75,1,26 -soccer,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -hat,0.5633333333333334,1.0,0.5,0.6333333333333333,1,26 -brown,0.9266666666666667,1.0,0.8999999999999998,0.9400000000000001,2,24 -coffee,0.7333333333333333,1.0,0.6333333333333333,0.75,1,25 -handle,0.5833333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -food,0.5266666666666666,1.0,0.4666666666666666,0.6166666666666666,1,25 -towel,0.6083333333333333,1.0,0.6499999999999999,0.75,1,26 -chips,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -stapler,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -onion,0.6799999999999999,0.9,0.7,0.7166666666666666,1,26 -bag,0.6599999999999999,1.0,0.5499999999999999,0.6833333333333333,1,26 -sponge,0.835,1.0,0.7166666666666666,0.8,1,26 -zero,0,0,0,0,1,26 -computer,0.5800000000000001,1.0,0.5333333333333333,0.6666666666666667,1,25 -special,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -colgate,0.6683333333333333,1.0,0.65,0.75,1,26 -leaf,0.7166666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -tube,0.75,1.0,0.65,0.75,1,26 -cell,0.5583333333333333,0.5,0.7,0.5533333333333335,1,26 -mug,0.6466666666666667,1.0,0.4833333333333333,0.6333333333333333,1,25 -yogurt,0.6266666666666666,1.0,0.6333333333333332,0.7333333333333333,1,26 -plantain,0.58,1.0,0.5166666666666666,0.65,1,26 -red,0.9333333333333333,0.85,1.0,0.9066666666666666,3,27 -pepper,0.7966666666666666,1.0,0.7166666666666666,0.8,1,26 -wheat,0.7299999999999999,1.0,0.6499999999999999,0.75,1,26 -kleenex,0.4716666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -toothbrush,0.4883333333333333,1.0,0.4333333333333334,0.5833333333333333,1,26 -binder,0.5683333333333332,1.0,0.4666666666666666,0.6166666666666667,1,26 -baseball,0.61,1.0,0.5166666666666666,0.65,1,26 -pliers,0.5883333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.7100000000000001,1.0,0.6,0.7166666666666667,1,26 -thins,0.53,1.0,0.5333333333333333,0.6666666666666667,1,26 -package,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -k,0.8516666666666668,1.0,0.7,0.8,1,26 -jelly,0.635,1.0,0.5666666666666667,0.7,1,26 -fruit,0.7866666666666666,0.75,0.8666666666666666,0.78,2,26 -apple,0.5633333333333332,1.0,0.5833333333333333,0.7,1,25 -bell,0.5766666666666667,1.0,0.5166666666666666,0.65,1,26 -battery,0.6916666666666667,1.0,0.65,0.75,1,26 -jar,0.5766666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -bound,0.6133333333333333,1.0,0.4999999999999999,0.65,1,26 -lettuce,0.6849999999999999,1.0,0.5666666666666667,0.7,1,26 -brush,0.5666666666666667,1.0,0.6166666666666666,0.7166666666666666,1,26 -scissors,0.7433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -lime,0.7833333333333333,1.0,0.7999999999999999,0.85,1,25 -toothpaste,0.775,1.0,0.6666666666666666,0.7666666666666667,1,26 -top,0.675,1.0,0.5666666666666667,0.6833333333333333,1,26 -spiral,0.8099999999999999,1.0,0.7166666666666666,0.8,1,26 -handles,0.8133333333333332,1.0,0.7499999999999999,0.8166666666666667,1,25 -camera,0.6766666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -eraser,0.8666666666666666,1.0,0.8833333333333332,0.9166666666666666,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7766666666666666,1.0,0.6499999999999999,0.75,1,26 -pitcher,0.6466666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -phone,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -stick,0.5683333333333332,1.0,0.5499999999999999,0.6833333333333333,1,25 -cereal,0.625,1.0,0.5333333333333333,0.6666666666666666,1,26 -bulb,0.8633333333333333,1.0,0.8333333333333334,0.9000000000000001,2,26 -hair,0.7333333333333333,1.0,0.6333333333333332,0.7333333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.5333333333333333,1.0,0.5166666666666666,0.65,1,26 -can,0.975,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.605,1.0,0.5333333333333333,0.6666666666666666,1,26 -crackers,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -plate,0.6066666666666667,1.0,0.4833333333333333,0.6333333333333333,1,25 -calculator,0.6766666666666667,0.95,0.6666666666666666,0.7333333333333334,1,26 -tissues,0.7,1.0,0.6499999999999999,0.75,1,26 -juice,0.6966666666666665,1.0,0.65,0.75,1,26 -pink,0.6766666666666666,1.0,0.5499999999999999,0.6833333333333333,1,25 -lemon,0.7383333333333333,1.0,0.65,0.75,1,26 -peach,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -bowl,0.675,1.0,0.6333333333333333,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5666666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -blue,0.6666666666666666,0.8,0.6666666666666666,0.6666666666666667,1,25 -used,0.7983333333333333,1.0,0.6666666666666666,0.7666666666666666,1,23 -energizer,0,0,0,0,1,26 -pear,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -ball,0.7383333333333333,1.0,0.65,0.75,1,25 -notebook,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -garlic,0.78,1.0,0.7166666666666666,0.8,1,26 -cleaning,0.7383333333333333,1.0,0.6,0.7166666666666667,1,26 -pair,0.9066666666666666,1.0,0.8666666666666668,0.9200000000000002,2,27 -container,0.75,1.0,0.6666666666666666,0.7666666666666667,1,25 -tomato,0.5683333333333334,0.9,0.5333333333333333,0.6,1,26 -cellphone,0.5266666666666666,0.55,0.7,0.5633333333333334,1,26 -potato,0.5933333333333334,1.0,0.5,0.65,1,25 -light,0.96,1.0,0.9333333333333332,0.96,2,25 -green,1.0,1.0,1.0,1.0,3,25 -bottle,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,27 -ceramic,0.605,1.0,0.4333333333333333,0.6,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.5466666666666666,1.0,0.5333333333333333,0.6666666666666667,1,24 -keyboard,0.4383333333333333,1.0,0.4,0.5666666666666667,1,26 -glue,0.8099999999999999,1.0,0.7333333333333333,0.8166666666666668,1,26 -milk,0,0,0,0,1,26 -cola,0.6633333333333333,1.0,0.6499999999999999,0.75,1,26 -flashlight,0.6666666666666667,1.0,0.6833333333333333,0.7666666666666667,1,26 -cup,0.72,0.5,0.9,0.6333333333333333,1,26 -folded,0.8016666666666665,1.0,0.7333333333333333,0.8166666666666667,1,26 -jam,0.735,1.0,0.5833333333333333,0.7,1,26 -black,0.9666666666666668,0.9,1.0,0.9333333333333332,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.8100000000000002,1.0,0.6833333333333333,0.7833333333333333,1,26 -soccer,0.7216666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -hat,0.425,1.0,0.5,0.6333333333333333,1,26 -brown,0.9083333333333332,1.0,0.9,0.9400000000000001,2,24 -coffee,0.8633333333333333,1.0,0.7833333333333333,0.85,1,26 -handle,0.53,1.0,0.5666666666666667,0.6833333333333333,1,26 -food,0.55,1.0,0.6166666666666666,0.7166666666666666,1,24 -towel,0.8133333333333332,1.0,0.7499999999999999,0.8166666666666667,1,26 -chips,0.7916666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -stapler,0.5966666666666667,1.0,0.5666666666666667,0.6833333333333333,1,26 -onion,0.6933333333333332,1.0,0.5499999999999999,0.6833333333333333,1,26 -bag,0.7716666666666667,1.0,0.7166666666666666,0.8,1,26 -sponge,0.7633333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.8016666666666667,1.0,0.7166666666666666,0.8,1,25 -special,0.745,1.0,0.5666666666666667,0.7,1,26 -colgate,0.5633333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -leaf,0.7883333333333333,1.0,0.7,0.7833333333333334,1,26 -tube,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666667,1,26 -cell,0.7266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -mug,0.725,1.0,0.7,0.7833333333333333,1,26 -yogurt,0.5833333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -plantain,0.605,1.0,0.4999999999999999,0.65,1,26 -red,0.9666666666666668,0.9333333333333332,1.0,0.96,3,25 -pepper,0.4966666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -wheat,0.5549999999999999,1.0,0.5833333333333333,0.7,1,26 -kleenex,0.8016666666666665,1.0,0.6333333333333333,0.75,1,26 -toothbrush,0.71,1.0,0.6666666666666666,0.7666666666666666,1,26 -binder,0.5416666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -baseball,0.5583333333333333,1.0,0.5833333333333333,0.7,1,26 -pliers,0.8099999999999999,1.0,0.6833333333333333,0.7833333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,25 -water,0.6849999999999999,1.0,0.55,0.6833333333333333,1,26 -thins,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -package,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -k,0.6583333333333333,1.0,0.5833333333333333,0.7,1,26 -jelly,0.8316666666666667,1.0,0.65,0.7666666666666667,1,26 -fruit,0.8183333333333334,0.7333333333333333,0.9333333333333332,0.7866666666666667,2,25 -apple,0.6883333333333332,0.9,0.6333333333333333,0.6666666666666666,1,25 -bell,0.6766666666666666,1.0,0.6166666666666666,0.7333333333333333,1,26 -battery,0.6633333333333333,1.0,0.5833333333333333,0.7,1,26 -jar,0.51,1.0,0.5166666666666666,0.65,1,26 -bound,0.6316666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -lettuce,0.4133333333333333,1.0,0.5499999999999999,0.6666666666666667,1,26 -brush,0.7416666666666667,1.0,0.7,0.7833333333333334,1,26 -scissors,0.585,1.0,0.5833333333333333,0.7,1,26 -lime,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666667,1,25 -toothpaste,0.5549999999999999,1.0,0.5166666666666666,0.65,1,26 -top,0.6716666666666666,1.0,0.6333333333333333,0.7333333333333333,1,26 -spiral,0.5466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -handles,0.5916666666666666,1.0,0.55,0.6833333333333333,1,25 -camera,0.7583333333333333,1.0,0.7,0.7833333333333333,1,26 -eraser,0.7999999999999999,1.0,0.7666666666666666,0.8333333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.7933333333333332,1.0,0.7,0.7833333333333333,1,26 -pitcher,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -phone,0.44666666666666666,1.0,0.4666666666666666,0.6166666666666667,1,26 -stick,0.6799999999999999,1.0,0.65,0.75,1,25 -cereal,0.6683333333333333,1.0,0.6499999999999999,0.75,1,26 -bulb,0.8766666666666667,1.0,0.8333333333333333,0.9,2,26 -hair,0.8216666666666667,1.0,0.7333333333333333,0.8166666666666667,1,26 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6249999999999999,1.0,0.6166666666666666,0.7166666666666666,1,26 -can,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,25 -coca,0.7383333333333333,1.0,0.6,0.7166666666666667,1,26 -crackers,0.6433333333333333,1.0,0.6,0.7166666666666667,1,26 -plate,0.9349999999999999,1.0,0.85,0.9,1,25 -calculator,0.7350000000000001,0.95,0.6166666666666666,0.7,1,26 -tissues,0.7966666666666666,1.0,0.6333333333333333,0.75,1,26 -juice,0.3166666666666667,0.5,0.5666666666666667,0.5000000000000001,1,26 -pink,0.7633333333333333,1.0,0.7166666666666666,0.8,1,25 -lemon,0.7749999999999999,1.0,0.7166666666666666,0.8,1,26 -peach,0.475,0.5,0.6499999999999999,0.5366666666666667,1,26 -bowl,0.5183333333333333,1.0,0.45,0.6,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5166666666666666,1.0,0.5333333333333332,0.65,1,26 -blue,0.7083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -used,0.7633333333333333,1.0,0.7166666666666666,0.8,1,24 -energizer,0,0,0,0,1,26 -pear,0.5249999999999999,1.0,0.4999999999999999,0.6333333333333333,1,26 -ball,0.73,1.0,0.5666666666666667,0.7,1,25 -notebook,0.76,1.0,0.6666666666666666,0.7666666666666666,1,26 -garlic,0.7666666666666667,1.0,0.6333333333333333,0.75,1,26 -cleaning,0.6933333333333334,1.0,0.5833333333333333,0.7,1,26 -pair,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -container,0.605,1.0,0.5833333333333333,0.7,1,26 -tomato,0.635,0.8,0.6333333333333333,0.6,1,26 -cellphone,0.51,1.0,0.4499999999999999,0.6,1,26 -potato,0.7016666666666667,1.0,0.5999999999999999,0.7166666666666666,1,25 -light,0.905,1.0,0.8666666666666668,0.9200000000000002,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9416666666666667,1.0,0.9333333333333332,0.96,2,26 -ceramic,0.5549999999999999,1.0,0.5833333333333333,0.7,1,25 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.6333333333333333,1.0,0.5166666666666666,0.65,1,24 -keyboard,0.65,1.0,0.5499999999999999,0.6833333333333333,1,26 -glue,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.8133333333333332,1.0,0.8166666666666667,0.8666666666666666,1,26 -flashlight,0.8466666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -cup,0.5349999999999999,0.5,0.6166666666666666,0.53,1,26 -folded,0.39666666666666667,1.0,0.45,0.6,1,26 -jam,0.7516666666666667,1.0,0.5999999999999999,0.7166666666666667,1,26 -black,0.9066666666666666,0.8083333333333332,1.0,0.8790476190476191,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6083333333333332,1.0,0.5666666666666667,0.6833333333333333,1,26 -soccer,0.8083333333333332,1.0,0.7166666666666666,0.8,1,26 -hat,0.705,1.0,0.6499999999999999,0.75,1,26 -brown,0.8683333333333334,1.0,0.8333333333333333,0.9,2,25 -coffee,0.73,1.0,0.6499999999999999,0.75,1,26 -handle,0.6066666666666667,1.0,0.45,0.6166666666666667,1,25 -food,0.7483333333333333,1.0,0.6333333333333333,0.75,1,24 -towel,0.6166666666666666,1.0,0.5166666666666666,0.65,1,26 -chips,0.63,1.0,0.5833333333333333,0.7,1,26 -stapler,0.5916666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -onion,0.7433333333333334,1.0,0.7,0.7833333333333333,1,26 -bag,0.6583333333333333,1.0,0.6833333333333333,0.7666666666666666,1,26 -sponge,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.8266666666666665,1.0,0.6833333333333333,0.7833333333333333,1,25 -special,0.6799999999999999,1.0,0.7,0.7833333333333333,1,26 -colgate,0.6416666666666667,1.0,0.7,0.7833333333333334,1,26 -leaf,0.4766666666666667,1.0,0.5166666666666666,0.65,1,26 -tube,0.675,1.0,0.6,0.7166666666666666,1,26 -cell,0.31833333333333336,0.7,0.5499999999999999,0.53,1,26 -mug,0.705,1.0,0.6,0.7166666666666667,1,26 -yogurt,0.9,1.0,0.75,0.8333333333333333,1,26 -plantain,0.7333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.9666666666666668,0.9,1.0,0.9333333333333332,3,25 -pepper,0.7833333333333333,1.0,0.7166666666666666,0.8,1,26 -wheat,0.6383333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -kleenex,0.5083333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -toothbrush,0.7933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,26 -binder,0.7233333333333334,1.0,0.6499999999999999,0.75,1,26 -baseball,0.75,1.0,0.6833333333333333,0.7833333333333334,1,26 -pliers,0.7983333333333333,1.0,0.6666666666666666,0.7666666666666667,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.655,1.0,0.6499999999999999,0.75,1,26 -thins,0.6683333333333333,1.0,0.5833333333333333,0.7,1,26 -package,0.5599999999999999,1.0,0.5166666666666666,0.65,1,26 -k,0.5916666666666667,1.0,0.5166666666666666,0.65,1,26 -jelly,0.5833333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -fruit,0.7566666666666666,0.8666666666666666,0.8,0.7966666666666666,2,25 -apple,0.4,1.0,0.4666666666666666,0.6,1,25 -bell,0.7333333333333333,1.0,0.8,0.85,1,26 -battery,0.5349999999999999,1.0,0.4833333333333333,0.6333333333333333,1,26 -jar,0.7066666666666667,1.0,0.6666666666666666,0.7666666666666666,1,26 -bound,0.655,1.0,0.6,0.7166666666666667,1,26 -lettuce,0.7066666666666667,1.0,0.55,0.6833333333333333,1,26 -brush,0.655,1.0,0.5499999999999999,0.6833333333333333,1,26 -scissors,0.6766666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -lime,0.6966666666666667,1.0,0.5833333333333333,0.7,1,25 -toothpaste,0.58,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.45,1.0,0.5499999999999999,0.6666666666666666,1,26 -spiral,0.6716666666666666,1.0,0.6,0.7166666666666667,1,26 -handles,0.7416666666666666,1.0,0.6666666666666666,0.7666666666666666,1,25 -camera,0.5966666666666666,1.0,0.4833333333333333,0.6333333333333333,1,26 -eraser,0.655,1.0,0.5499999999999999,0.6833333333333333,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.5133333333333333,1.0,0.5166666666666666,0.65,1,26 -pitcher,0.6699999999999999,1.0,0.55,0.6833333333333333,1,26 -phone,0.71,1.0,0.5166666666666666,0.6666666666666667,1,26 -stick,0.7966666666666666,1.0,0.7166666666666666,0.8,1,25 -cereal,0.4766666666666667,1.0,0.4166666666666667,0.5833333333333333,1,26 -bulb,0.9216666666666666,1.0,0.9,0.9400000000000001,2,27 -hair,0.6966666666666667,1.0,0.6,0.7166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.805,1.0,0.65,0.7666666666666667,1,26 -can,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.7266666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -crackers,0.7833333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -plate,0.5466666666666666,1.0,0.4666666666666666,0.6166666666666666,1,24 -calculator,0.6433333333333333,0.65,0.6833333333333333,0.6,1,26 -tissues,0.505,1.0,0.4833333333333333,0.6333333333333333,1,26 -juice,0.5766666666666667,1.0,0.5333333333333332,0.6666666666666666,1,26 -pink,0.6183333333333333,1.0,0.5333333333333333,0.6666666666666667,1,25 -lemon,0.7,1.0,0.5999999999999999,0.7166666666666667,1,26 -peach,0.5,1.0,0.4833333333333333,0.6166666666666666,1,26 -bowl,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6416666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -blue,0.7933333333333333,1.0,0.7333333333333333,0.8166666666666667,1,25 -used,0.5216666666666667,1.0,0.4666666666666666,0.6166666666666667,1,24 -energizer,0,0,0,0,1,26 -pear,0.8100000000000002,1.0,0.7166666666666666,0.8,1,26 -ball,0.7933333333333332,1.0,0.7333333333333333,0.8166666666666668,1,25 -notebook,0.40499999999999997,1.0,0.4499999999999999,0.6,1,26 -garlic,0.6933333333333334,1.0,0.5999999999999999,0.7166666666666666,1,26 -cleaning,0.6016666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -pair,0.8883333333333333,1.0,0.8666666666666668,0.9200000000000002,2,27 -container,0.655,1.0,0.6,0.7166666666666666,1,25 -tomato,0.7166666666666667,0.9,0.65,0.6833333333333333,1,26 -cellphone,0.3266666666666667,0.6,0.5333333333333333,0.5133333333333333,1,26 -potato,0.5416666666666666,1.0,0.5,0.6333333333333333,1,26 -light,0.9083333333333332,1.0,0.8999999999999998,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,23 -bottle,0.9016666666666667,1.0,0.8666666666666668,0.9200000000000002,2,26 -ceramic,0.8016666666666665,1.0,0.6833333333333333,0.7833333333333333,1,24 -yellow,0.9666666666666668,0.9166666666666666,1.0,0.9466666666666667,6,24 -looks,0.48,0.8,0.4666666666666666,0.5333333333333333,1,24 -keyboard,0.575,1.0,0.4999999999999999,0.6333333333333333,1,26 -glue,0.7733333333333333,1.0,0.6833333333333333,0.7833333333333334,1,26 -milk,0,0,0,0,1,26 -cola,0.575,1.0,0.5333333333333333,0.6666666666666667,1,26 -flashlight,0.8066666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -cup,0.32166666666666666,0.5,0.6333333333333333,0.5266666666666666,1,26 -folded,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666667,1,26 -jam,0.7133333333333333,1.0,0.7,0.7833333333333333,1,26 -black,0.8966666666666668,0.7583333333333334,1.0,0.8457142857142858,6,21 -orange,1.0,1.0,1.0,1.0,3,24 -folder,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -soccer,0.475,1.0,0.38333333333333336,0.55,1,26 -hat,0.6233333333333333,1.0,0.5166666666666666,0.65,1,26 -brown,0.8516666666666666,1.0,0.8,0.8800000000000001,2,24 -coffee,0.6966666666666667,1.0,0.6833333333333333,0.7666666666666666,1,25 -handle,0.6416666666666666,1.0,0.5499999999999999,0.6833333333333333,1,26 -food,0.675,1.0,0.7,0.7833333333333333,1,26 -towel,0.5716666666666665,1.0,0.5666666666666667,0.6833333333333333,1,26 -chips,0.5516666666666666,1.0,0.5166666666666666,0.65,1,26 -stapler,0.8966666666666667,1.0,0.8,0.8666666666666666,1,26 -onion,0.4716666666666667,0.65,0.6,0.5566666666666666,1,26 -bag,0.7666666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -sponge,0.6516666666666666,1.0,0.5999999999999999,0.7166666666666666,1,26 -zero,0,0,0,0,1,26 -computer,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -special,0.6316666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -colgate,0.5016666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -leaf,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -tube,0.7999999999999999,1.0,0.7166666666666666,0.8,1,26 -cell,0.5933333333333333,1.0,0.5166666666666666,0.65,1,26 -mug,0.6916666666666667,1.0,0.6333333333333332,0.7333333333333333,1,25 -yogurt,0.8,1.0,0.75,0.8166666666666667,1,26 -plantain,0.7666666666666666,1.0,0.7333333333333333,0.8,1,26 -red,0.9666666666666668,0.9,1.0,0.9333333333333332,3,27 -pepper,0.6716666666666666,1.0,0.5833333333333333,0.7,1,26 -wheat,0.775,1.0,0.7333333333333333,0.8166666666666667,1,26 -kleenex,0.5833333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -toothbrush,0.5666666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -binder,0.7166666666666666,1.0,0.7,0.7833333333333333,1,26 -baseball,0.73,1.0,0.6,0.7166666666666667,1,26 -pliers,0.73,1.0,0.6166666666666666,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.4883333333333333,1.0,0.4999999999999999,0.6333333333333333,1,26 -package,0.6333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -k,0.7216666666666667,1.0,0.5666666666666667,0.7,1,26 -jelly,0.6916666666666667,1.0,0.65,0.75,1,26 -fruit,0.635,0.6333333333333334,0.8,0.6900000000000001,2,25 -apple,0.575,0.9,0.6166666666666666,0.65,1,25 -bell,0.6383333333333334,1.0,0.55,0.6833333333333333,1,26 -battery,0.8066666666666666,1.0,0.6333333333333333,0.75,1,26 -jar,0.5766666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -bound,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -lettuce,0.705,1.0,0.5833333333333333,0.7,1,26 -brush,0.6716666666666666,1.0,0.5666666666666667,0.7,1,26 -scissors,0.65,1.0,0.5999999999999999,0.7166666666666667,1,26 -lime,0.48999999999999994,1.0,0.4666666666666666,0.6166666666666667,1,25 -toothpaste,0.6583333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -top,0.6383333333333333,1.0,0.5166666666666666,0.65,1,26 -spiral,0.5833333333333333,1.0,0.6166666666666666,0.7166666666666666,1,26 -handles,0.7083333333333334,1.0,0.7166666666666666,0.8,1,25 -camera,0.8466666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -eraser,0.75,1.0,0.6833333333333333,0.7833333333333334,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,21 -banana,0.6416666666666666,1.0,0.6166666666666666,0.7166666666666666,1,26 -pitcher,0.75,1.0,0.7166666666666666,0.8,1,26 -phone,0.7883333333333333,1.0,0.6333333333333333,0.75,1,26 -stick,0.6583333333333333,1.0,0.5499999999999999,0.6833333333333333,1,25 -cereal,0.7216666666666666,1.0,0.6666666666666666,0.7666666666666666,1,26 -bulb,0.8749999999999998,1.0,0.8666666666666666,0.9200000000000002,2,27 -hair,0.7016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.4716666666666667,1.0,0.4999999999999999,0.6333333333333333,1,26 -can,0.9166666666666666,1.0,0.8999999999999998,0.9400000000000001,2,25 -coca,0.655,1.0,0.5833333333333333,0.7,1,26 -crackers,0.8816666666666666,1.0,0.75,0.8333333333333333,1,26 -plate,0.5683333333333332,1.0,0.5833333333333333,0.7,1,24 -calculator,0.6266666666666667,1.0,0.6499999999999999,0.75,1,26 -tissues,0.6933333333333332,1.0,0.6,0.7166666666666667,1,26 -juice,0.805,1.0,0.7333333333333333,0.8166666666666668,1,26 -pink,0.58,1.0,0.5166666666666666,0.65,1,25 -lemon,0.5966666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -peach,0.76,1.0,0.7166666666666666,0.8,1,26 -bowl,0.6383333333333333,1.0,0.6333333333333332,0.7333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,26 -blue,0.6133333333333334,0.55,0.7333333333333333,0.5833333333333334,1,25 -used,0.6083333333333332,1.0,0.5666666666666667,0.6833333333333333,1,24 -energizer,0,0,0,0,1,26 -pear,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -ball,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,25 -notebook,0.7083333333333333,1.0,0.7,0.7833333333333333,1,26 -garlic,0.65,1.0,0.7333333333333333,0.8,1,26 -cleaning,0.7883333333333333,1.0,0.7166666666666666,0.8,1,26 -pair,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,27 -container,0.59,1.0,0.5166666666666666,0.65,1,25 -tomato,0.5716666666666665,0.55,0.6833333333333333,0.5666666666666667,1,26 -cellphone,0.5666666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -potato,0.7333333333333333,1.0,0.6333333333333333,0.7333333333333333,1,25 -light,0.9016666666666666,1.0,0.8666666666666666,0.9199999999999999,2,25 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9083333333333332,1.0,0.9,0.9400000000000001,2,26 -ceramic,0.7416666666666666,1.0,0.7166666666666666,0.8,1,24 -yellow,0.9833333333333334,0.95,1.0,0.9666666666666666,6,24 -looks,0.6,0.95,0.6166666666666666,0.6833333333333333,1,24 -keyboard,0.6066666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -glue,0.4,1.0,0.4833333333333332,0.6166666666666666,1,26 -milk,0,0,0,0,1,26 -cola,0.6483333333333333,1.0,0.55,0.6833333333333333,1,26 -flashlight,0.7933333333333332,1.0,0.6833333333333333,0.7833333333333334,1,26 -cup,0.4533333333333333,0.5,0.5833333333333333,0.51,1,26 -folded,0.6716666666666666,1.0,0.5166666666666666,0.6666666666666667,1,26 -jam,0.605,1.0,0.4666666666666666,0.6166666666666667,1,26 -black,0.8066666666666666,0.6,1.0,0.74,6,21 -orange,1.0,1.0,1.0,1.0,3,26 -folder,0.6916666666666667,1.0,0.7,0.7833333333333333,1,26 -soccer,0.6166666666666666,1.0,0.5,0.65,1,26 -hat,0.7083333333333333,1.0,0.65,0.75,1,26 -brown,0.9216666666666666,1.0,0.9,0.9400000000000001,2,24 -coffee,0.65,1.0,0.6833333333333333,0.7666666666666666,1,25 -handle,0.6433333333333333,1.0,0.5833333333333333,0.7,1,26 -food,0.7466666666666666,1.0,0.7499999999999999,0.8166666666666667,1,25 -towel,0.6183333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -chips,0.675,1.0,0.6,0.7166666666666667,1,26 -stapler,0.7333333333333333,1.0,0.75,0.8166666666666667,1,26 -onion,0.5466666666666666,0.95,0.5833333333333333,0.6666666666666667,1,26 -bag,0.72,1.0,0.5666666666666667,0.7,1,26 -sponge,0.48,1.0,0.41666666666666663,0.5833333333333333,1,26 -zero,0,0,0,0,1,26 -computer,0.6466666666666667,1.0,0.5833333333333333,0.7,1,25 -special,0.735,1.0,0.65,0.75,1,26 -colgate,0.6666666666666666,1.0,0.5833333333333333,0.7,1,26 -leaf,0.63,1.0,0.4999999999999999,0.65,1,26 -tube,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333334,1,26 -cell,0.8133333333333332,1.0,0.6833333333333333,0.7833333333333333,1,26 -mug,0.6933333333333334,1.0,0.6,0.7166666666666667,1,25 -yogurt,0.635,1.0,0.6,0.7166666666666667,1,26 -plantain,0.5549999999999999,1.0,0.55,0.6833333333333333,1,26 -red,0.9833333333333334,0.95,1.0,0.9666666666666666,3,25 -pepper,0.73,1.0,0.6666666666666666,0.7666666666666667,1,26 -wheat,0.7883333333333333,1.0,0.7666666666666666,0.8333333333333333,1,26 -kleenex,0.65,1.0,0.6333333333333333,0.7333333333333333,1,26 -toothbrush,0.7216666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -binder,0.7,1.0,0.7333333333333332,0.8,1,26 -baseball,0.6733333333333332,1.0,0.5999999999999999,0.7166666666666666,1,26 -pliers,0.6433333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,27 -water,0.6716666666666666,1.0,0.6499999999999999,0.75,1,26 -thins,0.5833333333333333,1.0,0.5999999999999999,0.7,1,26 -package,0.7016666666666667,1.0,0.5333333333333333,0.6833333333333333,1,26 -k,0.625,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.5833333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -fruit,0.75,0.6833333333333333,0.8666666666666668,0.72,2,25 -apple,0.7466666666666666,1.0,0.6499999999999999,0.75,1,25 -bell,0.7183333333333333,1.0,0.6166666666666666,0.7333333333333333,1,26 -battery,0.425,1.0,0.4833333333333334,0.6166666666666666,1,26 -jar,0.6833333333333333,1.0,0.6499999999999999,0.75,1,26 -bound,0.6216666666666666,1.0,0.5333333333333333,0.6666666666666667,1,26 -lettuce,0.6333333333333333,1.0,0.5833333333333333,0.7,1,26 -brush,0.675,1.0,0.5999999999999999,0.7166666666666666,1,26 -scissors,0.7583333333333333,1.0,0.75,0.8166666666666667,1,26 -lime,0.7416666666666666,1.0,0.6833333333333333,0.7666666666666666,1,25 -toothpaste,0.8966666666666667,1.0,0.8333333333333333,0.8833333333333332,1,26 -top,0.71,1.0,0.6,0.7166666666666667,1,26 -spiral,0.905,1.0,0.8,0.8666666666666666,1,26 -handles,0.7666666666666666,1.0,0.8166666666666667,0.8666666666666666,1,25 -camera,0.8300000000000001,1.0,0.7166666666666666,0.8,1,26 -eraser,0.48,1.0,0.4666666666666666,0.6166666666666667,1,26 -creamer,0,0,0,0,1,26 -white,0.865,0.7333333333333334,1.0,0.8333333333333334,5,21 -banana,0.6983333333333334,1.0,0.5999999999999999,0.7166666666666667,1,26 -pitcher,0.7766666666666666,1.0,0.6666666666666666,0.7666666666666667,1,26 -phone,0.7633333333333333,1.0,0.7166666666666666,0.8,1,26 -stick,0.7666666666666666,1.0,0.7166666666666666,0.8,1,25 -cereal,0.6133333333333333,1.0,0.5166666666666666,0.65,1,26 -bulb,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,27 -hair,0.6599999999999999,1.0,0.5833333333333333,0.7,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.6466666666666667,1.0,0.5333333333333333,0.6666666666666667,1,26 -can,0.85,1.0,0.8333333333333333,0.9,2,26 -coca,0.625,1.0,0.5999999999999999,0.7166666666666666,1,26 -crackers,0.5249999999999999,1.0,0.4166666666666667,0.5833333333333333,1,26 -plate,0.78,1.0,0.7666666666666666,0.8333333333333333,1,25 -calculator,0.33999999999999997,0.75,0.45,0.5133333333333334,1,26 -tissues,0.5833333333333333,1.0,0.5166666666666666,0.65,1,26 -juice,0.8166666666666667,1.0,0.8166666666666667,0.8666666666666666,1,26 -pink,0.755,1.0,0.7166666666666666,0.8,1,25 -lemon,0.6516666666666666,1.0,0.5833333333333333,0.7,1,26 -peach,0.6783333333333333,1.0,0.55,0.6833333333333333,1,26 -bowl,0.625,1.0,0.4999999999999999,0.6333333333333333,1,26 -camouflage,0,0,0,0,1,26 -digital,0.6749999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -blue,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,25 -used,0.6583333333333333,1.0,0.6166666666666666,0.7166666666666667,1,23 -energizer,0,0,0,0,1,26 -pear,0.7333333333333333,1.0,0.65,0.75,1,26 -ball,0.7233333333333334,1.0,0.6,0.7166666666666667,1,25 -notebook,0.755,1.0,0.6499999999999999,0.75,1,26 -garlic,0.6333333333333333,1.0,0.6666666666666666,0.75,1,26 -cleaning,0.505,1.0,0.41666666666666663,0.5833333333333333,1,26 -pair,0.93,1.0,0.9,0.9400000000000001,2,27 -container,0.6916666666666667,1.0,0.5833333333333333,0.7,1,25 -tomato,0.7066666666666668,0.9,0.65,0.7,1,26 -cellphone,0.6249999999999999,1.0,0.6333333333333332,0.7333333333333333,1,26 -potato,0.65,1.0,0.7,0.7833333333333333,1,25 -light,0.9216666666666666,1.0,0.9,0.9400000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9133333333333333,1.0,0.9,0.9400000000000001,2,26 -ceramic,0.55,1.0,0.4833333333333333,0.6333333333333333,1,24 -yellow,0.95,0.85,1.0,0.9,6,25 -looks,0.30833333333333335,1.0,0.3666666666666667,0.5333333333333333,1,24 -keyboard,0.7266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,26 -glue,0.8366666666666667,1.0,0.6833333333333333,0.7833333333333333,1,26 -milk,0,0,0,0,1,26 -cola,0.6183333333333333,1.0,0.5833333333333333,0.7,1,26 -flashlight,0.58,1.0,0.5666666666666667,0.6833333333333333,1,26 -cup,0.3416666666666667,0.5,0.6166666666666666,0.5166666666666667,1,26 -folded,0.74,1.0,0.5666666666666667,0.7,1,26 -jam,0.58,1.0,0.5833333333333333,0.7,1,26 -black,0.9233333333333335,0.8,1.0,0.8666666666666666,6,21 -orange,1.0,1.0,1.0,1.0,3,25 -folder,0.6716666666666666,1.0,0.6,0.7166666666666666,1,26 -soccer,0.58,1.0,0.4833333333333333,0.6333333333333334,1,26 -hat,0.585,1.0,0.5333333333333332,0.6666666666666666,1,26 -brown,0.9466666666666667,1.0,0.9333333333333332,0.9600000000000002,2,24 -coffee,0.7333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,25 -handle,0.63,1.0,0.6333333333333333,0.7333333333333333,1,25 -food,0.63,1.0,0.6,0.7166666666666667,1,25 -towel,0.7583333333333333,1.0,0.6499999999999999,0.75,1,26 -chips,0.7133333333333334,1.0,0.5666666666666667,0.7,1,26 -stapler,0.7016666666666667,1.0,0.5833333333333333,0.7166666666666667,1,26 -onion,0.6766666666666666,1.0,0.65,0.75,1,26 -bag,0.725,1.0,0.7166666666666666,0.8,1,26 -sponge,0.7216666666666666,1.0,0.65,0.75,1,26 -zero,0,0,0,0,1,26 -computer,0.5833333333333333,1.0,0.5333333333333332,0.6666666666666666,1,25 -special,0.4966666666666666,1.0,0.4999999999999999,0.6333333333333333,1,26 -colgate,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,26 -leaf,0.605,1.0,0.4833333333333333,0.6333333333333334,1,26 -tube,0.6633333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -cell,0.5316666666666666,0.55,0.6666666666666666,0.5566666666666666,1,26 -mug,0.6799999999999999,1.0,0.6499999999999999,0.75,1,25 -yogurt,0.6466666666666666,1.0,0.6,0.7166666666666667,1,26 -plantain,0.6766666666666665,1.0,0.6333333333333333,0.7333333333333333,1,26 -red,0.905,0.7916666666666666,1.0,0.8657142857142859,3,24 -pepper,0.6083333333333333,1.0,0.5333333333333333,0.6666666666666666,1,26 -wheat,0.6466666666666667,1.0,0.5166666666666666,0.6666666666666667,1,26 -kleenex,0.6399999999999999,1.0,0.5333333333333333,0.6666666666666667,1,26 -toothbrush,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666667,1,26 -binder,0.625,1.0,0.5333333333333333,0.6666666666666667,1,26 -baseball,0.6333333333333333,1.0,0.6666666666666666,0.75,1,26 -pliers,0.7183333333333334,1.0,0.6166666666666666,0.7333333333333333,1,26 -paste,0,0,0,0,1,26 -box,1.0,1.0,1.0,1.0,3,26 -water,0.63,1.0,0.6333333333333333,0.7333333333333333,1,26 -thins,0.605,1.0,0.5166666666666666,0.65,1,26 -package,0.6599999999999999,1.0,0.55,0.6833333333333333,1,26 -k,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,26 -jelly,0.7849999999999999,1.0,0.6666666666666666,0.7666666666666667,1,26 -fruit,0.7766666666666666,0.6833333333333333,0.9,0.7533333333333334,2,26 -apple,0.7333333333333334,0.95,0.7,0.75,1,25 -bell,0.7083333333333333,1.0,0.5333333333333333,0.6833333333333333,1,26 -battery,0.5966666666666667,1.0,0.5833333333333333,0.7,1,26 -jar,0.7166666666666666,1.0,0.65,0.75,1,26 -bound,0.5766666666666667,1.0,0.4666666666666666,0.6166666666666667,1,26 -lettuce,0.375,1.0,0.4999999999999999,0.6333333333333333,1,26 -brush,0.6833333333333333,1.0,0.5999999999999999,0.7166666666666667,1,26 -scissors,0.5833333333333333,1.0,0.5833333333333333,0.7,1,26 -lime,0.7,1.0,0.5666666666666667,0.7,1,25 -toothpaste,0.6016666666666667,1.0,0.4833333333333333,0.6333333333333333,1,26 -top,0.8549999999999999,1.0,0.75,0.8333333333333334,1,26 -spiral,0.6933333333333334,1.0,0.65,0.75,1,26 -handles,0.7783333333333333,1.0,0.5833333333333333,0.7166666666666667,1,25 -camera,0.585,1.0,0.5333333333333333,0.6666666666666667,1,26 -eraser,0.8433333333333334,1.0,0.7,0.8,1,26 -creamer,0,0,0,0,1,26 -white,1.0,1.0,1.0,1.0,5,20 -banana,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,26 -pitcher,0.6716666666666666,1.0,0.5666666666666667,0.6833333333333333,1,26 -phone,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -stick,0.7249999999999999,1.0,0.6166666666666666,0.7333333333333333,1,25 -cereal,0.755,1.0,0.6666666666666666,0.7666666666666666,1,26 -bulb,0.9466666666666667,1.0,0.9333333333333332,0.96,2,27 -hair,0.6733333333333333,1.0,0.6,0.7166666666666667,1,25 -vanilla,0,0,0,0,1,26 -older,0,0,0,0,1,26 -shampoo,0.64,1.0,0.4666666666666666,0.6166666666666666,1,26 -can,0.8550000000000001,1.0,0.8333333333333333,0.9,2,24 -coca,0.705,1.0,0.65,0.75,1,26 -crackers,0.6216666666666667,1.0,0.6,0.7166666666666667,1,26 -plate,0.705,1.0,0.65,0.75,1,25 -calculator,0.7216666666666667,0.9,0.6833333333333333,0.7166666666666667,1,26 -tissues,0.8416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,26 -juice,0.78,1.0,0.6666666666666666,0.7666666666666667,1,26 -pink,0.4666666666666667,1.0,0.4999999999999999,0.6333333333333333,1,25 -lemon,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666667,1,26 -peach,0.39999999999999997,1.0,0.4999999999999999,0.6333333333333333,1,26 -bowl,0.5516666666666666,1.0,0.5333333333333333,0.6666666666666666,1,26 -camouflage,0,0,0,0,1,26 -digital,0.5933333333333334,1.0,0.4833333333333333,0.6333333333333333,1,26 -blue,0.5599999999999999,1.0,0.4999999999999999,0.6333333333333333,1,25 -used,0.3966666666666666,1.0,0.4499999999999999,0.6,1,24 -energizer,0,0,0,0,1,26 -pear,0.69,1.0,0.55,0.6833333333333333,1,26 -ball,0.6416666666666666,1.0,0.6333333333333332,0.7333333333333333,1,25 -notebook,0.825,1.0,0.7666666666666666,0.8333333333333333,1,26 -garlic,0.6216666666666667,1.0,0.5833333333333333,0.7,1,26 -cleaning,0.5933333333333334,1.0,0.5666666666666667,0.6833333333333333,1,26 -pair,0.9400000000000001,1.0,0.8999999999999998,0.9400000000000001,2,26 -container,0.7266666666666667,1.0,0.7,0.7833333333333333,1,25 -tomato,0.6066666666666667,0.8,0.6,0.6,1,26 -cellphone,0.5083333333333333,0.55,0.6666666666666666,0.5566666666666666,1,26 -potato,0.8383333333333333,1.0,0.7,0.8,1,25 -light,0.8433333333333334,1.0,0.8,0.8800000000000001,2,26 -green,1.0,1.0,1.0,1.0,3,24 -bottle,0.9349999999999999,1.0,0.9,0.9400000000000001,2,25 diff --git a/Validation/results.txt b/Validation/results.txt deleted file mode 100644 index 6ba1e57..0000000 --- a/Validation/results.txt +++ /dev/null @@ -1,840 +0,0 @@ -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -apple,-0.075,0.27499999999999997,0.5833333333333333,0.3342857142857143,1,9 -battery,-0.016666666666666673,0.27,0.6499999999999999,0.34285714285714286,1,9 -jar,-0.01666666666666667,0.2866666666666666,0.6166666666666666,0.35428571428571426,1,9 -calculator,-0.0016666666666666607,0.2733333333333333,0.6499999999999999,0.35523809523809524,1,9 -yellow,0.02833333333333334,0.24,0.7166666666666666,0.3276190476190476,1,8 -sponge,-0.03333333333333334,0.23166666666666663,0.6499999999999999,0.3019047619047619,1,9 -keyboard,-0.021666666666666667,0.2616666666666666,0.7333333333333333,0.3342857142857143,1,9 -scissors,-0.005000000000000002,0.24833333333333335,0.7,0.3247619047619047,1,9 -glue,-0.04666666666666667,0.30333333333333334,0.7,0.3571428571428571,1,9 -special,-0.225,0.30999999999999994,0.4,0.3247619047619047,1,9 -lime,0.08,0.27166666666666667,0.7833333333333333,0.3666666666666667,1,9 -lemon,-0.01666666666666667,0.2733333333333333,0.6166666666666666,0.3457142857142857,1,9 -bowl,-0.04666666666666667,0.2683333333333333,0.6,0.33428571428571424,1,9 -mug,0.024999999999999998,0.275,0.7166666666666666,0.35714285714285715,1,9 -camera,0.043333333333333335,0.225,0.7166666666666666,0.320952380952381,1,9 -yogurt,-0.12166666666666666,0.25333333333333335,0.5,0.3114285714285715,1,9 -soccer,-0.04333333333333333,0.29000000000000004,0.6833333333333332,0.3552380952380953,1,9 -tomato,0.006666666666666668,0.23833333333333334,0.6166666666666666,0.3228571428571429,1,9 -pepper,-0.02166666666666666,0.265,0.6166666666666666,0.33714285714285713,1,9 -ball,-0.075,0.2816666666666667,0.4666666666666666,0.3390476190476191,1,9 -wheat,-0.021666666666666664,0.24333333333333335,0.5666666666666667,0.32095238095238093,1,9 -pear,-0.12666666666666668,0.31833333333333336,0.6333333333333333,0.34571428571428575,1,9 -toothbrush,-0.2166666666666667,0.35333333333333333,0.4999999999999999,0.35904761904761906,1,9 -notebook,-0.06166666666666666,0.28833333333333333,0.6833333333333333,0.3438095238095238,1,9 -stick,-0.11833333333333333,0.31333333333333335,0.5833333333333333,0.3504761904761905,1,9 -pliers,-0.11333333333333333,0.27666666666666667,0.4833333333333333,0.3304761904761905,1,9 -box,0.2783333333333333,0.4033333333333333,0.8666666666666666,0.49428571428571433,2,9 -water,-0.05833333333333333,0.25166666666666665,0.5,0.3228571428571429,1,9 -stapler,-0.046666666666666676,0.2866666666666667,0.65,0.3457142857142857,1,9 -thins,-0.16666666666666666,0.29333333333333333,0.4666666666666666,0.3247619047619047,1,9 -k,0.02,0.23166666666666663,0.7,0.3228571428571429,1,9 -can,0.09833333333333333,0.23166666666666663,0.8166666666666667,0.34095238095238095,1,9 -bottle,-0.225,0.295,0.38333333333333336,0.320952380952381,1,9 -Threshold : 0.0 -Folder Number: 6000 -Accuracy: -0.04065656565656566 -F1-Score: 0.34152958152958157 -Precision: 0.2766161616161616 -Recall: 0.6227272727272727 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -apple,0.4766666666666667,0.6499999999999999,0.6333333333333333,0.5233333333333333,1,9 -battery,0.385,0.85,0.5499999999999999,0.5666666666666667,1,9 -jar,0.6333333333333333,1.0,0.6666666666666666,0.75,1,9 -calculator,0.6849999999999999,1.0,0.6,0.7166666666666667,1,9 -yellow,0.7266666666666667,1.0,0.5666666666666667,0.7,1,8 -sponge,0.6083333333333333,1.0,0.5833333333333333,0.7,1,9 -keyboard,0.7766666666666666,1.0,0.6,0.7333333333333333,1,9 -scissors,0.71,1.0,0.5999999999999999,0.7166666666666666,1,9 -glue,0.6500000000000001,1.0,0.55,0.6833333333333333,1,9 -special,0.5516666666666665,0.75,0.5333333333333333,0.55,1,9 -lime,0.6033333333333333,0.65,0.75,0.6066666666666667,1,9 -lemon,0.7583333333333333,1.0,0.7,0.7833333333333333,1,9 -bowl,0.475,0.55,0.5833333333333333,0.52,1,9 -mug,0.7733333333333333,1.0,0.7166666666666666,0.8,1,9 -camera,0.8800000000000001,1.0,0.8833333333333332,0.9166666666666666,1,9 -yogurt,0.6849999999999999,1.0,0.5499999999999999,0.6833333333333333,1,9 -soccer,0.6183333333333333,1.0,0.5333333333333333,0.6666666666666667,1,9 -tomato,0.5716666666666665,0.55,0.6833333333333333,0.5666666666666667,1,9 -pepper,0.7266666666666666,1.0,0.6499999999999999,0.75,1,9 -ball,0.8466666666666667,1.0,0.7333333333333333,0.8166666666666667,1,9 -wheat,0.7633333333333334,1.0,0.6666666666666666,0.7666666666666667,1,9 -pear,0.63,1.0,0.6333333333333333,0.7333333333333333,1,9 -toothbrush,0.7566666666666666,1.0,0.65,0.75,1,9 -notebook,0.6599999999999999,1.0,0.6,0.7166666666666667,1,9 -stick,0.65,1.0,0.7333333333333333,0.8,1,9 -pliers,0.4133333333333333,0.5,0.5666666666666667,0.5133333333333334,1,9 -box,0.9800000000000001,1.0,0.9666666666666666,0.9800000000000001,2,9 -water,0.5133333333333333,1.0,0.5499999999999999,0.6666666666666666,1,9 -stapler,0.4416666666666666,1.0,0.4499999999999999,0.6,1,9 -thins,0.775,1.0,0.7,0.7833333333333333,1,9 -k,0.6466666666666666,0.8,0.6166666666666666,0.65,1,9 -can,0.6583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,8 -bottle,0.7883333333333333,1.0,0.6833333333333333,0.7833333333333333,1,9 -Threshold : 0.05 -Folder Number: 6000 -Accuracy: 0.6611616161616161 -F1-Score: 0.7033333333333334 -Precision: 0.9181818181818182 -Recall: 0.6393939393939393 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -apple,0.6333333333333334,0.5999999999999999,0.7499999999999999,0.55,1,9 -battery,0.5999999999999999,0.9,0.6,0.65,1,9 -jar,0.5266666666666666,0.95,0.4999999999999999,0.6,1,9 -calculator,0.6916666666666667,1.0,0.5499999999999999,0.6833333333333333,1,9 -yellow,0.42333333333333334,0.85,0.5166666666666666,0.5666666666666667,1,8 -sponge,0.7666666666666666,1.0,0.6666666666666666,0.7666666666666667,1,9 -keyboard,0.6416666666666666,1.0,0.5833333333333333,0.7,1,9 -scissors,0.6416666666666666,1.0,0.5833333333333333,0.7,1,9 -glue,0.6849999999999999,1.0,0.6,0.7166666666666667,1,9 -special,0.58,1.0,0.5333333333333333,0.6666666666666666,1,9 -lime,0.6833333333333333,1.0,0.7,0.7833333333333333,1,9 -lemon,0.9100000000000001,1.0,0.8,0.8666666666666666,1,9 -bowl,0.40166666666666667,0.55,0.5666666666666667,0.51,1,9 -mug,0.7499999999999999,1.0,0.7499999999999999,0.8166666666666667,1,9 -camera,0.5299999999999999,1.0,0.5166666666666666,0.65,1,9 -yogurt,0.7716666666666666,1.0,0.6666666666666666,0.7666666666666667,1,9 -soccer,0.78,1.0,0.7666666666666666,0.8333333333333333,1,9 -tomato,0.4583333333333333,0.3666666666666667,0.75,0.47000000000000003,1,9 -pepper,0.8200000000000001,1.0,0.6833333333333333,0.7833333333333333,1,9 -ball,0.6383333333333334,1.0,0.5499999999999999,0.6833333333333333,1,9 -wheat,0.7416666666666666,1.0,0.7166666666666666,0.8,1,9 -pear,0.7183333333333333,1.0,0.6499999999999999,0.75,1,9 -toothbrush,0.6633333333333333,1.0,0.5833333333333333,0.7,1,9 -notebook,0.5666666666666667,1.0,0.5999999999999999,0.7,1,9 -stick,0.43,1.0,0.4,0.5666666666666667,1,9 -pliers,0.4600000000000001,0.5,0.7,0.5533333333333335,1,9 -box,0.8933333333333333,1.0,0.8666666666666666,0.9200000000000002,2,9 -water,0.71,1.0,0.65,0.75,1,9 -stapler,0.5933333333333333,1.0,0.6333333333333333,0.7333333333333333,1,9 -thins,0.805,1.0,0.7166666666666666,0.8,1,9 -k,0.705,1.0,0.7,0.7833333333333333,1,9 -can,0.65,1.0,0.5833333333333333,0.7,1,9 -bottle,0.5416666666666666,1.0,0.5833333333333333,0.7,1,9 -Threshold : 0.1 -Folder Number: 6000 -Accuracy: 0.6488383838383838 -F1-Score: 0.7036363636363637 -Precision: 0.9308080808080809 -Recall: 0.6368686868686867 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -apple,0.5666666666666667,0.95,0.5833333333333333,0.6666666666666666,1,9 -battery,0.7433333333333333,1.0,0.5999999999999999,0.7166666666666666,1,9 -jar,0.6599999999999999,1.0,0.4833333333333333,0.6333333333333333,1,9 -calculator,0.6766666666666666,1.0,0.5999999999999999,0.7166666666666667,1,9 -yellow,0.6216666666666666,1.0,0.5166666666666666,0.65,1,8 -sponge,0.7999999999999999,1.0,0.7166666666666666,0.8,1,9 -keyboard,0.6083333333333332,1.0,0.5666666666666667,0.6833333333333333,1,9 -scissors,0.7183333333333334,1.0,0.5666666666666667,0.7,1,9 -glue,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,9 -special,0.605,1.0,0.4833333333333333,0.6333333333333333,1,9 -lime,0.755,1.0,0.6166666666666666,0.7333333333333333,1,9 -lemon,0.4766666666666667,1.0,0.4999999999999999,0.6333333333333333,1,9 -bowl,0.5416666666666667,1.0,0.5333333333333333,0.6666666666666667,1,9 -mug,0.6166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,9 -camera,0.7999999999999999,1.0,0.7499999999999999,0.8166666666666667,1,9 -yogurt,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,9 -soccer,0.6,1.0,0.5499999999999999,0.6833333333333333,1,9 -tomato,0.48,0.6333333333333333,0.5999999999999999,0.52,1,9 -pepper,0.5883333333333333,1.0,0.4833333333333332,0.6333333333333333,1,9 -ball,0.54,1.0,0.5333333333333333,0.6666666666666667,1,9 -wheat,0.5933333333333334,1.0,0.6333333333333333,0.7333333333333333,1,9 -pear,0.7216666666666666,1.0,0.6666666666666666,0.7666666666666666,1,9 -toothbrush,0.7333333333333333,1.0,0.6499999999999999,0.75,1,9 -notebook,0.8800000000000001,1.0,0.8833333333333332,0.9166666666666666,1,9 -stick,0.625,1.0,0.5333333333333332,0.6666666666666666,1,9 -pliers,0.6449999999999999,1.0,0.5,0.65,1,9 -box,0.8699999999999999,1.0,0.8,0.8800000000000001,2,9 -water,0.5666666666666667,1.0,0.5166666666666666,0.65,1,9 -stapler,0.73,1.0,0.7166666666666666,0.8,1,9 -thins,0.4966666666666667,1.0,0.5166666666666666,0.65,1,9 -k,0.5766666666666667,0.95,0.5333333333333332,0.6333333333333333,1,9 -can,0.5,1.0,0.5499999999999999,0.6666666666666666,1,8 -bottle,0.7383333333333333,1.0,0.6666666666666666,0.7666666666666666,1,9 -Threshold : 0.15 -Folder Number: 6000 -Accuracy: 0.653080808080808 -F1-Score: 0.7080808080808081 -Precision: 0.9858585858585858 -Recall: 0.6015151515151514 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -apple,0.605,1.0,0.5833333333333333,0.7,1,9 -battery,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666667,1,9 -jar,0.8283333333333334,1.0,0.6833333333333333,0.7833333333333333,1,9 -calculator,0.5516666666666666,1.0,0.5166666666666666,0.65,1,9 -yellow,0.6416666666666666,1.0,0.5666666666666667,0.6833333333333333,1,8 -sponge,0.45499999999999996,1.0,0.4499999999999999,0.6,1,9 -keyboard,0.8466666666666667,1.0,0.7666666666666666,0.8333333333333333,1,9 -scissors,0.7916666666666667,1.0,0.7666666666666666,0.8333333333333334,1,9 -glue,0.7016666666666667,1.0,0.5666666666666667,0.7,1,9 -special,0.6066666666666667,0.8,0.5666666666666667,0.6333333333333333,1,9 -lime,0.7283333333333333,0.85,0.6666666666666666,0.7,1,9 -lemon,0.5883333333333333,1.0,0.4666666666666666,0.6166666666666667,1,9 -bowl,0.9166666666666666,1.0,0.8833333333333332,0.9166666666666666,1,9 -mug,0.73,1.0,0.7,0.7833333333333333,1,9 -camera,0.4416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,9 -yogurt,0.6516666666666667,1.0,0.5,0.65,1,9 -soccer,0.605,1.0,0.6,0.7166666666666667,1,9 -tomato,0.35333333333333333,0.3666666666666667,0.5833333333333333,0.4333333333333334,1,9 -pepper,0.625,1.0,0.6333333333333333,0.7333333333333333,1,9 -ball,0.8233333333333333,1.0,0.6833333333333333,0.7833333333333333,1,9 -wheat,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,9 -pear,0.5416666666666667,1.0,0.5166666666666666,0.65,1,9 -toothbrush,0.65,1.0,0.5333333333333333,0.6666666666666666,1,9 -notebook,0.6849999999999999,1.0,0.5999999999999999,0.7166666666666667,1,9 -stick,0.6083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,9 -pliers,0.5333333333333333,1.0,0.5166666666666666,0.65,1,9 -box,0.8283333333333334,1.0,0.7666666666666667,0.86,2,9 -water,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666666,1,9 -stapler,0.8466666666666667,1.0,0.8333333333333334,0.8833333333333332,1,9 -thins,0.7266666666666667,1.0,0.5666666666666667,0.7,1,9 -k,0.7066666666666667,0.75,0.7166666666666666,0.65,1,9 -can,0.75,1.0,0.7499999999999999,0.8166666666666667,1,9 -bottle,0.42666666666666664,1.0,0.5166666666666666,0.65,1,9 -Threshold : 0.2 -Folder Number: 6000 -Accuracy: 0.662070707070707 -F1-Score: 0.7119191919191918 -Precision: 0.9626262626262626 -Recall: 0.6191919191919191 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -apple,0.755,0.7333333333333333,0.75,0.6833333333333333,1,9 -battery,0.6383333333333333,1.0,0.5666666666666667,0.6833333333333333,1,9 -jar,0.71,1.0,0.6499999999999999,0.75,1,9 -calculator,0.6566666666666666,1.0,0.5333333333333333,0.6666666666666667,1,9 -yellow,0.6666666666666666,0.65,0.7166666666666666,0.6,1,8 -sponge,0.6333333333333333,1.0,0.55,0.6833333333333333,1,9 -keyboard,0.7416666666666666,1.0,0.7499999999999999,0.8166666666666667,1,9 -scissors,0.7066666666666667,1.0,0.5666666666666667,0.7,1,9 -glue,0.7833333333333334,1.0,0.6666666666666666,0.7666666666666667,1,9 -special,0.7383333333333334,1.0,0.6333333333333333,0.75,1,9 -lime,0.7150000000000001,1.0,0.5999999999999999,0.7166666666666667,1,9 -lemon,0.7266666666666667,1.0,0.6,0.7166666666666667,1,9 -bowl,0.7016666666666667,1.0,0.5666666666666667,0.7,1,9 -mug,0.7133333333333334,1.0,0.6166666666666666,0.7333333333333333,1,9 -camera,0.655,1.0,0.55,0.6833333333333333,1,9 -yogurt,0.6383333333333333,1.0,0.6333333333333333,0.7333333333333333,1,9 -soccer,0.6283333333333333,1.0,0.5166666666666666,0.6666666666666666,1,9 -tomato,0.2583333333333333,0.5666666666666667,0.5833333333333333,0.47000000000000003,1,9 -pepper,0.6666666666666666,1.0,0.7333333333333333,0.8,1,9 -ball,0.65,1.0,0.5833333333333333,0.7,1,9 -wheat,0.5433333333333333,1.0,0.5166666666666666,0.65,1,9 -pear,0.5216666666666667,1.0,0.4833333333333333,0.6333333333333334,1,9 -toothbrush,0.6133333333333333,1.0,0.5999999999999999,0.7166666666666667,1,9 -notebook,0.6933333333333332,1.0,0.5666666666666667,0.7,1,9 -stick,0.705,1.0,0.6,0.7166666666666667,1,9 -pliers,0.7183333333333333,1.0,0.65,0.75,1,9 -box,0.8866666666666667,1.0,0.8333333333333333,0.9,2,9 -water,0.5583333333333333,1.0,0.5166666666666666,0.65,1,9 -stapler,0.8216666666666667,1.0,0.7166666666666666,0.8,1,9 -thins,0.6216666666666666,1.0,0.5499999999999999,0.6833333333333333,1,9 -k,0.7766666666666666,1.0,0.7,0.7833333333333333,1,9 -can,0.5883333333333333,1.0,0.4833333333333333,0.6333333333333333,1,8 -bottle,0.7966666666666666,1.0,0.6833333333333333,0.7833333333333333,1,9 -Threshold : 0.25 -Folder Number: 6000 -Accuracy: 0.6735858585858586 -F1-Score: 0.7096969696969697 -Precision: 0.9681818181818183 -Recall: 0.6141414141414141 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -apple,0.6799999999999999,0.8,0.75,0.6833333333333333,1,9 -battery,0.7466666666666667,1.0,0.7499999999999999,0.8166666666666667,1,9 -jar,0.725,1.0,0.7,0.7833333333333333,1,9 -calculator,0.7633333333333333,1.0,0.7166666666666666,0.8,1,9 -yellow,0.76,1.0,0.6166666666666666,0.7333333333333333,1,8 -sponge,0.6216666666666667,1.0,0.4999999999999999,0.65,1,9 -keyboard,0.7683333333333333,1.0,0.6666666666666666,0.7666666666666666,1,9 -scissors,0.6083333333333333,1.0,0.5833333333333333,0.7,1,9 -glue,0.7383333333333333,1.0,0.6499999999999999,0.75,1,9 -special,0.6933333333333332,0.8,0.6166666666666666,0.65,1,9 -lime,0.5999999999999999,0.85,0.6,0.65,1,9 -lemon,0.725,1.0,0.7,0.7833333333333333,1,9 -bowl,0.635,1.0,0.5833333333333333,0.7,1,9 -mug,0.71,1.0,0.6166666666666666,0.7333333333333333,1,9 -camera,0.6916666666666667,1.0,0.6833333333333333,0.7666666666666666,1,9 -yogurt,0.3716666666666667,1.0,0.4,0.5666666666666667,1,9 -soccer,0.5383333333333333,1.0,0.5166666666666666,0.65,1,9 -tomato,0.4333333333333333,0.55,0.5666666666666667,0.5233333333333333,1,9 -pepper,0.7,1.0,0.7,0.7833333333333333,1,9 -ball,0.6766666666666666,1.0,0.6,0.7166666666666667,1,9 -wheat,0.4833333333333333,1.0,0.6,0.7,1,9 -pear,0.7466666666666667,1.0,0.6166666666666666,0.7333333333333333,1,9 -toothbrush,0.7433333333333333,1.0,0.5666666666666667,0.7,1,9 -notebook,0.63,1.0,0.5833333333333333,0.7,1,9 -stick,0.7933333333333332,1.0,0.6833333333333333,0.7833333333333333,1,9 -pliers,0.6516666666666666,1.0,0.5833333333333333,0.7,1,9 -box,0.8966666666666667,1.0,0.8666666666666666,0.9199999999999999,2,9 -water,0.65,1.0,0.55,0.6833333333333333,1,9 -stapler,0.6516666666666667,1.0,0.5166666666666666,0.6666666666666667,1,9 -thins,0.6983333333333334,1.0,0.5166666666666666,0.6666666666666667,1,9 -k,0.6599999999999999,0.9,0.7,0.7166666666666666,1,9 -can,0.7883333333333333,1.0,0.7,0.7833333333333333,1,9 -bottle,0.6666666666666666,1.0,0.5833333333333333,0.7,1,9 -Threshold : 0.3 -Folder Number: 6000 -Accuracy: 0.6741414141414142 -F1-Score: 0.7169696969696969 -Precision: 0.9666666666666667 -Recall: 0.6237373737373737 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -apple,0.5800000000000001,0.6833333333333332,0.7,0.55,1,9 -battery,0.6666666666666666,1.0,0.6333333333333333,0.7333333333333333,1,9 -jar,0.53,1.0,0.4666666666666666,0.6166666666666666,1,9 -calculator,0.44333333333333336,1.0,0.4666666666666666,0.6166666666666667,1,9 -yellow,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,8 -sponge,0.7833333333333333,1.0,0.7166666666666666,0.8,1,9 -keyboard,0.73,1.0,0.75,0.8166666666666667,1,9 -scissors,0.5316666666666666,1.0,0.4333333333333334,0.6,1,9 -glue,0.6799999999999999,1.0,0.5999999999999999,0.7166666666666667,1,9 -special,0.7083333333333334,0.85,0.6166666666666666,0.6333333333333334,1,9 -lime,0.605,1.0,0.5833333333333333,0.7,1,9 -lemon,0.5416666666666666,1.0,0.5499999999999999,0.6666666666666666,1,9 -bowl,0.575,1.0,0.5333333333333333,0.6666666666666667,1,9 -mug,0.6333333333333333,1.0,0.55,0.6833333333333333,1,9 -camera,0.63,1.0,0.5833333333333333,0.7,1,9 -yogurt,0.7583333333333333,1.0,0.7,0.7833333333333333,1,9 -soccer,0.73,1.0,0.7166666666666666,0.8,1,9 -tomato,0.33999999999999997,0.4333333333333333,0.6333333333333333,0.44333333333333336,1,9 -pepper,0.8683333333333334,1.0,0.7833333333333333,0.85,1,9 -ball,0.7883333333333333,1.0,0.7166666666666666,0.8,1,9 -wheat,0.6883333333333332,1.0,0.6499999999999999,0.75,1,9 -pear,0.54,1.0,0.4499999999999999,0.6,1,9 -toothbrush,0.6733333333333332,1.0,0.65,0.75,1,9 -notebook,0.6583333333333333,1.0,0.6333333333333332,0.7333333333333333,1,9 -stick,0.7333333333333333,1.0,0.6666666666666666,0.7666666666666666,1,9 -pliers,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,9 -box,0.9416666666666667,1.0,0.9333333333333332,0.96,2,9 -water,0.7716666666666667,1.0,0.6833333333333333,0.7833333333333334,1,9 -stapler,0.6666666666666666,1.0,0.5666666666666667,0.6833333333333333,1,9 -thins,0.76,1.0,0.5999999999999999,0.7166666666666666,1,9 -k,0.6316666666666667,0.8,0.5166666666666666,0.6,1,9 -can,0.8800000000000001,1.0,0.7833333333333333,0.85,1,9 -bottle,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666667,1,9 -Threshold : 0.35 -Folder Number: 6000 -Accuracy: 0.6709090909090908 -F1-Score: 0.7152525252525254 -Precision: 0.9626262626262626 -Recall: 0.6303030303030304 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -apple,0.6133333333333333,1.0,0.4999999999999999,0.65,1,9 -battery,0.5833333333333333,1.0,0.5833333333333333,0.7,1,9 -jar,0.42666666666666664,1.0,0.4499999999999999,0.6,1,9 -calculator,0.6133333333333333,1.0,0.6166666666666666,0.7166666666666666,1,9 -yellow,0.5966666666666667,0.95,0.6333333333333333,0.7,1,8 -sponge,0.5633333333333332,1.0,0.4499999999999999,0.6,1,9 -keyboard,0.805,1.0,0.7666666666666666,0.8333333333333333,1,9 -scissors,0.7866666666666666,1.0,0.6,0.7333333333333333,1,9 -glue,0.6333333333333333,1.0,0.6166666666666666,0.7166666666666666,1,9 -special,0.6383333333333334,1.0,0.4333333333333333,0.6,1,9 -lime,0.78,1.0,0.7166666666666666,0.8,1,9 -lemon,0.73,1.0,0.6666666666666666,0.7666666666666667,1,9 -bowl,0.7916666666666666,1.0,0.7499999999999999,0.8166666666666667,1,9 -mug,0.575,1.0,0.4833333333333332,0.6166666666666666,1,9 -camera,0.7833333333333333,1.0,0.7,0.7833333333333333,1,9 -yogurt,0.76,1.0,0.65,0.75,1,9 -soccer,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,9 -tomato,0.4499999999999999,0.4,0.7333333333333333,0.48,1,9 -pepper,0.4333333333333333,1.0,0.5666666666666667,0.6833333333333333,1,9 -ball,0.9216666666666666,1.0,0.85,0.9,1,9 -wheat,0.6166666666666667,1.0,0.5833333333333333,0.7,1,9 -pear,0.655,1.0,0.5833333333333333,0.7,1,9 -toothbrush,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,9 -notebook,0.8183333333333334,1.0,0.6833333333333333,0.7833333333333333,1,9 -stick,0.705,1.0,0.7,0.7833333333333333,1,9 -pliers,0.36333333333333334,1.0,0.4333333333333334,0.5833333333333333,1,9 -box,0.9550000000000001,1.0,0.9333333333333332,0.9600000000000002,2,9 -water,0.825,1.0,0.7333333333333333,0.8166666666666667,1,9 -stapler,0.8266666666666668,1.0,0.7833333333333333,0.85,1,9 -thins,0.6683333333333333,1.0,0.55,0.6833333333333333,1,9 -k,0.7683333333333333,1.0,0.6833333333333333,0.7833333333333333,1,9 -can,0.675,1.0,0.6833333333333333,0.7666666666666667,1,9 -bottle,0.525,1.0,0.4666666666666666,0.6166666666666667,1,9 -Threshold : 0.4 -Folder Number: 6000 -Accuracy: 0.678030303030303 -F1-Score: 0.7274747474747475 -Precision: 0.9803030303030303 -Recall: 0.6338383838383838 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -apple,0.32833333333333337,0.6333333333333333,0.5666666666666667,0.48,1,9 -battery,0.58,1.0,0.5499999999999999,0.6666666666666666,1,9 -jar,0.63,1.0,0.5833333333333333,0.7,1,9 -calculator,0.6916666666666667,1.0,0.6166666666666666,0.7166666666666666,1,9 -yellow,0.6233333333333333,1.0,0.5499999999999999,0.6833333333333333,1,8 -sponge,0.5666666666666667,1.0,0.4999999999999999,0.6333333333333333,1,9 -keyboard,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666666,1,9 -scissors,0.7816666666666666,1.0,0.6166666666666666,0.7333333333333333,1,9 -glue,0.7,1.0,0.6499999999999999,0.75,1,9 -special,0.71,1.0,0.5833333333333333,0.7,1,9 -lime,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666667,1,9 -lemon,0.71,1.0,0.6333333333333333,0.7333333333333333,1,9 -bowl,0.62,1.0,0.55,0.6833333333333333,1,9 -mug,0.74,1.0,0.6166666666666666,0.7333333333333333,1,9 -camera,0.7883333333333333,1.0,0.6666666666666666,0.7666666666666667,1,9 -yogurt,0.4999999999999999,1.0,0.4999999999999999,0.6333333333333333,1,9 -soccer,0.8333333333333333,1.0,0.7333333333333333,0.8166666666666667,1,9 -tomato,0.6033333333333333,0.5,0.7333333333333333,0.5733333333333334,1,9 -pepper,0.7183333333333333,1.0,0.6166666666666666,0.7333333333333333,1,9 -ball,0.7,1.0,0.6499999999999999,0.75,1,9 -wheat,0.6799999999999999,1.0,0.6333333333333333,0.7333333333333333,1,9 -pear,0.7,1.0,0.6,0.7166666666666667,1,9 -toothbrush,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,9 -notebook,0.74,1.0,0.6666666666666666,0.7666666666666666,1,9 -stick,0.6100000000000001,1.0,0.55,0.6833333333333333,1,9 -pliers,0.5883333333333334,1.0,0.6,0.7166666666666667,1,9 -box,0.8566666666666667,1.0,0.8,0.8800000000000001,2,9 -water,0.525,1.0,0.5166666666666666,0.65,1,9 -stapler,0.575,1.0,0.5666666666666667,0.6833333333333333,1,9 -thins,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,9 -k,0.5883333333333334,1.0,0.5166666666666666,0.65,1,9 -can,0.6849999999999999,1.0,0.6,0.7166666666666667,1,9 -bottle,0.58,1.0,0.4833333333333333,0.6333333333333333,1,9 -Threshold : 0.45 -Folder Number: 6000 -Accuracy: 0.666111111111111 -F1-Score: 0.7085858585858585 -Precision: 0.9737373737373737 -Recall: 0.6095959595959596 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -apple,0.4,1.0,0.4666666666666666,0.6,1,9 -battery,0.7216666666666667,1.0,0.6166666666666666,0.7333333333333333,1,9 -jar,0.7383333333333333,1.0,0.7,0.7833333333333333,1,9 -calculator,0.7133333333333333,1.0,0.6499999999999999,0.75,1,9 -yellow,0.5650000000000001,1.0,0.4666666666666666,0.6166666666666666,1,8 -sponge,0.6133333333333333,1.0,0.5333333333333333,0.6666666666666666,1,9 -keyboard,0.7416666666666666,1.0,0.7666666666666666,0.8333333333333333,1,9 -scissors,0.63,1.0,0.6333333333333333,0.7333333333333333,1,9 -glue,0.6599999999999999,1.0,0.65,0.75,1,9 -special,0.755,1.0,0.6833333333333333,0.7833333333333333,1,9 -lime,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,9 -lemon,0.5900000000000001,1.0,0.5833333333333333,0.7,1,9 -bowl,0.6483333333333333,1.0,0.6,0.7166666666666667,1,9 -mug,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666666,1,9 -camera,0.5966666666666667,1.0,0.5,0.6333333333333333,1,9 -yogurt,0.7633333333333334,1.0,0.6833333333333333,0.7833333333333333,1,9 -soccer,0.5999999999999999,1.0,0.5833333333333333,0.7,1,9 -tomato,0.2683333333333333,0.4333333333333333,0.5833333333333333,0.43999999999999995,1,9 -pepper,0.6599999999999999,1.0,0.5999999999999999,0.7166666666666667,1,9 -ball,0.7083333333333333,1.0,0.6499999999999999,0.75,1,9 -wheat,0.78,1.0,0.6666666666666666,0.7666666666666666,1,9 -pear,0.8266666666666668,1.0,0.7666666666666666,0.8333333333333333,1,9 -toothbrush,0.7383333333333334,1.0,0.6666666666666666,0.7666666666666667,1,9 -notebook,0.635,1.0,0.5999999999999999,0.7166666666666666,1,9 -stick,0.5683333333333334,1.0,0.5166666666666666,0.65,1,9 -pliers,0.6383333333333333,1.0,0.5999999999999999,0.7166666666666666,1,9 -box,0.9099999999999999,1.0,0.8666666666666666,0.9199999999999999,2,9 -water,0.73,1.0,0.6499999999999999,0.75,1,9 -stapler,0.505,1.0,0.4,0.5666666666666667,1,9 -thins,0.805,1.0,0.6833333333333333,0.7833333333333333,1,9 -k,0.6266666666666667,1.0,0.6499999999999999,0.75,1,9 -can,0.7333333333333333,1.0,0.6333333333333333,0.75,1,9 -bottle,0.73,1.0,0.6333333333333333,0.75,1,9 -Threshold : 0.5 -Folder Number: 6000 -Accuracy: 0.6636868686868687 -F1-Score: 0.723030303030303 -Precision: 0.9828282828282829 -Recall: 0.6217171717171717 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -apple,0.5266666666666666,1.0,0.4999999999999999,0.6333333333333333,1,9 -battery,0.705,1.0,0.65,0.75,1,9 -jar,0.6966666666666667,1.0,0.7,0.7833333333333333,1,9 -calculator,0.6833333333333333,1.0,0.65,0.75,1,9 -yellow,0.6166666666666667,0.85,0.7,0.6833333333333333,1,8 -sponge,0.505,1.0,0.5666666666666667,0.6833333333333333,1,9 -keyboard,0.605,1.0,0.4333333333333333,0.6,1,9 -scissors,0.65,1.0,0.6333333333333333,0.7333333333333333,1,9 -glue,0.5933333333333333,1.0,0.5833333333333333,0.7,1,9 -special,0.6433333333333333,1.0,0.5833333333333333,0.7,1,9 -lime,0.705,1.0,0.7,0.7833333333333333,1,9 -lemon,0.7649999999999999,1.0,0.6166666666666666,0.7333333333333334,1,9 -bowl,0.7566666666666667,1.0,0.5666666666666667,0.7,1,9 -mug,0.7,1.0,0.6833333333333333,0.7666666666666666,1,9 -camera,0.7333333333333333,1.0,0.75,0.8166666666666667,1,9 -yogurt,0.6666666666666667,1.0,0.5666666666666667,0.6833333333333333,1,9 -soccer,0.5599999999999999,1.0,0.5166666666666666,0.65,1,9 -tomato,0.42333333333333334,0.6,0.6,0.5133333333333333,1,9 -pepper,0.63,1.0,0.5333333333333332,0.6666666666666666,1,9 -ball,0.6,1.0,0.6166666666666666,0.7166666666666666,1,9 -wheat,0.625,1.0,0.5333333333333333,0.6666666666666667,1,9 -pear,0.7166666666666666,1.0,0.6166666666666666,0.7333333333333333,1,9 -toothbrush,0.5583333333333333,1.0,0.5499999999999999,0.6833333333333333,1,9 -notebook,0.7483333333333333,1.0,0.5666666666666667,0.7,1,9 -stick,0.7916666666666666,1.0,0.7,0.7833333333333333,1,9 -pliers,0.36666666666666664,1.0,0.4666666666666666,0.6,1,9 -box,0.9216666666666666,1.0,0.8999999999999998,0.9400000000000001,2,9 -water,0.6816666666666666,1.0,0.5333333333333332,0.6666666666666666,1,9 -stapler,0.6216666666666666,1.0,0.5999999999999999,0.7166666666666667,1,9 -thins,0.755,1.0,0.6833333333333333,0.7833333333333334,1,9 -k,0.5999999999999999,1.0,0.5666666666666667,0.6833333333333333,1,9 -can,0.7383333333333333,1.0,0.6,0.7166666666666667,1,8 -bottle,0.7683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,9 -Threshold : 0.55 -Folder Number: 6000 -Accuracy: 0.6563131313131314 -F1-Score: 0.7107070707070707 -Precision: 0.9833333333333334 -Recall: 0.6085858585858586 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -apple,0.64,0.9,0.5833333333333333,0.65,1,9 -battery,0.6499999999999999,1.0,0.6833333333333333,0.7666666666666666,1,9 -jar,0.85,1.0,0.8166666666666667,0.8666666666666666,1,9 -calculator,0.6883333333333332,1.0,0.6333333333333332,0.7333333333333333,1,9 -yellow,0.58,1.0,0.5166666666666666,0.65,1,8 -sponge,0.6266666666666667,1.0,0.6,0.7166666666666667,1,9 -keyboard,0.5266666666666666,1.0,0.4833333333333332,0.6333333333333333,1,9 -scissors,0.5883333333333333,1.0,0.6333333333333333,0.7333333333333333,1,9 -glue,0.58,1.0,0.5333333333333333,0.6666666666666667,1,9 -special,0.6316666666666666,1.0,0.5,0.65,1,9 -lime,0.7483333333333333,1.0,0.6333333333333333,0.75,1,9 -lemon,0.625,1.0,0.5999999999999999,0.7166666666666667,1,9 -bowl,0.5650000000000001,1.0,0.4833333333333333,0.6333333333333334,1,9 -mug,0.7133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,9 -camera,0.6983333333333334,1.0,0.5666666666666667,0.7,1,9 -yogurt,0.7266666666666667,1.0,0.6333333333333333,0.7333333333333333,1,9 -soccer,0.6133333333333333,1.0,0.4999999999999999,0.65,1,9 -tomato,0.39,0.6,0.5166666666666666,0.5033333333333333,1,9 -pepper,0.86,1.0,0.7333333333333333,0.8166666666666667,1,9 -ball,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,9 -wheat,0.74,1.0,0.7166666666666666,0.8,1,9 -pear,0.6166666666666666,1.0,0.5666666666666667,0.6833333333333333,1,9 -toothbrush,0.6383333333333334,1.0,0.6,0.7166666666666667,1,9 -notebook,0.63,1.0,0.6333333333333333,0.7333333333333333,1,9 -stick,0.85,1.0,0.75,0.8333333333333334,1,9 -pliers,0.5966666666666667,1.0,0.5999999999999999,0.7166666666666666,1,9 -box,0.8633333333333333,1.0,0.8333333333333333,0.9,2,9 -water,0.525,1.0,0.4333333333333334,0.5833333333333333,1,9 -stapler,0.595,1.0,0.5499999999999999,0.6833333333333333,1,9 -thins,0.6333333333333333,1.0,0.7333333333333333,0.8,1,9 -k,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,9 -can,0.7833333333333333,1.0,0.6833333333333333,0.7833333333333333,1,9 -bottle,0.8266666666666668,1.0,0.7833333333333333,0.85,1,9 -Threshold : 0.6 -Folder Number: 6000 -Accuracy: 0.6655555555555556 -F1-Score: 0.7248484848484849 -Precision: 0.9848484848484849 -Recall: 0.6217171717171718 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -apple,0.43999999999999995,0.7166666666666666,0.5833333333333333,0.5399999999999999,1,9 -battery,0.5883333333333334,1.0,0.5166666666666666,0.65,1,9 -jar,0.675,1.0,0.65,0.75,1,9 -calculator,0.6716666666666666,1.0,0.5999999999999999,0.7166666666666667,1,9 -yellow,0.6483333333333333,1.0,0.55,0.6833333333333333,1,8 -sponge,0.4833333333333334,1.0,0.5666666666666667,0.6833333333333333,1,9 -keyboard,0.39999999999999997,1.0,0.38333333333333336,0.55,1,9 -scissors,0.78,1.0,0.7666666666666666,0.8333333333333333,1,9 -glue,0.755,1.0,0.6499999999999999,0.75,1,9 -special,0.6683333333333333,1.0,0.4999999999999999,0.65,1,9 -lime,0.7166666666666667,1.0,0.6666666666666666,0.7666666666666667,1,9 -lemon,0.6866666666666666,1.0,0.6166666666666666,0.7333333333333334,1,9 -bowl,0.8433333333333334,1.0,0.7666666666666666,0.8333333333333333,1,9 -mug,0.6683333333333333,1.0,0.6166666666666666,0.7333333333333333,1,9 -camera,0.7016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,9 -yogurt,0.7516666666666667,1.0,0.6666666666666666,0.7666666666666666,1,9 -soccer,0.6916666666666667,1.0,0.7,0.7833333333333333,1,9 -tomato,0.3,0.7,0.5166666666666666,0.5233333333333332,1,9 -pepper,0.675,1.0,0.6,0.7166666666666667,1,9 -ball,0.6633333333333333,1.0,0.5833333333333333,0.7,1,9 -wheat,0.605,1.0,0.55,0.6833333333333333,1,9 -pear,0.7483333333333333,1.0,0.6666666666666666,0.7666666666666667,1,9 -toothbrush,0.605,1.0,0.5833333333333333,0.7,1,9 -notebook,0.8350000000000002,1.0,0.7333333333333333,0.8166666666666668,1,9 -stick,0.8549999999999999,1.0,0.75,0.8333333333333333,1,9 -pliers,0.7583333333333333,1.0,0.7,0.7833333333333333,1,9 -box,0.8633333333333333,1.0,0.8333333333333333,0.9,2,9 -water,0.6133333333333333,1.0,0.6833333333333333,0.7666666666666667,1,9 -stapler,0.715,1.0,0.6166666666666666,0.7333333333333334,1,9 -thins,0.7633333333333333,1.0,0.7166666666666666,0.8,1,9 -k,0.7666666666666666,1.0,0.7,0.7833333333333333,1,9 -can,0.7049999999999998,1.0,0.6166666666666666,0.7333333333333333,1,8 -bottle,0.8216666666666667,1.0,0.7833333333333333,0.85,1,9 -Threshold : 0.65 -Folder Number: 6000 -Accuracy: 0.6807070707070706 -F1-Score: 0.7332323232323233 -Precision: 0.9823232323232325 -Recall: 0.6358585858585859 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -apple,0.655,0.85,0.5999999999999999,0.6166666666666667,1,9 -battery,0.775,1.0,0.7,0.7833333333333333,1,9 -jar,0.605,1.0,0.5666666666666667,0.6833333333333333,1,9 -calculator,0.7466666666666667,1.0,0.6666666666666666,0.7666666666666667,1,9 -yellow,0.7766666666666666,1.0,0.7,0.7833333333333333,1,8 -sponge,0.5333333333333333,1.0,0.5166666666666666,0.65,1,9 -keyboard,0.8,1.0,0.7166666666666666,0.8,1,9 -scissors,0.45999999999999996,1.0,0.4333333333333333,0.5833333333333333,1,9 -glue,0.6933333333333332,1.0,0.6666666666666666,0.7666666666666667,1,9 -special,0.7433333333333334,1.0,0.6666666666666666,0.7666666666666667,1,9 -lime,0.62,0.85,0.5666666666666667,0.6166666666666667,1,9 -lemon,0.63,1.0,0.6333333333333333,0.7333333333333333,1,9 -bowl,0.89,1.0,0.75,0.8333333333333334,1,9 -mug,0.5366666666666666,1.0,0.4666666666666666,0.6166666666666667,1,9 -camera,0.6716666666666666,1.0,0.5833333333333333,0.7,1,9 -yogurt,0.5416666666666666,1.0,0.5166666666666666,0.65,1,9 -soccer,0.6433333333333333,1.0,0.4666666666666666,0.6166666666666666,1,9 -tomato,0.4133333333333333,0.3666666666666667,0.8166666666666667,0.47333333333333333,1,9 -pepper,0.5416666666666666,1.0,0.4666666666666666,0.6166666666666667,1,9 -ball,0.7516666666666667,1.0,0.6166666666666666,0.7333333333333333,1,9 -wheat,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,9 -pear,0.7933333333333332,1.0,0.7166666666666666,0.8,1,9 -toothbrush,0.5366666666666666,1.0,0.4333333333333333,0.6,1,9 -notebook,0.76,1.0,0.7,0.7833333333333333,1,9 -stick,0.7966666666666666,1.0,0.7666666666666666,0.8333333333333333,1,9 -pliers,0.6883333333333332,1.0,0.7,0.7833333333333333,1,9 -box,0.96,1.0,0.9333333333333332,0.96,2,9 -water,0.7333333333333333,1.0,0.6166666666666666,0.7333333333333333,1,9 -stapler,0.6749999999999999,1.0,0.7,0.7833333333333333,1,9 -thins,0.7249999999999999,1.0,0.6499999999999999,0.75,1,9 -k,0.7266666666666667,1.0,0.5666666666666667,0.7,1,9 -can,0.5833333333333333,1.0,0.6333333333333333,0.7333333333333333,1,9 -bottle,0.6499999999999999,1.0,0.6166666666666666,0.7166666666666666,1,9 -Threshold : 0.7 -Folder Number: 6000 -Accuracy: 0.6779797979797979 -F1-Score: 0.7181818181818181 -Precision: 0.9717171717171716 -Recall: 0.6297979797979797 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -apple,0.6716666666666666,0.55,0.8166666666666667,0.6066666666666667,1,9 -battery,0.7166666666666666,1.0,0.5666666666666667,0.7,1,9 -jar,0.46833333333333327,1.0,0.45,0.6,1,9 -calculator,0.7783333333333333,1.0,0.5833333333333333,0.7166666666666667,1,9 -yellow,0.5133333333333333,0.75,0.6333333333333333,0.6,1,8 -sponge,0.8116666666666668,1.0,0.6333333333333333,0.75,1,9 -keyboard,0.7016666666666667,1.0,0.6499999999999999,0.75,1,9 -scissors,0.24,0.65,0.4333333333333333,0.4766666666666667,1,9 -glue,0.7083333333333333,1.0,0.6499999999999999,0.75,1,9 -special,0.505,1.0,0.4999999999999999,0.6333333333333333,1,9 -lime,0.71,1.0,0.6166666666666666,0.7333333333333334,1,9 -lemon,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,9 -bowl,0.6816666666666666,1.0,0.5,0.65,1,9 -mug,0.7566666666666666,1.0,0.6666666666666666,0.7666666666666667,1,9 -camera,0.53,1.0,0.4333333333333333,0.6,1,9 -yogurt,0.755,1.0,0.6166666666666666,0.7333333333333333,1,9 -soccer,0.58,1.0,0.5499999999999999,0.6666666666666666,1,9 -tomato,0.55,0.6,0.65,0.5566666666666666,1,9 -pepper,0.53,1.0,0.5,0.6333333333333333,1,9 -ball,0.8233333333333335,1.0,0.6833333333333333,0.7833333333333333,1,9 -wheat,0.6633333333333333,1.0,0.6166666666666666,0.7166666666666666,1,9 -pear,0.7083333333333333,1.0,0.6833333333333333,0.7666666666666667,1,9 -toothbrush,0.7016666666666667,1.0,0.65,0.75,1,9 -notebook,0.6966666666666667,1.0,0.7,0.7833333333333333,1,9 -stick,0.6016666666666667,1.0,0.5833333333333333,0.7,1,9 -pliers,0.8516666666666666,1.0,0.7333333333333333,0.8166666666666667,1,9 -box,0.8883333333333333,1.0,0.8666666666666666,0.9199999999999999,2,9 -water,0.8333333333333333,1.0,0.7666666666666666,0.8333333333333333,1,9 -stapler,0.65,1.0,0.5666666666666667,0.7,1,9 -thins,0.8383333333333333,1.0,0.7333333333333333,0.8166666666666668,1,9 -k,0.4766666666666667,1.0,0.4333333333333333,0.6,1,9 -can,0.675,1.0,0.65,0.75,1,8 -bottle,0.8333333333333333,1.0,0.8333333333333333,0.8833333333333332,1,9 -Threshold : 0.75 -Folder Number: 6000 -Accuracy: 0.6752525252525253 -F1-Score: 0.7144444444444444 -Precision: 0.956060606060606 -Recall: 0.6277777777777778 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -apple,0.6799999999999999,0.95,0.6666666666666666,0.7333333333333333,1,9 -battery,0.6016666666666667,1.0,0.5833333333333333,0.7,1,9 -jar,0.5583333333333333,1.0,0.6166666666666666,0.7166666666666666,1,9 -calculator,0.705,1.0,0.6499999999999999,0.75,1,9 -yellow,0.6916666666666667,0.75,0.6666666666666666,0.6333333333333333,1,8 -sponge,0.6233333333333333,1.0,0.5,0.65,1,9 -keyboard,0.755,1.0,0.7666666666666666,0.8333333333333333,1,9 -scissors,0.6133333333333334,1.0,0.6333333333333333,0.7333333333333333,1,9 -glue,0.7983333333333335,1.0,0.6333333333333333,0.75,1,9 -special,0.7383333333333333,1.0,0.7,0.7833333333333333,1,9 -lime,0.7,1.0,0.6499999999999999,0.75,1,9 -lemon,0.6266666666666667,1.0,0.5833333333333333,0.7,1,9 -bowl,0.5716666666666667,1.0,0.4333333333333333,0.5833333333333333,1,9 -mug,0.8300000000000001,1.0,0.7333333333333333,0.8166666666666667,1,9 -camera,0.44666666666666666,1.0,0.4999999999999999,0.6333333333333333,1,9 -yogurt,0.5433333333333332,1.0,0.4499999999999999,0.6,1,9 -soccer,0.6433333333333333,1.0,0.5999999999999999,0.7166666666666666,1,9 -tomato,0.8516666666666668,1.0,0.7333333333333333,0.8166666666666667,1,9 -pepper,0.6083333333333332,1.0,0.6166666666666666,0.7166666666666666,1,9 -ball,0.775,1.0,0.6666666666666666,0.7666666666666667,1,9 -wheat,0.7100000000000001,1.0,0.5666666666666667,0.7,1,9 -pear,0.4549999999999999,1.0,0.4666666666666666,0.6166666666666667,1,9 -toothbrush,0.7383333333333334,1.0,0.6666666666666666,0.7666666666666667,1,9 -notebook,0.8966666666666667,1.0,0.8,0.8666666666666668,1,9 -stick,0.625,1.0,0.6166666666666666,0.7166666666666667,1,9 -pliers,0.7416666666666667,1.0,0.6666666666666666,0.7666666666666667,1,9 -box,0.93,1.0,0.9,0.9400000000000001,2,9 -water,0.6799999999999999,1.0,0.5499999999999999,0.6833333333333333,1,9 -stapler,0.7416666666666667,1.0,0.7166666666666666,0.8,1,9 -thins,0.805,1.0,0.6833333333333333,0.7833333333333333,1,9 -k,0.6333333333333333,1.0,0.5833333333333333,0.7,1,9 -can,0.8266666666666665,1.0,0.7666666666666666,0.8333333333333333,1,8 -bottle,0.5333333333333334,1.0,0.5333333333333333,0.6666666666666666,1,9 -Threshold : 0.8 -Folder Number: 6000 -Accuracy: 0.6872222222222222 -F1-Score: 0.7340404040404042 -Precision: 0.990909090909091 -Recall: 0.6333333333333333 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -apple,0.6849999999999999,0.9,0.6499999999999999,0.6833333333333333,1,9 -battery,0.7683333333333333,1.0,0.7166666666666666,0.8,1,9 -jar,0.8966666666666667,1.0,0.8333333333333333,0.8833333333333332,1,9 -calculator,0.6516666666666666,1.0,0.5333333333333333,0.6666666666666666,1,9 -yellow,0.805,1.0,0.7333333333333333,0.8166666666666667,1,8 -sponge,0.64,1.0,0.5,0.65,1,9 -keyboard,0.5383333333333333,1.0,0.5166666666666666,0.65,1,9 -scissors,0.8099999999999999,1.0,0.7333333333333333,0.8166666666666667,1,9 -glue,0.8383333333333335,1.0,0.7666666666666666,0.8333333333333333,1,9 -special,0.6466666666666667,1.0,0.65,0.75,1,9 -lime,0.6016666666666666,0.65,0.6666666666666666,0.5833333333333333,1,9 -lemon,0.5633333333333332,1.0,0.5833333333333333,0.7,1,9 -bowl,0.53,1.0,0.4833333333333333,0.6333333333333333,1,9 -mug,0.71,1.0,0.5999999999999999,0.7166666666666667,1,9 -camera,0.6633333333333333,1.0,0.5333333333333333,0.6666666666666666,1,9 -yogurt,0.4883333333333333,1.0,0.5166666666666666,0.65,1,9 -soccer,0.5166666666666667,1.0,0.5166666666666666,0.65,1,9 -tomato,0.41666666666666663,1.0,0.45,0.6,1,9 -pepper,0.6716666666666666,1.0,0.6333333333333332,0.7333333333333333,1,9 -ball,0.3333333333333333,1.0,0.4833333333333333,0.6166666666666667,1,9 -wheat,0.785,1.0,0.6666666666666666,0.7666666666666667,1,9 -pear,0.6599999999999999,1.0,0.6499999999999999,0.75,1,9 -toothbrush,0.66,1.0,0.6499999999999999,0.75,1,9 -notebook,0.7333333333333333,1.0,0.7,0.7833333333333333,1,9 -stick,0.6633333333333333,1.0,0.5666666666666667,0.7,1,9 -pliers,0.6666666666666666,1.0,0.5833333333333333,0.7,1,9 -box,0.8800000000000001,1.0,0.8666666666666668,0.9200000000000002,2,9 -water,0.5166666666666667,1.0,0.5999999999999999,0.7,1,9 -stapler,0.76,1.0,0.7,0.7833333333333333,1,9 -thins,0.8683333333333334,1.0,0.7833333333333333,0.85,1,9 -k,0.655,1.0,0.5666666666666667,0.6833333333333333,1,9 -can,0.8383333333333333,1.0,0.7666666666666666,0.8333333333333333,1,8 -bottle,0.6466666666666666,1.0,0.5499999999999999,0.6833333333333333,1,9 -Threshold : 0.85 -Folder Number: 6000 -Accuracy: 0.669949494949495 -F1-Score: 0.7273737373737373 -Precision: 0.9863636363636363 -Recall: 0.6287878787878789 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -apple,0.6166666666666667,0.9,0.6833333333333332,0.7,1,9 -battery,0.8216666666666667,1.0,0.7166666666666666,0.8,1,9 -jar,0.8216666666666665,1.0,0.7666666666666666,0.8333333333333333,1,9 -calculator,0.4666666666666666,1.0,0.4833333333333332,0.6166666666666666,1,9 -yellow,0.6566666666666666,1.0,0.55,0.6833333333333333,1,8 -sponge,0.4416666666666666,1.0,0.4833333333333332,0.6166666666666666,1,9 -keyboard,0.5083333333333333,1.0,0.4666666666666666,0.6166666666666667,1,9 -scissors,0.6466666666666666,1.0,0.5666666666666667,0.6833333333333333,1,9 -glue,0.5549999999999999,1.0,0.5333333333333333,0.6666666666666667,1,9 -special,0.8266666666666668,1.0,0.7333333333333333,0.8166666666666667,1,9 -lime,0.6566666666666666,0.85,0.65,0.65,1,9 -lemon,0.5083333333333333,1.0,0.5499999999999999,0.6666666666666666,1,9 -bowl,0.5133333333333333,1.0,0.45,0.6,1,9 -mug,0.5966666666666667,1.0,0.45,0.6166666666666667,1,9 -camera,0.6883333333333332,1.0,0.6333333333333333,0.7333333333333333,1,9 -yogurt,0.5716666666666667,1.0,0.5,0.6333333333333333,1,9 -soccer,0.6083333333333333,1.0,0.5499999999999999,0.6833333333333333,1,9 -tomato,0.6916666666666667,1.0,0.5999999999999999,0.7166666666666667,1,9 -pepper,0.6083333333333333,1.0,0.6333333333333333,0.7333333333333333,1,9 -ball,0.725,1.0,0.5999999999999999,0.7166666666666667,1,9 -wheat,0.625,1.0,0.5333333333333333,0.6666666666666667,1,9 -pear,0.6633333333333333,1.0,0.5833333333333333,0.7,1,9 -toothbrush,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,9 -notebook,0.6,1.0,0.5999999999999999,0.7,1,9 -stick,0.76,1.0,0.6833333333333333,0.7833333333333334,1,9 -pliers,0.7966666666666666,1.0,0.7166666666666666,0.8,1,9 -box,0.9349999999999999,1.0,0.9,0.9400000000000001,2,9 -water,0.6266666666666667,1.0,0.5833333333333333,0.7,1,9 -stapler,0.5966666666666667,1.0,0.6,0.7166666666666667,1,9 -thins,0.63,1.0,0.5999999999999999,0.7166666666666666,1,9 -k,0.8099999999999999,1.0,0.7666666666666666,0.8333333333333333,1,9 -can,0.7266666666666667,1.0,0.6499999999999999,0.75,1,8 -bottle,0.7666666666666666,1.0,0.8166666666666667,0.8666666666666666,1,9 -Threshold : 0.9 -Folder Number: 6000 -Accuracy: 0.6579797979797979 -F1-Score: 0.7178787878787879 -Precision: 0.9924242424242424 -Recall: 0.6141414141414141 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -apple,0.6316666666666666,0.85,0.6166666666666666,0.65,1,9 -battery,0.65,1.0,0.6833333333333333,0.7666666666666666,1,9 -jar,0.575,1.0,0.5666666666666667,0.6833333333333333,1,9 -calculator,0.6333333333333334,1.0,0.6333333333333333,0.7333333333333333,1,9 -yellow,0.6183333333333334,0.85,0.55,0.6,1,8 -sponge,0.4766666666666667,1.0,0.45,0.6,1,9 -keyboard,0.705,1.0,0.6166666666666666,0.7333333333333333,1,9 -scissors,0.7833333333333333,1.0,0.6666666666666666,0.7666666666666666,1,9 -glue,0.6883333333333332,1.0,0.7,0.7833333333333333,1,9 -special,0.7666666666666666,1.0,0.7,0.7833333333333333,1,9 -lime,0.525,1.0,0.5333333333333333,0.6666666666666667,1,9 -lemon,0.7166666666666666,1.0,0.6333333333333333,0.7333333333333333,1,9 -bowl,0.6133333333333333,1.0,0.6833333333333333,0.7666666666666666,1,9 -mug,0.6799999999999999,1.0,0.6333333333333332,0.7333333333333333,1,9 -camera,0.7583333333333333,1.0,0.6499999999999999,0.75,1,9 -yogurt,0.6466666666666666,1.0,0.6333333333333333,0.7333333333333333,1,9 -soccer,0.55,1.0,0.6166666666666666,0.7166666666666666,1,9 -tomato,0.7383333333333333,1.0,0.65,0.75,1,9 -pepper,0.78,1.0,0.7666666666666666,0.8333333333333333,1,9 -ball,0.5583333333333333,1.0,0.5666666666666667,0.6833333333333333,1,9 -wheat,0.8200000000000001,1.0,0.6833333333333333,0.7833333333333333,1,9 -pear,0.43,1.0,0.4666666666666666,0.6166666666666667,1,9 -toothbrush,0.7433333333333334,1.0,0.7,0.7833333333333333,1,9 -notebook,0.7683333333333333,1.0,0.6499999999999999,0.75,1,9 -stick,0.64,1.0,0.55,0.6833333333333333,1,9 -pliers,0.475,1.0,0.4999999999999999,0.6333333333333333,1,9 -box,0.975,1.0,0.9666666666666666,0.9800000000000001,2,9 -water,0.8883333333333333,1.0,0.8333333333333333,0.8833333333333332,1,9 -stapler,0.8133333333333332,1.0,0.7166666666666666,0.8,1,9 -thins,0.7,1.0,0.6166666666666666,0.7333333333333333,1,9 -k,0.6983333333333334,1.0,0.5166666666666666,0.6666666666666667,1,9 -can,0.7716666666666667,1.0,0.6666666666666666,0.7666666666666667,1,8 -bottle,0.6016666666666667,1.0,0.5499999999999999,0.6833333333333333,1,9 -Threshold : 0.95 -Folder Number: 6000 -Accuracy: 0.6793939393939394 -F1-Score: 0.7342424242424243 -Precision: 0.990909090909091 -Recall: 0.6353535353535353 -input:token,accuracy,precision,recall,f1,num_positive_instances,num_negative_instances -apple,0.40166666666666667,0.0,0.0,0.0,1,9 -battery,0.45999999999999996,0.0,0.0,0.0,1,9 -jar,0.3166666666666667,0.0,0.0,0.0,1,9 -calculator,0.505,0.0,0.0,0.0,1,9 -yellow,0.385,0.0,0.0,0.0,1,8 -sponge,0.33,0.0,0.0,0.0,1,9 -keyboard,0.5783333333333334,0.0,0.0,0.0,1,9 -scissors,0.2783333333333333,0.0,0.0,0.0,1,9 -glue,0.5149999999999999,0.0,0.0,0.0,1,9 -special,0.72,0.0,0.0,0.0,1,9 -lime,0.28833333333333333,0.0,0.0,0.0,1,9 -lemon,0.23000000000000004,0.0,0.0,0.0,1,9 -bowl,0.4083333333333333,0.0,0.0,0.0,1,9 -mug,0.32500000000000007,0.0,0.0,0.0,1,9 -camera,0.09166666666666665,0.0,0.0,0.0,1,9 -yogurt,0.06000000000000001,0.0,0.0,0.0,1,9 -soccer,0.43666666666666665,0.0,0.0,0.0,1,9 -tomato,0.33166666666666667,0.0,0.0,0.0,1,9 -pepper,0.5566666666666666,0.0,0.0,0.0,1,9 -ball,0.28500000000000003,0.0,0.0,0.0,1,9 -wheat,0.6216666666666667,0.0,0.0,0.0,1,9 -pear,0.3816666666666667,0.0,0.0,0.0,1,9 -toothbrush,0.40499999999999997,0.0,0.0,0.0,1,9 -notebook,0.31333333333333335,0.0,0.0,0.0,1,9 -stick,0.255,0.0,0.0,0.0,1,9 -pliers,0.3433333333333334,0.0,0.0,0.0,1,9 -box,0.5583333333333333,0.0,0.0,0.0,2,9 -water,0.15166666666666667,0.0,0.0,0.0,1,9 -stapler,0.425,0.0,0.0,0.0,1,9 -thins,0.38166666666666665,0.0,0.0,0.0,1,9 -k,0.35666666666666663,0.0,0.0,0.0,1,9 -can,0.37666666666666665,0.0,0.0,0.0,1,9 -bottle,0.375,0.0,0.0,0.0,1,9 -Threshold : 1.0 -Folder Number: 6000 -Accuracy: 0.37722222222222224 -F1-Score: 0.0 -Precision: 0.0 -Recall: 0.0 diff --git a/Validation/run_commands_sample b/Validation/run_commands_sample deleted file mode 100644 index 480cee1..0000000 --- a/Validation/run_commands_sample +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/bash -python cLL-ML.py --resDir hi_raw_75_0 --pre conf_files/hindi/hindi_main_excluded_workers_raw.conf --cat all -python cLL-ML.py --resDir hi_raw_75_1 --pre conf_files/hindi/hindi_main_excluded_workers_raw.conf --cat all -python cLL-ML.py --resDir hi_raw_75_2 --pre conf_files/hindi/hindi_main_excluded_workers_raw.conf --cat all -python cLL-ML.py --resDir hi_raw_75_3 --pre conf_files/hindi/hindi_main_excluded_workers_raw.conf --cat all -python cLL-ML.py --resDir hi_raw_75_4 --pre conf_files/hindi/hindi_main_excluded_workers_raw.conf --cat all -python cLL-ML.py --resDir hi_raw_75_5 --pre conf_files/hindi/hindi_main_excluded_workers_raw.conf --cat all -python cLL-ML.py --resDir hi_raw_75_6 --pre conf_files/hindi/hindi_main_excluded_workers_raw.conf --cat all -python cLL-ML.py --resDir hi_raw_75_7 --pre conf_files/hindi/hindi_main_excluded_workers_raw.conf --cat all -python cLL-ML.py --resDir hi_raw_75_8 --pre conf_files/hindi/hindi_main_excluded_workers_raw.conf --cat all - -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_0/NoOfDataPoints object object conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_object.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_1/NoOfDataPoints object object conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_object.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_2/NoOfDataPoints object object conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_object.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_3/NoOfDataPoints object object conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_object.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_4/NoOfDataPoints object object conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_object.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_5/NoOfDataPoints object object conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_object.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_6/NoOfDataPoints object object conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_object.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_7/NoOfDataPoints object object conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_object.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_8/NoOfDataPoints object object conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_object.csv; done - -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_0/NoOfDataPoints rgb rgb conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_rgb.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_1/NoOfDataPoints rgb rgb conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_rgb.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_2/NoOfDataPoints rgb rgb conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_rgb.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_3/NoOfDataPoints rgb rgb conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_rgb.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_4/NoOfDataPoints rgb rgb conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_rgb.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_5/NoOfDataPoints rgb rgb conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_rgb.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_6/NoOfDataPoints rgb rgb conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_rgb.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_7/NoOfDataPoints rgb rgb conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_rgb.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_8/NoOfDataPoints rgb rgb conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_rgb.csv; done - -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_0/NoOfDataPoints shape shape conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_shape.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_1/NoOfDataPoints shape shape conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_shape.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_2/NoOfDataPoints shape shape conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_shape.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_3/NoOfDataPoints shape shape conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_shape.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_4/NoOfDataPoints shape shape conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_shape.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_5/NoOfDataPoints shape shape conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_shape.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_6/NoOfDataPoints shape shape conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_shape.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_7/NoOfDataPoints shape shape conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_shape.csv; done -for i in {1..21}; do python Validation/macro-pos5DescrNegDocVecdistractorTest.py hi_raw_75_8/NoOfDataPoints shape shape conf_files/hindi/hindi_main_excluded_workers_raw.conf | tee -a hi_raw_75_shape.csv; done diff --git a/conf_files/UW_english/excluded_stop_words.txt b/conf_files/UW_english/excluded_stop_words.txt deleted file mode 100644 index b2db265..0000000 --- a/conf_files/UW_english/excluded_stop_words.txt +++ /dev/null @@ -1 +0,0 @@ -can diff --git a/luke_experiment_run.bash b/luke_experiment_run.bash deleted file mode 100644 index e7e27b0..0000000 --- a/luke_experiment_run.bash +++ /dev/null @@ -1 +0,0 @@ -python2 cLL-ML.py --resDir ../Results --cat object --pre conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf --cutoff 0.25 --seed 25 --visfeat UW_ImgDzPerImage --listof list_of_images.conf diff --git a/main.py b/main.py new file mode 100644 index 0000000..c17aab3 --- /dev/null +++ b/main.py @@ -0,0 +1,38 @@ +# Created by: Luke Richards +# Purpose: This is the implementation of the GLS system, this shows the desired end result. This code as of now will not run as it is pseudo-code written by Frank Ferraro + +from GroundedLanguageLearning import * + +# Nisha AAAI 2018 + +# vocab_size = ; ## determine how many words to learn +# rgb_feat_size = 3 +# +# aaai18_rgb_model = GroundedLanguageClassifier( +# text_encoder=ExmptyExtractor(), +# percept_encoder=RGBFeatureExtractor(rgb_feat_size), ## not defined here +# corr_scorer=MultiLabelBinaryMLPScorer(rgb_feat_size, vocab_size) +# ) +# gls_nisha = GLSLearner( +# model=aaai18_rgb_model, +# loss=nn.BCELoss() +# ) + +# Luke RSS 2019 + +vocab_size = 500 ## determine how many words to learn +mutlimodal_feat_size = 51 + +rss19_cnn_model = GroundedLanguageClassifier( + text_encoder=EmptyExtractor(), + percept_encoder=CNNFeatureExtractor("data/UW_lukeRSS2019_cnn_object_features.csv", mutlimodal_feat_size), + corr_scorer=MultiLabelBinaryMLPScorer(mutlimodal_feat_size, vocab_size) + # this is for the alignment part +) +# gls_luke = GLSLearner( +# model=rss19_cnn_model, +# loss=nn.BCELoss() +# ) + + +# gls.train(train_data, val_data, ...) diff --git a/preprocess_descriptions.py b/preprocess_descriptions.py old mode 100644 new mode 100755 index 4e87ec5..fdb23a5 --- a/preprocess_descriptions.py +++ b/preprocess_descriptions.py @@ -12,13 +12,16 @@ import string import os import re +import nltk +nltk.download('stopwords') +nltk.download('wordnet') from nltk.corpus import stopwords from nltk.stem import WordNetLemmatizer from nltk.stem.porter import PorterStemmer from nltk.stem.snowball import SnowballStemmer import codecs -reload(sys) # This is a bit of a hack to avoid encoding errors -sys.setdefaultencoding('UTF8') +#reload(sys) # This is a bit of a hack to avoid encoding errors +#sys.setdefaultencoding('UTF8') lemmatizer = WordNetLemmatizer() porter_stemmer = PorterStemmer() @@ -112,7 +115,8 @@ def filteringSentences(fName, lemm=True, stemm=True, stop=True,lan = "english"): out_string = l[0]+ "," + " ".join(filtered_sentence) write_file.write(out_string+"\n") #print out_string - print lan,lemm,stemm,stop + print(lan,lemm,stemm,stop) + if __name__ == "__main__": diff --git a/run_commands_sample b/run_commands_sample deleted file mode 100644 index 0adeeef..0000000 --- a/run_commands_sample +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash -python2 cLL-ML.py --resDir UW_raw_75_0 --pre conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf --cat object --cutoff 0.75 --visfeat ImgDz --listof list_of_images.conf -python2 cLL-ML.py --resDir UW_raw_75_1 --pre conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf --cat object --cutoff 0.75 --visfeat ImgDz --listof list_of_images.conf -python2 cLL-ML.py --resDir UW_raw_75_2 --pre conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf --cat object --cutoff 0.75 --visfeat ImgDz --listof list_of_images.conf -python2 cLL-ML.py --resDir UW_raw_75_3 --pre conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf --cat object --cutoff 0.75 --visfeat ImgDz --listof list_of_images.conf -python2 cLL-ML.py --resDir UW_raw_75_4 --pre conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf --cat object --cutoff 0.75 --visfeat ImgDz --listof list_of_images.conf -python2 cLL-ML.py --resDir UW_raw_75_5 --pre conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf --cat object --cutoff 0.75 --visfeat ImgDz --listof list_of_images.conf -python2 cLL-ML.py --resDir UW_raw_75_6 --pre conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf --cat object --cutoff 0.75 --visfeat ImgDz --listof list_of_images.conf -python2 cLL-ML.py --resDir UW_raw_75_7 --pre conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf --cat object --cutoff 0.75 --visfeat ImgDz --listof list_of_images.conf -python2 cLL-ML.py --resDir UW_raw_75_8 --pre conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf --cat object --cutoff 0.75 --visfeat ImgDz --listof list_of_images.conf -for i in {1..21}; do python2 Validation/macro-pos5DescrNegDocVecdistractorTest.py UW_raw_75_0/NoOfDataPoints object object conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf | tee -a UW_raw_75_object.csv; done -for i in {1..21}; do python2 Validation/macro-pos5DescrNegDocVecdistractorTest.py UW_raw_75_1/NoOfDataPoints object object conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf | tee -a UW_raw_75_object.csv; done -for i in {1..21}; do python2 Validation/macro-pos5DescrNegDocVecdistractorTest.py UW_raw_75_2/NoOfDataPoints object object conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf | tee -a UW_raw_75_object.csv; done -for i in {1..21}; do python2 Validation/macro-pos5DescrNegDocVecdistractorTest.py UW_raw_75_3/NoOfDataPoints object object conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf | tee -a UW_raw_75_object.csv; done -for i in {1..21}; do python2 Validation/macro-pos5DescrNegDocVecdistractorTest.py UW_raw_75_4/NoOfDataPoints object object conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf | tee -a UW_raw_75_object.csv; done -for i in {1..21}; do python2 Validation/macro-pos5DescrNegDocVecdistractorTest.py UW_raw_75_5/NoOfDataPoints object object conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf | tee -a UW_raw_75_object.csv; done -for i in {1..21}; do python2 Validation/macro-pos5DescrNegDocVecdistractorTest.py UW_raw_75_6/NoOfDataPoints object object conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf | tee -a UW_raw_75_object.csv; done -for i in {1..21}; do python2 Validation/macro-pos5DescrNegDocVecdistractorTest.py UW_raw_75_7/NoOfDataPoints object object conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf | tee -a UW_raw_75_object.csv; done -for i in {1..21}; do python2 Validation/macro-pos5DescrNegDocVecdistractorTest.py UW_raw_75_8/NoOfDataPoints object object conf_files/UW_english/UW_AMT_description_documents_per_image_nopreproc_stop_raw.conf | tee -a UW_raw_75_object.csv; done diff --git a/testResults/commandsExecuted.txt b/testResults/commandsExecuted.txt deleted file mode 100644 index ded5bbe..0000000 --- a/testResults/commandsExecuted.txt +++ /dev/null @@ -1,7 +0,0 @@ - python cLL-ML.py --resDir testing_english --pre conf_files/english/english_raw.conf --cat rgb --seed 123456789 - python cLL-ML.py --resDir testing_english_stem --pre conf_files/english/english_stemmed.conf --cat rgb --seed 123456789 - python cLL-ML.py --resDir testing_hindi --pre conf_files/hindi/hindi_main_excluded_workers_raw.conf --cat rgb --seed 123456789 - python cLL-ML.py --resDir testing_hindi_stem --pre conf_files/hindi/hindi_main_excluded_workers_stemmed.conf --seed 123456789 - python cLL-ML.py --resDir testing_hindi_stem --pre conf_files/hindi/hindi_main_excluded_workers_stemmed.conf --seed 123456789 --cat all - python cLL-ML.py --resDir testing_spanish --pre conf_files/spanish/sp_3batches_lowinst_raw.conf --seed 123456789 --cat all - diff --git a/testResults/testing_english/NoOfDataPoints/6000/groundTruthPrediction.csv b/testResults/testing_english/NoOfDataPoints/6000/groundTruthPrediction.csv deleted file mode 100644 index 0d3be80..0000000 --- a/testResults/testing_english/NoOfDataPoints/6000/groundTruthPrediction.csv +++ /dev/null @@ -1,72 +0,0 @@ -Token,Type,0-arch/arch_3,1-arch/arch_3,2-arch/arch_3,3-arch/arch_3,4-arch/arch_3,0-banana/banana_3,1-banana/banana_3,0-cabbage/cabbage_4,1-cabbage/cabbage_4,2-cabbage/cabbage_4,3-cabbage/cabbage_4,0-carrot/carrot_4,1-carrot/carrot_4,2-carrot/carrot_4,0-corn/corn_4,1-corn/corn_4,2-corn/corn_4,3-corn/corn_4,4-corn/corn_4,0-cube/cube_2,1-cube/cube_2,2-cube/cube_2,3-cube/cube_2,4-cube/cube_2,0-cuboid/cuboid_4,1-cuboid/cuboid_4,2-cuboid/cuboid_4,3-cuboid/cuboid_4,4-cuboid/cuboid_4,0-cucumber/cucumber_3,1-cucumber/cucumber_3,2-cucumber/cucumber_3,3-cucumber/cucumber_3,4-cucumber/cucumber_3,5-cucumber/cucumber_3,0-cylinder/cylinder_2,1-cylinder/cylinder_2,2-cylinder/cylinder_2,3-cylinder/cylinder_2,4-cylinder/cylinder_2,0-eggplant/eggplant_2,1-eggplant/eggplant_2,2-eggplant/eggplant_2,3-eggplant/eggplant_2,4-eggplant/eggplant_2,0-lemon/lemon_2,1-lemon/lemon_2,2-lemon/lemon_2,3-lemon/lemon_2,0-lime/lime_3,1-lime/lime_3,2-lime/lime_3,3-lime/lime_3,4-lime/lime_3,0-orange/orange_1,1-orange/orange_1,2-orange/orange_1,0-plum/plum_3,1-plum/plum_3,2-plum/plum_3,3-plum/plum_3,4-plum/plum_3,0-potato/potato_1,1-potato/potato_1,2-potato/potato_1,3-potato/potato_1,0-semicylinder/semicylinder_3,1-semicylinder/semicylinder_3,2-semicylinder/semicylinder_3,3-semicylinder/semicylinder_3,4-semicylinder/semicylinder_3,0-tomato/tomato_1,1-tomato/tomato_1,2-tomato/tomato_1,3-tomato/tomato_1,0-triangle/triangle_3,1-triangle/triangle_3,2-triangle/triangle_3,3-triangle/triangle_3,4-triangle/triangle_3 -,,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,plum,plum,plum,nan,nan,nan,nan, , , , , ,nan,nan,nan,nan,nan,nan,nan,nan,nan -,rgb,0.0101464583074061,0.014910619689626136,0.014167151164241222,0.02665518788965893,0.03751815675306492,0.9673871867860115,0.9897631594682677,0.19357171788612487,0.3980539218486,0.44515154132865364,0.32109494398224975,0.9434109415508094,0.9626105863797256,0.963530963814157,0.3273258211179033,0.3339034711671808,0.33922718456049217,0.3438728385152258,0.349630768624568,0.030109078258986424,0.028097604877069055,0.030432621832582253,0.040210480244806016,0.02921760045812276,0.30021239525835103,0.25513376975358,0.25608369918295437,0.22854223723101613,0.1405382622742924,0.1398940160084463,0.1829352193911668,0.15514945047435744,0.16856052563615315,0.1702459371570202,0.18318601343092022,0.9999999999917142,0.9999999999928519,0.9999999999950255,0.9999999999942659,0.9999999999965989,0.24314483145927657,0.25626082436303277,0.27255546124872115,0.2926251652060358,0.37377366632255643,0.9999934339720268,0.9999951829954685,0.9999952468983594,0.9999966115334311,0.9634015840828114,0.9790279418098027,0.986219708580991,0.9701690270444979,0.9735797388782939,0.9999940010765128,0.9999895586088666,0.9999985776142052,0.9335415072594967,0.9649183420535155,0.9864202123913397,0.9918833665108937,0.9975968366960639,0.9994355137283852,0.9995937694366429,0.999691810824726,0.9996931540573522,0.999713162239247,0.9991691206813914,0.9997686157981754,0.9991268605030615,0.9997871543766498,0.9999999999918037,0.9999999999928999,0.9999999999975533,0.9999999999974205,0.020328095431600024,0.021937407014295064,0.023402967436450702,0.018011297773248995,0.021034919385036672 -an,rgb,0.9999978657795342,0.9999299389340255,0.99995197625245,0.9971461140702869,0.9791223704837729,0.9779992283734815,0.7847548402703646,0.9999999999985458,0.9999999999999996,1.0,0.9999999999990263,0.9999999973894091,0.9999999988645787,0.9999999991392703,0.999999994973995,0.9999999929728278,0.9999999907999714,0.9999999883839316,0.9999999915534369,0.9939808888269606,0.9953635003661269,0.9927338429776278,0.9705209046663013,0.9950466134653708,1.0,1.0,1.0,1.0,1.0,0.9240661869368146,0.6755429538292167,0.8681115288894145,0.8515351458244793,0.872320369482585,0.9009229812129835,1.0,1.0,1.0,1.0,1.0,0.9999998571507627,0.9999999573052698,0.9999999036499423,0.9999997392423556,0.9999998741486879,0.9662784086217232,0.9807369962839482,0.9814919787445024,0.9908240998342553,0.0004848608363656126,0.00042926357569941364,0.0003912147904932095,0.0005398896071267902,0.000566241103728899,0.9999694698490873,0.9999974147511586,0.9999911603617444,0.9999999999999911,0.9999999999999902,0.9999999999999998,0.9999999999999987,0.9999999999999996,0.9999999999969005,0.9999999999987605,0.9999999999999083,0.9999999999999056,0.02597587994070132,0.034401702294239035,0.03148111462546286,0.038580847084315556,0.03785190948389004,1.0,1.0,1.0,1.0,0.9993225119704241,0.9988952743974067,0.9983868727847428,0.9997544223728584,0.9992292268756348 -and,rgb,0.9999994015116487,0.9999991224725016,0.999996196221209,0.9994826491965461,0.9996516613675567,0.00015208095412959198,0.0007922978941461644,0.7284914274831256,0.9921257061613713,0.9961990645311538,0.5016996996984753,0.0013476169229028312,0.0018858994960512735,0.0021064949464050225,0.009991086940818546,0.008301606587427669,0.007170728176371739,0.006328082194993071,0.006974765097766271,0.9999953200191444,0.9999854447387864,0.9999759885290636,0.999684704000357,0.9994055184090154,1.0,1.0,1.0,1.0,1.0,0.030345962254267875,0.04073972768131321,0.03055769358632172,0.02351642289460499,0.019627253687196484,0.011812075171972945,1.0,1.0,1.0,1.0,1.0,0.00514962530138008,0.00708828862120516,0.004602602597104373,0.0028189041699912057,0.002158284815676348,0.9996251148961367,0.9997825170018629,0.999784535573049,0.9998757319960828,0.9913676504304539,0.9958327764406832,0.9985278652812767,0.9809513073270865,0.9755896177972976,0.9840833598639771,0.9029380161201913,0.9995421284299139,0.43835927426439875,0.3776792447158947,0.8326653824226438,0.6488684382274869,0.8144174241510086,0.1468051140632467,0.2490064823585912,0.5525038428554271,0.5504765680289169,0.9829230664129619,0.6556015536105473,0.9878198317644087,0.5901386602691211,0.9871372409236897,1.0,1.0,1.0,1.0,0.9999856343153997,0.9999774125107087,0.9999432499558136,0.999926603423039,0.9999194245553121 -apple,rgb,5.426491842392294e-29,1.6146908868795818e-29,1.490912719447015e-28,4.7984183636817244e-26,1.8067296204020494e-26,0.006261711579303321,0.010871895011479352,3.2492687661384324e-08,6.340850926770247e-05,0.00022473762978669358,4.438950301267034e-06,0.9955784154798057,0.9995845221450137,0.999674290568749,5.796676258194816e-07,6.161517395854347e-07,6.445184949110569e-07,6.68413627137101e-07,9.040560149933284e-07,5.075443933212688e-29,2.3828150527824767e-28,4.466741806237532e-28,1.5257739191174146e-26,5.1412853495968134e-26,8.095352656386286e-28,4.545863097044981e-28,7.958739842093502e-28,8.271321230307477e-28,3.5430567905351304e-26,3.520427484232988e-17,1.652741720372265e-17,3.262612152613488e-17,6.547377016719254e-17,1.0737076403526223e-16,4.489383536829975e-16,1.0,1.0,1.0,1.0,1.0,7.362663041399322e-09,2.1986795958133092e-08,2.6160964367683328e-08,3.012452698999529e-08,4.985963867620827e-07,0.9999616877390771,0.999988888442459,0.9999898412329514,0.9999977332250882,1.551810198049654e-16,6.777834417880327e-16,1.0047946727273298e-15,1.4267937093939499e-15,3.810839055729103e-15,0.9999999999046651,0.9999999999932112,0.9999999999943896,0.9997780013250833,0.9999922568198994,0.999999958870225,0.9999999948474747,0.9999999999771678,0.9999999999978393,0.9999999999995259,0.9999999999999392,0.9999999999999394,0.000140573047963883,0.0001764919767516362,0.00028420832752495257,0.0002353864403016445,0.000547859968305185,1.0,1.0,1.0,1.0,3.6044479794430202e-28,5.954598048567886e-28,2.0259880633647394e-27,5.7799327855236215e-27,4.271812773326168e-27 -arch,rgb,0.9643017584960892,0.9595368131996937,0.9394528446345675,0.7791522175273484,0.7936379448062928,0.011181786079616353,0.01562979960314246,0.23274665148853813,0.42505756108039466,0.4673591608893026,0.17086164995986355,0.019220105166829413,0.019743541369031153,0.020247135230205895,0.05545155119216527,0.052630331891958856,0.05049937500194225,0.04874640273106957,0.0497563310622306,0.9323122383337623,0.9088219975219675,0.8953361675125382,0.7973029441085723,0.7707558873297008,0.9999999994602291,0.9999999991776805,0.9999999990567723,0.9999999985951955,0.9999999805229159,0.10214634260282686,0.10798555005896389,0.10134942256649895,0.0933472995948635,0.08859986154956581,0.07607491182413995,0.9997040633581168,0.9997087694674736,0.9998195486028234,0.999771680341874,0.9998431298571553,0.050435387083237575,0.05394553551280447,0.04768430019764704,0.041433512847071335,0.03628681026085177,0.303121877750717,0.3265337843894099,0.3266185245820728,0.3500579261805566,0.4016459376902424,0.434050207911793,0.49472248023154813,0.3399053331352565,0.3195309712789435,0.11741390062386943,0.07471367626163743,0.23213835430031138,0.10095137475646876,0.08668054980107046,0.127992307528141,0.09415864887874886,0.10005710049524359,0.03714724768795594,0.04227502234236309,0.05711091757150312,0.05696523880862017,0.20772851591220623,0.10120051932355426,0.21901381038625958,0.09452976525663792,0.2139222906179659,0.9989804714753747,0.9991138198350721,0.9996321281887911,0.9996310542678436,0.9113366240112077,0.8995469387248043,0.8719350525646972,0.8654588067417951,0.8610110012853371 -banana,rgb,0.9999622248768312,0.9999982435051231,0.9999948109965301,0.9999987965955854,0.999999856346431,0.9999683089202149,0.9999990805853838,0.00048240833551200417,3.4382257171874704e-06,1.567778842018529e-06,0.00027872340533095785,0.050135158309550835,0.03473352393999833,0.02920423478767313,0.05284200910420887,0.0648074422695337,0.07629988544635716,0.08780102790472229,0.071535578006286,0.9999999429316887,0.9999998697768947,0.9999998920295113,0.9999999030877794,0.9999992415707492,1.7703475118614404e-11,3.5634312656671597e-11,3.1717567855927116e-11,4.730676292404927e-11,1.495621712478654e-10,0.9999932376617146,0.9999989383131075,0.9999962878251072,0.9999964014406708,0.9999954197864639,0.9999926699173854,6.561506343142839e-06,1.1883696311992608e-05,3.991255319191102e-06,8.00043517441284e-06,1.0516158322269426e-05,0.3933982474774552,0.2120514105038235,0.3161969442141236,0.4772055782334296,0.3294108831788679,0.9999999998599041,0.9999999998442997,0.9999999998402462,0.9999999998027136,0.9999999999983429,0.9999999999991913,0.9999999999996303,0.9999999999975242,0.9999999999972251,0.9999995572968706,0.9999872280927331,0.9999998779059993,1.6558103061249618e-05,2.11550996823894e-05,3.476121168093517e-06,1.1905300553936064e-05,1.2751282613131411e-05,0.011054819292674238,0.007856914908368309,0.0017045382251069058,0.001744588593741842,0.9999999999901175,0.9999999998907088,0.9999999999909428,0.9999999998575446,0.9999999999893674,0.10208847638954695,0.07883149665464934,0.0775901626405763,0.049393819703794285,0.9999991783170602,0.9999993552279113,0.9999992928088067,0.9999952253609266,0.9999983034404447 -block,rgb,0.9999999903038802,0.9999999936765747,0.9999999742423815,0.9999989186701883,0.9999994501750736,0.000634157800028714,0.002010415949139357,0.180449872717028,0.14549970901901185,0.1466273658052338,0.03877497225744196,4.00436904671416e-05,2.673527735639899e-05,2.6274169374534566e-05,0.010273087727031569,0.009419901911522211,0.008807048580273045,0.008322468072905502,0.007978956574022415,0.999999986636336,0.9999999619733809,0.99999994409228,0.999999520334566,0.999998879286707,1.0,1.0,1.0,1.0,1.0,0.9559618084609691,0.9740305209410839,0.9596127591839317,0.9464114136768996,0.9329934249855405,0.8789093675989866,0.3532128995617985,0.38348944986490385,0.5179242110669532,0.4575667274401214,0.6135689735827995,0.02542270817259603,0.021322689518740154,0.01741616568686399,0.014116679512956623,0.006083407313128018,0.3581525949273129,0.35692392659080585,0.3527148264447937,0.33601693180913783,0.999854681313922,0.9998730927382747,0.9999269447710059,0.9996153640956421,0.9994432213971944,0.0016072581952627394,0.00022028095419539617,0.006415472406405772,0.00022997656765587658,9.67281084093658e-05,7.269038304692949e-05,3.099359949589769e-05,1.4424322292084448e-05,3.3392786018878592e-06,3.216453594378859e-06,3.384834190507195e-06,3.3773621200266395e-06,0.8825878725003908,0.47171254459740247,0.8858075119289136,0.4117415772929576,0.8643513827762522,0.411021487111251,0.44608126383875146,0.7617637411621702,0.7368660830280144,0.9999999486760893,0.9999999289662022,0.9999998457695753,0.9999997205158837,0.999999756755971 -blue,rgb,0.5185593100441646,0.3191965490515133,0.31717184593546643,0.09793539087878557,0.05924497121146434,6.510746034779555e-05,1.903608310477957e-05,0.16014093495733742,0.24279063289363886,0.2568073974999375,0.09511212818680032,0.001073617416450946,0.0008488839333749505,0.0008687670931716333,0.022765589690144836,0.020970107890500057,0.019632456755313398,0.018544599173349944,0.01906614496898141,0.10979380532929814,0.1112985960862982,0.09581913789641476,0.05379494613086868,0.08426770843553837,0.9999951410396428,0.9999942582658831,0.9999939296810607,0.9999928676580863,0.999978332636792,0.006801687259498476,0.004179146000723067,0.005652592323462017,0.005004932815948944,0.005005859002263286,0.004649153417905272,2.050861680431661e-07,1.6937190780207506e-07,1.9891603895818872e-07,1.7466507289939383e-07,1.3977494434624941e-07,0.019763338601321,0.022359968107644287,0.018157314157539992,0.014139980422346083,0.011221076221322778,1.3585649865039158e-07,1.1712747217988032e-07,1.1651413311182874e-07,9.988124560078293e-08,4.052906187004468e-05,2.574265657089318e-05,1.9007562758276122e-05,3.2412335924760774e-05,2.8791937658485276e-05,2.4866825554692064e-07,4.868335296322962e-07,1.1077236518659086e-07,0.010603902388799895,0.005820655788664413,0.0048573231311538675,0.0023146155820364185,0.0009921133975811668,6.988854303841982e-05,6.255710511852286e-05,7.710194780509526e-05,7.64723366270362e-05,1.0171328048501561e-06,2.059378942501831e-06,8.90895878181e-07,2.1403750613280664e-06,8.478015112857026e-07,2.289235256743434e-08,2.3234421147565772e-08,1.7133033532499927e-08,1.91748311394871e-08,0.17755822221435166,0.15474392140118393,0.13338523699136984,0.19672158336955,0.1540327797931407 -bright,rgb,0.0028262616904998874,0.010602057474407407,0.0035608064038373196,0.0011291578536267032,0.003822926907148555,3.7432668313754803e-06,5.310575075930979e-05,1.3964346506363927e-08,1.1024032221198876e-08,1.128750302246811e-08,9.30269607378296e-09,2.15322918929306e-08,2.434146001891925e-08,2.3761078036331647e-08,1.4571785246948868e-08,1.500022952464798e-08,1.5379452976165655e-08,1.5734111053717668e-08,1.4985988675525616e-08,0.03035542069535931,0.013141883933533386,0.011970921013071435,0.004852748470795377,0.001350426942788018,0.9994166321542677,0.9990968680508738,0.9988476373871386,0.9981217938736014,0.9334540194899944,1.0594078272980942e-05,3.0356037767578807e-05,1.4437845671708819e-05,1.3566517317488135e-05,1.1355251151759966e-05,7.705297413371219e-06,0.9998356915979392,0.9998850851117577,0.9999254307016162,0.9999155065192248,0.9999673494169128,2.8164497912807775e-08,2.2372437531575842e-08,2.4455815749250916e-08,2.7898629020955878e-08,2.164313745479323e-08,0.9423400772357288,0.9560701569364884,0.9559532923053319,0.9654423838520205,0.600481367132399,0.7731148706853512,0.895650424825272,0.49381098967371806,0.4662339152054677,0.09373846854656191,0.008817054214981015,0.5670654704612087,7.965935440137393e-09,1.013253324467331e-08,1.529869855287666e-08,2.100991719696772e-08,4.750503514618865e-08,4.1182905522566135e-07,5.203078991645807e-07,5.012422922851857e-07,5.054720797886973e-07,0.7417662427926583,0.14447422358539577,0.7875335624379227,0.1163423169672518,0.7766425472217336,0.9999843488432945,0.9999867014935461,0.9999979307244431,0.9999973754472307,0.005269295649692108,0.005003273146109328,0.003371683902718121,0.0011940690038821549,0.001914107143659455 -cabbage,rgb,2.6084310498380577e-09,1.474238700915974e-10,9.923759323650027e-10,4.050216081535134e-09,4.1480981438508344e-10,0.07336360120512839,0.0015805228161413522,0.9998306766016984,0.9999970534330814,0.9999983863845526,0.9999645684377868,0.9999694499793821,0.9999820870693128,0.9999846492367739,0.9989991471010472,0.9988736722169609,0.9987579492402529,0.9986455746991483,0.9988996415833273,1.3801285029971203e-11,5.825606889643501e-11,6.51989138592913e-11,2.6951268427189205e-10,2.809590892094502e-09,8.700602409889581e-07,8.127454580617819e-07,1.1841127321859653e-06,1.5055998436978618e-06,4.209227339061626e-05,2.755668696922045e-05,3.89594691190024e-06,1.5524203299120674e-05,1.8458458416633746e-05,2.663066491432396e-05,6.167638944987858e-05,0.9992226855690306,0.9985814386381782,0.9990816680825645,0.9986725679783717,0.9971519902717745,0.9867122330045472,0.9941952479537908,0.9921368725287175,0.9881278167410597,0.9958548786772993,6.362880027189309e-09,6.620498517261063e-09,6.836293189591854e-09,8.107756354737223e-09,7.680895542762789e-13,3.53623807620854e-13,1.1691700519145258e-13,2.0814434354290774e-12,2.9249464135849196e-12,0.00030619558937845353,0.02139835243019266,3.108815664150793e-05,0.999999853311835,0.9999998932256345,0.9999999766708166,0.9999999626205144,0.9999999722725349,0.9999969506309657,0.9999976361600691,0.9999992654642385,0.9999992520683595,2.0634765801728114e-10,8.114035609837383e-09,1.8143163839522024e-10,1.2106108902224665e-08,2.3515724917139524e-10,0.2738563454073245,0.2951629571352942,0.11647717732545554,0.17812196759181836,3.427101760340989e-10,3.512955608766748e-10,6.564011751549648e-10,4.996852822295557e-09,1.8952754502263405e-09 -carrot,rgb,1.8359656697006931e-07,2.532660718894936e-07,1.5768788868988067e-06,0.0005104315902804774,0.00026878094646588287,0.9998689039404142,0.9982089229421693,0.27920580653532173,0.0017370456097211314,0.0006232828300604284,0.47424969380900295,0.9981692558206464,0.996477258859439,0.9958909361776094,0.9966270709971723,0.9972914611860919,0.9977220831925748,0.99803466729354,0.997742085387138,1.4655984516544733e-06,6.134121755775743e-06,1.096447997622756e-05,0.00023015465628064365,0.0005815097565721007,1.7859633931729072e-44,1.5216843462598006e-43,2.723533987308398e-43,1.8860072837339086e-42,3.76210747695732e-37,0.9941215907961088,0.9901866636533561,0.9937419612532359,0.9952719570078297,0.9961969701903934,0.9978763252165729,1.3458996832311283e-32,1.0998924656403525e-32,8.316561963081927e-34,2.8678709748749923e-33,3.0969021634063566e-34,0.9988673954076549,0.9982214467636013,0.9989248037819562,0.9993916733669321,0.9994635696182752,1.0209858795872225e-07,4.3945869056756485e-08,4.31122862187322e-08,1.8110511090462866e-08,0.0005540798786184377,0.00016660073682912347,3.68578862202306e-05,0.001328962467946165,0.0016989959484642351,9.015008698338739e-06,0.00011973589992216881,5.1355614812800894e-08,0.16182416679918113,0.15626650730767194,0.007787662840331123,0.020364848549125424,0.0036936667266486618,0.09705620462902234,0.03819593658988595,0.006481226987867723,0.006534609904578561,9.36156957778698e-05,0.010765867721138328,5.463461530130394e-05,0.015485561816017391,5.5803201722111475e-05,5.677935533234292e-30,2.556086381920601e-30,1.5975657262179434e-32,1.6647298099044e-32,6.970355658349153e-06,1.1777328449829948e-05,3.561290213893765e-05,5.462937123744864e-05,5.7420713356030255e-05 -childs,rgb,0.8689484087440174,0.8823465340019657,0.8471734029337687,0.7247897730610106,0.7573520885606226,0.04349337120431079,0.05904113695395105,0.10000849523768662,0.09855539994516904,0.09942088668521108,0.07459090370888707,0.02289231174086032,0.021542042711481406,0.021481171594153674,0.05830315355983631,0.057434363069543796,0.056773049163458114,0.056225423875251555,0.05578355151068536,0.8710709576000121,0.8433719930567939,0.833105023555934,0.7635814605409482,0.7246859319006362,0.9997713324836177,0.9997355947263247,0.9997129416734742,0.9996616810221004,0.9988295914588587,0.23506412347088254,0.26111454552506064,0.24013953714224356,0.22993838761786892,0.22116658919715226,0.19898382871310688,0.37243046863889007,0.3813155705313791,0.4126538130231533,0.3991172935807896,0.4387947861482266,0.06899942389949747,0.0666431059257181,0.06439787421443723,0.06221694405706894,0.053479822612991335,0.24174306383890667,0.24463788131997768,0.24404360017846197,0.24450538357145551,0.5918097044829057,0.6069595121819297,0.6404708788927469,0.5441426127770832,0.5264164646064923,0.08332593488448971,0.05418508661010166,0.11701943102719375,0.03148539361761128,0.02738493071553122,0.027046226698472738,0.023467541466319727,0.021439941950707236,0.017600190080344285,0.01775914870472021,0.018117244003431503,0.018114869307586302,0.31071114754281115,0.21198347617730168,0.31477510201335973,0.2029485145998625,0.3067846932365063,0.39345007401389054,0.40232247296808227,0.4883410345211395,0.4801888232663786,0.831328696181661,0.8222984412380175,0.7977586046806568,0.7729891850181856,0.7802599738734554 -chow,rgb,0.99999050442907,0.999999754135763,0.9999975252945479,0.9999842188517614,0.9999988472592206,3.07340184648174e-10,7.251557484507015e-09,7.513134853087458e-15,9.637769990022832e-19,2.247108993984921e-19,2.8356614871325135e-16,2.2486759871539768e-18,4.180303435573353e-19,3.072590671696604e-19,1.4267692382062626e-13,1.6987514209375435e-13,1.961527723967431e-13,2.2267938011064934e-13,1.5185785426858433e-13,0.9999999830731919,0.9999999093948855,0.9999998922250583,0.9999992855294935,0.9999895169755428,1.0435719830525431e-10,2.77423790547254e-10,1.8029308020749216e-10,2.548837279245076e-10,8.459602296503543e-11,0.10803238690895312,0.5287822697994332,0.18468859682713232,0.13645454626898054,0.08651065392932096,0.02618445004874223,4.2231130434733763e-41,7.626682180881084e-41,1.1917711391063326e-41,3.482753265407755e-41,2.6486336054895985e-41,1.7353130787752148e-11,4.035735773408293e-12,6.167782974270994e-12,1.0978100965374413e-11,1.2605671508645246e-12,1.3565690410151481e-08,6.2074371321470156e-09,5.761043195155216e-09,2.0571229939931064e-09,0.9999938638130978,0.9999931563862097,0.9999960857807783,0.9999685704158536,0.9999392038412067,3.9123419865936154e-15,3.330467189988598e-17,2.996915981371675e-15,1.818405387330013e-22,3.571752174895335e-23,3.4701136933512954e-25,3.5803886191001806e-25,1.9160412836472775e-26,3.616919476353548e-24,1.125142921141588e-24,8.235872868887459e-26,8.411810102674988e-26,0.006528706915391439,0.0005311733779875557,0.004840567453594775,0.00034843390695003123,0.002879921527161764,2.7622867692129276e-35,1.541177111476348e-35,4.2898274269823686e-36,2.273578954642239e-36,0.9999993152364895,0.9999992807701793,0.9999984266897783,0.9999818698691828,0.999994393226005 -circle,rgb,0.8743157827204254,0.879739432363362,0.8269968022762878,0.5889553024883247,0.633807857022015,0.008691374202308012,0.014111878925157903,0.054138871753980855,0.08827014718648683,0.09750437216945593,0.0384608046959191,0.006982293078200948,0.007036712261637806,0.00712978274452055,0.017404104136629184,0.016792609821332728,0.016328581896885127,0.015945332274350233,0.01606146504988838,0.8459345433815819,0.7987358524980916,0.778352370654521,0.6432114714870487,0.5848548210538286,0.9999998666333478,0.9999998142357281,0.9999997894573226,0.9999997081234947,0.9999972857173859,0.06309483403760653,0.0727922717125376,0.06457609573413835,0.060098254365106914,0.05667147297059841,0.04833223989466562,0.9948196715689307,0.9950525682106337,0.9965514917603685,0.995916986037212,0.9971054252226064,0.018049250117440144,0.01834368750780987,0.01689155225324462,0.015438528909318936,0.01333208097386062,0.30048048728295446,0.32009176396179395,0.31989975379679797,0.33824236095191684,0.42164729554658276,0.46068107604508496,0.5248063864669923,0.3623124479159807,0.3429311251379155,0.09166942026935038,0.051784189837707405,0.18243756147341725,0.02058140376088983,0.018167887691600708,0.024217720230007345,0.01932108709348677,0.020758473526702965,0.012044092748504454,0.013320650822913595,0.016181977415526044,0.016164458074821655,0.23484069680041988,0.11399521009318887,0.24670985028532924,0.10616745426225604,0.24050487435328224,0.990906361373701,0.991833057489882,0.9962139323466886,0.9961063784199848,0.7868574211776429,0.7684621779961306,0.7225913957422628,0.6912665571021386,0.6960755136696816 -cob,rgb,0.0007801134591924362,0.0004505930886871989,0.0018711988117435228,0.04003265952517454,0.014448382417346086,0.841712488233798,0.15577601805265193,0.8723291553167123,0.11069983963195762,0.053945918937345,0.8708960142680734,0.8943374219231323,0.7893929839033157,0.7711024777397347,0.9940886134793323,0.9946084339608393,0.9949813950927027,0.995275366289643,0.9948312790651731,0.00047755213553518183,0.0014950662840267136,0.001996433184402083,0.011574560067421875,0.03772908903571459,1.661055098829353e-28,8.04496826665856e-28,1.2047542883481116e-27,4.900813699493585e-27,2.8916093178802564e-23,0.9805810984408377,0.953839246997191,0.9755358915935974,0.977622617458709,0.9810001063050623,0.986789600384408,3.139808997418682e-32,2.2021190915434846e-32,3.108780141363377e-33,7.54044784655157e-33,9.759094230458072e-34,0.9974089407391902,0.9966377312214743,0.9972211680805403,0.9977315919887483,0.9972588326936506,1.2795943526493546e-11,5.437628201232919e-12,5.316264551445793e-12,2.190835004905538e-12,1.045528745261919e-05,2.434232158938261e-06,5.256958835092594e-07,1.6224440879078077e-05,1.7234256636222264e-05,6.78053319349169e-10,1.0218557400765605e-08,4.349585064274477e-12,0.11432840684356105,0.05980057422546444,0.0036809213027136816,0.0036815420199891495,0.00035042709872889745,0.00035582307488075666,0.00013800171793395218,3.786765268706543e-05,3.78073703181703e-05,3.529528149454825e-08,3.3408041738501183e-06,1.9705651245530627e-08,4.650796670287257e-06,1.8822007648991668e-08,5.353336954333421e-31,2.8162227155431356e-31,3.258273931467471e-33,3.748544278042908e-33,0.0028345775592786434,0.0036325947991896193,0.007263069421142582,0.01587508398916028,0.012397647611849002 -colored,rgb,0.7904714911495421,0.8182653492585055,0.7755111122728165,0.6676852565661401,0.7084068141222796,0.07605875218091558,0.10493777480199246,0.09178544034729028,0.08198703892853831,0.08126598803700956,0.07239096684631442,0.033790725838180075,0.03208569137449939,0.031887256757502105,0.06743119168875909,0.06700179940565466,0.0666862679470467,0.06643315834760356,0.06570604245581611,0.819815134029106,0.7884365422792732,0.779286291488024,0.7160719462957212,0.6703489933841336,0.9963531922517419,0.9959735246167504,0.9956937066122316,0.995142441092805,0.9874787912910382,0.2661504974230521,0.29835734929708463,0.2736728775893238,0.2652570564062756,0.25652116039358536,0.23506420336362513,0.31362645672791584,0.32362151381359816,0.3413829884998957,0.3349946164421422,0.36704065079693216,0.08095404489982455,0.07729374581936363,0.07626263131570861,0.07548865304334293,0.06643459012339788,0.36188484477680233,0.3649344513971949,0.364235428431831,0.364350556873133,0.6541758169642279,0.6706430487048014,0.700034471057827,0.6170418345552301,0.6033742558120971,0.14783199915244313,0.09941113078870677,0.19661662059948493,0.03568541738829292,0.03241353186427985,0.031064394926085467,0.02879105523516417,0.027226839262368727,0.027898131023246526,0.027961244843572024,0.027453810261547897,0.027467632914094285,0.43262096907297537,0.32123340084759794,0.43738733352995735,0.3103661675923654,0.429439402313403,0.38408812073547094,0.38970804623616234,0.4594201003009046,0.44996403490072034,0.7679623807500702,0.7602578863224089,0.7363375117517484,0.7029295447773248,0.7153540678704239 -corn,rgb,0.0007801134591924362,0.0004505930886871989,0.0018711988117435228,0.04003265952517454,0.014448382417346086,0.841712488233798,0.15577601805265193,0.8723291553167123,0.11069983963195762,0.053945918937345,0.8708960142680734,0.8943374219231323,0.7893929839033157,0.7711024777397347,0.9940886134793323,0.9946084339608393,0.9949813950927027,0.995275366289643,0.9948312790651731,0.00047755213553518183,0.0014950662840267136,0.001996433184402083,0.011574560067421875,0.03772908903571459,1.661055098829353e-28,8.04496826665856e-28,1.2047542883481116e-27,4.900813699493585e-27,2.8916093178802564e-23,0.9805810984408377,0.953839246997191,0.9755358915935974,0.977622617458709,0.9810001063050623,0.986789600384408,3.139808997418682e-32,2.2021190915434846e-32,3.108780141363377e-33,7.54044784655157e-33,9.759094230458072e-34,0.9974089407391902,0.9966377312214743,0.9972211680805403,0.9977315919887483,0.9972588326936506,1.2795943526493546e-11,5.437628201232919e-12,5.316264551445793e-12,2.190835004905538e-12,1.045528745261919e-05,2.434232158938261e-06,5.256958835092594e-07,1.6224440879078077e-05,1.7234256636222264e-05,6.78053319349169e-10,1.0218557400765605e-08,4.349585064274477e-12,0.11432840684356105,0.05980057422546444,0.0036809213027136816,0.0036815420199891495,0.00035042709872889745,0.00035582307488075666,0.00013800171793395218,3.786765268706543e-05,3.78073703181703e-05,3.529528149454825e-08,3.3408041738501183e-06,1.9705651245530627e-08,4.650796670287257e-06,1.8822007648991668e-08,5.353336954333421e-31,2.8162227155431356e-31,3.258273931467471e-33,3.748544278042908e-33,0.0028345775592786434,0.0036325947991896193,0.007263069421142582,0.01587508398916028,0.012397647611849002 -cube,rgb,0.9977676744669994,0.9994800093824772,0.9983309886432762,0.9943158107152099,0.9984148072160421,0.04161443163053293,0.35642798575474355,0.00017500012958528597,6.36747412880074e-05,5.699733563413188e-05,8.873133932040518e-05,9.78113648071767e-05,9.228049467679543e-05,8.791837706661535e-05,0.00021883524125469893,0.0002272802576661537,0.00023472459990448222,0.00024166731142084272,0.00022387565808881487,0.9998309812038183,0.9995857717669577,0.9995399976295894,0.9987626645934241,0.9952792550480524,0.9999996849419608,0.9999995762139386,0.9999994537113432,0.999999185399986,0.9999778289567406,0.4455009349278477,0.7070651385837334,0.5250463301095138,0.5020054607437878,0.4517112399334118,0.3430427499854683,0.9997960921291136,0.9998573632557126,0.9998844873005538,0.9998827576010563,0.9999468773060427,0.0006003076014292727,0.00043188142115958974,0.00048105626909299376,0.0005629707885655398,0.00036640360835566067,0.9999644379839653,0.9999700180112138,0.9999697314875912,0.9999731030583198,0.9999860532661854,0.9999929525392895,0.9999969628761072,0.9999761820307128,0.9999720030424183,0.9888120049278789,0.8741275916077945,0.9986810953115215,1.897311894488986e-05,1.9636743786512987e-05,1.8181819358595513e-05,2.3307769532797177e-05,3.491920854746459e-05,0.00033195635769685283,0.00036353008138613615,0.0002788731609417041,0.00028137056713525214,0.9999556366159696,0.9993629188916835,0.9999632524182298,0.9991791885452096,0.9999591591923955,0.9999915969826194,0.9999923068877645,0.9999982588697447,0.9999977407224991,0.9989130906273306,0.9988500645527834,0.9982447791765722,0.9946912119460006,0.99679518008001 -cuboid,rgb,0.34892300307719565,0.44057843648371325,0.3568809446917656,0.26611700267689864,0.3439690682029827,0.05149431454998788,0.10990801437733574,0.012007827029214551,0.012272993789996087,0.012569852977113521,0.010570245046498873,0.01237124801538857,0.012975676154874336,0.012918750188306738,0.010981092983758645,0.011036402298685116,0.011086990960448014,0.011135194459816486,0.011005121520482728,0.5123634772511441,0.44439934486305005,0.43540640420514276,0.3605691503999057,0.27612822249450697,0.9904640225344759,0.9887946761918014,0.9878666030915172,0.9855869590597994,0.9510150023279659,0.07090199307082,0.09484934241584411,0.07720358464837809,0.07563509764801399,0.07185241363954185,0.06412024192661328,0.9909703469701294,0.9918898309084497,0.993143954646892,0.9927451707298479,0.9946984830451314,0.013027875692228697,0.01228251816073116,0.012506839227363032,0.012880273650497969,0.011967348446249651,0.8798099082069744,0.889846971099745,0.8898035248245112,0.8982471107979481,0.7532786698715054,0.7985149309835387,0.8419586447515164,0.7265039788443166,0.7193694631385468,0.6085599737049108,0.4209225858854496,0.7810522754836922,0.010519064924595548,0.011318123468357977,0.013458234722286608,0.01455504269632791,0.01900789032781998,0.033561642301036324,0.036455811130532374,0.0371386679207468,0.03722249754016816,0.7951734605976416,0.6101706915871025,0.8085235525833923,0.5912736490623829,0.8056255839532884,0.9949739556429099,0.9952699247205063,0.9974734589677154,0.9972899264270856,0.3784664309551451,0.37301770872511747,0.3424503260415421,0.276039604373562,0.30443473770850965 -cucumber,rgb,0.999999999970639,0.9999999999633122,0.9999999999170526,0.9999999977986931,0.9999999975905296,0.0026010632531714224,0.0007375884245853025,0.9935997763885545,0.9265760003016777,0.891313504468411,0.9380341250184407,0.0004848080523611822,0.0001621584898320086,0.00015043656264306736,0.9117540193586399,0.9043598850101618,0.8981719555880859,0.8926300859045813,0.8834247449096669,0.9999999998352438,0.9999999997152615,0.9999999995899016,0.999999997534615,0.9999999974168878,0.999999999999986,0.9999999999999876,0.999999999999984,0.999999999999982,0.9999999999998472,0.9999619191093063,0.9999567941969079,0.9999568259422882,0.9999382154922932,0.9999258367847612,0.9998661516313972,1.0268569801100125e-20,8.813161396070485e-21,5.531049897156404e-21,6.687912936385112e-21,3.670297327696836e-21,0.9797128572069472,0.9724019165596223,0.965434297362657,0.9559132534382668,0.8616792517098624,3.541253145443052e-08,1.941009011228186e-08,1.8679423057838107e-08,9.229281755452181e-09,0.9945093024608497,0.9859631205014685,0.9787618459535337,0.9851366410190567,0.9765798920872101,4.851920427410126e-10,3.247742307892083e-10,7.917606056882792e-11,0.0009181171804503685,0.00015784332776526622,1.800268886116719e-05,4.535736928371888e-06,2.8559117695475773e-07,1.3969009715616544e-08,7.0922486296226965e-09,3.777500394256309e-09,3.749056934967999e-09,0.00026774719663510906,0.00047303991979557144,0.0001826503679433096,0.0004406740933028748,0.00013700049810345502,2.7290846001014294e-20,2.20271839393565e-20,6.488339542986078e-21,6.365092088186525e-21,0.9999999997878211,0.9999999997088593,0.9999999994767284,0.9999999994736302,0.9999999994010322 -cut,rgb,0.9144029732661251,0.9175426602420048,0.8880040180021681,0.7472218776246335,0.771818759717707,0.020626282418041625,0.02700361034956903,0.11091184703710552,0.12877944940510322,0.13362367319514032,0.07862693229626529,0.014847561442672253,0.013969125502537105,0.014013414686493081,0.047811769105309015,0.04655136084996883,0.0455877898564618,0.04478686539199756,0.0447005396625855,0.8958961242013721,0.8696976880008487,0.8577215517016559,0.7767861740395064,0.7438773617836777,0.9999928400231377,0.9999911707053991,0.9999902535831942,0.9999878312238473,0.9999394378762712,0.17640305840775766,0.1925079336691346,0.17831653012476648,0.16800989529107666,0.16060603298978202,0.1414108208615406,0.572760388322367,0.5790529518562015,0.6285040121836587,0.6055387629737049,0.6513967913024006,0.054185488105809074,0.05350122779889486,0.05025326340827679,0.04695526167090739,0.039647079384171294,0.13654520848438212,0.1395170656014546,0.13915493530791556,0.1406536201778836,0.46380571862725906,0.4773990337512334,0.515289284363111,0.4077816874118452,0.38750431049590284,0.04244411791243649,0.02734311221157156,0.0638371124314873,0.02985552492801675,0.024891520033897108,0.02628270564518319,0.021058385465085906,0.018838808413677733,0.011493688415752826,0.011790476176040857,0.012814779653893358,0.012801823116444518,0.17878760316359885,0.11040687971002136,0.18194119388737595,0.10472253044364097,0.1759961350512884,0.5094537467558831,0.5238774062185577,0.6315550440317821,0.6261689384567435,0.8647317061305676,0.8541058416462141,0.8278534546091934,0.8110093333233345,0.8131992803094139 -cylinder,rgb,0.4854394519575563,0.5695532737809754,0.47623307415182015,0.33294835545786483,0.4113978400888437,0.019729717170758616,0.03902417378232326,0.00965863999511361,0.008946238387204469,0.008999717839857447,0.007565470614962789,0.004874193713844747,0.004828748466032494,0.004795046881805512,0.007399247557278903,0.007388561021496288,0.0073844088771620724,0.007383899500888491,0.007275779623283335,0.6113628678064965,0.5412466767422817,0.5272108552710688,0.4275533057077746,0.3412280311882264,0.9967135109008585,0.9961571006735453,0.9957947059776554,0.9949780913116021,0.9810235366058498,0.06191667750535505,0.08081582461540683,0.0665981108999462,0.06408942826370359,0.06048512927502574,0.052666869853864845,0.8135230309060314,0.827124887319722,0.8471355364655421,0.8405393691515557,0.8736565856148883,0.0093188260998314,0.008708915487785096,0.008719576731058084,0.008808171960283355,0.0077061751972892,0.5375049312460509,0.5533331705734803,0.5527627207697843,0.5650731430594773,0.616647907819831,0.6618870461513147,0.7170403511183765,0.571810724029023,0.5573946721091113,0.17909423417397108,0.09484624280253492,0.30468716067154994,0.00456924737306093,0.004456748305440165,0.004760279158177985,0.004729964233425165,0.005295064022331619,0.007516571891949573,0.007891492135063021,0.007860579284903755,0.007873766073114801,0.49941446981457704,0.3028106654705257,0.5144512019105982,0.2865592841265954,0.5063669720669394,0.8834157784610905,0.8884315007098061,0.9320582768043568,0.9277850452052915,0.48265466916742855,0.47233845396460084,0.4327521428877637,0.3637972333828444,0.3917638833919339 -cylindrical,rgb,0.9998778086301764,0.999913811606698,0.9997752692221828,0.9975073819216695,0.9985233067662989,0.0014683835873120438,0.004197836053880469,0.028490252909396774,0.03376104749727299,0.03614426351244444,0.010986707626014142,0.00023432389960945568,0.0002009803647377796,0.00020055725265859595,0.004046915261416379,0.0038297018222935592,0.00366966987329724,0.0035405694780208732,0.0034750998851604048,0.9998748303543206,0.9997423232671564,0.9996709009274624,0.9986725032788064,0.9974914806280629,0.9999999999999782,0.9999999999999638,0.9999999999999529,0.9999999999999176,0.9999999999948748,0.31004652989479997,0.40885569738638966,0.3285315212737741,0.2907321338870858,0.25969219064290416,0.1881252966154603,0.9880712299568191,0.9894007964654555,0.9934740086305031,0.9919221974154478,0.9954130536338713,0.006526106286078332,0.005964699896090394,0.00525548501015168,0.00461679156944966,0.0028806840124190585,0.556127381178242,0.576125818961502,0.574027615478265,0.5847091267058186,0.9862405062091384,0.9890982945170835,0.9932317252551058,0.9751278568686038,0.9692576846387614,0.0259049582364729,0.006151666497119702,0.09039889995257101,0.0008411073384361103,0.000555003931147273,0.0006099677093667514,0.0003839547604430057,0.0003157972778675827,0.00015396666419898217,0.00016487132795544253,0.00018844031394546083,0.0001883075662160152,0.7204917038754851,0.31856096028931163,0.7359308831430446,0.2816483237918284,0.7140777826852825,0.9882619404527591,0.9897922387120052,0.9969986462515057,0.9966925738365644,0.9996640012507167,0.9995874144225882,0.9993120278073311,0.9989227170583167,0.9990456947765807 -dark,rgb,4.047133596296614e-06,1.4148697449396228e-07,1.0680819052623406e-06,2.1236639711035175e-06,1.3210380536863682e-07,0.0012354910484988664,3.984225753718409e-06,0.9999830955465476,0.9999978188635693,0.9999982605621195,0.9999898780416202,0.9985289675945845,0.9982213778741093,0.9983911297273486,0.9998076671794005,0.9997771022955799,0.9997483234715584,0.9997198537750914,0.9997597785829702,5.2595638771439785e-09,2.5502418206536643e-08,2.5875076371127833e-08,7.732395899647475e-08,1.2999429786691453e-06,3.028909724125829e-08,4.519305351734604e-08,6.660614600420063e-08,1.1785717806179233e-07,1.4441043227970268e-05,0.0013856007645058669,0.00012487756243806977,0.0006589948233938893,0.0006794423848559135,0.0009613891770245729,0.001945652357750052,2.373613661383316e-16,1.045953775498726e-16,7.891010233801744e-17,7.371034333524482e-17,1.3935288750526628e-17,0.9988295439351341,0.9994026995745211,0.9991130963817461,0.998506218649369,0.9990618000207373,8.560331110279927e-17,5.268955075614435e-17,5.3183363728130225e-17,3.549005512412323e-17,1.4099915544754956e-14,2.584096156801282e-15,4.232120842649646e-16,2.7978589490135707e-14,3.249807701288253e-14,3.1478395380768427e-12,5.238882917920235e-10,2.8357104941408775e-14,0.9999897786396621,0.9999787956622819,0.9999740206525717,0.9999136854160285,0.9995326689236615,0.7483534510345079,0.6842901575670808,0.7982290402169978,0.794385435473834,1.5313833194431782e-15,3.545716417668908e-13,9.430520062015192e-16,5.747021288013328e-13,1.0663703794463726e-15,1.2783651849908882e-19,1.0845578603858807e-19,5.202532571525175e-21,9.136425810649074e-21,2.3643310627556692e-07,2.211968281554391e-07,3.8841807094422216e-07,4.2534719089020335e-06,1.3122921034612653e-06 -ear,rgb,0.0007801134591924362,0.0004505930886871989,0.0018711988117435228,0.04003265952517454,0.014448382417346086,0.841712488233798,0.15577601805265193,0.8723291553167123,0.11069983963195762,0.053945918937345,0.8708960142680734,0.8943374219231323,0.7893929839033157,0.7711024777397347,0.9940886134793323,0.9946084339608393,0.9949813950927027,0.995275366289643,0.9948312790651731,0.00047755213553518183,0.0014950662840267136,0.001996433184402083,0.011574560067421875,0.03772908903571459,1.661055098829353e-28,8.04496826665856e-28,1.2047542883481116e-27,4.900813699493585e-27,2.8916093178802564e-23,0.9805810984408377,0.953839246997191,0.9755358915935974,0.977622617458709,0.9810001063050623,0.986789600384408,3.139808997418682e-32,2.2021190915434846e-32,3.108780141363377e-33,7.54044784655157e-33,9.759094230458072e-34,0.9974089407391902,0.9966377312214743,0.9972211680805403,0.9977315919887483,0.9972588326936506,1.2795943526493546e-11,5.437628201232919e-12,5.316264551445793e-12,2.190835004905538e-12,1.045528745261919e-05,2.434232158938261e-06,5.256958835092594e-07,1.6224440879078077e-05,1.7234256636222264e-05,6.78053319349169e-10,1.0218557400765605e-08,4.349585064274477e-12,0.11432840684356105,0.05980057422546444,0.0036809213027136816,0.0036815420199891495,0.00035042709872889745,0.00035582307488075666,0.00013800171793395218,3.786765268706543e-05,3.78073703181703e-05,3.529528149454825e-08,3.3408041738501183e-06,1.9705651245530627e-08,4.650796670287257e-06,1.8822007648991668e-08,5.353336954333421e-31,2.8162227155431356e-31,3.258273931467471e-33,3.748544278042908e-33,0.0028345775592786434,0.0036325947991896193,0.007263069421142582,0.01587508398916028,0.012397647611849002 -eggplanet,rgb,0.18863278693445093,0.03409733320647916,0.10573033708706776,0.15281844063368313,0.03210762254885544,0.04742494959697925,0.0008669384725193057,0.999783473271944,0.9996193476332522,0.9995423445041113,0.9997185154076059,0.9682374850536816,0.9461401969345853,0.9464614112544868,0.9994121165237864,0.9993694184021774,0.9993317295874241,0.9992964104231722,0.999319634667489,0.004845646821754634,0.012702244043224849,0.012718869221667737,0.0232075017511341,0.11794689464376991,4.255645564398576e-08,8.044249517321176e-08,1.0282807281666726e-07,1.9234930173757144e-07,1.2893265697358205e-05,0.7738783241618657,0.43903485814045057,0.6825724559797832,0.6737042955654616,0.7115784731728033,0.7727431130386195,1.097359472017458e-20,6.3965107955000595e-21,3.009380820427551e-21,3.817318797795609e-21,8.475058968717919e-22,0.9991626054178793,0.9993155942063479,0.9991627089406301,0.9989067397746852,0.9988018346351376,9.03130373195255e-13,4.952136606497932e-13,4.904392979989307e-13,2.7155305521599065e-13,5.883141215321372e-08,1.3861419530743358e-08,3.4016807570036688e-09,7.450924372081844e-08,7.363039786508787e-08,1.9642992490243334e-10,4.801881659136729e-09,3.284309078149525e-12,0.9931921642591547,0.982686731883047,0.9378800641543886,0.8583577515853205,0.4310252585499219,0.013846832555906864,0.00798535874609843,0.006731362714652476,0.006638024333318438,2.2085466398460611e-10,1.2753193071042717e-08,1.3650868787565066e-10,1.7455313659515136e-08,1.346272603065194e-10,6.374967337279449e-22,4.735096132362265e-22,2.4476380667389798e-23,3.358482509995996e-23,0.04754949751127801,0.04579483142284673,0.06284368882156434,0.21582581352770486,0.12157502299782973 -eggplant,rgb,0.00832311953830785,0.002154749573626141,0.006417639335367147,0.02014208539822359,0.006128216437855242,0.9706231448489274,0.7425256681752319,0.9998382963584426,0.9999273002421432,0.9999327084134507,0.9999104834060131,0.9998872682663215,0.9998893630281807,0.9998938013168857,0.999808697968147,0.9998021048367605,0.9997962987270178,0.9997908895721965,0.9998044171632188,0.0007523494169978358,0.0017476996347600049,0.001927540629745434,0.004856869690463066,0.016956582245637973,7.003307340313913e-07,9.56355972039749e-07,1.2152301655866638e-06,1.811062222498806e-06,4.503122265440571e-05,0.7494671658958552,0.5153079107264927,0.6888897857086344,0.7061700347185603,0.7434126097761325,0.8151020365194188,7.304073746901446e-05,5.202850657426427e-05,4.064567848181307e-05,4.2191434235738055e-05,1.9246245613582358e-05,0.999535712949859,0.999653356960036,0.9996176909257272,0.9995587497569366,0.9996960864275338,6.778937607806422e-05,5.630005757732687e-05,5.673349750175548e-05,4.934399274796531e-05,5.42734841076593e-05,2.7618016283144154e-05,1.2208973205753728e-05,8.844246746220354e-05,0.00010209195019741096,0.013835683448068077,0.13367230020841883,0.0016805134992341599,0.9999727013671951,0.9999706257666114,0.999969813672163,0.9999613218301354,0.9999383258575802,0.9994897466143811,0.9994272572423998,0.9995330631564423,0.9995291518521447,0.00011369855602320328,0.0014783993319540168,9.379954963404241e-05,0.0018786936022691348,0.00010283421175928906,4.2173188169898875e-06,3.81827290520792e-06,8.612612969999521e-07,1.0977393976213592e-06,0.0043179664359345145,0.004553316989477177,0.006761667844375309,0.018890689285384163,0.011846021859580004 -fruit,rgb,3.737327793591282e-18,4.700191153531273e-17,3.094948229876364e-16,7.385119936173799e-12,1.9896204455502446e-11,0.9999999996678601,0.9999999999561182,2.2976971821296708e-06,5.0868174665918707e-08,2.5527179291392733e-08,8.468121172438677e-05,0.9999988065143748,0.9999994627273694,0.9999993890816965,0.28142306046819987,0.37712549134771456,0.46116415456509036,0.535254124902947,0.5054790090169224,1.3915252064859125e-14,5.4237551192237946e-14,1.6115793847537677e-13,2.344322570418937e-11,1.3783709342911334e-11,2.3280560782053032e-61,1.64065376734746e-60,3.400883431582598e-60,2.333858989699073e-59,1.332856778236744e-53,0.04671661616131076,0.11384717143041545,0.07568403782307787,0.1474098270599745,0.18533695955246857,0.37987266465828823,0.5937337361197196,0.6941911747556163,0.2268964108563575,0.47816721728500405,0.311827978426919,0.3312100770856568,0.23677550748088214,0.4744348606848838,0.7568716839448147,0.9312060273683181,0.999999999995622,0.9999999999961546,0.9999999999962423,0.999999999996894,0.9815970517163177,0.9921956908445208,0.991604800079939,0.9970587811737129,0.9986434560810961,0.9999999999999465,0.9999999999999651,0.9999999999999005,0.800070967242291,0.9821838296904825,0.9699532833016635,0.9990664619291313,0.9999323457685318,0.9999999991100104,0.9999999990796262,0.9999999959008137,0.9999999960300825,0.9999999987365971,0.9999999996725037,0.9999999989444444,0.99999999973642,0.9999999992347839,0.9999520489917783,0.9999210562090686,0.9992713412364026,0.999065134151227,1.2126608167000427e-14,3.3355418550018424e-14,1.7068568646401294e-13,7.062187255001987e-14,1.7109674376644527e-13 -green,rgb,0.9990625727559627,0.9988338500814301,0.9990858526697742,0.9992665670497658,0.9989939204650414,0.9802737742880118,0.9399307739333571,0.9978358082300323,0.9907603841369154,0.9878615749647471,0.9967291450508815,0.9795906965575777,0.9696196163154563,0.9684245091640115,0.9984176477699847,0.9984276748339702,0.9984351587459598,0.9984411699372172,0.998380674589901,0.9984417580131631,0.9987415485937606,0.9987534842542841,0.9989232656147196,0.9992290331937426,0.0017347844588879772,0.002667840101788026,0.0028439056502421248,0.004019021347745304,0.026490955625075165,0.999372007641323,0.9991696324058105,0.9993118402979847,0.9992835858474313,0.999293699168994,0.9992918219063723,1.3665915660952517e-10,1.2025840316670853e-10,6.659506345259085e-11,8.650480350248034e-11,4.5035711784192436e-11,0.9990097509245642,0.9988877677212451,0.9988914476939553,0.9988929376179823,0.9985547646812509,0.004823046020293212,0.0034600128044449535,0.0034169096422767345,0.002388539916520811,0.9033706174990758,0.8417564506894288,0.7651134191627794,0.8980928301744862,0.8919209612887592,0.006981178053128441,0.013740288329165223,0.0013114773528342938,0.9508524784925876,0.9210623557930092,0.7912940778188878,0.7451344575132917,0.48809727156452204,0.34152433566439383,0.26396842404951876,0.18773829821505303,0.1874296194701929,0.16003985316900413,0.41991994017195683,0.1321644694149477,0.43901013069943223,0.12522209088777186,3.11027435475313e-10,2.532022438369903e-10,6.234135634045085e-11,6.481624918020635e-11,0.9990122823970867,0.9990189567180062,0.99909506780338,0.9992803094055038,0.9992040640026146 -half,rgb,0.8731545907854382,0.8784902595839758,0.8231466733794863,0.5717758967647762,0.6188604978865906,0.007382361793323221,0.01232220354280441,0.04893635969068658,0.0839196239711456,0.09356320917066137,0.034613301298828114,0.006059190245000307,0.0061548153092996554,0.006245329485203848,0.014899682961202221,0.014351054264432206,0.013935283931352183,0.013592270496465731,0.01370960686077966,0.8429258547314439,0.7930889252457918,0.7715360822237735,0.6287897089430007,0.5674703053256345,0.9999999347879724,0.9999999074293985,0.9999998945886441,0.9999998513991443,0.9999984677798321,0.054087387684683144,0.0628179061728153,0.055424330278979625,0.0514609396249381,0.04842514365233747,0.04108320248117559,0.9972598624209104,0.9973894133520282,0.9982236668500133,0.9978727556041108,0.9985241615593654,0.015272654192968966,0.015588726033495447,0.01429812561859055,0.013010296831720343,0.011245074356341176,0.31866750875167965,0.3408365345409346,0.34069207995674405,0.3616863471494899,0.41297297547215583,0.4550235460740551,0.5227464639163364,0.3527795203665941,0.3333605245197985,0.09602678300766017,0.05317102065134784,0.19803054489745614,0.01909070450207416,0.01691715599333049,0.023272426555877742,0.018466786739806042,0.020254927969628182,0.011507792960938606,0.012855710710680373,0.015878002502236418,0.015860046671846727,0.23613599153965795,0.11030887653654864,0.24909465872142186,0.10240887731753412,0.2429128943482405,0.9949256501837271,0.9954781037870913,0.9980046758353178,0.9979468491901559,0.7805513915254302,0.7610681530593475,0.7125137478243828,0.6795748312831343,0.6845296549768541 -head,rgb,0.12755180390086376,0.011215105515378276,0.041490119917489375,0.028284998543266382,0.003148825699524204,1.571922212039008e-05,6.805087289902762e-08,0.9988013996130856,0.9970707459113952,0.9961903914932777,0.9972478205762206,0.061698577753049856,0.026150162678278955,0.02623993917904783,0.9890322662175408,0.9876204144102816,0.9863332531222391,0.9850935741287697,0.9856048126811767,0.0005599501171563923,0.0016788976236824502,0.00151795520425722,0.002036334423322962,0.01851061697754384,1.1565396575987481e-07,2.4168296485456337e-07,3.0854453499732816e-07,6.166521195163638e-07,5.2461720854844354e-05,0.09804960929068553,0.015284494783669752,0.05446894400037911,0.04780427041261463,0.05716214526215914,0.07423843275823425,2.3135385122431255e-31,1.1135656040492067e-31,4.3844986672661243e-32,5.783061169219366e-32,8.043567107730157e-33,0.9860241824596748,0.9889211763861275,0.9844965786615851,0.9762553384862457,0.966245344584976,5.135130811565666e-20,2.1775401953110015e-20,2.1368521178253177e-20,9.015496027685272e-21,4.756381844180824e-12,6.311829173744894e-13,9.932221777944806e-14,5.115943585951139e-12,4.551312744570453e-12,2.1955504917276673e-17,1.2029880242227557e-15,9.444526079677968e-20,0.4856278712022458,0.16325166280706802,0.026449333435661197,0.005882495678401813,0.0002490676633971395,5.907224069961492e-07,2.643093518822859e-07,2.082578260717512e-07,2.04028893759854e-07,2.6418222261236917e-16,4.761602151978067e-14,1.3430357754318048e-16,6.965840800195987e-14,1.2479886441440753e-16,4.481298565954572e-33,3.045064822629669e-33,6.483375037055044e-35,9.797101411692413e-35,0.010505817453989931,0.009123156595223933,0.011888920021083094,0.07062506780721169,0.028904564019857932 -in,rgb,0.9988157995248413,0.9886637970346489,0.9803681746433962,0.3008608777158143,0.1598554029261692,0.1281124516303944,0.20272871944450674,0.9999993667327176,0.999999999947089,0.9999999999899207,0.9999996717220491,0.9999644726407593,0.9999907946470716,0.9999931498241831,0.9980855620969111,0.9974007086896147,0.9966813706318982,0.9959047074137926,0.9970194303846177,0.7744116202458002,0.6769878565476841,0.5623822268733445,0.14497069536935017,0.2311356360488234,1.0,1.0,1.0,1.0,1.0,0.001113919706710264,0.0005382204200171693,0.0008318891246009949,0.0007417036518541941,0.0007777321408297509,0.000821725462485191,1.0,1.0,1.0,1.0,1.0,0.9481021385341769,0.9829367468161974,0.9655971548687762,0.9220949363802308,0.9657941828589894,0.9999999755910621,0.9999999919449504,0.9999999923541864,0.9999999978073728,0.03251445635511536,0.08633115476561212,0.20926022159341387,0.030433570979955242,0.032363379292154305,0.9999999991262765,0.9999999992176356,0.9999999999915508,0.999999999851731,0.9999999999240099,0.9999999999995246,0.99999999999858,0.999999999999911,0.9999999999524427,0.9999999999887754,0.9999999999994205,0.9999999999994087,0.9959374201545017,0.9279019459245282,0.9977726164810234,0.9192425146241219,0.9982107407393057,1.0,1.0,1.0,1.0,0.8504824865391927,0.7757645777446933,0.637471005225524,0.8133538607827125,0.6866364091984785 -its,rgb,0.9999846027193544,0.9998381366132612,0.9999525051012486,0.9999326493417694,0.9994917973998126,0.9760005912161398,0.23983424315722696,0.9999999973459461,0.9999999955927092,0.9999999946952149,0.9999999948924736,0.9999905836328533,0.9999802737630126,0.9999805194063707,0.999999978465959,0.9999999758546946,0.9999999734855598,0.999999971212923,0.9999999724106979,0.9975069292600338,0.9990825248504988,0.9989969515372304,0.9992446533997463,0.9999000823955569,0.5802138584318236,0.7169823896258222,0.7597559398443445,0.850223106942518,0.996242227578824,0.999983436626992,0.9999027424018357,0.9999705418851246,0.9999669818935207,0.9999723652626689,0.9999790069040467,8.98192496341198e-21,4.649372376185937e-21,2.1941549787145003e-21,2.6942961477841164e-21,4.858538983596644e-22,0.999999969370464,0.9999999761378783,0.9999999672834465,0.9999999510361963,0.9999999363039759,7.721744453949418e-12,3.7266785723988845e-12,3.6730506284423415e-12,1.7767592647847175e-12,3.415856822214195e-05,5.833938936214437e-06,1.1405398549159614e-06,3.775282050602495e-05,3.4582332614499164e-05,2.308741340019613e-09,8.735968638700943e-08,1.9921043434459833e-11,0.9999993440473178,0.9999974784637035,0.9999876482859126,0.9999522350995536,0.9992893987403247,0.8524457447185274,0.7472856288556395,0.7227820959948948,0.7190172762690819,9.643458922970746e-09,9.644729842299844e-07,5.378339223369601e-09,1.3596569090861186e-06,5.110362510015361e-09,1.852822328532473e-22,1.3474514600458168e-22,4.886362572576106e-24,7.14774193505439e-24,0.9998283077466904,0.9998047261825257,0.9998474991729578,0.9999717340948762,0.9999333627217406 -laying,rgb,0.4902966317604905,0.6857121051680334,0.8426576128479806,0.9946563223143347,0.9939645273320842,0.996953154009662,0.9772314576297231,0.2685047812397732,0.0004170101979525946,0.00012166628027198995,0.17654539155767365,0.48111251841420055,0.22546027205248723,0.1919094839727169,0.9858084532392692,0.9882021364104607,0.989816502409443,0.9910248612841983,0.9889677319951994,0.9049378911683366,0.9528194649262122,0.9662217955582302,0.9936191504766826,0.9953071672834183,2.9926891666300654e-33,2.1916220222952773e-32,3.081367766928337e-32,1.5926570008375053e-31,1.9024608751342376e-27,0.9999782826741712,0.9999761369531904,0.9999786179064533,0.9999800335082539,0.9999808600331042,0.9999826975834091,1.6690205179845557e-38,1.4882050267943933e-38,1.0923723656785637e-39,3.9013133133803673e-39,4.841218871732154e-40,0.9983801869382426,0.9966851715375967,0.9978283783953261,0.9986801208665913,0.9975231331220893,1.7689633243127987e-08,6.4049243779771856e-09,6.153672784318532e-09,2.0301202430752042e-09,0.7449314509110174,0.4417461089503092,0.1783754925788581,0.7737940313955743,0.7661298376817627,1.6549996530453574e-08,5.724003893482089e-08,1.2229763897145332e-10,0.0002968407333715186,0.00012905704230358728,2.2002567997680556e-06,3.315830959993801e-06,2.101786993860837e-07,3.46669606203567e-06,1.0117391050477516e-06,1.1911116463381146e-07,1.2009472194885378e-07,0.0006887308588489017,0.027759869203589145,0.0003724396210707183,0.034221077406197675,0.00031874609094630963,3.3542331582793175e-35,1.4628553409647208e-35,1.1739953472435196e-37,1.0855748878220654e-37,0.9457726209113527,0.960655231894993,0.9784300159290419,0.9772171264229345,0.9812907859631771 -lemon,rgb,8.904216081581201e-10,2.1780164797586046e-08,1.5610025145175955e-08,1.008774556848884e-06,7.887869401523214e-06,0.6133345179371675,0.9869145191779518,1.2712085922740162e-11,2.0039567733443345e-13,1.0321381648043162e-13,3.264656854087689e-11,6.037285298982664e-06,7.184570477513364e-06,6.159827881595751e-06,1.690393648199956e-08,2.2730969396547494e-08,2.8837446311846163e-08,3.5432054790952206e-08,2.9471227254207332e-08,1.9615854806564487e-06,1.465137995550273e-06,2.366713582918447e-06,1.1527462481188931e-05,1.7777917917897269e-06,7.904440096035841e-32,1.985302360718742e-31,2.219910192594871e-31,4.615550524880923e-31,2.753592244748466e-29,0.0003322997844921482,0.002058273964552339,0.0006398249510657237,0.0008465705926309213,0.0007661501720674882,0.0007397128906021473,7.805336097469236e-05,0.00014896790526253,4.665229800775869e-05,9.835843957100508e-05,0.0001342258275306846,8.920630855878778e-08,4.238415535974828e-08,8.879892206387722e-08,2.1791092353177942e-07,2.504395634731189e-07,0.9999998460310107,0.9999998649675601,0.9999998642274259,0.9999998752807004,0.999708212671554,0.9999023322053066,0.9999564566998811,0.9997873625887852,0.9998248385162294,0.9999814144992552,0.9997194537512443,0.9999962904353786,4.863082267314676e-10,1.7298269176882828e-09,6.721435875050123e-10,5.8100649719278454e-09,2.475767996911106e-08,0.00018378534583404164,0.0001695589353851607,4.210704047687e-05,4.332408344726721e-05,0.999999175787689,0.9999936772811023,0.9999993485541709,0.9999925205474072,0.9999993574782733,0.6040316184897663,0.5391609819546885,0.5373003027723644,0.4236284472480721,2.045844356282031e-07,3.3646262962262924e-07,5.05607231268859e-07,8.212765488209051e-08,2.4713713539401205e-07 -like,rgb,0.9995867492931528,0.9998714348828346,0.9995249399979369,0.9960438187164965,0.998753644585338,0.0020015205185835647,0.021016890155056887,0.00020686114650717347,0.00014007855815203132,0.00013993923449128143,8.288699215669729e-05,1.3956314069411737e-05,1.3002172208988035e-05,1.2643649895452579e-05,7.982718894877281e-05,7.937198348782062e-05,7.917503088185874e-05,7.912090354032736e-05,7.485437753063311e-05,0.9999273122514545,0.9998024568487702,0.9997584802101351,0.9990072438817716,0.9965062069482324,0.9999999999985478,0.9999999999975544,0.9999999999966469,0.9999999999938667,0.9999999993846052,0.16043092584504584,0.3384462915452128,0.1994832054885793,0.17654654959407481,0.14714415409875858,0.09299792496442649,0.9999725676223041,0.9999799487612911,0.9999874959886401,0.9999853729541536,0.9999940689664568,0.00018878936373240967,0.00014705082638296493,0.00014732420816323752,0.00015224662000460216,9.211190229954803e-05,0.9993134040231888,0.999435474885055,0.999430204729815,0.9995067953311303,0.9998933997903259,0.9999438702129315,0.9999764402477452,0.9997924141432456,0.9997427223399202,0.8025110329940212,0.24473556309405825,0.9762984738605649,1.0588425494868895e-05,9.212358413717297e-06,1.0565651452682575e-05,1.0006167402659852e-05,1.345010584597328e-05,4.297268303104647e-05,4.9481186804934696e-05,4.714765658826424e-05,4.741719173717088e-05,0.9991580524316415,0.9860412711081498,0.999305235881784,0.981798676171272,0.9992164336298106,0.999996267261653,0.9999968144551669,0.9999994749239521,0.99999934086859,0.9995590167502604,0.999488741889889,0.9991041572507694,0.9975809885331274,0.9983914370449629 -lime,rgb,0.99999050442907,0.999999754135763,0.9999975252945479,0.9999842188517614,0.9999988472592206,3.07340184648174e-10,7.251557484507015e-09,7.513134853087458e-15,9.637769990022832e-19,2.247108993984921e-19,2.8356614871325135e-16,2.2486759871539768e-18,4.180303435573353e-19,3.072590671696604e-19,1.4267692382062626e-13,1.6987514209375435e-13,1.961527723967431e-13,2.2267938011064934e-13,1.5185785426858433e-13,0.9999999830731919,0.9999999093948855,0.9999998922250583,0.9999992855294935,0.9999895169755428,1.0435719830525431e-10,2.77423790547254e-10,1.8029308020749216e-10,2.548837279245076e-10,8.459602296503543e-11,0.10803238690895312,0.5287822697994332,0.18468859682713232,0.13645454626898054,0.08651065392932096,0.02618445004874223,4.2231130434733763e-41,7.626682180881084e-41,1.1917711391063326e-41,3.482753265407755e-41,2.6486336054895985e-41,1.7353130787752148e-11,4.035735773408293e-12,6.167782974270994e-12,1.0978100965374413e-11,1.2605671508645246e-12,1.3565690410151481e-08,6.2074371321470156e-09,5.761043195155216e-09,2.0571229939931064e-09,0.9999938638130978,0.9999931563862097,0.9999960857807783,0.9999685704158536,0.9999392038412067,3.9123419865936154e-15,3.330467189988598e-17,2.996915981371675e-15,1.818405387330013e-22,3.571752174895335e-23,3.4701136933512954e-25,3.5803886191001806e-25,1.9160412836472775e-26,3.616919476353548e-24,1.125142921141588e-24,8.235872868887459e-26,8.411810102674988e-26,0.006528706915391439,0.0005311733779875557,0.004840567453594775,0.00034843390695003123,0.002879921527161764,2.7622867692129276e-35,1.541177111476348e-35,4.2898274269823686e-36,2.273578954642239e-36,0.9999993152364895,0.9999992807701793,0.9999984266897783,0.9999818698691828,0.999994393226005 -long,rgb,0.9910300830978722,0.9604989586087973,0.9792425473172542,0.9632861859124945,0.883391462941852,0.18148213449111017,0.011854101995795507,0.9999082379989049,0.9999104397320847,0.9999056621554248,0.9998535893883901,0.9748473292836277,0.9619705129010307,0.9626184009835904,0.9994727456995126,0.9994250896469963,0.9993831828843275,0.9993440419281403,0.9993671651554444,0.7930519668378146,0.8685689059118615,0.8575473239621778,0.8560818759438011,0.9529627911557303,0.9641821882831456,0.9718321142070651,0.9745428272745548,0.9800286110614005,0.9961604767565327,0.9663483992019484,0.9060821881255992,0.9523967007636083,0.9481440163632351,0.9528115820065982,0.9586360556970269,7.758377095163925e-13,5.174585921708971e-13,3.787918945770224e-13,3.9877003958265615e-13,1.5496290901867122e-13,0.9992922293248362,0.9994131840799949,0.999259920850713,0.9990092101588385,0.9988212762363513,9.260923713236142e-09,6.156629799600639e-09,6.1078895206203714e-09,4.073093068641305e-09,8.688726170442537e-05,3.0573154339509584e-05,1.194641172127347e-05,8.764478294311526e-05,8.16442130324727e-05,2.606089944040868e-07,2.2197781442031564e-06,1.7753438970015055e-08,0.9971385904902367,0.9933272270743934,0.9851894647576893,0.9636721541180394,0.8423896155823661,0.11675900651622091,0.08435081098134552,0.0871415346999787,0.08616043916234938,5.499261579251469e-07,7.555308550794085e-06,3.929754261604201e-07,9.178488384386519e-06,3.8001577724909504e-07,4.491293886648267e-14,3.861079210677159e-14,6.5016426203885345e-15,8.25559545608526e-15,0.9499931991564168,0.9442485506352917,0.948658734990423,0.9812815520755124,0.9680734767032758 -looks,rgb,1.0,1.0,1.0,0.9999999999999998,1.0,2.3212376463558587e-08,1.5022139208907517e-07,0.6317677762863456,0.5113679591450516,0.5181801617040758,0.02274803387473937,1.7532678401580438e-10,5.76570372134611e-11,5.580367762527175e-11,0.00048784627287014375,0.00038104873339111237,0.00031424229755236556,0.00026699412221147754,0.00024455621358334393,1.0,1.0,1.0,1.0,0.9999999999999996,1.0,1.0,1.0,1.0,1.0,0.9999268297223552,0.9999721753778112,0.9999336166747187,0.9998584096568925,0.9997550222986734,0.9988490403238035,0.00024107409019184,0.0002892643038622031,0.0010381531554822469,0.0005713590729877791,0.0020174606614055887,0.004020256632438729,0.0027997439554343214,0.0015511129322864495,0.0008260365549691541,9.860958943182425e-05,0.0017287916158543013,0.0015130058980973146,0.0014437318194784794,0.0010714694202744093,0.999999996423957,0.999999996420875,0.9999999987525816,0.9999999613194391,0.9999999021206711,3.3272566401569487e-09,5.214881484453874e-11,4.353375354418798e-08,3.09848981695954e-08,2.829945641660466e-09,1.1528621943248118e-09,1.0393589440224624e-10,9.753664228557436e-12,7.313015984270496e-14,6.035334387580725e-14,7.201840663147831e-14,7.131688996253345e-14,0.7683165271942944,0.03967953921891794,0.7635931650016777,0.02367121661590726,0.6643776911552244,0.00014418482691983233,0.0001973836497903982,0.0034148501815306,0.0026844258433214715,1.0,1.0,1.0,1.0,1.0 -lying,rgb,7.904768030206868e-09,6.8752517868378495e-09,3.6057469714706665e-08,4.87742613956301e-06,2.595111990135429e-06,0.999992769398115,0.9999723244786235,0.9412823574253557,0.8495921654083879,0.8155507833483947,0.9901070363297346,0.9999980737476634,0.9999985308490308,0.9999984973467206,0.999382887429053,0.9994654523176802,0.9995223122765545,0.999565739580894,0.9995667163841377,2.6026653292652895e-08,9.032566800550277e-08,1.498754525606962e-07,2.2685270105228136e-06,5.3636206194340605e-06,8.162596500020999e-30,2.3912892534263793e-29,3.8942221824416384e-29,1.1978350134733189e-28,3.735729723195027e-25,0.6595840398852522,0.5404473226322303,0.6470098039627931,0.722884397265146,0.7719522919785955,0.8750002390640592,2.133102654229657e-05,1.8916503808003196e-05,6.418336094329349e-06,1.0701796893405703e-05,3.934620934780298e-06,0.9989184513199111,0.998958535240775,0.9992574612427017,0.9994859155576251,0.9997779142261259,0.8394662808115969,0.8188636106653402,0.8208559992968313,0.8075453877944406,0.0021263776218822575,0.001599681976869547,0.0007508773106911674,0.0064243044175164386,0.009651022577080311,0.9995669227620438,0.999952082096068,0.996141460324532,0.9999168023198202,0.9999660419946543,0.9999500366150431,0.9999838901177044,0.9999901698500268,0.9999992682682127,0.9999991434127841,0.9999986171328493,0.9999986247025038,0.5902142261903669,0.9590714414824965,0.5617992144794552,0.9690527408853208,0.6082832737061944,9.983949097191052e-05,7.36926375338844e-05,7.632459875960344e-06,8.471376326273076e-06,1.083805903292092e-07,1.6820810717926143e-07,4.442234572472236e-07,7.534364234275577e-07,7.155400574036657e-07 -object,rgb,0.9999999994358177,0.9999999988967236,0.9999999964451967,0.999999622522263,0.9999996248575522,0.005265596460629065,0.006977450933516206,0.9993097882708718,0.9999265152885592,0.9999520177582413,0.9970894251286051,0.05067489086952436,0.04502517114432722,0.048017680171347166,0.8816401127052863,0.8612990712996704,0.8431903895121973,0.8262236961066646,0.8342736669660705,0.9999999914811214,0.9999999795355585,0.9999999665776875,0.9999996311148691,0.999999538239304,1.0,1.0,1.0,1.0,1.0,0.9819278925324966,0.9812342016550897,0.9799672544879764,0.9727645001266607,0.9680418505871762,0.9478448894011575,0.9999999992856734,0.9999999992519957,0.9999999997844367,0.9999999995933782,0.9999999998210469,0.8635162566984459,0.8853752638493099,0.8331503371151991,0.7521800924615233,0.6335917879177821,0.6690278540942454,0.7043806274436661,0.7034028741996416,0.7322428626139361,0.9978187511058408,0.9979835965505226,0.9987400467369565,0.9948537073175105,0.9928845619843225,0.07457683004416629,0.02703694874984917,0.2903620707399025,0.9227463368868987,0.8389493038035125,0.923516882043767,0.7670349134343873,0.6849946688083762,0.03791231434723222,0.047623117674399244,0.1028999212865693,0.10190892008674367,0.7363508516671465,0.3059723026308713,0.7526098431626769,0.2679417322582843,0.7289161052947123,0.9999999643037364,0.9999999747167985,0.9999999966576627,0.9999999967672539,0.9999999850421846,0.9999999766227906,0.9999999466566025,0.9999999482205271,0.999999935389764 -on,rgb,1.0,1.0,1.0,1.0,1.0,0.9999953396995841,0.9999999161073431,0.9997635421785764,0.9820919481665367,0.9669952390347504,0.9951891928746286,0.1764658607230877,0.07459345205375559,0.06389960300100704,0.9993673572220477,0.999386064401708,0.9994034402606934,0.9994198828143498,0.9992664933439245,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999998768,0.9999999999999849,0.999999999999929,0.999999999999891,0.9999999999998157,0.999999999999317,0.39193659014294524,0.5390484981196603,0.5066900198970544,0.5595528069229116,0.7717857616706384,0.9999759734610996,0.9999386537865678,0.9999439381781713,0.999953195835808,0.9997232719291453,0.9999999999997675,0.9999999999997256,0.9999999999997118,0.9999999999995905,1.0,1.0,1.0,1.0,1.0,0.9999995550466557,0.9999162504314928,0.9999999667203194,0.0063109912684689165,0.0018565264855486567,0.00024792065602950903,0.00016159673275007588,4.1658344454844185e-05,0.0005779793972271234,0.0003887689682983421,0.000122984789836203,0.0001246211259731273,0.9999999999999998,0.9999999999999714,0.9999999999999998,0.9999999999999509,0.9999999999999996,0.999290552001848,0.9992579419826998,0.9998632538282463,0.9997656131571823,1.0,1.0,1.0,1.0,1.0 -orange,rgb,1.8899029716222567e-30,5.7699269830683734e-30,1.154642526016979e-28,9.593102574298133e-24,8.045154314712932e-24,0.9975170665092908,0.9976658095374169,2.1263751351234575e-11,3.686717078579655e-12,2.5031176087017415e-12,2.216082228308309e-09,0.987655580422095,0.9960289263557761,0.9958267072816479,2.4864903371087127e-06,3.68399096364249e-06,5.02380363108132e-06,6.545775469144381e-06,6.4713551025741685e-06,6.383168687584032e-28,5.7350057064483096e-27,1.9101200296476607e-26,7.594761042678036e-24,1.5190892314223902e-23,3.459519199553197e-74,2.5418322549854993e-73,6.673706016674307e-73,5.651389679793754e-72,3.4592321991257974e-65,2.259024290665761e-11,2.1873523506400342e-11,2.851621122336112e-11,6.871066823691908e-11,1.1161635445231159e-10,4.965565394840235e-10,3.841011958127929e-05,4.4297763119920885e-05,6.710878757286714e-06,1.796813084638548e-05,5.837391616564354e-06,7.678775328220257e-07,7.413573309104381e-07,1.928248335989917e-06,5.647624593974298e-06,4.730317644930348e-05,0.892071854407629,0.9075096283031838,0.9109779479791009,0.9329270145836442,3.6194435002102777e-12,6.067558344234539e-12,3.1556805478463424e-12,4.326144898352645e-11,1.1760429123972166e-10,0.9999964053954575,0.9999997634676181,0.9999779051538651,0.003844813493533221,0.06835903082068977,0.09060257134157788,0.7547973804379599,0.9834959373812739,0.999998441139081,0.9999986140412247,0.9999965267388745,0.9999966089752154,0.0029123639275852754,0.07626892273156842,0.003310624490674859,0.11367652374074882,0.005339677105442091,0.010447969034394865,0.0066333690431335645,0.00036807956259751913,0.00036985039985363037,3.065998822009385e-27,8.982267525352741e-27,6.957316141676348e-26,8.158650704479037e-26,1.2291963730190662e-25 -out,rgb,0.9228614475250426,0.9262152977970888,0.8974897583180338,0.7554179349949242,0.7813463635525034,0.016007622054945173,0.021411273992099276,0.09431908446630012,0.1097663788557455,0.11406159087594285,0.06503054127576062,0.011034758540923418,0.01032874735244147,0.010359764284868673,0.03853030437460013,0.03745907701846659,0.036641716888837654,0.035963382199474474,0.035874051916931125,0.9057843107363862,0.8800643539989526,0.8682513305760884,0.7865393998398253,0.7520840755371133,0.9999960323671776,0.9999950559182958,0.9999945099846211,0.999993063926032,0.9999622488921482,0.16052851823763462,0.176801035079261,0.16252782691765236,0.15241377537231407,0.14513418414744653,0.12643937819238868,0.5494742918588412,0.5564174914580592,0.6089554443088477,0.5845792254742389,0.6339446747940896,0.044257855605084495,0.04358972913932829,0.040801402067126805,0.03798758088976657,0.03166136404609252,0.12157019326083489,0.12434497921753473,0.12399027203101456,0.1253268641116375,0.4604449178915646,0.47490625349082727,0.5151593860241466,0.4011015590001589,0.3796967618081175,0.03430369706845689,0.02136482269837802,0.053050584191031515,0.022867497213091368,0.018830651227287446,0.01985871088186516,0.015708766691280015,0.013929342996354819,0.008323827626037008,0.008542316092825922,0.009302204288838701,0.009292545361122062,0.1640126513058166,0.09746458506385249,0.16710380484211057,0.0920580956859009,0.16117485612497137,0.48654809618305783,0.5016318691058952,0.6162483358866307,0.6102728282298224,0.8748588884995504,0.8643474809491208,0.838022159034141,0.8205505874209275,0.8230108749398134 -plum,rgb,2.55640482142924e-15,4.2801356435393547e-16,1.7382933434433343e-15,1.131864217281221e-14,3.090857111523406e-15,0.0003453102904396968,0.00010088332064850318,0.0031799641836473447,0.3843838990429971,0.5971066013528268,0.031777066913451654,0.8819223868393937,0.960119124928706,0.9664029180399606,0.0015464413860017982,0.0014517881177925581,0.001376767400209652,0.0013130247540433981,0.001637206874711446,1.6968853945403264e-16,4.634937037869017e-16,5.616512634242867e-16,2.4426905658251723e-15,9.63285421909839e-15,1.3464482297484701e-08,7.903091205154823e-09,1.054679972511898e-08,9.115201480472301e-09,2.8777537722608263e-08,1.4574054653639362e-10,4.899466097167298e-11,1.1006708209331327e-10,1.4642581029715153e-10,1.999693305377885e-10,4.482533844323633e-10,1.0,1.0,1.0,1.0,1.0,8.692798375089885e-05,0.00019952564130980424,0.00017194185594904314,0.00013797423491941169,0.000591825647389,0.001364988087704323,0.0024151459130366307,0.0025359691379704093,0.005234207424254524,4.961272352396436e-13,6.912715017391889e-13,5.902965997266355e-13,1.514754094738986e-12,2.4178986992293998e-12,0.9057966391145795,0.9917406742205896,0.9494862714930847,0.9986638659791436,0.9996475689501075,0.9999821274793499,0.9999877835373925,0.9999987580899445,0.9999925634028416,0.9999966236514501,0.9999992544874103,0.9999992480928677,1.3433924127007156e-07,4.0317417045288153e-07,1.7495565804271317e-07,5.091483274350553e-07,2.4756313983767427e-07,0.9999999999999938,0.9999999999999956,0.9999999999999984,0.9999999999999989,1.185657343561459e-15,1.3303928516773368e-15,2.33739796090378e-15,8.069253787921152e-15,4.621815211953778e-15 -potato,rgb,1.5403988818805463e-17,1.5734563741659204e-17,9.310126417515658e-17,2.850658602658631e-14,1.784450011237635e-14,0.8018620429971681,0.7100650653294002,8.489176888419212e-06,1.085050921802518e-05,1.0711458779531774e-05,0.00011959956821623003,0.9594797789960261,0.9802987832923186,0.9805733437550884,0.001607051470568128,0.0018968560525815241,0.002160035561727757,0.002411768523060601,0.002517849506195496,1.0270214187812296e-16,3.7830559943841533e-16,6.918089079324274e-16,1.6166113289112563e-14,3.349406998390961e-14,4.573773092027542e-37,1.0866385714059338e-36,1.844147322084099e-36,5.073695713910117e-36,1.290887534121309e-32,1.562581935581705e-07,1.1089620638755418e-07,1.5924236806136365e-07,2.5446264425186125e-07,3.4500258981084865e-07,8.396460630186626e-07,0.7147956990329112,0.7100790326145212,0.5466773633054494,0.631522456811119,0.4942278855951462,0.0004960210925047521,0.0005884993488491015,0.0008801221058272023,0.0013646024882160498,0.004957627714587694,0.14128044251755087,0.16173068488599937,0.16573760786527617,0.20420261678559068,6.0284505826320675e-09,7.463724992427266e-09,4.835345813991887e-09,2.4719253924596597e-08,4.350422868196986e-08,0.9949992350653861,0.9993326433315378,0.9866997813325044,0.3966186183020248,0.7639586515469062,0.8643703439012825,0.9700037554434102,0.9945209246877663,0.9998641892389155,0.9998868573888932,0.9998716978119467,0.9998727813151586,0.0008370282580992905,0.0065869182784304234,0.0009093467330368865,0.008664627279581477,0.0012227677443407705,0.8670244894193833,0.8475429384895569,0.5914984123384346,0.6135425647732923,3.764114217699724e-16,6.361151628422758e-16,1.909089847856859e-15,2.9326131093083465e-15,3.0184079575227374e-15 -prism,rgb,0.39016059410201553,0.4160122481135909,0.3612934535433802,0.2519116659019551,0.28190901321619755,0.03744670617428097,0.053427912588781004,0.04917248375224349,0.05986219834058428,0.06258843424671592,0.04268683645586282,0.025226291136494494,0.02570351701692594,0.02580759474638658,0.032446764527204144,0.032084215213374796,0.031807653348608696,0.03157847131975317,0.03159091728205431,0.4085484381541687,0.36642705112519297,0.35467628985973626,0.28834071289342517,0.2530894837258174,0.9968675089652834,0.996332832733228,0.9960965964462635,0.9954318987851221,0.9865730547844603,0.07534481360143733,0.08482909815762982,0.0775087406154272,0.07531020843576959,0.07294810216701272,0.06733851896971528,0.9103540420100851,0.9137484713559753,0.9264115104158966,0.9210971125481486,0.934490168527718,0.03390749617003755,0.033706756114209334,0.03289749778100219,0.032107527900334575,0.0301483659460477,0.34139539704128,0.35472586870870654,0.3546720990617614,0.3671263745151568,0.31558696200800435,0.3424702020264845,0.3800602124717515,0.290782350036975,0.2832690581886062,0.17997111980256453,0.12881331743533914,0.2631595862955964,0.0356505030152453,0.03494777986240121,0.04065758197109469,0.03842178372049063,0.042380065537830656,0.040300021193175675,0.042683682002989436,0.04603729782296479,0.046044911788195364,0.2753288587423222,0.18332389210593636,0.2843305347508704,0.17643481339212042,0.2812715468719929,0.9040130108196964,0.9086266890121544,0.9386350685991122,0.9371080352492511,0.3457675015510275,0.3362388755178125,0.3109572232610431,0.2845683998023499,0.2928684158524628 -purple,rgb,1.6615083172082643e-06,5.833301139893267e-08,4.412301826039783e-07,9.101245864934431e-07,5.75013776389362e-08,0.0011820832339779325,4.214200964702471e-06,0.999976304174397,0.9999974997270157,0.9999980771167638,0.999986948362309,0.9986303334366978,0.9984369978503951,0.9985944837979198,0.9997298828653896,0.9996869268792427,0.9996464745431952,0.9996064538446465,0.999664669033148,2.2413956262640424e-09,1.084286810264185e-08,1.1058632178391632e-08,3.378473658236975e-08,5.596427371299862e-07,4.0444219687029226e-08,5.7826615093943165e-08,8.523874919452633e-08,1.4647833808187524e-07,1.5832685879444006e-05,0.0007170546354734945,6.554811377680825e-05,0.00034314584193984477,0.00035741985789170135,0.0005077414909151893,0.0010431265440121148,5.305266483428013e-15,2.3616499674005905e-15,1.9018714140992743e-15,1.7243078750596144e-15,3.4783469851020237e-16,0.9982126405213994,0.9991067367982377,0.9986751535982177,0.9977709279364655,0.9986684549726128,2.054950746436769e-16,1.3169471487411537e-16,1.3318973579700754e-16,9.298708506185123e-17,1.1286745006438067e-14,2.1997728487016116e-15,3.767347432185546e-16,2.300938522641561e-14,2.7136877726933237e-14,8.359741565320346e-12,1.3510461876490218e-09,8.912834208229353e-14,0.9999914947284795,0.9999836366530835,0.9999827031500437,0.9999448582261731,0.9997423795035139,0.852570756141099,0.815310770691326,0.8952009501686927,0.8929738664220448,2.2329483686701142e-15,4.637511823594978e-13,1.4109573446842965e-15,7.489910813842588e-13,1.6143662026500194e-15,2.4671454393865225e-18,2.142151564981507e-18,1.1839057721499777e-19,2.07912239060247e-19,9.902532139873352e-08,9.302925405767836e-08,1.6421284812051132e-07,1.784568342596338e-06,5.532059137355932e-07 -rectangle,rgb,0.3550287415016991,0.44596372719658445,0.36289983525107755,0.27217194612682455,0.3498564876816437,0.0537672801061307,0.1133092184949464,0.01284462721961627,0.013102124378224906,0.013410637397914552,0.011316131512055887,0.013167414537034431,0.013794332243857758,0.013733945213904359,0.011755873272371932,0.011814136372098105,0.011867442362261239,0.011918243126988562,0.011780231425334887,0.5167884249009363,0.44961717577655264,0.4406943141251383,0.36636090436182045,0.2821820160175356,0.9900122361006414,0.9882921852006232,0.9873353239500094,0.9849927662059709,0.949860200604118,0.0741176503708367,0.09866638801914418,0.0805890813228952,0.0789693042515091,0.07507850313724587,0.06710952036444987,0.9902443418651379,0.9912243630780752,0.99256105977618,0.9921360558743267,0.994226483140419,0.013925799106109164,0.013137115407375813,0.013373208710343289,0.013766424220565439,0.012796792592087963,0.8771985933269189,0.8872648074713606,0.8872191448844193,0.8956938349285954,0.7527846418720352,0.7974638388362018,0.8405382254585309,0.7262609796304582,0.7191791147708156,0.6070985021031141,0.42181263877502995,0.7779468513606271,0.011213254341720961,0.012044047336215887,0.01426958095900465,0.015408803009677166,0.02002216126105305,0.03504194095104827,0.03800389878528735,0.038687466578427754,0.038773456817174604,0.7932546572353936,0.6103126018703708,0.8064972117791209,0.5916625464299062,0.8035940159977959,0.9945336154346487,0.9948504616758101,0.9972237464554324,0.9970247675564525,0.38429720531548506,0.3788672219340609,0.3484418170655046,0.28217720900081433,0.31054666704563927 -rectangular,rgb,1.0,1.0,0.9999999999999996,0.9999999999987728,0.9999999999997264,5.0944065997547784e-08,6.54172543652527e-07,0.004744003857130854,0.002203541206573871,0.0021629699610424273,0.0001340784356083819,8.910273354301015e-11,3.753163803120422e-11,3.589451794486822e-11,1.002841368824072e-05,8.433592914265511e-06,7.3762378070692825e-06,6.592022066977038e-06,5.971478166479788e-06,0.9999999999999998,0.9999999999999989,0.9999999999999978,0.9999999999997975,0.9999999999987033,1.0,1.0,1.0,1.0,1.0,0.9939674847478659,0.9982099022992941,0.9951228735127903,0.9909868469832228,0.9851303319918789,0.943383402634853,0.018572909130710732,0.02481746688020085,0.07011327992363785,0.04494360335307574,0.1503591733826074,7.681223182273875e-05,5.069201155883045e-05,3.374420673965586e-05,2.2269150975696293e-05,3.666442359763889e-06,0.09888464155069406,0.09715298984787547,0.09373085109720464,0.08042294433219814,0.9999999800681267,0.999999985347857,0.999999995503791,0.9999998451300849,0.9999996628112064,3.8739877663233084e-07,5.309051822979788e-09,7.300326507610658e-06,2.3809970657339e-09,3.9242700546220744e-10,1.9719825461464238e-10,3.501887509768219e-11,7.026679522783834e-12,4.4278792384710903e-13,4.0165373864426417e-13,4.1570209930339784e-13,4.142008096179405e-13,0.9669408973875101,0.2385731851732167,0.9690136279355398,0.15717068591199976,0.953667435712798,0.046562834575751263,0.060933047181662585,0.5314712151454918,0.4572572356395861,0.999999999999998,0.999999999999996,0.9999999999999793,0.9999999999999225,0.9999999999999445 -red,rgb,4.416490563111804e-15,8.928518195675423e-17,6.30759248422505e-16,8.085380460082788e-16,5.373652011361441e-17,6.6350260575086915e-06,1.7788906166793495e-07,0.9838885748835863,0.9999971037458658,0.9999992885919994,0.99854326393399,0.9991013763246703,0.9997669610886978,0.9998272326492121,0.3905910214721243,0.33733390969013144,0.2966681290979638,0.26350448650666497,0.3410203459706436,2.729421739250082e-18,1.142934383114823e-17,1.1403287536626503e-17,3.273035659110197e-17,4.920554974348655e-16,0.999986904826012,0.9999604699315044,0.9999710542311488,0.9999509078063591,0.9999206483397092,6.3324689208951285e-12,6.172379345274278e-13,3.1575002480499504e-12,3.906470516876965e-12,6.0934000658155195e-12,1.713587718626586e-11,1.0,1.0,1.0,1.0,1.0,0.007533189876988046,0.030342174270348916,0.017477432206047284,0.008453240999445808,0.04633579644746391,7.235199341433622e-09,1.351218459909814e-08,1.4395799281069799e-08,3.3417381943034834e-08,8.412675582707381e-19,6.964586272217344e-19,3.6261612736839995e-19,2.9031015536150293e-18,4.71133473568368e-18,0.005987503657871649,0.3800159065241133,0.005312666129845244,0.9999999761253443,0.9999999911148892,0.999999999858864,0.9999999997311539,0.999999999965169,0.9999999669126411,0.9999999878793101,0.9999999990780761,0.9999999990542872,2.0908590382317793e-13,2.6419226770685893e-12,2.537465453973258e-13,3.887164672481827e-12,3.8804280248964833e-13,1.0,1.0,1.0,1.0,1.0401942324835706e-16,9.332281191691042e-17,1.5514756437323489e-16,1.904179340015325e-15,5.332976714411048e-16 -ripe,rgb,1.5303090430878363e-31,6.845790585131752e-30,5.394144770970073e-29,1.9798625714392135e-23,1.161791265988023e-22,0.9998877073688488,0.9999974787840714,1.2103858731468234e-17,1.1056617993075585e-19,4.8423894892095284e-20,1.352096188553179e-15,0.036531726837995326,0.11114873183736795,0.0957896291491828,8.348896641572972e-11,1.4903003980315392e-10,2.3631829399071803e-10,3.511352744168118e-10,2.98600702760549e-10,1.819456866655533e-26,7.837615460241943e-26,3.170190253033647e-25,1.5820159278476674e-22,4.815747393251241e-23,6.290155939364355e-85,6.354645087022292e-84,1.506655883084256e-83,1.4783031032383564e-82,1.0300582204259273e-75,3.421523832262013e-11,1.81864314777898e-10,7.580970988880954e-11,2.0041901769554582e-10,2.7066884160024884e-10,8.797941758910078e-10,0.004467135649442992,0.00917447646272698,0.0008437312538195573,0.0033684882339058463,0.0021423674318824604,1.2371205872981542e-10,6.417912929701117e-11,2.6805360063332415e-10,1.418970760409203e-09,9.672626814999461e-09,0.9999999997258924,0.9999999998064475,0.9999999998126738,0.9999999998773694,5.372932281258103e-05,0.0002521091669637758,0.0003482512026010701,0.0005394290200800953,0.001465597715993635,0.9999999999954101,0.9999999999931979,0.9999999999969968,3.630981014751093e-09,1.399557531101875e-07,1.05930586032441e-07,1.2424426887854242e-05,0.0006761689983672854,0.9997509444743092,0.9997804694753891,0.998594299788413,0.9986564067653768,0.9999978944224873,0.9999987597540457,0.9999985528949695,0.9999989703998844,0.999999047611928,0.9995378041318573,0.9991996605421134,0.994317078473043,0.9914392571924859,7.694982869331292e-27,2.852478551592096e-26,2.101930347108024e-25,4.4758227246214006e-26,1.7046045565002943e-25 -semi,rgb,0.9929506153981139,0.9914685543379922,0.9811897724310663,0.7616796122907142,0.7875142108919035,6.33871036495049e-06,9.116528091118419e-06,0.004645652993053623,0.011138050060976715,0.013309469623883248,0.0017392232994814037,9.212606399063407e-06,7.974391184257164e-06,8.171811407478276e-06,0.00025716301388086144,0.00023358610019560874,0.0002165373387332459,0.00020299523530439232,0.00020597742761276373,0.9764183204054575,0.9579127206516598,0.9444296660681442,0.7935500938872488,0.7442736646150085,0.9999999999999969,0.9999999999999942,0.9999999999999925,0.999999999999986,0.9999999999988856,0.003195653865651351,0.003534672112137532,0.0031156145086312596,0.0025561038155630226,0.0022638282437929765,0.0015820310546008555,0.607064660419817,0.6089568832901794,0.7473962410115045,0.6824655772881866,0.7765954735388847,0.00029472739507851135,0.0003080320810425383,0.0002447741416735045,0.00018919926135124775,0.00012351125842638612,0.0003216428938232204,0.0003435041973275089,0.00034141108313327236,0.0003557805947938417,0.02604460593259592,0.027568401787527654,0.03744518839678377,0.014773717545260233,0.011895388826717613,2.2913346376857693e-05,9.49687019815819e-06,6.0967316154673114e-05,0.00013264568533620914,7.689942834840508e-05,0.00010219751671706494,4.880253112518379e-05,3.43133073576851e-05,4.5330296980059474e-06,4.958398036997269e-06,7.101937862949537e-06,7.066041169352826e-06,0.0006712563073580672,0.0001948331568074346,0.0006995225190650327,0.00017083206226368875,0.0006356245422360637,0.23838078998225257,0.2717432792133698,0.5403560182089653,0.5367298415601309,0.9606127946184824,0.9494967694437224,0.9179926031263514,0.9088541842142643,0.9033945616547111 -semicircle,rgb,0.014784571659401427,0.04808638982950799,0.021253325528063843,0.011412653769329225,0.031105468701089392,7.232434336829873e-05,0.0005438290462429612,3.431763377724289e-07,1.3179638289252537e-07,1.1722684099181863e-07,2.2360753181618606e-07,4.752400867462773e-07,4.599723139138524e-07,4.405347046229856e-07,6.063478988864087e-07,6.334355600547436e-07,6.569114536901661e-07,6.785329756567613e-07,6.35985227261327e-07,0.12626529671985928,0.07011875987546354,0.06712506389479116,0.03762265813217618,0.013422532372798193,0.2969286600913649,0.2654473915713381,0.23308676013608834,0.1929673750910387,0.02848266433025069,0.00035595759648842946,0.0008591103315698589,0.0004629439351244417,0.00044061819014605384,0.00037985634374684997,0.00027456022217372237,0.1239708667061226,0.1589596646151423,0.17010807970994868,0.17479917866105332,0.27365220249723804,1.364114985794426e-06,1.035147051234269e-06,1.1653885376170359e-06,1.3710282784744445e-06,1.0186736536169563e-06,0.6839894343827921,0.7108099107619801,0.7093513339677905,0.7269984903131308,0.7368976898358474,0.8282769030544167,0.9014618813422309,0.6612748269533779,0.6377020680204192,0.02717434106294767,0.003948227716579158,0.12221670747805348,8.673192135718379e-08,9.537077993177327e-08,8.525429543908464e-08,1.1483101141562559e-07,1.6540634814457165e-07,1.3505091403904237e-06,1.4318568812721894e-06,1.0946380451071178e-06,1.1033513274741697e-06,0.6300401497956412,0.18765402061560957,0.6633676821469633,0.1605556815639424,0.6466104725090797,0.7042398945166978,0.713863678773632,0.8765966577950625,0.8519891744288489,0.0329444255663482,0.03257813446024923,0.02491100690840006,0.010396673710538047,0.015755387055078215 -semicylinder,rgb,0.06788359004379964,0.15559785336955057,0.07953893957490499,0.03709384280091834,0.08125104071118261,0.00028844631472756365,0.0015910534320311036,7.746285750027388e-06,4.870489119094316e-06,4.6902929968831464e-06,5.274365772778749e-06,6.585886941198045e-06,6.631379873086456e-06,6.463767450605296e-06,8.423894492979875e-06,8.612448885630596e-06,8.777257265683267e-06,8.929740402089516e-06,8.551467911028322e-06,0.2750349413512694,0.17455600660855644,0.16493335162685085,0.09416961323763998,0.0416534916242762,0.9893993396116831,0.9866251970782526,0.9842404564287641,0.9790446750360468,0.8254697031494698,0.0012700172866373263,0.0025907734898479944,0.0015631144956932998,0.001480482030610632,0.0013031472838208806,0.0009797325260075455,0.8852610343102197,0.9071327724296406,0.9226347715752407,0.9197434743949416,0.9527854005275832,1.5005388651758106e-05,1.238706610006917e-05,1.3218679160609363e-05,1.4546234984165512e-05,1.1429120071555058e-05,0.7663330156317087,0.7908843150972429,0.7901236292964381,0.8081657146164416,0.7278732919857801,0.8129387575407249,0.885684129230019,0.6578158235139973,0.6361421061074263,0.07935098189358329,0.01611780582124797,0.2832254546981159,2.6745702678356577e-06,2.8743242791797347e-06,3.100466882707909e-06,3.7007422720134835e-06,5.3557023139141345e-06,2.2833324034155092e-05,2.515859388945519e-05,2.2433851948486032e-05,2.256257207964236e-05,0.6590214617575347,0.2405300512216995,0.6900691645506525,0.2113730106408486,0.6771780751302745,0.9806168047867287,0.9820510592703381,0.9938483077697543,0.9927445760886474,0.10165047976696472,0.09826073687138605,0.0764016462115695,0.03888124457089932,0.05303323166030356 -shape,rgb,0.9999992076823006,0.9999993425192713,0.9999982881471005,0.9999739682809977,0.9999824471106478,0.009817680178342387,0.018589589393758262,0.5815374154846213,0.5628354842134606,0.5681280433717181,0.2915570259081029,0.0021910304410283445,0.0016317762172758158,0.0016188713213116546,0.11749975308076199,0.11040955998162552,0.10514700584169319,0.1008770207079477,0.09869256991686824,0.9999987115713891,0.9999973785293251,0.999996522334511,0.9999838066146045,0.9999727834466156,0.9999999999999998,0.9999999999999998,0.9999999999999998,0.9999999999999996,0.9999999999999714,0.9517194545877654,0.9642231867493336,0.953481860080372,0.9429198175462328,0.9335993264810544,0.8996067329839779,0.4435182967772397,0.4598854909371619,0.5602546083038796,0.5140556622012314,0.6151982070659006,0.19449951475796115,0.17884260065249283,0.15559488455242793,0.13369869853358643,0.07809247798207457,0.34778048863714917,0.3442063024689678,0.3413093189083024,0.3274137922190209,0.998211113637995,0.9982895428524052,0.9987879221749718,0.9964518399134961,0.9953830467313306,0.01080432906618387,0.0030467294892063275,0.025429340154274546,0.009736410904083333,0.005087527705277593,0.004196774384211264,0.0021571709845745685,0.0011805374495761395,0.0003155872768024812,0.0003056639899793757,0.0003280503318473471,0.00032722761827267457,0.7882616154691602,0.48391395683347793,0.7897371281401957,0.44378138877785345,0.7658631902926686,0.41068879373245654,0.4358649317926698,0.6604546084609416,0.6431970918070328,0.9999969913682147,0.9999961699231494,0.9999933692271058,0.9999906165067621,0.9999911439461469 -shaped,rgb,0.9999999999999596,0.9999999999999649,0.9999999999997944,0.9999999999553055,0.9999999999751805,0.001990603928390501,0.004678755864678455,0.9928716242316858,0.9922183417404434,0.9925548827228822,0.9254584462388722,0.00023479511836457762,0.00012601759596492736,0.00012461619159838882,0.5262245578934549,0.48880405154927065,0.4596005104659393,0.4350702432484814,0.4251987724162515,0.9999999999998299,0.9999999999993736,0.9999999999988998,0.999999999978038,0.9999999999494134,1.0,1.0,1.0,1.0,1.0,0.9998920230062028,0.9999312842947063,0.9998946160883624,0.9998378448353776,0.9997814851510416,0.9994871397879256,0.33432861911991635,0.35044632353145233,0.5350940145989309,0.4445611158141612,0.6131052391331487,0.7681135216732583,0.73699840668074,0.661598757874939,0.5699865927450889,0.2892592097116738,0.32936577560578395,0.31195625773455493,0.3064690964545058,0.2717605586175351,0.9999990695339496,0.9999990217927254,0.9999994330827388,0.9999964842795002,0.9999940775575462,0.00042388876076974503,4.8271791048232465e-05,0.0016273945415948164,0.006200073159109554,0.0015684617703097812,0.0009960597403052417,0.0002395360379254359,6.070931199389518e-05,2.728333272208659e-06,2.461858435577506e-06,2.8879575003708794e-06,2.8687158208398018e-06,0.9718433500185969,0.7706380280707464,0.9711428651197852,0.7160758003815493,0.9624939565069855,0.19550036990353484,0.2262742697850812,0.5856148588390914,0.5580057628253684,0.9999999999992963,0.9999999999988558,0.9999999999967126,0.9999999999944471,0.9999999999946265 -side,rgb,1.0,1.0,1.0,1.0,1.0,0.9995517334328867,0.979636712684322,0.9999999999999998,0.9999999999999869,0.9999999999999722,0.9999999999999762,0.9995427861639417,0.9954762260185602,0.9949091784640672,0.9999999999998084,0.9999999999997553,0.9999999999997031,0.9999999999996496,0.9999999999995952,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,7.69164199251428e-34,4.635257378610485e-34,2.069991511634756e-34,2.6995863991544093e-34,6.228837367860687e-35,0.9999999999999871,0.9999999999999798,0.9999999999999616,0.9999999999999214,0.9999999999990155,7.142186598848745e-10,1.9299622503860867e-10,1.787253253152641e-10,3.9675772278419954e-11,0.9999999999970681,0.9999999999706182,0.9999999999030529,0.9999999999775637,0.999999999941156,7.388420984694432e-13,8.794470093728659e-13,8.212926698367311e-15,0.9999837960248548,0.9992050303455536,0.9430376062318994,0.37919824776994515,0.0013833448585547903,3.372249025946848e-07,8.203798796926892e-08,2.995796869636604e-08,2.9288105177761416e-08,0.10419409059071515,0.48642638225061746,0.046201335965467376,0.4701970395624621,0.02644428465417223,5.2512894118762005e-34,3.461966661740309e-34,2.0079821382039255e-35,2.2086456584914846e-35,1.0,1.0,1.0,1.0,1.0 -square,rgb,0.9999999966752839,0.9999999987095978,0.9999999895741752,0.9999985250535767,0.9999995791477253,2.6089494461944937e-06,3.1460072375114914e-05,0.00037266338873672637,0.00040861142926274527,0.0004543375411871666,4.787522606807047e-05,2.2806455588514917e-08,1.6383170754341695e-08,1.61411306116667e-08,8.09492441361162e-06,7.313028216499424e-06,6.763996604118998e-06,6.337768920438587e-06,6.012557396426616e-06,0.9999999977890621,0.9999999893089787,0.9999999823727054,0.9999996730738948,0.9999985539566874,1.0,1.0,1.0,1.0,1.0,0.2863024463038554,0.5312923264303502,0.33376322872811676,0.2576895886952572,0.19767951150603716,0.09108126322175027,0.9999330435055965,0.9999501671955979,0.9999811857037169,0.9999715514030805,0.9999917401398255,2.5616607455855643e-05,2.0068440136065406e-05,1.5943159409415328e-05,1.2708155962420048e-05,4.5731620083989635e-06,0.9221280422654761,0.9339116574221543,0.9327166715636989,0.9382648686684358,0.9999822181135447,0.9999898882233613,0.9999965629922268,0.999935552549547,0.9998977872679776,0.002126097394363706,7.811839357667997e-05,0.037787036238994424,1.996110234505852e-07,8.669147221029375e-08,9.787197763787169e-08,4.0759093197325855e-08,2.845131817842964e-08,1.0230994333078867e-08,1.1708427998323428e-08,1.4215266577074356e-08,1.4217748271995297e-08,0.982237691849533,0.5555235642253372,0.9850941914956193,0.45853901221808474,0.9811668941074893,0.9999653587421713,0.9999739434543881,0.9999981272842972,0.9999976241498917,0.9999999786915392,0.9999999677656678,0.9999999050421603,0.9999997210608903,0.9999997990259326 -that,rgb,0.999978359674176,0.9998642470215016,0.9995212016180407,0.7937085330706726,0.7286286807897112,5.4144596306171645e-05,0.00019169570373164384,0.9995401128722068,0.9999999251092969,0.9999999844301721,0.9994424492017613,0.49088392440227746,0.7431393821809744,0.7910455618882519,0.21764967338887073,0.16707652769072348,0.13390617705438687,0.11003564045755673,0.1402750332731401,0.9963000550655051,0.9898501189701168,0.9808066358483903,0.723345277166902,0.7324572812509638,1.0,1.0,1.0,1.0,1.0,7.124580505538962e-05,5.0213776357808e-05,5.7809371032521345e-05,4.503568893881693e-05,4.1618506630779396e-05,3.1489840188989883e-05,1.0,1.0,1.0,1.0,1.0,0.018621469636478698,0.04822472329868802,0.0230123389972253,0.009466566083516455,0.014186304989981625,0.9999974674511479,0.9999991287305002,0.9999991633357818,0.9999997390869652,0.06162210623285831,0.16538316214388907,0.42119169932874617,0.0366143850441212,0.03263790776523037,0.99999757430398,0.9999933444724749,0.9999999869113292,0.9999957717765491,0.99999671522084,0.9999999698424973,0.9999998779038592,0.9999999880981766,0.9999926762886744,0.999998128279214,0.999999888075712,0.9999998859239342,0.9302631699338019,0.19786651937961255,0.9606384990826397,0.16142005534711784,0.9646455739974632,1.0,1.0,1.0,1.0,0.9950789678456768,0.9908660546059477,0.9749025425459262,0.9846027181588695,0.9737026235951486 -the,rgb,1.0,1.0,1.0,1.0,1.0,0.9999993209292322,0.9999999279637027,1.0,1.0,1.0,1.0,0.9999698297647754,0.999775318577715,0.9997794146375961,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999996,0.9999999999999858,0.9999999999999827,0.9999999999999813,0.99999999999997,1.0,1.0,1.0,1.0,1.0,0.9999009110147765,0.9152852455829951,0.9999990965019397,0.9999999999746492,0.9999999968204902,0.9999999923158295,0.9999984301651325,0.999836830286421,0.018046999599452287,0.014886921559927354,0.04244109503781337,0.04125032627730552,1.0,1.0,1.0,0.9999999999999998,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -tomato,rgb,4.903038492248826e-14,2.1325457668736442e-14,5.962768752134376e-14,5.416834921085756e-13,2.8846594989932274e-13,0.002573989162069368,0.0022349405248957618,0.00012159140436896021,0.004813816814656454,0.008835341934820823,0.0009798458012168765,0.4537706186587652,0.6978404701061093,0.7226254440724523,0.00023380773672697065,0.00023405034353118353,0.00023382313962591595,0.0002333589761854655,0.0002709157165157045,2.350917455802059e-14,4.841580797458976e-14,6.138026772743426e-14,2.5799291050013487e-13,5.300553682011862e-13,8.89443479480132e-12,6.446807888029448e-12,8.209879281687029e-12,7.932081898065488e-12,3.161047281459107e-11,2.8625368278915523e-09,1.7190983274211927e-09,2.6010655243619677e-09,3.453214340827005e-09,4.344182097815714e-09,8.234889320638866e-09,0.9999999999999984,0.9999999999999984,0.9999999999999991,0.9999999999999989,0.9999999999999993,2.9441913890858312e-05,5.095073787572601e-05,5.154628123391568e-05,5.067202711794266e-05,0.00017261799911797462,0.2894455058696236,0.40803421056426864,0.4177014365474211,0.5777479998425035,1.0752665988931007e-09,1.8384678925843942e-09,1.9996061520729708e-09,2.7988107927211816e-09,4.2480618266470445e-09,0.9949567086024738,0.9988053533511787,0.9982313493386085,0.8755707534710905,0.9648231589087488,0.9966052585517906,0.9983480295820317,0.9998235436827303,0.9998600261643529,0.9999281946626967,0.9999741316182822,0.9999740927289978,0.00011437022621812331,0.00015987541470971963,0.00015186057843620068,0.00018503206100182898,0.00020263112571571173,0.9999999999999147,0.9999999999999347,0.999999999999976,0.9999999999999798,7.001914434683366e-14,8.377152988560974e-14,1.3974374851153813e-13,2.6429140720123305e-13,2.0861464528200265e-13 -toy,rgb,0.9579055655099868,0.9608807909042797,0.9465816807899522,0.8785516493063988,0.893593907452767,0.060737038883952967,0.07917408006394894,0.21635784886503906,0.2272312861716586,0.23141955890518176,0.1602529129822741,0.037869659567943095,0.03538192669108964,0.03537458471409404,0.11261407100591009,0.11033249087852842,0.10858431048259773,0.10712856488689637,0.10658818724319412,0.9527344749787126,0.940424475479553,0.9350459787388807,0.8964772933498217,0.877374539278073,0.9999868070733733,0.9999842395927828,0.9999827106429323,0.9999789862519038,0.9999108179809332,0.37987435194534935,0.40859733712721447,0.38431926899088104,0.3684855521375821,0.3561570292431774,0.32334907607551155,0.5831533820138669,0.5903967582812278,0.6300889324834669,0.6121542910785903,0.65281719524135,0.1302455104110375,0.12723687649905363,0.12135316068529843,0.11539326862121077,0.09839512216078804,0.2976590443360086,0.3009476941405546,0.3002321651386501,0.30066775643220467,0.7165076119015324,0.726630841173735,0.7541338117573201,0.6699206249531393,0.6515984040154345,0.10441261662093858,0.06864848851450771,0.14671691313822477,0.06312485924946602,0.05326536257812623,0.053586643208934394,0.044326278288381524,0.03929547646265451,0.02706792135851929,0.027398654775855853,0.028745016827212012,0.028726271539008204,0.38795584315287723,0.2711862139210103,0.39199169231537695,0.2599801076763725,0.382242179319753,0.5615969044189696,0.5729248653916488,0.6639899241473364,0.6578363358902148,0.9369020982228992,0.9320940252105924,0.9195386571845048,0.9095136201623814,0.911616157529019 -triangle,rgb,0.8336746486729428,0.8831474549698518,0.8287543502283176,0.7027590484643815,0.7782484481597899,0.030172578648638846,0.06297337866344896,0.014476791556723339,0.011172319977712059,0.010916817323654886,0.010249977239741566,0.0050528876245632395,0.004787939019855963,0.004724218719210655,0.010951976999312097,0.010948991621241811,0.010954405452463624,0.010964490826603352,0.0107159266305425,0.902243910958779,0.8679939297296948,0.8599701259729384,0.7912813353223053,0.711641038176152,0.9993243273726246,0.9992160363432632,0.9991281209009938,0.9989512254977749,0.9954463560895574,0.16213263670377498,0.2130093663300662,0.1747318107332029,0.16695633747927335,0.1566268297118322,0.13379134420707356,0.6103507773354903,0.6348381772551007,0.66188801456113,0.6544457530777517,0.7132727940624838,0.015407230651917016,0.01396069308690441,0.014017197227856389,0.014234426733544144,0.011723968273687517,0.6660792807912423,0.6761036343775088,0.6751765596239,0.6806694474312265,0.8664387784598653,0.8869616227464652,0.9117010710800922,0.8363416563625902,0.825117001988162,0.2007020280586329,0.09642517164708418,0.33650443281515335,0.004120861459007463,0.0038025400121835433,0.0036617960053777873,0.003557785941631355,0.003661625944957093,0.005477758500742256,0.005601827102379223,0.00530240437854454,0.005312911794741551,0.7067485735518678,0.49278467587005004,0.7175315670468542,0.4702282632619045,0.7079047168524745,0.778462911366928,0.7852580136808943,0.861919055024282,0.8521814789572024,0.8332175883919928,0.8262035842050138,0.7970927452467769,0.7360326208602836,0.7626673720591588 -triangular,rgb,0.8336746486729428,0.8831474549698518,0.8287543502283176,0.7027590484643815,0.7782484481597899,0.030172578648638846,0.06297337866344896,0.014476791556723339,0.011172319977712059,0.010916817323654886,0.010249977239741566,0.0050528876245632395,0.004787939019855963,0.004724218719210655,0.010951976999312097,0.010948991621241811,0.010954405452463624,0.010964490826603352,0.0107159266305425,0.902243910958779,0.8679939297296948,0.8599701259729384,0.7912813353223053,0.711641038176152,0.9993243273726246,0.9992160363432632,0.9991281209009938,0.9989512254977749,0.9954463560895574,0.16213263670377498,0.2130093663300662,0.1747318107332029,0.16695633747927335,0.1566268297118322,0.13379134420707356,0.6103507773354903,0.6348381772551007,0.66188801456113,0.6544457530777517,0.7132727940624838,0.015407230651917016,0.01396069308690441,0.014017197227856389,0.014234426733544144,0.011723968273687517,0.6660792807912423,0.6761036343775088,0.6751765596239,0.6806694474312265,0.8664387784598653,0.8869616227464652,0.9117010710800922,0.8363416563625902,0.825117001988162,0.2007020280586329,0.09642517164708418,0.33650443281515335,0.004120861459007463,0.0038025400121835433,0.0036617960053777873,0.003557785941631355,0.003661625944957093,0.005477758500742256,0.005601827102379223,0.00530240437854454,0.005312911794741551,0.7067485735518678,0.49278467587005004,0.7175315670468542,0.4702282632619045,0.7079047168524745,0.778462911366928,0.7852580136808943,0.861919055024282,0.8521814789572024,0.8332175883919928,0.8262035842050138,0.7970927452467769,0.7360326208602836,0.7626673720591588 -vegetable,rgb,0.9999997330052497,0.9999997504876016,0.9999997861141654,0.9999998051563133,0.9999997386725407,0.9288190669289195,0.6250881751720228,0.9978350796733365,0.8282021521145208,0.6786616329076997,0.9907822477437833,0.4116034476565135,0.17908391579518146,0.16020445772895503,0.9992249845609481,0.9992530658195031,0.9992747954931247,0.999292935550413,0.9991849240914347,0.999999671945547,0.999999729494408,0.9999997248467449,0.9999997181358211,0.9999997948344378,9.387572975572894e-09,2.7607744616727726e-08,2.948447793290478e-08,6.53238849068901e-08,3.1570814767777443e-06,0.9999986386577749,0.999998210010808,0.9999984838095333,0.9999982349392552,0.9999981413848565,0.9999977010313122,1.1173899343001799e-29,9.221794366709829e-30,1.9278936614692083e-30,3.999090017947934e-30,9.230811035464003e-31,0.9998688451820402,0.9997884029850854,0.9998013297432002,0.9998167653264713,0.9995319858221124,3.680716135224563e-08,1.566359018309561e-08,1.505742754176665e-08,5.824391039441307e-09,0.9877480382315296,0.9580530443525248,0.8949224316870248,0.9817731153096185,0.976605784538674,7.545435954060027e-09,1.5952237363842032e-08,1.843742931994389e-10,0.024100466605188234,0.0061219597210939985,0.0002553581762267118,0.00014025729480078477,7.42207990527348e-06,3.970509656361942e-06,1.474239645350626e-06,3.795502903477398e-07,3.79000932594681e-07,0.0009403476958642477,0.011539174421522806,0.0005483539519601067,0.012769857313046218,0.0004399231640671561,5.006716103543774e-28,2.9262560739065223e-28,1.1356820136358656e-29,1.1226268998364405e-29,0.9999997850228677,0.9999997844118392,0.9999997925471247,0.9999998175713125,0.9999998089931749 -wedge,rgb,0.6318035886597262,0.7661461543247469,0.6663909262096968,0.5513754222443439,0.6814227401422448,0.02980822734886204,0.08197979395830196,0.002589901657550019,0.0014764979871788966,0.0013760670579103667,0.0018961334191494573,0.0019539784262429223,0.0018610188165555884,0.0018156003837390188,0.003087553049126437,0.0031475493744689614,0.003199029639766894,0.003245970515871223,0.0031281565112964652,0.8448249477931539,0.7884939505590017,0.7815829362918167,0.704132502896885,0.5717424801708937,0.9589561043261774,0.9550650285231799,0.9503179474360886,0.9429459299466172,0.8207283341203094,0.11167991799251181,0.16827450161690738,0.12617017450038995,0.12180507338870614,0.11274199854573434,0.09436064288248153,0.4639937124601783,0.5021240112458191,0.5135486433767572,0.5174925974631572,0.5930039372228029,0.004985284068337186,0.004266572648822337,0.004498725462623567,0.004851676158329927,0.003968603862553326,0.868653376545769,0.8747781301720254,0.8742352295944008,0.8774954826224155,0.9368083834125985,0.9510745709865606,0.9647539621643396,0.9215000692350338,0.91608398413433,0.3473926456906527,0.15240350274547043,0.5530201695407037,0.0008390417139864574,0.0008344564101431937,0.0007474505097577264,0.000834210228560048,0.0009395032907594191,0.002588255684937159,0.002630387135789535,0.00225648750520108,0.0022654796495383293,0.8812266520570056,0.7133212496926463,0.8883625091913875,0.6910053172904616,0.883353599941961,0.797938012416403,0.8017027321636657,0.8761261376626361,0.8631483851477768,0.7099431601453601,0.7058190683211291,0.6680995247163871,0.5538707331286582,0.6081214540521642 -white,rgb,0.007581609383592972,0.0008970908312547593,0.003514388033988802,0.006115440122842722,0.0009483178329722858,0.023500001236142678,0.0003534788691689932,0.9997628709684189,0.9998001736200213,0.9997872225635265,0.9997639733439582,0.983185070325898,0.9750073961480222,0.9757529433957368,0.9991952020816092,0.9991256181605058,0.9990635338201063,0.9990048412049732,0.9990662638301091,0.00010371768890088813,0.0003070206434754101,0.00031153484802896734,0.0006582644059143945,0.004420002612622011,3.3204113061047667e-08,5.7175523771468224e-08,7.524393364749762e-08,1.3493603206162604e-07,8.976700241012885e-06,0.23804701270828088,0.05799405359148921,0.15854430746101925,0.15704998238056447,0.18770950523132499,0.2591968961974117,4.037864369404327e-18,2.2692609756472373e-18,1.2610301378064305e-18,1.4589733229738055e-18,3.41905623478677e-19,0.9983260967081811,0.9987782881644773,0.9984592514841837,0.9979034770437937,0.9980711378111231,5.393881532026996e-13,3.1894563633388433e-13,3.178341006586111e-13,1.9355689096263553e-13,2.498896455952706e-09,6.119354542109284e-10,1.4787089997864484e-10,3.5876829813396316e-09,3.7379190923844095e-09,3.5122686938676645e-10,1.1780655196582716e-08,6.540246356010238e-12,0.9982861875731825,0.9962134408046004,0.990523192336663,0.9770461115139611,0.8753782606876447,0.08442153516851963,0.05549266022106527,0.05778425949548847,0.056947018791557356,4.1114488397143183e-11,2.667483553246929e-09,2.6296879321706105e-11,3.751794276898443e-09,2.704831566112937e-11,8.42435569781459e-20,6.601298444291782e-20,4.0303849713651704e-21,5.782567152934074e-21,0.0013624710185261913,0.0013153058063221901,0.0019404952758790654,0.009348422462438489,0.0043588385541588155 -with,rgb,0.9999939053394379,0.9999734455634763,0.9999551233361906,0.9980077632978956,0.9963968980170421,0.03090972414916079,0.02150272584209668,0.9999627024922103,0.9999995400549312,0.999999788165512,0.9999413686329536,0.9617195776571117,0.9726914214444966,0.9762008731804354,0.990731485089879,0.9886132332131222,0.9865854725787719,0.9845585725170533,0.9866790782103583,0.9996872630080353,0.9995290006420785,0.9992957256915622,0.9960464314100046,0.9973761748327465,1.0,1.0,1.0,1.0,1.0,0.4128472298239399,0.28989208109935916,0.356926137784476,0.3142501104985971,0.3087157071812136,0.2767771498358368,1.0,1.0,1.0,1.0,1.0,0.9642128567074278,0.9790570732133482,0.9659801255252474,0.9401891510600584,0.9430797331169104,0.8958193686355501,0.9263945980577791,0.9274470697481171,0.951336404758498,0.2253649102872649,0.2559825745343236,0.3281474738981202,0.16691495227459147,0.1501690811307228,0.9462337151045516,0.9518372729775892,0.9901511727684248,0.9999733199368432,0.9999643217753512,0.999995319902578,0.9999852054346624,0.9999908309566437,0.998850654967643,0.9993340984025624,0.999842758603443,0.9998404362971495,0.23020236633457228,0.08103412119133165,0.2633519063272577,0.07562370285172625,0.267891672138444,0.9999999999999984,0.9999999999999991,1.0,1.0,0.9997768784298446,0.9996695726572706,0.9994186836473544,0.9996794147109117,0.9994849282399716 -yellow,rgb,5.2497901569414355e-08,7.537122921584778e-07,1.956584312539572e-06,0.002884221016701305,0.010643159012817673,0.9999999999839011,0.999999999998505,0.015263775047570526,0.00021164654151640167,0.00010065434611566455,0.1250555672478549,0.9999997200023385,0.999999807849789,0.9999997772554309,0.9959910374512276,0.9972106987480914,0.9979118143514278,0.9983723902707218,0.9980996037738838,0.0001017737634912821,0.00020060109017362406,0.0004447626173568404,0.01334720576756318,0.005055562102282715,1.3063621100254195e-42,6.376486055117683e-42,1.012161604856875e-41,4.3742408942810267e-41,5.93755662461362e-37,0.9998642916813393,0.9999595953208673,0.9999199818270531,0.9999519924346685,0.9999570034554887,0.9999744281379357,0.6438728141389924,0.743781676335233,0.3267172707669236,0.5729049423899951,0.4598328357367836,0.998500004209278,0.9972500895380599,0.9988736243237984,0.9996066876426751,0.9998177485334391,0.9999999999999565,0.9999999999999574,0.9999999999999576,0.9999999999999587,0.9999999840074698,0.9999999925075224,0.9999999935494233,0.999999994762,0.9999999967627042,0.9999999999999725,0.9999999999999436,0.9999999999999669,0.9845287000115429,0.9974078653285674,0.9926360371604016,0.9995169431547326,0.9999102247999558,0.9999999944285525,0.9999999934000559,0.999999969171245,0.9999999700477995,0.9999999999994051,0.9999999999995519,0.999999999999476,0.9999999999995823,0.9999999999995535,0.9999643514373936,0.9999442071367045,0.9997098468302267,0.999601367752363,4.159911875955687e-05,8.90819727335901e-05,0.00026281555580538534,8.074773543407584e-05,0.0002019341231614649 diff --git a/testResults/testing_english/NoOfDataPoints/6000/groundTruthPredictionTrain.csv b/testResults/testing_english/NoOfDataPoints/6000/groundTruthPredictionTrain.csv deleted file mode 100644 index 4553a37..0000000 --- a/testResults/testing_english/NoOfDataPoints/6000/groundTruthPredictionTrain.csv +++ /dev/null @@ -1,72 +0,0 @@ -Token,Type,1-tomato/tomato_2,1-semicylinder/semicylinder_4,1-cabbage/cabbage_1,0-cube/cube_3,1-cabbage/cabbage_3,0-cube/cube_1,0-cube/cube_4,0-lemon/lemon_1,0-lemon/lemon_3,0-lemon/lemon_4,0-corn/corn_1,0-corn/corn_2,0-corn/corn_3,0-semicylinder/semicylinder_4,0-semicylinder/semicylinder_1,0-semicylinder/semicylinder_2,1-carrot/carrot_3,1-carrot/carrot_2,1-carrot/carrot_1,0-banana/banana_2,4-carrot/carrot_1,1-plum/plum_4,3-arch/arch_1,1-plum/plum_1,2-lime/lime_2,1-plum/plum_2,3-tomato/tomato_3,3-lime/lime_2,3-cuboid/cuboid_3,3-cuboid/cuboid_2,3-cuboid/cuboid_1,1-cabbage/cabbage_2,1-arch/arch_1,3-orange/orange_3,1-arch/arch_2,1-arch/arch_4,2-banana/banana_1,1-potato/potato_2,2-banana/banana_4,0-cylinder/cylinder_1,0-cylinder/cylinder_3,0-cylinder/cylinder_4,0-cuboid/cuboid_1,0-cuboid/cuboid_2,0-cuboid/cuboid_3,2-cabbage/cabbage_2,2-cabbage/cabbage_3,2-cabbage/cabbage_1,2-cube/cube_4,3-orange/orange_2,2-cube/cube_1,2-cube/cube_3,3-lemon/lemon_3,3-triangle/triangle_2,3-triangle/triangle_1,0-arch/arch_1,1-cucumber/cucumber_1,1-cucumber/cucumber_2,2-corn/corn_2,2-corn/corn_3,2-corn/corn_1,5-carrot/carrot_1,3-arch/arch_4,2-cylinder/cylinder_4,4-cuboid/cuboid_2,4-plum/plum_1,4-plum/plum_2,1-lemon/lemon_4,1-lemon/lemon_1,1-lemon/lemon_3,1-cylinder/cylinder_1,4-semicylinder/semicylinder_1,1-cylinder/cylinder_3,3-lemon/lemon_4,4-semicylinder/semicylinder_4,1-cylinder/cylinder_4,2-plum/plum_2,2-plum/plum_1,2-plum/plum_4,2-cucumber/cucumber_2,1-tomato/tomato_3,2-cucumber/cucumber_1,1-tomato/tomato_4,2-cucumber/cucumber_4,2-lemon/lemon_3,0-tomato/tomato_4,4-cuboid/cuboid_3,0-potato/potato_2,0-tomato/tomato_2,0-tomato/tomato_3,2-lemon/lemon_1,3-semicylinder/semicylinder_2,0-cucumber/cucumber_1,0-cucumber/cucumber_2,0-cucumber/cucumber_4,1-cucumber/cucumber_4,1-cuboid/cuboid_3,3-cucumber/cucumber_4,3-cucumber/cucumber_2,3-cucumber/cucumber_1,4-cucumber/cucumber_4,0-triangle/triangle_1,0-triangle/triangle_2,0-triangle/triangle_4,4-cucumber/cucumber_1,2-cuboid/cuboid_1,1-triangle/triangle_1,0-plum/plum_1,0-plum/plum_2,1-triangle/triangle_2,0-plum/plum_4,1-triangle/triangle_4,3-semicylinder/semicylinder_1,0-eggplant/eggplant_3,3-eggplant/eggplant_3,3-eggplant/eggplant_1,2-orange/orange_4,3-eggplant/eggplant_4,2-eggplant/eggplant_3,4-cabbage/cabbage_2,4-cabbage/cabbage_3,2-eggplant/eggplant_4,2-orange/orange_2,3-triangle/triangle_4,0-eggplant/eggplant_4,0-banana/banana_4,1-eggplant/eggplant_4,0-orange/orange_4,0-orange/orange_2,0-orange/orange_3,3-banana/banana_4,2-orange/orange_3,4-cuboid/cuboid_1,2-lemon/lemon_4,3-orange/orange_4,2-carrot/carrot_1,2-carrot/carrot_2,2-carrot/carrot_3,1-orange/orange_2,2-cuboid/cuboid_2,3-arch/arch_2,4-arch/arch_4,4-cylinder/cylinder_1,4-cylinder/cylinder_3,1-banana/banana_2,1-banana/banana_1,1-banana/banana_4,3-plum/plum_4,3-plum/plum_2,3-plum/plum_1,4-triangle/triangle_4,1-potato/potato_3,2-cuboid/cuboid_3,1-corn/corn_1,4-triangle/triangle_1,1-corn/corn_3,1-corn/corn_2,0-lime/lime_2,0-lime/lime_1,3-carrot/carrot_1,0-lime/lime_4,3-carrot/carrot_2,0-arch/arch_4,2-lime/lime_4,3-lime/lime_4,3-lime/lime_1,2-lime/lime_1,4-corn/corn_2,4-corn/corn_3,1-cube/cube_3,0-potato/potato_3,1-cube/cube_1,1-potato/potato_4,5-cuboid/cuboid_3,0-potato/potato_4,1-cube/cube_4,4-semicylinder/semicylinder_2,2-semicylinder/semicylinder_1,1-lime/lime_2,1-lime/lime_1,1-lime/lime_4,2-arch/arch_4,2-arch/arch_2,2-arch/arch_1,1-cuboid/cuboid_1,4-cube/cube_4,4-cube/cube_3,3-semicylinder/semicylinder_4,3-corn/corn_3,3-corn/corn_2,3-corn/corn_1,2-tomato/tomato_4,2-tomato/tomato_2,0-banana/banana_1,2-potato/potato_4,3-cube/cube_4,1-orange/orange_4,0-eggplant/eggplant_1,3-cube/cube_1,4-triangle/triangle_2,3-cube/cube_3,2-potato/potato_3,5-lime/lime_1,2-tomato/tomato_3,2-eggplant/eggplant_1,2-triangle/triangle_2,2-triangle/triangle_1,2-triangle/triangle_4,1-semicylinder/semicylinder_1,3-tomato/tomato_2,1-orange/orange_3,2-potato/potato_2,4-lime/lime_4,5-corn/corn_2,4-lime/lime_1,1-eggplant/eggplant_1,1-eggplant/eggplant_3,1-semicylinder/semicylinder_2,0-cabbage/cabbage_1,0-cabbage/cabbage_2,0-cabbage/cabbage_3,3-cylinder/cylinder_3,3-cylinder/cylinder_1,3-cylinder/cylinder_4,0-carrot/carrot_2,0-carrot/carrot_3,2-semicylinder/semicylinder_4,0-carrot/carrot_1,2-semicylinder/semicylinder_2,5-cabbage/cabbage_3,0-arch/arch_2,3-tomato/tomato_4,2-cylinder/cylinder_3,2-cylinder/cylinder_1,3-cabbage/cabbage_3,3-cabbage/cabbage_2,3-cabbage/cabbage_1,1-cuboid/cuboid_2,3-potato/potato_4,3-potato/potato_3,3-potato/potato_2,4-arch/arch_2,4-eggplant/eggplant_1,4-eggplant/eggplant_3 -,,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,nan,plum,nan,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,nan,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan -,rgb,0.9999999999730953,0.08220538292199955,0.2635795456866965,0.250761762738033,0.20069525937711633,0.9997338840281238,0.9999999999269416,0.9999968478414086,0.9999930677095227,0.999994754019544,0.433296743144013,0.2795227489284818,0.3146800711065245,0.0647297141628235,0.30465516551549837,0.9999999999999554,0.9648064597535737,0.949079896090772,0.9673539700770108,0.9655915274049565,0.9948415429046495,0.9999030919126619,0.9997993714599195,0.9999580669733437,0.9625943802950624,0.9759935333040523,0.9999999999969928,0.964222091977706,0.9999999999999021,0.019989247758059957,0.9997284446267027,0.1740238592320504,0.9997190715176754,0.9999973153585662,0.03345628296541998,0.9999999999999363,0.9422315435288757,0.9995172219816366,0.9957506526763023,0.9993845745633928,0.1471495918591025,0.022253466933908676,0.9996618848337394,0.013931502442394961,0.9999999999962164,0.1544273223453492,0.15583202208702865,0.26653443285463035,0.9999999999964142,0.9995093390550983,0.9997435969124099,0.15836552322434214,0.9999952362007769,0.9997008305185423,0.999999999999386,0.9993884628365215,0.1755519387760826,0.15280094514753279,0.28601723944751883,0.34476091056111996,0.44352850047134856,0.9970294971205198,0.9999999999999862,0.02099756050228224,0.01737021734756699,0.9999833550187697,0.9951489632928909,0.9999963618510951,0.9999966393500256,0.9999939819327665,0.9997013460823777,0.19045020864227202,0.1334485364153179,0.9999972073589185,0.22339685186434308,0.025417731777895327,0.9872742435146292,0.9999702301085722,0.9999125915880107,0.1423921229319487,0.9999999999943754,0.19026499150101733,0.999860505175437,0.13333437545532564,0.9999961145155849,0.9998309118603147,0.9999999999999238,0.9994768190991018,0.9999999997677602,0.9999999999942284,0.9999972355969454,0.999999999999996,0.19890241243461165,0.12555021057158908,0.13470051454107687,0.13084251374165018,0.9999999999998239,0.13306773105754263,0.18763379347905107,0.14311974486720644,0.1393709763184763,0.9999999996967919,0.999387174584533,0.2003601060645733,0.1233086367865124,0.9997181326748062,0.9999999999910569,0.999949031221927,0.9241957230641591,0.9994507648934229,0.9807537201917153,0.18169657713486084,0.2632904703017543,0.21337210462394643,0.35305356797000487,0.3865266841497945,0.999994667609909,0.37546077380560816,0.28315909744707096,0.5221475174864345,0.18144298880223247,0.31525030313742525,0.9995777135769482,0.14980970273806754,0.21506904709748323,0.9540226727350558,0.30054911078893315,0.999992934647819,0.9981825451142782,0.9999611070696146,0.8769018966633828,0.9999943864988307,0.9997496657401367,0.9999970608945438,0.99999465937343,0.9795229460471244,0.9734626603980103,0.9664127075341902,0.9990191026735827,0.01752406025905294,0.03243265523942078,0.9999999999999747,0.9997184764292278,0.1189574274012966,0.977144669267016,0.9354028806164769,0.8835053809706701,0.9999309934093323,0.993517422169185,0.9999799430008973,0.1452578342328242,0.9989709528265658,0.9999999999999041,0.4381792552227242,0.999999999999414,0.33170691219011594,0.28279600773006,0.9142794098490364,0.7643374905113969,0.9832569400168464,0.9520705388771237,0.9811294128262358,0.9999999999998621,0.9404916982918488,0.9672801893176138,0.9846801160466174,0.9745150028363287,0.3048980837858697,0.34863457405571624,0.19499061728340075,0.9984887309646997,0.9997419118634756,0.9996327698113179,0.9999999999999751,0.9979288286332879,0.9999999999320066,0.9999999999999967,0.21290137416742028,0.9740536391656124,0.9267512002851857,0.9358435143287857,0.9999999999999649,0.031411464977096376,0.9997804590138314,0.9997161538257483,0.9999999999987259,0.08095353656941665,0.10737211564657008,0.34844031235139866,0.29192189399538604,0.44963531312391297,0.9999960981150531,0.9999999999802118,0.9221420025428023,0.999913126804028,0.9999999999970517,0.9999918792263331,0.263463191292823,0.9997234713193246,0.9997298475295585,0.1354661305159621,0.999160521074762,0.9804508767596719,0.9999999999962714,0.35900632685178846,0.9995980378292292,0.9999999999993241,0.16488735139972524,0.3024990746232663,0.9999999999923714,0.9999747429338115,0.9996747154968192,0.9584384942142837,0.3101023109153665,0.9909080222545051,0.2897473286120911,0.23983975128373358,0.9999999999999944,0.2061272756312796,0.16957104875792173,0.1403623899063264,0.12213568062264886,0.9997159479519175,0.020895288805593305,0.9447310213848308,0.9369740566850471,0.08235414995937188,0.9551530013505476,0.9999999999999947,0.18194301974951368,0.049852169848203266,0.9999880597943474,0.13410760952306736,0.999482642771367,0.16782585608864112,0.21492691483681908,0.22871327438064065,0.015604400516014985,0.9999546748653719,0.9995169873029097,0.9998484341925639,0.02877384896551727,0.5229405220888964,0.4473371076780153 -an,rgb,1.0,0.9630426820366845,0.999999999995304,1.0,0.9999999999999885,0.02275930462192567,1.0,0.9901497605403348,0.9709868111646861,0.9944079540918361,0.9999997357407521,0.9999999982718721,0.9999999954720222,0.989059210548487,1.0,1.0,0.9999999996524107,0.9999999993986852,0.9999999994609279,0.9814882946123931,0.9999999984128938,0.9999999999999969,0.03862523367465035,1.0,0.0008041384860901159,0.9999999999999993,1.0,0.0009505434689079549,1.0,0.9996793222016638,0.022525035658972743,0.9999999999986136,0.03061623278570006,0.9999927964137614,1.0,1.0,0.9948312954711946,0.9999999999977303,0.005560483902809426,0.03618704394724433,1.0,0.9987974740994259,0.0201273297882429,0.9999855021515635,1.0,0.9999999996105902,0.9999999999972271,0.9999999999952607,1.0,0.9686057909798813,0.02476610771063557,1.0,0.9900919165433925,0.050710402078557086,1.0,0.024949265344445515,0.7964646295529242,0.9168405760751792,0.9999999973458893,0.9999999879310731,0.9999997696442264,0.9999999990614219,1.0,0.9992875354906627,0.9998267246306314,1.0,0.9999999999999996,0.9956643611981327,0.991098984367458,0.973089672137838,0.04021704688931693,1.0,1.0,0.9980686436427141,0.2182772567487454,0.997376715523051,0.9999999999999998,1.0,0.9999999999999989,0.957957836781734,1.0,0.8183500691133213,0.9999998850205206,0.987668073954319,0.9865264469177859,0.9999999690378442,1.0,0.9999999999992595,1.0,1.0,0.9932414231414555,1.0,0.5869686069608444,0.9633852257130342,0.97490483985158,0.9859725566837436,1.0,0.9882050903892424,0.7965186908700655,0.9833464716836162,0.9944282674051762,1.0,0.04070697283619351,1.0,0.9972235726719328,0.020700978918938236,1.0,1.0,0.9999999999999978,0.05199019305952689,0.9999999999999807,1.0,1.0,0.9999999956641448,0.9999999470884923,0.999999793695363,0.9996264590565089,0.9999851851599216,0.9999999988365798,0.9999999999981828,0.9999999999990778,0.9999987735367825,0.9231342148471513,1.0,0.9999999832206304,0.015206028598828296,0.9999990493412474,0.9991114253207568,0.9860520115673888,0.9999731146030011,0.9030280646116425,0.9999912182931071,0.022781194057244842,0.9977066330527545,0.999734812645496,0.9999999974891296,0.9999999992335502,0.9999999990886952,0.9691088619979875,0.9998662162552597,1.0,1.0,0.045284323375185405,1.0,0.9469729545348039,0.9932249182888279,0.308189708352725,0.9999999999999996,0.9999999999999998,1.0,1.0,0.999661983240646,1.0,0.9999996855539227,1.0,0.9999999888341727,0.9999999958542156,0.0007295261328928472,0.0021177602421581752,0.9999999991946174,0.0004585738258009157,0.999999999352901,1.0,0.0007792204066149623,0.000637403544649485,0.0005912330907161502,0.0007497833407915585,0.9999999915451306,0.9999999853407022,1.0,0.9995730606647287,0.024689672828792572,0.9994785104911205,1.0,0.9991611695208857,1.0,1.0,1.0,0.00038007726400238916,0.0006934752205554628,0.0007541571398057874,1.0,1.0,0.038073972666755045,0.020621910016928084,1.0,1.0,0.8563508220734459,0.9999999858838216,0.9999999960866957,0.9999997058295741,0.9999997435683474,1.0,0.9962930824495896,0.99983784811293,1.0,0.9993674207857307,0.9999999624892747,0.02782296204943658,0.064667922035407,1.0,0.9997922529279062,0.0009549690898721315,1.0,0.9999928233871769,0.05107552876595903,1.0,1.0,1.0,1.0,0.999997266202261,0.9999999999964975,0.0008506681390178817,0.9999999937298543,0.000666361200470637,0.9999997912546841,0.9999999967041793,1.0,0.9999999999642186,0.9999999999997191,0.999999999999293,1.0,0.04528497354671226,0.9994140208634802,0.9999999992027195,0.9999999992824387,0.96258441257082,0.9999999978112419,1.0,0.9999999999990594,1.0,0.9999999951232075,1.0,0.04521209361410994,0.9999999999984077,0.9999999845096887,0.9999999991335553,0.9999389990443445,0.9998686606846151,0.9996973922806772,0.9999999999996196,1.0,0.9999982158936549,0.9999983930650237 -and,rgb,1.0,0.9999999993203033,0.3809078582966399,1.0,0.9847858313856439,0.9893874695766485,1.0,0.9999098589262533,0.999477615832497,0.9991824738406161,0.001247102159636967,0.022469954789838275,0.011362588595601516,0.9999999997579052,1.0,1.0,0.003042777190021478,0.0024053779537479307,0.0025646907813991547,0.00014304390234181952,0.0034070570146524535,0.9420638479631686,0.9889750895286796,0.9995078577911952,0.8861820871414964,0.7239351512349774,1.0,0.8058103123510201,1.0,0.99999992696723,0.9888890375944108,0.783809875537484,0.9787376498433712,0.9970858006820426,1.0,1.0,9.697201596350848e-05,0.18270769116636387,0.47383247354151364,0.7909731651511943,1.0,0.9999695586159325,0.981982789286472,0.999999996847351,1.0,0.16059266330228852,0.7572506588943353,0.37343399074393646,1.0,0.0297579649132978,0.9889984462758109,1.0,0.9996222564750673,0.9436778296640517,1.0,0.8709903350998192,0.02704717689969935,0.0220456869824833,0.017627682915610024,0.006195997044663152,0.001243877731788149,0.005826536755236169,1.0,0.999870457147153,0.9999997484942256,0.9994168555893863,0.8048326007433815,0.9997040023148791,0.9998759837432956,0.9996554006218357,0.9603920874158837,1.0,1.0,0.999776636956665,0.9999999497696247,0.9999109717857237,0.8088696612557567,0.9990237840352643,0.9672446591173978,0.018530885683840554,1.0,0.016850648910886012,0.0608960959794144,0.012795470580388449,0.999857734112239,0.05410486486659669,1.0,0.24452782624607025,0.9999999999999867,1.0,0.9999208150189095,1.0,0.04068464041685616,0.029118879186676286,0.01727057181920776,0.014563539387429308,1.0,0.012655454402469162,0.02008059978968901,0.011120901168070746,0.008161509726048484,0.9999999999999998,0.7636087010100432,1.0,0.010395444557254847,0.9892994487996822,1.0,0.9990730076520763,0.6637284923923975,0.7525867792593646,0.2763793065119263,1.0,1.0,0.026988841168824527,0.0033111387877726908,0.0017049046915147076,0.995600861247042,0.0005943147827469548,0.02620286264641948,0.17743035438206206,0.8086500104138404,0.0015147966309929234,0.05941250384823236,1.0,0.015055269859482218,0.012822945783366598,0.0017988375520142116,0.9935904535933796,0.0025933559609942927,0.42332043053493973,0.0001503354381682945,0.9812047420889747,0.9912822650546992,0.999766142243837,0.9948142362707356,0.0015692356458351469,0.002300163168838462,0.002077290940671949,0.00875002684402503,0.9999999494223247,1.0,1.0,0.9598854043300044,1.0,0.00023302903049562674,9.654149382084422e-05,0.000557686190298976,0.9835383039105308,0.8438073954947792,0.9996527832621631,1.0,0.0030095881785298134,1.0,0.0011533298773963674,1.0,0.006937192958832128,0.014834381863656486,0.9712634235588029,0.8329685443456109,0.0025217663694097584,0.9968770890698242,0.002647907265360435,1.0,0.9195876276145473,0.9557399701869522,0.9791554130168236,0.9184370650754676,0.009307622284662495,0.00559200807798926,1.0,0.0018122387776071931,0.9888278395914148,0.01587121780606924,1.0,0.0012844697009225684,1.0,1.0,1.0,0.9987417993247903,0.9686164622921083,0.9368368244114993,1.0,1.0,0.9856692437732486,0.9891343265245075,1.0,1.0,0.9999999964061508,0.005684830992925441,0.014210986466728158,0.0011183543067601529,0.9857500225301258,1.0,8.787660078982725e-05,0.16144444640868608,1.0,0.9887617756680467,0.007009034663739286,0.9828098446025996,0.9397551416687951,1.0,0.0038553275835102067,0.8494386527764909,1.0,0.0007520807097968286,0.8776584132119115,1.0,1.0,1.0,1.0,0.5769371281366928,0.21767707372672518,0.8628630947816608,0.010189324549676325,0.9831282409019578,0.003096613422294204,0.023471360869547597,1.0,0.25360847213957644,0.9165273478091835,0.9080951523957281,1.0,0.958844095896008,0.9997145027577463,0.0021496331430309406,0.0022636156631895385,0.9999999993078181,0.0014466727131401667,1.0,0.8055935632296621,1.0,0.8605560829361896,1.0,0.8123467166760736,0.7847828471480764,0.015571246430545351,0.047683580899538086,0.9999999574840146,0.41883702732182737,0.009326849470513628,0.5861537250598772,1.0,0.0004906013010190492,0.0006877760356280156 -apple,rgb,1.0,3.721802321388291e-33,4.999454368178036e-07,4.546929945614825e-25,5.997409405400366e-08,8.735760043744607e-05,1.0,0.9999972450883675,0.9999737534423059,0.9999992933516986,1.5969571193424661e-06,1.884380836719965e-07,4.104673913827327e-07,9.316578824815625e-34,6.815675427239587e-28,1.0,0.9998155953323822,0.9986411805983012,0.9998420366748797,0.006328754832588866,0.9999998719828751,0.9999999999999996,0.0005889480928019927,1.0,1.058884207115988e-14,0.9999992343674067,1.0,3.786315382750997e-14,1.0,4.009392654240149e-31,8.408793452539694e-05,1.2218295217416432e-08,0.0002521216810602485,0.9999999999938649,3.1782476793284975e-32,1.0,0.003360721053873463,0.9999999999988896,4.186059532061151e-08,0.00028014636724743927,2.043532586432717e-25,8.916885416236757e-28,5.46400811927755e-05,2.0059370884953673e-32,1.0,1.328377046758354e-09,4.068409107943244e-09,5.556153207248888e-07,1.0,0.9985065520074027,0.00011917954372254803,2.4295241621643694e-25,0.9999975667138036,0.0013462852926948976,1.0,8.604104524917567e-05,4.540668092731769e-17,8.155391980490758e-17,2.0052926582032292e-07,6.746650292048441e-07,2.2311829971494636e-06,0.9999999874174205,1.0,8.99294113980958e-27,2.2369288266695193e-30,1.0,0.9999999995805671,0.9999995730684814,0.9999978785240915,0.9999771770696106,0.0006285083770785048,1.0898751148704912e-24,3.9577323124078957e-25,0.9999999173678524,3.5310984292114884e-30,3.450124075738597e-27,0.9999999685287017,1.0,0.9999999999999998,1.4979755211400263e-16,1.0,1.6355685859397637e-16,0.9999999999617117,6.447267567345027e-16,0.999994786285187,0.9999999999795168,1.0,0.9999999999991298,1.0,1.0,0.9999987699595236,1.0,1.8079723576218605e-17,4.611394391767946e-17,2.1197226582238728e-16,4.242161855211413e-16,1.0,6.784329526788988e-16,1.0172159432608211e-16,8.441466059771827e-16,3.507654120961324e-15,1.0,0.0004047369008490949,1.915441575067293e-25,2.6409326574560226e-15,6.148069627680001e-05,1.0,1.0,0.9996162211885133,0.0009466145000416606,0.9999995262383368,3.808924621759785e-25,4.396625839753597e-26,1.092470545963508e-08,4.3360241628941114e-07,5.409431072322508e-07,0.999999995557461,2.5248477729146034e-08,2.448019017807072e-07,0.0009835272554703347,1.8797524067606624e-08,2.467976209681307e-08,0.9945880031830978,1.566910188942238e-24,6.729405671547229e-09,6.818751270306073e-10,1.823732233712686e-08,0.9999999770998319,0.991937821403923,0.9999999991472925,1.845187006256451e-06,0.9999999999844209,8.744793188420262e-05,0.999999883312645,0.9999999975009861,0.9999585362114661,0.9999275266578929,0.9997714416784762,0.9939212801538615,3.1251708485761895e-31,9.482252081383967e-32,1.0,0.0009530178553700434,2.014451241792372e-24,0.007272427044293237,0.001486036151153256,1.748968391471481e-08,1.0,0.9999999986412522,1.0,2.0321565079136955e-24,0.9999835653257211,1.0,1.6382974765015365e-06,1.0,4.7519677261368803e-07,1.5192231331812577e-07,2.081790356521235e-17,3.871216792926262e-18,0.9999900366594835,9.431347822437981e-18,0.9999850266651976,1.0,6.311787137881777e-16,3.730413351637344e-15,4.0965499100649403e-14,3.617009558452109e-14,2.3457295032567223e-07,6.933203420089799e-07,2.3686696775867555e-25,0.9999404347151378,0.00011783774919268649,0.9999976134610532,1.0,0.9996895820295092,1.0,1.0,1.092859726686104e-27,4.010627690978061e-17,4.9343663123561115e-17,2.9209462851307044e-16,1.0,2.746259283173265e-32,0.0005582795267939641,6.0611462410044045e-05,1.0,5.867249485905771e-23,3.4175980612741237e-32,7.009691671700129e-07,2.1035626029709312e-07,2.2673739548605836e-06,0.9999999999998799,1.0,0.001246917969784519,0.9999999679004156,1.0,0.9999999862126119,3.027580166201983e-08,0.00018044340620407354,0.0030913281890311726,1.5022915800515746e-24,0.9999944215074272,4.2897810401361177e-13,1.0,2.7266699601612485e-08,0.001158903561804925,1.0,7.674430471828622e-25,1.9320317757497303e-27,1.0,0.9999999999724378,0.9999999999996179,9.153650093193948e-15,3.1247423656943723e-07,3.8718758597654027e-13,3.099253732298499e-08,3.5453784723220095e-08,1.0,3.3621002278284444e-08,1.1150093753398577e-08,1.8110683698362733e-09,1.6405133608804675e-24,0.0009498861369463138,3.285109180637437e-26,0.9977044928632849,0.9957894064925753,3.804002755777758e-33,0.9986714233318114,1.0,1.92420780240418e-08,8.45341988524637e-33,0.999999999999988,8.06999911297339e-25,0.0006515448421781864,8.609773505940142e-09,6.9265218752992185e-09,3.662281346221935e-08,3.154325324507061e-31,0.9999999915778329,0.9999977394800721,0.999999999999988,1.013889480326138e-31,4.517081815091941e-06,7.709069409989122e-07 -arch,rgb,0.9976169927766152,0.9937422950744169,0.15885486056116874,0.9999999940196727,0.4201066538970894,0.23017301177567667,0.9982639259189552,0.36941736422909693,0.28431619108144407,0.2476504048182725,0.030266680599889358,0.07081743806197305,0.05786021741687491,0.9954688618078387,0.9999999995113118,0.9999963939939756,0.02216902313364546,0.021997596897692928,0.020978320517673475,0.011051836932962382,0.017713251435727148,0.09510939754226908,0.22018314515592954,0.25893455006843863,0.23409247926505908,0.11807387898340632,0.9995724166235253,0.2014644931383859,0.9999913834049603,0.9794564466292299,0.22831221941960061,0.25217944624243754,0.19645819508235013,0.16135237588947138,0.9999999591117091,0.9999951782793371,0.010522384899274036,0.03900495311135198,0.10437528324869046,0.11639525967141108,0.9999999719985361,0.8912925333545908,0.20942885699049524,0.9918398227471105,0.9998578884139949,0.13414820581675752,0.24886214244056473,0.1573453217056622,0.9998375570002899,0.02835805454923116,0.2272051907449187,0.999999976758487,0.290363978699819,0.15449079160909662,0.9999662715893766,0.13527700714774288,0.09669041889216087,0.09254602198173423,0.06620925245506985,0.048453018736560306,0.0300289901653835,0.019022097316325783,0.9999986088519002,0.8435252927428535,0.971190918917975,0.22990330509941823,0.10747406702385642,0.2953154125602575,0.349851422515862,0.3051726770792285,0.16942242378396927,0.999999980243546,0.999999953390101,0.30282876493161187,0.9757516174464149,0.855693130921013,0.12210192051238654,0.21771394641446914,0.1086007222073152,0.08862903244125546,0.9992819478532613,0.08385604175627238,0.02588992112596482,0.07998317650465611,0.34646550772418183,0.02531593049579979,0.9999934208500553,0.043241424561647285,0.9857334722323656,0.9992518348145243,0.37293334348770163,0.9999994635928187,0.1069194379444303,0.10189232647270675,0.08723693351834404,0.0831847732667565,0.9999862261190764,0.0797336275283557,0.08826107610196558,0.07638879681343377,0.06973231408927134,0.9958213255066248,0.11154588858519839,0.9999999899865551,0.075374761882291,0.23137790926618235,0.9997412923421503,0.231584510688921,0.12889428166721936,0.10804150296307334,0.0710627908814636,0.9999999830729637,0.999999997417033,0.07880458668854888,0.04106710000120866,0.03387185177994992,0.16394338086738613,0.026430677064431477,0.07343929686285512,0.10513241782069972,0.25847980671080617,0.0348345582686144,0.03439371380061189,0.9999999515085146,0.06788955260743938,0.04519318897162741,0.036814320850558434,0.15574572306467607,0.016700447320614254,0.045449511108153394,0.013846600415804428,0.11016092497427697,0.2390012381368531,0.30192485051173523,0.15699391869487764,0.017317303583543463,0.019809515365549778,0.01993933373726013,0.021912100555252893,0.9816830762498494,0.999999940910104,0.9999968957330241,0.1675185821917024,0.999999889780892,0.012125424988223476,0.010717167236039863,0.02062771463953811,0.12520616483914623,0.1189697632337423,0.2598421936969292,0.9999999420070738,0.015480360189360883,0.999992563107664,0.029575589077060357,0.9999673970485289,0.0503620389200416,0.06353085536783708,0.34733593745006375,0.26302996110314636,0.01905384181825713,0.4850415549475331,0.01960951938603353,0.9999947127942305,0.2682637233885245,0.28797109877068694,0.31247578626494066,0.24351991021902536,0.05542143604642888,0.04706768546702513,0.9999999883401797,0.014153993857847687,0.22657907355949317,0.021744417324173197,0.9999977431809062,0.013494658790994393,0.9983477847609059,0.9999995424898166,0.9999999980802579,0.529215340357807,0.3360250392191792,0.2858004197306641,0.9999972993456308,0.9999999517150168,0.20931929869822283,0.23076056998396535,0.9999300974221821,0.9999988799605043,0.9896021295588678,0.047272184765515375,0.062371039098607486,0.029111138242241062,0.10946645576693104,0.9981525991256398,0.010662432475740172,0.0355265605950054,0.9998533469438536,0.1371565768335446,0.053437140077485366,0.2064274260269381,0.14957758056816578,0.9999999336721532,0.016074404947028238,0.2016239548161408,0.999465624946435,0.028323763674216428,0.1295346828454632,0.999963855547277,0.9999999713598439,0.9999999993366093,0.9991317546159404,0.0497486640575832,0.039460628439032724,0.22575812871424963,0.05647806349350385,0.3095406819973435,0.042523800418682256,0.07413053293933848,0.999999327495303,0.14520915206946658,0.3151010900446725,0.31745162497220775,0.9999999048992648,0.16661222570370526,0.8104460912896592,0.021623556329047573,0.022351984980069694,0.9937082989212089,0.018919650520927478,0.9999993491443533,0.25733216296302747,0.9999999914434087,0.06396990625033697,0.999999943208905,0.11763684330858858,0.25395108560850604,0.06847742117532643,0.08978929077459112,0.982716715259623,0.04691218909697393,0.01926505176277898,0.05467767066347486,0.9999999115696101,0.022524773345708862,0.025839035913957083 -banana,rgb,0.03565797769512461,0.9999999999114444,0.0007793744824544077,1.295870586543147e-11,3.292232267617703e-05,0.9999999999933165,1.1086844886759613e-05,0.9999999998468994,0.9999999998060609,0.9999999990580668,0.44526053983089,0.02872667628390595,0.05025503496560564,0.9999999998215687,1.7310030795608383e-11,6.777065623066597e-06,0.016177318516589777,0.01973258050087847,0.02251349807520856,0.9999608954882478,0.13380099341644786,0.0005147552349619967,0.9999999999902254,5.623280417588168e-06,0.9999999999900644,5.419306593252878e-06,0.061373427468437255,0.9999999999845719,2.0320478546091678e-05,0.999999882730227,0.9999999999931655,0.0005075343532766011,0.9999999999872919,0.9999995182343794,4.431535440631379e-07,5.793369808403701e-06,0.9998125701602442,0.010226060958199907,0.9999999999378402,0.999999999928423,1.0212319534582926e-10,0.9999993109802234,0.9999999999913503,0.9999995512040127,3.5993085255315546e-06,0.016075411931456784,0.0008217002912500609,0.0007784904119984613,1.002406050588367e-05,0.9999997319261272,0.9999999999927696,7.643539953176652e-11,0.9999999996299664,0.9999999999656999,5.229302769669856e-06,0.9999999999618381,0.9999976605992752,0.9999930273082899,0.037329995020083405,0.08982634733088092,0.41951502671525936,0.13857477623890524,1.3956049618765639e-05,0.9999976967681674,0.9999996031200725,5.670291297043142e-05,7.3775529943357595e-06,0.9999999993901585,0.9999999997982014,0.9999999998409859,0.99999999997698,3.27499001261343e-11,1.3643924777794487e-10,0.999999999029602,0.999999999991849,0.9999994462670088,4.155902938820967e-06,2.7245621314049855e-05,0.00027431036213891206,0.9999850010234173,0.06310361614939514,0.9999967722985457,0.9928751751171484,0.999943190262593,0.9999999998413456,0.9741889357643991,1.488036734068158e-05,0.004429295689672895,0.1784650082595122,0.07849053894402415,0.9999999998100892,4.968665766685738e-05,0.9999992752950765,0.9999855801744804,0.9999743772946995,0.9999521284754165,1.522252726537434e-05,0.9999404920887174,0.999997371881386,0.999955080004307,0.9998585593123506,4.548903825166592e-06,0.9999999999138858,3.319168064203893e-11,0.9997527353394087,0.9999999999936859,2.2130206229471813e-06,8.056541120150245e-06,7.17027510090605e-06,0.9999999998938036,4.033566293448524e-05,4.3788855279466514e-11,1.4821635998230533e-11,0.05910244199838392,0.2135366668631557,0.4092338953800981,0.9999999758933419,0.9464955177373652,0.022199873790208834,0.0003236787930136154,0.0003901822123678906,0.7343649710594655,0.9999999237803159,7.737342289848666e-11,0.13462382912583887,0.9999999964590369,0.6999372024990749,0.9999999847649736,0.9999966661908376,0.9999900393877251,0.9999852349005918,0.9999985904588307,0.999999999994095,0.9999999991286184,0.9999999645413603,0.07967073588415943,0.031628325121963,0.03156966128334922,0.9999993204668108,0.999999775442272,3.8739898256346675e-07,7.427755090958648e-05,0.9999999999747908,1.8111956532952313e-10,0.9999902225901975,0.9998446163371175,0.9999994908312392,0.00017599391134317003,4.612266026815486e-06,1.809999892165012e-05,8.485029832213784e-11,0.9999340005159172,9.056883391828322e-06,0.47597849262855707,5.4076136826146384e-06,0.0867995009761229,0.049790336263030276,0.9999999999935654,0.9999999999287215,0.041907525805705,0.9999999999989271,0.033851555796494445,2.2968124080115582e-07,0.9999999999901483,0.9999999999954037,0.9999999999979055,0.9999999999934408,0.07544443916337125,0.10088695864713879,3.5724910752562353e-11,0.9999185202939117,0.9999999999927136,0.999987423683327,9.96059403775749e-06,0.9999391186052281,1.1362354133866135e-05,7.131978133206185e-05,5.790248549536494e-11,0.9999999999995601,0.9999999999940208,0.999999999991291,4.428090138295525e-06,5.994634691685763e-07,0.9999999999885623,0.9999999999936402,1.047185292201946e-05,7.116267100936213e-10,0.9999999999517608,0.09859005516371487,0.04732024273836266,0.46245774351773783,0.9999760774781471,0.03127936677427267,0.9996965104369628,0.9999944321935138,1.4129408155515341e-05,0.999999971063023,0.19518412981271868,0.9999999999896101,0.9999999999572677,1.1339868304410195e-10,0.9999177501372248,0.9999999999898164,0.10074896438307068,0.9103324773050142,0.9999999999403053,4.882769192723235e-06,5.806038518278612e-11,1.4697123624702933e-11,0.03396859390465259,0.9999539739288745,0.01964379502595453,0.9999999999878331,0.062110711510415785,0.9999999999983327,0.43844624571181406,0.04669856067316923,2.939036441688952e-05,0.0030450673412649783,0.00021108401376495245,0.00041181407961996376,1.6659359994421556e-10,0.9999999999743561,0.9999959402623069,0.02300105940513111,0.02030019360806079,0.9999999999117237,0.049407756526684825,3.173787914167151e-05,0.0003937352157143261,1.279726603426179e-07,0.9957427798262445,1.2477065795833132e-10,0.9999999999236922,0.0005645365599481194,0.12843812622218462,0.02059612634101944,0.9999995655585594,0.9999973631280594,0.9999700847452468,0.008660824281891,6.378613809970116e-07,0.7618728522002118,0.751631349592719 -block,rgb,0.12318379047962637,0.9999999999931557,0.0543617901076552,1.0,0.43022985253285234,0.9187225531258877,0.039714426278348605,0.3922433429938915,0.29272698247973616,0.1069867311559501,0.003707171226902458,0.018866172802632218,0.011809191533646804,0.9999999999968585,1.0,0.998399350677481,2.616547729889068e-05,3.7217640135414544e-05,2.399135608131966e-05,0.0005977901746275177,6.908826862600267e-06,3.6272887563582927e-06,0.87298939266519,8.168048228442331e-06,0.998071897022507,0.00010591172356534265,0.7020717620947999,0.9962296326355764,0.9946885934009594,0.9999999994624289,0.9173351408934622,0.24481950529396748,0.8503625194466194,0.0021077074463684282,1.0,0.9973396372041939,0.000469263701525736,3.26709919057724e-06,0.8100988019761723,0.5482857549398665,1.0,0.9999999081537272,0.9018722922325976,0.9999999999395313,0.6045070715461914,0.14479945888444343,0.28892767149998233,0.05229721043002362,0.5984719063419799,0.0013136548382217447,0.9110321867363425,1.0,0.20995479930309463,0.6700396147118517,0.9403601008796798,0.6985133864314387,0.9560592665224479,0.9376228701570867,0.016873574874776354,0.008236787343483041,0.003391248152349976,5.451061151704173e-06,0.9997157427613018,0.9999996165519374,0.9999999982430152,5.921377018451914e-06,2.5364516524597785e-05,0.16124447931782657,0.3323289890271074,0.33825866015390177,0.7544991712029244,1.0,1.0,0.12713178934090613,0.9999999997609574,0.9999997853719552,6.41070495534721e-05,6.071228469042114e-06,3.9055144525123055e-06,0.9160614989687554,0.5123311429159197,0.9238934081089291,1.1385729107831024e-05,0.8463352888552172,0.3685691855408737,7.950105041562142e-06,0.9963497539914493,3.4101391639881923e-06,0.014678958605747795,0.511756175727658,0.3595531325611368,0.999956668383921,0.9746062399744032,0.9481628260766879,0.9012722818244131,0.8687833066377939,0.9879775469181333,0.8433446907051085,0.9383339416805186,0.8316156985377285,0.7263708648949706,0.009942353303401855,0.5013146296312426,1.0,0.7512229471543425,0.924631141076822,0.35851809995181333,7.4220175850130265e-06,0.0003858809147984694,0.43938479081551024,4.328735545853212e-05,1.0,1.0,0.04233871772334599,0.0073462971582219615,0.005488000314490753,0.010581966965337485,0.009128550387732266,0.018742133982783,0.005309515016887907,0.23619974868798035,0.012108078869596183,0.0029779583601383525,1.0,0.038462305821820496,0.4202785735684268,0.01390184120229553,0.01322016223015974,0.0003917279011342196,0.00017747268198036934,0.0043461195718080044,0.0008529938271512163,0.9271768360317875,0.13469463962152015,0.008158933683624022,1.5912171899941455e-05,1.9758408268963924e-05,2.4290234106238887e-05,0.0008414614982016583,0.9999999995489899,1.0,0.9992512684476174,0.7331608689440714,1.0,0.0008794214674963321,0.0005759333883172224,0.035743948730991536,4.178700482724802e-06,3.61789047101165e-05,6.948857562131716e-06,1.0,7.347401474480958e-05,0.995068522186102,0.0035877784897272464,0.9436631857458071,0.009418740177702887,0.01695898506035773,0.9997943870015501,0.9994907944592957,1.36772424515792e-05,0.9999573438470531,1.5005140239875503e-05,0.9944118306988795,0.9991700513895337,0.9991870730436438,0.9991519364554069,0.9980016690707085,0.012661348068926135,0.007870436539184183,1.0,7.341925417043104e-05,0.9105003443147226,0.00013919468712869727,0.9993177478872834,9.20560363541957e-05,0.0427704942822659,0.9999695359793307,1.0,0.9999669716911431,0.9997398404474717,0.9994010873281708,0.9989164781715962,1.0,0.8558592642350864,0.9242272358977266,0.8495709218849214,0.9999999999999898,0.9999999999745621,0.007896254377337965,0.015323876740605102,0.0032594399719045293,0.00023667625126173346,0.16707084174786035,0.0005278651264537525,0.000213206228695927,0.6507944244951186,0.008152661321539788,0.019511712635859116,0.8755731026320878,0.6121021952692551,1.0,6.391761259213655e-05,0.9947079548974523,0.6568154448543362,0.009524379385124336,0.5573058390500093,0.9330662186236808,1.0,1.0,0.39739196147084177,9.467264627475283e-05,3.1080214359401643e-06,0.9978633422788524,0.012159932524300091,0.9987732891757473,0.01447298966849615,0.029587918993593667,0.9999285578681286,0.08320458176775225,0.34940063333959687,0.4532144562802524,1.0,0.7301489326903342,0.9999991659628846,4.022768628022615e-05,4.677068021191923e-05,0.9999999999930578,3.156859533602657e-05,0.9999335407115156,0.23357066756487663,1.0,2.1499020197640034e-05,1.0,0.5164447776743033,0.26276324008193597,0.038657673106123294,0.03887720710409205,0.9999999995549771,0.0003445498043441038,9.360697020979304e-05,3.0386289843360244e-06,1.0,0.002101022300409175,0.003721719260203762 -blue,rgb,4.123762479694841e-08,0.06804472192876479,0.09431586588172129,0.9999866522913663,0.30670432849910156,9.69478057704182e-07,3.585154934625689e-07,9.514861405535335e-08,1.4192010220909018e-07,1.3569965610613384e-07,0.007925490533690726,0.033472397366103065,0.024446664208724014,0.10385410483834,0.9999953300823897,4.749909805671334e-08,0.0009766263511834451,0.0012399927042537747,0.000850888085693478,6.960620341425416e-05,0.00015146755694363243,5.424115494055642e-05,8.17360574838367e-07,0.00011333433102862665,3.651173184289724e-05,0.006520897698901584,1.9119052606102486e-08,3.432381776685795e-05,4.461720918271928e-08,0.26108382071429104,9.81732125446966e-07,0.17978817482701842,1.0060849277608455e-06,1.7171463243216144e-07,0.9999627402180985,5.402126360223611e-08,0.0001281143253113163,6.496926635169137e-05,6.153859217601675e-06,1.684955849036409e-06,0.9999744586090693,0.14891535618203328,1.125800321293562e-06,0.4789698387645876,1.8809880033266736e-07,0.0857604995092263,0.18107802448931007,0.09291816050020035,1.4365210510206213e-07,2.4354598643839248e-06,9.477121856204222e-07,0.999976421373672,1.2216440076151314e-07,1.060417132124379e-06,1.015592523657777e-07,1.6584509819624827e-06,0.004606651147200194,0.006006621470865972,0.030296698610998905,0.018362752029612163,0.007791554819570621,0.00010522724693625987,2.982600147451809e-08,0.15122436469830172,0.2843134454457169,3.7482034355717935e-05,0.0018622631949423807,1.1045949104336869e-07,9.96060413146505e-08,1.3091153842206227e-07,1.052104463791286e-06,0.9999777657087127,0.9999679507885461,1.0029598604366783e-07,0.010625070877329095,0.11490161397159664,0.0043841100692712685,6.147880242226752e-05,6.008042412032372e-05,0.007014142149862465,2.2777265413032033e-08,0.004171357010934489,4.767965243583121e-06,0.008621741592229335,1.0551919648751686e-07,6.649452515166767e-06,4.504844646323697e-08,8.311383189117854e-05,5.735131834420161e-08,2.188437304564067e-08,9.035479404307226e-08,1.6574950314691426e-08,0.00363496527801591,0.008358288803572433,0.007917015154528766,0.008710464702603862,5.5768765529214277e-08,0.008684030850410852,0.004206649932575213,0.007642716690156538,0.008898717195019256,7.243627084800647e-07,1.6876630715563183e-06,0.999983568617982,0.011199671933988395,1.0045085352710878e-06,2.7574157406782034e-07,0.00011402645110268267,0.015365340737970072,1.5840243278967079e-06,0.0030377229802251394,0.9999793651609097,0.9999907221651477,0.040395513278858215,0.014001091081045183,0.009868225355128346,1.7591332416138143e-07,0.0053751617368506316,0.03510364118032751,0.04059053353124742,0.18313944776893767,0.010057212156705724,1.9857715497856054e-06,0.9999670915787148,0.03224555455757215,4.142511729783733e-05,0.011165405815922529,1.9373741831781938e-07,7.003430031549963e-06,9.111976702048218e-07,0.00017831154644040194,2.746405914146868e-07,9.333596511972043e-07,1.0203420432560338e-07,1.82320781279454e-07,0.00044341204183509747,0.0006709504909774914,0.0008007261136034782,4.03928635108627e-06,0.314009435347085,0.9999569200011453,2.338845251306323e-08,1.0161998294782056e-06,0.9999524837908345,4.342108361952011e-05,0.0001366711005105997,0.00012314110337001478,5.916583337383135e-05,0.0026180897452653742,5.577673004671543e-05,0.9999643203729882,7.200063507859553e-06,5.385345735228919e-08,0.007571644464279935,9.941763085180995e-08,0.019638625370748345,0.028605534537490127,8.495535740907596e-05,0.00023676033456636225,0.00044878441781779927,5.504363175414491e-05,0.0005147138997491958,1.4898298374128043e-07,5.6687418813394096e-05,3.3801132961577556e-05,1.8208913120611495e-05,2.6469077632923073e-05,0.02306569453322328,0.017513318825931684,0.9999824508150986,9.348392700209982e-06,9.515701055224033e-07,3.1700814538479595e-06,3.7342655863661426e-08,1.0905633124974827e-05,3.4804790977319257e-07,1.4496276525419978e-08,0.9999918952298136,3.323785243031283e-05,7.244450586559494e-05,6.157262457629564e-05,4.953071883709151e-08,0.9999593550480269,8.644807943551856e-07,1.008887458832826e-06,1.0523719231912636e-07,0.9998565423503333,0.03965243077614054,0.017634322573108048,0.0276914516480266,0.0073285509312865284,3.308177327421398e-07,3.858886812107312e-08,0.000174942106451509,1.2916797752650805e-06,1.2470343569459298e-07,2.194206766859255e-07,0.022026885626251234,9.947518469002796e-07,1.0011375460343733e-06,0.9999622208572385,6.575379957812114e-06,2.064505296324671e-05,1.8244359407097633e-08,0.006397726378660802,1.286211838408206e-06,1.0609231428582766e-07,0.9999739897969419,0.9999947136914178,2.8458726240085985e-08,8.964573712950184e-07,4.440428191250713e-05,3.979660358067825e-05,0.02365843235637444,1.1965729505354478e-05,0.014834783594436315,0.036606884764454506,2.0174180335248037e-08,0.09078248075556994,0.23210557866411824,0.24279332738021484,0.9999555968816375,1.0220505894676663e-06,0.14794860538323926,0.0012749900409343286,0.001462259470458666,0.06774659047209235,0.0008964567638621497,1.959956525304692e-08,0.18210625275603468,0.9999815877560608,1.2364312130414002e-06,0.9999648801756762,1.5131569282364374e-06,0.1826257844608062,0.032683772559834935,0.048131408060934924,0.3630403476340224,8.372963832695857e-07,4.150375721049582e-06,3.502926987791684e-05,0.9999474662002791,0.004226852563470473,0.0056829818875758645 -bright,rgb,0.9998325843264226,0.967381018527787,1.0831949136269682e-08,0.9761297215007051,1.611772780811177e-08,0.8103058673957355,0.9942782038850156,0.9733776329010272,0.9237964703184702,0.8472589839134682,2.3379677950181964e-08,1.4278177845020148e-08,1.4715092024812446e-08,0.9681800043325929,0.9994956037320701,0.9999999850799226,2.1474107164532555e-08,1.8602275051652557e-08,2.3854657385708196e-08,3.263358181714332e-06,1.197176707576221e-07,1.2826997134957838e-06,0.7970885584128873,1.7178177056863623e-06,0.18308765228858515,1.1654504492838378e-08,0.9999967884286001,0.12654964968964624,0.9999999488203581,0.0981856034340338,0.804706392346828,1.5437896975053473e-08,0.7026437925868168,0.21086840537288534,0.9833358474103023,0.9999999704029388,1.153001777981465e-06,4.6806520423055787e-07,0.08217977868328984,0.2307319890526759,0.8794494616412282,0.004323111135871767,0.7375989887167974,0.16182404369365017,0.9999526723566609,2.0170188425531146e-08,1.7127487223930373e-08,1.074292310726554e-08,0.9999639021117698,0.0011979552633050517,0.8046320605107901,0.8986119601552525,0.9224460921597063,0.4962957710018366,0.9999981739529225,0.33468583802835006,1.769691339592454e-05,9.4709136138735e-06,1.4692484146609193e-08,1.5791908175049563e-08,2.26291029928448e-08,1.8483780191672396e-07,0.9999999985655563,0.0013761791836269304,0.03512949464805214,6.129102098191041e-06,2.8407493612478985e-08,0.9206561272849481,0.9652342843618709,0.9428569053464781,0.5776908189820339,0.8987509036537954,0.7878280887844589,0.9209766240848122,0.956060681411541,0.0032147942434217415,1.5845725097475327e-08,2.9271387907438383e-06,1.2885753741208892e-06,6.105180753487282e-06,0.9999904711794946,1.3032750152697748e-05,2.8595504134768202e-05,2.8336217607691906e-06,0.965179500205851,1.4284769829427326e-05,0.9999999656232069,3.6568734674553796e-07,0.9964367738391704,0.9999907113374618,0.9734974097228759,0.9999999998937077,3.7218506341483954e-05,7.1400291663013315e-06,4.578268547071504e-06,3.200227126500083e-06,0.999999841773891,2.761403489380175e-06,1.5261621427021707e-05,3.0507983852627852e-06,1.602007958320392e-06,0.9376008906855057,0.2060104980952862,0.960952986089715,1.318221178550734e-06,0.8105165707584657,0.9997762059940841,1.4478641428127475e-06,7.680242547383698e-09,0.19347690059919065,1.381953833826796e-08,0.923876003388466,0.9933973093933613,1.894719718903922e-08,1.9274465501240035e-08,2.3284920392731462e-08,0.3982058469700504,6.176271515392616e-08,1.3646301874049363e-08,7.077121454740157e-09,1.490858916198793e-08,3.652017651852278e-08,0.002951239115836712,0.7485743127188792,2.218045575274662e-08,0.0011263243174606675,3.5504096057673384e-08,0.3856669280516388,9.04206319377006e-05,0.0021945776937897675,3.1576988992009723e-06,0.056003681060545395,0.833365434338005,0.9217377198610665,0.34269940586615266,4.128755991248631e-08,2.8670325748587584e-08,2.5219834682073635e-08,0.00037387690137542095,0.0832114605837541,0.9698950159500268,0.9999999968306459,0.5716654224580237,0.5295120777806505,8.51246378194216e-06,1.1986951861933376e-06,2.436153089782155e-05,1.5390181642844725e-06,2.3301332493009884e-08,4.298643672484481e-06,0.7009784876367835,3.157284393587939e-05,0.9999999424538504,2.407291049584104e-08,0.9999983302976695,1.5946303655376566e-08,1.5520027022456856e-08,0.26694029261869373,0.036471171500246986,3.9955085975297446e-08,0.7150844569032571,3.542568532535431e-08,0.9999997955610478,0.1816647673166775,0.3344728401546387,0.5623047756050736,0.26466880136252957,1.61272433333338e-08,1.6111915769383933e-08,0.9523919477960058,2.0392822342968396e-05,0.8027225330113981,0.00018742707609112469,0.9999999953707499,1.800515537975999e-05,0.9949336810529145,0.9999999999359999,0.9971569430079505,0.8711284742912209,0.2778347999470817,0.20228168938327154,0.9999999897376043,0.9807206473539746,0.760993438225205,0.8086659111041498,0.999994130913468,0.05301062764539673,0.955881775945324,1.603558019003643e-08,1.5124965342206003e-08,2.359018343094312e-08,0.02130736392450776,0.9998967461047756,8.00293136190568e-07,0.001233585351830728,0.99997587169035,0.26312729265478463,2.1553571280638117e-08,0.7394763155721901,0.47375594191019577,0.6759983343217167,3.409917015253883e-05,0.19713188610656393,0.9999960191441133,5.198361398203925e-08,0.32928943109402525,0.9999978079077874,0.857174638244578,0.9991560673396204,0.9999804141821833,0.0016810913210021981,7.875941378805746e-07,0.1530471315214971,1.5406774466130957e-08,0.6513964040433461,2.6941917357815735e-08,1.6885474365118476e-08,0.999999999779613,1.3820737511646213e-08,1.6368323435254658e-08,1.944418490685232e-08,0.5774183396158241,0.5663549871761736,0.0007738747206489184,1.845690801918973e-08,1.697058626935383e-08,0.9672100949224054,2.4001199346968166e-08,0.9999999998018063,1.4865386386025098e-08,0.9976225159555211,0.000554746229485209,0.7296413740274296,0.24676124965257432,1.5969484533591185e-08,2.195854720436619e-08,1.5399906267019347e-08,0.0653772427074376,0.0036987126568710895,9.316543998044476e-05,1.396221716251986e-06,0.9540516736480831,3.321580031385998e-08,3.34801346547993e-08 -cabbage,rgb,0.7845067131457483,2.4912208964457917e-16,0.9998988145815604,8.829553100024728e-05,0.9999533906021083,1.1034934575537082e-10,0.9998703221622924,5.466198292604246e-09,1.0385274963812238e-08,8.820276098778533e-08,0.9955088068014267,0.9991016974524428,0.9989485903148795,2.6183765034170586e-16,7.496674716778247e-07,0.7675709819624613,0.9999905893336872,0.9999865513173112,0.9999882202517554,0.09004572577941149,0.9999693921267485,0.9999996492402627,2.0588564716528708e-10,0.999999981805911,2.1547411081408777e-11,0.9999999599690652,0.17267448656047704,4.978273560114182e-11,0.7853074776809135,2.6029378206394647e-12,1.142586426578256e-10,0.9997714584521947,3.0901229767077045e-10,0.00023661124750488544,1.7416946050914607e-08,0.8517228433702102,0.31594361527094855,0.9999971127152323,2.1558840264881027e-09,4.383784382086275e-09,0.0001252400355886911,4.4547643347923417e-10,1.643997676857808e-10,1.6994463542273056e-12,0.9988615814894851,0.9976410941720114,0.9996099177354735,0.9999016118116528,0.9974051959871587,0.00048097373995313836,1.256064649098236e-10,0.00012571186384220253,2.279213789322733e-08,1.4757784972712728e-09,0.9889062212005929,1.6435162005577449e-09,1.108640809705882e-05,3.623981654284271e-05,0.9989629223243756,0.9986272016150156,0.9961064951606087,0.9999708377622304,0.30239790702401725,3.380124379692968e-09,1.6942476256589445e-11,0.9999998898347934,0.999999976187871,4.143011112079697e-08,8.346975537817765e-09,7.411061324053371e-09,7.899818841605272e-10,0.0002522990398770562,0.00022257081149221002,7.083739745641642e-08,3.8508018662739717e-16,6.735725276351532e-10,0.9999999750941306,0.999999943833159,0.9999997747842259,8.643024043211555e-05,0.2879676120823676,2.162784799063939e-05,0.9801640859708782,0.0004246574865526456,6.260117797149779e-09,0.9948098086811425,0.7751851741947987,0.9999985207420947,0.8606909029644592,0.2514734663265312,7.054736301523904e-09,0.031358328252164135,2.760177803290953e-06,5.8995167798258985e-05,0.0001537455612787388,0.00032449292337068987,0.9023014536565409,0.0004485192387486199,1.55791876737665e-05,0.0003744368473052059,0.0014998812229340137,0.9999821008261316,5.836987649612459e-09,7.386111184851822e-05,0.002202814216277132,1.0022572564274027e-10,0.9996779217126148,0.9999999779512425,0.9999998946277309,8.143790840299774e-09,0.9999998883489047,0.00013644480731219094,1.6987852813833853e-05,0.997146320298874,0.9971057503712724,0.9948707155962975,7.128434802462415e-06,0.905834986550237,0.9992771448959831,0.9999893766818019,0.9998202680595436,0.9737508756293779,9.311535194767103e-05,0.0004621655116006356,0.9944469706420386,3.1035437385855297e-07,0.9749614378423649,4.361660553401419e-06,0.011024017773829288,0.02518910410757823,0.013104711292447228,0.0012303717496501808,9.062794383325431e-11,6.23575757847908e-08,1.1806322157769943e-05,0.9999721638724978,0.9999859114984778,0.9999842993500977,0.0015839666449816551,3.978726964752112e-12,3.8841240957783584e-08,0.19795658241759365,9.136747908617684e-10,0.0007499619266579127,0.022085224436682024,0.25841927264008957,0.00017990013136353218,0.999999828859266,0.9999999799782642,0.9999999526925141,0.0005721339182039666,0.27984191197246217,0.8696649078470834,0.9951352569290337,0.9880091278587164,0.998545767399086,0.9986733773305779,3.4536107475696613e-12,5.731672692070415e-11,0.9999852123214379,2.3252587655246807e-13,0.9999870614266236,0.9935858449079862,1.25806952943833e-11,6.014621633290988e-12,2.8813292080482664e-12,1.4782880826625954e-11,0.9984375519646765,0.9985215879306631,8.893052764693942e-05,0.3294815901824836,1.2713426471124857e-10,0.05089247176640374,0.5418701541819353,0.25722758066400553,0.9998584559911029,0.017708648202147115,2.06862923774649e-06,8.427955913460173e-14,3.751156894597967e-12,9.103292080725288e-12,0.7719517662659761,1.665365055437965e-08,2.63964943141624e-10,1.0135480306605932e-10,0.9917149074475068,0.010003338238083637,3.739804123852433e-16,0.9985487963119204,0.9988124287993161,0.9956239378687566,0.028667629125272345,0.7493780809418327,0.3982442761501739,0.015794348240024014,0.9958420068021019,1.0713745630764812e-05,0.9949710979452766,2.2411163934153402e-10,2.083678543758079e-09,0.0005193953745556313,0.33222555642128815,4.1040884894318825e-11,0.13938535434998606,0.9368444662777132,3.4364458082631335e-09,0.9905355745365022,0.0002514663666995887,1.552225093192726e-06,0.5026557693582906,0.1167129943583288,0.9999949053851049,2.7870719348975608e-11,0.9987150336742716,2.8686278106076523e-12,0.9893651475042202,0.998172700380483,0.0698698421522971,0.9995936060592169,0.9998398079477924,0.9996354892440646,0.0006340599587781223,9.381898315143445e-10,9.417343531241887e-09,0.9999840618147312,0.9999843419860694,2.5096703070421993e-16,0.9999735668781242,0.062313928773705736,0.9998207419761901,4.459421809217459e-09,0.932121614651748,0.0003518152327008669,4.925429690258429e-09,0.9997349506069959,0.9946660376959559,0.9988852458811008,6.877916143201952e-12,0.005518850187318621,0.13145953588392736,0.9999971159119623,4.532725071602824e-08,0.9903142085796807,0.9867095859433274 -carrot,rgb,8.538807628499606e-28,1.6111973714174553e-11,0.6626176063060337,8.087653998051766e-40,0.006889075934471881,4.978246672634137e-05,3.9519517756293174e-28,1.1750900076956226e-08,1.5776009012510207e-07,2.3060554976354655e-07,0.9996930889701142,0.9916440722414,0.9961553098094736,5.069845312202622e-12,1.1293536296194245e-44,1.4049075565045668e-43,0.9933234017509812,0.9959469859038811,0.9944019399079961,0.9998815998476847,0.9793982677375617,0.00014052141468289794,4.4618746378335e-05,2.0744522726069455e-07,0.015110731114179021,0.023313645102920066,3.8462208454058936e-32,0.031417090206252274,1.67885523269275e-41,1.0357831179584984e-08,5.328426545214988e-05,0.22242105767264514,0.00012162905193380522,7.014238082692445e-07,1.020205282522738e-34,7.452425123763214e-43,0.99994372811785,0.06660476670724033,0.06239846990044109,0.003966579700188375,1.665605622580386e-36,1.690439624009405e-05,0.00010961246154353372,2.4885762572755304e-10,2.1203122381866074e-34,0.9267248402624275,0.27170438852902074,0.669597347923281,3.822466520239674e-34,0.5457942059648436,5.098917461595714e-05,6.561167783744017e-37,8.537934769591629e-08,0.000433080576007321,4.962034129518934e-38,0.0019525836441527183,0.9942504843732656,0.9958567205036032,0.9937661189471417,0.998082511203837,0.9996866413838716,0.9477451770652524,5.8988256790703704e-46,0.00010305695254273571,5.0761287507105155e-08,1.630543844539492e-07,0.005741645554239379,5.4151068549700965e-08,1.79785643576529e-08,8.758882808296926e-08,0.00027547346039482267,2.348730419242873e-37,1.7779590530100902e-35,3.2885009626741435e-08,1.8824551453075515e-09,5.978965987020778e-05,0.009209209760151582,4.161134205123035e-07,6.272291427927192e-05,0.9967719579972972,7.658867952539554e-31,0.9966482235131261,0.1683896643380588,0.9980078124934131,2.3131875092674525e-08,0.20391504811308972,3.790902866039557e-42,0.04429862514973009,3.0497935887968505e-23,9.59407947389986e-31,9.293237677422534e-09,2.4210902748293393e-48,0.9897234065133586,0.9947088214108623,0.9971183647494775,0.9976902091250212,2.517005667382978e-40,0.9980359241129848,0.9958725860955703,0.9982616661998129,0.9988151085056381,9.080598330912617e-26,0.004796675107278491,1.1393827805411795e-38,0.9984973842053972,5.19193337052938e-05,7.608669892605366e-33,5.086066373573923e-07,0.06090566549965658,0.004856514539812331,0.19329515004989903,1.3104284617816034e-37,1.968279641992529e-41,0.9913998401353618,0.9991199414527373,0.9995906462339674,1.7811747588067831e-06,0.9998982020470182,0.9897137972526616,0.7966365567744259,0.18640279019495662,0.9997082426865864,0.3163325058894063,1.732749398956409e-35,0.9959203026897657,0.9775033278186955,0.9996507597817509,3.3369666830958184e-06,0.9801687087417816,0.005636216851176354,0.9999403924994299,1.0516034662455759e-05,3.774298439487837e-05,3.584390921539387e-08,2.1736472292714143e-06,0.9961617958717786,0.9945549031450568,0.9957803093849541,0.8891879676597395,6.970656372693233e-09,5.198639951319701e-34,4.4372211519526106e-44,0.0002709193305919158,8.907726526415639e-34,0.9997350528195174,0.9999476517766189,0.9997044829826625,2.2878480062314682e-05,0.004761772173257037,9.270244796644494e-08,3.959680892583425e-35,0.9663854475254782,8.155251551003713e-42,0.9997191454289173,4.0616334861582483e-38,0.9978584305593164,0.9950476774136449,0.003981571515456695,0.07207937690583412,0.9922131595615848,0.00018248160610867742,0.9922150018029735,2.1973190344499992e-42,0.01219742899427151,0.004056209363141447,0.0010393987257921048,0.007854355376521946,0.9970980396856581,0.9983010331615669,2.3090087348152665e-38,0.9850946497873415,5.2158177037209624e-05,0.6810672572412093,9.421127373686459e-45,0.9917753248378787,2.9329889797632824e-28,9.579519389919022e-49,8.267942884511515e-42,4.263642914676815e-05,0.004073924358348766,0.009266151694045599,2.914101455136334e-44,2.316645631101579e-34,6.491111490741193e-05,5.3117432712351505e-05,2.913059872825646e-36,3.842747322635518e-29,1.0995769675412824e-10,0.9982658247051092,0.9951903069023722,0.9997226509435354,5.809131192958236e-06,1.945958235013948e-28,0.9999576506578783,0.044231346982694465,1.9946407176452375e-34,7.176929500155753e-06,0.9982076278260125,9.249369979984574e-05,0.00044645951536646133,7.96640541110108e-35,0.949676166166741,0.015774970676548795,1.3549291730269172e-31,0.9998673818778729,0.001437090521079752,7.465436281373686e-38,1.507574584846233e-36,4.264517666138392e-44,2.391610095284306e-30,0.0020275400711220505,0.04267727080444849,0.020677059539602503,0.9966959339256117,0.0006030182685222531,0.9993194195496989,0.9921561399722925,9.099358118072827e-48,0.8330288914285249,0.06749735749297492,0.08597392227978591,4.503277698925022e-34,0.00028130197397625644,0.00027278534836430837,0.9966417763998893,0.9966679948587075,1.64637307493313e-11,0.997722100693276,7.509270657423674e-48,0.18987558362962714,6.415059000662935e-38,0.0001930356030242013,4.1414573442757356e-35,0.0030591409872987338,0.225561395946435,0.9957418675620728,0.9810590725954075,5.914316964653954e-09,0.006400926471612734,0.8259899012159639,0.003864198595320513,3.587275825867314e-33,0.9998860964309754,0.9998524439973854 -childs,rgb,0.30148369579990225,0.9730582595410349,0.07904547779491554,0.9991840563233371,0.12502676934458076,0.33062031082942606,0.2344109140209456,0.255018376557935,0.22966378485679545,0.1882721817100999,0.04915035600639779,0.06492363992785778,0.0597578954352458,0.9766487913188494,0.9997822048246608,0.7771859165167989,0.021458196233236478,0.022607503350038374,0.021194493841059776,0.04282008459314191,0.018292327519587603,0.019490627810077436,0.31095442160830833,0.02370991023995234,0.4550057889117471,0.028351906617466227,0.46922826591680505,0.4204491180916161,0.7224884862298429,0.9282340678500045,0.32949536035431737,0.10689377810363934,0.29830306975168497,0.09141834974888535,0.9992053278310024,0.7543493629072155,0.039390778261072235,0.017666388730743984,0.2547985160686268,0.22615692709441096,0.9985308581933556,0.8143521238643858,0.31795341544817435,0.9522887895773049,0.43437169353897837,0.09497994590120465,0.11096361799264247,0.07848257209482443,0.4347553636600684,0.0639313120964235,0.32642931664854336,0.9986262305749869,0.21671877087609726,0.25369776861096177,0.5815767969541735,0.25133521850562807,0.23858751621031077,0.22243116548188058,0.06365512562520201,0.0561257335148881,0.048367757211953626,0.01795758853829405,0.8430799737941068,0.7631889914622256,0.9087386190403663,0.023538161638873713,0.023124133001729795,0.20753715641242176,0.2439312050984822,0.2391759225456394,0.2708589414976049,0.9986220755513089,0.998140999762129,0.20017363782082231,0.9485220313467032,0.7872634657711566,0.026471255398605904,0.02286083910534194,0.019855281069193886,0.20976230910523844,0.41876719625179415,0.2177475358992439,0.02531382660022347,0.18551869046884992,0.2488175427710848,0.023159477337220527,0.740546019934642,0.017689867163801724,0.19382370703643692,0.4185153622862249,0.2507089233436858,0.8956716555504989,0.26344363356967265,0.22692850588575686,0.20269949954918973,0.19135078550653106,0.6791572649604732,0.1847493040543938,0.2259139436608819,0.18289537114969887,0.1633623946139162,0.1731075797067358,0.2192182892834273,0.9990330941234546,0.16571759073967818,0.33377618622034244,0.37161611761850954,0.023033230015015928,0.03460807614135751,0.21127725082359186,0.024073762852285897,0.998766080136757,0.9994787888380562,0.07519625950718571,0.055159351693801296,0.052602417261845,0.12106859448261281,0.05876744349409989,0.06483814286884165,0.052341352852366026,0.10612427006925783,0.060913769284764566,0.07597288581925161,0.9979883150657619,0.07401885431448837,0.1685370890694729,0.06235623226011894,0.12466964382230296,0.04648777920099985,0.04845824503508265,0.059422501646607485,0.07364444552763917,0.337044782729319,0.20202714039635702,0.11516111982605914,0.020089797239936147,0.020629356436192205,0.02124176197747475,0.05626687088488012,0.9300113446714624,0.9990275007852059,0.8099927991090635,0.2668088097496402,0.9971718669035532,0.0475573323355712,0.04082133015336851,0.09146168829224306,0.020361766942793038,0.024439000147507463,0.02397757121117718,0.9978126013852406,0.03381602637949119,0.7252602173913989,0.04890163581512129,0.5853326185866605,0.05746765483158667,0.06373467275228967,0.5604633258266938,0.49423982675365247,0.01964255424814462,0.6491088071096296,0.019872256320492925,0.713038426347447,0.4924645526043686,0.5029920320979452,0.5123186304792536,0.4589978342361812,0.06054455807373201,0.05569260382808807,0.9989615748226235,0.033092317219938945,0.32604030226697034,0.040918140915721365,0.8120068779421472,0.03410122297083597,0.23808261657864138,0.90359690101404,0.9996107501692972,0.6698967234215419,0.5506635684636267,0.5086222457155685,0.7930631040733142,0.9991579275905138,0.3032146307865861,0.3334132730989736,0.5188346716543786,0.9917279745045012,0.9654266639158925,0.055721526859740925,0.06258774620963169,0.04807731101455486,0.0577529951338855,0.3210864465840841,0.03958464472652949,0.04827445892521192,0.4493476265223482,0.11286447110499317,0.06557167979051208,0.30814128805384533,0.24468667278210487,0.9977230925779343,0.033207935540401086,0.4118388682342456,0.4558844938378521,0.05893188513966225,0.2318223978487923,0.5738944871647942,0.9984246973246192,0.9997409400266258,0.39051202460057893,0.043470228924574014,0.017911073665753778,0.4479458842420075,0.06008953410219015,0.5004677813453707,0.06244784289021548,0.07042930584634796,0.8833975912080257,0.0853235598447087,0.11693226968610201,0.1255926920128043,0.9973588732884545,0.2660685021715688,0.7319350224919046,0.022876901016166164,0.023406499256353047,0.9729830364115413,0.022091799743242845,0.8852500152610137,0.10585383511240784,0.9996009988433419,0.03298157834415472,0.9979205872708845,0.22311474741179388,0.10861386662221971,0.0740775921584706,0.07396404166756292,0.9296034282334265,0.055128358738523967,0.037098879858919985,0.0185311122643902,0.9988563872947211,0.04492008589956824,0.04957296251485952 -chow,rgb,2.3368947664128248e-35,0.9999999999998606,2.5746556928178324e-15,2.0289351726448763e-12,4.1023331250042205e-16,0.012452564707760792,1.3126301467010705e-39,2.947597252640171e-09,7.97478439544164e-09,2.2890910758832443e-10,1.0571770254652243e-12,1.4522883077950655e-13,1.6442968038881083e-13,0.9999999999998741,1.1291457094339156e-10,1.1323194257232916e-43,1.2512491574463152e-19,4.602417785638101e-19,1.5900441184636598e-19,2.487643135934132e-10,1.9600595785165582e-20,1.5827016187347218e-27,0.0030090901236185567,1.066548478723428e-30,0.9996202289054756,2.6835143511723475e-24,3.787468684162316e-36,0.9988081377886027,1.1171425704209875e-42,0.9999999978109813,0.012437377452811083,1.3642735445850745e-14,0.003694436385408133,8.059274579221582e-16,0.00043523544265941906,1.3450530724474416e-43,7.656696351774681e-11,2.324205180019279e-24,0.08551844872363774,0.0006266972080803875,2.1679952652258077e-11,0.9999990359237036,0.012472559761221092,0.9999999985343138,7.493931781298522e-42,1.3139459153021035e-12,4.00671927733113e-14,2.4243497913054394e-15,2.650678575588598e-41,5.618672035464573e-11,0.009730109833012066,1.500850240565331e-11,1.141514440105568e-09,0.0005480783214437241,1.4402744069014767e-42,0.0022408220378615277,0.22781228742584,0.06838628885764177,1.8197630797722982e-13,2.2692552049657996e-13,7.928268575329578e-13,5.671984678289803e-21,8.633837384014192e-44,0.9999885097863378,0.9999999810466159,2.9777150046087958e-30,5.651621603049487e-26,2.681560136244473e-10,1.939762030087723e-09,9.00708134441978e-09,0.001239365985754367,2.889653020364314e-12,1.9389805506722708e-11,6.886868873631464e-11,0.999999999999347,0.9999983230116295,3.550815391477108e-25,3.6863299478590244e-30,5.727425588927264e-28,0.02419035054333125,8.26091296699763e-36,0.09516518650196677,1.705107665556989e-19,0.0029914423451284284,4.029693725817236e-09,3.373065815943646e-20,5.645032456531048e-43,8.988440752431742e-25,4.734200430450422e-33,1.1959327449399637e-35,1.5306464344647463e-09,1.3838983008735435e-43,0.6075698987284301,0.04749356365830013,0.011982446553087769,0.004459776393884273,1.4435521369842017e-42,0.002779745826634922,0.14356645230828083,0.0032300564598707203,0.00047891190802390275,2.7927296420283488e-39,0.0004258796101053747,7.95575743769286e-12,0.00032664681639137333,0.01593594627993847,1.1471640005645655e-41,2.4302946199859414e-30,1.1057943083955732e-22,0.00021651776431234697,1.4108492582952652e-23,6.920515505485209e-12,8.824970542735078e-12,1.4721223664726645e-12,7.696395085611465e-13,1.6777913684185522e-12,5.711326319089004e-13,2.1202083740349746e-10,9.731760442913657e-14,1.6010718684626878e-17,8.33367914532644e-15,3.5735929108476704e-11,3.9542402074027297e-10,5.198542531340897e-12,4.616836250385921e-12,0.016608622354444203,3.591495754328625e-11,2.205791452819977e-12,1.1926374056532056e-11,5.976091448395651e-16,5.904122836296022e-08,4.626321192734805e-16,0.014057237582688979,9.255474553205942e-11,2.8439410899010324e-13,2.7268708597405467e-19,1.4474254107043622e-19,2.7288775705408282e-19,4.875290717356755e-11,0.999999996431139,0.00020435346649946574,1.5185943843013656e-42,0.000900446727815231,9.902071811170696e-12,8.935620439429687e-10,1.4468048328556272e-10,2.1163434572712424e-05,2.021187907432424e-28,6.895588636000934e-26,1.0314040289251693e-30,4.876876580631524e-12,2.0906096279238382e-14,3.748220522411389e-43,1.174303173540283e-12,1.4260772270443951e-42,2.6617703247014955e-13,2.8384227829921086e-13,0.9999923269528809,0.9999677736250857,6.403587135431257e-20,0.9999991628126293,6.473192844274808e-20,4.9466983375998977e-45,0.9999216489494891,0.999900932601748,0.9998277102691289,0.9995015091258956,3.4093669732344516e-13,2.5288289721996565e-13,7.53550768791846e-12,3.454103298399286e-14,0.00971605409498904,3.6866456948576984e-14,1.0131331445446008e-43,1.1409951678965908e-13,1.2338349424762253e-39,1.8170651545521834e-43,2.6147050310634535e-10,0.9999992254240069,0.9999884524421868,0.9999548537510954,5.008547960800216e-44,0.000627503035686156,0.0026508945869490375,0.01594610811516664,8.26868438237415e-42,5.115560762834925e-12,0.9999999999997295,2.452251638044493e-13,2.247850647780468e-13,9.296503069614128e-13,1.9833160701770746e-18,1.3163176646452576e-35,8.30028731189093e-11,7.731602492266679e-15,3.2869778011115495e-41,8.841601864808995e-13,3.0532512864029934e-12,0.005419093605745934,0.00027851064823757136,7.59026518147481e-12,9.297865849706996e-15,0.996959906617677,1.062546058727517e-35,1.187355580227056e-10,0.00034318702049614325,1.4701450062492886e-42,6.005376856155152e-12,5.318139491276034e-11,4.6668342032499336e-36,2.0238173214384377e-17,2.457946567277896e-24,0.9995720647290021,2.3761554817524977e-13,0.9995217405880932,9.294576104809863e-12,6.001027779462744e-13,9.372423065125416e-44,4.311040223108526e-14,6.207494296538893e-15,3.257460599538466e-14,1.0309457206629524e-11,0.0008868756381810096,0.9999585892094699,7.162626808427238e-19,8.873408517969715e-19,0.9999999999998592,1.1359296628407727e-18,9.918194143938863e-44,8.296860814125688e-15,0.0002944101400298924,3.4257748404887936e-21,1.185140334577645e-11,0.0003693677374524511,1.8378741657721756e-14,4.312274523395462e-12,2.6154298707277017e-13,0.999999993197755,7.763776402928875e-15,1.527019740598271e-14,1.6395746620248943e-25,0.0003130415344279506,2.250430261977441e-12,5.71430651997552e-12 -circle,rgb,0.9798221240766181,0.9848439063168711,0.037556388233491195,0.9999989019512412,0.0958948702830484,0.259994594796043,0.9764930899951072,0.3579620510204156,0.28065026870221343,0.23425886461584874,0.01166607776888576,0.02100294697609057,0.01802833227681693,0.9880762054712371,0.9999998775504192,0.9998923882561133,0.007487811391844802,0.007488680056766794,0.00726269187336976,0.008506120994033303,0.007024508910983015,0.024589478280117944,0.2473162991248604,0.053933808910034485,0.2510329139988763,0.02279336941022457,0.9956224642569806,0.21716154804632254,0.9997818417920741,0.9393765545742667,0.25797974159680953,0.05912673194867623,0.22186534411173028,0.12239833349243259,0.9999965426869251,0.9998599017442993,0.0074787676013940915,0.012546828907743971,0.11855368022915262,0.13131194108621394,0.9999962063580352,0.7539331472986613,0.23743607554363602,0.9701234597280672,0.9971879677277992,0.03685223486478375,0.05960499528281107,0.03720468243182186,0.9970076577694412,0.025944019082538034,0.256474616253463,0.9999967268548765,0.27972743662018207,0.17362115947606202,0.9992211077023694,0.15352834693864426,0.06338040523922207,0.05767147189231769,0.020031451111244675,0.015879988865451816,0.01152680522558862,0.0075320841296834746,0.9999551817158526,0.66639974894332,0.9148647719697464,0.05353545292495006,0.021468591161836244,0.27916448735665866,0.33781905166540155,0.3010304539291832,0.19096700929064891,0.9999970354568246,0.9999941759527862,0.2810506912299667,0.9575598724326705,0.7007332034118672,0.023361439831199142,0.04848149417647396,0.027011631609286702,0.053373938827054206,0.993118713133494,0.05494093268327994,0.014391557000630512,0.045517886867997,0.33742664109775267,0.01317155890790678,0.9998249961561145,0.01316585025953275,0.9160681288134159,0.9929546862201464,0.3586657558062097,0.9999818761238364,0.0735508513990239,0.06059961736657007,0.051214588116183034,0.04755200375565691,0.9996653483586845,0.045284285962234244,0.058098222251479155,0.044217380723393276,0.03845968845139169,0.9479422019460565,0.12556712195653152,0.9999983594677742,0.04006209895432258,0.26160143064539476,0.9951175020299617,0.04851826405087726,0.02489834938491968,0.12112593787329845,0.015706664367419437,0.9999974455983383,0.9999994745478878,0.02399703868822224,0.014428278219768038,0.012770480478853433,0.1414152309851829,0.012109986446800676,0.02142706790316489,0.02432387616605168,0.059997562184756,0.014018002519563906,0.032750184902551174,0.9999937990170841,0.021925084709309678,0.046447115402514214,0.014586457921005814,0.1376091810154357,0.014213325342691464,0.03339158089567347,0.010751829092344284,0.08198518975346793,0.269677031843335,0.28133732694190966,0.13371152441005343,0.006599013564582589,0.007044723572468367,0.00706903970742452,0.019644206560963325,0.9430584659365807,0.9999952043174598,0.9999170358530529,0.1885069384997254,0.9999878635588134,0.009943441505589342,0.0076650634162607895,0.018101201970542855,0.030321292785850915,0.023043702751038682,0.0577150766615406,0.9999927883581186,0.011468382334429292,0.9997998193828028,0.011505060450255563,0.9992453657264899,0.016401247479764007,0.019588287449174485,0.3551036463937362,0.2535061052198453,0.006940986083978414,0.49959796254720107,0.007029732924287702,0.9998191574547338,0.28108513492596787,0.3082489600822628,0.3409915928130024,0.2644851160159608,0.017720992382360214,0.015576221981701327,0.9999981340806865,0.010455435022660713,0.25579562742986184,0.016955894405069474,0.9999301795976817,0.010152316493138691,0.9775047388683318,0.9999845418560257,0.9999996208370227,0.5509034949996197,0.3463805329261979,0.2979038779283957,0.9999146036439476,0.999996065384421,0.23541693226350846,0.26093378417400015,0.9985764199096545,0.9999149451076942,0.9773262499228679,0.015616329697381234,0.019217980893727393,0.011318095815975468,0.07135368541276373,0.9837005610285415,0.007357753244096416,0.027504147440669723,0.9973146093896732,0.11927122986520236,0.01809728601027171,0.23319902754185842,0.16744927785419034,0.9999920115110985,0.011739432216224548,0.22199144956923678,0.9948273153053638,0.012501441943689347,0.1455291317850093,0.9991692058407127,0.9999960206605684,0.9999998389242211,0.9915928897047351,0.03360641200604352,0.013163859582346768,0.24129888052036025,0.017838421587009615,0.34207411925238734,0.015672631144411222,0.022430821405463354,0.9999772630520586,0.03670486784314949,0.07288189468819138,0.07578785151638764,0.9999892799938462,0.18749455465823164,0.6132461428957803,0.0074304625433457795,0.007590756682278251,0.9847757741388579,0.006896033016538728,0.9999779981240262,0.05973266738512464,0.9999990559602893,0.03368020183129889,0.9999930533671972,0.1323067342661049,0.05987059416655556,0.022037073157165805,0.025632152155944526,0.9439070324579949,0.03665799673378717,0.014555999970903517,0.017022493745840424,0.9999933598191391,0.009683730193012339,0.010867726494392856 -cob,rgb,5.778730823424984e-29,3.331980582970564e-08,0.9291210986846918,3.101018585653219e-25,0.37727490375303163,2.037467823209686e-08,2.527849617020667e-28,1.4763871596635176e-12,1.8864801683275325e-11,2.2790557209625463e-11,0.9974599122465869,0.9918958954166062,0.9939329609590172,2.1370049862985067e-08,1.1971407578818992e-28,7.5372755723992e-42,0.7161989184612315,0.8336546335444774,0.7165978818926898,0.8605934561266595,0.11772826632564165,1.0765296326149844e-06,1.5118600937286114e-08,1.0364445266007654e-08,0.00012688462490229607,0.012807010510830242,7.438911860417669e-33,0.0002129634802037266,3.5541885584310413e-40,2.754694713994359e-05,2.1816336514625325e-08,0.8624717073551998,4.263965088138592e-08,5.606560547486607e-11,2.0701793771645664e-21,3.3491048246654847e-41,0.9546420547556193,0.0002342641096335187,5.129971750380799e-05,1.1999857190485252e-06,7.885978179677547e-23,0.004608005451204193,4.5254178975441686e-08,3.73863067527496e-06,9.595441829166001e-34,0.9836216406303475,0.8891281868490829,0.9295634644628556,1.1914284714287319e-33,0.0001307977191540205,2.017846192396473e-08,4.007089101862517e-23,9.413508852359235e-12,1.2142357493822722e-07,5.534026708945352e-37,6.806317436187178e-07,0.9718553142016018,0.9831076863863989,0.9929067985640402,0.9953208639270952,0.9973543657343074,0.03894278743868584,5.435918703085883e-44,0.0190512175853961,0.00010824441988205274,2.689940181680813e-09,0.0010004914137709377,5.6834734664631505e-12,2.168985920995421e-12,1.0777439363786315e-11,8.483109760829178e-08,1.7957895829913052e-23,4.2089304248627217e-22,3.333533302614491e-12,1.9975865798126065e-07,0.009193995897813384,0.0037855490801845613,9.754736073857002e-09,6.117604776458354e-07,0.9879996699887874,1.026062124006633e-31,0.9792547059707323,4.264559603271237e-05,0.9931812325191953,2.8696301900400974e-12,7.108998135222664e-05,1.0612545810315086e-40,0.0002104980387959551,4.440454189967237e-25,1.1890286436929539e-31,1.1406651009410155e-12,3.431414769387965e-46,0.945236850089467,0.9853748047251643,0.9902256472588018,0.9924612191161793,4.05663244510984e-39,0.9933005299031845,0.9759558931169906,0.9930663547202504,0.9955035386359852,4.4254430874623046e-26,1.3921895135950088e-06,2.1779227217623806e-24,0.9957057963473221,2.199902406558862e-08,2.6389023964847833e-32,2.1925210940755423e-08,0.07296541707933797,1.2971955021798323e-06,0.03703577336179171,1.2330489059268287e-23,2.3166525026360713e-26,0.9935492108238133,0.9967421595970634,0.9974866285370775,1.394831855281053e-10,0.9985832802045427,0.9908212190427503,0.888465392064997,0.8416185935708002,0.9982377128733062,5.055520042200181e-05,3.90398551444825e-22,0.9955900751511302,0.06668536383772425,0.9981778178498317,2.6396212962481276e-10,0.00783454850923634,4.787391651176616e-07,0.9702203024994291,8.179367515882733e-10,1.567708927167939e-08,3.661777281652319e-12,1.678853767779364e-10,0.6349220680102615,0.6673019322099332,0.7509991568201582,0.001037663770440451,2.605309078641428e-05,6.5364570173969644e-21,1.4715795533902744e-42,8.015200526222242e-08,6.510372286335165e-21,0.6665042857064967,0.9603275701825676,0.8711646092396373,2.604461034493e-07,0.0012388542543244302,2.5417644776552943e-09,6.988679458110693e-22,0.004598141088786093,2.365998615361381e-40,0.9975227842649708,4.59939931188638e-37,0.995255939396398,0.993787812686276,0.00011308123434776293,0.00359337691199925,0.4902689823125432,6.12190984823946e-06,0.5267280314719737,2.2090247448693685e-40,0.00017517021824276798,4.1021189816769655e-05,6.9679749180525295e-06,5.2490689313245746e-05,0.9949270600205188,0.9955443115293271,3.594931640814035e-24,0.011936323036381855,2.064056417173571e-08,0.00023811288906998111,6.529417211763379e-43,0.023163267830327888,1.9216302686133854e-28,1.4123375524048254e-46,1.4172325415930963e-26,1.1055701823462907e-06,9.649932662567281e-05,0.00015439269518966736,2.1684298833958653e-42,3.694674968365852e-21,2.1682467119487747e-08,2.2513295557114956e-08,1.6110559281219926e-35,1.1285318176211236e-17,8.507100009817834e-08,0.9955005504278389,0.9936861534348219,0.9974491174508666,5.526905452866961e-10,1.6071903390460224e-29,0.9736415572854565,3.996880942564612e-06,6.080600043660093e-34,5.500074995585412e-10,0.9965421152777054,3.400916354150157e-08,1.1551183793449013e-07,1.1688908426950122e-21,0.0029267419913803928,6.885899785975211e-05,2.0035804120850945e-32,0.9985256976554244,3.903696274654947e-07,8.072799369488248e-37,6.954735016872271e-23,3.032795198406164e-28,3.2314390616486008e-31,1.9157493886581612e-07,0.0001069937635763927,0.0001796251123976444,0.9944791357034816,2.8123888552614857e-06,0.9976330359128829,0.9932110540961485,1.2256864895518283e-45,0.9657735475794006,0.7404428355998585,0.7951389603405066,4.02952274905956e-21,8.311143940530789e-08,0.03894902663941973,0.8585170606948895,0.8764581660342472,3.37324079439461e-08,0.8523649025232912,1.0185741595039534e-45,0.8430768921885716,1.1079299905251771e-23,3.368243207724433e-08,7.501850807152685e-22,8.576927193006267e-07,0.867248870538608,0.9954952374587368,0.9895346233607341,2.8412788556880656e-05,5.109348193714698e-07,0.0005944943792540261,1.0908682469960429e-05,2.5528773237120746e-20,0.997806326056786,0.9980628501071437 -colored,rgb,0.30292443018531184,0.9527741521624691,0.07735673083750082,0.9900402459831085,0.10339140759941469,0.4529376622605932,0.21171388090579565,0.3762827054675313,0.34783987065444194,0.29694780768347206,0.0630974371405398,0.07209852014036545,0.06861316118238123,0.9568780565022834,0.9964886483613115,0.6610141630735613,0.031416429530329304,0.03274132619919984,0.03139340613029307,0.0747604688820241,0.029895465674254773,0.02859083754947122,0.4338768807693628,0.030164864932768626,0.539678598083962,0.032374838643206824,0.44240716192435514,0.509563408910671,0.612130482352257,0.8811397154212993,0.45175481293546194,0.09675359034328555,0.4198932459266973,0.1590831690159928,0.9922524859021378,0.6364199877514395,0.06730213253732124,0.027973867224093354,0.36269442895969406,0.3386788471508453,0.98493112487318,0.7522386440916216,0.4394796225859712,0.9094693401192322,0.3573890373989461,0.09508642499417873,0.10061427163252405,0.07693242801337156,0.36363745014255877,0.11786897544700996,0.4488605180049605,0.9856081062395394,0.33201927277149645,0.3718672907643656,0.4772803613004033,0.3671199769017556,0.27493295295424186,0.255371369737687,0.07146289492165653,0.06638250190862947,0.06219331356218303,0.029673970565431616,0.7385240225290776,0.697990881359437,0.8539542614005105,0.0320138229545504,0.028293207502407186,0.32046868353819796,0.36367619363859954,0.3588387855522205,0.39064573555446674,0.9853096221816466,0.9820222624044533,0.31091672900833817,0.9273759569177245,0.7278620571451488,0.03069859009045672,0.03055878443352063,0.028603718875701904,0.2407078960775419,0.40168646561161675,0.2554628718864714,0.04694412204088981,0.21368730505628786,0.3694870748256523,0.042421481300161254,0.6280034562381517,0.027418539159746246,0.21864957555066927,0.4028156498734721,0.37117969091035247,0.8102664414815006,0.3025678016263572,0.25534157380571076,0.23207033174753927,0.21945091360854566,0.5695366804957688,0.21281809766451038,0.2635488463135846,0.21251002214523432,0.19063469473683825,0.16093875375605016,0.3306552731226014,0.9888557391406513,0.19034524294591457,0.4559010804892248,0.30711719955013395,0.029683263308678275,0.037615013943917294,0.3216604800244715,0.02995984121306352,0.9866024379832853,0.9930071391108185,0.08195477459859522,0.06706273197776032,0.06614662653288185,0.20558059794736241,0.07757813414041112,0.07160259400576068,0.05547376690591395,0.09568484104498502,0.07624583733085596,0.13773790321342272,0.9806549849538652,0.08264116149502557,0.24948914852283854,0.07728439766456012,0.2112706888920818,0.08670919704631909,0.09073037426762634,0.09660834773090331,0.1318237109511745,0.45949837296540325,0.31331331290782133,0.19687939107439012,0.031241737512318183,0.031069005725277907,0.03170012776194802,0.10431235891557586,0.8815269015825528,0.9908971186849685,0.709083851817846,0.3864192955925496,0.9752861820943913,0.08390032598293218,0.06937331206298145,0.1436410197305492,0.028935260083432994,0.029121967564263284,0.03154148055029994,0.979400724814026,0.06401396619586384,0.6100390419876841,0.06304294743088652,0.48064843446208766,0.06751456367766463,0.0720159410902794,0.6208170110618759,0.5526286108390488,0.03026872686581063,0.697758460218468,0.03034229388364708,0.5757073962945006,0.5675983671933857,0.5819800555228718,0.5958558380899581,0.5464464778439113,0.06997567927146586,0.06619096797735138,0.9882363038941152,0.06241216447761365,0.44845124537311937,0.0776655075704712,0.700966393167706,0.06407916461772342,0.2146322385292666,0.8223224756081529,0.9946005178504179,0.718793731669629,0.6143204889436893,0.5805510188063973,0.675689959554148,0.9919480303619549,0.42567371166363926,0.4555193236818665,0.43009328060815594,0.9456427212238468,0.9437686650358149,0.06617807492902435,0.07094950603395966,0.06217000182675762,0.10383786134114562,0.3183307782066566,0.06658905426227832,0.09092341419951426,0.37696391333208734,0.19412856972347353,0.07617439465208882,0.4300977662531293,0.3620718337169391,0.9788832183101106,0.06294723030528428,0.5068774154083187,0.4347036132398534,0.0767127745657022,0.3464304265996682,0.4704215065268994,0.9838975901362355,0.9959607033524507,0.3751705057407656,0.08111620946149846,0.028849563187420862,0.5325593585190752,0.06925056196604248,0.5896247594595816,0.07542556459501121,0.07755209120879406,0.7919840240300687,0.08446285468305743,0.10189196782646286,0.10925030630313061,0.9765136837180795,0.3855900454699918,0.6667139780110285,0.03313758445442725,0.03358020104154046,0.9526771741260619,0.032942412694169,0.7947143962958682,0.09551339631495485,0.9953606969367083,0.05971916898575792,0.9803545254447297,0.33568551772468697,0.09817970550126336,0.08259018292334162,0.07899050658997939,0.8791560645991903,0.10278006240694182,0.07049689078846043,0.0292785934432807,0.9897826509320072,0.060994581069937576,0.06553259267774351 -corn,rgb,5.778730823424984e-29,3.331980582970564e-08,0.9291210986846918,3.101018585653219e-25,0.37727490375303163,2.037467823209686e-08,2.527849617020667e-28,1.4763871596635176e-12,1.8864801683275325e-11,2.2790557209625463e-11,0.9974599122465869,0.9918958954166062,0.9939329609590172,2.1370049862985067e-08,1.1971407578818992e-28,7.5372755723992e-42,0.7161989184612315,0.8336546335444774,0.7165978818926898,0.8605934561266595,0.11772826632564165,1.0765296326149844e-06,1.5118600937286114e-08,1.0364445266007654e-08,0.00012688462490229607,0.012807010510830242,7.438911860417669e-33,0.0002129634802037266,3.5541885584310413e-40,2.754694713994359e-05,2.1816336514625325e-08,0.8624717073551998,4.263965088138592e-08,5.606560547486607e-11,2.0701793771645664e-21,3.3491048246654847e-41,0.9546420547556193,0.0002342641096335187,5.129971750380799e-05,1.1999857190485252e-06,7.885978179677547e-23,0.004608005451204193,4.5254178975441686e-08,3.73863067527496e-06,9.595441829166001e-34,0.9836216406303475,0.8891281868490829,0.9295634644628556,1.1914284714287319e-33,0.0001307977191540205,2.017846192396473e-08,4.007089101862517e-23,9.413508852359235e-12,1.2142357493822722e-07,5.534026708945352e-37,6.806317436187178e-07,0.9718553142016018,0.9831076863863989,0.9929067985640402,0.9953208639270952,0.9973543657343074,0.03894278743868584,5.435918703085883e-44,0.0190512175853961,0.00010824441988205274,2.689940181680813e-09,0.0010004914137709377,5.6834734664631505e-12,2.168985920995421e-12,1.0777439363786315e-11,8.483109760829178e-08,1.7957895829913052e-23,4.2089304248627217e-22,3.333533302614491e-12,1.9975865798126065e-07,0.009193995897813384,0.0037855490801845613,9.754736073857002e-09,6.117604776458354e-07,0.9879996699887874,1.026062124006633e-31,0.9792547059707323,4.264559603271237e-05,0.9931812325191953,2.8696301900400974e-12,7.108998135222664e-05,1.0612545810315086e-40,0.0002104980387959551,4.440454189967237e-25,1.1890286436929539e-31,1.1406651009410155e-12,3.431414769387965e-46,0.945236850089467,0.9853748047251643,0.9902256472588018,0.9924612191161793,4.05663244510984e-39,0.9933005299031845,0.9759558931169906,0.9930663547202504,0.9955035386359852,4.4254430874623046e-26,1.3921895135950088e-06,2.1779227217623806e-24,0.9957057963473221,2.199902406558862e-08,2.6389023964847833e-32,2.1925210940755423e-08,0.07296541707933797,1.2971955021798323e-06,0.03703577336179171,1.2330489059268287e-23,2.3166525026360713e-26,0.9935492108238133,0.9967421595970634,0.9974866285370775,1.394831855281053e-10,0.9985832802045427,0.9908212190427503,0.888465392064997,0.8416185935708002,0.9982377128733062,5.055520042200181e-05,3.90398551444825e-22,0.9955900751511302,0.06668536383772425,0.9981778178498317,2.6396212962481276e-10,0.00783454850923634,4.787391651176616e-07,0.9702203024994291,8.179367515882733e-10,1.567708927167939e-08,3.661777281652319e-12,1.678853767779364e-10,0.6349220680102615,0.6673019322099332,0.7509991568201582,0.001037663770440451,2.605309078641428e-05,6.5364570173969644e-21,1.4715795533902744e-42,8.015200526222242e-08,6.510372286335165e-21,0.6665042857064967,0.9603275701825676,0.8711646092396373,2.604461034493e-07,0.0012388542543244302,2.5417644776552943e-09,6.988679458110693e-22,0.004598141088786093,2.365998615361381e-40,0.9975227842649708,4.59939931188638e-37,0.995255939396398,0.993787812686276,0.00011308123434776293,0.00359337691199925,0.4902689823125432,6.12190984823946e-06,0.5267280314719737,2.2090247448693685e-40,0.00017517021824276798,4.1021189816769655e-05,6.9679749180525295e-06,5.2490689313245746e-05,0.9949270600205188,0.9955443115293271,3.594931640814035e-24,0.011936323036381855,2.064056417173571e-08,0.00023811288906998111,6.529417211763379e-43,0.023163267830327888,1.9216302686133854e-28,1.4123375524048254e-46,1.4172325415930963e-26,1.1055701823462907e-06,9.649932662567281e-05,0.00015439269518966736,2.1684298833958653e-42,3.694674968365852e-21,2.1682467119487747e-08,2.2513295557114956e-08,1.6110559281219926e-35,1.1285318176211236e-17,8.507100009817834e-08,0.9955005504278389,0.9936861534348219,0.9974491174508666,5.526905452866961e-10,1.6071903390460224e-29,0.9736415572854565,3.996880942564612e-06,6.080600043660093e-34,5.500074995585412e-10,0.9965421152777054,3.400916354150157e-08,1.1551183793449013e-07,1.1688908426950122e-21,0.0029267419913803928,6.885899785975211e-05,2.0035804120850945e-32,0.9985256976554244,3.903696274654947e-07,8.072799369488248e-37,6.954735016872271e-23,3.032795198406164e-28,3.2314390616486008e-31,1.9157493886581612e-07,0.0001069937635763927,0.0001796251123976444,0.9944791357034816,2.8123888552614857e-06,0.9976330359128829,0.9932110540961485,1.2256864895518283e-45,0.9657735475794006,0.7404428355998585,0.7951389603405066,4.02952274905956e-21,8.311143940530789e-08,0.03894902663941973,0.8585170606948895,0.8764581660342472,3.37324079439461e-08,0.8523649025232912,1.0185741595039534e-45,0.8430768921885716,1.1079299905251771e-23,3.368243207724433e-08,7.501850807152685e-22,8.576927193006267e-07,0.867248870538608,0.9954952374587368,0.9895346233607341,2.8412788556880656e-05,5.109348193714698e-07,0.0005944943792540261,1.0908682469960429e-05,2.5528773237120746e-20,0.997806326056786,0.9980628501071437 -cube,rgb,0.9999347026103509,0.9999998477397233,0.0001240805864093233,0.9999878911811623,0.000156829103415601,0.9999703477860663,0.9968224358590669,0.9999793631944868,0.9999516726749278,0.9998675188621314,0.0003800621644733414,0.00021883244347471487,0.00022427135618190578,0.9999998552106922,0.999999724810033,0.9999998848149134,7.446786730379556e-05,7.484994717740163e-05,8.29477436384973e-05,0.03651651788976171,0.0002588794192577771,0.00043181648505757696,0.9999633600874488,0.00029235105299591234,0.9998929720697367,1.7545135160098902e-05,0.9999974312538782,0.9998258245758043,0.9999997272327954,0.9999545702344742,0.9999694172640637,0.00020287180121162954,0.9999445632693014,0.99420754646321,0.9999984364004185,0.9999997955232699,0.01391781137807428,0.000355105691380741,0.9993436096308836,0.9996158571165067,0.9999553467224421,0.9986556761757573,0.999957613180228,0.9999743915545837,0.9999185871743038,0.00037680805476289183,0.0002453035888615021,0.0001224310990227592,0.9999421060312397,0.8299608698678564,0.9999686513258362,0.9999611180778529,0.9999408592832323,0.9998589367037234,0.999994249845432,0.9997819054945964,0.5727630240878513,0.4091515902711688,0.00022810146079981522,0.0002427622701866093,0.0003595196091315352,0.00033177284692743664,0.999999984262546,0.99543945133456,0.9998571205307061,0.0009272520097331124,2.532246226171996e-05,0.9999306525157905,0.999972807374084,0.9999633189067535,0.9999015836075256,0.9999549029504553,0.9999181400472302,0.9999213806465933,0.9999997517138827,0.9981470166651686,1.870696892500206e-05,0.0005079542944221828,0.00039637673166173406,0.3009594348433632,0.9999938949920881,0.4820568641641869,0.030993227039873696,0.15500014854236524,0.9999746042817564,0.015046423475495776,0.9999997944861796,0.00026518010597406585,0.9994363846126535,0.9999942199071101,0.9999781194498948,0.9999999983908014,0.7469194894097768,0.3463541871455363,0.2398003668038211,0.1746781941320079,0.9999992962768031,0.15124962544614393,0.5271451060072968,0.16388876666983998,0.08633239017704747,0.9763421300172985,0.9995485514376864,0.9999832670501647,0.07212143207488914,0.9999711003507712,0.9997028338091555,0.00027197061062856877,1.7825010174484464e-05,0.9994843026614671,2.2985553962263232e-05,0.9999683882477114,0.9999966397401903,0.0003491547167500823,0.00031946373701679343,0.00039875399278062177,0.9985569414113521,0.0014171432748180098,0.00020317388005572205,5.173641171723531e-05,0.0001882407358232303,0.0007820114640937738,0.9270227286317185,0.9998879050544576,0.0004406637578853029,0.9691508452889984,0.0007667089744603698,0.9986715378428616,0.31855708436842706,0.7341642149680153,0.059595244170620086,0.978243375804554,0.9999743951350951,0.9999242430446704,0.9981106450934881,0.00013673926247663738,9.554952626475251e-05,9.127859746817342e-05,0.641182016979843,0.9999449176699378,0.9999971471021727,0.9999999757121903,0.9998962976757849,0.9997504457420625,0.08777947391430893,0.015284916272420424,0.38787794880709203,0.0004198540185415322,2.2015288735735518e-05,0.0006280552899123506,0.9998607677528198,0.09459039313374484,0.999999668506192,0.0003928926899628893,0.9999946705342223,0.00024914012981398635,0.00024863538889267065,0.9999526592022286,0.9996296209816278,0.00011632829198832045,0.9999926572629751,0.00010547292987269583,0.9999985736033354,0.9999083516269858,0.9999529696336592,0.9999775425888994,0.9999263198514502,0.00025911953490540197,0.0002490228421940908,0.9999798134531395,0.07032806987639359,0.9999683209689649,0.333504163982688,0.9999999574818563,0.0708726994536892,0.9971220888455866,0.9999999989845261,0.9999988280037624,0.9999968534406839,0.9999528293210714,0.9999226591336429,0.9999999104289103,0.9999982742235551,0.9999556078900051,0.999970804281888,0.9999865262290442,0.9962533802179535,0.9999997824274862,0.0002473656162219272,0.00023763311874418864,0.0003773123144122579,0.9197952545171392,0.9999546348602437,0.010377217493505175,0.6824207138817655,0.999959772353168,0.9976546855866767,0.0004072495569021592,0.9999543521512168,0.9998372208847108,0.9998517573133533,0.0936054110044002,0.9998773891329299,0.9999971801748633,0.0011650434023850922,0.9997323779226249,0.9999932854801483,0.9999404002571137,0.9999995362529844,0.9999880749111912,0.6155928998701958,0.0005522586473233217,0.9998699845826821,0.00024113311465324375,0.9999818735372447,0.0005389111391171116,0.00028962106201268226,0.9999999968820943,0.00019850374911806475,0.000201090911042031,0.000272761574668348,0.9997904968850292,0.9998942050422012,0.9915562381765969,7.752497185958223e-05,7.391998659409865e-05,0.9999998468628059,0.00010018608814286544,0.999999997168211,0.00018763770110995502,0.9999997133306409,0.21732411814180239,0.999886560826653,0.9996247712619274,0.00021491338125395696,0.0004343376224376187,0.0002505228012138214,0.9999273453630966,0.8460243725971618,0.20260654773764336,0.0007005280489295649,0.9999959504814355,0.0005387996522655186,0.0005983463664320677 -cuboid,rgb,0.9891255584195124,0.9036133673744029,0.010896205262794589,0.9670723581191986,0.013337998334912216,0.814981118399714,0.9702681618759963,0.9058264772072409,0.8694612606013788,0.8406614359989811,0.01214301841375448,0.011063864593110945,0.011032136198374327,0.9057497113524146,0.9909241440264538,0.9996080966267318,0.012646528821087324,0.012016607920206358,0.013003807916369832,0.04948370913189091,0.02127621420945112,0.05145764224150466,0.8117316507475723,0.061759272015369335,0.6241829546966723,0.01219412633760288,0.9970851794460984,0.5910268005946396,0.9993916058297606,0.6202527354508642,0.8132104994555397,0.012412235059200047,0.7850428769603874,0.6819923706353671,0.9640386804672352,0.99950762792858,0.03649019463142114,0.03504040214305091,0.5563190431584744,0.6532185861447324,0.9400031672975926,0.3617295839374249,0.7936045840160026,0.6716796482327461,0.9941276879473697,0.01262002550134079,0.012728269133166109,0.010865628487686511,0.9945220356983263,0.25555093055163464,0.8133369226620444,0.9439446964088559,0.870141099711426,0.7348357936447374,0.9980228139861238,0.6890314234548337,0.08149454874849288,0.06844791676850201,0.011105309505172883,0.011142838051023013,0.012035510926730397,0.024509867942591895,0.999819728406946,0.28249476971284687,0.5361158748919529,0.08776466818689074,0.016235377145666516,0.870288239217168,0.8980952258484284,0.8804055046632162,0.7544232491410152,0.9448848469230375,0.9252571928500865,0.8714674260606654,0.8886374856990308,0.3375470224816817,0.013562977532058117,0.07078505895755438,0.05218055799829695,0.06046213542558377,0.9957928346979287,0.07448553874641008,0.10661490029002249,0.04854161629170456,0.8976201791230183,0.08841894138403461,0.9994716534497655,0.03289058759198276,0.968899631481258,0.9958084358885926,0.9063127626194072,0.9999232019732162,0.1001933577412707,0.06354262997365615,0.055749389173262866,0.05031716713159979,0.9991145398361629,0.04818373153999026,0.0779603724453528,0.04946237250359657,0.04108463621672432,0.9356601375271713,0.6428741431531839,0.9603821928606052,0.03901751502386199,0.8148998874525033,0.990211463595179,0.058089473624099754,0.010582991211389992,0.6376711592380193,0.012362884129128658,0.9498853226027146,0.9785433839712155,0.011990991885148253,0.011659926644879984,0.012173329064398263,0.7329420659438591,0.015767358114287776,0.010957393428256827,0.00957936337130842,0.012334008878955072,0.013765492099509778,0.3122741939468879,0.9207492718474252,0.01240116548288163,0.23759612181085565,0.013688567354615688,0.7276820003698952,0.13130312529773266,0.311148057222704,0.048231532374501174,0.5687630988183097,0.8225110241535575,0.8716299704712054,0.7184570490963346,0.015170799715654234,0.013718581403328534,0.01315314427592035,0.1910770221387736,0.6090236206918744,0.9563031905156862,0.9997558509492274,0.7531878676090826,0.8913198545708314,0.06533926731091651,0.03683061961318716,0.08628485777880052,0.05570478989080371,0.015361797441243451,0.08042024583143764,0.9144630363585302,0.1010693769076587,0.9993777186015704,0.012229743011140548,0.9980802808740165,0.01119077204827727,0.011240361551364425,0.6607131302685081,0.48813235359665536,0.015211938570345003,0.7828478045464549,0.0146863091604592,0.9991164292769533,0.6238131818345801,0.6824323589727362,0.7435353853758558,0.658827468057504,0.011275091842863206,0.01118698059299686,0.9575523479848527,0.08882044200232994,0.8127400703337996,0.16534737882158132,0.9997339996487676,0.08505525559466762,0.9714233307510574,0.999934816009294,0.9833691594049261,0.8317134744510492,0.6643965888033309,0.6338274516028781,0.9996577589754112,0.9620183723090888,0.8011594187844427,0.8143105135303949,0.9970254985903939,0.7418208696920775,0.8925474747892902,0.011175239084410425,0.011154099698824162,0.012158676515971058,0.4988239926863283,0.9907753179398897,0.03273013338626778,0.2688352700302912,0.9951814949653358,0.6911001485613415,0.012154713774052646,0.7946652049811334,0.7296667820978195,0.9108300731056133,0.10384201932767151,0.6309700737809802,0.996831099818337,0.015062849079414787,0.6889785990185385,0.9979001365085014,0.9368385188528333,0.9892426073088754,0.9947106896064445,0.2985272273802362,0.04092238560125415,0.6079863395489921,0.011151479899269057,0.7658419373537481,0.012773191755695256,0.011590004609464756,0.9999028043069714,0.011502318160500707,0.012898441610567125,0.013484795904120415,0.89770520737317,0.7518907238989624,0.24676097334735644,0.01194900120866057,0.01165411917427481,0.9034465586302869,0.012823110794861136,0.999906079353782,0.012319456427166373,0.9816794330565559,0.2428271553568518,0.9175383971960656,0.6601470850351658,0.012527899848606097,0.01237361128303095,0.011443170953271653,0.5912750421551867,0.3441923155448666,0.13739091995103017,0.04999520414623688,0.9491205718738356,0.013249756750409732,0.013315905709491194 -cucumber,rgb,9.299864060260994e-20,0.9999999999915767,0.9719111239298385,0.9999999999997047,0.9956935195913968,0.000304819842255446,1.4952828599628893e-19,9.478958917784352e-09,3.205407075318207e-08,7.969768796100317e-09,0.7523333719309762,0.955641679603849,0.9257481455842295,0.9999999999965177,0.9999999999999871,3.0554942370308164e-23,0.0001326911197574663,0.0003453857039240766,0.00011206514423172057,0.0027409666986505355,1.8192376709363407e-06,3.9238248108585884e-10,0.00012891538458483661,8.626968931932342e-11,0.9727663692039576,7.027359902357138e-05,7.861649361002138e-21,0.9550809392624157,7.410143651833808e-23,0.9999999999878897,0.0003127725686769838,0.9960225184651911,0.00021384626525290708,1.2236476562846705e-10,0.9999999999999989,4.3977867147678116e-23,0.005802104890069718,1.017334316375045e-08,0.026999599147403294,0.0003317795110221128,0.9999999999996696,0.9999999996501958,0.0004164040811595591,0.9999999999981062,4.00190775812106e-21,0.9967306965743796,0.9973969689454796,0.9704331070928294,3.895059315970086e-21,1.9523793178894146e-06,0.0002662685033672769,0.9999999999996649,1.1462705820161166e-08,0.00012120769164253737,5.087922889354655e-22,0.0005050092427292627,0.9999421703290285,0.9999424097962035,0.9510428465487512,0.8915350239490124,0.7252656243406674,5.544644454234411e-07,9.500056057148622e-24,0.9999999992003912,0.9999999999795115,1.511349548308207e-11,1.4452603912075724e-06,5.440587087969242e-09,8.980510930579384e-09,2.8194771669244148e-08,0.0001593224058750689,0.9999999999994289,0.9999999999995077,2.6869182611213746e-09,0.9999999995005049,0.9999999992704469,1.4994908175407904e-05,4.343626484880715e-11,3.1863127808452673e-10,0.9999365708701775,1.6176157711437187e-20,0.999899173842921,4.574034400053448e-09,0.9999081012865786,1.3262962546588565e-08,4.7692851283349936e-09,5.581075725489171e-23,1.1289079114712042e-08,1.765552314529776e-18,1.7318908097316947e-20,6.681193535477943e-09,3.0792520792309098e-24,0.999949815720436,0.9999645235332972,0.9999347333772226,0.9999219811353754,1.3633962156038456e-22,0.999906900063167,0.9999159892649341,0.9998878384568933,0.9998320125352819,9.060937658886205e-19,0.00029011351571996374,0.9999999999997573,0.999874822097294,0.0003584488438052061,1.0940895683062696e-20,1.2200938051026826e-10,0.0015098739139364542,0.00020000651969125308,3.235383738884845e-05,0.9999999999996352,0.9999999999999036,0.9866431730671015,0.8868025776686156,0.8450202477009837,1.5110921157229457e-09,0.9143699565490717,0.9529701231124317,0.48953112876529026,0.9953950628444355,0.9468211752940118,2.644109672001494e-06,0.9999999999991551,0.9866681265254089,0.40996531007013526,0.9559515061331615,3.06324750767722e-09,9.333305246718525e-06,3.5650575918702387e-09,0.11455324485132072,2.668575507971468e-10,0.00029405269918220204,3.107454288885515e-09,1.2570851409101025e-09,3.984683814879577e-05,6.87599583657407e-05,0.0001230533903012339,5.182336419468753e-06,0.9999999999910334,0.999999999999998,1.991955820055752e-23,0.00013232892221702857,0.9999999999988192,0.00174326534287982,0.008314021351050555,0.34957597093720605,2.03394751916081e-10,2.970351239145794e-06,2.1400779968761365e-11,0.999999999999017,9.160901474874801e-07,6.913815020267479e-23,0.7436459336605177,4.835268979016324e-22,0.908299927185049,0.9537383512836753,0.9986351356409499,0.9997021133078331,2.3265220053493173e-05,0.9984805271440383,3.0359872620117324e-05,9.291444668236684e-23,0.9932792001794216,0.9798491815365433,0.9206890323512095,0.944706649812142,0.9363881299401757,0.8868020002720491,0.9999999999997256,1.8682951601047799e-06,0.0002683962088050086,2.165938179948618e-07,1.6953155168369022e-23,3.986092218699511e-06,1.3675020760588906e-19,2.558674080079022e-24,0.9999999999999782,0.995950536185088,0.9978491738277905,0.9952720138253265,2.3232232880554775e-23,0.9999999999999989,0.0001385580079624076,0.00036179593112791277,1.1896747772678152e-21,0.9999999999911824,0.9999999999699025,0.8869335983060594,0.9466740950303508,0.7141892216418034,4.933795449577472e-11,6.308275135374345e-20,0.010890814342629875,1.9242708288787944e-08,3.1519917993417338e-21,2.83742244541517e-09,0.9685937662459027,0.00023926302572826035,8.452937146352588e-05,0.9999999999990905,5.62318321699386e-07,0.8473297917728329,1.0984313415996465e-20,0.9226701522760362,0.00015318238582128014,5.647720999009443e-22,0.9999999999994471,0.9999999999999793,2.0785024401474003e-20,9.508396941185228e-10,4.941600128837984e-09,0.9760234264819855,0.9309001007747623,0.7776764934079977,0.9570609712042473,0.9776057792174135,4.04990594026627e-24,0.9894410491733998,0.9969824132609739,0.9985535647189985,0.9999999999989551,0.0001331989541324435,0.9999999986900572,0.000431910385712926,0.0006079912796415248,0.9999999999914773,0.0002645966773698692,3.889282187895981e-24,0.9953298116778712,0.9999999999999996,6.477576583615724e-11,0.9999999999993152,0.00022010992556682874,0.996567118570432,0.986667222572446,0.981748598006665,0.9999999999924674,7.891749273945662e-09,2.6821670210338884e-07,1.0613950631390102e-09,0.9999999999999978,0.5535633622371595,0.7542367674897336 -cut,rgb,0.3926371716742382,0.9823275981088152,0.08150304486536743,0.9999649964400632,0.1591436435542045,0.19400033403444011,0.36210334097283825,0.14821489841018765,0.12825594720515432,0.10237721713207303,0.035011155905024016,0.05600572314566545,0.04941343594016403,0.9856194875882393,0.9999932711290629,0.9266724614521741,0.014313508110572987,0.015152253675303108,0.013920815572052006,0.020369496814698122,0.010847909122589473,0.014759724783831536,0.17915036661651962,0.02239491542029858,0.3163409118376635,0.027374165060545904,0.6109637908991665,0.28287597096920625,0.8933061727978837,0.9522604053222405,0.19312158592354753,0.12018531350550653,0.16958071520839108,0.048234191737841534,0.999949392686552,0.9153810948078467,0.019346826889874106,0.011589483112747809,0.1402282077694626,0.1194920127346831,0.9999205726873301,0.8458766290718989,0.1842103412957693,0.9730558981821137,0.6553177152622084,0.09222352464456719,0.123824382514676,0.08078469967717149,0.6470637878890989,0.028975406660281682,0.19077757819388982,0.9999278159864631,0.12085082365830357,0.13797429697955702,0.799097600065133,0.1362451969879117,0.17432822623135968,0.163933276581992,0.054105488941136155,0.044646512871513486,0.03443907665051013,0.010605100705781047,0.9550669665338141,0.7958778343697681,0.9376142643116204,0.020456967557188108,0.02108228926471837,0.11573155404977507,0.1402888318635231,0.13507494623311023,0.14984315581537366,0.9999298781754618,0.9998919999970464,0.11185774930485044,0.9563977148836781,0.8147985808625923,0.025422328318129975,0.02021136270849978,0.015471762000818136,0.15516023340882457,0.5475693626071072,0.15559276170151662,0.012904350746205967,0.13740201504741792,0.14313508118416687,0.012088975239045011,0.9049228929839651,0.011974307094038393,0.22336659503220382,0.5450331679519241,0.14570775377881398,0.9734616309687304,0.19269032496835936,0.17215351100125417,0.1507180007554626,0.14237714141573407,0.8668801409089549,0.13684982321433212,0.16249290011782158,0.13383708020050153,0.11963587815254124,0.26584034774684706,0.11500520292704645,0.99995506176331,0.12412459150372568,0.19643327219560563,0.5815911561743614,0.021293937742731604,0.034642761386519755,0.1099454422355518,0.020717746722829087,0.999938277552641,0.9999799701410006,0.06560925221897639,0.04211581913322963,0.038349137914619746,0.06277468851390376,0.039292566516409236,0.05644342626907688,0.0503119628213505,0.12017988631907714,0.04393893199945834,0.03470015735526393,0.9998833092809968,0.062289349039954575,0.0888603602954492,0.045537947970600116,0.06417434428630825,0.020925806005171205,0.023337423957652315,0.02982772089039213,0.03766553237256965,0.19903062690692552,0.11287786753602412,0.059520047209326486,0.012409456979939778,0.013291220313013434,0.013779771952331661,0.025325204005404858,0.9548189835379433,0.9999350970574534,0.9370736843207336,0.14703571747211605,0.999814844229406,0.02219167583787812,0.020103100100961606,0.046374630266436366,0.016250969744435538,0.022967967965202556,0.021821576858677853,0.9998698772708963,0.015563599422919143,0.8977852725038501,0.034632467935745426,0.8020243102234159,0.04605891414570507,0.05361062068823035,0.4356348980751525,0.37581587103478736,0.012380949186821083,0.5357842861084011,0.012662070638918799,0.9032254622398709,0.3579592981186058,0.36412971576470515,0.36887882697981395,0.3176817610392688,0.04946009563757059,0.04400860010711406,0.9999507030370951,0.015233970648823267,0.19047547824766506,0.018767309594366514,0.9422930303973861,0.015640769073872494,0.3678781596614123,0.9758687435105787,0.9999853717826134,0.5569246342361293,0.42292230386782087,0.3756505797270304,0.9353453367171095,0.9999449351719399,0.1733257748902629,0.19614831162008783,0.7374705297385212,0.9992439822569471,0.975236045244056,0.044078020339082986,0.052498294488621935,0.03396346243126277,0.03049699721090417,0.4218766061791681,0.01979274358171404,0.022659782483467117,0.6611279784115611,0.05743390941684979,0.052610914519667394,0.17687716134962275,0.13192956306708223,0.9998615973117952,0.01534357255744141,0.27134254997686896,0.5897300169296731,0.04022103269946217,0.12324495285977398,0.7930350844417802,0.9999151595567652,0.9999916841636364,0.5166858550223775,0.02150572504135766,0.011524145286986965,0.3101845234179707,0.049360202728886984,0.3536623524321439,0.047439941748392354,0.060946059157687055,0.9696384668967565,0.08547293321071532,0.13812790463837268,0.14742912237954245,0.999830673472804,0.14651618036030073,0.763849625708306,0.015286771955071568,0.015801567304613122,0.982263109744745,0.014215597312190366,0.9702227873831429,0.11976704191333623,0.9999797064677473,0.017905613221244624,0.9998760758293522,0.11752677243752085,0.12213143611600394,0.06247117859643715,0.06679001340174946,0.9555250735258416,0.026237984299357094,0.017069881574809355,0.012445469260627073,0.9999188889088765,0.02972641744566305,0.03373762298299483 -cylinder,rgb,0.793496663444745,0.9361884732793956,0.008083122316206398,0.9869906508013646,0.01114226951895858,0.5309935177414515,0.6079154272182623,0.5852780339232527,0.5139587904844908,0.4419437754748312,0.007494618025755373,0.007788435437917652,0.007510695228110875,0.9406249948860367,0.9968838458048107,0.9853291793242006,0.004685573871954488,0.004685407706782172,0.004759577715260867,0.01904063227944779,0.00609695280354505,0.009749257759871543,0.514947221940956,0.011187878855599964,0.45294210736104856,0.004635576547452284,0.92358451202854,0.4137961930765223,0.9785521685021311,0.7362320988712329,0.5285569428550633,0.0102283372016207,0.4820585894557437,0.216789764730667,0.9885949916420343,0.9821317668109495,0.01480246101455817,0.007718766444023255,0.3028963526014099,0.3369783579828705,0.9758466921251159,0.4582916124574289,0.5027949524585263,0.7948734828087414,0.8637323870126792,0.010241052686230769,0.010683888668373892,0.00803842332801344,0.8704958109266314,0.07295191356226056,0.5266984359789302,0.9774708353580925,0.5027520875595552,0.4103623214418245,0.9421948950909574,0.37719647099016657,0.0689837821123411,0.058590640676281225,0.0077582391064157236,0.0073829781931539894,0.007380110561719097,0.006574801288959993,0.9925447608205763,0.3645265395549509,0.661954777627483,0.014415307319560332,0.004968246989477669,0.4939483544269948,0.56435666880839,0.5360424367331326,0.43761689539648113,0.9773579332434648,0.969142883399481,0.4878411631597649,0.9082195691930176,0.42274341375450963,0.004743444763513888,0.01226336077832395,0.009823713213215271,0.05191635217651064,0.8978861051628502,0.06154382836728558,0.0215206543627479,0.04149018934475868,0.5678500980717889,0.017881910579583094,0.9810016625732962,0.007332956980856922,0.6115094919173271,0.8983947399644776,0.5824288130608916,0.996487931790283,0.08445001625393332,0.05612291155669753,0.04806872138485124,0.043283056158844216,0.9704477032694244,0.04117750714971359,0.06486695483952043,0.04175613711232138,0.034394670978559555,0.4400819205693618,0.3259409643135851,0.9844295647665207,0.03334385819106607,0.5329347251990838,0.8030692616726693,0.010678599082659689,0.004749919886227345,0.31713028378609304,0.004440639271157048,0.97985220048751,0.9919558901645483,0.008945931600123917,0.007639316005734399,0.007759998677899365,0.2824909137726732,0.010105424517062103,0.0077052437671092985,0.005924446744655807,0.010105679423870875,0.009223170547578746,0.0941356314587343,0.9664517533529254,0.009182977253435276,0.12144339632467481,0.009282031434921588,0.2842831636291679,0.0379081567329635,0.06981842213376302,0.02258459536125088,0.15374884224842592,0.542508081647671,0.4899525101654258,0.2670346316781822,0.005184457475456689,0.0048728360326489905,0.004824847250159563,0.054947368869242875,0.7313615352419337,0.9857889851390121,0.9902914703042891,0.43373571252956106,0.9525242661590327,0.02433838757987346,0.015208599168996771,0.04258592184288788,0.010281511837958538,0.00490857247141806,0.01351701115020027,0.9634280153507676,0.025990285166694067,0.9781359208797603,0.0075213079496942396,0.9435755542871574,0.007490286611338139,0.007857589157492127,0.5311940723148106,0.3853526087687314,0.005075758996613894,0.668759697332891,0.004982690666088174,0.9708006831281263,0.47157263838580776,0.5179278299785705,0.5692627372053379,0.47861904319555276,0.007715391984666515,0.007385444272960939,0.9832062924956737,0.023614368782672406,0.5258712558846197,0.04050800572101073,0.9895233740661651,0.023447403195678243,0.6161188706479251,0.9969642122021056,0.9941561450928292,0.7208470281193582,0.5289179336175529,0.48647643916250066,0.9869626539099305,0.9879291439918954,0.4998057807227081,0.5321315534300817,0.9194688456038654,0.8657942060671374,0.9238273085917641,0.007379807299444231,0.007739867007398075,0.007422258435341442,0.11422399007295136,0.8156621480655861,0.013797156612061233,0.06283964532600014,0.882499685345378,0.25071711319208406,0.008566179480891617,0.49723568090884024,0.3999157478325153,0.9619149999178073,0.026105250531058218,0.4351586939919241,0.9187072242036262,0.009762269406273297,0.3629181547775382,0.9392792824520366,0.9739728976998777,0.9962318898522077,0.8775522883264677,0.06255455774927215,0.008629468668705871,0.4386609886086259,0.007608670378315957,0.5815876859280742,0.008759825785949164,0.008430521396263593,0.9956726207566964,0.008896136343504854,0.01084456597450227,0.011718983746785443,0.9557096105758267,0.4321966846336239,0.3194496429963889,0.004710497098242743,0.004686581880322564,0.9360382840223727,0.004887113920886111,0.9958019076775433,0.010085821923583968,0.9944822550772769,0.04341549296614952,0.9653293015133302,0.3387955515423533,0.01039446881223134,0.009166743973501123,0.008472457265051742,0.7199361141951159,0.08233358301777109,0.0336230111313485,0.009781177619627983,0.983250227536576,0.007698758306673731,0.008123663113826571 -cylindrical,rgb,0.9540541942133467,0.9999994179763613,0.012757317423988612,0.9999999999986142,0.06718174280562786,0.7756061227885572,0.8864829131920754,0.6281099389054755,0.5028509615507666,0.3235769901802349,0.0021746733518077264,0.00585535495767877,0.004389882860447752,0.9999996380010538,0.9999999999999816,0.9999761490341231,0.0002039274741403868,0.0002331988031067908,0.00019519217444583368,0.0013939849743336869,0.00013374499122917362,0.0002749727272588024,0.7274503001970122,0.0006450021546842583,0.9257342317840821,0.0006703299322307952,0.9961088538827992,0.8891288291300468,0.9999316715797493,0.999984647112671,0.7725067724235231,0.03556038868544454,0.6824292168525399,0.0383001012706424,0.9999999999979183,0.9999629025874215,0.0010463938371518533,0.00015840363614690197,0.4653283083660622,0.3832032425398455,0.9999999999894078,0.9995105294806471,0.7384909235269065,0.9999962831544764,0.9952372355435078,0.021071818092667602,0.03958509359041585,0.01245976366674193,0.9951463582223805,0.006967230665110985,0.7656381637144652,0.9999999999916236,0.45495078489710655,0.5147681883939665,0.9994035090660538,0.489611569969575,0.3224422926193499,0.26440003459187306,0.0054427687935935005,0.003517774568613667,0.0020722355622626275,0.00013192642769374228,0.9999946260766778,0.9987028363698286,0.9999647861463126,0.0006398663171936342,0.00038774881043582217,0.42021424977466365,0.582577636207655,0.5475810340230409,0.583457914647059,0.9999999999919005,0.9999999999767546,0.39332282576551636,0.9999949707184446,0.9991536442516397,0.0005681019989782193,0.000563110969661989,0.0003003675130515419,0.22225032849884244,0.9920208381410357,0.247777718269848,0.00044747089332089273,0.15183241209958406,0.5985818107595928,0.0003392166094602087,0.9999508917645907,0.00016176868642395632,0.7085309589831918,0.9919233786387088,0.6147726804247876,0.9999989138021989,0.4179640574607551,0.28115186051351065,0.2004082156556645,0.1675897824735775,0.9998599889454783,0.14984592017128281,0.2761399388737941,0.1447312129572749,0.10048900767415274,0.6719357706500821,0.354122065747993,0.9999999999974616,0.10596067260450136,0.7824361466332136,0.9882176130091932,0.0005699213177002155,0.0011690941591872871,0.3233168724936592,0.0003740606561449577,0.9999999999942737,0.9999999999996791,0.009259836001145928,0.003231570974154844,0.0027085074759382677,0.0874801719321974,0.003605621944021399,0.005881179371260685,0.0034644487519865656,0.035067238087218115,0.004199220822913691,0.01240119620371945,0.9999999999707494,0.008552655678985773,0.12550574747510818,0.0045471272827606385,0.0933327593384473,0.00223385033853495,0.0037176320046485214,0.003691926548762061,0.017546991636694126,0.7918690611065735,0.4005173037632674,0.07454835352553608,0.0001641647103047185,0.00018001485713112683,0.00019423065974101804,0.0043344101105967005,0.9999860298255419,0.999999999995983,0.9999873744455351,0.5689632136431191,0.9999999999067419,0.0019887798788935734,0.0011624623676755215,0.015222799589451639,0.0003376327356970376,0.0004605268465770265,0.0006913391535469244,0.9999999999613327,0.0008689713622940889,0.9999362800280861,0.002133603635483128,0.9994345729974453,0.003800242211865243,0.005413013101428478,0.9783881144527473,0.9482889072207166,0.0001581098383573654,0.9934962045127906,0.00016360352612069867,0.9999277432065183,0.9511741335729847,0.9585213972885261,0.9646999937839442,0.9307633374140378,0.004519012497039954,0.0034181403640538227,0.9999999999967804,0.0007857114590676777,0.7645376634558153,0.0017292107443661424,0.9999885886922097,0.0008386563054229282,0.8935202171812439,0.9999991916023809,0.9999999999998679,0.9953272126617525,0.9757866632548149,0.9596681292624032,0.999983025049885,0.9999999999974496,0.7026076136707142,0.7814593024282919,0.998518592463425,0.9999999966225979,0.9999986664076265,0.003426444698733376,0.005111019015022145,0.0020245263287946027,0.008487200247974721,0.9664943293890405,0.0010485602890460111,0.0033649969254438616,0.9960237355252376,0.06689176344092047,0.005673715824738497,0.7134822375019345,0.47935188265500317,0.9999999999552451,0.0008373956255772597,0.881777382893584,0.9952093058011571,0.0036747408975822612,0.41602985834221856,0.9993348167870192,0.9999999999870646,0.9999999999999676,0.9882521514251386,0.002784829873864231,0.00016848575705126457,0.9187988484912616,0.004438188474718516,0.9605895975245344,0.0046910639992124685,0.007520753822294459,0.9999983456324522,0.015608510751419466,0.049773078127216645,0.0616372206493821,0.9999999999257856,0.5658601087155221,0.997810355878723,0.00023969154058061612,0.0002564569984667975,0.9999994125685039,0.00021274432011165927,0.9999984434609918,0.03475541707052437,0.9999999999997948,0.001328500334010377,0.9999999999665936,0.37383613552130857,0.03736706471176023,0.00858867526005531,0.009082219346860026,0.9999858587345338,0.005492705128271531,0.0012415085430770149,0.00020648036090544937,0.9999999999930143,0.0015883054976708157,0.0021682278385000246 -dark,rgb,9.38098370909062e-18,1.4458022563549762e-14,0.9999826271980692,6.959653652642495e-06,0.9999934684497325,7.20150880804673e-16,6.755319559724255e-14,2.1190831833919274e-17,1.5295448815083421e-16,8.013387613017439e-16,0.9985620169890014,0.9998713250218836,0.999814160470269,2.1146736371268235e-14,2.4757737859742152e-08,5.949269390460376e-23,0.9989079928482935,0.9991721033256746,0.9984871668969008,0.0016773522941674632,0.9318670141279415,0.5234619635456701,8.458387143575574e-16,0.7851598680833837,4.38246043840888e-13,0.9999831683743842,1.168996988131689e-20,9.546789048789515e-13,2.8673658685346703e-22,1.522959391192768e-09,7.712228000991844e-16,0.9999812114602513,2.2217986827937637e-15,6.178293964635497e-13,1.1718898352030101e-07,1.923233900614978e-22,0.017528203177159953,0.7066148905483676,1.352160102207669e-12,1.1659545626409325e-13,4.1365073401450995e-05,2.7750806227203205e-07,1.598147165692948e-15,1.442343039029958e-09,3.8999871806951044e-17,0.9998837407092291,0.9999746958528433,0.9999827218188604,1.673656785378948e-17,8.246056928657326e-09,7.71635940644694e-16,3.449158006948114e-05,1.771543112491425e-16,1.1874702070039091e-14,1.6422877746752127e-19,4.3070123659279e-14,0.00038117433315639854,0.0015695460487788204,0.999847251859214,0.9997148551132508,0.9986634497485251,0.8527274433901187,1.0082720634358709e-24,2.3758203646630764e-06,1.2636750159316932e-08,0.1328075206131216,0.9998668662666526,2.0303805771539627e-16,3.6025062793097416e-17,8.598860801446392e-17,6.3193581136937455e-15,4.523776462559836e-05,9.792458235762716e-05,2.2054671309594747e-16,4.768024185063274e-15,3.5984410086067576e-07,0.9999696675353001,0.4305249377049747,0.5787340016622031,0.004170575548065813,6.851733161778223e-20,0.0006431699788758924,7.365509648989198e-05,0.02198581398010275,3.4604454519066835e-17,0.00037092219912643044,1.695887287417213e-22,0.8353222475100771,7.728155131582448e-16,6.036369292537961e-20,2.185971512160793e-17,9.173370731619604e-27,7.618683391222071e-05,0.0035119666392585507,0.008047702004224064,0.017471095044880015,2.0102046798176106e-21,0.023247948715133193,0.0004757321419115967,0.0173714170851048,0.0674469558823885,5.521208125395274e-12,1.543224616060138e-13,1.060026756517056e-05,0.11389604803347626,7.187175367611781e-16,6.052372471032275e-16,0.8116678317998298,0.9999936510146438,1.7989735376036984e-13,0.9999436497578049,2.644872585685006e-05,1.0426315127685703e-06,0.9997729483840999,0.9994062972801219,0.9987656238236673,6.375231211762778e-14,0.9810705660342824,0.9998914857081167,0.9999894194401017,0.9999836876704651,0.9963223095395709,1.2726131570860322e-09,0.00016086716871218968,0.9995786361085158,9.77087770664609e-09,0.9968103553101354,6.337442852926795e-14,1.5804887805565622e-06,5.772144231719868e-09,0.002068398807313931,1.0977219659029343e-11,5.337826844706329e-16,2.1199372336528697e-16,1.051345332499534e-13,0.9929451552707049,0.9975093768143619,0.9981228931998162,8.418930599623314e-08,2.757364107700869e-09,2.923126258747842e-07,1.904342719717859e-24,6.6333922279563185e-15,0.0004815412974760214,0.0002020372789479471,0.0161281180331371,2.714680778007359e-05,0.5405310736781692,0.999927319474236,0.3088539822913871,0.00021884080694353764,1.9633554132111463e-05,4.754051294042622e-22,0.9984061935793643,1.4005567044399221e-19,0.9997226937409852,0.9998133347703116,2.694949121216391e-13,2.984126591910131e-11,0.9945241866328033,6.453359758492851e-15,0.9960028836113485,1.6057493411410808e-20,5.454499906604681e-13,9.599987371499269e-14,1.3241281784606396e-14,1.596625284129833e-13,0.9997500338579574,0.9996876499876266,1.3894707464558434e-05,4.66235519603626e-05,7.895960680352955e-16,5.143833697113955e-07,7.670719079991674e-24,5.591517691093752e-05,5.4666779955344914e-14,3.518115110406336e-27,2.00010104660283e-07,8.395523279425377e-16,2.2471152348212807e-13,4.446679303363846e-13,3.8316860907653754e-23,1.2987738458288576e-07,1.2609209874905463e-15,7.353267141687086e-16,8.420196188894228e-19,0.020287925164999648,1.5129598273059176e-14,0.9996932559138119,0.9998206576777048,0.9984561600158613,1.2998215618825036e-10,4.453326626277579e-18,0.040268471496213494,1.411334662760999e-08,7.56675505530397e-18,1.949930251500716e-13,0.9994492130695544,1.5664926357269007e-15,1.4180695284400248e-14,0.00023483402454452565,1.7789461916726672e-05,2.930099603508593e-13,1.3667956342655516e-20,0.9885692850232297,4.521255261766904e-14,2.2732301181002123e-19,6.549829621186069e-05,5.4658347647355386e-08,2.823255079504075e-19,1.3543850271196434e-08,0.42486948736693325,6.769393657987174e-13,0.9997835564202264,5.676014606332669e-15,0.9986783106432164,0.9998147767866028,3.6499358289490724e-26,0.9999615000895065,0.9999862794441342,0.9999788080666839,0.00037647266436711344,6.913796314728184e-15,6.792550230027534e-06,0.9991552533663425,0.99933023926442,1.4534738302097955e-14,0.9981130860829588,2.98451248170537e-26,0.999983665503454,1.1003590634602833e-08,3.309073621770645e-07,0.00015828535003920049,9.843058329891042e-14,0.9999797542020209,0.9995943165159387,0.999890211803553,5.554762082292467e-09,1.6681273159484344e-09,2.2315075228593443e-06,0.2562930554112957,4.569320596803935e-07,0.9950217206734033,0.9956838445624552 -ear,rgb,5.778730823424984e-29,3.331980582970564e-08,0.9291210986846918,3.101018585653219e-25,0.37727490375303163,2.037467823209686e-08,2.527849617020667e-28,1.4763871596635176e-12,1.8864801683275325e-11,2.2790557209625463e-11,0.9974599122465869,0.9918958954166062,0.9939329609590172,2.1370049862985067e-08,1.1971407578818992e-28,7.5372755723992e-42,0.7161989184612315,0.8336546335444774,0.7165978818926898,0.8605934561266595,0.11772826632564165,1.0765296326149844e-06,1.5118600937286114e-08,1.0364445266007654e-08,0.00012688462490229607,0.012807010510830242,7.438911860417669e-33,0.0002129634802037266,3.5541885584310413e-40,2.754694713994359e-05,2.1816336514625325e-08,0.8624717073551998,4.263965088138592e-08,5.606560547486607e-11,2.0701793771645664e-21,3.3491048246654847e-41,0.9546420547556193,0.0002342641096335187,5.129971750380799e-05,1.1999857190485252e-06,7.885978179677547e-23,0.004608005451204193,4.5254178975441686e-08,3.73863067527496e-06,9.595441829166001e-34,0.9836216406303475,0.8891281868490829,0.9295634644628556,1.1914284714287319e-33,0.0001307977191540205,2.017846192396473e-08,4.007089101862517e-23,9.413508852359235e-12,1.2142357493822722e-07,5.534026708945352e-37,6.806317436187178e-07,0.9718553142016018,0.9831076863863989,0.9929067985640402,0.9953208639270952,0.9973543657343074,0.03894278743868584,5.435918703085883e-44,0.0190512175853961,0.00010824441988205274,2.689940181680813e-09,0.0010004914137709377,5.6834734664631505e-12,2.168985920995421e-12,1.0777439363786315e-11,8.483109760829178e-08,1.7957895829913052e-23,4.2089304248627217e-22,3.333533302614491e-12,1.9975865798126065e-07,0.009193995897813384,0.0037855490801845613,9.754736073857002e-09,6.117604776458354e-07,0.9879996699887874,1.026062124006633e-31,0.9792547059707323,4.264559603271237e-05,0.9931812325191953,2.8696301900400974e-12,7.108998135222664e-05,1.0612545810315086e-40,0.0002104980387959551,4.440454189967237e-25,1.1890286436929539e-31,1.1406651009410155e-12,3.431414769387965e-46,0.945236850089467,0.9853748047251643,0.9902256472588018,0.9924612191161793,4.05663244510984e-39,0.9933005299031845,0.9759558931169906,0.9930663547202504,0.9955035386359852,4.4254430874623046e-26,1.3921895135950088e-06,2.1779227217623806e-24,0.9957057963473221,2.199902406558862e-08,2.6389023964847833e-32,2.1925210940755423e-08,0.07296541707933797,1.2971955021798323e-06,0.03703577336179171,1.2330489059268287e-23,2.3166525026360713e-26,0.9935492108238133,0.9967421595970634,0.9974866285370775,1.394831855281053e-10,0.9985832802045427,0.9908212190427503,0.888465392064997,0.8416185935708002,0.9982377128733062,5.055520042200181e-05,3.90398551444825e-22,0.9955900751511302,0.06668536383772425,0.9981778178498317,2.6396212962481276e-10,0.00783454850923634,4.787391651176616e-07,0.9702203024994291,8.179367515882733e-10,1.567708927167939e-08,3.661777281652319e-12,1.678853767779364e-10,0.6349220680102615,0.6673019322099332,0.7509991568201582,0.001037663770440451,2.605309078641428e-05,6.5364570173969644e-21,1.4715795533902744e-42,8.015200526222242e-08,6.510372286335165e-21,0.6665042857064967,0.9603275701825676,0.8711646092396373,2.604461034493e-07,0.0012388542543244302,2.5417644776552943e-09,6.988679458110693e-22,0.004598141088786093,2.365998615361381e-40,0.9975227842649708,4.59939931188638e-37,0.995255939396398,0.993787812686276,0.00011308123434776293,0.00359337691199925,0.4902689823125432,6.12190984823946e-06,0.5267280314719737,2.2090247448693685e-40,0.00017517021824276798,4.1021189816769655e-05,6.9679749180525295e-06,5.2490689313245746e-05,0.9949270600205188,0.9955443115293271,3.594931640814035e-24,0.011936323036381855,2.064056417173571e-08,0.00023811288906998111,6.529417211763379e-43,0.023163267830327888,1.9216302686133854e-28,1.4123375524048254e-46,1.4172325415930963e-26,1.1055701823462907e-06,9.649932662567281e-05,0.00015439269518966736,2.1684298833958653e-42,3.694674968365852e-21,2.1682467119487747e-08,2.2513295557114956e-08,1.6110559281219926e-35,1.1285318176211236e-17,8.507100009817834e-08,0.9955005504278389,0.9936861534348219,0.9974491174508666,5.526905452866961e-10,1.6071903390460224e-29,0.9736415572854565,3.996880942564612e-06,6.080600043660093e-34,5.500074995585412e-10,0.9965421152777054,3.400916354150157e-08,1.1551183793449013e-07,1.1688908426950122e-21,0.0029267419913803928,6.885899785975211e-05,2.0035804120850945e-32,0.9985256976554244,3.903696274654947e-07,8.072799369488248e-37,6.954735016872271e-23,3.032795198406164e-28,3.2314390616486008e-31,1.9157493886581612e-07,0.0001069937635763927,0.0001796251123976444,0.9944791357034816,2.8123888552614857e-06,0.9976330359128829,0.9932110540961485,1.2256864895518283e-45,0.9657735475794006,0.7404428355998585,0.7951389603405066,4.02952274905956e-21,8.311143940530789e-08,0.03894902663941973,0.8585170606948895,0.8764581660342472,3.37324079439461e-08,0.8523649025232912,1.0185741595039534e-45,0.8430768921885716,1.1079299905251771e-23,3.368243207724433e-08,7.501850807152685e-22,8.576927193006267e-07,0.867248870538608,0.9954952374587368,0.9895346233607341,2.8412788556880656e-05,5.109348193714698e-07,0.0005944943792540261,1.0908682469960429e-05,2.5528773237120746e-20,0.997806326056786,0.9980628501071437 -eggplanet,rgb,2.4681229557137932e-20,1.2275961041041513e-06,0.9997411101424203,2.3740450281949005e-06,0.9997700516651511,1.3468340103396314e-10,3.562422388963942e-18,1.9006304237967655e-13,1.3095261905656133e-12,2.3280149872494123e-12,0.9982906951309043,0.9995573924419001,0.9994420924175247,1.6132811559299175e-06,3.602150931098376e-08,4.46154850785959e-27,0.9509814068961305,0.9705787748832085,0.9406685220909096,0.05759232488375954,0.2944609195529804,0.0008503670186142759,1.1162630466616638e-10,0.00033390402125997847,4.4408346011445024e-07,0.9724201530887135,4.7624490844182007e-23,6.704944025486518e-07,3.267480822356567e-26,0.0022154856678856232,1.4273490189592523e-10,0.9997900394036954,2.662366163323763e-10,3.327853203229685e-11,1.0195936438862072e-05,1.2882585536563443e-26,0.24664818081958673,0.01044370386873355,1.2600807930127958e-07,5.1534310477859485e-09,2.396515631066037e-05,0.05209974948363297,2.6556376458739573e-10,0.0019403155924334842,1.446127885387165e-21,0.9997194516047642,0.9997917499170885,0.9997392281914007,9.920489871938303e-22,1.5578771798966573e-06,1.3498639319062697e-10,1.8284380857660635e-05,9.366588445346672e-13,7.174392683471421e-10,8.338406539989776e-24,2.9544619730700995e-09,0.5954970488450791,0.7752419327131373,0.999523049233157,0.999290098106026,0.9982823954775072,0.13222484468736423,1.2211521823644267e-28,0.16396586562339227,0.00813199956405206,3.2204913305331806e-05,0.729011211553671,7.457364061478258e-13,2.7124665087592607e-13,8.229197891367801e-13,5.052501257912144e-10,1.512069556319805e-05,5.233187690661968e-05,5.78631989297015e-13,4.4996826937524477e-07,0.05991557406730577,0.9310527686522384,0.00012738901375957318,0.0007849547797671945,0.858308616478912,2.6977902999761656e-22,0.6475695558986809,2.9872638038756768e-05,0.9379114769754131,3.117296876442126e-13,7.786769010452241e-05,1.7196891800515282e-26,0.015069559606640104,4.491186955292272e-18,2.669589912793894e-22,1.6704313598112694e-13,2.3806006313627785e-30,0.36018485268994826,0.8571103991638843,0.8986732318916251,0.9313071334814803,1.8814678017919984e-25,0.9396669141888845,0.6124205752045007,0.9272434218813554,0.9637146349639293,1.8766621038387016e-16,5.988594378848922e-09,5.086049826622843e-06,0.9745959048338206,1.4229528027754508e-10,1.7064359797644823e-20,0.00047605529844985535,0.9945444420087471,5.848215378090088e-09,0.9553051831741987,1.1556570306714493e-05,5.959136968064522e-07,0.9995777627619447,0.9990546097868667,0.998614144356991,2.3437335227456624e-11,0.9958954013179566,0.999574651780893,0.9994907005534129,0.9997891162459314,0.9983134815947141,5.07031482588093e-07,5.846725836651524e-05,0.9994778184806629,0.00014976370785676154,0.9984850845206781,3.2269487428515116e-11,9.079302292913615e-05,7.45733202282291e-08,0.19777601479565415,3.391616035933492e-10,1.0731111977146329e-10,6.003018872656194e-13,3.038618779938291e-11,0.8397225694830601,0.9123342430814944,0.9382506742791769,1.0708861844209255e-05,0.0031474509543123613,1.9478732201243747e-05,4.672103377309606e-28,4.895536631689707e-10,0.0001959293940809157,0.013955802470379785,0.2606873517347127,0.024606742645900924,0.0005264088967653704,0.8192102185126864,5.887106470324609e-05,7.680480031190761e-05,0.00016811204384599806,3.7366901009885616e-26,0.9981928761629493,7.25111747690956e-24,0.9993260387115767,0.9994969226777319,6.602550264618069e-07,2.4493587883044655e-05,0.8192682480425161,4.597081163613579e-08,0.8542266137568197,2.317022675473193e-25,7.396616057160586e-07,1.6485916249957997e-07,2.78342470203241e-08,1.8003027081428136e-07,0.9994040459047296,0.9992582301836509,6.461152181061269e-06,0.00039114361572181164,1.3761175897485685e-10,8.98830259653841e-06,7.375240693528782e-28,0.0006044138310348015,2.922847050223651e-18,1.1184843514643157e-30,3.1745000337600876e-07,8.462339189266055e-09,5.223580899390718e-07,6.985527327027484e-07,2.432938584959173e-27,1.2470999769504617e-05,1.5237369616124397e-10,1.451115989910484e-10,5.514116417063728e-23,0.005760156522606571,1.206675119976042e-06,0.9992633186555497,0.9994881424189824,0.9981477330902254,7.326882262220775e-10,1.1150331296723822e-20,0.4018800412001944,2.956051949790836e-07,5.32395477343369e-22,6.768992051809714e-11,0.9993183298493171,2.1578388707253777e-10,7.148771926217314e-10,9.254014609113858e-05,0.00012756114790621678,2.0435069090900562e-07,7.179605216213988e-23,0.9968723493498359,2.009728098443559e-09,1.109179995180924e-23,2.608754305973784e-05,6.15469395464392e-08,7.85156803760419e-22,6.739135643316376e-08,0.004022097868039763,6.231617125952281e-07,0.9994221708178606,1.0982062476103019e-08,0.9989671940971877,0.999565956295269,7.06985764433279e-30,0.9997459766642902,0.999793355024914,0.999798346160655,0.0001569926792140529,5.053553374025092e-10,0.26548158082476786,0.9730225413460833,0.9785291122443498,1.2315904801038557e-06,0.9550929752106511,6.0327139501562396e-30,0.9997889092961912,9.847723729783705e-07,1.1848746211119779e-07,7.199022606187632e-05,3.957768068543234e-09,0.9997912511632587,0.9994848626687467,0.9996436187791026,0.004757859519549253,4.8370767134877674e-08,2.5072815531906715e-05,0.0010778746060116308,3.3556203578209576e-05,0.9962418434646895,0.9972308661854885 -eggplant,rgb,3.1590816398343264e-05,9.910345609398027e-07,0.9998814461805622,2.2977028731922227e-05,0.9998460468291742,7.762738498627186e-05,0.0011747146851303686,3.8329657798388105e-05,9.05795756422629e-05,0.00022549929114685873,0.9996830479048957,0.9998092493698261,0.9998047305928459,9.481046973445664e-07,6.144090121236119e-07,4.104257669335107e-08,0.9999080508793744,0.9999103267581437,0.9998982266051639,0.9740946416525905,0.9996706137690983,0.9992160069460222,9.250498498164764e-05,0.9993754303131345,0.00036646887855237696,0.9999721837422191,1.2592436287627623e-06,0.0005762277728115126,1.0059499075104504e-07,0.00021807019416455428,8.00231190688928e-05,0.9998156310395747,0.0001397338573990274,0.006995894119128625,4.659789473681715e-06,7.244488846000607e-08,0.9897997837622576,0.9994492614979855,0.0017167484672333797,0.0009019879983143366,8.683502552963525e-05,0.005269828264082198,0.00011036255840964526,0.00012605473139699067,2.8524316593387208e-05,0.9996920005357331,0.9997830296642675,0.9998828274550361,2.0946576842513953e-05,0.23188316727902164,8.152726494942703e-05,7.52281109119938e-05,0.00010573251415382273,0.00033536776167006604,2.0295689836978813e-06,0.0005320694210130553,0.6479492116773898,0.7738080942346159,0.9998021709565845,0.9997900329616338,0.9996979477964582,0.9995671685775391,5.759848114583227e-09,0.016432376167248595,0.0006410695615382604,0.9980909078818714,0.9999562458421021,0.00011968145692405963,4.9811518886991894e-05,6.924217374825631e-05,0.00023975312223488798,8.396099222515091e-05,0.00015685543889364586,0.0001313180698437174,1.5300561831013718e-06,0.007111944685641874,0.999968953276692,0.9989505790043739,0.9992634437111597,0.8420857364802309,3.000892753237556e-06,0.7201418739732407,0.9648951568512896,0.9217714642896871,4.7347742467036175e-05,0.9821177341340754,7.504928845936684e-08,0.9995784915399106,0.0002954666642600853,2.8664423295562693e-06,4.000428210106212e-05,6.176335654384205e-10,0.46753688849295877,0.8155327317093313,0.8770046869905738,0.9117352228272055,2.5695780457081886e-07,0.9236846919989481,0.6852911738291378,0.9170134197004247,0.9559783403253754,0.008726927441036907,0.0010479591734252759,3.2486812299772646e-05,0.9631336947555922,7.612595802580992e-05,0.00010294526278476331,0.9994286449588881,0.9999741037202681,0.0011760961540177182,0.9999648634081564,6.0405641365095536e-05,6.753839177904904e-06,0.9997134925462207,0.9997318558773519,0.9996715513082159,0.0020654412974927126,0.9989696963136043,0.9998211531978518,0.999943545259527,0.999826859379714,0.9994049312560688,0.10953586229908027,0.00020746080451676687,0.9996483073539372,0.07043817790113409,0.9994168211908342,0.001962743302508291,0.7462314373457942,0.28987796246856273,0.9626078934045502,0.025354763491173486,6.73740924465517e-05,0.0001274593598377876,0.0026505182987105144,0.9998350086917721,0.999882645584288,0.9998894727497575,0.447492660766167,0.0002610950902161408,8.264955586196212e-06,9.379153539209994e-09,0.00025057173893266267,0.0004606583072089483,0.9391824905267688,0.9889704779791343,0.7528290703783497,0.9992025482354857,0.9999621119820972,0.9986701285912651,0.0002561910864948069,0.917664445608694,1.1908090312540398e-07,0.9996732020962777,1.8829840719427497e-06,0.999785461608078,0.9997867058946412,0.00018017038627761545,0.0013238345089448204,0.9998546910215942,3.0255080101201003e-05,0.9998681636152478,4.568344208827839e-07,0.0003266870925244491,0.00016826071721095408,8.01278355224001e-05,0.0002519771653459888,0.999778461317717,0.9997851624463665,3.8997651521053964e-05,0.9393878496051692,8.237035163421705e-05,0.7068132098786792,1.536218819434544e-08,0.9404633318100485,0.001063984571459735,3.9500659721299294e-10,2.5880902100918003e-06,1.3144508501905878e-05,0.000177753410011787,0.0002800482836138687,3.149925333223416e-08,5.172618952909798e-06,0.00011141887626422373,7.689495569958442e-05,4.867975236940326e-06,0.006432191525372212,1.381825185843814e-06,0.9997864319650667,0.9997948889550867,0.9996842551503438,0.08122292995646596,2.1805399687200897e-05,0.9923898640482808,0.35637181712755645,1.4706149029443799e-05,0.003363096139499497,0.9996707435206907,0.00011643419939408577,0.000380161300774987,0.00027502178712943224,0.9171333152550591,0.000398652065546487,1.4112137271076099e-06,0.9991401248185675,0.0006232105818475318,2.365089212796769e-06,0.00011208446062600127,1.0081578407769866e-06,5.727674538630279e-06,0.3928863944126136,0.9991493514138163,0.0004426831930319615,0.9997919652431875,6.331830206445798e-05,0.9995758611824559,0.9997566502582984,1.1739677634137165e-09,0.999823161650769,0.9998144081168157,0.9997586667159233,0.00038846237565142144,0.00025545980085498485,0.02898805667548765,0.9999080933309321,0.999912778677156,9.964065764989626e-07,0.999882705140743,1.0692127086377249e-09,0.9998273798622054,8.770320549779707e-07,0.7496954718132366,0.00021364764188179644,0.0008706845226797871,0.9998061844130615,0.999652777499493,0.9997854577203303,0.00033831093843059693,0.18008306613887648,0.8216923256667111,0.9988582294437681,1.1753252406269538e-05,0.99955905728551,0.9995220234144423 -fruit,rgb,0.9999886269483581,1.805061093211396e-18,9.27956708268691e-05,5.972424983991391e-56,1.0250170184787065e-08,0.9999999980686474,0.9927148441327228,0.9999999999961617,0.999999999996662,0.9999999999990499,0.9875418020047975,0.043298476140216376,0.20751771486748108,1.3400620484270052e-19,1.4139338147485511e-61,1.6582762300260494e-05,0.9999988997646477,0.9999974581144772,0.9999993921404955,0.9999999996217588,0.9999999985506953,0.9999999929687025,0.9999999992085442,0.9999976465031585,0.999553344619827,0.9365590133279224,0.9994320829295293,0.9998414230353281,0.00039297040143767555,4.6041884454021525e-18,0.9999999980725189,9.518207806422005e-07,0.9999999991197233,0.9999999999999418,1.7069814447833144e-52,3.273990567228692e-05,0.9999999983155079,0.9999999991790371,0.9999999820304762,0.9999999996701552,9.913657226323813e-53,5.4927473861857436e-14,0.9999999980799794,7.725595513629419e-21,0.13059768046754935,0.0001265917292706844,8.717377234730917e-07,0.00010240661994809437,0.3223609572181188,0.9999999999994793,0.9999999983543277,4.071028183228509e-53,0.9999999999981071,0.9999999997231568,0.005321764401804692,0.9999999993046995,0.15111734404552019,0.1019767024651706,0.07271829134092792,0.5480054325571986,0.9888876564707874,0.9999999994461886,1.960438674439405e-06,3.3391089773288263e-13,1.5291390841540116e-17,0.9999999454106742,0.9993217379123697,0.9999999999987093,0.9999999999969513,0.9999999999961284,0.9999999995507081,2.266182287469409e-53,1.3233192963829116e-51,0.9999999999990583,1.1023234293406297e-13,4.785236152554806e-13,0.9816510998548592,0.9999998116424083,0.9999999853322827,0.08831035828316516,0.9998484126557615,0.32690792021656506,0.9999999999997347,0.09232494673188174,0.9999999999962652,0.9999999999994582,0.00015133494732645273,0.9999999977169607,0.9999999313262293,0.9998794019038589,0.9999999999967799,3.048330745726718e-07,0.16365810035133502,0.02877246010794869,0.07252802124647859,0.07423486219939969,0.0011279228329971747,0.09230495661642504,0.2666321704774921,0.1485106045991114,0.16661262995671253,0.9975655451451932,0.9999999997353743,6.4598124855981995e-55,0.0710985903695979,0.9999999977316778,0.2993808663392351,0.9999984781359116,0.33094675264192575,0.9999999998231497,0.9989639637700531,9.186227594160168e-54,7.394398596643435e-58,0.012333689809897273,0.8198524792409679,0.9617579205333112,0.9999999999998537,0.9956337284208913,0.03419237006412893,0.014401825798375447,8.337544070540977e-07,0.9368203505480776,0.999999999999249,1.9403609840241932e-51,0.038368837878811096,0.9999998505274156,0.8972508093356463,0.9999999999998177,0.9999999999986615,0.9999999999999556,0.9999999719804357,0.9999999999999574,0.999999997897516,0.9999999999989897,0.9999999999998763,0.9999999552878518,0.9999997621431911,0.999999554480665,0.9999999999991378,1.4573512463106221e-18,1.1372930521258681e-51,5.7571167029898086e-05,0.9999999996292561,1.1507438626928262e-49,0.9999999998469895,0.9999999976394431,0.9999999151988673,0.9999999774103258,0.9970600111257312,0.9999997117647237,4.851115072164146e-51,0.9999999999994866,0.00014741457355712715,0.9899136982957717,0.0050036959189225065,0.45459345360011066,0.09472969782764032,0.9348256075849931,0.7805505262737792,0.9999999438806646,0.8268770730222615,0.9999999056577662,3.321760755406401e-06,0.9960724001708446,0.9988170123204205,0.9997288786326095,0.9997987653247693,0.2537760611108419,0.6075928343524423,1.396119034099472e-54,0.9999999999991547,0.9999999983566037,0.9999999999998268,5.988157008258518e-06,0.9999999999987126,0.9920389668853964,2.4302838835528247e-07,1.0923398219469728e-58,0.9166885249055505,0.9668934752375412,0.9925872893776089,5.481692890066042e-06,3.939423613934007e-52,0.9999999992755513,0.9999999977315039,0.05602695689328343,1.9205780552720168e-44,7.216645125823519e-17,0.5994038783832287,0.11339296612972116,0.991616026392928,0.999999999999962,0.9999774145169938,0.999999995474746,0.9999999999999347,0.3255288999911568,0.9999999999998639,0.25841059568472585,0.9999999988773614,0.99999999981332,9.00975534611687e-51,0.9999999999995894,0.9999687080197452,0.9997570886300576,0.9910813614840537,0.9999999997835725,0.0060295947247033955,1.3258025937759807e-52,6.999632073464745e-61,0.999864647700427,0.9999999999999598,0.9999999997219704,0.9995224295265795,0.2336462867057035,0.9999347045745838,0.7128141631388702,0.02356432940839543,4.132517350897408e-07,0.00011179759102851084,1.2580407308364035e-07,8.322142136995675e-08,5.395947650278359e-50,0.9999999996325768,9.969709768639832e-13,0.999997273485454,0.9999952224851077,1.870279651836579e-18,0.9999993947852494,3.959812926799175e-07,8.708533147614862e-07,6.379795386053171e-56,0.9999999999998985,3.851908530795528e-51,0.9999999997648676,8.38014791206571e-07,0.035936447456497954,0.005188155144001232,6.563322156352154e-19,0.9999999999999472,0.9999999999997802,0.999999999643514,8.793031828346058e-51,0.9993251170767676,0.9969148050985907 -green,rgb,1.357421414242505e-09,0.9877065411372781,0.9976064163802457,0.007400032180198813,0.9962824253739767,0.14372595034996383,2.38522267228685e-09,0.0021560194705423806,0.005267714206378807,0.004395248921363983,0.9983812493458653,0.9985007946070183,0.9984601368282793,0.9882734625070977,0.001616890136636202,1.353270996023978e-13,0.9654666292505656,0.9754398817415584,0.9643375599360543,0.9812406470115866,0.8530805965877625,0.05723236012175302,0.11776185926331867,0.013980987597572223,0.9325264602244715,0.8704477117283803,8.053504105835772e-11,0.9355621423723175,4.3558681848460215e-13,0.9979352179118393,0.14657821674809726,0.9979662169373003,0.16174233340296065,0.002830582828735691,0.15671487209730364,2.1490658416553573e-13,0.9882735864157901,0.30505817766769205,0.7547510623055402,0.34011416879891804,0.030120988456186933,0.9990490797969322,0.1802927867900256,0.9975208490945776,4.606149628407793e-11,0.9988797446325008,0.9982246786344572,0.9975880768503596,4.80164030104302e-11,0.43808783282516606,0.1405643049298987,0.025309433870255468,0.0036754875225921573,0.18867277107609665,4.3855583321919715e-12,0.3219652728742246,0.999242965686779,0.9993489736392557,0.9985218787209565,0.998441596750446,0.9983239850989182,0.7737682024017627,2.944342575720066e-14,0.999255861547141,0.9984418961331183,0.007030753533592539,0.6287705829456408,0.002831121946884559,0.0023711935992771203,0.004431885026768709,0.18106653269587064,0.01888850724557418,0.04302138013759116,0.0021782465700795413,0.9837790696311768,0.9990959242052911,0.7867704881763081,0.011987449850008557,0.04824018841544343,0.9994007803772869,1.837652516803173e-10,0.9992329874020573,0.17937371956239512,0.9994573908219957,0.0027305183460800803,0.20367219553682048,3.014698145866061e-13,0.3049095184686316,2.4211958299924856e-08,1.9295500566569733e-10,0.0018961013798466752,6.193294297404417e-15,0.9991017564709055,0.9994302122253954,0.9994332098278604,0.9994577403210536,9.296760475952103e-13,0.9994589550988863,0.9992255982696991,0.9994337600243123,0.9994643505302458,1.3086110867842724e-08,0.3440245011957342,0.012657499132232911,0.9995010064059127,0.14983065773700308,1.3354245253572058e-10,0.018003133307492838,0.9492819498067909,0.3255270332923156,0.8841986581324585,0.018472901555470798,0.004550407109437455,0.9988590184321949,0.9985568484743482,0.9985483052985655,0.005459163482359427,0.998855227680426,0.9984374511355829,0.9948731257695628,0.9978246249679011,0.9989147567153183,0.3868999961943399,0.038693563559778044,0.9989592344084542,0.9750189404525516,0.9989450856753069,0.007287833582961381,0.7587698276449694,0.05588547829502483,0.9938018664704227,0.006677437556500464,0.1344724070736597,0.0022891731750924833,0.0055709223751533804,0.9525174328341425,0.9586997081250876,0.9663372455906973,0.6190343511520306,0.9980278283269051,0.1874204610061986,7.920490014199044e-14,0.17415771315200362,0.07342781744509187,0.9723975366734747,0.9893768282854831,0.9924516106843649,0.03611638905995289,0.6720961601868022,0.0074585668209036626,0.04367861291249827,0.6503031105970086,3.8956219897113824e-13,0.9983765345986075,4.1361530175001065e-12,0.9984877602541914,0.9985837534431563,0.9581684725601018,0.9872363113243646,0.9400626334666309,0.9104570464350757,0.944871660049289,4.1956451996368955e-13,0.9510047564826347,0.9147844167618814,0.8373168018289946,0.9051273329011703,0.9985681102099365,0.9984463563333856,0.014110533187144276,0.7320820261571247,0.14147456167427105,0.39123559016343296,6.338392593375082e-14,0.7886174776420011,2.1821304350210168e-09,4.715887056006059e-15,0.0051346719446448376,0.842867322924531,0.9528882837325348,0.9523148708092974,9.301207257975793e-14,0.17753907573967637,0.12970817454606753,0.1508361508916187,1.239356768054052e-11,0.2826613057183985,0.9878779084679078,0.9984431036906902,0.9985399233673824,0.9983206319901671,0.0045959236888595935,9.031163158379543e-10,0.9910057881337845,0.12255086123944076,3.8533559469614804e-11,0.00878146078702377,0.9988537256797818,0.1561211446571775,0.177402602967124,0.050258926657820724,0.6023103059279867,0.8938834318024017,1.1056525663329142e-10,0.9988725340378994,0.2495539139662668,4.942654499692783e-12,0.026822389140687016,0.0019037984543329408,2.623939092545588e-10,0.03591637743238816,0.23728705428191973,0.9395713112565495,0.9985154282006168,0.7650491390838347,0.9988877354320377,0.9987327235020159,9.169543978315713e-15,0.9983405067987741,0.9976380357428049,0.9980776554289845,0.0666287615212676,0.17574190487273314,0.9993352497280622,0.9774860533464768,0.9796658726004683,0.9877202076961572,0.9749473953757113,8.660005411304068e-15,0.9978252450564531,0.052911941944030635,0.015020437196863393,0.04711501780401803,0.3047784527385653,0.998038284803,0.9989539186540115,0.9986418658373755,0.9981448484971677,0.06405914976088524,0.46214108741923554,0.11509826860543321,0.24248873965569961,0.998145414968073,0.9984747828856171 -half,rgb,0.9881421117694708,0.9859172912647934,0.033528938126342105,0.9999994132357709,0.08977272656256703,0.2624395659497656,0.9862041824748854,0.3828985588240726,0.29735996004931103,0.2489611946250063,0.009805402388735257,0.018102142539454382,0.015446975623591866,0.9890121732239615,0.9999999403570432,0.9999551547754131,0.006587675776908581,0.0065470125317916026,0.006382506556398922,0.007216987239226897,0.006302730157488939,0.02504837692839013,0.25017120495719264,0.05806255250664325,0.23948245342621347,0.021636127399185568,0.9976731795813923,0.20580205938340332,0.9999050107583701,0.9402417358667609,0.2602845611377887,0.053558910945957626,0.22277228502879307,0.13087740386236701,0.9999979344292294,0.9999406978987332,0.006289464774599727,0.012038931007600907,0.11229818926093724,0.1282376767483434,0.9999978332140881,0.745688866909979,0.2383304027837905,0.971372146505779,0.9985702680459452,0.032271869388657955,0.05383907123633195,0.03320821515910773,0.9984711811530846,0.024225789941643285,0.2589053655125562,0.9999981457195546,0.29793443590012314,0.17287521762917177,0.9996342296522263,0.15074756288917346,0.05438948314199631,0.049290972455508765,0.01722351859872058,0.013533956970954204,0.009692300814331506,0.0068328282284274506,0.9999822552449746,0.6532226607398565,0.9150080853040006,0.05799574706541067,0.020795135179180795,0.2984768283867963,0.36127574138247537,0.3196229475604669,0.19071784260048882,0.9999983370645038,0.9999966061728989,0.30163920178699827,0.9592233140564645,0.6893866612919668,0.022425722639565333,0.05201088625729649,0.027711535455836385,0.04548735595449536,0.9962344990716995,0.046918013508375496,0.013755784150709929,0.03859506579331612,0.3601910510264158,0.012555934512742357,0.9999248357809262,0.012674298338011963,0.9443720956319267,0.9961365785557146,0.3842656711895839,0.9999931845765723,0.06353122456988194,0.05186121359041869,0.043584316904127285,0.04037312476630405,0.9998505363210843,0.03839125149712275,0.049711687398679955,0.03745902890580788,0.03245711764660618,0.9674702237313165,0.12244894211658852,0.9999991025160432,0.033860314906231065,0.2639227479188475,0.9974293561621017,0.05183466522906891,0.023290803061227574,0.11816361556915063,0.014640770337445293,0.9999985733525175,0.9999997276900556,0.020650790935465818,0.012216241056383192,0.010749239468729055,0.14941167296919575,0.010066893878633309,0.01850300033114273,0.021704129028981962,0.054464184195400264,0.011744341517799826,0.030842566657827093,0.9999963906097079,0.018745784947336468,0.04113956396338587,0.012235264262087169,0.1445775012622565,0.012784371437779957,0.03303372490335374,0.00900256918240936,0.08588142404909987,0.2726898061226962,0.30172231850309544,0.14115858546522306,0.005794651658116169,0.006196307056984394,0.006196276930852046,0.0179930470595243,0.9440139810811266,0.9999970960766484,0.9999658391349574,0.18833630293042525,0.9999926922523626,0.008510591940495176,0.006437883300801104,0.015362680827185341,0.03139776734234831,0.022321916600587466,0.06272663216901281,0.9999957729614353,0.010399381158369053,0.999913381033387,0.009663649206395975,0.999646295467302,0.013987309566957287,0.01680733993532203,0.3422555983570284,0.23741129085198093,0.006138715299348176,0.4925149870066428,0.006213334587125121,0.9999224984586055,0.26844899566614283,0.29748075675986746,0.33302573148911335,0.25395128994730504,0.01514293177464944,0.013262339102178881,0.9999989730960255,0.009396466669328673,0.2581799954620694,0.01579218710602041,0.9999716312574152,0.00906262279396153,0.9868404295995876,0.9999942375756584,0.9999998045060148,0.5476650734805277,0.33385529908904304,0.28517303801794397,0.9999649198152482,0.9999976324110045,0.23753803071825305,0.26320782707757706,0.9993056644457878,0.9999439685727429,0.9786267023624077,0.01329879510296371,0.01648919437059943,0.009507987413540883,0.07531906911574936,0.9905672832183076,0.006162936851166743,0.026634647304208378,0.9986368570526462,0.12469441392969013,0.015383370290013262,0.23454563000496534,0.1667791535830484,0.9999952882878868,0.010694591485447056,0.2119770407923687,0.997217373289362,0.010412599588848744,0.1434847530105282,0.9996083370254651,0.9999977310905038,0.9999999206867723,0.9953463526969346,0.03360971653376672,0.012705257202676368,0.22949667106051366,0.015262434228612624,0.33574334692273333,0.013219531554310996,0.019301919451487945,0.9999913423158756,0.03245629093841124,0.06680893204989685,0.06925889266356174,0.9999935821994455,0.18727084589808696,0.5973532664344259,0.006482684015031915,0.006617236178454777,0.9858516026187875,0.006003259446495396,0.9999916374040219,0.05421365763837863,0.9999994703396214,0.03449674272784344,0.9999959242210854,0.12956577683484913,0.05421493006807165,0.018848512809618488,0.02222177360930308,0.9448931929630994,0.03618696962188042,0.013450210319692497,0.01683241199347031,0.9999959118877199,0.008085091079812378,0.009078986714168666 -head,rgb,5.297134187512433e-31,3.310575211169594e-08,0.9977882299863379,7.108907181451067e-06,0.9990509487114556,1.4599333104525332e-16,4.3806084767140985e-28,5.796238477936454e-21,8.033209011071768e-20,1.2970211974605552e-19,0.9379510080882162,0.9937525557568627,0.9901854706641133,6.00527266713056e-08,9.692615631035896e-08,1.2092313046741846e-39,0.029734067577443766,0.06702493790081637,0.02199638574724998,2.0697988047683575e-05,9.119002084533268e-05,1.0982760448410242e-08,9.756856205660003e-17,3.5320658090713962e-09,4.1892655101968775e-11,0.09160260284389138,1.5398544731857728e-34,6.275147854050698e-11,1.4996171484626558e-38,0.0004328316574104144,1.5778216963311576e-16,0.9989662863910429,3.1941673003658975e-16,1.8823113192102927e-18,6.868698728664336e-05,4.77280790094118e-39,0.00021034904017359376,3.908777783470157e-07,1.8996746824805485e-12,1.4250864237373852e-14,9.446427700646365e-05,0.010312943737847406,3.628289868785366e-16,0.0006406351600295549,1.696289692836466e-32,0.9981697955249443,0.9990404941649645,0.9977406613827796,9.894535939884594e-33,7.478438289000045e-12,1.425696812790315e-16,6.959737026226664e-05,4.4111702211022175e-20,9.897199749238787e-16,2.056025703878387e-35,7.698108997499599e-15,0.03181568444876624,0.09054913145765495,0.9928499425277074,0.9848653410199476,0.9360966147473391,2.036942570715491e-05,1.1475003936650535e-41,0.04142235247747519,0.0020095034735530034,1.1690800233880122e-10,0.0017562030972514452,2.915588961399028e-20,8.960057258899382e-21,4.390560549418902e-20,6.726124106934402e-16,5.206990421794811e-05,0.00021424674356498445,1.8811868550135733e-20,3.0801573068272045e-09,0.010146913363586358,0.021931201955398452,8.320709969228783e-10,9.966724553361501e-09,0.1687882378688938,1.4659865156726392e-33,0.03703609002091918,1.3380227408608321e-10,0.3816812733105415,1.1414430068173578e-20,4.728533212665786e-10,6.641389875669593e-39,6.68584775370191e-07,4.840789594674617e-28,1.444836689309761e-33,4.640508485842225e-21,7.012020385083023e-44,0.009689473331208313,0.18707216189792925,0.24945004246691646,0.3575074658438354,1.4530504559381936e-37,0.3904925939451971,0.03194208974987486,0.3201986519652255,0.5302221206239351,8.453948837513825e-26,1.676428198855903e-14,1.7282208838348742e-05,0.6630782568856695,1.614444364862844e-16,4.3451585011565086e-31,5.715666495069487e-09,0.5975751811739065,1.514340014405969e-14,0.03772757930632652,4.106205680447755e-05,1.7529444964524846e-06,0.995338680373562,0.9768111436638224,0.9577264388618711,1.7911135980842432e-18,0.8484065867307445,0.9940771969372779,0.989059153775563,0.9989452906021289,0.95526022475586,1.894902208770637e-12,0.00022463107712588257,0.9935561309222832,2.782456011478158e-08,0.9627131241951556,3.007348615171241e-18,1.748254487208075e-09,5.654771952947583e-14,0.0002587249197783612,4.0095481506012315e-17,1.091221980709099e-16,2.019089054017243e-20,2.411871740542138e-18,0.004166384083559617,0.01160109484492605,0.02083002137549984,1.0293925251665873e-10,0.0007468497894784727,0.0001336772753803098,6.025524403151355e-41,6.23698825935022e-16,0.0008276584224456723,2.8759681951091305e-06,0.000247239482917956,1.815792634164257e-05,5.730970922469581e-09,0.004043183775210015,2.8676734281373853e-10,0.0002983367198330919,2.6449618837181235e-09,1.8455713703059418e-38,0.9326467901878096,1.7128472840625163e-35,0.9864242199132225,0.9923105334116975,1.3490471891931376e-10,1.7989479882974342e-08,0.0032477310209165573,4.663484809543142e-12,0.004787882145378607,2.3613688302246193e-37,1.08739699043318e-10,1.292978467399889e-11,1.0177660864764387e-12,1.1485738314078675e-11,0.9894488850048396,0.9837160428572609,2.2233142777228776e-05,8.80042386566011e-09,1.4627328595569121e-16,4.878174988497394e-11,1.173217556821154e-40,1.7413003295097206e-08,3.374329126738697e-28,2.632490315895754e-44,1.0588780658604896e-06,4.500742930747918e-13,9.072714439236791e-11,1.0949340224303092e-10,5.6513070896788294e-40,8.535689059461497e-05,1.4602625046196541e-16,1.6575210875940746e-16,2.3076329137891128e-34,0.02603745237473131,2.2756412379175458e-08,0.9838847542758996,0.9918984560950156,0.9286883814007353,8.399775761878041e-17,1.8783668653573998e-31,0.000603077247235536,4.237052430078453e-13,4.336154789771994e-33,7.554335724108681e-18,0.9887096259161496,2.5102950198769036e-16,9.191970240379543e-16,0.0003716462238855333,1.717544837292106e-09,1.0557132774095974e-11,2.619323020906299e-34,0.8928143921196146,3.76586790646833e-15,2.985652222844258e-35,9.657173844905827e-05,1.6663690662168834e-07,5.9073412744478914e-33,4.105428138435904e-14,9.843651429554508e-08,6.596702471287311e-11,0.9897785855213361,2.4521687606655166e-13,0.9781953973364567,0.9946400320837688,2.8829573356772974e-43,0.9981070944082394,0.9991141347373415,0.9992409122310025,0.0006577001501699099,6.498359708967363e-16,0.07710924508287102,0.07694658177234687,0.1079995658749595,3.3132919363881424e-08,0.03561725258468953,2.3457621713751974e-43,0.9989397005938667,5.76979361325329e-06,6.03180788342799e-14,0.00029218864549975594,9.450367016625982e-15,0.9990010263786183,0.9936862601281328,0.9962288679528507,0.0013486121131434593,3.670345044957239e-14,1.8832394861152075e-10,1.4872281285038163e-08,0.00023775070226716123,0.809005915168013,0.884321631285992 -in,rgb,1.0,0.9971939280697873,0.9999980595104502,1.0,0.9999999968059332,0.9968325476172764,1.0,0.9999999982206924,0.9999999722108271,0.999999992832131,0.9440530303379306,0.9992403532404891,0.9982149868947972,0.9990868629093023,1.0,1.0,0.9999972393029131,0.9999923041090483,0.9999962258336488,0.13105861743909092,0.9999993580203232,0.9999999999999971,0.998495440570494,1.0,0.011429262563207032,0.9999999999967375,1.0,0.00988259284409261,1.0,0.9935422485344133,0.9966432330646253,0.9999993821265573,0.9960739116283727,0.9999999999564222,1.0,1.0,0.13633185747383653,0.999999999973068,0.2121214483595907,0.9658201914374165,1.0,0.739053554764949,0.993748359137874,0.9997946012790344,1.0,0.9997791561867901,0.9999986788549785,0.9999980520468486,1.0,0.9976552433786997,0.9971120947630944,1.0,0.9999999935456063,0.9950936613558776,1.0,0.9667718055950845,0.0006429040573570511,0.00099671596619835,0.9988620355734823,0.9957627472114499,0.9516250726271372,0.9999998392289086,1.0,0.6436324542577765,0.9905909193708895,1.0,0.9999999999998086,0.9999999978270351,0.9999999978813228,0.9999999824167248,0.9951764954605622,1.0,1.0,0.9999999992667525,0.856003689662491,0.5196642658045121,0.9999999999994242,1.0,0.9999999999999991,0.0013927691735656335,1.0,0.0006285234062404612,0.9999999697166349,0.002612693951181792,0.9999999962610511,0.9999999842264335,1.0,0.9999999999892148,1.0,1.0,0.9999999989390806,1.0,0.0004639463015959493,0.001635666549079839,0.0018276940881463602,0.0024721819229333052,1.0,0.0026769809593027894,0.0006087275739349136,0.0021553834190661952,0.003963972879672295,1.0,0.9662362605471289,1.0,0.006272309817381038,0.9963218964591676,1.0,1.0,0.9999999999608555,0.9747388600087116,0.9999999999274254,1.0,1.0,0.9978517311115563,0.9835055818894892,0.9489484638605817,0.9999999975947271,0.3017169510880206,0.9994892473098361,0.9999996044038597,0.9999996045048224,0.7581515542458818,0.997350484719818,1.0,0.9921927318605881,0.002692495594491953,0.7910698575571151,0.9999999920125507,0.9753668180222783,0.9999999092792493,0.0072741231578275865,0.9999999996500006,0.9973628016312694,0.9999999990891886,0.9999999979580969,0.9999918229000554,0.999996068217055,0.9999935532699341,0.9892070844137055,0.9966635892427042,1.0,1.0,0.9958893014850999,1.0,0.13079505382057363,0.09952295224087396,0.001680453237844935,0.9999999999999998,0.9999999999998375,1.0,1.0,0.9992847631564249,1.0,0.9359745740250823,1.0,0.9959348283969955,0.9982326992581443,0.0073987038826057346,0.0012891539531837979,0.9999978831437764,0.03691226857103067,0.9999979449819212,1.0,0.0073114924154177785,0.019499920046271216,0.07153598367144698,0.02172902727748827,0.996671431012504,0.9949553399615869,1.0,0.9981797505112641,0.99705701763644,0.9998918327645749,1.0,0.9946272278151742,1.0,1.0,1.0,0.10900501213677928,0.008462692716898907,0.00737523647547435,1.0,1.0,0.9980368332078883,0.9962477822504193,1.0,1.0,0.9865382508703228,0.9951298549405637,0.9983637673127634,0.9413174994124192,0.9999999999860107,1.0,0.1125673177597856,0.9999980604238455,1.0,0.9999999899861564,0.9850996835576488,0.9963068988415695,0.9963030203153826,1.0,0.9996626646417323,0.02555529979108387,1.0,0.43212802810698453,0.9889250230581927,1.0,1.0,1.0,1.0,0.999999993025716,0.9999999999801483,0.009268295884358974,0.997531121696748,0.1570043489534105,0.935016352649216,0.9984422450880001,1.0,0.9999821115892218,0.9999998889567713,0.9999996908867509,1.0,0.9957834356348957,0.5779784301614296,0.9999887629937608,0.9999878829430252,0.9971475871549665,0.9999780850610668,1.0,0.999999596358983,1.0,0.9999999999886409,1.0,0.978266853396399,0.9999992782758391,0.9927580125768265,0.9995701527386538,0.9980083071965735,0.9999996409822044,0.9998631905184111,0.9999999999993847,1.0,0.8013298687080671,0.7785890356091024 -its,rgb,1.1981698639303696e-20,0.05708517360635406,0.9999999955077965,0.9814451823563438,0.9999999980660907,5.649480532286508e-09,5.8259870436162996e-18,1.1966524426115448e-12,1.1575337820168236e-11,1.9332587168817437e-11,0.9999998881659219,0.9999999870361598,0.9999999804431455,0.09342847054748525,0.5423217939919325,6.501856064182977e-28,0.9999830844788092,0.9999917033499381,0.9999776071646923,0.9811593055280948,0.9973165364917028,0.18259300585261914,4.116506802765183e-09,0.09523577650811565,0.0002520798126736763,0.9999958583822602,1.0432161862833873e-23,0.0003686228218677899,5.410617934127093e-27,0.9968340758047911,6.0464924372546645e-09,0.9999999976399077,1.1548549379209176e-08,2.8208102055278647e-10,0.9953326882989127,2.1408730636261926e-27,0.9975803914324589,0.8029787033234576,2.1358993577552492e-05,3.3436936680435734e-07,0.9978110321194182,0.9998257313700981,1.2520788922917367e-08,0.9978033794696549,9.727923849632255e-22,0.9999999954487129,0.9999999977211838,0.9999999954286123,5.821273828790578e-22,0.00012223724990131628,5.567992649542639e-09,0.997186044603468,7.220829743868965e-12,3.256722357023983e-08,2.9277021389246056e-24,1.8898008838404862e-07,0.999951310187747,0.9999822858692266,0.9999999852631014,0.9999999707981744,0.9999998859150582,0.9904105001672209,1.1298642101228576e-29,0.9999526950191432,0.9992162070044692,0.005062678305633665,0.9998689044336189,5.228133303075018e-12,1.7699776078728425e-12,6.807733270955696e-12,2.276099060495495e-08,0.9965526948920944,0.9989172812563115,3.6984079085480176e-12,0.00741454125043918,0.9998239056369324,0.9999853414805976,0.02753662236287416,0.17496605791170133,0.999990796863776,7.264583937924889e-23,0.9999585668938744,0.002641303555601999,0.999996720285068,2.1445962395625993e-12,0.008324585229621822,2.7207767438838113e-27,0.8706694032906537,3.885161559579239e-18,7.088957754662536e-23,1.0027786434627065e-12,1.3063912880808458e-31,0.9998527393405148,0.9999916390124659,0.9999941449214771,0.9999963723543214,3.889254261684174e-26,0.9999968318084552,0.9999520710118946,0.9999958241118675,0.9999981564065827,5.644040673008402e-16,3.8917936917998787e-07,0.990924746010649,0.9999988842878151,6.130526872364131e-09,1.6281324702298653e-20,0.13513416317307575,0.9999995696524426,3.6219271615800594e-07,0.9999898548203492,0.995675665991842,0.9385708688899066,0.9999999893715671,0.9999999554597805,0.9999999209465256,2.2525155821385882e-10,0.9999996882571803,0.9999999877869813,0.9999999837037981,0.9999999976331453,0.9999999094392606,3.4894825338680356e-05,0.9989971625044317,0.9999999853116512,0.09047527019313174,0.9999999235095435,3.414047735222279e-10,0.014895973023509765,2.3341923567452563e-06,0.9975981340994747,4.148254716759891e-09,4.366855444351148e-09,3.90294493305466e-12,2.977548556540703e-10,0.9998996486343137,0.9999603632137041,0.9999760859304326,0.0012169231474206017,0.9980723407692039,0.997416016619782,4.358008221304008e-29,2.1479129445435183e-08,0.9996659840608603,0.8989772974541971,0.9978642150371371,0.9719442347952167,0.1189248486675062,0.9999370343059412,0.011463152337936117,0.9992148710748529,0.02522220671925702,6.727794426471316e-27,0.9999998787516171,2.497228693432888e-24,0.9999999734161409,0.9999999840632192,0.0006444644244979325,0.04651830359153896,0.9998803220341334,3.214717470587972e-05,0.9999150870062463,7.213485178157351e-26,0.0005613618841623945,8.729205138680076e-05,9.53246853576216e-06,8.161337594627793e-05,0.9999999786851499,0.999999968698771,0.9926862401832008,0.06817648334887148,5.694437298323049e-09,0.0007706280920829369,8.532622336006374e-29,0.1140418925582423,4.647834522655553e-18,5.511496686608269e-32,0.9002383424114898,4.1348869258361536e-06,0.0004592110097966795,0.0005579242970031675,3.442805319754017e-28,0.9960790567349912,5.874763529178208e-09,6.273184475326404e-09,2.2768734897522874e-23,0.9999832061464072,0.041748238879418004,0.999999969020022,0.9999999834050792,0.9999998727866788,9.240385198344505e-09,4.938396976345444e-21,0.9990384651113026,1.2650667866240872e-05,2.812459829465054e-22,7.826701934626153e-10,0.9999999759118604,9.265655340432743e-09,3.1055624033890565e-08,0.9993416242634071,0.017807877483314735,7.901183209367815e-05,1.6044394276562445e-23,0.9999997842523093,1.0601350500446043e-07,4.051498935166077e-24,0.9979262762491742,0.658382958603425,2.4954679725562916e-22,1.9414877938663564e-06,0.5478317546578036,0.00037628181844726006,0.9999999794985279,2.8058120401013614e-06,0.9999999549011782,0.9999999882443525,4.538970747584326e-31,0.9999999957492658,0.9999999980059096,0.9999999981780245,0.9995928327467499,2.227255857833814e-08,0.99997421676734,0.9999926256523632,0.9999946626622195,0.057127599804762036,0.999984650902719,3.7849986310050495e-31,0.9999999976219038,0.9627155998598182,3.496410445975306e-06,0.9991810622221043,2.3658744455067914e-07,0.9999999976915881,0.9999999856062729,0.9999999916389689,0.9988756250067842,1.4886320784370763e-06,0.002572718994483895,0.200681481409613,0.9983997948862424,0.9999996469053348,0.9999997854144896 -laying,rgb,3.1131752477644247e-33,0.011648029758733828,0.432630156081252,4.8896747728774795e-30,0.008668818208741366,0.0004711360452347931,3.6135227788391346e-34,1.5140580808515516e-09,2.2596746532291908e-08,1.127683905078997e-08,0.9980193195388627,0.9758543245578635,0.9853810565489335,0.005891118544932003,2.123069522091103e-33,7.082934026192085e-49,0.11560414184498338,0.2477364384370671,0.13053063431843193,0.9971449199229583,0.010173980231372531,1.2579513787449306e-09,0.0002615527176191594,1.0020107638812173e-12,0.9353067083109937,1.1811757874084401e-05,2.538504563036304e-37,0.9502759822530982,7.417079344622367e-47,0.31680291742953676,0.000502424156321691,0.2663747256188577,0.0007281307745646556,9.939504182269184e-10,1.1956336845435201e-23,3.2818144667750035e-48,0.9985039987201615,2.078362180141274e-06,0.510405224001585,0.011264989035946565,4.173643923870688e-27,0.9675041174454438,0.0010003301746592144,0.036671259506293435,2.924340256640543e-40,0.9519182339239329,0.38161457056784787,0.432730242397664,5.877181034196232e-40,0.018673014092855194,0.0004427134990455235,1.7917921529740605e-27,7.174363944398876e-09,0.0012887986750880155,1.0997692248250218e-43,0.008755727633824421,0.999979227955699,0.9999800849497175,0.9811712149914368,0.991205030905419,0.997794658851866,0.002608534931092395,4.9081146777642255e-51,0.9858290581186033,0.510212257433771,5.801847926425986e-13,5.919388988492215e-07,3.0761658634876498e-09,1.981680569499145e-09,1.3570395935000145e-08,0.0010988776204719874,4.904000052030103e-28,2.63766585296187e-26,1.306518874494852e-09,0.1264564945490686,0.984304033582454,2.409802385262032e-06,1.8028928839825423e-12,5.072567219799562e-10,0.9999800416800826,4.3828994144514923e-36,0.9999814697239302,2.5929580831444348e-05,0.9999787751956437,3.1082258789064027e-09,2.4319267874794302e-05,1.7496512738403037e-47,1.273025158439636e-06,1.1786309200238254e-28,5.748112115871827e-36,1.0039664390378236e-09,3.8294726615158785e-53,0.9999754287078058,0.9999773956955156,0.9999793559172964,0.9999786104295357,8.943653996507528e-46,0.9999786824258954,0.9999806762919818,0.9999801696583662,0.9999776111399642,6.628987697836326e-32,0.011889311144116553,5.96773311194715e-29,0.9999733014554111,0.0005341365803782208,8.471951670404232e-39,2.70271644841696e-12,0.00012710231137024624,0.009617738594805178,8.543060928456802e-05,3.984399080679469e-28,3.90451416078893e-31,0.9882482723544598,0.9961994340383539,0.9980405920941752,1.384461589335707e-08,0.9997782000049654,0.9688704387189608,0.16566912013294005,0.20988127012068292,0.9993794558066283,0.01285550167182111,1.7607013616182556e-26,0.9947951406635696,0.9978354501890887,0.9993205275384042,3.6275083838259687e-08,0.34337072301466304,4.787088390421038e-06,0.9997961353822076,1.099492699611356e-08,0.0003775167813882976,1.5411643002790548e-09,1.376580418784507e-08,0.14237864053353053,0.1156677730603317,0.17657285663824285,0.10843307833592339,0.2510803930012597,3.5367179329883524e-23,3.6838471060858226e-49,0.0009717266596212924,4.7983930502529845e-25,0.9948444950593469,0.9988638576592803,0.9998110102952681,1.6014696200729338e-10,6.479667815590855e-07,3.3549472261922684e-13,3.32455632026496e-26,0.054056113876004445,3.3034190000264496e-47,0.9981681352833538,9.146304840464568e-44,0.9911150431763642,0.985791742053901,0.9569798670426763,0.9969675269963094,0.0575843707377803,0.7029563974042792,0.062151981826414446,5.80417417808983e-48,0.9600031568805532,0.8676079502472569,0.5545161196331966,0.8644101678299265,0.9902356445028911,0.9920777543430783,1.0294020360335187e-28,0.13364402251044888,0.00045214378811613644,0.0046299234613833805,6.083729159650977e-50,0.28107160068794856,2.7134120241753647e-34,1.7469481918736703e-53,5.210124753087971e-31,0.346538750636255,0.948677798695131,0.9586666928205753,1.5260194734994852e-49,2.5229711680525162e-23,0.0003578811331523936,0.0005459906728810352,5.7373600334017727e-42,1.780858257784098e-21,0.034731745590907775,0.9919030840279714,0.9849376154291186,0.9980291800152754,1.6153204586623209e-09,7.30644928638075e-34,0.9990362399510003,7.05078764835064e-05,3.3208959633091094e-40,5.767921092907446e-08,0.9963627680067577,0.0006389015646769441,0.0010597212001268218,6.579017452607949e-26,0.029422650047979452,0.8584901132922778,9.568693512556642e-37,0.9997047721691473,0.0034781914103734902,1.6021384465546373e-43,2.6534201557109154e-27,4.936787752200453e-33,1.1118730383932808e-35,7.738631475227163e-07,1.141886477171225e-06,0.950596879439095,0.9881447964269173,0.31736208173962144,0.9985212378602591,0.9852525894405829,1.1777384368207597e-52,0.7825027986189104,0.09858131480112874,0.1831413543065181,2.8314675783210847e-25,0.0010021494451937986,0.9909311636401801,0.3075247436291904,0.33910932167489355,0.011798654268887212,0.3649118457973792,1.000417690124622e-52,0.21222417724479906,3.1252379042359756e-26,1.123580048045e-08,4.4642412181808525e-26,0.007361633260193682,0.2882753980859287,0.9945433740184347,0.9669757334480493,0.21631586840088518,1.0399230209144282e-05,0.00826579110369864,5.936508567412384e-08,1.8249021453002456e-22,0.9990058608781878,0.9991940830414111 -lemon,rgb,0.3309014467519738,4.071949817233347e-05,6.169919103045772e-11,1.5480415528958726e-30,4.0816580413747853e-13,0.9999993392012588,0.00011407669714410047,0.9999998951688144,0.9999998117313807,0.9999996258558356,6.691388169348805e-07,5.177368835150204e-09,1.4109849715485961e-08,1.0354604129497802e-05,6.878912108493335e-32,7.199922579802535e-05,3.4173088779653476e-06,2.5513619802299034e-06,5.389861843174499e-06,0.5591555453163186,0.0003277009673402136,2.86032858138871e-05,0.999999411225752,3.279470031524231e-07,0.9995867151480112,5.466377994253435e-10,0.4778394055414364,0.9995764256051878,0.00024591589042191874,1.0461193131483996e-07,0.999999320692659,9.677340180169303e-12,0.9999991078592138,0.9999871480294839,8.98222383552188e-27,6.287989691142372e-05,0.1619636256304146,0.0001934655535592981,0.9999692901326709,0.9999961063167285,3.659577659590945e-29,3.691550659859095e-07,0.9999990836405906,5.585428742925191e-09,4.210818382694588e-05,4.462199606446074e-10,1.2579041551649034e-11,6.384816841586826e-11,0.0001273342426694535,0.9997150190413465,0.9999993426677618,2.436009143289066e-29,0.9999997880518511,0.9999985761575222,6.359001760224532e-05,0.9999970384610555,0.0012103479443996792,0.00043159286574883185,7.484850299148276e-09,3.668540945061382e-08,6.533541800580893e-07,0.0005985652226455005,0.0001356707964697319,2.3508878115321163e-07,5.350732568674112e-08,8.577547909207596e-06,5.934411354410045e-09,0.9999997614477493,0.9999998743724248,0.9999998441133383,0.9999987977324315,1.25256093674652e-29,8.554666224426736e-29,0.9999997328974662,0.009007628803951671,8.403908466070262e-07,9.134158622912232e-10,2.556485596311281e-06,1.5535864320708757e-05,0.00022251509514924393,0.48356920430388456,0.001317301633633959,0.8066703850118451,7.973600984725532e-05,0.999999879689321,0.5375549385090497,0.0001736519395933094,7.476401538574199e-05,0.6844327666898643,0.5391174943221573,0.9999998909265541,0.0004262879989174698,0.0032480186063567756,0.000153504548801256,0.00013569164105657502,8.397814895816393e-05,0.0001887450972543292,7.69098472450442e-05,0.0014072983223884024,0.00011511023682754376,4.974589536038437e-05,3.5189461496102494e-05,0.9999957958809623,5.037761686611999e-30,2.3360126090193404e-05,0.9999993168579848,2.3818101141919677e-05,4.320811260661364e-07,1.36780536239129e-10,0.9999958525995064,8.579389100107276e-09,1.1817739873466264e-29,5.454691003454275e-31,5.2542243479198085e-09,1.1396051594174277e-07,3.944814622782726e-07,0.9999974167305499,7.847478153892018e-06,4.0172716577253436e-09,2.342848957569158e-10,7.893981687382025e-12,8.070583781176671e-07,0.9998872508327794,6.694248371187148e-29,1.4233072286393374e-08,0.9956119075765071,5.928120044349925e-07,0.9999977198827448,0.9949384242694852,0.9994770519617545,0.27543827888334227,0.9999599321750902,0.9999994047345315,0.9999997414863773,0.9999967020506694,3.8393434790466736e-05,1.016524660857057e-05,7.473182757753758e-06,0.9990315767613103,4.3771258292770504e-08,1.3281321394146215e-26,0.0008321104386068901,0.9999988181706704,3.2607721448360875e-28,0.8527743383969272,0.1595648280923731,0.7841175613718352,1.1344815232929637e-05,2.385322595858335e-09,2.099776062267225e-06,8.990270558915488e-29,0.9741013053261277,0.00010451789834590827,7.861886290463893e-07,6.585373876865611e-05,3.1201772072046634e-08,1.0041405330461704e-08,0.9980916945383401,0.968061444857491,2.4341625368781824e-05,0.9995271214749861,1.6736669369021773e-05,1.9634822016855047e-06,0.9990286642594424,0.9997210377179687,0.9999328281502549,0.9998046038902773,2.039588657306686e-08,4.354742579308236e-08,6.423933251430174e-30,0.9576194664914135,0.9999993366480574,0.9968065382654786,0.00010197004836985626,0.9545232026663982,0.00011814015576187373,0.0005960127145771485,7.722259240443055e-31,0.9998647078501015,0.9986447365544703,0.9988996211092644,4.46577130092304e-05,1.3588712015876915e-26,0.9999993194984244,0.9999993104158132,0.00013505733824645876,1.807460014042209e-26,0.00020431131759152227,4.23100754234031e-08,1.0442526438422524e-08,8.148578619651249e-07,0.9997372843166945,0.30659954382737964,0.07935036815103738,0.9994082864579007,0.00018461791140594606,0.9999963150994059,4.1320375462310476e-08,0.9999991880904116,0.99999857511911,1.259911560980722e-28,0.9743741877353581,0.9998587921998597,0.6037054926763741,4.101597056512274e-06,0.999997615505341,5.91841857444824e-05,2.799219733986533e-29,9.302678099767114e-32,0.33312180445057243,0.9987465405274467,0.0005311695261689084,0.9994790302899713,1.7177070264596124e-08,0.9999713585941831,1.809831850127378e-07,5.672928388733281e-09,0.0002603575715966801,1.5019772049092659e-10,2.8615894971475123e-12,3.72048582674464e-12,2.5415298006958523e-28,0.9999987997868519,2.058532370051082e-07,2.6803580285519546e-06,1.935965901737606e-06,4.125320719124997e-05,8.229100777795775e-06,0.00027996716005471855,8.056621168438428e-12,5.377012192598938e-28,0.9697157597042934,1.069813103847703e-28,0.9999966198645038,9.879540438939991e-12,1.3413777001684241e-08,1.9270887310800333e-09,2.0165440402490003e-08,0.9997787273787383,0.992430815012404,0.00041147506389053263,3.1170078761203035e-26,5.072585895002553e-06,2.721712777284802e-06 -like,rgb,0.9999638245834227,0.9999999677473314,0.00010775117501030752,0.9999999998245255,0.00033303225935963363,0.9994555818383202,0.9991681038815505,0.9996284636673813,0.9990488085309527,0.9973156764043344,8.223270142131625e-05,9.677852867138727e-05,8.447233003219745e-05,0.9999999756693528,0.9999999999987914,0.9999999968547846,1.1573950618878522e-05,1.1957756308268468e-05,1.2180748732913679e-05,0.0017700910939968326,2.524393907778181e-05,9.044117081490226e-05,0.9993016000923268,0.00013215208948810144,0.998917532658093,1.0128609928907688e-05,0.9999991966376743,0.9981042877363627,0.9999999887925187,0.999990352257336,0.9994376004317811,0.0002556849425182047,0.9989246783899061,0.8968879784555056,0.9999999999153801,0.999999993862088,0.0007512143675855777,4.6534739671778314e-05,0.9878171267155709,0.9916947406801251,0.999999998540674,0.9993769939531015,0.9992080730328027,0.9999969701822214,0.9999919758756107,0.00026709558694614334,0.00030227818016747914,0.00010554950395680352,0.9999934810576021,0.14433214227594401,0.999419914991548,0.9999999988499888,0.9988486676258232,0.9970463548842668,0.9999996513986712,0.9954853696528203,0.21982958524281515,0.13381403388580476,9.543208567783529e-05,7.907711769281391e-05,7.759443958856323e-05,3.143457711457789e-05,0.9999999996805038,0.99759098376517,0.9999670212913272,0.00030468835154598813,1.1348589341217733e-05,0.9986652003788409,0.9995013587095047,0.9992935893573502,0.9979997251775292,0.9999999987999826,0.9999999965407083,0.9985103413612072,0.9999998635168534,0.9989625751382053,1.0395428039301416e-05,0.0001797241326195641,9.165358539890304e-05,0.09016385138136264,0.9999976950448239,0.154316253890389,0.0016756507143920523,0.041780809897547073,0.9995318008735435,0.0008745426453902167,0.9999999925408295,3.888203761459852e-05,0.9993355115950328,0.9999977480569013,0.9996082337975986,0.9999999999747724,0.3754281873290087,0.11778349509904218,0.06964232301596311,0.04851729728233853,0.9999999664317101,0.04069015074083194,0.18195408855708062,0.0425237951434953,0.0214357718109446,0.9921495813913733,0.990123952100607,0.9999999996795559,0.019347476996714026,0.9994728089795595,0.9999652357200595,0.0001143211829295228,1.2179934976254835e-05,0.9885350712262736,8.700067709867238e-06,0.9999999992124478,0.999999999967383,0.00016279589812081362,8.956758383593328e-05,9.423067103691588e-05,0.9697054335998024,0.0002448522716219992,9.287706838338101e-05,3.299355615789589e-05,0.00024357601863171527,0.00017893982195963773,0.3065700687440634,0.9999999952577512,0.00017957234228660335,0.6413843996315787,0.00018374524569163283,0.9713365112103122,0.016359816173776968,0.10179529751010127,0.0036433567893636837,0.6795973338201089,0.9995345923643078,0.9985605394865723,0.9605942406347381,1.5962421849177285e-05,1.3033125628500379e-05,1.283961757213282e-05,0.058285514770624866,0.9999895385970786,0.9999999998168307,0.9999999992431452,0.9978756292089255,0.9999999838083597,0.00412511955275463,0.0008355912314812482,0.03506417247784457,0.0001051260775095472,1.109710899680453e-05,0.0002443611442497314,0.9999999935542094,0.003990628191760208,0.9999999879017146,8.3210911741604e-05,0.9999996799725823,8.353879168413254e-05,0.00010014642429233385,0.9996617785946987,0.9975592018965147,1.4501635740077037e-05,0.9999528274167658,1.3704446245581092e-05,0.999999966081188,0.9991976329795542,0.9995595073548401,0.9997729291934464,0.9992214041501373,9.347270580293757e-05,7.91416561143926e-05,0.9999999995828892,0.0029241147605219868,0.9994134700911117,0.018049182552273876,0.9999999989936883,0.0029316168446434487,0.9992579488268353,0.999999999984587,0.9999999999896805,0.9999790223306194,0.9996462435169515,0.9993526693652425,0.9999999978759542,0.999999999897498,0.9991433630946749,0.999467142072371,0.9999988747879984,0.999999204189139,0.9999999363367468,7.891982984655219e-05,9.461166430435029e-05,7.910846481130039e-05,0.37975870502527237,0.9999772568033439,0.0005994527281780864,0.07588493279064283,0.9999955075687774,0.9494848367425303,0.00013824727095536143,0.9991292895674212,0.9965338055850559,0.9999999926050782,0.003980836479236392,0.998533203315625,0.999999007322949,0.0002171901180641972,0.9942094918642904,0.9999995849523029,0.9999999980661329,0.9999999999976559,0.9999954008972752,0.06704189377251893,6.696105310142315e-05,0.9986867075656889,8.870233590092552e-05,0.9998014848827509,0.0001493206496889499,0.0001303814015370104,0.9999999999488898,0.0001563772280403154,0.0003125350591904689,0.00042004863223241335,0.9999999873860633,0.997830242391935,0.9951580956697164,1.2283410452800457e-05,1.2191382768289767e-05,0.9999999674604707,1.3808534008435868e-05,0.999999999953874,0.00024185339990451452,0.9999999999930445,0.016819163958583905,0.9999999947375178,0.9918066880022536,0.00027174026296708444,0.00017839718734828793,0.00013243303363697816,0.9999872850393066,0.1772904831932951,0.00944271187499312,9.701874222415787e-05,0.999999999677462,8.872942174015269e-05,0.00010968839400845673 -lime,rgb,2.3368947664128248e-35,0.9999999999998606,2.5746556928178324e-15,2.0289351726448763e-12,4.1023331250042205e-16,0.012452564707760792,1.3126301467010705e-39,2.947597252640171e-09,7.97478439544164e-09,2.2890910758832443e-10,1.0571770254652243e-12,1.4522883077950655e-13,1.6442968038881083e-13,0.9999999999998741,1.1291457094339156e-10,1.1323194257232916e-43,1.2512491574463152e-19,4.602417785638101e-19,1.5900441184636598e-19,2.487643135934132e-10,1.9600595785165582e-20,1.5827016187347218e-27,0.0030090901236185567,1.066548478723428e-30,0.9996202289054756,2.6835143511723475e-24,3.787468684162316e-36,0.9988081377886027,1.1171425704209875e-42,0.9999999978109813,0.012437377452811083,1.3642735445850745e-14,0.003694436385408133,8.059274579221582e-16,0.00043523544265941906,1.3450530724474416e-43,7.656696351774681e-11,2.324205180019279e-24,0.08551844872363774,0.0006266972080803875,2.1679952652258077e-11,0.9999990359237036,0.012472559761221092,0.9999999985343138,7.493931781298522e-42,1.3139459153021035e-12,4.00671927733113e-14,2.4243497913054394e-15,2.650678575588598e-41,5.618672035464573e-11,0.009730109833012066,1.500850240565331e-11,1.141514440105568e-09,0.0005480783214437241,1.4402744069014767e-42,0.0022408220378615277,0.22781228742584,0.06838628885764177,1.8197630797722982e-13,2.2692552049657996e-13,7.928268575329578e-13,5.671984678289803e-21,8.633837384014192e-44,0.9999885097863378,0.9999999810466159,2.9777150046087958e-30,5.651621603049487e-26,2.681560136244473e-10,1.939762030087723e-09,9.00708134441978e-09,0.001239365985754367,2.889653020364314e-12,1.9389805506722708e-11,6.886868873631464e-11,0.999999999999347,0.9999983230116295,3.550815391477108e-25,3.6863299478590244e-30,5.727425588927264e-28,0.02419035054333125,8.26091296699763e-36,0.09516518650196677,1.705107665556989e-19,0.0029914423451284284,4.029693725817236e-09,3.373065815943646e-20,5.645032456531048e-43,8.988440752431742e-25,4.734200430450422e-33,1.1959327449399637e-35,1.5306464344647463e-09,1.3838983008735435e-43,0.6075698987284301,0.04749356365830013,0.011982446553087769,0.004459776393884273,1.4435521369842017e-42,0.002779745826634922,0.14356645230828083,0.0032300564598707203,0.00047891190802390275,2.7927296420283488e-39,0.0004258796101053747,7.95575743769286e-12,0.00032664681639137333,0.01593594627993847,1.1471640005645655e-41,2.4302946199859414e-30,1.1057943083955732e-22,0.00021651776431234697,1.4108492582952652e-23,6.920515505485209e-12,8.824970542735078e-12,1.4721223664726645e-12,7.696395085611465e-13,1.6777913684185522e-12,5.711326319089004e-13,2.1202083740349746e-10,9.731760442913657e-14,1.6010718684626878e-17,8.33367914532644e-15,3.5735929108476704e-11,3.9542402074027297e-10,5.198542531340897e-12,4.616836250385921e-12,0.016608622354444203,3.591495754328625e-11,2.205791452819977e-12,1.1926374056532056e-11,5.976091448395651e-16,5.904122836296022e-08,4.626321192734805e-16,0.014057237582688979,9.255474553205942e-11,2.8439410899010324e-13,2.7268708597405467e-19,1.4474254107043622e-19,2.7288775705408282e-19,4.875290717356755e-11,0.999999996431139,0.00020435346649946574,1.5185943843013656e-42,0.000900446727815231,9.902071811170696e-12,8.935620439429687e-10,1.4468048328556272e-10,2.1163434572712424e-05,2.021187907432424e-28,6.895588636000934e-26,1.0314040289251693e-30,4.876876580631524e-12,2.0906096279238382e-14,3.748220522411389e-43,1.174303173540283e-12,1.4260772270443951e-42,2.6617703247014955e-13,2.8384227829921086e-13,0.9999923269528809,0.9999677736250857,6.403587135431257e-20,0.9999991628126293,6.473192844274808e-20,4.9466983375998977e-45,0.9999216489494891,0.999900932601748,0.9998277102691289,0.9995015091258956,3.4093669732344516e-13,2.5288289721996565e-13,7.53550768791846e-12,3.454103298399286e-14,0.00971605409498904,3.6866456948576984e-14,1.0131331445446008e-43,1.1409951678965908e-13,1.2338349424762253e-39,1.8170651545521834e-43,2.6147050310634535e-10,0.9999992254240069,0.9999884524421868,0.9999548537510954,5.008547960800216e-44,0.000627503035686156,0.0026508945869490375,0.01594610811516664,8.26868438237415e-42,5.115560762834925e-12,0.9999999999997295,2.452251638044493e-13,2.247850647780468e-13,9.296503069614128e-13,1.9833160701770746e-18,1.3163176646452576e-35,8.30028731189093e-11,7.731602492266679e-15,3.2869778011115495e-41,8.841601864808995e-13,3.0532512864029934e-12,0.005419093605745934,0.00027851064823757136,7.59026518147481e-12,9.297865849706996e-15,0.996959906617677,1.062546058727517e-35,1.187355580227056e-10,0.00034318702049614325,1.4701450062492886e-42,6.005376856155152e-12,5.318139491276034e-11,4.6668342032499336e-36,2.0238173214384377e-17,2.457946567277896e-24,0.9995720647290021,2.3761554817524977e-13,0.9995217405880932,9.294576104809863e-12,6.001027779462744e-13,9.372423065125416e-44,4.311040223108526e-14,6.207494296538893e-15,3.257460599538466e-14,1.0309457206629524e-11,0.0008868756381810096,0.9999585892094699,7.162626808427238e-19,8.873408517969715e-19,0.9999999999998592,1.1359296628407727e-18,9.918194143938863e-44,8.296860814125688e-15,0.0002944101400298924,3.4257748404887936e-21,1.185140334577645e-11,0.0003693677374524511,1.8378741657721756e-14,4.312274523395462e-12,2.6154298707277017e-13,0.999999993197755,7.763776402928875e-15,1.527019740598271e-14,1.6395746620248943e-25,0.0003130415344279506,2.250430261977441e-12,5.71430651997552e-12 -long,rgb,4.59980116647273e-13,0.02885284005516785,0.9998580913883155,0.9928029099765714,0.9999418714424684,4.076591509341325e-07,2.4514661493647308e-11,3.2576281213217167e-09,1.1648592419871988e-08,1.5766013913540695e-08,0.9982561515767956,0.9996392029746354,0.9995080443831624,0.04286894544276622,0.961734545440938,1.1436251084050372e-16,0.9667302690145831,0.9778755869452829,0.9600774694964774,0.2049079893694401,0.5566977565471216,0.025023722392077945,3.360365864849683e-07,0.023567173904463657,0.0002505060476688417,0.9919909357310756,9.94848653257207e-15,0.0003041614771666598,3.235004264848242e-16,0.818194235183421,4.237711177416364e-07,0.9999164186834874,6.0653487183564e-07,8.082333409895583e-08,0.9936911784875582,2.190596874876082e-16,0.47738287794945083,0.09809197365526824,4.7928305182991704e-05,4.11276677456923e-06,0.9970073516884936,0.9467937298393002,6.423284091770517e-07,0.8778734404580281,2.466392619334018e-13,0.9998385941560971,0.9999168324462309,0.9998562287366977,1.714848124727481e-13,0.00012168668638140504,4.033500290417981e-07,0.9966918999308254,8.985513449275075e-09,1.0808913333872396e-06,1.0551365769958782e-14,2.9943999135644963e-06,0.9353492871319105,0.9641817195786487,0.9996012479494648,0.9993370287687597,0.9982365437671814,0.3722216215893608,1.2381347767138924e-17,0.9732061833832492,0.9081450246407545,0.003574883685341596,0.9381816737612985,7.540372006927419e-09,4.065207664161949e-09,8.634714589796336e-09,8.859700533833875e-07,0.9964760859201672,0.9977751278651493,6.252041608877189e-09,0.005801264763677208,0.9422717074867761,0.9833442322622371,0.009939864530376676,0.025480154723613216,0.9756990583911117,2.817234835381531e-14,0.9393673761060111,0.0009645564767007044,0.9868376378702665,4.51744965676782e-09,0.001974330262533723,2.2992960028147804e-16,0.13323424634470984,9.241386740662407e-12,2.7341571899032312e-14,2.9566083716645105e-09,1.0364395704493812e-18,0.8814717008307696,0.9777871653066144,0.9815214455679597,0.9861076653960364,9.51869969350138e-16,0.9871084819344945,0.9346889940269464,0.984560778434968,0.9905310868657845,3.157061226293819e-10,4.474641465496197e-06,0.9946132984579297,0.9931993206584315,4.28154950850318e-07,1.173514614306017e-12,0.028451680517121644,0.9979546007056612,4.273129861897785e-06,0.9837668853182348,0.9960769143953255,0.987556506464575,0.9996821695545856,0.9990894478068266,0.9986250104156761,6.588485665508201e-08,0.9964163837926712,0.9996572311543394,0.9996651391403717,0.9999174518347831,0.9984670923361175,5.833128694728911e-05,0.9978851420563846,0.9995906604714099,0.006695627365675971,0.9986381029773359,8.23767864485108e-08,0.0020382743393824775,1.3947664291687236e-05,0.47877752531583617,3.7455089978265686e-07,3.523458484150421e-07,6.433157717505605e-09,7.76753996147556e-08,0.9006683896542218,0.9435476776916453,0.9577179420495466,0.0004635480699186375,0.8635185899429454,0.9951933782096172,2.2142295125371316e-17,8.550101738228728e-07,0.9986476124949077,0.0812287747274073,0.49598287523174034,0.1734858984164253,0.020507003489468083,0.9607072331381424,0.006232392446333422,0.9980918031748731,0.0029704368965071982,3.889777852422619e-16,0.9981542131784235,9.660922749960115e-15,0.9993796593259427,0.9995747052299777,0.0004938596077177242,0.006326016932933201,0.8945996767898364,8.96256292766588e-05,0.9134277534130852,1.9057216942422563e-15,0.00042169619453136774,0.00013899517451334322,3.721981082934238e-05,0.00012778904198318543,0.9994709393704126,0.9993018468346033,0.9950906388678127,0.005432777521865536,4.085479409937376e-07,0.0003783297830534124,3.744056132453454e-17,0.007463905031580588,2.164797706436262e-11,6.358004200775281e-19,0.9835950524973543,2.6768800770846007e-05,0.00039783394507230383,0.0004274099195136803,8.444701035034002e-17,0.9940498850297457,4.1119474866768895e-07,4.338189137605994e-07,2.991554281026344e-14,0.9996007286125014,0.020913672314035545,0.9993073055920901,0.9995628858729654,0.9980959197566276,6.476802207403164e-07,2.88013388258059e-13,0.6171672975851077,3.562266601949957e-05,1.126510264860375e-13,1.328581167026223e-07,0.9994100249244005,5.366156946698448e-07,1.047075160632694e-06,0.9982157610682367,0.002436833466431832,0.00011981324962000571,1.2064156598921924e-14,0.9972079214845803,2.1178326182405995e-06,1.263398148910145e-14,0.9971278181189325,0.9691958591164308,5.734070290495002e-14,1.326129243539467e-05,0.04935564088255724,0.00031650879652544674,0.9994881357590315,1.7747592732362217e-05,0.999066219466469,0.9996593278449039,2.0998643758596498e-18,0.9998544786319165,0.9999311686019832,0.9999338655141344,0.9985315442568417,8.728288853779692e-07,0.9804716505491089,0.9791900915034045,0.982971754397717,0.02882864595125997,0.9664835110798092,1.8942439101548046e-18,0.9999170843578219,0.9850432310707072,2.2431040214645462e-05,0.9980338779840334,3.3583877652976993e-06,0.9999174794231586,0.9995969931969692,0.9997406800205492,0.9000554612857732,1.0390889134346345e-05,0.0007733527802505802,0.021871480738265652,0.9959901107725149,0.9961575443686642,0.9972395687968351 -looks,rgb,5.817987760043617e-06,1.0,0.051815866362174744,1.0,0.9776666707387355,0.8910412614688056,1.1819155897364382e-06,0.0018081214636994777,0.0008969703922842426,4.8626370837708765e-05,2.543309656165871e-05,0.0025286834160652477,0.0007052876464053619,1.0,1.0,0.9982065422645274,5.820811931342929e-11,1.5629289490623536e-10,4.402335525381558e-11,2.1121553963092504e-08,8.043983965904264e-13,5.928703643715844e-14,0.6963129014744325,4.826488567064752e-13,0.9999985637312973,3.4687435237664678e-09,0.0018480955296295897,0.9999930019282587,0.974610748766069,1.0,0.8877900686975844,0.8202473593888944,0.6334704521452,4.5677593927156384e-09,1.0,0.9948828557249194,1.7774622344154397e-08,6.547794966969486e-14,0.7688892627125872,0.06748010697233152,1.0,1.0,0.8502491581709694,1.0,0.0021740385923065355,0.40866071636028545,0.8871726189333398,0.04691633745266062,0.001783165369698008,1.2761286166266433e-08,0.864980984738661,1.0,0.00028397723081802776,0.14392383137688705,0.20574716127644657,0.24075078057315544,0.9999079896383841,0.9998159594489607,0.0018433074521093473,0.0002592264792072366,2.0401787719650488e-05,3.577398604598409e-13,0.999949093831942,1.0,1.0,1.158387682179955e-13,5.432691138173572e-11,0.00012310656582484355,0.0010287294296457087,0.0013694352426342807,0.302689173842411,1.0,1.0,5.951701536090273e-05,1.0,1.0,8.126249095557075e-10,1.713054878183959e-13,7.270023461243949e-14,0.999648760308956,0.00034723739309699904,0.9996248012391648,2.639490788310123e-13,0.9984920549984934,0.0015605586281774795,1.4023787904688098e-13,0.9887867617756128,8.25737436152109e-14,5.508484132192685e-08,0.0003400634230797843,0.001254121538131471,0.9999989107193258,0.9999712702881555,0.9999039340894682,0.9995063259505675,0.9990202325535859,0.8760248210576577,0.9984171945681026,0.9997782826348159,0.9979180500449066,0.9920389174684896,8.052181552917736e-08,0.04481906390881887,1.0,0.9948186529780421,0.9102010133937583,0.00029752138935409223,4.004535524127758e-13,1.252433597869475e-07,0.024607792583009682,2.9366038633017224e-10,1.0,1.0,0.0196133676690771,0.00017272576510819038,7.23003652132926e-05,2.1429649100466793e-07,0.00017520084485152438,0.002543645373213617,0.00012493635807666836,0.8041853817371581,0.000479846646519845,7.430268177588454e-08,1.0,0.013951725359668734,0.17401082201247978,0.0007046250169635832,3.9410293122714354e-07,1.6256215480320907e-09,5.301204610269132e-11,4.00709950839888e-06,8.043596212566692e-10,0.9126790072420347,7.049449344290082e-05,1.1930817979767481e-07,1.1538923556748728e-11,2.4248753376994987e-11,4.416513998084015e-11,6.5404299343454596e-09,1.0,1.0,0.9995164416319914,0.24631293862841616,1.0,3.812811454334558e-08,2.994195942511168e-08,0.00045214062242789196,8.122988985709467e-14,1.5211474943553662e-10,2.094151409539598e-13,1.0,3.212828724505337e-11,0.9803165769856985,2.298453155823626e-05,0.22626933771019228,0.00036919946375354204,0.0018163436895431784,0.9999999952040968,0.9999999806234833,7.937509853347654e-12,0.999999999824176,1.0707849004848196e-11,0.9848638047319758,0.9999998459581498,0.9999997912257469,0.9999996479847459,0.9999980569412182,0.0008112610915071552,0.00022722561675843516,1.0,3.8719865910339816e-11,0.8635702646849265,7.943674447746599e-11,0.9996886121528342,7.380670385332427e-11,1.3759156016308417e-06,0.9999994642115115,1.0,0.9999999998618294,0.9999999908501255,0.9999999310392168,0.9992557512170323,1.0,0.6306417719680592,0.9093751234896569,0.027132080679081877,1.0,1.0,0.0002297756726250073,0.0014006901671836207,1.799370566857696e-05,4.3625045899776295e-11,1.2169998367280697e-05,2.8542840711040773e-08,1.0877452427256262e-10,0.0026942230321451554,1.3926396657367038e-07,0.002244298247529622,0.7369996154016188,0.08263351109232267,1.0,2.160587766627163e-11,0.9999783456539992,0.0011585592913846952,0.0002130346197396677,0.060577053315550286,0.1683329319239844,1.0,1.0,0.00013929215112853407,1.1589934803528929e-11,4.5530713145632893e-14,0.9999982853379323,0.000745101661474389,0.9999989013475721,0.0008985424545614014,0.007846068147003978,0.9999970307081372,0.13853106852239783,0.9448551157345788,0.9802129020325367,1.0,0.24059380476749376,0.9999999999999998,1.9204888200891979e-10,2.9690352123109585e-10,1.0,8.939024762889616e-11,0.9999974306992087,0.7982037726185507,1.0,3.99528601472684e-13,1.0,0.04741946038759624,0.8522238270597366,0.01421685855165295,0.017291596373688697,1.0,2.3949562369381523e-10,3.8008122452801564e-11,3.414529901004711e-14,1.0,4.759796231159908e-06,2.158142853042773e-05 -lying,rgb,0.001094632014313078,2.7541916375708553e-12,0.9885411227976966,2.1895824399012258e-26,0.6511480099671525,0.4681777158334518,0.001762731138409561,0.7563483516738916,0.8815439397938868,0.9612698448643684,0.9998830172550575,0.9985807429411715,0.9992684758970701,9.68005713722634e-13,5.983402812757499e-30,2.243752876114528e-10,0.9999982954638764,0.9999977924098449,0.9999985257191456,0.9999931969684336,0.9999995547497817,0.9999968761561624,0.5821457324838382,0.9999692033063945,0.043497821656109985,0.9999413246045804,1.1854178751710535e-05,0.09010269007604065,1.8770874081926038e-09,4.005940603332284e-10,0.4752947460653156,0.9115278850212271,0.6625650112554852,0.999114141007972,2.1023767165796984e-25,4.941873918963619e-10,0.9999946985371165,0.9999992282249724,0.8709602708824903,0.9372663304153264,1.4182747499349725e-24,2.3121356140557313e-07,0.5490787357706495,2.0621688115960047e-11,3.525036024272432e-06,0.9803659436765487,0.8988962078969064,0.9890609956552109,4.332710843818695e-06,0.9999540398055774,0.49280334818528215,8.700103270033139e-25,0.9092275291210083,0.8654685936765336,8.149818976677638e-08,0.8780109363893404,0.6784433758722834,0.7490466873365261,0.9988228797149038,0.9995729724856315,0.9998919461915423,0.9999995897534624,1.6101787974257696e-11,1.227019731133189e-06,1.5943498673630022e-09,0.9999807486158282,0.9999830623300033,0.9254019196616821,0.809694868674721,0.8465469961555054,0.8011497657307786,7.257648521943466e-25,6.63253647249078e-24,0.9358496767180902,2.7948853479705095e-10,6.926633696101184e-07,0.9999578872204364,0.999982144376002,0.9999959417746163,0.8025269899273314,4.495787062847188e-05,0.8035115434946468,0.9999989083174522,0.8886235651765908,0.7936598127144576,0.9999991938456698,9.692734754415262e-10,0.99999907299817,0.06836892382469767,4.7690863752442196e-05,0.7717612166894349,1.0296084337093972e-12,0.5401419417125267,0.6887589481434954,0.8265498512927768,0.8673032558891207,6.724617991059727e-09,0.8907850884818964,0.7611006178495192,0.9028809066805159,0.9446730131174014,0.017214060342896232,0.9485397314136907,7.920159655979389e-26,0.9322470824257494,0.45031215827222143,1.736069997537754e-05,0.9999766761813146,0.9998187078024241,0.9590528931106775,0.9999863990374529,3.89401242228925e-25,1.3651687352131043e-27,0.9968626423008808,0.9996928267730602,0.9998142373033,0.9968809734081171,0.999808279972732,0.9985087893354154,0.9990230417074203,0.9107031696225223,0.9996450598232204,0.9998870644198397,9.513731132427353e-24,0.997675527142917,0.9889707611596841,0.9995722425636742,0.9965972597038805,0.999991312255197,0.9999803842536388,0.9999573816570828,0.999757928430923,0.4289880796612158,0.9331094378227585,0.9976198226282946,0.9999991808603621,0.9999988290507433,0.9999986155577696,0.9999772455170393,2.975198138238026e-10,7.2281276379610165e-25,1.0262072022122911e-10,0.8172489132175934,9.827534974650548e-23,0.999989634073683,0.9999936398654538,0.9996200770220613,0.9999946584296346,0.9999739291660321,0.9999727086022433,1.6430368904179217e-23,0.9999978157880188,1.4442375543510772e-09,0.9998896428182126,7.426303253936154e-08,0.9994990384787776,0.998888805313529,0.0037974687250431362,0.012977357157028802,0.9999991644096625,0.0005227817876456253,0.999999065366165,9.839064128268278e-10,0.018201619120474247,0.01572498545962038,0.013892035313190235,0.04175651724310472,0.9992757480958006,0.9996047855197083,1.2599859447901729e-25,0.9999980725531357,0.49527938556019785,0.9999942878510872,6.126213233071286e-11,0.9999978569672769,0.0015521377169369448,6.320483720800663e-13,3.0242420784124797e-28,0.0003378180987241099,0.0048699980145952846,0.012638258197199569,1.1158153905360573e-10,3.238459368389764e-25,0.6299429039393571,0.45258848698431964,4.890574339308026e-07,1.144461395836301e-19,1.526800812868946e-11,0.9996012674367061,0.9990003492405497,0.9998997545083093,0.9999095725349703,0.0005865572322802906,0.9999940817877192,0.9999841662380909,3.174618813798685e-06,0.998087167267228,0.999041334723253,0.6049685268741085,0.8915450435544846,2.261983780162205e-23,0.9999979296560373,0.11390586859350493,1.892816007721918e-05,0.9997811606996531,0.9247596389484158,9.84941475242786e-08,1.9217662269697435e-24,1.7074368533196194e-29,8.329026667541787e-05,0.99998613213162,0.9999992462005951,0.049855074236133445,0.9992780828589503,0.01871277640687626,0.9994556978240826,0.9978420754284755,2.0587604059685595e-12,0.9860347770801016,0.8198725101111608,0.7631048457936283,6.276016905714592e-23,0.8203162147286658,3.0574318563379383e-06,0.9999977136757489,0.9999973102029488,2.8053487888482415e-12,0.9999984297962055,1.8624199251370474e-12,0.9122757005607135,2.1086103983359655e-27,0.9999934922215608,1.3103545230067816e-23,0.941883554395671,0.9044077971081024,0.997635934183319,0.9964247314643813,2.709511566770715e-10,0.9999659832087842,0.9999964360829526,0.9999988108707554,2.2367110780546346e-24,0.9999503964762307,0.9999065617036313 -object,rgb,0.9999997751629234,0.9999999999852451,0.9966274231169838,1.0,0.9999481932870449,0.7954767693319555,0.9999999580635337,0.7695617817350143,0.6173158960503866,0.46133838165931,0.4661249724682342,0.947768099036559,0.8974664438095394,0.9999999999950517,1.0,0.9999999999999734,0.061976089353449185,0.07210463037415714,0.05067718187379373,0.005265858080838584,0.011852658309325395,0.24923128292584223,0.7434403872417866,0.892076115731248,0.9803920947329531,0.9240313167246209,0.9999999953697285,0.9659964559118978,0.9999999999997651,0.9999999998159403,0.7922405361647669,0.9995232836326291,0.6946637686496918,0.13647934332342326,1.0,0.9999999999999483,0.006274774632219164,0.040626624991940696,0.5188934190154869,0.3713027046642791,1.0,0.999999969650804,0.7566599703169619,0.9999999999902811,0.9999999998769222,0.9952766828631904,0.9995227552535505,0.9964888360781886,0.9999999998074038,0.00860699754610931,0.7847375835701497,1.0,0.5982640153813218,0.5100845795751547,0.9999999999952638,0.48719932608523153,0.9746707797699838,0.9741061374178296,0.9348793653987556,0.8231626387623363,0.45597250127949757,0.011103744994175949,0.9999999999999969,0.9999999043243537,0.9999999995494362,0.7543096309463883,0.7984027799648605,0.5865541412526942,0.7310645275043159,0.6665623082841703,0.585649895519756,1.0,1.0,0.5835236512642272,0.999999998471991,0.9999999162588494,0.9085786944890882,0.773949906916879,0.3306568079276023,0.9722234388593007,0.9999999847083114,0.9592002782644962,0.004895740315288342,0.9648057429548768,0.7351889585426422,0.005254273596350053,0.9999999999998797,0.058265938316580924,0.9999848124023412,0.99999998286112,0.766964866554674,0.9999999999999996,0.9793827319821917,0.983267563086706,0.9721952484640942,0.96894106592074,0.9999999999993217,0.9645601533018886,0.9651712726399374,0.9576247974748441,0.9470948250707437,0.9999997412945535,0.3402618435446312,1.0,0.9614467185426302,0.8029303155102023,0.9999999995505084,0.8542678155116981,0.9670186526291644,0.3070619096572333,0.6676257718282113,1.0,1.0,0.9672998320064708,0.7280625735210049,0.5750714070899883,0.17578531711539086,0.37269758062916203,0.9530994143866077,0.9777953518052848,0.9995596549187875,0.6220078700494458,0.013602778090273967,1.0,0.9471547286803604,0.23088855271711897,0.669118821648899,0.1683671294760039,0.0037414531192830618,0.011317185563974503,0.019287426614790146,0.06164045809443754,0.8125307857692505,0.5858312912412853,0.15687805490921342,0.022349563153945144,0.038514325382049755,0.044052122402742484,0.005827342041537078,0.9999999998799187,1.0,0.9999999999999751,0.5695804032800602,1.0,0.005361734852267997,0.006977711266434946,0.05254698315210438,0.4155649368599256,0.8663301077877552,0.848323509298561,1.0,0.0024848916064942324,0.999999999999849,0.4455526935383681,0.999999999995602,0.8437077778336164,0.9265050297978419,0.9973876992222053,0.9957436002142496,0.02722881478876423,0.9992792645026176,0.03158049797915319,0.9999999999999585,0.9908231450402865,0.9903478520500262,0.9896260735699843,0.9792095987706706,0.8855123853343025,0.8079730074246512,1.0,0.0023271648317717956,0.7835780985718589,0.0038468697357497503,0.9999999999999907,0.0023439045670407468,0.999999962333635,0.9999999999999998,1.0,0.9993906265964595,0.9967039764347451,0.993117296818957,0.9999999999999871,1.0,0.7164317423531223,0.8019204592027701,0.9999999999720768,1.0,0.9999999999230456,0.8102053909555306,0.9210518456553272,0.42866783109891965,0.05557454937702127,0.999999875603457,0.0077557611447288495,0.007891558292617609,0.9999999998404718,0.12572280423052673,0.8808031805056191,0.7285962111277515,0.4715613419535253,1.0,0.0025269139901016088,0.9537984286460455,0.9999999919124009,0.43507385518201286,0.40359180738876954,0.9999999999944924,1.0,1.0,0.9999999776599695,0.012618184062827801,0.03407556387946483,0.9788861830758493,0.8907411248108505,0.9859147429947617,0.7686868014678154,0.9580298908545362,0.9999999999999993,0.9959173193313274,0.9998146952363433,0.9998358297293379,1.0,0.5661692078765053,0.9999998164077133,0.07124606640869945,0.08348509562943714,0.9999999999849936,0.04318255460055741,0.9999999999999993,0.9995510493968102,1.0,0.0216082441266191,1.0,0.35984623871166316,0.9995444789112085,0.9485882220965506,0.9779376458074274,0.9999999999066231,0.012862394967011432,0.0031694923279115012,0.06269391990177851,1.0,0.22449469066695618,0.3364894660544348 -on,rgb,0.9880029451489474,1.0,0.9987513130923455,1.0,0.99969183420476,0.9999999999999998,0.03959320403983988,0.9999999999997569,0.9999999999995506,0.9999999999906426,0.999584358431455,0.9996020821548629,0.9994698688672284,1.0,1.0,0.9997626023563352,0.040931497625912694,0.08326570462134225,0.04544553611505431,0.999994142310876,0.020350447652992376,4.107042651892968e-05,0.9999999999999996,3.552902647638575e-06,1.0,0.0006880162226376069,0.9997571778919633,1.0,0.9995227416388588,1.0,0.9999999999999998,0.9998735199969485,0.9999999999999996,0.9999996057290512,1.0,0.9994939450724121,0.9999765341326171,0.0005073668173025828,0.9999999999999987,0.9999999999999856,1.0,1.0,0.9999999999999998,1.0,0.5949792586236196,0.9999772662465028,0.9999384258115431,0.9986697903526247,0.7512357215400772,0.9999998671686462,0.9999999999999998,1.0,0.9999999999984837,0.9999999999999951,0.9719948751591401,0.9999999999999964,0.9999999999999407,0.9999999999997808,0.9996148835520436,0.999421544118758,0.9994833761018933,0.013070799319805917,0.9999843881775679,1.0,1.0,1.0072213801601575e-05,7.415690783020257e-05,0.999999999996239,0.9999999999995728,0.9999999999997036,0.999999999999998,1.0,1.0,0.9999999999915081,1.0,1.0,0.00023290521567926182,6.974713410438734e-06,2.769771116117978e-05,0.9999999999993958,0.9993558373400866,0.9999999999998215,0.738796537355742,0.9999999999957003,0.9999999999997264,0.39927847624555396,0.9996252069335646,0.0002922530762428287,0.9558828292053259,0.9994618059261161,0.999999999999639,0.9999994458234664,0.9999999999999887,0.9999999999997302,0.9999999999988514,0.9999999999971125,0.9983390365955627,0.9999999999954023,0.9999999999998899,0.9999999999956981,0.9999999999753779,0.00397033316182511,0.9999999999999782,1.0,0.9999999999699365,1.0,0.23075513045059787,4.265773316752138e-06,0.007313614675725291,0.9999999999999625,0.0008153850334280693,1.0,1.0,0.9999374545307838,0.9996781835020913,0.9997486671800886,0.9999999965950097,0.999989581233538,0.9995076179382785,0.9115823112623621,0.9998329224286066,0.9999738818759564,0.9999999834539275,1.0,0.9999634097313219,0.9999999999998117,0.9999761384353798,0.9999999983747514,0.9999964075006094,0.9999322470147104,0.9999998849080839,0.9999973164552692,1.0,0.9999999999929723,0.9999999933724666,0.05956912299322945,0.04251242213854155,0.059624016626930974,0.9999995753636528,1.0,1.0,0.9999847610871258,0.9999999999999976,1.0,0.9999986785637782,0.9999852604619998,0.9999999995667483,2.0577453921784878e-05,9.331696707622117e-05,5.627381813429485e-06,1.0,0.999568265492101,0.9992082217907631,0.9996010026674053,0.9745911358125151,0.999516996452193,0.999696370782699,1.0,1.0,0.0281473739164587,1.0,0.028063254050862473,0.986467497045225,1.0,1.0,1.0,1.0,0.9996580091664105,0.9994366377806645,1.0,0.9995408375891874,0.9999999999999998,0.9999354185362781,0.9999392375096262,0.9997538715422407,0.044035715664243906,0.9999997303175251,1.0,1.0,1.0,1.0,0.9998012249164923,1.0,0.9999999999999996,1.0,0.9417904100622498,1.0,1.0,0.9994285326864513,0.99962945373406,0.9995172345879131,0.9998443799171632,0.9913471589569146,0.99997374246856,0.9999725889167455,0.8366853312208469,0.9999999948817697,0.9999237388646162,0.9999999999999996,0.9999999999999916,1.0,0.9993449472798122,1.0,0.9997934050743149,0.9999853880838927,0.9999999999999867,0.9658844502753667,1.0,1.0,0.998108101318788,0.9994117909077492,0.0007028671002625063,1.0,0.9995730802131642,1.0,0.9999494134631033,0.9998665423931754,0.9999984483329003,0.9997855390341959,0.9998822150397072,0.9999638637595324,1.0,0.9999999999999973,1.0,0.10456450815796084,0.12004172913655779,1.0,0.12398885956890016,0.9999986637258607,0.9998303978268481,1.0,0.8474145505828536,1.0,0.9999999999999809,0.9998992086559144,0.999962183317952,0.9998345082868737,1.0,0.9999907336204631,0.9997959356172361,0.00030020148304746644,1.0,0.9996358537236084,0.9998454154364422 -orange,rgb,0.1324685356698892,1.6025479091341787e-34,1.3669532480207341e-09,1.8679730699479578e-67,1.4894578538435866e-13,0.0013401913769308766,0.010343109241962514,0.9004293357991701,0.9344604203022688,0.9941624534516101,0.0002907459842858717,2.7318447436867876e-07,1.5851708262217345e-06,1.0725892772666827e-35,1.8973113480434703e-74,1.328315100264387e-11,0.9940907917174306,0.9826945063585826,0.9964179745614299,0.9974715438310297,0.999990017833743,0.9999961165512012,0.0048139818574768865,0.999669725487628,1.0854866322231112e-09,0.030991984541127195,0.0006060167302115551,5.046648478549296e-09,3.7053380307325875e-10,5.848441892529363e-32,0.0013671252284428788,7.154563647716152e-12,0.0052755582843077116,0.9999956485438253,6.937337252048498e-66,3.5859917862933566e-11,0.9946284104107757,0.9999986190154646,0.0005681894212312877,0.05627527403323442,5.08815048658556e-64,1.72104104171033e-26,0.0016527211466452246,5.729717839558241e-35,3.004990393406731e-06,3.351463405785476e-10,4.861422965850958e-12,1.5395030044812293e-09,6.443142776972957e-06,0.9999626087454477,0.0017012708050010573,2.018651792038637e-64,0.9756770214297115,0.039551866633256265,2.9167312782644516e-08,0.015860168347264687,5.3938184210336477e-11,6.335007147427369e-11,4.4982461391405193e-07,6.858110103645521e-06,0.00035517226107618694,0.9999965339054441,5.036743780096615e-13,3.3781371185033726e-25,5.595207668651626e-31,0.9999836720473986,0.8488919280366277,0.9881885084118791,0.9351140163497987,0.9110820442617125,0.017413544162606223,1.609702986656618e-64,1.0366254327186439e-62,0.9936816155667023,2.1589690784272268e-29,2.081149480361198e-25,0.14060086900291882,0.9999574077780063,0.9999934347420532,8.539270980651378e-11,0.0033377346008535676,2.2187999912667526e-10,0.9999999653911539,2.1131332047502757e-10,0.90837258575205,0.9999999645529379,1.3386547735243448e-10,0.9999971839864067,0.9746101481532333,0.003829472335167249,0.9261714126651488,1.880997856029954e-14,2.833833584292683e-11,2.0003266128917866e-11,9.285547591020252e-11,1.42390662072933e-10,1.790321668047573e-09,2.175599366715484e-10,1.3723431536606306e-10,3.483092583586057e-10,8.48287710962283e-10,0.08252763488590363,0.08056692117303059,2.0177705663968164e-66,3.800944289576762e-10,0.0010729016041073844,1.7020144711056865e-05,0.9997656276225498,0.0005147624065408055,0.13840362026050396,0.5949604735349834,4.48317514073685e-65,7.809257539894598e-70,3.744517624612592e-08,1.83039606493768e-05,8.07492692463137e-05,0.9999221567062863,0.00015989339194911128,2.3780986505018418e-07,9.625216954733948e-07,7.107967891664568e-12,1.877457109048101e-05,0.9998679793298759,2.308327892464687e-62,8.801140563243438e-08,0.0008072849036099572,1.1043453056076364e-05,0.9998706091207604,0.9999804021455518,0.9999997046208158,0.581624869884356,0.999998663623628,0.0011062477711043471,0.9927055506507196,0.9999502775543624,0.9996350807673845,0.9985324739755059,0.9969719392347506,0.9999656096725997,2.1945175150850203e-32,7.753768228169469e-65,1.2377815217309007e-11,0.02295862163884118,2.1144108864928956e-60,0.9978644449511381,0.9910843060319608,0.04130014488218436,0.9999912046262498,0.5670962772919356,0.9999405292994127,6.739979846150865e-62,0.9999989672769145,1.8395613033829098e-10,0.00034840539522516237,2.6260088358559972e-08,4.480723071680954e-06,5.320811955848e-07,1.9768624591908275e-12,1.9792289281199884e-12,0.9996740763591354,1.5046494085359667e-13,0.9994750885799111,1.868513975016218e-11,8.146983466878935e-11,1.981588821366792e-10,6.453473788834164e-10,2.0776534539880222e-09,1.6786371966949625e-06,8.515933358610576e-06,4.984422192199943e-66,0.9999984396269093,0.0017143301477141049,0.999999080237115,2.705799740552216e-12,0.999997031649358,0.009027827163404412,1.093750152494234e-14,3.353666470683123e-71,2.1459845462490158e-13,4.381950481267192e-12,3.496284110709306e-11,4.2795480926521485e-12,1.6185480354070253e-65,0.006005052974126555,0.0010789563538620274,4.0906759156086604e-07,2.4304739188021175e-54,9.56590990153692e-33,8.299103747562278e-06,6.981657745927048e-07,0.0004493715055102528,0.9999997906352379,0.06366007126886325,0.9874701542060466,0.9999994063765378,5.115065988131806e-06,0.999940942351502,9.064150282378639e-07,0.003449294797368479,0.0699780053058071,1.2175135336682035e-61,0.9999992915218777,2.554703392977388e-08,0.0012712647408822492,9.493919026592839e-05,0.07653303377070649,3.610449268252152e-08,1.0105308966842905e-63,1.4950277765662145e-73,0.00605354532378273,0.9999998913972554,0.9999994063790791,1.1567913302399085e-09,1.6660519781269875e-06,2.924133223023176e-09,4.729281749523629e-06,9.555343432614888e-08,4.009989004823172e-14,7.73032463423601e-10,1.0429951798142624e-12,4.300718959877959e-13,8.761236695003617e-61,0.02348634373007826,1.8416344861861997e-24,0.9795747856241922,0.9639784258961335,1.669919428796563e-34,0.9944123235649193,3.5976321506549456e-14,7.450751369945391e-12,8.852120425540194e-70,0.999999977497312,4.056300051632175e-62,0.08357245173166875,5.769822764338724e-12,8.377459011931109e-08,2.50748021831359e-08,1.2732090588274713e-32,0.9999991803684231,0.9999993176362021,0.999999453409144,7.110472222628384e-64,0.004142231164093778,0.0007021504018731141 -out,rgb,0.3646274384215343,0.9858840851730956,0.06773304202251823,0.9999787414282073,0.13870795017725546,0.1791763744352521,0.33050068265311466,0.1326356250434347,0.11359960977145898,0.0889041783115557,0.02774389932371501,0.04559177358939649,0.03991036240945618,0.9886478362522383,0.9999962843070965,0.928448814139414,0.010583358970783819,0.011253921601987371,0.010280320878414803,0.01579140806391989,0.007893255582152732,0.010764844128116808,0.16429513497629084,0.016610447325295,0.3050372285229751,0.020773162278228306,0.59410342759209,0.2703011136852856,0.8938721728984463,0.9589747788716851,0.17830119427796834,0.10287449214141697,0.15487492467072106,0.03926478122806671,0.9999693040158072,0.9167467184949815,0.014921425794787377,0.00839418507117667,0.12640368457127382,0.10612563303516537,0.999949670006263,0.8561236285728573,0.16944631716277608,0.9776352234726525,0.637774355854659,0.0778196344242768,0.1063413844858009,0.06709077780297183,0.6292618170806389,0.023018809005093427,0.1759433616918069,0.999954481158535,0.10639516531058546,0.12387661143135387,0.793179214987987,0.12231083694037724,0.1586930005827625,0.14830562185689447,0.0439583131516427,0.03584444591929462,0.02725431017578834,0.0076997571901108765,0.9574028284856232,0.8053026330464585,0.9453346291261047,0.015126120373169561,0.01570150783579315,0.10143704206300357,0.1249710802504059,0.12012338368252026,0.13545540836171052,0.999955771825609,0.9999303901405107,0.09768167342952244,0.9632167467928859,0.8248804982798021,0.019171519824457115,0.014927253743220119,0.011302585673470585,0.13962377524300096,0.5265960847521872,0.14031124342134452,0.009551205421854001,0.12225352340830388,0.12777723293094653,0.008893922525592977,0.9059824198733633,0.008678216647523222,0.19698023421289804,0.5240137015422166,0.1301531133760695,0.9756335121102993,0.17705824473963,0.1562095784847897,0.1352222119063902,0.12706304454525708,0.8659406992688806,0.12171627259385676,0.14707405606667454,0.11887445197079075,0.10517571948181156,0.23491672825944726,0.10182247039554637,0.9999723717745704,0.10934800234671958,0.181626862156381,0.5584745634334699,0.01575808977667957,0.026761328077703733,0.09697405593365914,0.015493648122215318,0.9999613788446273,0.9999882222148567,0.05410379918753485,0.03373818694886986,0.030573195546381188,0.05235671342799539,0.03155686512858842,0.04595064562483504,0.040273899100373836,0.10281804652158351,0.03545142562450135,0.027944925794166544,0.9999243582437165,0.05125760936051252,0.07724015420361194,0.03682287968282081,0.05367119086892393,0.01624525439248256,0.018097078767994556,0.02378167487339258,0.030137289571691588,0.1842047435884745,0.09866385786005769,0.049427015614870375,0.00911452043174919,0.009790308623918293,0.010176594474318046,0.019935689986023786,0.9612764211584279,0.9999600564719108,0.9393529332207738,0.1326981624596471,0.9998769798794142,0.017328027204861575,0.015550013393360318,0.03827871775454182,0.011894266880631756,0.017192973929133257,0.016173313748998473,0.9999151386025608,0.01178840375352331,0.8984454141157754,0.027429377565245164,0.7963392288501213,0.03705711570652265,0.04355242108252505,0.43045604188756553,0.3669768046895688,0.009078222409920582,0.53686356008241,0.009295216313449971,0.9036306747905734,0.3485365202205816,0.35507369541801687,0.3600845536746463,0.30645255345964895,0.039983516958059205,0.03530506022929732,0.999969535516316,0.011526181163884626,0.17564280523969533,0.01440015574115865,0.9444805250972741,0.011865318750631597,0.336341752857127,0.9779760147893063,0.9999915774341371,0.5593543683507405,0.4170212247351539,0.36712877314338643,0.9373165968846732,0.9999664591843813,0.15853256242580963,0.1813427982353648,0.7268649051392228,0.9994568816872658,0.9798139247882408,0.035362967887579075,0.04258046325974073,0.0268606751103261,0.023933911968955692,0.3946224690161222,0.015281657262375686,0.017579233446134896,0.6445367650176276,0.04762471418836846,0.04280483060034765,0.16210629976210297,0.11799514797478243,0.9999094762258107,0.011603234242160455,0.25841219013226707,0.5716671073197476,0.03232463477794284,0.10967445126779807,0.7866295589697591,0.9999459682765793,0.9999953502883964,0.49363969500026755,0.016534465086037193,0.00834867314787413,0.29861894859759414,0.039881290740865744,0.3440764824597953,0.03839673950010124,0.049965638000979175,0.9718851226806666,0.07147971296713208,0.11938496192842851,0.12827475212806777,0.9998880533905955,0.13219209090254486,0.7722677364756045,0.01136477928108426,0.011771521078344891,0.9858294380574952,0.010532408761143365,0.9724600912223963,0.10243818884045244,0.9999882885154616,0.01348386278325619,0.9999194764969785,0.10421609908311957,0.10469693887225384,0.051413024359724696,0.055036500265111546,0.9618835934005148,0.020551752101718793,0.013006241053748487,0.009034201357816673,0.9999494911438711,0.023350377528588356,0.026729983594358613 -plum,rgb,0.9999999999999918,1.9573374894716275e-19,0.00836863076064998,2.3348527104935055e-07,0.012356805362029271,9.31422309304944e-08,1.0,0.004336834003274574,0.0018360949211232126,0.016332077159747514,0.0007951398503804688,0.0012421855727949489,0.001363744439042691,1.4439138361504713e-19,1.2617149214029355e-08,1.0,0.9791958620656469,0.9485411063824672,0.9776570466030362,0.0003784623851124191,0.9976075487373512,0.9999999481058577,2.4652115425566844e-07,0.9999999991829338,6.366431119692677e-12,0.999925150078907,0.9999999999999984,1.3185509798352223e-11,1.0,2.8620173737915714e-17,9.249535169185975e-08,0.0020508893316390194,1.9145562697221553e-07,0.9697466416468242,2.7591883871183543e-12,1.0,0.0005520160576201619,0.9999945813454997,9.021003555290615e-09,4.1170666056999285e-07,7.145447946940007e-08,1.6260630035032698e-15,8.489241456906516e-08,1.3773412394099519e-17,1.0,0.00019036795705109865,0.0010512726152799216,0.008756221022153173,1.0,0.006623526558807141,1.0989600909882098e-07,8.661248788812763e-08,0.006594006553512814,5.924214750261062e-07,1.0,1.9135585560902975e-07,1.0474760849851074e-10,2.1151299869737668e-10,0.0011410767600828259,0.0013047444330105042,0.0009578937055870597,0.9990950553704754,1.0,7.21737912165854e-15,9.909247530376863e-17,0.9999999991696771,0.9999965642379923,0.016876637956660914,0.005434055004428385,0.0017938916946025675,3.6230611497086176e-07,2.3329010534117656e-07,8.440069061131567e-08,0.040264443515198846,1.3784088000384343e-18,2.654596322945728e-15,0.9999828424340379,0.9999999987421659,0.9999999708526186,3.767433001923994e-10,0.9999999999999971,2.071715993072478e-10,0.9987449237519163,1.2209558263488427e-09,0.0033573606325997,0.9994402944289288,1.0,0.999996552194528,0.9999999999997093,0.9999999999999964,0.006674933671655067,1.0,4.346925675628049e-11,2.2378754355666184e-10,5.455177787021074e-10,9.508369289168268e-10,1.0,1.2720685506199842e-09,1.5526326962533364e-10,1.2435093091208315e-09,3.6772652472364787e-09,0.9999999999999998,5.203420541930862e-07,1.097828124302483e-07,4.10235370545843e-09,7.829172742256214e-08,1.0,0.99999999862657,0.9988033432540124,8.162950102885338e-07,0.9998606530036238,1.3184787749695596e-07,8.086132385961572e-08,0.0002694076748947011,0.0007118499342786926,0.0005318485254385831,0.3575712543314989,3.764371055530579e-05,0.0015488771002250268,0.2374940696872358,0.0027463408224468818,8.020631994247878e-05,0.0022727078893787435,1.9221218023090128e-07,0.00015067902335250157,8.343692052060618e-09,7.558422535438175e-05,0.18602870670023905,0.009142041970160707,0.9324296688794237,7.776019050447214e-06,0.971176472145286,8.849140780929145e-08,0.0334672886593993,0.45513248307737697,0.9781932046078136,0.9814286705952886,0.9700371941050216,0.005352051227802816,3.3639895613675843e-17,4.667092457400028e-12,1.0,4.4952553218421873e-07,1.5146593820484822e-07,0.00022619023170042786,0.00036015906698287197,2.6273476802630875e-07,0.9999999849287968,0.9999953222027363,0.999999999464048,2.0703970543040957e-07,0.3103104008466158,1.0,0.0007639111040683961,1.0,0.001140742750583745,0.0008952396910706094,3.695155911593532e-13,4.890267397307897e-13,0.9909376800557385,1.2492846045847223e-13,0.9901668557720161,1.0,1.8990226725496855e-12,2.9562752189633466e-12,5.937565215646377e-12,9.05665763025517e-12,0.000898240186753014,0.0012520920230497527,1.1674610638832928e-07,0.2208311436884052,1.0971908898456921e-07,0.3399506382254604,1.0,0.11041757775141137,1.0,1.0,9.466689820107687e-09,1.6006859064859039e-13,5.184750906219461e-13,1.2974828023530847e-12,1.0,2.2904950748145895e-12,2.5727887228214183e-07,7.805209568219033e-08,1.0,3.6972127898535976e-07,3.941023858378354e-19,0.0012712987610194308,0.0010518056334875557,0.0008976285910681079,0.9988517842268949,0.9999999999999944,0.0004408429238264229,0.6975902647774149,1.0,0.2704265618747623,0.0002388268044018382,1.5260347757289874e-07,9.264841706171048e-07,1.615545658013749e-07,0.43875046389803063,3.131670244364205e-11,0.9999999999999971,4.8927987456247e-05,7.000573714405971e-07,1.0,1.5891000046050138e-07,2.1123340909888654e-08,0.9999999999999978,0.9911965632001165,0.9999954802873385,6.508233123277205e-12,0.0011065730463185252,1.410547736734947e-11,0.00014895714157959613,0.0004939327970454985,1.0,0.0015126340830958847,0.002827185947743772,0.000987851121730722,1.434620994079999e-07,4.521055721354547e-07,1.5902807213019657e-14,0.9324555640762888,0.9181621474371726,1.973193579112142e-19,0.926372757792439,1.0,0.0027635920951501972,2.5880835841927413e-12,0.9999500486033137,1.1893213146738204e-07,6.063494256561362e-07,0.0016903337249168423,0.00015599601199105855,0.0007094485775819149,4.4364392225655636e-17,0.7494503350288596,0.43031565062141697,0.9999992687305169,3.919257493208578e-12,0.0007011454857317666,0.000336855389510956 -potato,rgb,0.9649128438570631,1.1570528759688516e-20,7.220333086978392e-05,1.5478240113287437e-33,1.102734419974114e-06,0.0005211175000856065,0.9678182651515558,0.16445150257691585,0.18813673932103056,0.5494194773845121,0.01196458829680616,0.0005569520202747635,0.001272719877497125,3.118026812670478e-21,3.3676687016523225e-37,0.0023504483045847058,0.9795105344111747,0.9607743263473856,0.983270476944575,0.8057283223302822,0.9991381460236265,0.9999109309462635,0.0011489745222783335,0.9996812585739313,1.7028356533723616e-07,0.7460683548250273,0.656991250203579,4.186934128511517e-07,0.00941349371642371,8.633425369825659e-19,0.0005272977523137347,4.659377593230547e-06,0.0012065592746258907,0.995205973390716,8.641384666818145e-34,0.0038525735375464915,0.7791694325519177,0.9998775604945654,0.00033970346266975636,0.00534995611390121,5.733175654173191e-32,9.077719556180076e-16,0.0005903341556798921,2.864409796555659e-20,0.4578229095889449,1.68214771810495e-05,3.3820647838138365e-06,7.703068693466753e-05,0.5075023336407176,0.9637971680797891,0.0006033623325610547,3.80143661713035e-32,0.32475294824024903,0.0042533033710943505,0.08436606252364402,0.002385863385191599,2.070309844114471e-07,2.738988444609877e-07,0.0006874643164948924,0.002460111100690398,0.013635393425798543,0.9995411914287382,0.000441764756518637,5.446027065381342e-15,3.52037505066136e-18,0.9999083445220985,0.9814469522672358,0.4490638853111446,0.2082000452775089,0.16068541952944276,0.002529625261838158,4.153063397990091e-32,2.566661214317748e-31,0.5648495315530365,4.100932010310825e-18,3.26361053089472e-15,0.889466002510295,0.9998572868486948,0.9998985090089461,3.692259047621094e-07,0.808394891814019,4.699954473520684e-07,0.9998987328839611,7.677192927640366e-07,0.1675976481405284,0.9999189461141245,0.00614430072715581,0.9998483612188714,0.9959624825261496,0.8115388350375634,0.19936922983196417,7.4168173102576e-05,1.194051533194065e-07,1.6770890585460795e-07,4.2575269451539577e-07,6.01222484949033e-07,0.020521283398867867,7.865919993302507e-07,3.497540869513907e-07,9.627047183646679e-07,1.925603534131489e-06,0.988882191336134,0.006786994619502179,4.240499231844372e-33,1.386954787171788e-06,0.00045447567680228465,0.6686522150803338,0.9997045711676185,0.21008087494894134,0.00985794368319514,0.9373637704868505,1.989283269157567e-32,8.690322284192243e-35,0.0001600734078047024,0.003362438468668281,0.006158907310863397,0.9574422500407422,0.004534347545944556,0.0005481119106729479,0.0031514323599145543,4.937025614087006e-06,0.002074555241883308,0.9160962670397754,4.468795895787405e-31,0.0002084588983353235,0.000635672755044692,0.001610578586841181,0.9376642034834309,0.9806781914348881,0.9990329284475764,0.12557727216008552,0.9976610395940444,0.0004640659861869666,0.5387902528847085,0.9685004881456903,0.9937874142448414,0.9890514083261847,0.9834832371212185,0.967903265406158,5.779455211990508e-19,3.1201676224768775e-33,0.0015236229192507297,0.0030121875886195983,3.824932078057241e-30,0.7850143250825521,0.7186057943123542,0.011772516229920963,0.9998958409337443,0.9629383191455277,0.9998529408282968,7.6355083345330845e-31,0.9978920981151669,0.007731602448074943,0.012853633208519568,0.08025876923226166,0.001967540425283372,0.0007042968562076914,5.028558048380259e-09,6.811514412994023e-09,0.9950554620492179,1.002222472506489e-09,0.9938271637386009,0.00467563815118593,4.070764066204037e-08,6.117222946010381e-08,1.0908879736499237e-07,2.3372215172698445e-07,0.0011926047005854064,0.002690552120237702,6.666778199558458e-33,0.9973409406982698,0.0006061131828081815,0.9976346513759573,0.0010386464223212663,0.9958591941985308,0.9657118228191857,5.3741940933857643e-05,1.217773954370361e-35,1.1117073261484576e-09,7.712504664901127e-09,2.519830896247853e-08,0.0014739043061497488,1.252707961617624e-33,0.0013135702773734055,0.000455986931938285,0.22119109157546857,3.987566025129511e-27,9.076860275876094e-20,0.002668050118898631,0.0008262144130890163,0.014921936726149132,0.999526960672365,0.951043809013526,0.7031645114292989,0.998225264719485,0.46758453783002457,0.9619246414772739,0.0006714942306303757,0.0009292154474490208,0.006179842745883217,9.683065065209545e-31,0.9983954493394623,9.894326948531867e-07,0.7098637081109862,0.0038251581187234234,0.006536601081081662,0.09330472700353973,9.397937730386157e-32,1.0224298511384466e-36,0.8625581089077322,0.999606910347944,0.9999152814566583,1.803259415158289e-07,0.0012440074743243728,2.49077728601129e-07,0.0012811192802873038,0.00028121994014751673,0.00011656319000427561,3.865106105283189e-05,2.0252245398173096e-06,1.0748363910774953e-06,2.4662523388141585e-30,0.0030552507063032128,1.4813508855800352e-14,0.9554198078919326,0.9407066118062337,1.1818308816224121e-20,0.9740091123318159,0.00010922894190955921,5.0534045570616006e-06,1.0936426910076881e-35,0.9999387270615547,5.337198560384182e-31,0.006941642163433855,4.047220926289441e-06,0.00020537147995997474,0.00016435204704678144,4.880987442900966e-19,0.9977915853905608,0.9982277316894892,0.9999391230580449,8.80795601500255e-33,0.03740278398656903,0.014582649669946641 -prism,rgb,0.8538725283879786,0.733674158056393,0.04244347089182038,0.9911930746529951,0.06205190597509446,0.2910255250863197,0.8133091974566192,0.3790677699975878,0.3289061728535565,0.29985974423415696,0.028939141550811762,0.034640813508736816,0.03286301777275412,0.7508130465820891,0.9969959076885155,0.9887299199117232,0.026151309610430665,0.025735405785729467,0.02605276632245332,0.03681230882863242,0.02934879544449941,0.05802512393323154,0.28589066931845225,0.08022217092468652,0.23368474444571638,0.03867594452644366,0.9334505263272662,0.2165986107496834,0.9839002416703556,0.5236872903842887,0.28966276622673814,0.05104047052297742,0.2674941945657561,0.21101949403577874,0.9860642834093247,0.9869325246961336,0.032672176394436,0.04134902263527217,0.1753055304420758,0.19918762051221248,0.9841738722533122,0.32753828402607327,0.27550293466265835,0.6000844100585956,0.933662916638379,0.04311086044013527,0.05137411950388568,0.0422836110190227,0.933260338058227,0.0842326562943743,0.28927517685562615,0.9852300253907091,0.32994866867368117,0.23530240830368565,0.9667905409208075,0.21583189498160066,0.07805587549830763,0.07251310384454246,0.03410388935960103,0.031538738323489114,0.028776952925904712,0.031241183377403475,0.9931435221387213,0.2780928961032399,0.4713728265629119,0.08731994397647713,0.041093737029045646,0.3305925474924874,0.3669094578906517,0.34214919199046057,0.2471086503667241,0.9858377279625611,0.9805941220285033,0.33263818293035635,0.6485012897915904,0.30201865486222773,0.04024255996046919,0.0799290547151589,0.06021528949530729,0.06860285576614501,0.9159119387714657,0.0728444342462155,0.05642670398025745,0.061775207285749596,0.36604564014836305,0.05230254040386397,0.9856056205692751,0.041436011815570245,0.7239163769953565,0.9152870172349532,0.38003831492998685,0.9959505476111346,0.08629158432590987,0.07241340225433689,0.06637520398162558,0.06321024324493384,0.9795368582302663,0.061562660067567915,0.07502873415969405,0.06145605304517636,0.05618165380120074,0.7268188960718452,0.19470288924029802,0.9893636224587565,0.056270524191581434,0.2914615523690601,0.9105689909767226,0.07611021083647296,0.03812518129695551,0.191854637545719,0.03409576420346741,0.9868455101312318,0.9938561240379477,0.03677909830989751,0.03079634039584432,0.029821990962003216,0.22895964429878046,0.03091957275897883,0.03482427194296598,0.03587625330387587,0.051277953094831255,0.03151712507129297,0.09651781455600666,0.9799235626350462,0.03587758750643373,0.09522272587571262,0.031896913091015784,0.2252629990353577,0.057091605162928875,0.09990478788788984,0.03903470474065106,0.16859032602341037,0.29722096160287453,0.33266910092496627,0.2220894361974939,0.026200471157281278,0.02614570853491863,0.02585847949423099,0.0704501848254526,0.5266397955714988,0.9836417075019998,0.9907984348915944,0.24591480321346,0.9725119781613304,0.041585162221345916,0.03297186873627543,0.05334404450919142,0.0637721278438556,0.041485856419276636,0.08774720753324457,0.9784338158452552,0.050228289792745406,0.984312869592346,0.028848538517916397,0.9673795595486528,0.031907300158520814,0.03391421783987287,0.27175577119480004,0.20882903202569417,0.026760076687831407,0.3479051272741812,0.026634685863391756,0.983604482915852,0.24250429592135112,0.2637072503715997,0.2896619687417382,0.2452699268225146,0.032795756714957464,0.03135684288926819,0.9886843956782556,0.046988786571499803,0.28881671979840595,0.06543515707151427,0.9911888790412463,0.045867104546857725,0.8172426755712627,0.9963205100044116,0.9948148503551155,0.3830747758525328,0.2701927493633044,0.24951195268038742,0.9899547189645971,0.9852166431459732,0.2779056117731929,0.29100866250933,0.9549635211985172,0.9327157470505567,0.6990719271299671,0.0313780656439503,0.033649212630033405,0.028663119995061274,0.15362260108791476,0.8680857557549307,0.03158871646546581,0.08897654951550252,0.9374866146185195,0.20831943932285116,0.03348679153741421,0.2746331320803748,0.23170192389536337,0.97739870916152,0.05108696590310496,0.22612341377940723,0.9281932857951967,0.030935144663837025,0.21295522295707006,0.9655570163325556,0.9837417403710447,0.9965580658433432,0.9055904565779642,0.09947433051531449,0.04371400407588747,0.2274134791386728,0.03280588134003713,0.2969549765554957,0.03221576922343325,0.03571733752164078,0.9953561529911552,0.04240451853252442,0.055517458190884154,0.05668531190678628,0.9740696823199956,0.2451676352842692,0.25398961686042876,0.025604113415315637,0.025612834895287026,0.7332765904588767,0.025392157400678062,0.9954475593155089,0.05118497453490697,0.9924916852245672,0.09500903515039963,0.9788720891036262,0.20113898448512213,0.051344289841366735,0.035925183664812434,0.03732284034393429,0.523645274419437,0.10595975186986596,0.05917394493370486,0.050442053776577955,0.9809720048622856,0.027735391996012403,0.028807750279241498 -purple,rgb,1.5725649924052604e-16,6.6567051949932435e-15,0.9999764829873863,8.744152540948156e-06,0.9999913248760415,1.0561301229688664e-15,1.1236031412537922e-12,5.588787126398835e-17,3.658778815806e-16,2.0190813371205885e-15,0.998001093521993,0.999816536933123,0.9997375258572099,9.571720499299228e-15,3.320049681634897e-08,2.6618981530744738e-21,0.9990591948276438,0.9992506914062909,0.998701851646146,0.001598377158183914,0.951067802984465,0.7363941755140692,1.2889218034145134e-15,0.9174506467474487,3.5421423593660263e-13,0.9999878931238485,2.59782771976688e-19,7.783188124366153e-13,1.1355709202059067e-20,6.342754452731949e-10,1.1284325378543102e-15,0.9999732686246299,3.2553920878415155e-15,1.8197586529982857e-12,9.473414014531682e-08,8.22659892616526e-21,0.01598663475971468,0.8270304367241165,1.4416117944437484e-12,1.575977517446455e-13,4.5636400381409946e-05,1.1687145642245891e-07,2.280779356350564e-15,5.930734753155599e-10,9.762596858016123e-16,0.9998217461935667,0.9999631744582023,0.9999766503370099,4.1515294735689655e-16,1.250465964568286e-08,1.1376379414824965e-15,3.870715532089722e-05,4.4741742328864185e-16,1.742310024570871e-14,5.202324223928898e-18,5.791963699398688e-14,0.00020063861657932845,0.0008215331928495375,0.9997820419842115,0.9995994520613658,0.9981536567968694,0.8979783880816958,5.223104364647974e-23,1.0033763036571956e-06,5.231010193743909e-09,0.3349815352444708,0.9999207781537784,5.334694726019374e-16,9.451001818273392e-17,2.0898414643817484e-16,9.239645036623962e-15,5.2871033800345426e-05,0.00010536743030502137,6.02295592616761e-16,2.3995870369711537e-15,1.5288585396858388e-07,0.9999799010940411,0.7004609981553653,0.7814213956897473,0.002184648713844953,1.4006399925545655e-18,0.0003433221124824398,0.00014871083159173108,0.011695300085929929,8.89023362938793e-17,0.0007440851807843878,6.978501686556133e-21,0.9099189694390729,9.501914217761091e-15,1.2255498811364002e-18,5.875378338168903e-17,5.494799422349384e-25,4.0279597541941287e-05,0.0018102710945811233,0.004219647692263472,0.009234416618678135,7.39463602655327e-20,0.012377710773966502,0.00025291267770653373,0.009275843670559137,0.03725223568630203,7.726664538261786e-11,2.090670058509257e-13,1.2605688618676853e-05,0.06384144781047843,1.0460476332282318e-15,1.362586871242486e-14,0.9270744608210445,0.9999947068400582,2.4752103467017103e-13,0.9999591557032635,3.0647220987362334e-05,1.3342606959381937e-06,0.9996591699790414,0.9991563932815485,0.9982499138987351,1.661352853261276e-13,0.9719615178169992,0.999846246709517,0.9999875420209798,0.9999770252138123,0.9944934048721518,1.9380874710338814e-09,0.00017716201581115994,0.9993591388707497,8.098298450657902e-09,0.9951980794640689,1.5852189172150946e-13,2.0993271731114693e-06,1.2562127626073474e-08,0.0016549678697842522,2.981260961517324e-11,7.878762537132865e-16,5.745171945376429e-16,2.751294026668409e-13,0.9941620395193721,0.9979052840376068,0.9983747572256456,1.1842966176948548e-07,1.1417078672298608e-09,2.3454667113913725e-07,8.858823484958958e-23,9.778097468583703e-15,0.0005017163324222635,0.00019910834273609957,0.014469360479427519,2.1040664524730265e-05,0.7605441483239357,0.9999555573371569,0.5939255386977094,0.0002390372756665584,2.9035333368754262e-05,1.91233609271851e-20,0.9977855079757356,4.461980996375157e-18,0.9996081402341599,0.9997318950133434,1.9630737478494788e-13,1.9328685831809486e-11,0.995626254188118,4.9889853614422246e-15,0.996772107850263,6.524727729025579e-19,4.167305137239921e-13,7.841516794643928e-14,1.1774804311540875e-14,1.347200222080898e-13,0.9996427187424325,0.9995612015293692,1.6403430751009394e-05,6.591826152259164e-05,1.1632560137679336e-15,8.46940480284412e-07,3.6915147842732213e-22,7.575125731371467e-05,9.175467357999675e-13,2.159209272307818e-25,2.440923843006294e-07,6.943750342106671e-16,1.6680861923539736e-13,3.36338142233518e-13,1.783290338036051e-21,1.0349884588415667e-07,1.9028563701628187e-15,1.0693665687094422e-15,2.3943174208421847e-17,0.01908159400307588,7.106796067293642e-15,0.9995692068584778,0.9997439023263122,0.9978678797758083,3.8299809598004495e-10,7.790145238667705e-17,0.03568431638509289,2.755774904521506e-08,1.9158907521228074e-16,4.826892597968055e-13,0.9991810059853333,2.2955219323916814e-15,2.1114434082847417e-14,0.0002525316351811094,2.705751569907258e-05,2.5605622596460444e-13,2.928900185109032e-19,0.9830043811613953,6.429603890660086e-14,7.117473579048769e-18,7.397713342037737e-05,7.304101639876755e-08,5.5958054208354766e-18,3.1736121638457936e-08,0.6039447362263126,5.410331481323316e-13,0.9996924860731563,5.3621066100763835e-15,0.9980291261832439,0.9997276180537988,2.1108134995670975e-24,0.9999447463343544,0.9999807205616927,0.9999691389226475,0.00039495576473704865,1.0181792051095488e-14,2.878957358649383e-06,0.9992256082178278,0.9993769751135746,6.6928035177622655e-15,0.9982940918455511,1.7348613824695482e-24,0.9999769985374849,9.72856178660606e-09,9.051014647986487e-07,0.00017014437713228425,1.3600262413756655e-13,0.9999710057237319,0.9993834479246239,0.9998396424259471,2.2894833032813763e-09,3.5030954036163172e-09,3.5894467640054165e-06,0.4421722128862592,3.5671600069945617e-07,0.9932294470260781,0.993927899019827 -rectangle,rgb,0.9883066387657111,0.9027284623954159,0.011665511299396396,0.9660781436563396,0.014242998594514382,0.812957867903003,0.9684783616057036,0.9033444519016329,0.8667985580117489,0.8378473261587538,0.012978920518683153,0.011845771982728558,0.011810552537715052,0.9048766460070976,0.990487841968131,0.9995566076309266,0.01344693511830679,0.01279193348487407,0.013820907316698066,0.05170056828277466,0.022418564117078973,0.05327897334000572,0.8096635158898838,0.06368921208121957,0.6252983770059836,0.012955682423446045,0.9968036125755277,0.5925696776163248,0.9993161707821886,0.6232318690079528,0.8111980551658468,0.013273515277740178,0.7831754517621158,0.6795776003537953,0.9631320618863594,0.9994447541846065,0.03831207221644458,0.03655694589793111,0.5576493627683756,0.6527594433612871,0.9387529759313673,0.36764051065513964,0.7917297018943347,0.6739202485344035,0.993613444749752,0.01349971468066565,0.013609730579083957,0.011632994554135676,0.9940371974986136,0.2589960069576615,0.8113124220647684,0.9427159916177066,0.8674218312435974,0.7333474075155442,0.997814872586188,0.6881761167226444,0.08498374388195064,0.0715835933343294,0.011889424073001115,0.011926289729213002,0.01286475593535753,0.025759278248353074,0.9997937808513485,0.28861300341064816,0.5403453093119461,0.08996911864495867,0.01715130779095479,0.867526409434085,0.8955393654430508,0.8777851129915404,0.7527766617507655,0.9436447541153828,0.9239424434421537,0.8686701620260606,0.8877149878948398,0.343541236340842,0.014378287484062087,0.07283511459654966,0.054007040525915456,0.063355904256424,0.9954114570097432,0.07777606223355028,0.10937071321780788,0.05103332678109448,0.8950786320881606,0.09097340871332649,0.9994048964132871,0.03434481373747699,0.9671249730590794,0.9954285049169552,0.9038203106502867,0.9999110890964212,0.10412217342856656,0.06654365862360768,0.05849189684317877,0.052873607906789584,0.9990100901126846,0.05066260714923399,0.08134815031081762,0.05198292126476995,0.04329437767295415,0.9326703590297717,0.6425328340614339,0.959305158743035,0.04115171857851861,0.8128884410169823,0.9894355027690385,0.059973062381743776,0.011281473590107767,0.637357005040613,0.013131677845383225,0.9486957691345796,0.9777675841084332,0.012831205788479431,0.012472963060341704,0.013013706810703579,0.7303810818987364,0.016804017291656956,0.01173271260900378,0.010258456797044615,0.013189823138604269,0.014699248145395177,0.31539614606969735,0.9194042521216922,0.01326523219261167,0.24219537129503804,0.014619156803449402,0.7252328167049623,0.13471149686158732,0.3135498097659868,0.050495565425859694,0.5677119916215214,0.8204500201963622,0.8688419484664084,0.7159874672911632,0.016083979922490332,0.014567042812974933,0.01397848625480243,0.1947233934546693,0.612198668478917,0.9553194633842552,0.9997220148658365,0.7515360995366903,0.889999927116509,0.06795951580057882,0.038670419567360455,0.08955476793882326,0.05758252810634502,0.01624529884395685,0.08255504143721511,0.9131076967246513,0.10403688695352808,0.9993006833218967,0.013070231667742396,0.9978774794553134,0.0119777057179936,0.012032678506708827,0.6615847254719329,0.49162186299488897,0.016121977536101045,0.782109642004271,0.015574118631377492,0.9990114644597031,0.6250722316341816,0.682749848101175,0.7429403445563102,0.6593771639574117,0.012068358825902792,0.01197281863170636,0.9564411650015454,0.09164945152460072,0.810719190546879,0.1687034560173443,0.9996973896994649,0.08785611621802424,0.9696835025173026,0.9999243632533333,0.9827180787540009,0.8304585801413579,0.6651734933537442,0.6349743729307211,0.9996120080491459,0.9610933601040473,0.7991540714444287,0.8123027147706001,0.996732752817998,0.7418473496357662,0.891689906082492,0.011960400031808848,0.011940851607123213,0.012994494671116118,0.49844612177870073,0.9900552816714464,0.03442874047446195,0.27174879209734537,0.994745289119051,0.6889584128927246,0.013001507778043814,0.7927411322107152,0.7281961226803082,0.9094800285830945,0.10681981350439737,0.6318047104763967,0.9965297697643152,0.016063532063831615,0.688005037646535,0.9976813109615765,0.9355546786071712,0.9887501024880058,0.9942498906101752,0.3008873537849956,0.042583615937412354,0.6093491427561635,0.01193719176986347,0.7649021907389663,0.013653507687931289,0.012405164255006701,0.9998878413261054,0.012312012948961525,0.013785721095221129,0.014408673706126647,0.8963715410066214,0.7502510830931443,0.25279924574252405,0.012722427398808403,0.012414465023613083,0.9025621974868477,0.013637865715430457,0.9998915689850109,0.013174426506062807,0.9810378084238788,0.2452987975581013,0.9162008003886553,0.6595578905264843,0.013396396386162543,0.013236091410197952,0.012249947467164936,0.5947382705415993,0.3463706492685357,0.14063183104274413,0.051826782929540606,0.9480915874071728,0.014141293113525888,0.014216018008326097 -rectangular,rgb,0.0016638130994488334,1.0,0.0002947601131513002,1.0,0.05227177795262263,0.9858380677750014,9.162731964424764e-05,0.1279616857624416,0.05486297861649886,0.004049402497620272,1.3240322396977238e-06,3.534278622001434e-05,1.3430088217972771e-05,1.0,1.0,0.9999762981488085,3.462087244904981e-11,7.316446542026009e-11,2.9305015932193736e-11,4.464676180698023e-08,2.328393308373989e-12,4.4884841412233725e-13,0.9602824112363183,1.9718596347030025e-12,0.9999952501497423,4.4399393890006207e-10,0.3730830996232744,0.9999803056181101,0.9997254605221192,1.0,0.9852802989291545,0.010605183792598233,0.9416501150149822,6.733156733815002e-07,1.0,0.9999313051839577,2.5283811657501536e-08,4.20790343070787e-13,0.8951779226845263,0.37634298762553975,1.0,0.9999999999999931,0.9781804685297124,1.0,0.1349528870309136,0.0032275428321575416,0.017263262663705786,0.000270612354351892,0.13410561850447505,2.7409759855379583e-07,0.9825869249657747,1.0,0.021806307712647823,0.6438382892766306,0.9526764292844204,0.7049029263197064,0.9942550428861264,0.9870771433839627,2.8216550760127018e-05,6.457093620564231e-06,1.0932253121063053e-06,1.4138113988928695e-12,0.9999993677694272,0.999999999999855,1.0,1.1060395092618806e-12,2.242998745458927e-11,0.010941893974675812,0.07782439310882351,0.08323592266043114,0.8136354578532279,1.0,1.0,0.006019137851084971,1.0,0.9999999999999594,1.5284709564481823e-10,1.135452920214452e-12,5.084329431953547e-13,0.9742943901819279,0.10025643662805823,0.9805749964656263,8.568134744938446e-12,0.8957248947739634,0.10643851347930323,3.830757048422454e-12,0.9998726692159091,4.435053985210345e-13,1.7209860240870983e-05,0.10080093444148341,0.09788369419104882,0.9999999879972422,0.9983204041264899,0.9911208298039815,0.9622956866586024,0.9270569400467744,0.9984639761928907,0.8909990770783701,0.9878950003497703,0.8735641115163721,0.642804019702966,4.68363813249676e-06,0.28774005602702624,1.0,0.6969615226159873,0.988072172733264,0.01858210134322853,1.6449851843778864e-12,6.760182691753894e-09,0.19216225929409317,7.500078824763143e-11,1.0,1.0,0.00020822179172940835,5.3103294542477784e-06,2.9981046890153026e-06,2.283782669018462e-05,1.0095317067536684e-05,3.4433337515747895e-05,1.971445830973618e-06,0.009503718372991469,1.6900032798586174e-05,1.5999148250865441e-06,1.0,0.00017600431082801519,0.1541999358063897,2.247329812657514e-05,3.741000823733461e-05,1.992172991605482e-08,3.4753672002057815e-09,2.9881656480480348e-06,9.795010494704458e-08,0.9889675929756189,0.006945232836237956,1.298700274258863e-05,1.3134712613086348e-11,1.9809225498941635e-11,3.0553384866009494e-11,1.0464061271374945e-07,1.0,1.0,0.9999956095941417,0.7747737306294386,1.0,1.0575957548809872e-07,3.9143217951561685e-08,0.0003000677478153892,5.722544110381732e-13,4.621195618707237e-11,1.470312531206145e-12,1.0,5.280826909778846e-10,0.9997562734972887,1.2429461276801231e-06,0.9580853107628692,8.55254012060774e-06,2.8912763435829904e-05,0.9999999567961951,0.9999996856268227,9.269244906786879e-12,0.9999999984873824,1.1149608698616142e-11,0.9996282999297277,0.9999991875582345,0.9999992423897504,0.9999991936100191,0.9999949519976941,1.5870996551657973e-05,5.900874747472292e-06,1.0,5.247225429996317e-10,0.9823473161948689,2.1288317667908806e-09,0.9999960423798249,8.55201147140458e-10,0.000107678597486061,0.9999999943194813,1.0,0.9999999991408182,0.9999999295186633,0.9999995913216373,0.9999892704722909,1.0,0.9465661354073722,0.9879264190512611,0.711288832455063,1.0,1.0,5.934883316162538e-06,2.325521819376846e-05,1.01381346307459e-06,5.925313877102653e-09,0.0034554008915564905,3.1749044347917753e-08,5.2797225166008275e-09,0.19999836139418656,1.3150344332852664e-05,4.175324644657095e-05,0.9621503627805686,0.5137975884625023,1.0,3.901188382772862e-10,0.9999603875360945,0.2837237082143691,1.077668012300494e-05,0.395081131668195,0.9395492327002826,1.0,1.0,0.03951840257833102,8.709021826402275e-10,3.8877394110778163e-13,0.9999940676249194,1.4433541113208158e-05,0.9999982645323846,2.3314948305314304e-05,9.474121314259898e-05,0.9999999652821562,0.000814475671352629,0.028682895370984878,0.07011105897390309,1.0,0.7690269175867039,0.9999999999992479,8.673890054786369e-11,1.182793686507501e-10,1.0,5.407511194326752e-11,0.9999999702258753,0.009224214338197706,1.0,3.204104783940212e-11,1.0,0.3150144928050118,0.012959733492395823,0.00017751917193800117,0.00016455543635017305,1.0,1.47386492444258e-08,8.983338029319808e-10,3.541133298719797e-13,1.0,4.278814042985754e-07,1.4156866990613455e-06 -red,rgb,1.0,9.740939493159158e-23,0.9892439455884066,0.9999985420103977,0.9994704985761312,1.1652800044675956e-13,1.0,2.3898283237931784e-08,1.174007058373538e-08,2.620047635838395e-07,0.04054946235745376,0.47198687599348677,0.3754812750322457,1.341913360167722e-22,0.9999866831054608,1.0,0.9999306649659683,0.9998112800975271,0.9999038153026438,8.384080292275132e-06,0.9999477775416962,0.9999999999704401,3.6698002149312107e-13,0.9999999999999816,2.5810141006322444e-17,0.9999999992654651,1.0,6.563555844554385e-17,1.0,1.266976527058647e-18,1.1737803514600925e-13,0.9759416901391696,3.404592777994267e-13,0.02061562802996577,0.006684339173550287,1.0,3.6699522863981883e-05,0.9999999768764053,5.594129962558806e-14,2.057923155581459e-12,0.9999711216278075,1.148920719738918e-16,1.2534859278037985e-13,2.2186656177099488e-18,1.0,0.2317476608553824,0.9392229436691963,0.9896548065518784,1.0,3.805219776511044e-06,1.4280901117715464e-13,0.999981307996808,6.087056575086218e-08,1.820485338084692e-12,1.0,6.773548070063825e-13,2.1244668938257724e-12,8.82861778661166e-12,0.39981468759903477,0.25854614459028136,0.051177368849977325,0.9999781974052855,1.0,9.643026674126903e-16,8.726428993690662e-18,0.999999999999895,0.9999999999423845,2.0921507532303848e-07,3.514894771288187e-08,1.0202961216452122e-08,8.952867919255361e-13,0.9999960799168278,0.9999649770550116,6.678291945938373e-07,7.014984549681627e-23,1.4049380481594497e-16,0.9999999998428406,0.9999999999999087,0.9999999999893705,2.5795959981477647e-11,1.0,4.795770063945251e-12,0.9962058179049974,1.930853339181828e-10,1.8926164680021002e-08,0.9992931416856706,1.0,0.9999999919467807,0.9999999999999922,1.0,4.1641155347929485e-08,1.0,4.175485996859305e-13,1.625410567918982e-11,5.317536734308401e-11,1.3726403883259432e-10,1.0,2.071490844307541e-10,3.2220147631549165e-12,1.6321145659378425e-10,9.856126642030887e-10,1.0,2.8781829750881806e-12,0.9999934193220434,1.6740857686270743e-09,9.56360022331283e-14,1.0,0.9999999999999603,0.9999999890997332,5.003508491862063e-12,0.9999999935153445,0.9999921796953369,0.9999966112120382,0.11689686362690374,0.08397548763261513,0.032564517097089254,5.9592374683137985e-05,0.0002655788523397911,0.5725107154577328,0.9997561260892864,0.9847794532604935,0.0022051219194598854,6.021473480428414e-07,0.9999889336437449,0.037144936720707844,7.93328676564393e-13,0.0024008198590991523,1.8683720018551434e-05,2.8062158901435795e-05,0.05877871210779999,1.2799997313805503e-07,0.041297173598568195,1.0290429595592412e-13,5.179386789372048e-07,0.00011273464903798921,0.9997394702527452,0.9998937798807433,0.9998347642711635,5.77356015434705e-06,2.432550598181997e-18,0.010759611347931871,1.0,1.1597665406555565e-12,0.9999683268651531,1.9525950285172114e-06,2.181067114594012e-05,5.585594197664742e-10,0.9999999999959526,0.9999999999475027,0.9999999999999707,0.9999884078202118,0.008268388572665925,1.0,0.03567777342245405,1.0,0.24275410330181682,0.2976551996072248,1.6348363588189284e-18,1.103801171012966e-17,0.9999313470242015,1.9102461073048785e-19,0.9999375700418449,1.0,8.962685780129488e-18,7.868914731718441e-18,8.599969234317418e-18,2.6592478203818266e-17,0.2284459883891355,0.23276181026497347,0.9999931681986898,0.006204590589801685,1.4327526886556395e-13,0.003057771563474521,1.0,0.00234795580548454,1.0,1.0,0.9999403669926915,1.3049780622208478e-19,2.0801280800055547e-18,5.927934829873896e-18,1.0,0.004344456141950916,4.2086186121205793e-13,9.578881738492418e-14,1.0,0.9999300607875317,1.0327236937362965e-22,0.23884067763635133,0.3367186880685839,0.04250109760427739,0.867288578035736,1.0,4.2710985790949016e-05,0.00746466171814421,1.0,4.45849006208631e-05,0.03814193630407119,2.4300338172108356e-13,3.1775906769614027e-12,0.999981410229841,0.016074260226828167,1.0629325290605828e-16,1.0,0.0005151268506102813,3.012343568551818e-12,1.0,0.9999907001161192,0.9999919903244802,1.0,0.5688774907035995,0.999999968264501,3.016638033416184e-17,0.2953455263636585,1.5914479274490684e-17,0.010212914140652948,0.21303837352052638,1.0,0.8738711479315064,0.9911434918658946,0.9635565817324812,0.9999698755196873,1.1784861846729957e-12,2.816718402062043e-15,0.9997235993620198,0.9996987246733385,9.776085872014271e-23,0.999444161080957,1.0,0.9847421442133774,0.023091192214570178,0.9997674198061605,0.9999747102897188,3.0748369428893245e-12,0.969276636176894,0.03986561019697891,0.42434128562708645,5.146433987859837e-18,0.005908036932505154,0.007864865918862285,0.9999999969741378,0.005770989801134271,0.01251369308974452,0.006983077145132086 -ripe,rgb,0.9997829252328285,2.1462674523941797e-30,1.4738722684463822e-15,1.6713661350601789e-78,1.1972589227556358e-20,0.9999968624528287,0.21043908137474263,0.9999999998551963,0.9999999997840991,0.9999999999493914,1.0394509483814865e-07,4.811360075279212e-12,4.9017542336957456e-11,7.031175349828046e-32,3.4856669672975383e-85,1.6623946344974217e-07,0.04630901142311577,0.013904484444896186,0.09938054746501432,0.9998590486437333,0.9986889981786924,0.9985042274381445,0.9999990594543708,0.34164417272300834,0.0035815041411415755,2.99657152792662e-08,0.9949652567964792,0.01190327158832409,5.297501342045115e-06,7.824286381541827e-31,0.9999968158470044,3.8645426376425236e-18,0.9999986019153706,0.9999999999969971,2.788460391166791e-74,2.8986627763715537e-07,0.9984265113774886,0.9997940361388177,0.9995751393644918,0.9999990443878154,1.1282145489462505e-74,5.199540485829934e-26,0.9999961868408894,2.2345564352535203e-34,0.00044531919205448187,2.2096713436343414e-15,3.433547132271365e-18,1.6764714071986322e-15,0.0021756105873161776,0.9999999987251755,0.9999974450929999,3.907777045482272e-75,0.9999999999061666,0.9999995763423096,2.8874446574298426e-05,0.9999978849850262,2.2976003620309151e-10,1.0048899529786389e-10,9.9542747572346e-12,3.760387314622283e-10,1.2085117636107837e-07,0.9997182392478525,3.1437730395199514e-08,3.6302909260082744e-25,2.4872234147916345e-30,0.9923736568467731,2.398372899940225e-05,0.9999999999465807,0.9999999998803188,0.9999999997725666,0.9999992881029635,1.9593953583007174e-75,2.4854501796793477e-73,0.9999999999670777,4.022244158581889e-24,8.012179532342521e-25,2.0939315228122663e-07,0.9462627467559676,0.9962674351578431,6.948264948893802e-11,0.9984408196015088,7.818376587821806e-10,0.9999999987734183,5.6661809938697424e-11,0.9999999998377993,0.9999999959412975,1.8888041530932208e-06,0.9991480332731433,0.9999985205598223,0.9988393548738554,0.9999999998889859,9.331327260534248e-09,3.4397461778082456e-10,1.520930777264966e-11,4.721393929512093e-11,4.308135787140889e-11,1.2159060074547232e-05,5.614214551158564e-11,5.632851762434587e-10,1.1904755125041387e-10,1.1454668913614167e-10,0.25078175517352114,0.9999992475067718,2.8153021485921113e-77,2.997601089008093e-11,0.9999960768220683,0.0008142604597152349,0.44898904494847586,2.3266682753495574e-10,0.9999995553492086,7.384966435692653e-06,6.648042452806981e-76,8.976824982974792e-81,9.031908470489232e-13,2.2283951002275425e-09,2.2349909692288484e-08,0.9999999999910094,5.163618818697463e-07,3.4733265257139935e-12,1.206767077123069e-12,3.269397522034575e-18,1.1929010582982293e-08,0.9999999985325516,3.9439401797907323e-73,4.258404281998758e-12,0.9496621714420689,5.856296602203452e-09,0.9999999999868308,0.9999999856610007,0.9999999999788522,0.9484040072078395,0.9999999999959803,0.9999967295136611,0.9999999999635423,0.9999999999921907,0.813560985657312,0.29435485040380244,0.14254767799508777,0.9999999956741621,1.6120756027946695e-31,2.6257661497847954e-73,1.5979316375461457e-06,0.9999994493788525,5.1707253441362266e-71,0.9999713705591757,0.9975174669131733,0.8960362242196777,0.9942627797073205,3.1158001820700677e-06,0.9280045938265266,1.1784008042084459e-72,0.9999999950496128,1.450447930822587e-06,1.3897256478936662e-07,2.7804118691454936e-05,2.288084430322329e-10,1.4625986648023866e-11,4.845175341044818e-06,2.765600358482905e-07,0.773646785481952,2.600667818765082e-06,0.6191315328330974,6.557575096191561e-09,0.00018796699690763356,0.0013759201797279744,0.015315684322151501,0.012934279393589931,6.976993482815552e-11,5.213073985438345e-10,7.047767109741661e-77,0.9999999879063043,0.9999974349369248,0.9999999994864788,7.699834872477677e-08,0.9999999762980344,0.20136577429047878,8.73416655236035e-09,9.22311671717628e-82,1.2569656281248876e-05,1.2954148275608219e-05,8.413093599645898e-05,4.8243986482939707e-08,7.671090653855432e-74,0.9999990790232931,0.9999960534191636,0.000358442435854832,9.476728451769967e-65,2.4552954131712403e-28,4.979294493767451e-10,1.903159553346195e-11,1.7798692211977784e-07,0.9999999999957223,0.999587727564036,0.9931057728155908,0.9999999999472786,0.002665699516331944,0.9999999999887497,7.446734687777869e-11,0.9999982040052782,0.9999997452396224,2.463759154734769e-72,0.9999999965871988,0.12139494525191087,0.9980754257045085,1.895607151471223e-07,0.9999995805131924,3.115298142447799e-05,1.6030844248648876e-74,2.3180379038876883e-84,0.9981492085283619,0.999999999982035,0.9999614448486388,0.0029734858617167207,6.014765611900281e-11,0.11343748977403724,1.0436913953297467e-09,2.126151923196835e-12,9.975828692207195e-09,1.8466043313247894e-15,2.872777224480788e-19,1.6704504819536104e-19,2.09015352727346e-71,0.9999994505388771,1.2355244221800724e-24,0.012377974065555216,0.005655285787007361,2.2441576767928192e-30,0.09181112347120654,9.900260412021568e-09,3.458281556757624e-18,2.2431615429997436e-78,0.9999999999322213,8.9139316296936e-73,0.9999994287690736,3.2735680473026755e-18,3.887451796331768e-12,2.814073493839847e-13,5.127365483173533e-32,0.9999999999765354,0.9999999990566439,0.9999644959771982,3.076250303898027e-72,5.617943975957835e-06,7.251952159840474e-07 -semi,rgb,0.09279200546274963,0.9996836964495276,0.0017698383162459304,0.9999999999997897,0.017904557765923278,0.0008434734976140117,0.13802840146583248,0.0004080133576346617,0.0002740296937822438,0.00015954329585319212,8.285013126610228e-05,0.0004292761525015446,0.0002840324526871886,0.9998321288944539,0.9999999999999973,0.9980488632120001,9.14659854439521e-06,1.0613040122676062e-05,8.197180699649366e-06,6.259991174166189e-06,3.275038972219916e-06,1.1187442958993177e-05,0.0006666541370632581,5.1543808740871694e-05,0.005926449676901356,0.00011183723568878493,0.4897477020142937,0.004035191992690712,0.993713829383887,0.997645110821679,0.0008332326329615032,0.005910351727101871,0.0005789686821132743,3.210800626596588e-05,0.9999999999986169,0.9971270119273388,6.422016294702391e-06,4.644751604716504e-06,0.00040545263943821743,0.00023519079121195495,0.9999999999977787,0.9408851237049161,0.0007349048258880042,0.999578630389155,0.8016037580800779,0.0019543836548788778,0.006211940387247594,0.0017242659867018973,0.7687900839695969,8.863936023901769e-06,0.0008029504108732086,0.99999999999832,0.00023972604190172726,0.0003325001641547536,0.9633126143786124,0.000331136558651353,0.002759545383530644,0.0025243801538140857,0.0003792376534457538,0.0002007245850554582,7.982835946433786e-05,3.0107181715691864e-06,0.9994560969240874,0.8776265889445378,0.9955604094264546,3.140139373571251e-05,5.028491189988982e-05,0.00021832121936057164,0.00035357181039953514,0.0003138326772205593,0.00041419418699422083,0.9999999999985527,0.9999999999948375,0.00020393483303251096,0.9950962818075525,0.8958569723373332,9.153372036958815e-05,3.321116921527494e-05,1.343526223726082e-05,0.0022848121166612586,0.3280076732900487,0.001972508018573033,2.438693986302895e-06,0.0017760772964989684,0.00036982220160016095,2.326149492250748e-06,0.9956172972674814,5.50536400975615e-06,0.010641068458507727,0.3174262821783426,0.0003929070362360107,0.9998508736071344,0.0034092216290635283,0.0031845687190548565,0.0021974529852767308,0.0019528575680118473,0.9883407749242082,0.0017619083251983107,0.002221282018569031,0.0015976838076152697,0.0012645934841298179,0.052227807143657386,0.0002131308243680372,0.999999999999557,0.0014973943843733521,0.0008761110961645936,0.6538699907799228,4.3728171260994487e-05,0.0002172510932254422,0.0001891387899332843,4.292228199634258e-05,0.999999999998944,0.9999999999999518,0.0006348412455829317,0.0001549440223885858,0.0001088329747756698,5.2271301175524544e-05,8.607540554016519e-05,0.0004495534002113544,0.00046734524496285505,0.006045564610224024,0.0001411239933561953,1.288156729695948e-05,0.9999999999939533,0.0005027590926176418,0.00016340589788014533,0.00015882519581247994,5.3842261762103784e-05,4.8225923899190575e-06,6.294833980983326e-06,1.701812798255582e-05,1.8282430140350576e-05,0.0009057390097828773,0.00020784251530273185,4.6588468284094975e-05,5.2186220580891905e-06,6.94768777326802e-06,7.726783775990836e-06,6.848086783082008e-06,0.9981087567134936,0.9999999999973499,0.9983920197371743,0.0003928959050094645,0.9999999999777538,6.842833228865023e-06,7.03348151945834e-06,4.209986065714076e-05,1.587114882206173e-05,6.706243667952974e-05,4.1947663975346266e-05,0.9999999999918527,2.7975341785556367e-06,0.994861670820098,7.941472092745774e-05,0.9648411763823942,0.0002201988358289202,0.000359458072612869,0.02260287384954799,0.015322732981140248,5.489681742120508e-06,0.05300877963967713,5.9809501519578334e-06,0.9969362330625278,0.009865779129851749,0.00965436862793117,0.009223321709744119,0.005717067155252071,0.00027389273485544757,0.00019040093631871242,0.9999999999994296,2.7287973913296584e-06,0.000799529301647631,3.840750031534558e-06,0.9989570655717983,2.8833622511400677e-06,0.14553337887047635,0.9998801661974144,0.9999999999999767,0.05947417711666656,0.0194910294759451,0.011959066424787352,0.9986809877248047,0.9999999999982216,0.0006097926213114169,0.000872704113107174,0.9088855242323005,0.999999998934187,0.9991518471597164,0.00019170514483944412,0.0003400160335220482,7.550947785697362e-05,1.3138107783279172e-05,0.12404719357932584,7.2288296834556e-06,5.655843606463912e-06,0.7905765298348805,4.192007057249621e-05,0.00029630111732270673,0.0006504858025535271,0.0002945741506754916,0.9999999999901579,2.728326770497485e-06,0.003259641491365677,0.42062015297663574,9.699260514039275e-05,0.0002502498680189857,0.9599997277922401,0.999999999997476,0.9999999999999953,0.2735234622401943,5.726193093471646e-06,4.240319036012796e-06,0.0056190947717298335,0.00027748835160076787,0.0074467191843943376,0.00019768685962531419,0.0005240034904803697,0.9997968430620258,0.001808575125553859,0.009800653431694834,0.011346015672858882,0.9999999999825935,0.00038931591576181506,0.8212565472389142,1.0744202112020612e-05,1.1952892139924337e-05,0.9996804354222073,8.131188900868042e-06,0.9998057083846191,0.00597743378720305,0.999999999999891,5.181194674902972e-06,0.9999999999926086,0.0002236673973911739,0.006151998408831733,0.0005095391048079379,0.0007378344742317631,0.9983053795941284,7.698595002834143e-06,3.2505980772882974e-06,5.493716654767041e-06,0.9999999999949871,4.577189908629289e-05,6.590811897271076e-05 -semicircle,rgb,0.3446229259280771,0.960613231621823,2.942862180302402e-07,0.036618219870400176,2.6056370594695297e-07,0.6962883644536284,0.02043789561651431,0.7643184716096847,0.6327255976933559,0.447800292762356,1.1052163758446928e-06,5.66904454725933e-07,6.107072914245182e-07,0.9589822932916746,0.31553359492617167,0.9647623132574152,3.786381694814071e-07,3.7417688020547637e-07,4.1937491518412285e-07,6.486819429590795e-05,1.1800466925228812e-06,1.4527192765059187e-06,0.6650178073015865,8.5022686233428e-07,0.39391595986382216,8.231518082799114e-08,0.8419302288972731,0.31501051819764875,0.9412332444889245,0.23640343293503918,0.6913248121315453,3.7522192640250274e-07,0.5915107031712525,0.04351186879607995,0.21139049272066537,0.9477197772161629,2.901217732263374e-05,1.419877931979665e-06,0.1719770091093688,0.25338396813686875,0.017838163471922398,0.029418429516059073,0.636241485964327,0.2820315403447881,0.20679904214736566,7.249978466517424e-07,4.358768979669326e-07,2.9207368399655037e-07,0.2611823880068966,0.0031180033971205477,0.687943708892836,0.019184840311476627,0.5970170972564176,0.4214477195688152,0.633426161111506,0.3397100867362146,0.0005500732972035513,0.000325205356917435,5.962200731857025e-07,6.820583406224851e-07,1.0610136798768096e-06,1.4531715363281135e-06,0.9914176820609379,0.012273712122206444,0.11704244533138092,2.313514439489588e-06,1.2169368612146204e-07,0.5677682647343885,0.7253728171794706,0.6790148072908053,0.4868634134236397,0.016657013278725222,0.012276310396505263,0.5440382504903352,0.9591192840071421,0.024682076725811422,8.85156346459752e-08,1.412515703947492e-06,1.3197128214127095e-06,0.0002237940290470315,0.7434707655212686,0.00042696240550924817,6.0443458509955444e-05,0.0001154542814897477,0.7354777505937794,3.333036090963298e-05,0.950400298926063,1.0938010269206699e-06,0.11159297661399872,0.7531787070097726,0.7562801529276301,0.9983792394987777,0.001016220053014702,0.000253824343793811,0.00017462554828217143,0.00012813423087770502,0.8899609907511019,0.00011288403609247609,0.0004869244874117488,0.00012354402272931058,7.028912253886196e-05,0.0046487844332346465,0.2316064288132617,0.03137884683668175,5.864954350176964e-05,0.6997583876780555,0.09198098865424699,8.213334207200668e-07,7.718785917165104e-08,0.2153489854670817,1.166350996772292e-07,0.02124685819127599,0.08137763874174042,7.905166568010734e-07,8.838917992775676e-07,1.1099134436367514e-06,0.11816444956392363,3.2337236085251953e-06,5.300858842098452e-07,1.7052770663099936e-07,3.51671915638959e-07,1.8644826986690334e-06,0.006442403823894582,0.009712732866550782,9.869162970846298e-07,0.010024642490908765,1.8066953600530074e-06,0.1252969339565422,0.0005066959462949924,0.001997717068123404,8.746399417802923e-05,0.016300156662657272,0.7189459446775481,0.55104399935449,0.09842917189788487,6.674428021419669e-07,4.8034926296193e-07,4.572948592243822e-07,0.0014339863131833546,0.20450775167937674,0.1519842653793932,0.9895336871708079,0.4778223075940638,0.006068613239399492,0.0001365797951714358,3.1010558980953636e-05,0.0005068702768968908,1.3488061815525128e-06,1.0470586084399846e-07,1.6206562331485733e-06,0.008486355065010788,0.00015946240916220463,0.9299858286078452,1.1419356365013693e-06,0.646230093362294,6.883837389572704e-07,6.445268492679771e-07,0.5152131432002333,0.174589549624453,5.795390726554566e-07,0.8110245999413164,5.29454326825145e-07,0.7904172303919432,0.4088610611465394,0.5430587616338459,0.6844897801806046,0.4687477580384725,6.90973796720967e-07,7.012903116154784e-07,0.027968488538451994,0.000123424504667584,0.6862423664435988,0.0005429619332441181,0.9825764583141374,0.00012376034113718444,0.021930375864864852,0.9988504620505968,0.16001422569647286,0.8933649712696186,0.5206224003301484,0.43645472174407274,0.9695065516736779,0.2038655569875521,0.6322833406424924,0.6981335207584504,0.4976852577682197,0.0011305541119834425,0.9540654870066012,6.968327811299326e-07,6.255355334793279e-07,1.11182751985294e-06,0.005621553820181988,0.4030567040323308,2.24729787288384e-05,0.0016662746818080327,0.31826873704345815,0.085262599035883,9.914529147917482e-07,0.6254970660910576,0.396881416660518,0.00828138770741089,0.0001581527996043451,0.3852005565241827,0.837095264393123,2.712583898346617e-06,0.3103899157751096,0.6067153579035102,0.014365832766094414,0.24490813602201109,0.6354423947885993,0.0012912569109848693,2.053724924009606e-06,0.358611143155824,6.501911105171323e-07,0.725747477407868,1.3152614579307172e-06,6.953128423365958e-07,0.9973442110519011,4.32281525107904e-07,3.476974952838852e-07,4.382428542397842e-07,0.006764635898454266,0.47408523215660525,0.007893149939688444,3.8478770490381e-07,3.653290166625702e-07,0.9604874921132863,4.9163933634447e-07,0.9975284128859058,3.5128248625493375e-07,0.43032707867364395,0.00031047996294153424,0.009896934430986588,0.25797776015325447,3.9136199265388276e-07,9.73552184690621e-07,5.89888573806892e-07,0.1682213673948196,0.003410777916641158,0.00032027863771901167,2.3882816311188743e-06,0.12816481667936333,1.5874580039670514e-06,1.6512578474952933e-06 -semicylinder,rgb,0.9229237183115763,0.9744825601551009,6.280525520735413e-06,0.889105749823768,7.749790900539059e-06,0.7159705070803069,0.5024989223457981,0.8340766517187624,0.7283848133935871,0.5928367572714182,1.1802002655295859e-05,8.406088315007406e-06,8.534318179701379e-06,0.9752350307883824,0.9903304586239321,0.9994353760917846,5.893761689449479e-06,5.698579325824694e-06,6.3198292291003845e-06,0.0002636005283731948,1.5034299498650839e-05,3.4125422694544984e-05,0.6934211219721157,3.168888894386842e-05,0.4169734334567731,2.852608110907073e-06,0.9919511696614263,0.3439182119335651,0.9988967700266683,0.4736182893906511,0.711523297390306,8.449126704780558e-06,0.6266978362497614,0.12581817865577555,0.952205396202125,0.9991500512479471,0.00013558923968804947,2.4247479421361192e-05,0.2109195983743793,0.310602773689452,0.7501911493026721,0.08960844823642262,0.6620390270249518,0.5702387806322986,0.9392399664811762,1.1543625417296308e-05,9.371843985209632e-06,6.232491837099749e-06,0.9499795488779051,0.008442106694819146,0.7093943565756796,0.7697644979800184,0.7107650614871763,0.47842930515241816,0.9905498518456957,0.3931198876659682,0.0017783635953976334,0.0011606762857855064,8.604575441030373e-06,8.953857228744256e-06,1.1441345780057149e-05,1.8560980183337282e-05,0.9998621699977077,0.04263375113044247,0.29889799121772337,6.973809670277144e-05,4.133985144814925e-06,0.6958933236722178,0.8072264259785445,0.7644938963136207,0.536028938984389,0.7591976705171705,0.6630730887599668,0.6851988219382715,0.966078302043233,0.07391683808828024,3.162534858417029e-06,4.528066362883019e-05,3.3038033879220255e-05,0.0008559010626989286,0.9849665716137161,0.0014167070741432136,0.00042579114399249383,0.0004976923810004218,0.81147078585493,0.0002644838101927865,0.9991129101625761,2.025074499185376e-05,0.6933432219476978,0.9853805722380256,0.8309089494035136,0.9999720118295217,0.002958621889244488,0.0009706745333987228,0.0007012059301909108,0.0005442648087939235,0.9978351165206666,0.0004886539818770456,0.0015875345889005974,0.0005206104053995727,0.0003283986444781643,0.19128784126762396,0.28900431745372496,0.8601716939498337,0.0002890299892823625,0.7181974903176851,0.8597456279307166,2.9432672249869854e-05,2.5913722910554614e-06,0.27392317485651385,3.304247900209717e-06,0.7979825697832066,0.9498614929013438,1.0941393693733766e-05,1.0511562435516771e-05,1.2040799771020982e-05,0.24228961032783966,2.5769115972703476e-05,8.065894019108005e-06,3.923321553775151e-06,8.125547378935146e-06,1.7766514047573783e-05,0.015575728527060104,0.6207046368617641,1.2497749707736963e-05,0.017790687123963672,1.751093045541361e-05,0.24602901466669985,0.001695096292265391,0.007816362017281375,0.0003237332265579993,0.05376854854845254,0.73586658770683,0.6890251113404617,0.21234114674819712,8.874656089951333e-06,7.006531764540437e-06,6.660903817568873e-06,0.004187462999244456,0.44307944984692404,0.9302316133102019,0.9997975803793538,0.5291151578877149,0.4781691826838694,0.0004909445809338738,0.00014238724158235607,0.0013900847706957832,3.541997743929919e-05,3.7202506313554006e-06,5.4502815264375236e-05,0.584682745212362,0.0007052504783694043,0.9987716245600916,1.2048098804322761e-05,0.9910407785422033,9.075849019155927e-06,9.032512293344589e-06,0.5316572723382827,0.21659402138427145,8.246054394674786e-06,0.798776745703304,7.689939837418135e-06,0.9969517539164325,0.4324650292742712,0.5514406829180464,0.6780359248862579,0.484133863282155,9.259959784987935e-06,9.090122459520327e-06,0.8437524115603284,0.0005535795361956992,0.707875748293655,0.0020950092715423915,0.9997211004254166,0.0005382514190542978,0.520432409605508,0.9999796155352562,0.9730889130661942,0.8781516515808322,0.5352852537148912,0.45809392108081515,0.9995374954867517,0.9484634325161685,0.6647148595329745,0.7167358553864294,0.9820838788546369,0.1219855498658442,0.9680805796254989,9.054989086634547e-06,8.807500307330531e-06,1.178774487367951e-05,0.024643582669229558,0.9402177459594969,0.00010961572104091953,0.00610143725234708,0.9606403914053642,0.18306197922476972,1.1978806837967307e-05,0.655693100801154,0.45809181878548844,0.5709630516251287,0.0007157747848584618,0.4084154336613459,0.9911630481684568,2.2795622894920974e-05,0.37170484384575914,0.9894637601792642,0.7175313657853258,0.9863893806086891,0.9764788716798091,0.005865095276006068,3.30914452947546e-05,0.38480555179135595,8.890716049337753e-06,0.716212432923917,1.4168398419166052e-05,9.839019889373567e-06,0.9999558638486331,8.08381285472948e-06,8.571990328985909e-06,1.0141875248800294e-05,0.5085963346344349,0.5257094691907948,0.028971628391725783,5.768965597641831e-06,5.5424903660469755e-06,0.9743888043506774,6.831793587323826e-06,0.9999586947430921,8.108441576764589e-06,0.9851385666041972,0.002181707397726923,0.6133558072758101,0.31743441262915884,8.725711640526976e-06,1.2393988440165935e-05,9.08147578553429e-06,0.3997519104646748,0.011767043242324624,0.0013321047875217771,4.223340034391409e-05,0.9115425200636317,1.4813761574459451e-05,1.5521058112274503e-05 -shape,rgb,0.19767920013655976,0.9999999921773163,0.341680837016287,0.9999999999999909,0.7829938852588081,0.8302013062429687,0.12333307997456165,0.36368336150851027,0.30422477841129664,0.15864437867661133,0.054766976319373606,0.1752370508706617,0.12874466092048123,0.9999999956450856,0.9999999999999998,0.9889521189471194,0.0016420645695613954,0.002132863913789649,0.0015223414818887123,0.009507237701154546,0.0005422178087634643,0.00033782601675215934,0.7743616283042856,0.0006632518633576691,0.9895599460816463,0.005551195668368724,0.6148050116024284,0.9834947297697538,0.9746061375587288,0.9999998729532092,0.828596944491775,0.647399911890957,0.7546328316492587,0.012592671949426315,0.9999999999999925,0.9845830598167846,0.008651731168092085,0.0003091159903046712,0.7512366891184309,0.5311195702895719,0.9999999999999387,0.9999954126466156,0.811632098930613,0.9999999745062558,0.6180571860043472,0.51148523284488,0.6810862137597545,0.33504338234941383,0.6055406977234546,0.011457502048203064,0.8202120270315824,0.9999999999999509,0.24252037321727105,0.6058319515803376,0.8839578943806132,0.6368872032160112,0.9496043127209824,0.9380279510944616,0.16253762807466013,0.10012089150102485,0.051644972370635235,0.00044559012507717675,0.9964488013935012,0.9999878980044073,0.9999997194032256,0.00046933784564772205,0.001852845516292104,0.20333134905166372,0.32490342526245747,0.3337749764596338,0.6704774459534791,0.9999999999999496,0.9999999999998666,0.17358408225179423,0.9999998896625806,0.9999915227367954,0.0038073320346946335,0.0005031148649854226,0.00036122398951173403,0.9254501889841219,0.481537277696353,0.9261220414547096,0.0005211150842957211,0.8890142129947622,0.35000629700713387,0.00042521825723246037,0.9803811528847971,0.00032849022396564884,0.050339064814180344,0.4796054535434523,0.34124389617925427,0.9989594781989773,0.9641935451101346,0.947355029785891,0.9177784050380448,0.9008441847843993,0.95701460994819,0.8875689173043858,0.9360035733351999,0.8799679662306708,0.8306940151711852,0.0539576791528882,0.499226172001532,0.9999999999999845,0.846352177085947,0.8383552870453838,0.45697195468809537,0.0006188024700548841,0.014450051110755605,0.4556123126347154,0.002744114242232315,0.9999999999999654,0.999999999999998,0.2756849796190066,0.09020672000069394,0.07206868509763192,0.03644851937620279,0.09175326228834126,0.17562408097051677,0.0858973693695145,0.6410694548168036,0.11723966324009893,0.01937070547049224,0.9999999999998248,0.2562036305809616,0.5246463562531609,0.12886246043578972,0.04245709576525046,0.005652286354569019,0.002769666701241764,0.039058484078902965,0.007156825327038735,0.8408159432294249,0.1803088810783979,0.030822698819027317,0.0010669904625021823,0.001298988312188721,0.0015212502150783874,0.008929323792118393,0.9999998907908613,0.9999999999999851,0.9928182250437574,0.652721038541625,0.9999999999994611,0.011689252451959708,0.009987937230580876,0.14202011549857568,0.0003797741548777968,0.0024511963980381837,0.000549829337700323,0.9999999999997686,0.0018541233284282235,0.9764463038590011,0.05332943151641455,0.8879397627098369,0.10947580879492577,0.16185041189195554,0.9979052374359934,0.9965263669115102,0.0009696641949355613,0.9992478733839405,0.0010488329172110378,0.9774532617838619,0.9943620251046165,0.9941314081900785,0.9935622219640724,0.9889430491726197,0.1331292697609645,0.09680713622954756,0.9999999999999802,0.0019012630640655216,0.8196122343245498,0.002626047119105378,0.9936758070044021,0.0022449339606108905,0.12888339929728979,0.9991705194969519,0.9999999999999993,0.9993338038049502,0.9974999849529631,0.9955199433645318,0.9916084543352963,0.9999999999999907,0.7574935098076567,0.8378781871002887,0.7889172213008148,0.9999999999804903,0.9999999795193937,0.09708577246853153,0.1521357705680531,0.049964657411888005,0.0031137267459276606,0.23868644421801472,0.009689224036127476,0.003220566716636478,0.6378804702477238,0.03123769092344033,0.16982253239938083,0.7803221453542036,0.5629810519036961,0.9999999999997369,0.0016750630540514483,0.9781761476103297,0.5778782412518084,0.09611821004996167,0.530871202826265,0.875471489692982,0.9999999999999221,0.9999999999999998,0.4090770152869527,0.0018255149536156505,0.0002865822819804244,0.988910548385222,0.1304309985194028,0.9913746167890446,0.13644369310115742,0.22644700534678702,0.9985657879964265,0.4109952318019446,0.7298545324297536,0.7843050969798067,0.9999999999995708,0.650479951277226,0.9999794057940359,0.0022517866624574604,0.0025319437175692606,0.9999999920967307,0.001830978742362629,0.9986307315296452,0.6385803251656675,0.9999999999999991,0.0007115707454254459,0.9999999999998059,0.5068853263657387,0.6622852088255432,0.25724819660696574,0.26917047488982326,0.9999998946590953,0.004273435446014131,0.002067132153390215,0.0002787645979963818,0.9999999999999745,0.035143136157841925,0.05264263866152199 -shaped,rgb,0.041650034706146595,1.0,0.9508290070155752,1.0,0.9989720900280253,0.9825343544959718,0.025571133698542903,0.33088595523032605,0.25638949874253175,0.06632507791098917,0.15556486241551382,0.7442141932563446,0.578548580620705,1.0,1.0,0.9993897929949073,0.00013095488020434197,0.00022899014773222694,0.00010996505251606139,0.0019087608089659461,1.0016801626384291e-05,2.635949909724255e-06,0.9651826683015732,1.024009186704645e-05,0.9999748887911808,0.0018466288120775273,0.5041997706202126,0.9999398551265818,0.9971855672050273,0.9999999999999982,0.9822402300451322,0.9958853154073791,0.9602673175139502,0.0004962436023122095,1.0,0.9989167219167395,0.0018887796527626416,2.5604841029370323e-06,0.976056267377811,0.8174826162656271,1.0,0.999999999998386,0.9790260588875558,1.0,0.6350005870562482,0.9862846628925389,0.9969145850550535,0.947983793984593,0.5973636612202857,0.001010193505709771,0.9800584535006702,1.0,0.1550679338937309,0.8720460232345734,0.9597742767530217,0.90913103637829,0.9998701239169968,0.9998181676041807,0.7060964476084384,0.43068368132652624,0.14035881996235883,6.229269143346923e-06,0.9999121300318388,0.9999999999903899,0.9999999999999925,4.019799397465283e-06,0.00016717302995352247,0.10413920995518876,0.26739183512516296,0.3016453248075042,0.9194897172148074,1.0,1.0,0.07251598966013977,0.9999999999999964,0.9999999999946025,0.0008100246609252387,5.270100712965195e-06,3.031568807804405e-06,0.9997477815028345,0.2874668446438646,0.9997166485186579,3.533598745454141e-06,0.999461230932889,0.31447992928641116,2.639120773436084e-06,0.9982471850588337,3.0371840677043327e-06,0.003100052880186063,0.28309064523450883,0.28804734243151725,0.999988918147084,0.9999286054028117,0.9998787839877787,0.9997022906960609,0.9995744918076944,0.992952402757261,0.9994474994295828,0.9997874647950272,0.9993453293321928,0.9986740868585511,0.006244170361916028,0.7796407704787461,1.0,0.9989902341588649,0.9844801902852035,0.37302249611662525,9.125503020054145e-06,0.014081331374366643,0.7150791002810056,0.0004180356822666206,1.0,1.0,0.9010116145475786,0.3649205035700996,0.2514740145793327,0.0038577408870300502,0.3239533897244998,0.7469832561416785,0.387731737701866,0.9956790314334825,0.4807472707495465,0.0025595952647065046,1.0,0.8778943306097483,0.9174779527355789,0.5372113920224793,0.00536408813058447,0.0003690367405466574,5.01553780996831e-05,0.03532287670054478,0.0002003146315184896,0.9846424237516308,0.07895776204961039,0.0028253280151020943,4.8059390092729523e-05,7.688087740019767e-05,0.00010856487923586405,0.0007384169166685539,0.9999999999999987,1.0,0.9996698254561744,0.9070260700648695,1.0,0.0024687166603024587,0.0025198641720962055,0.3104121026015435,3.2679764631545464e-06,0.0003075277388052253,5.938052408947825e-06,1.0,4.549801996091548e-05,0.9976529341957642,0.14744995699509958,0.9622228459356964,0.4809080145164901,0.7016603360887272,0.9999989949861452,0.9999980893265721,3.98856503666711e-05,0.9999998275451238,4.785724032978705e-05,0.9983044827726706,0.9999929597372943,0.9999911887336582,0.9999874585747301,0.9999693039054691,0.5933286831483052,0.4110727588750825,1.0,5.162010511642276e-05,0.9799363902707369,6.81575302549955e-05,0.9997642852432123,7.397756677156147e-05,0.027703692758370868,0.9999923957681677,1.0,0.9999998402355137,0.9999985417320056,0.9999955086750891,0.9996325359902479,1.0,0.9595327487142891,0.9844016130071317,0.8708392074259037,1.0,0.9999999999999998,0.41287875977835087,0.6703309589173189,0.13106386490745484,4.3569219288861635e-05,0.06159251943878857,0.002542870278703855,7.50669892072618e-05,0.6470498763731508,0.0030930503386631006,0.7128152413201884,0.9691625957234946,0.8284227655948975,1.0,3.652031063678698e-05,0.9998820452569821,0.4343681359858228,0.3546722730892433,0.804292288055577,0.9543158778162052,1.0,1.0,0.20039144079607057,2.2516199026877694e-05,2.001597698308843e-06,0.9999725963764489,0.5837987564243979,0.9999755593059836,0.5833696324606752,0.8445363530519335,0.9999811464529919,0.9712122202444653,0.9981193581451026,0.9989406576370773,1.0,0.9056296312232014,0.9999999999742097,0.0002560328685612332,0.00033047125986396215,1.0,0.00015959940334100812,0.9999825367993567,0.9955848538468867,1.0,4.045299046356982e-06,1.0,0.7835190335188764,0.9963793853661371,0.8793020715470488,0.8986594663692405,0.9999999999999989,0.00011099886041931687,4.717369941834745e-05,1.7257844306939238e-06,1.0,0.06249758943016055,0.1364459497213291 -side,rgb,1.254269585805231e-32,1.0,0.9999999999999949,1.0,1.0,0.11872989077977049,3.327858156164606e-31,3.8494432870876384e-11,6.411725009135822e-10,4.9453070452158684e-11,0.999999999994744,0.9999999999999662,0.9999999999998739,1.0,1.0,9.278540225710241e-40,0.99425227715712,0.9992487172161159,0.9909758069913581,0.9996244394363277,0.007910092142736715,2.6457189351507236e-10,0.022524603727206594,2.719079923559831e-11,0.9999999999472056,0.996604197252313,3.3839822031685494e-35,0.9999999998603044,5.625859254036409e-39,1.0,0.12568570501391915,1.0,0.07184945728994262,3.441921597187363e-14,1.0,2.2819925413251755e-39,0.9999541630629472,1.7047231448769425e-07,0.9998326525879285,0.2723338732043042,1.0,1.0,0.22726491019285122,1.0,1.0005410710909588e-34,1.0,1.0,0.9999999999999942,7.242123694188447e-35,6.800201092799706e-05,0.0932086802570333,1.0,8.052515335583232e-11,0.0303974359029863,7.379236367858795e-37,0.4316671500560511,1.0,1.0,0.9999999999999549,0.9999999999996385,0.9999999999930731,0.0005753993932788391,4.840538147044029e-41,1.0,1.0,3.209976526806271e-13,0.05258488397815655,1.805568161476556e-11,3.761842374632323e-11,4.48544154559315e-10,0.04748505775219687,1.0,1.0,4.36232962151037e-12,1.0,1.0,0.9142282256081526,4.0459307537225534e-12,1.9467828903450554e-10,1.0,1.806975336666529e-34,1.0,2.169028938807471e-09,1.0,8.277971449066977e-11,3.4590620412493883e-09,3.130509834225709e-39,2.661594176962911e-07,6.853997723604735e-30,1.9792930195861384e-34,1.896493241112426e-11,2.368047149865796e-42,1.0,1.0,1.0,1.0,2.548592653369568e-38,1.0,1.0,1.0,1.0,2.6411677988897775e-29,0.228855669263861,1.0,1.0,0.1588320465213671,1.1711687729385835e-33,5.402571301182259e-11,0.9999954640981324,0.12315205596834163,0.9713902033425778,1.0,1.0,0.9999999999999971,0.9999999999994831,0.9999999999985671,3.6051412372598923e-12,0.9999999999992166,0.999999999999964,0.9999999999906881,1.0,0.9999999999998401,8.887661492847985e-05,1.0,0.9999999999999964,0.9999999615840424,0.9999999999999001,1.5058648950735827e-11,0.004742693308939433,1.7300129532513624e-10,0.9999998875084048,2.810922362945111e-13,0.10638343552745204,5.8228241930797206e-12,2.715724704322223e-12,0.8906399424592718,0.9718450263691849,0.9919614657518826,0.0007910808059629987,1.0,1.0,1.7888643306843205e-40,0.033027291509758736,1.0,0.998470724826376,0.9999780526565207,0.9999999859872435,8.000489152048175e-11,0.23091630326109297,9.2050775798836e-13,1.0,6.994480052188528e-05,5.903053897820111e-39,0.9999999999940066,6.493793479195036e-37,0.9999999999997604,0.9999999999999574,0.9999999999999105,0.9999999999999984,0.748961723208992,0.9999999999997891,0.8498111440628776,2.988449466530741e-38,0.9999999999975531,0.9999999999646481,0.999999998958216,0.9999999996982247,0.9999999999999016,0.9999999999995861,1.0,0.0003600090442338413,0.09494197765247459,1.7334616336656528e-06,2.0853641227173777e-40,0.001756909171333969,2.6908107167985763e-31,1.380182432124774e-42,1.0,0.9999999999975779,0.9999999999997544,0.9999999999988116,5.423726582833064e-40,1.0,0.02778859806296115,0.16194327166939765,4.5021143721191335e-36,1.0,1.0,0.9999999999995899,0.9999999999999418,0.9999999999918439,1.5588116675173485e-14,5.294671177678273e-33,0.9999900190015797,6.1970219456090966e-09,4.049359475984171e-35,1.573529601631998e-11,0.9999999999999738,0.08454839924342435,0.01503863037346713,1.0,2.5373608500161774e-05,0.9999999970217515,6.316994979499779e-35,0.9999999999994678,0.05999628449764253,9.588035830234577e-37,1.0,1.0,3.907801568509267e-34,1.4501102368964931e-11,2.8985926730231877e-08,0.999999999962913,0.999999999999887,0.9999999846656311,0.999999999999929,0.9999999999999916,5.239334713453061e-42,0.9999999999999991,1.0,1.0,1.0,0.03368837280159944,1.0,0.9995202851657364,0.999779762446265,1.0,0.998292093240746,4.66105377758523e-42,1.0,1.0,1.385123443608616e-13,1.0,0.13400676167347292,1.0,0.9999999999999964,0.9999999999999956,1.0,6.71794833547067e-10,3.628355442223429e-06,1.1800357301045548e-09,1.0,0.9999999999478761,0.9999999999927496 -square,rgb,0.999257678019592,0.9999999999999827,6.953715341401326e-05,1.0,0.0020810416832033178,0.9906064161191541,0.9899310538142984,0.957846046143423,0.880590055041131,0.5820854656832993,2.632299424086319e-06,1.683327196916311e-05,9.559924903708014e-06,0.9999999999999933,1.0,0.9999999998896258,1.6107242472267148e-08,2.131911280152431e-08,1.505431516188471e-08,2.301845839744981e-06,8.251557170745478e-09,3.052631816434433e-08,0.9837090895686231,1.423276475217065e-07,0.9992071325992182,1.2008727078959825e-07,0.9999966796535944,0.9979423028686193,0.9999999990271151,0.9999999999716245,0.9902313640730076,0.0006022579538661928,0.9737738552801132,0.0050910242326419625,1.0,0.9999999997134874,1.1137158989331752e-06,1.0873312776975206e-08,0.8181345255133081,0.7027892470700643,1.0,0.9999999536306973,0.9853267688124232,0.999999999998417,0.9999903813281485,0.00024089518764516764,0.0007811214171567481,6.615902013541394e-05,0.9999906433763249,0.00011204867161570205,0.98939713445277,1.0,0.8273439841571583,0.88718815932531,0.9999998907250773,0.8600492375514093,0.3286489218665084,0.20076598370303575,1.4690821379473296e-05,6.262843413324672e-06,2.3654457208024257e-06,8.213577961784998e-09,0.999999999995633,0.9999996085828455,0.999999999822869,1.6819974394089834e-07,4.118157883038874e-08,0.7769857394502938,0.9371202310301936,0.9163807883767444,0.935413609421545,1.0,1.0,0.7298976352594848,0.9999999999986766,0.9999998558239788,8.54439965294539e-08,1.19868384885076e-07,3.545882679058716e-08,0.12823411365082174,0.9999844636149277,0.18158003428870736,1.8678985316403501e-07,0.0479021290010587,0.9453537118953371,9.516077619638727e-08,0.999999999509718,1.0735419283016815e-08,0.9380864391669803,0.9999842798709337,0.9523626105060687,0.9999999999998674,0.5579563853771856,0.22113740356426279,0.09712900357766294,0.06110932101730212,0.9999999954074976,0.046299488739281566,0.23431319183037533,0.04353492636302963,0.01731782966717065,0.8399589198186882,0.6423991257789283,1.0,0.018792803706281763,0.991364674720134,0.9999298785913808,1.1136423442051682e-07,3.7661851742532797e-07,0.5712513020405542,4.0310745999406476e-08,1.0,1.0,4.604981877047173e-05,5.593033502980827e-06,4.113126489908088e-06,0.03693697057032087,9.242651996611898e-06,1.6717653680993882e-05,4.327702872045652e-06,0.0005755863052879181,1.1210168658916327e-05,0.0004158778404034913,1.0,4.123816624893568e-05,0.06635412441423658,1.3086465497417445e-05,0.043411682645190915,8.180958010226536e-06,2.5981241688037718e-05,1.8137061593650318e-05,0.0008572130486984662,0.9923902459241177,0.7431245136498987,0.025281878343601967,1.1594146407487331e-08,1.3090447211268343e-08,1.5215863022034313e-08,3.762284591926018e-05,0.9999999999756237,1.0,0.9999999999757292,0.9272030781772357,1.0,5.409785164366301e-06,1.4004105966154955e-06,0.0004559707465173793,4.450091556291742e-08,5.676264205890192e-08,1.826990730647887e-07,1.0,9.439853769987284e-07,0.9999999991163446,2.550565988877379e-06,0.9999999027558121,7.338698660691107e-06,1.4794511643213939e-05,0.9999471422203319,0.9995672862406726,1.0336760284592563e-08,0.9999964452162873,1.0899183352190647e-08,0.9999999985226558,0.9996843738613571,0.9997952228320238,0.9998672709365732,0.9993514408180293,1.0431291314190627e-05,5.946537429058101e-06,1.0,7.420294242573368e-07,0.9892530724896564,4.660713699887608e-06,0.9999999999777112,8.567262072445296e-07,0.9913708341835565,0.9999999999999312,1.0,0.9999983734529394,0.9999332377913533,0.9997938063017354,0.9999999999450988,1.0,0.9787588631054315,0.9912544312742029,0.9999992685524913,1.0,0.9999999999999063,5.967128410064474e-06,1.307985316531417e-05,2.2794636156497084e-06,0.00015430848174044718,0.9996295221203858,1.0711610743022462e-06,2.1171563760472988e-05,0.9999940412867128,0.019822364891827836,1.795806939352905e-05,0.980890053099513,0.8524394964510835,1.0,8.678230842624451e-07,0.9977221969872517,0.9999949782795934,9.259701135026254e-06,0.7644153387390613,0.9999998613959947,1.0,1.0,0.9999626968251379,1.301517645238055e-05,1.3118500612048166e-08,0.9990111960010482,9.916915727954336e-06,0.9998369629885066,1.3006702674087973e-05,2.9314424631342466e-05,0.9999999999996636,0.00011528091668801526,0.001190249833437675,0.001981731895361102,1.0,0.925286295420195,0.9999987753680033,2.2738851154312543e-08,2.5863676844908147e-08,0.9999999999999825,1.8768173393428674e-08,0.999999999999706,0.0005648871034715361,1.0,2.104718105831403e-06,1.0,0.6855638424173791,0.000674521524194983,4.14625944060706e-05,4.134949277520604e-05,0.9999999999737923,6.41953054415665e-05,2.169345974939192e-06,1.9667151452357302e-08,1.0,1.5031907416551574e-06,2.8539539796236506e-06 -that,rgb,1.0,0.9999991791746582,0.9975022921284598,1.0,0.999998245159614,0.9546173422284268,1.0,0.9999998125633676,0.999996635745892,0.9999982356768959,0.007038895648140352,0.46889423795213697,0.24090494181740713,0.9999998017763998,1.0,1.0,0.8983138766439075,0.7959822385103729,0.8643960468168855,5.340878469579183e-05,0.9562077185823825,0.9999999993363675,0.9711079829865819,0.9999999999999509,0.006221266083590024,0.9999998402861738,1.0,0.003846725758365069,1.0,0.9999787989817179,0.9516539902292843,0.9996268538017827,0.9226359236069055,0.9999998829502402,1.0,1.0,4.5826366317560695e-05,0.999995719092531,0.012344890291690305,0.38468122670011945,1.0,0.9874792712533936,0.9065752626026676,0.9999997151477865,1.0,0.8878544922826017,0.9993169462284647,0.9974441204116302,1.0,0.18287268614157137,0.956280965458357,1.0,0.9999989584709864,0.8485735847960656,1.0,0.4742625740640676,4.4255315495934224e-05,5.3688196931272964e-05,0.36443573918197003,0.10648482396548331,0.007781465554204325,0.986830288524182,1.0,0.9605797101578837,0.9999428725009988,0.9999999999999132,0.999999980287211,0.9999995664892892,0.999999745338872,0.9999980667294711,0.8761750619848301,1.0,1.0,0.9999998233895494,0.999795685891449,0.9545908673584109,0.9999999618223522,0.9999999999998002,0.9999999998033935,6.133908431190199e-05,1.0,3.2319117652661315e-05,0.9986963217710925,7.628409574168164e-05,0.9999995954103578,0.9991204005416385,1.0,0.9999981940541176,1.0,1.0,0.9999998773703062,1.0,4.484844638793289e-05,9.167758868125143e-05,7.136220463726004e-05,7.957084833813176e-05,1.0,7.70825545525405e-05,3.523638666605409e-05,6.085118614063988e-05,7.727389480190941e-05,1.0,0.36443651155832646,1.0,0.0001246868336401693,0.94990208771458,1.0,0.9999999999998366,0.9999990484797409,0.40254752122576726,0.999995563193254,1.0,1.0,0.33151074328299623,0.030530416346598373,0.009218557156380378,0.9999977282873386,0.0003662434047777218,0.5605646841548149,0.9982806934779718,0.9997489560644163,0.002589715584530032,0.2382595363691656,1.0,0.12374177109014668,5.038654835017688e-05,0.00329037005416996,0.9999936154622028,0.010936969296414174,0.9992699425084023,7.647047622729382e-06,0.9999985673179137,0.9639827467171282,0.9999997899859602,0.9999977610901322,0.7268821710680058,0.8506259175466466,0.7953227485973098,0.03748969582531786,0.999989386266815,1.0,1.0,0.8864310211118167,1.0,6.881337720040982e-05,3.608327751190564e-05,6.0228148616735206e-06,0.9999999999507676,0.9999999854084625,0.9999999999999714,1.0,0.11954074861691102,1.0,0.006075915650659453,1.0,0.1166086550280254,0.27581471036070176,0.011899794711157161,0.0012603230919715424,0.898609452819963,0.11980760528543022,0.9040097530965115,1.0,0.005987354734162691,0.01632430130711796,0.05932261762406128,0.011713269460353812,0.15481951680506403,0.09013915485856284,1.0,0.05140446664360295,0.9553573854463647,0.5560053279396562,1.0,0.02091406047086453,1.0,1.0,1.0,0.3316450423801333,0.012187463583919497,0.007082341218490812,1.0,1.0,0.9600377839751761,0.9488190138467855,1.0,1.0,0.9999931727046412,0.0930102518049812,0.2805132716087787,0.006333051511516636,0.9999998656932345,1.0,3.819924883978194e-05,0.9874961389922027,1.0,0.9999896434463478,0.05229514326680767,0.9339969791510281,0.866278993950311,1.0,0.20668877030348762,0.00850516601985166,1.0,0.0006281039609728178,0.6621572904319253,1.0,1.0,1.0,1.0,0.99991147056341,0.9999968517754013,0.004781580018024202,0.19199995455996519,0.1120555750334625,0.011459075175138373,0.35949168147424776,1.0,0.9840703655416079,0.9999416714715681,0.9998761958835307,1.0,0.8830759481822796,0.9260990911215888,0.7387092547417017,0.7370121940630432,0.999999160524651,0.5790931806674933,1.0,0.999742295094887,1.0,0.9999995520422117,1.0,0.4795230886534773,0.9995875007856416,0.13188373679667614,0.6815226135747608,0.999993386150844,0.9981134803641714,0.4412722323216756,0.99999988555932,1.0,0.0014530854321093047,0.001662072566059896 -the,rgb,0.9999999999999971,1.0,1.0,1.0,1.0,1.0,0.999999999999998,0.9999999999999882,0.9999999999999538,0.9999999999925211,0.9999999999999933,1.0,1.0,1.0,1.0,1.0,0.9998463815587268,0.9999757438402497,0.9996895227841455,0.9999992504055134,0.3525752278108397,0.054713974615708004,1.0,0.9699332807310858,1.0,0.9999999989013046,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999531945389826,1.0,1.0,0.9999994519240347,0.01526699688623798,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.999987023911999,1.0,1.0,0.999999999999668,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999902,0.10040902517706603,1.0,1.0,1.0,0.41622261059543225,0.999995602798714,0.9999999999986282,0.9999999999999678,0.9999999999999787,1.0,1.0,1.0,0.999999999995367,1.0,1.0,0.9999999833378276,0.6726168876689504,0.10471149605822598,1.0,1.0,1.0,0.0037917516014159894,1.0,0.9999999999999842,0.0019036565908424688,1.0,0.034606559605213666,0.9999999999113116,1.0,0.9999999999999782,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999996783,1.0,1.0,1.0,1.0,1.0,0.9487515507468374,0.9999999999989233,0.9999999999999998,0.9999996275640114,1.0,1.0,1.0,1.0,0.9999999999999991,0.999999911489123,0.9999999999999993,1.0,1.0,1.0,1.0,0.999999332390464,1.0,1.0,1.0,1.0,0.9999999668768329,0.9997107123429028,0.8977386368286544,0.9999999999629388,0.9990049878175826,1.0,0.999999999996515,0.9999997602956618,0.9921978022928618,0.9988268185602495,0.9996378607805585,0.9999653536882557,1.0,1.0,1.0,1.0,1.0,0.9999995858751148,0.9999997872341713,0.9999999999999867,0.15448875170384835,0.9999995335849229,0.7934017242934767,1.0,0.8468913629789404,1.0,0.9999999999999913,1.0,1.0,1.0,1.0,1.0,0.988189422197598,1.0,0.9940259386191739,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.8949007386790262,1.0,0.9462847057255365,1.0,0.9633493713482723,0.9999999999999984,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999862,0.9170743261508362,0.9999999999999993,0.9999998237803822,0.9633089959696229,1.0,0.9999997990627292,1.0,1.0,1.0,1.0,0.7381964519285962,1.0,1.0,0.9999999999999998,1.0,1.0,1.0,1.0,1.0,0.46706971313162565,0.005735823330391327,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.999982605956413,0.9999930370641748,1.0,0.9998874831346665,1.0,1.0,1.0,0.008676956873917112,1.0,1.0,1.0,1.0,1.0,1.0,0.9897516786129985,0.8533496362655967,0.005066166453965101,1.0,0.999999999999656,0.9999999999999831 -tomato,rgb,0.9999999999998403,2.3929817010852285e-16,0.00035497179487848263,1.208433052845999e-10,0.00021233270886455435,9.029982245258795e-05,0.999999999999984,0.5516328700956069,0.3299518275478206,0.7219066839348568,0.00026426792450658055,0.00015791878577600422,0.00020399837100981406,1.462430127831017e-16,8.318460364935016e-12,1.0,0.7789438763724097,0.6011234530052596,0.7835573902277093,0.00264342173193955,0.9824936703552349,0.9999972602272281,0.00020707037107492554,0.9999998206639436,7.37302989243857e-09,0.9881323070092916,0.9999999999999742,1.3051107821975486e-08,1.0,3.5023289181357218e-15,8.90789691643496e-05,8.082251713310929e-05,0.00014944417283823178,0.998401121858615,4.151216772474089e-14,1.0,0.002400278447595184,0.9998947386448513,4.7503856623660565e-06,0.00018558415968914312,6.755804472851824e-11,9.955564770563002e-14,7.625350020829757e-05,1.1906496516006094e-15,0.9999999999999993,2.1918882074378212e-05,4.866670125244204e-05,0.000370794833927085,0.9999999999999991,0.15983184398241995,0.00010352949717107279,7.512736057884863e-11,0.5856856875901967,0.0003308005168920703,0.9999999999999998,0.00010677109470039806,2.836133584325609e-09,4.058421413627822e-09,0.00015719575840776237,0.00023360586525561692,0.00030688727554730735,0.9932086676757492,1.0,2.9259420065903956e-13,8.077139088810591e-15,0.9999999073633473,0.9994454969301391,0.7541310316913222,0.5850089243525283,0.3385360369854517,0.0002316730241092828,1.5362244440717896e-10,8.528368312977908e-11,0.8642685822400935,3.087915936927505e-15,1.6926561532193843e-13,0.9968987438147399,0.9999998277433123,0.9999981221513812,5.6608668017260115e-09,0.9999999999999531,4.9756664739091714e-09,0.9987306166324939,1.1920407422299955e-08,0.4862512495208629,0.9991472761931965,1.0,0.9999132198385797,0.9999999999968512,0.9999999999999465,0.637498013525512,1.0,1.7124701257989343e-09,3.4708852369776836e-09,6.9190027653219e-09,9.849500863740513e-09,1.0,1.2234399666229953e-08,4.002759218717206e-09,1.2984998634014523e-08,2.642802597228606e-08,0.999999999999948,0.00022024522643195388,7.564458785431445e-11,2.498386563403753e-08,7.761108885671746e-05,0.9999999999999989,0.9999997320479014,0.860464312450529,0.00032004271476707494,0.9878167762495067,9.664375047499905e-11,4.6004516649434245e-11,4.490510679064569e-05,0.00017400698113741593,0.0001718674144013948,0.9673906281749284,3.400226326842304e-05,0.00018117248601990136,0.008863514685255806,9.942463350435614e-05,4.1301218445310895e-05,0.08907722513859172,1.600869461118582e-10,3.324349615107687e-05,1.3074920543202174e-06,3.714687362719334e-05,0.9346635950178985,0.10896605372981635,0.990901286526645,8.217941446918797e-05,0.9978864280042382,8.923442559243456e-05,0.8451034796218205,0.9751208184280478,0.8449027120393813,0.8278904551778046,0.7493905110222923,0.10448866894191966,3.3937972699564598e-15,6.575822688005409e-14,1.0,0.00027790016216139865,1.5966777614860285e-10,0.0024201725753144636,0.0016784812799841952,8.393292059121698e-06,0.9999988757456534,0.9991441259749607,0.9999999155475923,1.759316000791189e-10,0.686857287177015,1.0,0.0002634513454255524,0.9999999999999998,0.00020302290481383645,0.0001355746314319619,5.386332411870397e-10,3.4441459679167517e-10,0.9137682827550437,3.239423245037811e-10,0.9016878599559593,1.0,2.2992559690938024e-09,4.431447366508444e-09,1.1015095549608363e-08,1.174173927230959e-08,0.0001543554984749954,0.00023290375304646402,8.171337498925505e-11,0.5678234129171242,0.00010312325596503138,0.8043844020258043,1.0,0.39105655781077914,0.9999999999999849,1.0,8.659818180362959e-12,5.381191544105072e-10,7.632709280082387e-10,1.6520137938241766e-09,1.0,3.7712784393670724e-14,0.00020570973001217288,7.720924200843151e-05,0.9999999999999998,5.330625621826525e-10,5.562399738618176e-16,0.00023462524906373895,0.00015596213218463305,0.0003030500240485022,0.9997913928972079,0.9999999999998888,0.0016763713379906512,0.9577447776629605,0.9999999999999993,0.9496214338066457,5.880739809159376e-05,0.00012749113121291177,0.00047775865149345126,1.5011537198037983e-10,0.778542553411764,3.411502804442219e-08,0.9999999999999594,3.730039720202678e-05,0.0003285476561211882,0.9999999999999998,1.2407765518807282e-10,1.295662138683073e-11,0.9999999999999536,0.9981249000417268,0.9999273766218764,7.087053787864307e-09,0.00017780634056698737,2.724351531241656e-08,5.2162277690790304e-05,7.498953099655973e-05,1.0,0.00010012771768210961,8.598275395349022e-05,3.772191450743763e-05,1.4838716747168996e-10,0.0002779942815956056,5.292522939586026e-13,0.5437721577755055,0.4844580924903716,2.4136612293500514e-16,0.5781331858254555,1.0,0.0001002828284397471,2.822798819055181e-14,0.9999533196653202,1.1521654272681677e-10,0.0002651225819920618,6.913778369848755e-05,3.3844707766143426e-05,8.352827385830695e-05,3.660082437683146e-15,0.9734181932685442,0.8215192865999078,0.9999842802665126,6.360376465778835e-14,0.00034856146304212195,0.000169091609016329 -toy,rgb,0.45442924172506505,0.9917917061283841,0.16799076531049137,0.9999433382931896,0.2798168556155649,0.41114058684504695,0.3999434016136064,0.313149659224783,0.28319965426644716,0.23302718527094549,0.088591118033498,0.12825240023498283,0.1158591577743228,0.9931791816760156,0.9999875293474636,0.9089478918501547,0.035717092720485004,0.03795796570961601,0.034957773517306556,0.0599496792190371,0.027769846202765763,0.031439735049389954,0.3869794302092918,0.04225357428243774,0.5808405245613484,0.05648210408663898,0.6458260577442585,0.5429460889267973,0.8758438215002691,0.9775200489095202,0.40989809746771677,0.23138612858017368,0.37311921137378984,0.11485126702036023,0.9999348087376125,0.8968053722133155,0.05655693544210534,0.02716458001920765,0.3319632847825877,0.28787781776848076,0.9998848308556303,0.9281601778567886,0.3971444929942766,0.9866667303002784,0.6532136253437332,0.19502613875819472,0.23873231823268468,0.16671683045992017,0.6489031958360708,0.08133582803990186,0.4060879364761411,0.9998938842377371,0.2674507941194323,0.3194436610963439,0.7830236392391392,0.3190248057300295,0.37936367755715233,0.3604166241200289,0.12492855220150004,0.1068692986591425,0.08714770236064563,0.02695686084541425,0.9408991556791839,0.902715620825411,0.9705954030322089,0.03961813392476803,0.04366987571808604,0.2563337900508,0.2999816929182919,0.29453243351174824,0.3403215872696957,0.9998949192288387,0.9998482635873187,0.24745957632037938,0.9812003069485712,0.9134491767346643,0.052090432759894265,0.03917597306715334,0.03244728010955369,0.34442489490741446,0.5922857449227458,0.34889493915021985,0.03362338763018483,0.31153369250174173,0.3058429753242097,0.03121573575998655,0.8871652563835983,0.02767592456537619,0.29723813307596225,0.5909812891724204,0.3080099832725695,0.9632171486529515,0.40978617456034205,0.37138311601472385,0.3358176362199315,0.32038221800250544,0.8493190567537138,0.31047512229842034,0.36051770073648504,0.3060047225319501,0.2781886651742391,0.3087697510584849,0.27921064345650487,0.9999300976316577,0.28480407196011115,0.41505074577360757,0.5875966764905495,0.040728403192893024,0.07133917339931327,0.26892419873741136,0.04514000071178255,0.9999070417617361,0.999966091316131,0.1488165425156383,0.10297356706390151,0.09597050908650334,0.1507815220786642,0.10246890457262985,0.12861897289326515,0.10839655300392817,0.23051104379920626,0.11046616977336332,0.09645924344628796,0.9998352882765456,0.14412773876476695,0.23364183160214347,0.1137582875354932,0.15514312229791588,0.06038997225005982,0.06127982728385321,0.0867839728211892,0.09262541157773309,0.41842173819710715,0.24969056298203623,0.1435240634762119,0.031865066322764826,0.03357633876511888,0.03483221712332761,0.07224515426768474,0.9785036928962667,0.9999179586260099,0.9225221597207333,0.33521238133260217,0.9997527289961092,0.06544062338367009,0.05878018401116641,0.13203596107546986,0.03355953992011933,0.047078292471921614,0.04143953035416804,0.9998183295115913,0.044075261400939716,0.879222118239742,0.08787887180805679,0.7858101660073905,0.1098119148799449,0.12448018759267573,0.6939834889807897,0.6402247744963581,0.03137074871285112,0.7691886896320708,0.031977324757061554,0.8799894673331334,0.62397532006122,0.6297166919124376,0.6335245394788008,0.5819774425574215,0.1167073409319588,0.10570905823590962,0.999924026565951,0.04340252187052791,0.4056553103881435,0.052357616765118443,0.9262990325579096,0.044867829881825784,0.4052186394584683,0.9663069507038019,0.9999752329134639,0.78309718806633,0.6833331474195861,0.6410059107870213,0.9178990016421237,0.9999299567171814,0.3781090238287597,0.41465286704163373,0.7286488877092152,0.9991252435698291,0.9888114799561526,0.1058174085018547,0.12210748030914965,0.08627204611400761,0.07365495306479504,0.4802145778487035,0.0576316063989068,0.06103592951199122,0.6621479873654914,0.14059016943539984,0.12519423910710506,0.3847738810285919,0.30809191861182844,0.9998088609822537,0.043227139975909545,0.5285184831166677,0.629828177793901,0.10388394174001998,0.2934949829535104,0.7772661700684134,0.9998762961658775,0.9999848181272815,0.5634788653845064,0.05537097673285013,0.027097584234370163,0.5741762702375718,0.11613787998605678,0.6178806887236816,0.1161925593582757,0.13911133797542968,0.958355541879272,0.17859315036392295,0.2560869139518206,0.2724025307443902,0.9997717991301462,0.3343432598840307,0.8857238319287679,0.038405189115188594,0.0395868483928038,0.9917640313556249,0.03625511010352743,0.9590951734990256,0.2298879443886744,0.9999710821228239,0.04351714067658732,0.9998275878741918,0.2835073055223267,0.23481554777794716,0.14438166051510903,0.14875032593947238,0.9786586664856939,0.06939651111832144,0.04776512747257073,0.028310486635000555,0.9999002978979499,0.07783959194913719,0.08727971793992755 -triangle,rgb,0.6357012265647609,0.9919401599020976,0.011523519971265075,0.9967429574911885,0.016193792133182977,0.736053764435537,0.3666031253663593,0.7006243496572163,0.6412507856397192,0.5491327146908963,0.011223128911146766,0.011701027663112826,0.01118410354904383,0.9926813389674135,0.9993630916951363,0.9589064530562628,0.00453725004623627,0.004702540705275519,0.004617416373180711,0.02900308122399942,0.005429582290371981,0.006039058797862451,0.7152860905355012,0.006089645460401958,0.7459646406875513,0.0037579788302997113,0.8453639777361077,0.7073057001372881,0.9422186972990049,0.9479945075258146,0.7341198296072026,0.015637418477327948,0.6886160497272982,0.2354796907503344,0.9980812702188724,0.9501138841907845,0.022150305007346598,0.005566568261036662,0.5296888773151697,0.5334369795698598,0.9938974604512556,0.8163365816576476,0.7132775702849798,0.9639576363727558,0.6902145247121985,0.016846141092687433,0.01675697421007694,0.011436025899155293,0.7073155998870089,0.10210307785419585,0.7313022418900059,0.9943040121513674,0.619227133076516,0.610031918248774,0.8506307254464215,0.5856379864155494,0.18045809881596078,0.15198557984918248,0.011674203697959788,0.01096421579019356,0.010968847115800736,0.005657929415677506,0.9791539752283621,0.736725315191652,0.9231708791447297,0.007873154488106214,0.003574368405413371,0.6021117188485142,0.6797029599298311,0.6624367610216185,0.6416653079783923,0.9940740797488428,0.9919862918178058,0.5880001537766487,0.9866872062183896,0.7889435009225696,0.003638507953957944,0.006767222111971137,0.005972632247257873,0.1332117530024167,0.8000401913240011,0.15876771168910186,0.01934390435455634,0.10337737612760116,0.6868038729831546,0.015519393269967709,0.948194834510062,0.005204207471269451,0.43653727511870194,0.802073075266986,0.6946473742324358,0.9904147621978291,0.22206680592032918,0.1461132858502184,0.12237838082757166,0.1086464310637103,0.9211515927399461,0.1024819928330558,0.1682812666543057,0.1038392155761695,0.08281620003218715,0.22734851361156494,0.5182651801486274,0.9961489227300213,0.08019129200858736,0.7389180048096583,0.588613059154995,0.005903349949781408,0.0042951308148046555,0.5034433252239257,0.0036382904084861253,0.9948798800664652,0.9981267376242317,0.014310025304110031,0.011572002344107105,0.01183662482733585,0.3403166842604095,0.017011318264296513,0.011487022286170483,0.007243996934473705,0.015287774166242914,0.015164432589416419,0.13647103940723254,0.9909679408968184,0.014969391263121912,0.2563488730588178,0.015316182004498607,0.3497997853879515,0.051984101265988285,0.07545017134246974,0.03998840870476298,0.16543526667442882,0.745700749933379,0.5918507896072436,0.31913827594920907,0.005011153807913248,0.004689150990991996,0.004730959928407072,0.07726819191306356,0.9465447814149032,0.9975241184043718,0.9740397627144923,0.6359647431087754,0.9868774052770752,0.03792970599213069,0.023143761438104427,0.08538140414395867,0.0061230790725937696,0.003581817749380324,0.007274054190033781,0.9900474862354303,0.03070394361550951,0.940063902057552,0.011275008333468138,0.85391671978341,0.011193263682604725,0.011924291230332371,0.8203940840219844,0.7101956474819991,0.004749462180838432,0.8967941755085601,0.0046785428006399085,0.9150172177783148,0.7692882546763486,0.7987467158414954,0.827095363606437,0.7631308563733391,0.011666441283813632,0.010977819578502171,0.9958124966581033,0.028290433516787807,0.730634050120662,0.04823452564740491,0.9706538339067573,0.028939903226671945,0.37455080619848535,0.9917853755829443,0.9987649152139402,0.9173748065523154,0.816905721134089,0.7827548662161173,0.9630029814689541,0.9979729529709623,0.7019056449365758,0.7382912432462423,0.80290873192893,0.9559789176539634,0.9898532504042941,0.010964038351388126,0.011665978559574863,0.011052039828100732,0.10976423959926007,0.6660851804699414,0.0208114764973506,0.07192626156762016,0.7309619838351263,0.30648622949284654,0.01363221158187101,0.7038441857888319,0.5951223855034221,0.9896830605212371,0.030236043876612603,0.7187141905750413,0.8387932918310718,0.016289749692518247,0.5578412771688649,0.8437396853296052,0.9931966496574176,0.9992057626949147,0.7623645883006592,0.06270601157668376,0.00619646266245576,0.7342725754090298,0.01141651914345908,0.8296142766397698,0.014122512863114512,0.013148176225202073,0.9880486414022964,0.013527518885182764,0.016503052161014442,0.01858229713795372,0.9878686437751385,0.6343999389356932,0.6876309291514282,0.004779105627422935,0.004796003694992994,0.9919162081941509,0.0049643573241008425,0.9884252900628882,0.015251680160646389,0.99912231386769,0.03587732635399893,0.9907896965684171,0.5318461970898859,0.01601538598550124,0.014925945206329802,0.013093550054848415,0.9430069116262553,0.09412032516609942,0.0392843861167395,0.006617700117198309,0.9970597944074827,0.011511627820006193,0.012539922187820463 -triangular,rgb,0.6357012265647609,0.9919401599020976,0.011523519971265075,0.9967429574911885,0.016193792133182977,0.736053764435537,0.3666031253663593,0.7006243496572163,0.6412507856397192,0.5491327146908963,0.011223128911146766,0.011701027663112826,0.01118410354904383,0.9926813389674135,0.9993630916951363,0.9589064530562628,0.00453725004623627,0.004702540705275519,0.004617416373180711,0.02900308122399942,0.005429582290371981,0.006039058797862451,0.7152860905355012,0.006089645460401958,0.7459646406875513,0.0037579788302997113,0.8453639777361077,0.7073057001372881,0.9422186972990049,0.9479945075258146,0.7341198296072026,0.015637418477327948,0.6886160497272982,0.2354796907503344,0.9980812702188724,0.9501138841907845,0.022150305007346598,0.005566568261036662,0.5296888773151697,0.5334369795698598,0.9938974604512556,0.8163365816576476,0.7132775702849798,0.9639576363727558,0.6902145247121985,0.016846141092687433,0.01675697421007694,0.011436025899155293,0.7073155998870089,0.10210307785419585,0.7313022418900059,0.9943040121513674,0.619227133076516,0.610031918248774,0.8506307254464215,0.5856379864155494,0.18045809881596078,0.15198557984918248,0.011674203697959788,0.01096421579019356,0.010968847115800736,0.005657929415677506,0.9791539752283621,0.736725315191652,0.9231708791447297,0.007873154488106214,0.003574368405413371,0.6021117188485142,0.6797029599298311,0.6624367610216185,0.6416653079783923,0.9940740797488428,0.9919862918178058,0.5880001537766487,0.9866872062183896,0.7889435009225696,0.003638507953957944,0.006767222111971137,0.005972632247257873,0.1332117530024167,0.8000401913240011,0.15876771168910186,0.01934390435455634,0.10337737612760116,0.6868038729831546,0.015519393269967709,0.948194834510062,0.005204207471269451,0.43653727511870194,0.802073075266986,0.6946473742324358,0.9904147621978291,0.22206680592032918,0.1461132858502184,0.12237838082757166,0.1086464310637103,0.9211515927399461,0.1024819928330558,0.1682812666543057,0.1038392155761695,0.08281620003218715,0.22734851361156494,0.5182651801486274,0.9961489227300213,0.08019129200858736,0.7389180048096583,0.588613059154995,0.005903349949781408,0.0042951308148046555,0.5034433252239257,0.0036382904084861253,0.9948798800664652,0.9981267376242317,0.014310025304110031,0.011572002344107105,0.01183662482733585,0.3403166842604095,0.017011318264296513,0.011487022286170483,0.007243996934473705,0.015287774166242914,0.015164432589416419,0.13647103940723254,0.9909679408968184,0.014969391263121912,0.2563488730588178,0.015316182004498607,0.3497997853879515,0.051984101265988285,0.07545017134246974,0.03998840870476298,0.16543526667442882,0.745700749933379,0.5918507896072436,0.31913827594920907,0.005011153807913248,0.004689150990991996,0.004730959928407072,0.07726819191306356,0.9465447814149032,0.9975241184043718,0.9740397627144923,0.6359647431087754,0.9868774052770752,0.03792970599213069,0.023143761438104427,0.08538140414395867,0.0061230790725937696,0.003581817749380324,0.007274054190033781,0.9900474862354303,0.03070394361550951,0.940063902057552,0.011275008333468138,0.85391671978341,0.011193263682604725,0.011924291230332371,0.8203940840219844,0.7101956474819991,0.004749462180838432,0.8967941755085601,0.0046785428006399085,0.9150172177783148,0.7692882546763486,0.7987467158414954,0.827095363606437,0.7631308563733391,0.011666441283813632,0.010977819578502171,0.9958124966581033,0.028290433516787807,0.730634050120662,0.04823452564740491,0.9706538339067573,0.028939903226671945,0.37455080619848535,0.9917853755829443,0.9987649152139402,0.9173748065523154,0.816905721134089,0.7827548662161173,0.9630029814689541,0.9979729529709623,0.7019056449365758,0.7382912432462423,0.80290873192893,0.9559789176539634,0.9898532504042941,0.010964038351388126,0.011665978559574863,0.011052039828100732,0.10976423959926007,0.6660851804699414,0.0208114764973506,0.07192626156762016,0.7309619838351263,0.30648622949284654,0.01363221158187101,0.7038441857888319,0.5951223855034221,0.9896830605212371,0.030236043876612603,0.7187141905750413,0.8387932918310718,0.016289749692518247,0.5578412771688649,0.8437396853296052,0.9931966496574176,0.9992057626949147,0.7623645883006592,0.06270601157668376,0.00619646266245576,0.7342725754090298,0.01141651914345908,0.8296142766397698,0.014122512863114512,0.013148176225202073,0.9880486414022964,0.013527518885182764,0.016503052161014442,0.01858229713795372,0.9878686437751385,0.6343999389356932,0.6876309291514282,0.004779105627422935,0.004796003694992994,0.9919162081941509,0.0049643573241008425,0.9884252900628882,0.015251680160646389,0.99912231386769,0.03587732635399893,0.9907896965684171,0.5318461970898859,0.01601538598550124,0.014925945206329802,0.013093550054848415,0.9430069116262553,0.09412032516609942,0.0392843861167395,0.006617700117198309,0.9970597944074827,0.011511627820006193,0.012539922187820463 -vegetable,rgb,1.2137665582144259e-26,0.999995452936296,0.9966908400173139,1.0889524604041811e-07,0.989470848990998,0.0007922230727745023,9.623914330874246e-27,4.930823388482481e-09,4.102161688188742e-08,1.5602329638390007e-08,0.9993722137964522,0.9993279209411474,0.9992887509796488,0.9999960720519901,8.184087960369318e-09,1.2945776402243994e-36,0.11979763627106402,0.266391652334257,0.1154958771144593,0.9339599163365704,0.003036712030639309,1.0986011990802301e-08,0.0003801945289429995,1.5337876562653792e-10,0.9896844244618394,0.001240415023479569,1.9471203846034864e-29,0.9888199521616217,2.325223292432936e-35,0.9999995918728879,0.0008329364921938161,0.9982937317587006,0.0008807976011324016,8.085187635543176e-10,0.0023208298537582533,3.6393224382851415e-36,0.9713839321092719,2.5686581632189182e-06,0.39395276741504204,0.005659575902144882,3.3411303416439982e-06,0.9999997881762153,0.001431814759508806,0.9999994623827789,8.046967276056286e-31,0.999762854882102,0.9989305621023935,0.9966000655895203,1.0618612336613157e-30,0.0010427003512645382,0.000718730726305687,2.1498295623544088e-06,1.362915463591075e-08,0.0009718765418291393,3.716090091021365e-33,0.005815826608731397,0.9999981929110695,0.9999983933911677,0.9993676202998588,0.9992950854677329,0.9992904824039847,0.0007786581543258674,4.4822373536666114e-38,0.9999998143910032,0.9999996879492367,3.7889652019686605e-11,3.167326629382776e-05,6.098277360027835e-09,5.678405181676913e-09,2.8622965582522997e-08,0.000993433159906354,8.675018327138209e-07,7.196412962763245e-06,2.76308484884429e-09,0.9999880411053338,0.9999997887531087,0.00024026141805709198,1.2907951076879567e-10,6.356949102227169e-09,0.9999984149835731,1.3235248235423522e-28,0.9999977927301775,2.970753705438848e-06,0.9999982248053304,8.697438595780968e-09,3.2758374830460576e-06,9.41846010487922e-36,2.2329834960463262e-06,1.461629850490281e-23,1.557126319856206e-28,3.3507504626454053e-09,1.614444366650063e-39,0.9999979693972614,0.9999987425329337,0.9999984342694669,0.999998338985799,1.261207121153726e-34,0.9999982155765279,0.9999979103963492,0.9999980639209866,0.9999976851695934,4.464544538818825e-25,0.005522883845686811,4.319630390802368e-07,0.9999979159498854,0.0009180735819688501,8.769678463808937e-30,3.050355621199736e-10,0.021232071171616716,0.004130504469994271,0.0020403354082911647,9.548308250704234e-07,4.901648997949597e-08,0.9997461917136,0.9995014523843124,0.9995452716656869,9.664417526525547e-09,0.9998705114098563,0.9992184457562904,0.9603706484876745,0.9978671244101408,0.9998518923006309,0.0008936980722195667,4.5796910637377715e-06,0.9998244937091623,0.9925231899826215,0.9998616553546466,2.2626481982075762e-08,0.01726427136138454,5.979488415665314e-07,0.9975323646277988,4.886745880343067e-09,0.0006824187067012627,3.2296457024324662e-09,9.046107113610845e-09,0.06713706094293735,0.08361328014371228,0.1390286902634593,0.005102089206701096,0.999999606175581,0.003245278493922157,5.935411950515564e-37,0.0008504102654349599,2.1462723258502695e-05,0.8780611394895973,0.9790942910885749,0.9984965098577401,2.7980181763040925e-09,5.0353105241440885e-05,3.717554939491057e-11,5.926782071814627e-06,0.002033862284698898,1.5495736960913824e-35,0.9993771759256038,3.265600195577672e-33,0.9993587132858316,0.9994613556638701,0.998223453283445,0.9998473237204036,0.03244576063427181,0.9926765185919497,0.039394979865994176,9.617532968177367e-36,0.996228454316841,0.9856574342127638,0.9254053641186257,0.9759004824717747,0.9994575162626588,0.9993098861254363,5.410723115896528e-07,0.0051221412282550826,0.0007304773672395427,0.0002147439313466011,2.4388422805154196e-37,0.01218124748301862,7.849584907758165e-27,9.293174377268068e-40,1.1075159344035381e-07,0.9710262991671299,0.9974969348365105,0.9967682223172262,5.065803585241423e-37,0.0033804457103520603,0.0004740967903529408,0.0009341264474928805,4.645788701174784e-32,0.000576861232390574,0.9999949283849845,0.9993036084974526,0.9994015387227717,0.9993029243715537,9.131792296797528e-10,4.57423554543126e-27,0.9842408142697882,5.877372885330053e-06,6.780502787768881e-31,2.9517541497479615e-08,0.9997635840144586,0.0008551918983562075,0.0007383456361065997,8.716051839701102e-06,0.001141179166761417,0.9579780333912936,4.5436524888396017e-29,0.9998638492750356,0.001970808098164061,4.838800464669242e-33,2.0980235880925626e-06,1.0247989264834383e-08,2.6386841798960396e-28,1.2752160111124997e-07,1.2056709968204566e-06,0.9918682566645256,0.9993793478224241,0.7926689537918802,0.9998104131835616,0.9996299275873504,3.578139920546221e-39,0.9990432359039141,0.9973750880974864,0.9987150862243752,1.730872119779483e-05,0.0008689462652978369,0.9999998209419411,0.3212758253201252,0.38205555792505036,0.9999954559324034,0.28282742584456216,3.1862672261448916e-39,0.9978660639650613,0.00016992556026611432,4.671768756686015e-09,8.121566958147668e-06,0.00364953975694699,0.9984970709449603,0.9998207378494087,0.9995168801200743,0.9999996220982121,1.2298043914458021e-06,0.00035426538202484723,1.1707319014065357e-07,0.006945963802324886,0.999226152092918,0.9995708977343605 -wedge,rgb,0.6373640713343067,0.9904141076223842,0.00224699320888052,0.8429874855431574,0.002321850778125563,0.8978108755314469,0.23871391845974974,0.8888587425200707,0.853166709819776,0.7866440063128478,0.0040368968518972375,0.003067448173283636,0.0031210471582052736,0.9905401784849593,0.9610024823139226,0.9357779880389939,0.0016717369245150336,0.0017076704597645362,0.0017548268674974137,0.028181939981837812,0.0027066419164712614,0.002505157686688919,0.8877697976084857,0.0018648623391368294,0.8620419024361008,0.000760912157257246,0.8582797326353069,0.8352998101718228,0.915795086919854,0.9023382072728773,0.896682400106292,0.002765382434450791,0.8707311775241091,0.402564631875646,0.9447397691326798,0.9210730389431189,0.01878203799279636,0.0026390595767474866,0.72593904040599,0.7529838539589144,0.7734160850862305,0.6920965470895457,0.8840963100986663,0.9195890992209016,0.5455491380211356,0.0038711601699807753,0.0030341627000874485,0.0022335905251183777,0.584805651064145,0.1648629774812001,0.8954281653500417,0.7813318981916592,0.8387317871956629,0.8189656616563352,0.767275515985041,0.7953940038544677,0.13563442185671176,0.10543337668255981,0.0031353411319445085,0.0032533236487782024,0.003931847368669312,0.0029324485746311905,0.9693872187796253,0.5718342085607745,0.850374117902936,0.003028902648775273,0.0008364856924236128,0.8267325208863279,0.8769293239623975,0.8664973988744957,0.8407777557186638,0.7658756129935904,0.7299221370439845,0.8162429312245953,0.9884939843539422,0.6638086863807903,0.0007574171870365854,0.002387443570012007,0.0023753249925995918,0.08745707846715006,0.8139496708441494,0.11809354709889196,0.019077901966608746,0.061915960843712044,0.8810474344564141,0.013899754771610144,0.9230145378927878,0.002306983534611554,0.454276581503939,0.8182411635724233,0.8854923636233596,0.9873767141736213,0.18070286944495004,0.09492535522324942,0.07721002048654536,0.06565364082587062,0.8827995781617687,0.06118332063359721,0.12650015743137794,0.06363703406444725,0.047008691511101264,0.12498318929617669,0.7397896280102779,0.8296596259063965,0.043271182034526554,0.8990768312770372,0.4208765905545189,0.0018401858191779087,0.000806404654660669,0.7275220469427531,0.0008822464939269651,0.7920930845897409,0.9001286268383782,0.0038187382649275035,0.0037159721145741407,0.004131005907329039,0.5657248660588441,0.007432127348384704,0.0029566427355504064,0.0014839588083731302,0.0026616331177687536,0.005660187589663756,0.22928677028229108,0.7003344472839501,0.004282435481556855,0.35505503561009283,0.005607412320247813,0.5791464804913881,0.07045650632579314,0.11579711738870707,0.03701755888852343,0.2822853044127066,0.9031739999693182,0.8191394102473709,0.5365414353148963,0.002175176087635307,0.0018582314488835667,0.0018408660638703014,0.1167010275670254,0.8942933066870957,0.9304879762311,0.9658606922409115,0.837337317672214,0.6355230205704823,0.04119258160782565,0.019673248326176913,0.09516849988122299,0.002384500427882285,0.0007904244675363962,0.00253778692395691,0.6824240683392631,0.03638966234965822,0.9078688095497568,0.004100060364901156,0.7725362138604182,0.003291685068274608,0.00327106720045172,0.9006814024321341,0.7961120011278697,0.001990136338438245,0.9514793312710252,0.0019118128841750077,0.8355639860438687,0.8714025334552183,0.8981895529557999,0.9216582437561723,0.8784716139970178,0.0033474915599964474,0.003294690828156677,0.8191363084055214,0.032381270076137635,0.8950372437819869,0.06638310027389725,0.9555636550607978,0.0330800894587711,0.2456848369495014,0.9894969292741135,0.9350151597846755,0.9649488854570089,0.9003944498763725,0.8795143181181977,0.9405480102611301,0.9431402906244188,0.8797813626481377,0.8987112770181506,0.7095387667689766,0.37985058111702796,0.9889819021673264,0.003283973484555649,0.0032026586448718223,0.0040217695780187185,0.17290536039645074,0.6673464893596212,0.016704431703782826,0.11004904678456146,0.6201657515214879,0.5198670124461979,0.0041510131145650825,0.8797455942511906,0.8088475509867171,0.6790772089930066,0.03578072112506287,0.8521957296292065,0.8562202704926299,0.006799176749528804,0.7770977309005648,0.7562795963154069,0.7489016159791685,0.9521380201723123,0.7688296405713849,0.09069507895195933,0.003155298967289983,0.852348437148647,0.0032330570444566594,0.9267076560405307,0.004752217031353995,0.003501626083682785,0.9835721437207365,0.002837692366799498,0.0027022125943081863,0.0031295567410630104,0.6510124259737462,0.836226553674288,0.5064875375058352,0.0017440578416990542,0.001714686135497317,0.9903920909600434,0.001954262941305071,0.9841890223481075,0.002658433063315259,0.9700678299031167,0.04118473693009843,0.7027082545152418,0.7532551515511893,0.002842077243325442,0.004252314019985032,0.0032454114623908328,0.8820941184189073,0.15212293521241083,0.050817547850819676,0.0033091658176807384,0.9219612938065784,0.004734793257599687,0.0049880561680329125 -white,rgb,3.0589137665478703e-18,1.2192865582570483e-08,0.9997402773303556,2.3201159684449192e-06,0.9998016231629288,2.4045818481651053e-11,8.78008765110908e-16,1.3261278513077574e-13,8.098029650111404e-13,1.891493246608113e-12,0.9973049461920179,0.9993903626164736,0.9992268036968021,1.582740740656008e-08,2.8033986801336403e-08,3.6260827966258164e-24,0.9793385305779707,0.9862655217215875,0.9744527779733455,0.02905149468102044,0.5610026810805615,0.010940364795353479,2.2436333173074546e-11,0.007934097566348131,2.5143365542866774e-08,0.9951094771801291,7.810000163631082e-21,4.124163574286491e-08,2.114233526778334e-23,4.098513076994856e-05,2.545476903681331e-11,0.9997587271507512,5.168468020058302e-11,7.014232986462714e-11,2.0529776167867875e-06,1.0094656852600942e-23,0.1455195920659864,0.06737719724934929,1.660803134916396e-08,1.084063611844897e-09,1.8354807029856578e-05,0.0015371029730784427,4.67356420106237e-11,3.4978083989931156e-05,6.39043840740287e-19,0.9995358612456526,0.9997389874796198,0.999739676579284,3.9886095524001637e-19,1.0691661913770903e-06,2.4585175706741686e-11,1.4514701245312894e-05,6.818814353145148e-13,1.5898500242125536e-10,4.6982771717990176e-21,5.676825604519334e-10,0.11286836882704947,0.246758437359826,0.9993318623852843,0.9989945462366139,0.9973537993371582,0.3447935011309101,1.0953750565985822e-25,0.006479839568568261,0.00017503158937242348,0.0007434108821677935,0.9570737004910039,6.128143242895575e-13,1.942572845703231e-13,5.089094878862842e-13,1.0564591562400991e-10,1.3765135753709656e-05,3.972244045754459e-05,5.332088364020526e-13,5.1338384271400685e-09,0.0018547865150725191,0.9894182624393898,0.002804885352332404,0.010982041445333131,0.3829252215001789,4.003222216107021e-20,0.146493433662623,9.339509373739607e-05,0.6427706983900182,2.09902399201135e-13,0.00027192933173102765,1.1922185580674356e-23,0.10092167826472749,3.244166616035649e-16,3.8454483331083825e-20,1.2318429072659465e-13,2.2354596734008263e-27,0.04163035790366778,0.36765482301346825,0.4884487339307228,0.6104989108230106,1.1487893765966752e-22,0.6509561844763692,0.12483403041136104,0.6021553121556367,0.7836583858054909,4.002429194646673e-14,1.295292854546121e-09,4.3758037635237026e-06,0.8427096707780002,2.4872033309456766e-11,6.914442485174452e-18,0.010479432854852954,0.9986773046794891,1.3360801399163325e-09,0.9908913288247261,9.867234026217334e-06,5.340405073876963e-07,0.9992991581053546,0.9985307035946979,0.9977235161951202,2.9357012743389107e-11,0.9903038427190903,0.9994323112519723,0.999664250297497,0.999767131299378,0.9964753013880336,3.0455023594709053e-07,4.921397133368619e-05,0.9990534327362179,1.9554378488423484e-05,0.9968259684238786,3.601651131639661e-11,6.485734909393265e-05,1.3692138085006065e-07,0.07034997653586451,7.118460233164103e-10,1.9062026778130515e-11,5.397767970848456e-13,4.0035423329225935e-11,0.924998585155098,0.9621739667276975,0.9722412915236299,7.141381067632694e-06,6.021412074685412e-05,4.107300940109892e-06,3.2280589961019826e-25,1.0509048168255658e-10,0.00015228518337408525,0.006401830054640836,0.14822535593732566,0.0050372385135717635,0.0080999902503821,0.9733960512909835,0.0014618960866754536,6.457564133806954e-05,0.00019746077286819172,2.6341633790167344e-23,0.9971297221182135,4.101064821856498e-21,0.9990322764019903,0.9992703024358722,2.716289937109359e-08,1.0493802704929512e-06,0.9232484771016344,1.674454153153747e-09,0.9392394574979661,2.232324354341366e-22,3.6536802584926465e-08,8.558042713260336e-09,1.5667876199819626e-09,1.0612928092878591e-08,0.99912527131624,0.998941053106768,5.552633345928135e-06,0.00043360390647509146,2.505612914836934e-11,1.0718795471967923e-05,6.284800254541758e-25,0.000603225705102984,7.270276627248522e-16,1.0440823008150301e-27,2.197075866405025e-07,3.1722465247190927e-10,2.230844662922863e-08,3.3060790301279296e-08,2.140032087387351e-24,2.426635468337002e-06,3.0738248685440945e-11,2.535255153575481e-11,2.5904782559696192e-20,0.0043713276701512205,1.261840929159296e-08,0.9989507827447315,0.9992715462409049,0.997113913877086,2.346667871997176e-09,1.4722384496094977e-18,0.2549789290225809,4.2918965893586815e-07,2.1314233266229533e-19,8.005051038272658e-11,0.9988099744454915,4.079800808283141e-11,1.672654106948393e-10,7.476274164202934e-05,0.00016083536434058167,1.3884006576600206e-08,1.0737226939098479e-20,0.9928995663664412,4.5250998274877033e-10,6.2016338747892856e-21,2.2112103851962008e-05,5.0274133035295575e-08,1.192766125762289e-19,1.6283205014486496e-07,0.02729537443322127,3.537248803626134e-08,0.999175662853898,6.837797628136187e-10,0.9980435506341943,0.999329856777977,6.694437521796913e-27,0.9996801252222747,0.9997773198415022,0.9997516192260851,0.00012224881354613133,1.0854239362065627e-10,0.012977043345379916,0.986949758602094,0.9894178861450939,1.2240610172491707e-08,0.9774819859948365,5.705512735923088e-27,0.9997669844277678,2.1595197702753487e-07,5.695049058366208e-07,5.643709710899828e-05,8.734052402015415e-10,0.9997542866719897,0.9990710814389374,0.9994836559430096,9.523969032366415e-05,7.291498447072442e-08,3.141924720646311e-05,0.009496071542124932,6.750878400383058e-06,0.9938044745268623,0.9950509008939379 -with,rgb,0.9999999999999905,0.9999865989806358,0.9998806151927108,1.0,0.9999983533421283,0.25902822873069026,0.9999999999999998,0.955999938750205,0.8875805848377584,0.915528720096196,0.9043360071236062,0.9957905962465126,0.9916717172061976,0.9999948564335692,1.0,1.0,0.9850657660839134,0.9815539957267948,0.9809558759624244,0.032296835909536054,0.9641840062284781,0.9999805851366095,0.2809467447999645,0.999999851224406,0.0929510305021422,0.9999917760570746,0.9999999999999998,0.07473379392126864,1.0,0.9999844934299229,0.25512552176065534,0.9999688955874205,0.22192014533957932,0.9815715687685562,1.0,1.0,0.04689498247549202,0.9990529088034688,0.04475261911806233,0.10319453535660164,1.0,0.9996089805270617,0.2163008264229732,0.999998831257589,1.0,0.999184126786144,0.999958806672431,0.9998780918228725,1.0,0.1122223582500333,0.26009178252628024,1.0,0.9250757823663142,0.17975341941970974,1.0,0.11572786584536225,0.2976461555521655,0.364003193829988,0.9944999723470154,0.9841925429808505,0.9075410659365283,0.9734417517725555,1.0,0.9993782920673532,0.9999786948145207,0.9999995703157208,0.9999925456606842,0.9456107698438531,0.951789006724017,0.9048300739475208,0.19237259685323335,1.0,1.0,0.9611660887932612,0.9994098892262158,0.9991395067662069,0.9999944059377538,0.9999995615437403,0.9999896609655969,0.4089101895026613,0.9999999999999996,0.2590786955773099,0.9140922861977101,0.47847016283013505,0.9429873294979131,0.9429524307726133,1.0,0.9994668700656489,0.9999999999977369,0.9999999999999993,0.9623601795279492,1.0,0.25892109305873795,0.4808486498117275,0.4497365548751206,0.48321031507729306,1.0,0.4812394786607356,0.26607061460824816,0.4318242387545041,0.4936729713341751,0.9999999999999984,0.1004200777099054,1.0,0.5888590594935573,0.2542381720966103,1.0,0.9999997437303374,0.9999895559267589,0.10392766122909167,0.9999361056636086,1.0,1.0,0.9950769022211089,0.9652178835310921,0.9252928713730402,0.9283768243263253,0.6366236005512018,0.9965693486277024,0.9998242241208737,0.99997454733965,0.8710686340325565,0.10910502253097946,1.0,0.9896988913652639,0.01607287684720052,0.8901392690270244,0.8955714132122333,0.0678256015962906,0.7853863572279876,0.024434169410120537,0.961201907652332,0.2741838963090431,0.9584772664017897,0.9312658138395973,0.9560549786700675,0.976427982377061,0.9751431033052815,0.07728095736301475,0.9999905947763181,1.0,1.0,0.19618591467851162,1.0,0.025411079156759823,0.04381881870900373,0.015355003987446136,0.9999944448879746,0.9999948682972026,0.9999998057842676,1.0,0.20146844681217374,1.0,0.8952970414555969,1.0,0.9855524041757329,0.9930776983393844,0.189294865739681,0.15472650178071917,0.9746005740264495,0.32554518598212934,0.9775079844863483,1.0,0.11823191753122148,0.1273330072405977,0.14623285880242048,0.09798333003754557,0.9888021390201664,0.9822441046585463,1.0,0.16702305254669092,0.25879081993105535,0.2714073075595397,1.0,0.1266709150868919,0.9999999999999998,1.0,1.0,0.37372907758965324,0.17504215158684197,0.13180290231998604,1.0,1.0,0.2599154463829582,0.2529330527495281,1.0,1.0,0.9999491348793024,0.9826039671428742,0.993013162959342,0.895218398987781,0.9888831659803438,0.9999999999999953,0.053571167966312144,0.558880133678954,1.0,0.8848797184497504,0.9796991865554463,0.2326222515751896,0.18500137034011527,1.0,0.24256616943057457,0.07526954129476912,0.9999999999999998,0.7181190417954066,0.1373219501854358,1.0,1.0,1.0,0.9999999999999993,0.9072872757542435,0.9989148186381794,0.08851757979432673,0.9902532356207829,0.14951214492124296,0.946753917644837,0.9950654152353738,1.0,0.9997043319531392,0.9999892867064385,0.9999852347500027,1.0,0.1945788478136659,0.9991688927073944,0.9790323420247021,0.9808064470282837,0.99998642153427,0.9631966182577223,1.0,0.9999741246811799,1.0,0.9933531201121027,1.0,0.11327575199992697,0.9999677528790951,0.99013345637348,0.9978025502116953,0.9999935516084744,0.6836059006804434,0.2720862940046892,0.9997178441432765,1.0,0.7465155332247659,0.7917507573012393 -yellow,rgb,0.9999833917062626,1.523879742247866e-06,0.1787224713574065,6.196611523378017e-39,0.0001612140034334907,0.9999999999992912,0.9838853042633249,0.9999999999999556,0.9999999999999603,0.9999999999999714,0.9999522275755702,0.9793789854521395,0.9946701987048798,2.1140689351477024e-07,9.194442444149014e-43,0.0004140321644660862,0.9999995945808877,0.9999993537650347,0.9999997552579285,0.9999999999813052,0.9999999973640561,0.9999999256562921,0.9999999999995521,0.9999816107136309,0.9999999978253333,0.9897867271224197,0.999741168582188,0.999999998764129,0.0055798109301260865,3.4990168056203557e-07,0.9999999999992888,0.008662613739121002,0.999999999999496,0.9999999999999671,5.123006248593611e-35,0.0006533696099761138,0.9999999999195375,0.9999999944989815,0.9999999999951508,0.9999999999995925,2.068426325418808e-36,0.00012256616910334827,0.9999999999992544,2.9867441234086766e-09,0.2234497448627893,0.43250331832673106,0.009636871399472214,0.1885358630707672,0.4658232451223431,0.9999999999999316,0.9999999999993461,1.0153197189732834e-36,0.9999999999999654,0.9999999999996896,0.02614732019877278,0.9999999999994433,0.9999587226236768,0.9999220533577116,0.9868697577942599,0.9984403109619994,0.9999541612612228,0.9999999985673493,0.00010556072922030065,0.00028984053232409944,5.498923808033544e-07,0.999999256481589,0.9995212541014873,0.999999999999968,0.9999999999999589,0.999999999999958,0.9999999999996187,5.065169986415531e-37,1.3563253247734458e-35,0.9999999999999691,0.005392690782491638,0.0005700091039271834,0.9950291983014394,0.9999979469358808,0.9999998479965031,0.9998902124170317,0.9999033638103931,0.9999767641760053,0.9999999999987426,0.9998394238463943,0.9999999999999569,0.9999999999969642,0.002562672169291098,0.9999999856465411,0.9999997760053347,0.9999235323508038,0.9999999999999571,3.840552994523761e-05,0.9999728560593089,0.9997598089958913,0.9998504304746929,0.999821429365837,0.01114661733422904,0.9998370594066863,0.9999735030087055,0.9998960339669636,0.9998642536219097,0.9913721901992034,0.9999999999996283,4.4107226324121737e-38,0.9996920672707161,0.999999999999228,0.35742288298802904,0.9999880946752857,0.9220825271450247,0.9999999999996949,0.9996806715877404,3.010809998309794e-37,3.1651922105596946e-40,0.9629374098169288,0.999540547877094,0.9998924414128151,0.9999999999999778,0.9999915477212832,0.9735686345978183,0.8230922721504433,0.007246620463791217,0.9999038571362513,0.99999999999994,1.4506299399728446e-35,0.9871301540345482,0.9999999999432034,0.9998552897551216,0.9999999999999785,0.9999999999997498,0.9999999999999472,0.9999999997752005,0.9999999999999656,0.9999999999992728,0.9999999999999689,0.9999999999999776,0.9999999716159907,0.999999882024846,0.9999998234159048,0.9999999999998801,1.3142012472761707e-07,1.8072718821079753e-34,0.0019442850631383312,0.9999999999996538,3.2124345624898305e-34,0.9999999999932072,0.999999999905731,0.9999999998337825,0.9999997584052669,0.9985301244455317,0.9999967290389487,2.81031689358716e-35,0.9999999999996434,0.002207073889161379,0.9999602308944461,0.02521896246963427,0.9979737556489651,0.9901906255968519,0.9999999453672407,0.9999997336536767,0.9999999578534058,0.9999999294575549,0.9999999363263717,5.3404034441418066e-05,0.9999999908706515,0.9999999966262378,0.9999999989549639,0.9999999988460031,0.9961304839805761,0.9987308062714281,7.685446088565686e-38,0.9999999999994862,0.9999999999993456,0.9999999999998874,0.00021784748084293832,0.9999999999993969,0.9828793413876347,3.5964034347995175e-05,1.3568664302212093e-40,0.9999999677572825,0.999999966575013,0.9999999865220859,0.0001648580635232724,1.0074648201987673e-34,0.9999999999995615,0.9999999999992266,0.158961566329096,1.9731850103166123e-30,2.2383480465996964e-05,0.9986902831895101,0.9912515629518575,0.9999642095536113,0.9999999999999187,0.9999712782494142,0.99999999982199,0.9999999999999476,0.4899525158647618,0.9999999999999787,0.9973639627403182,0.9999999999994404,0.9999999999997431,4.752592365623466e-35,0.9999999999996643,0.999999999617964,0.9998810051893267,0.9999836347172115,0.9999999999996978,0.028129817131745647,2.078658860544941e-36,2.6153533191120598e-42,0.9998938244288353,0.9999999999999156,0.9999999977803276,0.9999999976019656,0.9955345099470646,0.9999999996111519,0.9995181076653601,0.9737373733925809,4.153189053600041e-05,0.283274357019572,0.0016560745607376464,0.0015817729663472385,1.85545014538099e-34,0.9999999999996545,0.0005126188686960929,0.9999993610678012,0.999999038064903,1.56261929029615e-06,0.9999998183833766,4.111116315107888e-05,0.007482961252055644,1.4766403996499068e-37,0.9999999999992721,2.7400643119087306e-35,0.9999999999996638,0.008255356355200204,0.986295334526034,0.9090360075298827,6.253530497670944e-08,0.9999999999999616,0.999999999999831,0.999999996267739,8.71923328612845e-34,0.9999956839414377,0.9999879506013519 diff --git a/testResults/testing_english/NoOfDataPoints/6000/results.txt b/testResults/testing_english/NoOfDataPoints/6000/results.txt deleted file mode 100644 index 40317da..0000000 --- a/testResults/testing_english/NoOfDataPoints/6000/results.txt +++ /dev/null @@ -1,2 +0,0 @@ -Test Instances :: arch/arch_3 banana/banana_3 cabbage/cabbage_4 carrot/carrot_4 corn/corn_4 cube/cube_2 cuboid/cuboid_4 cucumber/cucumber_3 cylinder/cylinder_2 eggplant/eggplant_2 lemon/lemon_2 lime/lime_3 orange/orange_1 plum/plum_3 potato/potato_1 semicylinder/semicylinder_3 tomato/tomato_1 triangle/triangle_3 -Tokens :: childs cuboid yellow shape looks its cut grape cherry to orange circle has semicylinder rectangle brown cube triangle dark half like semi shaped potatoes laying bright large butter small side square sponge husk are out blue slice purple plantain red 3d corn cylindrical box on colored of plum round eggplanet cob eggplant chow block cheese apple bridge color sweet long lime toy been plastic white banana semicircle head archshaped that triangular pie tomatoe brinjal ear with brick this rectangular arc piece and wedge cylinder ripe flat is it an sphere as carrot in curved lemon potatoe prism vegetable picture ball building object fruit cucumber a cabbage arch tomato potato mango green roma the lying stick diff --git a/testResults/testing_english/negative_insts.csv b/testResults/testing_english/negative_insts.csv deleted file mode 100644 index 6a2efeb..0000000 --- a/testResults/testing_english/negative_insts.csv +++ /dev/null @@ -1,14 +0,0 @@ -,childs,cuboid,yellow,shape,looks,its,cut,grape,cherry,to,orange,circle,has,semicylinder,rectangle,brown,cube,triangle,dark,half,like,semi,shaped,potatoes,laying,bright,large,small,round,square,sponge,arc,are,out,blue,slice,purple,plantain,red,3d,corn,cylindrical,box,on,colored,of,plum,side,eggplanet,cob,eggplant,chow,block,cheese,apple,wedge,color,sweet,long,lime,toy,been,plastic,white,banana,butter,head,archshaped,that,triangular,it,tomatoe,brinjal,ear,with,brick,this,rectangular,husk,piece,and,bridge,cylinder,ripe,flat,is,pie,an,sphere,as,carrot,in,curved,lemon,potatoe,prism,vegetable,tomato,picture,ball,building,object,fruit,cucumber,a,cabbage,arch,semicircle,potato,mango,green,roma,the,lying,stick, -triangle/triangle_4,orange/orange_2,potato/potato_3,cube/cube_3,orange/orange_2,cylinder/cylinder_1,plum/plum_1,lime/lime_4,arch/arch_1,cube/cube_3,arch/arch_2,semicylinder/semicylinder_1,orange/orange_2,cylinder/cylinder_3,orange/orange_2,potato/potato_3,cabbage/cabbage_1,cabbage/cabbage_1,orange/orange_3,cube/cube_3,orange/orange_2,corn/corn_1,orange/orange_2,orange/orange_3,cabbage/cabbage_1,arch/arch_1,orange/orange_4,cube/cube_3,arch/arch_1,cube/cube_3,eggplant/eggplant_1,cube/cube_3,cucumber/cucumber_4,eggplant/eggplant_3,lime/lime_4,orange/orange_2,banana/banana_4,cube/cube_4,triangle/triangle_1,arch/arch_1,orange/orange_2,cube/cube_4,potato/potato_3,cucumber/cucumber_4,plum/plum_1,tomato/tomato_3,,banana/banana_4,orange/orange_2,cube/cube_4,cube/cube_4,cube/cube_4,banana/banana_1,orange/orange_2,carrot/carrot_3,banana/banana_4,orange/orange_3,,cube/cube_4,banana/banana_2,banana/banana_1,orange/orange_2,cube/cube_4,tomato/tomato_2,cube/cube_4,triangle/triangle_1,eggplant/eggplant_1,orange/orange_2,orange/orange_2,orange/orange_2,orange/orange_3,,cube/cube_3,cube/cube_4,cube/cube_4,cylinder/cylinder_1,eggplant/eggplant_1,,orange/orange_2,cube/cube_4,cube/cube_4,potato/potato_4,banana/banana_4,orange/orange_3,cube/cube_3,banana/banana_2,,banana/banana_4,cylinder/cylinder_1,cucumber/cucumber_4,orange/orange_2,semicylinder/semicylinder_2,lime/lime_4,orange/orange_2,triangle/triangle_1,semicylinder/semicylinder_1,orange/orange_2,cube/cube_1,cube/cube_3,,cucumber/cucumber_4,cucumber/cucumber_4,banana/banana_4,cube/cube_3,orange/orange_2,,orange/orange_2,banana/banana_4,orange/orange_3,cylinder/cylinder_1,triangle/triangle_1,semicylinder/semicylinder_1,cube/cube_3,potato/potato_2,cube/cube_4,eggplant/eggplant_1, -corn/corn_3,potato/potato_2,potato/potato_2,cabbage/cabbage_3,potato/potato_3,banana/banana_2,semicylinder/semicylinder_4,potato/potato_2,carrot/carrot_3,cucumber/cucumber_4,cuboid/cuboid_1,cube/cube_4,potato/potato_3,cube/cube_4,potato/potato_3,potato/potato_2,arch/arch_2,eggplant/eggplant_3,orange/orange_2,banana/banana_1,potato/potato_3,banana/banana_2,potato/potato_3,orange/orange_2,arch/arch_2,orange/orange_2,cucumber/cucumber_4,arch/arch_2,cucumber/cucumber_1,cucumber/cucumber_4,orange/orange_4,carrot/carrot_2,lime/lime_4,cuboid/cuboid_3,potato/potato_2,potato/potato_3,orange/orange_4,cube/cube_3,cube/cube_3,cucumber/cucumber_4,orange/orange_4,cube/cube_3,orange/orange_4,cucumber/cucumber_1,plum/plum_2,tomato/tomato_2,,cube/cube_1,cube/cube_4,cube/cube_3,cube/cube_3,cube/cube_3,arch/arch_1,orange/orange_4,cucumber/cucumber_4,cube/cube_3,orange/orange_2,,cuboid/cuboid_3,lemon/lemon_4,arch/arch_1,potato/potato_2,cube/cube_3,banana/banana_2,cube/cube_3,cube/cube_3,semicylinder/semicylinder_1,cube/cube_3,potato/potato_3,lime/lime_4,orange/orange_2,,arch/arch_1,potato/potato_2,cube/cube_3,potato/potato_4,potato/potato_2,,potato/potato_3,cube/cube_3,lime/lime_1,potato/potato_3,banana/banana_2,potato/potato_4,arch/arch_2,lime/lime_4,,orange/orange_4,cube/cube_1,arch/arch_2,potato/potato_3,cube/cube_4,cucumber/cucumber_1,potato/potato_2,cabbage/cabbage_1,arch/arch_2,orange/orange_4,arch/arch_1,cucumber/cucumber_4,,arch/arch_2,lime/lime_4,orange/orange_4,arch/arch_2,triangle/triangle_2,,cube/cube_3,potato/potato_3,orange/orange_2,arch/arch_1,cube/cube_4,potato/potato_2,arch/arch_1,,cube/cube_3,semicylinder/semicylinder_1, -,tomato/tomato_3,eggplant/eggplant_3,arch/arch_4,potato/potato_2,lemon/lemon_3,,orange/orange_2,arch/arch_2,arch/arch_2,carrot/carrot_1,cube/cube_3,orange/orange_4,cube/cube_3,orange/orange_4,eggplant/eggplant_1,arch/arch_4,eggplant/eggplant_1,orange/orange_4,cube/cube_1,orange/orange_4,carrot/carrot_2,orange/orange_4,potato/potato_2,arch/arch_4,plum/plum_1,cucumber/cucumber_1,lime/lime_1,cucumber/cucumber_2,arch/arch_2,carrot/carrot_3,cucumber/cucumber_4,cucumber/cucumber_1,,orange/orange_2,orange/orange_4,cucumber/cucumber_1,banana/banana_1,arch/arch_2,arch/arch_2,carrot/carrot_3,lime/lime_2,arch/arch_1,cucumber/cucumber_2,,potato/potato_2,,arch/arch_1,plum/plum_1,potato/potato_2,lime/lime_2,cube/cube_1,arch/arch_2,tomato/tomato_3,cucumber/cucumber_1,banana/banana_2,orange/orange_4,,cuboid/cuboid_2,semicylinder/semicylinder_2,arch/arch_2,tomato/tomato_3,lime/lime_2,tomato/tomato_3,lime/lime_2,arch/arch_2,cucumber/cucumber_1,cube/cube_1,potato/potato_2,lime/lime_2,orange/orange_4,,arch/arch_2,cube/cube_1,lime/lime_2,lime/lime_2,semicylinder/semicylinder_1,,potato/potato_2,lime/lime_2,lime/lime_2,cucumber/cucumber_2,lime/lime_4,potato/potato_3,carrot/carrot_3,lime/lime_2,,cucumber/cucumber_1,,cuboid/cuboid_1,potato/potato_2,potato/potato_2,,lime/lime_4,potato/potato_2,arch/arch_4,semicylinder/semicylinder_4,arch/arch_2,arch/arch_2,,cuboid/cuboid_1,cucumber/cucumber_1,banana/banana_2,arch/arch_4,arch/arch_1,,cube/cube_1,potato/potato_2,cube/cube_3,arch/arch_2,cube/cube_3,arch/arch_1,cucumber/cucumber_4,,lime/lime_2,cabbage/cabbage_1, -,lime/lime_4,eggplant/eggplant_1,semicylinder/semicylinder_1,tomato/tomato_3,,,tomato/tomato_2,cuboid/cuboid_1,cuboid/cuboid_1,banana/banana_1,triangle/triangle_2,cucumber/cucumber_4,cylinder/cylinder_4,carrot/carrot_3,cabbage/cabbage_3,cuboid/cuboid_2,cabbage/cabbage_3,banana/banana_1,cuboid/cuboid_1,cucumber/cucumber_4,,banana/banana_1,tomato/tomato_3,cuboid/cuboid_2,semicylinder/semicylinder_4,carrot/carrot_2,semicylinder/semicylinder_1,cylinder/cylinder_1,lime/lime_1,eggplant/eggplant_3,carrot/carrot_3,lime/lime_2,,tomato/tomato_2,banana/banana_1,carrot/carrot_3,cube/cube_1,arch/arch_4,cuboid/cuboid_1,carrot/carrot_2,cuboid/cuboid_3,eggplant/eggplant_1,eggplant/eggplant_1,,lime/lime_1,,cucumber/cucumber_4,cuboid/cuboid_3,cube/cube_1,cuboid/cuboid_3,tomato/tomato_2,arch/arch_4,eggplant/eggplant_1,carrot/carrot_2,arch/arch_1,tomato/tomato_3,,cylinder/cylinder_1,semicylinder/semicylinder_4,arch/arch_4,carrot/carrot_3,cylinder/cylinder_3,lime/lime_4,cuboid/cuboid_3,cabbage/cabbage_3,eggplant/eggplant_3,arch/arch_1,lime/lime_4,,banana/banana_1,,cuboid/cuboid_1,tomato/tomato_2,cuboid/cuboid_3,lime/lime_1,cabbage/cabbage_1,,tomato/tomato_3,cuboid/cuboid_3,cuboid/cuboid_3,,lime/lime_2,orange/orange_4,arch/arch_4,lime/lime_1,,carrot/carrot_3,,cuboid/cuboid_2,tomato/tomato_2,cube/cube_1,,lime/lime_2,eggplant/eggplant_4,cuboid/cuboid_2,eggplant/eggplant_4,cuboid/cuboid_1,cuboid/cuboid_1,,cuboid/cuboid_2,lime/lime_2,,cuboid/cuboid_3,arch/arch_4,,arch/arch_1,banana/banana_1,orange/orange_4,cuboid/cuboid_1,arch/arch_2,cuboid/cuboid_3,arch/arch_2,,cuboid/cuboid_3,cabbage/cabbage_3, -,lime/lime_2,cabbage/cabbage_3,cylinder/cylinder_3,tomato/tomato_4,,,lime/lime_2,cuboid/cuboid_2,cucumber/cucumber_2,,arch/arch_2,lime/lime_4,lime/lime_2,cucumber/cucumber_4,cabbage/cabbage_2,semicylinder/semicylinder_1,cabbage/cabbage_2,tomato/tomato_3,cuboid/cuboid_3,lime/lime_4,,cucumber/cucumber_2,tomato/tomato_4,semicylinder/semicylinder_1,potato/potato_2,lime/lime_1,cylinder/cylinder_3,semicylinder/semicylinder_4,cuboid/cuboid_2,carrot/carrot_2,cucumber/cucumber_1,lime/lime_1,,lime/lime_2,tomato/tomato_3,carrot/carrot_2,arch/arch_1,semicylinder/semicylinder_1,cuboid/cuboid_2,carrot/carrot_1,cuboid/cuboid_2,eggplant/eggplant_3,corn/corn_1,,lime/lime_2,,arch/arch_2,,tomato/tomato_2,cuboid/cuboid_2,cuboid/cuboid_1,cuboid/cuboid_3,lemon/lemon_4,carrot/carrot_1,cucumber/cucumber_4,carrot/carrot_3,,cylinder/cylinder_3,lemon/lemon_3,cuboid/cuboid_3,lime/lime_1,cylinder/cylinder_4,lime/lime_2,cuboid/cuboid_2,semicylinder/semicylinder_1,cabbage/cabbage_1,arch/arch_2,lime/lime_2,,tomato/tomato_3,,cuboid/cuboid_2,cuboid/cuboid_1,cuboid/cuboid_2,,cabbage/cabbage_3,,tomato/tomato_2,cuboid/cuboid_2,cylinder/cylinder_3,,lime/lime_1,tomato/tomato_4,lime/lime_1,cylinder/cylinder_1,,carrot/carrot_2,,triangle/triangle_2,cylinder/cylinder_1,lime/lime_2,,cylinder/cylinder_1,arch/arch_2,cabbage/cabbage_1,tomato/tomato_4,tomato/tomato_4,cuboid/cuboid_2,,triangle/triangle_2,lime/lime_1,,cuboid/cuboid_2,cuboid/cuboid_3,,arch/arch_2,lime/lime_4,cucumber/cucumber_4,arch/arch_4,arch/arch_4,triangle/triangle_1,cuboid/cuboid_2,,cuboid/cuboid_2,cabbage/cabbage_2, -,banana/banana_4,cabbage/cabbage_2,semicylinder/semicylinder_2,banana/banana_4,,,lime/lime_1,triangle/triangle_2,triangle/triangle_4,,triangle/triangle_1,tomato/tomato_4,,cucumber/cucumber_1,corn/corn_1,cylinder/cylinder_3,corn/corn_1,carrot/carrot_3,cuboid/cuboid_2,cucumber/cucumber_1,,potato/potato_4,lemon/lemon_4,cylinder/cylinder_3,,cucumber/cucumber_2,triangle/triangle_2,cuboid/cuboid_2,semicylinder/semicylinder_1,cabbage/cabbage_1,lime/lime_1,cucumber/cucumber_2,,lime/lime_1,tomato/tomato_2,carrot/carrot_1,cuboid/cuboid_1,cylinder/cylinder_3,lemon/lemon_4,lemon/lemon_4,cylinder/cylinder_1,triangle/triangle_2,eggplant/eggplant_4,,,,cuboid/cuboid_1,,cuboid/cuboid_1,cylinder/cylinder_1,cuboid/cuboid_3,tomato/tomato_4,cabbage/cabbage_2,cucumber/cucumber_2,arch/arch_2,carrot/carrot_2,,semicylinder/semicylinder_2,triangle/triangle_2,tomato/tomato_4,lemon/lemon_4,plum/plum_4,banana/banana_4,cylinder/cylinder_1,cylinder/cylinder_3,cabbage/cabbage_3,cuboid/cuboid_1,cylinder/cylinder_1,,carrot/carrot_3,,semicylinder/semicylinder_1,cuboid/cuboid_3,cylinder/cylinder_1,,cabbage/cabbage_2,,cabbage/cabbage_3,cylinder/cylinder_3,cylinder/cylinder_4,,cylinder/cylinder_1,cuboid/cuboid_2,semicylinder/semicylinder_1,lemon/lemon_1,,carrot/carrot_1,,corn/corn_1,lemon/lemon_1,triangle/triangle_1,,lemon/lemon_4,arch/arch_4,cylinder/cylinder_3,eggplant/eggplant_1,cuboid/cuboid_3,eggplant/eggplant_3,,corn/corn_1,cucumber/cucumber_2,,semicylinder/semicylinder_1,triangle/triangle_1,,cuboid/cuboid_1,lime/lime_2,cucumber/cucumber_1,cuboid/cuboid_2,semicylinder/semicylinder_1,semicylinder/semicylinder_2,eggplant/eggplant_3,,triangle/triangle_1,eggplant/eggplant_4, -,banana/banana_2,corn/corn_1,triangle/triangle_4,corn/corn_1,,,cylinder/cylinder_1,corn/corn_1,corn/corn_3,,cabbage/cabbage_3,lime/lime_1,,carrot/carrot_2,eggplant/eggplant_4,semicylinder/semicylinder_2,eggplant/eggplant_4,carrot/carrot_2,cylinder/cylinder_1,lime/lime_2,,lemon/lemon_4,corn/corn_1,semicylinder/semicylinder_2,,cylinder/cylinder_4,triangle/triangle_4,,triangle/triangle_2,cabbage/cabbage_3,cuboid/cuboid_2,cylinder/cylinder_3,,cylinder/cylinder_1,tomato/tomato_4,cucumber/cucumber_2,cuboid/cuboid_3,semicylinder/semicylinder_2,lemon/lemon_1,potato/potato_2,cylinder/cylinder_3,corn/corn_1,corn/corn_3,,,,cuboid/cuboid_2,,cuboid/cuboid_3,cylinder/cylinder_3,cuboid/cuboid_2,semicylinder/semicylinder_1,corn/corn_1,eggplant/eggplant_1,cucumber/cucumber_1,carrot/carrot_1,,cylinder/cylinder_4,plum/plum_4,semicylinder/semicylinder_1,banana/banana_4,plum/plum_1,lemon/lemon_3,cylinder/cylinder_3,semicylinder/semicylinder_2,cabbage/cabbage_2,carrot/carrot_1,lemon/lemon_4,,carrot/carrot_2,,cylinder/cylinder_3,cuboid/cuboid_2,cylinder/cylinder_3,,eggplant/eggplant_4,,cabbage/cabbage_2,cylinder/cylinder_4,plum/plum_4,,lemon/lemon_4,lemon/lemon_4,cylinder/cylinder_3,lemon/lemon_3,,cucumber/cucumber_2,,corn/corn_3,lemon/lemon_3,lemon/lemon_4,,potato/potato_4,cuboid/cuboid_3,semicylinder/semicylinder_2,lemon/lemon_4,cylinder/cylinder_1,triangle/triangle_2,,corn/corn_3,cabbage/cabbage_2,,cylinder/cylinder_3,semicylinder/semicylinder_2,,cuboid/cuboid_2,lime/lime_1,cuboid/cuboid_2,semicylinder/semicylinder_1,cylinder/cylinder_3,triangle/triangle_2,eggplant/eggplant_4,,semicylinder/semicylinder_2,plum/plum_4, -,lemon/lemon_3,eggplant/eggplant_4,semicylinder/semicylinder_4,,,,banana/banana_4,corn/corn_2,corn/corn_2,,semicylinder/semicylinder_2,lime/lime_2,,carrot/carrot_1,corn/corn_3,cylinder/cylinder_4,corn/corn_3,carrot/carrot_1,triangle/triangle_2,lime/lime_1,,banana/banana_4,,cylinder/cylinder_4,,plum/plum_4,,,corn/corn_3,cabbage/cabbage_2,eggplant/eggplant_1,cabbage/cabbage_2,,lemon/lemon_4,lemon/lemon_4,lemon/lemon_4,cuboid/cuboid_2,triangle/triangle_4,corn/corn_3,,cylinder/cylinder_4,eggplant/eggplant_4,semicylinder/semicylinder_4,,,,triangle/triangle_2,,cuboid/cuboid_2,cylinder/cylinder_4,cylinder/cylinder_1,semicylinder/semicylinder_2,lemon/lemon_1,cylinder/cylinder_3,cuboid/cuboid_2,tomato/tomato_4,,plum/plum_1,plum/plum_1,semicylinder/semicylinder_2,lemon/lemon_3,plum/plum_2,,cylinder/cylinder_4,triangle/triangle_4,eggplant/eggplant_4,cuboid/cuboid_2,potato/potato_4,,carrot/carrot_1,,triangle/triangle_2,cylinder/cylinder_1,cylinder/cylinder_4,,plum/plum_4,,banana/banana_2,plum/plum_1,plum/plum_1,,orange/orange_2,orange/orange_2,semicylinder/semicylinder_2,,,lemon/lemon_4,,corn/corn_2,plum/plum_2,triangle/triangle_2,,lemon/lemon_1,semicylinder/semicylinder_1,cylinder/cylinder_4,cabbage/cabbage_2,triangle/triangle_2,triangle/triangle_4,,corn/corn_2,,,semicylinder/semicylinder_4,plum/plum_2,,cylinder/cylinder_1,potato/potato_4,lemon/lemon_4,cylinder/cylinder_3,semicylinder/semicylinder_2,,corn/corn_3,,semicylinder/semicylinder_4,plum/plum_1, -,orange/orange_4,corn/corn_3,,,,,lemon/lemon_3,,cuboid/cuboid_2,,semicylinder/semicylinder_4,lemon/lemon_4,,cuboid/cuboid_2,plum/plum_4,semicylinder/semicylinder_4,plum/plum_1,tomato/tomato_4,lemon/lemon_1,cucumber/cucumber_2,,lemon/lemon_1,,semicylinder/semicylinder_4,,,,,,corn/corn_1,cucumber/cucumber_2,cylinder/cylinder_4,,banana/banana_4,banana/banana_4,orange/orange_2,cylinder/cylinder_1,plum/plum_1,cucumber/cucumber_2,,plum/plum_4,corn/corn_3,,,,,semicylinder/semicylinder_4,,cylinder/cylinder_1,plum/plum_4,triangle/triangle_2,corn/corn_1,potato/potato_2,eggplant/eggplant_4,triangle/triangle_2,eggplant/eggplant_1,,,potato/potato_2,corn/corn_1,orange/orange_4,,,plum/plum_1,plum/plum_4,plum/plum_1,cylinder/cylinder_1,lemon/lemon_1,,tomato/tomato_4,,triangle/triangle_4,triangle/triangle_2,plum/plum_4,,plum/plum_1,,lemon/lemon_3,semicylinder/semicylinder_4,,,lemon/lemon_1,corn/corn_1,triangle/triangle_4,,,orange/orange_2,,,,semicylinder/semicylinder_4,,lemon/lemon_3,semicylinder/semicylinder_2,semicylinder/semicylinder_4,corn/corn_1,,corn/corn_3,,,,,corn/corn_2,plum/plum_1,,lemon/lemon_4,lemon/lemon_4,banana/banana_4,cylinder/cylinder_4,semicylinder/semicylinder_4,,corn/corn_2,,,, -,,plum/plum_4,,,,,banana/banana_2,,,,cylinder/cylinder_4,banana/banana_4,,lemon/lemon_4,plum/plum_1,,,banana/banana_4,,lemon/lemon_4,,lemon/lemon_3,,,,,,,,eggplant/eggplant_4,,,,lemon/lemon_3,lemon/lemon_1,,triangle/triangle_2,,,,plum/plum_1,corn/corn_2,,,,,corn/corn_2,,triangle/triangle_2,plum/plum_1,,carrot/carrot_1,,,semicylinder/semicylinder_4,cylinder/cylinder_3,,,,carrot/carrot_1,,,,,plum/plum_1,semicylinder/semicylinder_4,lemon/lemon_4,lemon/lemon_3,,banana/banana_4,,,,plum/plum_1,,,,plum/plum_4,,,,lemon/lemon_3,corn/corn_3,semicylinder/semicylinder_4,,,,,,,plum/plum_4,,banana/banana_2,triangle/triangle_4,,banana/banana_2,,corn/corn_2,,,,,,potato/potato_2,,,orange/orange_2,lemon/lemon_3,eggplant/eggplant_3,cylinder/cylinder_4,,cucumber/cucumber_2,,,, -,,plum/plum_1,,,,,,,,,triangle/triangle_4,lemon/lemon_3,,banana/banana_4,semicylinder/semicylinder_4,,,cylinder/cylinder_4,,banana/banana_4,,cube/cube_1,,,,,,,,corn/corn_3,,,,potato/potato_4,lemon/lemon_3,,potato/potato_4,,,,plum/plum_2,potato/potato_2,,,,,cucumber/cucumber_2,,,plum/plum_2,,corn/corn_2,,,cucumber/cucumber_2,banana/banana_4,,,,corn/corn_2,,,,,plum/plum_2,,,banana/banana_2,,cylinder/cylinder_4,,,,plum/plum_2,,,,plum/plum_1,,,,,lemon/lemon_1,,,,,,,,triangle/triangle_4,,,cabbage/cabbage_2,,plum/plum_1,,cucumber/cucumber_2,,,,,,,,,lemon/lemon_3,potato/potato_3,semicylinder/semicylinder_4,triangle/triangle_4,,triangle/triangle_4,,,, -,,semicylinder/semicylinder_4,,,,,,,,,,cucumber/cucumber_2,,cucumber/cucumber_2,,,,plum/plum_1,,lemon/lemon_3,,banana/banana_2,,,,,,,,corn/corn_2,,,,banana/banana_2,potato/potato_2,,,,,,,,,,,,,,,,,,,,,cylinder/cylinder_4,,,,,,,,,,,,,,plum/plum_1,,,,,,,,plum/plum_2,,,,,potato/potato_2,,,,,,,,,,,semicylinder/semicylinder_4,,potato/potato_2,,,,,,,,,,,banana/banana_2,cucumber/cucumber_2,,,,,,,, -,,,,,,,,,,,,,,,,,,banana/banana_2,,,,,,,,,,,,,,,,,banana/banana_2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,banana/banana_2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/testResults/testing_english_stem/NoOfDataPoints/6000/groundTruthPrediction.csv b/testResults/testing_english_stem/NoOfDataPoints/6000/groundTruthPrediction.csv deleted file mode 100644 index e4f323c..0000000 --- a/testResults/testing_english_stem/NoOfDataPoints/6000/groundTruthPrediction.csv +++ /dev/null @@ -1,72 +0,0 @@ -Token,Type,0-arch/arch_3,1-arch/arch_3,2-arch/arch_3,3-arch/arch_3,4-arch/arch_3,0-banana/banana_3,1-banana/banana_3,0-cabbage/cabbage_4,1-cabbage/cabbage_4,2-cabbage/cabbage_4,3-cabbage/cabbage_4,0-carrot/carrot_4,1-carrot/carrot_4,2-carrot/carrot_4,0-corn/corn_4,1-corn/corn_4,2-corn/corn_4,3-corn/corn_4,4-corn/corn_4,0-cube/cube_2,1-cube/cube_2,2-cube/cube_2,3-cube/cube_2,4-cube/cube_2,0-cuboid/cuboid_4,1-cuboid/cuboid_4,2-cuboid/cuboid_4,3-cuboid/cuboid_4,4-cuboid/cuboid_4,0-cucumber/cucumber_3,1-cucumber/cucumber_3,2-cucumber/cucumber_3,3-cucumber/cucumber_3,4-cucumber/cucumber_3,5-cucumber/cucumber_3,0-cylinder/cylinder_2,1-cylinder/cylinder_2,2-cylinder/cylinder_2,3-cylinder/cylinder_2,4-cylinder/cylinder_2,0-eggplant/eggplant_2,1-eggplant/eggplant_2,2-eggplant/eggplant_2,3-eggplant/eggplant_2,4-eggplant/eggplant_2,0-lemon/lemon_2,1-lemon/lemon_2,2-lemon/lemon_2,3-lemon/lemon_2,0-lime/lime_3,1-lime/lime_3,2-lime/lime_3,3-lime/lime_3,4-lime/lime_3,0-orange/orange_1,1-orange/orange_1,2-orange/orange_1,0-plum/plum_3,1-plum/plum_3,2-plum/plum_3,3-plum/plum_3,4-plum/plum_3,0-potato/potato_1,1-potato/potato_1,2-potato/potato_1,3-potato/potato_1,0-semicylinder/semicylinder_3,1-semicylinder/semicylinder_3,2-semicylinder/semicylinder_3,3-semicylinder/semicylinder_3,4-semicylinder/semicylinder_3,0-tomato/tomato_1,1-tomato/tomato_1,2-tomato/tomato_1,3-tomato/tomato_1,0-triangle/triangle_3,1-triangle/triangle_3,2-triangle/triangle_3,3-triangle/triangle_3,4-triangle/triangle_3 -,,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,plum,plum,plum,nan,nan,nan,nan, , , , , ,nan,nan,nan,nan,nan,nan,nan,nan,nan -,rgb,0.0101464583074061,0.014910619689626136,0.014167151164241222,0.02665518788965893,0.03751815675306492,0.9673871867860115,0.9897631594682677,0.19357171788612487,0.3980539218486,0.44515154132865364,0.32109494398224975,0.9434109415508094,0.9626105863797256,0.963530963814157,0.3273258211179033,0.3339034711671808,0.33922718456049217,0.3438728385152258,0.349630768624568,0.030109078258986424,0.028097604877069055,0.030432621832582253,0.040210480244806016,0.02921760045812276,0.30021239525835103,0.25513376975358,0.25608369918295437,0.22854223723101613,0.1405382622742924,0.1398940160084463,0.1829352193911668,0.15514945047435744,0.16856052563615315,0.1702459371570202,0.18318601343092022,0.9999999999917142,0.9999999999928519,0.9999999999950255,0.9999999999942659,0.9999999999965989,0.24314483145927657,0.25626082436303277,0.27255546124872115,0.2926251652060358,0.37377366632255643,0.9999934339720268,0.9999951829954685,0.9999952468983594,0.9999966115334311,0.9634015840828114,0.9790279418098027,0.986219708580991,0.9701690270444979,0.9735797388782939,0.9999940010765128,0.9999895586088666,0.9999985776142052,0.9335415072594967,0.9649183420535155,0.9864202123913397,0.9918833665108937,0.9975968366960639,0.9994355137283852,0.9995937694366429,0.999691810824726,0.9996931540573522,0.999713162239247,0.9991691206813914,0.9997686157981754,0.9991268605030615,0.9997871543766498,0.9999999999918037,0.9999999999928999,0.9999999999975533,0.9999999999974205,0.020328095431600024,0.021937407014295064,0.023402967436450702,0.018011297773248995,0.021034919385036672 -an,rgb,0.11995598777425583,0.07219414425704748,0.11207823043120617,0.1896934351864716,0.12618819895491423,0.9680819520033987,0.9280528954372185,0.9928878976369364,0.9963909300123859,0.9967146313793437,0.9953292429701107,0.9974584857448641,0.9977365228968824,0.9977975268115603,0.9928219403909179,0.9927335549843773,0.9926561532430199,0.9925846437333264,0.9928689968387359,0.051429867412556125,0.07245830565001965,0.0764102127894464,0.1163283224546744,0.18010165275986686,0.011460203539291293,0.012257668412076688,0.013623355056606239,0.015475420305881851,0.0508688800663805,0.7585056594292982,0.67538949636938,0.7369177856166316,0.7479097005149177,0.7642288675360986,0.8001998831458266,0.9660633534652967,0.9617214768626767,0.9617085996353162,0.9605454514984324,0.9511052740589777,0.9878679966892923,0.9896506844698795,0.9892930442850524,0.9887127663805829,0.9912604840985622,0.36958425487986396,0.36802845859578853,0.36964008120617986,0.37479279163397383,0.061990466118097325,0.05256929568204224,0.040616763233823,0.07952205557668678,0.08661004896716441,0.876285270184682,0.9495843073605374,0.7935603124166347,0.9987878199225196,0.9989224816813864,0.9991602269785321,0.9991492026016159,0.999213432619891,0.9983847108751935,0.9984371593393613,0.9986993701442186,0.998695357700549,0.22521014168772402,0.4201701461798227,0.21908656060368556,0.44415174156466763,0.22992953047668552,0.8716628111804091,0.871222612217499,0.8197140314970884,0.8343921593246841,0.10013815976013654,0.10341610900340223,0.12228319668055494,0.17600137068131372,0.150143480550289 -and,rgb,0.9999960791236983,0.9999953014764386,0.999982649219985,0.9989143271972459,0.9992989271630961,0.0005816239327034917,0.0027768306368698968,0.5243235423338576,0.9577007542381496,0.9759353269773368,0.31420159316451235,0.001949280516380005,0.002527040078257476,0.002751319712575172,0.011555630086091739,0.009967371025782585,0.00886980092055436,0.00803023798444532,0.008625240488991869,0.9999832260658064,0.9999539720420855,0.9999299538205346,0.9993678179466154,0.9988032576117919,1.0,1.0,1.0,1.0,1.0,0.06173969164089589,0.08520163715234798,0.06372794168444411,0.05129048633497068,0.04361497249217152,0.027823347337753275,1.0,1.0,1.0,1.0,1.0,0.007474151354766406,0.009382766125325646,0.0066591267086583365,0.00452589319276227,0.003469982012877681,0.9992951740633198,0.9995523523510152,0.9995552198314087,0.9997172923294254,0.993013494932023,0.9963444743955614,0.998543538856443,0.985899221890227,0.9824093194149838,0.9743100939315734,0.8652506242383011,0.9987925705956906,0.230758714925451,0.19473066575238743,0.5669490486104785,0.37160824630663347,0.5483055945598011,0.09429110331213367,0.15118309212321887,0.33536918593127557,0.3340503325834604,0.9849917664430656,0.7633572277639056,0.9887634990033751,0.7150997060922184,0.9881146261651981,0.9999999999999998,0.9999999999999998,1.0,1.0,0.9999504056820617,0.9999277662444892,0.9998403601482634,0.9997823022969354,0.9997754506198522 -appl,rgb,1.2484829515016217e-28,3.863586963274016e-29,3.4512203047975515e-28,1.0527260567423563e-25,4.069199666517641e-26,0.006610185278840112,0.011555599284470782,3.500694903365507e-08,5.8193825581302964e-05,0.00020078011280892413,4.4524726790042e-06,0.9946324689796132,0.999475235713378,0.9995864521869297,6.32687162890046e-07,6.734014577951595e-07,7.051953780172877e-07,7.320769976168486e-07,9.83937246189808e-07,1.2298468371814675e-28,5.642671527880545e-28,1.0516282207515461e-27,3.452151621375375e-26,1.1308474615494135e-25,1.0630282596409211e-27,6.091137054744502e-28,1.0591054211219654e-27,1.110251364135515e-27,4.7308733973512426e-26,5.942075206904961e-17,2.8506777427348623e-17,5.534161884551896e-17,1.1008075122563017e-16,1.790833703195239e-16,7.326621739039717e-16,1.0,1.0,1.0,1.0,1.0,8.731125325935162e-09,2.5476126132665513e-08,3.03993569966507e-08,3.51623545042102e-08,5.568875281200288e-07,0.9999548198830929,0.9999866142069554,0.999987743323597,0.9999971934130741,2.7241754084704353e-16,1.1658671015421908e-15,1.7190236013766021e-15,2.4267045681643827e-15,6.391056655144453e-15,0.9999999998592397,0.9999999999894413,0.9999999999912976,0.9996946025435389,0.9999888380174826,0.9999999346037053,0.9999999916566752,0.9999999999598235,0.9999999999962854,0.9999999999991622,0.9999999999998876,0.9999999999998879,0.00016320840156792014,0.00020417972926387837,0.00032624897867435744,0.0002710363658440062,0.0006223473791148207,1.0,1.0,1.0,1.0,8.383572392661956e-28,1.3797096338190859e-27,4.62674310248703e-27,1.2854008604029416e-26,9.61002414064783e-27 -arch,rgb,0.9564811836060798,0.9598839664492272,0.9334083684962184,0.759793942942536,0.8016547248421145,0.004361133264037177,0.007924530425434307,0.04070876223241315,0.06818555045695025,0.07603954984692048,0.02573351114570959,0.002883524307284296,0.0028486592128990898,0.002885885230384253,0.010246429232627868,0.009817421011971571,0.009494430763068095,0.009229348310699378,0.00927784723196379,0.9446391270395467,0.9190966863167344,0.9071081737575426,0.8098250413857084,0.7563601289734138,0.9999999968926441,0.9999999954106635,0.9999999946378082,0.9999999920735799,0.9999998814942357,0.06296691273438763,0.07579905133591579,0.0649563301032627,0.05926650479316843,0.054951768777186674,0.044756723602718665,0.9967147450092958,0.9969008482251731,0.997957223330395,0.9975203949131874,0.9983488868180762,0.011228523019927248,0.011301186074209794,0.010239230621006457,0.00920241648388983,0.007508451347877388,0.30469570121834627,0.3261248181044375,0.3257008502582993,0.34493060013843896,0.5548743187743431,0.5991051391180595,0.6705656947902519,0.47513376165141574,0.44761789478546365,0.06234766186195421,0.029707331558746594,0.14491452782380773,0.010014557106802026,0.008381330076188622,0.01128560966137345,0.00847762929307455,0.008846905999054326,0.004626852471276881,0.005153241905952387,0.006367848250749687,0.0063600437558432995,0.2578202430908546,0.1076572303999644,0.2719419242387559,0.09844941135112681,0.26279618865281656,0.9941753109502554,0.9948518739926331,0.9979191121470077,0.9978375282166606,0.9114231381006538,0.900269425055659,0.8697210361059626,0.8454041985711991,0.8498694145377899 -banana,rgb,2.70700609905548e-16,8.8246466515767e-15,4.55912819949528e-14,1.1010967636748914e-09,3.6536640348204893e-09,0.9839463128657577,0.9848528430874088,1.8789188035748355e-13,1.329203254006154e-18,1.611084846681668e-19,5.568526985556814e-13,4.982216500502108e-06,1.6986354743472954e-06,1.16715451419459e-06,3.315227480181008e-07,5.65793302767233e-07,8.663542811626342e-07,1.2495571201252276e-06,8.436791783248709e-07,3.830520456796802e-12,1.3921079517690561e-11,4.019771055819505e-11,4.342530867236843e-09,2.1358655709768944e-09,3.3556775111959324e-83,1.2778613798804713e-81,2.6869643896427884e-81,5.9830398434289665e-80,6.482618447310378e-72,0.05914845222663051,0.16060348184486842,0.09578819418484663,0.14755928371309748,0.1610792071719357,0.2344504095791369,9.274271769133946e-55,1.2878049893048398e-54,1.3398868158483412e-56,1.4238148122967226e-55,9.447696040865152e-57,1.2358320234792e-05,2.968797119027712e-06,1.060907564769413e-05,4.777200363288072e-05,3.9491330054736876e-05,6.732658036113967e-08,2.111088039039076e-08,2.0195181403557024e-08,5.634337745566194e-09,0.010814893034968577,0.004939835489073793,0.0014163774301006063,0.02938543569414343,0.04001273990044487,2.993454079294567e-08,4.431828583107586e-08,1.1286462106378864e-10,2.674569040130336e-14,4.4954961456562043e-14,1.4437699043338676e-16,2.42249813979919e-15,4.0060024683987705e-16,5.742348954414197e-11,1.1701295239554502e-11,2.397686854510977e-13,2.484663567592299e-13,0.0021167930630648303,0.11942387721269943,0.0011741327459125978,0.15048428192652524,0.0010927950167107802,4.701432003546816e-47,1.2239115874840088e-47,1.3113012481682506e-50,8.709839350154438e-51,2.603995195477884e-12,7.269127334194317e-12,3.462265968772895e-11,9.746599742598379e-12,2.939217406829942e-11 -block,rgb,0.9999999999998692,0.999999999999929,0.9999999999992402,0.999999999529491,0.9999999998440321,2.266340428689142e-06,1.7624618672388045e-05,0.060461496700841215,0.0741645207272131,0.08361676990058294,0.004226788015474607,4.536798442613737e-08,2.610500505867688e-08,2.5869230342258752e-08,0.00026705731846302235,0.00022736085788173502,0.00020061641455180158,0.00018053501792228863,0.00017183923518907887,0.9999999999997193,0.9999999999983511,0.9999999999968048,0.9999999998755653,0.9999999994940814,1.0,1.0,1.0,1.0,1.0,0.9731005034704351,0.9887940230422926,0.9766010196840047,0.9623405460896813,0.945326647851417,0.8557065861661229,0.9985553445122395,0.9988401007405587,0.9996264514491964,0.9993759154842992,0.9998156170725451,0.0009735357556237284,0.0007779307253589269,0.0005332177082532669,0.00035859638000793493,9.514580932805128e-05,0.5357341224092507,0.5564776105261363,0.5499869742424299,0.5451932680785622,0.9999989684883728,0.9999992625595822,0.9999997326039445,0.9999948836808328,0.9999906821213755,8.649698299352328e-05,3.0617818323452818e-06,0.001291317129955801,1.6982748454997122e-06,4.4479155537474705e-07,4.069843700287996e-07,9.692491266023103e-08,3.5680848938890486e-08,2.4550592888633036e-09,2.5860630959892814e-09,3.43761772305816e-09,3.422285625409392e-09,0.9682713875343014,0.40524868135723435,0.9713854912233573,0.3101821673822499,0.9615300592884144,0.9979762803539798,0.9985153438864953,0.9998987985533582,0.9998755345511292,0.9999999999973703,0.9999999999953864,0.9999999999827116,0.9999999999550493,0.9999999999633149 -blue,rgb,0.012098121247057019,0.004102168867546437,0.0037592929759049623,0.0004392298540798575,0.0002190845165969795,5.739302427806382e-09,1.1493441648849296e-09,0.0003621185657790536,0.0006779090056333231,0.0007422993847738559,0.00014608359290766806,2.034845247668977e-07,1.4326238423919484e-07,1.4740012391170495e-07,1.857637963899382e-05,1.6528104825920898e-05,1.5053318696361271e-05,1.3886949433696412e-05,1.436467129045134e-05,0.0006586157348723537,0.0006362883171069546,0.0004980957771577455,0.00019230715270755262,0.00035111210837549006,0.9999980590927476,0.9999975179400713,0.9999972702221652,0.9999965038122034,0.9999797210721131,5.914148533836199e-06,3.1526904291772313e-06,4.625767052963329e-06,3.8563808244371265e-06,3.805056109383353e-06,3.3154910329958434e-06,1.6206058975448142e-12,1.2603764256606567e-12,1.5808314053854848e-12,1.3222277485645987e-12,9.980246247804351e-13,1.6447474641640448e-05,1.9171769482514775e-05,1.4272458112035406e-05,1.0046850236180958e-05,6.930041784223739e-06,1.6911089131196213e-12,1.3719329330714829e-12,1.360305970592601e-12,1.0898248602512559e-12,7.554347809957634e-09,4.0821741615204156e-09,2.770146344347518e-09,5.283819884318102e-09,4.404813966357516e-09,2.7059415048281124e-12,6.019867555847477e-12,9.45779497339444e-13,4.680503644363453e-06,1.953485928417811e-06,1.451042100403222e-06,5.077962759364715e-07,1.509162423576724e-07,3.955448479550653e-09,3.362770872233959e-09,4.389845669279179e-09,4.341302070423437e-09,3.2632193018255916e-11,7.696407114630936e-11,2.7196924925241962e-11,8.006841330768667e-11,2.5110553593911922e-11,9.121389426074402e-14,9.317622878118567e-14,6.427939895508796e-14,7.418845344534531e-14,0.001300578316011255,0.001024726460914998,0.0007790465559591418,0.0014058006108084652,0.0009523619880569001 -bright,rgb,8.412074359174066e-09,7.025549465599984e-09,6.242938167658285e-09,5.722863386890273e-09,7.4067552954379834e-09,0.022293334615966037,0.1738719232472874,0.0006111304752708869,0.11634083784375554,0.25736900179664285,0.003373358866988674,0.5063935726196999,0.7984737501556073,0.8228851680670812,0.00017162153835834155,0.00016367165497985163,0.00015756159748923869,0.00015248746275079022,0.00018079552538510896,8.750383245393101e-09,7.332772123951997e-09,7.483626733215664e-09,7.95895175122978e-09,5.988139505058904e-09,0.999999998619018,0.999999995209278,0.9999999948885938,0.9999999873152369,0.999998997928461,6.710107173730077e-08,8.581541246434855e-08,7.437992440554509e-08,8.88683276304825e-08,9.537626716100968e-08,1.2481996705848772e-07,1.0,1.0,1.0,1.0,1.0,2.0518355266286366e-05,3.65511512512974e-05,3.356256900957658e-05,3.0069848646315954e-05,9.092001982489582e-05,0.9999999878651881,0.9999999954466554,0.9999999956524246,0.9999999985438648,0.0012727824419477532,0.005231398474774287,0.015461040876382419,0.00207693990186883,0.0028054107577167573,0.9999999986058941,0.99999999714438,0.9999999999786668,0.9831893836495382,0.9965431783006095,0.999914265282769,0.9999557674346413,0.9999984814069169,0.9999991064670407,0.9999997154157755,0.9999999424397579,0.9999999424956991,0.9984916990976502,0.9765234492714921,0.9991830458802061,0.9739962001124389,0.9993702404388971,1.0,1.0,1.0,1.0,6.001744739950519e-09,6.009978819741215e-09,5.8462057787058185e-09,5.4110451532112e-09,5.509336225586868e-09 -cabbag,rgb,9.626140922602488e-08,6.130896615635094e-09,3.563526871421495e-08,1.0096144340490563e-07,1.099079985553795e-08,0.016176210790336442,0.0002723642596648069,0.9996870615495731,0.9999855509596774,0.9999906367031594,0.9998953259127301,0.9995541937537651,0.9996577757129355,0.9996976506073307,0.9980544744917073,0.9978140842917284,0.9975932969425855,0.9973795834164345,0.9977937077119524,5.370109201098672e-10,2.061174715630655e-09,2.212156962097538e-09,7.20244677861282e-09,6.971690141433531e-08,8.773855983713034e-07,9.466703115791488e-07,1.3345701640904363e-06,1.8269988535332723e-06,5.7108285449439486e-05,0.00014310962499918407,2.1169216268596225e-05,8.074869145144629e-05,9.038530259808085e-05,0.00012522539405398543,0.0002570777337609365,0.0008894047900035194,0.0004824261836280641,0.0005787177010941583,0.0004526917535000332,0.00017275554148627986,0.9840575581303757,0.9920940424866553,0.989294686302953,0.9839376079058254,0.9925684656935715,8.989071063007073e-11,7.953569684043484e-11,8.132009076303933e-11,7.979618244376984e-11,1.844561666965458e-12,6.907997651770485e-13,2.0499571811231555e-13,4.133055682452082e-12,5.30558733847946e-12,1.4462994167627701e-06,8.935092598842448e-05,8.773200961381296e-08,0.9999961404779535,0.9999960149746535,0.9999983144111279,0.9999967615533469,0.9999954839791301,0.9994258872564454,0.9994587198220517,0.9997779351331826,0.9997738727150985,2.7153657097821293e-11,1.2895692651543596e-09,2.1699060649430126e-11,1.899567032292813e-09,2.6331224045675262e-11,6.598347264061842e-07,6.696017546284212e-07,1.3373590878244707e-07,2.1418322573285656e-07,1.1814167667280826e-08,1.1734177347712543e-08,2.024243617753068e-08,1.4244509797137176e-07,5.550001634610355e-08 -carrot,rgb,0.7467527051941871,0.04811691194841145,0.3508679397930026,0.42245740072890287,0.02159354469220307,0.06814496538118738,2.35536013556777e-05,0.9999999997732516,0.9999999997926399,0.9999999997580284,0.999999999659472,0.9999926850726906,0.999981664865937,0.9999825781528138,0.9999999955746204,0.9999999947124596,0.9999999938792059,0.999999993035878,0.9999999937554103,0.0006455442763172648,0.004288807475506337,0.004068196582329485,0.011011439034925926,0.27763062487362244,1.6730659515258758e-08,4.3938000175993375e-08,6.921105055818118e-08,1.9014088125716767e-07,0.000231735108289393,0.9933283345323793,0.8756172057845184,0.9826295556773852,0.9810200234600733,0.9867657710172895,0.9931191431779752,3.894749964441052e-33,1.2964823581426956e-33,4.35155922554272e-34,5.659763682167071e-34,3.63047341039919e-35,0.9999999859204023,0.9999999919169392,0.9999999867816207,0.9999999749156265,0.9999999735068177,2.762440326722967e-22,9.598585203801585e-23,9.481547910303504e-23,3.4251632844585846e-23,6.390022751392477e-14,4.057623855596167e-15,2.7711603209037104e-16,1.0346216054337365e-13,1.026000838551472e-13,2.2180727135615872e-17,1.3859840227128664e-14,1.1097445975486385e-20,0.9999999329352983,0.999999601232481,0.9999970976914426,0.9999796386423109,0.9991073153519572,0.15085068636538954,0.06584989592687054,0.0682050799080528,0.06628614434949452,3.282713041597633e-18,7.718672126070299e-15,1.3563904995531802e-18,1.4288188812812287e-14,1.362364444151259e-18,2.6128574047456592e-36,1.6396604823099564e-36,8.376679894698035e-39,1.6417358189028625e-38,0.06885720345484334,0.060594142921337066,0.10477732471992907,0.6908044515832279,0.3405900602420579 -child,rgb,0.9999999999999978,0.9999999999999998,0.9999999999999922,0.9999999999757756,0.9999999999984988,1.0308300458403582e-11,1.4018444384870872e-09,3.725897568754025e-10,2.6188514664553567e-11,1.958656164849153e-11,6.186621208740494e-12,1.737787728376174e-17,6.3889113344450264e-18,5.669537638689295e-18,3.1453803315605874e-12,2.8621998113464792e-12,2.670780008505211e-12,2.5267864272147437e-12,2.0667813373899112e-12,0.9999999999999998,0.9999999999999973,0.9999999999999942,0.9999999999991289,0.9999999999796012,1.0,1.0,1.0,1.0,1.0,0.20660663346135005,0.7270717100947423,0.31126487877478537,0.18908570908668257,0.10532520136059083,0.019847223903685297,6.12467368796898e-06,1.177273093369933e-05,2.9292308305422848e-05,2.1836272567517522e-05,0.00013709956338981045,8.148675250776662e-11,3.538539735671003e-11,2.8892688813246013e-11,2.4947362572827305e-11,2.736715511061652e-12,0.5016738646441725,0.513276420163317,0.5003186406032051,0.4605939815446494,0.9999999996160074,0.9999999998403835,0.9999999999751059,0.9999999955214149,0.9999999889954755,1.6663771362311348e-08,2.2594236193329078e-11,1.4597882850534359e-06,2.1650784756580828e-17,3.874813161346571e-18,1.1486890354041977e-18,3.2481147035222935e-19,8.283738983402963e-20,1.1116754020639413e-19,9.666197399459387e-20,5.726077040552456e-20,5.769448044071896e-20,0.9979507265238194,0.3842202243685706,0.9983123023846,0.23103078866049442,0.9971639848454494,0.0012621578431319406,0.0016316437577170088,0.06094148600866057,0.03536675363197043,0.9999999999999851,0.999999999999972,0.9999999999998168,0.9999999999978797,0.9999999999991311 -chow,rgb,0.9999916214237015,0.9999997638112281,0.9999977600396347,0.9999864076133292,0.999998935846707,5.84434162985643e-10,1.2175996507685259e-08,1.9853175209920514e-14,2.8247643593310358e-18,6.684228061206027e-19,7.834158282889061e-16,6.2234485526583e-18,1.1714850247533415e-18,8.645993549740461e-19,3.6150615736271655e-13,4.290644496620742e-13,4.941369093546103e-13,5.596534473280328e-13,3.8384199450820706e-13,0.9999999825804183,0.9999999108763171,0.9999998944183568,0.9999993316651908,0.9999908725638883,1.1686437398245095e-10,3.116474977171665e-10,2.0500264347914724e-10,2.9314597652232275e-10,1.1009950094766348e-10,0.15623662902357538,0.6177992100021645,0.2539208164437017,0.19266690722466423,0.12634895792858558,0.04041211862523642,8.271762079361501e-41,1.4662735282523971e-40,2.3054161469043703e-41,6.685050801100672e-41,4.939163801957465e-41,4.0911218196901746e-11,9.738348445546466e-12,1.4759963543508447e-11,2.597182547979642e-11,3.0720749767270157e-12,1.4700471808125206e-08,6.714664893884964e-09,6.237055599984184e-09,2.2312575897970113e-09,0.9999930116649811,0.9999919892255075,0.9999952450764485,0.9999652619920758,0.9999334659988941,5.858900097829443e-15,5.692058318970844e-17,4.130501323844911e-15,5.796408512049138e-22,1.145812770457892e-22,1.1519372277851092e-24,1.1719283359110116e-24,6.27287098646585e-26,1.032578353138377e-23,3.225361816338865e-24,2.4315465679623747e-25,2.482172556381479e-25,0.006589667224672525,0.0006051340858765257,0.004858121417074893,0.0004020002406107298,0.0029114138051143383,4.3159211269670903e-35,2.4101715882870343e-35,6.393175138908057e-36,3.4389727351650096e-36,0.9999993614861262,0.9999993302968222,0.9999985642503778,0.9999844386346584,0.9999950464873303 -circl,rgb,0.9518606261012451,0.9629783248960908,0.9398059431317843,0.8331472265125381,0.8744159789353775,0.010374190170862673,0.019810029198377148,0.023759467746703924,0.022897876222799977,0.02325959829909863,0.014777065692291947,0.0027804711129988564,0.0025722793715642497,0.002557390110991602,0.010549424009022553,0.010338578574486496,0.010180904473513927,0.010052283003257593,0.009900191462134712,0.9605142444219898,0.9429974504362356,0.9365334102341714,0.8815342861172009,0.834913674187399,0.9999981392370526,0.9999976364988465,0.9999972955365075,0.9999964575552504,0.9999729322186834,0.1440124740109808,0.18164239588243578,0.1519531708547678,0.1413331081625944,0.1313944586677329,0.10841430191533159,0.671883363100893,0.6893898361933326,0.734222477730305,0.7164315126956026,0.7738321778954257,0.01422934558510163,0.013283377940390093,0.0127030567373528,0.01218434023498391,0.009554597727806289,0.3453214306231195,0.3554133488030419,0.35432839620453926,0.3596377894896724,0.7876654667613748,0.8119221262280265,0.850027839822852,0.7317460392591527,0.7098148704965932,0.05758107339818106,0.025742100636916714,0.11220526158838828,0.0041056341021368835,0.00341628005604017,0.0034674300133916425,0.002892522366820107,0.0027038878482590644,0.002393697704710334,0.002469289954657414,0.002536305547494566,0.0025374277335237705,0.4288234081503108,0.22584741277665654,0.4401923821557244,0.20941271788246446,0.4260841245089189,0.7343671876081834,0.7468542168613459,0.8478741448479171,0.8394261876113405,0.9315872344794665,0.9254037294988027,0.9057106177571704,0.878245244823901,0.8880316025071767 -cob,rgb,0.0007801134591924362,0.0004505930886871989,0.0018711988117435228,0.04003265952517454,0.014448382417346086,0.841712488233798,0.15577601805265193,0.8723291553167123,0.11069983963195762,0.053945918937345,0.8708960142680734,0.8943374219231323,0.7893929839033157,0.7711024777397347,0.9940886134793323,0.9946084339608393,0.9949813950927027,0.995275366289643,0.9948312790651731,0.00047755213553518183,0.0014950662840267136,0.001996433184402083,0.011574560067421875,0.03772908903571459,1.661055098829353e-28,8.04496826665856e-28,1.2047542883481116e-27,4.900813699493585e-27,2.8916093178802564e-23,0.9805810984408377,0.953839246997191,0.9755358915935974,0.977622617458709,0.9810001063050623,0.986789600384408,3.139808997418682e-32,2.2021190915434846e-32,3.108780141363377e-33,7.54044784655157e-33,9.759094230458072e-34,0.9974089407391902,0.9966377312214743,0.9972211680805403,0.9977315919887483,0.9972588326936506,1.2795943526493546e-11,5.437628201232919e-12,5.316264551445793e-12,2.190835004905538e-12,1.045528745261919e-05,2.434232158938261e-06,5.256958835092594e-07,1.6224440879078077e-05,1.7234256636222264e-05,6.78053319349169e-10,1.0218557400765605e-08,4.349585064274477e-12,0.11432840684356105,0.05980057422546444,0.0036809213027136816,0.0036815420199891495,0.00035042709872889745,0.00035582307488075666,0.00013800171793395218,3.786765268706543e-05,3.78073703181703e-05,3.529528149454825e-08,3.3408041738501183e-06,1.9705651245530627e-08,4.650796670287257e-06,1.8822007648991668e-08,5.353336954333421e-31,2.8162227155431356e-31,3.258273931467471e-33,3.748544278042908e-33,0.0028345775592786434,0.0036325947991896193,0.007263069421142582,0.01587508398916028,0.012397647611849002 -corn,rgb,0.0007801134591924362,0.0004505930886871989,0.0018711988117435228,0.04003265952517454,0.014448382417346086,0.841712488233798,0.15577601805265193,0.8723291553167123,0.11069983963195762,0.053945918937345,0.8708960142680734,0.8943374219231323,0.7893929839033157,0.7711024777397347,0.9940886134793323,0.9946084339608393,0.9949813950927027,0.995275366289643,0.9948312790651731,0.00047755213553518183,0.0014950662840267136,0.001996433184402083,0.011574560067421875,0.03772908903571459,1.661055098829353e-28,8.04496826665856e-28,1.2047542883481116e-27,4.900813699493585e-27,2.8916093178802564e-23,0.9805810984408377,0.953839246997191,0.9755358915935974,0.977622617458709,0.9810001063050623,0.986789600384408,3.139808997418682e-32,2.2021190915434846e-32,3.108780141363377e-33,7.54044784655157e-33,9.759094230458072e-34,0.9974089407391902,0.9966377312214743,0.9972211680805403,0.9977315919887483,0.9972588326936506,1.2795943526493546e-11,5.437628201232919e-12,5.316264551445793e-12,2.190835004905538e-12,1.045528745261919e-05,2.434232158938261e-06,5.256958835092594e-07,1.6224440879078077e-05,1.7234256636222264e-05,6.78053319349169e-10,1.0218557400765605e-08,4.349585064274477e-12,0.11432840684356105,0.05980057422546444,0.0036809213027136816,0.0036815420199891495,0.00035042709872889745,0.00035582307488075666,0.00013800171793395218,3.786765268706543e-05,3.78073703181703e-05,3.529528149454825e-08,3.3408041738501183e-06,1.9705651245530627e-08,4.650796670287257e-06,1.8822007648991668e-08,5.353336954333421e-31,2.8162227155431356e-31,3.258273931467471e-33,3.748544278042908e-33,0.0028345775592786434,0.0036325947991896193,0.007263069421142582,0.01587508398916028,0.012397647611849002 -cube,rgb,0.9996033616060777,0.9998813745037612,0.9994884698234213,0.993524844477341,0.9980963509308967,0.00012278206494909655,0.0014907743215370965,2.516767778877339e-05,1.706373280478939e-05,1.7151896286168797e-05,8.401181426658972e-06,6.571795919064316e-07,5.884054154689257e-07,5.716248529809516e-07,6.794579592079143e-06,6.685422210171057e-06,6.6147293869498035e-06,6.564985474983266e-06,6.188454073194389e-06,0.9999265108912079,0.9997758847781009,0.9997138336650156,0.998505268554253,0.9942514117125549,0.9999999999999627,0.9999999999999323,0.999999999999903,0.9999999999998062,0.9999999999623184,0.034622008983416296,0.09228737994707528,0.04506169603124974,0.03781032715643854,0.029898546629357092,0.016779820619923592,0.9998465482442576,0.999889358474997,0.9999356458859097,0.9999223081135995,0.9999707825428626,1.758014719363753e-05,1.3475495190555464e-05,1.31714490538522e-05,1.3263664115694822e-05,7.33574827470879e-06,0.9949728711393819,0.9958752820073028,0.9958292909797966,0.9963731923391452,0.9996996523960129,0.9998446540711817,0.9999387898409796,0.9993498243224953,0.9991613796180837,0.22815011077558964,0.01863896958092214,0.7795251528417513,6.267007942774789e-07,4.97274057938011e-07,5.61687774986444e-07,4.832000797681244e-07,6.028546806906641e-07,1.611023340843445e-06,1.8558233485894245e-06,1.7946290684712185e-06,1.8043440902809042e-06,0.9951747518103343,0.906091381395382,0.9960364694967917,0.8776382407018447,0.9954386693992657,0.999978857463144,0.9999822916508085,0.9999975277245684,0.9999968543627201,0.9994847408618337,0.9993802012569297,0.9988161508952057,0.9966017600221494,0.9977685919810928 -cuboid,rgb,0.4718907759992827,0.550504291301295,0.49376667645409594,0.4453015452247536,0.5114970387920984,0.14027621741960694,0.21376451210248945,0.043029910088159214,0.032732829109247304,0.03159415628554779,0.0377376493061436,0.04115017013360398,0.04031365485714167,0.03984055938991207,0.04855315252095846,0.04904993413028761,0.049468929011034425,0.04984570073598338,0.048994650449402134,0.6137129572581796,0.5716255076496771,0.5677990947732032,0.5242465044318263,0.4555310704365693,0.6782634575919458,0.6701327898407134,0.6595886008313177,0.645586542837574,0.5103703743012475,0.2275167482659047,0.27014542346393067,0.23955687664316733,0.23655224226709956,0.22930255557959642,0.21365937828746448,0.40856204811068336,0.42649130647223693,0.4296909838241944,0.43266568625922175,0.4676339446002166,0.06036857435426667,0.056190328528255944,0.057748269429387836,0.05998337813255733,0.05503693104479187,0.6745334749830876,0.6801328365786461,0.6796325097935245,0.6826734870111575,0.7414038889775281,0.7655816102266548,0.7932258646255,0.7208761441498494,0.714408519257215,0.3891618504471293,0.27631882036502864,0.4857826309131987,0.02671683044396591,0.026855037526040265,0.02540526566461095,0.027032494331957417,0.0287355266607979,0.047384480511844296,0.047685323556514364,0.044211886321172865,0.044296432755639055,0.6841081445417548,0.5651788960858648,0.6912610949276996,0.5529246814457065,0.6864286166660721,0.5953107979690362,0.5974540939351576,0.6567968910914961,0.6442603993115126,0.5210232984513689,0.5195475946039358,0.5002023534055832,0.4424835116744069,0.4694495753979342 -cucumb,rgb,0.9999747888160335,0.9999841670454911,0.9999814947874461,0.9999785732800565,0.9999804802924869,0.11355789707687829,0.041614476238264066,0.31691568484047733,0.006750524627789294,0.0032148591240002875,0.10303640506906289,0.0019285428675558593,0.0007034486466903779,0.0006181852134041339,0.5719853300995617,0.5831711369081802,0.5921760011273164,0.599947640741831,0.5650512067071095,0.9999858709877959,0.9999850493938173,0.9999845661894443,0.9999805119101728,0.9999787981006546,4.381312302220306e-08,1.044142771245065e-07,1.0408577964365366e-07,1.891955351664058e-07,2.5320522238592775e-06,0.9996224021804903,0.999645269276702,0.9996208909825692,0.9995605315154766,0.9995168692295447,0.9993524202353948,3.075298403083913e-26,2.8756624824328867e-26,7.758437373974879e-27,1.463165876052111e-26,5.070651838517584e-27,0.889482467058514,0.8296486297635669,0.8423531333994947,0.8579643102429708,0.709512408899729,1.9873476770558018e-07,9.981134801661091e-08,9.626104482268602e-08,4.395001193539199e-08,0.9568573745580209,0.9004224568377448,0.8283294992107982,0.9327333331406127,0.9149182513759093,1.168771721783787e-08,1.1458907172209478e-08,8.389583897819122e-10,6.303713525866023e-05,1.9758522300098455e-05,1.2474728712943445e-06,8.222113614350978e-07,7.485006772894263e-08,8.784983138053734e-08,3.8364743797163724e-08,1.0983610080936447e-08,1.099899852260955e-08,0.001095858407757674,0.004789969620969267,0.0007253566357296009,0.0049044286105042805,0.0005855663535508636,2.0468878095646162e-24,1.3137511724738548e-24,1.1620252364271955e-25,1.0719405189549267e-25,0.9999839646482164,0.9999838419440944,0.9999827991811322,0.9999792148355334,0.999981229075987 -cut,rgb,0.976986476549631,0.9842185858418789,0.9702021979230929,0.8886995156931312,0.9252420326885793,0.002658329992581855,0.00606613990735316,0.006425029562849089,0.005269892710508559,0.005238516562004624,0.003395657833069689,0.00040354064531587076,0.0003561554198019503,0.00035183969423174105,0.0024925863126192506,0.0024385272147922853,0.0023985659562933423,0.0023662841335583733,0.0023082090239912984,0.9835177970155381,0.973384381973691,0.9694804420031105,0.9310332672791113,0.8907627956018291,0.9999997996813556,0.9999997377326524,0.9999996894773692,0.9999995735294289,0.9999950316363612,0.09754990097880105,0.13482067169100295,0.10525733741265474,0.0954477984162509,0.0863807759589181,0.06647713185076239,0.28015876342489504,0.3017943195843604,0.3522605746550439,0.3322964214830309,0.4151234868510693,0.003885152202413321,0.00348895183997735,0.003324880694806153,0.003187402673137849,0.0022852925918252233,0.22454153782811737,0.23118413078076283,0.22993844921561132,0.23135950435602332,0.8416992655540333,0.8636504417075967,0.8982590454091771,0.7813049554336301,0.7559327283425746,0.016747867405208866,0.005758589264721679,0.03852295795702363,0.0005554536672533985,0.0004308215627716823,0.00040335974211707824,0.0003227945833839745,0.0002806512585894649,0.00026011091815393106,0.0002641808098733558,0.00026090712987917247,0.0002611242651231779,0.36152033262934125,0.14996222915409488,0.37283983407996746,0.13502591585302445,0.3547380748953646,0.4091651497994299,0.4255410751413985,0.6067162536494959,0.5858507035048561,0.9656429117411207,0.9616722525482746,0.9479431079421127,0.9255991473701818,0.9341569268045616 -cylind,rgb,0.6143594628576202,0.6848719410449858,0.6164236901354516,0.5096672413598874,0.5802909800875331,0.05695401515513354,0.09426769161269266,0.027652930713077794,0.021611313418767545,0.02101465486432551,0.021992627576139616,0.015090226055515247,0.014469384202455377,0.014304461594055852,0.02495504033382659,0.025034260256811637,0.025109914419267024,0.025183741611390278,0.02473255642801292,0.7224843112011887,0.6742173698598528,0.6651837288016188,0.5937139377235187,0.5182917265560242,0.9708310866275963,0.9684026346157276,0.9661961519208034,0.9623858521674601,0.9108936044199165,0.16886862508066638,0.20576541417979283,0.17843972666538702,0.1733768809640524,0.16596723695743787,0.14929745312309578,0.3173240510130684,0.3339220550524919,0.3465581287368542,0.34449904124702146,0.38530265276916814,0.03220603829830264,0.029846226617386173,0.030170091997378815,0.030780874830432403,0.026943843208116425,0.5032195464609911,0.5097003210671415,0.5089065981167671,0.5116944328107476,0.7056854857664149,0.7320791313821513,0.7669758650306204,0.6714760749091032,0.6596061410180812,0.19132184495108268,0.11506829126114525,0.27328495285662724,0.011651491566304057,0.011086082910040696,0.010469475621954535,0.010464497946326331,0.010614263057664278,0.015188302983505491,0.015298239975836016,0.014398329630911897,0.014421509828806947,0.5480923902641953,0.39618130840825017,0.5565173653866943,0.3815029839725143,0.5483647804861462,0.47729556582775323,0.4823253018944012,0.5660051331561108,0.551612313862087,0.6279203951135589,0.6213493905410118,0.591899484154491,0.530717519108311,0.5572049961017834 -cylindershap,rgb,0.9203875443460987,0.9366472504630204,0.9119217342039463,0.8351164696533473,0.8679525014594048,0.06863045078482907,0.10706953057974207,0.08257666786308186,0.07039803231338351,0.069492433040365,0.06007008467809453,0.0221518809611487,0.020682786071066956,0.020503549238104726,0.05532444421847405,0.05488752752305113,0.054569541428056645,0.05431668647861151,0.0534920936129869,0.9382222857837629,0.9207002675885558,0.9153548967206104,0.8737189645910096,0.8375474493891613,0.9996905792116498,0.9996470073078394,0.9996137005671349,0.9995462601641457,0.998382618600967,0.34196008975532366,0.3927175824213511,0.35401035386101437,0.3412253482164089,0.3276563618478421,0.2944364443051246,0.43322718348506395,0.4489342141556127,0.475182313886728,0.4659864587066481,0.5136847074854561,0.07108392156470286,0.06666331456690919,0.06558273085097482,0.0648285957307584,0.05457808319297816,0.5103799942358961,0.5151001449572207,0.514095790673846,0.51455887732344,0.8339445540360312,0.847728526302366,0.8702248540345588,0.8021930312710683,0.7898158480106208,0.17390484721785188,0.102240582320238,0.2518715510241917,0.02332483664380778,0.020569492162486675,0.01942692178280309,0.017638447871493226,0.016464700814141264,0.01744933744958724,0.017516031520343193,0.017044260613839776,0.01705724705857783,0.6043286061361723,0.4442199833159814,0.6108125462918064,0.4275012168862819,0.6005118681392887,0.5428904938368407,0.5507106960066863,0.6433634354228281,0.6312538388882701,0.9078002193162809,0.9030123215765978,0.8871442298942782,0.8622991727464804,0.8719601687167676 -cylindr,rgb,0.9224875620291981,0.9374896067610198,0.9139335424849819,0.8399417177516018,0.8705475419822525,0.07606197023487214,0.11557874194747113,0.09642289539208919,0.08326703303370227,0.0823158190642602,0.07084629282784294,0.026213766628856012,0.024498444324074418,0.0242994490932898,0.06464504410782876,0.06411204707295746,0.06372127004563796,0.063408382294014,0.06250180930711184,0.9383570496215929,0.9214848772374402,0.9162512757273731,0.8759523437689367,0.8420590314453813,0.9996805572384078,0.9996364101734033,0.9996030307076413,0.9995352974359755,0.99839083010767,0.36119034393379074,0.4103803817680377,0.37278816034492346,0.35988673555566547,0.346402871573907,0.3130936013585438,0.43734115268107326,0.45220388335717404,0.4781443200726961,0.46888575068446064,0.5147769274824217,0.08204715652719495,0.07724412284064959,0.07591735720335124,0.07493039766889571,0.06343618703185155,0.5063232685679409,0.5106707842376207,0.5096903903660372,0.5099103862958396,0.830284550795528,0.8434538664021602,0.8655555739223276,0.7988046945027641,0.7865232090342229,0.17967025233035683,0.10828765731516085,0.25558043836073924,0.028110492141239743,0.024792094930850734,0.023456508050409455,0.02124414132190119,0.019762275593058005,0.020455323471822214,0.02052004439395812,0.020031137640641312,0.0200445338275546,0.6006560037457813,0.4466617340735062,0.6067433686615059,0.4305140148494459,0.5966523688976506,0.5386630386417453,0.5463340686233599,0.6362083592212524,0.6246059871563749,0.9094973897901998,0.904820038557882,0.8895882592607935,0.8664748007766012,0.8753292986647362 -dark,rgb,0.0021290129605967623,0.0005003204988609882,0.0016030914034465276,0.005601512207992789,0.0015865408024632907,0.9752787871913116,0.770079855806271,0.9998703914918433,0.999958829920321,0.9999640477400017,0.9999379629502245,0.9999460691645204,0.9999511462855176,0.9999536369405775,0.9998386095653516,0.9998324192470488,0.9998269610037664,0.9998218704854119,0.9998356660186443,0.00016744656467623312,0.000408700983881458,0.0004555563259267301,0.0012427859427091034,0.004670839165545455,6.785869822430372e-07,8.857659231383064e-07,1.1412937735654588e-06,1.6664216275639834e-06,4.130594159965768e-05,0.580928023668194,0.31886187479252315,0.5033249160500569,0.5281374009377449,0.5784843705683876,0.68603009327037,0.0032543726940345414,0.0022979309377955215,0.0019482935574813484,0.0019374263823783257,0.000921671057767257,0.9995319988698574,0.9996678419352485,0.9996305707605146,0.9995683250989043,0.9997285762949847,0.00012148880017947624,0.00010542716049158434,0.00010657817814683156,9.77945121214758e-05,2.1972521456245492e-05,1.1622041294526363e-05,5.182139793270983e-06,3.8199205120989914e-05,4.5372401827441606e-05,0.03916558240966158,0.33509474738390466,0.005361563705631328,0.9999902275360494,0.9999904164559792,0.9999919933203998,0.9999900509577482,0.9999865895737743,0.9998799889165768,0.9998727949273948,0.999906188798303,0.9999053643639216,0.00010661155023313744,0.0014059711059759479,8.997932874303922e-05,0.0018051613384406908,0.00010080590908752385,0.00012316555778499246,0.00011461381065870087,2.8761413526563118e-05,3.728388142444412e-05,0.0010571342360743501,0.0011219293594903436,0.0017174368491472334,0.005146330136818981,0.003123298856758189 -ear,rgb,0.0007801134591924362,0.0004505930886871989,0.0018711988117435228,0.04003265952517454,0.014448382417346086,0.841712488233798,0.15577601805265193,0.8723291553167123,0.11069983963195762,0.053945918937345,0.8708960142680734,0.8943374219231323,0.7893929839033157,0.7711024777397347,0.9940886134793323,0.9946084339608393,0.9949813950927027,0.995275366289643,0.9948312790651731,0.00047755213553518183,0.0014950662840267136,0.001996433184402083,0.011574560067421875,0.03772908903571459,1.661055098829353e-28,8.04496826665856e-28,1.2047542883481116e-27,4.900813699493585e-27,2.8916093178802564e-23,0.9805810984408377,0.953839246997191,0.9755358915935974,0.977622617458709,0.9810001063050623,0.986789600384408,3.139808997418682e-32,2.2021190915434846e-32,3.108780141363377e-33,7.54044784655157e-33,9.759094230458072e-34,0.9974089407391902,0.9966377312214743,0.9972211680805403,0.9977315919887483,0.9972588326936506,1.2795943526493546e-11,5.437628201232919e-12,5.316264551445793e-12,2.190835004905538e-12,1.045528745261919e-05,2.434232158938261e-06,5.256958835092594e-07,1.6224440879078077e-05,1.7234256636222264e-05,6.78053319349169e-10,1.0218557400765605e-08,4.349585064274477e-12,0.11432840684356105,0.05980057422546444,0.0036809213027136816,0.0036815420199891495,0.00035042709872889745,0.00035582307488075666,0.00013800171793395218,3.786765268706543e-05,3.78073703181703e-05,3.529528149454825e-08,3.3408041738501183e-06,1.9705651245530627e-08,4.650796670287257e-06,1.8822007648991668e-08,5.353336954333421e-31,2.8162227155431356e-31,3.258273931467471e-33,3.748544278042908e-33,0.0028345775592786434,0.0036325947991896193,0.007263069421142582,0.01587508398916028,0.012397647611849002 -eggplanet,rgb,0.9994267096731335,0.9989227876669479,0.999342708549991,0.9994523912402097,0.9988614451897356,0.722671761545655,0.19293364915645617,0.99873958043571,0.9870887129795682,0.9798590333484881,0.9972551038956942,0.8628435022029516,0.7497569602777738,0.738190015363032,0.9988845232955003,0.9988759911501949,0.9988683424141822,0.9988610615978707,0.9987967371146558,0.9975371706596401,0.9983965929160161,0.9983828557434692,0.9986738314597419,0.9993765517721945,1.1335348527672294e-06,2.348820963801087e-06,2.6385533607291207e-06,4.768368415197521e-06,0.0001273753000403669,0.9995029386728181,0.9990513351452759,0.9993843832799612,0.9993288746797526,0.9993538117446981,0.9993612452492643,5.5958560096000226e-21,4.229740657229601e-21,1.5586635222389358e-21,2.38499528342955e-21,7.0677618979249335e-22,0.9994519461128324,0.9993609410543881,0.9993335016325947,0.9992946458617862,0.9988668046062286,4.257323697556882e-08,2.3075820433909065e-08,2.2574297855106858e-08,1.1738155030701411e-08,0.04953992018646193,0.0170451820269211,0.006620849941111205,0.0446742511720316,0.03964433615468668,1.3279635551403797e-07,5.787844521087545e-07,5.529653064217014e-09,0.6957368525294743,0.4603018702888973,0.10723394949241416,0.06155516740010199,0.007864474765886966,0.001442462408799602,0.0007454474741716108,0.0003714575467078073,0.000369369875471268,3.475187032882791e-05,0.0004697621122311651,2.2775131869133395e-05,0.0005501564582121696,2.0427332252534943e-05,1.2224174023575829e-20,8.560209311777145e-21,6.590774252952236e-22,7.325530360864131e-22,0.9991058466289241,0.9990913572555415,0.9992050986434201,0.9995440784979472,0.9994067707971924 -eggplant,rgb,0.9993668826484866,0.998797964135116,0.9992714722297611,0.999396407544402,0.9987353955610155,0.7205365648092459,0.18966185211301612,0.9987668433961777,0.9876432589979134,0.9807861108685398,0.9973370204488278,0.8676442593807454,0.7581456917377175,0.7469851200608292,0.9989003803866736,0.9988914494235012,0.998883473085101,0.9988759046384537,0.998813604871249,0.9972307460634159,0.998205869875479,0.9981914164084489,0.9985249382521897,0.9993119922618068,1.1055468441851791e-06,2.286183981350653e-06,2.571532392918141e-06,4.6453556619985905e-06,0.00012485170403477293,0.9994719954442408,0.9989856481546742,0.9993448402674544,0.9992864422161845,0.9993139455909148,0.9993242029328853,6.470807855855609e-21,4.882143112600951e-21,1.8066789720626306e-21,2.757428928160701e-21,8.169389823427638e-22,0.9994529014883818,0.9993645116337345,0.9993364564171373,0.9992966601354466,0.9988763481831192,4.1097328045328994e-08,2.2312765016275004e-08,2.1831926425398742e-08,1.1378337322546312e-08,0.044721622627124556,0.01532796702176991,0.005933874725386881,0.04048188720328004,0.03596640018183482,1.3374068082636437e-07,5.912781774513234e-07,5.5587041902101755e-09,0.7094809895526566,0.4776199165117982,0.11520437430799803,0.06635487181615823,0.008570077859122708,0.0015488651063854304,0.0008026149540548274,0.0004025866563584087,0.00040029953215755604,3.253265558446156e-05,0.00044376682737524346,2.133120638494137e-05,0.0005203859858673266,1.9158159485409093e-05,1.363881769164205e-20,9.563233764480003e-21,7.37312565839483e-22,8.210010200322104e-22,0.9990053495032671,0.9989893913641297,0.9991179240301715,0.9994976483101401,0.9993441417944201 -fruit,rgb,0.5108569991936653,0.45302577628405116,0.5717752511637012,0.7971888485068801,0.7421678945380848,0.9983979855606963,0.9967898765549754,0.9967060409945484,0.9958328619843216,0.9955615176203249,0.9977281959661662,0.9994068689735621,0.9994124842564448,0.9994108542388083,0.9985990122083656,0.9986300740025524,0.9986534502228146,0.9986726165430839,0.998679833276978,0.4707891884743792,0.5616094425762894,0.5877927879459972,0.7298566452565998,0.7953242036861677,1.0282483116083296e-05,1.3665372900284702e-05,1.5539704552793323e-05,2.090000355198263e-05,0.00017233242872474286,0.9881445454209133,0.9846688009641313,0.9874155362484771,0.988274786375321,0.9891078564652738,0.9909730702318407,0.09487920318375057,0.08812731666011162,0.06721800749972849,0.07557703977706466,0.05406683201300046,0.9983336554402806,0.9983896823420481,0.998466918190103,0.9985390359877823,0.9987751128519664,0.8618432474245907,0.8511910993264585,0.8514688279530117,0.8420523819603253,0.761436950726671,0.7227137212743103,0.6586843164736681,0.8059645293648171,0.8193234546996634,0.9760431305313784,0.9890856821424695,0.9449711979736788,0.9989258830044448,0.9990295190694655,0.9988241051197616,0.99898464038429,0.9988894548346066,0.99902206020929,0.9989373724145193,0.9988183997556845,0.9988180071653241,0.8857800449465587,0.9546316283716698,0.8784194016330661,0.9585238482768462,0.882740833154838,0.09350857151082204,0.08610088202219285,0.04204398317731907,0.04435750611247716,0.6056488946699117,0.6265881235310429,0.6809071494805155,0.734840815506136,0.7181475148216689 -green,rgb,0.9962060455462829,0.9959934347184662,0.996715332166392,0.9977312139498145,0.9972587300210517,0.9775660758087343,0.9490308491094104,0.9904361089840105,0.9600121565738854,0.9482010439432378,0.9868148550739642,0.9610745720247273,0.9455579017996446,0.9433733781173379,0.9946406442910563,0.9947372053162026,0.9948120041731663,0.9948746316995902,0.9946586698539337,0.9957363404442472,0.9964190446718075,0.9965203188287443,0.9971374571144864,0.9976863519995578,0.0002434789855293928,0.00037004870630365255,0.00039330675774910945,0.0005505024615324753,0.003497415863987261,0.9984474070667013,0.9981652482336781,0.9983640976635617,0.9983251797331866,0.9983386697893648,0.9983317004544991,1.9217433515435904e-09,1.7657558418451562e-09,9.989698628688953e-10,1.298273248335735e-09,7.41106353003107e-10,0.9966930471327357,0.9962191966724492,0.9963472337995108,0.996488677357067,0.9955876587205305,0.024269495268950187,0.018310957208547453,0.01810870871525436,0.013315346809996733,0.9335755410312955,0.8996993741955459,0.857827314215039,0.9311242007668261,0.9278696116831808,0.02723385526525851,0.043456778900407896,0.006813904594513436,0.8811037732758792,0.8336954894352256,0.6415705651050106,0.6096142375034808,0.3826504008377142,0.3470595657701588,0.2768599514643233,0.19679185929594925,0.19670346290625607,0.36956563426708966,0.6345435903128019,0.32715653358972985,0.6486189990343045,0.3153825580100035,6.0581139449299125e-09,4.9982677368231994e-09,1.4568678804188971e-09,1.4782014053506026e-09,0.9968499786286373,0.9969341538886128,0.9971922703893987,0.9975171663853725,0.9974128231553548 -half,rgb,0.9303001430193782,0.9507177299097863,0.9160724721068431,0.7722054267232558,0.8362270532653686,0.005234717666385798,0.011665199251307035,0.007706161418328201,0.006853746543317248,0.006892393018336,0.004639573618671396,0.0009491103470013684,0.0008763456324092251,0.0008682228890090863,0.0036118994913421198,0.0035533622227103046,0.0035103435351316694,0.00347580238657909,0.0034055662944704004,0.9516606698222109,0.9274909656887932,0.9192998567586087,0.8470532690236037,0.7767366877274013,0.9999973882703014,0.9999966577673983,0.9999961313613923,0.999994861685138,0.9999552938534232,0.08399522995362661,0.11450706147689618,0.0906256150457455,0.0836782239842479,0.07667894787611132,0.06127496298783723,0.6238730351948178,0.6476209877275413,0.6961326282945939,0.677976026451266,0.7480321457276453,0.005191967974274832,0.004741227939280517,0.004580630205877298,0.00445461592585772,0.0034183083342463967,0.36072470005134294,0.3731303797672403,0.3719034510462036,0.3787701256904702,0.7979123538555282,0.8271833016544478,0.8681413689267607,0.7392581277625337,0.7163871522462899,0.045525440414782466,0.017561532516363765,0.0996820587961419,0.001208761853912333,0.0010160401602146466,0.0010197351742974414,0.0008741278509508747,0.0008415228721909744,0.0008863886060023931,0.000917739776874325,0.000920993121463182,0.000921990881636509,0.44026999452335414,0.20931395923475282,0.4543658623399361,0.19167819164844402,0.4389105584673357,0.7376546204984581,0.7504601118236199,0.8591947796399438,0.8492300029105128,0.9082927340223164,0.9003084056666248,0.8729474771218989,0.828311912805731,0.845692683010041 -head,rgb,0.0018860555856875583,8.577762111727593e-05,0.00042959669121451035,0.00029164127481562873,2.1343263945871102e-05,1.2303035308934226e-06,2.789430231545876e-09,0.99880558769535,0.9987721861464813,0.9986041416600384,0.9977881969219952,0.05387492517284332,0.02503401494155072,0.02590926440986924,0.9805209486576684,0.9773799362704197,0.9744482834196804,0.9715703816381686,0.9735981752857396,2.535875216811985e-06,9.344530058791939e-06,8.40616136916284e-06,1.2809048232161985e-05,0.00017560104414411434,7.906174713935847e-08,1.5247257439118823e-07,2.0361022558671506e-07,3.982476229161684e-07,4.012102048079999e-05,0.003001451998651823,0.0003057300390037542,0.0014352562091215612,0.001271152026281937,0.001623238173048587,0.002426198815589961,7.653787356031102e-31,3.315494746697618e-31,1.5244335148523627e-31,1.8120843372314087e-31,2.3342819880692902e-32,0.9605717906769254,0.973121405835864,0.9597940750117938,0.9333587331850659,0.9201119210752489,3.8549207297413194e-22,1.6746855767219584e-22,1.6529113564860798e-22,7.308712713623174e-23,7.755470563194561e-15,9.14495100081851e-16,1.2274605621512238e-16,9.545365752451915e-15,8.888200232606508e-15,9.349083008658665e-19,1.0144148154749634e-16,3.0446033417741326e-21,0.7384510148258833,0.3750507112961454,0.10518396215377707,0.021742406048809306,0.00099468575497734,8.550073271530961e-07,4.0900390716384074e-07,4.179713030179312e-07,4.079790839762093e-07,9.961577382236877e-19,3.023730233549703e-16,5.001415000982912e-19,4.694014285186944e-16,4.843677672649194e-19,2.8291855019354517e-33,2.0034850517123635e-33,3.9948960206257137e-35,6.595604365475804e-35,8.144912739837352e-05,6.936118820352377e-05,9.693032555705264e-05,0.0008718418671447886,0.00028544933070304374 -husk,rgb,0.0008889895986668568,0.0004536808512981689,0.0019507303383419145,0.03768290912007349,0.012384073268891698,0.7378353388553229,0.07329796114458627,0.9050212854085549,0.15391238725119097,0.07723662931665451,0.8995935918037973,0.8734911209742923,0.7479570029974237,0.7278461104249312,0.9947978004832666,0.995212664283161,0.9955115117284654,0.9957477762061044,0.9953662265973086,0.00040744412878010217,0.0013139597472047752,0.0017315392195564718,0.00974247672816799,0.03476189063479036,3.7110994922726378e-28,1.798355584456255e-27,2.7000781639832578e-27,1.1006107132771661e-26,6.614983441709742e-23,0.9766750711472282,0.9403998082954013,0.9698242141933014,0.9721056073380647,0.9764253416624431,0.9836612263363466,4.007542445648717e-33,2.725728684033356e-33,3.8394484987173946e-34,9.249461639216747e-34,1.1317436122683412e-34,0.9976495102440094,0.9970054848308257,0.9974666648301317,0.9978716653507337,0.9973838456230558,2.1536907328642875e-12,8.918164572000736e-13,8.714553552208871e-13,3.500508272069162e-13,3.501991681935487e-06,7.572453056785163e-07,1.5371722974446171e-07,5.3861071034805896e-06,5.672038097330571e-06,1.4194641663230274e-10,2.476919839111663e-09,7.680227236658542e-13,0.11891299355017088,0.05836454962784256,0.003450157581288055,0.0031723554512074785,0.0002686004878446622,0.00019601474106508015,7.444387367774496e-05,2.0800968923437774e-05,2.0745533682224453e-05,7.84816673940711e-09,8.775470869353052e-07,4.284070959877495e-09,1.236462078770865e-06,4.078305542894068e-09,5.162813553021849e-32,2.701995210389209e-32,2.8343518804258174e-34,3.322147286131447e-34,0.0027079559566290387,0.0034208889660467157,0.006813612580338475,0.016109237419236297,0.012042583233255553 -in,rgb,0.9988157995248413,0.9886637970346489,0.9803681746433962,0.3008608777158143,0.1598554029261692,0.1281124516303944,0.20272871944450674,0.9999993667327176,0.999999999947089,0.9999999999899207,0.9999996717220491,0.9999644726407593,0.9999907946470716,0.9999931498241831,0.9980855620969111,0.9974007086896147,0.9966813706318982,0.9959047074137926,0.9970194303846177,0.7744116202458002,0.6769878565476841,0.5623822268733445,0.14497069536935017,0.2311356360488234,1.0,1.0,1.0,1.0,1.0,0.001113919706710264,0.0005382204200171693,0.0008318891246009949,0.0007417036518541941,0.0007777321408297509,0.000821725462485191,1.0,1.0,1.0,1.0,1.0,0.9481021385341769,0.9829367468161974,0.9655971548687762,0.9220949363802308,0.9657941828589894,0.9999999755910621,0.9999999919449504,0.9999999923541864,0.9999999978073728,0.03251445635511536,0.08633115476561212,0.20926022159341387,0.030433570979955242,0.032363379292154305,0.9999999991262765,0.9999999992176356,0.9999999999915508,0.999999999851731,0.9999999999240099,0.9999999999995246,0.99999999999858,0.999999999999911,0.9999999999524427,0.9999999999887754,0.9999999999994205,0.9999999999994087,0.9959374201545017,0.9279019459245282,0.9977726164810234,0.9192425146241219,0.9982107407393057,1.0,1.0,1.0,1.0,0.8504824865391927,0.7757645777446933,0.637471005225524,0.8133538607827125,0.6866364091984785 -lay,rgb,1.0,1.0,1.0,1.0,1.0,0.992941598059773,0.9069195652709141,0.999999771086467,0.9998083296280917,0.9993691996658167,0.9999942567779853,0.43963829740567095,0.0965985968130925,0.08037848918160581,0.9999995520894333,0.9999995458705679,0.9999995413734121,0.9999995377379219,0.9999994203286388,1.0,1.0,1.0,1.0,1.0,0.999967793160374,0.9999902055715818,0.9999888121181182,0.9999945355263805,0.9999994188174135,0.9999999999992479,0.9999999999990701,0.9999999999991249,0.9999999999986726,0.9999999999983658,0.9999999999967355,9.334570483334929e-42,7.237282962546884e-42,1.0179891607213798e-42,2.5259134808702338e-42,3.9443662035217866e-43,0.9999999796725583,0.9999999558993959,0.9999999526469268,0.9999999497952338,0.9999996622279324,3.855142559500871e-10,1.0568656755041878e-10,9.859196415702503e-11,2.257905399503761e-11,0.9999999327397903,0.9999995569022126,0.9999985072959325,0.9999997798107384,0.9999995955887137,1.6729512085095302e-12,1.9478571257163595e-12,1.2764282687761514e-14,0.025162760620662566,0.0017950690134460737,1.3622928111719918e-05,2.956986614043711e-06,2.1048874395737345e-08,2.0107843914590096e-09,4.4692174642444173e-10,6.557568300782675e-11,6.523169702981652e-11,0.007879323809142736,0.10416138644688994,0.003530515380008303,0.10647628073391026,0.002265264950724893,1.728215118939968e-39,8.522266252856078e-40,1.435274884733606e-41,1.3455028719195186e-41,1.0,1.0,1.0,1.0,1.0 -lemon,rgb,0.06735399099404457,0.11899367373599279,0.11364274832416944,0.2260367165424208,0.29903693957811617,0.6663807852383442,0.7858363534642069,0.017236575934326037,0.00568622287167067,0.004726324662356729,0.01875569001797587,0.12639796372335768,0.12144223926034213,0.11732772321594992,0.07120013180683822,0.07529260765413766,0.07873488794137158,0.08182840797983565,0.07847002212017198,0.24159001750188544,0.23399389041251178,0.2510222940047486,0.3135713118656801,0.24525737468015033,3.4965927998503203e-07,4.5092907862010156e-07,4.6320197204231356e-07,5.647777912307619e-07,1.6482665665668298e-06,0.44519308711992994,0.5288148782767141,0.4749905420145543,0.4861042981474889,0.4804545294349308,0.4753491919292122,0.002450050060793357,0.0027406342887881774,0.0019632186777119084,0.0023865435093629148,0.0022902517594044314,0.10679062727116352,0.09100969107951927,0.10406897048581738,0.12214759878502032,0.11832624470451922,0.9080643575615803,0.9052545162799299,0.9049324510822601,0.9006614761188647,0.9077272605773794,0.9177567819093982,0.924195437728078,0.9106454199220925,0.9123213270762931,0.7786011107495144,0.6865117491298826,0.7881366684164548,0.017986597449565482,0.02089285012304957,0.014069288800966192,0.020435723793399817,0.022124154926633444,0.10955175549389055,0.10164517591493061,0.07286268715685375,0.07323158935479772,0.9344842839164664,0.9196546329905047,0.9350094255480158,0.9177679832048594,0.9342658225618656,0.0213390936783015,0.01956183300240162,0.01565165460505032,0.0143296844821149,0.17469649958606073,0.18914175869511066,0.20221310042962107,0.15233456906533155,0.1816182067732481 -lie,rgb,0.00016696847443330688,0.0002907257960789941,0.0008474656306906583,0.044530599382814194,0.039055239543329,0.999936508096168,0.9998264717421266,0.6066979220841474,0.047569008182427104,0.025656275821726388,0.7632340169407948,0.9989498599344592,0.9985937616615745,0.998443326382504,0.9947050774668112,0.9955092798302992,0.9960586722840667,0.9964748669539204,0.996124446623239,0.0014487152805500675,0.0033123982802249585,0.004990167840495477,0.037359503582136806,0.05127889273678194,1.4984677064668123e-28,5.686259613617635e-28,8.184172764576044e-28,2.7363473794733743e-27,5.689058862701821e-24,0.9960375391015278,0.9956745184733323,0.9962079848066976,0.9969429365300312,0.9973053783595557,0.998137748390885,1.3410412318525926e-16,1.2943213092265554e-16,2.632391522315651e-17,5.78069989573244e-17,1.7152816307861355e-17,0.9974197028421459,0.996434487582117,0.997577818857862,0.9984461288953801,0.9986824159030548,0.08131389311977336,0.054156943509635,0.0536821504148803,0.03496340169389975,0.5812617180372628,0.4534239707103329,0.2802644884863013,0.7173358502114541,0.7546601833040143,0.47449545690191813,0.7532987478529348,0.05741282965361609,0.7647232925802974,0.8028776939104943,0.402821610846576,0.6210203556754361,0.4573567425651173,0.9503186385271047,0.9174754845232779,0.7770720399078825,0.7785243215328647,0.6857724811808845,0.9633104630464263,0.6268823205882025,0.9697192383935264,0.6342254226018864,1.2447791790615589e-14,7.72135993097621e-15,4.426823283107696e-16,4.314076448874532e-16,0.0028158839176887864,0.00410388905321259,0.008403358637574078,0.008794367240950724,0.010295498964637368 -like,rgb,0.9996267960598021,0.9998828146345982,0.9995635080498743,0.9962173640547295,0.9988049560236054,0.0017642722406721796,0.018490537326286628,0.00020721925918929768,0.0001431491120073285,0.0001435283714201842,8.200216759027317e-05,1.2708754116637025e-05,1.1820026171059713e-05,1.150148860025673e-05,7.623040421321507e-05,7.566567177737299e-05,7.537506927547826e-05,7.523553275980382e-05,7.122161753356721e-05,0.9999323245768135,0.9998149921797926,0.9997728442808925,0.9990477079143608,0.9966519526737573,0.9999999999991473,0.9999999999985509,0.9999999999980074,0.9999999999963238,0.9999999996093074,0.15479722954641506,0.32836351489600313,0.19252522333124386,0.1698308828158115,0.1412234017207477,0.088723498243299,0.999973823509224,0.9999808414765236,0.9999881708788981,0.9999860886795507,0.9999943865679397,0.000179802222004501,0.0001403676155059066,0.00014004346244666062,0.00014402553137666374,8.672763924638994e-05,0.9992310924940033,0.9993681810936338,0.9993622546240339,0.9994482398355958,0.9998875410504945,0.9999406948390612,0.9999751534742315,0.9997794924765808,0.9997259538651069,0.7809527421993454,0.2207389781237317,0.9732803862011667,1.0145327346693736e-05,8.752705151145635e-06,1.0098515570046115e-05,9.442891671287894e-06,1.2612257102103202e-05,3.86454640291052e-05,4.4560462532454544e-05,4.277208336299755e-05,4.301150379817033e-05,0.9990658957311987,0.9843910810497191,0.9992292137621908,0.9796358672720274,0.9991298178901564,0.9999962912940468,0.9999968432783437,0.9999994865178078,0.9999993559837261,0.9995890997221994,0.9995217369979346,0.9991564496491685,0.9977283320605757,0.9984847187612017 -lime,rgb,0.9999916214237015,0.9999997638112281,0.9999977600396347,0.9999864076133292,0.999998935846707,5.84434162985643e-10,1.2175996507685259e-08,1.9853175209920514e-14,2.8247643593310358e-18,6.684228061206027e-19,7.834158282889061e-16,6.2234485526583e-18,1.1714850247533415e-18,8.645993549740461e-19,3.6150615736271655e-13,4.290644496620742e-13,4.941369093546103e-13,5.596534473280328e-13,3.8384199450820706e-13,0.9999999825804183,0.9999999108763171,0.9999998944183568,0.9999993316651908,0.9999908725638883,1.1686437398245095e-10,3.116474977171665e-10,2.0500264347914724e-10,2.9314597652232275e-10,1.1009950094766348e-10,0.15623662902357538,0.6177992100021645,0.2539208164437017,0.19266690722466423,0.12634895792858558,0.04041211862523642,8.271762079361501e-41,1.4662735282523971e-40,2.3054161469043703e-41,6.685050801100672e-41,4.939163801957465e-41,4.0911218196901746e-11,9.738348445546466e-12,1.4759963543508447e-11,2.597182547979642e-11,3.0720749767270157e-12,1.4700471808125206e-08,6.714664893884964e-09,6.237055599984184e-09,2.2312575897970113e-09,0.9999930116649811,0.9999919892255075,0.9999952450764485,0.9999652619920758,0.9999334659988941,5.858900097829443e-15,5.692058318970844e-17,4.130501323844911e-15,5.796408512049138e-22,1.145812770457892e-22,1.1519372277851092e-24,1.1719283359110116e-24,6.27287098646585e-26,1.032578353138377e-23,3.225361816338865e-24,2.4315465679623747e-25,2.482172556381479e-25,0.006589667224672525,0.0006051340858765257,0.004858121417074893,0.0004020002406107298,0.0029114138051143383,4.3159211269670903e-35,2.4101715882870343e-35,6.393175138908057e-36,3.4389727351650096e-36,0.9999993614861262,0.9999993302968222,0.9999985642503778,0.9999844386346584,0.9999950464873303 -long,rgb,0.9878259340293738,0.9485363169073913,0.9723858711461694,0.9520357790496535,0.8551682906698419,0.17916584554170364,0.012709354686386117,0.9998770409947899,0.9998861571255923,0.9998813643802938,0.9998092077062808,0.9725071278619212,0.9593876374650275,0.9601231946687397,0.9993125242515777,0.9992515028797992,0.9991979193941706,0.9991479337635724,0.9991787081720561,0.7520692206511574,0.8376928497192799,0.8249515288729912,0.823453311137804,0.939104792109909,0.9674296962541125,0.9739619270934677,0.9764079728616373,0.981239017477533,0.9961048946594738,0.9570746046881342,0.884939932151624,0.9400275781014159,0.9349804711346386,0.940679867983017,0.9479117191872329,3.0099795541668628e-12,2.0295459539692654e-12,1.5228064901366257e-12,1.5879802029431664e-12,6.404306944153485e-13,0.9990634326777366,0.9992247190850839,0.9990265370062126,0.9987039407472738,0.998481259513646,1.6477584180014916e-08,1.1161563416537343e-08,1.108029201805407e-08,7.53695910373662e-09,9.835151156085282e-05,3.591606574953887e-05,1.4482624347402293e-05,9.970584628890824e-05,9.331534496449754e-05,4.4086720683994617e-07,3.5582632935738204e-06,3.320521409361999e-08,0.9968368814511115,0.9928778834480103,0.985027462019977,0.9642335416156026,0.8533845687003567,0.13580948505060814,0.10043846066680238,0.10510577831302627,0.1039719953905416,7.951114557474984e-07,1.0036698979112646e-05,5.759117845576245e-07,1.212895241723197e-05,5.588095788691104e-07,1.7721704191414234e-13,1.537955580570255e-13,2.7929467553501606e-14,3.528921410903339e-14,0.9353438295836339,0.9282216044474338,0.9336908374421683,0.97500969755935,0.9580625472008912 -look,rgb,1.0,1.0,1.0,0.9999999999998859,0.9999999999999492,5.734883645967997e-08,2.7145045860731863e-07,0.9609013935685832,0.992259816999695,0.994731149079067,0.4031964112164086,1.7090934085036145e-08,8.597581158805374e-09,8.932872221402053e-09,0.003256644546505443,0.0024476450871697263,0.001955647997425417,0.001616027991809294,0.001611105473601583,1.0,1.0,0.9999999999999998,0.9999999999999574,0.9999999999998535,1.0,1.0,1.0,1.0,1.0,0.9973493044670165,0.9985533304433343,0.997342160356175,0.9947430901609968,0.9917259280492154,0.9698512917250156,0.9999987244207649,0.999998845133588,0.9999998115219082,0.9999995436443978,0.9999998979824571,0.009378474721086062,0.008944436386904137,0.004533813862691785,0.00213997732371548,0.0004104116017034371,0.023461529656790974,0.025992310658144405,0.025256887773752165,0.025106257788705864,0.9999994819770125,0.9999995603744157,0.9999998507009417,0.9999958975815122,0.9999909476707031,7.179679506726245e-07,2.3230450274633163e-08,1.5635007897337303e-05,2.6311524834597266e-05,3.6717979015189826e-06,4.947564289143322e-06,4.6035623962985215e-07,9.995926407894297e-08,2.9146786274831943e-10,3.3245591514536123e-10,7.474252406605405e-10,7.373361263629438e-10,0.5944666739762595,0.019966290421316143,0.6159829058448321,0.01250727573809371,0.5241093495802789,0.999962125145105,0.999976704618363,0.9999992949757269,0.9999991987639221,0.9999999999999998,0.9999999999999998,0.9999999999999984,0.9999999999999969,0.9999999999999969 -object,rgb,0.9932004152426867,0.9941106890442566,0.9899786346658856,0.9602012369016056,0.9694233950715941,0.028549314088870435,0.051202362424292845,0.16647877139971048,0.21766602575968513,0.23167369475106656,0.10796619446457728,0.013982981753345796,0.013384533002190724,0.01346628364868869,0.054183531193479274,0.05233261584965255,0.0509337913302409,0.04978220799423142,0.04967134437926857,0.9923376112077247,0.9885449725425123,0.9868063077182242,0.9710607052931461,0.9598153264554528,0.9999999967274602,0.9999999954003909,0.999999994647873,0.9999999923801882,0.9999999060828074,0.3497849219018461,0.4022212130989791,0.35934350842942797,0.33728131088688257,0.3188831741495445,0.272538962302107,0.9952021013897828,0.9954995868713092,0.9968219619094116,0.9962780318606834,0.9974220323599432,0.06396153245879363,0.06269239289238801,0.05791034172440651,0.05323717692947171,0.04272943206974899,0.6799721763054895,0.696214388661369,0.6955323804345221,0.7078802772685847,0.9100014629402466,0.9224725072707245,0.9410281345289304,0.8794716463893828,0.866751683281475,0.22008849653988527,0.1123994693584479,0.3980590096667735,0.0364093022023876,0.03004455052615585,0.03599258762629344,0.027766610953827753,0.027234469575541258,0.016531661880704606,0.01782672678955748,0.02058096182932668,0.020565584004898444,0.6896902825885018,0.4455528656622363,0.7024628793935408,0.4211179470014485,0.6912488761723273,0.9936528205945679,0.9942705528214604,0.9974424066638143,0.997319355238711,0.9870076380179974,0.9853474673650797,0.9804564872350134,0.97556794661447,0.9768006753629622 -on,rgb,1.0,1.0,1.0,1.0,1.0,0.9999953396995841,0.9999999161073431,0.9997635421785764,0.9820919481665367,0.9669952390347504,0.9951891928746286,0.1764658607230877,0.07459345205375559,0.06389960300100704,0.9993673572220477,0.999386064401708,0.9994034402606934,0.9994198828143498,0.9992664933439245,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999998768,0.9999999999999849,0.999999999999929,0.999999999999891,0.9999999999998157,0.999999999999317,0.39193659014294524,0.5390484981196603,0.5066900198970544,0.5595528069229116,0.7717857616706384,0.9999759734610996,0.9999386537865678,0.9999439381781713,0.999953195835808,0.9997232719291453,0.9999999999997675,0.9999999999997256,0.9999999999997118,0.9999999999995905,1.0,1.0,1.0,1.0,1.0,0.9999995550466557,0.9999162504314928,0.9999999667203194,0.0063109912684689165,0.0018565264855486567,0.00024792065602950903,0.00016159673275007588,4.1658344454844185e-05,0.0005779793972271234,0.0003887689682983421,0.000122984789836203,0.0001246211259731273,0.9999999999999998,0.9999999999999714,0.9999999999999998,0.9999999999999509,0.9999999999999996,0.999290552001848,0.9992579419826998,0.9998632538282463,0.9997656131571823,1.0,1.0,1.0,1.0,1.0 -orang,rgb,2.900378635645369e-07,7.476761613341853e-06,2.1284830505159664e-05,0.06528272315387909,0.21835451530947178,0.9999999946007481,0.9999999983232217,1.5753422116881633e-05,1.8529679212709153e-09,3.779678004677264e-10,4.6817400139521644e-05,0.9902426695665729,0.9817951100050303,0.9757526946617094,0.6793037052520133,0.7679932696917737,0.825395889321196,0.8652983308760615,0.824575839998059,0.0016683454009488775,0.0037421975654958737,0.008825549223502744,0.25884150443713816,0.11401283489709119,1.2335276108439373e-58,1.8444385056827898e-57,3.171117373197261e-57,3.162441441979201e-56,2.797645785053955e-50,0.9999886270538645,0.9999967895711348,0.9999933705555223,0.9999956595854428,0.9999958683269157,0.9999970252423701,1.4369112755773218e-30,2.1606281384386146e-30,7.345057769807187e-32,4.412474710849413e-31,7.927863175135195e-32,0.9731679469757194,0.9194507383333951,0.9709403523203177,0.9917044310130169,0.9913761299260851,0.9999468769231371,0.9998908145428236,0.9998875057443821,0.9997476783907807,0.9999996676902047,0.9999995989669054,0.9999992682616107,0.9999998529269786,0.999999889756697,0.9997056925995566,0.9995255183766437,0.9925639261624555,1.9040870451403912e-05,4.134148051139968e-05,7.24265672070994e-07,9.350859044111589e-06,4.661564324764639e-06,0.15900885679111315,0.061078541628518127,0.003283062583231437,0.003390375121752086,0.9999998866658228,0.999999987557075,0.9999998444550702,0.9999999891378891,0.9999998392394162,3.3891789967675256e-24,1.281944447113998e-24,1.34065690564483e-26,8.962881900252571e-27,0.0006917736477143519,0.0016063440944149312,0.005255662904842399,0.0013522011037045184,0.003879969213053161 -out,rgb,0.9447214201119895,0.951508786638792,0.9274403315946271,0.8079567859005112,0.8399135073405725,0.011839847340210373,0.018091348263300205,0.05316642810876421,0.05623542120073713,0.057727799192723674,0.03429390203368307,0.00546489668049209,0.005037037319233589,0.0050303772222381965,0.021761034905342796,0.021204905171436046,0.020783329766866133,0.020435326654622422,0.020261539664659822,0.9414513718931438,0.9209722357562333,0.9123045620054624,0.8458692289409527,0.8068799386400365,0.9999976128845374,0.9999970072126745,0.9999966285403691,0.9999956750449245,0.9999725174963426,0.15686515633482845,0.18221710225146803,0.16130614549348368,0.15037941522735757,0.1416375772393123,0.12018661759104782,0.46991147597060995,0.48187066062543465,0.5348529733294025,0.5113377809713536,0.5709126939453361,0.027076418961502823,0.026018191672541793,0.02450685373079611,0.023033412362678703,0.018501327517935484,0.1580376428878567,0.16171432310842562,0.16114141533454773,0.16246438963766474,0.6020167320354655,0.6226357579945658,0.6687885763198207,0.5338923572748928,0.5084347682196698,0.03241380808865593,0.017477014660129735,0.05474293958068213,0.009933323420187153,0.008071780396857558,0.00820685099517438,0.006542742075458047,0.0057694987404740454,0.00392964363298341,0.004014607481230738,0.004242374275021137,0.004240219996199922,0.2251757147515547,0.12261947743834503,0.23015707281877507,0.11454717487206424,0.22111814231647497,0.4658478186787824,0.4808008068763286,0.609706486795132,0.599860820781764,0.9129724915144654,0.9050563101646331,0.8830717549426581,0.8620060536752898,0.8675468944690168 -plum,rgb,2.6567559477029476e-15,3.1578785538325307e-16,1.3627799476015416e-15,6.066250280845665e-15,1.3095909529755037e-15,4.1114530703147064e-05,7.451130311855408e-06,0.005606574387203882,0.6050364265204342,0.7925144640644156,0.04939899604313379,0.7630943923195005,0.9087738989588794,0.9234304405745034,0.0013754712146287105,0.0012543963275308977,0.0011621462522619554,0.0010861497043028808,0.0013769564378842984,7.819355920446025e-17,2.2493306201766898e-16,2.605396175049951e-16,9.90335581832775e-16,4.859205174295213e-15,8.028783956981069e-07,4.4368076366705436e-07,5.896594741736015e-07,4.867997743573334e-07,1.2021640600956692e-06,4.753168260997304e-11,1.2977029074886896e-11,3.335906263524462e-11,4.311737481799e-11,5.965001525548126e-11,1.3484381530091443e-10,1.0,0.9999999999999998,1.0,1.0,1.0,6.684771685300925e-05,0.00016446233938431054,0.00013170214127716375,9.663608485490197e-05,0.000404291431048837,1.7912741726862893e-05,3.062951206935096e-05,3.216153205897879e-05,6.448564725713262e-05,2.139775213568814e-14,2.5678350331973433e-14,1.9475467650677963e-14,6.349325623195124e-14,9.922731033646276e-14,0.18025708737335516,0.7935294877578546,0.2443464024073545,0.998721117962882,0.9996059597277304,0.9999804992200536,0.9999832286279198,0.9999978860609445,0.9999677727633074,0.9999851357423175,0.9999970666298843,0.9999970325446799,2.6044305625846692e-09,1.0669820285137849e-08,3.2625641682502087e-09,1.380270051610221e-08,4.598344435145504e-09,0.9999999999997011,0.9999999999997939,0.999999999999917,0.9999999999999432,7.1579777478454e-16,7.658346325621906e-16,1.305620342025939e-15,5.529333663232425e-15,2.8098598547635664e-15 -potato,rgb,1.3181624339073205e-20,3.545989373816013e-21,2.0910787134004074e-20,1.1185045285447075e-18,3.9964690548969904e-19,0.044286997631253454,0.03564575507536925,0.00011107863612395432,0.03987659642808602,0.09962551459167433,0.003867339870521725,0.9980757031078716,0.9996483932671778,0.9997103868526139,0.00048259559652534556,0.0004900841572987528,0.0004946354883393102,0.000497614871156314,0.0006338475557599663,4.8987465393794584e-21,1.7095425840212203e-20,2.6211820494167565e-20,3.3272746740391146e-19,1.0973227302327749e-18,1.861993887458806e-18,1.1827850211068993e-18,1.8115372685250158e-18,1.8447585545327143e-18,2.999434689487528e-17,3.3731592307917677e-12,1.4723896337446668e-12,2.9111105290285703e-12,4.757018057636866e-12,7.024335063397466e-12,2.09124713065528e-11,1.0,1.0,1.0,1.0,1.0,1.59876629942697e-05,3.892462310304426e-05,4.101271421708495e-05,4.1414233786036266e-05,0.00032672829237663303,0.9934932103642261,0.9972385794573808,0.9974151837125093,0.9991031207855511,6.500096859745775e-13,1.583067164905886e-12,1.7749059286508002e-12,3.35297982227676e-12,6.8391235134469175e-12,0.9999998019363158,0.9999999827305398,0.9999999618285776,0.9999152765285757,0.999991618106211,0.9999998239345972,0.9999999516790742,0.9999999988529285,0.9999999994312123,0.9999999998085753,0.9999999999623814,0.9999999999623213,0.000195771459857855,0.0003782688807100348,0.00031176729522286564,0.0004869553168474108,0.0005064889341620611,1.0,1.0,1.0,1.0,3.044303729751766e-20,4.2295081102536544e-20,1.0429724060579859e-19,2.9517061640950024e-19,2.0392725243989525e-19 -prism,rgb,0.3712900522875756,0.37452750392922235,0.3310536302317965,0.22338654148839573,0.23861935814304802,0.038134416211727765,0.04869764535009029,0.0810655978086098,0.1108572946142617,0.11782700375766127,0.07212584884631217,0.03801095311200707,0.03912200341012738,0.03947161833860728,0.048131023142800634,0.04733391375691215,0.04671731967612425,0.04620018131034639,0.04650641099490193,0.3446433494216731,0.31222273364340974,0.30062039566747434,0.24207323107706544,0.2220925714305703,0.9984773189820928,0.9981901508734304,0.9980841935174862,0.9977434634301887,0.9933705156686284,0.07158454504002792,0.07638678453179143,0.07238830851980371,0.0703404107740009,0.06865224866672062,0.06436149142930075,0.9427077878609015,0.943961691880254,0.9535822965362519,0.9492771233385003,0.9574991701572954,0.046856043066018975,0.04775236922713117,0.04596314142955637,0.04406712129338203,0.042237368567939144,0.2518632852638458,0.26331271208118934,0.26341609799286314,0.2749027806297713,0.20824797864053418,0.2246374017707123,0.2489088387167945,0.1920263729560752,0.187110456477064,0.15695692472050132,0.12308758356009411,0.22292431501507057,0.06593314905244257,0.06430320819694067,0.07779533948333807,0.071404448818618,0.07811314334573971,0.061986137031127125,0.06606289227240458,0.07395960761577004,0.0739244889186608,0.18730086275589505,0.1295412225528613,0.19356070185276025,0.12539521534016876,0.19203522351153682,0.9199644332343389,0.9243277511998246,0.9487674565388562,0.9482217835873379,0.3051730052614001,0.2951007015130212,0.2730110103996615,0.26013467619779557,0.2618141368027332 -purpl,rgb,0.025361638273920396,0.00411555561435734,0.013689083326817566,0.02460884183350485,0.005002220560082778,0.15462169655590013,0.004887765852307686,0.9997676731973798,0.9998090653517817,0.9998000222605754,0.9997841623051122,0.9937277258705187,0.9913750474282798,0.9916134911561139,0.9993993269955568,0.9993569682925846,0.999319583469685,0.9992845724665759,0.9993242368513803,0.0006741138221824775,0.0017556424555673286,0.00180071450804579,0.003654355388429104,0.01877435718881595,3.4541717029222275e-07,5.553091706518381e-07,7.105076595857911e-07,1.1897114451332236e-06,4.9802716776910234e-05,0.5099774201092431,0.204176385486114,0.402950053642,0.4033476866336057,0.45027451974102156,0.5442922491815598,9.817696768979355e-15,5.9916425409483804e-15,3.6172283112967115e-15,4.101475064576248e-15,1.1815889977215793e-15,0.9988245760387585,0.99911066817738,0.9989228478230839,0.9986080328928381,0.9987503524554825,1.4595329483903008e-10,9.400792442042152e-11,9.381968938383327e-11,6.216118490657954e-11,1.1694417198493321e-07,3.5492300444629e-08,1.0477587568451415e-08,1.6501121582409535e-07,1.733999256495421e-07,4.502580582371385e-08,9.543238278126886e-07,1.490739973061808e-09,0.9990868077336926,0.9982762780010642,0.9963640288950878,0.9924691576084091,0.9676290224231783,0.4397754827711805,0.35070238897382666,0.3615492816963754,0.35852796785188307,4.90704761401371e-09,1.804336173464748e-07,3.3655303242509356e-09,2.43055208223195e-07,3.4769370375594187e-09,3.4724007706120365e-16,2.8210917640179746e-16,2.560371815177872e-17,3.498724354113413e-17,0.0062800353402230145,0.006160961001798503,0.008784712889941888,0.03354751747174977,0.017643355523358946 -rectangl,rgb,0.48599006484641444,0.5595612392424651,0.5065574000394256,0.4611409609716066,0.5232664030252641,0.16147410204362492,0.23702441051448842,0.05437951716534461,0.04218350389356575,0.040816654389454844,0.048157664405858204,0.0522070048809379,0.05122057216049514,0.05066284655923649,0.06084173538436934,0.06141834138596441,0.06190423591501961,0.06234084031696687,0.06135522031893413,0.6185456667202508,0.5793312676117759,0.5757748089452089,0.53518413117533,0.4707793940017656,0.6772215879066582,0.6696334550954298,0.6597619142083343,0.6466899178710943,0.5206141203230626,0.25082316071358085,0.2931446316589657,0.26285285502622596,0.25986106732768943,0.2526186730993871,0.23691245115225726,0.4250652025395342,0.44202622561135513,0.44499490233186223,0.44782925176610644,0.4807104887035217,0.07441169207170893,0.0696409065353244,0.07142512409467643,0.07397698565269353,0.06832594327077171,0.6753041356415407,0.6805304718714198,0.6800616341921609,0.6828938105140722,0.7382810917882772,0.7611509702904733,0.7874610714981183,0.7189464592540789,0.7128679811600112,0.4079011230245271,0.2989830397773687,0.49901426792108217,0.03494794864857287,0.03511583299691696,0.03334231030426781,0.03532520126210421,0.037382674877449035,0.059449731591644905,0.059794145596236505,0.055744331491274154,0.055843041949811545,0.6843912816063623,0.573481880039513,0.6910834642347237,0.5620585345046537,0.6865555816407011,0.600312507824618,0.6022965878435935,0.6576392165936061,0.6459124433804111,0.5320971592982869,0.5307287123765313,0.5126521270712727,0.4584367001056504,0.48381895743093783 -rectangular,rgb,0.9428638201450493,0.9674616795787764,0.9341928364108469,0.7870222371531489,0.8700774597041032,0.0012661437451157228,0.003955420036887223,0.0008757768728569867,0.0006022872549867189,0.0005844990819568465,0.00046046554477524994,8.587487459243596e-05,7.657088926209165e-05,7.508005268517512e-05,0.00043536234998490007,0.00043116251319943544,0.00042833807696207187,0.0004262650665979008,0.00041152920741737564,0.9727957515514468,0.9533293305048184,0.947121329263851,0.8827026756367602,0.7957585735886868,0.9999987318116339,0.9999983463923506,0.9999980156922634,0.9999972552722967,0.9999644312868241,0.04149353802783129,0.06675098302739603,0.04692325793188332,0.04247556027818001,0.037632059449065655,0.027793603431001207,0.3168753015746263,0.3505970739163577,0.40102216158737347,0.38444384233003764,0.4893385054592301,0.0007586624636061739,0.0006520430118778178,0.0006413301002171479,0.0006399774693905487,0.0004507894937992669,0.3905454419948204,0.4047923225796843,0.40297307061790083,0.40909128718385673,0.8927815124512352,0.9157164221111527,0.9430776931630498,0.8455503829704656,0.8256425419116654,0.021676264617162627,0.005746506721142343,0.061123329144089286,7.890468553359636e-05,6.465924360208708e-05,5.965237243588092e-05,5.242615594408131e-05,5.019911760715853e-05,7.33446689160563e-05,7.525930976650385e-05,7.033684580594496e-05,7.050562367085109e-05,0.5206369416737566,0.206505485434368,0.538800636826317,0.1836819987006767,0.5180792607762291,0.5809602045781723,0.5974070170617777,0.7771070837929087,0.7557623415590615,0.9322324746415558,0.9256137720751955,0.8990089468027801,0.8415104595825872,0.8666914389961679 -red,rgb,8.416736508221392e-10,3.974206271483506e-11,2.469755106698872e-10,7.015036808336923e-10,7.321569810602195e-11,0.27526296787808996,0.013388296644604964,0.999971512806618,0.9999999236369636,0.9999999701020146,0.9999961252691179,0.9999987629841286,0.999999515373111,0.9999996074667499,0.9996091485837633,0.9995460180924066,0.9994865518304953,0.9994277783516606,0.9995623337414989,3.1753620726650314e-12,1.2303019084514927e-11,1.3358527969153603e-11,4.8127761125709746e-11,4.80829799222983e-10,0.6714833991179954,0.5465627150341097,0.627578823320171,0.6015679060003767,0.8750851702316319,5.22380042560489e-06,7.534363193072555e-07,2.9649673877344974e-06,3.639708573320107e-06,5.3414893787752535e-06,1.3137522576527674e-05,0.9999999999999991,0.9999999999999984,0.9999999999999996,0.9999999999999989,0.9999999999999987,0.9894523903016275,0.9962598550640434,0.9945760167874899,0.9910986266882995,0.9977213363014273,2.1729446065505735e-05,3.064148915870167e-05,3.208997596625348e-05,5.342463144768244e-05,2.043610996788628e-12,1.4116998241980757e-12,6.511789398437483e-13,6.130184265363659e-12,9.255137015417533e-12,0.6685088320502218,0.9916819757155049,0.43080305592092216,0.9999999989814705,0.9999999995097089,0.9999999999677343,0.999999999952276,0.9999999999866007,0.9999999980448153,0.9999999989466197,0.9999999998146283,0.9999999998110527,2.063852723084955e-08,3.3916327955233315e-07,2.1835986589557225e-08,4.882862346272994e-07,3.046811265937926e-08,0.9999999999797378,0.9999999999852625,0.9999999999862319,0.9999999999918261,7.316266017016407e-11,7.244368387228302e-11,1.2771382385080231e-10,1.002890690306591e-09,3.665818058738678e-10 -ripe,rgb,3.817359745086057e-15,5.896589855372843e-15,4.1667634931913577e-14,4.212102088316385e-11,3.1473841756285305e-11,0.9999976517686604,0.9999969036493219,0.011075493554107921,0.005499198686025283,0.004594964225033258,0.17247518910089826,0.999997874369437,0.9999989795332171,0.9999989621681478,0.9143641512177839,0.9305030425031102,0.9411790814070067,0.9490393414122603,0.9495511355324844,8.209850918168216e-14,3.451353583484153e-13,7.175689079096577e-13,2.935549613200962e-11,5.388422165028571e-11,3.681722116281369e-41,1.2087149505682483e-40,2.2254303879586402e-40,8.167506136410712e-40,1.2631358111993183e-35,0.0023503385697236498,0.001966441629882178,0.0025794976386993244,0.00443099769951985,0.006101539003858331,0.015873711610708458,0.9862596867269503,0.9867516559034237,0.9614976344933592,0.9776151149881076,0.9545032161278026,0.8090364692740337,0.8164778512426517,0.8850921364154782,0.9341753163900944,0.9823484522012973,0.9999134878983302,0.9999224254280196,0.9999245674749863,0.9999383270061201,0.0001943016292358999,0.0002496938949005197,0.00015450489426642054,0.0009361413942771446,0.0017551527670056604,0.9999999320438295,0.9999999906318472,0.999999758986016,0.9994687835811209,0.9999120982068586,0.9999360840057823,0.9999915536780051,0.9999986229455404,0.999999992352311,0.9999999930433006,0.9999999890718049,0.9999999892120516,0.9861763732001837,0.9985961684747499,0.9870790156925875,0.9989564887191917,0.99049326833696,0.9990595820385995,0.9987747667911664,0.99245110173697,0.9927711157528109,2.73749828498493e-13,5.231425107317652e-13,1.8827675660573955e-12,2.445519747313788e-12,2.889770243107197e-12 -round,rgb,1.0658251029964576e-24,1.0136343946779287e-22,2.5423221625496445e-23,9.509883947404312e-22,3.197778906597366e-20,4.976295165450615e-12,1.790381556493502e-08,1.264031375389522e-27,5.372013958999543e-28,5.348128407871855e-28,9.13794887810931e-27,9.666989504862098e-19,3.538880029348713e-18,3.2856664712386375e-18,1.5727412931677958e-24,2.16576918809814e-24,2.8046615713581872e-24,3.511928669621919e-24,3.1130375040200857e-24,4.4712534914706726e-20,1.379920980677643e-20,2.2101090960743064e-20,6.301706058371389e-20,2.1525840765034885e-21,6.394432520552684e-32,4.9281167086899096e-32,4.3340523465038066e-32,3.318079597720073e-32,5.901750060234508e-33,7.49730442940056e-20,1.67365279012311e-18,2.1824226619990903e-19,3.2306436757727894e-19,2.621636143052422e-19,2.2200898797267524e-19,1.0,1.0,1.0,1.0,1.0,3.6397782454805444e-24,2.003321615122247e-24,4.629001805890636e-24,1.2989024078097197e-23,2.7799640582969544e-23,0.9999999981828522,0.9999999994029964,0.9999999994181978,0.9999999998095892,0.0001607443113980487,0.003092989924497863,0.036034656174950865,0.0002287616190798811,0.00032351706918658924,0.9999945362947141,0.9984866559268017,0.9999999951597092,2.2434304161722226e-22,3.689356893190363e-21,2.8099795849642e-20,6.656541416088702e-19,8.094335781989248e-17,1.5467632057137917e-11,4.014289364120827e-11,2.6808007281148113e-11,2.7891009944840545e-11,0.9996981959126471,0.8019144967885573,0.9998810814656681,0.7158012668770505,0.9998980966945297,1.0,1.0,1.0,1.0,6.082062057946938e-22,1.0155760825333926e-21,1.1234135134658313e-21,5.812445339019197e-23,2.999149514455959e-22 -semi,rgb,0.9929506153981139,0.9914685543379922,0.9811897724310663,0.7616796122907142,0.7875142108919035,6.33871036495049e-06,9.116528091118419e-06,0.004645652993053623,0.011138050060976715,0.013309469623883248,0.0017392232994814037,9.212606399063407e-06,7.974391184257164e-06,8.171811407478276e-06,0.00025716301388086144,0.00023358610019560874,0.0002165373387332459,0.00020299523530439232,0.00020597742761276373,0.9764183204054575,0.9579127206516598,0.9444296660681442,0.7935500938872488,0.7442736646150085,0.9999999999999969,0.9999999999999942,0.9999999999999925,0.999999999999986,0.9999999999988856,0.003195653865651351,0.003534672112137532,0.0031156145086312596,0.0025561038155630226,0.0022638282437929765,0.0015820310546008555,0.607064660419817,0.6089568832901794,0.7473962410115045,0.6824655772881866,0.7765954735388847,0.00029472739507851135,0.0003080320810425383,0.0002447741416735045,0.00018919926135124775,0.00012351125842638612,0.0003216428938232204,0.0003435041973275089,0.00034141108313327236,0.0003557805947938417,0.02604460593259592,0.027568401787527654,0.03744518839678377,0.014773717545260233,0.011895388826717613,2.2913346376857693e-05,9.49687019815819e-06,6.0967316154673114e-05,0.00013264568533620914,7.689942834840508e-05,0.00010219751671706494,4.880253112518379e-05,3.43133073576851e-05,4.5330296980059474e-06,4.958398036997269e-06,7.101937862949537e-06,7.066041169352826e-06,0.0006712563073580672,0.0001948331568074346,0.0006995225190650327,0.00017083206226368875,0.0006356245422360637,0.23838078998225257,0.2717432792133698,0.5403560182089653,0.5367298415601309,0.9606127946184824,0.9494967694437224,0.9179926031263514,0.9088541842142643,0.9033945616547111 -semicircl,rgb,0.014806516436045592,0.04814992649774365,0.021282479444386316,0.011426595879178127,0.03114014907407994,7.234312121159544e-05,0.0005438593891919062,3.436399251455407e-07,1.3197751903832207e-07,1.1738807868949698e-07,2.238910199030563e-07,4.755445911253655e-07,4.602478005731173e-07,4.407993749041532e-07,6.07014470812511e-07,6.341253137772567e-07,6.576212767372821e-07,6.792612490766316e-07,6.36669564677632e-07,0.126398432000985,0.07019835935078898,0.06720027292909839,0.0376637329345907,0.013438589822678423,0.2974574263225118,0.2659403010899648,0.23353808224676553,0.19335958352396931,0.028550796595777268,0.00035628845645059934,0.000859843280223534,0.00046336131375694444,0.0004410084474270717,0.0003801934302462713,0.00027480207229967085,0.12382195656276523,0.158772361100368,0.16991025878092975,0.1745959515751867,0.27336158637227187,1.3656027101431663e-06,1.0362902791172488e-06,1.166644343330943e-06,1.3724613500017965e-06,1.0197027241779e-06,0.683799914092977,0.7106235006526846,0.7091641627868028,0.7268121076379738,0.7369102231006587,0.8282749857159525,0.9014555248818209,0.6612833871740311,0.6377072439506982,0.02715434573826022,0.003945723617599368,0.12211774815193976,8.681048077986287e-08,9.544846349138418e-08,8.531878858605579e-08,1.1490618786352478e-07,1.6549094774276767e-07,1.350712564121333e-06,1.4320352718526439e-06,1.094789018794644e-06,1.1035022553651681e-06,0.6299215117196711,0.18759860447582863,0.663248514483257,0.1605078632980748,0.6464868196079523,0.7038991979463909,0.7135284837923188,0.8764092255009182,0.8517727925355257,0.032985895125147595,0.03261853221021359,0.024941743103585337,0.01041042619857766,0.015775450154478537 -semicylind,rgb,0.23445143533284993,0.43639660008598424,0.2767147553026226,0.16092659204237197,0.296735659990204,0.0007981691527224797,0.0035436731328937834,2.4425808543380788e-05,1.0097802388001079e-05,9.00101019363135e-06,1.5258179429518119e-05,1.4746268352371422e-05,1.3488611712181392e-05,1.2989407980233427e-05,3.209721300428928e-05,3.302121106744064e-05,3.381968007990474e-05,3.4552267409427796e-05,3.26868975670373e-05,0.6149829719579666,0.482483423477444,0.4678767332766358,0.32930421413044675,0.17746672044554881,0.8767142144377394,0.8635213630231644,0.8449195909588143,0.817576105848143,0.43327519951964255,0.00710191254211021,0.013876960499215382,0.008630723759022093,0.008133465300846356,0.00717646651762862,0.005393830368689134,0.028791292078669165,0.03547236285291757,0.03681805270270078,0.038085059490609134,0.05650358889726113,6.582563058220456e-05,5.2196857173254474e-05,5.640542947633306e-05,6.298529618601076e-05,4.6471699147692766e-05,0.5568455259049839,0.5726142417446322,0.5707205528858945,0.5773454527551625,0.8502663396671072,0.8912649215936704,0.9293688297465376,0.8016182087758115,0.7838897664711341,0.03219739183365041,0.0070758893085817965,0.09464054817494148,4.1362660136860475e-06,4.01290579194099e-06,3.2491506126857216e-06,3.768730774611194e-06,4.257415683035888e-06,1.8073099867824762e-05,1.8192619475542238e-05,1.4266113037143819e-05,1.434752931278113e-05,0.6366798046047135,0.2768310416072822,0.6575144932374222,0.24763977995475073,0.6405461287905291,0.2176113009667627,0.2218153599468514,0.37527806126847585,0.3376299342918975,0.33873286757563426,0.33242607816505515,0.2794127844815972,0.16284462525224344,0.21108636359574443 -shape,rgb,0.9999639238086441,0.999994910847163,0.9999557646327459,0.9985680265410832,0.9997909193957145,2.168541840785473e-06,0.00010805311628400551,4.4780311819468865e-08,2.0651765228034636e-08,2.0156301855264544e-08,9.6283494156698e-09,4.984356048685625e-10,4.3307982056749015e-10,4.118344803915159e-10,1.0008833533258784e-08,9.945070462595875e-09,9.928714909980808e-09,9.938621709190204e-09,9.02736795199602e-09,0.9999980758180796,0.9999899546839418,0.9999860371866812,0.9998567448046385,0.9988386054539855,1.0,1.0,1.0,1.0,0.9999999999999789,0.004796383281598729,0.024189735282135406,0.007442975844945012,0.0058067097613427225,0.004052920739835842,0.0017091006276838308,0.9999978938323965,0.9999987472619584,0.9999994018256523,0.9999992409097014,0.9999998245690084,4.374750323027437e-08,2.847588426045479e-08,2.8765678840079043e-08,3.0637453932867376e-08,1.3090183817688163e-08,0.9998750169398841,0.9999080526883153,0.9999065452331153,0.9999249601478359,0.9999961527741258,0.9999986443490013,0.999999672899174,0.9999883378515134,0.9999832996312966,0.3069982085084684,0.006668369431865797,0.9503503318771586,2.733468191940851e-10,2.1288100516572574e-10,2.478152902315403e-10,2.2737691799826345e-10,3.524324545031795e-10,2.54641122703421e-09,3.1468340394297915e-09,2.792420731937846e-09,2.8194190959590853e-09,0.9998569022319675,0.9855327946614996,0.9998948873711586,0.9775975628754174,0.9998711373266945,0.9999999336238312,0.9999999482462669,0.9999999971918896,0.9999999958937342,0.9999616580670967,0.999951209830746,0.9998770006347164,0.9993551009981089,0.9996744792697667 -side,rgb,1.0,1.0,1.0,1.0,1.0,0.9715268558346802,0.8755336356530117,1.0,1.0,1.0,0.9999999999999998,0.9982330153739124,0.9903201854906877,0.9905809834948571,0.9999999999996776,0.9999999999994909,0.9999999999992693,0.9999999999990052,0.9999999999989941,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.006936507473697044,0.004925040333005394,0.02381808519319138,0.009897098707561593,0.017159945456370174,0.9999999999999383,0.9999999999999372,0.9999999999998066,0.9999999999993097,0.9999999999901561,0.05219777669999008,0.030943254007743535,0.029211690827272437,0.014455922380603342,1.0,0.9999999999999998,0.9999999999999998,0.9999999999999989,0.9999999999999962,1.0707387945530063e-06,1.3026517939920265e-07,1.2658275540478303e-06,0.9999999687080873,0.999998436208463,0.9999935460773997,0.9995363111911268,0.9567772821350027,0.00017837382030848944,0.00010780935738324845,0.0002148936758915543,0.00020829461986975338,0.9999489228466257,0.9995453357942636,0.9999243110607084,0.9993236970774013,0.9998620355161194,1.3534118259768446e-05,1.8674377191003266e-05,0.00011223819373799129,0.00012071813639531864,1.0,1.0,1.0,1.0,1.0 -squar,rgb,0.8934347171198352,0.9527866532939537,0.922063916045884,0.9047779111777672,0.9510110436309054,0.43025697526501794,0.7543778270862898,0.009718154828237032,0.004590651944794777,0.004161603340064351,0.007781570023172904,0.020149963350334123,0.019914258713073524,0.01928460613203162,0.018333176041552292,0.01904819500317827,0.01965756739878189,0.02021120103567677,0.019295490876531145,0.9788832497192795,0.9684289971955953,0.9681440760331709,0.9570105641612735,0.9149681019340096,0.8946799992990884,0.8889500742863566,0.8784555907712827,0.8652099945518343,0.6746986514264074,0.5856814989625685,0.7239482602694326,0.6306468563349008,0.6262332498771307,0.6036229230846883,0.5545896871201204,0.9827870854885573,0.9859307463661885,0.9859855492034082,0.9866608482841774,0.9907369544022273,0.03184359553682385,0.026222395423015316,0.0289894105098717,0.033095721246177386,0.027888581820509364,0.9987812864192307,0.9988798741999033,0.998874766450692,0.9989381407374126,0.9985587409378114,0.9990146437537653,0.9993576912707713,0.9982240797110871,0.9981225676055511,0.9788320751578089,0.9254768071237268,0.9925548375840659,0.0048969001625419955,0.005471414601267166,0.004929146354145315,0.006460512682763138,0.008586341485710084,0.043493464967858345,0.04491355987590732,0.03632563592463269,0.03653801747547347,0.9984741582773738,0.9943324156246128,0.9986191701398599,0.9935936404650396,0.9985557820882672,0.9979425833287539,0.9979799879879845,0.9989415945671672,0.9987726673117673,0.9454866440789259,0.9461623266742025,0.9377787512795929,0.8900207483835924,0.9164807863402608 -that,rgb,0.999978359674176,0.9998642470215016,0.9995212016180407,0.7937085330706726,0.7286286807897112,5.4144596306171645e-05,0.00019169570373164384,0.9995401128722068,0.9999999251092969,0.9999999844301721,0.9994424492017613,0.49088392440227746,0.7431393821809744,0.7910455618882519,0.21764967338887073,0.16707652769072348,0.13390617705438687,0.11003564045755673,0.1402750332731401,0.9963000550655051,0.9898501189701168,0.9808066358483903,0.723345277166902,0.7324572812509638,1.0,1.0,1.0,1.0,1.0,7.124580505538962e-05,5.0213776357808e-05,5.7809371032521345e-05,4.503568893881693e-05,4.1618506630779396e-05,3.1489840188989883e-05,1.0,1.0,1.0,1.0,1.0,0.018621469636478698,0.04822472329868802,0.0230123389972253,0.009466566083516455,0.014186304989981625,0.9999974674511479,0.9999991287305002,0.9999991633357818,0.9999997390869652,0.06162210623285831,0.16538316214388907,0.42119169932874617,0.0366143850441212,0.03263790776523037,0.99999757430398,0.9999933444724749,0.9999999869113292,0.9999957717765491,0.99999671522084,0.9999999698424973,0.9999998779038592,0.9999999880981766,0.9999926762886744,0.999998128279214,0.999999888075712,0.9999998859239342,0.9302631699338019,0.19786651937961255,0.9606384990826397,0.16142005534711784,0.9646455739974632,1.0,1.0,1.0,1.0,0.9950789678456768,0.9908660546059477,0.9749025425459262,0.9846027181588695,0.9737026235951486 -the,rgb,1.0,1.0,1.0,1.0,1.0,0.9999993209292322,0.9999999279637027,1.0,1.0,1.0,1.0,0.9999698297647754,0.999775318577715,0.9997794146375961,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999996,0.9999999999999858,0.9999999999999827,0.9999999999999813,0.99999999999997,1.0,1.0,1.0,1.0,1.0,0.9999009110147765,0.9152852455829951,0.9999990965019397,0.9999999999746492,0.9999999968204902,0.9999999923158295,0.9999984301651325,0.999836830286421,0.018046999599452287,0.014886921559927354,0.04244109503781337,0.04125032627730552,1.0,1.0,1.0,0.9999999999999998,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -tomato,rgb,1.7694618161495532e-14,8.197651329499319e-15,2.337822463931354e-14,2.5461041609144777e-13,1.4140682095877358e-13,0.004135998636902795,0.004085461160908026,8.376279856516042e-05,0.0035004828263251434,0.006498286071801696,0.0007517389039373784,0.5383174191916894,0.7731837170149564,0.7937854336303294,0.00019812085218667394,0.0001998821214490928,0.00020093490182468827,0.00020161286343956642,0.00023433260193154795,1.0309581696729017e-14,2.147096913705073e-14,2.7790080482267163e-14,1.2750503997821483e-13,2.5310741444724596e-13,1.3944076313897596e-12,1.0130734601466003e-12,1.3025223081628181e-12,1.270233924874715e-12,5.631563790713178e-12,2.0977416558583784e-09,1.309822068382381e-09,1.9382876570223403e-09,2.6207023638844207e-09,3.3126688129196653e-09,6.412534499471499e-09,0.9999999999999998,0.9999999999999998,1.0,0.9999999999999998,1.0,2.4005827813427488e-05,4.161906184002605e-05,4.296273639178683e-05,4.32369137228417e-05,0.00015524767681318217,0.5992705463314074,0.7228556636506628,0.7310779835762796,0.8428560541384441,1.3457684575410625e-09,2.449463638590901e-09,2.7658694000091014e-09,3.6557255733995234e-09,5.667458872967617e-09,0.9987176435365199,0.9996842591776424,0.9996034177526625,0.8941725775408162,0.9730989069543601,0.9976337145694075,0.9989474016225403,0.9999027750697186,0.9999407177396916,0.9999704988781081,0.999989468011989,0.9999894602621794,0.00027557713336969343,0.00035615924209264914,0.0003739877596862554,0.0004115414383029967,0.0005049282157117,0.9999999999999922,0.999999999999994,0.999999999999998,0.9999999999999982,2.963693993974398e-14,3.6148592336172984e-14,6.190624977623846e-14,1.1327373719987544e-13,9.15957430356408e-14 -toy,rgb,0.9999847316778511,0.9999938177226737,0.999974344134394,0.9994934782983576,0.9998124098940545,5.706919975553733e-05,0.00036560918171834976,0.00024879427626065535,0.00013948447134326294,0.00013437007501150444,6.141868640855155e-05,6.956073562832931e-07,5.231977835832787e-07,5.069846888736791e-07,3.655383677845016e-05,3.506533467798686e-05,3.39946606433164e-05,3.3148750264818e-05,3.122042186044379e-05,0.9999937536851516,0.9999817579819493,0.9999754213117902,0.9998458170106761,0.9995212941037576,0.9999999999999993,0.9999999999999991,0.9999999999999987,0.9999999999999973,0.9999999999994855,0.15280405137404454,0.29281258111355984,0.1799837081034054,0.14802023504903156,0.11999141856903756,0.06819769682952391,0.4957277268104539,0.5553209766992234,0.6635924440647079,0.6248954574156378,0.7810449489074835,0.00010224589955339939,7.908716839658592e-05,7.228815782841818e-05,6.716700623133031e-05,3.211515142271547e-05,0.6226896151684611,0.6398202631601121,0.6361337444731415,0.6376318413655875,0.999079590492082,0.9993747461748359,0.9996978940686638,0.9978125633190839,0.9970165201300838,0.0030204981053217586,0.0002752088950316526,0.018892900036115517,1.1074453789089314e-06,6.401625865190144e-07,5.214044988924321e-07,3.319724008982595e-07,2.420732201550166e-07,2.429018035519384e-07,2.4757264416283234e-07,2.301133470152985e-07,2.3065818109255865e-07,0.8876356598441538,0.3810106463047304,0.8975801243583789,0.31989809396038515,0.8805054911175351,0.8158410823513716,0.8352012137891308,0.9600927692561558,0.9517539299197632,0.9999663994008785,0.9999573793106852,0.9999149486733961,0.9997978187729578,0.9998514249242154 -triangl,rgb,0.8117220345121954,0.8789673837428306,0.8124665760897272,0.6704957843998444,0.7678412879639243,0.017626074319093583,0.04416116229783715,0.005027668871381006,0.003502173864649041,0.003376447568539446,0.0034271147937356733,0.0018435394984860842,0.0017390833958142655,0.0017085082123560603,0.0040744755873765946,0.0040921138489211,0.004109723463844269,0.004127372233369809,0.004008319932754692,0.9074757926008372,0.8687089560195371,0.860429818706541,0.7842696750984973,0.683221748967304,0.9992586734244068,0.999132877886983,0.9990221612073185,0.9988046317824285,0.9939516707315994,0.11236828607048058,0.1607184750195021,0.12421203067326701,0.1179960577719983,0.10905224564614217,0.09011701194909623,0.5913609564576151,0.6223424255864469,0.6498668703181354,0.6437672702311944,0.7131039847685215,0.006197487317275881,0.005467017007445832,0.005556582767854417,0.005736327262467163,0.0045972168034078345,0.7323350446435088,0.7429411512459728,0.7420027776407501,0.7478767827740249,0.9023194929108016,0.9212678099614288,0.9420252898421233,0.8759887106980024,0.8660725677951425,0.19082027295587226,0.0780275320508285,0.3520150218000734,0.0012597532056977448,0.0011729912810657835,0.001109255948183689,0.0011107905538102617,0.0011773515790054504,0.002154692086052441,0.002209797953815962,0.0020314541694958638,0.002037004214348129,0.7665903265900277,0.5282610336648906,0.7779248762441665,0.5017003598289409,0.7685385176117847,0.8099083658706197,0.8162767014037389,0.891574099733788,0.8816890193105646,0.8239348895161333,0.8167029651650111,0.7827633040344705,0.7026455175151366,0.7388727172622022 -triangular,rgb,0.8117220345121954,0.8789673837428306,0.8124665760897272,0.6704957843998444,0.7678412879639243,0.017626074319093583,0.04416116229783715,0.005027668871381006,0.003502173864649041,0.003376447568539446,0.0034271147937356733,0.0018435394984860842,0.0017390833958142655,0.0017085082123560603,0.0040744755873765946,0.0040921138489211,0.004109723463844269,0.004127372233369809,0.004008319932754692,0.9074757926008372,0.8687089560195371,0.860429818706541,0.7842696750984973,0.683221748967304,0.9992586734244068,0.999132877886983,0.9990221612073185,0.9988046317824285,0.9939516707315994,0.11236828607048058,0.1607184750195021,0.12421203067326701,0.1179960577719983,0.10905224564614217,0.09011701194909623,0.5913609564576151,0.6223424255864469,0.6498668703181354,0.6437672702311944,0.7131039847685215,0.006197487317275881,0.005467017007445832,0.005556582767854417,0.005736327262467163,0.0045972168034078345,0.7323350446435088,0.7429411512459728,0.7420027776407501,0.7478767827740249,0.9023194929108016,0.9212678099614288,0.9420252898421233,0.8759887106980024,0.8660725677951425,0.19082027295587226,0.0780275320508285,0.3520150218000734,0.0012597532056977448,0.0011729912810657835,0.001109255948183689,0.0011107905538102617,0.0011773515790054504,0.002154692086052441,0.002209797953815962,0.0020314541694958638,0.002037004214348129,0.7665903265900277,0.5282610336648906,0.7779248762441665,0.5017003598289409,0.7685385176117847,0.8099083658706197,0.8162767014037389,0.891574099733788,0.8816890193105646,0.8239348895161333,0.8167029651650111,0.7827633040344705,0.7026455175151366,0.7388727172622022 -veget,rgb,0.9999997330052497,0.9999997504876016,0.9999997861141654,0.9999998051563133,0.9999997386725407,0.9288190669289195,0.6250881751720228,0.9978350796733365,0.8282021521145208,0.6786616329076997,0.9907822477437833,0.4116034476565135,0.17908391579518146,0.16020445772895503,0.9992249845609481,0.9992530658195031,0.9992747954931247,0.999292935550413,0.9991849240914347,0.999999671945547,0.999999729494408,0.9999997248467449,0.9999997181358211,0.9999997948344378,9.387572975572894e-09,2.7607744616727726e-08,2.948447793290478e-08,6.53238849068901e-08,3.1570814767777443e-06,0.9999986386577749,0.999998210010808,0.9999984838095333,0.9999982349392552,0.9999981413848565,0.9999977010313122,1.1173899343001799e-29,9.221794366709829e-30,1.9278936614692083e-30,3.999090017947934e-30,9.230811035464003e-31,0.9998688451820402,0.9997884029850854,0.9998013297432002,0.9998167653264713,0.9995319858221124,3.680716135224563e-08,1.566359018309561e-08,1.505742754176665e-08,5.824391039441307e-09,0.9877480382315296,0.9580530443525248,0.8949224316870248,0.9817731153096185,0.976605784538674,7.545435954060027e-09,1.5952237363842032e-08,1.843742931994389e-10,0.024100466605188234,0.0061219597210939985,0.0002553581762267118,0.00014025729480078477,7.42207990527348e-06,3.970509656361942e-06,1.474239645350626e-06,3.795502903477398e-07,3.79000932594681e-07,0.0009403476958642477,0.011539174421522806,0.0005483539519601067,0.012769857313046218,0.0004399231640671561,5.006716103543774e-28,2.9262560739065223e-28,1.1356820136358656e-29,1.1226268998364405e-29,0.9999997850228677,0.9999997844118392,0.9999997925471247,0.9999998175713125,0.9999998089931749 -wedg,rgb,0.929547694707474,0.9939035204916258,0.935487388173258,0.34014114402954404,0.8463050695867853,2.891998767781032e-09,3.7534119909094114e-07,1.6863961619793067e-12,5.9738929735221e-13,5.67861508059821e-13,3.8285589536012307e-13,8.397366488601073e-14,7.914360917713887e-14,7.420671721618333e-14,7.033741551007389e-13,7.211685736908584e-13,7.386158137373796e-13,7.560726463110937e-13,6.721204488096123e-13,0.9987706939880845,0.9921682758112377,0.9894115962975268,0.8974712829002655,0.41007028798523754,0.9999999999999951,0.9999999999999882,0.9999999999999793,0.999999999999942,0.9999999998251952,2.510865801380128e-06,1.9025047048702375e-05,4.429639420646629e-06,3.5132455697182286e-06,2.3444315430170805e-06,9.159398348506816e-07,0.9999952577236586,0.9999975415561019,0.9999988687426854,0.9999985882866148,0.9999997513078814,3.8363807610860405e-12,2.2660516805225754e-12,2.4865592650675147e-12,2.9416844001187894e-12,1.2495770419256089e-12,0.9994593143767633,0.9996398956957702,0.9996341127319953,0.999731991263189,0.9998866379193315,0.9999706567282066,0.9999947243088654,0.9996408172667518,0.9994878613471256,0.02460418873416323,0.00017742766919812394,0.705690675013484,1.8039519137067103e-14,1.736831206078848e-14,2.2547916073299446e-14,2.7382220828577392e-14,6.324568634043957e-14,1.6189800158860588e-12,2.1556898572179053e-12,1.7549861370264593e-12,1.779638640039013e-12,0.9985408537086485,0.7413725810134624,0.9990216359924687,0.6315063115291465,0.998796088080563,0.9999999565856555,0.9999999670734867,0.9999999989041,0.9999999982483119,0.9581062005234561,0.9489939532524303,0.8759089865846147,0.47944295791162644,0.6896513546828683 -white,rgb,0.0007551616073854817,0.000438355591375919,0.001824752636159643,0.03964218797760592,0.014331817088914681,0.8470619350566534,0.16148413660352248,0.8709641243101021,0.10827037323282152,0.05257582124033729,0.8698803269763474,0.8962165520707729,0.7926458336061226,0.7744852213311654,0.9941356861794383,0.9946553854405596,0.9950280774312056,0.9953217235106612,0.9948797959018867,0.0004688808693652454,0.00147055966902832,0.0019668620523098385,0.011484505090457342,0.037397023564289825,1.3244822194191905e-28,6.442416196291288e-28,9.657848177827443e-28,3.943661178660404e-27,2.3824946628772792e-23,0.9809351015691601,0.954738416429352,0.9759998389269681,0.9780671078620915,0.9813828762167847,0.9870694312337711,2.9041570982608384e-32,2.038191631165028e-32,2.862599120137908e-33,6.962377912791277e-33,8.988050154787942e-34,0.9974383949300817,0.9966706607447363,0.9972533755393725,0.997762669194828,0.997298359595213,1.3182924549052702e-11,5.597401670355823e-12,5.472343343039826e-12,2.25311878800619e-12,1.0718671872388077e-05,2.4958129909853524e-06,5.385177759012389e-07,1.666608094996364e-05,1.7716760437757446e-05,6.991970268031457e-10,1.053710874884741e-08,4.464903774937485e-12,0.11386678701128099,0.05966931896049033,0.0036535225537542714,0.0036716438141777942,0.00034961910057561117,0.0003614853430775052,0.00014001271635567193,3.825392282463711e-05,3.819507690358708e-05,3.6534046522284317e-08,3.470962769978572e-06,2.039069128974232e-08,4.833481036003671e-06,1.9478931800280384e-08,5.062078974950166e-31,2.6591731970180056e-31,3.055593863522243e-33,3.513347069659505e-33,0.0027808040661907066,0.0035691764410422174,0.007153100132028126,0.01560709106762521,0.012207476726262358 -with,rgb,0.9999939053394379,0.9999734455634763,0.9999551233361906,0.9980077632978956,0.9963968980170421,0.03090972414916079,0.02150272584209668,0.9999627024922103,0.9999995400549312,0.999999788165512,0.9999413686329536,0.9617195776571117,0.9726914214444966,0.9762008731804354,0.990731485089879,0.9886132332131222,0.9865854725787719,0.9845585725170533,0.9866790782103583,0.9996872630080353,0.9995290006420785,0.9992957256915622,0.9960464314100046,0.9973761748327465,1.0,1.0,1.0,1.0,1.0,0.4128472298239399,0.28989208109935916,0.356926137784476,0.3142501104985971,0.3087157071812136,0.2767771498358368,1.0,1.0,1.0,1.0,1.0,0.9642128567074278,0.9790570732133482,0.9659801255252474,0.9401891510600584,0.9430797331169104,0.8958193686355501,0.9263945980577791,0.9274470697481171,0.951336404758498,0.2253649102872649,0.2559825745343236,0.3281474738981202,0.16691495227459147,0.1501690811307228,0.9462337151045516,0.9518372729775892,0.9901511727684248,0.9999733199368432,0.9999643217753512,0.999995319902578,0.9999852054346624,0.9999908309566437,0.998850654967643,0.9993340984025624,0.999842758603443,0.9998404362971495,0.23020236633457228,0.08103412119133165,0.2633519063272577,0.07562370285172625,0.267891672138444,0.9999999999999984,0.9999999999999991,1.0,1.0,0.9997768784298446,0.9996695726572706,0.9994186836473544,0.9996794147109117,0.9994849282399716 -yellow,rgb,2.266145302428613e-06,2.0486959017421398e-05,6.377702866312975e-05,0.054316868533447284,0.1129298532981803,0.9999999863742326,0.999999991467652,0.007572665811073657,1.1587218510033756e-05,3.6479465327364135e-06,0.024919969438361864,0.9998004300911321,0.9997118506234305,0.9996455337857888,0.9879910360460309,0.9914509476991591,0.9934831743220615,0.9948409294366627,0.9936148799891448,0.0011829344687432257,0.0028174974946015142,0.005777196995269352,0.12551587452326068,0.0822162145020264,5.396028350603267e-47,4.547228848763161e-46,7.461835190032964e-46,4.816524313129879e-45,4.489866341087384e-40,0.9999565165225406,0.9999793642838268,0.999969588164492,0.999979202310799,0.9999811672780974,0.9999874798953902,1.4790299751879029e-21,1.900289500533662e-21,1.4131546898099244e-22,5.519261061112736e-22,1.317311794359572e-22,0.9980236274591977,0.9956715515825244,0.9980969034072502,0.9992775064798214,0.9993985329375797,0.9999016796102966,0.9998325476077954,0.9998296474700381,0.9996962995421752,0.9999788858378383,0.9999741843900727,0.999952777729685,0.9999908785584681,0.9999932509207797,0.9999305859329845,0.9999444766567919,0.9988850369442639,0.04366274569175874,0.08879406216058791,0.0054343865789483635,0.04050117210438301,0.02872779155235618,0.988270977633249,0.9749098639124296,0.8155210936517807,0.8190435877826127,0.9999980316962584,0.9999997862866502,0.9999974798051687,0.999999819015012,0.999997542814231,5.3044295789560297e-17,2.517198852191352e-17,6.174243325834896e-19,4.80367529272555e-19,0.0009225398995868183,0.0018389068352543175,0.005299454919734814,0.00237712333059136,0.0048440900081718995 diff --git a/testResults/testing_english_stem/NoOfDataPoints/6000/groundTruthPredictionTrain.csv b/testResults/testing_english_stem/NoOfDataPoints/6000/groundTruthPredictionTrain.csv deleted file mode 100644 index dbc7d9f..0000000 --- a/testResults/testing_english_stem/NoOfDataPoints/6000/groundTruthPredictionTrain.csv +++ /dev/null @@ -1,72 +0,0 @@ -Token,Type,1-tomato/tomato_2,1-semicylinder/semicylinder_4,1-cabbage/cabbage_1,0-cube/cube_3,1-cabbage/cabbage_3,0-cube/cube_1,0-cube/cube_4,0-lemon/lemon_1,0-lemon/lemon_3,0-lemon/lemon_4,0-corn/corn_1,0-corn/corn_2,0-corn/corn_3,0-semicylinder/semicylinder_4,0-semicylinder/semicylinder_1,0-semicylinder/semicylinder_2,1-carrot/carrot_3,1-carrot/carrot_2,1-carrot/carrot_1,0-banana/banana_2,4-carrot/carrot_1,1-plum/plum_4,3-arch/arch_1,1-plum/plum_1,2-lime/lime_2,1-plum/plum_2,3-tomato/tomato_3,3-lime/lime_2,3-cuboid/cuboid_3,3-cuboid/cuboid_2,3-cuboid/cuboid_1,1-cabbage/cabbage_2,1-arch/arch_1,3-orange/orange_3,1-arch/arch_2,1-arch/arch_4,2-banana/banana_1,1-potato/potato_2,2-banana/banana_4,0-cylinder/cylinder_1,0-cylinder/cylinder_3,0-cylinder/cylinder_4,0-cuboid/cuboid_1,0-cuboid/cuboid_2,0-cuboid/cuboid_3,2-cabbage/cabbage_2,2-cabbage/cabbage_3,2-cabbage/cabbage_1,2-cube/cube_4,3-orange/orange_2,2-cube/cube_1,2-cube/cube_3,3-lemon/lemon_3,3-triangle/triangle_2,3-triangle/triangle_1,0-arch/arch_1,1-cucumber/cucumber_1,1-cucumber/cucumber_2,2-corn/corn_2,2-corn/corn_3,2-corn/corn_1,5-carrot/carrot_1,3-arch/arch_4,2-cylinder/cylinder_4,4-cuboid/cuboid_2,4-plum/plum_1,4-plum/plum_2,1-lemon/lemon_4,1-lemon/lemon_1,1-lemon/lemon_3,1-cylinder/cylinder_1,4-semicylinder/semicylinder_1,1-cylinder/cylinder_3,3-lemon/lemon_4,4-semicylinder/semicylinder_4,1-cylinder/cylinder_4,2-plum/plum_2,2-plum/plum_1,2-plum/plum_4,2-cucumber/cucumber_2,1-tomato/tomato_3,2-cucumber/cucumber_1,1-tomato/tomato_4,2-cucumber/cucumber_4,2-lemon/lemon_3,0-tomato/tomato_4,4-cuboid/cuboid_3,0-potato/potato_2,0-tomato/tomato_2,0-tomato/tomato_3,2-lemon/lemon_1,3-semicylinder/semicylinder_2,0-cucumber/cucumber_1,0-cucumber/cucumber_2,0-cucumber/cucumber_4,1-cucumber/cucumber_4,1-cuboid/cuboid_3,3-cucumber/cucumber_4,3-cucumber/cucumber_2,3-cucumber/cucumber_1,4-cucumber/cucumber_4,0-triangle/triangle_1,0-triangle/triangle_2,0-triangle/triangle_4,4-cucumber/cucumber_1,2-cuboid/cuboid_1,1-triangle/triangle_1,0-plum/plum_1,0-plum/plum_2,1-triangle/triangle_2,0-plum/plum_4,1-triangle/triangle_4,3-semicylinder/semicylinder_1,0-eggplant/eggplant_3,3-eggplant/eggplant_3,3-eggplant/eggplant_1,2-orange/orange_4,3-eggplant/eggplant_4,2-eggplant/eggplant_3,4-cabbage/cabbage_2,4-cabbage/cabbage_3,2-eggplant/eggplant_4,2-orange/orange_2,3-triangle/triangle_4,0-eggplant/eggplant_4,0-banana/banana_4,1-eggplant/eggplant_4,0-orange/orange_4,0-orange/orange_2,0-orange/orange_3,3-banana/banana_4,2-orange/orange_3,4-cuboid/cuboid_1,2-lemon/lemon_4,3-orange/orange_4,2-carrot/carrot_1,2-carrot/carrot_2,2-carrot/carrot_3,1-orange/orange_2,2-cuboid/cuboid_2,3-arch/arch_2,4-arch/arch_4,4-cylinder/cylinder_1,4-cylinder/cylinder_3,1-banana/banana_2,1-banana/banana_1,1-banana/banana_4,3-plum/plum_4,3-plum/plum_2,3-plum/plum_1,4-triangle/triangle_4,1-potato/potato_3,2-cuboid/cuboid_3,1-corn/corn_1,4-triangle/triangle_1,1-corn/corn_3,1-corn/corn_2,0-lime/lime_2,0-lime/lime_1,3-carrot/carrot_1,0-lime/lime_4,3-carrot/carrot_2,0-arch/arch_4,2-lime/lime_4,3-lime/lime_4,3-lime/lime_1,2-lime/lime_1,4-corn/corn_2,4-corn/corn_3,1-cube/cube_3,0-potato/potato_3,1-cube/cube_1,1-potato/potato_4,5-cuboid/cuboid_3,0-potato/potato_4,1-cube/cube_4,4-semicylinder/semicylinder_2,2-semicylinder/semicylinder_1,1-lime/lime_2,1-lime/lime_1,1-lime/lime_4,2-arch/arch_4,2-arch/arch_2,2-arch/arch_1,1-cuboid/cuboid_1,4-cube/cube_4,4-cube/cube_3,3-semicylinder/semicylinder_4,3-corn/corn_3,3-corn/corn_2,3-corn/corn_1,2-tomato/tomato_4,2-tomato/tomato_2,0-banana/banana_1,2-potato/potato_4,3-cube/cube_4,1-orange/orange_4,0-eggplant/eggplant_1,3-cube/cube_1,4-triangle/triangle_2,3-cube/cube_3,2-potato/potato_3,5-lime/lime_1,2-tomato/tomato_3,2-eggplant/eggplant_1,2-triangle/triangle_2,2-triangle/triangle_1,2-triangle/triangle_4,1-semicylinder/semicylinder_1,3-tomato/tomato_2,1-orange/orange_3,2-potato/potato_2,4-lime/lime_4,5-corn/corn_2,4-lime/lime_1,1-eggplant/eggplant_1,1-eggplant/eggplant_3,1-semicylinder/semicylinder_2,0-cabbage/cabbage_1,0-cabbage/cabbage_2,0-cabbage/cabbage_3,3-cylinder/cylinder_3,3-cylinder/cylinder_1,3-cylinder/cylinder_4,0-carrot/carrot_2,0-carrot/carrot_3,2-semicylinder/semicylinder_4,0-carrot/carrot_1,2-semicylinder/semicylinder_2,5-cabbage/cabbage_3,0-arch/arch_2,3-tomato/tomato_4,2-cylinder/cylinder_3,2-cylinder/cylinder_1,3-cabbage/cabbage_3,3-cabbage/cabbage_2,3-cabbage/cabbage_1,1-cuboid/cuboid_2,3-potato/potato_4,3-potato/potato_3,3-potato/potato_2,4-arch/arch_2,4-eggplant/eggplant_1,4-eggplant/eggplant_3 -,,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,nan,plum,nan,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,nan,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan -,rgb,0.9999999999730953,0.08220538292199955,0.2635795456866965,0.250761762738033,0.20069525937711633,0.9997338840281238,0.9999999999269416,0.9999968478414086,0.9999930677095227,0.999994754019544,0.433296743144013,0.2795227489284818,0.3146800711065245,0.0647297141628235,0.30465516551549837,0.9999999999999554,0.9648064597535737,0.949079896090772,0.9673539700770108,0.9655915274049565,0.9948415429046495,0.9999030919126619,0.9997993714599195,0.9999580669733437,0.9625943802950624,0.9759935333040523,0.9999999999969928,0.964222091977706,0.9999999999999021,0.019989247758059957,0.9997284446267027,0.1740238592320504,0.9997190715176754,0.9999973153585662,0.03345628296541998,0.9999999999999363,0.9422315435288757,0.9995172219816366,0.9957506526763023,0.9993845745633928,0.1471495918591025,0.022253466933908676,0.9996618848337394,0.013931502442394961,0.9999999999962164,0.1544273223453492,0.15583202208702865,0.26653443285463035,0.9999999999964142,0.9995093390550983,0.9997435969124099,0.15836552322434214,0.9999952362007769,0.9997008305185423,0.999999999999386,0.9993884628365215,0.1755519387760826,0.15280094514753279,0.28601723944751883,0.34476091056111996,0.44352850047134856,0.9970294971205198,0.9999999999999862,0.02099756050228224,0.01737021734756699,0.9999833550187697,0.9951489632928909,0.9999963618510951,0.9999966393500256,0.9999939819327665,0.9997013460823777,0.19045020864227202,0.1334485364153179,0.9999972073589185,0.22339685186434308,0.025417731777895327,0.9872742435146292,0.9999702301085722,0.9999125915880107,0.1423921229319487,0.9999999999943754,0.19026499150101733,0.999860505175437,0.13333437545532564,0.9999961145155849,0.9998309118603147,0.9999999999999238,0.9994768190991018,0.9999999997677602,0.9999999999942284,0.9999972355969454,0.999999999999996,0.19890241243461165,0.12555021057158908,0.13470051454107687,0.13084251374165018,0.9999999999998239,0.13306773105754263,0.18763379347905107,0.14311974486720644,0.1393709763184763,0.9999999996967919,0.999387174584533,0.2003601060645733,0.1233086367865124,0.9997181326748062,0.9999999999910569,0.999949031221927,0.9241957230641591,0.9994507648934229,0.9807537201917153,0.18169657713486084,0.2632904703017543,0.21337210462394643,0.35305356797000487,0.3865266841497945,0.999994667609909,0.37546077380560816,0.28315909744707096,0.5221475174864345,0.18144298880223247,0.31525030313742525,0.9995777135769482,0.14980970273806754,0.21506904709748323,0.9540226727350558,0.30054911078893315,0.999992934647819,0.9981825451142782,0.9999611070696146,0.8769018966633828,0.9999943864988307,0.9997496657401367,0.9999970608945438,0.99999465937343,0.9795229460471244,0.9734626603980103,0.9664127075341902,0.9990191026735827,0.01752406025905294,0.03243265523942078,0.9999999999999747,0.9997184764292278,0.1189574274012966,0.977144669267016,0.9354028806164769,0.8835053809706701,0.9999309934093323,0.993517422169185,0.9999799430008973,0.1452578342328242,0.9989709528265658,0.9999999999999041,0.4381792552227242,0.999999999999414,0.33170691219011594,0.28279600773006,0.9142794098490364,0.7643374905113969,0.9832569400168464,0.9520705388771237,0.9811294128262358,0.9999999999998621,0.9404916982918488,0.9672801893176138,0.9846801160466174,0.9745150028363287,0.3048980837858697,0.34863457405571624,0.19499061728340075,0.9984887309646997,0.9997419118634756,0.9996327698113179,0.9999999999999751,0.9979288286332879,0.9999999999320066,0.9999999999999967,0.21290137416742028,0.9740536391656124,0.9267512002851857,0.9358435143287857,0.9999999999999649,0.031411464977096376,0.9997804590138314,0.9997161538257483,0.9999999999987259,0.08095353656941665,0.10737211564657008,0.34844031235139866,0.29192189399538604,0.44963531312391297,0.9999960981150531,0.9999999999802118,0.9221420025428023,0.999913126804028,0.9999999999970517,0.9999918792263331,0.263463191292823,0.9997234713193246,0.9997298475295585,0.1354661305159621,0.999160521074762,0.9804508767596719,0.9999999999962714,0.35900632685178846,0.9995980378292292,0.9999999999993241,0.16488735139972524,0.3024990746232663,0.9999999999923714,0.9999747429338115,0.9996747154968192,0.9584384942142837,0.3101023109153665,0.9909080222545051,0.2897473286120911,0.23983975128373358,0.9999999999999944,0.2061272756312796,0.16957104875792173,0.1403623899063264,0.12213568062264886,0.9997159479519175,0.020895288805593305,0.9447310213848308,0.9369740566850471,0.08235414995937188,0.9551530013505476,0.9999999999999947,0.18194301974951368,0.049852169848203266,0.9999880597943474,0.13410760952306736,0.999482642771367,0.16782585608864112,0.21492691483681908,0.22871327438064065,0.015604400516014985,0.9999546748653719,0.9995169873029097,0.9998484341925639,0.02877384896551727,0.5229405220888964,0.4473371076780153 -an,rgb,0.9265660226938778,0.003435933633810426,0.9942613292108426,0.047389800515768805,0.9934813970600557,0.1992058496548087,0.9826485204324182,0.3521869977284635,0.3978223833499068,0.5191229925983086,0.9915046858373221,0.9925488312722461,0.9926699051072462,0.0032241973255237788,0.010894471303509835,0.7889557677847169,0.9979732964077196,0.9978000156055681,0.9979054813269771,0.9695166546204387,0.9976487453457603,0.99878419683641,0.22398897940369972,0.9991728255100112,0.13472887504982806,0.999064950918107,0.8370197628287391,0.16186150226954968,0.8178937948686481,0.028435667785746525,0.20063474752646018,0.9922408764071361,0.2429691631519833,0.8637894200962521,0.01177072221355566,0.8154080982932316,0.9776173918007005,0.9983922260333585,0.3439671195357386,0.3833437980982305,0.06770939688501583,0.10990944775166804,0.21601008126639878,0.02136515306000379,0.9583426422075105,0.9892705690971751,0.9913393707192159,0.9943100531213511,0.9522723348059147,0.9053767396453138,0.20425740715633464,0.06547550148857433,0.4383418554298325,0.3203648526096102,0.9172304054681998,0.32846589249094027,0.7260318970407632,0.7732695786706593,0.9924443492955887,0.9925744531001095,0.9917745705743973,0.9976691098042453,0.6741376878396937,0.17020272438190345,0.04423747474747025,0.9988627729539866,0.9992114133147626,0.4695658412738325,0.3763035408823737,0.3770383847147724,0.288026343349999,0.07297914728794713,0.08322578051229655,0.4971931684340684,0.005148677180079162,0.12623581422664065,0.9991596214232265,0.9990114402615978,0.9988593575338561,0.8046311604257312,0.8660449842412972,0.7592697857633884,0.9910677817262621,0.8542240543949399,0.36225215548509637,0.9932472379276949,0.8084235415689309,0.9985661105949599,0.9510771277402709,0.8624505494739256,0.3644140035810388,0.5047822021850531,0.6605820204340819,0.7858826929028002,0.8230723090923704,0.8458864081372577,0.855453251151562,0.8557151287510718,0.7442808143903378,0.852506532078252,0.8872527423679816,0.9900164062466345,0.3999413141683035,0.05032766476294924,0.8930265350284194,0.19558389604624823,0.9707469890450516,0.9991612026400535,0.9987970790817895,0.41915743232256303,0.998976091053828,0.06277534981085472,0.02882798721780602,0.9902249135767381,0.9916489828520454,0.9910122034531818,0.7498190061881025,0.984177545147107,0.9928210909102139,0.9968286215026211,0.9925747778743158,0.9871943975177339,0.8675040163957005,0.09659163198953366,0.9891524496436112,0.6260774079808339,0.9871487074381459,0.7312972483227077,0.9522256352536025,0.9546918320408667,0.9507386418861031,0.9058360895802894,0.19139849066910003,0.49047037541215743,0.7708829400189506,0.9976246643238862,0.9978639295693881,0.9977990698934774,0.9272005120783476,0.0301551223757001,0.014957718235041618,0.6818200963210369,0.295165187676899,0.12236524324167684,0.958643350753159,0.9761401766652666,0.8789488818979091,0.9988923393056184,0.9992152435428546,0.9990085443541235,0.10388093480960169,0.9772716671834717,0.8315954700412309,0.9914095798460212,0.9155235813797732,0.9924109900093812,0.9921193266358395,0.0848482931228909,0.14927236993420512,0.9978850056802271,0.045520829414855586,0.9979239546010314,0.8975890241491081,0.11693316484063822,0.10154723675238048,0.08800908409751038,0.12574811254688376,0.9921105754558648,0.9925104157520508,0.053757208025862625,0.9785290013493061,0.20476106189030804,0.9645222268647311,0.7353623438776242,0.9769958114294381,0.982186127615545,0.4674759052015124,0.017568429193979457,0.0364357185774492,0.08736151585596764,0.10819067290911484,0.780663630430781,0.012050315333896465,0.23510783826650217,0.19603746447607276,0.93089415518401,0.2776283120409307,0.004187995623571436,0.9925319248938871,0.9923373147315665,0.9916338362506651,0.9495461364903137,0.9204574872359391,0.9789765630342044,0.9517712605888857,0.9467727874111657,0.7713073501683892,0.9899834878910455,0.22867334445293463,0.3385281132954062,0.10442963782834164,0.9783240487190593,0.15851448894896455,0.8354382256211644,0.985281719493792,0.36799263961063666,0.9206143405184587,0.0780343334181026,0.013471016262971725,0.8898274380744353,0.967017288100415,0.9982042310418875,0.14195154668772067,0.9923961250685648,0.08922900284455132,0.9889024839189312,0.991238589939921,0.5580732468877995,0.9924577660476837,0.992304507585958,0.990811087012866,0.11555633538994849,0.29654904278899946,0.21034391162647165,0.9977245148371818,0.9977088832657564,0.0034452649179749044,0.9975568275286505,0.5503798157272853,0.9925886539289641,0.006498198956063521,0.986705221230921,0.0942609751997647,0.3895200519208073,0.9919756877012377,0.9892215890535564,0.9917267518321325,0.03317452322483087,0.9380376111490933,0.9717357963147932,0.9983186752539579,0.01672015092806442,0.9907247945225223,0.9897240437787097 -and,rgb,0.9999999999999936,0.9999999934913184,0.2414788110400844,1.0,0.935964295595819,0.9901874923740985,0.9999999999999958,0.9997875283559415,0.9990499024283575,0.9984847623433245,0.0022162164982563277,0.022466286583686813,0.012876340255724726,0.9999999972235118,1.0,1.0,0.0036520292647171677,0.0030403498510828976,0.003204770369751117,0.0005467799174686396,0.004333614130933929,0.8079494318831987,0.989614474428514,0.995129783939259,0.928774181148869,0.43914033466788965,1.0,0.8815707987126887,1.0,0.9999995068010082,0.9897872936157807,0.5889474121506189,0.9816589874324597,0.9938060910439793,1.0,1.0,0.0003664887546903498,0.1144999568448879,0.6435951489158155,0.8549147833837588,1.0,0.9999064523328908,0.9844377193196504,0.9999999642786258,1.0,0.12156381388479529,0.564093580175267,0.23647181787649518,1.0,0.05970621664659928,0.9898340725532339,1.0,0.9992507240076267,0.9555567426008891,1.0,0.9088530928103152,0.05872509237610531,0.047203694493177524,0.01849320984135255,0.00789625657553877,0.0021980337700773555,0.006793426666968812,1.0,0.9996579367576144,0.9999984961660082,0.9948963216404229,0.5316442706562339,0.9993730164963422,0.9997174179376808,0.9993388444061967,0.9678238077973237,1.0,1.0,0.9994929136468068,0.9999997666399753,0.9997679354209524,0.534622054077439,0.9918898393964737,0.8713663008004979,0.039424714488271125,1.0,0.03895607835410225,0.06592471548693205,0.027126577437101427,0.999686919894797,0.05625742641453041,1.0,0.1455471991904177,0.9999999999965852,1.0,0.9998072544784075,1.0,0.08645117893447499,0.05770601527903936,0.03626436304264845,0.03051236413585465,1.0,0.026816890420098265,0.045550130926360795,0.024343197186944894,0.01773051026672183,0.9999999999998901,0.8360522551268599,1.0,0.021223670197789528,0.9901564295485862,1.0,0.9918377763198946,0.38925471999687256,0.827098860411912,0.14249513338888556,1.0,1.0,0.027438776179580304,0.004862145854958013,0.002883560048011981,0.9925179426302525,0.0013800075373283057,0.02528343837556064,0.1085662636896405,0.6169062471514628,0.0028098647455978534,0.11111591427214183,1.0,0.01743026503892723,0.03965912682066508,0.003230453420801612,0.9899763001758728,0.006919401704289309,0.4322265303003832,0.0006148228356355088,0.9686860764237213,0.9917475103563709,0.9994759710622859,0.9912266079979286,0.002230255850015737,0.0029595857379771163,0.0027252080145974663,0.02074924204026405,0.9999996287310557,1.0,1.0,0.9672906947985364,1.0,0.0008819175676825468,0.00036937549183252926,0.0022249207726461433,0.9233353098098865,0.5840840789863905,0.9965376306058767,1.0,0.006698431296279349,1.0,0.002085207132485828,1.0,0.008688566904737235,0.016203943840803436,0.9793866093151474,0.8936188138917792,0.003219454359163156,0.9971494574847747,0.0033272348828489594,1.0,0.9481529286855475,0.969984231096376,0.9846949895231605,0.947673704338605,0.011106070465110897,0.007278672191669485,1.0,0.004334470705056467,0.9896967354599973,0.029196971074308627,1.0,0.0032991512170698605,0.9999999999999964,1.0,1.0,0.9987309716498691,0.9777688713687743,0.9583575329718251,1.0,1.0,0.9869239893030388,0.990024416665051,1.0,1.0,0.9999999736533463,0.007372356605969761,0.015566980584399658,0.0020238171519885817,0.9713572210746864,0.9999999999999973,0.00033090292033793113,0.20230696572599108,1.0,0.9833624499205487,0.009238909082949241,0.984858927142015,0.952304565280079,1.0,0.008148633239190345,0.9071072732825862,1.0,0.0016432913272786556,0.9106165996661244,1.0,1.0,1.0,0.9999999999999998,0.5428085087463699,0.13788504768560228,0.9151284641090531,0.011868700246070948,0.9872530565441364,0.004866849905078924,0.023993156830869316,1.0,0.17114580956355577,0.7795614798246697,0.7704216592163693,1.0,0.966538631752164,0.999308918066322,0.002788324157847874,0.0029032893986736786,0.9999999933900952,0.002059783725719654,1.0,0.6130261593035716,1.0,0.7721808487591052,1.0,0.8678542620690954,0.5916261441617294,0.017890812942699032,0.04230117991124903,0.9999996699213717,0.4454479680859273,0.017949325245828807,0.37788165717787153,1.0,0.0010633751509421146,0.0014232182143580966 -appl,rgb,1.0,1.0396164822968436e-32,5.22416006981764e-07,5.639471039879242e-25,6.205376125435489e-08,0.00010217402865442824,1.0,0.9999965994687305,0.9999688568108914,0.9999991084857706,1.7632210950454561e-06,2.0748900318682635e-07,4.498778403464019e-07,2.6319245697634432e-33,8.956898965165517e-28,1.0,0.9997625810018276,0.9983056853203257,0.9997967544469035,0.006672753338620388,0.999999819083513,0.9999999999999993,0.0006682027644302463,1.0,1.747767272590217e-14,0.9999988405357986,1.0,6.133427129141854e-14,1.0,1.0193448604125882e-30,9.841132712413638e-05,1.334095549491497e-08,0.0002900299181702172,0.9999999999904912,5.574732095799444e-32,1.0,0.003547608394492521,0.9999999999980689,5.5138689184672206e-08,0.0003217829972822535,2.6672425182951233e-25,2.0557084400876585e-27,6.43980007216251e-05,5.2103793109533e-32,1.0,1.5525544874111684e-09,4.5317073434467044e-09,5.797649844242478e-07,1.0,0.998335235413923,0.0001387094366052065,3.147137754576591e-25,0.9999969931631222,0.0015079798091883526,1.0,0.00010070958599038251,7.691738650170364e-17,1.3613508223427765e-16,2.2122865374092737e-07,7.390112541168048e-07,2.449765607452799e-06,0.9999999815612174,1.0,2.0013612240705137e-26,5.532330814949182e-30,1.0,0.9999999992905926,0.9999994564250257,0.9999973703471012,0.9999728476145824,0.0007126404969306674,1.3690698037223168e-24,5.1677756037893765e-25,0.9999998917612611,9.23023328373877e-30,7.845594308498124e-27,0.9999999498570259,1.0,0.9999999999999996,2.468047678415811e-16,1.0,2.7191006994138744e-16,0.9999999999408637,1.032561498873651e-15,0.9999936360610701,0.9999999999678204,1.0,0.9999999999984703,1.0,1.0,0.999998460562922,1.0,3.121967620660225e-17,7.716530467267769e-17,3.463826074185066e-16,6.839508288939049e-16,1.0,1.0854600124535658e-15,1.7038478572678472e-16,1.3494776638570843e-15,5.458481674139299e-15,1.0,0.00046215068494481613,2.4422747779796125e-25,4.10767132290547e-15,7.231020271357375e-05,1.0,1.0,0.9994713109579845,0.0010662451300324368,0.9999992928068681,4.857481479789558e-25,5.574339543179579e-26,1.2594073392794776e-08,4.825239624137128e-07,6.054310203991736e-07,0.999999993880504,3.0325078849458135e-08,2.678719345107549e-07,0.0009183835276304729,2.0346728762251126e-08,2.9178718472301213e-08,0.9941111706113863,1.9980960183768376e-24,7.87971658347543e-09,9.475520214685072e-10,2.161783722604009e-08,0.999999969349775,0.9911936601738923,0.9999999987806694,2.2072192533624866e-06,0.9999999999762184,0.0001022688398191426,0.9999998480629517,0.9999999965223623,0.9999461667159785,0.9999059308906045,0.9997084480203775,0.993362752291287,7.928407325058631e-31,1.6447764128335757e-31,1.0,0.00107338462666985,2.6085345005379117e-24,0.007702868766452116,0.001589739776424559,2.2761352548023412e-08,0.9999999999999998,0.9999999977317311,1.0,2.5904919104636735e-24,0.9999799241190993,1.0,1.810252962100743e-06,1.0,5.228180695633255e-07,1.6874753113451033e-07,3.751934457610051e-17,7.10258738550123e-18,0.9999867038947585,1.7222449260508866e-17,0.9999801048257513,1.0,1.0841359051294953e-15,6.2550511912815664e-15,6.641527260616032e-14,5.869202138001306e-14,2.6017552723780277e-07,7.601163244048466e-07,3.019604582275256e-25,0.9999286689665235,0.00013717335712850362,0.9999970102441647,1.0,0.9996384352661096,1.0,1.0,1.4703440421582677e-27,7.181349242028578e-17,8.788532211461637e-17,5.07245103016243e-16,1.0,4.8503189182785656e-32,0.0006340196806477329,7.130442018650836e-05,1.0,7.571907048798925e-23,9.345279462172975e-32,7.681951647373975e-07,2.3250236932662428e-07,2.492882321742608e-06,0.9999999999997993,1.0,0.0013322348661034473,0.999999956904987,1.0,0.9999999813787018,3.489434524273293e-08,0.00020866855190784095,0.0034161429001662866,1.931670552824842e-24,0.9999930588811723,6.713908060016442e-13,1.0,3.2561471219285856e-08,0.001301281385538705,1.0,9.787488128102653e-25,2.509684451980153e-27,1.0,0.9999999999580216,0.9999999999993272,1.5135888985830456e-14,3.445177962856367e-07,6.076290431300297e-13,3.610899560704221e-08,4.013120203883229e-08,1.0,3.69747709832732e-08,1.2062781800988458e-08,2.022012097154991e-09,2.1245231454282454e-24,0.0010699196313575456,7.172110318428246e-26,0.9971646210304183,0.9948421888538158,1.0623439697316782e-32,0.9983566063774182,1.0,2.0823794708673545e-08,1.461996897711e-32,0.9999999999999787,1.0453361446075999e-24,0.0007383611803536176,9.455623272295069e-09,8.103029333384023e-09,4.107577964563066e-08,7.961295528567355e-31,0.9999999884555585,0.9999971568803527,0.9999999999999776,1.7743749524481697e-31,4.976116072696915e-06,8.700040298771024e-07 -arch,rgb,0.9849068255940757,0.9973092319512787,0.025567679577360915,0.9999999587093081,0.08043221615254903,0.29128985773138194,0.9806205404911275,0.3695455811919894,0.2798269711394028,0.21839007325373405,0.006343325451020037,0.012946141620502213,0.010720730208689029,0.9980059542789574,0.9999999971993587,0.9999657414451931,0.0030385361606394116,0.0030928991662207855,0.002929504692130403,0.004244675685494687,0.0026757182738275536,0.01009778687890512,0.2714409805445224,0.024816923542125682,0.3193374063520502,0.010761848040695141,0.9975238179703156,0.2695747142880459,0.9999218479530599,0.9840194308428684,0.2887370199827687,0.04568949746793484,0.24014790790094853,0.0874360169121078,0.9999998641272569,0.9999531729277307,0.0036268433128055686,0.004833032336429201,0.12034030249647153,0.1275078365320506,0.9999998198877997,0.8909515247344929,0.2627891079606804,0.9934888409730972,0.9983919085586629,0.026589370705558394,0.04664692372627961,0.025254921387602873,0.9982824751951299,0.015215755106460865,0.28614768515513195,0.9999998487235329,0.2741389199370198,0.17692123794178297,0.9996460056033365,0.15558346813838642,0.06347945433629222,0.056137771009576384,0.012233649552720596,0.00918398718196873,0.0062315909195204385,0.0028555628749387944,0.9999878928000545,0.8265925886210967,0.9749256334569381,0.02441068480256714,0.009417004080125543,0.27012844898127053,0.3442683457367319,0.3043183385391275,0.1995309940735202,0.9999998634524703,0.9999996973156934,0.2692092713602631,0.9900332665908833,0.8541076762145733,0.010786972550477787,0.02181895689944169,0.011221814856891376,0.0507218984522921,0.9957816651533982,0.0528446183716957,0.006143915268288226,0.04113112709430769,0.3457451625115334,0.005456952536296612,0.9999395837039953,0.005092765026418942,0.9204985097142404,0.9956743616465908,0.36859716421080235,0.999995893568666,0.07681980991707027,0.059659394005690425,0.04801165283451427,0.043538010463642876,0.9998702543995807,0.04085128511500924,0.05678452954146038,0.03967332987002817,0.032968221057637595,0.9504664441634287,0.12038628943445312,0.9999999338921587,0.03462627597022556,0.29402547551997826,0.9969134273476797,0.021964618667756928,0.012630061490699788,0.11443602959102141,0.006884886978792863,0.9999998869705474,0.9999999833049363,0.015629778883114502,0.008247583891374937,0.007134611491320311,0.11140655212032374,0.006968227269056489,0.013218654289269435,0.014115712218902078,0.046296766202348044,0.008245130188222732,0.020530296026622798,0.9999996689769824,0.014125683495481645,0.03939506680213187,0.008665695567581056,0.109224895720669,0.007354543402952841,0.018077786436157373,0.006053629895848731,0.05324719827727803,0.3038968880337078,0.2702123561004145,0.10329900554539335,0.0025968352817275758,0.002810089321168891,0.0028489041621999295,0.010937231594332174,0.9852152940056282,0.9999997967229644,0.9999753113050381,0.19586229852905604,0.999999259774523,0.00515204552119572,0.003764901298693238,0.011990559318286886,0.012779038232735887,0.010341682732499522,0.026671987933474348,0.9999996024558175,0.0053142508227524005,0.9999289167607357,0.006240021214851714,0.9996590379789537,0.00957592349115056,0.011950740768856582,0.4734341796396574,0.33532229762287874,0.0027187042315324214,0.6510171532358163,0.0027672021089985327,0.9999352441443758,0.36628400970325187,0.400744074902944,0.44048995446354655,0.33611615558446056,0.010569909449712343,0.008975288661305062,0.9999999227258385,0.004798791926511277,0.2852859158354134,0.008459635688017013,0.9999795054439892,0.004701666168706804,0.9816000720594605,0.9999966091587181,0.9999999891314425,0.7032845002011021,0.46027236164996915,0.3910435115719318,0.999973834313688,0.9999998417100113,0.2562230859796016,0.2931812744806168,0.9992837100617813,0.9999921540920862,0.995532644906383,0.00900135429589189,0.011643561535509632,0.0060997364346233145,0.042585218869058486,0.9882484099886036,0.0035776432228526696,0.014743744765035186,0.9984916972156231,0.09087346005083731,0.011083078159775534,0.2552790706874544,0.16829511247343357,0.9999995522138991,0.005412019945169782,0.27264377030003195,0.9970039761257484,0.007217796469659595,0.1429650114253046,0.9996178726730439,0.9999998066121863,0.9999999960698338,0.9946201771122279,0.017589188559408112,0.005092832662837396,0.3058542640004854,0.010619180877029915,0.437556323753481,0.009362360198268518,0.014247365863503603,0.99999460541096,0.02557655874263431,0.05877114169238846,0.06271011499483527,0.9999993631386735,0.19460231945555898,0.7808667393062957,0.00307960459744772,0.0031740988094490635,0.9972940575054525,0.002812021489619616,0.999994814531778,0.04604105961120017,0.9999999715785016,0.016207133145933247,0.9999996235435376,0.12785166455375546,0.04654259723766908,0.014206150690680952,0.016677519252231283,0.9854456555180423,0.020769758741763213,0.007000576254674907,0.0067317579478970045,0.9999997000221589,0.005055021402351245,0.005894690637635654 -banana,rgb,1.3219526687554535e-44,1.5205969055853692e-16,3.825486249614958e-12,1.3213183552765417e-76,4.7185340076909504e-17,0.0012578438760633514,1.5080551785933948e-48,3.934406038334092e-09,9.149869119013251e-08,4.333606640049765e-08,0.00015911148659067905,4.360120673930712e-08,2.52982974369008e-07,1.298113256723931e-17,1.7060405421635305e-83,1.5749123366203967e-69,3.3645361826524807e-07,6.853614890772994e-07,6.178140066258244e-07,0.9827419009356316,1.3957905468302014e-06,5.536038343273341e-16,0.0008796035477209504,1.0444679806172165e-21,0.20826313853567585,8.050788383300339e-16,3.353460240709853e-50,0.34877789392988895,3.000404754968234e-66,1.1751889257233469e-15,0.001345949582880239,1.1816965129195016e-13,0.002487566268867006,1.0308307772074711e-09,1.4991110597723623e-65,1.2823235356785038e-68,0.9677825480024564,3.197024525553829e-11,0.5718265692048469,0.05143678045109637,4.099631832693664e-71,1.1664854399179446e-11,0.0027562791305461645,1.245121293657145e-18,1.927368799616447e-57,6.534295469157334e-10,2.5222171224663074e-13,4.032328446972711e-12,1.1944478191806619e-56,0.11710483275690453,0.001236072892911961,8.483570319660942e-72,2.5267505772621833e-08,0.006133835476801651,3.689445671335435e-62,0.03325451452219022,0.1652430202291017,0.09722238195987477,8.732032821951492e-08,1.3280718420803004e-06,0.00014334367349398203,4.777047889814448e-07,1.9766821847212635e-72,5.199302678811594e-11,3.605606679486042e-15,9.955083836560259e-21,3.186436648322535e-16,9.50558254134599e-09,5.484293626441297e-09,5.022705413301369e-08,0.004584961597869768,9.850741002373502e-73,1.579531407407455e-69,3.4572649437458e-09,2.5582822460653312e-12,9.629498738120442e-11,2.251834972475164e-16,1.4627370382065347e-20,1.0152291345411335e-16,0.06855531742240509,1.9241590312132095e-48,0.25473521639982855,1.7034986418042547e-06,0.04051340423829342,9.13607423496295e-09,6.54981772091471e-07,2.9523861327837106e-67,7.559294232368502e-12,9.050286990608799e-38,3.2664803113789826e-48,2.4605136787587684e-09,4.0686362262405746e-75,0.2112890323619198,0.03317799355624299,0.04889862032470687,0.037860955198053166,8.687259745875898e-65,0.03962901053524192,0.23174309673772575,0.06253266626636987,0.03857960227229997,8.587769181148504e-46,0.05711303075314242,1.2607406108870862e-74,0.015549330139411061,0.0013663185552192805,1.4353863800771878e-55,4.829816680853924e-21,2.3568831896915313e-15,0.05118505135461462,1.636344978295399e-13,5.331974776455696e-73,6.931803397230834e-79,6.894376905710279e-08,1.064162684423209e-05,8.252485069640473e-05,4.322647947408684e-08,0.01172631634270667,2.546014800687602e-08,8.429085695624223e-12,6.906476518941631e-14,0.00040640091045104465,0.101742240928061,9.718332144473255e-70,4.7396391261285814e-07,0.9913228131545004,0.0002581647848387295,1.4139479954650795e-07,0.5957373694076187,7.611192189612385e-06,0.9945561910894443,1.3432905184624744e-08,0.0009728374328678928,4.2097244374706895e-09,4.0531556654670586e-08,4.646524161574814e-06,9.917983604586844e-07,1.2641687069343494e-06,0.3834197755476507,3.393088122437925e-16,1.3939530601487095e-64,3.5619739362955254e-69,0.004249940163926132,5.687991987164997e-67,0.9874038140684346,0.9738269353524678,0.9975130661507281,1.7653095004616492e-17,1.3508749077007788e-16,1.3935164853877722e-21,3.454212978643486e-69,0.055526170413659835,5.063819770174725e-67,0.00020489302332575714,2.9141227890008334e-62,1.0589377278016022e-06,1.5977013158795347e-07,0.03354072498191602,0.1329904866833916,9.842003248157835e-07,0.0027762688250099346,7.533999367751988e-07,2.1411312933387114e-69,0.12993650585302946,0.07681233330900049,0.03415556455200387,0.15333246223676092,5.536879347146627e-07,1.7980990778311235e-06,3.703032575908148e-74,0.1172473382087871,0.0012641057649884443,0.01041369384291242,5.9958895804686635e-71,0.2604471525949623,1.0380198500154789e-48,1.652727786389568e-75,5.896210601280365e-79,0.001061433940210988,0.04031683812416885,0.09661893488758329,1.2299406365025236e-70,6.300829993485453e-65,0.0012528277143642884,0.0013979101923211387,1.7769008355768633e-59,8.846043292542198e-60,5.07308582571093e-15,1.7039452847625053e-06,1.6256422766013915e-07,0.00020348690336688364,5.133659736890316e-10,1.596290823624372e-45,0.9610410215232151,0.00018003050850795937,7.039286116242336e-57,2.2251755678794386e-07,2.7220301404317132e-06,0.002025811868326099,0.005536749133954014,1.1937565803613045e-68,0.028188431988551692,0.2805981292581293,3.0635844901583943e-49,0.00465527503393941,0.017910291807122867,5.968358414904467e-62,2.270472638608735e-71,1.0101811483653392e-82,4.736747695820905e-48,5.288754460824142e-07,3.6439823492882257e-11,0.24707737534084245,3.8331772871623347e-07,0.02540876182915627,3.490237101951788e-05,6.807474912910873e-08,1.4573345685186508e-74,4.376517209026503e-11,7.041996736024886e-15,1.6896516897274648e-14,1.983567602870396e-67,0.004397864782817319,1.2727588596178538e-10,9.945539926249775e-07,8.313075672911822e-07,1.5753403757560596e-16,4.065865779732442e-06,1.2120542858443963e-74,7.211192277119662e-14,1.3118298177818687e-70,4.0328959652451343e-10,4.997490959551044e-69,0.03694255445219975,1.3068758195413928e-13,4.234873748305546e-07,8.28081686219034e-09,1.3713904670316866e-16,2.856132296784171e-05,0.012994005051274366,7.30418504303128e-13,3.4286677566965827e-63,0.0028831797224701714,0.0016032530567231507 -block,rgb,0.9600923407749511,1.0,0.006666944644345057,1.0,0.4061123564959047,0.9839604332800842,0.8054464625624989,0.6464490283877693,0.409751990409877,0.08967846037340202,4.1278562324657494e-05,0.0007693761238174374,0.0003370991127364745,1.0,1.0,0.9999999982965704,2.7204551437359196e-08,4.442936079660919e-08,2.327872787473382e-08,2.04805044604934e-06,3.850991931101383e-09,5.844071682760347e-09,0.9664223063117713,4.290099476193115e-08,0.9999194147128396,6.447913565023598e-07,0.9998216684040057,0.9997528990691635,0.9999999814059911,0.9999999999999989,0.9833855517745331,0.1080134032513487,0.9506388713773292,0.00017383606764116247,1.0,0.9999999955114562,1.3112647572393237e-06,2.482240009308141e-09,0.863040522121335,0.5494423101839415,1.0,0.9999999999928577,0.9761530648900648,1.0,0.9998135706397097,0.027899168898075193,0.1427036824932525,0.006238897742224096,0.9997920071426832,1.7560580620170363e-05,0.9813168699670067,1.0,0.27268664202470977,0.7741050499834397,0.999997970513158,0.7813310075704015,0.9729515715093191,0.9517005517580676,0.0006238099483289583,0.0001771358907639996,3.604327345750299e-05,2.959703578481036e-09,0.999999999935204,0.9999999999210154,0.9999999999999918,2.634974068156509e-08,8.186530074952604e-08,0.19303578110544184,0.5390486314579898,0.506175342289425,0.8721852839249926,1.0,1.0,0.14141039153634063,0.9999999999999998,0.9999999999694316,3.2849410700000696e-07,2.4864746073114825e-08,7.180924026262611e-09,0.92146222715308,0.999137887591539,0.932237551908156,1.4440373651877787e-08,0.7955220614600752,0.5925710716741857,8.13554086625887e-09,0.999999991191784,2.7947779361795006e-09,0.19081295287658043,0.9991121137822369,0.6020882722527973,0.9999999999980493,0.9892100044458495,0.9649860154490696,0.8981401286214,0.8400849760239497,0.9999999107874857,0.7895028192599965,0.952259705604414,0.7637302797668931,0.5440680916695761,0.20480616413016095,0.47172226416859014,1.0,0.6000904656776058,0.9857765176332067,0.9986987239482661,3.3480747259684144e-08,4.28728859511443e-06,0.3777594977967381,1.238581383997232e-07,1.0,1.0,0.002785973821989986,0.00013526276883107463,7.851767661092597e-05,0.0019016028351935253,0.00014635097640516043,0.0007802212255699594,0.00015731203196583048,0.10352933908166805,0.00025838631593655116,6.885923135502554e-05,1.0,0.0021879589488203377,0.17046496648460746,0.00032764332516171767,0.0025100391556949608,1.8263837870021925e-06,1.4399118488949894e-06,4.1144011601232064e-05,3.206498097386711e-05,0.9870057381720329,0.15308719568933304,0.0012428526328651906,1.1721631496993733e-08,1.7139226936364957e-08,2.295930125325941e-08,7.205354547593369e-06,0.9999999999999991,1.0,0.9999999995303568,0.8518456546525259,1.0,4.030949272765604e-06,1.7853500962414356e-06,0.0013172796963403152,8.920382404919289e-09,1.4532442103362533e-07,3.616238309142912e-08,1.0,1.4742296982526643e-07,0.9999999847621739,3.8822735559180536e-05,0.9999981913901378,0.00022114323862308058,0.0006120462785651411,0.9999978308763435,0.9999879830669257,1.0057203723042693e-08,0.9999998628504235,1.1626957296247166e-08,0.9999999843132059,0.9999787234251214,0.9999816387796673,0.9999830010909453,0.9999204893036432,0.0003636973450769884,0.0001626950941661,1.0,1.3473999553572836e-07,0.981085394845646,5.204659667179922e-07,0.9999999996606872,1.7893173010077255e-07,0.8281657781360471,0.9999999999989759,1.0,0.9999999207352447,0.9999968666414558,0.9999875433769156,0.9999999992181656,1.0,0.9566161230918482,0.985615977748562,0.9999844380452062,1.0,1.0,0.00016392091721857216,0.0005202621607637265,3.3405405721873296e-05,4.768868597833224e-06,0.980032587437854,1.5308316925898913e-06,1.5186050884436869e-06,0.9998625852167672,0.0010894464669184301,0.000677090347018729,0.9650278756891757,0.698216672235925,1.0,1.2450253474483254e-07,0.9996108854997414,0.9997168714922371,0.00016152245538262927,0.590020670835315,0.9999974336130287,1.0,1.0,0.9980033476363669,6.134928958946426e-07,2.4072043160314843e-09,0.9999022804984444,0.000346666955585474,0.999971543802413,0.0003778699763500947,0.0015549355930156398,0.9999999999951295,0.012057894527074745,0.23608370188510316,0.3695248852446071,1.0,0.8483099857884955,0.9999999997083462,4.905801359316478e-08,6.196585487391705e-08,1.0,3.2136465251185506e-08,0.9999999999957334,0.101213955641766,1.0,8.188956248357546e-08,1.0,0.5071854942864272,0.12271962413082056,0.002216910126696848,0.0026661394144784543,0.9999999999999991,3.938297367583732e-06,2.5948678001104126e-07,3.044362941974053e-09,1.0,1.5201018269864551e-05,3.803596831241222e-05 -blue,rgb,1.908853882356792e-13,0.00047916157856478086,0.00014893124149670497,0.9999898755770619,0.0011723033138289613,3.122892071774105e-11,3.222712671747746e-12,1.0328763926553552e-12,1.7661128817797343e-12,1.5360990976842345e-12,4.1995573613978906e-06,3.273148364785128e-05,2.066315329273419e-05,0.000929565846033691,0.9999981792724134,2.776857503937112e-13,1.7170001669666172e-07,2.4393241409352457e-07,1.4199069822876058e-07,6.262276181358848e-09,1.2557843202328636e-08,2.63714072576201e-09,2.3968111876653203e-11,7.028556027644147e-09,5.712272970387111e-09,2.244528137420188e-06,7.368798090534831e-14,5.063365569761355e-09,2.47470422302133e-13,0.003198916814929393,3.1745630853351526e-11,0.0004470270584500047,3.16443552360936e-11,1.6286191317903217e-12,0.9999655043250365,3.2481716943048945e-13,1.413718924660478e-08,3.564186750576972e-09,3.8111857042878547e-10,5.931398802477151e-11,0.9999731857877807,0.0009512378842515748,3.7988700749885317e-11,0.01280774678196941,1.479845339196535e-12,0.0001417890584228533,0.00046047667373528997,0.00014530901672252922,1.033419924400906e-12,6.547738238405173e-11,3.009486888456687e-11,0.9999761786908508,1.3917725197808852e-12,3.212942311297138e-11,6.90818767151597e-13,6.018189988069599e-11,3.4878983703961483e-06,4.8924011987704725e-06,2.8359386405288098e-05,1.3694161795882683e-05,4.078011169131325e-06,7.487176322617842e-09,1.5725728716658048e-13,0.0009026304107001531,0.003517385617317349,1.5430462946744286e-09,3.6851352324195764e-07,1.1833256382966366e-12,1.0844900746771625e-12,1.5966653285396529e-12,3.253144741232048e-11,0.9999776679530379,0.9999617633297353,1.0144863192139004e-12,2.994456899928443e-05,0.0006090459779509523,1.254533008517528e-06,3.041918948485895e-09,3.016594473531545e-09,5.9257937833456226e-06,9.119102973299764e-14,2.9488484230302294e-06,1.1568657411026121e-10,7.530753124209061e-06,1.187883403709792e-12,1.7729190751397512e-10,2.531557629265978e-13,4.960292874582896e-09,2.858005945233322e-13,8.659328163632969e-14,9.52042458212575e-13,7.628455455806326e-14,2.612881364515606e-06,7.744553643000491e-06,6.910528106541728e-06,7.719199828580561e-06,3.254280028698142e-13,7.594368017390077e-06,3.0215859194595068e-06,6.3550278653173535e-06,7.5272989708457245e-06,8.007890886000452e-12,5.8813440662599e-11,0.9999862941781441,1.035990150376386e-05,3.2954674733849414e-11,2.4051383342085545e-12,7.1072364309388855e-09,7.951581908662536e-06,5.310991874701403e-11,7.693112441552948e-07,0.9999803999406327,0.9999944065779469,4.501515067764649e-05,9.447004513243611e-06,5.79302869038669e-06,1.893967784875173e-12,2.6648166710518807e-06,3.488804089301086e-05,3.797531962086891e-05,0.0004583169241921622,6.293246388857748e-06,5.201034816675763e-11,0.9999592829492709,3.287957779826978e-05,4.737230184089655e-09,7.3114852045474996e-06,2.2043784968950106e-12,2.6077047602387343e-10,1.438269590326465e-11,2.562241236293845e-08,2.9698916848367447e-12,2.982166501724809e-11,1.0438372738045753e-12,1.9569892617146672e-12,5.755492542732831e-08,1.0174057628453231e-07,1.3130789806311417e-07,1.2823254661979554e-10,0.004564019978340882,0.9999560402676375,1.1106219578475748e-13,3.0805892399601514e-11,0.9999287587506343,3.3724528499178125e-09,1.5650241854841256e-08,1.7651367627331598e-08,2.9372386011399985e-09,5.968662587926736e-07,2.650203043097396e-09,0.9999537863738792,2.4061555614021734e-10,3.181372372421889e-13,3.941775329368928e-06,6.725688092864618e-13,1.5138092219762071e-05,2.6256393944368413e-05,2.044046987196915e-08,7.903799257464751e-08,5.748020939919818e-08,1.2249356796296233e-08,6.958670326991782e-08,1.2273038162575855e-12,1.0915082594165068e-08,5.380135425519354e-09,2.2967632547478563e-09,3.6677041105339025e-09,1.9215163042178254e-05,1.2808719979538547e-05,0.9999847974269662,3.451323415959404e-10,3.025406456986926e-11,8.086091445589034e-11,2.0667209901414055e-13,4.3402978956451566e-10,3.1029109612356927e-12,6.456828788742795e-14,0.9999957284853468,6.216573661656684e-09,1.6234746651486313e-08,1.2436084865279165e-08,2.967123318075718e-13,0.9999608562194703,2.5697793032865487e-11,3.314357812864308e-11,7.059003241195925e-13,0.9996035354626429,0.00020761734112094573,1.2930440764029089e-05,2.4934474703653717e-05,3.7470773486406344e-06,3.4812027401387277e-12,1.7602179005482382e-13,2.1754334940578003e-08,2.3824571370934677e-11,8.609820863750136e-13,2.5435520621827334e-12,1.8663898272809035e-05,3.152398489908247e-11,2.9242465361671916e-11,0.9999498602938155,2.0999784261400865e-10,2.4752495455333272e-09,6.912147049544604e-14,3.375288526408293e-06,4.087631908791741e-11,7.297952049212673e-13,0.9999718238513554,0.9999977576880932,1.2077293473340114e-13,1.334643274707308e-11,2.115866374052291e-09,6.393106300229417e-09,1.9818908553855545e-05,1.264765833028032e-09,1.0734021560824863e-05,3.8281489267787514e-05,9.748998922358912e-14,0.00014650254390883154,0.000702866370396601,0.0007856335321376303,0.9999359044269315,3.102556612687988e-11,0.0008360890678718789,2.5509750964126865e-07,3.100947673084057e-07,0.0004757829448447977,1.566409715384458e-07,9.403128741689185e-14,0.0004537237898792926,0.999988373703766,1.8192588015295722e-11,0.9999555603242859,5.0731283961626116e-11,0.00046170771889366004,3.3500814801158084e-05,5.682021200844097e-05,0.006119474229888362,1.3433551197653082e-11,1.1418302393912359e-10,1.4958914057431557e-09,0.9999408069571374,1.7409810207159545e-06,2.6947654934833006e-06 -bright,rgb,1.0,1.2678890293320918e-07,0.0010020787665076197,0.9999999796826797,0.003991858897033649,0.998735959394134,1.0,0.9999999987816961,0.9999999864723514,0.9999999958261454,0.0001263872786685861,0.00014711828751449673,0.00015543953085302202,1.0813467574228598e-07,0.9999999988156751,1.0,0.8744499087505152,0.691351346786923,0.8786091964270355,0.020524650956654577,0.9980517290761497,0.9999999990328639,0.9994648987163176,0.9999999999935483,0.0011537126270962348,0.9994665266731654,1.0,0.0012984999473442695,1.0,1.0862132795515853e-08,0.998662807312587,0.0004614718340258959,0.9986179473888253,0.999999999891322,0.9974765751463153,1.0,0.008052871404848517,0.9999994584662405,0.28644581838506294,0.9893431359003559,0.9999989632908602,5.928729378058984e-09,0.9975429595713758,1.4939698413297924e-08,1.0,4.383252107119542e-05,0.0002652937974385808,0.001034415628271947,1.0,0.9989356843708698,0.9988737503657089,0.9999993761397856,0.9999999962673956,0.9985268970728332,1.0,0.9886682613604816,8.975331839884199e-08,8.169133057716646e-08,0.00013634044278537568,0.00015186670979035313,0.000146082118521581,0.9995905945630815,1.0,5.425299436114411e-09,8.472534659169162e-09,0.9999999999986064,0.999992077662715,0.999999998542884,0.9999999985869195,0.9999999909471241,0.9984596677716467,0.9999997849309564,0.9999975323712297,0.9999999994218656,3.7838471761886513e-07,5.9576035330287665e-09,0.9999197675145058,0.9999999999944658,0.9999999994919562,8.283274433952209e-08,1.0,1.1511426821353136e-07,0.999999122036808,9.944658633424972e-08,0.9999999976755198,0.999999063093699,1.0,0.9999995501690334,1.0,1.0,0.999999999223814,1.0,9.791999779813753e-08,6.292437076007593e-08,8.330887075968781e-08,9.138587078589832e-08,1.0,1.0022189884643406e-07,1.0701623100416312e-07,1.0922609373819098e-07,1.4034662079748102e-07,1.0,0.9897275725349493,0.9999999001997812,1.2636015441380458e-07,0.9984992235462509,1.0,0.9999999999857048,0.9857129303969472,0.9926999910340353,0.999012041588057,0.9999997555613889,0.9999999915028835,4.6506136165443014e-05,9.922308217504554e-05,8.719729183558327e-05,0.9999999979071457,1.8581640954731355e-05,0.00017630291422842369,0.018803123092446018,0.0006011924128009436,2.2838638351520336e-05,0.9990589141681642,0.9999985639275302,2.9704672446124488e-05,0.0010708886488846124,2.1185459363480903e-05,0.9999999943631506,0.9762398222641009,0.9999998193203519,0.0004246775849820788,0.9999999991905735,0.9989278106454719,0.999999999305843,0.9999999980913632,0.9325481093827404,0.9154205898334291,0.848830810312373,0.9936997290375431,1.0607996667968814e-08,0.9963737032274667,1.0,0.9987165034258094,0.9999916087271302,0.041352455988040916,0.005535490121799551,0.0002089719911099096,0.9999999998036952,0.9999866522146379,0.9999999999986804,0.9999980791055317,0.998167813005106,1.0,0.00012483657430046696,1.0,0.00013612824753398282,0.00011241533647160453,0.0001452282990703505,9.593218445609448e-06,0.9713490885194075,0.0006790346007126431,0.9643821791879242,1.0,0.0003573198162324601,0.0016242320062929913,0.011124720134475949,0.003049716769220205,0.00011236293084912115,0.00014775292992144835,0.9999998713391641,0.9947661524842368,0.9988530937018342,0.9998508633470157,1.0,0.9857367700386578,1.0,1.0,0.9999999769180795,0.0032411321374336732,0.0002154833129159063,0.0002964773778355484,1.0,0.9961028534498936,0.9993164040665544,0.9984696963350513,1.0,0.9996543472758134,1.4421857982857992e-07,0.00014940151608775745,0.00012724454016207085,0.00014248134152309775,0.9999999998934854,1.0,0.004078935886441158,0.9999974825655099,1.0,0.9999999925746796,4.169382231024356e-05,0.9986503974495398,0.9989359465575804,0.9999969966261605,0.999062556909574,0.006047219340358415,1.0,2.0006072305327078e-05,0.9967793673549,1.0,0.9999994053200171,0.9999999984977452,1.0,0.9999999708772995,0.9999997674021984,0.0008841117995809759,0.00013201422304713357,0.04139901741956642,3.14030269361979e-05,7.260695003236722e-05,1.0,0.00023016319989242493,0.0007697953544149876,0.0003302842606844464,0.9999934188511568,0.9986855286402595,5.3714573661257305e-09,0.6217846781001057,0.5481249535607666,1.2671226942148238e-07,0.6649653295692474,1.0,0.0006015184365659264,0.9998708329440555,0.9999999994377335,0.999997200398188,0.9935615658931525,0.0003971096176210428,3.0481126940673615e-05,0.00010061295061914139,1.0326089925368794e-08,0.9999995655777401,0.9997444324647008,0.9999999842504614,0.9913295468069081,0.00015534252167911418,7.848013188060119e-05 -cabbag,rgb,9.47151533455903e-06,1.5487769875321e-14,0.9997675086140785,7.243015787854686e-05,0.9998933367911967,1.4821331968770226e-11,0.014133821618774738,5.383064497717465e-11,1.4396050683630696e-10,8.637397625411212e-10,0.9911112883022729,0.9983909648582338,0.9980175569789208,1.7977296184785704e-14,7.551285706693506e-07,2.5199091079617184e-07,0.9998001436444478,0.9997721247849648,0.9997471520512883,0.020224555486324004,0.9985380096810971,0.9997913518462089,2.2658831218416914e-11,0.999976007210921,3.883915726205862e-11,0.9999979519524692,2.2530066118223885e-07,8.138079932797144e-11,4.2824917036488485e-07,1.3651044737820803e-10,1.5452608443497644e-11,0.9996132188192495,3.8762452590117794e-11,7.577152314068905e-07,1.1941750401201388e-07,5.010826220927825e-07,0.09677141303891594,0.9994080636554916,8.710860223679018e-10,6.354559713407369e-10,0.0001511964758835618,1.449439144316482e-08,2.398681403060584e-11,1.0486872804856442e-10,0.0004114261072946317,0.9972287668823575,0.9994153977059436,0.9997717579135753,0.00019315052462859776,2.043614429255591e-05,1.6362478149194087e-11,0.00014368440431264035,2.41926575922557e-10,1.6515448416479084e-10,1.9957071473694705e-05,2.602714455135607e-10,5.5770861255426775e-05,0.00017513934571996415,0.9981502822744405,0.9973438423869422,0.9920193728482255,0.9981582954820432,2.1660442698829742e-08,9.409234761086909e-08,8.008596236493245e-10,0.9998132618660434,0.9999971898623993,3.616981093224147e-10,8.157749686802579e-11,9.86963873691728e-11,9.363338144714562e-11,0.0002379306762722363,0.0002763963521933425,5.127979330113752e-10,1.4167290821016207e-14,2.0058593403915225e-08,0.9999981609992776,0.9999233715140408,0.9998510057867659,0.0003982088237821578,5.715474747590601e-07,9.768203718476649e-05,0.2547160876170497,0.0017295610425728605,6.773632417356425e-11,0.558535522190146,3.533162475100548e-07,0.999684944423163,4.8847233543678694e-05,4.91523856889392e-07,6.339198971711936e-11,1.096743439700933e-09,1.4795914334853896e-05,0.00030063995359568853,0.0006887820263784795,0.0013703887931671716,1.3464497979981028e-06,0.0018186418098918074,7.316809719374477e-05,0.0014897380373628517,0.005257699994658229,0.15167776304913727,8.219892032321661e-10,7.350087779753824e-05,0.00788511083194333,1.3978071400256768e-11,0.0020123822082857468,0.9999743348621744,0.9999972726639957,1.052412646918314e-09,0.9999944774611308,0.00013973483009679537,1.5187358329269572e-05,0.9961687239544732,0.9947930765715115,0.9908174757656291,4.594660309390475e-08,0.8840527660852515,0.9986602173763016,0.9999483873377171,0.9996795687929688,0.9661447604063337,4.309617611524713e-06,0.0004991783887701352,0.9930897140022655,2.5734653035328746e-07,0.9684609602625184,3.407955206140129e-08,0.000667691716321586,0.00020372622777450685,0.0065239000251809,4.8909571722310514e-06,1.2022915783488519e-11,4.691416679791657e-10,7.247962124261713e-08,0.9993194981723742,0.9996719668267867,0.9996787334444165,8.478527720060173e-05,2.1145593941362368e-10,2.547478373844744e-07,1.8549194796522346e-08,1.037233200228546e-10,0.0009245026793319572,0.004432643942199094,0.08098059976979959,0.00013186826390165787,0.9998678797876971,0.9999978968108804,0.9999191396351352,0.0006222239973465489,0.012081671962706205,7.187748349413923e-07,0.9903781915658697,1.8139742425927848e-05,0.9972743343462706,0.9977187371849928,1.116972784490868e-11,2.531565457458634e-10,0.9995703416183513,7.100326712273794e-13,0.9996400179320433,1.4014866562246639e-05,3.0063037875203054e-11,1.1372717249765583e-11,4.000753358061455e-12,2.277892089858407e-11,0.9972450207684579,0.9971438316753852,8.911334525555972e-05,0.017978303491044643,1.65972676076924e-11,0.0012272263549205757,7.31488165337052e-08,0.015416284697007385,0.012597636370460866,5.767483317838977e-10,2.5901331030866166e-06,2.075140383309695e-13,1.1103834345010535e-11,2.3266005290995327e-11,2.2445722933349052e-07,1.1970832108442198e-07,2.9698569739227926e-11,1.4170372658732896e-11,3.8874292855303275e-05,0.013402143981013604,1.9954102143447893e-14,0.9971912126422715,0.9978912989028309,0.9910554910356468,7.041286123291425e-05,6.725232119515309e-06,0.1472151017540173,0.0002000199642947097,0.00011420709237932889,8.233274392035864e-08,0.9929227242814095,2.8735415552443838e-11,2.1453799797452998e-10,0.0005988202567453221,0.013594281232520478,5.0587151116662393e-11,2.022643676527266e-07,0.9204890449921115,4.1193790969031275e-10,2.425092490520751e-05,0.00026466594712811923,1.4852426868165406e-06,1.5240509705964986e-06,0.0007068888647730929,0.9988068137638175,5.1742847876445476e-11,0.9976563076512476,3.0840064122686797e-12,0.9855109694178489,0.997244560418329,2.765898881087703e-09,0.9993144316101371,0.9997172072515991,0.9994701757885494,0.0007765075918193279,1.0672033118148366e-10,2.396380460285049e-07,0.9997459485188891,0.9997658644871034,1.5580988354513618e-14,0.9995592227216533,2.4172454710093485e-09,0.9996799261069234,2.601304373405533e-08,0.029924924445733768,0.000420650125220209,6.476009131667906e-10,0.9995673917000009,0.9933327011842596,0.9982583236978687,3.6418939289258296e-10,5.526549895481097e-05,0.003571602820094748,0.9989364408127503,3.188991811529697e-07,0.9794787433120093,0.9762837925036495 -carrot,rgb,2.2849189310096545e-33,6.590711417515192e-11,0.9999999996351701,2.0229557642036313e-05,0.9999999998676798,1.2524658715894856e-18,1.0410603604558257e-28,1.7172093114859023e-23,5.739202155280678e-22,2.2095171414289517e-21,0.9999999429215042,0.9999999977463154,0.999999996039274,1.2954964733206087e-10,1.2556526262636901e-08,1.5786555888753558e-44,0.9999871328371681,0.9999948789982309,0.9999799840787034,0.09960691134961541,0.9782504408491409,0.00229702168849679,9.568805886944996e-19,0.0012157715998160166,3.3181624019571766e-12,0.9999993112130626,2.9044807057580814e-38,7.51122925309973e-12,4.248145991849421e-43,0.00020657564344868934,1.3964503121112712e-18,0.9999999997858644,4.8152550276956905e-18,9.36637143074573e-19,2.7013678420472398e-05,1.0821176174598932e-43,0.7616403494262061,0.0975774986349216,4.413445001591568e-13,1.3899054063241405e-15,0.0007413559353716092,0.0764905694571942,4.468817687806512e-18,0.00023716277702282276,1.2066926787397307e-34,0.9999999991942483,0.9999999997666145,0.9999999996299609,4.860789509242457e-35,2.0269422359563096e-10,1.2756669974948443e-18,0.0004916275669382981,3.578316089078557e-22,3.456637735663974e-17,1.1292529008774946e-38,4.534965467809459e-16,0.962567737625951,0.9933833244981632,0.999999997249144,0.9999999928804886,0.9999999435927306,0.8783306291339075,2.202366551709613e-47,0.504869771792269,0.0027280234218663743,1.065752093822996e-05,0.9999206962973631,2.628206848332597e-22,3.4337093153009575e-23,2.3973139634528045e-22,1.705940573500316e-17,0.0004219624856128264,0.002719872784563549,1.8313785716609068e-22,5.6081759249508014e-12,0.09086895078678323,0.9999962912030445,0.00014920705163062054,0.002297542007929735,0.9979458522171741,6.3492103366066476e-37,0.9758288739866398,3.466804289449831e-07,0.9996982596346812,4.2002187708483e-23,2.5742860022606845e-06,1.4552083474828471e-43,0.20336705963158416,1.6477562614312127e-29,5.9091315251574965e-37,1.4222396215228565e-23,1.4831338072537562e-50,0.7813947459925416,0.9979277242530762,0.9990760829879474,0.9996214966051702,1.0269206772697146e-41,0.9997171331317717,0.9673357874904258,0.9995665454640292,0.9999086619969475,1.5130612105867634e-25,1.886118199154891e-15,6.280057887257797e-05,0.9999586095898766,1.3688857146853623e-18,1.1013885747691072e-32,0.0021135875027006776,0.9999999634470715,1.8785726254563556e-15,0.9999972543986692,0.00024829463966229235,1.7567315356858928e-06,0.9999999976159375,0.9999999849664818,0.999999962666433,2.6857843569384936e-19,0.999999461124979,0.9999999980227736,0.9999999989029171,0.9999999997962501,0.9999999293467555,2.0860672284278957e-11,0.003716952659331594,0.9999999956997156,3.5005393434192535e-07,0.9999999442189424,4.338512796354957e-19,5.135759364999093e-07,1.8052934497298175e-12,0.5388825845974701,7.522521291744862e-17,8.127828858309779e-19,1.91409095426737e-22,4.631298299706835e-19,0.9997996673143643,0.9999535243679603,0.9999766457907887,7.886243109016987e-09,0.00045299381367837777,8.633105219464124e-05,1.6331756173961501e-46,1.6388030832880167e-17,0.025055251975970614,0.005874771675840021,0.77900849237355,0.009673382590967982,0.0012412373808354104,0.9999724039628465,4.100854908938712e-05,0.005854602006776378,2.8762321604689266e-06,6.503269370540365e-43,0.9999999350471311,8.735436441203736e-39,0.9999999936004431,0.9999999967603135,6.631050231059622e-12,7.339770259084266e-09,0.999775960751707,3.877977384999201e-14,0.9998661087287518,3.942359435410577e-41,8.533646663716999e-12,4.835307223854879e-13,1.6502488134430455e-14,5.950264735536459e-13,0.9999999950950453,0.9999999920565911,9.391336916329301e-05,1.377723565602611e-05,1.3226363407821873e-18,1.043696340566423e-08,5.854004462615612e-46,2.845175889086408e-05,7.272210112352344e-29,3.556965465977676e-51,4.375234498969091e-07,1.5253425760951419e-15,4.245353639796811e-12,7.57325128784624e-12,5.916692770552114e-45,3.5927748690126724e-05,1.726219749287702e-18,1.4200229846808654e-18,2.7865570579801085e-37,0.8752609997058555,5.3278065738519695e-11,0.9999999922003363,0.9999999966861643,0.9999999326973322,5.441680343016477e-16,5.71224222147102e-34,0.9287245347021765,1.8973303290145016e-11,1.4802685058011455e-35,1.8681913561766775e-18,0.999999992136421,3.1768803798220014e-18,3.577609602803888e-17,0.007609436573664383,1.8307775261771236e-06,7.979220602009555e-13,5.344816700514897e-38,0.9999997092823353,2.456224794097323e-16,1.907778237404929e-38,0.0009684782268684153,3.3194248455992265e-08,4.94016524371875e-36,2.0784724948104655e-12,0.01625400890225721,6.364965478775241e-12,0.9999999955670671,2.9062602223770406e-15,0.9999999781590274,0.9999999976006635,1.1621540019338228e-49,0.9999999995280116,0.9999999998321496,0.9999999998160414,0.01746328096683115,1.7409363059098837e-17,0.772050185656497,0.999995493763442,0.9999971400716228,6.621387144709506e-11,0.9999859584187059,8.608244148184292e-50,0.9999999997953704,5.955938571927581e-07,1.5117255494513e-11,0.004825433201496645,8.7326531051652595e-16,0.9999999997836446,0.9999999958551467,0.9999999986223107,0.0011080014026804287,6.285892806953185e-13,7.919180956551173e-08,0.001850388908161886,0.000200009796404831,0.999999671046116,0.999999816414163 -child,rgb,1.022776719425238e-05,1.0,2.1597104091146515e-11,1.0,1.981281560360664e-09,0.999379291826356,7.416931100011688e-09,0.6398424593232944,0.2915833673529481,0.010654346481095376,1.148906485037515e-12,9.365852613735419e-12,4.211275382463816e-12,1.0,1.0,0.9988604162828625,4.242540658669071e-18,9.501542254507999e-18,4.171305934591837e-18,7.919200451981022e-12,1.0324899378405382e-18,5.710068877959494e-20,0.9977760706085798,6.03238512803305e-20,0.9999995404116243,2.8594881246761143e-18,0.02500445482262191,0.9999971880387136,0.9843408338663879,1.0,0.9993394084552474,9.226267879726201e-10,0.9955134483429476,4.0892081700120326e-08,1.0,0.9952794751267056,1.705082351157741e-12,1.0735835108002032e-19,0.9513243875948171,0.6405780807021381,1.0,0.9999999999999469,0.9987417100086965,1.0,7.159362890041976e-05,9.94085520714423e-10,1.912467826196583e-09,1.9672994554720044e-11,0.0001129349366177909,2.7190653910274606e-09,0.9991934585631644,1.0,0.10613619931988211,0.9189107665377567,0.042583799492998564,0.9196187600107375,0.3254944606523616,0.09924444456810849,8.224851244953386e-12,2.497903253735377e-12,8.941775648043088e-13,7.265148337325027e-19,0.9999916958323505,0.9999999999969926,1.0,1.1897542568369093e-19,1.914610994540757e-19,0.045029186573622725,0.44873775094590945,0.4417320833970185,0.9738265793367976,1.0,1.0,0.02080162117106269,1.0,0.9999999999996512,9.485301749550564e-19,7.193236299963393e-20,5.211298908832198e-20,0.03307239157161909,0.0029839943967612283,0.09531795150132208,3.382361835433861e-16,0.0033665371023449448,0.5601084540139715,7.073623119888676e-17,0.9931952255748382,7.681596952183602e-20,5.1264410395235804e-08,0.0032942097752625757,0.5454495531314778,0.9999999683660391,0.7785568984693579,0.10260849905389227,0.016513363145395945,0.005634170057737757,0.8598682673535524,0.0031143728688530913,0.16596690947415899,0.0029917815338010244,0.0003830790926749521,9.691147760169286e-11,0.5092997900843462,1.0,0.0003784590888578618,0.9994935920788289,3.7178057176973073e-06,5.323489797473215e-20,4.751183469384074e-17,0.3491187703084648,9.58504754506351e-19,1.0,1.0,8.765122892141825e-11,3.1357641934230934e-12,2.57079926556846e-12,6.722838713794259e-06,4.169107656905237e-11,8.158050492077687e-12,6.9881101384928e-14,7.383214070988006e-10,3.05530725040462e-11,3.781741352346285e-08,1.0,1.0743998865220177e-10,0.01616897924636052,3.8411700694816126e-11,1.3046695088969655e-05,2.739464057860222e-11,9.491282288910752e-12,9.193836420424671e-10,2.1219090778314048e-09,0.9995701217536807,0.025133240836682703,2.9672089863563132e-06,3.511691760396347e-18,3.346694014981188e-18,5.033247449008297e-18,4.635661476284684e-10,1.0,1.0,0.9999530695284604,0.9652616239005627,1.0,4.5584400702497365e-11,2.927335425450927e-12,8.183584460904643e-07,5.376378088067822e-20,3.2218581057776346e-19,9.389874199260861e-20,1.0,1.4176564679819244e-13,0.9808413357288482,1.1354828881450756e-12,0.05047055495368561,3.32384523499176e-12,9.582677192623672e-12,0.9999999976442375,0.9999998978611782,1.8863749408559684e-18,0.999999999981869,2.025764584565016e-18,0.8482417757432074,0.9999999281784446,0.9999999622512644,0.9999999783704812,0.9999996444985706,6.0556837917355634e-12,2.3958852860287675e-12,1.0,1.113657575286553e-13,0.9991757019727515,2.1229194319272253e-12,0.999901205973953,1.972871322245499e-13,9.2712072793932e-09,0.999999989475043,1.0,0.9999999999949278,0.999999996236896,0.9999999682056818,0.9994970160580906,1.0,0.9964828485701971,0.9994834290605614,0.004067748286733321,1.0,1.0,2.3844179825151205e-12,7.407927505090488e-12,8.923418210704763e-13,2.812472857367043e-11,2.5119724417377313e-05,1.5969258056464665e-12,1.4677940785130037e-11,0.0002445546685451333,2.814776768741936e-06,2.7430794936922185e-11,0.9975727010331791,0.8522026308010907,1.0,9.805859017772552e-14,0.9999958290901121,0.01837711453917574,3.441020776933086e-11,0.7121020252259216,0.030006109489282267,1.0,1.0,0.0006399440837768681,1.1652791191395334e-12,1.512266192623369e-19,0.9999993249271802,5.003641566296141e-12,0.9999999610644714,2.4450942078095506e-11,3.360682024090061e-11,0.9999998479580665,1.1178889452408776e-10,2.0016310617129802e-09,7.245362176432277e-09,1.0,0.9636047086137943,0.9999999999743845,1.1980438574739049e-17,1.538298724144551e-17,1.0,1.0636323547061467e-17,0.99999987891057,7.168487079154466e-10,1.0,4.807612915376583e-15,1.0,0.5748493537512523,1.2008835977827267e-09,1.059529213400781e-10,4.2976714449594286e-11,1.0,8.424036375173585e-11,4.876704861092334e-13,1.2574115322584714e-19,1.0,6.515458848384095e-13,2.254030963908656e-12 -chow,rgb,3.9595469999366417e-35,0.9999999999997973,6.916797167546295e-15,2.6582668690730037e-12,1.1166868559687744e-15,0.012324263775723304,2.789606108946904e-39,3.1568548252512067e-09,8.775965386763634e-09,2.680432157907484e-10,2.570452725188379e-12,3.6883498336810254e-13,4.16017159162616e-13,0.9999999999998168,1.2577456456726464e-10,1.7348273587496202e-43,3.5676729145228776e-19,1.302048066411743e-18,4.504093534883598e-19,4.763472959255887e-10,5.3431306568506366e-20,4.716133686224667e-27,0.0030281596107934916,3.409408243930484e-30,0.9996102203639298,8.809274634161189e-24,5.735607476205366e-36,0.9988078011775087,1.7385169968429446e-42,0.9999999976159988,0.012324260395559561,3.573428552485174e-14,0.0037747269912102627,1.1878649507775215e-15,0.00045903593682220824,2.104340052681581e-43,1.5394231823459066e-10,6.636185307834326e-24,0.09385089396599408,0.000698967441617146,2.920761748662369e-11,0.9999991090934816,0.012518396438432543,0.999999998374486,1.43508705657094e-41,3.240190037053311e-12,1.0343103965507296e-13,6.51832173194773e-15,4.959624747527795e-41,8.888076850116772e-11,0.009664695175099942,2.0177893673889757e-11,1.2818224739361948e-09,0.0005878082073773337,2.518712496312018e-42,0.002424884704442101,0.3049330662820068,0.10165287186913297,4.604258490356771e-13,5.701182200347121e-13,1.9353828755057364e-12,1.54185817903179e-20,1.2272240235466412e-43,0.9999900302004255,0.9999999805303373,8.991305374883278e-30,1.8656687406675721e-25,3.0580202062792523e-10,2.1056477609224987e-09,9.79760049132436e-09,0.001303955639335953,3.953212160089767e-12,2.670073955278997e-11,7.961162651732918e-11,0.9999999999990663,0.999998471788327,1.1765364008798327e-24,1.1401028538427032e-29,1.7254361137237593e-27,0.03774900527764102,1.2862769641165955e-35,0.1376228889783419,3.746234536205712e-19,0.004955938100379391,4.342467190274936e-09,7.720176951515322e-20,8.735128037749078e-43,2.6157751637445e-24,8.390509646633265e-33,1.8530895441635908e-35,1.6499112918134174e-09,1.7946807194872765e-43,0.6881465790052298,0.0723579251481324,0.019153522713817647,0.007322552142228001,2.3260905327485057e-42,0.004613368676400701,0.2011794415138947,0.005330431000430721,0.0008252488564709963,6.394083710690379e-39,0.0004791619461079366,1.0435529949382175e-11,0.0005693743870093923,0.015733754744301817,2.303765427114126e-41,7.745234553120615e-30,3.5536846908288744e-22,0.0002458875612612424,4.510586566364835e-23,9.290750588999092e-12,1.0935958108761404e-11,3.619574397707378e-12,1.894410614969306e-12,4.0645877933950635e-12,7.634721851075727e-13,4.71834438843834e-10,2.486112974943548e-13,4.5787437079895976e-17,2.196797130631417e-14,8.265098179563206e-11,5.947113240679377e-10,7.308713373465507e-12,1.1147795579882154e-11,0.02165046503426711,8.317786737421095e-11,2.913613745645806e-12,2.0947069394262353e-11,1.0398620809134588e-15,1.073716610319871e-07,7.215905624470251e-16,0.013823028731812487,1.0663541968819591e-10,3.859694261792861e-13,7.522959907524938e-19,4.0752525467858347e-19,7.670596834125771e-19,8.038887430962933e-11,0.9999999961603709,0.0002213731741719924,2.14676997942573e-42,0.0009511552034743618,1.4244767264036602e-11,1.6332476096568299e-09,2.8868864452863126e-10,3.382548607539405e-05,6.11990707712754e-28,2.2898616216278227e-25,3.1912673935550545e-30,6.911583401170964e-12,4.059438236260144e-14,5.92754563296698e-43,2.8487991492163522e-12,2.4866941731350185e-42,6.676254451870757e-13,7.133741977972066e-13,0.9999917008718563,0.9999682368417624,1.7955570178697534e-19,0.9999990116976007,1.8231134125260633e-19,8.567275719896969e-45,0.9999184422545595,0.9998941223792789,0.9998107441889916,0.9994811773136879,8.532819364266783e-13,6.340595101125486e-13,9.953187556556088e-12,6.77513057161644e-14,0.00965479779089017,6.692566927987055e-14,1.4946953969012775e-43,2.2208142312266083e-13,2.6131356046825503e-39,2.310097390302597e-43,3.04519029207626e-10,0.9999990528661664,0.9999875319294151,0.9999525498770659,7.647755765215247e-44,0.0006621829016458029,0.0026900729954238323,0.01575001140628601,1.4746713193777866e-41,8.121531431995881e-12,0.9999999999996121,6.151711002722193e-13,5.667065232052331e-13,2.2619177867861553e-12,3.3853084567944057e-18,2.2082797493724159e-35,1.6896742056796244e-10,1.3366921217986574e-14,6.053044776570866e-41,1.201460710261269e-12,7.397433773214265e-12,0.0054819255434291015,0.0003016195298383634,1.074495741874782e-11,1.8154456166540565e-14,0.9969296835822932,1.6025744596907522e-35,2.675444315684606e-10,0.00037862805500074744,2.586140772092652e-42,8.250814654023735e-12,6.067142619037968e-11,7.489924707680557e-36,3.679472888242651e-17,6.884707913587492e-24,0.999564549584574,5.978940226968276e-13,0.9994728612604967,2.2057100683059848e-11,1.4942120568078454e-12,1.2506333083408253e-43,1.1155574054344791e-13,1.6387267642337767e-14,8.40739853001228e-14,1.4736709941813715e-11,0.0009376492165613389,0.999965195576219,2.0177889336498974e-18,2.5025435840749864e-18,0.9999999999997955,3.1525263891836902e-18,1.3179728836711243e-43,2.187326273998728e-14,0.00029362453911514226,7.078731210091761e-21,1.6566786046762863e-11,0.00041286728658671885,4.7941676419802166e-14,1.0423890225025622e-11,6.597367771867653e-13,0.9999999927991059,1.292689452166848e-14,2.86521393607688e-14,4.632341765626017e-25,0.00034210580962354734,5.3515937202426035e-12,1.3472735334890448e-11 -circl,rgb,0.5646503681343799,0.9977192971175097,0.016301082784824304,0.9999850511909228,0.033961064095759434,0.46821119101517944,0.37952453401868735,0.3829166684258295,0.3192735568540716,0.23674491036420084,0.008483659124939062,0.012364601425439445,0.0109508523967956,0.9981495604518797,0.9999982822865052,0.9807990682491341,0.0025346996089564886,0.0027020157961701397,0.002509651884895943,0.01003642340307438,0.002296506988058981,0.0030298839960278337,0.4351336768083471,0.004119023731283337,0.5954593053475481,0.0036342806102328583,0.8286687939444226,0.5386799836533587,0.9684733896173913,0.9852919197180745,0.4657368332876236,0.026513434661107078,0.4051091689249327,0.07051911718540244,0.9999859010612967,0.9758951731425284,0.008216052636029484,0.0024305374054161923,0.2803499490597322,0.2552171718238733,0.99996076033186,0.9191929176071404,0.44004288601173397,0.9923230304594407,0.7643746851288048,0.022523067939521423,0.028294790459957433,0.016116377003233536,0.768382791402008,0.028126331564627,0.4608556995942542,0.9999648495194519,0.296601207604702,0.317235219524668,0.9059080238031608,0.3023982962819011,0.15238457093096147,0.13101139355353325,0.012030413849144706,0.010028549293520077,0.008265626444849064,0.002312366861153257,0.9911900622281385,0.8708759389416852,0.9770640815381629,0.004487079729881203,0.002899072905767978,0.2803661825175656,0.3585206573607966,0.34103539065456034,0.35062610416972706,0.9999647234965567,0.9999423373971859,0.2677578718563186,0.993974602861623,0.8973771012096179,0.00337009093647117,0.004067319697667193,0.0031139769589931003,0.11599322141818787,0.7691756807402768,0.1293777433390096,0.0055517346618042486,0.09069665243200953,0.36703955216631345,0.004635689588660212,0.9730265180614213,0.0023907503951547276,0.30943157759554657,0.7692375704164898,0.375456987688383,0.9962571737672299,0.186513930702655,0.13274637021188404,0.10777773036585496,0.09603527679846331,0.9546124648794826,0.08994441165058883,0.13851547496444738,0.08913343408501634,0.07136844055661522,0.22861472156610652,0.24257799226261392,0.9999802298755398,0.0720026640893969,0.4732297309039749,0.6656807856118486,0.0038984538838030126,0.004699809792453692,0.2295505356231052,0.0029034014572971454,0.9999705311101261,0.9999928191110065,0.015730548354316875,0.009917179639376139,0.009374138376563963,0.11228297090621446,0.01187025614135525,0.012300064120028579,0.00854015867586081,0.02615644514567741,0.012042793157283262,0.03871859302056656,0.9999344476688969,0.01553760877553138,0.11763942345505028,0.012443512232636011,0.116619723768682,0.01454682235056723,0.019693885903286204,0.016182148384339283,0.04624546086000195,0.4813859460761413,0.27110770040207705,0.10286504078326499,0.002421723238775132,0.002447790194064088,0.002527908187074698,0.021385649069494115,0.9856428632456827,0.9999803539436781,0.9870586438969875,0.34361954914869025,0.9998855398638291,0.012574678145836623,0.00867927214312744,0.0357483114659308,0.0032739691956056504,0.0030931535576753616,0.004487837351133013,0.9999248301773862,0.008471266954862312,0.9688099223090124,0.008438688507842042,0.9083247193301487,0.010393645151081342,0.012100765798814552,0.7352377540525076,0.6160976309694773,0.002339827713762081,0.8447507794519574,0.0023576732196680292,0.962864859332689,0.6451937234485234,0.6725763571707979,0.6993739224383598,0.6095710380999024,0.011240594465718432,0.009928565187193842,0.9999777800349053,0.007941356484472976,0.46000479897454666,0.012780500059343034,0.9869393349599432,0.00821426423907007,0.3885435267613725,0.9968176291628191,0.9999955409009049,0.8699402381143865,0.7250269589701781,0.6680466203851958,0.9836235279548484,0.9999845196793204,0.41864165876790316,0.47242609008223374,0.8600789073819787,0.999338693681553,0.9966428597040583,0.009932765556712,0.011755398794418887,0.008217868035367415,0.03021240669294479,0.6050297284088603,0.00804988030407998,0.018742338861688444,0.7881009165537888,0.09733621254335072,0.012930331575000753,0.42445520905718076,0.3012632925990463,0.9999197100938376,0.008301493267998184,0.5362827655362559,0.8151091950505519,0.011768423685409788,0.27133923280479555,0.9008040383016854,0.9999560542177626,0.9999977170047853,0.727704247756304,0.01649961296035598,0.0025789473480703168,0.5817328666528658,0.011078265231808763,0.6912830782849939,0.012220398415943549,0.0141375041089876,0.9952831462569803,0.01862005551264211,0.030605049072669362,0.03462478202779556,0.9998976474342429,0.34204188446366923,0.8362715426687805,0.002746561294554296,0.0028206135865161304,0.9977091203815689,0.002663722216242845,0.9954386680996551,0.02604821602128194,0.9999954220485271,0.010197906506977173,0.9999307611591824,0.2518470151775907,0.027240117616368624,0.01554480914480744,0.015116624874111249,0.9852346806119677,0.024694086419548827,0.010517379693931133,0.002831274251876304,0.999974439899001,0.007628245677317122,0.008822337042847494 -cob,rgb,5.778730823424984e-29,3.331980582970564e-08,0.9291210986846918,3.101018585653219e-25,0.37727490375303163,2.037467823209686e-08,2.527849617020667e-28,1.4763871596635176e-12,1.8864801683275325e-11,2.2790557209625463e-11,0.9974599122465869,0.9918958954166062,0.9939329609590172,2.1370049862985067e-08,1.1971407578818992e-28,7.5372755723992e-42,0.7161989184612315,0.8336546335444774,0.7165978818926898,0.8605934561266595,0.11772826632564165,1.0765296326149844e-06,1.5118600937286114e-08,1.0364445266007654e-08,0.00012688462490229607,0.012807010510830242,7.438911860417669e-33,0.0002129634802037266,3.5541885584310413e-40,2.754694713994359e-05,2.1816336514625325e-08,0.8624717073551998,4.263965088138592e-08,5.606560547486607e-11,2.0701793771645664e-21,3.3491048246654847e-41,0.9546420547556193,0.0002342641096335187,5.129971750380799e-05,1.1999857190485252e-06,7.885978179677547e-23,0.004608005451204193,4.5254178975441686e-08,3.73863067527496e-06,9.595441829166001e-34,0.9836216406303475,0.8891281868490829,0.9295634644628556,1.1914284714287319e-33,0.0001307977191540205,2.017846192396473e-08,4.007089101862517e-23,9.413508852359235e-12,1.2142357493822722e-07,5.534026708945352e-37,6.806317436187178e-07,0.9718553142016018,0.9831076863863989,0.9929067985640402,0.9953208639270952,0.9973543657343074,0.03894278743868584,5.435918703085883e-44,0.0190512175853961,0.00010824441988205274,2.689940181680813e-09,0.0010004914137709377,5.6834734664631505e-12,2.168985920995421e-12,1.0777439363786315e-11,8.483109760829178e-08,1.7957895829913052e-23,4.2089304248627217e-22,3.333533302614491e-12,1.9975865798126065e-07,0.009193995897813384,0.0037855490801845613,9.754736073857002e-09,6.117604776458354e-07,0.9879996699887874,1.026062124006633e-31,0.9792547059707323,4.264559603271237e-05,0.9931812325191953,2.8696301900400974e-12,7.108998135222664e-05,1.0612545810315086e-40,0.0002104980387959551,4.440454189967237e-25,1.1890286436929539e-31,1.1406651009410155e-12,3.431414769387965e-46,0.945236850089467,0.9853748047251643,0.9902256472588018,0.9924612191161793,4.05663244510984e-39,0.9933005299031845,0.9759558931169906,0.9930663547202504,0.9955035386359852,4.4254430874623046e-26,1.3921895135950088e-06,2.1779227217623806e-24,0.9957057963473221,2.199902406558862e-08,2.6389023964847833e-32,2.1925210940755423e-08,0.07296541707933797,1.2971955021798323e-06,0.03703577336179171,1.2330489059268287e-23,2.3166525026360713e-26,0.9935492108238133,0.9967421595970634,0.9974866285370775,1.394831855281053e-10,0.9985832802045427,0.9908212190427503,0.888465392064997,0.8416185935708002,0.9982377128733062,5.055520042200181e-05,3.90398551444825e-22,0.9955900751511302,0.06668536383772425,0.9981778178498317,2.6396212962481276e-10,0.00783454850923634,4.787391651176616e-07,0.9702203024994291,8.179367515882733e-10,1.567708927167939e-08,3.661777281652319e-12,1.678853767779364e-10,0.6349220680102615,0.6673019322099332,0.7509991568201582,0.001037663770440451,2.605309078641428e-05,6.5364570173969644e-21,1.4715795533902744e-42,8.015200526222242e-08,6.510372286335165e-21,0.6665042857064967,0.9603275701825676,0.8711646092396373,2.604461034493e-07,0.0012388542543244302,2.5417644776552943e-09,6.988679458110693e-22,0.004598141088786093,2.365998615361381e-40,0.9975227842649708,4.59939931188638e-37,0.995255939396398,0.993787812686276,0.00011308123434776293,0.00359337691199925,0.4902689823125432,6.12190984823946e-06,0.5267280314719737,2.2090247448693685e-40,0.00017517021824276798,4.1021189816769655e-05,6.9679749180525295e-06,5.2490689313245746e-05,0.9949270600205188,0.9955443115293271,3.594931640814035e-24,0.011936323036381855,2.064056417173571e-08,0.00023811288906998111,6.529417211763379e-43,0.023163267830327888,1.9216302686133854e-28,1.4123375524048254e-46,1.4172325415930963e-26,1.1055701823462907e-06,9.649932662567281e-05,0.00015439269518966736,2.1684298833958653e-42,3.694674968365852e-21,2.1682467119487747e-08,2.2513295557114956e-08,1.6110559281219926e-35,1.1285318176211236e-17,8.507100009817834e-08,0.9955005504278389,0.9936861534348219,0.9974491174508666,5.526905452866961e-10,1.6071903390460224e-29,0.9736415572854565,3.996880942564612e-06,6.080600043660093e-34,5.500074995585412e-10,0.9965421152777054,3.400916354150157e-08,1.1551183793449013e-07,1.1688908426950122e-21,0.0029267419913803928,6.885899785975211e-05,2.0035804120850945e-32,0.9985256976554244,3.903696274654947e-07,8.072799369488248e-37,6.954735016872271e-23,3.032795198406164e-28,3.2314390616486008e-31,1.9157493886581612e-07,0.0001069937635763927,0.0001796251123976444,0.9944791357034816,2.8123888552614857e-06,0.9976330359128829,0.9932110540961485,1.2256864895518283e-45,0.9657735475794006,0.7404428355998585,0.7951389603405066,4.02952274905956e-21,8.311143940530789e-08,0.03894902663941973,0.8585170606948895,0.8764581660342472,3.37324079439461e-08,0.8523649025232912,1.0185741595039534e-45,0.8430768921885716,1.1079299905251771e-23,3.368243207724433e-08,7.501850807152685e-22,8.576927193006267e-07,0.867248870538608,0.9954952374587368,0.9895346233607341,2.8412788556880656e-05,5.109348193714698e-07,0.0005944943792540261,1.0908682469960429e-05,2.5528773237120746e-20,0.997806326056786,0.9980628501071437 -corn,rgb,5.778730823424984e-29,3.331980582970564e-08,0.9291210986846918,3.101018585653219e-25,0.37727490375303163,2.037467823209686e-08,2.527849617020667e-28,1.4763871596635176e-12,1.8864801683275325e-11,2.2790557209625463e-11,0.9974599122465869,0.9918958954166062,0.9939329609590172,2.1370049862985067e-08,1.1971407578818992e-28,7.5372755723992e-42,0.7161989184612315,0.8336546335444774,0.7165978818926898,0.8605934561266595,0.11772826632564165,1.0765296326149844e-06,1.5118600937286114e-08,1.0364445266007654e-08,0.00012688462490229607,0.012807010510830242,7.438911860417669e-33,0.0002129634802037266,3.5541885584310413e-40,2.754694713994359e-05,2.1816336514625325e-08,0.8624717073551998,4.263965088138592e-08,5.606560547486607e-11,2.0701793771645664e-21,3.3491048246654847e-41,0.9546420547556193,0.0002342641096335187,5.129971750380799e-05,1.1999857190485252e-06,7.885978179677547e-23,0.004608005451204193,4.5254178975441686e-08,3.73863067527496e-06,9.595441829166001e-34,0.9836216406303475,0.8891281868490829,0.9295634644628556,1.1914284714287319e-33,0.0001307977191540205,2.017846192396473e-08,4.007089101862517e-23,9.413508852359235e-12,1.2142357493822722e-07,5.534026708945352e-37,6.806317436187178e-07,0.9718553142016018,0.9831076863863989,0.9929067985640402,0.9953208639270952,0.9973543657343074,0.03894278743868584,5.435918703085883e-44,0.0190512175853961,0.00010824441988205274,2.689940181680813e-09,0.0010004914137709377,5.6834734664631505e-12,2.168985920995421e-12,1.0777439363786315e-11,8.483109760829178e-08,1.7957895829913052e-23,4.2089304248627217e-22,3.333533302614491e-12,1.9975865798126065e-07,0.009193995897813384,0.0037855490801845613,9.754736073857002e-09,6.117604776458354e-07,0.9879996699887874,1.026062124006633e-31,0.9792547059707323,4.264559603271237e-05,0.9931812325191953,2.8696301900400974e-12,7.108998135222664e-05,1.0612545810315086e-40,0.0002104980387959551,4.440454189967237e-25,1.1890286436929539e-31,1.1406651009410155e-12,3.431414769387965e-46,0.945236850089467,0.9853748047251643,0.9902256472588018,0.9924612191161793,4.05663244510984e-39,0.9933005299031845,0.9759558931169906,0.9930663547202504,0.9955035386359852,4.4254430874623046e-26,1.3921895135950088e-06,2.1779227217623806e-24,0.9957057963473221,2.199902406558862e-08,2.6389023964847833e-32,2.1925210940755423e-08,0.07296541707933797,1.2971955021798323e-06,0.03703577336179171,1.2330489059268287e-23,2.3166525026360713e-26,0.9935492108238133,0.9967421595970634,0.9974866285370775,1.394831855281053e-10,0.9985832802045427,0.9908212190427503,0.888465392064997,0.8416185935708002,0.9982377128733062,5.055520042200181e-05,3.90398551444825e-22,0.9955900751511302,0.06668536383772425,0.9981778178498317,2.6396212962481276e-10,0.00783454850923634,4.787391651176616e-07,0.9702203024994291,8.179367515882733e-10,1.567708927167939e-08,3.661777281652319e-12,1.678853767779364e-10,0.6349220680102615,0.6673019322099332,0.7509991568201582,0.001037663770440451,2.605309078641428e-05,6.5364570173969644e-21,1.4715795533902744e-42,8.015200526222242e-08,6.510372286335165e-21,0.6665042857064967,0.9603275701825676,0.8711646092396373,2.604461034493e-07,0.0012388542543244302,2.5417644776552943e-09,6.988679458110693e-22,0.004598141088786093,2.365998615361381e-40,0.9975227842649708,4.59939931188638e-37,0.995255939396398,0.993787812686276,0.00011308123434776293,0.00359337691199925,0.4902689823125432,6.12190984823946e-06,0.5267280314719737,2.2090247448693685e-40,0.00017517021824276798,4.1021189816769655e-05,6.9679749180525295e-06,5.2490689313245746e-05,0.9949270600205188,0.9955443115293271,3.594931640814035e-24,0.011936323036381855,2.064056417173571e-08,0.00023811288906998111,6.529417211763379e-43,0.023163267830327888,1.9216302686133854e-28,1.4123375524048254e-46,1.4172325415930963e-26,1.1055701823462907e-06,9.649932662567281e-05,0.00015439269518966736,2.1684298833958653e-42,3.694674968365852e-21,2.1682467119487747e-08,2.2513295557114956e-08,1.6110559281219926e-35,1.1285318176211236e-17,8.507100009817834e-08,0.9955005504278389,0.9936861534348219,0.9974491174508666,5.526905452866961e-10,1.6071903390460224e-29,0.9736415572854565,3.996880942564612e-06,6.080600043660093e-34,5.500074995585412e-10,0.9965421152777054,3.400916354150157e-08,1.1551183793449013e-07,1.1688908426950122e-21,0.0029267419913803928,6.885899785975211e-05,2.0035804120850945e-32,0.9985256976554244,3.903696274654947e-07,8.072799369488248e-37,6.954735016872271e-23,3.032795198406164e-28,3.2314390616486008e-31,1.9157493886581612e-07,0.0001069937635763927,0.0001796251123976444,0.9944791357034816,2.8123888552614857e-06,0.9976330359128829,0.9932110540961485,1.2256864895518283e-45,0.9657735475794006,0.7404428355998585,0.7951389603405066,4.02952274905956e-21,8.311143940530789e-08,0.03894902663941973,0.8585170606948895,0.8764581660342472,3.37324079439461e-08,0.8523649025232912,1.0185741595039534e-45,0.8430768921885716,1.1079299905251771e-23,3.368243207724433e-08,7.501850807152685e-22,8.576927193006267e-07,0.867248870538608,0.9954952374587368,0.9895346233607341,2.8412788556880656e-05,5.109348193714698e-07,0.0005944943792540261,1.0908682469960429e-05,2.5528773237120746e-20,0.997806326056786,0.9980628501071437 -cube,rgb,0.9997528015434889,0.9999999859010089,1.1287865213557765e-05,0.9999999999911537,4.710371813144048e-05,0.9970130111970157,0.9936602426313927,0.9973386811340192,0.9928163219894581,0.9772222503670676,6.193968855452293e-06,8.834213423317353e-06,7.302598941549718e-06,0.9999999902618434,0.9999999999999698,0.9999999924441983,5.245092580419792e-07,5.612734268390248e-07,5.462937019567833e-07,0.00010787484937669791,9.94314932795524e-07,3.526683669803794e-06,0.9959681767616143,5.8009632745594775e-06,0.9959569298076114,5.575950905792886e-07,0.9999960810799738,0.992399732919242,0.9999999687832194,0.9999932034727486,0.9969078705718756,3.244828914189265e-05,0.993655814207184,0.3967911764719502,0.9999999999957152,0.9999999843387668,4.455451838938057e-05,1.7435159164731925e-06,0.9284225855358053,0.9441488125139664,0.9999999998991631,0.9992228769618244,0.9955521052198361,0.9999983350054562,0.9999604350739923,3.10119793316198e-05,3.92237128077781e-05,1.1007998647423643e-05,0.9999676461504236,0.011331826927194533,0.9967844892516938,0.9999999999233538,0.9909324599461525,0.980714668258196,0.9999987003006706,0.971009587147314,0.05015780989420923,0.027094235790585987,8.593463265452354e-06,6.553212580822197e-06,5.790806882470916e-06,1.2118798012702851e-06,0.9999999993739233,0.996488205244362,0.9999735427179466,1.2894716354307255e-05,5.395704075701274e-07,0.9891650048327764,0.9963271408367819,0.9947844621552437,0.9874420892627105,0.9999999999199489,0.9999999997288742,0.9875972876141076,0.999999911070503,0.9985768761042755,5.448123469779067e-07,7.606112265637711e-06,3.6168925482821794e-06,0.016977738875434505,0.9999876059403422,0.031094653871807088,7.0466750255602e-05,0.0070186453181638984,0.9966037578091149,3.541320449158891e-05,0.9999999801623323,1.467760791790115e-06,0.9940134397581304,0.999987873074784,0.9971559562915556,0.9999999999602893,0.10690497900391235,0.024032524463046975,0.01264383149837253,0.008361217535523496,0.9999998969262762,0.00681266716467468,0.03854262687890952,0.007060211938964059,0.0032735607143986314,0.9329499647626488,0.9329132320061292,0.9999999999823039,0.0029950905860308963,0.9971315397967652,0.9998067683274832,4.947415973130616e-06,7.658187801934653e-07,0.9209555108623393,4.303635939699049e-07,0.9999999999504579,0.9999999999987046,1.621696322009227e-05,7.2989089650430605e-06,7.4107782738628205e-06,0.7403833947748302,2.012587450173191e-05,8.48233752150873e-06,2.682213374805992e-06,3.079578635896591e-05,1.5264846003442622e-05,0.03178761821512508,0.9999999996125122,1.7623559817501695e-05,0.18869908703185684,1.5924612914822647e-05,0.7550525688509656,0.0009824157877371489,0.0063523778829981175,0.00027349227148530203,0.12619178577270776,0.9974798033224022,0.9880882121473683,0.6786430038083624,6.829932042869063e-07,5.722408053751745e-07,5.75658832902565e-07,0.003971588903320293,0.9999927845612678,0.999999999989678,0.9999999983241692,0.9865172345776262,0.9999999984111654,0.0002627632023630471,5.062350136542931e-05,0.0034033421003263247,4.197744352676448e-06,5.486658230114211e-07,1.0559544979874915e-05,0.9999999994491486,0.00019963269674363072,0.9999999667024946,6.242513201797405e-06,0.9999988153285383,7.026495698911424e-06,9.010678068095887e-06,0.9990061897291931,0.9920795293368806,6.129346739407942e-07,0.9998837117126337,5.851592976152775e-07,0.9999999064007373,0.9972592830041147,0.9985020862342188,0.9992271485734988,0.997084081769162,8.127143563162425e-06,6.5223706881417925e-06,0.9999999999760711,0.00014569385346149054,0.9967463606191512,0.0009867830474202728,0.999999997813676,0.0001492005171245753,0.9943938037884756,0.9999999999767,0.9999999999996487,0.9999498852938606,0.9989341063022944,0.9978650754114039,0.9999999951375971,0.999999999994643,0.9949753911156436,0.9970987801442666,0.9999952422966547,0.9999998607200841,0.9999999677411292,6.507139866914823e-06,8.419808766062127e-06,5.87459186953001e-06,0.03533126981448911,0.9998512271425387,3.5981855047030954e-05,0.004658785618420619,0.9999782696595908,0.6183397486541617,1.2549821762405202e-05,0.9949763176252823,0.976839264194324,0.9999999993541617,0.00019660674583975491,0.99390919684448,0.9999950210993086,1.796669452318779e-05,0.9607721853488272,0.9999984298831285,0.9999999998613736,0.9999999999999358,0.9999739281884347,0.0038016334654651734,2.4976798707421604e-06,0.9950397232350758,7.685270894474047e-06,0.9992985406638967,1.3052476039083845e-05,1.248580498943764e-05,0.9999999999147942,1.7097890351956827e-05,4.2127599351825635e-05,5.9172282673706276e-05,0.9999999988068577,0.9862087715214514,0.9923259611906822,5.807709244486456e-07,5.858062414738674e-07,0.999999985752885,6.345757826216121e-07,0.9999999999237392,3.052740135445273e-05,0.9999999999997564,0.0007881991930430047,0.9999999995621296,0.9442131961491899,3.482673248080234e-05,1.7522376950693013e-05,1.313077259157687e-05,0.9999912570455562,0.012842730222066463,0.0004900335281025399,3.6493775298565674e-06,0.9999999999801596,6.254119901100059e-06,8.225484277820075e-06 -cuboid,rgb,0.5026109660992654,0.8609825551608022,0.0408251110777068,0.5237263478764108,0.0401506843756047,0.700807931671608,0.3038774012309549,0.6936843074667642,0.6611649272247782,0.6121926211136323,0.05577093157152042,0.04806954297459461,0.048728917031034095,0.860667901720334,0.6833414603904437,0.7136274792054528,0.03828155249169978,0.03857945639639612,0.039214682702619914,0.13696285072908798,0.048554285450453254,0.046131452411225495,0.6908013983423471,0.03941527457318944,0.6586412457731312,0.025583492292364913,0.6403567089702432,0.6369001982736364,0.6874499789032024,0.6649141244279775,0.6996018932128872,0.04420942580371571,0.6743952286410876,0.41544162534033074,0.6638679086701339,0.6923699455345739,0.11486852494141525,0.04779766584223775,0.5699168393793071,0.5884827071522025,0.47738584143592605,0.5122708328999214,0.6867058786261115,0.6821601571017685,0.4438911136344144,0.052409835814413525,0.04611462840488493,0.04072652344548787,0.4637166335529072,0.2853947691205677,0.6983475601316087,0.48191663703115933,0.6495272596868187,0.632671196734332,0.5588779053015852,0.6154548498933865,0.24728714973211194,0.22266820725585307,0.04863922843000621,0.04990530223550264,0.0551294627276706,0.050444528114234985,0.7807802167057318,0.4523735173762829,0.6129008224658927,0.049679617512808055,0.02706005556419056,0.6403174130618717,0.6821428995544295,0.6726228306252556,0.6491462509030029,0.47076812306337434,0.4523071302156898,0.6325629351498746,0.8549186049939527,0.4988150319729659,0.025603845629382217,0.04447014797586594,0.04490021959600472,0.20608261118486249,0.6056924263150862,0.2341677288098081,0.1172574700101134,0.1786803382428823,0.6860375752549821,0.10214984129482817,0.6964059149272614,0.04481479788072433,0.42086586964365874,0.6091486600600159,0.6903441493972232,0.8440953607560435,0.2785546338767882,0.21249967867463948,0.19564147473611151,0.18295897429683594,0.6500951569082594,0.17779945882322798,0.2407127479791432,0.18099061053245652,0.1596087638581492,0.23254031433432476,0.5806446421919728,0.514600672957865,0.15374817244045694,0.702094859731243,0.3876300991666986,0.0392577578790525,0.026042979151527666,0.5736647049739627,0.027795819417890354,0.488020290833572,0.5803676881979949,0.05288400645635708,0.05323737481187256,0.05615355911090423,0.49245240625837045,0.0735604287466672,0.04723104799139875,0.0342808682966631,0.043420523212178964,0.06459879035171039,0.32629383440002674,0.43554194647838607,0.05591339643631923,0.38574899947073127,0.06422207269283228,0.4989485978126669,0.2022952312056042,0.2477834253362303,0.15197149785714054,0.3557626104266646,0.7066301007804662,0.6346757389189419,0.4786225846976837,0.043596682126064865,0.040365523369055994,0.040128830796964506,0.2481718362261403,0.6546499810758227,0.6391386849097328,0.7739979456978342,0.646513560666187,0.4055632889331626,0.16083742606115448,0.11707324277342292,0.2234215909985233,0.044881774836221716,0.026241349785777867,0.045604383956608235,0.42663205985312674,0.1543788250057699,0.6764909731250053,0.05620106371065026,0.5622607027844286,0.0501118474688744,0.04963412971606577,0.6937359706859428,0.6024899935978446,0.04181062128840029,0.7645558712868797,0.040989587528476805,0.6011504993626147,0.6657351927313456,0.6935818194038116,0.7224905400164834,0.6744219954043096,0.05035082838807947,0.05023250720479442,0.5067188471078163,0.14693984239358285,0.6979356250065568,0.19794705383798816,0.7488238027973817,0.1481706782395195,0.30759052957737276,0.8551826333029023,0.631793530794909,0.7925160840462254,0.6938749197947914,0.6730739492516234,0.7205730932489579,0.6613976943276059,0.6829855636535553,0.701699457368247,0.5262998529010947,0.30304207681513307,0.8544108472943315,0.05015258474754293,0.04919077193131104,0.055745535396675656,0.29022047519415334,0.5174446744558371,0.10896299036038479,0.2428872435582105,0.48106552127426017,0.47090462925085275,0.055517585867596905,0.682736206839332,0.6255489506727017,0.4254638034241177,0.15333213705000115,0.6518378840695631,0.6393828045357594,0.07055027200281554,0.6039119703125009,0.5519575335938357,0.4616134863774018,0.6622984060182622,0.5745391204589403,0.22434013667824082,0.051964550345384504,0.6501518922277769,0.049542429554824324,0.7300544114915997,0.05938387754680927,0.05095179438822628,0.8269544116750505,0.045470917835357165,0.04343648614917299,0.04639379965036614,0.4126057688468087,0.6456443423945887,0.42262786231357086,0.03895217393814479,0.038587850049443574,0.8608661054687968,0.041225944643538834,0.8295394180478696,0.043403096878435694,0.7218307182452693,0.16166725692799958,0.4375815623521302,0.5888389491873472,0.04474773812894002,0.05572286720070458,0.048971936904252555,0.640733156368997,0.27661733967445246,0.17741607468203938,0.05293987005661196,0.6272197464844964,0.0604716734830761,0.061619287193288026 -cucumb,rgb,1.8794142983478753e-23,0.9999765755802011,0.23344954252683184,1.5579173293902938e-07,0.09834132728949375,0.0010468264087291643,5.216885642829821e-24,4.074571177787857e-08,2.0179878305410365e-07,6.825126531093754e-08,0.6607714597188912,0.5967777765252766,0.5906032459004432,0.9999791061784445,4.015369656259186e-08,2.130596631690949e-31,0.0004402836612180292,0.0010165270824125322,0.0004395420900870894,0.11684837413083393,2.4790934548886243e-05,5.825849063673085e-10,0.00053126826119261,1.2633741020474603e-11,0.9398809446005819,4.779739233817195e-06,1.672125587237659e-25,0.9283416562363109,2.0990270073794596e-30,0.9999869676542389,0.001084118056698162,0.36994850962750386,0.0009804832702799008,2.036390622016557e-09,0.0015188173034903563,4.486723937989475e-31,0.17608217530195436,6.153255531788968e-08,0.12724324499798212,0.002954703615342283,2.2548424257500443e-06,0.9999834965679472,0.001585701627646813,0.9999848989794844,3.986301009422494e-27,0.798186859248452,0.47973496972687213,0.22884217447074826,5.5946215045625356e-27,0.00014099066084853203,0.0009502715574825497,1.5868566476879754e-06,7.459461812231242e-08,0.0008444857569259119,7.592557597207441e-29,0.003483205853794157,0.999583987792218,0.9995509089813425,0.6131503685175588,0.6009783668754884,0.6336541999684534,8.26844192284204e-06,1.9519219681924728e-32,0.9999800297023265,0.9999861821988626,5.327456947582733e-12,2.344064683648767e-07,3.5956959018694976e-08,4.288534971021371e-08,1.5897370957577703e-07,0.0009414387339241117,6.954505117946255e-07,3.8132873507012214e-06,1.76648077143145e-08,0.9999449181321364,0.9999824512283955,1.1983931279534158e-06,1.289874377848321e-11,3.533713278289265e-10,0.9994963957096182,7.011995634586557e-25,0.9994614630934127,2.452585855519174e-07,0.9993059664926763,6.287833131928763e-08,2.1824952767441633e-07,1.029950473707556e-30,5.003533012086121e-08,4.997140164360997e-21,8.198388224334907e-25,2.883048341929225e-08,2.001476645914797e-33,0.9996264613233725,0.9996047195730129,0.9994581974998062,0.9993672239398043,7.076893469672303e-30,0.9992975565608898,0.9995086416515542,0.9992689024291652,0.9989691639036563,8.391476792902701e-23,0.0027791197632106384,4.788043695914979e-07,0.9989995221503128,0.0011945041841778313,2.235501339616551e-26,2.2483869175024523e-11,5.4377658178886085e-05,0.002097370881081785,8.196609850331299e-06,8.219746538771798e-07,1.0529199278023475e-07,0.7925343651962012,0.688318769287229,0.7202910994753222,2.4580229062319777e-08,0.91532734998276,0.5598014555856915,0.02826245625713348,0.3217740187027158,0.8892116575149549,0.0001581434254955151,2.389185365736841e-06,0.8493818616326808,0.8334180189316002,0.893892766854396,5.2099346079281695e-08,0.0008550667350709819,2.0253951087574107e-07,0.7220620848834962,6.7511470556397944e-09,0.0009561535937883138,2.0385388381691163e-08,2.166812639453377e-08,0.0003078468514846201,0.0003381997133978458,0.0005426034362677091,0.0004236342862067803,0.9999865594770913,0.0017630163752005259,1.6589180402117838e-31,0.000813891970443879,7.5997110665509115e-06,0.08707258210884365,0.22363831338051493,0.8781944928869232,1.7640622104179467e-10,3.319661100363387e-07,4.656846582936761e-12,2.8420007266862995e-06,9.140541552552902e-05,1.3936839785118448e-30,0.6647007214643448,6.926724596627156e-29,0.6210939011035742,0.6511277152305339,0.988290322283782,0.9975128616880311,0.00015269018966364813,0.9756694435083055,0.00017605956156792693,6.0813251003358785e-31,0.9744285992898934,0.9351761575687701,0.8029607066785499,0.8921831141717899,0.6547418780202297,0.6075003662114898,5.572723674303622e-07,0.00018543474656664515,0.0009609767976006609,2.012288691506503e-05,6.523183175585047e-32,0.00039221751289875574,4.490084418534622e-24,1.4015861731520745e-33,2.74787966767445e-07,0.9382000834484738,0.9844467170669372,0.9783771633585517,1.0050140222621182e-31,0.0020622148167917876,0.0006112795526310767,0.0012092027806502885,5.453058650643652e-28,7.091302828938001e-05,0.9999727173287124,0.6051440789809664,0.6279458909257412,0.640731702963173,1.115997094431353e-09,8.876314952531418e-24,0.2485812826589101,1.3485146527430367e-06,4.186037751094498e-27,5.65497610787158e-08,0.8135772315659007,0.0010035633981782287,0.0006445502636089069,3.91815364418504e-06,5.551817192913154e-05,0.8180477225122565,3.4090414770189673e-25,0.9071242518201227,0.0013146510116928854,9.158640183275505e-29,1.404808538511339e-06,4.3135988503574355e-08,1.0658235866019412e-24,4.652339662556219e-08,3.6429832778956144e-08,0.9480527882554466,0.6234436308804859,0.6135907145924426,0.8526508406635187,0.7257256122405459,3.345411644305685e-33,0.5013388845135744,0.2838937424825364,0.4418530100415764,6.56557342689778e-06,0.0008248628116339145,0.999977452184445,0.0012874259280870664,0.0015907232703236843,0.9999765614581095,0.0011940765739670046,3.104013325747076e-33,0.3215871466360054,0.00023206672444962937,1.6947509022374268e-09,3.923657932905285e-06,0.0020434670624946863,0.3991011021403241,0.8464602881213763,0.6662004579819809,0.9999859439392728,4.503160340285535e-07,2.5850730834847902e-05,5.207084930423388e-09,0.00316060062240629,0.6470801554435548,0.7552257333865637 -cut,rgb,0.21956895754914557,0.9995646411307783,0.003974375430035187,0.9999973970904196,0.009503314719054445,0.40912999691273877,0.08952589068983555,0.25432122720422234,0.19964113776764766,0.12508325885802923,0.0019689834956086827,0.0030287676471397185,0.00261532040424059,0.9996628546635998,0.9999998182315382,0.9413804436436314,0.0003429654103103465,0.0003796358404918146,0.00033994971424568254,0.0025465759075622,0.0002902006360067484,0.00029999796825173723,0.36498769731420433,0.00038314512318202203,0.6210885117488866,0.0004435800803207125,0.5653994474310413,0.5491182327353038,0.9011091411635683,0.9952403816849963,0.40628724632263663,0.0074274728707230285,0.3328315268274169,0.02092825613106704,0.9999982565498249,0.9243597002320215,0.001971536024278527,0.0002626703325041219,0.21606351224751663,0.17628560602300652,0.9999920618470152,0.9574449230437239,0.37711012359651735,0.9978548812151087,0.39504637764007083,0.0065542487966678544,0.008193487692010722,0.003915325336316448,0.40626962937610234,0.008370545739921954,0.3995213641072987,0.9999929979508961,0.17490571812648945,0.23417457526652802,0.6978535823150958,0.2246442210685134,0.10590682776423614,0.08583579017019687,0.0029395368679737757,0.002360150646476503,0.001898408783686744,0.00028533498375966557,0.9760946170537922,0.9202773228774339,0.9915534999590392,0.0004281457536558083,0.000312663441627902,0.15813475727281487,0.23014255624357133,0.2193158781459653,0.27066071792677754,0.999992763422212,0.9999873851447579,0.14520520453403551,0.998545052489919,0.9419842682705095,0.000389656550219948,0.00038372367308478863,0.0003047267288325493,0.07248407965247036,0.458588230849583,0.08474101553256892,0.0008415268880219699,0.05156837461689885,0.2404735637311956,0.0006607382426003092,0.9160063437296363,0.0002537844586082009,0.08023166078253659,0.4602328502724745,0.2449807745435744,0.9913375546312604,0.13993718783942552,0.0869508569554301,0.06541058952757603,0.05575336940547396,0.8537287224923114,0.05097669699308851,0.093023189338198,0.050479618859044686,0.03714246849785052,0.040528336579261096,0.16393669959276874,0.999996447193117,0.03737968779508675,0.41610349829391197,0.2694153495587923,0.00036399974965688843,0.0006494442575687892,0.15084800779900367,0.0003468691567320261,0.9999942545096382,0.9999989459188967,0.004224939553720041,0.002373794978605814,0.0022423072150122274,0.042320432400704815,0.0032270861402535133,0.0029898119655071198,0.001654881987664381,0.007244366978506088,0.0031994776093799988,0.012774378932709529,0.9999849492471298,0.004238658194573343,0.0703264509569932,0.0033314236253185626,0.045502858775510364,0.0036987915792894774,0.004400734712252881,0.005026297069153414,0.01230503038856662,0.42490187268752994,0.14842301988680578,0.03738480593854707,0.00032702264445589224,0.0003287251679292476,0.00034602116236379007,0.006012672051757643,0.9953473256142836,0.9999973716544173,0.9642353529653261,0.26228487745510115,0.9999709730295273,0.0034024008305835237,0.002130769758041609,0.01452145487548391,0.0003175962007373906,0.000340066159131477,0.0004217247035227499,0.9999822461944934,0.0017252893157225931,0.9007082854935534,0.001959310292102119,0.7049448692474636,0.002472271496853604,0.0029820491737430673,0.7905056579121531,0.6586520462514714,0.0003059267852285604,0.8971482255825732,0.00030914641180440795,0.8723424184791502,0.6852870800315607,0.714006557017991,0.7404308217102883,0.6357234553331744,0.0027323830674448753,0.0023353790020605824,0.9999959095945701,0.0016144179738321728,0.3985437610941579,0.0028377150496419,0.9622901942816486,0.0017194769570605876,0.093188990997049,0.9928814868627329,0.999999438418245,0.9175245812191308,0.7785982245693447,0.7129223661399552,0.9505204254627698,0.9999980620077006,0.3461572962087543,0.41518125776190473,0.5824975169266301,0.9997595389156148,0.9992971524773164,0.0023354395183146077,0.0028672098522825548,0.0018895464820712375,0.006639144022802489,0.2534311136218223,0.0019317401220826304,0.004349150847384938,0.4401756450417722,0.035573911496613445,0.0033604999482642183,0.3558116213131898,0.21642809274826255,0.9999809345203514,0.0016585754667189357,0.5410454451791793,0.5425022400971581,0.0031660784813821972,0.18914772052372877,0.683105399292178,0.9999907027451735,0.9999997410684891,0.392347898745692,0.003345776022876441,0.00028130592566943024,0.6047204463438629,0.002668503373933555,0.7272848762187352,0.003190720870231048,0.003652733124371591,0.9885443484631925,0.004903705909775014,0.008749032161212157,0.010477860935021654,0.9999746310654154,0.2606293537262668,0.8900784242177018,0.00039027117814889573,0.00040490255249316754,0.9995622280963286,0.00037815926325972677,0.9889987778758573,0.007206935681396838,0.9999995440328374,0.0016108126480132532,0.9999841578641473,0.1717505062211157,0.007717487631649692,0.0042364386542648865,0.003912071755689196,0.9951416843719357,0.006054684046504697,0.002214692323860968,0.00029918349117988123,0.9999964231429186,0.0017468011537561125,0.002120073801919023 -cylind,rgb,0.3656936663118046,0.9376489363109424,0.024097607501674993,0.9238658289780386,0.028427490183337692,0.5725171739892072,0.2004732618489218,0.5275283841220078,0.4844554003231525,0.41727391130788466,0.02639418864233742,0.0257768468181578,0.02527101966460611,0.9405996599484483,0.9718677461419963,0.7181435892831676,0.01380659489116872,0.014191374861625307,0.014031884670443579,0.05540615983064617,0.01590365421659832,0.015258714901359716,0.5543189644970683,0.014210891279369654,0.5841143701874535,0.010745833017663685,0.5443131713283844,0.5518085779755166,0.6743654327260247,0.7991385452227298,0.5708974860263735,0.02906702579533515,0.5334275909323332,0.21149663194740914,0.9532520911771695,0.6909692663986342,0.04583161696755005,0.015313892726159501,0.42287573152166563,0.42265365028078605,0.8938203411686563,0.6109349316820519,0.5538091662141944,0.8327176683829978,0.36481763791562444,0.0322049259712682,0.030609372418932027,0.023980282289468694,0.38080600584163715,0.12787775745945898,0.5683619854615277,0.8974765033459091,0.46638379548178743,0.4742913410926747,0.5106216948023329,0.4585015687287743,0.18317146666097503,0.1619881019697757,0.025847782370226807,0.02519300360186986,0.02596899018227435,0.016295548396736734,0.8003288532125711,0.5340925814114624,0.7494554833635867,0.017284775979939344,0.010391664554816047,0.4526623046799685,0.5108849980642047,0.5000039654695047,0.4974524485445213,0.893715934440491,0.876596589669781,0.44127028533277274,0.9184334551676072,0.5851134637374947,0.0104545996039762,0.015561039722374846,0.014992794026340753,0.14757168376546795,0.49543768301312746,0.16811557809794567,0.038805937439675114,0.12361982834237206,0.5172511789248051,0.033144126237360044,0.6890115645543579,0.014482962305295577,0.26298213057260567,0.4984606167048097,0.5220019692774521,0.8706620161218135,0.21233987961776662,0.1565687031974148,0.13891832238140242,0.12783671877751251,0.625518664963402,0.12287036351203215,0.17490906211426543,0.1243444060625614,0.10624650536405592,0.139022052836549,0.4124725284811968,0.9172428778099305,0.10334557687179323,0.5751124340622017,0.3012526252272039,0.014026877335229308,0.011807042802136637,0.4023964583625312,0.010865633184409638,0.9027378245721507,0.9454066129878073,0.029648983402936476,0.026482251329439047,0.02724897794834614,0.28191527465360156,0.03601503909758862,0.02537014671673937,0.01764944718126591,0.028530705263275162,0.03258034224945253,0.15578514226098272,0.8668931649880381,0.03094068243452447,0.24561785668411895,0.03270534161932781,0.2891525478446503,0.08159801478278247,0.09962103207410411,0.06899899634885656,0.16638027777175465,0.5807746170389616,0.44426378590020243,0.2684626476708339,0.015065338774481105,0.01423669191021305,0.014330831225587846,0.10646846907422851,0.7945101567300975,0.9453225593499135,0.7816040102275014,0.4930782877091138,0.8386085903803008,0.0667270890770824,0.04726100646399386,0.11582992847335921,0.015106791914693333,0.010339061462466662,0.016154322002610702,0.8597161626163682,0.05613722336950139,0.665933062334843,0.026520849052205486,0.5148686658069442,0.02551341371516603,0.026322352090325234,0.6530225567397816,0.5500335983496168,0.01439164524238081,0.7444564259616613,0.01421175673232052,0.5965802416333649,0.6041907881864188,0.6327192463666741,0.6620795713856429,0.5996369941121588,0.026135774031570542,0.025262599601909498,0.9131861219878892,0.05326143960398865,0.5678059591557819,0.07588387746059595,0.7616253406604945,0.054331211551022746,0.2039955856263037,0.8819591336334041,0.9585650059850399,0.775130537600283,0.6497278091097545,0.6165071645971866,0.7304618674854416,0.9519027286706095,0.543540687867796,0.5745846830153236,0.4609025180187403,0.7067861785092141,0.928977068279428,0.025232436442885788,0.025935541497480955,0.026162546348395287,0.12321793821397477,0.38487028814782226,0.043811880138450575,0.09784121488451986,0.3997221291551442,0.26213949257443786,0.029350385279219356,0.5456420698960396,0.46339691435360697,0.8575216609627735,0.05537004033278426,0.561615669583294,0.5389041311178903,0.03475522633114066,0.43833598602713597,0.5019547095631224,0.8860241229271218,0.9676655362453569,0.4579782120173674,0.0866616813126203,0.016535032652429386,0.5739664847668149,0.02569406082669824,0.6649375617734506,0.030554717133180916,0.02798485228227795,0.8528754504955203,0.027279558463502517,0.029656445705209616,0.032325806816304904,0.8451626760749031,0.49194114594661087,0.4935658636348992,0.014378412049299181,0.014389211258310186,0.9375398293525599,0.014903788093698092,0.8555811061238228,0.028492015947767617,0.970475118155452,0.05696525884520771,0.8664072254181852,0.42122423890743566,0.02956240118772672,0.030857859606263607,0.02754532392638903,0.7856246051049767,0.11660559265217513,0.06601615583258329,0.01695296268765379,0.9398474475389325,0.027375296673594136,0.028895583342385286 -cylindershap,rgb,0.4210323046637496,0.9912344035291414,0.06577917117701822,0.9988080280804384,0.0963034804349576,0.6305853633083148,0.27154676187563936,0.5318335257872783,0.48965265989946327,0.4121371182346173,0.051036225129694114,0.06039079235178645,0.05661384391053367,0.9922461373227351,0.9997058636258066,0.8445240753052207,0.020068305144661205,0.021187502243228365,0.020074184243719186,0.0670078199054289,0.019069198363350123,0.018051409378637376,0.6064076163358854,0.01925581565076555,0.7253928333838046,0.020503743658925898,0.6216746927015016,0.6919934884406288,0.8036454354323822,0.9666542626480559,0.6290633328186173,0.08860227701441872,0.5874919407525513,0.19173318827801172,0.9991630342874012,0.8243562047415244,0.05779231203689803,0.017523522087999385,0.5036857331279666,0.4709877576999177,0.9979221007571757,0.8978049921978072,0.6130633859397623,0.977388257195192,0.4989106522419968,0.08723478294999562,0.09343783020312578,0.06529737889049947,0.508696347358771,0.12701219048133014,0.6254544579209333,0.9980464764310275,0.4662616552716845,0.5206741273045281,0.660785381146971,0.5128937053454725,0.35640212157639756,0.3254917094281157,0.0597235011965266,0.054265274012565215,0.05004841531199398,0.018934449727530958,0.8997177222482686,0.8588676875150503,0.9546372041412281,0.02108922723256086,0.017252401796070932,0.44889539383518384,0.5135846875010233,0.5060065376915265,0.5473389915686732,0.9979893636848869,0.9973626509151685,0.43439636794524283,0.9841878513354755,0.8813627597604943,0.019134431784872414,0.019711295039101295,0.018041928368007568,0.3023931692722083,0.5673071919894221,0.3263881994818678,0.03631969990949061,0.2601517812742067,0.5218848075372996,0.031547165016700685,0.8175003444906054,0.017011751034750024,0.28668223442011953,0.568964402449767,0.5246186000436497,0.9401867032362781,0.39947688500997475,0.32475841934635274,0.28874757682670177,0.26902795330580287,0.7632247842296441,0.2587989132165295,0.33893961906804443,0.25855746934020185,0.2247840325597494,0.19074201345422162,0.4589234257642923,0.9986149328298579,0.22396056408942303,0.6342544464737315,0.42249552193316725,0.01884176154293524,0.024970674907922832,0.4454146166254727,0.018587361928641362,0.9982251883372274,0.9992591439489513,0.07179273541844619,0.05516843048700564,0.05432080174759701,0.26565144413598346,0.06788191065306177,0.05979624302996945,0.042113856897418846,0.08725333872638774,0.06592353404958246,0.15636573749388946,0.9970850255830225,0.07277151584766492,0.32624791097993094,0.0670853953226014,0.2746683980032253,0.08343080010338468,0.09002829683927467,0.09409924038807671,0.14950280755296175,0.6389068452209529,0.4380606039034042,0.251619508535315,0.020061896165560648,0.01983474425036601,0.020354601634498183,0.10746599505430145,0.9667345893549286,0.9989602004489303,0.8806929495897119,0.5414743472386833,0.9959385517757198,0.07865660618408989,0.06019245355251057,0.16038619929502387,0.018324890336952553,0.017888239145147408,0.02058952003622738,0.9968260774892458,0.05526332610537983,0.8014618121569849,0.05099778115343247,0.6648795287639049,0.055497052340360745,0.06038920874478896,0.8042447285408203,0.7359380981315198,0.019209825453282335,0.867498605845103,0.01924959754004415,0.7674686583480163,0.7538904297163538,0.7690921767752184,0.783422304766175,0.7331942744740902,0.058187157622308035,0.05407615593323355,0.9985103411024576,0.053281610398316165,0.6249249445256748,0.07230602010169869,0.8745395378644792,0.05516048085698129,0.2762454905699138,0.946045436462208,0.9994772698879233,0.8829261831824944,0.7985832762770064,0.7667384942983935,0.8557779879527384,0.9991190118770067,0.595497017237205,0.6337655706290363,0.6013163068839593,0.9880147365725349,0.9888601421477966,0.05405820108275823,0.05919045875334051,0.05005141362378748,0.10865846606027996,0.44487264938180876,0.056810913791895006,0.090069438220957,0.5281943153527529,0.24695234546986433,0.06535991735627257,0.6010593435280585,0.506621264407559,0.9967185833169856,0.05405195251300717,0.6898616542247982,0.6118972746425015,0.06674831737639081,0.4831043685799759,0.6523649164994282,0.9977254528882359,0.9996450952885846,0.5296517156068163,0.07738328350786801,0.018335245127861013,0.717502828962262,0.0573514427346586,0.7781082746190445,0.06472581498873467,0.06665048427587135,0.9307815806693995,0.07419345651062413,0.09476672108963397,0.10412091737249021,0.9962102063352468,0.5402934990200456,0.8336814308894765,0.02153343726336348,0.021899387240646544,0.9912095988492752,0.021430954655806522,0.9322263885753747,0.08704642890849677,0.9995785121279188,0.05090776647067475,0.9970253165314767,0.46672456997710376,0.0903673700763887,0.07270096585355815,0.06815792538553005,0.9656774890063021,0.10654237118547752,0.06327372615201544,0.018735483067559743,0.9987864166469492,0.049012990496309375,0.053908766861157316 -cylindr,rgb,0.4215257602728726,0.9906609320484856,0.07724342697074542,0.9988091424721764,0.11241091424694144,0.6261123060074458,0.2797803767717336,0.5265722803072018,0.4863273409179845,0.4112973976144444,0.059321338470093084,0.07052489626304732,0.06612498576037444,0.9917378891914002,0.9996959721142525,0.837758415439085,0.02382754943041956,0.025148088884440565,0.023807706588386275,0.07436942311192372,0.022370094502487916,0.021141053992662525,0.6023227875758379,0.022675877735256745,0.723993947900554,0.024754260632165112,0.6152053796052425,0.6914766085077083,0.7966988643077093,0.9663629704271,0.6246508494068103,0.10322118599507296,0.584287158379704,0.1970029992038265,0.999143778046941,0.8176869648350618,0.06479792535068389,0.02053045556259843,0.5061847520996825,0.47225966527359486,0.997945933151448,0.899828208999117,0.6093089566549106,0.9770908271808062,0.5011045561687161,0.10098051547232573,0.10857092786930386,0.07669298000680137,0.5099889313937888,0.1344713939003793,0.6210828593299289,0.9980667828078764,0.4634778723048753,0.5195965652424139,0.6573493932842976,0.5128192631215921,0.3747676539006134,0.34458207520509443,0.06972025117978106,0.06334572346480577,0.058213128633984826,0.022162840316778384,0.8933244394864369,0.8629215425563349,0.9547201135173343,0.02454614267460006,0.020770034799543455,0.4465407255777841,0.5089630534015885,0.502033229139194,0.545417851693585,0.9980137559301964,0.9974065649001238,0.4323888463942085,0.9832105936828941,0.8839511805749662,0.023096734733331563,0.02307875679770046,0.021152638763977293,0.3217911220657266,0.5624815548268561,0.3448077476568308,0.04060431842022987,0.27959862226140175,0.5170862892242089,0.03553966918580508,0.8105623126432008,0.019992741811365244,0.2909028353987439,0.5639923824725356,0.5195060912168689,0.9349131329507072,0.41674557048808425,0.34446056907493044,0.308311562312295,0.28859798433112455,0.756885167452747,0.27823963263263,0.3572956486399383,0.27778409138527405,0.24363405523793422,0.20017324692497232,0.4605744858832196,0.9986195595263069,0.24314185680188505,0.6297402275314058,0.4275529885012771,0.022200171505108095,0.030113392351346115,0.4473768980968865,0.022372745659074354,0.9982408901649756,0.9992512506577305,0.08332153071951608,0.0642090806441978,0.06308398538243709,0.26950092782241986,0.07770797003193233,0.06989026210339404,0.0500611852399075,0.10174815932926773,0.07593291941243412,0.16395177893305254,0.9971424059839512,0.08424471090285846,0.336682512678141,0.07727615311070406,0.2784057175821274,0.09041969096003559,0.09614282638485733,0.10364003048702275,0.1554830433957707,0.6341550082856295,0.43595457354340356,0.25583504690373354,0.02367213967135359,0.023491020088245877,0.02411451355059634,0.11489451709314787,0.9665114854831214,0.9989420609839974,0.8735935822780261,0.5396762838938794,0.9960449961671775,0.08645580261646599,0.06740904960039759,0.17213092313346626,0.02147705654049941,0.02156493428439836,0.02406301082100836,0.9968944049718927,0.060896664611911275,0.794812750898487,0.059256682249385184,0.661306618323191,0.06475699537681177,0.07042804959446672,0.8019581213110104,0.7369740721772198,0.022710056004462287,0.8637598673375589,0.02277929505524209,0.762757144381699,0.7523361305890305,0.7664548192191202,0.7796843575501279,0.7311137353625893,0.06784736989427011,0.06310943933443403,0.998517748410046,0.058893483840372095,0.6205741059202604,0.07843980756146517,0.8678286511760774,0.06094593949139131,0.2843810652928296,0.9410161941586395,0.9994663256010304,0.8787001042047166,0.7962331732876586,0.7649566499619832,0.8491532235415765,0.9990993975194046,0.5918123077466267,0.6292711623957551,0.5994009500676977,0.9885951536186253,0.9881664491256015,0.06309303172181198,0.06907228127361338,0.05818764888863552,0.11460572976873988,0.44457918759085036,0.06388148792435668,0.09636088871674918,0.5286215094557392,0.2514670586980745,0.0757911070280357,0.5974436693143665,0.5058894187223281,0.9967905377202958,0.0595809682985231,0.6886101629952256,0.6055017532319573,0.07656915616014846,0.4835375674714595,0.649215152941407,0.9977579717272695,0.9996349008167724,0.5263447769973099,0.08314721206227206,0.021387350544051047,0.716457243823836,0.066929794064616,0.773940244250601,0.07484582949898229,0.07755049530298606,0.9251772923665708,0.0865987767367171,0.11033389056057459,0.12069357007658896,0.9963039545668239,0.5385416388059332,0.8391136442259941,0.02554728414105102,0.025992468789246277,0.9906349790002514,0.025358429456885333,0.9266683095678242,0.10151284585778429,0.9995624972150662,0.05575871592763252,0.9970834672979346,0.467947491190363,0.10519031504167242,0.084176266264988,0.0794118464253982,0.9655421996989901,0.11295017686040841,0.06911831267104845,0.021815314746055272,0.9987687909567827,0.056780303056452174,0.062349518121193825 -dark,rgb,0.0008612085284493813,1.6244590239190988e-07,0.9999103512474447,2.4812028035369154e-05,0.9998878619906101,7.163228807736212e-05,0.03956448599194967,7.544105888152251e-05,0.00016453304247038037,0.00046628250314797,0.9997227175781296,0.9998367590252214,0.999833933240464,1.5250943521486811e-07,5.946502909762222e-07,3.0588995364208717e-06,0.9999610780032531,0.9999594905604113,0.9999567950491733,0.9782828409579422,0.9998833344015478,0.9998706001716479,9.088489623198509e-05,0.9999224170775969,0.00016884574772373434,0.9999918408677354,4.1683153900681865e-05,0.00027609365407413496,6.640183939537799e-06,4.434218309899932e-05,7.375379554854915e-05,0.9998481987452126,0.00013359166783594517,0.022115747919384914,2.3774503268072378e-06,5.253185420113782e-06,0.9915058036273765,0.9998734933900024,0.0012536600290913632,0.0008692243616881925,8.342641222667364e-05,0.001312413303031423,0.00010034136204718721,2.475683068122574e-05,0.0014120187525752548,0.9997040881931075,0.9998136302102457,0.9999116464865915,0.0009997250942248219,0.33040465199750213,7.6001774960019e-05,7.35229846295079e-05,0.00020904354025370466,0.00033931459283915777,0.00011862466406480856,0.0004926301026585496,0.4573675862818596,0.6184389234189442,0.9998298107773743,0.999821075877912,0.9997388217954075,0.9998575368806703,4.657465191225635e-07,0.004446268712811288,0.0001383997909637382,0.999768209351108,0.999989719147889,0.00025189108225940563,9.895536933830446e-05,0.0001263913641741588,0.00023640702735108377,8.766784330139126e-05,0.0001501338356281521,0.00029329560372261276,2.827016718203087e-07,0.0018197873208076038,0.9999917920064567,0.999867156285804,0.9998830499432059,0.7223584874862707,9.321735936470143e-05,0.5505482460583759,0.9890686010464764,0.8595249475609963,9.108682018159056e-05,0.9947119127662903,5.14177014880693e-06,0.9999056072530159,0.005926118963561932,8.78596447923881e-05,8.104353010533868e-05,5.308313176470631e-08,0.27804501634662065,0.676496883815053,0.779966484452493,0.8409961328870768,1.622409802635552e-05,0.8629934686571056,0.5050230170852827,0.8519141600115938,0.9230167859845857,0.21613642703969113,0.0010225943958869195,3.298911064186162e-05,0.9353823735257518,6.944568855792e-05,0.0047517207382789094,0.99992626542621,0.9999907968882926,0.0011804127478274174,0.9999892813281925,6.11360362471237e-05,6.992365791544014e-06,0.9997302591314431,0.9997629666024186,0.9997049552901025,0.005144893390341434,0.9989175064459889,0.9998490503864443,0.9999660650896984,0.9998600974814874,0.999399498336113,0.16019485569424738,0.00020876037387079614,0.9996568259541252,0.04789201419429425,0.9994089302676881,0.004605368364124304,0.8232382698186594,0.5287050731869564,0.9597337286877303,0.07511159019004372,6.216340884079216e-05,0.0002811355293143796,0.006742391662959968,0.9999307988124693,0.9999509728983935,0.9999521789600493,0.5602953954776971,5.348554444645879e-05,4.309824434414317e-06,6.666205458382684e-07,0.0002505005109884424,0.00044656604952092633,0.9479964840744892,0.9905602031146269,0.7014037104192209,0.9998792707869909,0.9999908801187181,0.9998421823789511,0.000257716729869899,0.9571942393318941,8.14968368480695e-06,0.9997134929348515,0.00011041216199096331,0.9998155980060477,0.9998137111222799,6.949610543842965e-05,0.0004970422380258322,0.9999425271458752,1.1303193968435157e-05,0.9999474482449744,3.5088176980998196e-05,0.00013895262466577212,7.49243876651215e-05,3.808546763071282e-05,0.00011997888239943848,0.999806630261648,0.999816483530568,3.958274482249599e-05,0.9676240109511538,7.676025468631763e-05,0.8350313051720933,1.1916745296781026e-06,0.9664022381600611,0.036188147690218386,3.412227394098482e-08,2.365746158681478e-06,5.094211575223406e-06,7.01888166095159e-05,0.00011647717510077015,2.4461107691979674e-06,2.5979042906739602e-06,0.0001093000710165611,7.011550626472478e-05,0.00025721915664426623,0.006195056260469241,2.354693228323176e-07,0.9998177370368765,0.9998226636455867,0.999726007647111,0.251250898610314,0.0006171445123335712,0.9935242816691665,0.5717497319563329,0.0007057757338764611,0.008037304335719593,0.9996880000312798,0.00011007476558071169,0.00039545256384721856,0.00027142222515764796,0.958456652921908,0.00020440851050200173,4.4609053616186265e-05,0.9991092137860677,0.0006284167682484418,0.0001373264607292809,0.00011309576736465608,9.985308905475088e-07,0.00017778487012097186,0.6703574685449122,0.9998088979337969,0.0002033653084849125,0.9998207587525006,3.211090562717703e-05,0.9995869069068082,0.9997793737482723,1.0014323891875122e-07,0.9998508375917464,0.9998507094915228,0.9997925507435149,0.0003768240291798623,0.00025536930286307156,0.008239937981984148,0.9999576695958116,0.9999592065739975,1.6339393683962103e-07,0.9999459082319233,9.130837275547479e-08,0.9998605658969745,4.652360827470842e-07,0.9285050521112614,0.00020776097582148447,0.0008623983016112592,0.9998384714038339,0.9996619058097101,0.9998098582595857,7.023464672273788e-05,0.3553329163520025,0.907266873617512,0.999775398731875,5.9991646908081394e-06,0.9996134304638711,0.9995603174968789 -ear,rgb,5.778730823424984e-29,3.331980582970564e-08,0.9291210986846918,3.101018585653219e-25,0.37727490375303163,2.037467823209686e-08,2.527849617020667e-28,1.4763871596635176e-12,1.8864801683275325e-11,2.2790557209625463e-11,0.9974599122465869,0.9918958954166062,0.9939329609590172,2.1370049862985067e-08,1.1971407578818992e-28,7.5372755723992e-42,0.7161989184612315,0.8336546335444774,0.7165978818926898,0.8605934561266595,0.11772826632564165,1.0765296326149844e-06,1.5118600937286114e-08,1.0364445266007654e-08,0.00012688462490229607,0.012807010510830242,7.438911860417669e-33,0.0002129634802037266,3.5541885584310413e-40,2.754694713994359e-05,2.1816336514625325e-08,0.8624717073551998,4.263965088138592e-08,5.606560547486607e-11,2.0701793771645664e-21,3.3491048246654847e-41,0.9546420547556193,0.0002342641096335187,5.129971750380799e-05,1.1999857190485252e-06,7.885978179677547e-23,0.004608005451204193,4.5254178975441686e-08,3.73863067527496e-06,9.595441829166001e-34,0.9836216406303475,0.8891281868490829,0.9295634644628556,1.1914284714287319e-33,0.0001307977191540205,2.017846192396473e-08,4.007089101862517e-23,9.413508852359235e-12,1.2142357493822722e-07,5.534026708945352e-37,6.806317436187178e-07,0.9718553142016018,0.9831076863863989,0.9929067985640402,0.9953208639270952,0.9973543657343074,0.03894278743868584,5.435918703085883e-44,0.0190512175853961,0.00010824441988205274,2.689940181680813e-09,0.0010004914137709377,5.6834734664631505e-12,2.168985920995421e-12,1.0777439363786315e-11,8.483109760829178e-08,1.7957895829913052e-23,4.2089304248627217e-22,3.333533302614491e-12,1.9975865798126065e-07,0.009193995897813384,0.0037855490801845613,9.754736073857002e-09,6.117604776458354e-07,0.9879996699887874,1.026062124006633e-31,0.9792547059707323,4.264559603271237e-05,0.9931812325191953,2.8696301900400974e-12,7.108998135222664e-05,1.0612545810315086e-40,0.0002104980387959551,4.440454189967237e-25,1.1890286436929539e-31,1.1406651009410155e-12,3.431414769387965e-46,0.945236850089467,0.9853748047251643,0.9902256472588018,0.9924612191161793,4.05663244510984e-39,0.9933005299031845,0.9759558931169906,0.9930663547202504,0.9955035386359852,4.4254430874623046e-26,1.3921895135950088e-06,2.1779227217623806e-24,0.9957057963473221,2.199902406558862e-08,2.6389023964847833e-32,2.1925210940755423e-08,0.07296541707933797,1.2971955021798323e-06,0.03703577336179171,1.2330489059268287e-23,2.3166525026360713e-26,0.9935492108238133,0.9967421595970634,0.9974866285370775,1.394831855281053e-10,0.9985832802045427,0.9908212190427503,0.888465392064997,0.8416185935708002,0.9982377128733062,5.055520042200181e-05,3.90398551444825e-22,0.9955900751511302,0.06668536383772425,0.9981778178498317,2.6396212962481276e-10,0.00783454850923634,4.787391651176616e-07,0.9702203024994291,8.179367515882733e-10,1.567708927167939e-08,3.661777281652319e-12,1.678853767779364e-10,0.6349220680102615,0.6673019322099332,0.7509991568201582,0.001037663770440451,2.605309078641428e-05,6.5364570173969644e-21,1.4715795533902744e-42,8.015200526222242e-08,6.510372286335165e-21,0.6665042857064967,0.9603275701825676,0.8711646092396373,2.604461034493e-07,0.0012388542543244302,2.5417644776552943e-09,6.988679458110693e-22,0.004598141088786093,2.365998615361381e-40,0.9975227842649708,4.59939931188638e-37,0.995255939396398,0.993787812686276,0.00011308123434776293,0.00359337691199925,0.4902689823125432,6.12190984823946e-06,0.5267280314719737,2.2090247448693685e-40,0.00017517021824276798,4.1021189816769655e-05,6.9679749180525295e-06,5.2490689313245746e-05,0.9949270600205188,0.9955443115293271,3.594931640814035e-24,0.011936323036381855,2.064056417173571e-08,0.00023811288906998111,6.529417211763379e-43,0.023163267830327888,1.9216302686133854e-28,1.4123375524048254e-46,1.4172325415930963e-26,1.1055701823462907e-06,9.649932662567281e-05,0.00015439269518966736,2.1684298833958653e-42,3.694674968365852e-21,2.1682467119487747e-08,2.2513295557114956e-08,1.6110559281219926e-35,1.1285318176211236e-17,8.507100009817834e-08,0.9955005504278389,0.9936861534348219,0.9974491174508666,5.526905452866961e-10,1.6071903390460224e-29,0.9736415572854565,3.996880942564612e-06,6.080600043660093e-34,5.500074995585412e-10,0.9965421152777054,3.400916354150157e-08,1.1551183793449013e-07,1.1688908426950122e-21,0.0029267419913803928,6.885899785975211e-05,2.0035804120850945e-32,0.9985256976554244,3.903696274654947e-07,8.072799369488248e-37,6.954735016872271e-23,3.032795198406164e-28,3.2314390616486008e-31,1.9157493886581612e-07,0.0001069937635763927,0.0001796251123976444,0.9944791357034816,2.8123888552614857e-06,0.9976330359128829,0.9932110540961485,1.2256864895518283e-45,0.9657735475794006,0.7404428355998585,0.7951389603405066,4.02952274905956e-21,8.311143940530789e-08,0.03894902663941973,0.8585170606948895,0.8764581660342472,3.37324079439461e-08,0.8523649025232912,1.0185741595039534e-45,0.8430768921885716,1.1079299905251771e-23,3.368243207724433e-08,7.501850807152685e-22,8.576927193006267e-07,0.867248870538608,0.9954952374587368,0.9895346233607341,2.8412788556880656e-05,5.109348193714698e-07,0.0005944943792540261,1.0908682469960429e-05,2.5528773237120746e-20,0.997806326056786,0.9980628501071437 -eggplanet,rgb,1.9690482507300175e-19,0.866641994124478,0.9983559806658023,1.452687605217034e-05,0.9972986234737858,2.6966580059443914e-05,1.0148919269125623e-18,9.579809910366167e-09,5.101875683821113e-08,3.957640803449756e-08,0.9985241840916688,0.9990574144347318,0.9989484960712285,0.8847871407052722,1.0028571737089337e-06,1.7824502191039323e-26,0.713197897675965,0.8262419378220152,0.6942745362155073,0.7441336134792432,0.09732199331852309,3.396991751860357e-05,1.7860617330451337e-05,3.302511420099805e-06,0.10273334570851281,0.25394037005582487,1.0721527281790035e-21,0.11284671347505597,1.388754952777543e-25,0.9964362944750321,2.817767388327685e-05,0.9988861355547692,3.5967813060774126e-05,2.4938919616933287e-08,0.0026024547637031516,4.199834667542972e-26,0.8878525334518497,0.0010637634429134315,0.0069207553831315055,0.0002439805897944652,0.00016226141500801303,0.9991402548997995,4.520198168162436e-05,0.9957775243428625,7.99920341903647e-22,0.9995102848897642,0.9991084899871348,0.9983305154099643,7.976927737901597e-22,0.0008085655419082314,2.5775709485980375e-05,0.00012005129345148248,2.7008122606841176e-08,5.326890838810843e-05,1.0504353398133217e-23,0.00020349985578224208,0.9992360312239125,0.9994637541752829,0.9990592318198938,0.9988590717739237,0.9984340271069585,0.0383323000076081,1.0407016842554934e-27,0.9994816791846384,0.9980075506645971,7.511784276175875e-07,0.023917876524696208,1.7077696810116738e-08,1.1594110232753874e-08,3.660816623867687e-08,4.7618095181805455e-05,7.334831914560352e-05,0.0003052776094179879,1.07654315536748e-08,0.7417341336099301,0.9991831275068656,0.10087422460363372,2.1671375520997375e-06,2.5555789638349406e-05,0.9995626350319544,4.8427242993646984e-21,0.9992227269170012,0.00014470771167785485,0.9996650884761858,1.4878317312816453e-08,0.000212115811366269,7.256960016759407e-26,0.001135436692327072,3.4110355138760355e-17,5.207008691181933e-21,7.633952298628432e-09,5.49458605570486e-29,0.9988699035819789,0.9996067970403726,0.9996195999406304,0.9996629265587996,5.675076103412488e-25,0.999667846426486,0.999201578034506,0.9996295541714155,0.9996884706612167,2.4716663043760735e-17,0.0002541607952184431,3.618846842781109e-05,0.9997395588030692,2.947059677814151e-05,5.835802337814288e-21,5.165017168704968e-06,0.6997572561598133,0.00021965903828332685,0.26451314675124127,6.988953039199571e-05,6.173059568069916e-06,0.9994140471885115,0.9989267637813558,0.9988228456889079,7.087029187185862e-08,0.9990428581579197,0.9990023527216865,0.9931880020272913,0.9987610673251216,0.999255892009327,0.0005076719862865013,0.00025654192857476075,0.9994686678332894,0.5046583980398562,0.999306321670645,1.1828637655749737e-07,0.012541270783547599,8.320203378918366e-06,0.958387220538412,1.3108206750875167e-07,2.3215903761342348e-05,1.1735868754502373e-08,7.523631630308084e-08,0.5373147039412017,0.6232155951052076,0.7119468439637745,0.00335230443371287,0.99690425320905,0.0038132998739643415,5.594474416777886e-27,4.376455264733976e-05,0.0008069133954730462,0.5588801880185785,0.9043589018510179,0.9290486249626202,1.5108943236376261e-05,0.03533768827409087,9.212176532859968e-07,0.00031838365044993815,0.005687540829816301,1.2038640148566573e-25,0.9985004091987657,9.413180172429593e-24,0.9989287398969257,0.9991108702436161,0.23281175769047052,0.773836299207674,0.4353500544292256,0.057641852580918335,0.4812727387996655,1.8301501024946583e-25,0.1809072498573477,0.06473308767319744,0.01629681590302693,0.05265017695423357,0.9990523072810236,0.99885262004304,4.3719798873319126e-05,0.011756730443150263,2.6148997895550688e-05,0.0007101121920485669,4.3306680096592406e-27,0.020475705755256517,8.604344734096644e-19,3.2527661094365045e-29,7.274870242343234e-06,0.017205893763489754,0.1920392600223342,0.18895734164250383,9.280229607169677e-27,0.003329707612143435,2.2096485400858556e-05,2.9916807981026336e-05,6.664271174595112e-23,0.01215627880625339,0.8594640430808687,0.9988505389441851,0.9990599021314132,0.9984049225938517,7.803033307382282e-08,9.425413440997703e-20,0.9314113362429142,3.949965850982755e-05,5.193816911701641e-22,1.737349166191862e-07,0.9993276210854329,3.296066123207984e-05,4.6731822350996026e-05,0.00040718789790449125,0.003939038302570608,0.042394652846605006,1.8426194559082076e-21,0.9991099142568204,0.00010659355210864496,1.3142066784724221e-23,0.00013428226512092185,1.3429953819024081e-06,9.74019558085143e-21,3.882973102747852e-06,0.0005320514953905562,0.1261416477534632,0.9990013819835113,0.006819753051588832,0.9992975610052677,0.9992931938176335,1.1695819881367882e-28,0.9990889280744644,0.9986459423979628,0.9990410769652212,0.0006753469533558222,4.470555083739621e-05,0.9995882131305965,0.8475100371152757,0.8725060403893843,0.8668055715337057,0.8088925319961576,1.0476377195715854e-28,0.9987603022769382,0.00033839161285996694,1.0005568813115694e-06,0.0003609908575801211,0.00018074197854931262,0.9989529254644971,0.9994659359354857,0.9992533798554457,0.9973753439349989,1.0035557988366513e-05,0.0012870550598340128,0.00011198138968919131,0.006579949624292746,0.9978477078354662,0.9985362302407098 -eggplant,rgb,2.2029504535463886e-19,0.8479064213779289,0.99839609891474,1.4357700542080623e-05,0.9973758170448375,2.5193924994042737e-05,1.1676210575323296e-18,9.275414127316581e-09,4.932951423191489e-08,3.86342845520206e-08,0.9985370922177415,0.9990708277938115,0.9989630765056617,0.8681863851470291,9.777712291437827e-07,2.072874602328162e-26,0.7229864259248369,0.8326465689478092,0.7042934682096238,0.7422317008789929,0.10190873708623134,3.714674717971003e-05,1.6747065691366847e-05,3.67679458789535e-06,0.0942751786178435,0.2685791944089272,1.2003111468139183e-21,0.1039552990650482,1.607750976805536e-25,0.9959686965059831,2.632643024789879e-05,0.9989085248155625,3.372518924759056e-05,2.5191363118254813e-08,0.0024515548003905324,4.8853104917432856e-26,0.8872557888902801,0.0011433714336317755,0.006461642309751942,0.00023025059097244135,0.000159683785406299,0.9990445971937587,4.22480305965556e-05,0.9952169717339352,9.278655143548853e-22,0.9995144907528439,0.9991239850492007,0.9983715077056865,9.221157257585844e-22,0.0007987371083862795,2.409707372433433e-05,0.00011823107014912856,2.6240569417239696e-08,5.0227966684151244e-05,1.21957749650914e-23,0.00019134397016889616,0.9991862584902245,0.9994311361045889,0.9990720649447116,0.9988738828526266,0.998448877493931,0.040364801776926855,1.2083175023377894e-27,0.999428155158202,0.9977600698690094,8.330757886294996e-07,0.025971853488501485,1.665249299039089e-08,1.1240414509056e-08,3.537462399584322e-08,4.479449062284229e-05,7.253307426600954e-05,0.0003007002835916689,1.0532808880503773e-08,0.7121082298806527,0.9990937163396946,0.10841964092466111,2.403947465033268e-06,2.8016654974649736e-05,0.9995374807758165,5.416818288080635e-21,0.9991744420273809,0.00015064151106611347,0.9996479453582492,1.4398322368616729e-08,0.00022185917035789948,8.412402696946575e-26,0.0012236031727390372,3.777326206824837e-17,5.818765741471157e-21,7.403375263922766e-09,6.355840055775536e-29,0.9987904507099612,0.9995834028879381,0.9995985504206779,0.999645278482642,6.573048208137172e-25,0.9996509172066316,0.9991508696872955,0.9996104863201569,0.9996741935866739,2.8451418083503047e-17,0.00024012209831838027,3.566233411086024e-05,0.9997279383364635,2.7516270119581727e-05,6.772378437450551e-21,5.739557214365416e-06,0.7136618713671837,0.00020788960535175231,0.2786550971793496,6.894256515205095e-05,6.071521513772109e-06,0.9994189060447162,0.9989372471562047,0.9988318335617731,7.036735167517786e-08,0.9990377223328402,0.9990175738896996,0.9934384194901338,0.9987874963579757,0.9992556208559507,0.0004986308378178716,0.000253576791681191,0.9994714831140802,0.48954139837090943,0.9993060858907259,1.1705980238147808e-07,0.012469553508978206,8.450781971364472e-06,0.9574418629343115,1.3278913495020518e-07,2.1679815019452088e-05,1.147373957888889e-08,7.484942065746296e-08,0.548659444090671,0.6343448935580516,0.7213369950191849,0.0033166703112150905,0.9965027740960499,0.0036012156252288132,6.45411304723717e-27,4.1203043973304387e-05,0.0007970304344635616,0.5553990326199544,0.9037000933394731,0.9263611465485815,1.6603979344832152e-05,0.03832378089124904,1.0247381721882115e-06,0.00031482366998414953,0.00575003413666013,1.397677162470453e-25,0.9985130889695539,1.092820985081207e-23,0.9989422252040382,0.9991219791499119,0.21451930900293883,0.7559390845050098,0.4475190384577696,0.05181192739260525,0.49362855525087235,2.1506050038951295e-25,0.1666732247995937,0.05896782758168519,0.014783333502408852,0.048103226214305295,0.9990636670229912,0.9988671831005788,4.309828027902296e-05,0.011875656743632676,2.4446434068842488e-05,0.0007156654697623,5.031920109032503e-27,0.02062357075624043,9.899532297071474e-19,3.758200985133409e-29,7.08948405147543e-06,0.015380815984907687,0.1763523851484329,0.17401021849055845,1.0810393889406366e-26,0.003134344407457051,2.072968005560399e-05,2.7933179681078774e-05,7.712445953724126e-23,0.012061561806369836,0.8401612584010036,0.9988652209969201,0.9990722052969548,0.9984193516551563,8.02043071092705e-08,1.0555163842689002e-19,0.9310398231068177,3.988823309190836e-05,5.998332288420096e-22,1.7242003471275615e-07,0.9993318641469741,3.08705023387143e-05,4.414191567436519e-05,0.00040223546429391633,0.003990072127159356,0.03887792547148513,2.058002460455622e-21,0.999106588601402,0.0001006949652508146,1.5260170946758454e-23,0.00013259623592239,1.3124882423537828e-06,1.0918125895794268e-20,3.97827825727829e-06,0.0005715060816174726,0.11605788737531914,0.9990142819366588,0.006194045190846633,0.9992998833449463,0.9993006863897078,1.3551931563514167e-28,0.9991047170894332,0.9986757120362609,0.9990581456913746,0.0006668877854750636,4.209145607217332e-05,0.9995473800453001,0.8531334204673975,0.8772937543442524,0.8480925455264148,0.815414775228619,1.2135988381368619e-28,0.9987867635400711,0.0003184605694200166,1.048646715933384e-06,0.00035611981991157603,0.00017077849585408765,0.998973182100023,0.9994688616218467,0.9992629023416203,0.9970403148797531,1.012308485108664e-05,0.001300860739898186,0.00012103284376207821,0.006210885180475183,0.9978616706300178,0.9985423923844272 -fruit,rgb,0.19690358573356756,0.05167551314864993,0.997653491890616,8.166815751795329e-05,0.9948710568280628,0.8691194499373779,0.31636037095877617,0.828270385591548,0.8747751739041162,0.9062787344421518,0.9988916068212466,0.9983777103867261,0.9985547600544538,0.043003564249598045,9.472611515459593e-06,0.002252435037139767,0.9994029398886121,0.9993985644784189,0.9994085324364547,0.9984514842805936,0.999346305605913,0.9983081002542712,0.8783734713252878,0.9970964570262001,0.8829885832308131,0.9988717996217792,0.04893026328409581,0.9029230819341048,0.004234165496004137,0.2535849821896064,0.8704505044081061,0.9963886736612163,0.8941994703937577,0.9673238496140123,0.0001395789459842827,0.0029486482275480406,0.998761569680557,0.9989846715109493,0.9521153945299152,0.9459128536809506,0.00024387287500997475,0.6454456668477092,0.8837617086050601,0.15225052668877567,0.055903439421619,0.997275548330665,0.9962612978953452,0.9976753869683849,0.055928709727083886,0.9934798742497701,0.8716028708932766,0.00021462719169141806,0.8788323927534485,0.9234325823105006,0.015970569235841527,0.9338648210482338,0.9873012067599942,0.9891926431777663,0.9984270298873436,0.9986760042526279,0.9989107372480269,0.9992938126475318,0.000909482235821431,0.7476502136548089,0.342782157074653,0.9966694753304427,0.9988968733233075,0.8818418094987538,0.8424585954902106,0.8622934953655446,0.9132068945549505,0.00020421606980281138,0.0003643522966927666,0.88337189260248,0.11578527433387376,0.6998126498933087,0.9988527822364419,0.9971353297477005,0.9982064397100582,0.990453011006104,0.07453969469534773,0.9892151949964945,0.9979519864120283,0.9924841709163333,0.8410524290713797,0.9982639807786222,0.003471550018418569,0.9989871575497254,0.49229795025755346,0.07521450062482957,0.8294041746947461,0.00034520953700505145,0.9841422889778252,0.9891252426793578,0.9911304589154687,0.9920680570423019,0.006560067691965037,0.9925433800302255,0.9884495142331544,0.9925945591344729,0.9939805727618004,0.525108122342895,0.9489325516687703,0.00011466657233144079,0.9939373363819011,0.8678935329274605,0.095410485962959,0.9973454903074717,0.9987656005896355,0.9513413136011406,0.9991211481814264,0.00017383871888912387,3.952791170325786e-05,0.9980734614107849,0.9987220728717817,0.9988015065302495,0.9552166174350976,0.9986279068993614,0.9983700527632597,0.9985377378784054,0.9963870995576162,0.9985816522448991,0.9911456476406131,0.00039960606451960087,0.9981434839372394,0.985821724595519,0.9985406378922608,0.9555366526695798,0.9969375688843738,0.9929903356687145,0.997971349041891,0.9800178233750811,0.8625797257260766,0.8826456173030821,0.9587405613164502,0.9994151565937099,0.9994126757806157,0.9994124458139347,0.9953466246394661,0.24880301944882482,0.00019347636443935848,0.0015124697478781399,0.9147908021114989,0.00073306011766164,0.9980344970174105,0.9987192867305767,0.99588018520035,0.9980324303057028,0.9988522438426327,0.9966398996137915,0.0004605377994134369,0.9979000962565895,0.004081045927714482,0.9988985137343674,0.01545540919500408,0.998637010679279,0.9984347014598793,0.8210081690008326,0.8954176049277317,0.9994079563536428,0.6969324876256936,0.9994090717655186,0.004594427980443478,0.8672030119300126,0.8452076926469135,0.8171607779481312,0.8725610247465928,0.9985437494430562,0.9986910321902011,0.00012946289821686834,0.9981142301050009,0.8720491640358896,0.9965616928178544,0.0014369456853722783,0.9981435861392228,0.3064785753034969,0.0002888109753908821,2.6672647987492885e-05,0.6394597509000619,0.8255164810196528,0.8570080578833905,0.001839087864450996,0.0001556567421911153,0.886003671651477,0.8683364188255169,0.027511782053434308,0.004507533328732838,0.07248483850220346,0.9986896656574574,0.9984679730178027,0.9989189325223612,0.9852164092589761,0.16616572832417062,0.9988193002660667,0.99408168411533,0.0495479621682994,0.9632497324358283,0.9984199538846764,0.8869270439157323,0.9271660839410677,0.0005006963998967657,0.997873501483802,0.8976348367605042,0.05557861480257807,0.9986303346572545,0.9387670866400643,0.017074081946634852,0.000263578591246886,1.2488397880474605e-05,0.09269028268147335,0.9935090160538551,0.9988886154811295,0.8894520218687382,0.9985514417219822,0.8135189047398796,0.9985308010054934,0.9982211304096485,0.00044541923410852587,0.997527649322137,0.9957374059059202,0.9953963888894953,0.0006526647357456794,0.9153776360706304,0.793122236107419,0.9993983072582163,0.9993911380715553,0.05188292533576314,0.9994128704640187,0.0004292472645350827,0.9964015155447035,4.222424321069302e-05,0.9949491208292106,0.00043471024430364425,0.9455642604471413,0.9963211004011165,0.9981399399189393,0.998067259507412,0.25336631949076627,0.991706009079129,0.9971957280124993,0.9986227932722179,0.0002583200991127893,0.9989954960891784,0.9988826539833551 -green,rgb,2.1086549685413122e-08,0.9772627234277254,0.9902283467669838,0.0009925265701039923,0.9822887256485764,0.3461745977585525,2.414902925577245e-08,0.012271076547237298,0.025963085489065257,0.021561927356827503,0.9953255730458044,0.9946249841751608,0.9947268408211677,0.9768963497658917,0.00022750421853907923,4.369363180356111e-12,0.93739091404292,0.952697464019587,0.936812737648118,0.9783305003338448,0.8203306287344933,0.06917810931212418,0.30305348878048544,0.016782437012286502,0.9512271545712689,0.7459184759212389,1.8061633351197503e-09,0.9531369539469636,1.2875607133391141e-11,0.9938249382896449,0.35049427675286204,0.9908375643513128,0.37132526963756035,0.01264628436737876,0.023845286365469214,6.523968269792514e-12,0.9844602131263603,0.3150584337841805,0.8529693924420493,0.5680415637777387,0.003972783435864581,0.9970283884593865,0.3983836640196521,0.9917972419916082,7.191985844622288e-10,0.9953820578896295,0.9919551219777495,0.9901770934260871,7.822975284586105e-10,0.6106285417247791,0.3410680917781672,0.0033377212581972406,0.018924622431501177,0.4054222925535616,9.256368153311986e-11,0.5532573211442996,0.9982689489249075,0.9984150229379153,0.9947739388142467,0.9948834407207315,0.9951756887483122,0.7462417530548416,1.1743734323705136e-12,0.9975554897502369,0.995032186067369,0.01054531223649693,0.4915459351548999,0.015011053691649819,0.013226967102211176,0.022547807211068343,0.39655189192949053,0.002494969842544373,0.005692051664253906,0.011890105143592828,0.9768815541986294,0.9972545254761812,0.639082559875966,0.015991470371202007,0.05817778830833327,0.9984837065277573,3.734585700050537e-09,0.9982547228782956,0.27672280402276234,0.9985473070497521,0.01498255177994685,0.2936672653792614,9.177609497268164e-12,0.3061848889724637,2.831911774936108e-07,3.935868769649476e-09,0.010952181308164296,3.1323072138090694e-13,0.9980722540580096,0.998526489420744,0.9985249805179413,0.9985514960811238,2.4794099260991555e-11,0.9985487267594073,0.9982451500734453,0.998515318568134,0.9985337667244599,1.0259171608805727e-07,0.570957238748692,0.0016804537667650403,0.9985770401986945,0.35562922320372053,1.789535550209873e-09,0.02119370592671054,0.8720914776019111,0.5530772568172517,0.7870578137325671,0.0024404156002235822,0.0006180458303168419,0.9957739177894867,0.9954427921191012,0.9956553703528519,0.02394783075522983,0.9968975497939792,0.9943657139066834,0.9820468846133181,0.9901980115596496,0.9967373251401195,0.5754668156252853,0.005112286847568448,0.9962639287422749,0.9776626373151345,0.9967754371732147,0.030878532389952994,0.8253244040449106,0.13639562695526092,0.9913786439603001,0.02537151309376479,0.33195397239641866,0.01243354289110548,0.024119016069178857,0.9253783447052646,0.9301652467983424,0.9406446371236018,0.7394880927007322,0.9938440873136968,0.029151376907953143,3.030921213367886e-12,0.3867964221956797,0.009875799441156876,0.971462991067341,0.9857402904229547,0.9906994428882592,0.04463400261162886,0.5237426065740324,0.010462006034124137,0.005781351580490959,0.734675197755573,1.124986255013422e-11,0.9953457413349435,8.80507864779564e-11,0.9949823295532229,0.995029057761259,0.9661217718422505,0.9865925635956375,0.9073396718181871,0.9368347034215903,0.9124253243401498,1.0123196584733285e-11,0.9620623303124524,0.9407894478469327,0.8984354203198781,0.9356343123772652,0.9951299312139809,0.9949342801455728,0.0018702141733993067,0.7916993118003847,0.34246664997071574,0.5435999381898401,2.276510045956692e-12,0.8328758364465483,2.2364778467034744e-08,2.500688903841146e-13,0.0006985356399186194,0.8991634555568627,0.962876008522979,0.9627809014100143,3.0783082058995004e-12,0.027582233546596256,0.32254857847274904,0.3571247407273623,2.3836146605627067e-10,0.046233696093323125,0.9789967132596267,0.9949187355306577,0.994902699476847,0.9952125456814137,0.016949259677857157,1.4665101966911449e-08,0.9872563165673793,0.25059709881749104,6.550604071777066e-10,0.03550808301878979,0.996113429716464,0.3636913780667976,0.3894986182830914,0.006670508397493733,0.6980968966895785,0.9295980098984908,2.439598725483667e-09,0.9968525998967249,0.47735982685401174,1.0251081613822591e-10,0.003536581758997224,0.00026603802814008056,4.97189687930821e-09,0.09187976956238128,0.2618967162174946,0.9553925504620384,0.9949360294362115,0.8597891966183825,0.9964461111104077,0.9953805905032947,4.3301463880105407e-13,0.9931717917598396,0.9890070969524204,0.9909199647779484,0.008922593853800483,0.3889298685789497,0.997772576361758,0.9561976699498145,0.9593378074801382,0.9772969779059578,0.9541321198346676,4.1307337242783514e-13,0.9902088728528438,0.007474084546059325,0.0385794975304178,0.006243776664450441,0.5343097178817856,0.9911301298238886,0.9962376662274107,0.9948603825578263,0.9939690857198635,0.15703116228778524,0.5969776190179387,0.14010139513550293,0.03988645735596094,0.9951686992001096,0.9958217927304303 -half,rgb,0.5423623279452325,0.9980373820697704,0.005232367155324803,0.9999754996375221,0.010761575352168588,0.48510430520610975,0.3033038007028112,0.4059039186427377,0.33048288535490494,0.23619098717540377,0.003060008853804125,0.004202401486306709,0.0037499446264123762,0.998395769433275,0.999997602347743,0.9834069959358326,0.0008498905407529099,0.0009045762995022834,0.0008486949488975784,0.005022206040866548,0.0008448459840290834,0.0011201955581917511,0.449473802045479,0.0014462768712036002,0.5860106576522787,0.001065828019299238,0.8383913425203152,0.5230083088095165,0.9718375263340434,0.9826284312398936,0.48219936256027346,0.008660692588908276,0.41361364316541555,0.057762490527351884,0.9999803988187449,0.9785622668342061,0.0038635064921246007,0.0009032572956445923,0.258838772845245,0.2422887319070018,0.9999330889187513,0.8915848054665002,0.451930789204187,0.9909788866672425,0.7321731891064199,0.0077746445644890265,0.009357524608513156,0.005170330076422242,0.7413000527766619,0.01892346141048075,0.47705226880474777,0.9999402809534099,0.30505897883456773,0.3143032707080547,0.9023956364342762,0.29409037571190527,0.09206315324714788,0.0755574220313646,0.004107133726074468,0.003469177604572719,0.002972344174738594,0.0008645351834798101,0.9931200831767525,0.8207722431264639,0.9713135905790424,0.0017061754582109675,0.0008795085531473702,0.28675604713727926,0.37749017817151864,0.3559739224596956,0.3517998559598136,0.9999393292509839,0.9998993787174756,0.2725635161290335,0.9948912870980037,0.8622848037269742,0.0009946147649141136,0.0014888781565131934,0.0011413646735497654,0.06470106453704123,0.7742154635812346,0.07611805481480181,0.002764229291001134,0.047686544266915196,0.38707136532608694,0.0022053880293666285,0.9761747186253247,0.0008698819226883724,0.2718118510125428,0.7750287744297332,0.397516248167036,0.9974055344274944,0.11920273336477631,0.0751865503454374,0.058828169977476724,0.05098846192805133,0.9574979741010304,0.04719739686692406,0.08254624243050972,0.047089497788983865,0.03589340304127653,0.15943011647195934,0.22860602296485982,0.9999673757429118,0.03570575642346334,0.49039612551273404,0.6108841282319631,0.0013667754361754657,0.0013673866826248097,0.2150281374733713,0.0008798056820704649,0.9999501641913714,0.9999888550057942,0.00548246473349186,0.003505258470675347,0.0033782606847576986,0.09966922340244987,0.0046568864793871175,0.004157516135253863,0.0026375978349739986,0.008498338449420533,0.004515878617670709,0.02753158257115816,0.9998836338495715,0.005515847771265325,0.08724113493362848,0.004652516139169199,0.10405090039617658,0.00852848381547749,0.012781346987669853,0.008259858487374738,0.035142102536689465,0.5002731955704791,0.27636488209789184,0.08997310565527736,0.0008509870571444514,0.0008372361156821624,0.0008609408199953122,0.01356600653360943,0.9827782116823713,0.9999719594900732,0.9898108733499094,0.3442294363051556,0.999791257471364,0.006662004571812723,0.004100899797235036,0.0208973260423263,0.001200532425579546,0.000926091752805102,0.0016574594108184242,0.9998654462960794,0.004550882646434383,0.9717084539350479,0.003052173322625085,0.905229707997805,0.0035967021199773204,0.004157594236983891,0.7332372703740417,0.5848251932237424,0.0008129121358441087,0.8562076263431676,0.000813051582303843,0.9628867836712368,0.6365479807080408,0.6733792220506561,0.7096904123963642,0.605835028459348,0.0038874963011447223,0.0034428954413964936,0.9999630646331649,0.004184394123434861,0.47605516673511244,0.007530320010513206,0.9892732049453193,0.004328955346652263,0.31250189020484,0.9978480775057714,0.9999934421457247,0.8849885352616329,0.7234988145145657,0.66131587768405,0.985972004490854,0.999978441731381,0.43032070111074144,0.48945054545393163,0.8506953035879927,0.9986654870973466,0.9970944292731815,0.0034425217904314816,0.004030231384438142,0.002966766230540067,0.02113724202223903,0.5873298535787592,0.0037096766972421922,0.012009051625203411,0.7662657738653137,0.08421267959206606,0.004600115778377574,0.435555465423744,0.2969474726096544,0.9998562088394263,0.0044566553002033365,0.5267811595859556,0.8253464545396877,0.00455157759367295,0.261898933191872,0.8963822436662658,0.9999238505099388,0.9999967388368782,0.7260481256529056,0.01035081921300562,0.0009863372234720752,0.5694777859805423,0.003812771926447204,0.705173455475202,0.00445244377118029,0.004880114107901238,0.996611416917177,0.006164775115615874,0.009932838340668841,0.011458488296992173,0.9998145711970062,0.34240760341315757,0.7707485036229448,0.000921465492864996,0.0009419923633252904,0.9980282599453022,0.0009121926737727155,0.9967401601490957,0.008462476889075322,0.9999940141092225,0.005725927851769809,0.9998774524326804,0.23941298910776082,0.008928851341741744,0.005512184723213657,0.005144348124884856,0.9819550088672049,0.01669657115860071,0.005954919669005554,0.0010930258968704467,0.9999631283323198,0.0028381657736350086,0.003287154494823742 -head,rgb,4.378230604658864e-31,3.1556019965779786e-11,0.9978270475015227,7.511687942125056e-06,0.9993480794311101,5.027540993695726e-19,1.5029385316363053e-27,4.4386838236355314e-23,6.487038473010118e-22,1.4885758649473956e-21,0.8532022780518732,0.9895281729392379,0.9825296122777736,6.091524874605232e-11,6.556712034702931e-08,2.7927336854873385e-39,0.03242803651836029,0.06861032223080472,0.022873981352479516,1.6828626863044062e-06,7.752426518670286e-05,2.7458770360956867e-08,3.719661273009389e-19,1.8199895974579073e-08,1.0911673829475349e-13,0.28092725527826,1.0055602306789883e-34,1.8400779177006417e-13,3.065650008748092e-38,1.781350767114974e-06,5.458297180640764e-19,0.9989319802154528,1.279954396479229e-18,8.11525762176601e-20,1.1590984198613354e-05,1.1615871993338582e-38,2.2374171072436605e-05,5.758743650539576e-07,9.600101768375931e-15,8.31092129407127e-17,8.275758892894052e-05,8.073793794816729e-05,1.3162378825952924e-18,2.8473826237510038e-06,5.897135284449966e-32,0.9967460331192488,0.9989063745719898,0.9977872576642843,2.9035446117980135e-32,2.7197133119777485e-13,5.010608553390845e-19,6.28809354957103e-05,4.1167339833696496e-22,5.003580574805256e-18,5.979903700716573e-35,3.873691746089521e-17,0.0007646539760984967,0.00283604605243809,0.9875701782249198,0.9710442215669868,0.8523011694544869,1.7656444818986175e-05,2.1472565602104073e-41,0.00044924280839900543,1.0948019322863035e-05,4.2473234480571853e-10,0.007276079304893965,3.0382080361321327e-22,7.300456689152119e-23,3.3919043311569203e-22,3.0957441778851964e-18,5.469309562244661e-05,0.000191521886079278,2.169239809321266e-22,2.5329009872813687e-12,8.110792234423608e-05,0.08679263390442227,3.375023773582339e-09,2.7624225399767263e-08,0.00668023594494306,9.915220062623609e-34,0.0009828190065357433,3.766560127062482e-11,0.025998813143386295,8.814714497293839e-23,1.690601254352051e-10,1.4030581873424096e-38,1.1299509265396926e-06,3.2938764293506356e-28,9.390686147363143e-34,3.727769256123242e-23,9.6110683844363e-44,0.00018085826040716525,0.007247901472197297,0.012022541752537171,0.02257043626116567,3.2516244392838998e-37,0.027200278850793763,0.0008025786842019954,0.019367628469301176,0.05634733802409233,3.591067098590191e-25,1.0210240236071679e-16,1.627334616139468e-05,0.10161323949766739,5.471383631824138e-19,1.7204755663793403e-30,2.7790021965109584e-08,0.8313388378485319,9.73021466636196e-17,0.10344526181611231,3.9627666902855414e-05,1.5810201964507242e-06,0.990579254570539,0.9486210420387434,0.89659695530994,4.1452593724496747e-20,0.5456002848258509,0.9905051918659616,0.9922002459622766,0.9989615957054881,0.8593777349622782,5.3048248418256676e-14,0.00022731898486752234,0.9849911511645019,2.967355101611672e-10,0.8826999708899419,6.314900246559263e-20,1.0238855039222798e-10,4.519454067479314e-15,1.5285503647959953e-05,2.1642050724201658e-18,3.656503376326622e-19,2.27439207936587e-22,6.058045682122812e-20,0.0036006001836469586,0.011579129164568141,0.020430852401385383,4.444684645055426e-12,3.381727563176267e-06,2.4526481536009518e-05,8.956741208058371e-41,2.939453200425125e-18,0.0007995607145289278,1.8214281787379981e-07,2.5087724441445016e-05,5.307341427830607e-07,1.71193118677099e-08,0.017472768873408717,1.244719727615924e-09,0.0003046810721032907,2.884227220939287e-10,4.3028593347689563e-38,0.8394274077140776,4.938934744297177e-35,0.9738977751040672,0.985945021117419,2.7762981817626633e-13,5.7466945699637767e-11,0.0031902383633512143,6.492145489094243e-15,0.004840456711182668,1.0220962778069511e-36,2.652119498887442e-13,2.8047723181097597e-14,1.9696893258973135e-15,2.8182881264852468e-14,0.9797317558420526,0.9683230461508755,2.111413865923356e-05,9.868139487448017e-10,5.148972716398938e-19,3.941264582023896e-12,2.4309408849944755e-40,1.820805792526565e-09,1.1487822909674818e-27,3.3333454440252084e-44,6.880868983503929e-07,5.371599922987096e-16,1.8788977801628605e-13,2.556908126520524e-13,1.3734746969696181e-39,1.3909517948576298e-05,5.760339971006406e-19,5.625531193201129e-19,6.292489483040067e-34,0.02744249338891356,2.1449736839417913e-11,0.9687695105280966,0.9854363045005922,0.8332579276972828,7.987568337585667e-18,1.5614443532096736e-31,6.8624101284393e-05,2.98708829955676e-14,1.1883792893433858e-32,1.8187912838733852e-19,0.9732512391171038,9.593445431469668e-19,4.911305833251858e-18,0.00036503441543871677,1.969027316752512e-10,2.987593783807897e-14,1.5769884457277223e-34,0.6614458420536109,2.1430344993271313e-17,8.838144392430072e-35,9.546457492985716e-05,1.2216983825172145e-07,4.565928552164118e-33,4.4581325533719284e-15,1.3117829779315406e-07,1.78579810841483e-13,0.9810818684789357,4.726704554984551e-16,0.9399718250957507,0.9898880742167019,4.430338212757989e-43,0.9975764912179875,0.9991834094028803,0.9991912554456899,0.0006315077390278038,3.073967112393502e-18,0.0010041747266204659,0.07638096374295093,0.10809171311375049,3.159546428325019e-11,0.03168423392653481,3.5451735425510695e-43,0.9989555603822916,9.834290805476792e-07,1.567457673358785e-14,0.00027452171720838514,5.636560223557627e-17,0.9989418689240941,0.9854178932007801,0.9936923000077608,6.805303654940707e-06,2.2405628187406484e-15,1.7963178310726143e-11,2.316525472852642e-08,4.2009127177757776e-05,0.5742675195711837,0.7018122171862107 -husk,rgb,6.42324245233083e-30,2.1510441208368937e-08,0.9455193407333207,7.124377378564054e-25,0.47626622112046296,4.450032292341746e-09,3.8873644650877834e-29,2.3265519440403657e-13,3.220447423077503e-12,3.962710705990614e-12,0.9974833253500062,0.9931423047111612,0.9946979243176669,1.4426205697000167e-08,2.6715200274130597e-28,5.9324377410104666e-43,0.6701143841115814,0.8061584796223712,0.6667893344339362,0.7676524691457772,0.07739669843547156,5.493507293290032e-07,3.250166971755296e-09,5.569559826432899e-09,4.475288330827783e-05,0.012516324968506437,6.6431762644791044e-34,7.570699012587797e-05,2.9143945697138423e-41,2.5006251119729077e-05,4.7769056163863595e-09,0.8983984951761878,9.529331272899787e-09,1.091687824297034e-11,4.361028788757178e-21,2.7361155379846082e-42,0.9253232105963195,0.00012745840613422664,1.546335364484304e-05,3.0286525886571893e-07,1.8133448799060679e-22,0.00434123459926271,1.018084658525085e-08,3.6552928179593064e-06,1.1588919645666132e-34,0.987287491223988,0.9186500032165711,0.9457929830221388,1.390358309119171e-34,4.07145297786255e-05,4.4014978831172204e-09,9.217935153901099e-23,1.5801784791708328e-12,2.8063048042250136e-08,5.58953883901733e-38,1.6869621900687814e-07,0.9643962194046438,0.9795190014986745,0.9939337629644118,0.9957841663927399,0.9973762962371622,0.023588583771547437,3.7588833283043007e-45,0.01866610070187239,0.0001030339826593566,1.2408876017967288e-09,0.0008323526107462878,9.435267187597067e-13,3.4651348213014793e-13,1.805686419444814e-12,1.9385849806843888e-08,4.145014499321741e-23,9.693244643074952e-22,5.470344440898794e-13,1.077498923547591e-07,0.0084976125884147,0.003508363087819329,4.851696834276888e-09,3.1482822375056043e-07,0.9858512872220183,9.700767427814358e-33,0.9736936844026423,1.5751019960616305e-05,0.9923024853179345,4.615613817452337e-13,2.7744768235240716e-05,8.579595391764255e-42,0.00011820948551516856,5.72831061158396e-26,1.1193111559690252e-32,1.7864306418736013e-13,2.042883162619359e-47,0.9281178532863246,0.9829801511723721,0.988710479694864,0.9914673010692098,3.540808398609485e-40,0.9924485002507122,0.9694161067881286,0.9920597487598348,0.9950266402113541,7.96518954327848e-27,3.530544319972281e-07,5.00148208641294e-24,0.9953864846160424,4.823089211783082e-09,3.499554568465881e-33,1.1874887010823717e-08,0.07871354553162857,3.27518412312619e-07,0.033551085572780213,2.838870518962113e-23,5.27735267706154e-26,0.9946097584778876,0.9969686126921044,0.9975652002251245,2.660716607804982e-11,0.9985015321546059,0.9922768640814027,0.9067949968868907,0.8825354823859022,0.9982760988312039,1.4976780203634729e-05,9.021427673833931e-22,0.9962160052134298,0.02939059644896696,0.9982376782841206,5.102565082571801e-11,0.0029740653697092954,1.302483817375683e-07,0.9507362310081293,1.7583063957695477e-10,3.3927790138561252e-09,6.019438867621838e-13,3.2379491770716164e-11,0.5588630591108716,0.6063507070611018,0.7032467770602582,0.00035399136657732276,2.4400668653635163e-05,1.3855068725236044e-20,1.0261406137486815e-43,1.8261836480524834e-08,1.5035366496139945e-20,0.49714545884242606,0.9347908172527308,0.7836219922922819,1.3279039140560303e-07,0.0010736926427199864,1.2329076978182755e-09,1.6157106096663089e-21,0.001796961492561499,1.981506589466224e-41,0.9975323201901428,4.621002685280809e-38,0.9957537049520038,0.9946500572796699,4.283312634667769e-05,0.0016315331450640178,0.4120540879463916,2.0808801656041706e-06,0.4522079042384421,2.1259812044703101e-41,6.468416940439727e-05,1.3978249521206742e-05,2.159109014137534e-06,1.7629748977502845e-05,0.995531435916144,0.9959643205783634,8.262356314944577e-24,0.004885541039376723,4.506025440953077e-09,8.042183113513634e-05,4.813534338447442e-44,0.009748123709076146,2.933456404454557e-29,8.152937988207051e-48,3.1899547567648193e-26,3.4525205291577473e-07,3.589240042442709e-05,5.724990912906595e-05,1.6891419164218365e-43,7.761807370999837e-21,4.721329538090202e-09,4.9400649938887424e-09,1.7064239880451086e-36,2.5988992683013903e-17,5.245939422178613e-08,0.9959279722422372,0.994547805154737,0.997451715062503,1.244309051591308e-10,1.743129540663441e-30,0.9578407653789106,1.1529173810906245e-06,6.900345254203135e-35,1.0966970162791177e-10,0.9969185145836903,7.54684836492743e-09,2.6605878792354182e-08,2.7000642440840472e-21,0.0011280714292465075,2.2819546468375697e-05,1.7973336486508807e-33,0.9984753300034434,9.419504051869903e-08,8.242520198383178e-38,1.6045452361976388e-22,6.802286203354966e-28,3.201260970737922e-32,5.228181613232696e-08,5.504709713178828e-05,6.437643088316728e-05,0.9951543333729422,8.239256144172114e-07,0.9977919783170986,0.9942858327664752,7.630809346457745e-47,0.9737056133536173,0.8053780491678219,0.8494384371923921,9.304288104613855e-21,1.8961003101295788e-08,0.03877472928065598,0.8348175951944191,0.8573232108567881,2.17706167364871e-08,0.8215723625532229,6.300056005035149e-47,0.8836090901602279,2.3315584059525873e-23,9.748400467603401e-09,1.7305514215081144e-21,2.1336422833080388e-07,0.9021665644566554,0.9961408581081048,0.9914461868200938,2.7418722114368912e-05,1.3580657948780718e-07,0.0002111563166666861,5.351531626006163e-06,5.393541294033157e-20,0.9976609186397208,0.9979959367094419 -in,rgb,1.0,0.9971939280697873,0.9999980595104502,1.0,0.9999999968059332,0.9968325476172764,1.0,0.9999999982206924,0.9999999722108271,0.999999992832131,0.9440530303379306,0.9992403532404891,0.9982149868947972,0.9990868629093023,1.0,1.0,0.9999972393029131,0.9999923041090483,0.9999962258336488,0.13105861743909092,0.9999993580203232,0.9999999999999971,0.998495440570494,1.0,0.011429262563207032,0.9999999999967375,1.0,0.00988259284409261,1.0,0.9935422485344133,0.9966432330646253,0.9999993821265573,0.9960739116283727,0.9999999999564222,1.0,1.0,0.13633185747383653,0.999999999973068,0.2121214483595907,0.9658201914374165,1.0,0.739053554764949,0.993748359137874,0.9997946012790344,1.0,0.9997791561867901,0.9999986788549785,0.9999980520468486,1.0,0.9976552433786997,0.9971120947630944,1.0,0.9999999935456063,0.9950936613558776,1.0,0.9667718055950845,0.0006429040573570511,0.00099671596619835,0.9988620355734823,0.9957627472114499,0.9516250726271372,0.9999998392289086,1.0,0.6436324542577765,0.9905909193708895,1.0,0.9999999999998086,0.9999999978270351,0.9999999978813228,0.9999999824167248,0.9951764954605622,1.0,1.0,0.9999999992667525,0.856003689662491,0.5196642658045121,0.9999999999994242,1.0,0.9999999999999991,0.0013927691735656335,1.0,0.0006285234062404612,0.9999999697166349,0.002612693951181792,0.9999999962610511,0.9999999842264335,1.0,0.9999999999892148,1.0,1.0,0.9999999989390806,1.0,0.0004639463015959493,0.001635666549079839,0.0018276940881463602,0.0024721819229333052,1.0,0.0026769809593027894,0.0006087275739349136,0.0021553834190661952,0.003963972879672295,1.0,0.9662362605471289,1.0,0.006272309817381038,0.9963218964591676,1.0,1.0,0.9999999999608555,0.9747388600087116,0.9999999999274254,1.0,1.0,0.9978517311115563,0.9835055818894892,0.9489484638605817,0.9999999975947271,0.3017169510880206,0.9994892473098361,0.9999996044038597,0.9999996045048224,0.7581515542458818,0.997350484719818,1.0,0.9921927318605881,0.002692495594491953,0.7910698575571151,0.9999999920125507,0.9753668180222783,0.9999999092792493,0.0072741231578275865,0.9999999996500006,0.9973628016312694,0.9999999990891886,0.9999999979580969,0.9999918229000554,0.999996068217055,0.9999935532699341,0.9892070844137055,0.9966635892427042,1.0,1.0,0.9958893014850999,1.0,0.13079505382057363,0.09952295224087396,0.001680453237844935,0.9999999999999998,0.9999999999998375,1.0,1.0,0.9992847631564249,1.0,0.9359745740250823,1.0,0.9959348283969955,0.9982326992581443,0.0073987038826057346,0.0012891539531837979,0.9999978831437764,0.03691226857103067,0.9999979449819212,1.0,0.0073114924154177785,0.019499920046271216,0.07153598367144698,0.02172902727748827,0.996671431012504,0.9949553399615869,1.0,0.9981797505112641,0.99705701763644,0.9998918327645749,1.0,0.9946272278151742,1.0,1.0,1.0,0.10900501213677928,0.008462692716898907,0.00737523647547435,1.0,1.0,0.9980368332078883,0.9962477822504193,1.0,1.0,0.9865382508703228,0.9951298549405637,0.9983637673127634,0.9413174994124192,0.9999999999860107,1.0,0.1125673177597856,0.9999980604238455,1.0,0.9999999899861564,0.9850996835576488,0.9963068988415695,0.9963030203153826,1.0,0.9996626646417323,0.02555529979108387,1.0,0.43212802810698453,0.9889250230581927,1.0,1.0,1.0,1.0,0.999999993025716,0.9999999999801483,0.009268295884358974,0.997531121696748,0.1570043489534105,0.935016352649216,0.9984422450880001,1.0,0.9999821115892218,0.9999998889567713,0.9999996908867509,1.0,0.9957834356348957,0.5779784301614296,0.9999887629937608,0.9999878829430252,0.9971475871549665,0.9999780850610668,1.0,0.999999596358983,1.0,0.9999999999886409,1.0,0.978266853396399,0.9999992782758391,0.9927580125768265,0.9995701527386538,0.9980083071965735,0.9999996409822044,0.9998631905184111,0.9999999999993847,1.0,0.8013298687080671,0.7785890356091024 -lay,rgb,8.847499964513264e-38,1.0,0.9999989615736317,0.9999692913378205,0.9999990149382993,0.007596476233811974,5.263306124092751e-38,2.000317743497465e-11,3.8690334103114295e-10,4.639009352918214e-11,0.9999992556532786,0.9999997648168322,0.9999996411137673,1.0,0.9999655708297607,2.0830668400352808e-50,0.051709199933347355,0.22893628224071536,0.045210362208141584,0.9936156617792757,6.313117525017501e-05,3.4278292930884425e-13,0.0018906840630680856,1.192036063170864e-15,0.9999997754427834,0.00018415315199009035,2.746335196167889e-41,0.9999996269469127,7.365729461427138e-49,1.0,0.008114147517247665,0.9999998741333985,0.006121204486147089,6.6815881560041e-14,0.999999999987651,7.398353125191783e-50,0.9982429486082111,1.0292513078068838e-09,0.9924877403781699,0.04375427745783932,0.9999989821293045,1.0,0.016606935953150524,1.0,3.380720783430971e-43,0.9999999879644789,0.9999999443216989,0.9999988901905177,4.709246009223748e-43,9.261022198449503e-05,0.006206561167941602,0.9999983839070771,5.776850205715812e-11,0.004051967585618204,3.930579616493056e-46,0.06364614379170426,0.9999999999987523,0.9999999999987885,0.999999765430235,0.9999995360513197,0.9999990596081462,6.84747192607392e-06,3.472102690677565e-52,1.0,1.0,9.863287687143214e-17,2.817635810800004e-07,1.444335211412402e-11,2.1538353107658778e-11,2.5147623106580847e-10,0.005252422666086,0.9999937425732931,0.9999993618412419,3.777792901036298e-12,0.9999999999999996,1.0,1.1340805136771628e-05,6.806654965831774e-16,1.6355072043250188e-13,0.9999999999986315,3.06073376432452e-40,0.9999999999976303,1.3920644416888945e-09,0.9999999999977476,4.465096158404288e-11,1.4221320932907004e-09,2.408468509408929e-49,9.082252208054841e-10,9.338770960321669e-34,3.846655055990091e-40,1.0362390865428057e-11,6.486529887147015e-54,0.9999999999988582,0.9999999999992986,0.9999999999985574,0.9999999999981604,5.903617881418899e-48,0.9999999999977052,0.9999999999980753,0.9999999999972036,0.9999999999950444,7.977121267107204e-36,0.03823810088866947,0.9999935661596245,0.9999999999962543,0.009935403164538892,7.090974098198389e-42,3.1117673908230093e-15,0.030093049704330042,0.02172571129833782,0.0001951901152016179,0.9999960342932243,0.9999717739552628,0.9999999662312127,0.9999996833126371,0.9999996465837894,6.362671082755478e-12,0.9999999517389523,0.9999997085636999,0.99980488150267,0.9999998214074767,0.9999999566486143,0.00011100945385083111,0.9999984395944542,0.999999978098358,0.9999947933144545,0.999999964598158,2.57720123126112e-11,0.0038263994814861707,4.126852356801748e-10,0.9999876493530065,6.35223213209384e-13,0.006465609924866545,4.950906694258683e-12,5.031221677713291e-12,0.013310638554511934,0.023193999526349103,0.0603735707601526,0.0008446208491200989,1.0,0.9999999999867932,8.564557662718176e-51,0.003899645604807875,0.9999995812508097,0.9846297060835145,0.9990371420695193,0.9999980243435317,5.0601684064868405e-14,7.347065959739096e-07,1.149465207626569e-16,0.9999986477844964,6.415369184840462e-05,4.414624724116329e-49,0.9999992427063855,3.344624533995324e-46,0.9999996314804568,0.9999998127423309,0.9999999960496002,0.9999999998608489,0.004028025531843262,0.9999999852346946,0.005875345248887292,2.5841200495647754e-49,0.9999999713978195,0.9999997690063406,0.9999966136012786,0.9999991221885455,0.999999765151479,0.9999995335271563,0.9999943590151704,0.0002662438735797998,0.006338515147887698,2.763102772866824e-06,2.7168889818109334e-51,0.0011297766543541942,4.0433504842510734e-38,3.393944132836734e-54,0.9999962913840443,0.9999998875402902,0.9999999922561967,0.99999998136676,6.573435256326841e-51,0.999999999991622,0.002442221361675244,0.010167420542014532,9.20348245481548e-45,0.9999999297084027,1.0,0.9999995288998819,0.9999997666655351,0.999999049809468,2.758231555809244e-14,2.527110767028501e-38,0.9993748233078038,1.4289015849026043e-08,2.6672325086701586e-43,2.98991861245633e-11,0.9999999452076674,0.00657954490761833,0.002323075457023675,0.9999991437368374,2.4816461663689927e-05,0.9999962741151887,8.417475732684915e-41,0.9999999512835726,0.009157767297718774,5.46747665785241e-46,0.999997527415423,0.9999598625883895,6.865609067373199e-40,2.986721578627747e-11,3.0128123141747993e-10,0.9999998362773989,0.9999997088681473,0.9999741107962868,0.9999999485342668,0.9999999259595295,1.6579644467477854e-53,0.9999998693211198,0.9999998334540192,0.9999999549530783,0.9999995264353256,0.0039961933625858575,1.0,0.3154609070572436,0.4338165085005278,1.0,0.22102949533416358,1.4454721486100577e-53,0.9999998195287335,0.9999999999163962,1.0899337227162635e-13,0.9999992659933058,0.021273333821457352,0.9999999013895877,0.9999999775441261,0.9999999123267284,1.0,1.6899755619887571e-09,4.928062578130638e-06,9.117498636914402e-12,0.9999999999931963,0.9999983909857951,0.9999995415054374 -lemon,rgb,0.021391557174778433,0.32164533463226397,0.0226837478430806,7.450594853338866e-07,0.007973403063066988,0.9363315491511017,0.004207504002095357,0.902610411078918,0.9054245217693686,0.8870347165677688,0.13745409931982178,0.05787967746613549,0.0692762479828191,0.26819872342232104,3.3701904902260067e-07,0.000796973850401044,0.1037870566502353,0.104728450458075,0.11205775531307402,0.6579058591231127,0.17841637182840206,0.054040910002237756,0.9346848788412675,0.017517751372313282,0.9032931382841207,0.015043762472952589,0.015516575121657621,0.9024731739345511,0.0012362813258608902,0.15004263681549862,0.9362183092110504,0.016616579942498554,0.9332812634667824,0.7641038399264994,7.977189399324219e-06,0.0008340436782000212,0.5862481192360829,0.10762322432919376,0.917143751396472,0.9228794109022461,1.7517833439833874e-06,0.1921734643905105,0.9349733573684311,0.0889370425341853,0.0018115396713388884,0.03922651471287994,0.01802600504214138,0.022791677471526856,0.0022890429455727176,0.8235476602559192,0.936001389993838,1.5693535927595564e-06,0.8966795452243743,0.9279492969284909,0.001351860876460316,0.9266454770377651,0.5030226350785074,0.45510861321116286,0.06217058361922585,0.08235507401605487,0.135928368687524,0.18194591550331785,0.000713570711557058,0.18057168322135814,0.13652618754611398,0.029672341560448418,0.018565261477915523,0.889244931455961,0.9003809054016652,0.9064177452156312,0.9301759266985646,1.2955349206896904e-06,2.1821091680226967e-06,0.8815346816685385,0.560947899372066,0.2185058446118248,0.014862924147958846,0.02561303660865615,0.046576868980339546,0.4237070469862202,0.017762934914380805,0.5039313357708701,0.45870584011736654,0.3742484760227902,0.9036932943887167,0.39964341601237835,0.0010852663843455086,0.09030102189173532,0.0454651318959108,0.018738879946912566,0.8995741365690352,0.0007074596927402653,0.5487625645877828,0.4098227227630645,0.4006604178336614,0.377621251853739,0.0013205624006826938,0.37253023553488873,0.5080050776885011,0.389745202670293,0.3491057202970848,0.004366089026253998,0.9217092603075712,1.0316908359175475e-06,0.31798843509723745,0.9365429168480872,0.0019136077908765883,0.019344958638550874,0.013973822307113594,0.9204701840832621,0.026332678800860293,1.2883724304500745e-06,5.738562952664656e-07,0.06173483906816081,0.10282553509293924,0.12810365538387622,0.8396485487000466,0.22263668415565852,0.054706999815254745,0.024766358537614584,0.015742355903104764,0.15412410200075066,0.8467267376443628,2.0180146500021544e-06,0.0757350313464594,0.8589129673067042,0.14701980417000018,0.8504396954781756,0.7641973385134975,0.7134431518519253,0.6563419097145815,0.7463344797440885,0.9369175727723604,0.8832971345804728,0.8325692961882204,0.15081796886153243,0.1223037384691314,0.12007527292712813,0.80417126444356,0.12992618895895272,8.822093157116066e-06,0.0012143306928907279,0.9297074189389374,3.0611901710051746e-06,0.7114608748886646,0.5906939627819532,0.75344235073022,0.04162010222158132,0.016083771532765048,0.022691735570117163,2.176727427353198e-06,0.6700714309913918,0.0010179533603366887,0.1412877203368833,0.0013489315942832683,0.08047055832032661,0.06626798866293394,0.886403435380299,0.8416549916287909,0.13363995475087104,0.902566092839928,0.12693452532511856,0.0004549205859376219,0.8943845816633298,0.9077612862994224,0.9202707173935352,0.9105936588749594,0.07532443722687995,0.0850308621433248,1.0990968508746873e-06,0.6621939710780201,0.9359625508268214,0.7240325524384579,0.0007593725864289998,0.6722658005211376,0.004176943252597239,0.0007266091040263741,6.479850485491634e-07,0.9147565396172369,0.8907036962717408,0.8930416395122832,0.0006805376523327825,8.877103957874403e-06,0.9339013424723996,0.9365058002489827,0.0018641467813968495,8.44958856653492e-06,0.39225348739286353,0.08454688602221379,0.06630102944392041,0.14121089585184904,0.6456198611163375,0.019597369462987253,0.5580121822993667,0.7398101961109979,0.0023848635407963076,0.8407319131817337,0.08998617420162172,0.9342693191990996,0.9266910813027807,2.387571985509269e-06,0.66173579822953,0.9126238981721245,0.01811986504913678,0.20098871056201467,0.9244701542086942,0.001357773277314211,1.611295763669678e-06,3.6343101515828764e-07,0.016515184400713628,0.6539931677843234,0.12232426431235983,0.9007828690781553,0.07240921071583623,0.9263222006557101,0.11807781680519064,0.06113216559120787,0.0006794137839156528,0.029162895552342808,0.012765961274127375,0.014084381982490138,2.8720756276756343e-06,0.9296095946243127,0.1773131779934864,0.10735482324432633,0.10310241147018577,0.3222130861465042,0.12875950534332187,0.0006835314148617012,0.015803773316928525,3.834059640540188e-06,0.44673306312599725,2.3000500724848357e-06,0.9226947342177079,0.016824026819744695,0.0748300530468096,0.04924314119241047,0.1140937303402595,0.7554964147274955,0.69652898107574,0.10150375728412288,1.0989886941267258e-05,0.1890820270840469,0.17690882361666627 -lie,rgb,1.8465379916835e-13,2.300678202739422e-06,0.8375178742827616,1.2358792540501836e-25,0.09128677545711539,0.6063264069974722,4.5329882825336246e-14,0.02791577928014019,0.10071609609443596,0.12344564196545897,0.9991813099259665,0.9893520162821627,0.9941070834401766,9.591569039510049e-07,1.1258428251047551e-28,8.553249947966541e-23,0.9978148949399234,0.9982076316113874,0.998143860600196,0.9999384343991602,0.9980461902241798,0.294697328822795,0.6069591732668392,0.006412580207293498,0.9096052033858204,0.5354795504261632,7.079700774947629e-16,0.941079761667494,1.4735647112359253e-21,5.094297851094358e-05,0.6145628062236473,0.549435431553893,0.7184614535224448,0.18968054511872393,2.0400555644325975e-22,2.1611966481211614e-22,0.9999482975914903,0.9393255973923742,0.9799190647324658,0.9406170654129631,1.4552031638132816e-23,0.005162374032318219,0.6969004500950763,3.802487986283921e-06,1.2050570715646335e-17,0.9427708444302578,0.5877769344969446,0.8409182386016065,1.9188438687794307e-17,0.9972763778443197,0.6117501101925304,8.124811803073381e-24,0.07629051995781572,0.839460131570569,1.141734338299804e-19,0.9134205071141949,0.9966957390730232,0.9969351745095809,0.9914188763206376,0.9965404144005761,0.9991763818516836,0.9970391499557645,4.170011767846329e-24,0.014552689544723985,0.00012240576422233886,0.008904426075058277,0.4567263317368042,0.061562766586722405,0.03485069766694622,0.07582088757580951,0.8013117798577545,4.306700833179923e-24,6.4409845912792e-23,0.04827103733138627,8.456060385215687e-05,0.012197507141198743,0.43766653377893244,0.012489177679169574,0.198787174595726,0.99716219346747,3.8255369090203365e-15,0.9976855618461173,0.9890116747780784,0.9976488356753117,0.03936181578185865,0.9889177049881799,6.104264917058777e-22,0.9151538470840281,7.768775859876076e-11,4.4478079524351895e-15,0.024875330661731705,2.118309109354001e-25,0.9958147489548687,0.9959215206039234,0.9971977602902095,0.9974278862983761,6.590675521684938e-21,0.9976605931969844,0.9973790260134594,0.9979389999967153,0.9982319990937921,8.245671528325699e-13,0.9464759376622488,6.422022380697595e-25,0.9977544170823663,0.6088521365473406,8.420224951958113e-17,0.01082009995966236,0.5930565765301142,0.9480580793209511,0.8616303564674451,2.9706195774550485e-24,1.1991547553788951e-26,0.9883467863368698,0.9980592038255628,0.9989370647614716,0.29101821231501224,0.9996441873151366,0.9877031206281391,0.9174710437702204,0.5141383531327629,0.9991315251739421,0.9956606586128008,6.384753968674038e-23,0.9932045114095555,0.9989767710400681,0.9989906531840944,0.36416419140784273,0.9995169138866422,0.9580622791643365,0.9999399629156993,0.4846346585580109,0.5709373181672506,0.05035471456392475,0.31193226485694714,0.9988745288138733,0.9983479893387812,0.9984717348735879,0.99889236245347,3.610778809164363e-05,5.634092224954341e-22,5.920241387062566e-23,0.8019046039870773,7.576602866021655e-22,0.9999194328429023,0.9999491914982713,0.9998712722332247,0.12088692242381197,0.394618857991739,0.005397523651526049,1.0737115950031743e-22,0.9993121881846802,8.865598470800215e-22,0.9992381726400372,1.0241275238999886e-19,0.996202600343484,0.9926981524996965,0.7640403865568346,0.9226984315815162,0.9982733502342165,0.3899732957809675,0.9981706353087082,2.623624909690141e-22,0.8808703689096612,0.8273284457877469,0.7358652211837848,0.8864616315684088,0.9951402652622465,0.9968437528902687,1.0000007323461234e-24,0.999529797391775,0.6145014503812638,0.9977677608959389,1.933675519318268e-23,0.9996490404903241,3.85136016655566e-14,1.3013001591472482e-25,6.886516599408084e-27,0.25194967193497536,0.778069970632143,0.8586852508562236,3.3233509647650624e-23,3.432230540201852e-22,0.6526495664584361,0.611604349276673,1.2400734060042739e-18,6.397767506601167e-19,9.034287998250363e-06,0.9967957001247955,0.9929163352667362,0.9992535816265878,0.3753946634129204,7.945626926410019e-14,0.9999500980857638,0.9855803483044466,1.3910877882981126e-17,0.45927596666679105,0.9964377472552474,0.6861269681606665,0.8447470326067951,1.661750648854059e-22,0.9991499137279772,0.9287932426330044,1.5196004778115222e-15,0.9995514135551604,0.9069024757350409,1.4250850264471103e-19,1.3764940989136958e-23,2.5838198265909233e-28,6.784415954236128e-15,0.9255400349693517,0.9324213482801232,0.9212594302631955,0.9946911605979218,0.7064790373122363,0.99830472848137,0.9893878126648809,4.238535426605948e-25,0.9016791582866881,0.32119143201015266,0.35132290679118444,4.931145058693415e-22,0.8050036713688852,0.02565934057299887,0.9983791648963263,0.9982916040784343,2.334643843152934e-06,0.9988907888914578,3.8334491854632035e-25,0.518203906504632,1.9840208616712216e-24,0.7248555945019033,1.0986333365107527e-22,0.9341893133719276,0.5503301848179862,0.9929890866082707,0.9798901313562502,2.9806098793638325e-05,0.9626440861666624,0.9984293849421684,0.7824106926290311,1.910217693753961e-21,0.9996510620140595,0.9995407910031354 -like,rgb,0.99996368310929,0.9999999711734561,0.0001064429206890526,0.9999999998913862,0.00034132692679797797,0.9993971927822688,0.9991844120121482,0.9995848190526306,0.9989334122280211,0.9969783305181411,7.692663817485673e-05,9.317737763792849e-05,8.078441544175114e-05,0.9999999784684688,0.9999999999992919,0.9999999971930618,1.0556097261414177e-05,1.0928383866920509e-05,1.1085094536415036e-05,0.0015607733190559558,2.2557055989293386e-05,8.259451611612216e-05,0.9992246672294287,0.00012406637801565848,0.9988402349731458,9.69113012534683e-06,0.9999992129659455,0.9979606748327733,0.9999999898347279,0.9999912992677529,0.9993772327000472,0.00025694360544765255,0.9988053237219398,0.8844887266684023,0.9999999999453619,0.999999994499462,0.0006651489505573095,4.185940372868089e-05,0.9865150190515867,0.9907169528471963,0.9999999990659565,0.999416019306403,0.9991223706545952,0.999997335939383,0.9999924378966099,0.0002628029213860452,0.0003037186399995258,0.00010423108347489223,0.9999938276904244,0.12813118600803453,0.9993573671082036,0.999999999266908,0.9987078301339041,0.996702830657567,0.999999678187642,0.9949670937801296,0.211897047129189,0.12862207930996855,9.168031590755184e-05,7.517879837846352e-05,7.256437900111844e-05,2.8034289930502884e-05,0.9999999997186197,0.9977242892701301,0.9999700955198221,0.00028253261804001153,1.0716496602780306e-05,0.998501117754676,0.9994421328677167,0.9992087624775502,0.9977712855032824,0.9999999992375705,0.9999999977608531,0.9983267562952541,0.9999998728207338,0.9990192185471124,9.917257276265335e-06,0.00016716020700138887,8.399406367392447e-05,0.08652800291694916,0.9999977241134683,0.147819783404309,0.001463894947805341,0.03999456525673852,0.9994763404262464,0.0007657303641899196,0.9999999932677448,3.511614348916564e-05,0.9993129982752725,0.9999977740911861,0.9995621136798374,0.9999999999780529,0.3645291777198744,0.11361386799958337,0.06681588757845025,0.04649686525119917,0.9999999693526629,0.038948459465612706,0.17469707895632244,0.040630894002255995,0.02044920943068412,0.9922268629256005,0.988953564353607,0.9999999997994486,0.0185188657377342,0.9994165300385649,0.9999669895365749,0.0001070512810530784,1.176670381014018e-05,0.9871629047911956,8.186510151814778e-06,0.9999999995013922,0.9999999999801816,0.00015736408815810566,8.469057053298337e-05,8.85099408027328e-05,0.9657642066138433,0.0002278024855675641,8.952005253192488e-05,3.2048082566896464e-05,0.00024496045191849304,0.00016823636842052588,0.2784802323746653,0.9999999969271671,0.00017273999319196196,0.6174025987968859,0.0001730930407192053,0.9675953527239254,0.014272352008255412,0.0898201737279438,0.0032543643968221928,0.6503240917868843,0.9994849686076529,0.9983832850973302,0.9554929310491586,1.4394078221354046e-05,1.1823692927853748e-05,1.1668057839692473e-05,0.05114470425856121,0.9999906062504837,0.9999999998807785,0.9999999993223767,0.9976316937266241,0.9999999893171693,0.003630060251761835,0.000740568992765498,0.03156790461705296,9.660200834595797e-05,1.053218167393694e-05,0.0002280241638371122,0.9999999958067587,0.0034700265292611342,0.9999999890729435,7.77776796609513e-05,0.9999997046930583,7.952749217790038e-05,9.608636508428182e-05,0.9996439721952131,0.9974348590215715,1.3099766851670962e-05,0.9999506793224964,1.240098983509407e-05,0.9999999698109501,0.9991465261897119,0.9995301636558688,0.9997570010966433,0.9991642272635524,8.927701526662258e-05,7.516774214360468e-05,0.9999999997380755,0.002543950418802302,0.9993502084190734,0.015711473529499715,0.9999999991076678,0.0025518948278481783,0.9992729614150775,0.9999999999866147,0.9999999999937725,0.9999780416877704,0.9996267513763306,0.9993130488148807,0.9999999981148926,0.9999999999335674,0.9990483553055488,0.9994102435866369,0.9999989478850828,0.9999994470430891,0.9999999422798596,7.496761778716638e-05,9.07154994421684e-05,7.389867161397453e-05,0.34955506763796623,0.9999772592962152,0.0005323335394992682,0.06664267418385253,0.9999957492071292,0.9429673670566936,0.0001319195210793926,0.9990336474035583,0.9961260894267151,0.9999999951753411,0.0034609597157401833,0.9984149754985591,0.9999990232355364,0.0002026253331290524,0.9935247026470047,0.9999996165113797,0.9999999987613917,0.9999999999986173,0.9999954517639236,0.0589593730053685,6.004856963151339e-05,0.9985927842680346,8.476812812351927e-05,0.99978671342419,0.00014138486819045276,0.0001257583814953604,0.9999999999554272,0.0001541613140789843,0.0003167116271528748,0.00042602167952437395,0.9999999917048344,0.9975809394157042,0.9954046838925039,1.1225551778608473e-05,1.116178610510567e-05,0.9999999709129752,1.2550139157813773e-05,0.9999999999597879,0.00024318686199961286,0.9999999999956612,0.014796545890218064,0.9999999965785704,0.9908350761600832,0.00027317646591612467,0.00017165819677996582,0.00012853191019514016,0.9999886160058122,0.15800724560164295,0.008210531611177905,8.73467585780596e-05,0.9999999997881655,8.210149305207617e-05,0.0001020255086097541 -lime,rgb,3.9595469999366417e-35,0.9999999999997973,6.916797167546295e-15,2.6582668690730037e-12,1.1166868559687744e-15,0.012324263775723304,2.789606108946904e-39,3.1568548252512067e-09,8.775965386763634e-09,2.680432157907484e-10,2.570452725188379e-12,3.6883498336810254e-13,4.16017159162616e-13,0.9999999999998168,1.2577456456726464e-10,1.7348273587496202e-43,3.5676729145228776e-19,1.302048066411743e-18,4.504093534883598e-19,4.763472959255887e-10,5.3431306568506366e-20,4.716133686224667e-27,0.0030281596107934916,3.409408243930484e-30,0.9996102203639298,8.809274634161189e-24,5.735607476205366e-36,0.9988078011775087,1.7385169968429446e-42,0.9999999976159988,0.012324260395559561,3.573428552485174e-14,0.0037747269912102627,1.1878649507775215e-15,0.00045903593682220824,2.104340052681581e-43,1.5394231823459066e-10,6.636185307834326e-24,0.09385089396599408,0.000698967441617146,2.920761748662369e-11,0.9999991090934816,0.012518396438432543,0.999999998374486,1.43508705657094e-41,3.240190037053311e-12,1.0343103965507296e-13,6.51832173194773e-15,4.959624747527795e-41,8.888076850116772e-11,0.009664695175099942,2.0177893673889757e-11,1.2818224739361948e-09,0.0005878082073773337,2.518712496312018e-42,0.002424884704442101,0.3049330662820068,0.10165287186913297,4.604258490356771e-13,5.701182200347121e-13,1.9353828755057364e-12,1.54185817903179e-20,1.2272240235466412e-43,0.9999900302004255,0.9999999805303373,8.991305374883278e-30,1.8656687406675721e-25,3.0580202062792523e-10,2.1056477609224987e-09,9.79760049132436e-09,0.001303955639335953,3.953212160089767e-12,2.670073955278997e-11,7.961162651732918e-11,0.9999999999990663,0.999998471788327,1.1765364008798327e-24,1.1401028538427032e-29,1.7254361137237593e-27,0.03774900527764102,1.2862769641165955e-35,0.1376228889783419,3.746234536205712e-19,0.004955938100379391,4.342467190274936e-09,7.720176951515322e-20,8.735128037749078e-43,2.6157751637445e-24,8.390509646633265e-33,1.8530895441635908e-35,1.6499112918134174e-09,1.7946807194872765e-43,0.6881465790052298,0.0723579251481324,0.019153522713817647,0.007322552142228001,2.3260905327485057e-42,0.004613368676400701,0.2011794415138947,0.005330431000430721,0.0008252488564709963,6.394083710690379e-39,0.0004791619461079366,1.0435529949382175e-11,0.0005693743870093923,0.015733754744301817,2.303765427114126e-41,7.745234553120615e-30,3.5536846908288744e-22,0.0002458875612612424,4.510586566364835e-23,9.290750588999092e-12,1.0935958108761404e-11,3.619574397707378e-12,1.894410614969306e-12,4.0645877933950635e-12,7.634721851075727e-13,4.71834438843834e-10,2.486112974943548e-13,4.5787437079895976e-17,2.196797130631417e-14,8.265098179563206e-11,5.947113240679377e-10,7.308713373465507e-12,1.1147795579882154e-11,0.02165046503426711,8.317786737421095e-11,2.913613745645806e-12,2.0947069394262353e-11,1.0398620809134588e-15,1.073716610319871e-07,7.215905624470251e-16,0.013823028731812487,1.0663541968819591e-10,3.859694261792861e-13,7.522959907524938e-19,4.0752525467858347e-19,7.670596834125771e-19,8.038887430962933e-11,0.9999999961603709,0.0002213731741719924,2.14676997942573e-42,0.0009511552034743618,1.4244767264036602e-11,1.6332476096568299e-09,2.8868864452863126e-10,3.382548607539405e-05,6.11990707712754e-28,2.2898616216278227e-25,3.1912673935550545e-30,6.911583401170964e-12,4.059438236260144e-14,5.92754563296698e-43,2.8487991492163522e-12,2.4866941731350185e-42,6.676254451870757e-13,7.133741977972066e-13,0.9999917008718563,0.9999682368417624,1.7955570178697534e-19,0.9999990116976007,1.8231134125260633e-19,8.567275719896969e-45,0.9999184422545595,0.9998941223792789,0.9998107441889916,0.9994811773136879,8.532819364266783e-13,6.340595101125486e-13,9.953187556556088e-12,6.77513057161644e-14,0.00965479779089017,6.692566927987055e-14,1.4946953969012775e-43,2.2208142312266083e-13,2.6131356046825503e-39,2.310097390302597e-43,3.04519029207626e-10,0.9999990528661664,0.9999875319294151,0.9999525498770659,7.647755765215247e-44,0.0006621829016458029,0.0026900729954238323,0.01575001140628601,1.4746713193777866e-41,8.121531431995881e-12,0.9999999999996121,6.151711002722193e-13,5.667065232052331e-13,2.2619177867861553e-12,3.3853084567944057e-18,2.2082797493724159e-35,1.6896742056796244e-10,1.3366921217986574e-14,6.053044776570866e-41,1.201460710261269e-12,7.397433773214265e-12,0.0054819255434291015,0.0003016195298383634,1.074495741874782e-11,1.8154456166540565e-14,0.9969296835822932,1.6025744596907522e-35,2.675444315684606e-10,0.00037862805500074744,2.586140772092652e-42,8.250814654023735e-12,6.067142619037968e-11,7.489924707680557e-36,3.679472888242651e-17,6.884707913587492e-24,0.999564549584574,5.978940226968276e-13,0.9994728612604967,2.2057100683059848e-11,1.4942120568078454e-12,1.2506333083408253e-43,1.1155574054344791e-13,1.6387267642337767e-14,8.40739853001228e-14,1.4736709941813715e-11,0.0009376492165613389,0.999965195576219,2.0177889336498974e-18,2.5025435840749864e-18,0.9999999999997955,3.1525263891836902e-18,1.3179728836711243e-43,2.187326273998728e-14,0.00029362453911514226,7.078731210091761e-21,1.6566786046762863e-11,0.00041286728658671885,4.7941676419802166e-14,1.0423890225025622e-11,6.597367771867653e-13,0.9999999927991059,1.292689452166848e-14,2.86521393607688e-14,4.632341765626017e-25,0.00034210580962354734,5.3515937202426035e-12,1.3472735334890448e-11 -long,rgb,1.6646767147598534e-12,0.026121992241904576,0.9998126816806481,0.993066877220026,0.9999227358301339,5.942923637633708e-07,8.171114596577241e-11,6.068099325709201e-09,2.0600781670652444e-08,2.8032528376039584e-08,0.9977804792617188,0.9995247485910527,0.9993568968725419,0.03845838978243185,0.9652954058279473,6.439953091459544e-16,0.9645451413871177,0.9759243440864386,0.9576614886418018,0.20169799543075295,0.5681903675121367,0.03274376922849121,4.962737286264043e-07,0.03240468427576398,0.0002769566631037415,0.99164159956904,4.208782815270432e-14,0.0003353029666954242,1.7234247737592792e-15,0.780384515701151,6.169102694649208e-07,0.9998874432570496,8.759010388682712e-07,1.4389571749015482e-07,0.9931579272908887,1.202160552799268e-15,0.46314817233880734,0.11543648151986856,5.834059550691361e-05,5.58121874586355e-06,0.9969472917253055,0.9313723905145107,9.209894409134921e-07,0.849186871829704,1.0107976448071592e-12,0.9997807847053433,0.9998873635549217,0.9998103402430126,7.060371100588626e-13,0.00015711138328091157,5.888420875563656e-07,0.996649502022095,1.619022148053584e-08,1.5406442337446787e-06,4.921471426844622e-14,4.088783785303943e-06,0.9196006739992564,0.9544915178379277,0.9994755467120869,0.9991389967349348,0.9977593674553457,0.3908276093165504,7.599823700511607e-17,0.9646099258743203,0.8844698058534032,0.005245070698431567,0.940775267266847,1.3768364472975578e-08,7.524969310306316e-09,1.5432404848409953e-08,1.2676467069331639e-06,0.996473252693837,0.9976966870052294,1.1569912100900158e-08,0.005497078032897477,0.9257972634623711,0.9832176087813803,0.014027201441276806,0.033528146515814414,0.9687652574706235,1.140154550897846e-13,0.9245985859609755,0.0012779102699509658,0.9828289707765023,8.3011206321823e-09,0.002572433165723224,1.2468024908256195e-15,0.15495386731818844,2.8897188939741538e-11,1.1051514703020498e-13,5.544174863542219e-09,6.969287999293629e-18,0.8565416776132639,0.9712944564305127,0.9760668428387547,0.9818863093246556,4.859861178553367e-15,0.9831745816633713,0.9189503732750754,0.9799623615018411,0.987587723008508,9.5307747123006e-10,6.0635888343294465e-06,0.9946965918665944,0.9910026690816671,6.224160019454584e-07,4.525153898217675e-12,0.03859504953315397,0.9977251797476713,5.816738688003821e-06,0.9832310304082706,0.9960774163886975,0.9882469945386454,0.9995752282750036,0.9988209168225183,0.9982338389345716,1.1436687175225194e-07,0.9954261342512183,0.9995487907105051,0.9995791551089971,0.9998890967074534,0.9980090923359014,7.662203978705805e-05,0.9978201029921558,0.9994536007419844,0.006891314596789841,0.9982250671070119,1.4088882828784397e-07,0.0023971112381659214,2.0603815942315936e-05,0.4570600043940082,6.320820524904203e-07,5.16137699489051e-07,1.1875758095617078e-08,1.344776423172032e-07,0.8976648343193001,0.9408708086154898,0.9551147436419772,0.000570898011917533,0.8321214542350235,0.994737800278326,1.303035384610429e-16,1.2265767281198112e-06,0.9985680839781816,0.08204515721087444,0.4803427651574047,0.16473226208692113,0.027406772808467598,0.9618159196469465,0.009025893093838977,0.998023209921015,0.003555338345209118,2.0737525784902162e-15,0.9976534918556097,4.521372526510663e-14,0.9991922534505233,0.9994403699707659,0.0005265217854064215,0.006206929421387935,0.8924369236836626,0.00010071011425347267,0.9110413001997953,9.873590098771591e-15,0.00045541894011243687,0.00015617382951255707,4.389161202085518e-05,0.00014479696407454615,0.9993072739558074,0.9990941205244832,0.9951450487944116,0.006347159293828319,5.961552222663501e-07,0.00048605078536731835,2.201133851215135e-16,0.008569987881014528,7.251874466751578e-11,4.347640697721987e-18,0.9844380470625149,3.137539111508325e-05,0.00042788594731279925,0.0004605486301390925,4.838195226276093e-16,0.9935111875667417,6.031271507335903e-07,6.303457259786005e-07,1.3254889545534122e-13,0.9995501295838202,0.019087900785312074,0.9991011435061703,0.9994258931527893,0.9975843247454861,1.1022215070479965e-06,1.0647398744036435e-12,0.5989286546824933,5.0210549482524594e-05,4.704224453950306e-13,2.2425926497470705e-07,0.9992216773492243,7.771613768943717e-07,1.4984487867192352e-06,0.9981407780755054,0.0029494017266595363,0.0001369278941891932,5.0332614451184755e-14,0.9964184279538455,2.9514992895503545e-06,5.852381561457826e-14,0.9970839058573994,0.9718905870107738,2.2676032304934898e-13,1.9973786271995287e-05,0.060024837069027975,0.00034721404996318863,0.9993303744921854,2.156304399361473e-05,0.9987774043853882,0.9995474609943276,1.3782039703635295e-17,0.9998051714482818,0.9999073616899118,0.9999101492242577,0.9984515888702072,1.2512778841278078e-06,0.9739674754529317,0.977252812818921,0.9812406605153303,0.026100483212678237,0.9638557615734417,1.2476512144802847e-17,0.9998886151239341,0.984534008988562,3.474271717995161e-05,0.9979567833330759,4.601283904509141e-06,0.9998886711319146,0.9994620034703885,0.9996545146680501,0.8749730717389936,1.531296222526076e-05,0.0009727727073443415,0.027973105793024096,0.9955549163118486,0.9952074851336348,0.9965066747719573 -look,rgb,0.9986306814835534,1.0,0.4883010898439887,1.0,0.9992501879744314,0.7682244710532032,0.9988670138966114,0.04013751305824302,0.013251916578641273,0.0014889768436236776,0.00011107326516294603,0.016721170574749457,0.004560389554602729,1.0,1.0,0.9999999999999754,1.1410396562719473e-08,2.188337532529459e-08,8.271222825617813e-09,5.365979756274345e-08,3.2316596377379485e-10,1.8914017339044976e-09,0.5632080238815453,9.750558777553131e-08,0.9998914387691444,8.683119910741282e-06,0.9999986317156341,0.9995655026658737,0.9999999999992151,1.0,0.7612003495243811,0.9829947088942141,0.4585099648920146,1.7053059089349883e-06,1.0,0.9999999999999165,5.0458239655578766e-08,2.9690107462013365e-10,0.29964459299986107,0.036503116489822414,1.0,0.9999999999999996,0.681387847734911,1.0,0.999999925995864,0.7479492985640754,0.9873687620800341,0.46540182291307336,0.9999998824671132,1.261311376954065e-07,0.7325288560346693,1.0,0.006717758264724416,0.10052446573585695,0.9999999997667339,0.11804250465945654,0.9962002208168526,0.9939742379748834,0.011621577496154393,0.0015625537117423783,9.493864632972561e-05,2.0837314708038318e-10,0.9999999999999996,0.9999999999999918,1.0,2.2385683837993618e-08,3.9595359961367513e-07,0.00412068341967897,0.024437250734343264,0.020597365604201442,0.2008123019062698,1.0,1.0,0.0027703577432212994,1.0,0.9999999999999964,3.48125530568757e-06,2.7798603904101748e-08,2.978906857228679e-09,0.9904941940428221,0.9999892894835481,0.9873206234946931,1.5665417080736828e-10,0.9724955127666861,0.030887496667696517,1.0954992207803027e-10,0.9999999999997309,4.5355741160278173e-10,0.5224089757968202,0.9999880790714536,0.032855708596557766,1.0,0.9984386798589742,0.9970010857999426,0.9882225731591626,0.9805918684412699,0.9999999999944511,0.9715382149881892,0.9918145479377563,0.9620984780049547,0.9035218107731128,0.9701500009913847,0.025604408948217954,1.0,0.9389130960052143,0.7946824576906485,0.9999992089799676,6.420188749758233e-08,0.00012034382926693886,0.01612342823330787,4.970248528881623e-07,1.0,1.0,0.07487957799872864,0.00079765304570437,0.0002836040977064386,1.9202384419025495e-05,0.0002498493088613485,0.018376672943148546,0.006727159593388142,0.9831364613912754,0.00097277131852879,5.36780258336307e-07,1.0,0.04249018235203534,0.018962603877969483,0.001422871745909492,2.525349900586302e-05,1.4973418501977277e-08,9.212698438836994e-09,2.746127579827339e-06,2.6392397049641673e-07,0.8087314421223984,0.003060410585826955,1.2133098943704315e-05,2.0682846851282902e-09,4.791718236221994e-09,7.3410484933091535e-09,5.474441140044614e-08,1.0,1.0,0.9999999999999905,0.16898778416342713,1.0,8.363900733713237e-08,7.34697785088695e-08,0.00010703973048424753,4.426462149392412e-09,1.027610324459735e-06,4.955704467485585e-08,1.0,1.140397210550837e-09,0.9999999999995282,9.826188205636981e-05,0.9999999997971121,0.0021474226215133802,0.010380574418266815,0.9999991626559953,0.9999964777069806,2.0112096964775093e-09,0.9999999626844281,2.6562941183738612e-09,0.9999999999998448,0.999983076289161,0.9999810996450805,0.9999761702395092,0.9998729228539511,0.004462863674979867,0.00133763340418221,1.0,1.1304241420524503e-09,0.7298189742666669,3.3348770018637184e-09,0.9999999999999967,1.5818841363672715e-09,0.999061650396972,1.0,1.0,0.9999999747570743,0.9999985621052451,0.999991564660218,0.9999999999999922,1.0,0.4882897275782171,0.792666662677656,0.9999999959010943,1.0,1.0,0.0013618116970844237,0.008437536336295817,8.104705583702444e-05,4.4981296183131646e-08,0.999477516832827,7.490316456484495e-08,9.214341397462538e-09,0.9999999236678485,1.0079417165207797e-05,0.007623179122651004,0.5638540799670306,0.06482878780646854,1.0,9.447493190436327e-10,0.9990159643358395,0.9999970779401786,0.00034035729900334656,0.040749195958716705,0.9999999996900917,1.0,1.0,0.9999736209555267,4.362033190502312e-09,2.2188623953264166e-10,0.9998693232646789,0.004439934732960511,0.9999452326337027,0.002410906878123532,0.03739926290940402,1.0,0.5967056042474808,0.9962798929485758,0.998134656492602,1.0,0.1646536478839373,0.9999999999999598,2.413373376795857e-08,3.500066429407173e-08,1.0,1.044407322880461e-08,1.0,0.9825086873635266,1.0,1.019114182125926e-09,1.0,0.02915947989770458,0.9855930868638167,0.04390272142796213,0.09482259276449452,1.0,2.4524877248418217e-08,1.7507366204315312e-09,3.5452996849611884e-10,1.0,1.8159233957673906e-05,6.625610837356672e-05 -object,rgb,0.9847646841521447,0.9996349094414373,0.11148889867251233,0.9999999618037888,0.26928926318975877,0.7242309955869249,0.9771685342338751,0.7291585244592457,0.6531916670800321,0.5651037664766312,0.03661301438827979,0.06659174944505365,0.056538668131224316,0.9997240133826383,0.9999999970305489,0.9999183436550286,0.013881715499190648,0.014471809762553783,0.013481481407008892,0.027762372985277048,0.011851259499148926,0.0289621596182133,0.6999899265238747,0.05684964945028556,0.7918498297707303,0.035859547698205235,0.996993482867304,0.7490227043355168,0.9998331692777698,0.9977322530228303,0.7219546490531017,0.18423119814515374,0.6683617676192444,0.2766580878985097,0.9999999205858999,0.999891586851697,0.02363395576102952,0.017051818899822522,0.5000474155754482,0.4899817474994427,0.9999998582740938,0.9838718937932509,0.6974742475212556,0.999025193708803,0.9974255092559241,0.12788481938496102,0.1904157835223396,0.11022478146344405,0.9973273016807436,0.08209058746005704,0.718628268163806,0.9999998784600966,0.6385785990705645,0.5769150602285897,0.9993368180920448,0.5491508668685117,0.3551263935487409,0.3225097228833079,0.06362220685222578,0.049581555161694525,0.03584447119558673,0.012265394914929676,0.9999683868678081,0.9725708261880737,0.9964002828593739,0.056829447455932026,0.02946928084461704,0.6277260270921043,0.7070876479120889,0.677874828491955,0.6134542802726618,0.9999998858667326,0.9999997709164709,0.6205281686518221,0.9987299604411749,0.9779636072009356,0.034564211688866475,0.05172428051160583,0.03126922188892761,0.29715002215546643,0.9951712508147484,0.31096150424300023,0.025863199521491576,0.2492999324133459,0.7112590418828326,0.02257659437933822,0.9998665898038365,0.017582285781633348,0.9359773673735651,0.9950924267081818,0.7258901484506837,0.9999883756413941,0.4067744739949131,0.3342648211380444,0.2834961034210068,0.26113860570379693,0.9997357062809082,0.2478202893694754,0.32810886989546284,0.24306805033406134,0.2061253717085326,0.9469759295751325,0.4730852780487789,0.9999999426005342,0.21279700217782552,0.7276282686647894,0.9953607552193217,0.05176232623622714,0.0444411629053894,0.45667102980328883,0.02467127630299804,0.9999999056871836,0.999999983867518,0.08169657245818648,0.04605597961209288,0.04103060163124381,0.357026957286714,0.04380213852694414,0.06733785489666064,0.061043106519592535,0.18474022067293386,0.04931495236605774,0.10934508406412069,0.9999997449048819,0.07635036040926355,0.24376141489644526,0.05154805719219418,0.35836073407971114,0.04248438070871124,0.07754325749472368,0.04230872291085077,0.1885449180443036,0.7355925620169361,0.6229751439529513,0.3364213062414032,0.012173100287589897,0.012945404837858252,0.013275171601654211,0.06166450338496764,0.9978731845615231,0.9999998832530151,0.9999423364160741,0.6069089459673265,0.9999994712615243,0.033749478101853234,0.02474071543795397,0.08511463052089323,0.03447458362403207,0.03222177333729786,0.06040895922215131,0.9999996976764972,0.02827646969993567,0.9998439812788134,0.03614456426698417,0.99935911000959,0.05160366114047344,0.06282246577828253,0.8820546211812775,0.8111634134990112,0.012349903316372153,0.9384007497682014,0.012559688899849663,0.999845071612303,0.8263311233812923,0.8438696630550857,0.8610719529138097,0.8021233204934461,0.05656782505052511,0.04867326287531535,0.9999999336600343,0.026067873472255625,0.7178404711249671,0.04313768410233896,0.9999489197772061,0.026184812658328286,0.9782000583105319,0.9999902969536971,0.9999999898148612,0.9499359902066848,0.8759867950194885,0.8412393461069834,0.9999352674198104,0.9999999092246477,0.68417209539047,0.7268921098335389,0.9987745474974095,0.9999952896782772,0.9994085802491413,0.04877197234966986,0.06114703575253302,0.035262164342760825,0.14446311875529633,0.9877593051210373,0.023408902838030373,0.068095382630758,0.9976362159129601,0.3127519076504959,0.0613247860096462,0.6862727210905626,0.5600605598601711,0.9999996654943066,0.028303434196032057,0.747945267153613,0.9964873516231941,0.044741027398772594,0.5172202073034724,0.9992889459763606,0.9999998449274407,0.9999999958846701,0.9939020016808158,0.07131440357146729,0.017873552335945474,0.7818523000489455,0.056435548456866005,0.8571775481693303,0.05389615315067461,0.07422682167659041,0.9999849625217516,0.11695811908711255,0.22138836919581015,0.23827468761552023,0.9999995400092327,0.6050851107603944,0.963606244783833,0.014537586558818214,0.015010862525955146,0.9996329406733964,0.01348275126625456,0.9999855131682128,0.18392083485609148,0.9999999810607735,0.05689320998077982,0.9999997173099751,0.4880540570293781,0.1878050170593436,0.0766362440283407,0.08384523891508655,0.9978799543236652,0.0913403382330126,0.035902158259795036,0.021855881318899487,0.9999998342756103,0.030236357331247046,0.03533320596269886 -on,rgb,0.9880029451489474,1.0,0.9987513130923455,1.0,0.99969183420476,0.9999999999999998,0.03959320403983988,0.9999999999997569,0.9999999999995506,0.9999999999906426,0.999584358431455,0.9996020821548629,0.9994698688672284,1.0,1.0,0.9997626023563352,0.040931497625912694,0.08326570462134225,0.04544553611505431,0.999994142310876,0.020350447652992376,4.107042651892968e-05,0.9999999999999996,3.552902647638575e-06,1.0,0.0006880162226376069,0.9997571778919633,1.0,0.9995227416388588,1.0,0.9999999999999998,0.9998735199969485,0.9999999999999996,0.9999996057290512,1.0,0.9994939450724121,0.9999765341326171,0.0005073668173025828,0.9999999999999987,0.9999999999999856,1.0,1.0,0.9999999999999998,1.0,0.5949792586236196,0.9999772662465028,0.9999384258115431,0.9986697903526247,0.7512357215400772,0.9999998671686462,0.9999999999999998,1.0,0.9999999999984837,0.9999999999999951,0.9719948751591401,0.9999999999999964,0.9999999999999407,0.9999999999997808,0.9996148835520436,0.999421544118758,0.9994833761018933,0.013070799319805917,0.9999843881775679,1.0,1.0,1.0072213801601575e-05,7.415690783020257e-05,0.999999999996239,0.9999999999995728,0.9999999999997036,0.999999999999998,1.0,1.0,0.9999999999915081,1.0,1.0,0.00023290521567926182,6.974713410438734e-06,2.769771116117978e-05,0.9999999999993958,0.9993558373400866,0.9999999999998215,0.738796537355742,0.9999999999957003,0.9999999999997264,0.39927847624555396,0.9996252069335646,0.0002922530762428287,0.9558828292053259,0.9994618059261161,0.999999999999639,0.9999994458234664,0.9999999999999887,0.9999999999997302,0.9999999999988514,0.9999999999971125,0.9983390365955627,0.9999999999954023,0.9999999999998899,0.9999999999956981,0.9999999999753779,0.00397033316182511,0.9999999999999782,1.0,0.9999999999699365,1.0,0.23075513045059787,4.265773316752138e-06,0.007313614675725291,0.9999999999999625,0.0008153850334280693,1.0,1.0,0.9999374545307838,0.9996781835020913,0.9997486671800886,0.9999999965950097,0.999989581233538,0.9995076179382785,0.9115823112623621,0.9998329224286066,0.9999738818759564,0.9999999834539275,1.0,0.9999634097313219,0.9999999999998117,0.9999761384353798,0.9999999983747514,0.9999964075006094,0.9999322470147104,0.9999998849080839,0.9999973164552692,1.0,0.9999999999929723,0.9999999933724666,0.05956912299322945,0.04251242213854155,0.059624016626930974,0.9999995753636528,1.0,1.0,0.9999847610871258,0.9999999999999976,1.0,0.9999986785637782,0.9999852604619998,0.9999999995667483,2.0577453921784878e-05,9.331696707622117e-05,5.627381813429485e-06,1.0,0.999568265492101,0.9992082217907631,0.9996010026674053,0.9745911358125151,0.999516996452193,0.999696370782699,1.0,1.0,0.0281473739164587,1.0,0.028063254050862473,0.986467497045225,1.0,1.0,1.0,1.0,0.9996580091664105,0.9994366377806645,1.0,0.9995408375891874,0.9999999999999998,0.9999354185362781,0.9999392375096262,0.9997538715422407,0.044035715664243906,0.9999997303175251,1.0,1.0,1.0,1.0,0.9998012249164923,1.0,0.9999999999999996,1.0,0.9417904100622498,1.0,1.0,0.9994285326864513,0.99962945373406,0.9995172345879131,0.9998443799171632,0.9913471589569146,0.99997374246856,0.9999725889167455,0.8366853312208469,0.9999999948817697,0.9999237388646162,0.9999999999999996,0.9999999999999916,1.0,0.9993449472798122,1.0,0.9997934050743149,0.9999853880838927,0.9999999999999867,0.9658844502753667,1.0,1.0,0.998108101318788,0.9994117909077492,0.0007028671002625063,1.0,0.9995730802131642,1.0,0.9999494134631033,0.9998665423931754,0.9999984483329003,0.9997855390341959,0.9998822150397072,0.9999638637595324,1.0,0.9999999999999973,1.0,0.10456450815796084,0.12004172913655779,1.0,0.12398885956890016,0.9999986637258607,0.9998303978268481,1.0,0.8474145505828536,1.0,0.9999999999999809,0.9998992086559144,0.999962183317952,0.9998345082868737,1.0,0.9999907336204631,0.9997959356172361,0.00030020148304746644,1.0,0.9996358537236084,0.9998454154364422 -orang,rgb,1.0518668792677027e-22,3.7467926100253063e-06,0.00019814393792537708,8.887541967171021e-54,2.227024254768712e-08,0.9999998478146558,2.1942075444157068e-26,0.9996935202649699,0.9999544821684259,0.9999137416495903,0.9974950471683353,0.2736232945898491,0.6248937717691664,4.6996094189546717e-07,7.4950387420728005e-59,1.9875422572357763e-40,0.9368692002854938,0.9550626260849965,0.9623439751195048,0.9999999939478852,0.9939614582902373,5.420305127752821e-05,0.9999998188324917,2.3002513706186367e-09,0.9999999597505344,2.059821796355384e-06,2.343184262895695e-26,0.9999999754174954,4.381872710781455e-38,2.849603004156742e-06,0.999999853330471,1.0476787921147057e-05,0.9999998970326406,0.9975751478160662,2.2447967609036046e-45,7.746636923210004e-40,0.9999999837643476,0.11577350948811452,0.999999995117298,0.9999999801333346,1.0825816961954445e-49,0.0022823884792841065,0.9999999005694483,1.15491637016261e-08,1.958251363892989e-32,0.009972351090704669,1.846897832345248e-05,0.00020771218076969707,9.127147792993622e-32,0.9999999706636964,0.9999998470733203,3.344900668579928e-50,0.9998925876886233,0.9999999377224701,1.5822539132896957e-35,0.9999999745635095,0.9999964022990951,0.9999927654404015,0.40100561776951754,0.8711581260722484,0.9973103258158535,0.9900222671974537,2.7599669639182545e-42,0.005674536846653477,5.136528578767581e-06,2.8049887728318448e-08,2.511315732086886e-06,0.9997918510689978,0.9997428111156416,0.9999356536207077,0.9999999268509323,6.652627237288842e-51,1.6324695495607986e-48,0.9995873406719075,0.013876991721967042,0.012144225447289637,1.0724180926820933e-06,2.484261170994115e-08,1.4700614605977777e-05,0.999988793057918,3.506701924134166e-25,0.9999976221101923,0.9997023139860407,0.9999786151342752,0.9998169649304635,0.999189058144723,8.43223592230856e-39,0.036458510242654035,5.689752439218945e-18,5.315611347979147e-25,0.9995808312719486,6.159725963837091e-44,0.999997761405498,0.99997872044315,0.9999836326443557,0.9999777513997644,3.834312408589672e-37,0.9999780727021894,0.9999974418555175,0.9999859305685899,0.9999753572011849,1.0556393146680747e-24,0.9999999812631241,2.64389202570454e-52,0.999942277620726,0.9999998537796672,2.926710175172833e-31,6.874228420371945e-09,2.5489234071227806e-06,0.9999999801189874,0.00016457672744504118,4.251002099888534e-51,1.8467374673317227e-55,0.32890685236603867,0.9742161483018683,0.9953832411761973,0.9998613781686492,0.9999272903770002,0.19668145727455769,0.000565701244713601,6.933367903602484e-06,0.9986415291079094,0.9999999745086225,1.1231321849485538e-48,0.7035006570348527,0.9999999988889388,0.9979748306862241,0.9999380096664341,0.999999986200897,0.9999805821763991,0.9999999954878731,0.9993892499689512,0.999999824476166,0.9996397741453323,0.9998461591581291,0.9944610696802032,0.977172441181718,0.9783483655343403,0.99999998483366,9.557303902427837e-07,1.147951544023453e-44,6.943718708117108e-40,0.9999999239358377,1.296726934369301e-46,0.9999999968653162,0.9999999856666519,0.9999999985024473,4.218769800494569e-06,1.0607889942209227e-06,4.96347318434988e-09,2.883508214552815e-48,0.999999825228599,1.0434099797211475e-38,0.9979832986130499,1.3657926898000244e-35,0.8463062770080509,0.5213492562202724,0.9999997270894699,0.9999997637522166,0.9826916422083796,0.9999989932134479,0.9768806971322981,8.54548725309043e-41,0.9999999207525757,0.99999992070418,0.9999999105092847,0.9999999592460681,0.7566374954251835,0.8970821444143103,5.8768826478052946e-52,0.9999998802471811,0.9999998489368453,0.9999997089950484,2.480533524626529e-41,0.9999999346607751,1.7290181578635346e-26,3.7143597470025826e-44,1.7186566530881994e-55,0.9999986946789724,0.9999997859256685,0.9999998957665666,3.1556224728504127e-41,6.631063888975705e-45,0.999999850957644,0.9999998555852674,1.2112647461517604e-33,3.0234739805456484e-41,6.574871664585694e-05,0.8929156340318258,0.5284931672878338,0.9980060637402975,0.9913666789676867,2.492354833207387e-23,0.9999999761667465,0.9999974472364537,7.151483465906975e-32,0.9999479352719138,0.9148780957290281,0.9999998842692163,0.9999999341956206,7.28377784358725e-48,0.9999997250036093,0.9999999787870173,1.1832178193011772e-25,0.9998360890840767,0.9999999650088222,2.1353926170806203e-35,6.887348712131909e-50,2.7547096563323256e-58,5.344095974012426e-25,0.9998582830891712,0.1633384148311711,0.9999999628089025,0.6989210686931826,0.9999999174777566,0.989220154583702,0.3364687893478244,1.2538755831063644e-43,0.0012593108920145044,1.1024745901236687e-06,2.076850956723041e-06,5.918798458076802e-47,0.9999999253357292,0.010149549853030201,0.9648429312545926,0.9563397597890033,3.852955682390002e-06,0.9899881172464573,1.1320108676808965e-43,7.182878247000846e-06,3.84601114584838e-49,0.9621390354771336,3.8261976506555905e-48,0.9999999762825152,1.1210163754349882e-05,0.6838663728686635,0.08253238685219534,4.1513878715159697e-07,0.9999935318619114,0.9999996783870042,0.0136919373998311,1.26844037730874e-43,0.99980505633118,0.9996424660589894 -out,rgb,0.32535593519475664,0.9942603729285932,0.03684893505978002,0.9999845225629868,0.07806543092095165,0.24851327236697168,0.24594273653850418,0.17354878825264136,0.1459034600145505,0.1081142110955144,0.016184030338450544,0.02584592487140343,0.022603075239892554,0.9954076642841156,0.9999977791281374,0.9261307574384302,0.005069677470424613,0.005446754147546799,0.004954956649173638,0.011593403414054085,0.003926524302281544,0.004864689980646045,0.2259721504816521,0.007026722581709815,0.4082806417763951,0.008706996655164861,0.5830855172547377,0.3610878825709077,0.8884709870284296,0.9767978261490434,0.24714894275707702,0.05883668581716186,0.21115669711947693,0.03773489248345397,0.9999822316700967,0.9121898432609353,0.010408357539092035,0.003961658074958676,0.16279329258573436,0.13589815620424162,0.9999618271456704,0.8981844703268823,0.23330447302406407,0.9878144540097326,0.5681717687900656,0.04656362253165053,0.061857009994855154,0.036451248409636,0.5650530231414227,0.020594583178751357,0.24360840726473845,0.9999655967278129,0.13423874863308424,0.16350226795691067,0.7607742320937315,0.16039282565380672,0.15885358457171606,0.14359599703479445,0.02498329833575638,0.020373171869536827,0.01582373896294654,0.0038355047008081767,0.9594284598822506,0.850871942243685,0.9668344548009206,0.006766958418235432,0.006474504964825029,0.12620242923770986,0.16189860908301557,0.15565483955897882,0.18124887710606388,0.9999659475317028,0.9999457173077375,0.11999988301700007,0.9843061854269828,0.8726933400916825,0.007929903701756388,0.006517111289243459,0.005053130911454969,0.13182561422478906,0.507181980784224,0.13761568040005873,0.0059436464461263055,0.11001750808314609,0.1665428938976188,0.005296076226802532,0.9017951070624004,0.004017348824538269,0.1631451721220408,0.5058610071653912,0.16940345553166578,0.9790408813419417,0.18413624790124014,0.14947200068845973,0.1255548025124335,0.11534861825728206,0.8544811322051118,0.10935142593125406,0.14567986128265853,0.10725607423722543,0.09088267262113688,0.1573221325065578,0.12943975152193882,0.9999797945594127,0.09359763898858121,0.25218686045449284,0.4725580539208501,0.006681663005343501,0.011582390074620044,0.12228416489145696,0.006624756042744117,0.9999709151713226,0.9999919858967641,0.03193676824980212,0.01955140170755132,0.017956973670611404,0.05584112801248887,0.020265932632088198,0.025898126783852587,0.02005610019090356,0.05842329637550854,0.021956482062914527,0.026422838592059492,0.9999396105931578,0.030762241541149992,0.08577625492557084,0.022802193352025515,0.05797809784574256,0.01298514805996144,0.014522868125598868,0.018626177982576674,0.027244104194830823,0.256276606955657,0.12158314035492213,0.051886956296016355,0.004502183634064013,0.004742450796382839,0.0049443894330733805,0.017063033708672574,0.9778688330040514,0.9999761223780549,0.9422709556651253,0.17706789483894617,0.9998986964114811,0.01336914391223229,0.010944989184936279,0.034576695957111665,0.0052925230244427555,0.007065322185088688,0.007065730386939391,0.9999315615139014,0.008421724573169871,0.891678016627863,0.01603278013270435,0.7648675969188382,0.02112311182767403,0.024917219505558925,0.559161070007248,0.4681699965264667,0.00440582446886638,0.6820734912425042,0.004493320489433895,0.8880849589130355,0.46150848753426876,0.4753987210847205,0.4877968573875813,0.4133100546897152,0.022904144283353366,0.02009837915408521,0.9999775247869502,0.008150337806022544,0.2431402142885925,0.01105846117198492,0.9449222218784296,0.00846848448569625,0.2515815661711723,0.9814689955911707,0.9999946635367508,0.7091983668378319,0.5448121186846506,0.48456844971294755,0.9355777492317376,0.9999805505806026,0.21702340750724913,0.25174357428647814,0.6828286765074494,0.9994929173357888,0.9915870759668133,0.020121778247225705,0.0242619306488603,0.01564214166338499,0.019608223031598336,0.3566181418855963,0.010533296318994278,0.014218124722460704,0.585456821003956,0.049949821965873865,0.025425882049572742,0.222289023361841,0.15458873003922724,0.9999270246789486,0.00823546542521806,0.3489329327505761,0.561323652768148,0.02050841088276655,0.14164634079230165,0.7522830414083828,0.9999581025936581,0.9999971401277513,0.4658950237420985,0.012641110927867214,0.004017198073109378,0.39869881963347886,0.02271582725147831,0.4706609948860371,0.02321523635943032,0.02901813190902672,0.9750418597481028,0.040533432248261676,0.06845122066389811,0.07563846896107221,0.9999085570189421,0.17628391604628527,0.8184866356899675,0.0055271117339233625,0.005723959614005233,0.9942360940254743,0.0051933755997512305,0.9756639167332709,0.058186875087782544,0.9999936959925783,0.00896445982094754,0.9999360611730103,0.13319199430336784,0.060198771741626335,0.030824023723717037,0.03166010041344527,0.9778635821654263,0.017314680421065185,0.009634968267114854,0.004307380128568321,0.9999694257083148,0.01386935535944389,0.01608412759799608 -plum,rgb,0.9999999999996836,5.45344862669468e-20,0.012590158825459004,1.1858126978511038e-05,0.029105879667112554,1.7454961167403299e-09,0.9999999999999989,5.199808067115131e-05,2.4804928727789875e-05,0.00023945601322568566,0.000489831085748753,0.0012443180377972327,0.001236266200785062,4.6103989463432755e-20,7.58200895698568e-07,1.0,0.9541815307304319,0.8955535441519896,0.9486026351193454,4.627546728284235e-05,0.9906303175025041,0.9999997855480285,4.515079413857537e-09,0.9999999976262226,2.9776217173448676e-13,0.99992275413831,0.999999999999921,6.234728627345781e-13,1.0,1.7011967578489387e-17,1.7411213220407517e-09,0.0037244826635958513,3.752939439906889e-09,0.3989854692314922,7.144252344627682e-11,1.0,8.448936944020553e-05,0.9999761386860597,3.0459056091759274e-10,1.0118928352364012e-08,2.949915040186841e-06,9.310042965144918e-16,1.6767861855110541e-09,1.071272149251942e-17,1.0,0.00024521036623657003,0.0018739666644906657,0.013123103263814688,1.0,0.00027454367326081074,2.0564293456093016e-09,3.674564633876638e-06,8.876515584528974e-05,1.2426393296936417e-08,1.0,4.526925036047743e-09,2.958763006084083e-11,6.720472582331416e-11,0.0011030467989359668,0.0010756021201821146,0.0005906188423488504,0.9960902490599524,1.0,4.445341416974808e-15,6.482364988232205e-17,0.9999999964905968,0.9999951080573822,0.0002289141787470027,6.698688745241174e-05,2.346551499183301e-05,7.421538318867909e-09,1.0388201429346213e-05,3.3027344353846654e-06,0.0005572450792552211,2.2364906210681782e-19,1.411856372194352e-15,0.9999806708051348,0.9999999954616394,0.9999998853791356,1.2906244288285092e-10,0.9999999999998628,5.822870488397325e-11,0.9841287730924789,4.697703748760223e-10,4.145348067619723e-05,0.9938091233167463,1.0,0.9999862107211019,0.9999999999894371,0.9999999999998279,7.994974528803549e-05,1.0,1.0932016767699692e-11,7.95584309789261e-11,1.9750848045188215e-10,3.6341637896221556e-10,1.0,4.914146540970145e-10,4.324374463216153e-11,4.6001873037237113e-10,1.4940077812242216e-09,0.999999999999998,1.2922581693634215e-08,5.154461247345428e-06,1.8064167370550948e-09,1.4759510116917122e-09,1.0,0.9999999959680888,0.9989867972302043,2.0173124310628814e-08,0.9998126545347359,5.872770259277899e-06,4.350123266153222e-06,0.0002725904961561272,0.0005260737272097082,0.0003470984102358818,0.009997983130262894,1.8338207285947036e-05,0.001587757119600115,0.2847053182667356,0.00506780545496891,4.9299584140395814e-05,8.366289843581865e-05,7.679361258907848e-06,0.0001387185252113266,5.590352033401404e-10,4.797579894543003e-05,0.004148893637978275,0.0005631102346865057,0.34137849950014365,1.1387179055919014e-06,0.4549683841281678,1.6310201707533698e-09,0.0004597024909464233,0.015350054101223665,0.9384424952024317,0.9539610984297929,0.9298735678242488,0.0002642156767369676,2.188353682138844e-17,1.1866102239465158e-10,1.0,9.17153962508997e-09,5.452051345517589e-06,2.3021664394222783e-05,5.549089206521317e-05,2.969715225927821e-08,0.9999999414159796,0.9999939879865322,0.9999999980419083,8.118923191976701e-06,0.030829299661021044,1.0,0.00046297264829821993,1.0,0.0009568545598763804,0.0008422857835335931,2.0516195931878615e-14,3.956103910904375e-14,0.9745834996766449,5.6368923443881535e-15,0.9735935202185401,1.0,9.842474739805443e-14,1.2979429777383428e-13,2.1499888869671068e-13,3.8319058429997904e-13,0.0007876635490243444,0.001014935615874664,5.400302427733592e-06,0.02118468611608363,2.056140295946637e-09,0.02652940960577961,1.0,0.009636482442290041,0.9999999999999991,1.0,4.900653658753206e-07,6.086020929611502e-15,2.762504731068063e-14,6.806200988886642e-14,1.0,5.754251431334529e-11,4.822164323570342e-09,1.4736653251363573e-09,1.0,1.022245205716917e-05,9.42370243184667e-20,0.0010333601815138208,0.0009844822882578608,0.0005412626356629016,0.9625595149042213,0.9999999999997853,7.447047119569666e-05,0.08483450693000444,1.0,0.007158375833514722,0.0001971145161064355,2.949795878331903e-09,1.9376709882916276e-08,6.189491105728129e-06,0.051707856502417514,1.2811798115085892e-12,0.9999999999998486,2.547730131809227e-05,1.5900599074857035e-08,1.0,6.7074051808439795e-06,1.2522172030343117e-06,0.999999999999899,0.8183710930191984,0.9999774491899389,3.143166379467966e-13,0.000985415347078853,4.557944056250735e-13,0.00010626260647521181,0.0004938938904997791,1.0,0.0021299167689112024,0.005724711942286301,0.0019713917886938466,5.247212950451302e-06,9.246419349281674e-09,1.0062076081858921e-14,0.8652851834915609,0.8443864800169194,5.491363391528352e-20,0.8385936972254824,1.0,0.005089726442173786,8.04360188455932e-11,0.9990569483648228,4.596876298156188e-06,1.454918365096717e-08,0.003069201727393651,0.0001444271000694218,0.0007862934680278629,3.1347948535921374e-17,0.09371189832558541,0.04272243698154307,0.9999962359086325,9.390066526711121e-11,0.0003499812756382457,0.00018060925205678167 -potato,rgb,1.0,1.67794720932361e-24,0.0007320305713528242,2.211522047444881e-16,0.00023121798194342523,0.00012982218230171998,1.0,0.9989183665289092,0.9952995515765645,0.9997091709728547,0.0006952596688673069,0.0002361977251343626,0.00038066898715391267,6.860313462110054e-25,1.635630371185234e-18,1.0,0.9998204999449388,0.9992591907816244,0.9998311991883716,0.046127006453317736,0.9999984021667896,0.9999999999990175,0.0005227811218424157,0.9999999999999862,1.808532681530751e-11,0.9999985801918788,1.0,4.824357362725303e-11,1.0,1.6073521927961764e-22,0.00012706728123700238,5.507499457247582e-05,0.00030864319274758704,0.9999999693598585,5.89707013440909e-22,1.0,0.03866460675183545,0.9999999996436131,1.0494179746644949e-06,0.000476709775642861,1.1311259430943193e-16,5.726745771778664e-20,9.933181438867577e-05,2.1878857266203994e-23,1.0,7.557136421309721e-06,2.383159962241179e-05,0.0007890206137606451,1.0,0.9831461767156705,0.0001634681228102337,1.3017334247051572e-16,0.9991796997330545,0.0012041967997784679,1.0,0.00018558879156901702,3.4262899435465084e-12,6.165381860323195e-12,0.00023855695757533235,0.0004992816294837808,0.0008925372039756974,0.9999996752893934,1.0,3.659433106308892e-19,6.755402094538495e-22,0.9999999999999958,0.9999999919872292,0.9997727682458222,0.9991465791926268,0.9955339421336938,0.0006559048837268567,4.1294750635930845e-16,1.8338002016619941e-16,0.999932155837276,1.6154823445063885e-22,1.479434064364832e-19,0.9999998506727171,0.999999999999988,0.9999999999994582,1.0695283683029746e-11,1.0,8.970662626151078e-12,0.9999999821022799,3.69992533721458e-11,0.9983494971214592,0.9999999906176745,1.0,0.9999999997329958,1.0,1.0,0.9994012824058772,1.0,1.4766479474495742e-12,4.592689152021482e-12,1.4859502287828274e-11,2.6766095922674064e-11,1.0,3.863440256172923e-11,6.195227352256344e-12,4.326598175962791e-11,1.4155255731795578e-10,1.0,0.0006380134351112944,1.121936834652184e-16,1.2561805878415864e-10,0.00010072126437902963,1.0,0.999999999999974,0.9998873765485459,0.0011954650751691998,0.999998702818492,1.8602579591021806e-16,3.807604910539761e-17,2.8566241378664032e-05,0.0003202147155493616,0.00033054102794428583,0.9999952154856568,2.4347154441468355e-05,0.00029382996600182834,0.14825500828445787,7.709583747973979e-05,3.0981758564469336e-05,0.949859520193921,5.245735370119014e-16,1.8056405242512542e-05,1.3016916465627696e-07,2.5600722978256976e-05,0.9999840685493946,0.9667180358045446,0.9999995219805209,0.00014049479178364233,0.9999999536353296,0.00012650699322705285,0.9999123557603273,0.9999970038147844,0.9999197867913585,0.9998969073419028,0.9997710825823776,0.9635244631075686,1.475728562197145e-22,1.353967184673292e-21,1.0,0.0008900733251719728,6.109865841100157e-16,0.040453494122989216,0.02159287310089118,3.0595903839726092e-06,0.9999999999997622,0.9999999829234189,0.9999999999999962,6.346793423954428e-16,0.9997146843364524,1.0,0.0006961612905267228,1.0,0.00039166061469437646,0.00018868358055243402,2.0677309281663783e-13,9.98267152803177e-14,0.9999728971888199,8.28454416142596e-14,0.9999651518977997,1.0,2.4878058922163287e-12,7.456850456956347e-12,3.4141228512416194e-11,3.941606558867754e-11,0.00024248194001591074,0.000500614132784269,1.3123593537198917e-16,0.9993344123889839,0.00016246915995265485,0.9998977625949218,1.0,0.9978248162555998,1.0,1.0,2.26313310606929e-18,1.914675988161815e-13,3.7458468355121564e-13,1.4117406942465628e-12,1.0,5.196067892134892e-22,0.0005211561523002777,9.989401632661277e-05,1.0,7.032038941782322e-15,7.6177108764275e-24,0.0005061824785237851,0.00023916236086902887,0.0008817045230053708,0.9999999989932853,1.0,0.021292522504373478,0.9999937212656843,1.0,0.999990094387696,4.9483466409777276e-05,0.00023493655069210716,0.0022328440039293233,5.005875617440805e-16,0.9998691516919823,2.433486064479105e-10,1.0,2.7786807164092104e-05,0.0012196667532324839,1.0,3.110625727352101e-16,3.609855181323648e-18,1.0,0.9999999649554686,0.9999999998107503,1.6994459861164585e-11,0.0003050375515425359,1.567863685596563e-10,4.314284535213498e-05,6.7902054106788e-05,1.0,9.182106976444888e-05,5.695185205570867e-05,1.4477849987879688e-05,5.260768536258427e-16,0.0008912712214973496,1.0166272531173341e-18,0.99890936736045,0.9983629599595443,1.7040102872930848e-24,0.9991694463151656,1.0,7.830836593826432e-05,2.308621116988791e-22,0.9999999999180378,3.134732586938854e-16,0.0008635962720863854,4.241386790048738e-05,1.855796894691807e-05,7.721656082459945e-05,1.6367957014615027e-22,0.9999970901212571,0.9999157164704443,0.9999999999843112,1.3851756763298362e-21,0.0011960058313280242,0.0003471980787299083 -prism,rgb,0.8822656017710826,0.6228939881028678,0.06975080273666096,0.995900117718362,0.10795597100860144,0.19710150525176437,0.8774293283675944,0.2833177130948035,0.24356503454339226,0.22850553065927737,0.040069562795147964,0.05211759493142135,0.048787155951175776,0.647635533862007,0.9985386057796929,0.9924669334125835,0.04065679583395622,0.039808433528282096,0.0401304156130583,0.03773402122411911,0.04263591438059025,0.094795810648311,0.19507590699593683,0.14327462409039138,0.15687379602461662,0.07336402703460818,0.9449320078171042,0.14638806337370497,0.9890106506548316,0.45669814784185625,0.19619612456396135,0.0838107384356635,0.18265477636302813,0.18428932730397873,0.9913215092311892,0.9913448839443454,0.03515535791698836,0.06364666820845853,0.12187015871124536,0.13962985024891347,0.9923086716085111,0.28769257481328814,0.18682354157810058,0.5412475147428043,0.9582428480378073,0.06511404042541534,0.0832311687724797,0.06950730016900021,0.9567680496028498,0.07336225622623906,0.19617398212144763,0.9928686188208944,0.2479500027167283,0.16321837838358047,0.9786221394905735,0.14941708041771862,0.07197880382557943,0.06903962087757258,0.05096773700481371,0.04611277794296562,0.039974088590336354,0.04520440136767411,0.9952443658027794,0.2502185261092957,0.41583282940192234,0.14598106189037488,0.07701935594459486,0.2512413787429423,0.27485621820425404,0.2531813089395134,0.17023493616468982,0.9933213592361596,0.9905410582268087,0.25552310418101926,0.5114862611872725,0.26365107314979763,0.07668950894167825,0.13725329874237918,0.09975349720965422,0.06681856361307763,0.9307059900234719,0.06790938921786263,0.06587634175884947,0.06263641955272764,0.2727280341656967,0.06350629631800009,0.9902302032488276,0.06526112640164243,0.7664945329352076,0.9297525971506362,0.2854236483372817,0.9970335421969992,0.07687323592844343,0.07032096243196123,0.0656766734224085,0.06373665779890059,0.9862447625529344,0.06250842941785019,0.069491349819848,0.0619257534551616,0.05862419240110135,0.8202982816605116,0.1370176278677251,0.9949396220903952,0.05962146883927003,0.19715587397786366,0.9445359844564843,0.1354025858614262,0.07180704728384257,0.13567314598642605,0.061747308190727046,0.9937303920508008,0.9970953210025167,0.05400891704909306,0.04382195302849945,0.04140114550537525,0.18621197172910073,0.03911952552592772,0.052765332606045184,0.061059650513013285,0.08477177878995278,0.041971375802453796,0.08101219933212625,0.9903830863414108,0.05144183436902332,0.07342827315836191,0.0426551911633784,0.18113200103831878,0.05386129257327533,0.09553193089469064,0.03882260322076366,0.1514419793744001,0.2011148042345595,0.25494453310789167,0.18221267895406268,0.03887837229917684,0.039876265138246623,0.039457717467931794,0.06321786684821439,0.4642500948949594,0.9899015234008556,0.9933632518234148,0.16974012922697443,0.9866034820437147,0.0408222322536531,0.035275996790431446,0.04777625545520425,0.10641813656156454,0.07868399875304988,0.15085276022164484,0.9896603037143291,0.051726404307326286,0.9895320410822367,0.03981151380258904,0.9789724170669458,0.04667214350673911,0.05027577905246028,0.18240061399782068,0.1462849223700308,0.040440977495340674,0.2300984636087637,0.040510734343454896,0.9901773138019597,0.16311013590378182,0.17520893475563712,0.19050447139283905,0.16351098154662574,0.04810670565905573,0.04569617470556599,0.9946149393017848,0.0487890557218254,0.19587022938173523,0.06378894558955388,0.9939975315437668,0.047275077044526596,0.8800393798016165,0.9972670757230923,0.997434285237782,0.25212573609090433,0.1809581142712144,0.1676336974885445,0.9933442008860414,0.9907289964391188,0.18987458596719445,0.1968542420848228,0.970617590443088,0.9662892570511512,0.5792836382184545,0.04575826582582702,0.04997867789540633,0.03962887951192998,0.14842531408464954,0.894045165827878,0.034496369698726694,0.08404464547358419,0.9590830412956616,0.16991911168955956,0.04759509197078155,0.18701475274484602,0.16146338580794073,0.9890847067061395,0.05290429897675985,0.15163571141697957,0.9397954163715091,0.039753908100989735,0.14901563228130407,0.9778899378554442,0.9922336599573564,0.9983413592500247,0.9237168196966731,0.09908362637982406,0.06587320556571172,0.1531805407313255,0.04840243597749495,0.19477735878915658,0.04440221133764654,0.052898520307109814,0.9966653354454401,0.0671317160437203,0.09276512348693376,0.09289697596587564,0.9873769046863429,0.1692627260249671,0.2314920526258648,0.039439664118115184,0.03959211046422877,0.6224117560497409,0.03826935085493857,0.9967214365379793,0.08460833191383335,0.9954009474484994,0.10685016330707764,0.9897507913533096,0.14128448653646009,0.08403284023551187,0.051584161248109855,0.05645111199975574,0.4661693483502052,0.09764425435320766,0.059279226779002187,0.07710276631262282,0.9881344329330329,0.03701296254087479,0.038433286274515296 -purpl,rgb,7.602612487298953e-15,2.3997038963782024e-07,0.999760805195804,1.5384281465085723e-05,0.9997951347442239,3.0692349433174077e-09,9.882910092336354e-13,4.473808376272297e-11,2.0822618516050274e-10,4.5115993096480555e-10,0.9983691936542585,0.9995155529009863,0.999416318924877,2.9170402926486456e-07,2.9713903815199035e-07,6.299348079862755e-20,0.9927212254158242,0.9947743492586608,0.9912813471687036,0.18065284692260494,0.8714805325687371,0.11934807549936782,2.9612388957685204e-09,0.09424214380529639,9.106447745544703e-07,0.9978798742472734,4.523576207720238e-17,1.420942716911642e-06,2.8701970630419923e-19,0.00027522779612950565,3.2223902259437003e-09,0.9997606481631726,6.023129163019271e-09,1.1535156139653504e-08,1.2426322658751455e-05,1.5190963364071699e-19,0.4926480852697698,0.3904710119320394,7.849580141580746e-07,8.344215958110918e-08,9.495897801771537e-05,0.007090086346793916,5.416165288039006e-09,0.00022420240996347195,2.018921574478049e-15,0.999583354974841,0.9997410194148391,0.9997607181363892,1.3485449625443154e-15,3.792110859687826e-05,3.1409043624726606e-09,7.727518815685843e-05,1.8435250703272838e-10,1.62283623777591e-08,2.978578966675687e-17,4.703826297806358e-08,0.32664276866950925,0.5235007047322909,0.9994778677458421,0.9992784956306195,0.9984009956625086,0.7646067201812785,3.1050272604918247e-21,0.0249666772711355,0.0009838394785227386,0.013870742603533782,0.9872602869040203,1.7138681114106445e-10,6.24017077075843e-11,1.3961866702895175e-10,1.1295204197101013e-08,7.462120900257783e-05,0.00018883513077685505,1.5474281686965432e-10,1.3030657314255693e-07,0.008548880625124414,0.9960220346575377,0.04139557305552616,0.11996296029402727,0.6568229953502758,1.8389258898189643e-16,0.3900801226563018,0.0021121385024305992,0.8292659074661177,6.605136005800635e-11,0.005294913223430162,1.7537997776759725e-19,0.4825560960796286,4.0910537818188363e-13,1.774449806035657e-16,4.235634895379858e-11,1.089669161128994e-22,0.16012556814385753,0.6397725289738714,0.7354307523202093,0.8109308794079381,1.229456305317552e-18,0.8336593501722025,0.3514358613346011,0.8080520208542551,0.9005706358613842,2.5951088475009342e-11,9.774827238446678e-08,2.6747258524572806e-05,0.9263563665495008,3.1460840630510626e-09,1.5552044560811023e-14,0.11643486002324628,0.9992560771906155,1.01469772154875e-07,0.996478971070144,5.514506789861032e-05,4.130092845189784e-06,0.9994341022311134,0.9990035517122687,0.9985651522186613,5.0851120514861175e-09,0.9949082494248198,0.9995448533264111,0.9997311302553631,0.9997686118767153,0.9978384176737846,1.2669143999058929e-05,0.0002306656518129036,0.9992687588983408,0.00032887866556998075,0.9980129513296035,5.961583452102933e-09,0.0012720705951697,7.525778728372134e-06,0.3062730728464371,8.430937983761592e-08,2.5114104289927246e-09,1.5579874645809488e-10,6.686602691641929e-09,0.9779058339126433,0.9878460439773946,0.9906080374586044,0.00019142224347186624,0.0003796728953037334,2.3091266894413877e-05,7.868529550133447e-21,1.1302546937730925e-08,0.0006273682590902911,0.05585026892638977,0.49481254869577734,0.03921351485120307,0.0953939646257125,0.9914771650625728,0.024315224427282067,0.0002938673828173281,0.003535675975477119,3.46621854956864e-19,0.99828087146684,2.65044406333035e-17,0.9992978994237459,0.9994361949788813,8.884518125853449e-07,2.0174393867355872e-05,0.9777049158286681,7.943565687990679e-08,0.9818315283501081,2.1616125254751545e-18,1.2064795205425132e-06,3.541637002693207e-07,8.472814069247681e-08,4.405181832009484e-07,0.9993484336779435,0.9992468874005428,3.306363872370245e-05,0.006833854622546613,3.1923433396344587e-09,0.0002957098865828068,1.3956001610109198e-20,0.008898663249511345,8.408551994611002e-13,5.656554848787636e-23,1.8329500377965155e-06,1.9317737643103098e-08,7.594499174016493e-07,1.0944218130547487e-06,4.000938237965516e-20,1.4406352110899239e-05,3.883855643168183e-09,3.1979315766896554e-09,1.2907146393788665e-16,0.012484827557817702,2.583536500413549e-07,0.9992527723388351,0.999439476532487,0.9982800697997711,2.469934594812551e-07,4.064161255159585e-15,0.6355488001660928,1.9399782649419992e-05,7.87811238518601e-16,1.1941062754961812e-08,0.9991338646474375,4.889773976000741e-09,1.7131748697510797e-08,0.00033370021617679536,0.002999489319090743,5.751788324692369e-07,5.928683788059768e-17,0.9960962767341558,3.9958856574602575e-08,3.780218446484297e-17,0.00011310721970423006,5.013312505275198e-07,4.706920377582646e-16,9.034909573347788e-06,0.22392747882903033,1.2196984368015797e-06,0.9993821807391726,4.2762125377465184e-08,0.9986870779100272,0.9994638330253869,2.801676885025396e-22,0.999706637811089,0.9997735861117203,0.9997462284742784,0.0005157826988486882,1.162190096721259e-08,0.04557144699924503,0.9949739518184929,0.9957707031455044,2.4088332918300425e-07,0.9920337161214029,2.4415063270646737e-22,0.9997686008731772,1.678811586593514e-06,2.844403290706338e-05,0.000259001618495545,6.998199134225332e-08,0.9997558481058151,0.9992804141000033,0.9995677108483499,0.000560706308440519,4.273957870951541e-06,0.0007456963016114014,0.10561245906434197,3.590481460007959e-05,0.9967480498570517,0.9972499038478009 -rectangl,rgb,0.5138264385416101,0.8528652704761805,0.05180091790991831,0.5329783928216162,0.05098450617516653,0.7000351837500992,0.3249251300429774,0.6932057463263769,0.662808527426149,0.6171020921502012,0.06917038948198,0.06027657717287234,0.061044768362007854,0.8525437729252804,0.6819808079400932,0.7105451921262714,0.048821274313326946,0.04917518908093719,0.049923784192464814,0.15798539957126753,0.060835246001139515,0.05796327350264851,0.6906490222832796,0.050078366603932674,0.6606619201679294,0.03356264148416037,0.6422789240777512,0.6403772991052615,0.6859938832795313,0.6662517602202191,0.6989047222819462,0.05575677406273818,0.6753038374712066,0.43280249695497147,0.6641430858902162,0.6905609520103291,0.13449792320510562,0.05992721882263464,0.5779365211176563,0.5951897611318594,0.48973590135439476,0.523931378542809,0.686827327864643,0.6823231405024685,0.4583621332199899,0.06528062385317587,0.05797836305553135,0.051685166277180526,0.4770335165994724,0.3080464893220938,0.6977271805824236,0.49396758822617404,0.6519227862185442,0.6363503431138889,0.5659277064699345,0.6203215698402581,0.2705463352950579,0.2459660295595275,0.06093846463998295,0.062409888670926415,0.06843502170713306,0.06301752244435452,0.7742086155710273,0.46776989492769777,0.6177206105870964,0.06204294903014462,0.035355012652391944,0.6433140756174479,0.6823967111528854,0.6735133904728093,0.6517194333795598,0.4834815034398366,0.4662151098020087,0.636066609599897,0.8469699097747893,0.5113639654260644,0.03358492566102362,0.0560027906466527,0.05652644026598976,0.22925267397494514,0.6099613831954875,0.2574859846847265,0.13694642848028343,0.20133311676977758,0.686049780632911,0.12067937521074794,0.6943851584816659,0.0564564039099206,0.437159299450709,0.6131920863038772,0.6900696852565081,0.8353724968287608,0.3014122777950975,0.2357286112990691,0.21866079304366576,0.20571861739763608,0.6510246859139838,0.20042869396385,0.264011587524407,0.20370542478567655,0.18164947882668137,0.2548525936586172,0.5878864012585228,0.5244987896861045,0.1755492796242147,0.7012436466327795,0.4051789923892923,0.049896466666153515,0.03412513129118179,0.5813788333579971,0.036258040569561736,0.4996577721782916,0.585806057015044,0.06583790410252185,0.06625648790369489,0.06960699915038644,0.5053409112343867,0.08930330251291989,0.05930230335283499,0.04405876505604403,0.05483409263809114,0.07921863173007924,0.3478202420626082,0.45041567614981803,0.06931922163116794,0.4049584277441736,0.07879128787033383,0.5114397734220939,0.2253936714418948,0.27087355647162825,0.17373732319490617,0.37599139521533115,0.7054959479339921,0.6380400667329557,0.4923754719032584,0.05507187249726937,0.05127986763145916,0.05100226730290583,0.27137875728863203,0.6566493869204202,0.6410354619921885,0.7677890602084063,0.649260859397841,0.42214605429598656,0.18294640344431254,0.13686166854723003,0.24676608138987205,0.05650042970893255,0.034359528589190884,0.05731686236793416,0.44202100700080366,0.17617177992698682,0.6756923797169113,0.06966349921037654,0.569081885964948,0.06264813007382809,0.0620914907634837,0.6934769551010687,0.6083034158189035,0.05297659320715356,0.7601783852433032,0.05201237634683901,0.6051869526601036,0.6672873362505752,0.6933334425729544,0.7204619677850116,0.6754034145994022,0.0629227844519463,0.06278876444157665,0.5171377307704235,0.16841311834929043,0.6973411514103793,0.22093577794292765,0.7437965835801872,0.16970820759440802,0.32852535144442885,0.8462473961064833,0.6338187079625335,0.7867842316688274,0.6936077403535169,0.674144783447869,0.7170718143978074,0.6618451519885212,0.6833334372149633,0.7008729502452979,0.5355787354242386,0.32405294683631714,0.8464411726757477,0.06269628529263052,0.06157856051117006,0.06914185918874667,0.31254890027111004,0.5276765984752618,0.12814904284480105,0.2660416097363232,0.4933116851544863,0.48515376001847543,0.06887034207533435,0.6831062691355773,0.629706715168101,0.4409317245842182,0.17507597927664223,0.6543081490808593,0.6413929276200455,0.08592924297177938,0.6095534200390216,0.5594742276764876,0.47491811447859605,0.6622657487852209,0.5809111213664365,0.24746671015831867,0.06474060966291183,0.6527384512654434,0.061987426233047364,0.7275767521476798,0.07329356122891108,0.06361173407450627,0.8186665317216641,0.05724092703540393,0.05484768255984799,0.058296647460324445,0.4288049137553935,0.6484500243817641,0.43971683412643214,0.04961601343361561,0.049185850355158496,0.8527511066144926,0.052295156766266844,0.8211782234625159,0.054813817718152615,0.7184887290110866,0.1835975080420717,0.4523579201296123,0.5955166750384183,0.05638500432154556,0.06910076491250668,0.06131835478027191,0.6436475179751668,0.2993460776972691,0.19997612532605397,0.06585037491919812,0.6299347384438576,0.07454266950420028,0.07584569256429445 -rectangular,rgb,0.3164954542396233,0.9995947703808237,0.0005592141299464604,0.9999807205479263,0.0011606238561246483,0.5790986496833807,0.08627653918970951,0.44565721977706946,0.3493319983360627,0.2207033760029605,0.00040325664277409676,0.0005079279106472733,0.00045451601235121393,0.9996720260556617,0.999998855189714,0.9722066180717297,7.112572549077154e-05,7.744535707422644e-05,7.213016988294803e-05,0.0011922836172241877,7.834082209911479e-05,8.423590012575758e-05,0.5319548669690606,9.286482897085749e-05,0.6889675493637126,6.427130400324281e-05,0.7390315013799754,0.6144028097050731,0.9503848110280038,0.9919939899588782,0.575413771011815,0.0010121006098488224,0.48476500176933174,0.029014533695187864,0.9999909783427819,0.9620165616340607,0.0008062385881709921,7.475527150128868e-05,0.2721224765850746,0.2501035039214632,0.9999410342279623,0.91719752494086,0.5364298975884382,0.9961639988669657,0.4520263659462477,0.0010438417193181504,0.0011376365794987118,0.0005511362642059282,0.4780933302120497,0.0075497034672150415,0.5686570031445473,0.9999479056883879,0.3112552069687478,0.34783196353342793,0.7853983786427898,0.3211006510951445,0.04885969360197194,0.036248888424306534,0.0005002771725146002,0.0004257771423834395,0.00038737952170681987,8.068607587937241e-05,0.9906630514228063,0.8376053060445044,0.9843580489061154,0.00012633352140033153,5.1633950024245495e-05,0.2841390823453453,0.40724473615262696,0.3832030908188554,0.3999570096296058,0.9999447458787707,0.9999047319602161,0.262872065909247,0.9988433600655682,0.8894720031276068,5.836222515962938e-05,0.00010353952305348492,8.366069321138292e-05,0.02880705187441029,0.6322766873903883,0.03787530481178842,0.0004516571126708291,0.018506783559951685,0.4219007661610272,0.00032319213076519737,0.9587300718252297,6.866752337449375e-05,0.11076430004348013,0.6361348650617918,0.4327642056846987,0.9972887401979236,0.07143433460666437,0.03486638197850789,0.024951317439204295,0.020277421805445093,0.9186184726738438,0.018231651986262528,0.042340620794102564,0.01841535353689392,0.012467847131085862,0.032120938605567875,0.2317163776973762,0.9999739202547884,0.012072251128736352,0.5859809264633413,0.29204346575462836,8.820043139208879e-05,8.809634919946019e-05,0.21355189497435345,5.596793744448209e-05,0.9999570326423817,0.9999926086305648,0.0007267783368612134,0.0004520444503082118,0.0004515819918241202,0.06565788079757015,0.0007756891258167521,0.0004951845717215925,0.00023362569071248496,0.000976918017226131,0.0006852442943348208,0.012668591828236904,0.9998833601801718,0.0007638680971328221,0.06073094837440054,0.0007048966688816272,0.0707090519140967,0.00254163424440675,0.003945767373767331,0.0022855328652895096,0.014920986095032335,0.5982616146623597,0.268361987841462,0.05677824400098886,7.697217649103481e-05,7.211471740496544e-05,7.45952874862328e-05,0.004816470968529218,0.9918362058088736,0.9999860026304961,0.986129690698064,0.3892965783085651,0.9997728164269767,0.00179242580612692,0.0008744020066069711,0.008297644792388283,8.710021681989577e-05,5.3774941923157456e-05,0.00011564314869947364,0.9998615712177406,0.0010304688549860833,0.9482922816050716,0.0004043332903793754,0.7922225197001895,0.0004440663501418038,0.0005149497131439349,0.8345880984553958,0.6677964892835506,7.052795892512534e-05,0.9331889627463589,6.981843426194106e-05,0.9166812031706553,0.7414260171153271,0.7834632383440803,0.821765796536427,0.7138367865719483,0.0004845505570690789,0.00042440452554154135,0.9999698019495106,0.0009217233261885191,0.5673831594785536,0.002051630484299877,0.9838121360610865,0.0009738278086596073,0.0905726811659564,0.9978734055322805,0.9999963484715247,0.9520367525465814,0.8266866253016179,0.7668666782257597,0.9768182796502167,0.9999900204570428,0.5066690952093509,0.5847892732553274,0.6780762801360236,0.9979930040145933,0.9993663372596353,0.00042384141346617926,0.0004946195910523845,0.0003896576243665438,0.00700040962632545,0.36469519299505515,0.000750488524629195,0.0037589658673064007,0.5227458509668708,0.05274686361527851,0.0006254942842261616,0.5142646091040746,0.3234789429451281,0.9998520263852126,0.0009942496421828017,0.6232286518494714,0.7218025615897404,0.0007351384552300432,0.2760848604364445,0.77098302474725,0.9999292016216024,0.9999983266485718,0.5498947041132627,0.0028402693238011906,8.575555951549189e-05,0.669055960478733,0.0004686685188273556,0.819412815501343,0.000634947536813221,0.0006236248163007798,0.9961635601861123,0.0007276535514195781,0.0011481087292186775,0.0014104176141310225,0.9998023530396523,0.3867873598094433,0.7756170586909978,7.978462170423663e-05,8.145828589684905e-05,0.9995925480433429,8.178013045732591e-05,0.9963520349014221,0.0009723082613384477,0.9999977212341116,0.0011181389533188879,0.9998785802144924,0.24598137682903393,0.00105568360717885,0.0007613217970795121,0.0006391108213999617,0.9910893350092833,0.0058179454431893035,0.0014815055494453765,9.337151147982723e-05,0.9999809599380405,0.00039261691192068505,0.00046798628873220567 -red,rgb,0.9999999999933791,1.590851677089135e-16,0.9999835225868913,0.9838667419839222,0.9999964611593554,1.1753008132613647e-08,0.999999999999998,3.819570859898154e-05,3.4153363358157185e-05,0.0004120938213007134,0.9976291999844963,0.9996589941520236,0.9995820787076525,1.7427873194538091e-16,0.6524598446795461,0.9999999999999991,0.9999997936479581,0.9999995891547904,0.9999997387473861,0.31770591641693563,0.9999997776565882,0.9999999999761633,2.8065408652219798e-08,0.9999999999997984,5.078910522223945e-11,0.9999999999036646,0.9999999999894547,1.1865629398671845e-10,0.9999999999999976,8.311401763934077e-13,1.196002123761672e-08,0.99995912285771,3.152398381983448e-08,0.7764961192153925,0.0002057219791616712,0.9999999999999993,0.6339173089776772,0.9999999984149062,2.3724647592948983e-08,2.3414008632811817e-07,0.9511789807089979,9.015170214239646e-11,1.4269363732325085e-08,7.459985336120459e-13,0.9999999999999996,0.9989197499094898,0.9999166736772179,0.9999840881017492,0.9999999999999987,0.04656605464726553,1.3817035910210814e-08,0.9594590089146877,0.00011118196939272025,1.444187522232323e-07,0.9999999999999993,8.731528001931798e-08,2.177170355657126e-06,7.120168111211558e-06,0.9995882238671354,0.9994181289136232,0.9980320134344405,0.9999998659638658,0.9999999999999982,6.400675400647311e-10,4.9079376393836216e-12,0.9999999999991207,0.9999999999821905,0.0002699061035193432,5.550554178445264e-05,2.768206829404644e-05,7.694583308465251e-08,0.985576783889999,0.9604003055030716,0.0006140645452389907,2.3718911432737777e-16,1.2721077324136062e-10,0.9999999999656364,0.9999999999993432,0.9999999999878806,1.733233217335572e-05,0.9999999999887892,4.470598516360918e-06,0.9999809414917336,9.181477634943545e-05,3.5730052764783996e-05,0.9999951881323124,0.9999999999999982,0.999999999266743,0.9999999999404137,0.9999999999855125,5.662508702636645e-05,0.9999999999999927,5.459924171361355e-07,1.1257674604397076e-05,3.133798961487816e-05,6.865995335368303e-05,0.9999999999999982,9.727776951516483e-05,3.166723757543045e-06,8.169489161779196e-05,0.0003586573009070361,0.9999999999999989,3.1408241208448283e-07,0.9659905595605409,0.0005297761312262208,1.0158510695312744e-08,0.9999999999999998,0.9999999999996807,0.9999999993568718,4.83445367236744e-07,0.9999999996178643,0.9732332107456002,0.946333845318012,0.9984905081512395,0.998517070367091,0.997071970578953,0.039281330668571396,0.90268569896388,0.999743681952348,0.9999992051368939,0.9999706414967359,0.9771070507598562,0.00966145491480392,0.9834559112203803,0.9964472507668162,6.066001005816919e-07,0.9780693051644345,0.01802501520162742,0.312413086647325,0.974788333930146,0.020394313147695717,0.9066185233351842,1.0171606443661061e-08,0.0005108812976292263,0.06517898070465936,0.9999994424066476,0.9999997148671249,0.999999617425364,0.08669302402041047,1.3194850722571237e-12,0.0003866503408209773,0.9999999999999907,9.378638286465786e-08,0.9797246628855905,0.11261118395840577,0.5391981831653161,0.00022269789008730394,0.999999999993294,0.9999999999832752,0.9999999999996534,0.9848986750522306,0.9729924219853581,0.9999999999999989,0.9973998184821814,0.9999999999999993,0.9993698841671094,0.9994328917890095,4.950572436655288e-12,3.799058401675132e-11,0.99999978000896,5.444524961471853e-13,0.9999997974656308,1.0,2.198893559728664e-11,1.6085100838944712e-11,1.332005395712909e-11,4.58131875665071e-11,0.9993024481454054,0.9993619033328359,0.9685588353893805,0.9709224919651437,1.3906712942317483e-08,0.9113856113595697,0.9999999999999987,0.945365469401027,0.999999999999998,0.9999999999999891,0.6204545458086649,3.0967352841794846e-13,5.943707784421442e-12,1.5282849049447718e-11,0.9999999999999993,0.0001664950398313234,3.331241586161741e-08,1.0211553545725754e-08,0.9999999999999987,0.9927572331668727,2.1969414123198357e-16,0.9993767212048313,0.9995089803538091,0.9977447763348392,0.9978084607320832,0.9999999999944409,0.6753747989212016,0.91359964935514,0.9999999999999982,0.03973025172771673,0.9968843492683659,2.31409138246578e-08,2.2372732939783947e-07,0.9805016141664661,0.9826628657857576,1.4976603938501358e-10,0.9999999999808817,0.9378534495175265,2.632768665936549e-07,0.9999999999999993,0.9789522145514726,0.7748445735854803,0.999999999994343,0.9972041038088348,0.9999999977574558,6.074719648857708e-11,0.9994580957338205,1.9255859588764736e-11,0.9922078409065233,0.9991450958451368,0.9999999999999958,0.9998923967407525,0.9999773701747532,0.9999331007904587,0.9783457918077446,9.558337390047087e-08,1.732381201266844e-09,0.9999994636057594,0.9999994315719158,1.6004857842541738e-16,0.9999991108375864,0.9999999999999953,0.9999706802893037,0.000173858181143415,0.9999928571818418,0.9727496761380766,3.054265778677215e-07,0.9999504309021323,0.996624797903572,0.9995566118788064,2.341088070006319e-12,0.8615872802262391,0.9615759526117178,0.9999999994637307,0.0003195371168654133,0.9946302680338649,0.9913049394749691 -ripe,rgb,0.999841274537109,3.6747141406975374e-18,0.12480443157560671,5.896281243211831e-37,0.0006352528588356674,0.9770140945116117,0.9995760617570866,0.9999175517480482,0.9999400775097604,0.9999886977926491,0.9939660130857565,0.7407835679585856,0.8902612731839746,7.268124107257474e-19,2.5366276703623784e-41,0.006067647389470267,0.9999987713662987,0.9999975632801704,0.9999990749513255,0.9999976683093981,0.9999999712038771,0.9999999891267058,0.9897808777359778,0.9999998786197618,0.007785266546012449,0.9998671338395253,0.9945910348611421,0.020717038603656902,0.04308362986714457,2.6913264475805524e-16,0.9773409317826044,0.0056441929640381645,0.9906131755869565,0.9999999227168801,2.488120820747181e-36,0.01142764378710756,0.9999967535882811,0.999999992930857,0.9693904288699253,0.998209726979277,6.941342148365865e-35,7.882520739745771e-13,0.9802843427712397,4.054652587678705e-18,0.9382210381551952,0.044840463647519584,0.004282644570201708,0.1330894318755268,0.9573050895898204,0.9999997221393834,0.9802383013129505,3.990703993519585e-35,0.999969921219964,0.997570929276311,0.4419448802811966,0.9957530390678961,0.0036777711089533583,0.004458286051430291,0.7920963524016377,0.950323852160314,0.9947103376406363,0.999999984872654,0.0007316208691095814,5.560495167735617e-12,1.2170396636919955e-15,0.9999999769980669,0.9999943558022937,0.9999816295105993,0.9999397762970224,0.999924965515555,0.9957650177915708,3.698862887793339e-35,4.43687155096415e-34,0.9999879970949619,4.6022606693377724e-15,3.643821950806483e-12,0.9999523044821041,0.9999999611275203,0.9999999856520094,0.005720122164389784,0.998146114610936,0.009040985691024139,0.9999999984042423,0.011173045449830797,0.9999226990108283,0.9999999985508086,0.023800261574758695,0.9999999897378032,0.999994373746119,0.9982662548156445,0.9999337496843683,8.306537639244367e-05,0.0022337116245116687,0.0023247920180303103,0.00630202382464918,0.008642491054711026,0.11065164973719163,0.011418677301652913,0.006610097644291256,0.014877992829594748,0.028088589773540437,0.9998997855355298,0.9986117399742518,2.4156197679745123e-36,0.018076722853713537,0.9735962097331302,0.9793202029151044,0.9999998994327196,0.9982694694081367,0.999061754831217,0.9999854663925034,1.631610095479151e-35,1.9245124478551997e-38,0.4398974179553202,0.9700716563005959,0.9869098304034514,0.9999994131162875,0.9888262135030477,0.7281106721709485,0.8987529996651706,0.0057374829335979415,0.9646786806728974,0.9999993221627936,7.6303013011747475e-34,0.5537309521882283,0.9829796862338428,0.9522258565426045,0.9999991686335326,0.9999998529349509,0.9999999893144763,0.9999173670113803,0.9999999665805159,0.9738807051194718,0.9999867636038111,0.9999995698905138,0.9999997492214696,0.9999994520989524,0.9999991435204535,0.9999997591109263,1.5464010661861482e-16,1.1313014888751002e-35,0.00472094511081902,0.9964667386058588,1.1911219975513253e-32,0.9999976279824986,0.9999954816353309,0.9990521764928878,0.9999999833219854,0.9999866382177081,0.9999999533497803,1.4766692376168162e-33,0.9999999813626502,0.030160422084593717,0.9945484701566701,0.42498054775642274,0.9364687926573573,0.8049872147949471,0.00015186577789888381,0.0001897636585882985,0.9999997780689549,2.604443267575693e-05,0.9999997075073416,0.010099982359032606,0.00157733379230922,0.002541030414069241,0.004877798926301652,0.01114204905895077,0.8903626787977502,0.9558568499643867,4.218986625409101e-36,0.9999999765033812,0.9803452991673478,0.9999999797026393,0.0021653108216690368,0.9999999643190517,0.9995366207563261,5.7273940102945454e-05,2.4386480031466626e-39,2.9798878365853916e-05,0.0002468747738729376,0.0009243025367390444,0.003097930516456609,4.118458252289248e-36,0.9912191488863948,0.973705108513182,0.797186588866061,6.366491179485949e-29,4.430942187560899e-17,0.9552649954257234,0.8306657451000682,0.9953599629299918,0.9999999915838743,0.9997386151736445,0.9999947241664856,0.9999999829766767,0.9495071280674907,0.9999995173964582,0.8355628582538781,0.9875865388986476,0.9983560379095505,2.0871131967139792e-33,0.9999999854629191,0.05249242245867043,0.9964459992742427,0.9853052135101804,0.9985060072930073,0.47680882003401487,1.1114374293377617e-34,9.296075996741465e-41,0.998795655386727,0.9999999949001173,0.9999999955510332,0.008250487852313438,0.8915244390906362,0.012042834865407144,0.9279293618914725,0.5887795064931837,0.0001398530936836585,0.08256232506500999,0.0018374223218420903,0.0010074311694702083,6.92579205637944e-33,0.9965228776569451,1.6745247932754572e-11,0.999997262925554,0.9999961165989242,3.769007924923372e-18,0.999998702852731,0.00012977048071848677,0.005902413561989863,1.0284217672056928e-38,0.9999999986600288,1.0449020581847392e-33,0.9986274714689525,0.004901869299365772,0.5472356634895915,0.4005427436547616,1.1660650598336888e-16,0.9999999775736707,0.9999999843916798,0.9999999959895942,4.325401430895269e-35,0.9986940389824787,0.9961015894798739 -round,rgb,1.0,3.0503728177759623e-15,8.59197869104159e-27,1.0456102993512906e-32,1.233634868218347e-28,0.9998518184304829,0.9999999999999791,0.9999999998903941,0.9999999968306359,0.9999999944849758,1.1341986336184245e-22,3.6806276350667574e-25,1.2044204260213311e-24,6.005728852866822e-16,6.933816375481536e-32,1.0,2.1091870397804005e-18,5.824296944775075e-19,3.9430580057248305e-18,3.24486206305276e-12,3.519794110195509e-14,7.901944059092019e-10,0.9999260600260851,2.807857974636062e-10,2.0441948744503247e-05,4.583470276680657e-21,1.0,1.5041265319568841e-05,1.0,5.673863120187791e-21,0.9998357695597782,8.237309154137059e-28,0.9996358479011881,0.9999997536544128,3.8338446145811944e-32,1.0,8.202712082069203e-14,2.642887379660132e-11,0.012926654130860093,0.9533411239616826,4.5619812022169744e-33,9.855392322460648e-22,0.9995032632943043,4.41363900004738e-22,1.0,1.3007210369159436e-26,7.995579864145035e-28,9.076143166938381e-27,1.0,0.008937097570174586,0.9998605467024015,4.9682324443193514e-33,0.9999999985829073,0.9986583551581286,1.0,0.9761460084116652,6.068558915784622e-19,1.0569223914943707e-19,5.3781808630370515e-25,3.6511514454740595e-24,1.1960753191558107e-22,3.158446946024767e-13,1.0,2.1237016165668773e-22,8.886704281426351e-22,9.73918637711997e-08,3.1378691639873663e-18,0.999999999177068,0.9999999998112736,0.999999998528688,0.9991283848078983,5.207171286958645e-33,3.5106157572426804e-33,0.9999999995307798,2.2139698847676916e-12,1.9298676416115004e-21,4.281475412030074e-20,4.877067937047742e-09,6.462464817438212e-10,3.521722453998006e-20,1.0,6.200798149923639e-19,4.052808701601902e-05,6.720538030418194e-21,0.999999999739698,5.171480377992386e-06,1.0,8.52063312417957e-12,0.9999999999999998,1.0,0.9999999999182592,1.0,3.650273915373434e-18,2.165293932248045e-20,1.5979907034192232e-20,7.409875498502993e-21,1.0,6.352862185463478e-21,7.223697024227614e-19,1.1550397092498889e-20,3.1698151665741235e-21,0.9999999999848879,0.9446434459829262,7.839854410029962e-33,1.0703013593902613e-21,0.9998255486227011,1.0,1.8359338407992265e-10,5.964908162270017e-23,0.9544052697590291,7.249003769829593e-20,5.774383673767347e-33,1.8608804517357902e-32,2.0236406064964494e-25,1.1168595873251466e-23,4.7602116419790945e-23,0.9999998288975511,9.704505153993475e-22,3.0518230028360487e-25,2.365911016871443e-25,7.750893149968573e-28,5.733281952503539e-23,0.05614664830539663,3.310027681583094e-33,5.04414370442644e-25,1.6061003170927674e-08,3.7526285848469174e-23,0.9999996760423672,4.0504495309384686e-06,0.8250104608481341,4.587419370098834e-14,0.9999862510251981,0.9998977679060721,0.9999999994865589,0.999999743470306,9.044103933245675e-17,1.2589864364270045e-17,4.931897417185063e-18,0.00023036752496239448,1.8084823706603136e-21,2.724413992218837e-32,1.0,0.9992373310592874,2.315553502384287e-33,6.761451000665555e-11,6.283549315907882e-14,1.880839449979106e-12,1.0679292638542721e-09,6.524939746348882e-19,1.563174662540982e-08,3.0337379911151275e-33,1.787396616499083e-06,1.0,1.3789964134144786e-22,1.0,2.833328808106481e-24,6.777858305774694e-25,1.1986111588233447e-06,9.929859025681105e-10,1.0275143732103646e-16,9.059030426742403e-05,5.1748772509391095e-17,1.0,3.275789127853692e-06,8.059014217479311e-05,0.0036291187587457396,0.00014454583521285395,1.5437391285203753e-24,4.406314869828877e-24,7.15851118118551e-33,3.2128561345713056e-07,0.9998557492069118,0.0005442589557182705,1.0,1.2600576527086604e-07,0.9999999999999847,1.0,2.668044733606153e-32,0.0026803869483050754,2.465199491307707e-06,2.7754178423354537e-06,1.0,3.890268068936626e-32,0.9998756659968139,0.9998193316018894,1.0,1.0466440241198679e-33,1.5605597099934117e-14,4.284804062059836e-24,7.594663475737109e-25,1.5561118382243063e-22,0.9999418682173148,1.0,1.4758091066804236e-14,0.2644792931152406,1.0,0.9999989086611936,2.0803058675070487e-24,0.9997239390416361,0.9988614823478449,2.8798274936978392e-33,3.1720609940105174e-06,0.0002505011592666875,1.0,4.296708802016916e-22,0.9923889499117737,1.0,4.330805368409317e-33,5.281206730582655e-32,1.0,0.8455774813079482,2.3647399410489946e-10,1.0811179964400894e-05,1.381708247575622e-24,0.03381694002818262,1.0586164945457362e-23,2.7826397744510933e-25,1.0,9.579227868059712e-27,3.243124067721808e-28,2.6851032396406183e-28,2.470624614268815e-33,0.9991957519324269,1.1193828364710769e-22,4.862393498547554e-19,2.5157771362322164e-19,3.0796358079915215e-15,2.4394858523998486e-18,1.0,7.9132513209102245e-28,7.784828426193482e-32,0.5250099014327962,3.1380638770388415e-33,0.9740535602857816,7.76009828649655e-28,4.771580060389772e-25,9.820972383482353e-26,5.993707949772319e-22,0.9090614987289908,7.70584118016245e-05,2.112063652429311e-09,2.550232667473192e-32,1.704242690516829e-21,5.164031629336185e-22 -semi,rgb,0.09279200546274963,0.9996836964495276,0.0017698383162459304,0.9999999999997897,0.017904557765923278,0.0008434734976140117,0.13802840146583248,0.0004080133576346617,0.0002740296937822438,0.00015954329585319212,8.285013126610228e-05,0.0004292761525015446,0.0002840324526871886,0.9998321288944539,0.9999999999999973,0.9980488632120001,9.14659854439521e-06,1.0613040122676062e-05,8.197180699649366e-06,6.259991174166189e-06,3.275038972219916e-06,1.1187442958993177e-05,0.0006666541370632581,5.1543808740871694e-05,0.005926449676901356,0.00011183723568878493,0.4897477020142937,0.004035191992690712,0.993713829383887,0.997645110821679,0.0008332326329615032,0.005910351727101871,0.0005789686821132743,3.210800626596588e-05,0.9999999999986169,0.9971270119273388,6.422016294702391e-06,4.644751604716504e-06,0.00040545263943821743,0.00023519079121195495,0.9999999999977787,0.9408851237049161,0.0007349048258880042,0.999578630389155,0.8016037580800779,0.0019543836548788778,0.006211940387247594,0.0017242659867018973,0.7687900839695969,8.863936023901769e-06,0.0008029504108732086,0.99999999999832,0.00023972604190172726,0.0003325001641547536,0.9633126143786124,0.000331136558651353,0.002759545383530644,0.0025243801538140857,0.0003792376534457538,0.0002007245850554582,7.982835946433786e-05,3.0107181715691864e-06,0.9994560969240874,0.8776265889445378,0.9955604094264546,3.140139373571251e-05,5.028491189988982e-05,0.00021832121936057164,0.00035357181039953514,0.0003138326772205593,0.00041419418699422083,0.9999999999985527,0.9999999999948375,0.00020393483303251096,0.9950962818075525,0.8958569723373332,9.153372036958815e-05,3.321116921527494e-05,1.343526223726082e-05,0.0022848121166612586,0.3280076732900487,0.001972508018573033,2.438693986302895e-06,0.0017760772964989684,0.00036982220160016095,2.326149492250748e-06,0.9956172972674814,5.50536400975615e-06,0.010641068458507727,0.3174262821783426,0.0003929070362360107,0.9998508736071344,0.0034092216290635283,0.0031845687190548565,0.0021974529852767308,0.0019528575680118473,0.9883407749242082,0.0017619083251983107,0.002221282018569031,0.0015976838076152697,0.0012645934841298179,0.052227807143657386,0.0002131308243680372,0.999999999999557,0.0014973943843733521,0.0008761110961645936,0.6538699907799228,4.3728171260994487e-05,0.0002172510932254422,0.0001891387899332843,4.292228199634258e-05,0.999999999998944,0.9999999999999518,0.0006348412455829317,0.0001549440223885858,0.0001088329747756698,5.2271301175524544e-05,8.607540554016519e-05,0.0004495534002113544,0.00046734524496285505,0.006045564610224024,0.0001411239933561953,1.288156729695948e-05,0.9999999999939533,0.0005027590926176418,0.00016340589788014533,0.00015882519581247994,5.3842261762103784e-05,4.8225923899190575e-06,6.294833980983326e-06,1.701812798255582e-05,1.8282430140350576e-05,0.0009057390097828773,0.00020784251530273185,4.6588468284094975e-05,5.2186220580891905e-06,6.94768777326802e-06,7.726783775990836e-06,6.848086783082008e-06,0.9981087567134936,0.9999999999973499,0.9983920197371743,0.0003928959050094645,0.9999999999777538,6.842833228865023e-06,7.03348151945834e-06,4.209986065714076e-05,1.587114882206173e-05,6.706243667952974e-05,4.1947663975346266e-05,0.9999999999918527,2.7975341785556367e-06,0.994861670820098,7.941472092745774e-05,0.9648411763823942,0.0002201988358289202,0.000359458072612869,0.02260287384954799,0.015322732981140248,5.489681742120508e-06,0.05300877963967713,5.9809501519578334e-06,0.9969362330625278,0.009865779129851749,0.00965436862793117,0.009223321709744119,0.005717067155252071,0.00027389273485544757,0.00019040093631871242,0.9999999999994296,2.7287973913296584e-06,0.000799529301647631,3.840750031534558e-06,0.9989570655717983,2.8833622511400677e-06,0.14553337887047635,0.9998801661974144,0.9999999999999767,0.05947417711666656,0.0194910294759451,0.011959066424787352,0.9986809877248047,0.9999999999982216,0.0006097926213114169,0.000872704113107174,0.9088855242323005,0.999999998934187,0.9991518471597164,0.00019170514483944412,0.0003400160335220482,7.550947785697362e-05,1.3138107783279172e-05,0.12404719357932584,7.2288296834556e-06,5.655843606463912e-06,0.7905765298348805,4.192007057249621e-05,0.00029630111732270673,0.0006504858025535271,0.0002945741506754916,0.9999999999901579,2.728326770497485e-06,0.003259641491365677,0.42062015297663574,9.699260514039275e-05,0.0002502498680189857,0.9599997277922401,0.999999999997476,0.9999999999999953,0.2735234622401943,5.726193093471646e-06,4.240319036012796e-06,0.0056190947717298335,0.00027748835160076787,0.0074467191843943376,0.00019768685962531419,0.0005240034904803697,0.9997968430620258,0.001808575125553859,0.009800653431694834,0.011346015672858882,0.9999999999825935,0.00038931591576181506,0.8212565472389142,1.0744202112020612e-05,1.1952892139924337e-05,0.9996804354222073,8.131188900868042e-06,0.9998057083846191,0.00597743378720305,0.999999999999891,5.181194674902972e-06,0.9999999999926086,0.0002236673973911739,0.006151998408831733,0.0005095391048079379,0.0007378344742317631,0.9983053795941284,7.698595002834143e-06,3.2505980772882974e-06,5.493716654767041e-06,0.9999999999949871,4.577189908629289e-05,6.590811897271076e-05 -semicircl,rgb,0.34428345797075527,0.9606523487744146,2.946613538637966e-07,0.0367056074087214,2.609384870239291e-07,0.6961781198544301,0.020413977737612818,0.7641473517679767,0.6325241778477328,0.4475846340253748,1.1062805913893814e-06,5.675564753763128e-07,6.113846188960431e-07,0.9590252549766394,0.31608100155243074,0.9647004768774238,3.788703826939797e-07,3.7442161954241474e-07,4.1962424314112943e-07,6.488572999468037e-05,1.180430278240956e-06,1.4527906160156425e-06,0.6648956112652392,8.503084633145091e-07,0.3939341151011665,8.238199337129531e-08,0.8417028504973618,0.3150262267169459,0.9411345577775018,0.23664175664740397,0.6912140915426784,3.7573570760282704e-07,0.5913878056444057,0.04347711828249702,0.2117972734246595,0.9476313463978154,2.9022818988871364e-05,1.4200708514908778e-06,0.17195113450070929,0.25330789031415313,0.01788109029178964,0.029454922852489525,0.636127595864633,0.2823209545574072,0.20656577479177868,7.259256378862238e-07,4.364756248929318e-07,2.924453547739908e-07,0.26090140188036864,0.0031170492081103677,0.6878310813422858,0.019231007774602724,0.5968016105308408,0.4213280724628027,0.6330570100977904,0.33961811652861446,0.0005505528958626431,0.00032550251237841224,5.96898338035706e-07,6.827895382207946e-07,1.0620322348483418e-06,1.4535517125794814e-06,0.9914011998412093,0.01228941542160173,0.1171820231146225,2.313353008140228e-06,1.217678885572289e-07,0.5675435795742099,0.7251856422017094,0.6788221511275511,0.4867396517621438,0.01669717731525357,0.01230586586458822,0.543806273985384,0.9591502938655959,0.024712038423407513,8.858137522668128e-08,1.4125328474495548e-06,1.3197873535848365e-06,0.000224004074482631,0.7431550928496441,0.0004273301689708288,6.042922476289725e-05,0.00011556656461490206,0.735297141516501,3.3324192512597634e-05,0.9503156165826792,1.0939847912168684e-06,0.11145842527912662,0.7528703210425002,0.75610318311629,0.9983758848693821,0.0010170655657224682,0.00025406822150303584,0.00017479271654317945,0.00012825890428665816,0.8897919073769125,0.00011299395067213976,0.0004873437250234927,0.00012366209798420424,7.035806095524842e-05,0.004643964554894657,0.23153516255140963,0.03145394149105857,5.870895274852892e-05,0.6996500783014893,0.09186964893454255,8.214199639174428e-07,7.726130968994684e-08,0.2152796772547719,1.167189862019707e-07,0.021297984184304678,0.08156444010306274,7.91449748962028e-07,8.848099832611486e-07,1.1110161420650747e-06,0.11807910614712787,3.2366921539912916e-06,5.306983164496284e-07,1.707227538695258e-07,3.521538257493372e-07,1.8663495953891208e-06,0.0064401985969888475,0.009736129210446318,9.880542204292073e-07,0.010026209134745726,1.8085298728886412e-06,0.1252094443132581,0.000506636093609416,0.001996704905130254,8.750069149593542e-05,0.016288265356444283,0.7188389829679332,0.5508135109743205,0.09835708112387186,6.677774370213868e-07,4.806179683906828e-07,4.5756391197023344e-07,0.0014336782717479545,0.20472817548116162,0.1522978315986249,0.989513667655673,0.4776973312220282,0.006083169832276116,0.0001366062775332967,3.1022263799556576e-05,0.0005070496749841346,1.3488663094612833e-06,1.0477485292825879e-07,1.62062955825731e-06,0.008506783008210847,0.0001594428144265456,0.9298710194031858,1.14302837604887e-06,0.6458654956370399,6.891281137798576e-07,6.452559078331008e-07,0.5152610805082869,0.17464281062316925,5.798264763006948e-07,0.8110401519438011,5.297276807215437e-07,0.7901478672397283,0.40889499984265126,0.5430720765909274,0.6844788429149052,0.46875329711704067,6.917360842832961e-07,7.020379049631796e-07,0.028035561729762026,0.00012341507252843547,0.686129578047293,0.0005428168314631552,0.9825442918270284,0.00012375446801301515,0.02190459859556433,0.9988480494585336,0.16035198016007973,0.8933662784388281,0.5206643846215583,0.4364917567167692,0.9694525320081476,0.20426073174650602,0.6321584991302853,0.6980250570962321,0.49729854048078725,0.0011332006174330376,0.9541078203039907,6.975762074787914e-07,6.262400745099893e-07,1.112885976876716e-06,0.005617513897683418,0.40268942565885973,2.248231959655872e-05,0.0016655500041962944,0.3179469888239847,0.08520226640985228,9.925453814889824e-07,0.6253770107546003,0.3967618793842222,0.008301309953457955,0.0001581305633284189,0.3851983011027255,0.8368629461425554,2.715137269947355e-06,0.3102932399553997,0.6063384419220799,0.014400463665553108,0.2453756319004647,0.6350689622595349,0.0012905845907488203,2.053879410205349e-06,0.35863221074668683,6.509100152128433e-07,0.7257238991975332,1.3166442997640092e-06,6.961231552054274e-07,0.9973388278357035,4.328342207330892e-07,3.481857712207164e-07,4.3886361143253565e-07,0.006780877731377497,0.47396063945130046,0.007903324976752422,3.850417307287918e-07,3.6557771864722937e-07,0.9605267095514184,4.919399963571077e-07,0.9975233873905809,3.517635713665889e-07,0.4309344850254127,0.0003103247627394259,0.00992075636901421,0.25789721694440976,3.918991233643875e-07,9.746763033382902e-07,5.905960807080141e-07,0.16841525718533767,0.0034090189736366992,0.0003202079233604085,2.3883212982395846e-06,0.12843533721945305,1.5888521771309543e-06,1.6527782081878438e-06 -semicylind,rgb,0.08435879410996983,0.9903806290983868,1.9803840350156747e-05,0.47542136636201876,2.030050093270285e-05,0.6899587766449468,0.007709948206291954,0.6146221260116941,0.5112447582963002,0.34936811568224974,4.7417103795682495e-05,3.185264685062107e-05,3.2641189726719925e-05,0.9905766873788553,0.8844726168092193,0.5626634633125549,1.1472418820573018e-05,1.2020272660260528e-05,1.2292375724644173e-05,0.000735824635526394,2.1532270927898138e-05,1.5618656748295993e-05,0.6542248846594904,9.50561389235016e-06,0.6234356375490253,3.421824785921496e-06,0.3268109287975373,0.550925749248003,0.47068297032303447,0.7719304883377465,0.6863794079968611,2.6935535881440505e-05,0.6038777811443959,0.04297863986959018,0.8492242362272692,0.4879273347375484,0.00041196327900281494,1.8449924253327256e-05,0.3090207266962157,0.33588919175058113,0.33466567499129757,0.3121379599279143,0.6473828096744824,0.8202424546704734,0.043307584842732484,4.519484927743592e-05,3.1012432588563156e-05,1.9626284803773455e-05,0.05409492798477903,0.009702181707166416,0.6816905962485011,0.3476625826906892,0.4670706683930569,0.4635321100734338,0.14930283320115625,0.417413977427376,0.009685971601486423,0.006462912222841446,3.2908686914548074e-05,3.4667021496891356e-05,4.5562352379051606e-05,2.3619116041259083e-05,0.7868564698418927,0.17762485828895985,0.6291493345079638,1.864356852828278e-05,3.6908230997084638e-06,0.43325378750002036,0.5754062239367621,0.5491756908750234,0.5188586065198552,0.31625476085894894,0.26742796756939125,0.4051292091295675,0.9873501534312947,0.2738901579746623,3.30851959682414e-06,1.3518953472675288e-05,1.4335490779393617e-05,0.004815706914616869,0.23946023865380084,0.0077110865056371145,0.0003220432378919319,0.0028240229144312866,0.5905963253623023,0.00020345638926386252,0.5016823753189186,1.517198261266994e-05,0.03442171203052576,0.2475121889328534,0.6016236902513681,0.9271829219067854,0.015642575357283375,0.005494565637048361,0.003969035154183701,0.0030911536276245753,0.35101973985394636,0.002773116958634078,0.008625305623402192,0.002940646307136284,0.0018553755914826782,0.002682127666643316,0.3139331929987148,0.44669120392185674,0.0016414616008613653,0.6947041345445789,0.02246161369514464,9.43486582812558e-06,3.896807982666781e-06,0.2939193133535595,4.270443612960721e-06,0.3655057562017758,0.6521217380398506,4.4329524595908226e-05,4.2222533027015975e-05,4.92617804669135e-05,0.10732457959506603,0.00011722630541304366,3.013547440245589e-05,1.0489365699687413e-05,2.5400982048703704e-05,7.89403799081057e-05,0.01727081297044647,0.22737825588455562,5.260769165611588e-05,0.049033694358571765,7.795953599154869e-05,0.11652974837495551,0.0026022016571757662,0.004786721585673654,0.0011629761213255564,0.020969367358753464,0.7074619970268937,0.41247593586808357,0.09209512398359727,1.6572807464384577e-05,1.3268138822207648e-05,1.3213764294798786e-05,0.00563028900066442,0.7490166798087357,0.7997230650163659,0.7665688731758079,0.5091138950398707,0.16584869738725563,0.0012766787457147042,0.00044311862940094504,0.004932449196016884,1.4216653826707457e-05,3.4281602412010388e-06,1.4451073536816245e-05,0.20771543371912218,0.0009278413140412291,0.4339654922948118,4.849651071056723e-05,0.15449740198646078,3.530735218232682e-05,3.507041271712148e-05,0.7437013587331148,0.4749852672836004,1.4402573130380796e-05,0.8952019805849342,1.3640393081428293e-05,0.2274492043904671,0.6539527071033476,0.7294744257943274,0.7983058121270142,0.6678523205586727,3.626166069101952e-05,3.531690449172132e-05,0.4221097991843882,0.0007926350393382207,0.6804538018381857,0.0022082908711935707,0.6858593346922642,0.0008299788774696475,0.00810951446057287,0.9427377433280624,0.7876685458107757,0.9313396504764723,0.7417684378976753,0.6781708519461592,0.5875125705436717,0.8444640729540396,0.6294897969892609,0.6935434301847522,0.10656909792396277,0.04504429691281023,0.9882516903360153,3.51463609763056e-05,3.396426039815635e-05,4.70851352434345e-05,0.008358106626041063,0.09869925689662765,0.0003507514585846141,0.004581421052054555,0.0655301656887998,0.08593222795946179,5.008576961594832e-05,0.6316458862990874,0.4387477414293556,0.2051918299298484,0.0008962527847943529,0.59044703253916,0.32468953000290746,0.0001030021396528028,0.37587295456223274,0.139150344493711,0.2915247673707701,0.8498343177546765,0.1770471675489438,0.0031641158003703524,2.355157082571287e-05,0.597431122597934,3.4416205698882986e-05,0.8114814632221719,6.109773594746829e-05,3.890054426464612e-05,0.8979839079197102,2.8265096498558352e-05,2.585358092755309e-05,3.229928000061018e-05,0.17908740932970174,0.5062953451679552,0.12914084989376548,1.2443976842339782e-05,1.2196897781969994e-05,0.990349200381449,1.4611655678778343e-05,0.9028015264806968,2.5357290643864368e-05,0.9307200629445657,0.0008983055524773329,0.23198104226451377,0.33473458260366507,2.8072697513074258e-05,5.2057131930808e-05,3.470770385546544e-05,0.7146016485015915,0.007580774145180756,0.0014845845629823436,2.4251644301492992e-05,0.771920651820989,5.947758761503695e-05,6.471204131198901e-05 -shape,rgb,0.9999973176664161,0.9999999999943696,1.526575354915165e-08,0.9999999999999971,9.271953126047759e-08,0.9999303394015701,0.9994846559649948,0.9999529445890738,0.9997857528178469,0.9987741307866215,1.0864357280608832e-08,1.3680785256421367e-08,1.0995510904057606e-08,0.9999999999964417,1.0,0.9999999999991072,3.516512863390117e-10,3.7810920825477376e-10,3.836888355774793e-10,1.7688694905221613e-06,1.2212237342776418e-09,7.588741048435357e-09,0.9998932312004092,1.254217038582273e-08,0.9998217804486194,2.3858956835348515e-10,0.999999994378749,0.9995482335223115,0.9999999999931901,0.9999999300312312,0.9999265521015157,6.377813596157562e-08,0.9997849964653771,0.5988098264404889,0.9999999999999993,0.9999999999973568,4.293617541153182e-07,2.879482054077903e-09,0.9892548873067598,0.9938084431630733,0.9999999999999127,0.9999323944964266,0.9998717469167391,0.9999999894077113,0.9999997072764726,7.363862228658115e-08,8.515070812280155e-08,1.4748453072079315e-08,0.9999997953983889,0.00287511673572063,0.9999224666035913,0.9999999999999403,0.9996988428784187,0.9988515136317829,0.9999999981763485,0.9977531001330865,0.00911649829013755,0.003373630715356912,1.3422721219042455e-08,9.932831497929578e-09,9.84176611137681e-09,1.7134126335795713e-09,0.9999999999999782,0.9993644586125632,0.9999994655134276,4.975352033124628e-08,2.7137498618236963e-10,0.9996083086992507,0.9999235405494669,0.999868275798764,0.9993990547806584,0.9999999999999345,0.9999999999996438,0.9995218457772732,0.9999999999400304,0.9998437241966291,2.415038259407475e-10,2.1117894796827716e-08,7.63221384902777e-09,0.0016133277928796633,0.9999999691331217,0.004447326760873637,1.1763598202440605e-06,0.0004109573708518744,0.9999317546616199,3.9747793492769013e-07,0.9999999999964513,2.1170065014386524e-09,0.9997181244009757,0.9999999704519829,0.9999481900324221,0.9999999999999996,0.031379554331195596,0.002644434450790876,0.0010111854854753023,0.0005333547221837064,0.9999999999595677,0.00039247424018194673,0.006170734654764822,0.00042407958159865926,0.00013038456891361345,0.9804852883631195,0.9917397412844129,0.9999999999999925,0.00010926490338145377,0.9999341398892383,0.9999968382934674,1.0033849946597593e-08,3.4031941681997747e-10,0.9893598651514629,1.9152832624360013e-10,0.9999999999999674,0.9999999999999998,3.302941011129708e-08,1.240484636551434e-08,1.3648312814578022e-08,0.9322224998894156,6.965968688463102e-08,1.2714428158476481e-08,2.0628447546643157e-09,5.8486534076358396e-08,4.061740718953539e-08,0.014055560382339363,0.9999999999993927,3.9458083305042516e-08,0.15267041852000365,4.2398641795329536e-08,0.9390438971842863,6.47891274968188e-05,0.0012669881099901241,6.231951901587528e-06,0.12953598500844477,0.9999461375953446,0.9995498424035613,0.8972803058814971,6.016881726217223e-10,4.2796561916013535e-10,4.215873901082234e-10,0.0005620604296041273,0.9999999195210583,0.9999999999999978,0.9999999999999156,0.9993339228797543,0.9999999999955722,7.181837797384814e-06,5.155637278855888e-07,0.0002862522028597819,9.388434892256151e-09,2.622290998246047e-10,3.414546914244952e-08,0.9999999999989988,5.7984770843635024e-06,0.9999999999921529,1.1094720762178213e-08,0.999999998413061,1.0885457503053042e-08,1.4620362818452291e-08,0.9999746831794462,0.9993517014483121,5.033122939854717e-10,0.9999990089475198,4.5899211251086955e-10,0.9999999999549984,0.9998930565280312,0.9999596144440296,0.9999861667622807,0.9998954257543652,1.3113211714912016e-08,9.96392264025209e-09,0.9999999999999885,3.51501289563394e-06,0.9999210570102863,6.987485253083239e-05,0.9999999999998601,3.593971246390926e-06,0.9995717431597902,0.9999999999999998,1.0,0.999999735487497,0.9999726028440941,0.9999252242205044,0.9999999999995226,0.9999999999999991,0.999850809313025,0.9999329836657183,0.9999999880552893,0.9999999974812808,0.99999999998283,9.913637187092575e-09,1.3281932949296685e-08,1.018273476926391e-08,0.01779257588626118,0.9999987283525048,2.9747958559175793e-07,0.0007800306586814179,0.99999988876223,0.8533865976318624,2.564495860323289e-08,0.999848429953955,0.9984938691836662,0.9999999999987568,5.704858701743062e-06,0.9996985954023676,0.9999999921951054,5.677759396600651e-08,0.9965317793867665,0.9999999975783147,0.999999999999859,1.0,0.9999999041387851,0.0005734644051952018,5.214960505430453e-09,0.9997553440117073,1.197419751476513e-08,0.9999887198395813,2.9605256577736657e-08,2.2704345839691574e-08,0.9999999999999989,2.9230002434276444e-08,8.728059748364196e-08,1.4485146656102944e-07,0.9999999999970517,0.9993104104890783,0.9979767668000286,3.9767997276055827e-10,3.940026934444909e-10,0.9999999999942872,4.849727906984329e-10,0.9999999999999991,5.78120610157036e-08,1.0,4.8544943466095445e-05,0.9999999999992899,0.9938963113356136,7.0743444977475e-08,3.899626965097811e-08,2.2974696524602254e-08,0.9999998882904639,0.0037411412207744663,2.3671942741683893e-05,9.148989275813111e-09,0.9999999999999942,1.245995375789758e-08,1.7834328587122715e-08 -side,rgb,3.430630202315195e-06,1.0,1.0,1.0,1.0,0.9999751135867974,0.0002454855123693815,0.02059877107088086,0.032308985433574994,0.0018392121776550537,0.9999999999089011,0.9999999999999765,0.999999999999813,1.0,1.0,0.9893682603549202,0.9933045312429123,0.998636801059765,0.987459302686219,0.9739555895318858,0.015896334611707138,6.36381022611907e-05,0.9998670570087892,0.002941893553452139,0.9999999999999751,0.9999990083119765,8.537927093724159e-05,0.9999999999998688,0.871944946313633,1.0,0.9999752054746582,1.0,0.9999025581335156,5.059777765546241e-07,1.0,0.9803871030667345,0.9940166735769577,0.00013071577412423542,0.9999996513928596,0.9995331444127145,1.0,1.0,0.9999768163589754,1.0,0.03965636219957365,1.0,1.0,1.0,0.016499829823745104,0.002312456217485158,0.9999666192343416,1.0,0.00727999950415007,0.9992390516998946,0.38539552799233767,0.9998792613144308,1.0,1.0,0.9999999999999583,0.9999999999989495,0.9999999998821834,0.0027317086342767975,0.9985917237470087,1.0,1.0,3.8399550037436255e-05,0.9984091113675492,0.002485657533191787,0.013808154819497067,0.038231890204598606,0.9996825685746316,1.0,1.0,0.0009485944188742408,1.0,1.0,0.9999881583144292,0.00021534252886625343,9.994106825007092e-05,1.0,2.9558041291294274e-05,1.0,4.539278624160144e-07,1.0,0.02390639404477749,6.095989365395592e-07,0.937325406879822,0.0003131012309413628,1.2289097047280364e-07,2.615476698307743e-05,0.012668591301646699,0.9998034290400918,1.0,1.0,1.0,1.0,0.7235116855944124,1.0,1.0,1.0,1.0,0.00014106409028079295,0.9993000632713361,1.0,1.0,0.9999815888313609,0.01833520041569831,0.0025539382634381554,0.9999999969222018,0.9985004700276251,0.9999217343561845,1.0,1.0,0.999999999999998,0.9999999999968094,0.9999999999813456,2.177065829757455e-05,0.9999999999598068,0.9999999999999793,0.9999999999997371,1.0,0.9999999999971174,0.007004258162315621,1.0,0.9999999999999951,0.9999999749503938,0.9999999999984905,5.120942106251548e-05,0.005977052286353816,7.775618645775553e-07,0.9999859839970606,3.6148314608998355e-07,0.9999780629333146,0.001169772403374468,1.3759781876278062e-05,0.7930425387346131,0.9592349553740593,0.9854028737167401,0.004949155276854185,1.0,1.0,0.9793077061374149,0.9995428891487375,1.0,0.9478298968631867,0.9969399874444648,0.9999995698765882,0.0001042353789103613,0.999760911946749,0.00019418804136320784,1.0,0.00015074162688373546,0.934396181335971,0.999999999886668,0.3982771681120806,0.9999999999993749,0.9999999999999507,1.0,1.0,0.7315240565127715,1.0,0.8398072871087999,0.9963744032999716,0.9999999999999991,0.9999999999999949,0.9999999999999551,0.9999999999999198,0.9999999999998093,0.9999999999986473,1.0,0.0003701423500009429,0.9999666171334405,3.725683590580584e-05,0.9959296874405053,0.0010503770829713946,0.00026036397236162877,0.9998539139331666,1.0,1.0,1.0,0.9999999999999996,0.9957285506539036,1.0,0.9998497187333287,0.9999816364135033,0.08252556294283368,1.0,1.0,0.9999999999986862,0.9999999999999309,0.9999999998436315,3.634306674667119e-08,5.618663296577136e-06,0.998355605041928,4.135928809354e-06,0.01650666068366867,2.695002221623679e-05,0.9999999999999192,0.9999362969811262,0.9983905307483151,1.0,8.010379709814208e-05,0.9999999999984619,4.954635084323237e-05,0.9999999999790494,0.9988990429706971,0.35988015814830826,1.0,1.0,2.3047711292332967e-05,1.7020170374991108e-07,3.2881267787131214e-05,0.9999999999999767,0.9999999999998066,0.9999999999995843,0.9999999999994396,0.9999999999999938,0.9997067369393917,1.0,1.0,1.0,1.0,0.9995367296643448,1.0,0.9989651543274211,0.9995277376127456,1.0,0.9945317285197467,0.9997227741435301,1.0,1.0,1.5350874074816917e-08,1.0,0.9991041943463747,1.0,0.9999999999999953,0.9999999999999987,1.0,2.6234994743501473e-06,3.869005324199246e-05,1.2502726117129853e-05,1.0,0.9999999975850138,0.9999999997422333 -squar,rgb,0.9945398828581473,0.9991940652724883,0.009434996422347327,0.6845912228072768,0.007155640654844786,0.998740838006914,0.9465811354773496,0.9990662199665964,0.9985858231126332,0.9976902185096714,0.03045322664525095,0.016783880219952124,0.018278635180418022,0.9991251934455351,0.8991563074691431,0.9993247532644682,0.017190959091551865,0.01685488510464029,0.018625392655391093,0.4116736440131382,0.04085612644699584,0.042430221567724566,0.9986315335577057,0.025949354316648993,0.9964109576380012,0.004777360655959779,0.9987234502942133,0.9955579294156054,0.9991042991155726,0.9850263330600918,0.9987211059955433,0.010147549405065029,0.9983087117365927,0.984501582745527,0.9108199415380364,0.9991239841579304,0.28283116812128145,0.0449017707867755,0.9935279280665421,0.9956132367567408,0.6096878146031022,0.9429634382985308,0.9984919706363069,0.9854244934234375,0.9878517595692177,0.017639873070947273,0.011232017452367763,0.009404863367465419,0.9903482160929277,0.913956662044912,0.9987105076111522,0.6166763621773909,0.9984422330562258,0.9973697348098968,0.9962613215240625,0.9966394816935354,0.6609444641102077,0.5747515200454266,0.017561146698023028,0.02030268511912401,0.02969429295418235,0.04733986176297229,0.9997296941400905,0.9035529984266155,0.9743212910565843,0.053452590504123744,0.006708568495880105,0.9983156420479309,0.9989324910124534,0.9987636200911602,0.997779437461014,0.5891499688525337,0.5612541755348124,0.9982060070806492,0.9993385350061983,0.938643775260558,0.005107409909650223,0.03810572390477243,0.039160174525940984,0.5109587786210381,0.9981423367990315,0.6259646695404607,0.4161460306879273,0.3999042829005192,0.9989671295185314,0.3191508518183514,0.99918708083052,0.037083093132961334,0.9875890055429102,0.9982163091027153,0.9990392839819332,0.9999082857051108,0.7477218472477162,0.5264985349128473,0.46772921383554233,0.41590999226304,0.9986191776907755,0.3962278898693214,0.6453388401037536,0.4136096084405376,0.32503668566417254,0.8700062507314886,0.9952675275800587,0.6733609216719937,0.294582311671811,0.9987516800920971,0.9779139009499987,0.025681601977799198,0.004330443259237265,0.9949916241542883,0.006611055337301496,0.6250057237463678,0.77807181051044,0.020517079310012693,0.024824384728346416,0.029890360041352582,0.992463481947838,0.06297608497225418,0.015953202945551474,0.007150219530910389,0.009675980072366074,0.04180645866534458,0.945327559468023,0.5226598886654139,0.024395123660293214,0.9509616035322109,0.040541130818466276,0.9927961206289785,0.7542768650683219,0.8879142501957944,0.443994028628308,0.9701451519480961,0.9988280930703254,0.9982390516554297,0.9913736695654917,0.026663841978451716,0.020743320182590577,0.019880555891068796,0.8619897501410605,0.9826430636499084,0.8900545462195527,0.9997153703863527,0.9977313370777663,0.46553296471968386,0.541001892560447,0.29102352672306964,0.7210528184575161,0.039209778360841815,0.005894090988522305,0.04106028530066214,0.5046440159499836,0.5849936568227503,0.9989596008057322,0.0312519290455423,0.9963922539372871,0.02028275440699023,0.01862430591081413,0.9971717245651505,0.9914403829659358,0.024071037142928558,0.998869104376723,0.02245474128666959,0.9973471198629376,0.9964200580697794,0.9975629463173223,0.9984140578449502,0.9971168719989905,0.019983198494073012,0.02078794538808997,0.6592799186600312,0.5408635007116969,0.9987037125490555,0.7661824899165188,0.9995740168314834,0.5403431622833493,0.9488588306891633,0.9999268473837203,0.850655411489138,0.9992889867398527,0.9972486164997053,0.9966428237475993,0.9993725416262182,0.9098718069770018,0.9984958714234992,0.9987452344664531,0.9948882617463056,0.26588313582573375,0.999167013747528,0.020684424952501456,0.018320803558275367,0.030803813843013363,0.9395245433323087,0.9952984536168178,0.24576307666938937,0.8755102857423959,0.9919805473416264,0.9904469182342293,0.025528846947603857,0.9984568699304182,0.9972007831259436,0.5042057784934469,0.5839893178180735,0.9964905659219803,0.9987208346498645,0.05547850751247769,0.9963873339929697,0.9959791284481112,0.5744151496774176,0.8790389850822276,0.9973931827837189,0.8539467608890463,0.057975807191333134,0.9960254432236721,0.01913230564353523,0.9986458562773213,0.0320515380670075,0.019051296811917008,0.999872970283787,0.01235006952302812,0.009224476293542833,0.010730046083319391,0.47982774292946906,0.9977088596546835,0.8762216092581838,0.017172874743656866,0.016421730844956513,0.9991928453308705,0.020833259916467377,0.9998788592301787,0.00967741857586174,0.9452906125753636,0.6810737755914804,0.5302210115743629,0.9957041410576276,0.010419128615231282,0.024139332292452746,0.016519650221449453,0.9793006289837568,0.9194287461836222,0.6954312556181903,0.06277265834985991,0.881147934584454,0.0409085908359563,0.04084409416999301 -that,rgb,1.0,0.9999991791746582,0.9975022921284598,1.0,0.999998245159614,0.9546173422284268,1.0,0.9999998125633676,0.999996635745892,0.9999982356768959,0.007038895648140352,0.46889423795213697,0.24090494181740713,0.9999998017763998,1.0,1.0,0.8983138766439075,0.7959822385103729,0.8643960468168855,5.340878469579183e-05,0.9562077185823825,0.9999999993363675,0.9711079829865819,0.9999999999999509,0.006221266083590024,0.9999998402861738,1.0,0.003846725758365069,1.0,0.9999787989817179,0.9516539902292843,0.9996268538017827,0.9226359236069055,0.9999998829502402,1.0,1.0,4.5826366317560695e-05,0.999995719092531,0.012344890291690305,0.38468122670011945,1.0,0.9874792712533936,0.9065752626026676,0.9999997151477865,1.0,0.8878544922826017,0.9993169462284647,0.9974441204116302,1.0,0.18287268614157137,0.956280965458357,1.0,0.9999989584709864,0.8485735847960656,1.0,0.4742625740640676,4.4255315495934224e-05,5.3688196931272964e-05,0.36443573918197003,0.10648482396548331,0.007781465554204325,0.986830288524182,1.0,0.9605797101578837,0.9999428725009988,0.9999999999999132,0.999999980287211,0.9999995664892892,0.999999745338872,0.9999980667294711,0.8761750619848301,1.0,1.0,0.9999998233895494,0.999795685891449,0.9545908673584109,0.9999999618223522,0.9999999999998002,0.9999999998033935,6.133908431190199e-05,1.0,3.2319117652661315e-05,0.9986963217710925,7.628409574168164e-05,0.9999995954103578,0.9991204005416385,1.0,0.9999981940541176,1.0,1.0,0.9999998773703062,1.0,4.484844638793289e-05,9.167758868125143e-05,7.136220463726004e-05,7.957084833813176e-05,1.0,7.70825545525405e-05,3.523638666605409e-05,6.085118614063988e-05,7.727389480190941e-05,1.0,0.36443651155832646,1.0,0.0001246868336401693,0.94990208771458,1.0,0.9999999999998366,0.9999990484797409,0.40254752122576726,0.999995563193254,1.0,1.0,0.33151074328299623,0.030530416346598373,0.009218557156380378,0.9999977282873386,0.0003662434047777218,0.5605646841548149,0.9982806934779718,0.9997489560644163,0.002589715584530032,0.2382595363691656,1.0,0.12374177109014668,5.038654835017688e-05,0.00329037005416996,0.9999936154622028,0.010936969296414174,0.9992699425084023,7.647047622729382e-06,0.9999985673179137,0.9639827467171282,0.9999997899859602,0.9999977610901322,0.7268821710680058,0.8506259175466466,0.7953227485973098,0.03748969582531786,0.999989386266815,1.0,1.0,0.8864310211118167,1.0,6.881337720040982e-05,3.608327751190564e-05,6.0228148616735206e-06,0.9999999999507676,0.9999999854084625,0.9999999999999714,1.0,0.11954074861691102,1.0,0.006075915650659453,1.0,0.1166086550280254,0.27581471036070176,0.011899794711157161,0.0012603230919715424,0.898609452819963,0.11980760528543022,0.9040097530965115,1.0,0.005987354734162691,0.01632430130711796,0.05932261762406128,0.011713269460353812,0.15481951680506403,0.09013915485856284,1.0,0.05140446664360295,0.9553573854463647,0.5560053279396562,1.0,0.02091406047086453,1.0,1.0,1.0,0.3316450423801333,0.012187463583919497,0.007082341218490812,1.0,1.0,0.9600377839751761,0.9488190138467855,1.0,1.0,0.9999931727046412,0.0930102518049812,0.2805132716087787,0.006333051511516636,0.9999998656932345,1.0,3.819924883978194e-05,0.9874961389922027,1.0,0.9999896434463478,0.05229514326680767,0.9339969791510281,0.866278993950311,1.0,0.20668877030348762,0.00850516601985166,1.0,0.0006281039609728178,0.6621572904319253,1.0,1.0,1.0,1.0,0.99991147056341,0.9999968517754013,0.004781580018024202,0.19199995455996519,0.1120555750334625,0.011459075175138373,0.35949168147424776,1.0,0.9840703655416079,0.9999416714715681,0.9998761958835307,1.0,0.8830759481822796,0.9260990911215888,0.7387092547417017,0.7370121940630432,0.999999160524651,0.5790931806674933,1.0,0.999742295094887,1.0,0.9999995520422117,1.0,0.4795230886534773,0.9995875007856416,0.13188373679667614,0.6815226135747608,0.999993386150844,0.9981134803641714,0.4412722323216756,0.99999988555932,1.0,0.0014530854321093047,0.001662072566059896 -the,rgb,0.9999999999999971,1.0,1.0,1.0,1.0,1.0,0.999999999999998,0.9999999999999882,0.9999999999999538,0.9999999999925211,0.9999999999999933,1.0,1.0,1.0,1.0,1.0,0.9998463815587268,0.9999757438402497,0.9996895227841455,0.9999992504055134,0.3525752278108397,0.054713974615708004,1.0,0.9699332807310858,1.0,0.9999999989013046,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999531945389826,1.0,1.0,0.9999994519240347,0.01526699688623798,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.999987023911999,1.0,1.0,0.999999999999668,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999902,0.10040902517706603,1.0,1.0,1.0,0.41622261059543225,0.999995602798714,0.9999999999986282,0.9999999999999678,0.9999999999999787,1.0,1.0,1.0,0.999999999995367,1.0,1.0,0.9999999833378276,0.6726168876689504,0.10471149605822598,1.0,1.0,1.0,0.0037917516014159894,1.0,0.9999999999999842,0.0019036565908424688,1.0,0.034606559605213666,0.9999999999113116,1.0,0.9999999999999782,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999996783,1.0,1.0,1.0,1.0,1.0,0.9487515507468374,0.9999999999989233,0.9999999999999998,0.9999996275640114,1.0,1.0,1.0,1.0,0.9999999999999991,0.999999911489123,0.9999999999999993,1.0,1.0,1.0,1.0,0.999999332390464,1.0,1.0,1.0,1.0,0.9999999668768329,0.9997107123429028,0.8977386368286544,0.9999999999629388,0.9990049878175826,1.0,0.999999999996515,0.9999997602956618,0.9921978022928618,0.9988268185602495,0.9996378607805585,0.9999653536882557,1.0,1.0,1.0,1.0,1.0,0.9999995858751148,0.9999997872341713,0.9999999999999867,0.15448875170384835,0.9999995335849229,0.7934017242934767,1.0,0.8468913629789404,1.0,0.9999999999999913,1.0,1.0,1.0,1.0,1.0,0.988189422197598,1.0,0.9940259386191739,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.8949007386790262,1.0,0.9462847057255365,1.0,0.9633493713482723,0.9999999999999984,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999862,0.9170743261508362,0.9999999999999993,0.9999998237803822,0.9633089959696229,1.0,0.9999997990627292,1.0,1.0,1.0,1.0,0.7381964519285962,1.0,1.0,0.9999999999999998,1.0,1.0,1.0,1.0,1.0,0.46706971313162565,0.005735823330391327,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.999982605956413,0.9999930370641748,1.0,0.9998874831346665,1.0,1.0,1.0,0.008676956873917112,1.0,1.0,1.0,1.0,1.0,1.0,0.9897516786129985,0.8533496362655967,0.005066166453965101,1.0,0.999999999999656,0.9999999999999831 -tomato,rgb,0.999999999999984,1.0281117888951929e-16,0.0002653477748259131,2.158604953111862e-11,0.00013790648480756001,0.00021784811653895522,0.999999999999998,0.8287944806201756,0.643558952163647,0.9085699632860668,0.00024834185064502183,0.00012772521478002103,0.00017110276527854422,5.948013469088448e-17,1.2987010510587935e-12,1.0,0.8384628693695975,0.6794783242291993,0.8439423515531529,0.004220238506351765,0.9907441361551136,0.9999989922038399,0.0005185336066189607,0.9999999347865307,9.662961059187947e-09,0.9911661968368042,0.9999999999999978,1.7407104303431582e-08,1.0,1.3403022068094037e-15,0.00021451428710286328,5.4416320057666495e-05,0.0003624810807700052,0.9996230841951402,6.547342701999759e-15,1.0,0.003587441267061407,0.9999561059698411,8.660983612005237e-06,0.0004247490934366567,1.2403288706285715e-11,4.328558897891715e-14,0.00018002249965337944,4.079314972297782e-16,1.0,1.539820515548862e-05,3.231480356152897e-05,0.00027790091948628413,1.0,0.3272343911658271,0.0002511350757585533,1.3757447424721853e-11,0.8439281305926349,0.0008099445694645363,1.0,0.0002421144242561698,2.161742282551923e-09,3.033846010000292e-09,0.00012833583898338554,0.00020202031133724862,0.000289949434726168,0.9966444317998071,1.0,1.2955623431329614e-13,3.1006335180005407e-15,0.9999999703738172,0.9996647987919437,0.9236163689915774,0.8468991508099343,0.654839063205116,0.0005637615703529784,2.854112787752994e-11,1.598977743691482e-11,0.9627374494371647,1.6862511162423308e-15,7.651074730132262e-14,0.9978642990256291,0.9999999410431087,0.9999993101307562,4.1954700501174255e-09,0.9999999999999958,3.8761427005344135e-09,0.9995667585485783,8.79287653190846e-09,0.7851508936490927,0.999701729894991,1.0,0.9999631224207705,0.9999999999996356,0.9999999999999951,0.8753245374668336,1.0,1.3234487775177465e-09,2.50139445902035e-09,5.0876181127305186e-09,7.228060749437383e-09,1.0,9.02307056656685e-09,3.101440328725792e-09,9.712190356291572e-09,1.9772499946411717e-08,0.9999999999999931,0.0005057363659556229,1.3531035870617907e-11,1.8247474913341062e-08,0.0001858697090181971,0.9999999999999998,0.999999901279703,0.8770118752967901,0.0007461311602854933,0.9915352190721209,1.7656352206360448e-11,7.832056785063474e-12,3.4556412506655745e-05,0.0001532618422345498,0.00015646346884602436,0.9914897017859571,3.153735295277592e-05,0.00014638339434660565,0.007830072520887871,6.716804053444238e-05,3.62281761593034e-05,0.20125735245782178,3.055450652592143e-11,2.5944193457062572e-05,1.867275140681958e-06,3.217467555601657e-05,0.9820024352579757,0.2155565245373678,0.9972615868801512,0.00010971215911583923,0.9994692807640435,0.00021623464828949337,0.9565440654520238,0.9935607032734451,0.8976157875515702,0.881094733627108,0.8171823304533921,0.21781663897001122,1.2658595503746816e-15,1.0586315842656102e-14,1.0,0.0006815797097436647,3.1231741642406146e-11,0.004054179318434528,0.002471425775010828,1.1070933183650393e-05,0.9999995939570928,0.9994591258979423,0.9999999719963572,3.3841729001266904e-11,0.8406511145828763,1.0,0.0002486402409745247,1.0,0.00017383743750223822,0.00011087252164063836,6.114220094594439e-10,3.454486475147268e-10,0.9454915366014066,3.8330652768747127e-10,0.9365298386809799,1.0,2.8049540730659032e-09,5.806786285727699e-09,1.5771902739099412e-08,1.6108991499676818e-08,0.00012926322113081089,0.0002023046528926838,1.4708300493552545e-11,0.7519952088002771,0.0002500055686798073,0.9166570790307101,1.0,0.5887529176704872,0.9999999999999982,1.0,1.4011609000025304e-12,6.813746865391736e-10,8.877940769258213e-10,1.9845869697879394e-09,1.0,5.971257103747666e-15,0.0005115281005986183,0.00018478980258210075,1.0,1.1600168398707008e-10,2.5674563472157695e-16,0.00020370492498178575,0.00012839519374103692,0.0002879170582291452,0.9999496711183132,0.9999999999999889,0.0024059326475906005,0.9859154108640147,1.0,0.9861674513825293,4.8278035112134894e-05,0.00030869099240093473,0.001186598037102448,2.8868831577651813e-11,0.8962847972451207,4.9125155594434896e-08,0.9999999999999964,3.40932380315542e-05,0.0007857672296509258,1.0,2.3163736976191092e-11,2.061447162556442e-12,0.9999999999999958,0.9994620772896627,0.9999711604145208,9.189583710994188e-09,0.00014907723724351982,4.166357791582693e-08,4.43366366016225e-05,5.901125614587486e-05,1.0,7.270273558201988e-05,5.636951583026058e-05,2.408250710423187e-05,2.883903165361026e-11,0.0006813392503669291,2.3757579834474443e-13,0.6242748076175763,0.5622799339498314,1.0376328292411198e-16,0.6648663782670639,1.0,6.780428805412828e-05,4.2052687629199655e-15,0.9999874477689378,2.1901175439066703e-11,0.0006191242602936093,4.6283145283416906e-05,2.639110178416178e-05,6.420655208933687e-05,1.3383742119505086e-15,0.9917544026797434,0.9229728255945681,0.9999941702236627,1.0374668509878578e-14,0.0003503861417474386,0.00016224462081095668 -toy,rgb,0.3876098903356171,0.9999999978870528,8.902170816642677e-05,0.999999999999861,0.0005378736669094228,0.924705685628141,0.05108429064215186,0.6982657731814348,0.5431190583590536,0.2556840425368998,2.3550973763763447e-05,5.47888865538962e-05,4.0508080649685876e-05,0.9999999987598429,0.9999999999999996,0.9996244569692507,4.717487338267471e-07,5.931941845140841e-07,4.6670418083337844e-07,5.1774939236440104e-05,3.410190940285067e-07,2.953945242213548e-07,0.8903313521352664,4.353907252969044e-07,0.9880718411324695,6.526730641304664e-07,0.9432658412590155,0.9773996315803476,0.9987865623391176,0.9999995697740179,0.9229056771006201,0.0003413534595097401,0.856679094322294,0.0048391181913506704,0.9999999999999574,0.9993260501079881,2.8825802362585924e-05,2.469625651690414e-07,0.624961688895376,0.4841112852342208,0.9999999999985782,0.9999460419857903,0.901714668285566,0.9999999200600307,0.7436370843029152,0.0002873948934835212,0.00042846996799610277,8.617695799122543e-05,0.7672311821687257,0.0007256163152856554,0.9183245962770067,0.9999999999989035,0.45033804720004833,0.6707693222952454,0.9772099607834869,0.6464256739207473,0.18376101569979775,0.11741623716240425,5.173800217181682e-05,3.298526910985219e-05,2.169836395556906e-05,3.26628445378292e-07,0.9999493809929914,0.9997668309787096,0.9999984684217303,5.812064325956632e-07,3.036776076348112e-07,0.38312028388044506,0.634055159443522,0.6061890079336815,0.7572941018031554,0.9999999999987916,0.9999999999961975,0.329909957875334,0.9999999731909202,0.9998918367585264,4.860746866761508e-07,4.5403662390674495e-07,2.997578331853252e-07,0.08085363748541234,0.8699423053397927,0.11611613928514163,3.837429989827042e-06,0.03752453422084149,0.664081718723323,2.208620079802495e-06,0.9991641350918639,2.2436544128114397e-07,0.052705724550753466,0.8723068360894374,0.6735452913936922,0.9999945444103083,0.31430075861197626,0.11882155507826503,0.06409221524563771,0.04467494527963457,0.996853073626653,0.036549628529326465,0.14132539458684676,0.036005002138826736,0.01786990204501919,0.00867903357699657,0.4362445783712671,0.9999999999997371,0.017883318336716983,0.9290494285754933,0.45967055936786033,3.950493310349496e-07,1.5165453862428495e-06,0.38330265303838784,4.057244543051248e-07,0.9999999999992697,0.99999999999998,0.00011510128808453855,3.432597381815861e-05,3.110086879596725e-05,0.02470003623621978,7.446761387457971e-05,5.2882580011045655e-05,1.2995609916389354e-05,0.0003208610067925066,6.971455094178063e-05,0.0018717325760568683,0.9999999999943485,0.00011883248034258639,0.08793366975606173,7.576622318139043e-05,0.02940986987228086,0.00011852727944324496,0.00015818258418244226,0.00023437271593405818,0.0014965990379693008,0.9339963010227408,0.34303767860525103,0.018641295445570513,4.424116119104e-07,4.3713905958702404e-07,4.896540362927103e-07,0.00034967228806409036,0.9999995837138292,0.9999999999998967,0.9998833143945374,0.7393580756982525,0.9999999999775071,9.971747331143324e-05,3.4297690367417056e-05,0.002547069827056092,3.224823546701354e-07,3.6047030411664807e-07,5.466439310549499e-07,0.9999999999919709,2.10046304842695e-05,0.9987467951026021,2.3376185599502273e-05,0.9787776233141483,3.643883443372615e-05,5.3818952838479435e-05,0.9980339180458434,0.9913541412614941,3.751642316193177e-07,0.9996865158598778,3.820078514172207e-07,0.9974697069775161,0.9935242198064632,0.9952200669800013,0.9964418574751768,0.9896161571717755,4.5073261700316325e-05,3.235219248358774e-05,0.9999999999996452,1.8206238636829954e-05,0.9176574106101968,6.31360418123457e-05,0.9998611751594129,2.111095515802256e-05,0.05585362787056221,0.9999964550810344,0.9999999999999951,0.9998167772420922,0.9977129589037707,0.9951293656149379,0.9997403052869711,0.9999999999999469,0.8715581625101726,0.9285041908158599,0.9374397609745185,0.9999999979933922,0.9999999941681916,3.2331521854332316e-05,4.935509179092093e-05,2.1577390446346797e-05,0.0003624957424099748,0.4843051778703543,2.735028778875842e-05,0.0001585356715681007,0.8171919597302065,0.01691600708015647,7.270544697588818e-05,0.8820178015289933,0.6191580270128704,0.9999999999907301,1.912529217047308e-05,0.9758650603959493,0.9327782156888508,7.045486248575044e-05,0.5299894784927238,0.9736566132914851,0.9999999999979694,0.9999999999999991,0.7866327091351981,8.353344713911567e-05,2.8971882512648055e-07,0.9861408448230735,4.257625223554385e-05,0.9958862329509863,6.704088641424918e-05,8.338399041212171e-05,0.9999899056221825,0.00014603038691219134,0.0004748673843626071,0.0007169152364465316,0.9999999999831044,0.7357322510346753,0.9994934946201637,6.329382756814953e-07,6.839016960392199e-07,0.9999999978619716,6.027275559690162e-07,0.9999907674383687,0.00031735561662922615,0.9999999999999976,1.5148505027765104e-05,0.9999999999937863,0.4661737220764217,0.00037212657835067586,0.00011852239764097668,9.450232419703908e-05,0.9999995354271989,0.0003271307484473645,3.6318813800523565e-05,3.196307994379852e-07,0.999999999999803,1.8820753123355718e-05,2.8614581617628693e-05 -triangl,rgb,0.6516850436770862,0.9950516638202784,0.003959996225039516,0.9956997149901124,0.005430027410205882,0.7957780455275725,0.3161967745710621,0.7680493531334734,0.7062890056509532,0.60524438517124,0.004440284002989473,0.004316411322829939,0.0041622427237518935,0.9954744094429127,0.9993057861503377,0.9700595149025482,0.001616289226064291,0.001675199304517433,0.001661132438631545,0.01677571471131613,0.0021416124520462843,0.0023514920158835724,0.7760540351963892,0.0022198281493907386,0.7872874734983188,0.001137728370217443,0.8755174250520108,0.7474105201546603,0.9562441597246307,0.9533596165110787,0.7938432216513741,0.0054728938576954584,0.7482584906851849,0.2309631684614274,0.9979390401853131,0.9623954570253606,0.011908838019864025,0.002197442563348087,0.5633010541889962,0.5764178243299677,0.9915810786754597,0.8051055988844654,0.7726838113163526,0.9680480059659962,0.6826329192086273,0.006326786780043139,0.00595194355801501,0.003927470794719628,0.7060688424936361,0.08276911946329014,0.7912344510322318,0.9921725020630324,0.6830861473201051,0.6648202226933604,0.8644436681778528,0.6354166387141386,0.13034062598486912,0.10429049355045095,0.00432982599499188,0.0041295021762926855,0.0043231116181101864,0.0022693699427136834,0.9865203051125869,0.7069581878783022,0.926134711877685,0.0031449410364585775,0.0011183834300261331,0.6646684281434936,0.7468968186015977,0.7286467507813382,0.6989912589016537,0.9917297264608792,0.9886487040029932,0.6492672570067023,0.9919049706589924,0.7743337956040532,0.0011065458938709473,0.0025893822511439393,0.0023004603316742383,0.08808600502004713,0.8308388491894817,0.11172223159930397,0.01081227196843092,0.06398690508922332,0.7540104672661644,0.008214836717470472,0.9612844074407871,0.002003619321299528,0.4287983089341386,0.8333567483041752,0.7621496970191618,0.9946096123053418,0.1701539262706183,0.09796277262368652,0.0789588187675417,0.06796274888974145,0.9368192755178724,0.06329048965584196,0.11999427574239875,0.06468354965221007,0.0487754489262299,0.17240824047691944,0.5589998347793332,0.994880452067106,0.04640793187161645,0.7984188552903567,0.5614803618691111,0.002150045989715386,0.0012951542874516167,0.5422772061619346,0.001144435058549401,0.9929966079536069,0.9976821853872381,0.005444703587445862,0.004472915684735543,0.004681524891982412,0.3571024871978285,0.007456471456759698,0.004208981109346371,0.0023715206757823778,0.005315233009773636,0.006299360613165716,0.11783931565458049,0.9869407113498686,0.005824997682463233,0.23402853560953546,0.006341231703444984,0.368533455181824,0.03593556553203879,0.057884418583737864,0.023866558152825956,0.15089187963081824,0.8052614953324062,0.6535027278352374,0.331436645229371,0.0018833680123751329,0.0017083289537153101,0.0017167573613450355,0.058592884641632495,0.9512207152948983,0.9972556167969371,0.9830783768940587,0.693079228028271,0.9804651389386905,0.023474844318921044,0.012523568284067475,0.06006468035419787,0.002357050020356096,0.0011046566181500278,0.0028079306044726774,0.9854745249941033,0.019016926309029226,0.9537595500035276,0.004475303837907036,0.8679876287454663,0.004218216491335499,0.004457193367059621,0.856899144552915,0.736681379471186,0.0017590171231281339,0.927600979865175,0.0017183882236318918,0.926402617465519,0.8084720730883981,0.8403212969096836,0.8697261475559658,0.8065083691299844,0.004394785119754163,0.004146529440347725,0.9943856189089728,0.017145543802083652,0.7905641709872971,0.03327378547228309,0.9798657837670849,0.01757135807576323,0.3248611823313259,0.9955126659880184,0.9985692201056049,0.945439404473841,0.8542715095737464,0.8215512926681342,0.9733155713900621,0.9978187518627636,0.762428185657459,0.7977929449010339,0.8143500049605525,0.9277281673404881,0.9937122761105173,0.0041386694288570594,0.004348852612936053,0.004376116516656879,0.0910737810271069,0.6854306285463521,0.010935013000544514,0.05454763682120096,0.734368574091215,0.31607838460166243,0.005316841683015896,0.7637667794456064,0.6487715028238001,0.9849408645059776,0.018692250299039943,0.7626371767254408,0.8700486609210955,0.007019963257796445,0.6057669380575554,0.8569655730636975,0.9904295672259381,0.9991099063318958,0.7904844476516597,0.04607979391664415,0.0025273508750432703,0.774707758789777,0.004275079636185228,0.8736061681583103,0.005667776949974732,0.004944063835458712,0.992991383043192,0.004829219980334211,0.005716911862573783,0.006584180054139691,0.9820715268544791,0.6913738771239263,0.6464238767050166,0.0017075965749421026,0.0017054180405877018,0.9950357577184497,0.0018160690110772654,0.9932536080775336,0.005302400813126374,0.9991230144109052,0.022951126188715528,0.9867375444443103,0.5752559224740291,0.005627759179631628,0.005800121538673918,0.004838442459173714,0.94686755762855,0.07588084393481177,0.025847665810429923,0.0027199862669908693,0.9967005837637568,0.004721160478176868,0.005158457397858035 -triangular,rgb,0.6516850436770862,0.9950516638202784,0.003959996225039516,0.9956997149901124,0.005430027410205882,0.7957780455275725,0.3161967745710621,0.7680493531334734,0.7062890056509532,0.60524438517124,0.004440284002989473,0.004316411322829939,0.0041622427237518935,0.9954744094429127,0.9993057861503377,0.9700595149025482,0.001616289226064291,0.001675199304517433,0.001661132438631545,0.01677571471131613,0.0021416124520462843,0.0023514920158835724,0.7760540351963892,0.0022198281493907386,0.7872874734983188,0.001137728370217443,0.8755174250520108,0.7474105201546603,0.9562441597246307,0.9533596165110787,0.7938432216513741,0.0054728938576954584,0.7482584906851849,0.2309631684614274,0.9979390401853131,0.9623954570253606,0.011908838019864025,0.002197442563348087,0.5633010541889962,0.5764178243299677,0.9915810786754597,0.8051055988844654,0.7726838113163526,0.9680480059659962,0.6826329192086273,0.006326786780043139,0.00595194355801501,0.003927470794719628,0.7060688424936361,0.08276911946329014,0.7912344510322318,0.9921725020630324,0.6830861473201051,0.6648202226933604,0.8644436681778528,0.6354166387141386,0.13034062598486912,0.10429049355045095,0.00432982599499188,0.0041295021762926855,0.0043231116181101864,0.0022693699427136834,0.9865203051125869,0.7069581878783022,0.926134711877685,0.0031449410364585775,0.0011183834300261331,0.6646684281434936,0.7468968186015977,0.7286467507813382,0.6989912589016537,0.9917297264608792,0.9886487040029932,0.6492672570067023,0.9919049706589924,0.7743337956040532,0.0011065458938709473,0.0025893822511439393,0.0023004603316742383,0.08808600502004713,0.8308388491894817,0.11172223159930397,0.01081227196843092,0.06398690508922332,0.7540104672661644,0.008214836717470472,0.9612844074407871,0.002003619321299528,0.4287983089341386,0.8333567483041752,0.7621496970191618,0.9946096123053418,0.1701539262706183,0.09796277262368652,0.0789588187675417,0.06796274888974145,0.9368192755178724,0.06329048965584196,0.11999427574239875,0.06468354965221007,0.0487754489262299,0.17240824047691944,0.5589998347793332,0.994880452067106,0.04640793187161645,0.7984188552903567,0.5614803618691111,0.002150045989715386,0.0012951542874516167,0.5422772061619346,0.001144435058549401,0.9929966079536069,0.9976821853872381,0.005444703587445862,0.004472915684735543,0.004681524891982412,0.3571024871978285,0.007456471456759698,0.004208981109346371,0.0023715206757823778,0.005315233009773636,0.006299360613165716,0.11783931565458049,0.9869407113498686,0.005824997682463233,0.23402853560953546,0.006341231703444984,0.368533455181824,0.03593556553203879,0.057884418583737864,0.023866558152825956,0.15089187963081824,0.8052614953324062,0.6535027278352374,0.331436645229371,0.0018833680123751329,0.0017083289537153101,0.0017167573613450355,0.058592884641632495,0.9512207152948983,0.9972556167969371,0.9830783768940587,0.693079228028271,0.9804651389386905,0.023474844318921044,0.012523568284067475,0.06006468035419787,0.002357050020356096,0.0011046566181500278,0.0028079306044726774,0.9854745249941033,0.019016926309029226,0.9537595500035276,0.004475303837907036,0.8679876287454663,0.004218216491335499,0.004457193367059621,0.856899144552915,0.736681379471186,0.0017590171231281339,0.927600979865175,0.0017183882236318918,0.926402617465519,0.8084720730883981,0.8403212969096836,0.8697261475559658,0.8065083691299844,0.004394785119754163,0.004146529440347725,0.9943856189089728,0.017145543802083652,0.7905641709872971,0.03327378547228309,0.9798657837670849,0.01757135807576323,0.3248611823313259,0.9955126659880184,0.9985692201056049,0.945439404473841,0.8542715095737464,0.8215512926681342,0.9733155713900621,0.9978187518627636,0.762428185657459,0.7977929449010339,0.8143500049605525,0.9277281673404881,0.9937122761105173,0.0041386694288570594,0.004348852612936053,0.004376116516656879,0.0910737810271069,0.6854306285463521,0.010935013000544514,0.05454763682120096,0.734368574091215,0.31607838460166243,0.005316841683015896,0.7637667794456064,0.6487715028238001,0.9849408645059776,0.018692250299039943,0.7626371767254408,0.8700486609210955,0.007019963257796445,0.6057669380575554,0.8569655730636975,0.9904295672259381,0.9991099063318958,0.7904844476516597,0.04607979391664415,0.0025273508750432703,0.774707758789777,0.004275079636185228,0.8736061681583103,0.005667776949974732,0.004944063835458712,0.992991383043192,0.004829219980334211,0.005716911862573783,0.006584180054139691,0.9820715268544791,0.6913738771239263,0.6464238767050166,0.0017075965749421026,0.0017054180405877018,0.9950357577184497,0.0018160690110772654,0.9932536080775336,0.005302400813126374,0.9991230144109052,0.022951126188715528,0.9867375444443103,0.5752559224740291,0.005627759179631628,0.005800121538673918,0.004838442459173714,0.94686755762855,0.07588084393481177,0.025847665810429923,0.0027199862669908693,0.9967005837637568,0.004721160478176868,0.005158457397858035 -veget,rgb,1.2137665582144259e-26,0.999995452936296,0.9966908400173139,1.0889524604041811e-07,0.989470848990998,0.0007922230727745023,9.623914330874246e-27,4.930823388482481e-09,4.102161688188742e-08,1.5602329638390007e-08,0.9993722137964522,0.9993279209411474,0.9992887509796488,0.9999960720519901,8.184087960369318e-09,1.2945776402243994e-36,0.11979763627106402,0.266391652334257,0.1154958771144593,0.9339599163365704,0.003036712030639309,1.0986011990802301e-08,0.0003801945289429995,1.5337876562653792e-10,0.9896844244618394,0.001240415023479569,1.9471203846034864e-29,0.9888199521616217,2.325223292432936e-35,0.9999995918728879,0.0008329364921938161,0.9982937317587006,0.0008807976011324016,8.085187635543176e-10,0.0023208298537582533,3.6393224382851415e-36,0.9713839321092719,2.5686581632189182e-06,0.39395276741504204,0.005659575902144882,3.3411303416439982e-06,0.9999997881762153,0.001431814759508806,0.9999994623827789,8.046967276056286e-31,0.999762854882102,0.9989305621023935,0.9966000655895203,1.0618612336613157e-30,0.0010427003512645382,0.000718730726305687,2.1498295623544088e-06,1.362915463591075e-08,0.0009718765418291393,3.716090091021365e-33,0.005815826608731397,0.9999981929110695,0.9999983933911677,0.9993676202998588,0.9992950854677329,0.9992904824039847,0.0007786581543258674,4.4822373536666114e-38,0.9999998143910032,0.9999996879492367,3.7889652019686605e-11,3.167326629382776e-05,6.098277360027835e-09,5.678405181676913e-09,2.8622965582522997e-08,0.000993433159906354,8.675018327138209e-07,7.196412962763245e-06,2.76308484884429e-09,0.9999880411053338,0.9999997887531087,0.00024026141805709198,1.2907951076879567e-10,6.356949102227169e-09,0.9999984149835731,1.3235248235423522e-28,0.9999977927301775,2.970753705438848e-06,0.9999982248053304,8.697438595780968e-09,3.2758374830460576e-06,9.41846010487922e-36,2.2329834960463262e-06,1.461629850490281e-23,1.557126319856206e-28,3.3507504626454053e-09,1.614444366650063e-39,0.9999979693972614,0.9999987425329337,0.9999984342694669,0.999998338985799,1.261207121153726e-34,0.9999982155765279,0.9999979103963492,0.9999980639209866,0.9999976851695934,4.464544538818825e-25,0.005522883845686811,4.319630390802368e-07,0.9999979159498854,0.0009180735819688501,8.769678463808937e-30,3.050355621199736e-10,0.021232071171616716,0.004130504469994271,0.0020403354082911647,9.548308250704234e-07,4.901648997949597e-08,0.9997461917136,0.9995014523843124,0.9995452716656869,9.664417526525547e-09,0.9998705114098563,0.9992184457562904,0.9603706484876745,0.9978671244101408,0.9998518923006309,0.0008936980722195667,4.5796910637377715e-06,0.9998244937091623,0.9925231899826215,0.9998616553546466,2.2626481982075762e-08,0.01726427136138454,5.979488415665314e-07,0.9975323646277988,4.886745880343067e-09,0.0006824187067012627,3.2296457024324662e-09,9.046107113610845e-09,0.06713706094293735,0.08361328014371228,0.1390286902634593,0.005102089206701096,0.999999606175581,0.003245278493922157,5.935411950515564e-37,0.0008504102654349599,2.1462723258502695e-05,0.8780611394895973,0.9790942910885749,0.9984965098577401,2.7980181763040925e-09,5.0353105241440885e-05,3.717554939491057e-11,5.926782071814627e-06,0.002033862284698898,1.5495736960913824e-35,0.9993771759256038,3.265600195577672e-33,0.9993587132858316,0.9994613556638701,0.998223453283445,0.9998473237204036,0.03244576063427181,0.9926765185919497,0.039394979865994176,9.617532968177367e-36,0.996228454316841,0.9856574342127638,0.9254053641186257,0.9759004824717747,0.9994575162626588,0.9993098861254363,5.410723115896528e-07,0.0051221412282550826,0.0007304773672395427,0.0002147439313466011,2.4388422805154196e-37,0.01218124748301862,7.849584907758165e-27,9.293174377268068e-40,1.1075159344035381e-07,0.9710262991671299,0.9974969348365105,0.9967682223172262,5.065803585241423e-37,0.0033804457103520603,0.0004740967903529408,0.0009341264474928805,4.645788701174784e-32,0.000576861232390574,0.9999949283849845,0.9993036084974526,0.9994015387227717,0.9993029243715537,9.131792296797528e-10,4.57423554543126e-27,0.9842408142697882,5.877372885330053e-06,6.780502787768881e-31,2.9517541497479615e-08,0.9997635840144586,0.0008551918983562075,0.0007383456361065997,8.716051839701102e-06,0.001141179166761417,0.9579780333912936,4.5436524888396017e-29,0.9998638492750356,0.001970808098164061,4.838800464669242e-33,2.0980235880925626e-06,1.0247989264834383e-08,2.6386841798960396e-28,1.2752160111124997e-07,1.2056709968204566e-06,0.9918682566645256,0.9993793478224241,0.7926689537918802,0.9998104131835616,0.9996299275873504,3.578139920546221e-39,0.9990432359039141,0.9973750880974864,0.9987150862243752,1.730872119779483e-05,0.0008689462652978369,0.9999998209419411,0.3212758253201252,0.38205555792505036,0.9999954559324034,0.28282742584456216,3.1862672261448916e-39,0.9978660639650613,0.00016992556026611432,4.671768756686015e-09,8.121566958147668e-06,0.00364953975694699,0.9984970709449603,0.9998207378494087,0.9995168801200743,0.9999996220982121,1.2298043914458021e-06,0.00035426538202484723,1.1707319014065357e-07,0.006945963802324886,0.999226152092918,0.9995708977343605 -wedg,rgb,0.9999964946849169,0.9999999993744186,6.395988679494498e-13,0.9999999999776257,2.7834528226297328e-12,0.9993607306537187,0.9970946584093044,0.9998442072812755,0.998994006310063,0.9930999528485633,1.1633302745381493e-12,8.559169742496183e-13,7.593905419632856e-13,0.9999999995524822,0.9999999999999964,0.9999999999998233,5.955588549442418e-14,5.85365016254516e-14,6.927210889436044e-14,2.242220998386345e-09,5.052517119691912e-13,6.302550396509274e-12,0.9990391480304598,8.562006562330131e-12,0.9920541529072636,1.9080735614755734e-14,0.999999997503701,0.9783157909008535,0.9999999999982878,0.9999549715488187,0.9993181842306217,2.371303322629712e-12,0.9977100821232295,0.10321591715065387,0.9999999999969562,0.9999999999993692,3.6081286411001483e-10,1.91642835502201e-12,0.719576619510392,0.8904358198526682,0.9999999991898756,0.9292627634529848,0.9986540060983966,0.9999921586605336,0.9999995056117044,3.814876639766916e-12,3.256929436552228e-12,6.194004272026807e-13,0.9999997011392726,3.444472043813928e-05,0.9992860492067013,0.9999999994566988,0.9986198740875072,0.9849035102337499,0.9999999987260515,0.9623490863342784,6.036536767954856e-06,1.775677741697691e-06,8.714380971894112e-13,7.584946909811416e-13,1.0491427087927894e-12,8.572159452139939e-13,0.9999999999999978,0.514215200617122,0.9995399196273911,6.196915788098616e-11,3.6661100863659014e-14,0.9982277323035348,0.9997266424395732,0.9994356134394999,0.9926605078884982,0.9999999993856121,0.9999999963997761,0.9978764675298626,0.999999995797916,0.8521745569285412,2.2801891621639895e-14,1.9451829004663816e-11,6.119491470979223e-12,7.302260433739476e-07,0.9999999817794841,2.7962094390997035e-06,4.410541702619432e-09,1.4556803871359125e-07,0.9997532215677024,1.1499105618732192e-09,0.9999999999991767,1.2359356634422145e-12,0.999233992413247,0.9999999828967331,0.9998303219008742,1.0,2.71221546964955e-05,1.1861051664516012e-06,4.125036692942063e-07,1.9410385884392745e-07,0.9999999999861249,1.3786955495802944e-07,4.028764769767837e-06,1.58108933116177e-07,3.979704179558717e-08,0.8099853364880606,0.8543949090853814,0.9999999999390583,2.983168509121121e-08,0.9993907971452802,0.9999916342668874,6.623202780610395e-12,1.9965817919608417e-14,0.8189917638446388,1.998967693318994e-14,0.9999999997106435,0.9999999999988356,2.1173535690609927e-12,1.0795570283214305e-12,1.3763721041534285e-12,0.5745186859373344,1.0731408027897858e-11,7.744067916752607e-13,9.775179588025204e-14,2.136499253159459e-12,4.601680637414954e-12,0.00022343801929725253,0.9999999935415456,2.821103572326948e-12,0.0010980649181977723,4.633541404406687e-12,0.5949750325555624,3.205128241839418e-07,2.1054956138101245e-05,6.256811036885484e-09,0.00712226322426859,0.9995281046914277,0.9979998458195299,0.4448290769639203,1.4801929643995968e-13,8.600256833739257e-14,7.869863633113961e-14,4.495157104886537e-06,0.9999417874725667,0.999999999988068,0.9999999999999905,0.9918872755865412,0.9999999475766271,1.2980087628672596e-08,4.310773337937018e-10,5.235473394666966e-07,7.804553120509864e-12,3.083559435334994e-14,3.4876136321120037e-11,0.9999999890201859,2.1532702178254083e-08,0.9999999999978477,1.212260030935754e-12,0.9999999989196087,8.180373672088472e-13,9.80103722252127e-13,0.9987411232555523,0.9328817448347999,1.2122759632445517e-13,0.9999719851542919,1.0356862687248161e-13,0.9999999999775295,0.9946383205789597,0.998531635759366,0.9996551083099241,0.9961430577482849,9.448460883381219e-13,7.753337992944226e-13,0.9999999999037263,1.1047175090357669e-08,0.9992702851597073,4.872467612897691e-07,0.99999999999998,1.0611995574141414e-08,0.9976675400492664,1.0,0.999999999999857,0.9999947952298677,0.9987095457216927,0.9962828081035235,0.9999999999999114,0.9999999999958431,0.9985703195144493,0.9993776989052144,0.9999999892217141,0.9999573613833213,0.9999999982503356,7.689166772377957e-13,8.921890533258685e-13,1.11606641552015e-12,0.0006375212921740749,0.9999985284969277,2.1128698606036778e-10,1.0526296911876042e-05,0.9999998574205621,0.31964351302745553,2.02867511409191e-12,0.998458100547132,0.9801201189496586,0.9999999862776279,2.1979014595358977e-08,0.9886550549755513,0.9999999964395423,7.979719517598832e-12,0.9457534544716344,0.9999999982168573,0.9999999986302759,0.9999999999999885,0.9999999290278782,8.799740879496816e-06,4.337987776520791e-12,0.988311206967603,8.456396047059111e-13,0.9997683405341348,2.7788773121364186e-12,1.4509484553026636e-12,1.0,1.3349423344673415e-12,2.985502378543477e-12,5.12341140192004e-12,0.9999999659250431,0.9915485999095897,0.22581117046913307,6.117352620882528e-14,5.732079742596046e-14,0.9999999993652997,8.763238838531205e-14,1.0,2.114561696580545e-12,0.9999999999999583,4.994188318082319e-07,0.9999999924670687,0.8961941407741081,2.641498203032702e-12,2.7695882728718205e-12,1.319217840287695e-12,0.9999085144099972,7.301465683057668e-05,1.3020243796698948e-07,9.057976528648863e-12,0.9999999999690978,1.7331760992669074e-12,2.3005052356654236e-12 -white,rgb,5.492651651811311e-29,3.229799035426393e-08,0.9286418607937355,2.52322106285728e-25,0.371928978043729,2.1076610838331754e-08,2.371848772394766e-28,1.5177857836275503e-12,1.944241228445607e-11,2.348806325083014e-11,0.9975024698282691,0.9919350434734403,0.9939783120018414,2.0635931537548368e-08,9.537389744540791e-29,6.736978236897667e-42,0.7198006447810934,0.8361098694299574,0.7203853225542897,0.8653854802154937,0.12022333136647813,1.081748691763464e-06,1.5643498839978258e-08,1.0259316295940149e-08,0.0001306926656988459,0.012723694899476888,6.982149430649018e-33,0.00021961294116298126,3.2030716977791712e-40,2.672724416863991e-05,2.256906846792525e-08,0.8609042591906392,4.415058562907994e-08,5.765809378624708e-11,1.730755510775089e-21,2.9996986455719125e-41,0.9562901815280275,0.0002378935576058423,5.325372738400228e-05,1.2459359526759928e-06,6.515296182096566e-23,0.004530770893540837,4.683994023772661e-08,3.5915769462333056e-06,8.818072043684565e-34,0.9835814621125395,0.8878865481518555,0.9290940892135998,1.0975237379690475e-33,0.0001362952898780017,2.0875324584400966e-08,3.304374850243962e-23,9.69462054301428e-12,1.2589145062262577e-07,5.031746066670762e-37,7.0616621963879e-07,0.9724165418283419,0.9834324602542165,0.9929478461115668,0.9953671774169429,0.9973986309543366,0.039836831308871404,4.827133533092476e-44,0.01877646187885516,0.00010517814524016527,2.6752752828750833e-09,0.0009963502989749388,5.849734751895164e-12,2.2306207171511143e-12,1.110151509348106e-11,8.790985889199154e-08,1.477570159858973e-23,3.493599047829361e-22,3.4287953342168566e-12,1.9665648314159706e-07,0.009068897178532615,0.003760076429673649,9.695029418350495e-09,6.135383977936022e-07,0.9882252080751922,9.6697662048935e-32,0.9796923595562934,4.3989400178505305e-05,0.9933057975296066,2.9520693757440005e-12,7.32227578328162e-05,9.540149537319065e-41,0.00021333880706054845,4.288931104841656e-25,1.1212424434061016e-31,1.1723154816555435e-12,3.0293269931168543e-46,0.9463254826352663,0.9856292537996076,0.9904048041232104,0.9925974751858485,3.667918039604868e-39,0.993422757411523,0.9764555566160739,0.9931981722884737,0.9955869902954162,4.175370907731907e-26,1.4457926210638407e-06,1.781606444560092e-24,0.995779298492775,2.2756133395768202e-08,2.4347884537800882e-32,2.173657145121887e-08,0.07242411121971616,1.3473374471367323e-06,0.037061793423300474,1.013494882946796e-23,1.871759768600157e-26,0.9935779866303398,0.9967831262674741,0.9975254889217952,1.4385068613767446e-10,0.998613472950249,0.9908597746818231,0.8881318950587744,0.8397828453672929,0.9982669410363786,5.2672583881064666e-05,3.2397667879712648e-22,0.9956205014172765,0.06913389695392362,0.9982067066124555,2.7246057607981505e-10,0.00816753480811383,4.955883588021283e-07,0.971318107101917,8.428696912972792e-10,1.6213359648194123e-08,3.7668905487682895e-12,1.7314134367869307e-10,0.6400773143900855,0.6716818695279354,0.7546383394520016,0.0010819870470431877,2.5230713728273708e-05,5.481175517043418e-21,1.3178459939629762e-42,8.306549978989079e-08,5.445509455147227e-21,0.6756958691014591,0.9617763247762817,0.8754960182541561,2.6074988175976944e-07,0.0012315723798776105,2.520668958156806e-09,5.8090798015758405e-22,0.004782817781543917,2.127581453210893e-40,0.9975651762679476,4.181028082185605e-37,0.9953008455836259,0.993828216419472,0.00011590231868636555,0.00368189184376374,0.4954733308492185,6.259667035839017e-06,0.5317659222813274,1.9715914695529654e-40,0.0001800813941114922,4.219244656723864e-05,7.17034407216387e-06,5.408374557590617e-05,0.9949693530645711,0.9955902907388279,2.9448125200291333e-24,0.012415221502787852,2.1353749602384004e-08,0.0002476443102707343,5.8176642762488055e-43,0.02409400624645738,1.8024147307288588e-28,1.245856213353868e-46,1.1437150885786376e-26,1.1304214346423396e-06,9.897058284416811e-05,0.00015861486237272177,1.932740112398026e-42,3.0942839523007702e-21,2.244215962314833e-08,2.3288487830007254e-08,1.4744927229190292e-35,9.642831336155185e-18,8.290427322614985e-08,0.9955466699622425,0.9937280879158102,0.9974930459827541,5.678477848128668e-10,1.5243633478319965e-29,0.974595121141466,4.147109925023374e-06,5.599438548371184e-34,5.679635694852993e-10,0.9965759527304059,3.520408928466394e-08,1.1977989406278255e-07,9.729961286454918e-22,0.0030431657163647397,7.107538363044468e-05,1.8850714303288518e-32,0.9985552221546997,4.0510286164219756e-07,7.343381741375841e-37,5.743820521753867e-23,2.4220791027471655e-28,3.0473748362195153e-31,1.9786421049312257e-07,0.00010875557407379348,0.00018503243763178055,0.9945229734304368,2.8962991627920375e-06,0.9976644665553883,0.9932439649375079,1.0832605546618391e-45,0.9656084362365133,0.7371852468805381,0.7924611385033472,3.3658896104650804e-21,8.61350764747853e-08,0.03844799917927621,0.8606991214248015,0.8783446426863805,3.269964726145243e-08,0.8549065683245015,9.000719284865846e-46,0.8412635175305359,9.127961642493462e-24,3.45443165220691e-08,6.236884607453301e-22,8.904900097515553e-07,0.8657286852442004,0.9955256751646064,0.9895559198291023,2.747836024490507e-05,5.295256529822159e-07,0.0006181946183807628,1.1051080014133772e-05,2.1492518887336544e-20,0.9978527479748772,0.9981010088421126 -with,rgb,0.9999999999999905,0.9999865989806358,0.9998806151927108,1.0,0.9999983533421283,0.25902822873069026,0.9999999999999998,0.955999938750205,0.8875805848377584,0.915528720096196,0.9043360071236062,0.9957905962465126,0.9916717172061976,0.9999948564335692,1.0,1.0,0.9850657660839134,0.9815539957267948,0.9809558759624244,0.032296835909536054,0.9641840062284781,0.9999805851366095,0.2809467447999645,0.999999851224406,0.0929510305021422,0.9999917760570746,0.9999999999999998,0.07473379392126864,1.0,0.9999844934299229,0.25512552176065534,0.9999688955874205,0.22192014533957932,0.9815715687685562,1.0,1.0,0.04689498247549202,0.9990529088034688,0.04475261911806233,0.10319453535660164,1.0,0.9996089805270617,0.2163008264229732,0.999998831257589,1.0,0.999184126786144,0.999958806672431,0.9998780918228725,1.0,0.1122223582500333,0.26009178252628024,1.0,0.9250757823663142,0.17975341941970974,1.0,0.11572786584536225,0.2976461555521655,0.364003193829988,0.9944999723470154,0.9841925429808505,0.9075410659365283,0.9734417517725555,1.0,0.9993782920673532,0.9999786948145207,0.9999995703157208,0.9999925456606842,0.9456107698438531,0.951789006724017,0.9048300739475208,0.19237259685323335,1.0,1.0,0.9611660887932612,0.9994098892262158,0.9991395067662069,0.9999944059377538,0.9999995615437403,0.9999896609655969,0.4089101895026613,0.9999999999999996,0.2590786955773099,0.9140922861977101,0.47847016283013505,0.9429873294979131,0.9429524307726133,1.0,0.9994668700656489,0.9999999999977369,0.9999999999999993,0.9623601795279492,1.0,0.25892109305873795,0.4808486498117275,0.4497365548751206,0.48321031507729306,1.0,0.4812394786607356,0.26607061460824816,0.4318242387545041,0.4936729713341751,0.9999999999999984,0.1004200777099054,1.0,0.5888590594935573,0.2542381720966103,1.0,0.9999997437303374,0.9999895559267589,0.10392766122909167,0.9999361056636086,1.0,1.0,0.9950769022211089,0.9652178835310921,0.9252928713730402,0.9283768243263253,0.6366236005512018,0.9965693486277024,0.9998242241208737,0.99997454733965,0.8710686340325565,0.10910502253097946,1.0,0.9896988913652639,0.01607287684720052,0.8901392690270244,0.8955714132122333,0.0678256015962906,0.7853863572279876,0.024434169410120537,0.961201907652332,0.2741838963090431,0.9584772664017897,0.9312658138395973,0.9560549786700675,0.976427982377061,0.9751431033052815,0.07728095736301475,0.9999905947763181,1.0,1.0,0.19618591467851162,1.0,0.025411079156759823,0.04381881870900373,0.015355003987446136,0.9999944448879746,0.9999948682972026,0.9999998057842676,1.0,0.20146844681217374,1.0,0.8952970414555969,1.0,0.9855524041757329,0.9930776983393844,0.189294865739681,0.15472650178071917,0.9746005740264495,0.32554518598212934,0.9775079844863483,1.0,0.11823191753122148,0.1273330072405977,0.14623285880242048,0.09798333003754557,0.9888021390201664,0.9822441046585463,1.0,0.16702305254669092,0.25879081993105535,0.2714073075595397,1.0,0.1266709150868919,0.9999999999999998,1.0,1.0,0.37372907758965324,0.17504215158684197,0.13180290231998604,1.0,1.0,0.2599154463829582,0.2529330527495281,1.0,1.0,0.9999491348793024,0.9826039671428742,0.993013162959342,0.895218398987781,0.9888831659803438,0.9999999999999953,0.053571167966312144,0.558880133678954,1.0,0.8848797184497504,0.9796991865554463,0.2326222515751896,0.18500137034011527,1.0,0.24256616943057457,0.07526954129476912,0.9999999999999998,0.7181190417954066,0.1373219501854358,1.0,1.0,1.0,0.9999999999999993,0.9072872757542435,0.9989148186381794,0.08851757979432673,0.9902532356207829,0.14951214492124296,0.946753917644837,0.9950654152353738,1.0,0.9997043319531392,0.9999892867064385,0.9999852347500027,1.0,0.1945788478136659,0.9991688927073944,0.9790323420247021,0.9808064470282837,0.99998642153427,0.9631966182577223,1.0,0.9999741246811799,1.0,0.9933531201121027,1.0,0.11327575199992697,0.9999677528790951,0.99013345637348,0.9978025502116953,0.9999935516084744,0.6836059006804434,0.2720862940046892,0.9997178441432765,1.0,0.7465155332247659,0.7917507573012393 -yellow,rgb,1.0293057632485311e-15,1.7905335456315237e-06,0.06233899485389771,8.618269506756169e-43,4.862131060623577e-05,0.9999972721397418,3.396467431430303e-18,0.9996255588769706,0.9999190845641119,0.9999070991638683,0.9997821369370187,0.953130215105048,0.985255409813242,3.3002573140409244e-07,3.542536901040641e-47,1.3639489210036067e-29,0.999273288742459,0.9993944447042884,0.9995178456738791,0.9999999854841921,0.9999008302800099,0.17575228696956066,0.9999972585141272,0.00011745903260025185,0.9999977077510471,0.010663303350553493,1.0126595795952466e-18,0.999998656811016,9.532586520901581e-28,5.170724669610064e-06,0.9999973595751418,0.005131653958288167,0.9999982951944864,0.9996447989467669,9.241496581019407e-37,4.241188915320757e-29,0.9999999731080805,0.9847461558989994,0.9999998467114588,0.99999966982332,1.5922309494137696e-39,0.0025357437535590225,0.999998124021476,5.5449247953827475e-08,4.8944942371626063e-23,0.4641605245544575,0.00729058169975868,0.06497538840825111,1.4869670826477303e-22,0.9999999304606033,0.9999973298512538,6.27588577802502e-40,0.9998643603648246,0.9999991043476348,1.4143022762207774e-25,0.9999995299424198,0.9999807238370417,0.9999714200936358,0.9693845355489483,0.9950396151239583,0.9997756814799591,0.9998623332892029,3.7091234684880188e-31,0.007196030405031112,1.0967369095898346e-05,0.0007384401990652328,0.016581722960067578,0.9997972744927887,0.9996933478858648,0.9998893059304611,0.9999988748911726,1.9729240989982307e-40,1.5174512447208124e-38,0.9996881891855439,0.0016435726820282373,0.010537898718707242,0.007417018273285794,0.0006923106270413823,0.0752125038165548,0.9999642495205017,9.110870920419305e-18,0.9999877201653543,0.9999844048767912,0.9999529042078548,0.999751150518691,0.99997118025844,2.5974958378312425e-28,0.963284142245412,5.353157836638811e-12,1.231237390110668e-17,0.9995453338293772,1.3583919641147014e-32,0.9999838942525149,0.999935266906883,0.9999554175400353,0.999949121967671,5.8433794599623226e-27,0.999952349052207,0.9999862526872493,0.9999660229520746,0.9999570917252852,8.689405785617706e-17,0.9999996991338126,1.2294172468509506e-41,0.9999186289503176,0.9999972979335771,4.697626449783699e-22,0.0002675353884617365,0.009321200671544625,0.9999997048639518,0.24082316638228365,1.2400521094996991e-40,2.9867568925072244e-44,0.9523172498556137,0.9985978081629938,0.9996268628133714,0.9999321397309439,0.9999784633730393,0.9372259397680318,0.20281221246428285,0.003857338923141628,0.9998113126569962,0.9999999209049009,1.2840469984622277e-38,0.9845617310443572,0.9999999710916296,0.9997396267915778,0.9999601435094679,0.9999999727595789,0.9999950851241047,0.9999999812201913,0.9999008187638678,0.9999968685775696,0.999712836120222,0.9999318848438618,0.9998912027438098,0.9996808463201061,0.9996793463204525,0.9999999629856184,2.262524960557636e-06,3.8732108284021215e-36,2.6516408725010413e-29,0.9999988740354594,6.060641397405615e-37,0.9999999897416142,0.9999999741668735,0.9999999847867986,0.031143722151031346,0.008293159654497397,0.00020550967733954878,2.8180589436860397e-38,0.999999889354185,3.324178721987412e-28,0.9998151192924574,1.2486322606850978e-25,0.9940590792108127,0.9782183091210772,0.9999840679058769,0.9999894271006172,0.9997584963826965,0.9999356086658471,0.9996956385191114,1.1054824931779926e-29,0.9999954245599701,0.9999952478530689,0.9999946686531013,0.9999976628895813,0.9903780964116295,0.9959117355267689,2.3935636382431745e-41,0.999999917347485,0.9999973588632874,0.9999997999430748,2.351101396441776e-30,0.9999999440692557,2.791988588276666e-18,8.485013921929011e-33,1.9482119200148752e-44,0.9999140806586087,0.9999873380210851,0.9999939370362148,3.2252123446645864e-30,2.1706689594374e-36,0.999997720679794,0.9999973271177045,4.3909440507691405e-24,1.7624109103071774e-32,1.9764957580076955e-05,0.9957762256382924,0.9791824143105847,0.999820925290079,0.9995177204901358,3.2663380976851833e-16,0.9999999639982893,0.9999988478032837,1.162764163148152e-22,0.9999694197421545,0.9955815979985219,0.9999980336034271,0.9999991251637443,5.778094212345208e-38,0.9999998508458428,0.9999988630810698,3.471601349253589e-18,0.9999610421698419,0.9999994879967734,1.8230638167952856e-25,1.2585540744433062e-39,1.1287909045706858e-46,1.4213116688907987e-17,0.9999822975285326,0.988437223972476,0.9999979056702424,0.9882691847334295,0.9999953259124958,0.9991208820818757,0.9573771005217976,2.63632958143581e-32,0.18433740164569984,0.000891346119117358,0.001263544597894847,3.1566370089807122e-37,0.999998894090304,0.013456223928686185,0.9994876349174988,0.9993768222283532,1.8337442611001759e-06,0.9998069586310778,2.39615943506758e-32,0.003971268433583571,7.450043799200226e-40,0.9992962777358576,3.235096485512355e-38,0.9999996345130165,0.005261993599370908,0.9834955271361479,0.8574763995922554,1.2449250737440316e-06,0.999997352693388,0.999999809605907,0.925127521682205,2.686991540750781e-35,0.9999697385352805,0.9999461529021563 diff --git a/testResults/testing_english_stem/NoOfDataPoints/6000/results.txt b/testResults/testing_english_stem/NoOfDataPoints/6000/results.txt deleted file mode 100644 index 20200a1..0000000 --- a/testResults/testing_english_stem/NoOfDataPoints/6000/results.txt +++ /dev/null @@ -1,2 +0,0 @@ -Test Instances :: arch/arch_3 banana/banana_3 cabbage/cabbage_4 carrot/carrot_4 corn/corn_4 cube/cube_2 cuboid/cuboid_4 cucumber/cucumber_3 cylinder/cylinder_2 eggplant/eggplant_2 lemon/lemon_2 lime/lime_3 orange/orange_1 plum/plum_3 potato/potato_1 semicylinder/semicylinder_3 tomato/tomato_1 triangle/triangle_3 -Tokens :: archshap cuboid orang yellow shape cut grape to cucumb cherri has brown cube piec rectangl dark cylindershap half like semi bright veget butter small round husk are semicylind out blue slice larg cylindr plantain red 3d corn semicircl purpl box on arc of plum skateboard side eggplanet cob eggplant chow block curv color sweet wedg long lime toy triangl pictur been plastic appl circl white banana a head that triangular pie brinjal child ear with brick look this rectangular bridg and ripe flat is it an sphere as carrot spong in lie lemon squar peach cylind prism mango build ball object fruit lay arch tomato potato cabbag chees green roma the stick diff --git a/testResults/testing_english_stem/negative_insts.csv b/testResults/testing_english_stem/negative_insts.csv deleted file mode 100644 index 1a03c76..0000000 --- a/testResults/testing_english_stem/negative_insts.csv +++ /dev/null @@ -1,14 +0,0 @@ -,archshap,cuboid,orang,yellow,shape,cut,grape,to,cucumb,cherri,has,brown,cube,piec,rectangl,dark,cylindr,half,like,semi,bright,this,butter,small,side,husk,are,semicylind,out,blue,slice,bridg,larg,cylindershap,plantain,red,3d,corn,semicircl,purpl,box,on,of,plum,skateboard,round,eggplanet,cob,eggplant,chow,block,and,color,sweet,wedg,long,lime,toy,triangl,pictur,been,plastic,appl,circl,white,banana,flat,head,that,triangular,pie,brinjal,child,ear,with,brick,look,veget,rectangular,arc,curv,ripe,is,it,an,sphere,as,carrot,spong,in,lie,lemon,squar,peach,cylind,tomato,prism,chees,build,ball,object,fruit,lay,arch,a,potato,cabbag,mango,green,roma,the,stick, -triangle/triangle_4,orange/orange_2,cabbage/cabbage_1,semicylinder/semicylinder_1,cabbage/cabbage_3,corn/corn_1,potato/potato_4,arch/arch_1,cuboid/cuboid_1,semicylinder/semicylinder_1,cube/cube_3,plum/plum_4,cylinder/cylinder_1,cabbage/cabbage_1,cube/cube_4,eggplant/eggplant_1,cube/cube_3,potato/potato_4,orange/orange_2,carrot/carrot_3,orange/orange_2,cucumber/cucumber_4,,semicylinder/semicylinder_2,lime/lime_1,orange/orange_2,cube/cube_4,eggplant/eggplant_3,orange/orange_2,potato/potato_4,banana/banana_4,orange/orange_2,orange/orange_2,arch/arch_2,potato/potato_4,triangle/triangle_1,cucumber/cucumber_4,orange/orange_2,cube/cube_4,orange/orange_3,potato/potato_4,semicylinder/semicylinder_1,plum/plum_1,,banana/banana_2,orange/orange_2,potato/potato_4,triangle/triangle_1,cube/cube_4,cube/cube_4,banana/banana_1,orange/orange_2,eggplant/eggplant_3,,cube/cube_4,orange/orange_3,banana/banana_2,banana/banana_1,orange/orange_2,orange/orange_3,,cube/cube_4,orange/orange_4,banana/banana_2,orange/orange_2,cube/cube_4,lime/lime_4,orange/orange_4,orange/orange_2,orange/orange_2,orange/orange_3,orange/orange_2,cube/cube_4,orange/orange_2,cube/cube_4,cylinder/cylinder_1,semicylinder/semicylinder_2,cylinder/cylinder_1,cube/cube_1,cabbage/cabbage_1,cucumber/cucumber_4,orange/orange_2,lime/lime_4,,,cube/cube_3,cucumber/cucumber_4,orange/orange_2,semicylinder/semicylinder_2,carrot/carrot_2,lime/lime_4,cube/cube_4,triangle/triangle_1,eggplant/eggplant_1,eggplant/eggplant_4,orange/orange_2,lime/lime_4,orange/orange_2,cylinder/cylinder_3,cucumber/cucumber_4,cucumber/cucumber_4,banana/banana_4,arch/arch_1,arch/arch_1,orange/orange_2,,cabbage/cabbage_1,orange/orange_2,triangle/triangle_1,potato/potato_2,semicylinder/semicylinder_1,potato/potato_2,semicylinder/semicylinder_2, -corn/corn_3,potato/potato_3,orange/orange_2,cabbage/cabbage_1,arch/arch_4,eggplant/eggplant_3,potato/potato_3,arch/arch_2,banana/banana_1,orange/orange_2,cucumber/cucumber_4,cylinder/cylinder_3,arch/arch_2,orange/orange_2,lime/lime_2,orange/orange_2,cube/cube_1,potato/potato_3,potato/potato_3,banana/banana_2,potato/potato_3,cucumber/cucumber_1,,eggplant/eggplant_1,cuboid/cuboid_2,plum/plum_1,cube/cube_3,cuboid/cuboid_3,cube/cube_3,potato/potato_3,orange/orange_4,orange/orange_4,banana/banana_2,lime/lime_4,potato/potato_3,orange/orange_2,arch/arch_2,orange/orange_4,cube/cube_3,orange/orange_2,cube/cube_3,lime/lime_4,plum/plum_2,,cube/cube_1,potato/potato_2,potato/potato_3,cube/cube_4,cube/cube_3,cube/cube_3,arch/arch_1,potato/potato_3,potato/potato_4,,cube/cube_3,orange/orange_2,lime/lime_4,arch/arch_1,orange/orange_4,orange/orange_2,,lime/lime_1,tomato/tomato_2,arch/arch_1,potato/potato_3,cube/cube_3,orange/orange_2,lime/lime_4,cube/cube_3,lime/lime_4,orange/orange_2,orange/orange_4,cube/cube_3,orange/orange_4,cube/cube_3,potato/potato_4,eggplant/eggplant_1,banana/banana_2,arch/arch_1,orange/orange_2,lime/lime_4,potato/potato_3,cube/cube_3,,,cube/cube_1,cuboid/cuboid_1,potato/potato_2,cube/cube_4,cucumber/cucumber_4,cucumber/cucumber_1,cube/cube_3,potato/potato_2,semicylinder/semicylinder_1,arch/arch_2,potato/potato_3,cube/cube_3,orange/orange_4,carrot/carrot_3,lime/lime_4,cuboid/cuboid_1,cabbage/cabbage_2,arch/arch_2,orange/orange_2,potato/potato_3,,arch/arch_1,cube/cube_3,cabbage/cabbage_1,arch/arch_1,cube/cube_3,,eggplant/eggplant_1, -,orange/orange_4,eggplant/eggplant_3,cube/cube_4,cylinder/cylinder_3,orange/orange_2,banana/banana_2,cuboid/cuboid_1,carrot/carrot_1,triangle/triangle_2,arch/arch_2,cube/cube_4,arch/arch_4,eggplant/eggplant_3,lime/lime_1,semicylinder/semicylinder_1,cuboid/cuboid_1,potato/potato_2,orange/orange_4,carrot/carrot_2,orange/orange_4,lime/lime_1,,semicylinder/semicylinder_1,cylinder/cylinder_1,,lime/lime_4,,orange/orange_4,banana/banana_2,banana/banana_1,carrot/carrot_3,lime/lime_4,lime/lime_1,potato/potato_2,arch/arch_2,cuboid/cuboid_1,carrot/carrot_3,lime/lime_2,cube/cube_3,cube/cube_1,eggplant/eggplant_1,,,arch/arch_1,tomato/tomato_2,cucumber/cucumber_4,cube/cube_3,lime/lime_2,cube/cube_1,arch/arch_2,orange/orange_4,potato/potato_3,,cuboid/cuboid_3,orange/orange_4,lime/lime_2,arch/arch_2,cucumber/cucumber_1,potato/potato_3,,cylinder/cylinder_1,lime/lime_2,cucumber/cucumber_4,banana/banana_2,lime/lime_2,arch/arch_2,lime/lime_2,cube/cube_1,lime/lime_2,potato/potato_3,cucumber/cucumber_4,cube/cube_1,tomato/tomato_2,lime/lime_2,lime/lime_2,semicylinder/semicylinder_1,potato/potato_2,arch/arch_2,potato/potato_3,cucumber/cucumber_1,orange/orange_4,arch/arch_2,,,,cuboid/cuboid_2,tomato/tomato_2,banana/banana_2,carrot/carrot_3,,cuboid/cuboid_3,arch/arch_1,carrot/carrot_3,cuboid/cuboid_1,orange/orange_4,cucumber/cucumber_4,lime/lime_4,cucumber/cucumber_1,cucumber/cucumber_1,cuboid/cuboid_2,orange/orange_4,arch/arch_4,plum/plum_1,banana/banana_2,,eggplant/eggplant_4,cube/cube_1,arch/arch_2,tomato/tomato_2,cucumber/cucumber_4,,cabbage/cabbage_1, -,lime/lime_2,semicylinder/semicylinder_1,cube/cube_3,semicylinder/semicylinder_2,carrot/carrot_3,tomato/tomato_2,cuboid/cuboid_2,cucumber/cucumber_2,arch/arch_1,cylinder/cylinder_3,cylinder/cylinder_4,cuboid/cuboid_2,eggplant/eggplant_1,cylinder/cylinder_3,cabbage/cabbage_3,cuboid/cuboid_3,arch/arch_1,tomato/tomato_4,,banana/banana_1,cucumber/cucumber_2,,eggplant/eggplant_3,triangle/triangle_2,,lime/lime_2,,carrot/carrot_3,lime/lime_4,tomato/tomato_3,carrot/carrot_2,lime/lime_2,semicylinder/semicylinder_1,arch/arch_1,arch/arch_4,cuboid/cuboid_2,tomato/tomato_4,cuboid/cuboid_3,orange/orange_4,arch/arch_1,lemon/lemon_4,,,cucumber/cucumber_4,potato/potato_4,arch/arch_2,cube/cube_1,cuboid/cuboid_3,tomato/tomato_2,arch/arch_4,carrot/carrot_3,,,cuboid/cuboid_2,cucumber/cucumber_1,lemon/lemon_4,arch/arch_4,tomato/tomato_2,orange/orange_4,,cylinder/cylinder_3,lemon/lemon_4,arch/arch_2,carrot/carrot_3,cylinder/cylinder_1,lime/lime_1,cylinder/cylinder_1,arch/arch_1,,orange/orange_4,carrot/carrot_3,tomato/tomato_2,carrot/carrot_3,cuboid/cuboid_3,lime/lime_1,cabbage/cabbage_1,,cuboid/cuboid_1,potato/potato_2,lime/lime_2,lime/lime_2,arch/arch_4,,,,triangle/triangle_2,potato/potato_4,cube/cube_1,cucumber/cucumber_1,,triangle/triangle_1,tomato/tomato_3,carrot/carrot_2,cylinder/cylinder_3,tomato/tomato_4,arch/arch_2,eggplant/eggplant_1,carrot/carrot_2,lime/lime_2,triangle/triangle_2,,cuboid/cuboid_3,potato/potato_2,lime/lime_4,,arch/arch_2,arch/arch_1,arch/arch_4,cuboid/cuboid_3,arch/arch_2,,cabbage/cabbage_3, -,cylinder/cylinder_1,cabbage/cabbage_3,potato/potato_2,cylinder/cylinder_4,potato/potato_2,lime/lime_2,triangle/triangle_2,,arch/arch_2,cuboid/cuboid_2,plum/plum_2,cabbage/cabbage_1,cabbage/cabbage_3,cylinder/cylinder_4,semicylinder/semicylinder_2,cuboid/cuboid_2,arch/arch_4,carrot/carrot_3,,cucumber/cucumber_2,cabbage/cabbage_3,,cabbage/cabbage_1,eggplant/eggplant_4,,lime/lime_1,,carrot/carrot_2,lime/lime_2,tomato/tomato_2,carrot/carrot_1,cylinder/cylinder_1,cylinder/cylinder_3,arch/arch_4,semicylinder/semicylinder_1,lemon/lemon_4,carrot/carrot_1,cuboid/cuboid_2,carrot/carrot_3,cuboid/cuboid_1,eggplant/eggplant_3,,,arch/arch_2,cabbage/cabbage_2,lime/lime_1,tomato/tomato_2,cuboid/cuboid_2,cuboid/cuboid_1,cuboid/cuboid_3,tomato/tomato_4,,,cylinder/cylinder_1,carrot/carrot_3,semicylinder/semicylinder_2,cuboid/cuboid_3,carrot/carrot_3,cucumber/cucumber_1,,cylinder/cylinder_4,lemon/lemon_1,cuboid/cuboid_1,lime/lime_2,cylinder/cylinder_3,semicylinder/semicylinder_1,lemon/lemon_1,cuboid/cuboid_1,,cucumber/cucumber_1,carrot/carrot_2,cuboid/cuboid_1,cucumber/cucumber_2,cuboid/cuboid_2,,cabbage/cabbage_3,,tomato/tomato_4,tomato/tomato_2,lime/lime_1,cylinder/cylinder_1,lime/lime_1,,,,lemon/lemon_1,cabbage/cabbage_2,lime/lime_4,carrot/carrot_1,,semicylinder/semicylinder_2,arch/arch_2,carrot/carrot_1,cuboid/cuboid_2,cuboid/cuboid_3,cucumber/cucumber_1,lemon/lemon_4,carrot/carrot_1,lime/lime_1,lemon/lemon_1,,semicylinder/semicylinder_1,plum/plum_2,cucumber/cucumber_1,,cuboid/cuboid_1,cuboid/cuboid_1,cuboid/cuboid_3,triangle/triangle_1,cylinder/cylinder_3,,cabbage/cabbage_2, -,lemon/lemon_4,semicylinder/semicylinder_2,arch/arch_2,plum/plum_2,,cylinder/cylinder_1,corn/corn_1,,arch/arch_4,lemon/lemon_4,,cylinder/cylinder_3,cabbage/cabbage_2,plum/plum_4,semicylinder/semicylinder_4,cylinder/cylinder_1,eggplant/eggplant_3,lime/lime_2,,potato/potato_4,cabbage/cabbage_2,,cabbage/cabbage_3,semicylinder/semicylinder_4,,cylinder/cylinder_1,,carrot/carrot_1,cylinder/cylinder_1,tomato/tomato_4,cucumber/cucumber_2,lemon/lemon_4,semicylinder/semicylinder_4,eggplant/eggplant_1,semicylinder/semicylinder_2,triangle/triangle_2,carrot/carrot_2,cylinder/cylinder_1,tomato/tomato_4,cuboid/cuboid_3,semicylinder/semicylinder_4,,,cuboid/cuboid_1,lemon/lemon_3,eggplant/eggplant_4,cuboid/cuboid_1,cylinder/cylinder_1,cuboid/cuboid_3,tomato/tomato_4,eggplant/eggplant_3,,,cylinder/cylinder_3,carrot/carrot_2,semicylinder/semicylinder_4,tomato/tomato_4,tomato/tomato_4,tomato/tomato_3,,plum/plum_4,lemon/lemon_3,cucumber/cucumber_1,carrot/carrot_1,cylinder/cylinder_4,semicylinder/semicylinder_2,lemon/lemon_3,carrot/carrot_1,,tomato/tomato_3,carrot/carrot_1,cuboid/cuboid_3,lemon/lemon_4,cylinder/cylinder_1,,cabbage/cabbage_2,,cuboid/cuboid_3,lime/lime_2,cucumber/cucumber_2,lemon/lemon_4,semicylinder/semicylinder_1,,,,corn/corn_3,lemon/lemon_3,lime/lime_2,cuboid/cuboid_2,,cylinder/cylinder_4,arch/arch_4,cabbage/cabbage_1,cylinder/cylinder_1,cuboid/cuboid_2,lime/lime_1,eggplant/eggplant_3,cucumber/cucumber_2,cucumber/cucumber_2,corn/corn_3,,triangle/triangle_4,,lime/lime_2,,eggplant/eggplant_3,cuboid/cuboid_2,semicylinder/semicylinder_1,semicylinder/semicylinder_2,cuboid/cuboid_2,,eggplant/eggplant_4, -,potato/potato_4,eggplant/eggplant_1,triangle/triangle_1,plum/plum_1,,lemon/lemon_4,corn/corn_2,,cuboid/cuboid_3,eggplant/eggplant_3,,semicylinder/semicylinder_2,corn/corn_1,plum/plum_1,corn/corn_3,triangle/triangle_2,triangle/triangle_2,cucumber/cucumber_2,,lemon/lemon_4,cylinder/cylinder_4,,cabbage/cabbage_2,,,cylinder/cylinder_3,,cucumber/cucumber_2,lemon/lemon_4,lime/lime_1,eggplant/eggplant_3,banana/banana_4,triangle/triangle_4,eggplant/eggplant_3,triangle/triangle_4,lemon/lemon_1,potato/potato_2,cylinder/cylinder_3,carrot/carrot_1,cuboid/cuboid_2,corn/corn_3,,,cuboid/cuboid_2,plum/plum_4,corn/corn_3,cuboid/cuboid_3,cylinder/cylinder_3,cylinder/cylinder_1,semicylinder/semicylinder_1,cabbage/cabbage_2,,,cylinder/cylinder_4,carrot/carrot_1,triangle/triangle_2,semicylinder/semicylinder_1,carrot/carrot_1,carrot/carrot_3,,plum/plum_1,banana/banana_2,cuboid/cuboid_2,tomato/tomato_4,plum/plum_4,triangle/triangle_4,banana/banana_2,cuboid/cuboid_2,,carrot/carrot_3,cucumber/cucumber_2,cylinder/cylinder_1,lemon/lemon_3,cylinder/cylinder_3,,eggplant/eggplant_4,,cylinder/cylinder_1,potato/potato_4,cabbage/cabbage_1,potato/potato_4,cylinder/cylinder_3,,,,corn/corn_2,plum/plum_4,triangle/triangle_1,eggplant/eggplant_3,,plum/plum_1,cuboid/cuboid_3,eggplant/eggplant_3,eggplant/eggplant_3,lemon/lemon_4,cuboid/cuboid_2,cabbage/cabbage_2,eggplant/eggplant_1,cabbage/cabbage_2,corn/corn_2,,semicylinder/semicylinder_4,,cucumber/cucumber_2,,cuboid/cuboid_2,cylinder/cylinder_1,cylinder/cylinder_3,triangle/triangle_4,eggplant/eggplant_1,,plum/plum_4, -,lemon/lemon_1,semicylinder/semicylinder_4,semicylinder/semicylinder_2,semicylinder/semicylinder_4,,orange/orange_2,lemon/lemon_1,,triangle/triangle_1,eggplant/eggplant_4,,cylinder/cylinder_4,eggplant/eggplant_4,plum/plum_2,plum/plum_4,lemon/lemon_1,corn/corn_1,potato/potato_4,,banana/banana_4,,,eggplant/eggplant_4,,,cylinder/cylinder_4,,lemon/lemon_4,orange/orange_2,lemon/lemon_4,cylinder/cylinder_4,lemon/lemon_1,,triangle/triangle_2,plum/plum_1,cylinder/cylinder_4,,cylinder/cylinder_4,cuboid/cuboid_2,cylinder/cylinder_1,eggplant/eggplant_4,,,triangle/triangle_2,plum/plum_1,corn/corn_2,cylinder/cylinder_1,cylinder/cylinder_4,triangle/triangle_2,corn/corn_1,corn/corn_1,,,plum/plum_1,tomato/tomato_4,plum/plum_4,corn/corn_1,cucumber/cucumber_2,carrot/carrot_2,,plum/plum_2,,triangle/triangle_2,lemon/lemon_4,plum/plum_1,cube/cube_4,,cylinder/cylinder_1,,carrot/carrot_2,eggplant/eggplant_3,triangle/triangle_2,potato/potato_2,cylinder/cylinder_4,,plum/plum_4,,triangle/triangle_2,lemon/lemon_4,cabbage/cabbage_3,lemon/lemon_3,triangle/triangle_4,,,,corn/corn_1,plum/plum_2,triangle/triangle_2,cucumber/cucumber_2,,,semicylinder/semicylinder_1,cabbage/cabbage_2,semicylinder/semicylinder_4,eggplant/eggplant_3,triangle/triangle_2,corn/corn_1,eggplant/eggplant_3,,corn/corn_1,,,,lemon/lemon_4,,cylinder/cylinder_1,potato/potato_4,semicylinder/semicylinder_2,,lemon/lemon_4,,plum/plum_1, -,lemon/lemon_3,corn/corn_3,semicylinder/semicylinder_4,,,lemon/lemon_3,,,semicylinder/semicylinder_2,triangle/triangle_4,,semicylinder/semicylinder_4,corn/corn_3,,cabbage/cabbage_2,lemon/lemon_3,eggplant/eggplant_4,lemon/lemon_4,,lemon/lemon_1,,,plum/plum_4,,,plum/plum_4,,eggplant/eggplant_3,lemon/lemon_3,orange/orange_2,,lemon/lemon_3,,corn/corn_1,plum/plum_2,cucumber/cucumber_2,,plum/plum_4,lemon/lemon_4,triangle/triangle_2,,,,lemon/lemon_1,plum/plum_2,,triangle/triangle_2,plum/plum_4,potato/potato_4,carrot/carrot_1,lemon/lemon_1,,,,cylinder/cylinder_4,potato/potato_2,carrot/carrot_1,lemon/lemon_3,carrot/carrot_1,,,,semicylinder/semicylinder_4,potato/potato_4,plum/plum_2,plum/plum_4,,potato/potato_4,,carrot/carrot_1,cylinder/cylinder_4,potato/potato_4,banana/banana_2,plum/plum_4,,plum/plum_1,,,cabbage/cabbage_3,cabbage/cabbage_2,potato/potato_2,cylinder/cylinder_4,,,,,,semicylinder/semicylinder_4,plum/plum_2,,,cylinder/cylinder_3,corn/corn_1,cylinder/cylinder_4,potato/potato_4,triangle/triangle_4,semicylinder/semicylinder_4,cucumber/cucumber_4,,,,,,potato/potato_4,,cylinder/cylinder_3,cucumber/cucumber_2,semicylinder/semicylinder_4,,eggplant/eggplant_3,,, -,potato/potato_2,plum/plum_4,cylinder/cylinder_4,,,orange/orange_4,,,plum/plum_1,,,,,,eggplant/eggplant_4,,corn/corn_3,banana/banana_4,,lemon/lemon_3,,,,,,plum/plum_1,,tomato/tomato_4,tomato/tomato_2,lemon/lemon_1,,orange/orange_4,,eggplant/eggplant_4,,,,plum/plum_1,banana/banana_4,lemon/lemon_3,,,,semicylinder/semicylinder_4,,,potato/potato_4,plum/plum_1,,corn/corn_2,,,,,cucumber/cucumber_4,,corn/corn_2,,tomato/tomato_4,,,,corn/corn_2,lemon/lemon_3,,plum/plum_1,,cucumber/cucumber_2,,tomato/tomato_4,,,,plum/plum_1,,,,,cabbage/cabbage_2,,banana/banana_2,semicylinder/semicylinder_4,,,,,,potato/potato_2,,,,semicylinder/semicylinder_2,eggplant/eggplant_4,,corn/corn_1,corn/corn_3,corn/corn_3,plum/plum_2,,,,,,lemon/lemon_3,,eggplant/eggplant_1,,cylinder/cylinder_4,,eggplant/eggplant_4,,, -,banana/banana_2,cabbage/cabbage_2,triangle/triangle_4,,,,,,,,,,,,,,corn/corn_2,lemon/lemon_3,,cube/cube_1,,,,,,plum/plum_2,,cuboid/cuboid_3,potato/potato_2,lemon/lemon_3,,,,corn/corn_3,,,,plum/plum_2,lemon/lemon_3,potato/potato_3,,,,corn/corn_2,,,,plum/plum_2,,,,,,,cucumber/cucumber_2,,,,cylinder/cylinder_4,,,,cucumber/cucumber_2,banana/banana_4,,plum/plum_2,,,,cylinder/cylinder_4,,,,plum/plum_2,,,,,banana/banana_2,,,,,,,,,triangle/triangle_4,,,,triangle/triangle_4,corn/corn_3,,corn/corn_3,corn/corn_2,lemon/lemon_1,,,,,,,banana/banana_4,,cylinder/cylinder_4,,triangle/triangle_4,,triangle/triangle_4,,, -,,eggplant/eggplant_4,,,,,,,,,,,,,,,,banana/banana_2,,banana/banana_2,,,,,,,,cuboid/cuboid_2,orange/orange_4,cabbage/cabbage_2,,,,corn/corn_2,,,,,cucumber/cucumber_2,,,,,,,,,,,,,,,,plum/plum_1,,,,cucumber/cucumber_2,,,,triangle/triangle_4,orange/orange_4,,,,,,cucumber/cucumber_2,,,,,,,,,orange/orange_4,,,,,,,,,,,,,,corn/corn_2,,banana/banana_2,,eggplant/eggplant_4,,,,,,,orange/orange_4,,semicylinder/semicylinder_4,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,banana/banana_2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,plum/plum_1,,,,,,,,,,,plum/plum_1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/testResults/testing_hindi/NoOfDataPoints/6000/groundTruthPrediction.csv b/testResults/testing_hindi/NoOfDataPoints/6000/groundTruthPrediction.csv deleted file mode 100644 index 74275ee..0000000 --- a/testResults/testing_hindi/NoOfDataPoints/6000/groundTruthPrediction.csv +++ /dev/null @@ -1,108 +0,0 @@ -Token,Type,0-arch/arch_3,1-arch/arch_3,2-arch/arch_3,3-arch/arch_3,4-arch/arch_3,0-banana/banana_3,1-banana/banana_3,0-cabbage/cabbage_4,1-cabbage/cabbage_4,2-cabbage/cabbage_4,3-cabbage/cabbage_4,0-carrot/carrot_4,1-carrot/carrot_4,2-carrot/carrot_4,0-corn/corn_4,1-corn/corn_4,2-corn/corn_4,3-corn/corn_4,4-corn/corn_4,0-cube/cube_2,1-cube/cube_2,2-cube/cube_2,3-cube/cube_2,4-cube/cube_2,0-cuboid/cuboid_4,1-cuboid/cuboid_4,2-cuboid/cuboid_4,3-cuboid/cuboid_4,4-cuboid/cuboid_4,0-cucumber/cucumber_3,1-cucumber/cucumber_3,2-cucumber/cucumber_3,3-cucumber/cucumber_3,4-cucumber/cucumber_3,5-cucumber/cucumber_3,0-cylinder/cylinder_2,1-cylinder/cylinder_2,2-cylinder/cylinder_2,3-cylinder/cylinder_2,4-cylinder/cylinder_2,0-eggplant/eggplant_2,1-eggplant/eggplant_2,2-eggplant/eggplant_2,3-eggplant/eggplant_2,4-eggplant/eggplant_2,0-lemon/lemon_2,1-lemon/lemon_2,2-lemon/lemon_2,3-lemon/lemon_2,0-lime/lime_3,1-lime/lime_3,2-lime/lime_3,3-lime/lime_3,4-lime/lime_3,0-orange/orange_1,1-orange/orange_1,2-orange/orange_1,0-plum/plum_3,1-plum/plum_3,2-plum/plum_3,3-plum/plum_3,4-plum/plum_3,0-potato/potato_1,1-potato/potato_1,2-potato/potato_1,3-potato/potato_1,0-semicylinder/semicylinder_3,1-semicylinder/semicylinder_3,2-semicylinder/semicylinder_3,3-semicylinder/semicylinder_3,4-semicylinder/semicylinder_3,0-tomato/tomato_1,1-tomato/tomato_1,2-tomato/tomato_1,3-tomato/tomato_1,0-triangle/triangle_3,1-triangle/triangle_3,2-triangle/triangle_3,3-triangle/triangle_3,4-triangle/triangle_3 -,,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,plum,plum,plum,nan,nan,nan,nan, , , , , ,nan,nan,nan,nan,nan,nan,nan,nan,nan -,rgb,0.00958721875047366,0.0008052892228908859,0.0018088905956080202,0.00044051334372685646,7.953272668513248e-05,0.0011499266146822145,6.284628712265852e-05,0.9997863368357285,0.9999955273042229,0.9999975778457926,0.9998410324180459,0.9793255763915366,0.9837765718210407,0.9858763156286617,0.9880829103852804,0.9857462629214955,0.9835300707673531,0.9813284950907115,0.9842719513286216,4.6090921610380365e-05,8.57891003576241e-05,7.188451433041955e-05,5.7917332305242434e-05,0.0003006325885617537,0.9999999999780249,0.9999999999610978,0.9999999999639018,0.9999999999491698,0.999999999841112,0.0008992845369222206,0.00020188753104663412,0.0005511431167224105,0.0005250330631799934,0.0006295679127034898,0.0008833708633731552,0.9999118327882137,0.9998566703172425,0.9999398359408093,0.9998949985406339,0.9998664055938467,0.9260977915869708,0.9615968737915189,0.9408780528767173,0.9002979535888457,0.9323506995486747,3.408759220384478e-08,3.600174969990248e-08,3.66744061966116e-08,4.190891866354995e-08,3.4680781393437987e-09,1.8538779224658654e-09,9.724292385938457e-10,4.482789373887049e-09,4.7703575862747035e-09,1.676209999006677e-05,0.00024068599086167546,5.521768085713937e-06,0.9999709277801776,0.9999606375402307,0.9999897441343994,0.9999697754144581,0.9999627174912985,0.989406593862637,0.9916775002644004,0.9975029654515962,0.9974545774118273,6.586445106219583e-09,4.565617649400694e-08,6.022403584768376e-09,5.6129974728344684e-08,6.733640573395725e-09,0.8169748070922684,0.847782035023325,0.8445723931683256,0.8888473772485066,0.00038429166697971054,0.00030908239548394455,0.00031894807998825153,0.0014773580177706342,0.0006376123609035686 -अच्छा,rgb,4.15884402237498e-06,5.120312873902521e-06,1.6817589286448982e-05,0.001493553104753213,0.0014968466804180247,0.9999999999986282,0.999999999999623,0.9999984002060579,0.9999999141070051,0.9999999475543532,0.999999920664208,0.9999999999998677,0.9999999999999654,0.9999999999999685,0.9999999616857053,0.9999999660297345,0.999999969088616,0.9999999714707203,0.9999999745309094,3.448271458432761e-05,7.79145203904301e-05,0.00012770950082642302,0.0015052854539982826,0.0018165150551173043,1.91883195088103e-12,1.8955049539504855e-12,2.7064098143029874e-12,3.552064328942692e-12,1.1981062117340395e-10,0.9987968188758687,0.9988721588715969,0.9989483881129408,0.9993423162284539,0.9994890687329251,0.9997700276687936,1.0,1.0,1.0,1.0,1.0,0.999999734151861,0.9999998202734502,0.9999998683325351,0.9999999060797468,0.9999999809675578,1.0,1.0,1.0,1.0,0.9999909261546759,0.999996928993603,0.999997938218664,0.9999976209502099,0.9999986991683452,1.0,1.0,1.0,0.9999999999995952,0.9999999999999554,0.9999999999999964,0.9999999999999993,1.0,1.0,1.0,1.0,1.0,0.9999999999995448,0.9999999999993836,0.9999999999997069,0.9999999999994551,0.9999999999997973,1.0,1.0,1.0,1.0,5.7506847075901164e-05,8.818577273111885e-05,0.00019994126091152297,0.00022029343663420125,0.00025186512908193003 -अनाज,rgb,5.426297190995884e-12,3.85336072072385e-12,4.40033825678038e-11,3.127113344862609e-08,8.928859984513801e-09,0.9808257296838129,0.5195685470729835,0.021053121884920128,0.00013638139800601072,5.023422223054314e-05,0.06774774851738741,0.9832032367416623,0.9688218738179234,0.9644555965742061,0.9491534526423905,0.9583908048079763,0.9644848506833384,0.968967561424066,0.9656035786583635,1.423428159293422e-11,9.490319468966666e-11,1.8208050718674207e-10,6.785515082378811e-09,3.287160361582514e-08,6.332280696235779e-52,6.582745415206139e-51,1.3529851921129154e-50,1.1956550294613685e-49,1.6284406994874042e-43,0.1730959312517886,0.06888712900299185,0.1449302650990862,0.19201455908287446,0.2467967491480745,0.4268948365280562,6.349778663411099e-38,4.37969570651941e-38,2.801454022153659e-39,1.0061335089942144e-38,7.108013758716513e-40,0.9724211019039813,0.9628422365310918,0.976494500556463,0.985853833684381,0.9899518266992218,7.729201830883637e-13,3.023560622370243e-13,2.979236024521832e-13,1.1663519482683944e-13,2.565069180600687e-09,5.494299298593305e-10,7.914621092175229e-11,8.211887479863873e-09,1.1475981348208574e-08,1.1967543879468173e-09,5.612517501600806e-08,2.2177107497904255e-12,0.0336294751284311,0.03253521181386538,0.0013852075467943128,0.003422814087569011,0.0005013760364934435,0.005857164187976436,0.002041693575990764,0.0003634355422209364,0.0003650624876807456,8.475990051413073e-10,3.8697398747637095e-07,4.485248654122817e-10,6.365734137500903e-07,4.833491666914402e-10,7.19122645611242e-36,3.044459733399985e-36,8.369009662948453e-39,9.855452109646043e-39,1.686909524080792e-10,2.984445298889014e-10,1.1439741477597714e-09,2.974418635554983e-09,2.479547832643672e-09 -अमरुद,rgb,0.984787114852757,0.9983407674205376,0.9950039344304934,0.9948774723355015,0.998953099746491,0.0063535033721507355,0.06525976222130371,2.7081726481140787e-07,3.920393307728799e-09,1.9938860821680697e-09,9.037036255411802e-08,2.0069974079512126e-07,1.1301544950375695e-07,9.72394584269904e-08,3.5555361726607213e-06,4.050195148133172e-06,4.504366092581565e-06,4.943646861194363e-06,4.094538721806371e-06,0.99979421150023,0.9995317273680268,0.9995400446965647,0.9992197763841849,0.9961886164876435,4.1597805776592966e-08,6.750260916926584e-08,5.6548070721204615e-08,6.914994635857517e-08,5.922516315970003e-08,0.6870860097739555,0.8964475076549,0.7691410606239307,0.753257394451396,0.7059951293557168,0.583338583386634,7.022129469733018e-14,1.0576969160125389e-13,4.4650039005196754e-14,7.611382072630836e-14,8.512111250249849e-14,3.3371160141429234e-05,1.60215521599521e-05,2.2143152366631286e-05,3.3687681493804895e-05,1.4818300842565777e-05,0.8692554540857552,0.8421376330728363,0.8381809043321811,0.7886826584576587,0.9999868537307881,0.9999903799226887,0.9999942820165441,0.9999756866438986,0.9999695604870447,0.003998377576192596,0.0002629999119987173,0.007493443254470113,7.389723463125194e-10,5.411034563800601e-10,8.419579229304213e-11,1.3908701891166908e-10,7.11826901991857e-11,4.383119182022279e-09,2.891329370599926e-09,8.137207419802467e-10,8.260595935320983e-10,0.9979172736482741,0.9874631417116692,0.9978665755123439,0.9842489009362405,0.9973896058074097,1.1443179953530753e-10,8.943197734880372e-11,7.434792636741742e-11,5.143566736260522e-11,0.9982767865663137,0.9984008682757023,0.9979009771548389,0.9911139470371902,0.9957344471303405 -अर्ध,rgb,0.9225083857842775,0.9955596312073223,0.9575111082708564,0.6690910464778536,0.9611878261975579,1.1406521915577487e-08,1.240485307315624e-06,3.420560194359017e-13,1.8296437906985183e-14,1.2441629065150793e-14,6.675602800893586e-14,3.2108254736489604e-14,2.2777805313979697e-14,2.0130978182953548e-14,6.768349347143803e-13,7.362637251955322e-13,7.905929027106462e-13,8.429101802368039e-13,7.032265465441641e-13,0.9995102697206305,0.9971874307820634,0.9965327791609874,0.9756564489802958,0.7443615422083156,0.9999983465574646,0.9999975943726834,0.9999960633356102,0.9999925585165116,0.9975392586735958,3.121551000312165e-05,0.000267202516050704,5.7912431217408146e-05,4.684068170870418e-05,3.100332880099e-05,1.1985174967583775e-05,0.000164328248370385,0.0003235984776486106,0.00036052401375785394,0.0004052341682838926,0.0014734432771203588,7.224200768152609e-12,3.3994077338166094e-12,4.282621724166378e-12,5.979424463581783e-12,2.1151457751064045e-12,0.9899857299384355,0.9915669251163832,0.9913406329096304,0.9917573133640087,0.9999759038605538,0.9999921261534732,0.9999982220441145,0.9999243698324707,0.9998903935043073,0.0007293058322271032,5.246025037565624e-06,0.025048062705454816,6.063538841593237e-16,4.97850219821626e-16,2.279051478460689e-16,3.3600088779115064e-16,4.259040481457409e-16,3.501545169685353e-14,3.4552340241962165e-14,1.5509528999302724e-14,1.5785337680148986e-14,0.9978331408838271,0.7866658554372256,0.9983462860792357,0.6940076863354321,0.9978700684602007,0.17290745643955704,0.18305790936329022,0.6960377184710459,0.5756366364649005,0.9817033506496843,0.9796083786226547,0.9542494656813529,0.6987771441017753,0.8638694023515266 -आकर,rgb,0.9999999999999944,0.9999999999999976,0.9999999999999682,0.9999999999754212,0.9999999999931293,1.439759002594811e-05,0.00016203157514261616,0.18250401527263915,0.21492008628525164,0.23895094289708846,0.01340966731221815,1.4328960629485636e-07,8.348002139179708e-08,8.249263469226603e-08,0.0008700573020223004,0.0007420600137700422,0.0006558833856384868,0.0005912040945483453,0.0005591350481631358,0.9999999999999913,0.9999999999999414,0.9999999999998841,0.9999999999946994,0.9999999999741529,1.0,1.0,1.0,1.0,1.0,0.9967830808295998,0.9988581013140906,0.9973240192096168,0.9955783459561185,0.993299932033445,0.9795099370394547,0.9999901463185138,0.9999924685796767,0.9999977473506572,0.9999961437413303,0.9999990102544319,0.0034803438706653353,0.0026982609298597466,0.0018631278931687042,0.0012685856623103383,0.00032180955476781886,0.984642851615835,0.9864061903143293,0.9860418689326146,0.9862523588151515,0.9999999772266742,0.999999985448875,0.9999999953811749,0.9999998784684897,0.9999997740736402,0.002250940783555445,5.593890063421428e-05,0.04643529987491752,4.9748362802932315e-06,1.3277453122722826e-06,1.2907633620168033e-06,3.1529282205470534e-07,1.2838796096638977e-07,1.1306518608377689e-08,1.23133829872785e-08,1.6406599485455236e-08,1.635021861694893e-08,0.9992713294761475,0.9528752330889056,0.999367688247906,0.9278402295914667,0.9991317328754707,0.9999896307602594,0.9999925922602517,0.9999996185571726,0.9999995151868121,0.9999999999998941,0.9999999999998115,0.9999999999992453,0.999999999997732,0.9999999999982623 -आकार,rgb,0.9999999999999094,0.9999999999999536,0.9999999999995197,0.9999999997609053,0.9999999999240259,2.1352748922738466e-05,0.00019224740536178696,0.18653368007052876,0.23927881130091105,0.2672893927624166,0.017076791178226646,3.8661835612478015e-07,2.3770607123351633e-07,2.361188586082559e-07,0.0011995198544995102,0.0010301658758752848,0.0009152993704391148,0.0008285830227692584,0.0007908702395067702,0.9999999999998423,0.9999999999990898,0.9999999999982798,0.9999999999398896,0.9999999997473557,1.0,1.0,1.0,1.0,1.0,0.9920667660184921,0.9968593481190263,0.9932388083103586,0.9892489751535402,0.9843037738402863,0.9567737213165528,0.9999868924911544,0.9999896885366817,0.999996746911699,0.9999945389566921,0.999998465367853,0.004098245604562418,0.003300873424133805,0.002315266055707823,0.001598474044383222,0.00045523128643426905,0.9671521309737421,0.9708484744810102,0.9701571490515765,0.9708778108761016,0.9999998371321809,0.999999892111103,0.999999962575644,0.9999992359139164,0.9999986458878423,0.0025126371839539353,8.595892383157118e-05,0.042029145528176694,1.2466545542827986e-05,3.6726146898295943e-06,3.788035542440565e-06,1.0030249752970604e-06,4.4398955429853673e-07,4.1026198754678394e-08,4.502339093032737e-08,6.111371708067014e-08,6.089236364839235e-08,0.9977738981706643,0.9014626109891622,0.9980528506581284,0.8577994064756427,0.9973987017581467,0.9999830093767914,0.9999876846155918,0.9999992364006041,0.9999990545052289,0.9999999999984752,0.9999999999973852,0.99999999999052,0.9999999999745508,0.9999999999797438 -आयताकार,rgb,0.5879174346003311,0.8174693014001291,0.5674696698653198,0.1603452500210761,0.36692274428400223,3.00881927814107e-06,2.822416409678063e-05,2.631498399152548e-07,1.5654607250595528e-07,1.5230588353199163e-07,1.0989524710934247e-07,2.234934727678186e-08,2.0479063714478155e-08,1.984969623753967e-08,1.2238047580037124e-07,1.2235283359778603e-07,1.2257259881018545e-07,1.2293151596800862e-07,1.1605163684457826e-07,0.8904427418129089,0.7608246569558245,0.7262045822711539,0.41878033172363227,0.17780061901542404,0.9999999653337791,0.9999999454468683,0.9999999268807012,0.9999998746155547,0.9999917835272624,0.00023746856645435435,0.0006107293209228019,0.00030688312285425247,0.0002668154365829811,0.00021709945008119945,0.00013263956789901028,0.8043123692375034,0.8472363146335866,0.8915877629107773,0.8792999476017792,0.9430660379644201,2.9148824438051606e-07,2.2587019673959184e-07,2.2904999191075825e-07,2.397763464812395e-07,1.4716231780570488e-07,0.442286705321992,0.48412146351243374,0.48172482365141245,0.5110859381278212,0.8627632413018572,0.9191365393513852,0.9621956098067074,0.7702841755575455,0.7323039136725956,0.002872282962603461,0.00026214943683588836,0.0234530176186112,1.401977493502162e-08,1.2190366471826395e-08,1.2817230245132981e-08,1.2423883278213722e-08,1.578455672033344e-08,5.286577025578758e-08,5.9073099285087624e-08,5.3805791754309516e-08,5.4115464532522455e-08,0.43957082801844105,0.05376632778526109,0.4825033912079969,0.04224266363182315,0.45334983906217324,0.9708923642254754,0.9744458262458092,0.9948613606606896,0.9936034639429926,0.5937288588212226,0.5616825583388211,0.43253533107160996,0.22639589040259317,0.3036441516460457 -आर्च,rgb,0.9878053978879484,0.9885235077519042,0.9733416685204753,0.7583873658799828,0.8212195074117307,0.00031638530490954496,0.0009638047275792003,0.012624460314953175,0.0533519237986412,0.07047343839717111,0.006974318388448334,0.0002981734548340506,0.00033418191931344424,0.00034764919417129184,0.0010464207872095024,0.0009671988452987881,0.0009092671805952198,0.0008628450957987706,0.0008880795088144472,0.9793829072997048,0.9608272300796136,0.9503763734214292,0.8331982495912199,0.7518893538211874,0.9999999999999996,0.9999999999999991,0.9999999999999989,0.9999999999999978,0.9999999999997304,0.007797185482192713,0.010606472010911583,0.008209323297586937,0.007125721620090597,0.006332225513154105,0.004623078185179693,0.9999999836888416,0.9999999852710648,0.9999999938256805,0.9999999907098075,0.9999999958725176,0.0009505315500186581,0.0010313869110959244,0.0008612188727716408,0.0007062347818270551,0.0005682492334690575,0.7753533959761003,0.8166370345576008,0.8168903428380223,0.8509369770892448,0.6274471378030817,0.7179633300536593,0.8210121054425736,0.5138730734482002,0.4765397353138575,0.18790630824499352,0.061537680623269926,0.6038153737528277,0.0038755857092722013,0.0033465717884085307,0.007944171880773069,0.00517608944608362,0.007580232447578879,0.0024330491662305654,0.003247472824562267,0.0054772726573960265,0.005464401508769804,0.42862691412417736,0.09825779785148486,0.4715428813946934,0.08446070976789742,0.45951767592033627,0.9999999224335829,0.9999999404994071,0.9999999903734175,0.9999999898762871,0.9550480437135507,0.9447480073777131,0.9128002702691363,0.8863832520292592,0.8901245207608786 -आलू,rgb,1.489999399099712e-15,2.1349364856611332e-16,1.1953461462345386e-15,1.7941336194721886e-14,4.230507952067806e-15,0.3396417471865724,0.12809544546851392,0.4865981640910986,0.9975832283844266,0.9991047038307834,0.947523301349027,0.9999747773663179,0.9999940258763051,0.9999951298167804,0.4289480406101678,0.4163793633524959,0.4056622893775286,0.3960145540026043,0.4583214757109506,9.958871587143035e-17,3.416613697232034e-16,4.527635901381023e-16,3.2552655356611906e-15,1.540581799620669e-14,1.4660745876907012e-09,8.452298747208716e-10,1.2257222501390272e-09,1.1164005211948118e-09,7.5467898225196e-09,3.773690886337388e-09,1.130385833816273e-09,2.8093231214596018e-09,4.092697231193756e-09,5.973968345130175e-09,1.6191827927739164e-08,1.0,1.0,1.0,1.0,1.0,0.024668979536707433,0.06173151575230411,0.055235331089299476,0.04601022669525719,0.22601357272739533,0.860293340079604,0.92531765725973,0.9293180531051968,0.9696050970487979,1.009673069782238e-11,1.6208922370919105e-11,1.3889173666136621e-11,4.1269693424290147e-11,7.465661674704417e-11,0.999995846776516,0.9999997781329218,0.9999982580102266,0.9999997940796024,0.999999963654141,0.9999999989456259,0.9999999994484663,0.9999999999694147,0.9999999998683404,0.9999999999489857,0.9999999999908624,0.9999999999907874,7.214873300127312e-05,0.0002553799584651232,0.00010078367025645942,0.00033757943037625456,0.0001545421321668652,1.0,1.0,1.0,1.0,9.318626849431888e-16,1.124221139865484e-15,2.356256068201976e-15,9.436995005404534e-15,5.186795979358662e-15 -इसका,rgb,0.00019492374922530574,0.06354987182982642,0.36013486851744175,0.9999997606352746,0.9999999842447151,1.0,1.0,0.9999982793805142,0.8034196342632745,0.339771778962946,0.9999999678618093,1.0,1.0,1.0,0.9999999999999993,0.9999999999999996,0.9999999999999998,1.0,0.9999999999999998,0.9995969023124841,0.9999143550119249,0.9999845416342025,0.9999999900718176,0.9999999277028199,2.2432640316879053e-87,1.254485940660861e-85,3.511661976962781e-85,1.2848028950952286e-83,8.930563314965215e-74,1.0,1.0,1.0,1.0,1.0,1.0,7.77452381551109e-08,1.969874403948983e-07,1.725524900953435e-09,2.340034152840467e-08,3.963834423555082e-09,1.0,0.9999999999999998,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999934654,0.9999999999997131,0.9999999999836391,0.9999999999999389,0.999999999999992,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9988190217067695,0.9958240278377485,0.5355344455847453,0.36350137339486144,0.997661196014133,0.9995481127109955,0.9999569575772226,0.9994658887287231,0.9999258814065577 -इसे,rgb,1.0,1.0,1.0,1.0,1.0,0.9999999999776055,0.999998896801533,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.6561451470472368,0.7968823054997183,0.8065442808309307,0.916850714843478,0.999392599304363,0.9941836466955125,0.9814587440666241,0.9971807815689213,0.994220362329182,0.999999878973179,0.9999999999337166,0.9999999219419006,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.005997507786959724,0.053132920996641304,0.005442492098073567,0.06862081538926276,0.005905717690327831,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -इस्तेमाल,rgb,0.9999999999137339,0.999999999996894,0.9999999999898999,0.9999999999976208,0.9999999999997455,0.9999999960641539,0.999999999861727,0.7558075778561669,0.005081532680274366,0.0018022139721283555,0.5316246155696073,0.9863103714514997,0.9726536012427749,0.9659897687801264,0.9982630819005442,0.998630538106211,0.9988704552760501,0.9990448929456087,0.9987436121917337,0.9999999999999136,0.9999999999997917,0.9999999999998264,0.999999999999831,0.9999999999985298,6.270410989792723e-10,1.6777051156671487e-09,1.481766884365779e-09,2.6748381062690973e-09,1.8647920955412795e-08,0.9999999999635578,0.9999999999947713,0.9999999999804157,0.9999999999801288,0.9999999999737001,0.9999999999530025,8.392703107504097e-10,1.5233080997483458e-09,3.316626357149298e-10,8.252197143373845e-10,7.97789384110324e-10,0.999921073509604,0.9997710549180152,0.9998727963480661,0.9999393447904795,0.9998474597384266,0.9999999999993869,0.9999999999991571,0.9999999999991247,0.9999999999986176,1.0,1.0,1.0,1.0,1.0,0.9999999936238284,0.999999788068486,0.9999999963044168,0.005998702037148577,0.0054120035673886025,0.00036144204556641215,0.001133773207225721,0.0005860067078715824,0.4062569108090317,0.2712696948610193,0.04939140843552767,0.05055561260503081,0.9999999999999971,0.9999999999999778,0.9999999999999971,0.9999999999999711,0.9999999999999962,7.424675532821993e-05,4.8397168938816e-05,2.299398109160489e-05,1.3607454038122565e-05,0.9999999999985616,0.9999999999988762,0.9999999999987332,0.9999999999902516,0.9999999999967688 -उपयोग,rgb,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9231984704916268,0.9343881300437606,0.9424534852106489,0.9740387685219738,0.9999991670478608,0.9985802727385169,0.5535033849231947,0.9999991534858323,0.9999986541126527,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0226873550544448,0.9999988782019059,0.00683841209242945,0.9999998013880588,0.012509461629539208,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -और,rgb,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.3736783795627054,0.67478407010855,0.06640790749136931,0.3388714156388469,0.3069159164918182,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999543,0.9999999999998284,0.9999999999992133,0.9999999999953006,1.0,1.0,1.0,1.0,1.0 -ककड़ी,rgb,0.9999652863045616,0.9999748357776111,0.9999728376428901,0.9999690818768633,0.9999685183393509,0.12300723236657765,0.03735572667120406,0.5069076932919976,0.017596256531959554,0.008642928019443264,0.2102314704404856,0.003889647767819742,0.0014388976317444378,0.0012732155740684589,0.7218050131286463,0.7294878115399567,0.7356036922905428,0.7408315255442963,0.7142047043625073,0.9999742290018839,0.9999743414581707,0.999973508379869,0.9999678997384119,0.9999687848639937,5.326234374277852e-08,1.262766070950238e-07,1.2768404845778815e-07,2.3376326466808856e-07,3.5122340647775986e-06,0.9995898656367861,0.9995758028553107,0.9995758970332719,0.9995100239532431,0.9994694489847171,0.9993115174963857,3.6531065478091556e-26,3.311594940058542e-26,9.107870714840084e-27,1.6879398599522936e-26,5.611230864373113e-27,0.9334250303047396,0.8980343615661402,0.904614224926992,0.9127563817002824,0.8142133176575562,8.8217296825791e-08,4.410481032871603e-08,4.25826599592041e-08,1.945231627069703e-08,0.8931595805190503,0.7645856882862712,0.620769707045379,0.8439549741722763,0.8090610861538342,8.24405573924965e-09,9.861132159838052e-09,5.211946643292557e-10,0.0001686992892596571,5.249774752480014e-05,3.4878351011535565e-06,2.2034692832862605e-06,1.9689847247984653e-07,1.7578984293336622e-07,7.716770647128161e-08,2.3263492003528345e-08,2.3272985629354295e-08,0.0004574730055818999,0.0023957981678672177,0.00029960986639968317,0.002497674880520595,0.0002440074434922783,1.6407289108380427e-24,1.0568344015196292e-24,8.765732732601585e-26,8.281976547527781e-26,0.9999748487985427,0.9999745621069072,0.9999734874066649,0.9999709599571563,0.9999724565073569 -ककड़ी,rgb,0.9999587035081887,0.9999686694745014,0.9999671591859315,0.9999634710870337,0.999961527177285,0.14593697937562958,0.043161897163518745,0.5919073062630696,0.02706280584182473,0.013561232788157658,0.2801584380646414,0.005916558892470751,0.0022286844779218725,0.001978897824265915,0.7797197740391073,0.7859292025145418,0.7908522634595727,0.7950462220917899,0.7730295757858776,0.9999667829288681,0.999967634461986,0.9999666525323383,0.9999605251115626,0.9999629234166157,6.142527445007642e-08,1.444024415598366e-07,1.4683046470700095e-07,2.683930576228201e-07,4.143055497165464e-06,0.9995857334921555,0.9995589995594005,0.9995680862311835,0.999502957023506,0.9994651237553919,0.999316190704171,8.463791990662839e-26,7.610748615749059e-26,2.1305944240724826e-26,3.905954231182889e-26,1.296171572150481e-26,0.9477198613052058,0.920490463503267,0.9253883217035099,0.9314471034199571,0.8535408314667989,9.55563017334156e-08,4.809646890969119e-08,4.6473323339441124e-08,2.1431943887205842e-08,0.8703801650830847,0.7222652560364352,0.5646529979671759,0.8157413632728097,0.7774783957683445,1.0716598401012134e-08,1.364146397932068e-08,6.70874748677877e-10,0.00028595702650073416,9.036611649939194e-05,6.290457415879467e-06,3.9634820200710456e-06,3.6351212305859983e-07,3.0315363998955363e-07,1.345591191138075e-07,4.1713276841997614e-08,4.17190083195747e-08,0.00043631619147217017,0.0023790256742150222,0.00028627600401742785,0.0024941535049143064,0.00023448404662169655,3.258077052965732e-24,2.109978080554017e-24,1.7580124779054089e-25,1.6741726718415996e-25,0.9999690934167821,0.9999687587073814,0.9999677580866412,0.99996576388006,0.9999670418578493 -कहा,rgb,0.0017121442540631489,0.00013909276865553766,0.00046426947718337046,0.0004085309200712765,6.763172559798788e-05,0.9012433697000922,0.35778573042961465,0.9999992742235048,0.9999999920910895,0.9999999961408448,0.9999997543122352,0.999998874506135,0.9999993587838206,0.9999994545757522,0.9999854830835893,0.9999831406464263,0.9999809542636151,0.999978809851156,0.9999827119442515,1.2316671248299561e-05,3.034516440408145e-05,2.920814942155437e-05,4.845969376932362e-05,0.00029011343460536503,0.9999999552213892,0.9999999253547456,0.9999999381770412,0.9999999236079166,0.9999999353977058,0.03588964649559478,0.007815752699252044,0.022585872520303675,0.02434959972182522,0.03133382099762207,0.054197202336317564,0.999999999997863,0.9999999999965739,0.999999999998616,0.9999999999975495,0.999999999997033,0.9998408263964228,0.9999282255921641,0.999895787520174,0.9998313781803775,0.9999270699557568,0.0013294446030535081,0.0016180315691573838,0.001667619257277669,0.0022725397824203053,1.866487373894919e-07,1.216693033202674e-07,6.485954069562452e-08,3.510222727287784e-07,4.389357370887466e-07,0.8103886149011498,0.9891350790080864,0.6371356134629755,0.9999999978028864,0.9999999982542969,0.9999999997399542,0.9999999995042868,0.9999999997125113,0.9999999655159563,0.9999999771036242,0.9999999941171975,0.9999999940145585,2.1698057722399293e-05,0.00018027848079701084,2.1591252066197237e-05,0.00023356818692927048,2.65736217753473e-05,0.9999999925188717,0.9999999941907922,0.999999994567415,0.999999996403264,0.00013383154193655184,0.0001211701460000478,0.00016008540759805234,0.0008169777792622016,0.0003540882724136785 -कहेते,rgb,0.9903083823918029,0.9834953803798133,0.9904058334040462,0.9951838287988891,0.9913893569455918,0.997967892573715,0.9905804508889332,0.9998499931479464,0.9996585055584879,0.9995917847413398,0.9998443080515372,0.9995939047944962,0.9994716838049684,0.9994627334571357,0.9998965133400856,0.9998966312623256,0.9998966392423096,0.9998965825201521,0.9998958309204825,0.9746516278578787,0.9835235847035771,0.9844148742360618,0.990315992509587,0.9947867531143153,9.069725460234015e-05,0.00013964551524706044,0.00015951929216591023,0.00023807559680580283,0.003108590652126962,0.9993950925040868,0.9989971642028835,0.9992971082370199,0.9993047657880688,0.9993543047487984,0.9994433826201183,5.231217975775807e-08,4.330994291701601e-08,2.566104242695332e-08,3.174625050984288e-08,1.5544579743188927e-08,0.999901329498261,0.9999017425602746,0.9999007100516462,0.9998983649812448,0.9998940823613488,0.013478243445727749,0.010139594053293899,0.010080663398603468,0.0075619191540235485,0.6224370699893444,0.4773231006762264,0.33371731840273994,0.6560909246353325,0.6591049943243851,0.09403576912497154,0.2646302588468327,0.01609634104830268,0.9994002412829216,0.999166969304477,0.9981529500934826,0.9977477295368712,0.994587427085441,0.9867872357178074,0.9823665526714528,0.9771297834737224,0.9770513336627562,0.1570282140184121,0.5208875520408056,0.13080350978814956,0.5541895555058934,0.12987547236705632,4.407664055776761e-08,3.67139595078909e-08,8.331471814205778e-09,9.205675046665188e-09,0.9892257628115018,0.9896340403476267,0.9915847478002192,0.9947450619374572,0.9935559363505359 -किया,rgb,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.922489909657189,0.9338010786569224,0.942021860574608,0.9740437872633436,0.9999992829715073,0.9986622137874368,0.5490483982714338,0.9999992718154391,0.9999988360788159,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.021203932046328252,0.9999990296940384,0.006287625361725124,0.9999998317824482,0.011588375539316407,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -केला,rgb,0.999999523237913,0.9999999845276883,0.9999999395079667,0.9999999798194614,0.9999999981520649,0.9999481358120581,0.9999988614395952,0.00017182213406521552,4.534243532478228e-07,1.7589543965599036e-07,6.390482058560012e-05,0.004505996764690317,0.00248016626362469,0.00200552882795593,0.02243510801043323,0.02805969258593918,0.03361072404969736,0.03930519645216271,0.030439183584523858,0.9999999995868263,0.9999999988460062,0.9999999990073158,0.9999999988122203,0.9999999877040232,9.186475577633408e-11,2.0296502343519916e-10,1.7051419631693658e-10,2.5943376438538125e-10,6.258986440165774e-10,0.9999992886928845,0.9999999106689175,0.9999996316678184,0.9999996231550125,0.9999994900662297,0.9999990450831223,7.651177940402629e-10,1.4630896895803835e-09,4.0404369009581763e-10,9.048789541057989e-10,1.1396141368778492e-09,0.3162512675104879,0.14059286384011319,0.2246254517604781,0.3741454286140332,0.19625938924918757,0.9999999997750146,0.9999999997232012,0.9999999997133759,0.9999999995963662,0.9999999999999516,0.9999999999999751,0.9999999999999891,0.9999999999999101,0.9999999999998899,0.9999959369172225,0.9998037701733765,0.9999987855972106,5.846687430191804e-07,5.8576751960413e-07,5.5508617060874357e-08,1.7850910433975223e-07,1.267720450280431e-07,0.0001626557078103646,9.983832671207593e-05,1.6204519409733874e-05,1.661529397264869e-05,0.9999999999970708,0.9999999999581954,0.9999999999971927,0.9999999999428355,0.9999999999964804,5.227440947299095e-05,3.6885716326922377e-05,3.097077751431193e-05,1.7917467942269492e-05,0.9999999911676626,0.9999999929169652,0.9999999913170231,0.9999999246658305,0.9999999760974468 -केले,rgb,0.9999996480801301,0.9999999904698343,0.9999999596756567,0.999999987074049,0.9999999989614143,0.999950438745494,0.9999991288427441,6.787779440314429e-05,1.3609497897998554e-07,5.058479677771457e-08,2.4073868294225696e-05,0.0021492220278280447,0.0011541838972893754,0.000923674875451792,0.011327981401970073,0.014367925033306589,0.017415298328105237,0.020585418435025867,0.015672106128667273,0.9999999997892732,0.9999999993749733,0.9999999994657158,0.9999999993485276,0.9999999923280855,2.6185496380543662e-11,5.95999786103329e-11,4.9501940483761303e-11,7.622930182765033e-11,1.8174237515971427e-10,0.9999994330791585,0.9999999364367462,0.9999997167522198,0.999999709835163,0.999999600830158,0.9999992266138632,2.9017118902920203e-10,5.752959421897296e-10,1.5081565986227844e-10,3.498382622558604e-10,4.5266273878173415e-10,0.21100843819754384,0.08245138296377993,0.1406935740801787,0.2594606212585396,0.12056005000877339,0.9999999999071834,0.9999999998853697,0.9999999998811124,0.9999999998308231,0.9999999999999853,0.9999999999999929,0.9999999999999971,0.9999999999999718,0.9999999999999651,0.9999971613380039,0.999829454872354,0.999999232428172,1.803096380442022e-07,1.8203751139259345e-07,1.563241904799201e-08,5.350420804039684e-08,3.8106837713709706e-08,7.104477573589936e-05,4.2846495365268874e-05,6.394705514790965e-06,6.565428054642194e-06,0.9999999999989655,0.9999999999825062,0.9999999999990152,0.9999999999756359,0.9999999999987519,3.4465432411942566e-05,2.4000544708276274e-05,2.0638525768718186e-05,1.1596585771948727e-05,0.9999999946606115,0.9999999957612478,0.9999999947280005,0.9999999485854754,0.9999999846545311 -कोई,rgb,0.9999999999915339,0.9999999999940699,0.9999999999676894,0.9999999961182191,0.9999999980898189,0.0004948302534081105,0.001549557020454387,0.7329233949138595,0.6830344411088068,0.6872573972001507,0.23810456550307732,2.9689666129999295e-05,1.728686814580387e-05,1.6987636648373182e-05,0.044193203860686,0.0393330496696331,0.03590771652800842,0.0332421580277546,0.031769905155997306,0.9999999999810443,0.9999999999333409,0.9999999998903906,0.9999999983467913,0.9999999958143022,1.0,1.0,1.0,1.0,1.0,0.9974249404708795,0.9985327289604727,0.997604342583972,0.9964916978424349,0.995330113991495,0.9896473197800176,0.25942338681399557,0.28290628582988114,0.43766982523674725,0.3629856685298504,0.5368263342861977,0.12158160671231374,0.10212421370953205,0.07846940708744421,0.05901107461339137,0.02091127797782213,0.31921683195922873,0.31037779485795597,0.3053763941636254,0.279415735598016,0.9999929039462041,0.9999933654881135,0.999996362831907,0.9999759502912622,0.9999614795456033,0.00044888538345605336,4.662801996232118e-05,0.001997268915356372,0.00037226115476457207,0.00011541656130655653,7.721863100890102e-05,2.382289756210484e-05,7.876153163195613e-06,8.047368112247252e-07,7.477346292190651e-07,8.20116688867283e-07,8.166333433933101e-07,0.9447433210023454,0.6039171614051666,0.9451933581228774,0.5339870345790874,0.9308070871919056,0.24065800533952864,0.2734593690331596,0.6468661134715485,0.6146435973894532,0.999999999913953,0.999999999868525,0.9999999996536582,0.9999999993516953,0.9999999994193105 -क्षेत्र,rgb,3.3840788075595807e-09,2.139002574503535e-09,2.5982903397919955e-09,3.956174108640092e-09,3.8805883934606844e-09,0.20093567267695117,0.5672138614729478,0.011567334675819217,0.7320120444900947,0.877688002793416,0.0743131688103278,0.9735102747024157,0.9930989017784503,0.9941456482611556,0.0041191595316821435,0.003934844165312785,0.0037910534824775813,0.003670265342241082,0.004404781201023875,2.3235445366383615e-09,2.473539893843641e-09,2.648503095363394e-09,3.948404254792763e-09,4.017562137178719e-09,0.9999996068495265,0.9999987993111396,0.9999988121436864,0.9999974535136273,0.9999337818209411,2.565970804729461e-07,2.5921194097193166e-07,2.668857227880377e-07,3.304012767631833e-07,3.734274239717058e-07,5.530624507509722e-07,1.0,1.0,1.0,1.0,1.0,0.00040433206305374943,0.0007633047482991579,0.0007007596396667346,0.000623124565635164,0.00211598427011279,0.9999999709006993,0.9999999885319447,0.9999999890733219,0.9999999962022377,0.000360585026532086,0.0012712053692532615,0.00307158458319509,0.0006895274757935427,0.000980131451694454,0.9999999991756612,0.9999999990787358,0.9999999999778493,0.999549205481047,0.9999111757534729,0.9999977116657919,0.9999988328876396,0.9999999566612795,0.9999999663002681,0.9999999888696357,0.9999999977663718,0.9999999977654959,0.9966537038414272,0.9736543449318017,0.9980981698227396,0.9726045135217277,0.9985742389708012,1.0,1.0,1.0,1.0,2.4540451675332515e-09,2.5458045992273466e-09,2.831976750981772e-09,3.3251039333913925e-09,3.0703164115642297e-09 -खंड,rgb,0.9999999999998208,0.9999999999999676,0.9999999999992921,0.9999999992709956,0.9999999998969982,1.5254032196418273e-09,4.777175717013824e-08,6.74665149411716e-07,1.452082251194637e-07,1.2652895012987798e-07,2.315720375341114e-08,1.9435326608977265e-13,8.668913635969947e-14,8.049949584442897e-14,5.907081782652327e-09,5.273151913223962e-09,4.8388061461269135e-09,4.507980775448383e-09,3.938382302442728e-09,0.9999999999999478,0.9999999999994758,0.9999999999989413,0.9999999999300011,0.9999999993169075,1.0,1.0,1.0,1.0,1.0,0.4401664611017395,0.7993964711133814,0.5290307123257532,0.3904296289929594,0.2734890098825633,0.08522172614518794,0.0004602051087193327,0.0007145711303079205,0.00174220452830169,0.0012436911675925313,0.005231904408386336,6.270401330050909e-08,3.5655410376846066e-08,2.7575974048360582e-08,2.1848028046336726e-08,3.723516395790193e-09,0.1341998588407327,0.13765932129261146,0.13295611791651657,0.1189310140701157,0.999999902843912,0.9999999452386524,0.9999999863404216,0.9999992861269678,0.999998505664076,1.8250245244381392e-07,1.3259269405643076e-09,5.466009748314475e-06,8.025741870894288e-13,1.757087751225083e-13,7.786757254880568e-14,2.172464134959143e-14,6.268016491545997e-15,2.5493446018131925e-15,2.3289429269166143e-15,1.860832831597306e-15,1.8652732558835966e-15,0.9596273733081513,0.12929510367635527,0.9644000193447254,0.07803049507294765,0.9471048135341887,0.008656855215228602,0.011031063442751107,0.17873658146354016,0.12769892379613995,0.9999999999983749,0.9999999999971274,0.9999999999864246,0.99999999992409,0.9999999999570963 -खट्टा,rgb,7.91244329720394e-06,0.0001328409622896244,6.549928988882359e-05,0.0006909109616765708,0.004727541620119681,0.10026027438306968,0.7925517451603779,3.569354675680499e-10,8.696616144041847e-12,4.861607089502236e-12,4.462816323276865e-10,1.2066914985125167e-06,1.1878060844681584e-06,1.0336278202486622e-06,6.085554514339634e-08,7.607266362677514e-08,9.108053615655803e-08,1.0649418576242372e-07,8.962112874928203e-08,0.004574367666616072,0.0026158731762525884,0.0034716968636004765,0.006751896771985931,0.0010979270464171577,9.334755618032885e-21,1.7193596206618382e-20,1.6783862937127396e-20,2.529992860271803e-20,1.5092803430200362e-19,0.0031816500530994934,0.017064057738183307,0.005641580344703369,0.006479348944137963,0.005533279484796294,0.004371281895473193,2.2754980998148436e-05,4.052508718393321e-05,1.717754312328413e-05,3.05607075042092e-05,4.5983000132460717e-05,3.4641620059553683e-07,1.7265277788619307e-07,3.023078883350226e-07,6.036005195855779e-07,5.067266696908549e-07,0.9999941666295812,0.9999946206610216,0.9999945582851161,0.9999946547940215,0.9999088345880149,0.9999637014924972,0.9999839657674985,0.9999044836932282,0.9999083083129263,0.9979175655504728,0.9645216336393075,0.999604116622865,6.719877098979104e-10,1.4298192148557619e-09,5.337525772205874e-10,2.4677302038516683e-09,5.996674204804575e-09,6.71196863065997e-06,6.00500867318477e-06,1.8103520852896929e-06,1.8528855171687338e-06,0.9999922693921698,0.9999239189579753,0.9999936066899333,0.9999058763074161,0.9999932379990408,0.10083823710684658,0.08438232589917234,0.11192139697064415,0.07607772159658384,0.00046033855825967956,0.0006325975847124245,0.0007025615077667179,0.0001276042020411628,0.0003356007305562473 -खीरा,rgb,0.9999652863045616,0.9999748357776111,0.9999728376428901,0.9999690818768633,0.9999685183393509,0.12300723236657765,0.03735572667120406,0.5069076932919976,0.017596256531959554,0.008642928019443264,0.2102314704404856,0.003889647767819742,0.0014388976317444378,0.0012732155740684589,0.7218050131286463,0.7294878115399567,0.7356036922905428,0.7408315255442963,0.7142047043625073,0.9999742290018839,0.9999743414581707,0.999973508379869,0.9999678997384119,0.9999687848639937,5.326234374277852e-08,1.262766070950238e-07,1.2768404845778815e-07,2.3376326466808856e-07,3.5122340647775986e-06,0.9995898656367861,0.9995758028553107,0.9995758970332719,0.9995100239532431,0.9994694489847171,0.9993115174963857,3.6531065478091556e-26,3.311594940058542e-26,9.107870714840084e-27,1.6879398599522936e-26,5.611230864373113e-27,0.9334250303047396,0.8980343615661402,0.904614224926992,0.9127563817002824,0.8142133176575562,8.8217296825791e-08,4.410481032871603e-08,4.25826599592041e-08,1.945231627069703e-08,0.8931595805190503,0.7645856882862712,0.620769707045379,0.8439549741722763,0.8090610861538342,8.24405573924965e-09,9.861132159838052e-09,5.211946643292557e-10,0.0001686992892596571,5.249774752480014e-05,3.4878351011535565e-06,2.2034692832862605e-06,1.9689847247984653e-07,1.7578984293336622e-07,7.716770647128161e-08,2.3263492003528345e-08,2.3272985629354295e-08,0.0004574730055818999,0.0023957981678672177,0.00029960986639968317,0.002497674880520595,0.0002440074434922783,1.6407289108380427e-24,1.0568344015196292e-24,8.765732732601585e-26,8.281976547527781e-26,0.9999748487985427,0.9999745621069072,0.9999734874066649,0.9999709599571563,0.9999724565073569 -खीरे,rgb,0.9999999997429989,0.9999999990691772,0.999999998807533,0.999999972931381,0.9999999365211556,0.09013745285188696,0.009337782027841192,0.9999978247537508,0.9999969230381704,0.9999966529934462,0.9999881800149869,0.7469593589544501,0.5781061343423869,0.5783607604424699,0.9998994701031735,0.9998834890168734,0.9998689289863856,0.9998549333490345,0.9998553120134018,0.9999999893080694,0.9999999878555178,0.9999999826390739,0.999999925248326,0.9999999636143868,1.0,1.0,1.0,1.0,1.0,0.9999650153425875,0.999923630488976,0.9999517967008139,0.9999349250363728,0.9999309827286624,0.9999064610913896,5.230589485139714e-13,3.71227316689647e-13,3.6181369217480665e-13,3.348857490418997e-13,1.7952630709651796e-13,0.9999319819490567,0.9999355168774311,0.9999058879093321,0.9998532363950396,0.9996753432569901,8.19191527435973e-08,5.138389567414406e-08,5.0246669195857136e-08,3.006663247885801e-08,0.6209012337785594,0.363746772293654,0.22971823170863953,0.4575065302384187,0.37649367354815494,4.837294031664102e-08,1.2221718633892152e-07,6.37135735377031e-09,0.987893502841157,0.9464364967955261,0.845672201107672,0.5357110422660099,0.10251036177338876,0.0008777168387058378,0.0005627042569734871,0.0005696007229900154,0.0005614224329680134,5.180506188224156e-05,0.00021153003019262973,3.6411371719130236e-05,0.00022091922143760895,3.0506487886816355e-05,3.738662692178856e-14,3.435245750368737e-14,1.1776270598952802e-14,1.3807892282316466e-14,0.9999999951052767,0.9999999931335548,0.9999999894517045,0.9999999947215663,0.9999999914771237 -गाजर,rgb,1.9182278869816246e-08,1.1949124657489218e-09,6.642523033206333e-09,1.6735129572486966e-08,1.8844888676330703e-09,0.007282091859758145,0.00015439372132568344,0.9992104123601597,0.9999792492710581,0.9999878640809706,0.9997681823261924,0.9993162088182491,0.9995382571185725,0.9995987726732544,0.9938094817567811,0.9929908034293641,0.9922360014724606,0.9915031793622331,0.9929611587179684,1.030847513693206e-10,3.7934243072438396e-10,4.033572672080171e-10,1.2461291769108512e-09,1.1571287066815086e-08,2.5079912460531596e-05,2.3351825573023156e-05,3.2379047753016964e-05,3.952282797747229e-05,0.0006734224389780615,2.3030770069838552e-05,3.5118901334819e-06,1.312349845954775e-05,1.483596744496927e-05,2.059564197933073e-05,4.2799706227440855e-05,0.6385639292621097,0.49443794556551174,0.5901324309704769,0.5055404238139009,0.31923619626515715,0.9403425249336055,0.971401222467466,0.9609260721163764,0.9410828430617963,0.9744931513763844,4.2415963197943537e-10,4.147806290694952e-10,4.2592758703886367e-10,4.666609144807885e-10,8.746465398327021e-13,3.783483451551712e-13,1.2687102436286762e-13,2.0104570472811795e-12,2.636091955655149e-12,7.558840595946736e-06,0.00041828191822199475,7.23430674990913e-07,0.9999964048316249,0.9999967646852582,0.9999990618063395,0.9999982646957263,0.9999982457668566,0.9997724441215616,0.9998091508397476,0.9999340595117308,0.9999328477682075,4.116144631501808e-11,1.4097610921958794e-09,3.502530418169001e-11,2.0438257850209567e-09,4.344573974380073e-11,0.0007813141755204262,0.0008489290426678299,0.00025631779152965935,0.00041123357214877004,2.1329450238014027e-09,2.0976740176912314e-09,3.5352030827083093e-09,2.452283871827071e-08,9.558309700680533e-09 -गोबी,rgb,0.9999957055112111,0.9999772540367262,0.9999802633156103,0.9997827797421438,0.9993247407471901,0.029927299666021073,0.0025029819602581964,0.9999882028541421,0.9999959672857027,0.9999965305836208,0.9999694083356553,0.9098968536347865,0.871021381010357,0.8763224996925915,0.9995009342460207,0.9994181516849513,0.9993418727816422,0.9992678569028056,0.9993110733503251,0.9997204300693939,0.999758971141989,0.999680965300592,0.9991637253652852,0.9997017568632409,0.999999999999994,0.9999999999999922,0.9999999999999918,0.9999999999999896,0.999999999999952,0.9865836042974558,0.9638986216252535,0.9806599358463854,0.9764149832871066,0.9770517184970193,0.9754729705417838,3.205363438566046e-07,2.179696933460509e-07,2.830742111604418e-07,2.2482423389225132e-07,1.370070786778296e-07,0.9992559033600988,0.9994315139269805,0.999160573501044,0.998657118733569,0.9980934539022406,1.0011384600773806e-07,7.553963383486358e-08,7.495171783980573e-08,5.641238804715625e-08,0.0018833814525860268,0.0007750002975364664,0.00040632039540411825,0.0013683736487867643,0.0011363547654693032,6.420323734042593e-07,2.962889622704204e-06,1.167009136543573e-07,0.9986530347127743,0.9960973974743761,0.994750708265309,0.9801614823054707,0.9136588967516365,0.06726535690413399,0.05554025105786123,0.08144174896427642,0.08027619289151948,3.4603145780439164e-06,1.7105412622581017e-05,2.6750458451817487e-06,1.89464036667541e-05,2.4886021522074705e-06,4.263493196848426e-09,4.333612417551845e-09,2.0945935377402927e-09,2.64752346076973e-09,0.9999190939388258,0.9998925945008174,0.9998622733763116,0.9999478125736575,0.9999056666862333 -गोभी,rgb,0.9999958604693956,0.9999779723438444,0.9999808816330644,0.99978767733282,0.9993378990481095,0.029089600319986496,0.0024123960352368233,0.9999884268593766,0.9999960478516678,0.9999966001781416,0.9999698581374228,0.9086648917434015,0.8691162035026258,0.8744923583081904,0.999504391344993,0.9994219028202761,0.9993458626754206,0.9992720524764587,0.9993150857749273,0.9997271041591735,0.9997647177073101,0.9996882472234166,0.9991795332424411,0.9997081957736008,0.9999999999999947,0.9999999999999929,0.9999999999999925,0.9999999999999905,0.999999999999956,0.9866375119129105,0.9639424922043809,0.9807164586579894,0.9764647048572876,0.9770986398681204,0.9755077180812471,2.928937715476192e-07,1.9894269828911437e-07,2.5845920356917556e-07,2.0517489640858434e-07,1.2481116572632314e-07,0.9992611289665193,0.9994357816405224,0.999165847115632,0.9986635971142821,0.998099039525601,9.319112017488671e-08,7.023099159592346e-08,6.968088667066917e-08,5.237724925710417e-08,0.0018313252651996196,0.0007512185607661588,0.0003930415046037078,0.0013283558650306604,0.0011021694228005839,5.986368997421102e-07,2.773105522955338e-06,1.0816899301723611e-07,0.9986492442128795,0.9960699534553583,0.9947009960781835,0.979884264233525,0.9120348349255556,0.06503031372921994,0.05361853098101529,0.07874471106385389,0.07761105026463098,3.274070021060931e-06,1.6260966621675985e-05,2.5285831553990125e-06,1.8014994301917596e-05,2.3513707481424157e-06,3.853471847226483e-09,3.91640233233923e-09,1.8875506365367777e-09,2.3872943115593884e-09,0.9999212725902584,0.9998953810752864,0.9998656950408379,0.9999492415608907,0.9999080941454153 -घन,rgb,0.9999998487746873,0.9999998687519508,0.9999996153224638,0.9999908933322925,0.9999939211046366,0.0033283680374353083,0.006481221115570652,0.5964930199248673,0.6082051008185505,0.6193290440697993,0.2711115389164031,0.0008177694030936235,0.0005907907317132414,0.0005882421130454184,0.08146769416443672,0.07525622939243862,0.07071019762004253,0.06706360429518671,0.065695215473089,0.9999996919063204,0.9999993156616989,0.999999048762418,0.9999944093097043,0.9999903121923568,1.0,1.0,1.0,1.0,0.9999999999999998,0.9500880324463385,0.9631503655147629,0.9515460580777494,0.9387355781317126,0.9275691086236847,0.8853426208682622,0.5426613579766054,0.5581986153174614,0.6747683514072563,0.6216134546256245,0.7253539156131893,0.1413828566320379,0.13015314944335063,0.10862357597098778,0.08906374215460558,0.04760045771508832,0.20988920214763537,0.2079168122572175,0.20561959210437472,0.1955735224092572,0.9984535514083789,0.9985143812202496,0.9989859905960888,0.9966386942614589,0.9954672747765928,0.003688887437991344,0.0009229499947221575,0.009837368697223873,0.0056006664357226826,0.0026496798183493243,0.002245855772868935,0.001016425202004982,0.0005136382266354788,9.622157129819924e-05,9.391427618700901e-05,0.00010625536640076969,0.00010589141065483631,0.6903547553949384,0.3234877402222128,0.6925918676781394,0.28544285375790307,0.6588260824755852,0.4426253114326221,0.4743108279853123,0.725779991903808,0.7103956551871609,0.9999992316033688,0.9999989799777573,0.999998086658721,0.9999972721276101,0.9999973850179923 -घनक्षेत्र,rgb,0.9999999999977516,0.9999999999994393,0.9999999999863356,0.9999999709318894,0.9999999955737635,8.786979121520182e-11,3.707115065146495e-09,2.8308116614443226e-07,3.5403481096921124e-07,4.220858997410029e-07,1.2015099439741852e-08,7.850047332871587e-14,4.7197430710374905e-14,4.627372342686128e-14,7.004404260136115e-10,5.96168400721255e-10,5.266242536555175e-10,4.74803587318639e-10,4.3958758875856397e-10,0.9999999999986084,0.9999999999845335,0.9999999999664344,0.9999999969721092,0.9999999714981506,1.0,1.0,1.0,1.0,1.0,0.00887680741075273,0.04074728275742395,0.012280707757951398,0.007004004919206828,0.004162904673778806,0.001053829963250023,0.9999899326337571,0.9999935185923364,0.999998575540417,0.9999972768406615,0.9999995883990529,3.955765703392457e-09,2.76166732685091e-09,1.9144030247124282e-09,1.3298737534667206e-09,2.7751750429793174e-10,0.5127077117060338,0.5792985379799315,0.5721504251220404,0.6060666444712887,0.9999980302722429,0.9999991539236035,0.999999835599637,0.9999857671750587,0.9999710570670185,2.122415775975696e-06,1.4125722192580375e-08,0.00017916001170938792,2.6077815326446082e-12,7.10796368808614e-13,8.73930328789953e-13,2.195040592434941e-13,1.2350586858925573e-13,2.1812685959519896e-14,2.688380500859073e-14,3.719570343008186e-14,3.718571407702156e-14,0.9193123387627679,0.03439812064565612,0.9371486915467141,0.019307177016321106,0.9119553383888899,0.9999955631737486,0.9999971472227132,0.9999999495666211,0.9999999280153623,0.9999999999571367,0.9999999999184426,0.9999999995700746,0.9999999978360301,0.9999999986627226 -घनाभ,rgb,0.5187470810478877,0.7145430909194406,0.5093288680272405,0.21369565917173305,0.37983883079991815,0.00013188644287208653,0.0006873411425109035,1.7967936914947053e-05,1.2562755755622534e-05,1.2356467636295869e-05,9.86616551430978e-06,3.7041402146105958e-06,3.528467639498218e-06,3.4511173847453105e-06,1.0946418509214546e-05,1.0968070982616307e-05,1.1001006834639029e-05,1.104040774721193e-05,1.0595276131391327e-05,0.7996216592428417,0.6704638054048255,0.6421953877055748,0.418011326647331,0.22992737075317768,0.9999938265865496,0.9999914393897409,0.9999894529194151,0.9999844718118786,0.9996914945240893,0.00246130809649608,0.004907460275934699,0.002973879921305637,0.002702837018411834,0.0023332071393899812,0.0016460036043586049,0.8566840667200472,0.8817672290201721,0.9086177063020089,0.901060880348974,0.9433787859284322,2.023744206819636e-05,1.684924768722663e-05,1.7114426408849588e-05,1.7803076349349164e-05,1.2707887626982505e-05,0.5762052740190581,0.6076427954481421,0.6060974574165361,0.62842437952907,0.8165571782572838,0.8741605078050039,0.926255448862192,0.7411231204084767,0.7131927030950949,0.023562397088945933,0.004215440796660157,0.10352153784490754,2.5386234530761576e-06,2.356852381670433e-06,2.5056325705375364e-06,2.511832494145455e-06,3.11145760254351e-06,8.003483383050007e-06,8.747870676647106e-06,8.203784534241897e-06,8.239563754391784e-06,0.5444320971997266,0.14955785706748798,0.5766923358959584,0.12771867474366044,0.5567786280849351,0.965301316011271,0.9684648078595125,0.99022101607762,0.9885338018147884,0.5340126196103786,0.5116976997568249,0.4205050190378074,0.2649543006284178,0.32606217063794635 -चीज़,rgb,0.999988348498435,0.9999931623959947,0.999981336514304,0.9998150593704258,0.9999011871448482,0.007751188431610446,0.023343535185677895,0.061717314059176714,0.041347686505007,0.040127110640357816,0.021618412525215642,0.0004725431303223104,0.0003673343303630639,0.00035948320574105046,0.01300296007760495,0.012505116041457725,0.012139337837318812,0.011844990828748273,0.01137224355349908,0.9999917812119172,0.9999825660909719,0.9999780029751565,0.999912720128827,0.9998183109823633,0.9999999999998133,0.9999999999997229,0.9999999999996392,0.9999999999994178,0.999999999974801,0.8366412716097025,0.8959344468855905,0.8514874705533616,0.826742958465329,0.8006905133147366,0.7186241513994489,0.521374630217044,0.5564197945251403,0.63249981210251,0.6033896099721145,0.7116190904956277,0.026856247164828775,0.02267198649117916,0.020765718226234898,0.019139156331220788,0.010935840836200066,0.7802455640879209,0.7833063697901322,0.7811520004385117,0.7756497119205789,0.9990546058015815,0.9992203375051497,0.9995066338772751,0.9981933992964931,0.9977054091694986,0.0416871647199838,0.00874741625797819,0.11949239709546418,0.0008319958247182277,0.0005101291941265191,0.00040771068270460236,0.0002665087577045797,0.0001815581354609399,0.00012792447833512036,0.0001256208423563144,0.0001196683248196406,0.00011973895799555292,0.9432490974046318,0.758077939146586,0.9457048084503432,0.7228934062811724,0.9384695070490314,0.7178478177075972,0.7352394879744277,0.8834830154365981,0.8698767667631718,0.999975073655829,0.9999698784106795,0.9999498434614437,0.9999130745296315,0.999927303880091 -चौकोर,rgb,0.9993612677618737,0.9998595982205631,0.999255979359012,0.989357090040399,0.9975843216712185,3.112261044758464e-05,0.0006521679631560668,1.4165604557416954e-06,8.132541410167718e-07,8.043273743260138e-07,4.417062391539429e-07,4.91759744465203e-08,4.47292311685142e-08,4.307828440778058e-08,4.492548577286474e-07,4.471804187566284e-07,4.4672017378405627e-07,4.4715669111377686e-07,4.1571096690075704e-07,0.9999345304865725,0.9997655573902682,0.9996982960695514,0.9981968059764621,0.9909475027691957,0.9999999999999805,0.9999999999999627,0.9999999999999443,0.9999999999998808,0.9999999999598497,0.01010460662278601,0.03503687386547507,0.014184441721834836,0.011757481324633334,0.008929535456025726,0.004614052774028376,0.9999721337457397,0.9999813928111383,0.999989624922862,0.9999874552018662,0.9999960099573187,1.3771081193664625e-06,9.928658424015508e-07,1.0017035632252165e-06,1.0528492807133084e-06,5.528646394699964e-07,0.9989388444691372,0.9991703650094855,0.9991602761046018,0.9992984417188034,0.9999057352141327,0.9999584887173808,0.9999862934666278,0.9997797159843096,0.9997105115998416,0.3327131853460353,0.019118176402438188,0.9046801621255086,3.142577612555135e-08,2.640799304775519e-08,3.0696170464438886e-08,2.9070392164077066e-08,4.225457655646923e-08,1.9939663212893386e-07,2.3729061054591106e-07,2.190132691888334e-07,2.2066112193180282e-07,0.9986752934646228,0.9537098247166795,0.9989620857507232,0.9358858889784977,0.9987889767772817,0.9999980193089747,0.9999983735706618,0.9999998337961503,0.9999997770654085,0.9993376457723397,0.9992036237057199,0.9983787115883176,0.9941791562880754,0.9965655841664975 -छिला,rgb,5.426297190995884e-12,3.85336072072385e-12,4.40033825678038e-11,3.127113344862609e-08,8.928859984513801e-09,0.9808257296838129,0.5195685470729835,0.021053121884920128,0.00013638139800601072,5.023422223054314e-05,0.06774774851738741,0.9832032367416623,0.9688218738179234,0.9644555965742061,0.9491534526423905,0.9583908048079763,0.9644848506833384,0.968967561424066,0.9656035786583635,1.423428159293422e-11,9.490319468966666e-11,1.8208050718674207e-10,6.785515082378811e-09,3.287160361582514e-08,6.332280696235779e-52,6.582745415206139e-51,1.3529851921129154e-50,1.1956550294613685e-49,1.6284406994874042e-43,0.1730959312517886,0.06888712900299185,0.1449302650990862,0.19201455908287446,0.2467967491480745,0.4268948365280562,6.349778663411099e-38,4.37969570651941e-38,2.801454022153659e-39,1.0061335089942144e-38,7.108013758716513e-40,0.9724211019039813,0.9628422365310918,0.976494500556463,0.985853833684381,0.9899518266992218,7.729201830883637e-13,3.023560622370243e-13,2.979236024521832e-13,1.1663519482683944e-13,2.565069180600687e-09,5.494299298593305e-10,7.914621092175229e-11,8.211887479863873e-09,1.1475981348208574e-08,1.1967543879468173e-09,5.612517501600806e-08,2.2177107497904255e-12,0.0336294751284311,0.03253521181386538,0.0013852075467943128,0.003422814087569011,0.0005013760364934435,0.005857164187976436,0.002041693575990764,0.0003634355422209364,0.0003650624876807456,8.475990051413073e-10,3.8697398747637095e-07,4.485248654122817e-10,6.365734137500903e-07,4.833491666914402e-10,7.19122645611242e-36,3.044459733399985e-36,8.369009662948453e-39,9.855452109646043e-39,1.686909524080792e-10,2.984445298889014e-10,1.1439741477597714e-09,2.974418635554983e-09,2.479547832643672e-09 -छोटा,rgb,0.9662672690129493,0.9939985537910584,0.9884769449817011,0.994279476290698,0.9983079538517579,0.9150684990978876,0.987703021124811,0.0005167233916808108,2.868361264012545e-05,1.8118470975006243e-05,0.00034885857584553745,0.0049367743471700875,0.0038447840102030745,0.003464711343901962,0.006978332860493069,0.007866217129351913,0.008667594808749327,0.009431615578511795,0.008290773090777867,0.9991093795726818,0.9985339893678395,0.9986642031051647,0.9986501907453412,0.9955816848430208,1.0892573248048592e-07,1.6155952247114565e-07,1.494677503537975e-07,1.8546662867972528e-07,3.149192019973937e-07,0.9779396827263507,0.9922675598770615,0.9842145461668107,0.9842936815847783,0.9818777999703686,0.9758826025736349,1.2930424815130105e-05,1.812356578088927e-05,9.672377578477592e-06,1.4415494319823932e-05,1.6750885189104176e-05,0.029157114757695137,0.017662975967817778,0.02372199392615041,0.03430747721299743,0.023352290317548513,0.9999033638639582,0.9998958289182377,0.9998941623001801,0.9998784048903299,0.9999960862817652,0.9999973475144379,0.9999982998212862,0.9999948885154967,0.9999944550866154,0.9885075903417445,0.9238487811331348,0.994321677427091,5.118349512398586e-05,5.576370701751695e-05,1.8762410898160736e-05,3.626617476141722e-05,3.490655106179542e-05,0.001529767212516322,0.00123530131472675,0.0005066602907269739,0.0005133323697549753,0.9999835069882073,0.9999338753964433,0.9999841691661202,0.9999226741175937,0.9999824813018813,0.0035120391803549525,0.0029771750192912594,0.0029147430694319155,0.0022095883082711002,0.9958214041361793,0.9963165293932765,0.9960212260737357,0.9881409039950155,0.9933935982798081 -जाता,rgb,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.877036589536288,0.9218333200107726,0.9285288765205322,0.9706642858217208,0.9998480798307787,0.9877760769039404,0.7331158555400098,0.9996833162121002,0.9994531550086352,0.9999999999999984,1.0,0.9999999999998723,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.010488440252574819,0.9864620372660405,0.0060371384784959495,0.9945237866508302,0.008424565184391485,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -जो,rgb,0.6932362573515637,0.7554449460183443,0.7941742690936544,0.9151066282207585,0.9165925636115656,0.9031609718377203,0.8495963428737668,0.478026735602863,0.10138540353931495,0.07180280612588259,0.4313560575835833,0.5476187844812032,0.4599627978885226,0.4441968834437825,0.8198918245336514,0.828374602766928,0.8349024154848852,0.8403468192138025,0.8312438414193344,0.8356747161455104,0.8600816657861302,0.8718636419519168,0.9161297806413065,0.9187652667338682,4.644832990991079e-10,8.37991284550743e-10,9.192648939992667e-10,1.4862117925275394e-09,2.219630111888e-08,0.9787427644210713,0.9791539472943206,0.9791335057309585,0.9794856581613843,0.9795718649726027,0.9798043322748916,1.0355422384782492e-11,1.0162809357308537e-11,4.652799470575739e-12,6.835824045056965e-12,3.764988744675927e-12,0.9018972667845557,0.879438523016435,0.892907622271205,0.9071485039514562,0.8881228193201531,0.013094512695725364,0.009741284509164365,0.00962171538409876,0.006939360630373584,0.803814331942923,0.7400740892539995,0.6664548659278445,0.8079296054996411,0.8049110112919274,0.010077100964531559,0.013096494371240308,0.002530563083015944,0.08946131224711812,0.07123586486282903,0.02186088496569343,0.025008865074555547,0.011249421699165159,0.028683824190694998,0.020031318412709824,0.010467860202709709,0.010497913404940584,0.24123102726105128,0.4661620294286132,0.21026342563546876,0.4797291583665966,0.20187417199594188,1.1912890721526543e-10,9.304055334286853e-11,2.306843391382363e-11,2.2272312812130735e-11,0.8492372764743579,0.8616056904452057,0.8806803281900664,0.8736064138491495,0.8825351831214826 -टमाटर,rgb,3.191548218094427e-08,1.7257273215060677e-08,3.620437239406379e-08,1.7208580703651047e-07,1.0785946649487896e-07,0.5430000365256886,0.5062147358078128,0.13847850370103923,0.6868003201366821,0.7717092395020991,0.4125849125219891,0.9872854532453123,0.9937631969274296,0.9942728339943306,0.1995000676690392,0.19940959031714145,0.19913023809717312,0.19875731916620767,0.21625943911643214,1.796990065012193e-08,3.028331877513427e-08,3.5791757172095084e-08,9.925550849558715e-08,1.6876917113541892e-07,1.2185588995863308e-06,9.741671707591455e-07,1.1586593700402495e-06,1.1358454336059245e-06,3.123720784174e-06,7.599496456688153e-05,5.200227209453905e-05,7.05929990513469e-05,8.620534132962981e-05,0.00010162483987795008,0.0001603832600700621,0.9999999999994187,0.9999999999993845,0.9999999999996336,0.9999999999995195,0.9999999999996319,0.05392541077747476,0.07780332881541359,0.07814320620910306,0.07695631673559937,0.16561583178782563,0.9703464643800596,0.9792591458553831,0.9798237782562782,0.9870617655667302,3.088393686858594e-05,4.443430989786212e-05,4.64452671284197e-05,6.092623201007728e-05,8.184166128621482e-05,0.999640731414954,0.9998754779336805,0.999821899439712,0.9972711280359986,0.9989451543582837,0.9998010468607279,0.9998791064014895,0.9999746632863782,0.9999772308545397,0.9999857380336077,0.999993090592624,0.9999930818795085,0.09535416570118009,0.12248434666648747,0.11363238076342738,0.1344513184974246,0.13588235623504472,0.9999999999894558,0.9999999999912617,0.9999999999955724,0.9999999999961047,4.0015374213341134e-08,4.5372202339847925e-08,6.535687070565891e-08,1.0446617894961023e-07,8.755610632294919e-08 -टुकड़ा,rgb,2.176812825150234e-08,2.0116848982039187e-07,1.4027048046403678e-07,1.9032922783422225e-06,8.832026689055138e-06,0.14366215442556593,0.8075059736101229,2.348317213419196e-09,3.721099411796752e-10,2.8431445955082334e-10,5.6087362619198325e-09,4.871993051881139e-05,6.981427816227279e-05,6.465030211038013e-05,2.1793818158257642e-07,2.636428563959036e-07,3.072744262307371e-07,3.5088297483558076e-07,3.1824029627287265e-07,4.571555403607698e-06,3.3307685881196162e-06,4.538372648134271e-06,1.1789911601541829e-05,2.842625250191812e-06,2.1493313191823367e-19,3.038243163030604e-19,3.148836436864954e-19,4.1381031299996456e-19,1.946290307872269e-18,7.949742328873364e-05,0.00031016374122538204,0.0001289740629064838,0.00015886164940354902,0.00014763242891685174,0.0001447560739640567,0.9995324082754401,0.9997162452203159,0.9995736176179744,0.9996941222233341,0.9998310082753581,4.876542655810541e-07,3.2133430316293205e-07,5.208208660776951e-07,9.373704663590502e-07,1.2078076285717416e-06,0.9999988855864852,0.999999162784677,0.999999166138997,0.9999993642086525,0.9852512798236157,0.9948135013659971,0.9977130900678118,0.988422467596193,0.9901894339524888,0.9999683428914786,0.9997192583272339,0.9999959569663915,1.7429387722296879e-07,5.431523848520108e-07,5.744150807313076e-07,2.7629829831799423e-06,1.400926664005665e-05,0.0068965387131269,0.008152921189930142,0.004277262040102383,0.0043627793883702125,0.999969544660496,0.9997439589238074,0.9999771734442898,0.99970071013135,0.9999782150082474,0.9999988130342317,0.9999987512208952,0.9999994566108097,0.999999249787742,7.939226223229584e-07,1.0961947472032514e-06,1.3663678616598255e-06,3.627602507340302e-07,7.925825825855987e-07 -त्रिकोण,rgb,0.9999489170479264,0.999987773544996,0.9999365985628287,0.9990104248714837,0.9997623560765497,0.00022004752409241068,0.003976371099024366,1.981892711922477e-05,1.1751343167270364e-05,1.165870736594022e-05,5.959330841711403e-06,4.680271956282163e-07,4.16716870709342e-07,4.020813823048801e-07,5.429590287110364e-06,5.369947185110581e-06,5.336721237308541e-06,5.3179653253834874e-06,4.95736710460182e-06,0.9999935959705673,0.9999774964078046,0.9999707527619679,0.9998205221026143,0.9991465007908541,0.9999999999999991,0.9999999999999982,0.9999999999999973,0.9999999999999942,0.9999999999980891,0.09101165236651779,0.25180920525540706,0.12156319824405643,0.10197827565754487,0.07944959166934537,0.04261022287045313,0.9999895196776758,0.999992852310355,0.999996011705039,0.9999951529547585,0.9999983984563717,1.6311189686423605e-05,1.1909567488572063e-05,1.1817531576973507e-05,1.2170267537078571e-05,6.30772763289224e-06,0.9996701943597627,0.9997375101739138,0.9997342126994473,0.9997739577760482,0.9999820961958493,0.9999917019175126,0.9999971419027461,0.9999578376294209,0.9999442247416408,0.649482461043061,0.0740538463559033,0.9691327863296143,3.563674014158857e-07,2.8481821665136465e-07,3.2206379610712364e-07,2.872662561590229e-07,3.8460742125570947e-07,1.4392537577388166e-06,1.688019794322765e-06,1.5779779872966738e-06,1.5886567762015556e-06,0.9996618996650058,0.9890651641333962,0.9997309858143604,0.9847564129936887,0.9996852593592851,0.9999990949907321,0.9999992543449967,0.999999918595279,0.9999998921943952,0.9999399593629686,0.999927039155341,0.9998507638937071,0.9994905321271369,0.9996907395068747 -त्रिकोणीय,rgb,0.8268841769594871,0.9743588308478431,0.8700451689333858,0.49162951878586314,0.8632012545026895,1.1275785211347645e-05,0.000546308669505673,4.2405238718665296e-09,1.663304655602879e-09,1.559218293119919e-09,1.752669687508992e-09,2.4783027075791375e-09,2.5446884798025546e-09,2.4099270268304407e-09,4.448456310940463e-09,4.653107601127701e-09,4.837332890120657e-09,5.01208047763783e-09,4.560578411443614e-09,0.9946087530667317,0.979714417555166,0.9761478044361163,0.9009411237722197,0.5582471561506523,0.9999999960369594,0.9999999929886463,0.9999999896907207,0.9999999794455801,0.9999955143265874,0.00035001581195894465,0.0017507578302336862,0.0005583019312262018,0.0004910656094965682,0.0003670518685569403,0.00019103577738351408,0.9999978312119814,0.9999987266802788,0.9999992266855422,0.9999991333421238,0.999999766660413,1.5923206930986673e-08,1.0448247951330872e-08,1.1957914936652923e-08,1.4641216958219637e-08,8.483194216980218e-09,0.9999556580608105,0.9999682909240545,0.9999679726235979,0.9999755065093939,0.9999204529322882,0.9999737919223669,0.9999930385057545,0.9998298900268843,0.9997883110989869,0.8540795558527566,0.1183535352839635,0.994938575848091,3.8670243987375154e-10,4.531729912222783e-10,5.699426952503132e-10,8.285179786541201e-10,1.953409055983329e-09,4.6781840280656906e-08,5.924234347145142e-08,4.7463292399533126e-08,4.806713280112529e-08,0.9998365314177008,0.9897406111760718,0.9998821559492469,0.9850434992652027,0.9998651729998339,0.9999999638758237,0.999999970166068,0.9999999976170026,0.9999999965387467,0.9222726619037614,0.9151250448621014,0.8502458562945517,0.5310688751274749,0.7010288723925692 -त्रिभुज,rgb,0.9440631140899836,0.9642451753073757,0.9476606842942366,0.917165198202201,0.9431979111059278,0.20009644874859328,0.3427340484343911,0.059514643168556085,0.036160302156061835,0.03378161289632485,0.04364123230579772,0.029576639914659485,0.027315991896691285,0.026751101170768895,0.060713790069393446,0.06132684923866405,0.0618601769656297,0.06235046627190203,0.060544817230242826,0.9736217672093904,0.9646598134059915,0.9630900376116268,0.9472263229905684,0.9212166859716466,0.9934953915066675,0.9930676767951705,0.9924360243247768,0.9915486884800638,0.9766651261440161,0.579797729942838,0.6610411565139044,0.6032391717188998,0.5925623049782658,0.5750292382766264,0.5328477911111948,0.34907228562842607,0.37362434114821413,0.3767040174704626,0.38145186047442187,0.4297061553052244,0.08955383997983316,0.07958932155396359,0.08181017593014904,0.08532106322874645,0.07090406691144417,0.8914189019741022,0.8928724421016604,0.8923687133406455,0.8916439568822154,0.9742448860111453,0.9779755651728487,0.9825001761399657,0.9683041468147281,0.9659941492786794,0.5170686760491696,0.3210739439504779,0.6487538391165306,0.01640486405260784,0.015205847660026367,0.012820507781126629,0.01313462658061724,0.012781005692394605,0.02364937009132125,0.023267845836217674,0.020278137881137973,0.02033056458653186,0.9285138501737098,0.8560665479767905,0.9308407084054036,0.8457154940388945,0.9276512582303552,0.6322135120614465,0.6340902255377914,0.712940214654306,0.6951489824719693,0.9529420797552024,0.9516894530095943,0.944125052178725,0.9220181714807748,0.9327408081997532 -नारंगी,rgb,3.0934027792420006e-06,6.949137258472795e-05,4.09923339930342e-05,0.0012117788100936297,0.00930362799971108,0.9466555793592915,0.9986685734397487,1.4853780671282084e-09,2.1553767492768105e-11,1.098442741902861e-11,2.585888316406841e-09,6.880074081580099e-05,7.160837235774293e-05,6.124659384130689e-05,9.133799329828401e-07,1.1966109136093752e-06,1.4871479622472763e-06,1.7954227872032874e-06,1.485472029019188e-06,0.004390265803931085,0.0028588717187952805,0.004238524967570795,0.013522491009109195,0.002058509276686478,6.256873874788582e-26,1.4399410259644744e-25,1.5120518398848372e-25,2.8166942076839843e-25,6.889962107338578e-24,0.048956017120568865,0.23878077146817617,0.08828890329709313,0.10692173521292622,0.09470522437309625,0.08286772971798492,9.924012481605703e-05,0.00018539118288184818,6.151696729062291e-05,0.00012524861439597147,0.00017177755749600866,5.646554464454227e-06,2.6360849022998117e-06,5.176407943266388e-06,1.1813087953659155e-05,1.1230520957924088e-05,0.9999999712301545,0.9999999733947644,0.9999999731223747,0.9999999736103686,0.9999972578489721,0.9999989861279558,0.9999995453102561,0.9999975862186402,0.9999978442819626,0.9999925388298334,0.9998706499489697,0.9999984178888266,9.623873886644312e-09,2.609790834787519e-08,8.561488673720212e-09,5.649308412503796e-08,1.7007620700729717e-07,0.0006297195341418187,0.0005498941100969455,0.0001369979811497678,0.00014070277290043079,0.9999999451034115,0.9999995352853347,0.999999955044258,0.9999994367217377,0.9999999537031389,0.6045087424201612,0.5412614162451967,0.5496692302391207,0.43606988376843786,0.000425433954998994,0.0006489333129971913,0.0008486605055831892,0.00013828758912378517,0.0004019792530482192 -निम्बू,rgb,0.9083311008757974,0.9853676447630014,0.9709860529840914,0.9873240636094844,0.9966373372073174,0.8856733754404131,0.9864051522176713,0.00011434766386711068,5.417149116363121e-06,3.3425471305312297e-06,7.973870880219768e-05,0.001912787581852943,0.0015093724591694567,0.0013512406339519045,0.002067050201879909,0.0023608160940031203,0.0026291465258928997,0.0028875780990882446,0.002515694883230293,0.9982236618862564,0.9969778368250293,0.9972921406208107,0.9973734657160429,0.9904567901719046,7.597551449333148e-09,1.1526740230713657e-08,1.0644713720797183e-08,1.3403444318195656e-08,2.419404301666086e-08,0.9573772699321725,0.9862829706424323,0.970325421197551,0.9707631479410369,0.9660663310779937,0.9546307838543887,1.3248208293006431e-05,1.924098539953828e-05,9.956800001426408e-06,1.5207862870053388e-05,1.8410964133878035e-05,0.009476153665822684,0.0055049206911890036,0.007662647325911264,0.011604303953408156,0.007857676295454972,0.9999533309089033,0.9999504501464341,0.9999496492081776,0.9999428872846788,0.9999970871904308,0.9999981566486911,0.9999988858743893,0.9999962080314354,0.9999959105305368,0.992372128015196,0.9391592172137236,0.9967290134842469,1.334403087839021e-05,1.546074910953214e-05,5.111781997201482e-06,1.088296744929339e-05,1.144037064294231e-05,0.0007594026925109654,0.0006166951204917731,0.00023989593988797635,0.00024338678577707828,0.9999908048989651,0.9999567002521172,0.999991327798737,0.99994868700729,0.9999903999984114,0.005597091135459556,0.004723247031167828,0.004892592978733164,0.0036219751708629518,0.9904880876400144,0.9917641486136397,0.9911629974949328,0.9712617535795063,0.9847376826578338 -नींबू,rgb,0.2062984062737538,0.8311946399939208,0.6584764953750688,0.9190150520617197,0.9886536030040969,0.9356653616135571,0.9980561350889606,1.3605553158372823e-07,1.8571050069026738e-09,9.44853445466991e-10,1.1001093765003638e-07,6.137682544623037e-05,4.990248694870122e-05,4.260225041493002e-05,1.668534563538033e-05,2.0700822960671826e-05,2.464511351778141e-05,2.8682882848665356e-05,2.3549274977786974e-05,0.9935367533846494,0.9867507812407597,0.9893547326204044,0.9922027974076482,0.9472492864325464,9.003901729791358e-16,1.682774804174711e-15,1.5484393280658863e-15,2.2515805248382114e-15,7.8664115914153e-15,0.878986182633723,0.9773467329312456,0.928932813587495,0.9337524918287132,0.9197708082124465,0.8876358247714374,5.4701046856744384e-06,9.841326535795668e-06,3.827850614119745e-06,7.122502459924604e-06,1.0272619612095509e-05,0.00013725239800254017,6.24568625193647e-05,0.00010721106219907258,0.0002103986359203557,0.00013831921097273895,0.9999999074721043,0.9999999066483447,0.9999999048616854,0.9999998954273015,0.9999999681116717,0.9999999860140589,0.9999999938271624,0.9999999589042677,0.9999999568973096,0.9998858844498214,0.9972976366065802,0.9999752433463052,2.8854822007756812e-08,4.634800516602566e-08,1.1614069408730706e-08,4.466788805869688e-08,7.090362788974902e-08,6.441355713234898e-05,5.149602835563214e-05,1.3331426370435067e-05,1.3642153606406733e-05,0.999999972767729,0.9999996958905041,0.9999999763503159,0.9999996110357717,0.9999999735143736,0.04541632255572068,0.036361892083904855,0.044335142211764475,0.028580120522886217,0.9254688473096528,0.9419609674015268,0.9408666575132443,0.7209197570327673,0.8753377870400187 -नीला,rgb,0.5938476580975883,0.38167496395079503,0.39261529525866945,0.14777187991665638,0.08909996101014549,0.00032682105044836763,9.463177902997952e-05,0.4291889936409661,0.592382884716581,0.6156748749337725,0.3148824210376216,0.006754948081980002,0.005593499123576916,0.005750200256015065,0.0901350670657955,0.0836073789501954,0.0786845275520591,0.07464289501842661,0.07704192624429483,0.14236311659145992,0.1491843279534057,0.13086420225476744,0.08076179378160216,0.12822466892612885,0.9999954311547097,0.9999945818280516,0.9999943520725524,0.9999934204163129,0.9999824048532716,0.01719001500106731,0.010374462839669285,0.01426406988059038,0.012832118546228259,0.012980762336928185,0.012455016258140127,4.553384620442968e-06,3.749732769014943e-06,4.4954558175416705e-06,3.904779851074996e-06,3.154288217916411e-06,0.07276995637988798,0.08341896648233359,0.06882414949287431,0.05440368241189705,0.046027120958730634,7.991728882809766e-07,7.037117900704817e-07,7.012650141454981e-07,6.173111540212917e-07,9.680048555377942e-05,6.285913328619751e-05,4.636621242609584e-05,8.132485640542858e-05,7.377512877015015e-05,1.97160008069642e-06,4.152703983119003e-06,9.047364218249879e-07,0.06619949401241397,0.03973055059816663,0.03653573952687053,0.018463290299065866,0.00882115815324795,0.0006547118744851357,0.0006018635641841803,0.0007694199596484649,0.0007631623731725538,4.192874823301167e-06,8.768393924897579e-06,3.714495563786984e-06,9.187391529502816e-06,3.583241306748034e-06,4.4190684432039546e-07,4.5230879005265205e-07,3.4170596994141364e-07,3.85262098803751e-07,0.23453552212007853,0.20817071338153378,0.18546153118177347,0.2713930772755265,0.21544127651109202 -नीली,rgb,0.7861429135834439,0.6411632445373628,0.6201432983939579,0.25780545008501776,0.17927894609414588,5.8578948565398674e-05,1.8736937953144994e-05,0.12134988485708142,0.1478601920147225,0.15135075869194473,0.06308141480905524,0.0005360852133792312,0.00039885057159965716,0.00040415425596685177,0.017565465416955122,0.01624192639896471,0.015255004702474156,0.014451511314314307,0.014678590732755415,0.33445985333352596,0.3249080529332928,0.2874713442856386,0.1667614828505878,0.2293957878591647,0.9999965537571341,0.9999960413013783,0.9999957460999167,0.9999950370108002,0.9999838406988276,0.012988295231070235,0.008559843331254905,0.011002617709654213,0.009607389637469987,0.009442090933265512,0.008390415852980627,1.6117612403045207e-08,1.3541107051951684e-08,1.5007783716471155e-08,1.3621791283210445e-08,1.0783774656229604e-08,0.017841110194564823,0.019277607672118172,0.015805233041326174,0.012482657672711417,0.009166126784334722,1.2861989822373946e-07,1.0779145347920905e-07,1.069467219517793e-07,8.836123036536845e-08,0.00011712299514141428,7.36424710858988e-05,5.522627815611699e-05,8.81706485007158e-05,7.640446044382228e-05,1.415583303607601e-07,2.375648752364348e-07,6.197173915222978e-08,0.004048621512262399,0.002074955399741685,0.001477923777333283,0.0006942373842596222,0.00026565565746083225,2.1306117992833703e-05,1.8310224975253642e-05,2.0752810428723256e-05,2.0595153307933045e-05,1.5468817567698412e-06,2.8943259035180246e-06,1.3387947917869714e-06,2.965935300242813e-06,1.2504794027913327e-06,2.721052469986984e-09,2.7101792028093357e-09,1.9133955379027336e-09,2.099409424926182e-09,0.43863476076987085,0.39732645992896926,0.349568796396334,0.4421264962437835,0.3789651302075798 -नीले,rgb,0.61743056549931,0.4159214109799267,0.4160104771643677,0.1495735471049486,0.093133757186768,0.00014428373465715644,4.30215628913745e-05,0.2560627478081574,0.3661699303808489,0.38361917035488236,0.1629680946646295,0.002300463141412016,0.001836190605330494,0.0018788841847957214,0.04281179613238738,0.039583892681905423,0.03716720740472815,0.03519409549068711,0.03616452694187895,0.1621023337198937,0.16510822525185814,0.14409449328670554,0.08494116301247015,0.1301456465331709,0.9999951382027249,0.999994290488771,0.9999939861693854,0.9999929850350694,0.999979859910619,0.012500876106741396,0.007746862715629119,0.010432521797913754,0.009285633680788085,0.009303191915143623,0.008697192694864358,5.38724569459496e-07,4.463354805529476e-07,5.217341567150565e-07,4.595950956964129e-07,3.6860590536765045e-07,0.037047810744839225,0.041795849296000095,0.03425155836204017,0.026938610132061492,0.02168720861191707,3.3448434415461935e-07,2.896023614278328e-07,2.8816951985405593e-07,2.482666234268899e-07,8.082210080891553e-05,5.185087992099583e-05,3.842631899318682e-05,6.540406772147163e-05,5.8407831838484763e-05,6.313923206454701e-07,1.2352237706621357e-06,2.846487163578157e-07,0.021338139106320406,0.012006815399099742,0.01013271117312075,0.004947297233574019,0.0021808146652400394,0.00016396738369608987,0.00014734613191369567,0.00018114200242633105,0.000179695505153266,2.327570488875104e-06,4.698427800662763e-06,2.0452726384635225e-06,4.886967762300906e-06,1.951558500160816e-06,6.236867341218835e-08,6.326899526837412e-08,4.671504876020521e-08,5.2213721954685905e-08,0.25251070039456375,0.22363541306939638,0.1963434602578477,0.2788436866375481,0.22416013819483444 -पत्तागोभी,rgb,0.9999957055112111,0.9999772540367262,0.9999802633156103,0.9997827797421438,0.9993247407471901,0.029927299666021073,0.0025029819602581964,0.9999882028541421,0.9999959672857027,0.9999965305836208,0.9999694083356553,0.9098968536347865,0.871021381010357,0.8763224996925915,0.9995009342460207,0.9994181516849513,0.9993418727816422,0.9992678569028056,0.9993110733503251,0.9997204300693939,0.999758971141989,0.999680965300592,0.9991637253652852,0.9997017568632409,0.999999999999994,0.9999999999999922,0.9999999999999918,0.9999999999999896,0.999999999999952,0.9865836042974558,0.9638986216252535,0.9806599358463854,0.9764149832871066,0.9770517184970193,0.9754729705417838,3.205363438566046e-07,2.179696933460509e-07,2.830742111604418e-07,2.2482423389225132e-07,1.370070786778296e-07,0.9992559033600988,0.9994315139269805,0.999160573501044,0.998657118733569,0.9980934539022406,1.0011384600773806e-07,7.553963383486358e-08,7.495171783980573e-08,5.641238804715625e-08,0.0018833814525860268,0.0007750002975364664,0.00040632039540411825,0.0013683736487867643,0.0011363547654693032,6.420323734042593e-07,2.962889622704204e-06,1.167009136543573e-07,0.9986530347127743,0.9960973974743761,0.994750708265309,0.9801614823054707,0.9136588967516365,0.06726535690413399,0.05554025105786123,0.08144174896427642,0.08027619289151948,3.4603145780439164e-06,1.7105412622581017e-05,2.6750458451817487e-06,1.89464036667541e-05,2.4886021522074705e-06,4.263493196848426e-09,4.333612417551845e-09,2.0945935377402927e-09,2.64752346076973e-09,0.9999190939388258,0.9998925945008174,0.9998622733763116,0.9999478125736575,0.9999056666862333 -पानी,rgb,0.8928561412566336,0.9819011511553257,0.9646626478817794,0.9840346303497016,0.9956269336805751,0.8547703144530178,0.9812213960041879,0.000115381176370846,5.795841404922131e-06,3.60913283282837e-06,8.043807723817967e-05,0.0017348777151780456,0.0013708663733716653,0.0012299063802421913,0.0019380789676850796,0.002206386186498426,0.002450776878502364,0.0026856003407257118,0.0023460352403215866,0.9976785797747253,0.996090074178157,0.9964833342878909,0.9965646276128646,0.9878883216151315,1.0458227711119155e-08,1.5726630182813596e-08,1.4535671806618174e-08,1.820108595162154e-08,3.216908730873952e-08,0.9463590007886263,0.9821507584667926,0.9622082075060188,0.9627034310714726,0.9568824595380122,0.9427822883919859,1.1760974150312102e-05,1.6932421066655945e-05,8.876698976326096e-06,1.344050917115396e-05,1.6170773950813854e-05,0.008642978655896081,0.0050741536377752715,0.0070072040735805335,0.01050939429933681,0.007144063409300396,0.9999240338589999,0.9999192844057107,0.9999179977206678,0.9999070174763809,0.9999953379419666,0.9999970100558881,0.9999981701683801,0.9999939443914612,0.9999934694669412,0.9887727022156979,0.9162094564120872,0.9950548029382557,1.3533749488234676e-05,1.5533682290988605e-05,5.223410118058887e-06,1.0884018697171405e-05,1.1319622548806576e-05,0.0006778537679874823,0.0005517049154674088,0.00021864803360999404,0.00022175329065495436,0.9999849606133667,0.99993167566184,0.9999857788848757,0.9999193121042576,0.9999842767520182,0.004368304534926027,0.003696780292900539,0.0038111259353621335,0.002839127099395519,0.9880336081854821,0.9895909737310358,0.988826972593544,0.9647637278087395,0.9809554246191282 -पीला,rgb,1.2927194616831048e-13,1.3626322312935273e-10,3.720719056732196e-11,6.414352550871764e-08,7.439917256180161e-06,0.9999770810408222,0.9999999981757692,2.2019018623536474e-19,1.530720342978252e-22,5.0544278159938755e-23,1.4870113515588261e-18,1.2250732360442858e-07,2.3445185246444374e-07,1.7622145603493613e-07,2.211193955912633e-13,3.971046087805407e-13,6.362239536858226e-13,9.57397441810904e-13,6.701681954927769e-13,1.6885271190507744e-06,5.683505730687549e-07,1.376247823719718e-06,1.8104505499730295e-05,2.1618813306648752e-07,2.73552009269177e-50,1.0284810352263093e-49,1.0994829303687949e-49,2.946548332358736e-49,4.9135816489783365e-47,0.0005562068764729499,0.035909139721969914,0.0024217257115747583,0.004157627820076594,0.0031332305573406757,0.0024603130296419473,0.9999999778445683,0.9999999950554184,0.9999999730917771,0.9999999921466011,0.9999999981464007,5.658583171922706e-12,1.2883980359421769e-12,5.645569428287097e-12,3.434935598538172e-11,4.741957102046494e-11,1.0,1.0,1.0,1.0,0.9999999999999925,0.9999999999999996,1.0,0.9999999999999951,0.9999999999999967,1.0,0.9999999999999987,1.0,1.4879752566095983e-15,2.6886498146166982e-14,1.0394194159551289e-14,9.38697217144716e-13,4.5934837792153686e-11,0.0060505210347251695,0.007232802572269309,0.0006262385314645698,0.0006652843276642442,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,6.9761358088721384e-09,1.7863517394685426e-08,3.1348719550122996e-08,4.935590571539363e-10,5.555403706868757e-09 -पीले,rgb,1.297966009082323e-13,1.3688531074811572e-10,3.73524564018631e-11,6.432313411097783e-08,7.465168861759614e-06,0.9999770736455966,0.9999999981779641,2.1978903959898093e-19,1.5292121477592678e-22,5.0503766370762354e-23,1.4840876281336e-18,1.222718287728215e-07,2.340505409521111e-07,1.7592283091265974e-07,2.205452666587923e-13,3.96067729162857e-13,6.345558925401801e-13,9.548791646075356e-13,6.68409457191595e-13,1.6966958539799043e-06,5.708038513097864e-07,1.3820503365736326e-06,1.8168144306850862e-05,2.1680720830975482e-07,2.7943347657802617e-50,1.050075858498835e-49,1.1223804341842116e-49,3.0064986380953548e-49,4.998028724278788e-47,0.0005560217238687994,0.03591518554322546,0.0024212636575156395,0.004156653555146176,0.003132207134484117,0.0024590054921152346,0.9999999783391496,0.999999995166682,0.9999999737124163,0.9999999923258921,0.9999999981900618,5.643973373456881e-12,1.2850604724357973e-12,5.630817120189587e-12,3.4259129983111274e-11,4.729288916789854e-11,1.0,1.0,1.0,1.0,0.9999999999999925,0.9999999999999996,1.0,0.9999999999999953,0.9999999999999967,1.0,0.9999999999999989,1.0,1.4861647766097845e-15,2.6859434968308967e-14,1.0391575490379069e-14,9.38527761732729e-13,4.5960862907759716e-11,0.006057360949568156,0.007242978961076498,0.0006273035693679116,0.000666417500212684,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,7.003383638746314e-09,1.7931899310079574e-08,3.1459777507944354e-08,4.950689540936669e-10,5.573467041366513e-09 -प्रकार,rgb,0.9999999999944074,0.9999999999992863,0.9999999999960523,0.9999999999557687,0.9999999999906077,0.015274970353028402,0.0745877344133885,0.0014433010681339283,5.035424942334794e-06,2.012455073554677e-06,0.00010086946608176815,1.871574795433213e-07,5.260943475188019e-08,4.33712306336027e-08,0.0024080890568175016,0.0025629745190814575,0.0027021768651795596,0.0028338887636111597,0.0022233955718853875,0.9999999999997422,0.9999999999991127,0.9999999999988654,0.9999999999929281,0.9999999999632314,0.9999982159074572,0.9999988880341512,0.999998402338861,0.999998476144812,0.9999882426191324,0.9999960428029515,0.9999989236236819,0.9999971677480831,0.9999960419447768,0.9999942811462518,0.9999852181040902,1.5663216887277118e-23,2.145384943404464e-23,7.399020360130889e-24,1.3585161129163424e-23,1.1148734060008907e-23,0.05609159077229232,0.023120653012353963,0.026732787928935516,0.03335113056284731,0.006610952346062173,0.024796925234413274,0.013994844489582384,0.013270186532138763,0.0062647415876988105,0.9999999980400818,0.9999999974387828,0.9999999980998324,0.9999999927365311,0.9999999875453814,7.862761495348262e-07,3.6201451461600004e-08,5.453441200100999e-07,1.4748967755685723e-09,3.385996001990995e-10,1.435123481027241e-11,9.160875938741719e-12,8.107586715481628e-13,5.845838379900706e-12,2.5682081938734527e-12,5.150285883005907e-13,5.200286711629736e-13,0.9980029044481832,0.9901166205550817,0.9974231328494153,0.9868144460627802,0.9961911157541191,3.702796520038675e-20,2.5950468675613147e-20,1.1754796571849843e-20,8.031543912178398e-21,0.9999999999973113,0.9999999999968607,0.9999999999936677,0.9999999999726417,0.9999999999856841 -प्लास्टिक,rgb,0.9999999999435261,0.999999999961757,0.9999999998074227,0.9999999830444376,0.9999999916675079,0.0006562164284079627,0.0021162786331264706,0.5965557953390275,0.5366572268994474,0.5409693211760751,0.16267373368520413,3.827782545608867e-05,2.3290858801714404e-05,2.288605627571121e-05,0.03297339563566042,0.029613005508251182,0.02723151287368232,0.02536946850865564,0.024261162953068176,0.9999999998933455,0.9999999996456457,0.9999999994364428,0.9999999927870575,0.9999999819670441,1.0,1.0,1.0,1.0,1.0,0.994955150223922,0.9971357788983706,0.9953448641493818,0.9933625202998093,0.9912917616050159,0.9815767294784109,0.38959396500800003,0.4198796415347964,0.5795588614842604,0.5071761409609437,0.6737110712680302,0.08856803616851103,0.07417760305047934,0.05800036473611019,0.04461449179200339,0.016738617067765083,0.4156826020209713,0.40921522305470576,0.4039301649528152,0.3785501372482313,0.9999870565465553,0.9999882497138171,0.9999935220154846,0.9999591782381256,0.9999365560898985,0.0009121393209121273,0.00010079778667587993,0.004029151251609574,0.0003758497509033067,0.000128363047188946,8.95880626504337e-05,3.061704829026281e-05,1.1352306561790006e-05,1.5195899508786362e-06,1.4319376795558385e-06,1.552291580290896e-06,1.5467851781139403e-06,0.9491226877564956,0.6384330193114109,0.9500057596657018,0.5728393942569286,0.9377060244360392,0.3951014437592663,0.4351737994118294,0.78234519246819,0.7577888374408631,0.9999999995323205,0.9999999993063651,0.9999999982713372,0.9999999967653814,0.9999999971404563 -फल,rgb,1.1641315111028544e-09,6.58949925292112e-09,2.5005531424783597e-08,2.5597980805882738e-05,4.6850947398604954e-05,0.9999999957635064,0.9999999983257668,0.02308100682255299,0.0006725047903633763,0.0003530893361636207,0.17132645944011515,0.9999979901841146,0.9999985135562817,0.9999983312261996,0.991117570491475,0.9934412739487688,0.9948480178985372,0.9958127078829593,0.9953238963973766,3.0262681061528825e-07,8.065698952800203e-07,1.6953449828116399e-06,5.1469651339089026e-05,3.874569045564466e-05,2.409309312366138e-42,1.1539539240212374e-41,1.9317188425901298e-41,8.567983641095682e-41,1.7436718519463023e-36,0.9895400441324804,0.9941844060247369,0.9924255423237439,0.9953018680022863,0.9960685080404413,0.9979180909843973,4.1867411569456315e-05,5.417054459579748e-05,9.587696573542406e-06,2.4373656590711284e-05,1.0972998457120037e-05,0.9947269298735739,0.9920146998053335,0.9961869506503818,0.9983876316272001,0.9992840407953938,0.9999999843533343,0.9999999828352736,0.9999999829647793,0.9999999817180826,0.9993312451061473,0.999515582547616,0.9993680939312679,0.9997956567185367,0.9998733833517636,0.9999999989864561,0.9999999993686766,0.999999996543603,0.9827525642391451,0.9961104676857321,0.9891225033634233,0.9988629702670303,0.9996485065759876,0.9999998131742942,0.9999997643087584,0.9999991303606888,0.9999991488964096,0.9999999108808744,0.9999999796988537,0.9999999115614702,0.999999982917328,0.9999999257443757,0.05935778128776671,0.03848911092261934,0.0043304880563721565,0.003653455685208535,3.064040415165763e-07,6.124366409222014e-07,1.8952211386947247e-06,1.0755497321205416e-06,1.9427026645676573e-06 -फिर,rgb,2.2249578223071152e-10,1.2138863992559117e-10,2.0197203031324637e-10,4.4300226335297104e-10,2.8950359227391035e-10,1.0953992933430862e-05,8.468665290939583e-06,1.1850220685078725e-05,0.00010271268486414944,0.0001470336908331572,3.157448195342028e-05,0.0004209640181056319,0.000701822663748424,0.0007537138810044694,9.91072280906584e-06,9.718398971241575e-06,9.558371459377342e-06,9.416886480210504e-06,1.0276325361310088e-05,9.598097812921003e-11,1.3743773289964187e-10,1.4936375252742368e-10,2.684060644931798e-10,4.233652656989536e-10,1.8293696307037204e-07,1.4332887649677336e-07,1.5945965382336548e-07,1.462878257473275e-07,1.9516703785281015e-07,1.952018767221785e-08,1.3706512689919201e-08,1.7931180267691338e-08,2.0256843421798526e-08,2.2788205901117663e-08,3.1207428330605774e-08,0.999968632588798,0.9999663452205362,0.9999790290160196,0.9999730040576968,0.9999781665902576,3.139929722779746e-06,4.341321353259439e-06,4.15535756233482e-06,3.881399202851987e-06,7.104232982278717e-06,8.135826345935774e-05,0.00010632542691983875,0.00010853435456545568,0.00015106569177706503,5.6111521725001476e-09,7.0080848933248e-09,7.124040962520526e-09,8.791266844985779e-09,1.067889483925843e-08,0.0022286359953389272,0.005169300044492938,0.003688661695885099,0.0023555712066651215,0.004322979207110835,0.01546840765067112,0.01927714136738023,0.05378135688595209,0.0351695694308602,0.04932063117046507,0.08770922451300059,0.0875086346245823,1.354391951521232e-06,1.686838691633336e-06,1.5516773032518545e-06,1.8233655113332138e-06,1.7910505057101486e-06,0.9995479191644498,0.9996150538529657,0.9997826271741022,0.9998059559705731,1.8488885917884517e-10,1.9513277674942564e-10,2.425757357415638e-10,3.685117009500877e-10,3.0696752336839747e-10 -बंद,rgb,0.9999957055112111,0.9999772540367262,0.9999802633156103,0.9997827797421438,0.9993247407471901,0.029927299666021073,0.0025029819602581964,0.9999882028541421,0.9999959672857027,0.9999965305836208,0.9999694083356553,0.9098968536347865,0.871021381010357,0.8763224996925915,0.9995009342460207,0.9994181516849513,0.9993418727816422,0.9992678569028056,0.9993110733503251,0.9997204300693939,0.999758971141989,0.999680965300592,0.9991637253652852,0.9997017568632409,0.999999999999994,0.9999999999999922,0.9999999999999918,0.9999999999999896,0.999999999999952,0.9865836042974558,0.9638986216252535,0.9806599358463854,0.9764149832871066,0.9770517184970193,0.9754729705417838,3.205363438566046e-07,2.179696933460509e-07,2.830742111604418e-07,2.2482423389225132e-07,1.370070786778296e-07,0.9992559033600988,0.9994315139269805,0.999160573501044,0.998657118733569,0.9980934539022406,1.0011384600773806e-07,7.553963383486358e-08,7.495171783980573e-08,5.641238804715625e-08,0.0018833814525860268,0.0007750002975364664,0.00040632039540411825,0.0013683736487867643,0.0011363547654693032,6.420323734042593e-07,2.962889622704204e-06,1.167009136543573e-07,0.9986530347127743,0.9960973974743761,0.994750708265309,0.9801614823054707,0.9136588967516365,0.06726535690413399,0.05554025105786123,0.08144174896427642,0.08027619289151948,3.4603145780439164e-06,1.7105412622581017e-05,2.6750458451817487e-06,1.89464036667541e-05,2.4886021522074705e-06,4.263493196848426e-09,4.333612417551845e-09,2.0945935377402927e-09,2.64752346076973e-09,0.9999190939388258,0.9998925945008174,0.9998622733763116,0.9999478125736575,0.9999056666862333 -बनाने,rgb,1.0,1.0,1.0,0.999999999999998,0.9999999999999962,0.589222151772674,0.093027815083473,0.9999999967201447,0.9999999712498598,0.9999999575061309,0.9999999367287093,0.8155031053312612,0.5272401011014384,0.513071245701418,0.9999996239877783,0.9999995539526803,0.9999994892478277,0.9999994263399588,0.999999385429797,0.9999999999999998,0.9999999999999998,0.9999999999999996,0.9999999999999958,0.9999999999999973,1.0,1.0,1.0,1.0,1.0,0.9999999995278983,0.9999999990934796,0.9999999993479523,0.9999999989430153,0.9999999987358912,0.999999997554134,6.447276377545353e-22,4.497610179551733e-22,3.0668746897394755e-22,3.371172811007197e-22,1.360687490757872e-22,0.999999911754653,0.9999998919176197,0.9999998318511188,0.9999997215103072,0.9999987429182502,1.2673598520609909e-08,5.750778787208596e-09,5.497620237599563e-09,2.2300572681480238e-09,0.9999777300715268,0.9999031568510883,0.9997870351114174,0.9999239636527029,0.9998632806717778,3.4640541985868763e-10,4.99803737032809e-10,2.032600832162477e-11,0.9864777180961474,0.8664670627990824,0.34995514675691186,0.05928500173761767,0.0014902694455950572,4.8719223856338924e-06,2.116862050602609e-06,1.3144618373607342e-06,1.293653231991495e-06,0.0010980856601819806,0.004675660382363988,0.0006386417569963823,0.004578577465013187,0.00045318624754922445,2.1339210784063753e-22,1.7022685772792221e-22,3.0817900187793206e-23,3.40150794751813e-23,1.0,0.9999999999999998,0.9999999999999996,0.9999999999999998,0.9999999999999998 -बहुत,rgb,0.041182731631123376,0.00026122529272707475,0.00291423252677456,0.0018478747457571184,4.601877337229387e-05,0.9999767937559777,0.9904818308857551,0.9999999999999998,1.0,1.0,1.0,0.9999999999999971,0.9999999999999989,0.9999999999999991,0.9999999999998992,0.9999999999998632,0.9999999999998248,0.9999999999997824,0.9999999999998523,1.6727022704087085e-06,1.032552729117042e-05,9.314596417476835e-06,2.3131282327432157e-05,0.0009076984884228633,1.0,1.0,1.0,1.0,1.0,0.8789822068818814,0.22924138984035686,0.7296895797184775,0.7514395583522931,0.833978820504551,0.9375289342699363,1.0,1.0,1.0,1.0,1.0,0.9999999999906817,0.999999999997988,0.9999999999956841,0.999999999988477,0.9999999999974218,2.5695251025204753e-05,3.292294112482694e-05,3.4738644790101356e-05,5.495382492314784e-05,2.792420094709409e-11,9.337173318178566e-12,2.226072530862101e-12,8.944333607481619e-11,1.321359758255783e-10,0.9951820983998018,0.999990928566581,0.9487852848271474,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,4.097772027785672e-08,4.353182892536585e-06,3.686436189426133e-08,7.4299451340294245e-06,5.357331253450833e-08,0.9999999999999953,0.9999999999999969,0.9999999999999956,0.999999999999998,0.00022026054745678158,0.00017637129175612158,0.00030046109623066197,0.008287047747399082,0.0015065192465145581 -बीट,rgb,2.971406258173855e-11,4.793754699354592e-12,1.6871699981403605e-11,5.823857358137554e-11,1.5120008469943494e-11,0.002658582207243321,0.0004839751655955701,0.24102257572447067,0.9583768572972439,0.9786641984824641,0.637960456853595,0.9678723490280711,0.9856921152125554,0.9876426764305408,0.0919123120463855,0.08571016543564255,0.08085540686189581,0.07676484102313608,0.0911283955208979,1.3715670065750384e-12,3.437061592454009e-12,3.869283181819579e-12,1.1795941707320841e-11,4.775346313416216e-11,1.767157258058257e-05,1.1938948057758104e-05,1.528656337458202e-05,1.4089496017606995e-05,4.47309687220914e-05,8.898438750862497e-08,2.830402853579525e-08,6.478450109994362e-08,7.899087066716218e-08,1.0348863018406951e-07,2.0181144097095616e-07,0.9999999999964244,0.9999999999951439,0.9999999999978555,0.9999999999965223,0.9999999999966516,0.009258941745933183,0.018776569865455416,0.01561355348480051,0.012067955840023107,0.03569084593126607,0.00013364375803544954,0.0001914779148406761,0.00019870688826047466,0.0003225257133627179,4.1680448135049415e-11,4.1963933605499264e-11,2.959231588227826e-11,9.992128718073991e-11,1.415936818702244e-10,0.25405629167776606,0.810275759057581,0.23664645508085339,0.9995786305468912,0.9998170996438067,0.9999798509367058,0.9999807059005216,0.9999953349335479,0.9999457598410194,0.9999686313035663,0.9999909038493446,0.9999908106737201,2.316462447440653e-07,1.025851751676002e-06,2.637151522610061e-07,1.2921233689899572e-06,3.442218000174145e-07,0.999999997687971,0.9999999982141365,0.9999999988208135,0.9999999991455688,9.558068646191619e-12,1.0074394066269378e-11,1.5840218347954226e-11,5.54232457733663e-11,3.078497481786985e-11 -बेंगन,rgb,0.001492654541293907,0.00030972280857063695,0.0010617958998361935,0.0036459856651012428,0.0009217626911324038,0.9371876832765845,0.485884943870636,0.9998630870746242,0.9999517562193297,0.9999568588127342,0.999930403718095,0.9999013845032347,0.9999052232800406,0.9999099115577346,0.999812383662321,0.9998041092707801,0.9997968121054233,0.9997900000237974,0.9998062352374242,8.913804159221723e-05,0.0002301402821442944,0.000255192240422725,0.0007060066290667576,0.0029735733232283718,1.5466766733551788e-07,2.1225882882341238e-07,2.769966944524529e-07,4.227114753196557e-07,1.3686819859396207e-05,0.48304203924374256,0.22233505658078143,0.39805188217552934,0.4199458602602935,0.4723761737149096,0.5903041331413246,2.7174070243620973e-05,1.845016532519763e-05,1.463827348626391e-05,1.4896286116148986e-05,6.306526065196305e-06,0.9994622013670037,0.9996202689359679,0.9995709140488438,0.9994883808403444,0.9996684465688148,6.954834448457673e-06,5.722758612180185e-06,5.776895929578513e-06,5.0186675082768106e-06,4.097809195993667e-06,1.9314408428990323e-06,7.767048803336891e-07,7.1105153899810435e-06,8.369016088498684e-06,0.0030602329785723355,0.044522616068556405,0.0002961861197877654,0.9999836132228584,0.999982319859475,0.9999830388625152,0.9999771107077507,0.9999625562750588,0.999546003252709,0.9994929533209003,0.9996148455531128,0.9996110644053722,1.0595298422617856e-05,0.00018632151970948878,8.590200574360639e-06,0.0002441153490600883,9.561346535757333e-06,8.887761112259809e-07,8.05896525774952e-07,1.605649864240851e-07,2.1235139303495667e-07,0.0006534744379101798,0.0006886662749877378,0.0010687041492393043,0.0035133827984946387,0.0020344632484845895 -बेर,rgb,3.5434971238661686e-11,5.855695284543057e-12,2.0248157662699583e-11,6.853381318394139e-11,1.8119198526763655e-11,0.002446818198282572,0.0004559891772450711,0.21630370770447463,0.949862628664336,0.9739672417896044,0.5993478910862021,0.9608063793318363,0.9822864174143162,0.9846652080041782,0.08172807921157396,0.07621895979314622,0.0719097513379997,0.06828076143259144,0.08101494096862852,1.701653183547578e-12,4.2094136088900695e-12,4.729765913792222e-12,1.4183374285094245e-11,5.6338493800998464e-11,1.8394823469959637e-05,1.248035746880389e-05,1.5922532234570714e-05,1.4678201283546357e-05,4.561796534370376e-05,9.429931238473994e-08,3.046055970747763e-08,6.894429365554858e-08,8.382607814213102e-08,1.0941609967277706e-07,2.114101741247705e-07,0.9999999999942186,0.9999999999921807,0.9999999999965132,0.9999999999943785,0.9999999999945899,0.0084083576842187,0.016910473725095163,0.014088107282031966,0.010919172162452716,0.03190121508846419,0.00012919309987947792,0.00018427329960146315,0.00019113676480364108,0.00030833894553346713,4.914328225118533e-11,4.9492555399617445e-11,3.5085368738634444e-11,1.1638661556722705e-10,1.6413349898124336e-10,0.22832025692502234,0.7818131327167949,0.21272783374728021,0.9994534175000034,0.9997600240568425,0.9999728062417385,0.9999739274332895,0.9999935781809443,0.9999275784260013,0.9999578251860803,0.9999875766965137,0.9999874510734819,2.432438369095435e-07,1.0539446487827609e-06,2.7649298733027804e-07,1.3232095857034924e-06,3.5960599361409555e-07,0.9999999965604225,0.9999999973349558,0.9999999982343424,0.9999999987151065,1.154798901078785e-11,1.2159737271728665e-11,1.8993053929985154e-11,6.534647497606851e-11,3.657951986428174e-11 -बेलन,rgb,0.9999999999995133,0.9999999999997988,0.9999999999981133,0.9999999994928972,0.9999999998502833,4.736253475768759e-05,0.00042976448992220487,0.06157077064034256,0.042302756676652224,0.043185756313565735,0.005305692717206756,3.197081068032691e-07,1.8463926751295127e-07,1.7931846655282544e-07,0.000824086648571885,0.0007310832752356911,0.0006665936607815995,0.0006170169957055608,0.0005752126840433353,0.9999999999995275,0.9999999999974789,0.9999999999955338,0.9999999998827993,0.9999999994854392,1.0,1.0,1.0,1.0,1.0,0.9943752025001392,0.99792273245628,0.9953581648848672,0.9928295749093342,0.9895816425620334,0.9718479253495258,0.9874885646391259,0.9903285988001278,0.995961252434191,0.9941307070452821,0.998052745109641,0.0034946568072869123,0.0025838603054464068,0.0019578054802053936,0.0014810086913444932,0.00041798081250228093,0.951015572632161,0.9534957437367448,0.9522951136351043,0.9499572513018023,0.9999998742781091,0.9999999128712298,0.9999999674478919,0.9999994464643818,0.9999990387049332,0.0015886429426095027,5.5564367644159004e-05,0.01949950057007639,3.253231137321532e-06,9.929003512571896e-07,7.273785616912859e-07,2.2913805809409651e-07,9.156730869730224e-08,1.748396473899167e-08,1.7456268045825747e-08,1.8756431525553187e-08,1.8729210495335023e-08,0.9981571088488653,0.9340858546961274,0.9983313053203161,0.9047287572761027,0.9977621110563548,0.9944095671633336,0.995601614491528,0.9995875773244325,0.9994765446402053,0.9999999999953195,0.9999999999924616,0.9999999999751557,0.9999999999279459,0.9999999999463824 -बैंगन,rgb,0.001920617730238347,0.00036423550539948704,0.0012125286438350597,0.003297322971919663,0.0007982530891402435,0.8507512036288747,0.2527171346962714,0.99985737646909,0.9999580441894058,0.9999636415853311,0.9999231994116016,0.999819194394539,0.9998258813561524,0.9998354919118164,0.9997302075772508,0.9997148590151702,0.9997013509838089,0.9996887483132005,0.9997146496316055,8.941679855693805e-05,0.0002259769810338476,0.000244305626048097,0.0006069006928931564,0.0026405729190268753,3.4193576444180234e-06,4.42017613731197e-06,5.683118919785103e-06,8.223594190783733e-06,0.0001908501236129991,0.3507713756373664,0.13711603829493202,0.27322356100382367,0.2884915029737005,0.33337595374350126,0.44251252232716864,4.007145963151321e-05,2.681424855115036e-05,2.283442820146939e-05,2.234563069626155e-05,9.703159079635847e-06,0.9991874427211069,0.9994401358140058,0.9993483103241649,0.9991952342051145,0.9994701418872448,2.5144093734035443e-06,2.081954244771823e-06,2.1019938689425043e-06,1.8390154267077442e-06,1.8594547461768367e-06,8.630591748282078e-07,3.476074295097221e-07,3.1270998362212127e-06,3.6331467205745404e-06,0.001123277795581308,0.01716586329028123,0.00011209806839382483,0.9999795832830524,0.9999769271022897,0.9999791848337273,0.9999694550700409,0.9999485026088446,0.9991460750890979,0.9990593649725878,0.999328452394575,0.999321222662546,3.822554216032785e-06,6.562163414823211e-05,3.0993949554563377e-06,8.576249458975657e-05,3.4393782665304584e-06,9.211891882570255e-07,8.512085827361591e-07,1.8327098243643263e-07,2.450660924313506e-07,0.0006754052608555638,0.0006945903577381796,0.0010416168737633852,0.0035631291790950196,0.0020014506566568002 -बैंगनी,rgb,0.0019145526781516355,0.0003605775194995737,0.001204866254146056,0.003277721835940766,0.0007891902807633966,0.8519070944922483,0.25246541665508043,0.999863729048318,0.9999601879604787,0.9999655324243981,0.9999267276759634,0.9998258828291077,0.9998323519397814,0.9998416503380639,0.9997405390377828,0.9997256811244867,0.9997126024647988,0.9997003983015565,0.9997254383251142,8.790819852512382e-05,0.00022281005694009488,0.00024086637253832217,0.0005993873766295167,0.002622236619891639,3.469660621555064e-06,4.4853308548348445e-06,5.770728804667022e-06,8.3547287431848e-06,0.00019509897510451,0.3520932966612236,0.13724379484828836,0.2740849363319449,0.2893967150242902,0.33450968815001236,0.44412139890506985,3.9687834584203926e-05,2.6516040665616634e-05,2.2591257818461178e-05,2.209361556452359e-05,9.5702665444486e-06,0.9992149697153873,0.9994599916374849,0.9993708429228687,0.9992221266223971,0.9994885131871333,2.4139307521878283e-06,1.9977289686676403e-06,2.017033768076922e-06,1.7641405099614852e-06,1.7862515210662993e-06,8.267901884806568e-07,3.319852443689781e-07,3.00820979825646e-06,3.4962811151615615e-06,0.0011016275715700216,0.017001639047667483,0.0001091374973052852,0.9999805890620325,0.9999780429693091,0.9999802185018054,0.9999709024799217,0.9999508439207946,0.9991735748509863,0.9990895725445429,0.9993513646637742,0.9993443491694599,3.67267659705659e-06,6.363905501212732e-05,2.975823950349843e-06,8.32448864146763e-05,3.3033502895185713e-06,8.961986955873076e-07,8.281250548757617e-07,1.775775934366238e-07,2.3772552236858237e-07,0.0006689023639182548,0.000687747655754737,0.0010323307891686622,0.003548241636996765,0.0019883234863560585 -बैगन,rgb,0.001492654541293907,0.00030972280857063695,0.0010617958998361935,0.0036459856651012428,0.0009217626911324038,0.9371876832765845,0.485884943870636,0.9998630870746242,0.9999517562193297,0.9999568588127342,0.999930403718095,0.9999013845032347,0.9999052232800406,0.9999099115577346,0.999812383662321,0.9998041092707801,0.9997968121054233,0.9997900000237974,0.9998062352374242,8.913804159221723e-05,0.0002301402821442944,0.000255192240422725,0.0007060066290667576,0.0029735733232283718,1.5466766733551788e-07,2.1225882882341238e-07,2.769966944524529e-07,4.227114753196557e-07,1.3686819859396207e-05,0.48304203924374256,0.22233505658078143,0.39805188217552934,0.4199458602602935,0.4723761737149096,0.5903041331413246,2.7174070243620973e-05,1.845016532519763e-05,1.463827348626391e-05,1.4896286116148986e-05,6.306526065196305e-06,0.9994622013670037,0.9996202689359679,0.9995709140488438,0.9994883808403444,0.9996684465688148,6.954834448457673e-06,5.722758612180185e-06,5.776895929578513e-06,5.0186675082768106e-06,4.097809195993667e-06,1.9314408428990323e-06,7.767048803336891e-07,7.1105153899810435e-06,8.369016088498684e-06,0.0030602329785723355,0.044522616068556405,0.0002961861197877654,0.9999836132228584,0.999982319859475,0.9999830388625152,0.9999771107077507,0.9999625562750588,0.999546003252709,0.9994929533209003,0.9996148455531128,0.9996110644053722,1.0595298422617856e-05,0.00018632151970948878,8.590200574360639e-06,0.0002441153490600883,9.561346535757333e-06,8.887761112259809e-07,8.05896525774952e-07,1.605649864240851e-07,2.1235139303495667e-07,0.0006534744379101798,0.0006886662749877378,0.0010687041492393043,0.0035133827984946387,0.0020344632484845895 -भी,rgb,0.9734105970449083,0.995030199208304,0.9907728413275994,0.9955251087550825,0.9986200961835372,0.9509972944244076,0.9926551659313733,0.0011528738344434564,7.029917442273907e-05,4.505074993507983e-05,0.0008046094490730092,0.011433674525205311,0.00903887786855585,0.008177227683979216,0.014822412201376249,0.016649989944789053,0.018292108655213305,0.019851546035307362,0.01754924075713372,0.9992282847039365,0.9987623042780324,0.9988742363299089,0.9988904542598028,0.9965205384662698,1.8069680070024826e-07,2.6650524435399844e-07,2.4819677339891457e-07,3.083297072578216e-07,5.47632787767745e-07,0.9852706936600574,0.9946720012689565,0.9893705945694323,0.9894605479443608,0.9879135135363367,0.9841374452534205,3.5480322091222386e-05,4.918803749347151e-05,2.662790449998608e-05,3.929624475107245e-05,4.523663455428519e-05,0.05735702456719652,0.03575030239264636,0.04742153693789186,0.06730294039593164,0.04732515578568501,0.9999313741569053,0.9999262831846512,0.9999251583238176,0.9999145546580753,0.9999964911494214,0.9999975959090884,0.9999984315527775,0.9999955056937287,0.9999951584974119,0.9933373037101452,0.9578749906089341,0.9966136626092666,0.0001341300401262042,0.00014753477947372984,5.164519655361748e-05,9.899302916589492e-05,9.665614531154142e-05,0.0038569212924499754,0.0031411922305501524,0.0013253598885054707,0.0013423289605708827,0.9999871048834975,0.9999513444349016,0.9999876136162873,0.9999435077608078,0.9999863683529641,0.008089297986428755,0.006889160949170963,0.0066767634735909005,0.005114487131657013,0.9965862444726855,0.9969912397599131,0.9967854975807293,0.9907622638386065,0.9947641118020396 -भुट्टा,rgb,5.426297190995884e-12,3.85336072072385e-12,4.40033825678038e-11,3.127113344862609e-08,8.928859984513801e-09,0.9808257296838129,0.5195685470729835,0.021053121884920128,0.00013638139800601072,5.023422223054314e-05,0.06774774851738741,0.9832032367416623,0.9688218738179234,0.9644555965742061,0.9491534526423905,0.9583908048079763,0.9644848506833384,0.968967561424066,0.9656035786583635,1.423428159293422e-11,9.490319468966666e-11,1.8208050718674207e-10,6.785515082378811e-09,3.287160361582514e-08,6.332280696235779e-52,6.582745415206139e-51,1.3529851921129154e-50,1.1956550294613685e-49,1.6284406994874042e-43,0.1730959312517886,0.06888712900299185,0.1449302650990862,0.19201455908287446,0.2467967491480745,0.4268948365280562,6.349778663411099e-38,4.37969570651941e-38,2.801454022153659e-39,1.0061335089942144e-38,7.108013758716513e-40,0.9724211019039813,0.9628422365310918,0.976494500556463,0.985853833684381,0.9899518266992218,7.729201830883637e-13,3.023560622370243e-13,2.979236024521832e-13,1.1663519482683944e-13,2.565069180600687e-09,5.494299298593305e-10,7.914621092175229e-11,8.211887479863873e-09,1.1475981348208574e-08,1.1967543879468173e-09,5.612517501600806e-08,2.2177107497904255e-12,0.0336294751284311,0.03253521181386538,0.0013852075467943128,0.003422814087569011,0.0005013760364934435,0.005857164187976436,0.002041693575990764,0.0003634355422209364,0.0003650624876807456,8.475990051413073e-10,3.8697398747637095e-07,4.485248654122817e-10,6.365734137500903e-07,4.833491666914402e-10,7.19122645611242e-36,3.044459733399985e-36,8.369009662948453e-39,9.855452109646043e-39,1.686909524080792e-10,2.984445298889014e-10,1.1439741477597714e-09,2.974418635554983e-09,2.479547832643672e-09 -भुट्टे,rgb,5.426297190995884e-12,3.85336072072385e-12,4.40033825678038e-11,3.127113344862609e-08,8.928859984513801e-09,0.9808257296838129,0.5195685470729835,0.021053121884920128,0.00013638139800601072,5.023422223054314e-05,0.06774774851738741,0.9832032367416623,0.9688218738179234,0.9644555965742061,0.9491534526423905,0.9583908048079763,0.9644848506833384,0.968967561424066,0.9656035786583635,1.423428159293422e-11,9.490319468966666e-11,1.8208050718674207e-10,6.785515082378811e-09,3.287160361582514e-08,6.332280696235779e-52,6.582745415206139e-51,1.3529851921129154e-50,1.1956550294613685e-49,1.6284406994874042e-43,0.1730959312517886,0.06888712900299185,0.1449302650990862,0.19201455908287446,0.2467967491480745,0.4268948365280562,6.349778663411099e-38,4.37969570651941e-38,2.801454022153659e-39,1.0061335089942144e-38,7.108013758716513e-40,0.9724211019039813,0.9628422365310918,0.976494500556463,0.985853833684381,0.9899518266992218,7.729201830883637e-13,3.023560622370243e-13,2.979236024521832e-13,1.1663519482683944e-13,2.565069180600687e-09,5.494299298593305e-10,7.914621092175229e-11,8.211887479863873e-09,1.1475981348208574e-08,1.1967543879468173e-09,5.612517501600806e-08,2.2177107497904255e-12,0.0336294751284311,0.03253521181386538,0.0013852075467943128,0.003422814087569011,0.0005013760364934435,0.005857164187976436,0.002041693575990764,0.0003634355422209364,0.0003650624876807456,8.475990051413073e-10,3.8697398747637095e-07,4.485248654122817e-10,6.365734137500903e-07,4.833491666914402e-10,7.19122645611242e-36,3.044459733399985e-36,8.369009662948453e-39,9.855452109646043e-39,1.686909524080792e-10,2.984445298889014e-10,1.1439741477597714e-09,2.974418635554983e-09,2.479547832643672e-09 -मकई,rgb,5.426297190995884e-12,3.85336072072385e-12,4.40033825678038e-11,3.127113344862609e-08,8.928859984513801e-09,0.9808257296838129,0.5195685470729835,0.021053121884920128,0.00013638139800601072,5.023422223054314e-05,0.06774774851738741,0.9832032367416623,0.9688218738179234,0.9644555965742061,0.9491534526423905,0.9583908048079763,0.9644848506833384,0.968967561424066,0.9656035786583635,1.423428159293422e-11,9.490319468966666e-11,1.8208050718674207e-10,6.785515082378811e-09,3.287160361582514e-08,6.332280696235779e-52,6.582745415206139e-51,1.3529851921129154e-50,1.1956550294613685e-49,1.6284406994874042e-43,0.1730959312517886,0.06888712900299185,0.1449302650990862,0.19201455908287446,0.2467967491480745,0.4268948365280562,6.349778663411099e-38,4.37969570651941e-38,2.801454022153659e-39,1.0061335089942144e-38,7.108013758716513e-40,0.9724211019039813,0.9628422365310918,0.976494500556463,0.985853833684381,0.9899518266992218,7.729201830883637e-13,3.023560622370243e-13,2.979236024521832e-13,1.1663519482683944e-13,2.565069180600687e-09,5.494299298593305e-10,7.914621092175229e-11,8.211887479863873e-09,1.1475981348208574e-08,1.1967543879468173e-09,5.612517501600806e-08,2.2177107497904255e-12,0.0336294751284311,0.03253521181386538,0.0013852075467943128,0.003422814087569011,0.0005013760364934435,0.005857164187976436,0.002041693575990764,0.0003634355422209364,0.0003650624876807456,8.475990051413073e-10,3.8697398747637095e-07,4.485248654122817e-10,6.365734137500903e-07,4.833491666914402e-10,7.19122645611242e-36,3.044459733399985e-36,8.369009662948453e-39,9.855452109646043e-39,1.686909524080792e-10,2.984445298889014e-10,1.1439741477597714e-09,2.974418635554983e-09,2.479547832643672e-09 -मकाई,rgb,5.426297190995884e-12,3.85336072072385e-12,4.40033825678038e-11,3.127113344862609e-08,8.928859984513801e-09,0.9808257296838129,0.5195685470729835,0.021053121884920128,0.00013638139800601072,5.023422223054314e-05,0.06774774851738741,0.9832032367416623,0.9688218738179234,0.9644555965742061,0.9491534526423905,0.9583908048079763,0.9644848506833384,0.968967561424066,0.9656035786583635,1.423428159293422e-11,9.490319468966666e-11,1.8208050718674207e-10,6.785515082378811e-09,3.287160361582514e-08,6.332280696235779e-52,6.582745415206139e-51,1.3529851921129154e-50,1.1956550294613685e-49,1.6284406994874042e-43,0.1730959312517886,0.06888712900299185,0.1449302650990862,0.19201455908287446,0.2467967491480745,0.4268948365280562,6.349778663411099e-38,4.37969570651941e-38,2.801454022153659e-39,1.0061335089942144e-38,7.108013758716513e-40,0.9724211019039813,0.9628422365310918,0.976494500556463,0.985853833684381,0.9899518266992218,7.729201830883637e-13,3.023560622370243e-13,2.979236024521832e-13,1.1663519482683944e-13,2.565069180600687e-09,5.494299298593305e-10,7.914621092175229e-11,8.211887479863873e-09,1.1475981348208574e-08,1.1967543879468173e-09,5.612517501600806e-08,2.2177107497904255e-12,0.0336294751284311,0.03253521181386538,0.0013852075467943128,0.003422814087569011,0.0005013760364934435,0.005857164187976436,0.002041693575990764,0.0003634355422209364,0.0003650624876807456,8.475990051413073e-10,3.8697398747637095e-07,4.485248654122817e-10,6.365734137500903e-07,4.833491666914402e-10,7.19122645611242e-36,3.044459733399985e-36,8.369009662948453e-39,9.855452109646043e-39,1.686909524080792e-10,2.984445298889014e-10,1.1439741477597714e-09,2.974418635554983e-09,2.479547832643672e-09 -मक्का,rgb,5.426297190995884e-12,3.85336072072385e-12,4.40033825678038e-11,3.127113344862609e-08,8.928859984513801e-09,0.9808257296838129,0.5195685470729835,0.021053121884920128,0.00013638139800601072,5.023422223054314e-05,0.06774774851738741,0.9832032367416623,0.9688218738179234,0.9644555965742061,0.9491534526423905,0.9583908048079763,0.9644848506833384,0.968967561424066,0.9656035786583635,1.423428159293422e-11,9.490319468966666e-11,1.8208050718674207e-10,6.785515082378811e-09,3.287160361582514e-08,6.332280696235779e-52,6.582745415206139e-51,1.3529851921129154e-50,1.1956550294613685e-49,1.6284406994874042e-43,0.1730959312517886,0.06888712900299185,0.1449302650990862,0.19201455908287446,0.2467967491480745,0.4268948365280562,6.349778663411099e-38,4.37969570651941e-38,2.801454022153659e-39,1.0061335089942144e-38,7.108013758716513e-40,0.9724211019039813,0.9628422365310918,0.976494500556463,0.985853833684381,0.9899518266992218,7.729201830883637e-13,3.023560622370243e-13,2.979236024521832e-13,1.1663519482683944e-13,2.565069180600687e-09,5.494299298593305e-10,7.914621092175229e-11,8.211887479863873e-09,1.1475981348208574e-08,1.1967543879468173e-09,5.612517501600806e-08,2.2177107497904255e-12,0.0336294751284311,0.03253521181386538,0.0013852075467943128,0.003422814087569011,0.0005013760364934435,0.005857164187976436,0.002041693575990764,0.0003634355422209364,0.0003650624876807456,8.475990051413073e-10,3.8697398747637095e-07,4.485248654122817e-10,6.365734137500903e-07,4.833491666914402e-10,7.19122645611242e-36,3.044459733399985e-36,8.369009662948453e-39,9.855452109646043e-39,1.686909524080792e-10,2.984445298889014e-10,1.1439741477597714e-09,2.974418635554983e-09,2.479547832643672e-09 -मक्के,rgb,5.426297190995884e-12,3.85336072072385e-12,4.40033825678038e-11,3.127113344862609e-08,8.928859984513801e-09,0.9808257296838129,0.5195685470729835,0.021053121884920128,0.00013638139800601072,5.023422223054314e-05,0.06774774851738741,0.9832032367416623,0.9688218738179234,0.9644555965742061,0.9491534526423905,0.9583908048079763,0.9644848506833384,0.968967561424066,0.9656035786583635,1.423428159293422e-11,9.490319468966666e-11,1.8208050718674207e-10,6.785515082378811e-09,3.287160361582514e-08,6.332280696235779e-52,6.582745415206139e-51,1.3529851921129154e-50,1.1956550294613685e-49,1.6284406994874042e-43,0.1730959312517886,0.06888712900299185,0.1449302650990862,0.19201455908287446,0.2467967491480745,0.4268948365280562,6.349778663411099e-38,4.37969570651941e-38,2.801454022153659e-39,1.0061335089942144e-38,7.108013758716513e-40,0.9724211019039813,0.9628422365310918,0.976494500556463,0.985853833684381,0.9899518266992218,7.729201830883637e-13,3.023560622370243e-13,2.979236024521832e-13,1.1663519482683944e-13,2.565069180600687e-09,5.494299298593305e-10,7.914621092175229e-11,8.211887479863873e-09,1.1475981348208574e-08,1.1967543879468173e-09,5.612517501600806e-08,2.2177107497904255e-12,0.0336294751284311,0.03253521181386538,0.0013852075467943128,0.003422814087569011,0.0005013760364934435,0.005857164187976436,0.002041693575990764,0.0003634355422209364,0.0003650624876807456,8.475990051413073e-10,3.8697398747637095e-07,4.485248654122817e-10,6.365734137500903e-07,4.833491666914402e-10,7.19122645611242e-36,3.044459733399985e-36,8.369009662948453e-39,9.855452109646043e-39,1.686909524080792e-10,2.984445298889014e-10,1.1439741477597714e-09,2.974418635554983e-09,2.479547832643672e-09 -मेहराब,rgb,0.9898310859419124,0.989225153192355,0.9763226501514144,0.7794033853583365,0.8260793182996244,0.0006123734257135822,0.0016441451197297824,0.041055976575271255,0.19227941417141997,0.24946426363304902,0.02432582350460296,0.001008888905235021,0.0011667696627230735,0.0012237429677859576,0.0030290902863717127,0.0027802306396524437,0.0025987894394949667,0.002453768080909302,0.0025513487620324985,0.978355764540924,0.9605740430599287,0.9499914300254239,0.8356577356184061,0.7704783094267277,1.0,0.9999999999999998,0.9999999999999998,0.9999999999999993,0.9999999999999307,0.011017085710658365,0.01392755576052482,0.011344459733787088,0.009894980095480097,0.008907377855568202,0.00669467625283235,0.9999999979830012,0.9999999981385248,0.9999999992566657,0.9999999988478081,0.9999999994860382,0.002438460796669194,0.0027526822665678904,0.002258747764115933,0.0018107051355900176,0.0015228402849921546,0.8248274412826831,0.8601992358938927,0.8605949415804569,0.8894564755783783,0.5794763067955828,0.6721883692808968,0.7825114404631048,0.4718296034952577,0.43774435595916555,0.31893499317558743,0.13290438952980152,0.749723360504681,0.017602521895736793,0.01548462416558085,0.03991108677329031,0.02560107408813427,0.03851063187362266,0.010122157723980356,0.01378834292553084,0.024712885489647014,0.024636363517509193,0.4468934090401338,0.11407552718573406,0.49051892024364135,0.09937844271113616,0.4811600143209702,0.9999999856583728,0.9999999891509551,0.9999999982698693,0.999999998216087,0.9576824765424,0.9477337902419871,0.9183964271594923,0.9006263109341099,0.9004495440083812 -या,rgb,0.9999999966395072,0.999999997875364,0.9999999913159118,0.9999996460871414,0.9999998225751148,0.0016063254288669038,0.005060631959408281,0.32644243109012566,0.2476258365986915,0.24510914356742197,0.07967532542382282,8.499715637029738e-05,5.5457316667684745e-05,5.427614707058956e-05,0.024089634984171392,0.02218330596543114,0.020809402092412388,0.0197201813219235,0.018829456452220908,0.9999999956547025,0.9999999876185411,0.9999999818503235,0.9999998455563223,0.9999996346354441,1.0,1.0,1.0,1.0,1.0,0.9849323220792091,0.9913288346088388,0.9862691481482564,0.9815901408970743,0.9767065422825562,0.9559879939485074,0.2412012473214857,0.2662566631427563,0.37569812683552684,0.3254338178008803,0.46961388458697945,0.06140402127381412,0.0509914623313818,0.04217831456999701,0.03465535576263348,0.014820376110869045,0.5255108564682898,0.5201554384851795,0.5153414694193758,0.4921958812574422,0.9999504921283345,0.9999560950932392,0.9999744387280542,0.9998679141296468,0.9998079425560675,0.0029125640933398895,0.00039401176969162325,0.01094431018442094,0.0004211782631379516,0.0001738440948745137,0.0001213836639634887,5.201584583475929e-05,2.3064007032570427e-05,5.688236549273342e-06,5.365956950097117e-06,5.426754311818084e-06,5.4159646389310164e-06,0.9478234361493734,0.6892047985495443,0.948935353311992,0.6347989484091036,0.938237835688655,0.3240768903762535,0.3532601517900475,0.670815876620349,0.6398215513766484,0.9999999830583165,0.9999999766356357,0.9999999493948785,0.9999999068976235,0.9999999197174783 -रंग,rgb,1.0,1.0,1.0,1.0,1.0,0.9992263950919575,0.9999999891342769,0.999997792742899,0.9999999999008768,0.9999999999873028,0.9999740534259001,0.6314046341208764,0.894059852526631,0.9152530435335775,0.6009603642079345,0.5135577944119203,0.44493087224661687,0.38879339519820727,0.42772892098404786,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999100372025,0.9999999970287865,0.9999999609596588,0.9999999235537936,0.999999826138416,0.9999987268129834,1.0,1.0,1.0,1.0,1.0,0.4349110285490318,0.5245611231039367,0.34023121869154194,0.1896991123822773,0.09768893642267347,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999987505702487,0.9999993823981017,0.9999999995115334,0.9999999985342611,0.9999999999927829,0.9999999999695046,0.9999999999974649,0.9999999999999181,0.9999999999999183,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -रबर,rgb,0.9999999999435261,0.999999999961757,0.9999999998074227,0.9999999830444376,0.9999999916675079,0.0006562164284079627,0.0021162786331264706,0.5965557953390275,0.5366572268994474,0.5409693211760751,0.16267373368520413,3.827782545608867e-05,2.3290858801714404e-05,2.288605627571121e-05,0.03297339563566042,0.029613005508251182,0.02723151287368232,0.02536946850865564,0.024261162953068176,0.9999999998933455,0.9999999996456457,0.9999999994364428,0.9999999927870575,0.9999999819670441,1.0,1.0,1.0,1.0,1.0,0.994955150223922,0.9971357788983706,0.9953448641493818,0.9933625202998093,0.9912917616050159,0.9815767294784109,0.38959396500800003,0.4198796415347964,0.5795588614842604,0.5071761409609437,0.6737110712680302,0.08856803616851103,0.07417760305047934,0.05800036473611019,0.04461449179200339,0.016738617067765083,0.4156826020209713,0.40921522305470576,0.4039301649528152,0.3785501372482313,0.9999870565465553,0.9999882497138171,0.9999935220154846,0.9999591782381256,0.9999365560898985,0.0009121393209121273,0.00010079778667587993,0.004029151251609574,0.0003758497509033067,0.000128363047188946,8.95880626504337e-05,3.061704829026281e-05,1.1352306561790006e-05,1.5195899508786362e-06,1.4319376795558385e-06,1.552291580290896e-06,1.5467851781139403e-06,0.9491226877564956,0.6384330193114109,0.9500057596657018,0.5728393942569286,0.9377060244360392,0.3951014437592663,0.4351737994118294,0.78234519246819,0.7577888374408631,0.9999999995323205,0.9999999993063651,0.9999999982713372,0.9999999967653814,0.9999999971404563 -रब्बर,rgb,9.826773322810916e-09,8.063245209506399e-08,6.069855390348573e-08,8.833905000509574e-07,3.774386384049768e-06,0.2157282961794671,0.8636807609077667,5.103547096312944e-09,1.1331437256652116e-09,9.152669316413888e-10,1.3827861040202794e-08,0.00015144007312618854,0.00023223187480519002,0.00021751523351401153,4.304179153293679e-07,5.177206105049518e-07,6.005675898408339e-07,6.829592120828438e-07,6.28114215080383e-07,1.6912248171808849e-06,1.301656535183833e-06,1.7859721918766793e-06,4.96395893790338e-06,1.3031163658313468e-06,3.84263545051472e-19,5.213416709127174e-19,5.480983865290792e-19,7.078580814820156e-19,3.3662699845017694e-18,5.940107114774422e-05,0.00021612552978208477,9.454663486569964e-05,0.00011811344066535708,0.00011172276777446858,0.00011454770205248597,0.9999859344341139,0.9999913178563787,0.9999878920947485,0.9999909468851579,0.9999951118607349,8.077472365606003e-07,5.609172052956496e-07,8.968620386630013e-07,1.5843559106232091e-06,2.2163079819730756e-06,0.9999993684135821,0.9999995415509438,0.9999995446996065,0.9999996676515802,0.9718295276041121,0.9901711714882743,0.9956165840450489,0.9790808558037263,0.9826797458558081,0.9999893051313853,0.9999183905603457,0.9999986940304957,7.554423752468316e-07,2.5249195603278182e-06,3.2095829485020476e-06,1.556662018817434e-05,8.972486827448733e-05,0.03665980199894045,0.04514049799507161,0.026533915087007018,0.027035153990995195,0.9999704372486443,0.9997658236625119,0.9999781819342092,0.9997298375389466,0.9999795837932127,0.9999999428650327,0.9999999413204447,0.9999999762437842,0.9999999678783441,3.304673270443988e-07,4.574903399028583e-07,5.858896546038472e-07,1.682721589473185e-07,3.5413654824284487e-07 -रूप,rgb,0.9976421958564162,0.9989192054393047,0.9985166514059819,0.9988154162532644,0.9993118875109851,0.9907616548614431,0.9960371693361393,0.6335546160548323,0.2992294486119069,0.25450352823751304,0.5734470719700224,0.7616313076576182,0.7330870305564594,0.7232148002297349,0.8387303500741806,0.8456253933143286,0.8510446153991195,0.8556429941102285,0.8478261172916124,0.999520834152177,0.9993922232077584,0.9994110063199504,0.9993775540212435,0.9989403798095623,0.06530604314337267,0.07771371549855645,0.0747972876717089,0.08193524783498173,0.09861495811594645,0.9970904529642092,0.9981820389026607,0.9974915671284124,0.9974694186720205,0.9972843627450207,0.9968494664778584,0.045882689422925865,0.052707847242023036,0.03938491719278664,0.04720369098731028,0.04906242915795469,0.9133859817398742,0.8922074715000854,0.9039978233035956,0.9173046411667877,0.89910030817192,0.9993298982992778,0.9992910746609145,0.9992850518491625,0.9992189442828041,0.9999266039850297,0.9999361493607416,0.9999467196317842,0.999914662665883,0.9999101746771402,0.9934875497701912,0.9843682009369631,0.9948844176601948,0.2901436038628665,0.2859482740784669,0.1844756371700233,0.22557025125006108,0.20615889592746245,0.5643955978578655,0.5342548224187116,0.42806663957778174,0.42945025615736365,0.9997796725491929,0.9996026528989976,0.9997805472564953,0.9995732151176618,0.9997681375103412,0.38555222406166667,0.3658519636717539,0.3507125624316572,0.32276729926515585,0.9990363902748838,0.999081401449249,0.9990334351575594,0.9984188996482506,0.9987815062178947 -लाल,rgb,1.2148367654549395e-29,2.1255673249875272e-33,1.3363924612069097e-31,1.2196571564023617e-31,3.1122639508030194e-34,1.7809757164426888e-11,5.677671314986052e-15,0.9999959834717723,0.9999999999999762,0.9999999999999989,0.9999999730858079,0.9999999554039483,0.9999999974561344,0.9999999986809425,0.8544150317639535,0.7758329071315703,0.6923451576356949,0.6069737916853553,0.7759987366877665,7.445077867880873e-37,1.5507649558600372e-35,1.4403845774755295e-35,1.045011341581101e-34,3.9732537020274434e-32,0.9999999999999996,0.9999999999999947,0.9999999999999971,0.9999999999999902,0.9999999999999407,8.453239635270108e-24,4.9757413042759176e-26,1.7947942185319654e-24,2.712679483916264e-24,7.010340634742714e-24,6.226509399924065e-23,1.0,1.0,1.0,1.0,1.0,0.0003843585699682325,0.0084851023058726,0.002337525174771038,0.00043766324612990007,0.016991562687471193,3.1324459810062415e-18,1.1879068696517528e-17,1.3604017257002673e-17,8.23463300491655e-17,4.771466631457094e-39,2.9128921099615453e-39,6.916307502869306e-40,6.242826236924474e-38,1.6965309541257541e-37,1.7754759653955608e-05,0.29198930418354413,1.3099927819110535e-05,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,7.335193234397906e-28,1.7811110050561396e-25,1.0924469882447353e-27,4.081795129857266e-25,2.686165290750183e-27,1.0,1.0,1.0,1.0,2.0971050406094703e-33,1.5536688823144048e-33,4.243477421670096e-33,1.0562091675229677e-30,6.249085699897715e-32 -लिए,rgb,1.0,1.0,1.0,1.0,1.0,0.9999999999999947,0.9999999977575713,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.8265190283932518,0.9111934845910689,0.917000303397387,0.9700432416595689,0.9991466486133445,0.987104955263101,0.93784207651093,0.9965403576565929,0.9930845503943766,0.9999999993856872,0.9999999999999498,0.9999999991718815,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.00476659593351466,0.14380715378521639,0.0040606653108700924,0.2025789543786914,0.004742688645413981,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -वर्ग,rgb,0.9999999999977516,0.9999999999994393,0.9999999999863356,0.9999999709318894,0.9999999955737635,8.786979121520182e-11,3.707115065146495e-09,2.8308116614443226e-07,3.5403481096921124e-07,4.220858997410029e-07,1.2015099439741852e-08,7.850047332871587e-14,4.7197430710374905e-14,4.627372342686128e-14,7.004404260136115e-10,5.96168400721255e-10,5.266242536555175e-10,4.74803587318639e-10,4.3958758875856397e-10,0.9999999999986084,0.9999999999845335,0.9999999999664344,0.9999999969721092,0.9999999714981506,1.0,1.0,1.0,1.0,1.0,0.00887680741075273,0.04074728275742395,0.012280707757951398,0.007004004919206828,0.004162904673778806,0.001053829963250023,0.9999899326337571,0.9999935185923364,0.999998575540417,0.9999972768406615,0.9999995883990529,3.955765703392457e-09,2.76166732685091e-09,1.9144030247124282e-09,1.3298737534667206e-09,2.7751750429793174e-10,0.5127077117060338,0.5792985379799315,0.5721504251220404,0.6060666444712887,0.9999980302722429,0.9999991539236035,0.999999835599637,0.9999857671750587,0.9999710570670185,2.122415775975696e-06,1.4125722192580375e-08,0.00017916001170938792,2.6077815326446082e-12,7.10796368808614e-13,8.73930328789953e-13,2.195040592434941e-13,1.2350586858925573e-13,2.1812685959519896e-14,2.688380500859073e-14,3.719570343008186e-14,3.718571407702156e-14,0.9193123387627679,0.03439812064565612,0.9371486915467141,0.019307177016321106,0.9119553383888899,0.9999955631737486,0.9999971472227132,0.9999999495666211,0.9999999280153623,0.9999999999571367,0.9999999999184426,0.9999999995700746,0.9999999978360301,0.9999999986627226 -वस्तु,rgb,0.9999918492007948,0.9999895960214618,0.999947318101237,0.9931657202202879,0.9966018535863731,0.02946430084820303,0.41142956405234615,0.9516615713134088,0.9999149035610196,0.9999743394883126,0.9467403585120374,0.432123025015257,0.6827398737268783,0.7211257254465309,0.04970951294037971,0.04119679229756277,0.03548112100839926,0.031219882939952627,0.03691029961258907,0.9999619036399305,0.999860209221527,0.9997746453065233,0.997130558024407,0.9926048699049279,1.0,1.0,1.0,1.0,1.0,0.007314000149886105,0.013034705328027104,0.00815305810547911,0.006874563739291792,0.005828120117195906,0.003878018517804778,1.0,1.0,1.0,1.0,1.0,0.010146324005194699,0.01775471629257979,0.011499282730450509,0.006997396726247942,0.009250877947950346,0.9999999999955271,0.999999999998465,0.9999999999985141,0.9999999999995193,0.9999472519087126,0.999988904097322,0.9999979753042472,0.999906546114277,0.9998966564111214,0.999999999886003,0.9999999985363435,0.9999999999997011,0.9995388254049469,0.9997540976114359,0.9999953879533864,0.9999920688355122,0.9999994662815024,0.9999938584885651,0.9999982431609796,0.9999997776543831,0.9999997763370033,0.9999999018297913,0.9999837353038015,0.9999999504389097,0.9999767358354335,0.9999999539253558,1.0,1.0,1.0,1.0,0.9998226374650395,0.9997259139523632,0.9992929050130475,0.9988930897245617,0.9988888853317934 -विभिन्न,rgb,0.0014011517069426104,0.0006918949550670653,0.0019723286033221177,0.01570720495954034,0.007244680452376375,0.9990882236187046,0.9955094940372018,0.9987976360467962,0.9988977069408044,0.9988589615954657,0.9994929400883006,0.9999610537694423,0.9999647095838272,0.9999651860407631,0.9996869851752654,0.9996956019818568,0.9997018345350127,0.9997067724659174,0.9997165711601879,0.0006263172180080894,0.0013893432868171598,0.0017053341808831923,0.006207518059626596,0.014866328872106468,5.0653205423249594e-12,8.194337377454219e-12,1.071387261001249e-11,1.8387217542697083e-11,1.055048498966954e-09,0.9093877881817954,0.8385342592114339,0.8949730541296961,0.9082835687992533,0.9216700775338044,0.9476858021956212,0.002328645395870213,0.0019034615639744901,0.0012155980509964952,0.0014458555320224847,0.0007277137515947465,0.9994209464494701,0.9995048444440672,0.9995322917151782,0.9995523617542494,0.9997136976270375,0.07819372261518089,0.06919331094486936,0.0697176444897915,0.06403270644647696,0.006075266216986707,0.004029566456686506,0.0021519680641696997,0.010852069171637672,0.013205092400768241,0.8843628968189992,0.9798710067458396,0.5831832428803688,0.9999381798811646,0.9999517982080619,0.9999457172582068,0.9999570099614605,0.9999543050385323,0.9999429457037847,0.9999368913521754,0.9999341286587254,0.9999339728643273,0.065303607937522,0.3650571429987537,0.057932628448672016,0.4141710169437945,0.06396083491752123,0.0009200751776658453,0.000799648004652757,0.00019409446017831024,0.00022569437885085897,0.0022847603879937585,0.0026869514087327425,0.004402713400133618,0.008576556420316702,0.006711323690576575 -वृत्त,rgb,0.9952484805828636,0.9962749201843849,0.9885480562943713,0.8138410256133098,0.8876890403291203,3.860773936661047e-05,0.0001891485638370106,0.0014459002498309992,0.00705513009004058,0.0097763797952897,0.0006668452625604351,1.7424639273830884e-05,1.9722177756117028e-05,2.0523227791757126e-05,8.250058999821036e-05,7.565897900306273e-05,7.071253806128607e-05,6.678476926737039e-05,6.841617402552728e-05,0.9935309451673734,0.9846877360111947,0.9794703302834672,0.8996809397346952,0.8110226856578511,1.0,1.0,1.0,1.0,0.9999999999999987,0.0022566787637782817,0.0036764839636146502,0.0024880901418695483,0.0020873399991877743,0.001776704919106725,0.0011679968716201018,0.9999999993818167,0.9999999994733573,0.9999999998117566,0.9999999996977722,0.9999999998921769,8.336052480426469e-05,8.806352967584442e-05,7.240609599787199e-05,5.8645770236214976e-05,4.329844217196508e-05,0.8964608092917961,0.9222086114752281,0.9222652804734747,0.9411290829240028,0.8115376692728739,0.8826306753920445,0.9425391994316411,0.7021515162491928,0.6604663965452804,0.16082141271641104,0.031937959108499225,0.6854810605027375,0.0002783918646469669,0.00023547107785545365,0.0006351961174268381,0.0003972773297807437,0.0006477906814264603,0.0002261573676875831,0.00031918870808591725,0.0005666311681709556,0.0005656824777910879,0.593158363823265,0.10267602299906313,0.64554539283031,0.08391038278377581,0.6296889272321496,0.9999999974418239,0.9999999981359464,0.999999999809225,0.99999999979143,0.9798283186233996,0.9740509869907856,0.9529220285691604,0.9266277214722921,0.9333775872073662 -व्यंजन,rgb,0.9999999998680875,0.9999999999922322,0.9999999999736093,0.9999999999844389,0.9999999999978106,0.9999994613701954,0.9999999703076992,0.6319195301014289,0.006731871833172226,0.002768323288368048,0.3420551529099488,0.7918188527121908,0.6529201638120979,0.6075703993212705,0.9873546473774132,0.9894454611366437,0.9908900714476138,0.991990053017508,0.9898329923339616,0.999999999999537,0.9999999999988516,0.9999999999989406,0.9999999999984734,0.999999999989466,5.306505317348394e-05,0.00011147905715166972,9.400964335929006e-05,0.0001383158597377406,0.0002855339283278613,0.9999999989019888,0.9999999997984323,0.999999999351215,0.9999999993030984,0.9999999990807034,0.9999999983139995,1.3010749924721614e-09,2.1652091607283617e-09,6.348607073343619e-10,1.3313702128321893e-09,1.3677699886556897e-09,0.9992205509539223,0.9980197568833322,0.9987390954740489,0.999292310271174,0.9981641782759494,0.9999999997534426,0.9999999996675635,0.9999999996553277,0.9999999994702462,0.9999999999999962,0.9999999999999973,0.9999999999999984,0.9999999999999927,0.9999999999999907,0.999998404109345,0.9999596930190563,0.9999990816363701,0.0019132884596190012,0.0014217970164663474,0.0001260406295038621,0.00027211300008657266,0.00012196216204851389,0.030697898314303272,0.017933770609850262,0.0034059457036005633,0.003473992673919975,0.9999999999988043,0.9999999999912943,0.9999999999987497,0.999999999988681,0.9999999999984155,1.9768470580575803e-05,1.3928254650067518e-05,8.460217826022956e-06,5.34748792032963e-06,0.9999999999940501,0.9999999999948572,0.9999999999934805,0.999999999960888,0.999999999984684 -व्यंजनों,rgb,4.278031251814925e-34,4.63347296342543e-35,1.3684902682490018e-33,3.853978866260081e-30,6.034346162133999e-31,0.9717934965471147,0.9517732370402034,9.266098708668593e-05,0.6612189037199468,0.9090410732478341,0.059825696743279304,0.9999999970339706,0.9999999998527684,0.9999999998939273,0.0034259581826757185,0.003643310450032918,0.0038050819103655695,0.0039357372165286135,0.005949423357839423,1.1710236561577444e-34,1.2884572879225122e-33,3.0141642909193633e-33,4.320327681640244e-31,3.8505572895899586e-30,5.662082005488797e-35,3.249743750555513e-35,7.492916248263215e-35,9.784965008990417e-35,6.422109822921379e-32,8.950790800778671e-18,2.0219631945669787e-18,6.971802153830423e-18,1.7592179449288722e-17,3.624915468227873e-17,2.7574209174968e-16,1.0,1.0,1.0,1.0,1.0,8.78510189491229e-06,4.057361805364178e-05,4.82892700067863e-05,5.390442289671032e-05,0.002271717977543558,0.9999998836034165,0.999999973123956,0.9999999760970869,0.999999996130758,2.0495569943656167e-19,9.30502370952088e-19,9.991413468089772e-19,4.387438756023016e-18,1.6400022100768498e-17,0.9999999999999993,1.0,1.0,0.9999999999654323,0.9999999999994871,0.9999999999999993,1.0,1.0,1.0,1.0,1.0,1.0,0.00040231221373311583,0.0020526457309235457,0.0008852982055068758,0.0033448701044437677,0.002127622650445007,1.0,1.0,1.0,1.0,3.4555491471778705e-33,6.730398417654148e-33,3.915771027191609e-32,2.5140562921156135e-31,1.347714816579551e-31 -संतरा,rgb,4.037735815500868e-06,0.00010433320692612678,5.5918337170967316e-05,0.0015346143317617853,0.013160299781494054,0.9144100759556945,0.9982049413509798,5.07158274081906e-10,6.258424510630836e-12,3.11736999977781e-12,8.257087459212684e-10,2.2490307334295745e-05,2.3004323352412715e-05,1.9548108608336842e-05,3.3603912312733434e-07,4.4260818166226503e-07,5.52528637834568e-07,6.697070972948019e-07,5.490874373810052e-07,0.007384608259637245,0.00447638652562772,0.006593061176634673,0.01950648111644074,0.002654024016809148,8.323214796689874e-26,1.9041309007424126e-25,1.9611738798742465e-25,3.5849871651981256e-25,7.179767631842654e-24,0.04075905335235164,0.2221740742611921,0.07602550203656373,0.09169547549330435,0.07974778190374611,0.06708338914015533,6.461253893324438e-05,0.00012450814618925938,4.097300942234813e-05,8.442581350419615e-05,0.00012167275436924796,2.327943768243541e-06,1.0471051898483272e-06,2.085441720428258e-06,4.852281813024049e-06,4.408299824936206e-06,0.9999999816794257,0.9999999831381087,0.9999999829437028,0.9999999832371546,0.9999986844365044,0.9999995363121749,0.9999998046209395,0.9999987866669664,0.9999988999539267,0.9999920053247036,0.9998279303795548,0.9999985296067253,2.495130907798679e-09,6.727786635061884e-09,2.1003673185549427e-09,1.4232593578084267e-08,4.317016969771604e-08,0.0002016760362625205,0.00017527611342349453,4.168174064409951e-05,4.284711474104568e-05,0.9999999680795225,0.9999996695185607,0.9999999741337497,0.999999591084324,0.9999999730631061,0.5895212822685602,0.5255792974384175,0.5547365306014734,0.4351340979783772,0.000610583388118782,0.0009297750931187839,0.0011778860710383887,0.0001736052222969656,0.0005292860500906703 -सबजी,rgb,1.9182278869816246e-08,1.1949124657489218e-09,6.642523033206333e-09,1.6735129572486966e-08,1.8844888676330703e-09,0.007282091859758145,0.00015439372132568344,0.9992104123601597,0.9999792492710581,0.9999878640809706,0.9997681823261924,0.9993162088182491,0.9995382571185725,0.9995987726732544,0.9938094817567811,0.9929908034293641,0.9922360014724606,0.9915031793622331,0.9929611587179684,1.030847513693206e-10,3.7934243072438396e-10,4.033572672080171e-10,1.2461291769108512e-09,1.1571287066815086e-08,2.5079912460531596e-05,2.3351825573023156e-05,3.2379047753016964e-05,3.952282797747229e-05,0.0006734224389780615,2.3030770069838552e-05,3.5118901334819e-06,1.312349845954775e-05,1.483596744496927e-05,2.059564197933073e-05,4.2799706227440855e-05,0.6385639292621097,0.49443794556551174,0.5901324309704769,0.5055404238139009,0.31923619626515715,0.9403425249336055,0.971401222467466,0.9609260721163764,0.9410828430617963,0.9744931513763844,4.2415963197943537e-10,4.147806290694952e-10,4.2592758703886367e-10,4.666609144807885e-10,8.746465398327021e-13,3.783483451551712e-13,1.2687102436286762e-13,2.0104570472811795e-12,2.636091955655149e-12,7.558840595946736e-06,0.00041828191822199475,7.23430674990913e-07,0.9999964048316249,0.9999967646852582,0.9999990618063395,0.9999982646957263,0.9999982457668566,0.9997724441215616,0.9998091508397476,0.9999340595117308,0.9999328477682075,4.116144631501808e-11,1.4097610921958794e-09,3.502530418169001e-11,2.0438257850209567e-09,4.344573974380073e-11,0.0007813141755204262,0.0008489290426678299,0.00025631779152965935,0.00041123357214877004,2.1329450238014027e-09,2.0976740176912314e-09,3.5352030827083093e-09,2.452283871827071e-08,9.558309700680533e-09 -सब्जी,rgb,0.3681607561427585,0.2790048596087971,0.3623100975747709,0.4885132244770631,0.39545848516432347,0.9573517757553015,0.9132251291852169,0.986811257538868,0.9895502919380851,0.9897609509296348,0.9897263183599897,0.992189831197942,0.992375613548717,0.9924688967116532,0.988138553961878,0.9880772641493117,0.9880205971730182,0.9879663195529754,0.9882142823279111,0.22917464727325174,0.2851803315635301,0.2949522307348899,0.37796533570261054,0.47643716389427915,0.008119231560836422,0.009170931000628515,0.010008218170643611,0.011641124739873445,0.038147101859302965,0.8712602711270653,0.830430608396542,0.8607476430950075,0.8652610125567588,0.8726971621868572,0.8886991310249144,0.26157659568490266,0.24204263343209786,0.22415547986132958,0.22832083574402814,0.18605973277960822,0.98409251106877,0.9854701513658025,0.9852175273537022,0.9847726078029553,0.9868430488623657,0.2694971467508531,0.25902435023868337,0.2596137278623666,0.25250079345599125,0.1811376347369867,0.15315184889505307,0.12213091383838448,0.21072821921627696,0.2207689082253049,0.6940637457239548,0.8327748810031365,0.5346094634779256,0.9942749733164441,0.9943933184159791,0.9944076739437032,0.9942465756832535,0.9936551898622425,0.9892606401981343,0.9889110248715569,0.9894885921849136,0.9894649106379906,0.27533012888904823,0.46906886183677515,0.26405791259522565,0.48927624336500036,0.2710965073636999,0.13470269678073565,0.1305268468569186,0.08352303765890336,0.08952633921639643,0.3442589557102657,0.3514325146919076,0.3869881882200459,0.4668412963325935,0.4316182455125363 -सलाद,rgb,0.9999329070619337,0.9999954075632441,0.9999872428460154,0.9999954000775509,0.9999992896466611,0.9994560880063786,0.9999741083979705,0.0005584308365993968,6.29998504840087e-06,3.08671417067985e-06,0.00029193906866998665,0.013619228853160817,0.009098711185361139,0.007751063290121334,0.028102397789137847,0.03356060319734705,0.03872561122033488,0.043842592763058665,0.03614097194619553,0.9999997470864013,0.9999994519640648,0.9999995215226591,0.9999994972873996,0.9999968986979293,2.029861165679614e-09,3.730090010566245e-09,3.296799114226221e-09,4.58724856060828e-09,1.002121354877686e-08,0.9999551201882697,0.9999911505411139,0.9999733016046208,0.9999733209857101,0.9999665467588901,0.9999470954511659,6.234828521390682e-07,1.0417910854621135e-06,3.9330381023191996e-07,7.28420109431234e-07,9.027365587404327e-07,0.21640699727391058,0.11114725058682072,0.16488061653880368,0.26009954808406,0.15745801229441686,0.999999980702429,0.9999999780565039,0.9999999774983278,0.9999999717301512,0.9999999999113831,0.9999999999500959,0.9999999999744669,0.9999999998639815,0.9999999998444931,0.9999679448668437,0.9993545174831199,0.9999887144497329,1.2616449044231728e-05,1.3867535577465716e-05,2.492054150675693e-06,6.649067854476522e-06,5.908359178853979e-06,0.0018164133810269036,0.0012896164719422211,0.00032454047753626764,0.0003310577166644006,0.999999998938716,0.9999999912661456,0.9999999989946022,0.9999999888909304,0.9999999988189494,0.0034147282187564506,0.0026371481121803013,0.0024732327914846453,0.0016176892805087964,0.9999972824280368,0.9999977479498567,0.9999974371549588,0.9999862020842661,0.9999943958469186 -साबुन,rgb,0.8135296727548365,0.8782413147254818,0.7737727206797416,0.43666809978661275,0.5751060548518503,0.00029100237995336196,0.0009107161547318512,0.0003495706061612033,0.00033161033938025825,0.0003404293046324595,0.00018978083806729995,3.102016994847624e-05,2.899571710845201e-05,2.8724305182948663e-05,0.00013411998809566126,0.00013148175051743308,0.0001295599985899323,0.00012802917707469347,0.00012500576346291282,0.8857782306459533,0.8146938802379562,0.7916685588664841,0.6019422371064088,0.4465230844680057,0.9999997860637453,0.9999996981707585,0.9999996347424871,0.9999994628806529,0.999990364327038,0.007915807955886213,0.012598396187049242,0.008887012160935381,0.007996736395822537,0.007081356718996483,0.00522258025210696,0.7847157863520798,0.8080797075412124,0.8532219240151285,0.8368752911393852,0.8935101889159155,0.00020699555195483502,0.00018535149303198348,0.0001779886101538113,0.0001725258138938502,0.0001258119128422271,0.20350355328204348,0.21946639458868678,0.21849446833257424,0.2301354168744713,0.6122454963977182,0.6798658174379932,0.7690303958184451,0.510450254428189,0.47531528941529333,0.010324928219612593,0.00278408020276779,0.03400656492804074,4.331165608424602e-05,3.64092699524357e-05,3.98881498429505e-05,3.385319626178793e-05,3.559457240337031e-05,4.1820946076238715e-05,4.502713115611516e-05,4.654411722435357e-05,4.6622805303866237e-05,0.22283272636866266,0.05987102735931696,0.23916627490258077,0.05210032920575456,0.225881022841069,0.8752771858773655,0.8858867170742485,0.9553677795002884,0.9505601245885984,0.7550154377600246,0.7330364996341351,0.6587555846434295,0.5448705070882678,0.5880754440457697 -सिलेंडर,rgb,0.9999999999999674,0.999999999999988,0.9999999999998641,0.9999999999453344,0.9999999999857925,3.3918733193778636e-05,0.000381054611158093,0.058322799552763795,0.034649864993749564,0.034766161444196614,0.0040520947859310685,1.2162988753706936e-07,6.630776505147653e-08,6.399049048925536e-08,0.0006078544228533516,0.0005364369371480678,0.00048722013724743956,0.00044956798398820786,0.0004148208260174088,0.9999999999999716,0.9999999999998253,0.9999999999996778,0.9999999999891516,0.999999999944881,1.0,1.0,1.0,1.0,1.0,0.9977911011594867,0.999267878521953,0.9982216663473452,0.9971531612981365,0.9957152307289278,0.9872445561044166,0.9854791550280574,0.9890832415783815,0.9956016211937522,0.9935368068412931,0.9980159576544445,0.0030456122974454186,0.002159358042931424,0.0016171021542893448,0.0012119353259309605,0.0003048515004069013,0.9754189262147529,0.9765972120841496,0.9759123515843178,0.974333280093567,0.9999999820866695,0.9999999879593012,0.9999999958523764,0.9999999107471333,0.9999998376605316,0.0013588846624506107,3.48946035911275e-05,0.02009059505583468,1.2560399114659767e-06,3.4768820972136807e-07,2.3529389058135208e-07,6.895173705311943e-08,2.513281337585174e-08,4.72022943433431e-09,4.648771030702415e-09,4.841943254099177e-09,4.836238162284428e-09,0.9993821205984333,0.9690619388430471,0.9994433402442662,0.953006254058883,0.9992327575377885,0.9949738819084617,0.9960832812299953,0.9996860391441718,0.9995907709489208,0.9999999999996498,0.9999999999994174,0.9999999999978932,0.9999999999931573,0.9999999999951075 -सेब,rgb,1.2503713507451145e-14,1.4180747347337294e-15,6.008090856986633e-15,2.298392173672956e-14,4.8009592417295436e-15,5.016980097048088e-05,8.10927520766411e-06,0.013759272620804668,0.7774524958861819,0.8956072136904774,0.1040948273526099,0.8085087621494044,0.9254583795393774,0.9374995853319027,0.0028927749733170336,0.0026227316091952495,0.0024185399683849663,0.0022513231102629532,0.0028467339983672102,3.1556850259507514e-16,8.9846347025536e-16,1.0227196820538688e-15,3.606876906125636e-15,1.8176748401558808e-14,5.917455284001917e-06,3.2883159466789147e-06,4.335099569781862e-06,3.5694556317303063e-06,8.243745127858829e-06,1.213421384629841e-10,3.2123465007686917e-11,8.400992218094751e-11,1.068175461338234e-10,1.4705122575232788e-10,3.2578603733314847e-10,0.9999999999999993,0.9999999999999991,0.9999999999999998,0.9999999999999996,0.9999999999999996,0.00014775439529454365,0.0003612366690491169,0.00028478235548535645,0.00020520990611731785,0.0008150589690978498,9.926586269786024e-06,1.6456885242199317e-05,1.7252387492046195e-05,3.341244359240459e-05,3.3937488801448856e-14,3.839177998570364e-14,2.8091243961078477e-14,9.678306021507289e-14,1.482860993442066e-13,0.10032487011709657,0.6681299673061213,0.12657532492502777,0.9991143316668807,0.9997022322896977,0.99998380105417,0.9999849507251332,0.9999978174097486,0.9999587915066871,0.9999803694545711,0.9999960528218751,0.9999960045061639,2.203324789352923e-09,9.739153761600663e-09,2.7011782868993685e-09,1.2615677223622103e-08,3.762712838407335e-09,0.9999999999981366,0.9999999999987019,0.9999999999994347,0.9999999999996143,2.9674080416812927e-15,3.124451409868789e-15,5.2083124973171006e-15,2.2611959511288317e-14,1.1278407548541153e-14 -स्वास्थ्य,rgb,1.1549538648226005e-14,4.075556726770507e-13,1.6945114459414079e-12,5.004134961320639e-08,2.872440854544329e-07,0.9999999999996476,0.9999999999999878,7.668537001506733e-06,4.045825183900952e-08,1.6296796196932263e-08,0.00022372493719970477,0.999999894874074,0.9999999476018494,0.9999999371199708,0.8269364052470813,0.8872504014578181,0.9213272601627492,0.9428048563762422,0.9317276002122694,3.5605378101000894e-10,9.761373462373933e-10,3.004292223162781e-09,3.90018078888222e-07,1.0861980150296007e-07,2.9094047224254864e-61,2.3492173930658163e-60,4.5479432747378305e-60,3.258628095960462e-59,1.5250629683605193e-53,0.989862728292636,0.9979784862608706,0.9950440351696019,0.9976378637320279,0.9980284716919926,0.9991135565220374,0.970133081097106,0.9842215287293025,0.8627184118454462,0.9591027296901747,0.933995247711227,0.9300493631414446,0.8629945832561606,0.9555751095856112,0.9891282933903083,0.9968582907705162,1.0,1.0,1.0,1.0,0.9999999713220696,0.9999999910916478,0.9999999931677221,0.9999999945890867,0.9999999973757148,1.0,1.0,1.0,0.8092924792508648,0.9844778093118001,0.9587080911030849,0.9991036291268373,0.9999412126463257,0.9999999999094331,0.9999999998994087,0.9999999993054081,0.9999999993323576,0.9999999999999967,0.9999999999999976,0.9999999999999973,0.9999999999999978,0.999999999999998,0.9999998972249059,0.99999982048617,0.999998689710524,0.9999980139122538,1.157206617357377e-10,3.369064265206947e-10,1.5816704563682598e-09,3.339687433793165e-10,1.1488837985853516e-09 -ह,rgb,0.08806051804736903,0.0035731500972814544,0.017367134685032856,0.007623907597107325,0.0004805849045206999,8.752065515722128e-07,1.2090633595629135e-09,0.9998675847910415,0.9998140008639215,0.9997753559135424,0.9996583566393987,0.05637167738925085,0.02195397752609275,0.022561684106324007,0.9963509352661143,0.9956657668715598,0.9950132538251817,0.99436138708965,0.9947341338100184,7.183058306856615e-05,0.000264954572104319,0.0002260535996160411,0.00027963720055276857,0.004385889934012449,6.861590692145461e-06,1.388243475465583e-05,1.8241991136612914e-05,3.639290117530046e-05,0.003540115366742644,0.02506749574496795,0.002259705203040706,0.011462809141159842,0.009647691313812745,0.01217242290354583,0.017175536690144693,1.7024748942294044e-34,6.906006769076719e-35,2.876905982494105e-35,3.5308172462599154e-35,3.772334620707702e-36,0.9935524657534984,0.9955766602503875,0.9929424761234222,0.9872666891587359,0.9817619120571086,9.394802305628741e-24,3.6144247770071825e-24,3.54761819132714e-24,1.3724206329656434e-24,8.118209543896676e-15,7.549073283309539e-16,8.607367901094226e-17,8.886688595295319e-15,7.768788933513219e-15,2.027547131614998e-20,2.7041941142497778e-18,3.842001690470251e-23,0.8014810399540979,0.3863730859202457,0.07910291804056836,0.012258518307758396,0.0003300196183455384,1.2986219436085448e-07,5.478724239526535e-08,5.188380288619826e-08,5.052619888516133e-08,1.1561735065751351e-19,5.15083555210895e-17,5.325775271502311e-20,8.116711104859481e-17,4.9639852453235293e-20,5.170892439420975e-37,3.499714661360892e-37,4.840325808728272e-39,8.197203917692545e-39,0.002697479432188642,0.0021865863170292773,0.0028835536737677457,0.02854087795788895,0.008807948843142035 -हरा,rgb,0.9999999857176964,0.9999999986106696,0.9999999938861597,0.9999999800037644,0.999999996295676,0.06625033478927575,0.37245078136065135,6.653220846025202e-05,2.747229972934489e-07,1.1307767783394667e-07,8.85331891023469e-06,5.251446280042838e-07,1.9040371393773128e-07,1.5749557954555315e-07,0.0004147760279676584,0.00046281515289215867,0.0005065908971315788,0.0005486352534706787,0.00043284435078092513,0.9999999997522353,0.9999999992699358,0.9999999991853421,0.999999997281293,0.9999999846433822,0.0908659722590919,0.15014843745520062,0.117972405553993,0.1381371097660452,0.06124273227345558,0.9999193757280392,0.9999808149263246,0.999946246291024,0.999932886324189,0.9999071923531717,0.9997949635144815,4.785878201581714e-20,7.049890354308098e-20,2.3332607693463358e-20,4.459326826373382e-20,4.0347503397094296e-20,0.008060252867364344,0.0032699619081641928,0.004270212142950534,0.006135718864930964,0.0016242830000896226,0.685680888188818,0.5804287096209193,0.5692780210459675,0.4182343918594162,0.9999999938349384,0.9999999938042936,0.9999999958764492,0.999999982870159,0.9999999742387478,0.00015796669397487735,7.251041384403789e-06,0.00016105740015826263,1.5141160050747248e-09,5.754353570084541e-10,3.512227938376379e-11,3.6980785780761465e-11,6.632301428353211e-12,1.9501692235016143e-10,9.733271652161812e-11,1.964207058366845e-11,1.991060987660477e-11,0.9998192323860549,0.998977005885572,0.9997869236805976,0.9986542770925055,0.9997061627759776,2.0416511823195432e-16,1.4455683862464212e-16,7.53834455411064e-17,5.028617829570805e-17,0.9999999973116038,0.9999999972271381,0.9999999954223018,0.9999999780498676,0.9999999896516462 -हरी,rgb,0.9999652863045616,0.9999748357776111,0.9999728376428901,0.9999690818768633,0.9999685183393509,0.12300723236657765,0.03735572667120406,0.5069076932919976,0.017596256531959554,0.008642928019443264,0.2102314704404856,0.003889647767819742,0.0014388976317444378,0.0012732155740684589,0.7218050131286463,0.7294878115399567,0.7356036922905428,0.7408315255442963,0.7142047043625073,0.9999742290018839,0.9999743414581707,0.999973508379869,0.9999678997384119,0.9999687848639937,5.326234374277852e-08,1.262766070950238e-07,1.2768404845778815e-07,2.3376326466808856e-07,3.5122340647775986e-06,0.9995898656367861,0.9995758028553107,0.9995758970332719,0.9995100239532431,0.9994694489847171,0.9993115174963857,3.6531065478091556e-26,3.311594940058542e-26,9.107870714840084e-27,1.6879398599522936e-26,5.611230864373113e-27,0.9334250303047396,0.8980343615661402,0.904614224926992,0.9127563817002824,0.8142133176575562,8.8217296825791e-08,4.410481032871603e-08,4.25826599592041e-08,1.945231627069703e-08,0.8931595805190503,0.7645856882862712,0.620769707045379,0.8439549741722763,0.8090610861538342,8.24405573924965e-09,9.861132159838052e-09,5.211946643292557e-10,0.0001686992892596571,5.249774752480014e-05,3.4878351011535565e-06,2.2034692832862605e-06,1.9689847247984653e-07,1.7578984293336622e-07,7.716770647128161e-08,2.3263492003528345e-08,2.3272985629354295e-08,0.0004574730055818999,0.0023957981678672177,0.00029960986639968317,0.002497674880520595,0.0002440074434922783,1.6407289108380427e-24,1.0568344015196292e-24,8.765732732601585e-26,8.281976547527781e-26,0.9999748487985427,0.9999745621069072,0.9999734874066649,0.9999709599571563,0.9999724565073569 -हरे,rgb,0.9999999999926414,0.9999999999996003,0.9999999999975873,0.9999999999910145,0.9999999999988873,0.6725243588329778,0.9653756530096896,0.00024525790441725374,2.4201394552307927e-07,7.880537074127815e-08,2.0828022745687466e-05,8.029364159716223e-07,2.268562622886127e-07,1.786822946001645e-07,0.002843761742510438,0.0032772617924323546,0.003683128571684801,0.004082014359891769,0.003035528726149648,0.9999999999999558,0.9999999999998366,0.9999999999998157,0.999999999999241,0.999999999993564,0.1661228058887087,0.29725813214069413,0.23290507027595883,0.28397769188898986,0.1462840437467528,0.9999998103706824,0.9999999680181951,0.9999998856105066,0.9999998507198892,0.9999997779494714,0.9999994152780336,1.4023709474204548e-23,2.2672454327708062e-23,5.449381747780068e-24,1.2502988017636091e-23,1.0618622915482328e-23,0.10433949191210806,0.03607206785084886,0.050294252489831444,0.07804558148394695,0.01610233013753446,0.9901439273531033,0.98257539238607,0.9815763685755162,0.9611207156097271,0.9999999999982823,0.999999999998249,0.999999999998918,0.9999999999940492,0.9999999999902136,0.0008067909340123912,1.8412709730253337e-05,0.0007595757724041088,4.615254188994841e-10,1.4123774326964733e-10,4.169469262600545e-12,4.6170504901620626e-12,5.420457762940213e-13,4.0813977512265005e-11,1.6961314841333202e-11,2.2412616997141896e-12,2.2801176566157595e-12,0.999999445642779,0.9999956104138634,0.9999993152133426,0.9999938727064352,0.9999989820090303,5.240800241392846e-19,3.3614501467839286e-19,1.3648029667010315e-19,8.249945650212409e-20,0.9999999999991696,0.9999999999991498,0.9999999999984597,0.9999999999892342,0.9999999999957931 -हुआ,rgb,3.996646734809737e-09,7.0013561095598e-09,4.05836464046757e-08,1.6304547728705817e-05,1.0451174591470887e-05,0.9993819692643329,0.9949938951287886,0.009758256411313644,5.1455075913720894e-05,1.909896451555939e-05,0.026733232597566922,0.9830987098220858,0.9715094989244513,0.9669649414849076,0.9150136887682776,0.9316733695793815,0.9426401934586403,0.950669927050506,0.9437174697153156,5.7138938549701255e-08,2.242318847588052e-07,4.124367990916698e-07,9.302593891346888e-06,1.945709795957638e-05,5.4558613284958545e-46,4.3963963738888387e-45,7.813039309650275e-45,5.181024488373171e-44,8.295029686831078e-39,0.8884565068337108,0.8498627667574944,0.8883012381745188,0.9156718529384054,0.9306137881796825,0.960265488334902,1.798208740733385e-30,1.5763479607778205e-30,1.297961051807574e-31,4.368333350624523e-31,5.680920288191429e-32,0.9687195172580148,0.9512285690808947,0.9712036771997518,0.9843528954308041,0.9873098491566724,5.723123341556934e-07,2.712457311541188e-07,2.669519036582164e-07,1.2406619199063383e-07,0.0002470213439493596,9.17904749125918e-05,2.412060603578209e-05,0.000618567524578347,0.000816638147061613,3.6565585922503624e-05,0.0003522709631865269,3.527872105852444e-07,0.01475925053039993,0.01751434657160509,0.0009661011053444507,0.0031226759350754646,0.0008232133486465319,0.04544879582236369,0.018954648928871703,0.0032790773611382617,0.003313444540095664,0.00017526347100950044,0.01278013362280652,0.00011002074141493915,0.017864020121740612,0.00011453181630731165,1.0762325223856096e-27,5.0331199162342445e-28,4.508776065771623e-30,4.534086811522005e-30,2.1378330787078137e-07,3.7215511821451627e-07,1.1354898509710587e-06,1.4833902709285157e-06,1.7046365175487668e-06 -हे,rgb,0.9999999999022298,0.9999999999673717,0.9999999996251054,0.9999999317333514,0.9999999887473451,0.9895965948620215,0.9999496206407424,0.9862391632739369,0.9999349190872197,0.9999777162227864,0.9795964759139525,0.9130319740874225,0.9679102566291901,0.9719142031639846,0.33211222653405914,0.3022375918389547,0.2801789002187989,0.26246372764257714,0.28331151974192986,0.9999999999668341,0.9999999997701579,0.9999999996245565,0.9999999923134689,0.999999938993507,1.0,1.0,1.0,1.0,1.0,0.9774106778112608,0.9950514603928541,0.984765144489772,0.9815284652945425,0.9749718566163965,0.9503632198502744,1.0,1.0,1.0,1.0,1.0,0.1801944716601437,0.22447296790016052,0.17885392721064855,0.1396479954475533,0.1444749367020211,1.0,1.0,1.0,1.0,0.9999999999994671,0.9999999999999396,0.9999999999999944,0.9999999999987166,0.9999999999984666,1.0,0.9999999999999964,1.0,0.9997283911905425,0.9998828436655791,0.9999976471107502,0.9999973808556076,0.9999998956676015,0.9999999069880239,0.9999999754387771,0.9999999958062151,0.9999999958204306,0.9999999999999993,0.9999999999989722,0.9999999999999998,0.9999999999982201,0.9999999999999998,1.0,1.0,1.0,1.0,0.9999999992978734,0.999999998937176,0.9999999965303743,0.9999999858890198,0.9999999911210807 -हैं,rgb,0.45099495069531176,0.941397328827964,0.8412518127253542,0.9677178131844768,0.9968817833964276,0.999999736575072,0.9999999989483888,0.000831616336451539,0.0005935730040270989,0.0006200229704287148,0.002449300268943536,0.9933510199126994,0.9970915916226939,0.9969647834577675,0.044591047502394544,0.05337000576529135,0.061656169725848704,0.06984850788416432,0.06507915101833996,0.9985968005092711,0.9964750787961938,0.9972319447684036,0.9980267431321095,0.9805411091936935,0.013667935234616275,0.009915767383038347,0.008581034484719318,0.00618549117711487,0.0006851787796295723,0.9905552530269093,0.9988150677488082,0.9952999585233189,0.996198948594482,0.9955096007778076,0.9945471640687632,1.0,1.0,1.0,1.0,1.0,0.07704335566567606,0.05383587605739187,0.08576214621877556,0.14874434463197733,0.20782009792232303,1.0,1.0,1.0,1.0,0.9999999999996205,0.9999999999999476,0.9999999999999907,0.9999999999996556,0.999999999999712,1.0,1.0,1.0,0.5277001249898557,0.863247259221565,0.9633780703017412,0.9944790582429526,0.9997525879990092,0.9999998736358642,0.9999999345455929,0.9999999219465018,0.999999923877301,1.0,0.9999999999999987,1.0,0.999999999999998,1.0,1.0,1.0,1.0,1.0,0.9731543663985849,0.9795296943062367,0.9783498359385335,0.8604993613335872,0.9474522203189796 -होता,rgb,0.9999977695817578,0.9999996273909847,0.9999994324383322,0.9999998679187038,0.9999999578693781,0.9999998313507668,0.9999999697516739,0.9864374706176944,0.6954957558373984,0.5639155192162938,0.9828245054367146,0.9995354809731088,0.9993710800992994,0.9992905495403384,0.9995597550473184,0.9996203103332123,0.9996630282555796,0.9996961875342134,0.9996492056258706,0.9999999563574532,0.9999999401715229,0.9999999494927351,0.9999999657618489,0.9999998999082178,6.717616149505897e-08,1.277600020654248e-07,1.2735035014801783e-07,1.9890278944746002e-07,1.492359613034943e-06,0.9999999075689859,0.9999999659864944,0.9999999338688667,0.9999999368609098,0.9999999291668097,0.9999999127473932,0.001103128716495604,0.0015118458122699678,0.0006032864868045365,0.0010339036956053791,0.0009354957157234534,0.9999056489245897,0.9998353325539161,0.9998856090794107,0.9999271300542151,0.9998964268033508,0.9999999972776736,0.999999996802186,0.9999999967466695,0.9999999959258816,0.9999999999335267,0.9999999999490605,0.9999999999612628,0.9999999999235294,0.9999999999202727,0.9999998284537294,0.9999991199363145,0.9999998504743769,0.8974475901594978,0.9079240794041792,0.7066381765639996,0.8429803298500901,0.8175921794411148,0.996758166338902,0.9955601938515153,0.9869466837822763,0.9871279811288571,0.9999999997449274,0.9999999994132092,0.9999999997412405,0.9999999993445192,0.9999999997163131,0.36938589780392594,0.3123109370575009,0.20056417784687533,0.16058802840187197,0.999999831303384,0.9999998611848044,0.9999998701275525,0.9999996310068231,0.9999997967457646 diff --git a/testResults/testing_hindi/NoOfDataPoints/6000/groundTruthPredictionTrain.csv b/testResults/testing_hindi/NoOfDataPoints/6000/groundTruthPredictionTrain.csv deleted file mode 100644 index cfc772b..0000000 --- a/testResults/testing_hindi/NoOfDataPoints/6000/groundTruthPredictionTrain.csv +++ /dev/null @@ -1,108 +0,0 @@ -Token,Type,1-tomato/tomato_2,1-semicylinder/semicylinder_4,1-cabbage/cabbage_1,0-cube/cube_3,1-cabbage/cabbage_3,0-cube/cube_1,0-cube/cube_4,0-lemon/lemon_1,0-lemon/lemon_3,0-lemon/lemon_4,0-corn/corn_1,0-corn/corn_2,0-corn/corn_3,0-semicylinder/semicylinder_4,0-semicylinder/semicylinder_1,0-semicylinder/semicylinder_2,1-carrot/carrot_3,1-carrot/carrot_2,1-carrot/carrot_1,0-banana/banana_2,4-carrot/carrot_1,1-plum/plum_4,3-arch/arch_1,1-plum/plum_1,2-lime/lime_2,1-plum/plum_2,3-tomato/tomato_3,3-lime/lime_2,3-cuboid/cuboid_3,3-cuboid/cuboid_2,3-cuboid/cuboid_1,1-cabbage/cabbage_2,1-arch/arch_1,3-orange/orange_3,1-arch/arch_2,1-arch/arch_4,2-banana/banana_1,1-potato/potato_2,2-banana/banana_4,0-cylinder/cylinder_1,0-cylinder/cylinder_3,0-cylinder/cylinder_4,0-cuboid/cuboid_1,0-cuboid/cuboid_2,0-cuboid/cuboid_3,2-cabbage/cabbage_2,2-cabbage/cabbage_3,2-cabbage/cabbage_1,2-cube/cube_4,3-orange/orange_2,2-cube/cube_1,2-cube/cube_3,3-lemon/lemon_3,3-triangle/triangle_2,3-triangle/triangle_1,0-arch/arch_1,1-cucumber/cucumber_1,1-cucumber/cucumber_2,2-corn/corn_2,2-corn/corn_3,2-corn/corn_1,5-carrot/carrot_1,3-arch/arch_4,2-cylinder/cylinder_4,4-cuboid/cuboid_2,4-plum/plum_1,4-plum/plum_2,1-lemon/lemon_4,1-lemon/lemon_1,1-lemon/lemon_3,1-cylinder/cylinder_1,4-semicylinder/semicylinder_1,1-cylinder/cylinder_3,3-lemon/lemon_4,4-semicylinder/semicylinder_4,1-cylinder/cylinder_4,2-plum/plum_2,2-plum/plum_1,2-plum/plum_4,2-cucumber/cucumber_2,1-tomato/tomato_3,2-cucumber/cucumber_1,1-tomato/tomato_4,2-cucumber/cucumber_4,2-lemon/lemon_3,0-tomato/tomato_4,4-cuboid/cuboid_3,0-potato/potato_2,0-tomato/tomato_2,0-tomato/tomato_3,2-lemon/lemon_1,3-semicylinder/semicylinder_2,0-cucumber/cucumber_1,0-cucumber/cucumber_2,0-cucumber/cucumber_4,1-cucumber/cucumber_4,1-cuboid/cuboid_3,3-cucumber/cucumber_4,3-cucumber/cucumber_2,3-cucumber/cucumber_1,4-cucumber/cucumber_4,0-triangle/triangle_1,0-triangle/triangle_2,0-triangle/triangle_4,4-cucumber/cucumber_1,2-cuboid/cuboid_1,1-triangle/triangle_1,0-plum/plum_1,0-plum/plum_2,1-triangle/triangle_2,0-plum/plum_4,1-triangle/triangle_4,3-semicylinder/semicylinder_1,0-eggplant/eggplant_3,3-eggplant/eggplant_3,3-eggplant/eggplant_1,2-orange/orange_4,3-eggplant/eggplant_4,2-eggplant/eggplant_3,4-cabbage/cabbage_2,4-cabbage/cabbage_3,2-eggplant/eggplant_4,2-orange/orange_2,3-triangle/triangle_4,0-eggplant/eggplant_4,0-banana/banana_4,1-eggplant/eggplant_4,0-orange/orange_4,0-orange/orange_2,0-orange/orange_3,3-banana/banana_4,2-orange/orange_3,4-cuboid/cuboid_1,2-lemon/lemon_4,3-orange/orange_4,2-carrot/carrot_1,2-carrot/carrot_2,2-carrot/carrot_3,1-orange/orange_2,2-cuboid/cuboid_2,3-arch/arch_2,4-arch/arch_4,4-cylinder/cylinder_1,4-cylinder/cylinder_3,1-banana/banana_2,1-banana/banana_1,1-banana/banana_4,3-plum/plum_4,3-plum/plum_2,3-plum/plum_1,4-triangle/triangle_4,1-potato/potato_3,2-cuboid/cuboid_3,1-corn/corn_1,4-triangle/triangle_1,1-corn/corn_3,1-corn/corn_2,0-lime/lime_2,0-lime/lime_1,3-carrot/carrot_1,0-lime/lime_4,3-carrot/carrot_2,0-arch/arch_4,2-lime/lime_4,3-lime/lime_4,3-lime/lime_1,2-lime/lime_1,4-corn/corn_2,4-corn/corn_3,1-cube/cube_3,0-potato/potato_3,1-cube/cube_1,1-potato/potato_4,5-cuboid/cuboid_3,0-potato/potato_4,1-cube/cube_4,4-semicylinder/semicylinder_2,2-semicylinder/semicylinder_1,1-lime/lime_2,1-lime/lime_1,1-lime/lime_4,2-arch/arch_4,2-arch/arch_2,2-arch/arch_1,1-cuboid/cuboid_1,4-cube/cube_4,4-cube/cube_3,3-semicylinder/semicylinder_4,3-corn/corn_3,3-corn/corn_2,3-corn/corn_1,2-tomato/tomato_4,2-tomato/tomato_2,0-banana/banana_1,2-potato/potato_4,3-cube/cube_4,1-orange/orange_4,0-eggplant/eggplant_1,3-cube/cube_1,4-triangle/triangle_2,3-cube/cube_3,2-potato/potato_3,5-lime/lime_1,2-tomato/tomato_3,2-eggplant/eggplant_1,2-triangle/triangle_2,2-triangle/triangle_1,2-triangle/triangle_4,1-semicylinder/semicylinder_1,3-tomato/tomato_2,1-orange/orange_3,2-potato/potato_2,4-lime/lime_4,5-corn/corn_2,4-lime/lime_1,1-eggplant/eggplant_1,1-eggplant/eggplant_3,1-semicylinder/semicylinder_2,0-cabbage/cabbage_1,0-cabbage/cabbage_2,0-cabbage/cabbage_3,3-cylinder/cylinder_3,3-cylinder/cylinder_1,3-cylinder/cylinder_4,0-carrot/carrot_2,0-carrot/carrot_3,2-semicylinder/semicylinder_4,0-carrot/carrot_1,2-semicylinder/semicylinder_2,5-cabbage/cabbage_3,0-arch/arch_2,3-tomato/tomato_4,2-cylinder/cylinder_3,2-cylinder/cylinder_1,3-cabbage/cabbage_3,3-cabbage/cabbage_2,3-cabbage/cabbage_1,1-cuboid/cuboid_2,3-potato/potato_4,3-potato/potato_3,3-potato/potato_2,4-arch/arch_2,4-eggplant/eggplant_1,4-eggplant/eggplant_3 -,,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,nan,plum,nan,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,nan,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan -,rgb,0.9197843405107724,3.2671996971468833e-07,0.9996519618000423,0.9999999999778837,0.999976636489004,4.866256978822364e-09,0.9998771083569089,3.4328275385177956e-08,4.38922685231895e-08,1.4367885944932786e-07,0.8985275582260227,0.9931678076308705,0.9887115553887379,6.105032151046272e-07,0.9999999999786038,0.9998921478147993,0.9912313498753343,0.9902343992665472,0.9884000995468806,0.0013650219218279574,0.9354718080130666,0.9989365658537517,6.279326585017371e-09,0.9999706340803838,1.2997655205843192e-08,0.9999863873665901,0.8699958869473564,1.7861023401329863e-08,0.9997442118042256,9.96660720617803e-05,4.959883791849026e-09,0.9997841889320329,7.941436671211049e-09,1.6808547485212414e-05,0.9999999232518025,0.999905921991823,0.005000242920024676,0.9898895113366883,3.658052517737408e-08,3.200810299686419e-08,0.9999999998763067,0.00032165351652572625,6.069434326194198e-09,0.0003368222518724985,0.9999440808819252,0.9964316985003278,0.9996893517075496,0.9996510969951878,0.9998717338232205,1.7005794534599616e-05,5.141362488779851e-09,0.999999999902587,6.969664427392164e-08,1.6919412349154283e-08,0.9999192782872267,1.988357574554132e-08,0.0003732588458696003,0.0008968782295419933,0.991447322351018,0.9809397196745845,0.9052638284027709,0.9293261226997916,0.9998007158432821,0.0007981031072956237,0.00025480324305886867,0.999790793746097,0.9999781667225978,9.994552976079663e-08,4.261082241710677e-08,3.727183461372389e-08,1.2516143406281986e-08,0.9999999999495168,0.999999999837385,1.397053130313199e-07,3.6230006604083155e-08,0.00025584350864238023,0.9999880130497761,0.9998904641767322,0.9993546940361762,0.0016479294331611443,0.8698721145171363,0.0004659489439977536,0.04200916495864741,0.0046783061316920905,3.5880757244225566e-08,0.11160063827447421,0.9997995944601858,0.9948906014461724,0.7537535505454276,0.8472754463404633,4.004406557927166e-08,0.999429503698801,0.00014718108380282538,0.0016590294767533198,0.0025275197570284675,0.004122914090645723,0.9998008889245137,0.004851263454394796,0.00039986898419571055,0.0038258974505600415,0.00932533337671132,0.9999441169997647,3.679787496458613e-08,0.9999999999525362,0.014824724932375497,4.692733779106499e-09,0.9999635278728334,0.9999613470836435,0.9999857253297048,4.2593393137043584e-08,0.9999270649762496,0.9999999999381648,0.99999999997755,0.9884252494993143,0.957625075057255,0.9118768562340418,1.7432516448136374e-06,0.44008236518442384,0.9944583024241845,0.9997861282680078,0.9998240874722304,0.784401060831792,6.3342363134168785e-06,0.9999999998936122,0.9761570064448138,1.09992959983828e-06,0.8086761123997916,1.2517483294763206e-06,0.00013854061768499315,0.00022162459168274386,0.0007825939605794032,4.1032604482096556e-05,4.403421070491428e-09,1.2916010158560713e-07,2.348885847491613e-06,0.9649154615733287,0.9842380914073039,0.9847693423568817,3.763762920363935e-05,0.00017167326886617583,0.99999992819364,0.9992459517312481,1.3317630267923799e-08,0.9999999997787716,0.00043797503470857424,0.004394851174097839,5.736219593469146e-05,0.999539366231537,0.999985695022607,0.9999186082802447,0.9999999998836988,0.001336025438924354,0.9998666354347079,0.8887477955160615,0.9999169301741879,0.9817141301752298,0.9891485121131794,1.109134742025622e-08,8.255373944042613e-08,0.978883450351606,2.661797137533299e-09,0.9825529846622337,0.9999932595191633,1.4082876194692746e-08,7.184519449177298e-09,3.533893213754585e-09,8.940865711954704e-09,0.9842021298752546,0.9788315334494176,0.9999999999490183,0.001642464298585948,5.175101729681959e-09,0.0003286252827931894,0.999850464594978,0.0013543717881737685,0.9998742394793696,0.9992333395252657,0.9999999999388907,1.2363442128987683e-09,1.017042430919046e-08,1.3051984892184872e-08,0.9999229997823599,0.9999999015411652,7.1385794960908654e-09,4.721997725544255e-09,0.999862036272527,0.9999999991910933,1.831124883829604e-07,0.9792585647191598,0.9895058330410771,0.8921266122899482,0.0003635932540434734,0.9265857950339849,0.007623170220464824,0.00015138472471975563,0.9998295115858673,2.0773409240570763e-06,0.9643005257587293,6.8115239175753195e-09,1.975672816771856e-08,0.9999999998530904,0.0015530418632513387,1.184832759425315e-08,0.814396478885384,0.5534762704392896,2.658464423614676e-08,0.9999238769277181,0.9999999999190763,0.999999999980524,0.919109199418158,0.000706418747553043,0.9821989813303352,1.5386987619116194e-08,0.9865549651452156,2.7463831713186728e-09,0.9112301534808783,0.9901963452155534,0.9996288385090729,0.9990106500654153,0.9998962678080163,0.9998297339621444,0.9999999997956548,1.3504013013433301e-08,0.0012139902036642216,0.9890690077284544,0.9903250366952163,3.256105902442962e-07,0.9788633029704212,0.999604722838261,0.9998226199958198,0.9999999746786001,0.02292930196914101,0.9999999998447333,3.2937051931188694e-08,0.9997669284104673,0.9771575465857927,0.9951051241075508,0.00029541248827156906,7.969057481471237e-05,0.0006648498479865712,0.9900782054380629,0.9999998902402115,0.7324184071195405,0.7517729995460937 -अच्छा,rgb,1.0,2.981866844674256e-07,0.9999997808673265,1.9122091756807303e-10,0.9999967667875195,0.9999999999994329,1.0,1.0,1.0,1.0,0.9999999924722655,0.9999998990153967,0.9999999511000279,9.244723763662506e-08,1.6593137697850034e-12,1.0,0.9999999999999727,0.9999999999999114,0.9999999999999778,0.9999999999985547,0.9999999999999998,1.0,0.9999999999998086,1.0,0.9999991195945777,0.999999999999982,1.0,0.9999995710730382,1.0,9.310819011464721e-07,0.9999999999994174,0.9999970133176185,0.9999999999996658,1.0,2.9983140339756747e-13,1.0,0.999999999996634,1.0,0.9999999999077875,0.9999999999995706,3.5554655909028114e-10,0.00011420214037548581,0.9999999999992124,7.223069416529944e-08,1.0,0.9999967464700774,0.9999949214510322,0.9999997954077858,1.0,0.9999999999999996,0.9999999999995235,3.41730132036874e-10,1.0,0.999999999999855,1.0,0.9999999999992188,0.9992655406442623,0.9993027255421736,0.9999999124437909,0.9999999719034042,0.9999999937013322,1.0,1.0,0.00038110348740814476,2.0968179790725163e-06,1.0,0.9999999999999998,1.0,1.0,1.0,0.9999999999997862,6.373523756698249e-10,6.8802756506689e-10,1.0,6.587255423359044e-05,0.0003126313890630569,0.9999999999999973,1.0,1.0,0.9994075106693748,1.0,0.9996520640652636,1.0,0.9996552767182155,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9990512892680282,0.9987249183013506,0.9994423189659704,0.999569741984324,1.0,0.9996616876339189,0.9995529987188034,0.9997323111370543,0.9998487141464474,1.0,0.9999999999996443,1.7517709713112688e-10,0.9997810979675019,0.9999999999993054,1.0,1.0,0.9999999999992029,0.9999999999997788,0.999999999999994,3.449948253257775e-10,3.575042867696956e-11,0.9999995123184189,0.9999999741796408,0.9999999840409088,1.0,0.9999999627922584,0.9999999058736224,0.9999999977637628,0.9999974986658177,0.9999999279953248,0.9999999999999993,1.3785466020231168e-09,0.9999995233452852,0.9999999970559663,0.9999999069467627,1.0,0.9999999999999982,1.0,0.9999999998200626,1.0,0.9999999999994451,1.0,1.0,0.9999999999999938,0.999999999999988,0.9999999999999754,0.9999999999999989,6.32970899720615e-07,6.380955014440724e-13,1.0,0.999999999999831,2.7066912422682848e-09,0.9999999999990967,0.9999999999946885,0.9999999986588006,1.0,0.9999999999999996,1.0,1.7634547260461022e-09,1.0,1.0,0.9999999929137016,1.0,0.9999999642376514,0.9999999063169501,0.9999562542253644,0.9997768039313312,0.9999999999999969,0.9999496950793447,0.9999999999999956,1.0,0.9999946670387145,0.9999985397508344,0.9999997277722785,0.9999996301839638,0.9999999401428805,0.9999999736725962,2.145121570122717e-10,0.9999999999999998,0.9999999999995195,1.0,1.0,0.9999999999999996,1.0,1.0,4.958843422521378e-12,0.9999833333687699,0.9999753144489183,0.9999914817740259,1.0,3.163149807157674e-13,0.9999999999997968,0.9999999999992986,1.0,6.94003474392898e-08,1.663379753603588e-06,0.9999999736115093,0.9999999226651177,0.9999999941408322,1.0,1.0,0.9999999999927804,1.0,1.0,1.0,0.9999998483907814,0.9999999999996052,0.9999999999999087,1.665790734473859e-09,1.0,0.9999999156085204,1.0,0.9999999571509331,0.9999999999998244,1.0,6.862164771037742e-10,3.3237157621673246e-12,1.0,1.0,1.0,0.999998991946574,0.9999999463056726,0.9999999369363923,0.9999999024595585,0.9999997518514129,1.0,0.9999992512928914,0.9999954590106336,0.9999885063159728,2.2167229926654614e-09,0.9999999999998301,0.000772841973761257,0.9999999999998836,0.9999999999998217,3.030638102097364e-07,0.9999999999999374,1.0,0.9999975460103623,5.500693034435823e-14,1.0,1.1097354162220066e-09,0.9999999999997395,0.999996396134678,0.9999995227289278,0.9999996651002419,5.12886482515693e-07,1.0,1.0,1.0,8.792442955747202e-13,0.9999999976265936,0.9999999924579458 -अनाज,rgb,3.1889558782474304e-33,4.150989425181496e-18,0.1204787442646456,2.2277063164905656e-46,0.00035789713382479335,3.6634737033528184e-10,8.700279309857459e-33,6.605656479484352e-14,1.3965535736690129e-12,3.3600129779750985e-12,0.9942815007981965,0.8784155442017945,0.9414484117511127,1.2183103434521755e-18,3.705663966247623e-52,1.0643408526931612e-50,0.9467078486273456,0.967011581811805,0.9531140356630748,0.9837301301858193,0.7657492649854334,5.8948451844918325e-06,3.6539286504043565e-10,8.791770192743091e-09,2.0602132949579278e-07,0.00432951969804417,2.469702335768594e-38,5.62141512007478e-07,2.156916824134104e-48,4.5591948603425544e-14,3.9843175336017404e-10,0.014389445079807075,1.234471121473606e-09,6.471900494156081e-11,1.4220069101030444e-41,7.6991931016295175e-50,0.9951093231021627,0.0037478770650624348,2.3912550986577387e-06,1.0925134016356854e-07,1.0534494294847718e-42,4.667065569641489e-10,9.702254058102521e-10,7.332664276725652e-16,5.859530547287595e-40,0.35062587057696853,0.017168478885514996,0.12470005700144184,9.179512201870836e-40,0.0007699026550175396,3.860340485409874e-10,3.78730381039178e-43,8.269186866742649e-13,7.0949879296262755e-09,3.228062062473639e-44,4.018494541561679e-08,0.1452259329331706,0.24466360728404635,0.9058080987122445,0.9696658782212763,0.9943173621202122,0.5234699438060881,1.5360615198454737e-53,5.357406814268032e-09,4.012890166367958e-13,4.114538257480354e-09,0.0008975440641016931,5.629604070020883e-13,1.1639331803028374e-13,6.717764188358252e-13,3.753500476563493e-09,1.4195613947316072e-43,1.6058475973807427e-41,3.606134440681692e-13,7.408020575923834e-16,2.0091358377907532e-09,0.0016307024196168085,1.4063692015233622e-08,2.681242699122526e-06,0.3435297808502785,7.943247733770397e-37,0.26161863335270724,0.001378563252538254,0.5625175866653229,1.4536999854654265e-13,0.00246970617854321,4.104346030428624e-49,0.002751355327364755,4.044766916692846e-28,9.756299007999334e-37,5.356950043204382e-14,1.8921031444870906e-56,0.06048006403877207,0.22048844324218833,0.40474657129602,0.5075348485997202,5.389029500616278e-47,0.5694579687384569,0.20768937193051393,0.5900004669417852,0.7508496615609567,5.860876716865065e-30,1.4358069878394383e-07,3.930595344562658e-45,0.720060768056644,3.7715967520320164e-10,4.200202880845343e-38,2.2775802911470576e-08,0.011440662070222408,1.5549962267684408e-07,0.03999332508766382,6.561523850900389e-44,2.640423245996623e-48,0.8473146917594857,0.9843378102068869,0.9920869685591434,8.543577541713629e-11,0.9965508008129084,0.8577658627709599,0.30544276022246347,0.011909194802116767,0.9922401276987598,0.00018429958269994832,1.8229637303246035e-41,0.9151369458084249,0.010808993738537373,0.9907352649246265,1.5536122733244617e-10,0.09311575665606042,4.414150977338408e-06,0.989191345233614,1.934660248234672e-09,2.574938944237625e-10,3.8655349646320396e-13,1.191648934772213e-10,0.9602609332980387,0.9517490760831171,0.9629850893229391,0.008481304087655957,3.302395557717791e-14,1.0117795276590163e-40,1.5880568094816218e-51,3.790036002443057e-09,1.5324649001296328e-39,0.9451579538952833,0.9952307498243426,0.8557608814584159,9.301583356225859e-07,0.0007813519450484079,2.7434928485507453e-09,4.729858002446493e-41,0.10845016277214647,1.1239128057679564e-48,0.9947009083673362,2.5376359239483103e-44,0.9656449647503577,0.9213558872538555,3.388831732112074e-08,1.8268089307701999e-06,0.9265610578108612,5.96182262704381e-10,0.9293671531026955,5.709584931367381e-49,1.5031593172786152e-07,3.576403727093274e-08,6.355129960682295e-09,8.858139747925692e-08,0.95251745459429,0.9728357582376567,8.887413848276469e-45,0.24787810389850992,3.970302833302758e-10,0.004112798269305715,4.186342554073314e-52,0.3762883893681321,6.119994391950865e-33,5.899556610477699e-57,6.4973891101478734e-49,9.131725913055022e-11,3.4863495795754514e-08,1.0386516590414895e-07,1.8829640375254082e-51,3.462969225257424e-41,5.869265760350249e-10,3.8790208966571996e-10,3.133548044117211e-42,3.27409473205732e-34,3.600415214477143e-17,0.9723540879866676,0.9251328560351172,0.9948760404907745,2.0262666714370023e-09,5.908477541348149e-34,0.9967863270079502,4.206694072450241e-05,3.980849838918982e-40,4.4552683291669825e-10,0.9635905351222471,8.496282719704422e-10,7.862934470992878e-09,9.989462163025766e-41,0.07392799632736868,2.355493306884748e-07,9.383677634453745e-38,0.9958615709745051,3.2751916487736124e-08,5.274177604707979e-44,1.0947608374737807e-42,1.865776220954639e-51,3.48673820876647e-36,2.013331643225152e-06,0.0019039260836060006,3.126517151684335e-07,0.9478146144096988,3.338998710947867e-09,0.9844548752415526,0.8702632897940951,1.0009926803424375e-55,0.22096392259342276,0.0035363616807170687,0.003977482682311292,6.98964584668566e-40,3.975998218134825e-09,1.9590993847258054e-08,0.9721573942758713,0.972837297369131,4.256325468634019e-18,0.9789898004360538,7.859971867852657e-56,0.012208089835252893,3.2339638166526754e-45,4.1775118333784316e-07,4.481836826598288e-41,8.310645456767677e-08,0.014245384719998387,0.9121756980581085,0.7404997735939145,3.162904325772066e-14,3.619954738059168e-06,0.0126683930374056,0.0001413177790178627,8.712445102912762e-40,0.9975988082660169,0.9966705873099247 -अमरुद,rgb,5.866163836938732e-11,0.9999995308016231,2.4053810788787e-07,9.668335236488687e-09,4.631262121874795e-08,0.9985339548014751,1.5606928838606556e-13,0.8219506844547115,0.8330384836042819,0.5038432239878216,1.7163008803621313e-05,2.802628252268161e-06,3.619268992946359e-06,0.9999994051673885,4.261719286283889e-08,3.30099697084637e-14,6.064143881837653e-08,9.089247167232011e-08,7.401048966202472e-08,0.005492726477452655,1.0099727758574345e-07,1.991088138927662e-10,0.9975255575848969,5.462070703618635e-12,0.999910716194603,1.6613524761611856e-10,6.304705688064093e-11,0.9998524768534519,8.210087322022525e-14,0.9998570936065528,0.9985165634256216,3.253208130088746e-07,0.9972975083898418,0.0027788883551231355,7.835035032850744e-05,3.0720580492583376e-14,0.002049203623473585,3.831080502645698e-09,0.9972046425921626,0.9902272604100804,3.4005268080489715e-08,0.9982082268690646,0.9983266729700003,0.9997958355548764,3.951038506989173e-14,4.091967104349576e-06,5.22002402052474e-07,2.365259200498648e-07,8.290470130202129e-14,0.039093981467015905,0.9983832435258339,2.8130103101497107e-08,0.7012298112512778,0.9930497906031184,3.8865815142319796e-14,0.994692234750779,0.8122492908248348,0.6535860438531623,3.3023348966532027e-06,5.017035239918116e-06,1.5257982410926331e-05,7.69521734055328e-08,4.9209077097471857e-14,0.9940710782534701,0.9995631433462532,1.9092816813025732e-11,7.346943952573843e-11,0.5703801823390372,0.7845815986119008,0.8507160942824933,0.9952928106811141,1.3267217763928404e-08,3.484307554839685e-08,0.43848275319048785,0.9999997086436895,0.9980468834915793,9.09106132947409e-11,1.4368279401143317e-11,1.2029552353429237e-10,0.506013995313347,7.135812492622522e-11,0.7403406480340918,3.716075918981408e-06,0.25034873312547307,0.8284312448232387,1.3992436562344895e-06,6.310593164936415e-14,2.127111299004417e-09,3.556735389398848e-10,8.610018791060002e-11,0.7819727361036739,1.1203749962922007e-13,0.9171577235391367,0.5583538337493302,0.40375012431253154,0.28557174617173126,7.158022838644165e-14,0.24310398496630348,0.7791306771528288,0.2726236310972694,0.12244309227202642,1.1044112323850161e-13,0.988285655071465,1.891562419145965e-08,0.09130878951523938,0.9986559408143002,3.2237602328891024e-14,7.651924634840402e-12,4.70936990184577e-10,0.9848191814272135,5.567357560198982e-10,1.90992317513644e-08,1.6650904963708236e-08,6.990857446459236e-06,1.03023119937558e-05,1.8302839996837338e-05,0.04939108748828173,0.0002401408817926095,2.2748649877182803e-06,4.415366391520954e-08,2.581139661213029e-07,7.139640165561901e-05,0.10529360967913837,1.956070194043712e-08,1.3467795977093662e-05,0.9715331459551945,6.686771409869048e-05,0.0805498819023365,0.008331652535011867,0.0005461645287530846,0.03215856732427444,0.0014122883484211362,0.9986629705142707,0.46793304628782717,0.035375881569848035,1.4743815848010539e-07,8.373349398647879e-08,9.767878090245616e-08,0.024376892337169304,0.9997890777647443,5.8100889945346145e-05,1.8359192060910006e-13,0.9946957911924222,2.946355310759212e-08,0.013942571629149872,0.0026049472137675083,0.39643514136165353,7.860783797838556e-11,6.368405428844481e-11,9.111125302158972e-12,1.9528421519031538e-08,0.0004725425750410936,4.4987923664768693e-14,1.8533222734666804e-05,3.955696817047177e-14,5.160437209133057e-06,4.176609163630994e-06,0.9999737429474769,0.9998850467492858,7.774340555087112e-08,0.9999936501972201,7.094943410092278e-08,3.2418892013078537e-15,0.9999410079529916,0.9999561421835443,0.9999652347273168,0.9999213013106046,5.200030312384805e-06,5.427609315421588e-06,1.884811359693814e-08,0.00047944519603916304,0.9983762475749163,0.0011923544578698205,4.0928301184599907e-14,0.0007237587263213272,1.5659929547117008e-13,1.4395882615287336e-13,7.25949488885741e-08,0.9999959167214844,0.9999717197709277,0.9999517880429202,2.3422145582755612e-14,9.548483185633242e-05,0.9972375814669485,0.9986511319494229,7.239692417044919e-14,3.243317749620433e-08,0.9999995452198663,5.330081798977999e-06,3.842650742820944e-06,1.7052413101514244e-05,0.00010698809957940028,4.994671421234016e-11,0.0016910835784814057,0.0012650748991950608,1.033197348182539e-13,0.049070609266729494,1.4274959593019888e-05,0.9977690375247448,0.9909354744283557,2.4231623969457836e-08,0.00035412881363817565,0.9998459827666719,9.943914794191267e-11,0.00016481088476326636,0.9897604796974047,3.749352952586255e-14,1.9313624655679545e-08,3.151825538821037e-08,4.5227998220389165e-11,0.00012353209676165816,5.2209480958814546e-09,0.9998987204976574,4.355169343402702e-06,0.9999596638817299,3.030982255156981e-05,4.984769028619545e-06,7.80099204824939e-14,8.599399325288044e-07,1.907737677922989e-07,3.844819530295575e-07,2.931708220169185e-08,0.9946306744774378,0.9892710757643169,1.0819107820064003e-07,1.0823662332554308e-07,0.9999995300115361,1.6848055877030714e-07,8.224084920759978e-14,2.5864198668590144e-07,5.2027133946947374e-05,2.0905590752946474e-06,2.8839580919076134e-08,0.988607879461782,3.6717465065294017e-07,1.2949965083956912e-05,2.8891766669886963e-06,0.9996723394593214,0.0018429335630150312,0.0006434323692993779,1.9716342555270515e-09,7.564363520763406e-05,3.6384533379947356e-05,4.5462395267959246e-05 -अर्ध,rgb,0.006483313450238158,0.9999999993097652,1.5984296524640437e-13,0.9985525221372055,1.9796733421055026e-13,0.9989958413008405,2.5842723804914283e-06,0.9949651077715508,0.9820618778789595,0.8582035038305863,2.1584341349255273e-12,6.919318442206416e-13,7.221741616792547e-13,0.9999999993891333,0.9999987019985962,0.9552644540946665,1.349543069976375e-14,1.6498766910127368e-14,1.6632997200759784e-14,8.827531464559333e-09,7.856434500757615e-14,1.8492830209341508e-14,0.9982347012059182,3.601486746759912e-15,0.998648272891935,2.890487774582652e-16,0.5394219287559676,0.9963830356634821,0.871594133738199,0.9999621603520522,0.9989424218728699,4.805233881326388e-13,0.9965812873922941,0.0017687272575219412,0.9999966626930913,0.8927738553082468,1.4503670780521467e-09,3.678629949619055e-14,0.8833756222498184,0.897998776048645,0.990264501219253,0.9724639109535415,0.9981762559610319,0.9999870702070738,0.0006096409662045336,2.476535550517898e-12,7.699346016438057e-13,1.5483712085925652e-13,0.0012758063439825117,2.279007239259436e-05,0.9988566916073093,0.9919149342119653,0.9672002596821342,0.9787696850689447,0.04023199422236022,0.9647772867403815,8.243286396077026e-05,2.250325646003349e-05,7.619782282718156e-13,8.511928651006865e-13,1.886117844432651e-12,9.892997768439994e-14,0.9982940989703439,0.7590545504318872,0.9996467568977572,2.779600678472108e-14,2.961883536667991e-16,0.9482723999953608,0.9915353773818707,0.9888227020713298,0.9895786323601311,0.9870435735065993,0.972585832124676,0.9243514894508176,0.9999999978482075,0.949236642481676,2.3870891852515964e-16,1.0579471780403149e-14,1.3964618597150486e-14,8.723804010767102e-06,0.2329866293792901,3.8325076030636536e-05,3.117608819498528e-10,1.5508043013873053e-06,0.9931951743246976,7.243180837355008e-11,0.9089218793537364,1.9905135501024452e-14,0.00035914806104777447,0.2592983876037043,0.9939030583531161,0.9999653585793409,0.00038998453035200733,1.37807338362386e-05,4.693778320808466e-06,2.0899761473777757e-06,0.5881772620842602,1.4622089718552644e-06,5.552234545824417e-05,1.7432979271891684e-06,3.9167599735911604e-07,9.569613686547507e-08,0.8639108226576401,0.9979082416599452,2.699244620844806e-07,0.999072934860638,7.355317704739682e-05,3.5726930596936e-15,5.187538153326191e-16,0.8213914914671973,5.533519107487395e-16,0.9936918690187735,0.9998675748390111,2.1250661744538215e-12,1.5834287382715734e-12,2.5235460834991736e-12,0.04461853001845998,4.106763995230034e-11,5.78646202061823e-13,1.718576681667693e-14,3.957981358974195e-13,1.2082507266213044e-11,0.00014936916769788002,0.9454620529421264,3.6508990096030155e-12,0.009095245944888709,1.1753878898613157e-11,0.06113113935538939,3.6453281107668674e-07,1.6933485217547096e-06,4.7126150421211786e-08,0.00017366827590537188,0.9992284255590823,0.9313501863408076,0.026187166566252914,4.046960272677997e-14,2.0618122414908122e-14,2.1016704615950542e-14,4.177838644498626e-06,0.9999446005431524,0.9999896641270899,0.9975814926930803,0.9880945094198731,0.8275121813155092,4.988689452434497e-08,1.8667936671040344e-09,5.162137046349034e-06,1.3316057530719418e-14,2.4430229548752065e-16,1.2645666068287398e-14,0.9222047989384037,1.1975662386532137e-08,0.8089018710741114,2.3115466410178584e-12,0.04540025406473625,9.123866160014095e-13,9.350514521841375e-13,0.9998101555873643,0.9928698235514519,2.5193486835508944e-14,0.9999939238048733,2.1518934933014168e-14,0.17108983548915538,0.9991823610843877,0.9997199429901246,0.9999108351075948,0.9992418058554442,1.0174220632796415e-12,8.999970983474857e-13,0.9970969078171837,7.527633671469067e-09,0.998836232483704,1.7661656625455692e-07,0.9911800130071939,9.077560638878874e-09,3.0273039820441288e-06,0.9999846022342265,0.9999861819833195,0.9999985328521759,0.9997987374232709,0.99943394442687,0.9669546426490764,0.9999962344129837,0.9975218406605585,0.9990570938231472,0.012488265540346842,0.04022561926598983,0.9999999985753469,8.863984016381068e-13,8.37109754598994e-13,2.0862429693987856e-12,8.142761672014627e-06,0.011009519746751878,9.004586668642935e-10,1.6058260718258116e-06,0.0024154429617548106,0.021529404248843156,2.9585151436907884e-12,0.9976638231778857,0.970449128819673,0.9187076952138857,1.0449598369016258e-08,0.9976664218415274,0.5351056389247298,2.7422676338473315e-11,0.9364771152375364,0.0313822255944554,0.9811905831755862,0.9999964915328307,0.08366027041331343,4.2058144151155645e-07,7.68854999652651e-14,0.9980984111143186,8.578411880768746e-13,0.9999270416259973,5.439320223510293e-12,1.3602788297194629e-12,0.999889003094765,5.224207848473944e-13,4.3127857050531335e-13,9.121212533913473e-13,0.8668511293583464,0.9876675965266715,0.4796841554656326,1.8642010236684557e-14,1.7836143863361443e-14,0.9999999993019566,3.015065797897644e-14,0.999906301326597,3.932764129752585e-13,0.9999998077191091,6.59795704117307e-09,0.9499567298531469,0.89438789451752,5.526837367684803e-13,3.5314479540368824e-12,9.618316936231089e-13,0.9999042220172096,7.712692494759628e-06,5.026836799225868e-08,7.814315798935004e-14,0.9999821931566738,4.196033291284262e-12,5.78695277287083e-12 -आकर,rgb,0.9996990178451622,1.0,0.021498027792518998,1.0,0.7139337145094822,0.999658340932087,0.9971994259894965,0.9912954181559707,0.9736081607401492,0.822713651320289,0.00013975029897866537,0.0025275919208513297,0.001102216052159812,1.0,1.0,0.9999999999971332,8.576480837337496e-08,1.3793750801234796e-07,7.425505319630831e-08,1.2766030824951003e-05,1.494142904622721e-08,3.197081486616113e-08,0.9992591216273423,2.524319655902431e-07,0.999997608389699,1.9769804462187936e-06,0.9999992830023305,0.9999921421872164,0.999999999962,1.0,0.9996440554341051,0.299930207416961,0.9988104246643885,0.005168356843186419,1.0,0.999999999991634,7.098737115507491e-06,1.1636284330279838e-08,0.9943189987053672,0.9751856695949676,1.0,0.9999999999997011,0.9994564020590705,1.0,0.9999989507890994,0.09316836978674795,0.37433015478438686,0.020102152373714093,0.999998866991095,0.00024563868360514207,0.9995984849061897,1.0,0.9519036994734444,0.9924145411548907,0.9999999929713008,0.9920381343185541,0.9969721941577677,0.9939851154168313,0.002052130565967815,0.00058021452518447,0.00012136534793473841,1.2148639467927919e-08,0.999999999999923,0.9999999999960607,0.9999999999999998,1.82140744933616e-07,2.773906826695005e-07,0.9261940267003231,0.9858984947696987,0.9827533982961477,0.9963624491891804,1.0,1.0,0.8961144133258603,1.0,0.9999999999986484,1.044059481831364e-06,1.557118660788789e-07,3.946305005798794e-08,0.989298635453754,0.9999959162515006,0.9917214009989191,1.1700367951554654e-07,0.9648288516643851,0.9886435175349919,5.988681768983048e-08,0.9999999999830864,1.271638043669938e-08,0.9533103547729971,0.9999958044293128,0.9894945639130921,0.9999999999999984,0.9989300586936263,0.9955487709807662,0.9852360315830583,0.9741938122549085,0.9999999997843649,0.96343424168957,0.9944130129723914,0.9582711752711554,0.885302877792777,0.9393939498623326,0.965688919647538,1.0,0.9046664435034092,0.9996979363469146,0.9999907847960214,1.9180415670976459e-07,1.2642356979017461e-05,0.9496809278595197,3.801190246873733e-07,1.0,1.0,0.00956150414854708,0.0004526699328128699,0.0002674485986405268,0.06131790328963563,0.000566913104325152,0.002549864616398595,0.00046960806096227147,0.2891630086225902,0.0009421582465266437,0.0010985704895454613,1.0,0.007642673507618889,0.7551345147046978,0.0011932826703103334,0.07899995012231978,1.7725709686720923e-05,2.1582457558386048e-05,0.0002620870497897476,0.0007700530492129035,0.9997303547886078,0.9046353182387449,0.03955389563890266,3.985413224424277e-08,5.582772866690801e-08,7.370451146467052e-08,8.553731312697712e-05,1.0,1.0,0.999999999999363,0.9956654009190886,1.0,2.8691093863065232e-05,9.740254972872326e-06,0.011231669291101722,5.039402992841366e-08,4.827164647157826e-07,2.397723291469597e-07,1.0,1.221040506032566e-06,0.9999999999684974,0.00013183112304514968,0.999999993818321,0.0007269037240729196,0.002026282116909471,0.9999999417538509,0.9999995569217521,3.406230143929204e-08,0.9999999972273537,3.8821308016575865e-08,0.9999999999618885,0.9999993759326373,0.9999995176192662,0.9999996062408582,0.9999977848970616,0.0012033097204159774,0.0005337334274428523,1.0,1.051384390490935e-06,0.9995927071673937,5.531515342071179e-06,0.9999999999995199,1.3753869857124247e-06,0.997636282669706,0.9999999999999993,1.0,0.9999999986031216,0.9999999161684964,0.9999996429194455,0.9999999999987605,1.0,0.9990030741633121,0.9996939522610724,0.9999999354318692,1.0,1.0,0.0005374876402250187,0.0017143215859058679,0.00011297760039976063,9.900584335405153e-05,0.9998628418894376,7.909725699965852e-06,2.1019409156760403e-05,0.999999293510023,0.03308727251081633,0.002334805020590249,0.9991922255633668,0.9886334863790159,1.0,1.041016735399945e-06,0.9999884145938623,0.9999988205998404,0.0006127983452057968,0.9802541254474753,0.9999999908694087,1.0,1.0,0.9999894919762404,8.835077709872157e-06,1.2083425596344455e-08,0.9999970099240432,0.0011401020068591262,0.9999993699578001,0.0013316982583660426,0.005243997524919197,0.9999999999999956,0.03972499867001916,0.5272384239228031,0.6849703670362888,1.0,0.9955299545423925,0.9999999999840945,1.5222085894396685e-07,1.905995260544931e-07,1.0,1.0266566196336116e-07,0.9999999999999962,0.2838754516826272,1.0,1.0082061615035e-06,1.0,0.9710288373408065,0.3323288444192408,0.007734997918453903,0.008926416804078153,1.0,6.374895176656015e-05,2.4974550617773625e-06,1.6597705533893823e-08,1.0,5.323408567322668e-05,0.00013456159943341258 -आकार,rgb,0.9996105993563977,1.0,0.025744807666056038,1.0,0.6970002442122948,0.9988912023445546,0.9973494782351404,0.9807833706896288,0.9465535583837952,0.7279820800943825,0.0002082133733775364,0.0032656733465205286,0.0014948505355545279,1.0,1.0,0.9999999999901548,2.4822926846115045e-07,3.8185308310549563e-07,2.1580190891515472e-07,1.9159504469420705e-05,4.820761628597541e-08,1.192292736585311e-07,0.9977535968107577,9.138832525636292e-07,0.999988084627667,5.519069217472556e-06,0.9999986284457345,0.9999643272619592,0.9999999998866558,0.9999999999999993,0.9988482820182327,0.2953380891485718,0.9965107680520361,0.005535945342271898,1.0,0.9999999999732432,1.136679078107915e-05,4.233317537031435e-08,0.9849252606034299,0.9441884984134107,1.0,0.999999999995991,0.9982944939120098,1.0,0.9999984139509079,0.09308357826893188,0.36083245009223575,0.024199233121735907,0.9999982597470827,0.00029164497689164606,0.9987147059899458,1.0,0.910164709885746,0.9810151021749048,0.9999999853410517,0.9799369929541525,0.9923638050432743,0.9858850343966161,0.002676173551133246,0.0008138602815548029,0.00018315949043831318,4.013791890166871e-08,0.9999999999996623,0.9999999999569045,0.9999999999999944,6.525117765217763e-07,9.083003489778616e-07,0.8707377965752503,0.9702105744768624,0.96363357332972,0.9902811886874014,1.0,1.0,0.8283013713665203,0.9999999999999998,0.9999999999836333,3.1011818288486815e-06,5.668634742665058e-07,1.473160330915481e-07,0.9763596197084184,0.9999929913293868,0.9808300694558255,3.017765370673381e-07,0.9319999437166638,0.9753856420645618,1.6587838088994718e-07,0.999999999947242,4.675902343299929e-08,0.9540743192070017,0.9999927726738218,0.977312700358564,0.9999999999999909,0.9970246934473078,0.989434230138871,0.9685685287063599,0.9483785640732322,0.9999999994271973,0.9296454988037887,0.9865964257441916,0.9204728207851317,0.8113049479601057,0.9528711408081267,0.9256543898206322,1.0,0.8402742154950997,0.9990089305594958,0.9999879553186309,6.997107932856958e-07,3.0161294663825026e-05,0.8962709649947815,1.1437535771918854e-06,1.0,1.0,0.010994828984329883,0.0006323935866846029,0.00038075793921558775,0.051523796470426,0.0007133243429235206,0.0033124457957243256,0.0007672359142459663,0.2867616044732782,0.0011855427319351019,0.0011469600261107564,1.0,0.008757379151278227,0.6139884163406943,0.0014806048837768576,0.06449460367918314,2.6042340752299135e-05,3.4393415117371014e-05,0.00030441953147621287,0.0009509576202568713,0.9991088946344692,0.8400769829772946,0.034430742770640066,1.1854945263161445e-07,1.6488883309724186e-07,2.1258419192230516e-07,0.00011008621106209181,0.9999999999999993,1.0,0.9999999999974689,0.98860578051317,1.0,3.9807138681116124e-05,1.5162336243082182e-05,0.009363487714455316,1.8756899516168865e-07,1.5283674042213504e-06,8.609568140377754e-07,1.0,2.3291744095654935e-06,0.9999999999065019,0.00019675473129050536,0.9999999869939935,0.0010034807884852612,0.002626831181883183,0.9999996146793843,0.9999975297555989,1.0435824989130728e-07,0.9999999767121764,1.181676353813023e-07,0.999999999896249,0.9999965554340761,0.9999972759017806,0.9999977386718578,0.9999888862215005,0.001605457198136098,0.0007511658760731653,1.0,2.0213450377593975e-06,0.998697578972262,9.341438997843483e-06,0.9999999999981386,2.564011454354647e-06,0.9977382873775932,0.9999999999999953,1.0,0.9999999876018045,0.9999994601041019,0.9999979426768106,0.99999999999555,1.0,0.9970454364237488,0.9989968075311847,0.9999998811950986,1.0,1.0,0.0007564889789587235,0.0022530055083807747,0.00017078104868026599,0.0001509578252840853,0.9998142041471054,1.2628146674510985e-05,3.2647005220784255e-05,0.999998874389316,0.02879566015399755,0.0028938045046658775,0.9975544991480316,0.9726600128095093,1.0,2.0251277084692453e-06,0.9999489289906364,0.9999977860377729,0.0007751919536953161,0.9547708065388261,0.9999999812946853,1.0,1.0,0.9999832534889341,1.561081326785598e-05,4.353499098798433e-08,0.9999853669031672,0.0015344912844522107,0.9999965146292509,0.0016775786462451215,0.006342619404097512,0.9999999999999765,0.04393358814072914,0.5098020232952303,0.6551737609646593,1.0,0.9882796010580673,0.9999999998439753,4.164324981365547e-07,5.134531301756798e-07,1.0,2.8487398027595986e-07,0.9999999999999796,0.2818364131057416,1.0,2.317330475713835e-06,1.0,0.936126275121232,0.3244998286255651,0.008865881543672752,0.010577530683132521,0.9999999999999996,9.128943057651337e-05,4.518690948182841e-06,6.040951836479075e-08,1.0,8.28488680478684e-05,0.0001954994564743569 -आयताकार,rgb,0.8061472121964252,0.9999109906645924,1.4486963776269793e-07,0.9999971699957706,3.785126395049383e-07,0.5414123847996477,0.16185611276100248,0.5767164796584192,0.3685147781183621,0.17612653542554849,1.3345504314652447e-07,1.4446913555444226e-07,1.2892574962376802e-07,0.9999304681031531,0.9999999706734302,0.9999321296536083,1.7988494656511455e-08,1.8837322582241235e-08,1.8983429901758217e-08,2.676258223108875e-06,3.703300141968068e-08,9.173426442804357e-08,0.479804987398537,1.12387086216876e-07,0.4163696915433619,1.2680921178234478e-08,0.9924183037286195,0.29610303644720964,0.9997930647946087,0.9809444262250848,0.5339841617192934,3.2126076847668784e-07,0.3834233396840911,0.005619837946882687,0.9999989733562971,0.9998753373243391,1.1847888243344916e-06,5.6508308179242486e-08,0.06412279726844605,0.08448285650418047,0.9999816346854195,0.5160564763562687,0.4554980323919315,0.9931610118433707,0.9244112805266679,3.686809424247678e-07,3.809325540025715e-07,1.4208586999249507e-07,0.9382352021239231,0.00017782762630459673,0.5261258234893926,0.9999850897627293,0.32259076685288857,0.19321663067053127,0.9952373428273988,0.14146842368605472,0.00034638515305195473,0.00019465367457622914,1.4354122928839025e-07,1.2293861753082642e-07,1.2602593995649802e-07,4.464947341891616e-08,0.99999156991498,0.22976405499215927,0.9418066951451841,2.5101934860185375e-07,1.3570404528690429e-08,0.2893106734772594,0.5083604523734462,0.4344165716350396,0.25732635317834845,0.9999840385785701,0.9999598878379202,0.26512545832361817,0.9996760248831311,0.40081343112287726,1.2665389056091267e-08,1.5404828945847571e-07,9.10375962080803e-08,0.00012715433658298908,0.980642612776176,0.00022985619520755999,1.8957129389428091e-06,5.7863589920517e-05,0.5254300184772316,1.0121890534052305e-06,0.99985537841655,4.6944942293555834e-08,0.24242566427477047,0.9811745145428848,0.5624648033111862,0.9999991801594326,0.0007133457480459564,0.00016801022000235426,9.705302294167947e-05,6.715357263782663e-05,0.9994385831881598,5.634984206216403e-05,0.0002773121702643676,5.9088230584805895e-05,2.997119389739668e-05,0.024227116791042586,0.07252749270433981,0.999995242939279,2.6924699648426768e-05,0.5495096842269157,0.7629372505321268,9.988395413346238e-08,1.5648182646841462e-08,0.06323372537249981,1.1570098797309925e-08,0.9999892579307617,0.9999993970924093,2.4002300151560657e-07,1.4150257487998132e-07,1.5143869300072684e-07,0.020231312655223745,3.976218748891334e-07,1.3805630993941098e-07,4.6282513362188766e-08,3.046626369809987e-07,2.856969303422031e-07,0.00044351471958893666,0.9999453885155327,2.690661262136348e-07,0.001978782717903686,2.91953000631304e-07,0.02172012710612108,2.055192726199557e-05,0.00010437678124935027,5.5458464523079895e-06,0.0015320751867753438,0.57729323167445,0.2721650636859229,0.015666130157396745,2.488255670474414e-08,2.027011440831781e-08,2.012786907065535e-08,7.044463911366598e-05,0.9792255059742058,0.99999790857187,0.9999825144416834,0.246129349478257,0.9998364794500898,5.982682140954638e-06,1.317464422411115e-06,4.9889891952128005e-05,1.0135526311013551e-07,1.3233405024797388e-08,1.9980194974179281e-07,0.9999278718921059,5.053876395799064e-06,0.9997729891965453,1.3528784058442363e-07,0.9955935817453989,1.293696229086061e-07,1.513272178526997e-07,0.6828520520485047,0.2533322642776692,2.224164819650477e-08,0.9312685234531264,2.1061865473887402e-08,0.9993610312317823,0.48779302395595453,0.6236576983530991,0.752716833418127,0.49131075312942013,1.4332699168728978e-07,1.233987950774789e-07,0.9999939582309871,3.8142752945955197e-06,0.5235886141913871,2.0790601276200114e-05,0.9999760104185371,3.8873682962184045e-06,0.1764148985551445,0.9999994802908573,0.9999997994640655,0.9663186238743589,0.6732487928039311,0.5384067051899881,0.9999517902588999,0.9999987879605043,0.43286849904878283,0.547077691003565,0.9866868412652637,0.9944708580646792,0.9998352179145854,1.2299928747336535e-07,1.4324790356302363e-07,1.2879759738108018e-07,0.00044968217461939264,0.8628298678205705,9.590264902747394e-07,8.066451172424184e-05,0.9554783552611681,0.012592353868355718,2.1260625536877069e-07,0.431402942681364,0.17003892627377323,0.9999190004050649,4.9843272615891965e-06,0.34612530360703886,0.9909927460105179,3.5157645351542037e-07,0.11339741184047188,0.9944193309027752,0.999975763607947,0.9999999459067686,0.9638058106981036,6.514335890208657e-05,7.946647852079833e-08,0.37337937831532414,1.357388863732029e-07,0.7734750564487808,2.3464294636656543e-07,1.9364080703219662e-07,0.9999984243826548,2.1346320706209484e-07,3.775807429008492e-07,5.07498093474267e-07,0.9998695653331007,0.2424999820933272,0.1337973485042309,1.943604212165999e-08,1.9310643579247923e-08,0.9999102670885336,2.19729904222295e-08,0.9999985671027736,3.0272969065247774e-07,0.9999998916174953,1.5123731402181632e-05,0.9999408951336334,0.0849491464701508,3.4112650813731036e-07,2.6706502341655346e-07,1.9233727286367634e-07,0.9748994122219885,0.00019594913902994422,1.1201920938122415e-05,1.0692371754858051e-07,0.999996543310888,1.47063606847242e-07,1.799063411076296e-07 -आर्च,rgb,0.9999994944769319,0.9998745227909583,0.006041261109301511,0.9999999999999678,0.04940921603669549,0.49864788001771265,0.9999993796024281,0.8730088049693684,0.7387822726921833,0.6558784884024376,0.00044064922906895693,0.0015326310568868483,0.00111775025802164,0.9999228508428473,0.9999999999999998,0.9999999999981979,0.0003973074519192716,0.00036634049875785895,0.0003732555068781957,0.0003015771445452864,0.0004622350273266313,0.017269969805289713,0.4807668590790577,0.11915552911239964,0.26119862841253333,0.006150455988936627,0.9999999865483202,0.19627530481813485,0.9999999999904206,0.9974744944080028,0.49240694320858774,0.014908158780868217,0.3946332137925316,0.3474667148604466,0.9999999999991818,0.9999999999966711,0.00022018646612681725,0.0027410470210609893,0.07887275799382745,0.13722078281794545,0.9999999999994704,0.9356624088577972,0.4270534868222483,0.999451679019151,0.9999999961961457,0.004542242628428235,0.014532800090302512,0.005937026554838928,0.9999999955379364,0.005997740409547848,0.4915692664386441,0.9999999999996216,0.7552022560549195,0.261066133368973,0.9999999998148463,0.18536962296217666,0.007958264005618615,0.006526384372233228,0.0013794252045910246,0.0008551698107804606,0.00043476584214679126,0.0005941576109124525,0.9999999999997633,0.8602534273836182,0.9946895781819215,0.12680384441631035,0.0072739439628169535,0.766990027878368,0.8507449030904369,0.7800178581313916,0.30749112660952227,0.9999999999997147,0.9999999999986582,0.7823352447812986,0.9989943812601092,0.8939863387104141,0.0074003347118332665,0.09701586148409273,0.021973965461051865,0.005578898265738038,0.9999999606987084,0.005987555594209808,0.0032202481957242578,0.004083148593558717,0.8455120379636909,0.002706514609127558,0.9999999999943103,0.0030868752809105724,0.9999814566749693,0.9999999581183021,0.8773509025635575,0.9999999999999705,0.010908994210031588,0.0071691262792204094,0.0051376556985452465,0.004444582519142378,0.999999999974059,0.004042969526698623,0.006697081758490366,0.0038583552569291554,0.002959475538561473,0.9999955840047812,0.12586628700875366,0.9999999999999183,0.0032163960633382767,0.49971521577571615,0.9999999859859843,0.0923850791796974,0.005844567127934008,0.11973405291614005,0.0026956459726097753,0.9999999999997864,0.9999999999999931,0.0018488492756803068,0.0006757494289350295,0.0005172247102517792,0.370853495598925,0.0004043731464088614,0.0016213271481540041,0.0030379533337516816,0.01569674913142056,0.0005627756592912459,0.009678660672115877,0.9999999999985412,0.0014748978548639645,0.007468931202511271,0.0006082449778580725,0.33933381461765433,0.0014318579807141134,0.019016316225332733,0.0003667499557127036,0.15947341163697554,0.5263599301225085,0.7804675869797154,0.343020817751217,0.0003176154373459554,0.00035973003576674124,0.00034597043992491927,0.0030117490027596608,0.9978008272718282,0.9999999999983762,0.9999999999989713,0.303523285033497,0.9999999999935374,0.0004307399655719554,0.00022506799140992222,0.000984026209838472,0.029755446462602145,0.008144630435461644,0.14746839142223536,0.9999999999979783,0.0011368167838779108,0.9999999999922762,0.0004274648849228751,0.9999999998280358,0.0009070890862328566,0.0012961344394034084,0.45362646415576,0.20888012751510435,0.0003771480004056238,0.7518585868177771,0.0003817256710750549,0.9999999999941902,0.3077007213522049,0.39003090333750245,0.49584828654685775,0.3030023024481226,0.001050581557139589,0.0008194266278814679,0.9999999999998919,0.000875973109527191,0.4894679877795373,0.0029712129374308365,0.999999999999339,0.0007664572026519459,0.9999994425342723,0.9999999999999793,0.9999999999999962,0.8356885675603443,0.4411727994473112,0.340775443540249,0.9999999999989571,0.9999999999989015,0.4442120823233405,0.49764174767039776,0.9999999992270776,0.9999999995657076,0.999713485963007,0.0008245904507649304,0.0012576849754229922,0.0004174475353441886,0.14205535895457785,0.9999996990543842,0.0002038955803325212,0.010586632171930122,0.9999999965290907,0.2667184166159974,0.0010133494706864915,0.42611986509855115,0.24903233226789365,0.9999999999974281,0.0012522348399081167,0.2230041757798742,0.9999999796778629,0.0004359655303426202,0.18025091934264575,0.9999999997847278,0.9999999999994418,0.9999999999999993,0.9999999380351171,0.022138847152969578,0.00318834410810092,0.23819074695802678,0.001079058469274207,0.5213500144955981,0.0007316194119348482,0.001662996009327708,0.9999999999999505,0.005133885565818423,0.024253835465478598,0.024730158269002864,0.9999999999950595,0.3003780808645109,0.7949603068223522,0.0003523337786915947,0.00036062510437868565,0.9998733538863089,0.000304544057701487,0.999999999999954,0.015549820688173248,0.9999999999999523,0.030301961595615833,0.9999999999980687,0.1437149124666466,0.015135424012852849,0.0014939041379606296,0.0022585361514727282,0.9978788405664692,0.021429285122299607,0.0021096503702287815,0.006552428684925472,0.9999999999966518,0.0003018923097357689,0.0003643421345911876 -आलू,rgb,1.0,2.6169469215827667e-20,0.7836310393743994,7.199271629120837e-08,0.7855519256820137,4.6367675804041524e-05,1.0,0.9622197504190304,0.8978347596635651,0.9920549653895038,0.3134554495145672,0.3406421937063552,0.3877881153024314,1.5928737682899362e-20,1.3299646145556293e-09,1.0,0.9999971951213039,0.9999910008771153,0.9999970461456804,0.36170044416881914,0.999999862071184,0.9999999999996214,0.0001542590949117611,0.9999999999999964,2.371215299205255e-10,0.9999999938871846,1.0,5.851333624065039e-10,1.0,8.291652031567527e-18,4.592215954219366e-05,0.3499958161603211,0.00011121846336200174,0.999999043117698,1.496710321613986e-13,1.0,0.44076387289178204,0.9999999999105369,2.1897332569881972e-06,0.00026789185642755016,2.4096380220102204e-08,1.4565615761868377e-15,4.0833742500317097e-05,2.5478071075601152e-18,1.0,0.03965334614126315,0.19521464549915063,0.7934956689741581,1.0,0.9686308617804424,5.685038718207614e-05,2.9159877293879816e-08,0.9765791824568201,0.0004375089835966973,1.0,0.00010568537435558684,2.7803342330181067e-09,6.115174460580109e-09,0.32477200982958576,0.39488492220404087,0.3641598453637268,0.9999999595716772,1.0,9.009596695563013e-15,3.7052460381071426e-17,0.9999999999999971,0.9999999998817144,0.9924671577109385,0.970919949185668,0.8957090017482703,0.0002407598285267918,9.205811608472689e-08,3.2711561575936305e-08,0.997431140603445,4.685073874892e-19,2.887183287985556e-15,0.999999999023089,0.9999999999999949,0.9999999999998022,1.1848652733685341e-08,1.0,6.517955100996837e-09,0.9999999672844375,4.671100840868793e-08,0.9489049262761265,0.9999999866634899,1.0,0.9999999999443787,1.0,1.0,0.9773153483951423,1.0,1.0102407909978197e-09,6.02942885132186e-09,1.7998219452583167e-08,3.442413284439528e-08,1.0,4.899713751442882e-08,4.583252376786773e-09,4.924481742435698e-08,1.7574703538851608e-07,1.0,0.00035601099537354474,3.2494881386858336e-08,1.8895510488638757e-07,3.739208057916014e-05,1.0,0.9999999999999933,0.9999997984186222,0.0006193901974392657,0.9999999897586566,4.5085671419672984e-08,1.7084860779844043e-08,0.0732849760184062,0.25497180866082503,0.21029992692673424,0.9998791877909093,0.013081618324403894,0.39846102982906223,0.9970707166679074,0.43075299764253633,0.026966157262966733,0.8973870318709694,8.81325059550832e-08,0.0405947179610008,1.496985582269144e-06,0.02447799715474365,0.9996465889365522,0.9749873036562878,0.9999968733023669,0.004405755391424272,0.9999990570067121,4.3710033014036485e-05,0.9967630581257942,0.9999254331362296,0.9999975511173705,0.9999977697731096,0.9999958484002985,0.9569448279577787,9.39829783978787e-18,3.014087961838135e-13,1.0,0.0003140666439667684,7.888187466062913e-08,0.2506224456673157,0.31803365260576094,8.029811335080758e-05,0.9999999999999085,0.9999999998141382,0.9999999999999982,1.0001226300305989e-07,0.9997513924777187,1.0,0.30587425281110237,1.0,0.3529533593161151,0.2681623647448112,6.268882085794445e-12,7.426898170304434e-12,0.9999991413472696,1.7596901625722247e-12,0.9999990221160139,1.0,5.0114786966073813e-11,9.341422788470494e-11,2.403810187204153e-10,3.833645260343852e-10,0.2814768245767385,0.38641318297376936,3.608920144722006e-08,0.9995497929960516,5.671767850582752e-05,0.9998138892101839,1.0,0.9987646313782975,1.0,1.0,1.2442976173021859e-09,2.5698576920901355e-12,9.758697413530978e-12,3.0965114017084324e-11,1.0,1.2448559086078067e-13,0.00016167403935346688,3.723756100857109e-05,1.0,3.777747745501225e-07,7.203153092478142e-20,0.39025667372852996,0.30950224445418223,0.3501595554760921,0.999999979678067,1.0,0.36073146996519895,0.9999725131468087,1.0,0.9997997589554802,0.07568026286589735,8.445247685097013e-05,0.0007576070727328857,7.650273992832619e-08,0.9998731089119427,1.8221680848043054e-09,1.0,0.017032089070371507,0.0005255282779752605,1.0,6.287495544371985e-08,2.614701828015348e-09,1.0,0.9999997418286957,0.9999999999332858,2.404716914292548e-10,0.3326950791236308,7.364907812118548e-10,0.049559542889327686,0.1436217687592342,1.0,0.32323540463671707,0.4161332782614725,0.16691710570837073,7.16492913137717e-08,0.0003160844204197209,2.3870611794397412e-14,0.9999872517836179,0.9999831399037146,2.6465140946769544e-20,0.9999869735216771,1.0,0.4331143526242841,9.962272048696298e-14,0.9999999994073894,5.1357342731914735e-08,0.00043382939136548933,0.2983851248889544,0.04207510175621953,0.1919440841321477,1.2404545279237851e-17,0.9999809176300323,0.9998771452276676,0.9999999999924545,2.6747431523715164e-13,0.31701419289944904,0.15189644892101747 -इसका,rgb,0.999959077779994,0.07389153507282237,0.9999999927834904,7.158549561032976e-79,0.9239736963064452,1.0,0.006214064159893482,1.0,1.0,1.0,1.0,0.9999999999999749,0.9999999999999987,0.0012014199276524568,9.754948392284554e-88,1.7840433308244766e-19,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999016,1.0,0.99999999998611,0.6632010126245642,1.0,2.4458822083383896e-16,0.010452776836533256,1.0,0.9999948101980214,1.0,1.0,5.933399629405074e-68,8.367583723522765e-19,1.0,1.0,1.0,1.0,1.3458722480544015e-72,0.9997746653163796,1.0,3.0536640515919886e-07,3.460222067939438e-10,0.9999999998935016,0.9999968488673963,0.999999993639612,4.502427248626649e-09,1.0,1.0,2.265303504174273e-73,1.0,1.0,1.1097650529256225e-13,1.0,1.0,1.0,0.9999999999999911,1.0,1.0,1.0,1.5145112840920038e-21,0.9999662869659065,0.03054554890390915,0.9999999999999998,0.9999999999998632,1.0,1.0,1.0,1.0,3.019560551073711e-74,1.1881548089362052e-70,1.0,0.9999995557782412,0.9999918608198928,0.9999999999928182,0.9999999999999991,1.0,1.0,0.9791739471694522,1.0,1.0,1.0,1.0,1.0,2.7499462126745105e-17,1.0,0.999999999924496,0.9884512194118251,1.0,2.865619210975001e-23,1.0,1.0,1.0,1.0,2.7551078680047778e-15,1.0,1.0,1.0,1.0,0.16323006098360354,1.0,1.0693561410793454e-76,1.0,1.0,5.229382619229257e-09,0.9999999999999738,0.9999999997311602,1.0,0.9999999999999944,1.0438469062513226e-74,7.617511056543515e-82,0.9999999999999469,1.0,1.0,1.0,1.0,0.9999999999999525,0.9999999999603433,0.9999913032904896,1.0,1.0,1.0586060380272974e-70,0.9999999999999958,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0012831118168229038,1.076709233472127e-66,3.4682337388811167e-18,1.0,1.9970154038356626e-67,1.0,1.0,1.0,1.0,0.9999999999987916,0.9999999999999949,5.082253106931739e-70,1.0,2.584127051620202e-17,1.0,9.553153719358237e-14,0.9999999999999998,0.9999999999999958,1.0,1.0,1.0,1.0,1.0,5.9615704754536935e-21,1.0,1.0,1.0,1.0,0.9999999999999993,1.0,4.0109797382705383e-76,1.0,1.0,1.0,1.809403993291513e-20,1.0,0.004877137518891927,1.8545734355110784e-23,1.9775994207584832e-82,1.0,1.0,1.0,1.4517247848636503e-20,3.155795273508246e-67,1.0,1.0,3.0146064651511965e-11,1.8323899292830592e-58,0.9615456624599261,1.0,0.9999999999999964,1.0,1.0,0.9997720520873569,1.0,1.0,4.375028787375708e-09,1.0,0.9999999999999998,1.0,1.0,1.961076758862145e-69,1.0,1.0,0.9442278737961812,1.0,1.0,1.5050659557407677e-13,1.0408865099880387e-72,1.0464860154426919e-86,0.9821824390421326,1.0,1.0,1.0,0.9999999999999991,1.0,1.0,0.9999999999999694,5.1777674270064057e-23,0.9999999990215487,0.9997589110398442,0.9998227751198053,5.42664040452037e-68,1.0,0.9999902061460736,1.0,1.0,0.07771267509446661,1.0,4.7626225169468075e-23,0.9999918883296005,4.602585592055325e-74,1.0,5.768656517862299e-70,1.0,0.9999946375803754,0.9999999999999951,0.9999999999993916,0.00026089723013804984,1.0,1.0,1.0,4.9222404452138246e-65,1.0,1.0 -इसे,rgb,1.0,1.0,1.0,1.0,1.0,0.004798744085805779,1.0,0.9000617511318412,0.7283103358946754,0.9795288062438807,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.999999999988751,1.0,1.0,0.005589602537556673,1.0,0.9977553587455701,1.0,1.0,0.9966174862298455,1.0,1.0,0.004879906156089182,1.0,0.006888885699485198,0.9999999844130292,1.0,1.0,0.999999999999964,1.0,0.24113846355667617,0.03153880744120733,1.0,1.0,0.005922803638731857,1.0,1.0,1.0,1.0,1.0,1.0,0.9998978435930836,0.00493695169696572,1.0,0.9319594674217524,0.013792424457230895,1.0,0.01952176756197549,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9807218902947564,0.920515831824171,0.7260256733007132,0.010277870947995375,1.0,1.0,0.9947602414208904,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.8602057626781553,1.0,1.0,1.0,1.0,1.0,0.9414394185378433,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.03665176473729315,1.0,1.0,0.004756776234051544,1.0,1.0,1.0,0.04182775447554775,1.0,1.0,1.0,1.0,1.0,1.0,0.99994131350947,1.0,1.0,1.0,1.0,1.0,0.9986515952297593,1.0,1.0,0.999822377342208,1.0,0.999738198804395,0.9999997161947577,0.9999999986368402,0.9999999999978255,0.9999999939101478,0.004448632835054871,0.9930194454665241,0.9999733769219864,1.0,1.0,1.0,0.9999861409035418,1.0,1.0,1.0,0.01084568407246378,1.0,0.999999998981584,0.9999999999999558,0.999999996424991,1.0,1.0,1.0,1.0,0.9999999998952058,1.0,1.0,1.0,1.0,1.0,0.9999899751167717,0.9999999859065472,1.0,0.999935499841956,1.0,1.0,0.9998344378371439,0.9971782519969525,0.9438356968001159,0.9881860548683836,1.0,1.0,1.0,0.999999999943791,0.004964578905775877,0.9999999922833206,1.0,0.9999999998792648,1.0,1.0,1.0,0.9991657567481459,0.999971629039858,0.9999053272570719,1.0,1.0,0.00619130329856706,0.004783974121224532,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999987006,1.0,0.9999999999999964,0.9999999807990242,1.0,0.9999045386783396,1.0,0.006104914285152658,0.016229264570168035,1.0,0.9999999999459646,0.9569151278360454,1.0,1.0,0.022960999687369806,1.0,1.0,1.0,1.0,0.99999999999085,1.0,0.9985663083739273,1.0,0.7107165018221011,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.010997209006559802,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.030712916335045946,1.0,1.0,1.0,1.0,0.9999999432356471,0.9999999991818425,1.0,1.0,1.0,1.0 -इस्तेमाल,rgb,4.492785198181927e-05,0.9999999999999998,0.8162140549811224,6.411003419285892e-10,0.11065164060093709,0.999999999999998,6.740998370808485e-09,0.9999999999989142,0.9999999999991434,0.999999999993828,0.9999014624657732,0.9967670942930137,0.998208968059711,0.9999999999999998,5.974992523310702e-10,2.4774884359616446e-11,0.9319763109829393,0.9561986231889082,0.9509967574975997,0.9999999951518492,0.9830102935616013,0.00612285053623711,0.9999999999999964,1.794949497554172e-05,0.9999999999999998,0.0008623081337112792,1.973741864796828e-05,0.9999999999999998,1.535095449754451e-10,0.9999999999998257,0.999999999999998,0.7784114707917937,0.9999999999999962,0.9999999881979892,0.0005215152497414868,2.630521981365904e-11,0.9999999786885558,0.36142005760427454,0.9999999999999956,0.9999999999999836,1.2037235646316385e-08,0.9999999999987865,0.9999999999999978,0.9999999999992779,2.440493535876281e-10,0.9956286252313665,0.8692640428107176,0.8148139603969965,7.817822674873832e-10,0.9999999997803517,0.9999999999999978,8.029744186194026e-09,0.9999999999977307,0.9999999999999887,1.0981189043623498e-10,0.9999999999999918,0.99999999998751,0.9999999999602551,0.9976048519670234,0.999070474547348,0.9998860473570504,0.9773696481272038,2.566434443050875e-11,0.9999999999954667,0.9999999999993674,0.00015121624273760324,0.00047160411299669515,0.999999999995238,0.9999999999985743,0.9999999999992515,0.9999999999999929,2.5965448201947297e-09,1.892365341989015e-08,0.9999999999904223,1.0,0.9999999999990088,0.00042930458201109734,9.251521757642772e-05,0.002750197019944261,0.9999999999087827,3.126892497104805e-05,0.9999999999810716,0.9999396024160687,0.999999999598443,0.9999999999990115,0.9997571765745372,8.978264731010512e-11,0.18169590108167052,0.001505797994571273,4.181754747908847e-05,0.999999999998491,4.8568274814497626e-11,0.9999999999964251,0.9999999999189082,0.9999999998373461,0.9999999996734215,1.636140743666625e-10,0.9999999995770519,0.9999999999851443,0.9999999996799585,0.9999999988289014,6.158977998386729e-09,0.9999999999999796,2.3769245367561182e-09,0.9999999979309699,0.9999999999999982,2.4702357895605765e-10,3.101244852287485e-05,0.0024260192248278653,0.9999999999999722,0.008027192055924484,3.704095546485522e-09,6.634327724072664e-10,0.9988927632376754,0.9997096462572692,0.9998947995702409,0.9999999997538351,0.9999976383588471,0.9955527622672218,0.4630577302150118,0.7148017278456661,0.9999823355110617,0.999999999942697,9.098418385648902e-09,0.9996151121472943,0.9999999999999007,0.9999792606427874,0.9999999998783529,0.9999999982529433,0.9999999313447494,0.9999999992929811,0.9999999748847226,0.9999999999999982,0.999999999991801,0.9999999996178159,0.9856170687541109,0.9625612882208399,0.9673799257142507,0.9999999995862272,0.9999999999996554,0.0004717701324826362,2.7604230945136213e-10,0.9999999999999918,3.088404973125495e-08,0.9999999987305519,0.9999999839933205,0.9999999999843958,0.0014087579224576644,0.0003228777541130685,4.449974127315261e-05,1.0525242922851883e-08,0.9999999231756876,5.870330564563934e-11,0.9999137589624753,1.1061844400032708e-10,0.9990588727912469,0.9983304459317004,1.0,0.9999999999999996,0.9646352449756534,1.0,0.957705666443755,1.0117084940420712e-12,0.9999999999999998,1.0,1.0,0.9999999999999998,0.9989474837756513,0.9991926171837751,2.6801788271989726e-09,0.9999999228767751,0.9999999999999978,0.9999999782862863,2.5936430438882197e-11,0.9999999546394697,6.610526009756041e-09,6.355337388599702e-11,3.6777554726388325e-09,1.0,1.0,1.0,1.2723497157129731e-11,0.0007811687631790472,0.999999999999996,0.9999999999999982,4.0732849076938263e-10,2.4292845044330624e-07,1.0,0.9991684763303735,0.9981796884385081,0.9999057348263016,0.9999991774034817,3.11698054934812e-05,0.9999999692582165,0.9999999788805305,1.0233913529326743e-09,0.9999999997685471,0.9997362061296173,0.9999999999999969,0.9999999999999847,1.5651962289099635e-08,0.9999998876314065,0.9999999999999998,4.274584491788094e-05,0.9999956707760612,0.9999999999999825,1.0817611908870054e-10,5.794453896377171e-09,5.126098674927483e-10,1.804542900659237e-05,0.9999994738169429,0.4895159973972992,0.9999999999999998,0.998638324698194,1.0,0.9999277614461417,0.998395404169601,3.2826389958612007e-11,0.9634151526510999,0.5575020050728998,0.7570292736024172,2.714874714873753e-08,0.9999999999999916,0.9999999999914935,0.9650360172978292,0.9626998397534866,0.9999999999999998,0.9839244748561995,3.476615163781198e-11,0.7166417762698567,8.314772582239253e-05,0.999841077041265,1.7338183952033694e-08,0.9999999999999802,0.802944177568939,0.9995901066691488,0.9958196280313116,0.9999999999993079,0.99999998646916,0.9999999504614765,0.18357323761672822,0.0009395538527254046,0.999975968808648,0.9999783400432795 -उपयोग,rgb,1.0,1.0,1.0,1.0,1.0,0.002092643309773181,1.0,0.8743346968465361,0.9899982808425956,0.9999993050708191,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0064938616974394075,1.0,0.9999999996976585,1.0,1.0,0.9999999999448133,1.0,1.0,0.0025348269814500788,1.0,0.07992026076513825,1.0,1.0,1.0,1.0,1.0,0.999999978407792,0.9999600703317039,1.0,1.0,0.01955729179758292,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.002824728948139898,1.0,0.9996879629563411,0.9666408873332538,1.0,0.9985194433851436,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999810136008896,0.9771391771960373,0.9582020640887894,0.7492537486166959,1.0,1.0,0.9999986503000022,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9209973665153725,1.0,1.0,1.0,1.0,1.0,0.9573409973901147,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999860631553509,1.0,1.0,0.0018776712949525904,1.0,1.0,1.0,0.9999938742119159,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999998,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999953,1.0,1.0,1.0,1.0,0.0008638610983024179,0.9999974639863326,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.803617626702608,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999986577,1.0,1.0,0.9999995850922946,1.0,1.0,0.9999999999933911,0.9999999721764629,0.9997433171464294,0.9999999620800454,1.0,1.0,1.0,1.0,0.003013339643159389,1.0,1.0,1.0,1.0,1.0,1.0,0.9973021437690326,0.9999999999915956,0.9999999999942002,1.0,1.0,0.020625390954636787,0.002001214320668948,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.026250686845112458,0.9864594957723565,1.0,1.0,0.999999968027052,1.0,1.0,0.9994785221108528,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999483133,1.0,0.9765540972424916,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.8228963234718515,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999481652036012,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -और,rgb,0.9999999999995941,1.0,1.0,1.0,1.0,1.0,0.9959895872917635,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.002649574810895428,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999983904,1.0,0.06807459831843629,1.0,1.0,1.0,1.0,1.0,1.0,0.0019875665258166004,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0339968492958994,1.0,1.0,1.0,0.29798177079141336,1.0,1.0,1.0,1.0,1.0,0.007907447790410612,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.015989641181920037,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999993896,1.0,1.0,1.0,1.0,1.0,0.026633252176186246,1.0,1.0,0.9999999999997617,1.0,0.45535968851191805,1.0,1.0,1.0,1.0,0.04408911957171195,1.0,1.0,1.0,1.0,0.9993367641959827,1.0,1.0,1.0,1.0,0.04729744815121094,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.6804967562091083,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.007821669084386612,1.0,0.00819942728829199,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.3561936703828504e-06,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.006550575896894742,1.0,0.9954882966847457,0.7329061574411017,1.0,1.0,1.0,1.0,0.0008058596700934813,1.0,1.0,1.0,0.10032783364737134,1.0,1.0,1.0,1.0,1.0,1.0,0.999999999998795,1.0,1.0,0.4361837407628578,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.999999999999849,1.0,1.0,0.007362242618657642,1.0,1.0,0.9999999999955065,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.13661395608251067,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.16733122208824722,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ककड़ी,rgb,1.6962357975135024e-23,0.9999312141185794,0.403669621055834,2.2428047191486838e-07,0.20655107291908797,0.00042499303655100075,6.890301671492526e-24,1.770878855866011e-08,9.15624344133247e-08,3.373793595512258e-08,0.7750821750001599,0.7449306380544803,0.736949137583127,0.999939599247051,4.855184608271558e-08,1.8253246029651284e-31,0.0009280557958811834,0.0021289950163568367,0.0009141591590865468,0.1277975565840325,4.677198151782466e-05,1.249653980841825e-09,0.00021984755756921919,3.101025708381688e-11,0.8710263696033791,1.3225327439519473e-05,1.2913877964751714e-25,0.8525910659004586,1.8145631872998637e-30,0.9999752644914692,0.00044099048328552536,0.5634610940229718,0.0004160326973693118,1.3988944551849413e-09,0.0015217885652855179,3.957406646550309e-31,0.20467048611316777,1.2302878967123942e-07,0.06689194190319986,0.0014285558512404906,3.258127381102777e-06,0.9999742418569741,0.0006584544447260785,0.9999715969917171,4.621274310560776e-27,0.8854807078904042,0.6649822680177679,0.3975963954845296,6.222060888732852e-27,0.00011115241806919064,0.00038751983136311324,2.296258616052703e-06,3.4735842530473035e-08,0.0003830791778011108,7.766083574660968e-29,0.0016165256775509426,0.9995250589083978,0.9995158322927541,0.7561083481454556,0.7414938683961398,0.7546616466932086,1.542095102154601e-05,1.5046295511031872e-32,0.9999713787361059,0.9999758394523928,1.171428340382131e-11,6.33973169899867e-07,1.708523540336541e-08,1.9001512293962682e-08,7.09014333602548e-08,0.0004160334575063236,1.0356162814577887e-06,5.616750727898168e-06,8.544198654654512e-09,0.9998318138959846,0.9999728466035375,3.3311626274265997e-06,2.966997724191165e-11,7.734236718543906e-10,0.9994787273475296,5.619210052593101e-25,0.9994000804062012,3.1463674508259314e-07,0.9993315460810679,2.760020560696416e-08,2.9917118772609667e-07,8.866072193280999e-31,1.0356623399773423e-07,4.73001578642923e-21,6.514272936543516e-25,1.263429353880793e-08,1.3513047289392862e-33,0.9995448980507531,0.9995866088737644,0.9994544149219745,0.9993839528099236,6.424064562149661e-30,0.9993251180043135,0.9994453061895328,0.999289531864128,0.9990582998471206,1.238982594746424e-22,0.001359633850339654,6.822424940196905e-07,0.9991067613178377,0.00048370435424634434,2.7768953588854126e-26,5.484281123824241e-11,0.0001491038489360429,0.0010374880137693529,2.1280747587542537e-05,1.1958830904606766e-06,1.4274452072183362e-07,0.878631170666596,0.801897356436409,0.8202331887555377,1.4684496368369426e-08,0.9433523948375508,0.7171140873758125,0.06437646849911137,0.5130428587413114,0.9301433206493954,0.00011570704175832876,3.6215129549550468e-06,0.9117574673614207,0.7638880844797328,0.933548702342514,3.0637688447968924e-08,0.0007972245942530348,1.801796791589877e-07,0.7325658019448008,5.0558158131178974e-09,0.00038443999730814995,9.816161379528941e-09,1.3231467332937731e-08,0.0006055426560131851,0.0006929277916225213,0.001113556033200177,0.0003574442318999852,0.9999751246357954,0.001820199986918805,1.2477003596188322e-31,0.0003613414270558622,1.1671935987345407e-05,0.08911159770162311,0.2557878974749626,0.8629053046729515,3.8964571219436227e-10,9.142159744052308e-07,1.07282278967024e-11,4.338855332890926e-06,9.840726748208736e-05,1.2409265475422082e-30,0.777328205766194,7.055450923108949e-29,0.7573443217218316,0.7830069887141359,0.9720275337640969,0.9948255176543745,0.0003079854320903876,0.9355863907001862,0.0003586688503201464,6.349289174749164e-31,0.9423248062564206,0.8548978641695879,0.6123167697229167,0.776775843333773,0.7834751576600194,0.7458482926244673,7.991162058967526e-07,0.00020354494459029777,0.00039214550448636685,1.938430567719532e-05,5.297463929851331e-32,0.00042701033707478835,5.901004910112942e-24,9.187781199585566e-34,3.431935755534466e-07,0.8381547908759481,0.9629773264390347,0.9504773399308248,8.611055822127799e-32,0.0020590220449801314,0.000256142234434081,0.0004899697276857784,5.684887620955019e-28,0.0001184597205541453,0.9999199098498026,0.7441545841439837,0.7660451411788526,0.7590767070305521,9.555140823492747e-10,7.913054064558585e-24,0.2900575377229334,1.1940826881196949e-06,4.541477340702762e-27,3.466854260655358e-08,0.8880699861227218,0.00042000607259450604,0.0002959095539495737,5.953160232394431e-06,6.0153612650914434e-05,0.6617336083893186,2.60663590160085e-25,0.9390083077587507,0.0006223173887878375,9.448322315480821e-29,2.0864271010482144e-06,5.360045878970439e-08,8.944470248156411e-25,4.412442424169239e-08,7.024048044402437e-08,0.8888021586801893,0.7611285812932582,0.3774642294629874,0.9097663608788723,0.835775739137721,2.3568023486279856e-33,0.6786871307168884,0.4714044305974201,0.6332351653383146,1.0027932394722297e-05,0.00036669693877447516,0.9999690152086455,0.002680343363052874,0.0033281936549372877,0.9999311846039991,0.0024090299053834974,2.17322372891592e-33,0.512806441424922,0.00022285502221950092,1.9539677233406556e-09,5.876843808894388e-06,0.0009882765265470368,0.5922093550198237,0.9100845080858155,0.7979230178792421,0.9999747341354424,3.754282476477667e-07,2.6234281437275885e-05,1.0157044058026636e-08,0.003271016066355678,0.7550708083968332,0.8379208598086424 -ककड़ी,rgb,3.413632477504817e-23,0.9998964467861556,0.49143755037889597,2.7395011945991755e-07,0.27473808651647763,0.00040181286944129975,1.5661942723653184e-23,1.9412137464911903e-08,9.987782717652293e-08,3.8337827842828544e-08,0.8210297904236472,0.7994290559789105,0.7923782895535263,0.9999090111907,5.59115710299391e-08,4.304453190956912e-31,0.0014572612284014924,0.003298524941993311,0.001430920623542591,0.15184352974332896,7.417276594850671e-05,2.3247592826870237e-09,0.00021104150210004302,6.226365198480038e-11,0.8510663970613368,2.3382083370911348e-05,2.598930273494964e-25,0.8322931761073883,4.200783541290679e-30,0.9999672772895432,0.00041701888125221927,0.6440239037549582,0.0003995394902919341,1.8400447614318475e-09,0.0015148413386550116,9.34627199420302e-31,0.2424865503991844,2.130110546380032e-07,0.063408735280816,0.0014120128940019905,3.909735811975812e-06,0.9999684823575186,0.0006238480642046626,0.999962209495718,1.083992293464294e-26,0.9115556584880145,0.7333001142817928,0.48528072814069434,1.4379701562826454e-26,0.0001337182827322251,0.00036739675571369147,2.7639556937868625e-06,3.866953770776773e-08,0.00037689654510635696,1.8246162936208876e-28,0.0015727760688350242,0.9995143952684387,0.9995137013736457,0.8084252485975432,0.7955712710543557,0.804221903710154,2.4716443912683934e-05,3.518218010363922e-32,0.9999660604935807,0.9999689167530095,2.3101846196332038e-11,1.1608006969269174e-06,1.9311928969266093e-08,2.0948730991115096e-08,7.712459272658592e-08,0.0004052041563744983,1.2684110632189095e-06,6.7672101425918955e-06,9.795488986091447e-09,0.9997506901925145,0.999967001635033,6.004742405362327e-06,5.861438988580542e-11,1.4544229170757217e-09,0.9994835130583597,1.1275014094738793e-24,0.999394008594672,4.736753218401034e-07,0.9993546607403805,3.019781765366445e-08,4.597794782253341e-07,2.0635519867731512e-30,1.8137261336700465e-07,9.133369005179937e-21,1.301807184757541e-24,1.3944165753806043e-08,3.104454937566421e-33,0.9995247439979817,0.999587172773802,0.9994642577230344,0.9994024183734442,1.4913154905490402e-29,0.9993490415246694,0.9994365361627879,0.999313211903402,0.9991105807053074,2.828011996113247e-22,0.0013502565636842026,8.231683404386582e-07,0.9991607227882471,0.0004561384869696683,6.534064248362441e-26,1.0925287546656344e-10,0.00025422476771000445,0.0010379779710289528,3.691047158757604e-05,1.4493509496270868e-06,1.7072800620443997e-07,0.9059429717632825,0.8441194934843522,0.8580826654589578,1.7952551294111728e-08,0.9542623719587462,0.7765444866140757,0.09396166667242409,0.5975351096233519,0.9446012275571462,0.0001357718913085356,4.428481735812482e-06,0.9313624687671302,0.7608422464928669,0.9473517645535936,3.6940834709111095e-08,0.0009875720196323183,2.435396846162991e-07,0.7598358800512542,6.739386091346501e-09,0.00036272220269460546,1.121848586898877e-08,1.6313779166486197e-08,0.0009395598695698862,0.0010846163851707838,0.0017324163295336442,0.00043320619751974595,0.9999672983533229,0.0018311117888999261,2.8403451493513654e-31,0.0003531460697982766,1.4233882493362285e-05,0.10502577467532179,0.2980685484254007,0.8712474998810464,7.401790120015589e-10,1.6726207535880472e-06,2.1439439914339517e-11,5.314577116065614e-06,0.0001309745936923135,2.9081863155000093e-30,0.8227332343053504,1.657103159459127e-28,0.8087063171491102,0.8301413556700542,0.9657364714662785,0.993795142179114,0.00048536302804593823,0.9193682796206437,0.000565559937410653,1.5682701785030182e-30,0.9315284109452415,0.8304084488524663,0.5677829871714566,0.7465322408990426,0.8301969171361615,0.7990546671077275,9.65580861634182e-07,0.0002700972270337,0.0003718105176172274,2.5412579815621246e-05,1.2436252885519122e-31,0.0005599380278491137,1.3413935750140572e-23,2.0994990656145985e-33,3.946243466652578e-07,0.8016333553471813,0.9549120199008311,0.9407608089859942,2.044711983991568e-31,0.002042954642202283,0.00024646606411221893,0.0004620717249146364,1.3184518598130607e-27,0.00014729806884586038,0.9998803604053587,0.7976763738042522,0.8163780385142755,0.8076711271929343,1.3553965170081821e-09,1.598435227843694e-23,0.33723396574635434,1.5759366538815967e-06,1.0450859202292218e-26,4.232078891097252e-08,0.9127529438113139,0.0004013827046957806,0.00029331559086813376,7.261473035105914e-06,8.070991422310697e-05,0.6282616004849196,5.194133207702087e-25,0.9510426991285421,0.0006174134331215849,2.2213565273598418e-28,2.539958668260075e-06,6.235485928185843e-08,1.8120056499764175e-24,6.187706260787728e-08,1.211970694821367e-07,0.871449746614253,0.8121290547630206,0.3371424568232688,0.9291775065244865,0.8724189822197532,5.456249612879921e-33,0.7451450030307888,0.5576259133061997,0.7055781610214186,1.2213898427213679e-05,0.0003584755900754912,0.999963844834118,0.004132586867226541,0.005120954558785814,0.9998964145016501,0.0036909380441447416,5.025623135647334e-33,0.5973199761986249,0.00022092937820805363,3.0186416679434657e-09,7.127031639365981e-06,0.0009817474385802774,0.669846461227179,0.9300834323143488,0.842672300723417,0.9999670575608136,4.927077722679759e-07,3.483597895470606e-05,1.7979197072418473e-08,0.003281769520221118,0.8024445440229925,0.8709240333522077 -कहा,rgb,0.9999999969251843,1.4394657781680128e-08,0.9999993095507713,0.9999999905165492,0.9999998979812506,1.4648669444663921e-05,0.9999999999961136,0.0017857176110629043,0.0018302160655664658,0.0098950228041085,0.9999103007399762,0.9999893122353694,0.999985356049375,1.9679267031794635e-08,0.9999999540304113,0.9999999999981912,0.9999996743014309,0.999999522052351,0.9999995888998465,0.9152953088423441,0.9999992186346306,0.9999999985234651,2.485678267418878e-05,0.9999999999687976,1.4888938748438581e-06,0.9999999994980646,0.9999999955869887,2.5465322080253212e-06,0.9999999999955163,9.227937901713095e-06,1.4881336170062507e-05,0.9999991338849975,2.8727305553007898e-05,0.850676241763326,0.9998618638614699,0.9999999999984024,0.9720540857227364,0.9999999695649522,4.453222783406915e-05,0.00013119350703503038,0.9999999640811599,0.00013654543524013754,1.751304228021974e-05,1.4963087654659678e-05,0.9999999999987474,0.9999859893327946,0.9999985740357294,0.999999320273417,0.9999999999971381,0.38932849432479066,1.620623178503891e-05,0.9999999706283136,0.003941993155879022,8.129106413183638e-05,0.9999999999984459,6.718196130431833e-05,0.01663676112626605,0.04130445993954277,0.9999871059157383,0.9999784461869117,0.9999206207342236,0.9999993689906219,0.9999999999967408,0.0005065742332673702,3.176245098598555e-05,0.9999999998567446,0.9999999997343962,0.00704317931734533,0.002331040621020284,0.0015531694688636036,5.308168312206155e-05,0.9999999867395841,0.9999999630837617,0.012048147981015639,6.755817311370724e-09,0.0001452068065042278,0.9999999997136082,0.9999999999040539,0.9999999991412256,0.07847505196825658,0.9999999953318661,0.025502205392977075,0.9999289467226647,0.22692617084150965,0.0017504058674362817,0.9999763705589394,0.9999999999965397,0.9999999843020482,0.9999999831091485,0.9999999942785338,0.0023073551042815314,0.9999999999905811,0.005879976793948273,0.06503393610828193,0.11924044195404669,0.19497844365729708,0.9999999999964222,0.23455928892201247,0.020393423384680188,0.20308781794320138,0.4300167347639602,0.9999999999978049,0.0001600016514187377,0.9999999807205199,0.52587286286267,1.3439704898394815e-05,0.9999999999991056,0.9999999999559634,0.9999999987023895,0.00020951646701247958,0.999999997999627,0.9999999805127638,0.999999983128456,0.999972579432638,0.9999519639229192,0.9999070280932664,0.2040964232074656,0.9984328700677225,0.9999914867982421,0.9999998695983033,0.9999993235000615,0.9996065695747363,0.16358998334857358,0.9999999799558446,0.9999432838413621,0.0008278281166407402,0.9996385628796994,0.13102219321868347,0.8125958494120163,0.9801020954851412,0.6537662596256352,0.9298235226754489,1.3135493830616218e-05,0.010673633678786378,0.27282470306226936,0.9999990490646867,0.9999995121610741,0.9999994441451526,0.54591757188163,1.4508979056357319e-05,0.9998996568102798,0.999999999987075,5.996044328735209e-05,0.9999999689575486,0.7834580811630176,0.9645892953451246,0.06703880558750598,0.9999999994443867,0.9999999997840336,0.9999999999385791,0.999999979975567,0.9893485264727506,0.9999999999976867,0.9999020249386752,0.9999999999984057,0.9999780052052958,0.9999833310277106,4.557416346375927e-07,2.737339875126853e-06,0.9999995150336289,8.890392051422746e-08,0.9999995701148247,0.9999999999998797,1.0271014859326676e-06,6.746963961157659e-07,4.6468864281688706e-07,1.2203403999599597e-06,0.9999783274215616,0.9999764141278994,0.9999999807917422,0.9897754824210943,1.6297986004377413e-05,0.9666084982032394,0.99999999999753,0.9847612941893698,0.9999999999960618,0.9999999999872324,0.9999999196586113,4.987048684928322e-08,4.804115463287723e-07,8.362412654215648e-07,0.9999999999987235,0.9998291133354529,2.8390477864678875e-05,1.3505696739250679e-05,0.9999999999971849,0.9999999649062757,1.3033554490984421e-08,0.9999768856018707,0.9999846693021356,0.9999098689609821,0.9953144102217608,0.9999999973198768,0.9783554080898881,0.9565582071542579,0.9999999999962561,0.21503872570270813,0.9999363649874492,2.3260576163305956e-05,0.00010715400702932657,0.9999999748262558,0.9919759533089031,2.421207857001025e-06,0.9999999929096202,0.9989767271989042,0.00012976681411124862,0.9999999999985247,0.999999980258921,0.9999999666669255,0.9999999972831601,0.9957799760113955,0.9999999545365704,1.7365384527531723e-06,0.9999821025176311,5.031062273272702e-07,0.9998503086989305,0.9999805768072345,0.9999999999939311,0.9999973340879756,0.9999995255099117,0.999999012213196,0.9999999691471954,6.08439417894006e-05,0.0009682726363692061,0.999999428852864,0.9999994416973579,1.4413913687591877e-08,0.9999990340170771,0.999999999993529,0.999999321474292,0.9999110980568563,0.9999462197013282,0.9999999697561488,0.0001513738703288278,0.9999990180289907,0.9999456971057338,0.9999895065622807,2.4019177753488013e-05,0.930000392512983,0.9833978679453867,0.9999999826021199,0.9998666059781985,0.9997811391526887,0.9997349572993631 -कहेते,rgb,2.379482963140761e-07,0.487140052515,0.9998632068416151,0.0009341211882315214,0.9997638949769628,0.13045473070422484,9.930231466381088e-07,0.006482756945333376,0.015752115271163894,0.018897648700205754,0.9998873436700891,0.9998966464059933,0.9998970764087283,0.48073181471681614,8.214585703167608e-05,3.295404671798626e-11,0.9994471825898872,0.9995637743730894,0.9994216558770221,0.9981132825910026,0.9978036950892071,0.9342450233766274,0.12081337013158677,0.8344865093256943,0.8087747499178468,0.9987725204561775,1.1274661979981212e-08,0.8372499083680288,1.0405356494808691e-10,0.9489443537655463,0.13338976394237764,0.9998479310872754,0.16797649086730693,0.04251518314076568,0.005969017799760405,5.5037594190578076e-11,0.9989700862466013,0.9848535386511688,0.7437822157404678,0.42330833939447554,0.00433925950215518,0.9903937425508254,0.16831380985823427,0.9249286271965377,1.7554946049811728e-08,0.9998912313196946,0.9998540635388381,0.9998632224016977,1.670787386197288e-08,0.8738276667384037,0.1304943026057502,0.0036090156676398723,0.013039377211087945,0.23640034454357214,1.4018372624346078e-09,0.36663692704487316,0.9992142099810748,0.9994141817623723,0.9998974402442221,0.999896559201259,0.9998865691581607,0.9966033383843953,5.912146776294896e-12,0.9945233557700822,0.9701527088755199,0.6996503375634298,0.9966027684035421,0.011404685860097907,0.007548796055889496,0.01282850501796031,0.21040256055389825,0.003008410023015799,0.00705592980843182,0.009857889371895875,0.5202551209550147,0.9918681595989767,0.9981174307789266,0.800294120878109,0.9266209440985613,0.9995183121361304,2.692793705926955e-08,0.9992992642328427,0.9240256657239682,0.9996507241235217,0.008160013929512874,0.9434765106361285,7.225826514639019e-11,0.9858201000942615,3.897233733622995e-06,2.7560123198717234e-08,0.006031252999121206,9.557233758187137e-13,0.9988828538392629,0.999496157630065,0.9995758305483377,0.9996344822663926,2.4144780154478616e-10,0.9996543793226123,0.9992524790441542,0.9996362201170803,0.9997182228171055,6.2445904816295005e-06,0.43888937141922435,0.0015809712383884238,0.9997428253397338,0.13329746853161367,5.621145738136615e-08,0.86196626087326,0.9993744327560639,0.43544930182903213,0.9988739197787225,0.0026272281521245717,0.0004184103899234556,0.999900515113226,0.9998963918296259,0.999892254131186,0.04469287575808959,0.9998734854662126,0.9998953479930688,0.9998317015610979,0.9998434453873495,0.9998926837157855,0.817143317613138,0.007188805657853308,0.9999023525321009,0.9818940803387395,0.9998944907784868,0.05311863439329557,0.9736431266054953,0.5710067202144248,0.9989451438518182,0.10945374431166544,0.11951749551610123,0.010093235212725109,0.04899658527143252,0.9992071620922711,0.999338149472923,0.9994334264830942,0.9398727726872688,0.9522001199460834,0.008571247151306157,1.452924863144614e-11,0.20784418857173287,0.015757015667688043,0.9967628126846967,0.9990088258820113,0.997572733638312,0.9083587135200519,0.9970825122525206,0.7257800516750073,0.008513238926148555,0.9755097394060137,9.990366165034586e-11,0.9998864311826526,1.3129879304631234e-09,0.9998973414937514,0.999898535307967,0.8145548409868564,0.949484488017384,0.9990934149682563,0.5819959948347662,0.999165988433617,1.510427978837018e-10,0.8325191815927285,0.7316019989137938,0.5702090672817041,0.7464513478531652,0.999898595358383,0.9998964602686526,0.001832069807076023,0.9828369797337374,0.13146211230522,0.9227465775329929,1.400614155648607e-11,0.9861075048767326,9.032737256463322e-07,6.837575952048414e-13,0.0003247640728460022,0.4102484782359083,0.8024326621064705,0.8268403299938365,2.292009606646711e-11,0.006937924970480279,0.1361462521889253,0.1342999782555203,3.964615810473625e-09,0.12172189985675108,0.5318175447330915,0.9998964439493314,0.999897998102456,0.9998853623094383,0.12280468962535562,1.5758135264967903e-07,0.9992078616312161,0.7253936866449486,1.2822577130205704e-08,0.07084604632369167,0.9999014892536353,0.1555999459956327,0.23538184396788925,0.009734367964074418,0.9719136197013395,0.7633709220249758,1.4777445830018836e-08,0.9998803402480599,0.326657888642445,1.6023385356822861e-09,0.004353641113491212,0.00011069315313529463,4.2412238103350976e-08,0.5282068607312467,0.9784675196319471,0.8295784395563056,0.9998978848580478,0.4787486398443572,0.9998989143857191,0.9998995491174714,1.5466224470513036e-12,0.9998799552488399,0.9998249333331014,0.9998338925317684,0.013731584786399522,0.21014269457508022,0.9958615010787526,0.9995861775864822,0.9996176493436988,0.487916746553474,0.9995299325601489,1.441961915980257e-12,0.9998437430538093,0.001338506431922376,0.49113121353592276,0.008457157489035756,0.39488022947882245,0.9998489913362766,0.9999022899701437,0.9998960355053783,0.9570105239240038,0.5465389376112046,0.9470178656847518,0.9574618922048727,0.012414128081861356,0.9998692389602518,0.9998797709963637 -किया,rgb,1.0,1.0,1.0,1.0,1.0,0.0018967215741902822,1.0,0.872077004474917,0.9901517307289166,0.9999993891298767,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.005964187197584652,1.0,0.9999999997640587,1.0,1.0,0.9999999999578302,1.0,1.0,0.0023030872088764917,1.0,0.07609284254744011,1.0,1.0,1.0,1.0,1.0,0.9999999822596098,0.9999639096685743,1.0,1.0,0.018250587281249578,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0025694780598818773,1.0,0.999704748695828,0.9671913041648714,1.0,0.9986019676399135,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999826020562496,0.9771774849118627,0.9580954237993202,0.747324553501402,1.0,1.0,0.999998799975559,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9200405350222025,1.0,1.0,1.0,1.0,1.0,0.9570514241701499,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999875620283692,1.0,1.0,0.001699898218900093,1.0,1.0,1.0,0.9999945851038656,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999998,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999967,1.0,1.0,1.0,1.0,0.0007743913550467404,0.9999977287925409,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.8025684034992994,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999990168,1.0,1.0,0.9999996453638159,1.0,1.0,0.9999999999950719,0.9999999770500289,0.9997634734061217,0.9999999686247926,1.0,1.0,1.0,1.0,0.0027432954431287596,1.0,1.0,1.0,1.0,1.0,1.0,0.9974343397597446,0.9999999999937079,0.999999999995681,1.0,1.0,0.019235891693536223,0.0018132039195435004,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.02458080706800404,0.9868283486380711,1.0,1.0,0.9999999736140865,1.0,1.0,0.9995131579077021,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999605207,1.0,0.9771583530681835,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.8221560851749695,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999529764299614,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -केला,rgb,1.7192342541731312e-05,0.9999999999998388,0.0002310525717955342,3.723274608913207e-11,9.068553786782443e-06,0.9999999999981626,1.955938373346395e-09,0.9999999996990416,0.9999999996690718,0.9999999975432332,0.27459506536204487,0.01249385165818861,0.021797153006338287,0.9999999999996927,9.11253818531001e-11,3.8188209106499507e-10,0.0009986139905070435,0.001451371924179925,0.0014206103231006577,0.9999347315798138,0.006429250213902216,3.0193167840552176e-06,0.9999999999967739,1.5190149492089383e-08,0.9999999999995164,1.1249392874511779e-07,2.3865359640744983e-05,0.9999999999991336,1.4655929746415804e-09,0.9999999994012514,0.9999999999981224,0.00019648639194775027,0.9999999999959626,0.9999945550963161,1.0746035357227662e-05,3.346862937517549e-10,0.9996576733495277,0.00014203326928676678,0.9999999999881466,0.9999999999727942,3.568844724301507e-10,0.999999992123728,0.9999999999976454,0.9999999980126983,3.4509846773933926e-10,0.009847606897557554,0.0003612050632821263,0.00022881150798506101,1.088039491022671e-09,0.9999993148593693,0.9999999999979488,2.5841371084446256e-10,0.9999999991974764,0.99999999998634,4.042766896679533e-10,0.9999999999875393,0.9999997709782094,0.9999992125804468,0.016588973676336626,0.04031094742501809,0.24755467475584408,0.0056331931362995245,7.475137066815045e-10,0.999999964539028,0.9999999973958935,1.5758953999524666e-07,8.775844343608683e-08,0.9999999984200589,0.9999999995841766,0.9999999997312994,0.9999999999916833,9.196616067507881e-11,4.574964372640503e-10,0.9999999970298081,0.9999999999999787,0.9999999930366945,6.592422351764153e-08,8.068832582984486e-08,1.4435388799714019e-06,0.9999980981083979,2.7048692800723524e-05,0.9999996393454869,0.8516235447599043,0.9999909019365449,0.9999999997012836,0.5688603571688907,9.96546699374376e-10,5.5922616397426906e-05,0.0001868256904908853,3.558127589009515e-05,0.9999999995952518,2.733416484349516e-09,0.99999994060582,0.9999983444126812,0.999996499741333,0.9999926981643782,1.1414739758252415e-09,0.9999903920397196,0.999999722480069,0.9999927937598172,0.999971891097666,9.122138250574091e-10,0.999999999965721,1.0900525180512004e-10,0.9999496319150177,0.9999999999983196,2.2736687257234588e-10,2.391609873387331e-08,2.47481574425096e-07,0.9999999999539637,9.461363485089273e-07,1.3748377165289633e-10,5.297683656765834e-11,0.03466584351509286,0.11505588580846803,0.26030322602915723,0.9999998742508991,0.9376029981590953,0.009224108382918915,4.867395409130527e-05,0.00014290100452009938,0.6684033693076096,0.9999998431391772,2.2163297041757864e-10,0.09049839657895202,0.9999999992794164,0.6321158697750718,0.9999999326356525,0.9999905122857811,0.9998952598730548,0.9999880355104224,0.9999834860968378,0.9999999999983964,0.9999999974272327,0.9999997996259915,0.005355798632955783,0.0019513667775486422,0.002128237619360108,0.999998295808728,0.999999998813494,8.434875103256372e-06,5.378759671452582e-09,0.9999999999905149,5.346421498208709e-10,0.9999854387268656,0.9997380913393069,0.9999997886435015,8.209979803385132e-07,5.785644774926221e-08,4.6002732515772065e-08,2.3883194988802657e-10,0.9996046115842414,5.850313449857775e-10,0.3016221096906844,4.1713587411079304e-10,0.0398282087751307,0.02332438922730966,0.999999999999817,0.9999999999977731,0.002296306306983867,0.9999999999999758,0.0018640832078287352,9.75132844268876e-12,0.999999999999617,0.9999999999998088,0.9999999999999025,0.999999999999662,0.03588764469390803,0.045939738728698214,1.1561874168198569e-10,0.9995486218637519,0.999999999997933,0.9999251864620551,5.483511705772233e-10,0.9997101942375511,1.9872013623543014e-09,4.020101324613763e-09,3.133162864309822e-10,0.9999999999999898,0.999999999999819,0.9999999999996851,2.2877685001579692e-10,1.5020160935980453e-05,0.9999999999961806,0.9999999999983078,9.828089685623014e-10,1.6995978479579704e-09,0.9999999999998996,0.0447049444643658,0.021486551078360668,0.284086046618217,0.9994763755130844,1.4029212894031569e-05,0.9994647180089758,0.9999576435363825,1.558188110251731e-09,0.9999998585578589,0.12470189354968172,0.9999999999968459,0.9999999999814737,3.337890308994891e-10,0.9994545685981455,0.9999999999993348,4.578448935144443e-05,0.8910890306710573,0.9999999999751705,3.7921803823382543e-10,1.7417089108743018e-10,6.970127795816064e-11,1.3394494588493894e-05,0.9992805098889617,0.00026893438229969323,0.9999999999994031,0.02820809877312633,0.9999999999999094,0.33496694083861583,0.024356180575853394,1.5622151042672896e-09,0.0012516295178998716,7.690487152640987e-05,0.0001832133557240079,4.982347454007703e-10,0.9999999999903373,0.9999999268569153,0.0017907383980679296,0.0016355575222424764,0.999999999999839,0.004036754077782996,1.6953850676034702e-09,0.00014403044654511023,3.234359779020904e-06,0.8476176228709285,3.904577304904655e-10,0.9999999999688758,0.00022673515458867597,0.08561155762890038,0.00988906383718995,0.999999997570022,0.9999793543465906,0.9998064221251696,8.428001432299255e-05,1.4257546778391236e-05,0.6090353453781355,0.6280287153373363 -केले,rgb,1.0340890202265373e-05,0.9999999999999485,9.2473015400844e-05,9.65615963498888e-12,3.1283279998736673e-06,0.9999999999993687,7.28397397841947e-10,0.9999999998760896,0.9999999998603766,0.9999999988514117,0.17864204182770538,0.006094844456377736,0.010984689877167894,0.9999999999998985,2.6019692036444642e-11,1.6445792725603837e-10,0.00044439624608234613,0.0006545558535527127,0.0006441003794606657,0.9999368151463051,0.003244870367284858,1.1237960830184067e-06,0.9999999999988629,4.454661456972769e-09,0.9999999999998324,3.250388793871368e-08,1.5596746234263755e-05,0.9999999999996894,6.577143042625091e-10,0.999999999693657,0.9999999999993539,7.815225103551798e-05,0.9999999999985489,0.9999962123231803,4.972186036345031e-06,1.4159936489740088e-10,0.9996355235516682,6.181314494136558e-05,0.9999999999952338,0.9999999999889497,1.0008341641337679e-10,0.9999999952540799,0.9999999999991758,0.9999999989302888,1.2888248525929106e-10,0.004743138805597695,0.00014792005287881074,9.15328607190852e-05,4.305088215172928e-10,0.9999995187651929,0.9999999999992915,7.161011189095468e-11,0.9999999996478266,0.999999999994738,1.6083111886787003e-10,0.9999999999951548,0.9999998283933421,0.9999993688836286,0.00822364630486496,0.021149727837666964,0.15808047297093,0.002851099611183955,3.45513406894976e-10,0.9999999767054232,0.9999999985500614,5.277098299360826e-08,2.5633111866145512e-08,0.9999999992853323,0.9999999998254656,0.9999999998883007,0.9999999999968838,2.4317365191972875e-11,1.285226114767276e-10,0.999999998618609,0.9999999999999938,0.9999999958151393,1.8732543531739008e-08,2.582863350064787e-08,5.194222680074682e-07,0.9999984010680403,1.7450704523374668e-05,0.9999997229834495,0.8138965889437804,0.9999916796610913,0.9999999998764277,0.4814801270496533,4.423035429703921e-10,2.320766988160917e-05,0.00011889490082580085,2.3256345390490025e-05,0.9999999998311828,1.4016726465326328e-09,0.9999999586797664,0.999998618787742,0.999996958990337,0.9999934007022399,4.967425569913989e-10,0.999991187682459,0.999999789863875,0.999993491238582,0.9999726988909998,3.142187859209377e-10,0.9999999999858982,2.9469184286454194e-11,0.9999495467806979,0.9999999999994249,8.10875786971883e-11,7.138714519138304e-09,7.320925254177645e-08,0.9999999999807911,3.0316616666012713e-07,3.7187178938980356e-11,1.4222756401840222e-11,0.01797554309007771,0.06604753331388256,0.16752822504769618,0.9999999272448423,0.9121037030001682,0.004426212393886875,1.813404002662736e-05,5.598767595364543e-05,0.5567294737460999,0.999999898518242,6.00577596331269e-11,0.05061598556800206,0.9999999996215481,0.5149786713044536,0.9999999620514984,0.999992128994195,0.9999091538141801,0.9999892023545237,0.999987592026123,0.999999999999454,0.9999999988112427,0.999999881128418,0.0026168574760768726,0.0009017315547981061,0.000984318043120271,0.9999987252980831,0.9999999993711015,3.826514306265248e-06,2.6870743027628933e-09,0.9999999999964242,1.487411366923535e-10,0.9999870640819635,0.9997245515147247,0.9999998464662876,2.8884593291930085e-07,1.6497435548192254e-08,1.4454870925055995e-08,6.472002527459835e-11,0.999605246292441,2.511345380829922e-10,0.19988182451604408,1.6644199352579865e-10,0.020874488598293783,0.011798230593583803,0.9999999999999394,0.9999999999991389,0.00107751257801146,0.9999999999999929,0.0008639074922128302,3.389141318123074e-12,0.9999999999998681,0.9999999999999372,0.9999999999999696,0.9999999999998859,0.018667662220457168,0.024330652551505114,3.1248749034250005e-11,0.9995427242834193,0.9999999999992857,0.9999329992929742,2.4494557218785274e-10,0.9997113644169352,7.421600605435151e-10,2.116529150782829e-09,9.230295813899556e-11,0.9999999999999971,0.9999999999999403,0.9999999999998928,9.682905748377363e-11,7.0424941871210504e-06,0.9999999999986384,0.9999999999994207,3.9931258592424186e-10,4.779396183724185e-10,0.9999999999999685,0.023629820710902184,0.010815691883358928,0.18608207992414086,0.9995322053468192,8.429913435290422e-06,0.9994139552812029,0.9999643269546554,6.312107212743195e-10,0.9999999167985989,0.07212492643862545,0.9999999999988822,0.9999999999927569,9.168771499939836e-11,0.9994484799584477,0.9999999999997671,3.071631052131547e-05,0.8455943057899004,0.9999999999900522,1.4994680911195398e-10,4.714700589433626e-11,1.951621970432876e-11,8.264468132443118e-06,0.999316430795633,0.00012176138045338635,0.9999999999997902,0.01444380585777099,0.999999999999972,0.22641128672967697,0.012348364060586335,7.711182782843657e-10,0.0005431670948543384,2.9289956231005304e-05,7.274248823744826e-05,1.385458448970974e-10,0.9999999999963529,0.9999999499043609,0.0008152086990604447,0.0007398418319054091,0.9999999999999485,0.0019208514288263639,8.415252251387361e-10,5.6450020776012966e-05,1.456736950081907e-06,0.8173761638416007,1.0841338672220425e-10,0.9999999999873077,9.080802643043544e-05,0.04763378760586825,0.004761560969923784,0.9999999986623354,0.9999835051016706,0.9998167000919413,3.659754019785767e-05,6.584335630677611e-06,0.4906021778337463,0.511209197295669 -कोई,rgb,0.049855335714991865,0.9999999999999978,0.32512842487231414,1.0,0.9338602849545823,0.9651323689391123,0.01784591759793725,0.33974534581601773,0.24811069815405384,0.06786852356926124,0.01080902076136129,0.09511932321979294,0.05268418603824296,0.9999999999999991,1.0,0.999136107014919,1.724808058887222e-05,2.7818868764603073e-05,1.5122243122724591e-05,0.0004670209934450414,2.3520320323206967e-06,8.128092304441788e-07,0.9359849022518716,2.421597292735135e-06,0.9998359970340699,0.00013017206390762075,0.5651128143136108,0.9996262630290733,0.9963505503808258,0.9999999999996789,0.9644709607943964,0.8182906048119979,0.9240617343527358,0.0005710236207945547,1.0,0.9984545506235082,0.00039459200435246623,7.705109861108567e-07,0.9274188206267219,0.6788722178861448,1.0,0.9999999998191877,0.9570564498518889,0.9999999999999809,0.5393941137942647,0.6390631984665638,0.8559729528566923,0.3136708412014625,0.5193698608071818,0.000592826004089088,0.9606996576947551,1.0,0.1571211998897101,0.7804011239404431,0.9436125388841622,0.8213854485276231,0.9972258388780424,0.9958916419381281,0.08247290060215832,0.032779198300197716,0.009674667506088763,1.631753892682753e-06,0.9998798965848108,0.9999999989903468,0.9999999999986922,1.3144139024045324e-06,1.775150679805782e-05,0.10953502158480284,0.2752655545389595,0.29482765431616725,0.854038901785529,1.0,1.0,0.07910944121290188,0.9999999999997577,0.999999999466701,6.502462759243014e-05,1.502932969709293e-06,9.028522333246528e-07,0.9941444525157729,0.3394553339393375,0.9942909029098878,2.1031635903517655e-06,0.9872406011565834,0.31826223682299537,1.4547409935043418e-06,0.9976702003303206,8.500006977331266e-07,0.003903222098594109,0.3373620849735936,0.3004217266963377,0.9999857761675744,0.9985325849061067,0.9969611903720803,0.9929148097575904,0.9897809592179307,0.9907186946596557,0.986906775875809,0.9956557978119613,0.9851249997445999,0.9698896692664855,0.003858525834661216,0.6274530098408947,1.0,0.9752357625089927,0.9685491525114625,0.27573951833379157,2.170203668339466e-06,0.0007464736809159394,0.551497723450464,3.827940595056664e-05,1.0,1.0,0.23080884312866734,0.027266421323596555,0.01805433707116406,0.004117375964403115,0.02968617211663987,0.09514773441842243,0.02211569711690602,0.8100995573429296,0.04645022967603733,0.0015300693766602024,1.0,0.20311172298003613,0.692898313844152,0.055613966673870245,0.005529569103633373,0.0001719840308766248,4.1571918944644275e-05,0.006268520617129409,0.00021225749727560336,0.9694074546450083,0.08549781324431402,0.0030223647242831717,8.092451847519776e-06,1.1400382732473977e-05,1.5193505521100754e-05,0.00038592730597763694,0.9999999999997529,1.0,0.9996021524580301,0.8353026900716691,1.0,0.0006763101791853955,0.000512705755053069,0.07224133325627034,9.711378005834312e-07,2.9193995335037907e-05,1.7210036028209956e-06,1.0,2.2604048929948918e-05,0.9967729573901336,0.01030301236874761,0.9471220032323037,0.0388825574401001,0.08216412344019128,0.9999907718561016,0.999977752766999,6.721544281792769e-06,0.9999984813070772,7.728706336422575e-06,0.9969024676967494,0.9999459560835785,0.9999412222535947,0.9999294763751133,0.9998167055088006,0.05658324060407638,0.030795182456178214,1.0,2.3902592958160924e-05,0.9604345007792816,4.107554472461712e-05,0.9996730141648762,3.2547751601436266e-05,0.0194206539436774,0.9999904222019844,1.0,0.9999987587668425,0.9999873290215217,0.9999641664229368,0.9994614859557397,1.0,0.9254112644992284,0.9683653403609541,0.8324529865735568,1.0,0.9999999999999876,0.03095286927365504,0.07277615061153817,0.009118552360277575,4.626992345580049e-05,0.07327601851549621,0.0004849723987540874,5.6369580408767247e-05,0.5785270723068702,0.0031546891301479194,0.09221420620208845,0.940157546426286,0.7212558713522221,1.0,1.8699287370791166e-05,0.9993725927164324,0.5019471774260362,0.03223808112645293,0.6755123469179122,0.9357826804164227,1.0,1.0,0.23507137927963537,1.9206381776332125e-05,6.706407708038612e-07,0.9998176783912165,0.05421307394658699,0.9998795981065849,0.06125184028560397,0.1578345770478718,0.9999751007384446,0.4554165366736217,0.8977751579971082,0.9377740727285876,1.0,0.8329153154621114,0.9999999974093188,3.077703318997216e-05,3.7973976278368684e-05,0.9999999999999978,2.143646738803926e-05,0.9999770349123237,0.8071611867661204,1.0,3.3382274802254508e-06,1.0,0.6388627256195291,0.8353099958625301,0.20455588106103947,0.2175190973708037,0.9999999999997671,9.153974197207199e-05,2.689756760149661e-05,6.134277283699038e-07,1.0,0.004835674682019922,0.01021502071381671 -क्षेत्र,rgb,1.0,5.290036328546507e-09,0.021917045343863316,0.9999981715849988,0.06380616259416978,0.9968862754234098,1.0,0.9999999965985327,0.999999970000587,0.9999999927592778,0.003017298054671501,0.003375928049363818,0.0036830903236399295,4.219491916230703e-09,0.9999996475975085,1.0,0.9961650498821706,0.9881105520100655,0.9962636076091902,0.19227167152535288,0.9999363116153694,0.9999999999557336,0.9987541759789769,0.9999999999996729,0.0005687373042233048,0.9999859575259713,1.0,0.0007317363965942701,1.0,1.7794628729283812e-09,0.9967322582960317,0.008334690467119973,0.9971065117947644,0.9999999999224678,0.7912918386771415,1.0,0.10189459446072158,0.999999979159522,0.2586215517730448,0.9864178068470718,0.999944266648112,2.6329937499359013e-09,0.9944814802427295,1.8545027979116837e-09,1.0,0.0007933673896254053,0.004625824022971859,0.02271665159197722,1.0,0.9997145961923365,0.9972660686407924,0.9999644549714346,0.9999999920683852,0.9975774366402694,1.0,0.9833217861863303,3.125944073014843e-07,3.2851952101816387e-07,0.0031403534384232424,0.0036558919864252853,0.0035332515081089024,0.9999858666661492,1.0,3.3305182440735033e-09,1.8628322634939063e-09,0.9999999999999134,0.999999783728578,0.9999999970047859,0.9999999963239186,0.9999999784237272,0.9972201266978931,0.999987840057532,0.9998922804507433,0.9999999988399253,2.2226949696045322e-08,2.9888645135159403e-09,0.9999978664991674,0.999999999999698,0.9999999999766378,3.7037543556405043e-07,1.0,4.445190895490184e-07,0.999999920510331,5.407972206218708e-07,0.9999999938682671,0.9999999274045118,1.0,0.9999999834089897,1.0,1.0,0.9999999978579672,1.0,2.8451083317210296e-07,2.621872230864155e-07,3.983247063290616e-07,4.788134868017798e-07,1.0,5.486078556451773e-07,3.942233563598685e-07,5.912435013675562e-07,8.989321172944809e-07,1.0,0.9874341631759478,0.9999922508087724,8.300395622258615e-07,0.9962774710006194,1.0,0.9999999999993012,0.999604687080432,0.9913708425174684,0.9999749461290185,0.9999847210975058,0.9999988546373195,0.0009471941825797176,0.0023238042809788748,0.002018727241151708,0.9999999979755925,0.000344197713142329,0.004081125248022631,0.36066830677948597,0.01095068215891616,0.00045571350235684797,0.9996822729727171,0.9999417862890293,0.0005917935641719954,0.002343734805463645,0.00042014620175269895,0.9999999944853635,0.9962914279554992,0.9999999550818759,0.004080010346446259,0.9999999995897255,0.9972564542784891,0.9999999985962393,0.9999999982697365,0.9979067993836471,0.997455224342974,0.9951311958866491,0.9986702935483904,1.7718804443085962e-09,0.7603072877593209,1.0,0.9977152715256373,0.999747412108635,0.28542763738499877,0.07054743762814492,0.0011649614195929018,0.9999999999906517,0.9999996380024088,0.9999999999999223,0.9999276880560597,0.9997990385830391,1.0,0.0029720809147463115,1.0,0.0032364571551772637,0.002562184770514443,5.4445161721981406e-05,5.80571687594836e-06,0.9991629734845787,0.00015849337670202282,0.9989667262498133,1.0,0.00016435539200280482,0.0006455536513620556,0.0037812804908075384,0.0013878471281857073,0.0026034237978056173,0.0035567293505522715,0.9999906252261688,0.9994668278513473,0.9972234474105376,0.9999763592280914,1.0,0.9985375863459033,1.0,1.0,0.9999959135796468,0.0006223999636209844,8.158384309703988e-05,0.00012959885918548142,1.0,0.719812723998709,0.9984853402983466,0.9962142199087223,1.0,0.9959461557686949,7.076543458905466e-09,0.0035985900011725534,0.0029379317082896413,0.0034308197591535364,0.9999999999596894,1.0,0.05705462598574695,0.9999994240367289,1.0,0.9999999936938786,0.0008832686758987517,0.9970283340580418,0.9983141493483393,0.9998907052649004,0.9998971605679526,0.0032007419564337334,1.0,0.00038127581368247154,0.9955031589084432,1.0,0.9999700706241799,0.99999961864047,1.0,0.9999999934791706,0.9999999902163651,0.0004566682743201368,0.003094647981908267,0.013871415545599486,0.0006536919158013426,0.0015568486616523928,1.0,0.004698798376482784,0.013175871161169094,0.005317507837469499,0.9997895954796717,0.9976721043203034,3.89830897861119e-09,0.9837794824329927,0.9781955230803235,5.298042218800255e-09,0.9861440981815495,1.0,0.010974938670581216,0.9759569930617368,0.9999999999098315,0.9998894768770181,0.9917482847795894,0.007079562209057759,0.0006081704235932828,0.0021465074741143374,1.8072074078813895e-09,0.9999998743327538,0.9999654096357766,0.9999999992716451,0.60223414782805,0.003637848894320827,0.0017530122187042118 -खंड,rgb,0.00020944402237941883,1.0,5.718474289019535e-08,1.0,4.038849156503155e-06,0.9836210482850705,1.927549860898461e-06,0.19170275741013085,0.07224158950621462,0.004684428034702489,1.6489361550200314e-09,1.6377553156692128e-08,7.621648575711842e-09,1.0,1.0,0.999430542215887,6.914381782176226e-14,1.3506250980984728e-13,6.438035503989967e-14,1.2710298638719048e-09,1.3020989102057354e-14,2.027162376336939e-15,0.9556296476977898,3.930041857036115e-15,0.9999735340601595,1.6261705985591764e-13,0.09618118867582623,0.9998883141055501,0.9944097421193809,0.9999999999999998,0.9828517256689844,1.4356814528249183e-06,0.927749156186144,3.6479999601830403e-07,1.0,0.9982397522880517,4.709388220353843e-10,2.474859085913798e-15,0.7305434522390781,0.24512088816072658,1.0,0.9999999999951426,0.9725310841921726,1.0,0.0036266169440953974,9.133149348711171e-07,2.4696901810818713e-06,5.2868685054013455e-08,0.004509308131185347,5.367173581159184e-08,0.9798993689841861,1.0,0.028841846410825288,0.559748509599874,0.3815068784702566,0.579830174728181,0.5221744655646995,0.2773052226742656,1.4076512511000962e-08,4.446874651660599e-09,1.3562022568799408e-09,9.244048911140643e-15,0.9999882297232935,0.9999999998852684,0.9999999999999982,4.5149454766109626e-15,1.4446956118637577e-14,0.014357065151173213,0.11511660161564656,0.11385004279624888,0.7624182659950682,1.0,1.0,0.007832314258258661,1.0,0.9999999999757911,6.431385501552288e-14,3.4831880404316135e-15,2.0499781885551774e-15,0.1411572956064802,0.0184054837433504,0.24360197919752305,4.2361184456816665e-13,0.028786664746986185,0.15537893832144162,1.4315588936597791e-13,0.9972870229468358,2.143748441065224e-15,2.355737788576889e-06,0.01930904971517708,0.14899280604166462,0.9999998450017646,0.8244121439528416,0.3103255430429226,0.09032100898409126,0.042547649217054825,0.9658377800659926,0.027219473966706983,0.3463364548729816,0.025109463101556085,0.005539229835665661,6.769922584319012e-08,0.17570317822421852,1.0,0.006033400279524514,0.9860776021983914,0.00036082449386421974,3.408422537505912e-15,1.768947449727612e-12,0.11199233314696576,4.757031789197564e-14,1.0,1.0,9.617986971934798e-08,4.593542287988031e-09,3.3412257011714618e-09,1.6892008586530806e-05,2.0716954646772076e-08,1.5179687212353877e-08,5.127805988109322e-10,1.2367472385677607e-06,2.1666981695149413e-08,3.893233631886509e-07,1.0,9.918040467108977e-08,0.016801643252761355,2.7031900017892424e-08,2.7943939183498658e-05,1.9270968341570212e-09,6.915775443864744e-10,6.330243364173123e-08,3.912926311327648e-08,0.9875866934102626,0.009074448309358218,9.08676326031601e-06,4.3934618301209406e-14,4.9993185011586137e-14,7.155136553619591e-14,1.505990809265312e-08,1.0,1.0,0.9999392700168556,0.7176322860727385,1.0,4.25462082592301e-09,7.23703675533745e-10,1.058908781979042e-05,2.207405880425434e-15,2.4459714378704664e-14,4.4774618185872255e-15,1.0,3.668807536256667e-11,0.9941266154841525,1.600057525946838e-09,0.41479255441185836,5.6952604398754145e-09,1.5286399207862584e-08,0.9999996687671191,0.9999952315836665,2.861414473764647e-14,0.9999999919447976,3.1705986691388856e-14,0.9797633159807625,0.9999945386813969,0.9999962184420496,0.9999971424895707,0.9999764829083967,9.683809093254851e-09,4.207127072897114e-09,1.0,3.198428667543617e-11,0.9795741298141522,2.4799275944302215e-10,0.9999167866750194,5.0455594859370154e-11,2.297598604665359e-06,0.9999999331084624,1.0,0.9999999966265625,0.9999994991202881,0.9999971883733205,0.9997237835687094,1.0,0.9381674778023756,0.9858724697480421,0.0751277521999958,1.0,1.0,4.20697274837045e-09,1.2402395442348313e-08,1.315980246326065e-09,1.614801030797585e-09,0.00043941314722219075,4.923829656798832e-10,9.703063016657056e-10,0.007972401707921095,8.724867123044426e-06,2.9234984901397793e-08,0.9540093735137247,0.42667967378907845,1.0,2.748043536529977e-11,0.9998265480177467,0.07137905664200414,1.932778931124568e-08,0.28600844993740804,0.31728005900486955,1.0,1.0,0.005865354381865795,1.4777232774147354e-10,2.881067169024023e-15,0.9999650015847339,8.514512765755512e-09,0.9999949723550079,2.2026049149984042e-08,4.4535130554584946e-08,0.9999994869311707,1.8670983773890628e-07,3.1258048465077456e-06,8.363170867287837e-06,1.0,0.7101217750706619,0.9999999993775517,1.6099264002770344e-13,2.0426142682607514e-13,1.0,1.270876775973635e-13,0.999999568618881,1.2048452624298675e-06,1.0,2.9036320337633685e-12,1.0,0.20451170221946113,1.7642837651465599e-06,9.885439716022146e-08,6.239137979003277e-08,0.9999999999999998,3.503526064961613e-09,8.532161383137673e-11,2.6352523592213962e-15,1.0,8.113305144915362e-10,2.3481762978072303e-09 -खट्टा,rgb,0.028613442231162817,0.35736184061848547,8.785563134448692e-10,1.953646065848279e-20,2.752893578163417e-11,0.9999943057000101,1.7604933179889962e-05,0.9999956908579656,0.9999924535797395,0.9999796912250962,9.837067241724723e-07,2.7339731846235954e-08,5.475058367795127e-08,0.18342014700657072,8.866149312514802e-21,0.00011072605800390863,6.222984950809326e-07,5.600189576914978e-07,8.874651829527355e-07,0.08333559936095218,1.6922256385142092e-05,1.191530283333492e-06,0.9999938324115265,3.115493764945355e-08,0.9997307291629471,5.30169743261771e-10,0.0872299473616755,0.9996610325120192,0.000235714757264003,0.0010429782392254955,0.9999941482804546,3.2216492012125377e-10,0.9999909754606155,0.9984890901450079,4.636977877871874e-17,8.735659730500939e-05,0.017542843424437276,6.863625194648243e-06,0.9998441609087756,0.9999528606282839,1.3730966824889666e-19,0.0006322387332910362,0.9999921635521636,0.0001726826222746384,1.7076538444906277e-05,7.037311873030039e-09,4.370748951746906e-10,8.921120630327555e-10,4.3338289700708556e-05,0.9851960876097817,0.9999941373404782,1.055129614680706e-19,0.9999900992448837,0.9999817098605635,4.1612992373449014e-05,0.9999693296995915,0.00929966145951524,0.00351990272350654,3.6058003529965965e-08,1.0931079019958709e-07,9.342978632814372e-07,2.4982552520061156e-05,0.0002879988400879737,0.00028001242937159655,0.00041621144121627363,4.1913286590486585e-07,2.2508211474772412e-09,0.9999876006466475,0.9999945901554801,0.9999938949857513,0.9999860432352305,5.753886772561961e-20,2.0506187637019872e-19,0.99998476386094,0.9444822809427795,0.000971890856326499,6.632058222409563e-10,1.588694270070576e-07,7.169627446292068e-07,0.0018313446640175622,0.07479435438668096,0.008299622274743622,0.042561375675746846,0.0006246596702522638,0.9999951008501574,0.013455135914696003,0.00019188138412183365,3.1133175541488155e-06,0.060456001968255985,0.08918030186052656,0.9999952910005528,0.001207121533716414,0.024936964426996014,0.0015834443560177403,0.0011449903549549231,0.0006919507522667475,0.00015469648468063234,0.0006016692278925487,0.009412143029163093,0.0008199873167338833,0.00033286896066610114,4.797514558307917e-06,0.9999466765674396,4.374142191281496e-20,0.00018412225203505894,0.9999943171985468,8.384801859966916e-06,3.8997805298291464e-08,2.7021815388835867e-10,0.9999425453817896,4.138570263176304e-09,6.481684106346313e-20,1.5182661383379612e-20,3.6908196709703534e-08,2.7660550940039004e-07,7.197496452577109e-07,0.9997799555245815,1.08360573518701e-05,2.1936695895217593e-08,1.1961052982812277e-09,2.656324357666223e-10,1.7413242191735166e-06,0.9946475141723511,1.4532421789550285e-19,8.369282504092902e-08,0.9854984345872914,1.405813821077253e-06,0.9998201500889905,0.8167476509226496,0.9442634293832061,0.0635336449514468,0.9951175537879633,0.9999949474507642,0.9999855500064886,0.9997064768057677,3.995655720886422e-06,1.4085260626570655e-06,1.180535615820823e-06,0.9562070670648258,0.0005301857463817745,4.860604570843603e-17,0.00106693492012593,0.9999856885287325,3.5668258568277613e-19,0.26419497604061704,0.01858061227296058,0.4702390961672979,5.473275318290023e-07,1.1847382453208449e-09,1.348237777537354e-07,1.6646186755158698e-19,0.38219729874668557,0.00011596696573801601,1.1153967027135762e-06,4.347763302092918e-05,9.976411757295332e-08,4.647280493615133e-08,0.9995377512001692,0.9938512750138179,2.5368274420227503e-06,0.999907742408117,1.9176408713947396e-06,3.890661761360437e-06,0.9995876852993673,0.9998500909395566,0.9999514967590042,0.9998508491080291,7.693397233235859e-08,1.2457246105396022e-07,4.8797005129457076e-20,0.29343138492588766,0.9999940834438322,0.8056898966345719,0.00018277490083429368,0.30092423847888344,1.8445201102330776e-05,0.0017508410929010009,3.250544547718095e-20,0.9999688432786925,0.9996232329750901,0.9995879044426296,8.108665629759964e-05,6.128711282509272e-17,0.9999927652770327,0.9999942652088661,6.200862573123216e-05,2.4557536217918196e-18,0.5893879101752793,1.216785699825179e-07,4.6370815221101867e-08,1.1118577856668262e-06,0.963998057744282,0.028170095754961048,0.009488174102363385,0.9456403683391655,6.252325349634048e-05,0.9996898108450982,1.6376759089821312e-07,0.9999921858796421,0.9999800449822506,2.121025954688554e-19,0.36988938581384867,0.9998437878439607,0.12387680840166568,6.354218527019861e-06,0.9999680563031739,3.8042248823388935e-05,9.671579178712925e-20,8.943322309234966e-21,0.04052787124498318,0.8642491925347974,1.5418594273035774e-05,0.9996649533662224,6.547312657549388e-08,0.9999724236434492,5.198436544025664e-07,3.4685958238767216e-08,0.000701909507222808,2.2233514757160715e-09,1.3326958105169388e-10,1.9435372683679488e-10,3.169910752612098e-19,0.9999854432064902,0.00019741881454360435,6.030095261355005e-07,4.846844628305107e-07,0.3588775870744939,1.4282998982568856e-06,0.0007599828170198107,2.690066522325666e-10,1.0670706238459771e-17,0.1956618697082694,2.1078590184574675e-19,0.9999558382925418,3.3890544609773614e-10,7.969929276125922e-08,1.513819198329987e-08,0.00027797727269287886,0.9776963169286865,0.6427444832745541,1.1456008072586025e-05,8.106983079099093e-17,4.499990769176256e-06,3.242434741373935e-06 -खीरा,rgb,1.6962357975135024e-23,0.9999312141185794,0.403669621055834,2.2428047191486838e-07,0.20655107291908797,0.00042499303655100075,6.890301671492526e-24,1.770878855866011e-08,9.15624344133247e-08,3.373793595512258e-08,0.7750821750001599,0.7449306380544803,0.736949137583127,0.999939599247051,4.855184608271558e-08,1.8253246029651284e-31,0.0009280557958811834,0.0021289950163568367,0.0009141591590865468,0.1277975565840325,4.677198151782466e-05,1.249653980841825e-09,0.00021984755756921919,3.101025708381688e-11,0.8710263696033791,1.3225327439519473e-05,1.2913877964751714e-25,0.8525910659004586,1.8145631872998637e-30,0.9999752644914692,0.00044099048328552536,0.5634610940229718,0.0004160326973693118,1.3988944551849413e-09,0.0015217885652855179,3.957406646550309e-31,0.20467048611316777,1.2302878967123942e-07,0.06689194190319986,0.0014285558512404906,3.258127381102777e-06,0.9999742418569741,0.0006584544447260785,0.9999715969917171,4.621274310560776e-27,0.8854807078904042,0.6649822680177679,0.3975963954845296,6.222060888732852e-27,0.00011115241806919064,0.00038751983136311324,2.296258616052703e-06,3.4735842530473035e-08,0.0003830791778011108,7.766083574660968e-29,0.0016165256775509426,0.9995250589083978,0.9995158322927541,0.7561083481454556,0.7414938683961398,0.7546616466932086,1.542095102154601e-05,1.5046295511031872e-32,0.9999713787361059,0.9999758394523928,1.171428340382131e-11,6.33973169899867e-07,1.708523540336541e-08,1.9001512293962682e-08,7.09014333602548e-08,0.0004160334575063236,1.0356162814577887e-06,5.616750727898168e-06,8.544198654654512e-09,0.9998318138959846,0.9999728466035375,3.3311626274265997e-06,2.966997724191165e-11,7.734236718543906e-10,0.9994787273475296,5.619210052593101e-25,0.9994000804062012,3.1463674508259314e-07,0.9993315460810679,2.760020560696416e-08,2.9917118772609667e-07,8.866072193280999e-31,1.0356623399773423e-07,4.73001578642923e-21,6.514272936543516e-25,1.263429353880793e-08,1.3513047289392862e-33,0.9995448980507531,0.9995866088737644,0.9994544149219745,0.9993839528099236,6.424064562149661e-30,0.9993251180043135,0.9994453061895328,0.999289531864128,0.9990582998471206,1.238982594746424e-22,0.001359633850339654,6.822424940196905e-07,0.9991067613178377,0.00048370435424634434,2.7768953588854126e-26,5.484281123824241e-11,0.0001491038489360429,0.0010374880137693529,2.1280747587542537e-05,1.1958830904606766e-06,1.4274452072183362e-07,0.878631170666596,0.801897356436409,0.8202331887555377,1.4684496368369426e-08,0.9433523948375508,0.7171140873758125,0.06437646849911137,0.5130428587413114,0.9301433206493954,0.00011570704175832876,3.6215129549550468e-06,0.9117574673614207,0.7638880844797328,0.933548702342514,3.0637688447968924e-08,0.0007972245942530348,1.801796791589877e-07,0.7325658019448008,5.0558158131178974e-09,0.00038443999730814995,9.816161379528941e-09,1.3231467332937731e-08,0.0006055426560131851,0.0006929277916225213,0.001113556033200177,0.0003574442318999852,0.9999751246357954,0.001820199986918805,1.2477003596188322e-31,0.0003613414270558622,1.1671935987345407e-05,0.08911159770162311,0.2557878974749626,0.8629053046729515,3.8964571219436227e-10,9.142159744052308e-07,1.07282278967024e-11,4.338855332890926e-06,9.840726748208736e-05,1.2409265475422082e-30,0.777328205766194,7.055450923108949e-29,0.7573443217218316,0.7830069887141359,0.9720275337640969,0.9948255176543745,0.0003079854320903876,0.9355863907001862,0.0003586688503201464,6.349289174749164e-31,0.9423248062564206,0.8548978641695879,0.6123167697229167,0.776775843333773,0.7834751576600194,0.7458482926244673,7.991162058967526e-07,0.00020354494459029777,0.00039214550448636685,1.938430567719532e-05,5.297463929851331e-32,0.00042701033707478835,5.901004910112942e-24,9.187781199585566e-34,3.431935755534466e-07,0.8381547908759481,0.9629773264390347,0.9504773399308248,8.611055822127799e-32,0.0020590220449801314,0.000256142234434081,0.0004899697276857784,5.684887620955019e-28,0.0001184597205541453,0.9999199098498026,0.7441545841439837,0.7660451411788526,0.7590767070305521,9.555140823492747e-10,7.913054064558585e-24,0.2900575377229334,1.1940826881196949e-06,4.541477340702762e-27,3.466854260655358e-08,0.8880699861227218,0.00042000607259450604,0.0002959095539495737,5.953160232394431e-06,6.0153612650914434e-05,0.6617336083893186,2.60663590160085e-25,0.9390083077587507,0.0006223173887878375,9.448322315480821e-29,2.0864271010482144e-06,5.360045878970439e-08,8.944470248156411e-25,4.412442424169239e-08,7.024048044402437e-08,0.8888021586801893,0.7611285812932582,0.3774642294629874,0.9097663608788723,0.835775739137721,2.3568023486279856e-33,0.6786871307168884,0.4714044305974201,0.6332351653383146,1.0027932394722297e-05,0.00036669693877447516,0.9999690152086455,0.002680343363052874,0.0033281936549372877,0.9999311846039991,0.0024090299053834974,2.17322372891592e-33,0.512806441424922,0.00022285502221950092,1.9539677233406556e-09,5.876843808894388e-06,0.0009882765265470368,0.5922093550198237,0.9100845080858155,0.7979230178792421,0.9999747341354424,3.754282476477667e-07,2.6234281437275885e-05,1.0157044058026636e-08,0.003271016066355678,0.7550708083968332,0.8379208598086424 -खीरे,rgb,1.6508822091652142e-13,0.9999999884103635,0.9999913819364432,1.0,0.9999993678334047,4.9528444582115314e-05,4.523236490220701e-12,2.7854076963150325e-08,8.549489318816732e-08,4.8784134750997707e-08,0.999308452723263,0.9999555744476967,0.9999152554539873,0.999999995554623,1.0,3.021656556940909e-15,0.6045364924130878,0.7579552755027931,0.5416616188217854,0.1005233911511219,0.019613690801644292,0.00013009687683312467,2.8060302649982396e-05,0.00017484956912232333,0.46596495404970933,0.9353123586416568,1.529553665480998e-14,0.40368440133279604,4.5084077109313835e-15,0.9999999989496418,5.104593076680033e-05,0.9999984946068727,4.739441745720326e-05,1.5549247644901933e-08,1.0,4.418157148029056e-15,0.2694480482903993,0.0006925856830597001,0.004929882099007653,0.0001337361875384969,1.0,0.9999999922530677,7.102326576082344e-05,0.9999999998500193,2.8232699335660075e-13,0.9999957543966701,0.9999987395436651,0.9999910095598915,1.92378610327401e-13,4.2851883840127076e-05,4.56372843836388e-05,1.0,4.614001328848207e-08,4.3485901564944805e-05,4.020671222710226e-14,0.00014861552712216704,0.9999277487597281,0.9999517295256724,0.9999469140707259,0.9998523018632546,0.999253009901242,0.0072977409173282754,8.235804878297821e-16,0.9999999904205535,0.999999998985748,1.8173072176041575e-05,0.34552598974324483,2.9842048953059184e-08,2.9640260737299643e-08,7.100738996986644e-08,4.6759188035690375e-05,0.9999999999999998,0.9999999999999998,1.9673866730955805e-08,0.999999279627398,0.9999999849950363,0.8160030789423556,5.697961385895963e-05,0.000136107439574639,0.9999605513984304,2.857246728733792e-14,0.999899495949939,1.1752073070724183e-05,0.999967236796804,3.7520759453468156e-08,1.957340111248782e-05,3.9124787550778056e-15,0.0010157406679730313,1.1334512349608093e-12,2.7849008189952198e-14,2.2538917257183387e-08,1.9046370455274855e-16,0.9999008301328997,0.9999749340250409,0.9999667860407151,0.9999694447311296,8.586873039272635e-15,0.9999674450004835,0.9999064541748588,0.9999581060732687,0.9999617204036202,2.959533969488179e-11,0.00012848917530510994,1.0,0.9999753231031345,5.543513994568215e-05,8.091340347788387e-13,0.00020664182818718564,0.9939118568474294,0.00010226717400655662,0.7934658777299918,1.0,1.0,0.999978697284568,0.9997811183802006,0.999591757219053,4.171935272211026e-08,0.9992557231820747,0.999957415315797,0.9998834645880483,0.9999984509951474,0.9997454552062385,3.4346649107540416e-05,0.9999999999999998,0.9999708092951944,0.2473071494052651,0.9997958406774909,6.359435738193297e-08,0.0004054891842553728,8.405569313013711e-07,0.6495619067814068,4.520154360625313e-08,4.5793334512856597e-05,2.1340583983855647e-08,4.138892833824404e-08,0.24014882855657038,0.41134064302750656,0.5305200141072115,0.00013718713850883167,0.9999999993466344,1.0,8.802663743283342e-16,4.150261224618523e-05,0.9999999999999996,0.04411064916431966,0.3169433094203435,0.631784859765913,0.0001090204652992617,0.529336037470267,3.6191870414106696e-05,0.9999999999999998,0.00017736782245947097,5.643607270521037e-15,0.9992500911912312,3.7985603671344234e-14,0.9998747004150662,0.9999438160000373,0.8962223113097816,0.9868301317930844,0.204904758847589,0.7979223674351331,0.25769677141916375,2.6609387318149606e-14,0.734743578780553,0.4543817260347347,0.15982448781340214,0.2890976419150409,0.9999138442852407,0.9998393831559877,1.0,0.0003471700834032527,4.607976482190803e-05,2.8783238036070386e-05,1.5584241160965871e-15,0.0005858837595175819,4.148539722431523e-12,1.4162466863096086e-16,1.0,0.5560231740079575,0.8528475179808194,0.7789111046518911,2.7503312753448766e-15,1.0,3.168615500381729e-05,5.6023792875831236e-05,6.665308511165453e-14,0.9999999999999976,0.9999999602656149,0.9998409830072025,0.999937750249351,0.9991694654619266,3.135815583302373e-08,1.2341700158096114e-13,0.4256725623080288,2.7922120959010856e-06,1.4150119872786752e-13,7.621249985092213e-08,0.9999307435873536,4.810501811408178e-05,3.507831202151423e-05,0.9999999999999998,0.00012803519076368954,0.16115660783137484,1.6869554647152677e-14,0.9994416359128692,6.553318909248605e-05,4.516903889074022e-14,0.9999999999999998,1.0,4.514350133533664e-14,4.883628211481707e-07,0.00029992223329693276,0.512167502063457,0.999913933811965,0.06114214515478187,0.9998641592127688,0.9999701047406884,2.940018800549824e-16,0.9999938374375748,0.999999107872472,0.9999993806662321,0.9999999999999998,4.200845732151512e-05,0.9999999884857175,0.7808547798809528,0.8315668144539409,0.9999999882888112,0.6431875138634603,2.758278534221491e-16,0.9999984283768188,1.0,2.695588903053863e-07,0.9999999999999998,9.745312403633539e-05,0.9999986140180401,0.9999713551587465,0.9999811844782177,0.9999999995526092,9.975622417305495e-07,4.747241241843982e-05,0.0001109158535746748,1.0,0.997666344083894,0.9989044735938633 -गाजर,rgb,0.007453459256385053,4.6362763662757825e-15,0.9994200435050876,0.0013401630837050096,0.9997877960504984,2.308347719852667e-11,0.9236596229585046,3.2227499516925577e-10,6.675119038253078e-10,4.399368524411959e-09,0.9701130113891088,0.9948978987664864,0.9936548837790428,5.4270995330623054e-15,2.2062420198087263e-05,0.003809247765154732,0.9997462110792226,0.9996780293923042,0.9996788794588343,0.009043028240419021,0.9987421605862717,0.9999594247700034,3.807283304557556e-11,0.9999973192139834,1.7153959261830534e-11,0.9999986380746423,0.0004032351448655782,3.580118078377022e-11,0.004445859353719936,2.932773937448248e-11,2.3919986323517874e-11,0.9990061534880093,5.891136549420573e-11,5.172836042679608e-06,6.46287317203254e-07,0.006621026781273181,0.04129142900945132,0.9997769756235262,6.180772830099358e-10,7.584270701975255e-10,0.0017267492647359821,2.5704441384837754e-09,3.476343428140121e-11,2.4857446862543913e-11,0.5335689970502201,0.9906866813695316,0.9984173271911245,0.99943185074421,0.340030535422066,2.6734793014102202e-05,2.5726147333481276e-11,0.001744583894828375,1.267500584768057e-09,2.437411090702442e-10,0.09877436174967721,3.131410729561947e-10,9.195210794080026e-06,2.8475176380107288e-05,0.9940663954186689,0.9913809476722278,0.9734418563338032,0.9986386839668784,0.0005043874610055963,1.600591977618996e-08,1.6347133131644022e-10,0.9999817754586019,0.9999987319048005,2.0721588617177227e-09,4.783758735490961e-10,4.789573649569643e-10,1.3883416927712507e-10,0.003223388305855948,0.0027989589387010278,3.2105933686983747e-09,4.253439300410864e-15,3.474279323134004e-09,0.9999989789135958,0.9999914343584284,0.9999730021589811,6.453542745039256e-05,0.0008015874094210699,1.628596219923644e-05,0.46000224357388475,0.00028251981048463954,3.787865448300213e-10,0.7574501943903256,0.004125047328996603,0.9998841613551285,0.015567145821005792,0.0006752008336037913,3.962469497724705e-10,3.90240862847348e-05,2.4844850288556058e-06,4.803405835863185e-05,0.0001114806907724483,0.00022278456093408947,0.01119750573287699,0.0002972135657789303,1.2170213609951742e-05,0.00024461356793429776,0.0008786362217385464,0.9894611709622003,9.806673296246126e-10,0.0011284899793237223,0.001314869173001458,2.143436046360806e-11,0.8060321776693559,0.9999968770787997,0.9999975469148645,1.2929619722839715e-09,0.9999959534135598,0.0018954687716653221,0.0003252216266346124,0.986677187522571,0.9823283496182674,0.968349804615708,2.390111142858646e-07,0.6482600643930369,0.9958311312395517,0.9998986866074023,0.999198432165065,0.8775341593841733,5.8002806883182045e-06,0.005286258061482548,0.9748912566613303,9.725421177867267e-08,0.8848877106855493,1.6090250972891636e-07,0.0006229147990893511,0.0006211490202946456,0.002046939483520173,2.670919130835908e-05,1.909095848481236e-11,2.886790687873128e-09,3.7862196533348314e-07,0.9991763209262567,0.9995972767728281,0.9995807405698831,9.18442478268171e-05,4.568489712275927e-11,1.295774805079103e-06,0.000307970051447013,1.5627433370376799e-10,0.007792007970115752,0.0021211022047796695,0.033112743365293025,3.9929887811105736e-05,0.9999783539552267,0.9999990111519631,0.9999922315139459,0.0063211671509954956,0.014190144881522503,0.007862114119728848,0.9676179107853137,0.0919443717279864,0.9910928245406324,0.9925350960141984,4.236324880535798e-12,7.193889982661176e-11,0.9995249039466375,3.2577509043507066e-13,0.9995942196544915,0.14367326824310447,1.2057373831437873e-11,5.303498761964368e-12,2.2593862036276837e-12,1.1073778079571124e-11,0.9909022222027504,0.9906930437148275,0.001320660740645405,0.019012604760422915,2.6043474833107985e-11,0.0018798776810055946,0.001370862304358909,0.01480339900608493,0.9169770099282478,2.2013349505052413e-05,5.175481931505273e-05,1.1190793263713854e-13,4.354259433999522e-12,9.231403124339496e-12,0.0038348200977586203,6.144252614506412e-07,4.851963297054559e-11,2.168357615010157e-11,0.13361184426527953,0.06405750328991316,5.82282900027341e-15,0.9908586569497603,0.9931657878119171,0.970171676543633,0.0004628080998356188,0.005997027101268335,0.061119608448890105,0.0004676026406443281,0.24347584952972423,3.7422657683058913e-07,0.9746275424178734,4.398738267247132e-11,3.254140723465505e-10,0.005780308393084271,0.017025371941418854,2.5741191482809196e-11,0.0003249182279625093,0.7389452068346448,5.557128336844245e-10,0.11412508942153148,0.0031722537689414464,4.146114324153812e-05,0.001957770716233024,0.0025668924945480517,0.9995853414000692,2.2203214570658927e-11,0.9923775812799697,1.9747228136895216e-12,0.9469226323033609,0.9907335405639179,8.896980971283353e-05,0.998026563710524,0.9993224268816391,0.9986286130411961,0.006775451670207952,1.6034716744253045e-10,3.9989351197679654e-08,0.9996300740839499,0.99965002966601,4.6620267222318196e-15,0.9993637264605905,7.89055782140778e-05,0.9991990162091586,2.0898313367126225e-07,0.14144907080020466,0.004141978633624767,8.113454752554543e-10,0.998873674966197,0.9758303055444074,0.99438601432417,7.875740460623817e-11,0.00015592174168832808,0.00514177384669289,0.9997198891153607,1.4503704272152655e-06,0.932773482216297,0.9189763620948747 -गोबी,rgb,1.5727906616097388e-08,0.9981888330129037,0.9999673144842647,0.999999999999978,0.9999973856405603,3.01159751930454e-06,1.2158856295189999e-06,4.99782090151072e-08,1.1269973252591712e-07,1.1992512467765993e-07,0.9964495594880157,0.9997519289695115,0.9995595959393048,0.9991919011533898,0.9999999999999942,9.332426836943429e-09,0.8992383503520273,0.931250040695449,0.8733346360695116,0.034143044693649684,0.22151574183092473,0.043559621665728486,2.3001591494020933e-06,0.15213177073377895,0.0020658040863106124,0.9968766733273979,2.6744889119901716e-09,0.0019801946723795503,9.289159685924393e-09,0.9999478673305912,3.091477575634101e-06,0.9999905793762744,3.499774130890872e-06,3.0784630209953434e-07,0.9999999999998157,1.261178813604896e-08,0.10579035875630051,0.05920315514366016,0.00011668302453859161,1.1236254708483731e-05,0.9999999999999416,0.9998861054030789,4.106747376498858e-06,0.9999895869198449,2.4539296624128815e-07,0.9999537856503464,0.9999904622453899,0.9999664151656836,1.4539896603173862e-07,5.0979128437170236e-05,2.916428748664324e-06,0.9999999999999485,8.930623462843149e-08,4.3595496377795396e-06,5.888287562766199e-08,1.0113994577421544e-05,0.9717350491401976,0.9836629432002937,0.9997007435667608,0.9992543088089124,0.9963699329489235,0.12694908144754408,3.1724540059453253e-09,0.9999065860394828,0.9999636947095522,0.02139707258472606,0.9709750902508237,7.664672660707693e-08,5.622771534373663e-08,9.426332266627363e-08,4.0932829283808465e-06,0.9999999999999547,0.9999999999999194,6.596368926042666e-08,0.9525382300440733,0.9998153800844019,0.9936881879496637,0.05354077739285463,0.05241418568037789,0.9883188345182233,4.067445719693232e-09,0.9680773447133847,0.00033875774072462543,0.9927667046880778,6.157033738193808e-08,0.0006733850000625771,9.123845118390872e-09,0.09190193437249221,3.67023173513049e-08,3.759652377522527e-09,4.6056095217737257e-08,8.354870103587208e-10,0.9530490086374945,0.9911695209263091,0.9909480458467629,0.9927557303656014,1.5563756135803113e-08,0.9928861955743095,0.9677708851724126,0.9909743248916462,0.9937538772607722,5.461866625358895e-06,1.1519921587406685e-05,0.9999999999999696,0.9959530866023167,3.1932226332169476e-06,5.695312469547058e-07,0.15444643328378382,0.999311809945031,1.050149163867374e-05,0.9875362084798713,0.9999999999999583,0.9999999999999862,0.9998119294606482,0.9987397059215011,0.9975755544812489,2.630602106666767e-07,0.99151948954211,0.9997750124785688,0.9998591839087118,0.9999910470702984,0.9974196545405516,3.123259705569026e-05,0.9999999999999194,0.9997062921172302,0.005580482127019288,0.9978628718904587,3.073654462486979e-07,0.000447483728361935,1.001068282251433e-05,0.14612268842974024,8.403257215009007e-07,2.7622996241453218e-06,6.760993316129249e-08,2.907789401353495e-07,0.671258135583227,0.8165670820592719,0.8593063421795478,0.00014185965537672979,0.999967840109673,0.9999999999997804,2.168590982535508e-09,3.879902479301841e-06,0.9999999999998608,0.013391168683189802,0.11561904583367812,0.06096779955806824,0.050865494617312434,0.9841713095351285,0.04444532900577248,0.9999999999999096,0.0005812206513019638,1.3318274547854804e-08,0.9961326918045194,5.6154143328482736e-08,0.9993365577801093,0.9996636632420617,0.008100684702360665,0.06134655264349747,0.6814049214539293,0.002953124556935596,0.7339644369052322,9.809541601279265e-08,0.004369077579700268,0.0016146720013978614,0.000493882500316675,0.0011177236285201885,0.9995005373074557,0.9991852155016462,0.9999999999999667,0.0009590141467522765,2.9414228730973357e-06,0.00011141670789999923,5.3645060765581325e-09,0.0012525514292931908,1.1393463147420717e-06,6.20792029013771e-10,0.9999999999999876,0.001088160946661157,0.006132523391939311,0.004934057639474146,9.74670712368187e-09,0.9999999999997877,2.6043089183254827e-06,3.2220804080017556e-06,6.969949555346457e-08,0.9999999999993143,0.9952971598669896,0.9991959855081752,0.9996455773053309,0.9959268436418466,1.415330267655992e-06,1.3363945627377479e-08,0.17559485612970108,1.9002452260443107e-05,1.0798634365692306e-07,4.1333767918246256e-07,0.9994208211544635,3.341285893722607e-06,4.020638291875822e-06,0.9999999999999007,0.0004971607254156754,0.0007746667412828018,2.4853188291060504e-09,0.993925739303742,6.6692222979813685e-06,6.488959972692109e-08,0.999999999999942,0.9999999999999933,6.583201075365953e-09,1.0541270862550138e-05,0.029463578204091522,0.0024663168300469124,0.9995278199795575,0.00022974828050739061,0.9987750105882812,0.9997806678160618,1.2892013411762066e-09,0.9999622796372428,0.9999946729349365,0.9999949821376998,0.9999999999998737,3.9297601480263486e-06,0.9999101441985077,0.9339736447832511,0.9476998367947334,0.9981751581792775,0.880036678013425,1.2097003695893535e-09,0.9999909409982038,0.9999999999999338,2.392135888531593e-05,0.9999999999999094,9.280309385239918e-06,0.9999908155769907,0.9997140227936723,0.9998702646133895,0.9999789651377637,7.828449309425181e-06,0.00019619123007656153,0.019145356688612954,0.9999999999997018,0.9887296162245012,0.9931909881606497 -गोभी,rgb,1.4278197791884608e-08,0.9982273142740885,0.9999678095425995,0.99999999999998,0.9999974465311864,2.8487379722577886e-06,1.117219554772231e-06,4.6389300514364035e-08,1.049317429425097e-07,1.1155824472546188e-07,0.9964520557925991,0.9997542513969823,0.9995628575188743,0.9992113463227283,0.9999999999999949,8.41101785627869e-09,0.8977562818226373,0.9303224820401943,0.8714335226785593,0.03320440608342397,0.21658801405120764,0.041918946571986075,2.1727613708393673e-06,0.14735468020987447,0.0020066631784054958,0.9968546861894553,2.4120486528653674e-09,0.0019225047154671437,8.37726952352117e-09,0.9999494451633651,2.9245605018620044e-06,0.9999907672615138,3.3109282457020126e-06,2.8617501483721605e-07,0.9999999999998317,1.1378835302943091e-08,0.10344627452055334,0.05718684980297935,0.00011184501137228529,1.0666660926469657e-05,0.9999999999999467,0.9998890268298465,3.88881426045989e-06,0.9999899603966119,2.2391544216328486e-07,0.9999545184294779,0.9999906551847557,0.9999669200793728,1.3248303537068722e-07,4.839891499097454e-05,2.7581904580962314e-06,0.9999999999999529,8.303351984868554e-08,4.124908112993669e-06,5.3442426069334914e-08,9.601725097664462e-06,0.9717820777735023,0.9837146456599029,0.9997033710512497,0.9992585387509585,0.9963718798488564,0.12349683412193015,2.8485181546928022e-09,0.9999089716161401,0.999964813135734,0.02048439819263605,0.9705185820607293,7.11934384061842e-08,5.2204234137215483e-08,8.771570571327909e-08,3.873143002972505e-06,0.9999999999999585,0.9999999999999263,6.121285056782845e-08,0.9529625132225982,0.9998197777746763,0.9936244203393596,0.05149284006308977,0.050475337749586735,0.9883656327181504,3.674400421257542e-09,0.9681065294651983,0.000321766902673501,0.9928030584755331,5.719550778792624e-08,0.0006408241701666438,8.226100565413497e-09,0.088987578352917,3.346791317188634e-08,3.3958018458746046e-09,4.2728046335091765e-08,7.468762229860355e-10,0.9530673174560907,0.991215549115549,0.9909903961440031,0.9927930174878231,1.4061670444163174e-08,0.992922199578745,0.9678039307027355,0.9910128858386761,0.9937848704133546,5.045722582348465e-06,1.093553799907099e-05,0.9999999999999722,0.995978829767841,3.0213921182716786e-06,5.212494077927273e-07,0.14964846074086002,0.9993113880398226,9.96344213618044e-06,0.9873950843954235,0.9999999999999618,0.9999999999999876,0.9998140050092544,0.9987450259814639,0.9975808378486634,2.4490816070297767e-07,0.9915136359583334,0.9997771673549823,0.9998603859590931,0.9999912258566931,0.9974271684831215,2.9619842076015632e-05,0.9999999999999261,0.9997091830182623,0.005419078685185196,0.9978705048296317,2.864298155712353e-07,0.00042783379723612187,9.417204528870763e-06,0.14344160716625873,7.837346819168779e-07,2.6122478801487345e-06,6.275164584330545e-08,2.7074851833868367e-07,0.6665744803098465,0.813760223520406,0.8571976508503514,0.00013515078799822435,0.9999688612791582,0.9999999999997993,1.9461995739022168e-09,3.6701869709136436e-06,0.9999999999998723,0.01297791450944396,0.11313951267939608,0.059655512347020136,0.04896136818294954,0.9839540452365879,0.0426863640173768,0.9999999999999172,0.0005551061750846645,1.2021944974936824e-08,0.9961343817960158,5.095740026664855e-08,0.9993406238873335,0.9996665259061527,0.007917299653864486,0.06041224090326605,0.6767345275765503,0.0028779257666846953,0.7299343355448539,8.904569191080283e-08,0.00425745730737861,0.0015677740420222193,0.00047747570364164505,0.0010832947530044334,0.9995041300826711,0.999189613140874,0.9999999999999696,0.0009176706825455618,2.7819088172027057e-06,0.0001058215418807265,4.825587314132458e-09,0.0012001208926438614,1.0466389371648133e-06,5.544336587653617e-10,0.9999999999999887,0.0010567702024001993,0.005986849878752104,0.0048109572815782835,8.783693280431899e-09,0.9999999999998059,2.461016194396762e-06,3.048792013084929e-06,6.332743626693754e-08,0.9999999999993674,0.99538041214901,0.9992003546482291,0.9996485039075609,0.9959275903084696,1.320165395264657e-06,1.2123357540331998e-08,0.1722961801387205,1.792963140342557e-05,9.829964099329957e-08,3.854660217095029e-07,0.9994250815904051,3.1608774277925125e-06,3.802356535259914e-06,0.999999999999909,0.0004744457801860598,0.0007494055766330231,2.2415499563309604e-09,0.9939275274037563,6.318564673532816e-06,5.8914075532128836e-08,0.9999999999999472,0.999999999999994,5.955853486084829e-09,9.90775113346533e-06,0.02836021671076828,0.0023971134717833235,0.9995312561256876,0.00022145413648424534,0.9987812493177433,0.9997829107614593,1.1540460160538447e-09,0.9999628647238399,0.9999947883526712,0.9999950944096654,0.9999999999998841,3.7174950145864783e-06,0.9999124141821879,0.9330980877560026,0.947042578525392,0.9982138768899083,0.8783096375398363,1.08266229834965e-09,0.9999911215233401,0.9999999999999398,2.2487428001558613e-05,0.999999999999917,8.802579740724616e-06,0.9999910003858042,0.9997168580418389,0.9998717943055544,0.9999796590701894,7.363950624794199e-06,0.00018665293949688297,0.018378651620660928,0.9999999999997271,0.988694796231689,0.9931838566709819 -घन,rgb,0.19570364805609852,0.999999998996854,0.32059726978749103,1.0,0.8261073239679573,0.7515108825753887,0.13412655964104547,0.22532026582406553,0.1755843957137417,0.0778407499475697,0.030974102335760943,0.13344587671193783,0.09096848922093505,0.9999999994965276,1.0,0.9965587880147038,0.0006074381969462507,0.0008134010325549884,0.0005524383934193313,0.003221673055573215,0.0001637075148982305,0.0001148241257661605,0.6708239872481399,0.00028278234063848436,0.9887216926081865,0.0030466379603680204,0.6790759687732542,0.9811198710665343,0.9905869225323012,0.999999978909403,0.7491263818835586,0.6701564963886851,0.6429969183306962,0.004457082645080657,1.0,0.9949305869529874,0.0029860224353267547,9.431018336153925e-05,0.6401663155788353,0.3711375124646256,0.9999999999999996,0.9999987467069387,0.7240931117380773,0.9999999967805051,0.7332193835312643,0.4931085153743325,0.7045859548036759,0.3132491476540263,0.7160607089473293,0.0037062212670900298,0.7367850590559014,0.9999999999999998,0.1318378396475575,0.45360536059444656,0.9430447303577063,0.49010284066323195,0.946373259935868,0.9336422437238732,0.1211523697346814,0.06642688027204212,0.028989528158268215,0.00013127985983448246,0.9990703075358386,0.9999962819451441,0.9999999489793444,0.00018098611299471876,0.0008685270333604585,0.10620245573931951,0.1936163445788261,0.1988987403642309,0.5316829621388075,0.9999999999999998,0.9999999999999989,0.08788682660322349,0.9999999778420541,0.9999974476467741,0.0019996158104021392,0.00019840590360811587,0.000126176730198615,0.9193904030821789,0.5294467960470574,0.9176229123347801,0.00013726399968765402,0.8767859728997371,0.21330988939315612,0.00011199270274109318,0.9931113123820633,0.00010323625322291131,0.037227358893450115,0.5256694217369554,0.20730930167555273,0.99977030971008,0.9628131195604949,0.9457847706918525,0.9108860666898396,0.8911744588443069,0.9825276521565107,0.8750877153265192,0.9297385418046776,0.864750186012138,0.8055711460772251,0.052216253705270624,0.33855739263826085,1.0,0.8273954799531267,0.7636001825892055,0.5647103432885292,0.0002581118748744374,0.009018109903933352,0.2963738968555374,0.00128771141741941,0.9999999999999998,1.0,0.22748365779157934,0.057278964132981204,0.04293531510150748,0.014198540855503976,0.0529538744159645,0.13460472749076158,0.06391265536273029,0.6647040238013002,0.07412946836649255,0.006626260062164974,0.9999999999999987,0.2041759457358036,0.3754457537279629,0.08338017249354149,0.016753807443134105,0.0017161765611527697,0.00080920187802435,0.01609824511187097,0.002358725518191632,0.7673201531578387,0.09196772461228263,0.011770002037539645,0.0003566254576355287,0.00045717324913687585,0.0005469649859995564,0.00281891351519494,0.9999999825440596,1.0,0.9977953823315581,0.5096296540532465,0.9999999999999949,0.003972657673521485,0.0035052588630552165,0.07043730009290938,0.0001355510466470684,0.0012095362084293439,0.00022308048171278924,0.9999999999999982,0.0005144180488554298,0.9915552305852459,0.02993230432849395,0.9454185332042974,0.0739374144518329,0.11970859981133704,0.9981888606461682,0.9969053860462189,0.0003257396170901563,0.9994218613185667,0.0003580811133829983,0.9926528468076543,0.9944195037029275,0.994085306818477,0.9933482030835005,0.9878806661142395,0.0937248124467312,0.06362745598994596,1.0,0.0005299988501651559,0.7359000015691153,0.0007458626711762421,0.9981917075786926,0.0006349262763830177,0.14103380223527093,0.9998219540827861,1.0,0.9994895680668551,0.9977798091771625,0.9957005143659907,0.997532126493918,1.0,0.6471299811330543,0.7628867306458263,0.8766102074634003,0.9999999999996709,0.9999999969240188,0.06388433456643967,0.1112645506235514,0.027769201025684965,0.0009725614033425885,0.24437491334474143,0.0034337208753258412,0.0009402392129413079,0.7459309346729507,0.011838853833752154,0.1225257824012678,0.6790506656017724,0.405471353467485,0.9999999999999978,0.00046120367244923717,0.973897959127727,0.6356718932679964,0.056700058585665486,0.370947560020949,0.9379100667294489,0.9999999999999996,1.0,0.44827405638002743,0.0005226244059790252,8.538701413273113e-05,0.9879567315673913,0.091906618152249,0.9906877553259813,0.09159916534958845,0.17992051763346625,0.999670654360575,0.38973479732974375,0.7641601378202126,0.8173119653738425,0.999999999999996,0.5068702343231072,0.9999932385530144,0.0008616417521624818,0.0009880304485214242,0.9999999989848845,0.0006669886336728109,0.9996873514471001,0.6618830532306438,1.0,0.00019957138473932423,0.9999999999999984,0.3462549664742429,0.6860143459560335,0.2054244739136931,0.2258850459185017,0.9999999835092315,0.0012887081455907057,0.0005766275830652035,8.521554380763475e-05,0.9999999999999998,0.017834273053279972,0.02863054286834853 -घनक्षेत्र,rgb,0.999523796195596,1.0,2.100696707653394e-08,1.0,4.2247789358992205e-06,0.9682514864482927,0.9781143355928138,0.7395461059032247,0.33832921083205797,0.03881557520464941,1.1694837105164054e-10,2.1975740935132537e-09,9.066744273588888e-10,1.0,1.0,0.9999999999999862,4.6655262263367557e-14,7.200148264896207e-14,4.1708280717962284e-14,7.283538861983622e-11,1.5425071705923198e-14,1.2118193566371304e-13,0.928393890814971,1.3987616448013134e-12,0.9993429929786137,1.1983146516823919e-12,0.9999998792516179,0.997171652016416,0.9999999999996037,0.9999999999999982,0.9663522728577641,5.935474986724606e-07,0.8611132330263432,8.081043858842601e-06,1.0,0.9999999999999407,2.4803762540598572e-11,2.3931276850606736e-14,0.2063036200974207,0.08574347156226209,1.0,0.9999999998574176,0.9388909373414712,1.0,0.9999994915823298,1.3538779097924984e-07,8.794088445759038e-07,1.945224858099537e-08,0.9999995022331458,2.4294338141246335e-08,0.9619592098659162,1.0,0.20954052527242711,0.3673356399372728,0.9999999994638149,0.28714954180063196,0.011720880289068333,0.0043334370071706095,1.7715570661551365e-09,4.65927425873513e-10,9.93450359146215e-11,1.516297297303005e-14,1.0,0.9999999962916517,0.9999999999999727,1.700885726784846e-12,2.2322369569080128e-13,0.14029632031886524,0.5989194364953324,0.4831782821044658,0.5958754096213508,1.0,1.0,0.0998343840491905,1.0,0.9999999991771986,7.057805705802863e-13,1.03460555732965e-12,1.5427045689815755e-13,0.0019380628667183216,0.999998714130928,0.0035123138920993588,1.5435617446371136e-12,0.000382775391659914,0.6520519909063939,5.628506845104202e-13,0.9999999999998623,2.3895812026668567e-14,0.6776787639654389,0.9999986850598608,0.700284203102678,1.0,0.04730951326548164,0.0053237555988177665,0.0012123684289216522,0.0005670982144689241,0.9999999999957456,0.0003626594597021734,0.005727116980493118,0.0003261158829419911,7.750489588915283e-05,0.33867062977436596,0.05807658907062936,1.0,8.9296419103265e-05,0.9720285475266286,0.9999894363184714,9.550709719797195e-13,7.06254428148338e-12,0.0375506004942103,2.136934168159544e-13,1.0,1.0,1.0251293785830887e-08,3.834082742189644e-10,2.3390647510138095e-10,0.00017097438576171335,7.630225074322779e-10,2.1852401914277237e-09,2.921166697317179e-10,5.559949604273067e-07,1.0704850138089128e-09,1.7800438321771862e-07,1.0,8.49302202599047e-09,0.0004947327137865433,1.3646139408177814e-09,0.00022052014751811172,4.647465247959772e-10,2.638801918505387e-09,1.7529791245263895e-09,5.349397208520967e-07,0.9768217990702122,0.10954153475686447,9.436992530524039e-05,2.695800064136497e-14,3.3281641456724355e-14,4.2126734922958336e-14,4.6663975682338255e-09,0.9999999999999987,1.0,0.9999999999999987,0.5476949471038955,1.0,2.621283337467042e-10,3.522748543022847e-11,2.3441538151764323e-07,2.1992018415014326e-13,3.710535006324064e-13,1.9824578358575816e-12,1.0,1.7594660295010953e-11,0.9999999999996636,1.1109428408679803e-10,0.9999999995512863,5.957209005071755e-10,1.7805770833207551e-09,0.9999898978741083,0.999759778041659,2.2823602939560534e-14,0.9999998340734595,2.4923385343068693e-14,0.9999999999993145,0.9998421448296825,0.999916797154617,0.9999560794962346,0.9995105514442156,1.0288215846833347e-09,4.2897898308072816e-10,1.0,1.2276296524698706e-11,0.9611931510439087,1.954454594059603e-10,0.9999999999999989,1.530758927909076e-11,0.9826706073283321,1.0,1.0,0.9999999487623268,0.9999854652104609,0.9999179464086778,0.9999999999999953,1.0,0.8957365489739139,0.9714951845790943,0.9999999899771702,1.0,1.0,4.314941169058432e-10,1.4735088474256515e-09,9.347674225583615e-11,4.012871845107554e-08,0.9998362719521787,2.3711977725297444e-11,1.928936690018631e-09,0.9999997489459209,6.452812676134224e-05,2.330906890937262e-09,0.9104179055781021,0.2658461600471038,1.0,1.5473184485636938e-11,0.9966312054506262,0.9999997700888081,7.746348710353491e-10,0.13119855421889834,0.9999999992291562,1.0,1.0,0.9999951369623248,9.320532819899102e-10,3.132213832848096e-14,0.9990823642567033,9.553636607375062e-10,0.999938910547463,1.3828958474662777e-09,5.1274926183270766e-09,1.0,4.475205471627423e-08,1.726202807843115e-06,3.751880019142385e-06,1.0,0.537096869826237,0.9999999787802922,7.937948036387073e-14,9.725329840611607e-14,1.0,5.79369704318222e-14,1.0,5.40029418715061e-07,1.0,6.100173200202076e-11,1.0,0.07633020876004587,7.057483000248484e-07,8.573664008013842e-09,8.864354107746472e-09,0.9999999999999987,1.0368406293958396e-08,6.155850937473242e-11,5.864365329176362e-14,1.0,4.773705446097313e-11,1.2886054909413916e-10 -घनाभ,rgb,0.8578356964264673,0.9986356205125023,1.1950604416311887e-05,0.9998573038720031,2.2995603224866243e-05,0.6162318182947235,0.38671229328983625,0.6720990777836812,0.521382448343595,0.34832371364311043,1.198862266264828e-05,1.217978705153498e-05,1.13331379824995e-05,0.9988405389154077,0.9999945223437068,0.9995877373269004,3.212335262931645e-06,3.277442601711662e-06,3.352548809640711e-06,0.0001209828983330979,5.818142639577887e-06,1.241798972488197e-05,0.5759622578760722,1.4452129863127667e-05,0.48404195159928404,2.4412302360451287e-06,0.9870137387247182,0.3917415588613303,0.9990688982706231,0.9357106694473479,0.6109969867523163,2.061614397821908e-05,0.5031564811468707,0.038536075111135264,0.9999285819363419,0.9993563174198143,6.596981415619387e-05,8.435323498210637e-06,0.1597123690013901,0.20092995268850922,0.9994535688712981,0.479096663423348,0.5544870077725886,0.9675664818089188,0.9301000919541218,2.3015369347034235e-05,2.3217562410322247e-05,1.1793161125104392e-05,0.9398796771892108,0.002847264849962768,0.6060732170726045,0.9995295702399827,0.4877920893890221,0.33781748886423585,0.9907419137871415,0.27590298433160726,0.0032650119128507316,0.002144999250649047,1.2154308549539296e-05,1.10437822070236e-05,1.1521193505241097e-05,6.779369508887372e-06,0.9999105821894243,0.26941800597930443,0.8634190516369684,2.6751435773932508e-05,2.7178021028147303e-06,0.46175964281139714,0.626654073306866,0.5712503415660658,0.39930129422488,0.9995080682746971,0.9990455858774046,0.44225109263593787,0.9967643631871198,0.39907821897063844,2.4925297501334822e-06,1.8450393868455e-05,1.2357486511447348e-05,0.0015747984682327803,0.9742613924313581,0.002445637410707831,0.00011236146519544589,0.0008919052220124897,0.6370384872968599,7.096928851004199e-05,0.9992834661892716,7.341460945241864e-06,0.4765212192055055,0.9747692092381511,0.6637282995729,0.9999837790763075,0.005508210996937225,0.0019097275730394789,0.0012934898123317924,0.0009914970597191557,0.9980655157799573,0.0008749909338789054,0.0027950709531199326,0.0009089843552819852,0.0005573508980052747,0.12187753871431099,0.18257761519489565,0.9997924122704575,0.0005124605492099608,0.6212939473270847,0.8328493962641335,1.3221304604083853e-05,2.7197791369400684e-06,0.16788127583213355,2.3287811428984496e-06,0.9996285225187277,0.9999526134045585,1.731833400972082e-05,1.2282789257433711e-05,1.3016617387108675e-05,0.09070613399026796,2.6234109093107567e-05,1.1784878091652153e-05,5.500092302698536e-06,1.9862873407817137e-05,2.0354128806396598e-05,0.005503140363165044,0.9988140364082875,1.8875305630271205e-05,0.013577201840367733,2.0601942355378055e-05,0.09438780679172333,0.0005798426785012324,0.0020968001353187872,0.00019436533275831886,0.01513496091008638,0.6410523202298849,0.44822714569613575,0.07640958302580084,4.161012526625718e-06,3.5455204205702663e-06,3.4974284062789865e-06,0.0014333123761826824,0.9313266815194202,0.9998813398988438,0.9998477700581523,0.3895984327749569,0.9974032567631507,0.00021907893189782835,7.090677300133834e-05,0.0009438949773169159,1.3420711664326362e-05,2.6359190555519413e-06,2.2466175973156475e-05,0.9985537866207562,0.00021509037444963187,0.9990023636353506,1.2121475939141667e-05,0.9912535794778182,1.1425642046590488e-05,1.2631298479199905e-05,0.666500300742648,0.3371961190736202,3.856957131617836e-06,0.8840503845764723,3.69022674045753e-06,0.997853526261715,0.5310187264469022,0.6327853859566217,0.7326443790123313,0.5418276414235546,1.2225852391116968e-05,1.1086980046090313e-05,0.999753751247688,0.0001735157859625022,0.604279816029029,0.0006147822163836597,0.9998076180066027,0.0001741615505818223,0.4049764067213193,0.999988382902665,0.9999782678141345,0.9303367532681437,0.6609561273771816,0.5661532102909702,0.9996788347522052,0.9999195691895105,0.5418040283909803,0.6195825865521529,0.9804184807876806,0.9687867467992358,0.9979156883514146,1.1059700667420663e-05,1.216403910263946e-05,1.172124725858877e-05,0.006374531500486424,0.8910910630188719,5.5986319830061167e-05,0.0017020811577513877,0.9527451454268634,0.0651571939493217,1.615273634437896e-05,0.538828414507618,0.3139968993517903,0.9984273622272178,0.00021429649212138658,0.4372258575168335,0.9852593243345006,2.3909302114829265e-05,0.24373472168092475,0.9896043448815145,0.999335824158305,0.9999915246259676,0.9593908993345174,0.0015121176803773852,1.0937588017894088e-05,0.45096075564580473,1.1760019301935519e-05,0.7520713266964798,1.750890569096223e-05,1.4927799459432616e-05,0.9999738231417616,1.5670448775690238e-05,2.29988980192504e-05,2.8249505137283063e-05,0.9977894800261515,0.38618388225044953,0.18716308643548155,3.343478964605266e-06,3.309536865212153e-06,0.998627870997836,3.6914246187794953e-06,0.9999755822779013,1.9776444701713596e-05,0.9999856852712167,0.0005380465882233201,0.9987427575736714,0.20256232086195433,2.1492638887876614e-05,1.8769760103954004e-05,1.4761263186887658e-05,0.9214428112181811,0.003281534151164474,0.0003906046869192904,1.3822115448696981e-05,0.9998300680123321,1.3101139944865335e-05,1.4953687191239106e-05 -चीज़,rgb,0.4232267267120405,0.9999999675267403,0.028382664117825314,0.999999999990038,0.10948767670367521,0.9574376200973853,0.1447064695216842,0.806107612672421,0.7393868909595972,0.5356419004820102,0.008373812749546268,0.018164533696279263,0.014119144094034237,0.999999979056277,0.9999999999998392,0.9945278300637075,0.00034479151361606016,0.0004252628778915862,0.000335917825696196,0.0073118696026989475,0.00020177180957858302,0.00012823009949977177,0.941910720055158,0.0001720724260776117,0.9941439822687885,0.0005102936689812456,0.8567180926985664,0.9906756670679263,0.9880591463990864,0.999998912202908,0.956798364157413,0.07757318150625295,0.9315702244773458,0.0527772150119306,0.9999999999958553,0.9920280654060964,0.005320336868890013,0.00012724653100668645,0.8866854632654829,0.8024586074131574,0.9999999999472717,0.999964218220311,0.9496371404020446,0.9999997057802141,0.6884620102759541,0.06464241029476663,0.09064556859225603,0.027686528820900686,0.7012789145576763,0.0255017944588954,0.9546216744916093,0.9999999999562295,0.6772471380816178,0.8651782319667285,0.9257143690658777,0.8666279707509139,0.8500129737225183,0.8020831806159432,0.01724853136569617,0.01178972286946681,0.007872369210055163,0.0001823444444571607,0.9984990182874994,0.9998998085161778,0.999997384034227,0.00017858695652484016,0.00023706834004148512,0.6267571386055217,0.7736043747214423,0.7700673989121165,0.8965581899042305,0.9999999999527209,0.9999999998926494,0.5812471278827066,0.9999997454547387,0.9999392199446402,0.0003824800961929683,0.00016333243544071045,0.00013002930535922533,0.7553531018050329,0.768703041798637,0.7921136665062715,0.0006330143614115324,0.64041054926948,0.7919747873401813,0.0004480160638237327,0.9906671994670191,0.0001224342728209182,0.1345888548980634,0.7709330352972876,0.7909020247883033,0.9996440912933328,0.9006488090402398,0.8109248980887356,0.7243914391847007,0.6699953014722202,0.978104724735027,0.6361454577078337,0.8174326671390398,0.6294029419914658,0.5095151223395039,0.05203387742172265,0.7799261189888486,0.999999999984333,0.5175804596408959,0.9595247591587659,0.5043112855357937,0.00016272302309793823,0.0010877029519846574,0.7497177371365444,0.0003333409344323306,0.9999999999672524,0.9999999999975551,0.03158005793030611,0.011775148482661384,0.010523114129800924,0.1577966067565937,0.018282829741998914,0.01778799889297408,0.00634857875926816,0.07442904014012534,0.018871543703122842,0.04734811791590637,0.9999999998563396,0.03154695225282283,0.5944075670722426,0.020284136438204512,0.1793688412442079,0.00867574064545467,0.006844723911728434,0.0249928156614988,0.0259038821062796,0.9610561271945862,0.592521098580524,0.13302021255440394,0.0002943394435821041,0.00030912809970851655,0.00034608104946627226,0.016852160352938593,0.9999989727096308,0.9999999999921616,0.997332397139254,0.8894402651687753,0.9999999996109279,0.010768501544029455,0.006095483741579402,0.11761026483864918,0.0001346977749475393,0.0002818940846450322,0.00017993398264935413,0.9999999998147886,0.0024835821519613617,0.9879916090685434,0.00828254778632656,0.9288484492575657,0.012769723966310893,0.017643844365723006,0.9985793249122127,0.996594257785733,0.0002588951721845239,0.9995792381234897,0.00026783482443672044,0.9826264677916667,0.9964749695081949,0.9968897729325871,0.997184415992486,0.9943865785841491,0.015165424842721473,0.011564327190339913,0.9999999999805498,0.002359963122438354,0.9543847700366491,0.004665544735053652,0.9971162181379499,0.0027129683046815223,0.15219484108657447,0.9997303744978273,0.9999999999991143,0.9996851774687492,0.9983765629112487,0.997157207379644,0.99573177988231,0.9999999999951441,0.9352509305310973,0.9593316701907331,0.8615898546534531,0.9999999898836854,0.9999999282536498,0.011567662540272135,0.016513846844473188,0.00778238331902066,0.009609436117135809,0.48591162967648244,0.005393149115211858,0.007458945402522819,0.7393584392605043,0.1301298606248179,0.02130932157283149,0.9408755859894443,0.8438648164470717,0.9999999997948716,0.0022746950936239066,0.9893239325306072,0.8414898644726845,0.017971829611325634,0.8143021512585322,0.9189326905970636,0.99999999993145,0.9999999999997209,0.6944080520423888,0.00424463064015482,0.00013384748197511168,0.9935825696740829,0.014589622061554407,0.9966390086813082,0.01922080412805301,0.024825281530994073,0.9994714759799431,0.040425839959954475,0.09897954123542728,0.13042426654911946,0.9999999996837283,0.8882428672860272,0.9998261679236522,0.0004488754064285072,0.00048482179706493253,0.9999999672353357,0.0004130737736911868,0.9995008997901604,0.0738343187123914,0.999999999999466,0.001252992266899582,0.9999999998466378,0.79072951375948,0.08240731205854186,0.03153406843477358,0.027917500513278206,0.9999989215458658,0.011406763825663038,0.0033011483990941517,0.00013358359839322345,0.999999999987482,0.006575875061028794,0.009257247190808553 -चौकोर,rgb,0.9999644437903262,0.999999996550607,6.236715747660746e-07,0.999999999991545,2.505365465570015e-06,0.9992406205220349,0.9979264437203192,0.9995113047525902,0.9983908501042763,0.9939119422878034,4.816433294731483e-07,5.690014725518781e-07,4.823225379953713e-07,0.9999999975657308,0.9999999999999845,0.9999999997124149,3.8233398503093e-08,3.9960123450468855e-08,4.095297768606213e-08,2.656485832650605e-05,1.0523346879988813e-07,4.917638500013865e-07,0.9989540797308992,7.516015465733736e-07,0.9981887959673629,2.9273583069283772e-08,0.9999997144491191,0.9963015684403314,0.9999999985835375,0.9999948786208855,0.9992085399671091,1.8539121568541758e-06,0.9981891329846109,0.5660168503476422,0.9999999999970499,0.9999999993285373,8.800083124696668e-06,2.202991890626467e-07,0.9611556697617956,0.9757502368452958,0.9999999998796474,0.9989764202384491,0.9987762812658056,0.9999987989853252,0.9999940737450815,2.044288980110249e-06,2.3054877261080525e-06,6.075635216223019e-07,0.9999955004469661,0.008896708772796138,0.9991762950802937,0.9999999999106555,0.9979342042017095,0.9934296552440021,0.9999998884797043,0.9887820219212601,0.01662129658604885,0.007734833772592539,5.608275592229036e-07,4.469779214531247e-07,4.4691957780530015e-07,1.38898717303941e-07,0.9999999999842173,0.9942594787395123,0.9999753655540732,2.2240711575279814e-06,3.387614132009688e-08,0.9974935598322521,0.9992884374879474,0.9988981445716821,0.9960024535146802,0.9999999999047073,0.9999999996424116,0.9971033174288584,0.9999999791661471,0.9980536915772767,3.0134903208826084e-08,1.1304549653261907e-06,4.962465391040424e-07,0.00438328925457042,0.9999989167722062,0.009618899002835175,2.3119300978139564e-05,0.0015298585653916856,0.9993449898797451,9.981845767412668e-06,0.9999999991505628,1.737027772329128e-07,0.9986179002767376,0.9999989512480839,0.9994759368175855,0.9999999999993745,0.04281772269138244,0.006383570071180502,0.0030572036945075614,0.00186845577466093,0.9999999943038651,0.0014765970284337058,0.012355620950927067,0.0015702061349824803,0.0006334655501274737,0.9649943412425117,0.9698584649303768,0.9999999999820903,0.00055124036745061,0.9992714537541636,0.9999618913896428,6.284696517440691e-07,3.7145525568841054e-08,0.9636554747529255,2.4740756667963308e-08,0.9999999999442883,0.999999999998997,1.1097613833674316e-06,5.298094877385674e-07,5.713705587347616e-07,0.8756909926792621,1.9914585678269274e-06,5.383692050458289e-07,1.3774318896550272e-07,1.7377711898548863e-06,1.3092274725281213e-06,0.029939925834726638,0.9999999994631203,1.270453865577176e-06,0.1588903874090608,1.3512001467169553e-06,0.883944277102223,0.0004639754846507282,0.005151479203720731,6.729524076531482e-05,0.17753191422031306,0.999378216693998,0.9972299393389946,0.8323984664973936,5.857726190416129e-08,4.4794375093615055e-08,4.396433928487464e-08,0.002490090952583532,0.999994281522453,0.9999999999921461,0.9999999999539531,0.9956816062806896,0.9999999974859157,7.904655265315283e-05,1.009494535324637e-05,0.0012815571706632427,5.870109257606466e-07,3.2750704796605534e-08,1.6590120401760672e-06,0.9999999992091211,7.379805174470893e-05,0.99999999842405,4.896358657608861e-07,0.9999998999587807,4.789526776299773e-07,5.983328993244815e-07,0.9995870502008237,0.9948268726865993,5.143442146868105e-08,0.9999666045087625,4.7758341292710144e-08,0.9999999939241435,0.9987607187884392,0.9994247996043913,0.9997535467487071,0.9988117808414375,5.512137843304871e-07,4.4813235187043184e-07,0.9999999999750178,4.960989192499589e-05,0.9991646228286668,0.0005172280282384949,0.9999999999323188,4.9965338084347505e-05,0.9982058600284712,0.9999999999996663,0.9999999999997702,0.9999881495829924,0.9995632076433217,0.999057068657563,0.9999999998240829,0.9999999999962537,0.9986431885023269,0.9992614682416124,0.999999512942141,0.9999996577988873,0.9999999918993493,4.464038936057741e-07,5.56390286656604e-07,4.5895050375246e-07,0.04144852612309995,0.9999802024993126,6.5754668817574385e-06,0.0034592804160769788,0.9999972026537555,0.7818548409703271,9.170160655631541e-07,0.9986168791082697,0.9919387148797658,0.9999999990623101,7.335506363076453e-05,0.9973374928106501,0.9999996292609468,1.6995712559094752e-06,0.9845769610850614,0.999999860815443,0.9999999998268998,0.9999999999999643,0.9999973829402107,0.0028454365887169365,3.5190328696387207e-07,0.9976817172569392,5.145188111336873e-07,0.9997925654839133,1.0253565393615494e-06,8.351325253713682e-07,0.9999999999984617,1.0165355629479999e-06,2.3652067326154225e-06,3.468294106013451e-06,0.9999999981653271,0.9955638660188613,0.9860842600666049,4.142555078098321e-08,4.0975270956088685e-08,0.9999999965118502,4.849606578232009e-08,0.9999999999986504,1.722408301967982e-06,0.9999999999998732,0.0004383208347067816,0.9999999993911421,0.9761343161321844,2.005229788193341e-06,1.2591056788294595e-06,8.431248184801897e-07,0.9999926213559375,0.011734344222334683,0.00022303214784798027,5.566103672910541e-07,0.9999999999840239,5.391252899730461e-07,7.049022082027094e-07 -छिला,rgb,3.1889558782474304e-33,4.150989425181496e-18,0.1204787442646456,2.2277063164905656e-46,0.00035789713382479335,3.6634737033528184e-10,8.700279309857459e-33,6.605656479484352e-14,1.3965535736690129e-12,3.3600129779750985e-12,0.9942815007981965,0.8784155442017945,0.9414484117511127,1.2183103434521755e-18,3.705663966247623e-52,1.0643408526931612e-50,0.9467078486273456,0.967011581811805,0.9531140356630748,0.9837301301858193,0.7657492649854334,5.8948451844918325e-06,3.6539286504043565e-10,8.791770192743091e-09,2.0602132949579278e-07,0.00432951969804417,2.469702335768594e-38,5.62141512007478e-07,2.156916824134104e-48,4.5591948603425544e-14,3.9843175336017404e-10,0.014389445079807075,1.234471121473606e-09,6.471900494156081e-11,1.4220069101030444e-41,7.6991931016295175e-50,0.9951093231021627,0.0037478770650624348,2.3912550986577387e-06,1.0925134016356854e-07,1.0534494294847718e-42,4.667065569641489e-10,9.702254058102521e-10,7.332664276725652e-16,5.859530547287595e-40,0.35062587057696853,0.017168478885514996,0.12470005700144184,9.179512201870836e-40,0.0007699026550175396,3.860340485409874e-10,3.78730381039178e-43,8.269186866742649e-13,7.0949879296262755e-09,3.228062062473639e-44,4.018494541561679e-08,0.1452259329331706,0.24466360728404635,0.9058080987122445,0.9696658782212763,0.9943173621202122,0.5234699438060881,1.5360615198454737e-53,5.357406814268032e-09,4.012890166367958e-13,4.114538257480354e-09,0.0008975440641016931,5.629604070020883e-13,1.1639331803028374e-13,6.717764188358252e-13,3.753500476563493e-09,1.4195613947316072e-43,1.6058475973807427e-41,3.606134440681692e-13,7.408020575923834e-16,2.0091358377907532e-09,0.0016307024196168085,1.4063692015233622e-08,2.681242699122526e-06,0.3435297808502785,7.943247733770397e-37,0.26161863335270724,0.001378563252538254,0.5625175866653229,1.4536999854654265e-13,0.00246970617854321,4.104346030428624e-49,0.002751355327364755,4.044766916692846e-28,9.756299007999334e-37,5.356950043204382e-14,1.8921031444870906e-56,0.06048006403877207,0.22048844324218833,0.40474657129602,0.5075348485997202,5.389029500616278e-47,0.5694579687384569,0.20768937193051393,0.5900004669417852,0.7508496615609567,5.860876716865065e-30,1.4358069878394383e-07,3.930595344562658e-45,0.720060768056644,3.7715967520320164e-10,4.200202880845343e-38,2.2775802911470576e-08,0.011440662070222408,1.5549962267684408e-07,0.03999332508766382,6.561523850900389e-44,2.640423245996623e-48,0.8473146917594857,0.9843378102068869,0.9920869685591434,8.543577541713629e-11,0.9965508008129084,0.8577658627709599,0.30544276022246347,0.011909194802116767,0.9922401276987598,0.00018429958269994832,1.8229637303246035e-41,0.9151369458084249,0.010808993738537373,0.9907352649246265,1.5536122733244617e-10,0.09311575665606042,4.414150977338408e-06,0.989191345233614,1.934660248234672e-09,2.574938944237625e-10,3.8655349646320396e-13,1.191648934772213e-10,0.9602609332980387,0.9517490760831171,0.9629850893229391,0.008481304087655957,3.302395557717791e-14,1.0117795276590163e-40,1.5880568094816218e-51,3.790036002443057e-09,1.5324649001296328e-39,0.9451579538952833,0.9952307498243426,0.8557608814584159,9.301583356225859e-07,0.0007813519450484079,2.7434928485507453e-09,4.729858002446493e-41,0.10845016277214647,1.1239128057679564e-48,0.9947009083673362,2.5376359239483103e-44,0.9656449647503577,0.9213558872538555,3.388831732112074e-08,1.8268089307701999e-06,0.9265610578108612,5.96182262704381e-10,0.9293671531026955,5.709584931367381e-49,1.5031593172786152e-07,3.576403727093274e-08,6.355129960682295e-09,8.858139747925692e-08,0.95251745459429,0.9728357582376567,8.887413848276469e-45,0.24787810389850992,3.970302833302758e-10,0.004112798269305715,4.186342554073314e-52,0.3762883893681321,6.119994391950865e-33,5.899556610477699e-57,6.4973891101478734e-49,9.131725913055022e-11,3.4863495795754514e-08,1.0386516590414895e-07,1.8829640375254082e-51,3.462969225257424e-41,5.869265760350249e-10,3.8790208966571996e-10,3.133548044117211e-42,3.27409473205732e-34,3.600415214477143e-17,0.9723540879866676,0.9251328560351172,0.9948760404907745,2.0262666714370023e-09,5.908477541348149e-34,0.9967863270079502,4.206694072450241e-05,3.980849838918982e-40,4.4552683291669825e-10,0.9635905351222471,8.496282719704422e-10,7.862934470992878e-09,9.989462163025766e-41,0.07392799632736868,2.355493306884748e-07,9.383677634453745e-38,0.9958615709745051,3.2751916487736124e-08,5.274177604707979e-44,1.0947608374737807e-42,1.865776220954639e-51,3.48673820876647e-36,2.013331643225152e-06,0.0019039260836060006,3.126517151684335e-07,0.9478146144096988,3.338998710947867e-09,0.9844548752415526,0.8702632897940951,1.0009926803424375e-55,0.22096392259342276,0.0035363616807170687,0.003977482682311292,6.98964584668566e-40,3.975998218134825e-09,1.9590993847258054e-08,0.9721573942758713,0.972837297369131,4.256325468634019e-18,0.9789898004360538,7.859971867852657e-56,0.012208089835252893,3.2339638166526754e-45,4.1775118333784316e-07,4.481836826598288e-41,8.310645456767677e-08,0.014245384719998387,0.9121756980581085,0.7404997735939145,3.162904325772066e-14,3.619954738059168e-06,0.0126683930374056,0.0001413177790178627,8.712445102912762e-40,0.9975988082660169,0.9966705873099247 -छोटा,rgb,0.0018665603969547095,0.9999814394389441,0.000643843558059176,7.81466038454742e-08,0.00011427977613874702,0.9999869248100752,1.800017546332987e-05,0.999895222045239,0.9998828693390379,0.999695968677751,0.029980596039022558,0.004992869425708493,0.006815224431225243,0.9999731633318771,1.0809643846717061e-07,1.2554964664257177e-05,0.0024477059968401075,0.002824722223609742,0.002950750263598437,0.905291032593821,0.007756961490515275,0.0002419133600549172,0.9999832962731162,1.780959117071104e-05,0.9999882654529793,2.512616832993275e-05,0.0025262926487909223,0.999984579016775,2.3654699857266277e-05,0.9987914548438239,0.999986761857653,0.0005409410862470612,0.9999807808501214,0.9875836312156454,3.524893869323592e-05,1.1502141732150041e-05,0.7984052637876562,0.0014508502481708565,0.9999575207918986,0.9999478514533464,2.4490758543915277e-07,0.9961444283517662,0.999984920617597,0.9975856964060291,9.088257865949044e-06,0.003908534053547482,0.0007221006915216428,0.0006422508553968578,1.6307960462953732e-05,0.9929008409582153,0.9999862603639961,2.0828027345802684e-07,0.9998252140037479,0.9999651465802953,1.1038720428637861e-05,0.9999642817474962,0.9877328431899713,0.9772282089594265,0.005801125897398937,0.009562324634148467,0.028157854953614395,0.0076890498943681315,1.887305347249519e-05,0.9920389207163695,0.997506240454215,6.371606567886592e-05,2.6756083884044556e-05,0.9997621556105712,0.9998767135216176,0.9998954060857238,0.9999725883962401,1.265338712346576e-07,2.8209888161416155e-07,0.999683284333746,0.999994506181009,0.9964954638816715,2.065309375327704e-05,4.3007397292409905e-05,0.000168093623259734,0.9649261473585166,0.00258690293881823,0.9849786587799608,0.24984963320682924,0.9265572611063103,0.9998937943233102,0.13586440361522056,1.9756992732940878e-05,0.0008994590913590725,0.005338254560128329,0.0029622581223512938,0.9998802514087943,3.891664239189287e-05,0.9937541539982968,0.9663697630889078,0.9528139572089555,0.9333480118269232,2.0131403718761805e-05,0.924687957568183,0.9867196406176133,0.9348047288617025,0.879632170829929,1.1089573249477277e-05,0.9999417006227642,1.3311392590390896e-07,0.8426882079451677,0.9999874067046188,6.958521442092022e-06,2.2032064357302485e-05,3.232612421036923e-05,0.9999334598917503,7.677379087015144e-05,1.5211482143003968e-07,8.918915670281042e-08,0.007978552041270223,0.016884300178082248,0.028153872391517,0.9979162898025007,0.15900873108114985,0.0042884778808179695,0.00034590265471886553,0.00046347718617436895,0.06234389343343039,0.9965914856072494,2.0022110902851132e-07,0.013311652980040284,0.9995944169563219,0.05726051460352193,0.9984284296639795,0.9712887630051199,0.9366370275371385,0.9495280147595111,0.9774521381994782,0.9999878272179009,0.9997034959913845,0.9973824708465867,0.006082263783240196,0.003549205630423196,0.003605577906021418,0.9881864448673979,0.99826550398068,3.183660829780893e-05,4.934655980882928e-05,0.9999709528765729,3.1631445819949937e-07,0.9545304074151596,0.8168475304981985,0.9927757205530502,0.00012911536570534658,2.091426763943762e-05,3.351818931868075e-05,2.091980716338129e-07,0.8501035999060502,1.4891531250166176e-05,0.03205865411616592,1.1247504484551567e-05,0.00941980973173172,0.006893714958394753,0.9999917448002312,0.9999681526995436,0.004063144619911725,0.9999970895474657,0.003608408922962224,1.831587169151802e-06,0.9999888448757939,0.9999925906085735,0.999995102208917,0.9999905735438204,0.008757123744053266,0.010264924039122436,1.3780660486145705e-07,0.8364784588402457,0.9999862010210437,0.9344287972642814,1.5600886958458224e-05,0.860608890814732,1.823369603110132e-05,4.785973535393604e-05,2.0546870101280645e-07,0.999998215651444,0.9999919707290619,0.9999897378609844,9.828630991310778e-06,4.17451245374931e-05,0.9999817225331642,0.9999873564782685,1.6535223961550145e-05,6.159745156301961e-07,0.9999862347816614,0.010118132477939768,0.0066542926233170135,0.030961493377873392,0.8901297824507596,0.0017194924161628147,0.7535673154642284,0.9556157250684412,1.9801439742547218e-05,0.9977145918506906,0.016586915816310138,0.999982966668247,0.9999599969792732,2.4682548501206056e-07,0.8314322328833266,0.999987378301487,0.003452570428125557,0.12133236652869675,0.9999521232579236,1.0623897599735522e-05,1.742864987256933e-07,9.625830986797429e-08,0.0017851840668708422,0.8554115831523016,0.002079309270412064,0.9999868481738111,0.007758452187671837,0.9999955519896779,0.03149859092565662,0.006807421524755716,2.8823857235784434e-05,0.001447383076987849,0.0003320081460716503,0.0004981783436436241,3.037376409903867e-07,0.999970666226124,0.9887797341555019,0.003108535665850421,0.002920247228395531,0.9999814641376193,0.004807335299947638,3.0117899572937225e-05,0.00046563485938882994,1.850563393364221e-05,0.2893674595457948,2.6401384403618436e-07,0.9999452716562307,0.000577683710798198,0.012911839198740914,0.004245669346975931,0.9974835141530829,0.9701577918800562,0.8967123386076682,0.001246685174281765,4.17605744178153e-05,0.062067992584423935,0.061943697069320874 -जाता,rgb,1.0,1.0,1.0,1.0,1.0,0.003215296158098803,1.0,0.9338115183029853,0.9561521901761126,0.9998692507316411,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.006154518329232809,1.0,0.9999919593450476,1.0,1.0,0.9999954814507589,1.0,1.0,0.0035226035529201385,1.0,0.02037431296999909,0.9999999999999993,1.0,1.0,1.0,1.0,0.9986615850595845,0.9208755765851719,1.0,1.0,0.009412109186875012,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999909,0.0037662182486106976,1.0,0.996160900642942,0.2903906098163297,1.0,0.6378277606188414,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9994717053883444,0.973005335362025,0.9198937988696173,0.1115445655368339,1.0,1.0,0.9999222938299256,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9338195130375498,1.0,1.0,1.0,1.0,1.0,0.9706007448851367,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9530970041650241,1.0,1.0,0.003011403179352097,1.0,1.0,1.0,0.9700250652498981,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999996112645,1.0,1.0,1.0,1.0,1.0,0.9999999999980296,1.0,1.0,0.9999999999990785,1.0,0.9999999969975324,1.0,1.0,1.0,1.0,0.002097689836868861,0.9998791024317342,0.9999999999212299,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.13094421943442935,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999455729821,0.9999999999998654,1.0,0.9999619169219871,1.0,1.0,0.9999995772506443,0.9999315491678914,0.9832518688407536,0.9998460984687574,1.0,1.0,1.0,1.0,0.00388402642136248,1.0,1.0,1.0,1.0,1.0,1.0,0.9935116429780245,0.9999997962095868,0.9999996939985049,1.0,1.0,0.010774867249198766,0.003104196405387,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999997655931,1.0,0.011402870155218493,0.40843613896759495,1.0,1.0,0.9997381691946607,1.0,1.0,0.7704542093831538,1.0,1.0,1.0,1.0,1.0,1.0,0.9999970579245238,1.0,0.7603872026016578,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.13827236788697117,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9135650967004391,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -जो,rgb,4.2869366066721915e-10,0.47504553271150063,0.5302879438564,3.745795695614488e-09,0.22690465049858077,0.22380537859209507,1.8805200027135332e-10,0.0064264895049188355,0.013905490831743816,0.010838877762327243,0.8949705331170215,0.7941502736202471,0.8186484584572048,0.42368465447723835,4.210147006001864e-10,1.0460618158353622e-14,0.3984045829486067,0.4666237584227423,0.4097220284040506,0.9043517868295265,0.2460233655861846,0.0027201562043611665,0.19314783406157304,0.00030937476037592326,0.8591898465447274,0.03571360079162558,2.8637294516965784e-11,0.8667741863692437,4.116128246168866e-14,0.682116231514231,0.22696326952955206,0.47859947930005897,0.24260870481811717,0.004461270057433553,3.497380205666477e-07,1.622173455754279e-14,0.9166774849976727,0.024751867018067517,0.7202313665558637,0.40346130661292273,2.7349694469333447e-08,0.8678723198398909,0.2627773164644352,0.5069255255912718,3.1711812703844325e-12,0.760017614298414,0.52063737792147,0.5301970852372102,3.977349926847818e-12,0.377183635917893,0.22016980525136393,2.1297503356299814e-08,0.009795010239756846,0.2679267714496806,3.278599272031263e-13,0.39075757689010304,0.9794937117251717,0.9791652404850011,0.8067689415813266,0.8412061820764136,0.891654168905504,0.1792359218155031,2.5360378594450853e-15,0.8896570272611801,0.7230138325696679,0.00027670606887848266,0.015075160708947209,0.007553037043942576,0.006886184228442395,0.01208493719916103,0.26148875798367677,1.4302876174421297e-08,4.659568450912635e-08,0.005812712076862147,0.6561782790502293,0.8904424026896087,0.022493112859709875,0.000379175610576325,0.002060161491896675,0.9787256261331269,6.527150613420367e-11,0.9798843901999059,0.06238005719225061,0.9775413656576327,0.007902253621291044,0.059410924459483094,2.6918057995826948e-14,0.021137722442866193,9.459922371173422e-09,7.102208956063513e-11,0.005667758038168242,6.454379276087865e-16,0.9791588616470087,0.9780982992092139,0.9782237290429343,0.9776208771040805,8.386261735645904e-14,0.9774849565016911,0.9797830845623826,0.9780596128191593,0.9765512805206117,8.318052663660647e-10,0.4057981843528918,7.878560993919332e-09,0.9750775283527338,0.23063051564480933,8.292944315957585e-12,0.00041624896453338787,0.07037355624409082,0.38901619968888884,0.06398410985140991,1.3630183999820686e-08,1.838422970027469e-09,0.8306644230552322,0.873815619402365,0.8953730533881378,0.0104228179925579,0.9459319507650151,0.7803705088702624,0.42114764979162184,0.45428613096140086,0.925738177336797,0.36007785848520313,4.0701170694989974e-08,0.8640482865161192,0.9318295894924848,0.9237376742690343,0.01393797303587299,0.5978806775388884,0.04626773806770679,0.9553165385251547,0.008664580937129884,0.2134466218728708,0.006117440865522887,0.010287260890694136,0.42292959740378394,0.4013704702200171,0.4370709310232411,0.5036580980068956,0.6584097280090044,4.7360038153893923e-07,9.194741515157542e-15,0.25398089164180654,1.0704471484293926e-07,0.8917272437669902,0.9230845269826157,0.960218473685948,0.0014585018502748354,0.015373681829365826,0.00023027490041923105,4.8892569730611926e-08,0.416886925499757,3.19442480515017e-14,0.8973209425027572,3.111143679476228e-13,0.8408955704080806,0.8204738876109571,0.8775334491386312,0.9365655751048535,0.3498482337726098,0.7977523032597186,0.35436593256468923,1.7680990313293324e-14,0.8772156566637096,0.8326225787690784,0.7569704921855461,0.828955017292362,0.8371292414611252,0.8455830675328453,9.219684761224393e-09,0.48746085864526384,0.2211869872649257,0.26421027383270274,5.200070114253364e-15,0.5573866240739095,1.731989361862095e-10,5.193921598280387e-16,2.0953976165620746e-09,0.7227451360736188,0.8714881979531716,0.8768278018673497,6.6461854044933455e-15,4.36651215718226e-07,0.20698438224827204,0.2317307068375067,1.0451004129633418e-12,1.151085333336058e-06,0.556020122568735,0.8446724908895358,0.8175601546816332,0.8951173095773937,0.004597058590056696,2.8097101102231553e-10,0.9253392447082974,0.09752261567621719,3.4008239283093488e-12,0.015620631539096487,0.8761616423174066,0.23689931089447253,0.2553756576729274,5.995205411600019e-08,0.37115746468084,0.823895652591172,4.2608663560336767e-11,0.9408351195785585,0.3247082489809625,3.648881500428295e-13,2.3564867960737357e-08,5.318435590967006e-10,8.399722457840915e-11,0.026608945783763844,0.021154446993909944,0.868345880702212,0.8284380837008635,0.7004353774835436,0.9040316630789934,0.819564729022188,8.8078059445912e-16,0.6479750641041949,0.38932102711056094,0.445061003457281,9.19148901003452e-08,0.2555874317931218,0.9000499527718204,0.4895061221857388,0.4997643547643976,0.47597065907260044,0.5120592934982087,8.419018898773056e-16,0.45531496277674144,6.204477481441989e-08,0.0070071037154619265,5.390665235819212e-08,0.3730013983008746,0.48743357188869807,0.862273675061623,0.778456608637573,0.642178524286798,0.059403171392442104,0.2936736751620691,0.008861746147185882,7.67009369224919e-07,0.9144105053584604,0.9194781669047584 -टमाटर,rgb,0.9999999999841811,6.387409880578497e-10,0.2546953686510378,7.996094480739024e-06,0.1936866225846454,0.08146214391407783,0.9999999999970857,0.9860115650981385,0.9740801228633094,0.9919290828155501,0.21070275111642436,0.159453728757746,0.18464366891078038,4.5309006300180385e-10,1.1605728702138915e-06,0.9999999999999765,0.9953808777017012,0.9916475755599015,0.9954548562617923,0.5482955528007244,0.9993164855358604,0.9999985649021077,0.13745939689280767,0.9999997921619245,0.0001232965151554143,0.9995184256297911,0.9999999999953704,0.00018552492546560802,0.9999999999999498,4.656148548137944e-09,0.08078921484010565,0.1075003495839346,0.1132046093801517,0.9998382975966714,2.795865592750544e-08,0.9999999999999722,0.5362902576433457,0.9999813415340493,0.011713282718835793,0.1331711491395521,5.379377699022469e-06,5.133285054491377e-08,0.07342637870250818,2.178368066727469e-09,0.9999999999997011,0.04512798628933696,0.0775248580259921,0.2605803655807506,0.9999999999996239,0.9570200292064801,0.08901291381137731,5.789619906902536e-06,0.9875158833597972,0.18471842821051607,0.9999999999998954,0.09355949378353506,7.468132271134336e-05,9.727327569990556e-05,0.15881800011264113,0.19885127402499378,0.2288675725888731,0.9996492995587593,0.9999999999999851,1.1166032421443095e-07,8.536145582941782e-09,0.9999998659576705,0.9999438198154789,0.9927368629829949,0.9873290360883556,0.9746409907305529,0.14919857688473986,9.606930175902106e-06,6.381605915767715e-06,0.9956491080044834,3.830019885040049e-09,7.474676215992223e-08,0.9998131087616581,0.9999997952364788,0.9999989024766589,0.00012398180289734025,0.9999999999930513,0.00011143690510573685,0.9998822035648867,0.00021244710963188275,0.9832861121687079,0.9999122195351793,0.9999999999999603,0.999983818065302,0.999999999875147,0.9999999999923588,0.9890933275007027,0.9999999999999891,5.164559632169332e-05,8.772842724941278e-05,0.00014360220350361427,0.00018536891766913596,0.9999999999999347,0.0002164767084787903,9.536477456753151e-05,0.0002251751663626897,0.0003758248657940993,0.9999999999935756,0.14801718827670696,5.7655108415104e-06,0.0003630214135522635,0.07382613592811886,0.9999999999995355,0.9999997245403759,0.9970187776093421,0.18457998508271714,0.9995040367724362,6.9006286154270255e-06,3.988821514064125e-06,0.07222446954674429,0.16695082353109666,0.1648636749586974,0.9985916056021537,0.05800381823260761,0.17306962728011283,0.7690482203036275,0.12245826979090214,0.0668391990000691,0.9320589649638079,9.986345732498629e-06,0.058953937926655695,0.005114451646335261,0.062402193508126064,0.9976474704220188,0.9445550800551222,0.9994868657268794,0.09522523827668587,0.9998077059622902,0.08065584452167873,0.9951495538259405,0.9988470477603837,0.9965429277878751,0.9962608009313828,0.9947933239049229,0.9414701866713454,4.577346079402331e-09,3.894295349555407e-08,0.9999999999999667,0.16627039574790964,1.0051307782800474e-05,0.5284144289468349,0.4730768486817379,0.01994047402099068,0.9999992345190059,0.9999241042291113,0.9999998755600511,1.0698517927747851e-05,0.9925368694867853,0.9999999999999603,0.2101923894280242,0.9999999999998976,0.1836077927804985,0.14516382700320576,1.9447645188162596e-05,1.4757620947328516e-05,0.9978387366917942,1.3180893959789909e-05,0.9976142094831739,0.9999999999999807,5.4365237773508936e-05,8.50717052460582e-05,0.00015892470918492865,0.00016968841144438389,0.15653538558486668,0.19838664426723104,6.100521065417794e-06,0.9894014179064365,0.088803848467503,0.995047304103257,0.9999999999999811,0.9825961219045345,0.9999999999972105,0.9999999999999893,1.213280736912999e-06,1.853008834030877e-05,2.482200416480241e-05,4.299992359172052e-05,0.9999999999999816,2.614831656845346e-08,0.13729795636979747,0.07358925100050148,0.9999999999998028,2.4195078345751197e-05,1.1570290358488178e-09,0.1992382886953942,0.15788935737857118,0.22708744535712375,0.9999631966609124,0.9999999999876574,0.47482152761892105,0.9984621277346944,0.999999999999637,0.9980800655377998,0.08542188856645519,0.10217974300484703,0.2272045494614322,9.571118033979387e-06,0.9946316639515669,0.0003614309803516058,0.9999999999936484,0.06192590103474445,0.18565240491425677,0.9999999999998912,8.287204418132028e-06,1.5959060570866609e-06,0.9999999999931863,0.9998333836100632,0.9999854921234116,0.00012034038316626603,0.17032296677786063,0.0002986179876932956,0.07849611736897612,0.10064654327049524,0.9999999999999889,0.12213489882371643,0.11205180216383584,0.0657365064802238,9.527391095879456e-06,0.16635071671721896,1.7098968058618616e-07,0.9901592517416579,0.9884085894902663,6.426498321746282e-10,0.9910114123749948,0.9999999999999889,0.12310861526775982,2.0922221694894185e-08,0.9999879930443332,7.918393200981775e-06,0.16475587483048304,0.09733654174538006,0.059676880004953525,0.10818030106128569,4.8563235972152555e-09,0.9988832233991087,0.9954789693603167,0.9999950346621733,3.8166109570337106e-08,0.24298909216605466,0.1618151660258138 -टुकड़ा,rgb,0.9999940189269766,0.00011343088279679545,7.0456634266845216e-09,6.396779049879288e-19,3.409227074160398e-10,0.9999755504342439,0.997990121116952,0.9999994661134103,0.9999986603510621,0.9999981229187862,2.4642004541240787e-06,9.705014301165216e-08,1.9040622785478043e-07,4.486956376238016e-05,2.045881314849097e-19,0.9999920714323168,4.646518852598667e-05,3.1056627461574305e-05,6.390090470703499e-05,0.12322659200740442,0.002371697430510161,0.007379255025139874,0.9999802672811846,0.0009501691245028241,0.9769355412203319,3.5559106376782744e-07,0.9999992600467322,0.9759259760644744,0.9999928729420764,7.871971835863694e-07,0.9999747597026246,1.890181866013549e-09,0.9999677040980597,0.999985558026814,2.7061422871351398e-17,0.9999885815823395,0.029891721337199778,0.00787564554524259,0.998278129497861,0.9998478264403369,2.172443723177262e-18,1.1440063483006987e-06,0.9999644010945927,1.282102342917534e-07,0.9996341106243802,1.6266258504966346e-08,2.0670687483281733e-09,7.2393602940061775e-09,0.999818250107188,0.9968230727820887,0.9999760168557545,1.8512749299027465e-18,0.9999988358774934,0.9999510747291768,0.9999313979720656,0.9998786833295359,0.00020744702180570523,9.650516433760991e-05,1.2253644728518807e-07,3.589136560704454e-07,2.477771297621991e-06,0.0048256611085175805,0.9999978929820241,7.375903125122022e-07,4.2983071736855996e-07,0.012093730459747192,3.888978629783036e-06,0.9999989259124803,0.9999993640018082,0.9999989325944545,0.9999574638774906,1.433146474440966e-18,3.0435535731193483e-18,0.9999990127938059,0.004659186412675038,1.9064245083959028e-06,7.139828055665054e-07,0.00399471131319133,0.005522468250802586,5.9544380374108565e-05,0.9999988070003635,0.00022136414771017714,0.8922445218611508,2.869793480044917e-05,0.9999993267268733,0.7656011169768155,0.9999928144822205,0.00424188189966885,0.9999872863241186,0.9999989381679688,0.9999994929656832,0.9999996073309189,0.00043861036139424274,4.523818884877775e-05,4.167280636408944e-05,2.9662823782839247e-05,0.999986673466464,2.798080894573984e-05,0.00023235995306408307,3.745623401597715e-05,2.0947980980795264e-05,0.9881101695260088,0.9998383931247611,1.0028269553628897e-18,1.2232692259337957e-05,0.9999742650349143,0.9989971032781373,0.0009758908706463508,7.73625045765239e-08,0.9998477104071475,2.0034331976924174e-06,1.3964597410162988e-18,4.3077238458358067e-19,8.298467798056681e-08,7.202106899463747e-07,1.6312036759272423e-06,0.9999924670373352,1.0010911104113093e-05,8.426467654029972e-08,2.6872754050298583e-08,1.722644757461001e-09,2.1841993323971317e-06,0.9984695463810068,2.7726491276720597e-18,1.5085957947020284e-07,0.8307812576039297,1.7538388233941083e-06,0.9999917307898407,0.953820472576894,0.9989958925096897,0.0314149357202216,0.9999491193876694,0.9999781943392994,0.9999990042341608,0.9999910579622362,0.0002767599829129635,0.00010615186229843642,7.635967798259546e-05,0.9890975620229172,4.3260661565553887e-07,3.0790859215196024e-17,0.9999988405101129,0.9999591276987355,5.230793067537744e-18,0.3248624938717311,0.02786959040707936,0.13739204550220854,0.0053875558113036515,1.907694980887639e-06,0.004675784835990798,3.1210433273190506e-18,0.9059091379045828,0.9999883237765459,2.743612124547497e-06,0.9999352548947845,3.1691223803753205e-07,1.447691890113333e-07,0.9194007312494541,0.4604507229003913,0.00023811767318173479,0.9787885902936374,0.00017662533105760014,0.9998352190339319,0.9516693090013201,0.9845239750396862,0.9960359188667415,0.9885614662279518,2.3196899590847628e-07,4.008804282567012e-07,1.1016727120784718e-18,0.8455522379482323,0.9999757646815451,0.9864285544088025,0.9999959856915804,0.8122114528549347,0.9981371167149544,0.9999997320387363,5.00988476266441e-19,0.9935322947891289,0.9390010675188544,0.9468699544948423,0.9999913338898869,3.246311027476852e-17,0.999976830468632,0.9999739842162814,0.999922105641972,2.8092554918148316e-17,0.0003245330321266289,3.93874813039892e-07,1.5131694090223017e-07,2.867181952335791e-06,0.9998612998681444,0.9999949547339989,0.0152208926599304,0.9981785364508149,0.999875038818259,0.9999873415864756,3.2188087343275867e-07,0.9999703763032638,0.9999532469472129,3.565620907098609e-18,0.9164680085570426,0.9914165683734102,0.9999993594243906,6.485095215933467e-06,0.9999151234292623,0.9999227737101867,1.959913548200819e-18,2.2649362499130254e-19,0.9999977736141402,0.9986537676265662,0.01856434341750509,0.9713638224496074,2.118616305744204e-07,0.9982742693100344,8.323252321155579e-07,9.302879370764695e-08,0.9999993145856785,1.0111742025547386e-08,9.298955319926055e-10,9.745835000820702e-10,4.726457387666948e-18,0.9999584414665237,6.331963496334713e-07,3.040088126417278e-05,2.3071302875612475e-05,0.00011432938486791802,6.771779615656086e-05,0.9999993683378134,1.7455754091913684e-09,8.727625961396219e-18,0.9935924924224683,3.3327320890657063e-18,0.9998741627235515,1.8743802171281712e-09,1.4555705422976695e-07,4.778206363947031e-08,2.510073048367833e-07,0.9993750724470456,0.9719401468848283,0.02629022286622744,4.431419569092896e-17,1.0091341830123517e-05,5.959200115241361e-06 -त्रिकोण,rgb,0.999985246277265,0.9999999995948832,8.39977223306329e-06,0.9999999999995997,3.69580786495279e-05,0.9998039553596066,0.9993113650317694,0.9998410989806603,0.999504378857544,0.9981395739252037,5.349782003409088e-06,7.075845926858673e-06,5.858990444759249e-06,0.9999999997231626,0.9999999999999993,0.9999999998501874,3.603138936497363e-07,3.848408526118091e-07,3.813676685137552e-07,0.00018927395748708254,8.335411570412357e-07,3.366769936282937e-06,0.9997267405244528,5.340832926180361e-06,0.9996664105022509,3.163435774173073e-07,0.9999998626091069,0.9993208070344883,0.9999999992815569,0.9999995224585736,0.999796019950186,2.615118514761355e-05,0.9995390893327032,0.8217681756173285,0.9999999999998517,0.9999999996589077,6.698239125802857e-05,1.5764784039739818e-06,0.9917219235999671,0.9942159607027676,0.9999999999942832,0.9999061926636469,0.9996903118397733,0.9999998939828244,0.9999976874329468,2.7126313357472932e-05,3.250164741665024e-05,8.174316004050084e-06,0.9999982016285601,0.042084551149314996,0.9997871180023398,0.9999999999957592,0.9993556428609868,0.9983579673669966,0.9999999508904982,0.9973201704189172,0.1375647465475884,0.07058089154612969,6.920747134695428e-06,5.311726367982945e-06,4.960230937127873e-06,1.0600097275613586e-06,0.9999999999910265,0.9994847405920021,0.9999977736677078,1.4205909672790085e-05,3.26667150536156e-07,0.9992115574123147,0.9997707061914336,0.999656403872845,0.998995634485379,0.9999999999954872,0.9999999999830056,0.9990808367888697,0.9999999972131934,0.999818810906742,3.136332215990251e-07,7.608850351946814e-06,3.4178861530437403e-06,0.04192285684640118,0.9999994984777159,0.08387523715506798,0.00012658649358498455,0.0154522260888652,0.999789975480095,5.6763505268746085e-05,0.9999999995651296,1.2707888704415276e-06,0.9994807561440172,0.9999995129767782,0.9998288277324816,0.9999999999996065,0.290159173040073,0.06056764171100968,0.029996406582041064,0.01878381276299663,0.9999999972303326,0.01493665492475303,0.1052489803119875,0.01569524243108089,0.006537666294045181,0.9893093789104744,0.9927992439357568,0.9999999999991509,0.005810797187425202,0.9998124374241707,0.999986044417304,4.48964841695154e-06,4.326987630136005e-07,0.9912452866436099,2.527041653904212e-07,0.999999999997359,0.9999999999999525,1.393662734804725e-05,6.154421976904417e-06,6.450389734221201e-06,0.960946604172015,2.1161762622066293e-05,6.722347558233999e-06,1.7480297746876754e-06,2.4558480991641967e-05,1.4696549648658374e-05,0.12749243059843013,0.9999999999745302,1.565566486484493e-05,0.5362160541245373,1.5291539431662438e-05,0.9641055758646832,0.0025880715317963747,0.022497904169731395,0.0005158387137606585,0.44944386524879687,0.9998384955033811,0.9991222334962983,0.9458716004034967,5.146278331987125e-07,4.0839672593322925e-07,4.0737264256889864e-07,0.012840252967323645,0.9999994783764842,0.9999999999996063,0.9999999999739333,0.9989123302566443,0.9999999998804072,0.0005333461724812485,7.71749408389756e-05,0.009118850011853467,4.017383532685276e-06,3.250943764608097e-07,1.0975889935860743e-05,0.9999999999624711,0.0004204137434024738,0.9999999992124136,5.4178443048417956e-06,0.999999955786878,5.719056208309474e-06,7.347029693377518e-06,0.9999279375089609,0.9991988067800006,4.5187488884030627e-07,0.9999937330005501,4.2485645133071067e-07,0.999999997242994,0.9997792789968986,0.9998917382681688,0.9999504561371231,0.9997736929582853,6.6589443559750365e-06,5.305483956010847e-06,0.9999999999988156,0.0002910112583043405,0.9997842216976792,0.0026648601168642867,0.9999999999631468,0.000297557761564779,0.9994012869538743,0.9999999999997855,0.9999999999999891,0.9999976420769403,0.9999227782659654,0.9998326669079929,0.9999999999077502,0.9999999999998113,0.9996485024365105,0.9998099767583856,0.9999997921740361,0.9999999835694211,0.9999999990159321,5.288042153474761e-06,6.818190750219348e-06,5.067578911836801e-06,0.1442543540504309,0.9999916482895405,5.1604968470482605e-05,0.015819015904219805,0.999998860399459,0.9280871398971654,1.099390271348395e-05,0.9996464436141581,0.9979775856949945,0.9999999999554667,0.00041410497821822896,0.9994868242694511,0.9999998221226879,1.8346656457129148e-05,0.99623115087256,0.999999939156801,0.9999999999917926,0.9999999999999982,0.9999988262746674,0.012540272870805724,2.422122220805194e-06,0.9995774899248345,6.231180930498176e-06,0.9999566205652125,1.1900762069067252e-05,1.0429541901535399e-05,0.999999999999061,1.3615960632995667e-05,3.4053955579267374e-05,5.003668718098922e-05,0.9999999999127558,0.9988835704741803,0.998754173140005,4.000104363942129e-07,4.0039502219712157e-07,0.999999999590242,4.542105777960454e-07,0.9999999999991724,2.4330979740157536e-05,0.9999999999999936,0.0020246790228550925,0.9999999999710749,0.994251044383946,2.831105697755432e-05,1.5533581917117915e-05,1.0757305672865785e-05,0.9999993408123431,0.04940821940716321,0.0011905896276199063,3.7065194609047797e-06,0.9999999999991966,5.684700040868054e-06,7.597198434782488e-06 -त्रिकोणीय,rgb,0.9999989916315365,0.9999998615321372,2.5560775751113023e-09,0.9999987849514238,4.609021243899132e-09,0.9999110371892194,0.9997467680351564,0.9999836603502091,0.99992974715108,0.9997209209007591,9.000105004922904e-09,4.516907514336786e-09,4.594241708330367e-09,0.9999998739666799,0.9999999968121327,0.9999999999932772,1.9783875619665294e-09,1.819617765286203e-09,2.3043409444247222e-09,9.195770180443136e-06,1.6371352341186024e-08,1.307462764838479e-07,0.999886618800518,1.2597479077288098e-07,0.9983603921068047,4.6362957952385837e-10,0.9999999955514942,0.99666193591261,0.999999999966777,0.9992967914870127,0.9999064656058333,5.188827907007951e-09,0.999774554540311,0.9509752836605763,0.9999998019448951,0.9999999999826077,2.0437153272438737e-06,5.393789734365304e-08,0.984645512863907,0.9954085665272684,0.9999871827043251,0.89493354831514,0.9998410273313175,0.9997279612217032,0.9999995792149879,9.676459325422287e-09,6.516571156808918e-09,2.5105913319140455e-09,0.9999997315545329,0.025491412902657596,0.9999043237168258,0.9999901119642356,0.9999154302080951,0.9991029157931992,0.9999999951131888,0.9979910166389571,0.0007440068672909175,0.0002837267483444539,4.730103180221065e-09,5.0398325858498096e-09,8.396334973768437e-09,2.6707248591660688e-08,0.9999999999997446,0.5807850920998135,0.9961336921202207,7.391503003414593e-07,1.0871940450684268e-09,0.9999015364893699,0.9999751744970246,0.9999547473720145,0.9994701227921762,0.9999889415024203,0.9999652950701151,0.9998907939707069,0.9999997031648307,0.8382417811122828,5.935722335324665e-10,2.760607735669124e-07,1.2354106204698706e-07,0.00014250918329949063,0.9999999805488432,0.00044131672514683036,3.251289583645416e-05,4.1796643006827726e-05,0.999976558598838,1.112574642604754e-05,0.9999999999802247,3.6344016685485615e-08,0.9999480092904641,0.9999999816654003,0.9999828758114596,0.9999999999999936,0.002359622226677478,0.00019112950162455958,9.09112008194665e-05,5.1252876573290086e-05,0.9999999998407805,4.010093411172656e-05,0.0005723916696016321,4.6089951436646636e-05,1.6260253126560433e-05,0.9927580789568414,0.9942001646007632,0.9999976794661142,1.2278265964724547e-05,0.999913154803155,0.9999964100514035,1.0490672531533309e-07,3.686905394037847e-10,0.993144986038305,6.141257559063645e-10,0.9999934130203529,0.9999998363969803,8.18140799249717e-09,7.106472621970493e-09,9.480125787411843e-09,0.9913450870394654,5.080448044488713e-08,4.134414414955279e-09,8.713634039494629e-10,4.773895918358997e-09,2.257446164162257e-08,0.09669248931061077,0.9999474906406141,1.0856781230147443e-08,0.11947890834168437,2.194185203087292e-08,0.9916334844145307,0.0006553955721515756,0.023607418323859798,1.449240479327352e-05,0.6960926699829656,0.9999292981176491,0.9998949131561583,0.9873063151492987,4.884094720831221e-09,2.8991838199240387e-09,2.5781192541150738e-09,0.005162025327335369,0.999081622785144,0.9999994958717656,0.9999999999993412,0.999436077306267,0.9997912236904498,3.7660534411219076e-05,2.278996046591497e-06,0.0003944314493669483,1.4724835814943554e-07,8.628977188875843e-10,4.305664331632015e-07,0.999925155612378,9.220288474990006e-05,0.9999999999583251,9.408402977381615e-09,0.999999995685855,5.208751478051766e-09,5.249755268203338e-09,0.9994365289482671,0.9860452495270186,4.197937382877802e-09,0.99996798467507,3.5917288871577236e-09,0.9999999996876592,0.9985877511613573,0.9995258100128417,0.9998615183479969,0.9991181491571379,5.486856464925918e-09,5.200078893340735e-09,0.9999968467454138,5.274822955362494e-05,0.9999026903491882,0.0011146089786873237,0.9999999999986895,4.9006830962358836e-05,0.999785653568956,0.9999999999999969,0.9999999623701631,0.9999918172594207,0.9994538597866421,0.9988876415006247,0.9999999999958347,0.9999997594427966,0.9998465210200594,0.999911700776052,0.999999977345467,0.9824538992677833,0.9999997580440673,5.1572951846682835e-09,4.9566301653916984e-09,8.953695347263435e-09,0.27299087388736304,0.9999994684595831,1.2631580291043394e-06,0.013120018754199565,0.9999998489491377,0.98048740543224,9.69091519345612e-09,0.9998310285250338,0.9989213647649458,0.9999139029410141,9.603587497581516e-05,0.9982171066640859,0.9999999943674929,3.881220338298748e-08,0.9975483700450092,0.9999999936976984,0.9999813649519272,0.9999999928828021,0.9999999446752341,0.012711412806882533,1.0917072072199255e-07,0.9977735464604807,5.020816560220546e-09,0.9999084804087438,1.3834682425290851e-08,6.429108050437264e-09,0.9999999999999818,4.425868843521478e-09,5.513967214853296e-09,8.00839610535072e-09,0.9998433061970161,0.9994181132232949,0.35606216445916244,1.8641173729810113e-09,1.7050098907654217e-09,0.9999998602944775,2.699093573712953e-09,0.9999999999999842,4.749069512585137e-09,0.9999999884978744,0.0014490582329470016,0.9999427223672872,0.995741097186458,5.577016630492943e-09,1.0665052740991753e-08,5.472656498383454e-09,0.9986375000218121,0.05746977495966993,0.0003972467355302097,1.975470805668e-07,0.9999990657028837,1.4654771213359013e-08,1.638644000448155e-08 -त्रिभुज,rgb,0.4992701153240608,0.9972689276835974,0.050845915344673025,0.9785733660835284,0.055902755171140184,0.9366726128628334,0.2214899903288832,0.8993435104890807,0.8814022503713129,0.8337219307862687,0.06980252924571205,0.06216492543298707,0.061616504993915376,0.9973911635689516,0.9937666229656916,0.7700380507541372,0.025072016171586307,0.02646938313231777,0.02579022660909572,0.1936999803313024,0.029818891206924488,0.019914963461331748,0.9296102480329458,0.015055726981848068,0.9492685476452943,0.013740548679894106,0.6907186907108315,0.9401300827855608,0.7372288521885636,0.9837765387488203,0.9362000227079863,0.06345065773874392,0.9229758513506473,0.5458772203175339,0.9927028049967098,0.7427784326526025,0.15427891033310356,0.023673431018034846,0.8806866602409827,0.871887744788449,0.9702886774306775,0.9490673492854282,0.9310512136603064,0.9871002046466835,0.395859042620637,0.08072537498568728,0.06878895701021573,0.05052818314754187,0.42421445398454544,0.4220566092784092,0.9351984193455765,0.9712180809975625,0.8677193413213764,0.8972002701903569,0.5581923203531577,0.892300409878306,0.6150012389261159,0.5639653325206683,0.06287309717923192,0.06242170971671825,0.0681720008111483,0.0300979632182516,0.8495060594359393,0.9246321514504579,0.9764535806193433,0.019957113346986664,0.012550743751061808,0.8564539808358914,0.8911580040387105,0.8891338250577473,0.9082014766977631,0.9686584141513271,0.9643694831183952,0.8460278360674077,0.9963052526249496,0.9426420945674686,0.012849629062096798,0.017532004826790917,0.018990879236492463,0.5251285311223152,0.6444392789433522,0.5813840171932069,0.09292434316061161,0.45262546413353205,0.8954373142329057,0.07485404271445349,0.748593276595595,0.021563718505054546,0.39469242162336454,0.6499352459721217,0.8957136629089824,0.9128744989559866,0.6738102290887326,0.5476174224507896,0.4997900061625214,0.46577813419104425,0.6871675366226367,0.45017341541402667,0.5971959926750777,0.45595187230813744,0.3941372145859986,0.14673666848075345,0.8653880924737956,0.977223266632435,0.38178691109013874,0.9376732004298192,0.3208235889870441,0.01512961440368848,0.016256485631021177,0.8580243114598588,0.014844517392201393,0.9723972706997086,0.9859186456962069,0.07583694504790027,0.06834390784730371,0.07252583008124779,0.6847601774745218,0.11069872191031696,0.060443819616369035,0.032857333980423994,0.0614288512252276,0.09402237591164697,0.5001867375353038,0.9596311245538618,0.08204838125006557,0.7261538577831119,0.09412104875599507,0.6997002697057072,0.27793671639049417,0.29282603048138833,0.2577175581267441,0.4551251707437156,0.9391526314254341,0.8486700932637171,0.6639684174353594,0.02887811772474332,0.026352159977606225,0.0268001414847516,0.36134051846600757,0.982911390711312,0.991093975875044,0.8429565261645877,0.9059655843743147,0.9497993995671883,0.23957878033396607,0.16091306154479437,0.43633888749073946,0.018690085567343855,0.012401665773824854,0.01779416660928765,0.9569178541793265,0.17279520130738057,0.7222183043045364,0.07043173187876366,0.5630510613483793,0.06338648804363456,0.06490588093214084,0.965404971090196,0.9410881515126358,0.026497228069713757,0.9800142484643407,0.026019546435497448,0.6172285049351192,0.9546878306299061,0.9606861125837531,0.9660593249386568,0.9528377986628263,0.06511396302343707,0.06285825547785519,0.9758852168871377,0.16448175274957938,0.9350323236236961,0.2387404512617266,0.8130964179516798,0.17119009665556853,0.22569165995628065,0.9226223113758608,0.9905809813841694,0.9837242837542453,0.9646883096120484,0.9576013303339945,0.7785325945435175,0.9925412182682207,0.9259737035137793,0.9375225833731884,0.5123999500135605,0.8898704962390025,0.996810061216735,0.06271872887696661,0.06359224714686522,0.06910255579165675,0.32801142601547956,0.5194765724070974,0.1463995985152786,0.29877919759925564,0.4488109419318451,0.6605979806171085,0.0777127387010653,0.9275071355613995,0.8911172505411313,0.9565951584609362,0.1680751586535125,0.9422716776545608,0.6911622738535794,0.10476335204964697,0.8791445211033564,0.5482482951364339,0.9665921306410326,0.9925677806640648,0.5994362570946234,0.24264940680671598,0.026153866798790757,0.9466577495253478,0.06333970676482133,0.9661652712891263,0.0842124946919185,0.07002233439633593,0.8969529656357601,0.06226182703787567,0.06307585604199827,0.0718380883647268,0.952339594529287,0.9054773862999068,0.9082508826157256,0.02712057267427302,0.02716338821978241,0.9972629622125307,0.02886402455514536,0.8994185271216121,0.06134439964405817,0.9955993622724755,0.13317507030547465,0.9603046532714518,0.8700814135864795,0.06503792765295259,0.08165296292868635,0.06695282580210844,0.9814473697963295,0.35066425521680655,0.2042503300673856,0.025407107980950805,0.990187445165008,0.07529537036809877,0.08077047459169612 -नारंगी,rgb,0.3259362758908591,0.18291082346034482,5.291946029068002e-09,4.753620116999283e-25,6.274303302942789e-11,0.9999999578709089,0.00013674435477284143,0.9999999782705031,0.9999999637117958,0.9999999108607185,2.6054439710903408e-05,3.287511033506096e-07,7.898635050386148e-07,0.06476094675874927,5.637741009495406e-26,0.00011714597070708582,3.431664352140706e-05,2.8939856036016647e-05,5.211062054810857e-05,0.9345337064770316,0.0017442996118003018,7.928162302984091e-05,0.9999999575652783,1.019744268657508e-06,0.999994333782109,8.118738366203029e-09,0.48850223849820396,0.9999935295188376,0.00036467555078469315,0.00044237457928222645,0.9999999567408443,1.2328555575150385e-09,0.9999999379483658,0.9999943247960089,3.360134135358028e-21,0.00010053763897399832,0.7063415636514727,0.000643773414891212,0.9999986799032501,0.9999997097379433,7.641330290806292e-24,0.0006815414780098027,0.9999999424683299,3.775634457693551e-05,5.626103349562349e-05,4.7399813183697767e-08,1.6806129162593878e-09,5.424466467018119e-09,0.00016299103346029118,0.9999451735366219,0.9999999572067517,5.3114268035860276e-24,0.999999953825616,0.9999998869225856,8.984629453771321e-05,0.9999997980405076,0.14794186558889327,0.05819220686892089,4.6012360818001e-07,1.8530770692927304e-06,2.4952157203327237e-05,0.0027694819054626487,0.00023411118799579602,0.000357591977646402,0.00019717623483763274,2.0080684053075696e-05,5.1583549543433276e-08,0.9999999432545034,0.9999999733224465,0.9999999700876889,0.9999999098667006,2.662497747013072e-24,1.50506172799964e-23,0.9999999311528699,0.9544382243737245,0.0013051327482997309,1.120322853598823e-08,6.805350053851279e-06,4.357729415137574e-05,0.030360667466397172,0.48812586611693914,0.1452972519142338,0.9128386956311499,0.010424581214159545,0.9999999755908547,0.7468890607619997,0.0002646392776041104,0.00026040873754668925,0.6703782741980727,0.543035461877992,0.9999999764557242,0.0007807040787373542,0.32576364753121767,0.023567307214134317,0.018676457182832673,0.011301085992324331,0.00027298019966503703,0.010038044994318393,0.1583155030783603,0.014408519865386734,0.005880924511997484,4.398999233056787e-05,0.9999996780158853,1.3993363924692835e-24,0.002948288028828545,0.99999995740725,3.1783070022066925e-05,1.3550203810503759e-06,3.0996734786651068e-09,0.9999996643464572,9.955643736884848e-08,2.7530120868539593e-24,2.3480775835719866e-25,4.000111241464114e-07,5.451006177105335e-06,1.705207700985178e-05,0.9999991618252941,0.000339786412719518,2.5590183668391743e-07,1.1353579887348926e-08,9.962026668759082e-10,4.052749922336185e-05,0.999979871518184,1.0926431277562957e-23,1.0366486644796306e-06,0.9998524707526597,3.0999499248470147e-05,0.999999313434307,0.9991175447508902,0.999800740095504,0.8810187621127318,0.9999824884382661,0.9999999622567998,0.9999999344999374,0.9999988944345196,0.0003064469523965205,9.06887919208032e-05,7.206624488658968e-05,0.9998270948213221,0.00019889753369919258,4.279138016011814e-21,0.001297533811195923,0.9999999090049624,4.1906774370151857e-23,0.9841340162775046,0.7130015763218183,0.9891203091152182,3.12492498507589e-05,2.3484930154394448e-08,5.391453105502707e-06,1.3797727443298866e-23,0.9938300378276377,0.00015996048049242382,3.0230475223912312e-05,9.312017273479987e-05,1.6306911515098072e-06,6.142825348030051e-07,0.9999844039335749,0.9997633854569222,0.00018624081542988654,0.9999965129030793,0.00013374862055096426,3.4846651855375306e-06,0.9999893877110058,0.9999965327687574,0.99999901298074,0.9999970745132987,1.1504961456953238e-06,2.1683421217451314e-06,1.694667359218195e-24,0.9904974622766176,0.9999999568274457,0.9991540849534152,0.00017041853207205792,0.9906094606652491,0.00014153608022979467,0.00110133473647692,4.274079519356914e-25,0.9999989023573119,0.9999881056381976,0.9999887367801629,7.51667330173396e-05,4.878644714127489e-21,0.999999950759416,0.9999999570263961,0.00017944527238951963,1.037759762532555e-21,0.4569020225133794,2.1097474415265436e-06,6.238986429322706e-07,3.062608811401383e-05,0.9998599274288638,0.3036719259064519,0.5400343531432436,0.9998073142081905,0.0002346087849621176,0.9999988467017265,2.521925554050178e-06,0.9999999450436564,0.9999998805525608,1.88962156080534e-23,0.9935643137895199,0.9999974201661241,0.6110700576851774,0.00018404695257957893,0.9999998084193659,8.348940720911551e-05,5.4617890818655215e-24,6.690870122526568e-26,0.3360367026613005,0.9994512877938793,0.0016023957437110536,0.9999929140508698,9.638476996757746e-07,0.9999995050454266,9.921197150993166e-06,3.979079888086738e-07,0.0004714799853751618,1.4161675986486874e-08,4.089319593026865e-10,5.836910285844368e-10,3.4355261063289165e-23,0.999999907544472,0.00027971357699341,3.1140027194665956e-05,2.373172885898363e-05,0.18444123472484591,8.631649819986426e-05,0.0005077616574596578,1.0133762915693644e-09,3.298772898155484e-22,0.9827196171665009,1.724100844398686e-23,0.999999734976457,1.2848137185716535e-09,9.79489512480632e-07,1.467649408896756e-07,9.556993659236317e-05,0.9999237561441711,0.9980026602917992,0.0011056348743996212,8.931878561773176e-21,0.0001619197595635477,0.00010108491883318977 -निम्बू,rgb,0.0026555722144337075,0.9999725972881658,0.00015108578290464744,5.5521658806909375e-09,2.2208637191592877e-05,0.9999928501201365,1.6765180799325475e-05,0.9999514827135968,0.9999425261753176,0.9998440879848933,0.0105679387135485,0.0014069539183361578,0.002003851320230287,0.999958142410881,7.528320958793173e-09,1.703277053457757e-05,0.0009303537165374603,0.0010542366060961321,0.001145789310028082,0.8715688474594951,0.003752739397735863,0.00011676306351013134,0.9999909107319253,7.3341298713174445e-06,0.9999907069046805,6.708639819049877e-06,0.004148525232920001,0.9999876446617509,3.239117178105497e-05,0.9973743313545395,0.9999927452672016,0.00011860889406979524,0.9999892005679806,0.9921220247644235,3.468163724620056e-06,1.5205628974061173e-05,0.7169385111498519,0.0007250125113695499,0.9999694918722234,0.9999670650701628,1.8720116613017985e-08,0.9913812401477035,0.9999915410674276,0.9941991595097389,9.45003119630959e-06,0.0010025735641006803,0.00016020564582095698,0.00015090161401563312,1.783333467937616e-05,0.993910607907708,0.9999924838808406,1.5760674016658762e-08,0.9999140885696048,0.9999795963445974,1.2880007810107836e-05,0.9999779732211198,0.977563748572755,0.9563781224768121,0.0016609161641361729,0.002932187500102029,0.009899836977230179,0.0038689990756569904,2.815110676609202e-05,0.9814532667345859,0.994285033685631,3.102607586474129e-05,8.135651734411072e-06,0.9998827646907213,0.9999420716469525,0.9999495154756814,0.9999841907075964,9.349800234951461e-09,2.1884619095959087e-08,0.9998435879700818,0.9999934443351198,0.9923595106870865,5.702871523436928e-06,1.950462705839323e-05,7.93112936711961e-05,0.9312036055310191,0.00411291778163165,0.9724940213520633,0.21581086022337723,0.8539108203833065,0.999950113943009,0.10813240437517715,2.7023087249360523e-05,0.0004300327528635333,0.007289228026245546,0.004751319126806994,0.9999445371800868,6.556494106695238e-05,0.9891663345013036,0.9332102456821225,0.9062706344217618,0.8670176122705119,2.6372337616540733e-05,0.8502261986071556,0.9757984832017509,0.8710735435304441,0.7662443834846391,9.153128581259786e-06,0.9999629355663652,9.748732822151598e-09,0.6986815944493258,0.9999931013716373,6.750161924390155e-06,9.114859723554428e-06,8.004477713594512e-06,0.9999576763748319,2.2960497446716516e-05,1.1298212094656398e-08,6.293521458955743e-09,0.002263330445458035,0.005466434562518975,0.009694553409812089,0.9987830960008672,0.0684995844847121,0.0011948319216578465,8.541146297449957e-05,0.0001007735517838272,0.022770831849244645,0.9972485552438689,1.5317967498860697e-08,0.003956025098181317,0.9995963777345126,0.020572041401156302,0.9990832675910598,0.9702923645519372,0.945969514278547,0.9263479893457249,0.9843221844635153,0.999993400721388,0.9998537282287995,0.9984470548512226,0.002600475360847483,0.001422405806157147,0.0014201292714886374,0.9889869293934748,0.9960820482371304,3.13093939946331e-06,7.697987314508103e-05,0.9999832570738653,2.504664931392476e-08,0.942069973161933,0.7402599173599552,0.9906281036841834,6.0581156149399585e-05,6.091034973388714e-06,1.5287891962292734e-05,1.60859056532281e-08,0.834024787441463,1.966973513455527e-05,0.01139684034124487,1.3177002491934025e-05,0.002869327275767671,0.0020004180237230803,0.9999930915395274,0.9999681231215805,0.0017065193912946125,0.9999978158345819,0.0014870698307683425,2.000668239140633e-06,0.9999908245520296,0.9999943456807343,0.9999965711903211,0.9999928615172595,0.0026204684167058386,0.0031722741057021546,1.0131587925766815e-08,0.8140983464455865,0.9999924459710089,0.935394830699749,2.221939017445214e-05,0.8397096377376713,1.7069867992344218e-05,8.291579626462084e-05,1.497749743839071e-08,0.9999987633867558,0.9999933890387674,0.9999915404740011,1.324322535465408e-05,4.15580076151494e-06,0.9999899364998487,0.9999930687761813,1.9158499401206527e-05,5.262138478964744e-08,0.9999808105588043,0.003122699400016859,0.0019330632441324435,0.01101289550580627,0.9142910104680861,0.0024727885254121583,0.651838783798385,0.9612818407346243,2.223400946335628e-05,0.9986200615466705,0.00515746121083597,0.999990509485606,0.9999765489241745,1.91588127726963e-08,0.8144290392393654,0.9999904929585356,0.0057365194562935895,0.049526148863489494,0.9999708160299869,1.2293490429670303e-05,1.3134780313498823e-08,6.6941450434557095e-09,0.0027136582231319017,0.8710260352313082,0.0010992728814030297,0.9999894221083716,0.0023024295408641273,0.9999970303502496,0.010547509078586566,0.0019322188865772006,4.66284923034779e-05,0.00035296425041786325,6.95029500010934e-05,0.00010561998311536785,2.394319715201886e-08,0.9999830710124432,0.9734661444304731,0.001161449360868572,0.0010736239619248181,0.9999726443326739,0.0018943932115530976,4.90124260057207e-05,0.00010131875357707194,1.7219184200053372e-06,0.2865044623388123,2.0494586367587553e-08,0.9999657561812596,0.00012682947999428413,0.0038263153878054187,0.0011501539302935999,0.9941037164762627,0.9757818482779934,0.8931308255637949,0.0006664768148569737,4.193562654798552e-06,0.0244333780668922,0.0237542680428072 -नींबू,rgb,0.012931046268898612,0.9999815195957129,2.5885270878331886e-07,9.020437987898827e-16,1.0510771452155685e-08,0.9999999810148849,5.574741574038779e-06,0.9999999179020921,0.9999998750885332,0.9999995346503096,0.00024173935837496163,8.342373549203886e-06,1.54874664970896e-05,0.9999599502592276,8.749781361703926e-16,1.650096211497664e-05,2.454948683757899e-05,2.5959853483625797e-05,3.453239311268808e-05,0.9219530332359841,0.00037500072466297146,6.070077632155918e-06,0.9999999758108952,1.0983788200879959e-07,0.9999998547761075,1.4521878191708135e-08,0.03403261759826789,0.9999997928090575,3.935897409473886e-05,0.9828561763360391,0.9999999805249443,1.3419835795063163e-07,0.9999999663701746,0.9999003982498621,7.531248153188386e-12,1.3280679412095165e-05,0.7046042736638611,6.26992051119718e-05,0.9999996833946266,0.9999998083269298,5.984941013267691e-15,0.9396250044611758,0.9999999744676149,0.928341940759462,3.6817654366453866e-06,3.387761717757163e-06,1.9958358853906067e-07,2.6035611944857005e-07,9.713520217763185e-06,0.9997491747997749,0.9999999799118529,4.600687635754545e-15,0.9999998008628087,0.9999999189577883,7.630270242100073e-06,0.9999998891719964,0.9546960297901516,0.881469788402565,1.0908351579209857e-05,2.9410621714571682e-05,0.0002231002624093067,0.0004632969781137425,4.083284846551717e-05,0.8444410022089772,0.9500319258528104,1.2549399830027752e-06,3.361883775555802e-08,0.9999997123591332,0.9999998935635603,0.9999998990128933,0.9999999426855,2.2373059193807572e-15,8.10745255705483e-15,0.9999995961507694,0.999998843606069,0.9543084748524422,1.4083437068719037e-08,5.359436578852294e-07,3.464584455974584e-06,0.784021633981764,0.030792863523393263,0.9433343835448642,0.36671338452145563,0.5173855286702617,0.9999999104211308,0.14241154716609042,3.093476743471095e-05,2.789919614849336e-05,0.04027702141309091,0.03776015623553807,0.9999999042068121,0.00016902750456370208,0.984453125123807,0.7777707361753736,0.6863769825799603,0.5526645770931821,2.6714763765301406e-05,0.5067769266856561,0.9518837769213117,0.5789259198536143,0.3273351037277205,1.761090574770647e-06,0.9999997752057662,2.0841879062926827e-15,0.21610118194126163,0.9999999816018071,1.943549669976025e-06,1.459573658779984e-07,1.232009743485599e-08,0.9999997392410649,1.0595015729268365e-07,2.7909936866536415e-15,9.160611746717488e-16,1.4421960233598325e-05,7.675264075155178e-05,0.00019465515108054343,0.9999917506132467,0.0037827931020305927,6.559071518380509e-06,1.819122713530313e-07,1.0690937146811521e-07,0.0006140187261004415,0.9999216454472646,5.094070588485439e-15,3.384008673099263e-05,0.999975437786103,0.0005096314584549921,0.9999940836166272,0.9964649044915835,0.9969121952016904,0.9458574919866741,0.9996835723717905,0.999999983255618,0.9999996277267198,0.9999883684550845,0.00013929860739990955,5.142534353281147e-05,4.727368978946669e-05,0.9992922121057559,0.9675484371522389,6.97587134624237e-12,0.0001722186180650267,0.9999999390963964,1.1453962272078906e-14,0.9793011555894474,0.7305003798000853,0.9972185732307671,2.4433725390228205e-06,1.9541265552482985e-08,4.0699619660043063e-07,5.6253696713395365e-15,0.9580598856036955,1.8588668596107022e-05,0.00027331652185789924,7.94973095626069e-06,2.7698367593833192e-05,1.436530527675675e-05,0.9999998569173032,0.999998212378444,7.901262901828027e-05,0.9999999751398918,6.171417481673815e-05,5.522083281800051e-07,0.9999998255072977,0.9999999282218599,0.9999999724424619,0.9999999121379699,2.277531912245326e-05,3.3398065857459325e-05,2.2552719041195797e-15,0.9438504609095821,0.9999999797368406,0.9928194338369817,2.6561538661141193e-05,0.9520571115961635,5.7953358179092865e-06,0.00024686650769031334,2.7534631303815363e-15,0.9999999908283811,0.9999998745755325,0.9999998376001504,1.1634059446261106e-05,9.949331765320436e-12,0.9999999715215667,0.9999999814469379,1.2563717641108502e-05,4.917433895244639e-14,0.9999910930532913,3.2597844401969265e-05,1.3931181079052404e-05,0.000264890387149399,0.9963363621248713,0.012194104942060085,0.5796988024996653,0.9977083309316274,1.395273401712992e-05,0.9999891402397776,5.7622626327821365e-05,0.9999999718811704,0.9999999049087879,7.275108116404969e-15,0.9521611865040107,0.999999884675826,0.05245785486022727,0.0022085041624749285,0.9999998564741255,7.016267751475203e-06,3.759475889385866e-15,7.874635302100227e-16,0.016089186985277865,0.9891769857466474,0.00013049372132233796,0.999999820156514,1.8932749971575695e-05,0.9999999812785402,0.0001809284161534974,1.2224149203580782e-05,9.744925348836423e-05,8.17701489401776e-07,5.6994435596857694e-08,9.696792048786755e-08,1.048265050220961e-14,0.9999999380181178,0.7702952594451791,2.915623573122544e-05,2.4644719864985563e-05,0.9999816001881047,6.586514553859452e-05,0.00010563232380318582,1.0801571259844726e-07,2.2008792150688443e-12,0.6465528796037073,7.718901817409945e-15,0.999999807974753,1.4548663154695675e-07,3.215876259585087e-05,5.3734756663556834e-06,0.9396958033572078,0.9990226159675157,0.983176578845266,7.518586327563276e-05,1.1206105662269656e-11,0.001004393310038785,0.000844253618364807 -नीला,rgb,7.885594988981427e-07,0.0705309423893322,0.303784313752163,0.9999894733195877,0.6358208084600406,3.943356335414072e-06,7.46976237754597e-06,5.842454262385104e-07,8.435365526582004e-07,8.719042351939211e-07,0.033636090028170085,0.12560016170763325,0.09566316278558304,0.10455129723543562,0.999995584869858,1.1752123130966993e-06,0.006529109878351463,0.007970425055507662,0.005709744019303775,0.0003498226547530332,0.0011632664374310957,0.0005906299995192464,3.455306328090377e-06,0.001347891785666829,9.675803449386849e-05,0.04606883769812259,3.8130965859065566e-07,9.372590895937206e-05,1.0747784280109337e-06,0.2972258716963453,3.9916253421475725e-06,0.4584000844861612,4.203671744215262e-06,1.4217437132509356e-06,0.9999602529749262,1.3308433741850763e-06,0.0006403343799109146,0.0006157605304587696,2.233386121803777e-05,7.199753080673287e-06,0.9999801259772626,0.20239645643734622,4.555869700514758e-06,0.5055914155045441,4.283500000518864e-06,0.2589408894311347,0.4551137421778537,0.30078508325328174,3.239513206485567e-06,1.4621587406529623e-05,3.879992658470761e-06,0.9999816524462382,7.605305433863418e-07,4.619672622400692e-06,2.398652774691079e-06,6.888057548483186e-06,0.011710219958683349,0.015477658086202098,0.11491309916430063,0.07396840978483513,0.03330184950322152,0.0008428596232515126,7.455903572060175e-07,0.21486398246788094,0.3320985675438566,0.00046287573928980414,0.015584043535211011,7.113942882283036e-07,6.164396377370558e-07,7.777938609702507e-07,4.500371979850748e-06,0.9999831669112874,0.999975634381303,6.667314115048644e-07,0.012830443635260803,0.162778904640257,0.03326009760070042,0.0007384803138629404,0.0006625738754401271,0.018316948271934922,4.476958178208839e-07,0.010918111917505949,4.1308240640699124e-05,0.023231882819615066,6.417649117157952e-07,5.859012304927359e-05,1.0941339639639477e-06,0.0007916043215192879,1.0025840997468999e-06,4.281071179011906e-07,5.635162759551814e-07,4.148561355636208e-07,0.009036233350310306,0.021235367067380613,0.02082356431724624,0.0232514779412458,1.3336803829725067e-06,0.02342468303396369,0.010891234840599666,0.02073760610500852,0.024884214456976837,1.459858240211338e-05,7.274226562189616e-06,0.9999869421694616,0.03102849939376946,4.057492049872992e-06,6.179074348661433e-06,0.0013370212220259138,0.09240568540879884,6.948437030132347e-06,0.022249219561199764,0.9999839923973626,0.9999922005781491,0.14134993671898993,0.056745272850560406,0.04072748744021305,1.2728111795507418e-06,0.021155844403994095,0.13167649200893636,0.1717366742903775,0.4660615638803322,0.03902624640548605,1.1530978019793698e-05,0.9999756911484023,0.11440643125587228,0.00014410938104823315,0.042922882539559094,1.3589389008064362e-06,4.161096127003589e-05,7.178526535605936e-06,0.0007619733307610414,2.2659656014973473e-06,3.790537096156491e-06,6.737108786641328e-07,1.336933567871504e-06,0.003057677114077297,0.004573706868473888,0.005337543165090663,2.3839895027903635e-05,0.3528023920856902,0.9999553827517306,5.668922735530264e-07,4.383755954428939e-06,0.999965621362147,0.00021728022735109705,0.000671929000045174,0.0004720448065744231,0.0006648869964398186,0.021300645704149527,0.0006878266832183108,0.9999738726372714,4.866713509268723e-05,1.3103907124786098e-06,0.032190134011046076,2.349494499998616e-06,0.07826231753535885,0.10851998025513987,0.00019737513185031865,0.0005423747855328188,0.0031789298934275572,0.000123557784668097,0.0036171432053010155,3.7395387856555717e-06,0.00014186053127003255,8.70300906165375e-05,4.8777280041649366e-05,7.159313376628867e-05,0.08973123417869451,0.07078243693080943,0.9999861547607791,6.185227378882522e-05,3.895386333747716e-06,2.191333223596783e-05,9.28733701015877e-07,6.99561221904286e-05,7.264541730777831e-06,3.6212296736178924e-07,0.9999926107785657,7.611653073540189e-05,0.00017121943373668433,0.00015149515354253456,1.2365194939054033e-06,0.9999566436132521,3.65831192834252e-06,4.074520820617926e-06,2.428231186241828e-06,0.9999072281769477,0.04322385589376893,0.07125744799073588,0.10596814165616125,0.03138388235939112,3.0214620098718175e-06,7.453702053563849e-07,0.0008592518561973906,9.542114988622827e-06,2.8140776088618064e-06,1.5627475470346823e-06,0.082753481119996,4.12139783577528e-06,4.437621875189565e-06,0.9999722356750593,4.535194772105828e-05,5.8919937952464533e-05,3.58673771983181e-07,0.025147783693634324,5.62518890980701e-06,2.502578691326888e-06,0.9999803080575655,0.9999951364640672,5.617339344651138e-07,7.557277361894604e-06,0.00042832586779948756,0.00010536430695461384,0.09234972790744769,3.341987504870977e-05,0.056987190521748866,0.13215916707778597,5.062169781010128e-07,0.2840354910924108,0.5371106386898277,0.5426381938681943,0.9999676485792881,4.409653930784947e-06,0.21587423148119803,0.008112777693179222,0.009187212067828354,0.07025708500539922,0.005776707404273977,4.91628184799981e-07,0.46447546368430853,0.9999792114255703,1.2174882437629313e-05,0.9999737837953758,6.568783427265188e-06,0.46136868933133685,0.11588079378792948,0.16832987063322147,0.40459346548175146,6.283926229851441e-06,2.888938886557906e-05,0.0003588644656827712,0.9999460705991261,0.018549476153236304,0.023953108032019287 -नीली,rgb,4.8967661351416465e-09,0.3079989759609126,0.06703819965841652,0.9999888577119657,0.22813100657356009,1.5073585753975316e-06,3.1641789059809726e-08,8.5183209946276e-08,1.3198250321438366e-07,1.1165835505599242e-07,0.006389956747821174,0.026101247722023,0.018985480244861103,0.4170317515880774,0.9999967005486485,3.05484343291678e-09,0.00044173838027906806,0.0005885092667721734,0.0003870213601542353,6.223992348365207e-05,6.235319472758228e-05,1.2731691181472099e-05,1.2069277847488631e-06,2.113710287290959e-05,9.116970776150172e-05,0.0021380177172044762,2.1281246479646523e-09,8.227106254359811e-05,3.0839783029556973e-09,0.6123777986719577,1.5265631894882727e-06,0.13976306325845397,1.499782232308507e-06,9.228466256075619e-08,0.9999833570650499,3.496298506410775e-09,0.00011109714812660406,1.9493762513003352e-05,1.0492255800640666e-05,2.3759321523359004e-06,0.9999799579651408,0.3838982176292543,1.7534977040336894e-06,0.8095853833124209,1.3975390286644995e-08,0.0738902524912172,0.14530877957864785,0.0658695161682758,1.108588769218743e-08,1.9736890746685544e-06,1.4604191462663311e-06,0.9999813079962293,1.0611204983425999e-07,1.4802461043341456e-06,7.120507303820626e-09,2.443850535109401e-06,0.009024212504977881,0.011258254067207745,0.02373831095168578,0.014315547246538855,0.006219100162953322,4.130694954227548e-05,1.8964662045235515e-09,0.367921988818513,0.6227195533229527,7.1066716544430575e-06,0.0005230570076739846,9.12025712685091e-08,8.793774847774093e-08,1.2216003095029133e-07,1.5106885664351393e-06,0.999981392357028,0.9999745948363318,7.896684102006186e-08,0.05644090858075855,0.3107071494491254,0.0013319836409449997,1.182933435839084e-05,1.3656495695578527e-05,0.012692922672778767,2.603292320577939e-09,0.007876561643960469,2.004150554373027e-06,0.014556609274619868,9.558142747485617e-08,2.65886365327478e-06,3.047300930455707e-09,2.4254310204190367e-05,8.120321414510717e-09,2.5307248956855347e-09,7.905164467689078e-08,1.0665409249369825e-09,0.007513840643002897,0.015521635577860153,0.01400267981958433,0.014909990811794956,3.892334268474069e-09,0.014626434772888702,0.008072277287104438,0.012917851602040594,0.014122042729536906,6.600960113452088e-08,2.348141206765194e-06,0.999986826058698,0.017595225626459723,1.5761033582187818e-06,2.0843924466104582e-08,2.1854418573490445e-05,0.005828944843701621,2.151258414662682e-06,0.0010354295131081055,0.9999832697808396,0.9999927081080037,0.03416776729107916,0.011302085653922244,0.008117392157978466,1.1822475012507816e-07,0.005146641904386094,0.027049474691335482,0.023584031148331772,0.14052792770500566,0.009175318111101975,1.7159154117703151e-06,0.9999727029317472,0.02816173058829569,6.834142392258999e-05,0.010209051696389493,1.3648542775413515e-07,5.458948231011239e-06,4.939582768264384e-07,0.00019512742115511145,1.4557273532711255e-07,1.456786371741231e-06,8.116671535303312e-08,1.1969561803183595e-07,0.00020304651899149948,0.00030293798821997935,0.0003704798025988208,3.2791299767936715e-06,0.6691484205360472,0.9999801713450055,1.6259695357971596e-09,1.4424621125835487e-06,0.9999610418825392,4.0269332231801766e-05,0.00012124440801698605,0.0001639687853895495,1.298905113768333e-05,0.0007452046142192148,1.027459607230592e-05,0.9999702731468697,4.523435888970847e-06,3.6003275523528956e-09,0.006120733871790146,6.966942897442324e-09,0.015416351526269282,0.02271199452943657,0.0002461873474363084,0.0006624970716770478,0.00019577517028178306,0.00017134308323034012,0.00022514996176558903,8.753420485408685e-09,0.00015053538553028793,8.83726838797251e-05,4.629570211313986e-05,6.517193533403248e-05,0.018327041980417645,0.0136878473155648,0.9999858775439004,5.995967363079742e-06,1.4663572145851817e-06,2.0079717641987115e-06,2.3895681644770594e-09,7.300533128279008e-06,3.064726818141288e-08,9.402773042453365e-10,0.9999943442682984,0.00010301793821748694,0.00020646497358372875,0.00016689612338151454,3.1053242831273935e-09,0.9999820285561721,1.2716862289052026e-06,1.5830878956365573e-06,7.803391837951132e-09,0.9998760393941991,0.19562835224862052,0.0137704323920278,0.0217986301032605,0.0058738173969706325,1.4611349117306626e-07,4.495219116442521e-09,0.0001528846722706926,7.670291661864206e-07,9.677925087423165e-09,1.5002392616964505e-07,0.018808238739355863,1.5026463022379837e-06,1.364175082830003e-06,0.9999689429122862,4.0138427036805325e-06,4.754884071096237e-05,2.0991244488357332e-09,0.006026059537652373,1.7705109391741457e-06,7.445865502249803e-09,0.9999786711804518,0.999996154350338,3.1980790600160106e-09,4.3326168189543766e-07,1.3269277721407143e-05,9.907854982014888e-05,0.018584796054416312,2.9188446415174286e-05,0.013035964980990982,0.029985216265385608,1.2834692444372702e-09,0.07039467701923646,0.18006116463742156,0.19788523704371117,0.9999637121303859,1.4500981933681065e-06,0.35157314225725816,0.0006145019893698486,0.0007116453856515709,0.30690637884111116,0.0004360368196375653,1.2489645168932896e-09,0.13965887517172756,0.9999918278096818,4.4776379808316105e-07,0.9999716196857024,2.092244048428321e-06,0.14336070704279572,0.02848933070982663,0.03866270470328976,0.712068228939304,4.946564516252152e-07,2.5604957765844763e-06,9.529406401931333e-06,0.9999760406912318,0.0034534189535646463,0.004819219345016248 -नीले,rgb,1.1175266363179101e-07,0.0992890065830901,0.1611926714840272,0.9999873978004135,0.4383310669843039,2.214930961965079e-06,9.38752500001726e-07,2.3639139231730241e-07,3.49777044917875e-07,3.3811609308327713e-07,0.01553119392645096,0.06162394229612782,0.04579160411208726,0.1470427648410868,0.9999953172429824,1.252545800921718e-07,0.002108068178458439,0.0026527254076663654,0.0018432029281727337,0.0001540917728211518,0.00034473765660574836,0.00012894337628035246,1.8822758315358892e-06,0.00026563832442984037,7.42648001805943e-05,0.013433831139151147,5.208501182236423e-08,7.023605517319075e-05,1.182857892109748e-07,0.34679929917849306,2.2424862626390525e-06,0.2823257186584744,2.3074845033339653e-06,4.3985090564905875e-07,0.9999648948833005,1.423739582492684e-07,0.0002802719748778006,0.00015277033325718654,1.3508049711451662e-05,3.855485434140778e-06,0.9999765130414563,0.2163252821174874,2.5658545925490695e-06,0.5717995031242076,4.933402087843776e-07,0.14639517748508016,0.28360279828477714,0.15906511134149862,3.787116940017828e-07,5.8146312745505764e-06,2.1679806215294288e-06,0.999978251875095,3.0340992201179475e-07,2.446590208489036e-06,2.6744233359221765e-07,3.7789065234713027e-06,0.008551761060760724,0.011104972100928936,0.056077536387796674,0.034863810258345555,0.015287901965559538,0.0002421391095421717,7.882733847895795e-08,0.2210164426083578,0.3750806350556357,9.020950879162374e-05,0.004014060332503558,2.758355712118155e-07,2.476339146155058e-07,3.228638742566915e-07,2.4207478032730684e-06,0.9999795034709377,0.9999708512788134,2.517150958149245e-07,0.016997339360223834,0.17166707974987247,0.009177676812972395,0.00014621492848315378,0.0001425738555462001,0.012944808865658061,6.200675292142475e-08,0.007795402287031383,1.1708343691699358e-05,0.015901765864176992,2.6157954198508356e-07,1.625856897068172e-05,1.1925294165438784e-07,0.00019445482522608632,1.551942537460497e-07,5.961031252748092e-08,2.2505840518108637e-07,4.3962759435355977e-08,0.006760185492388544,0.015295235740265102,0.014582387337745403,0.016039225975661695,1.4766844125510473e-07,0.0160161299483568,0.007846963515533696,0.014153946472251554,0.016486633106549957,1.8780755135300824e-06,3.866746896311607e-06,0.9999845994003135,0.020593611880201115,2.291538646823883e-06,7.20196027805919e-07,0.0002671351959083486,0.03044619981259453,3.6417281599659784e-06,0.006412558220478336,0.999980875924956,0.9999910567473549,0.07316779162938103,0.026840154671613128,0.019158217615065507,4.4372892867182365e-07,0.01055108038363111,0.06449236213602816,0.07502461833401666,0.2869617659706358,0.01937730971196655,4.734448706167684e-06,0.9999701886639268,0.059078441936707325,8.792216073513609e-05,0.02142340610533277,4.863780433648692e-07,1.6441237830828288e-05,2.274462694597461e-06,0.00038016767839610697,6.994714443265234e-07,2.1327376525796676e-06,2.5581300291671956e-07,4.6044495552113203e-07,0.0009771922234321029,0.0014633675570144824,0.0017360565842699934,9.553979038058855e-06,0.4059640463292435,0.9999597746722213,6.229598462769881e-08,2.3421121208067306e-06,0.9999576363967638,9.687358762961201e-05,0.0002980377171054398,0.0002604220336676005,0.00014055031939532868,0.005582719319814567,0.0001330316451588487,0.9999678056127907,1.7144976382000794e-05,1.422482158097677e-07,0.014859468369903591,2.618540173598888e-07,0.03715515468050226,0.05307168685690774,0.0001668491409755347,0.0004567279588652025,0.0009909362409789518,0.00010809035576129606,0.0011322552463483887,3.8621543488683273e-07,0.00011345549276482458,6.847951691088745e-05,3.745457154305119e-05,5.426773473531029e-05,0.04327082348745136,0.033317166190879,0.9999836056801126,2.2114776699088307e-05,2.1766762642759893e-06,7.664765888239776e-06,9.860397121847582e-08,2.5646050464012494e-05,9.116673948862591e-07,3.8489530513822837e-08,0.9999920783632695,6.595044584032382e-05,0.0001430385995609641,0.0001227228743846062,1.3032933623641624e-07,0.9999618206385847,1.9899337297941e-06,2.301361754496793e-06,2.778756791152581e-07,0.9998786009450199,0.05983147145618607,0.03353878831273122,0.051492180459130836,0.014406927340612826,8.490134637775809e-07,1.0460505775477516e-07,0.0003796713601872999,3.1870077901306064e-06,3.293936759948531e-07,5.51137645824461e-07,0.04122881710534273,2.278727257115163e-06,2.317460378373077e-06,0.9999659720453782,1.5714407825292833e-05,4.286334957091625e-05,4.975841242649716e-08,0.012499871582524946,2.9628585248242528e-06,2.7926614646080105e-07,0.9999761662121172,0.9999947405018953,7.730076138614406e-08,2.253288974989575e-06,0.00010536614759507719,8.083599362965422e-05,0.04435764778456322,2.4926884972398045e-05,0.028214193831758896,0.06684071049036126,5.342227619950159e-08,0.15503921390195277,0.3495740270370787,0.36190196623228477,0.9999602828641473,2.355502635338525e-06,0.21760908084679775,0.002723448729344218,0.0031098225500470356,0.0988855775692766,0.0019329718108982766,5.191343943039397e-08,0.2855966407465658,0.99998208204143,3.135058074902338e-06,0.999968229026927,3.4751528512831084e-06,0.2859665445335181,0.05984278655087215,0.08644751643364038,0.4586055719373576,2.0817080308859334e-06,1.0001250045610522e-05,8.381587950422605e-05,0.9999513393054652,0.00845323111097557,0.011228379336041872 -पत्तागोभी,rgb,1.5727906616097388e-08,0.9981888330129037,0.9999673144842647,0.999999999999978,0.9999973856405603,3.01159751930454e-06,1.2158856295189999e-06,4.99782090151072e-08,1.1269973252591712e-07,1.1992512467765993e-07,0.9964495594880157,0.9997519289695115,0.9995595959393048,0.9991919011533898,0.9999999999999942,9.332426836943429e-09,0.8992383503520273,0.931250040695449,0.8733346360695116,0.034143044693649684,0.22151574183092473,0.043559621665728486,2.3001591494020933e-06,0.15213177073377895,0.0020658040863106124,0.9968766733273979,2.6744889119901716e-09,0.0019801946723795503,9.289159685924393e-09,0.9999478673305912,3.091477575634101e-06,0.9999905793762744,3.499774130890872e-06,3.0784630209953434e-07,0.9999999999998157,1.261178813604896e-08,0.10579035875630051,0.05920315514366016,0.00011668302453859161,1.1236254708483731e-05,0.9999999999999416,0.9998861054030789,4.106747376498858e-06,0.9999895869198449,2.4539296624128815e-07,0.9999537856503464,0.9999904622453899,0.9999664151656836,1.4539896603173862e-07,5.0979128437170236e-05,2.916428748664324e-06,0.9999999999999485,8.930623462843149e-08,4.3595496377795396e-06,5.888287562766199e-08,1.0113994577421544e-05,0.9717350491401976,0.9836629432002937,0.9997007435667608,0.9992543088089124,0.9963699329489235,0.12694908144754408,3.1724540059453253e-09,0.9999065860394828,0.9999636947095522,0.02139707258472606,0.9709750902508237,7.664672660707693e-08,5.622771534373663e-08,9.426332266627363e-08,4.0932829283808465e-06,0.9999999999999547,0.9999999999999194,6.596368926042666e-08,0.9525382300440733,0.9998153800844019,0.9936881879496637,0.05354077739285463,0.05241418568037789,0.9883188345182233,4.067445719693232e-09,0.9680773447133847,0.00033875774072462543,0.9927667046880778,6.157033738193808e-08,0.0006733850000625771,9.123845118390872e-09,0.09190193437249221,3.67023173513049e-08,3.759652377522527e-09,4.6056095217737257e-08,8.354870103587208e-10,0.9530490086374945,0.9911695209263091,0.9909480458467629,0.9927557303656014,1.5563756135803113e-08,0.9928861955743095,0.9677708851724126,0.9909743248916462,0.9937538772607722,5.461866625358895e-06,1.1519921587406685e-05,0.9999999999999696,0.9959530866023167,3.1932226332169476e-06,5.695312469547058e-07,0.15444643328378382,0.999311809945031,1.050149163867374e-05,0.9875362084798713,0.9999999999999583,0.9999999999999862,0.9998119294606482,0.9987397059215011,0.9975755544812489,2.630602106666767e-07,0.99151948954211,0.9997750124785688,0.9998591839087118,0.9999910470702984,0.9974196545405516,3.123259705569026e-05,0.9999999999999194,0.9997062921172302,0.005580482127019288,0.9978628718904587,3.073654462486979e-07,0.000447483728361935,1.001068282251433e-05,0.14612268842974024,8.403257215009007e-07,2.7622996241453218e-06,6.760993316129249e-08,2.907789401353495e-07,0.671258135583227,0.8165670820592719,0.8593063421795478,0.00014185965537672979,0.999967840109673,0.9999999999997804,2.168590982535508e-09,3.879902479301841e-06,0.9999999999998608,0.013391168683189802,0.11561904583367812,0.06096779955806824,0.050865494617312434,0.9841713095351285,0.04444532900577248,0.9999999999999096,0.0005812206513019638,1.3318274547854804e-08,0.9961326918045194,5.6154143328482736e-08,0.9993365577801093,0.9996636632420617,0.008100684702360665,0.06134655264349747,0.6814049214539293,0.002953124556935596,0.7339644369052322,9.809541601279265e-08,0.004369077579700268,0.0016146720013978614,0.000493882500316675,0.0011177236285201885,0.9995005373074557,0.9991852155016462,0.9999999999999667,0.0009590141467522765,2.9414228730973357e-06,0.00011141670789999923,5.3645060765581325e-09,0.0012525514292931908,1.1393463147420717e-06,6.20792029013771e-10,0.9999999999999876,0.001088160946661157,0.006132523391939311,0.004934057639474146,9.74670712368187e-09,0.9999999999997877,2.6043089183254827e-06,3.2220804080017556e-06,6.969949555346457e-08,0.9999999999993143,0.9952971598669896,0.9991959855081752,0.9996455773053309,0.9959268436418466,1.415330267655992e-06,1.3363945627377479e-08,0.17559485612970108,1.9002452260443107e-05,1.0798634365692306e-07,4.1333767918246256e-07,0.9994208211544635,3.341285893722607e-06,4.020638291875822e-06,0.9999999999999007,0.0004971607254156754,0.0007746667412828018,2.4853188291060504e-09,0.993925739303742,6.6692222979813685e-06,6.488959972692109e-08,0.999999999999942,0.9999999999999933,6.583201075365953e-09,1.0541270862550138e-05,0.029463578204091522,0.0024663168300469124,0.9995278199795575,0.00022974828050739061,0.9987750105882812,0.9997806678160618,1.2892013411762066e-09,0.9999622796372428,0.9999946729349365,0.9999949821376998,0.9999999999998737,3.9297601480263486e-06,0.9999101441985077,0.9339736447832511,0.9476998367947334,0.9981751581792775,0.880036678013425,1.2097003695893535e-09,0.9999909409982038,0.9999999999999338,2.392135888531593e-05,0.9999999999999094,9.280309385239918e-06,0.9999908155769907,0.9997140227936723,0.9998702646133895,0.9999789651377637,7.828449309425181e-06,0.00019619123007656153,0.019145356688612954,0.9999999999997018,0.9887296162245012,0.9931909881606497 -पानी,rgb,0.0021140877127320355,0.9999611516027799,0.00015071291138176907,7.609993772269464e-09,2.3269190403920973e-05,0.9999882465196204,1.4938490819665479e-05,0.9999207359237164,0.9999068401953775,0.9997515713272681,0.009524107526258239,0.0013338165890717838,0.0018813482615082752,0.9999413950307324,1.036852349660098e-08,1.4751741289060227e-05,0.0008534102541801897,0.0009676140532899188,0.0010456136681582418,0.8379728396465639,0.003289772926348443,0.00010728490215176495,0.9999850923090291,7.126192437352852e-06,0.9999854159645443,6.8464916937530765e-06,0.0032447984501150396,0.9999806956777343,2.7739067284923123e-05,0.9966305249154296,0.9999880790130653,0.00011978686799676517,0.999982384909468,0.9883601491748735,4.204326504982267e-06,1.3218012557593984e-05,0.664170678920398,0.0006471082650453474,0.999952170443999,0.9999476540298118,2.4962305959531694e-08,0.989111883984139,0.9999861605841125,0.9927390814470871,8.42558534147789e-06,0.0009665810752935115,0.00016096761218394794,0.00015050515985208174,1.5677525286187596e-05,0.9912373662247032,0.9999876521804723,2.109567959349937e-08,0.9998614799640669,0.9999671148249017,1.1328150163428774e-05,0.9999647328716428,0.9711631095190144,0.9450679182013378,0.0015682690199719028,0.0027260663950440843,0.008929902142727127,0.0033755798698148105,2.402085939832436e-05,0.9769511043251966,0.9927827035064136,2.9027323240441055e-05,8.156439632154177e-06,0.9998117799945858,0.9999057100500114,0.9999179004679647,0.9999744012848893,1.2636341544508578e-08,2.903801539322756e-08,0.9997498644485356,0.9999902684514049,0.9902943288296389,5.809622702131835e-06,1.8502935862576633e-05,7.344512576411426e-05,0.9147570329455126,0.003225192330380028,0.9647885249205389,0.1768956318526779,0.8249990177317323,0.9999186428477315,0.08793896794455265,2.3212984553150908e-05,0.00038839980723525276,0.005736635191440301,0.00371534242842486,0.9999095457778531,5.471262835441122e-05,0.9858096796023483,0.9173040730213756,0.8853449677925058,0.8399694889552204,2.27326221238247e-05,0.8208260997608837,0.9689217522897418,0.8444308521076195,0.7276622295099835,8.31534351803128e-06,0.9999412155728574,1.320485201321206e-08,0.6559408149584522,0.9999886570361293,6.083483364996205e-06,8.824509603325986e-06,8.224867571677301e-06,0.9999329830127484,2.2741972790084188e-05,1.5230490601821537e-08,8.6377464193494e-09,0.0021326222458304387,0.005012921467537781,0.008770774502917238,0.9981367781214476,0.05991049932232177,0.0011365575832353444,8.519657740085162e-05,0.00010208845259446076,0.020327101789452198,0.9959693405502771,2.0446394548900752e-08,0.0036823250463410436,0.9994088027237216,0.018413749282100576,0.9985908243764864,0.9593110877957541,0.9257593299653505,0.9055188170024793,0.9773229379111243,0.9999891312613968,0.9997658525421932,0.9976338492502255,0.00232256786675376,0.0012897061508907305,0.0012902972899031925,0.984440998856769,0.9950233090437978,3.7970474454916724e-06,6.440164603962823e-05,0.9999729061476242,3.3027404198917904e-08,0.9238877964915878,0.6896748828477627,0.9872206001586226,5.634783587918318e-05,6.161206349493844e-06,1.454562124103062e-05,2.1436110012196374e-08,0.7894426856193176,1.7027044838181892e-05,0.010253237157799288,1.1581593321955702e-05,0.002670640669578851,0.001881525478614382,0.9999892028565728,0.9999520787311382,0.0015353601817981325,0.9999964979861236,0.0013432015007610193,1.8232001123055218e-06,0.9999856682110994,0.9999910391432695,0.9999944786526045,0.9999887032600511,0.002447270207035459,0.0029437109592635622,1.3705435679658597e-08,0.7666503258658227,0.9999875916073091,0.9130615964585967,1.9094567446955954e-05,0.7969568696656889,1.519941231234407e-05,6.879362250276094e-05,2.0274208843137188e-08,0.999997985495623,0.9999896412626436,0.9999867793891501,1.152317689224572e-05,5.0176491911929095e-06,0.9999835352465404,0.9999886049826592,1.6750123984177563e-05,6.775009470352623e-08,0.9999724560390701,0.0028987186167433983,0.0018185833696116127,0.009909779093927666,0.8833005521075638,0.0019690589121457323,0.5959462710735762,0.9463799455313743,1.943777926071703e-05,0.997897665575491,0.004758372912138153,0.9999844821307957,0.9999622711898608,2.5439119669915978e-08,0.7662906444562547,0.999984990027962,0.0044614441600227,0.043536948903498414,0.999953368151073,1.0827141152204793e-05,1.7619916667626318e-08,9.227584632548083e-09,0.002148646227660264,0.8302049714857533,0.0009698153047348773,0.9999834542553242,0.0021556842763749734,0.9999951827920082,0.009572436148687696,0.0018235802096628363,3.9238511061500105e-05,0.0003467738252856441,7.109736752657185e-05,0.0001073279916894309,3.161825671001094e-08,0.9999726123019429,0.9672895451131341,0.0010645809506594258,0.0009869586934590532,0.999961215191359,0.0017149363445957706,4.1193947711068513e-05,0.00010262338628678664,2.127744954806869e-06,0.23458550256965127,2.7200320007348902e-08,0.9999455428132255,0.00012796649759509962,0.0035641782521718514,0.0010987555941021389,0.9925858004573758,0.9658159948661084,0.8599482476881571,0.0005913449998069966,5.049879613728876e-06,0.02158232081522116,0.021059443406265338 -पीला,rgb,0.9999999999999962,0.04803790079759663,4.5208994209827465e-18,6.61759640034682e-49,4.095187366997408e-22,1.0,0.9999996833748016,1.0,1.0,1.0,3.5686390379592247e-10,2.1183062584793566e-14,1.5362729499167512e-13,0.0034383174890536363,2.330096241672229e-50,0.9999999999949314,5.666834031503789e-08,2.4146620954213362e-08,1.4728664609575427e-07,0.9999610890208778,0.0023640338066628027,0.0010410477493445031,1.0,4.940376230711607e-07,0.9999999999999549,4.298407416000407e-15,1.0,0.9999999999999405,0.9999999999983153,1.1806743278683649e-08,1.0,1.3035469035771367e-19,1.0,1.0,2.207082598579041e-42,0.9999999999879867,0.9967427272400196,0.007849693151505483,0.9999999999999998,1.0,5.851278337354438e-47,1.9632265842384412e-08,1.0,5.7331050944056014e-11,0.9999999787687333,1.7509328123207385e-16,2.0904366220002187e-19,4.837383901578437e-18,0.9999999977627707,0.9999999999999611,1.0,3.237361734135128e-47,1.0,1.0,0.9999999994989941,1.0,0.009685425538876205,0.0008991725764169855,4.3577146721459233e-14,1.0259281187559138e-12,3.4304858805195264e-10,0.01280941134297557,0.999999999999803,4.160662505560572e-09,1.6346294717545314e-09,0.0007774145353349546,1.5773249947963684e-12,1.0,1.0,1.0,1.0,1.0703978437430296e-47,1.784715140031002e-46,1.0,0.999485898337868,8.240519526273283e-08,1.9511358185647798e-14,3.770270489862666e-05,0.0003562809658113941,0.00019282970814288016,1.0,0.010022345060640946,0.9999999532107642,1.7370660748424075e-05,1.0,0.999999149993885,0.9999999999978002,0.0011112624817640868,0.9999999999999949,1.0,1.0,0.9999999999999976,0.09460236428403342,9.739642775436382e-05,6.243260167849007e-05,2.0295252922504895e-05,0.9999999999924489,1.597542482640806e-05,0.012290624376250994,3.769113523213256e-05,5.313010925126296e-06,0.9999725688656417,1.0,3.7226696187453585e-48,1.0687949407885607e-06,1.0,0.999999746969101,6.659415199376479e-07,1.2659440273941798e-16,1.0,9.098611251288008e-13,1.117107380419516e-47,2.1295573993596757e-49,2.0889661839592747e-14,9.71298533273396e-12,1.1899641936410762e-10,1.0,5.3721298359058104e-08,1.2999634857106584e-14,8.062798953916397e-17,9.003834264510644e-20,4.897838383207759e-10,0.9999999999999962,1.0736319611233317e-46,1.4727740534326366e-13,0.9999999999051601,2.6062886780242786e-10,1.0,0.9999999999184481,0.9999999999999809,0.9991711658634566,1.0,1.0,1.0,1.0,1.038525563972656e-05,6.052749833273665e-07,2.7483718882421034e-07,0.9999999999988736,1.938774507554842e-09,3.1377677029116664e-42,0.9999999999999847,1.0,9.853949741818777e-46,0.9999989752802507,0.9964744330349758,0.999996407039349,0.0002529745458551846,2.172283342641717e-13,4.1274522424030554e-05,1.5802481052344854e-46,0.9999999976372256,0.9999999999912406,4.957676220979686e-10,0.9999999995667133,7.379626797534661e-13,7.70446544034475e-14,0.9999999999990239,0.9999999985131673,4.916127192259326e-06,0.9999999999999838,2.124693241774796e-06,0.9999999627486083,0.9999999999997045,0.9999999999999876,0.9999999999999998,0.9999999999999933,3.1342323434350604e-13,1.442593884245641e-12,5.077000591038671e-48,0.9999999901255777,1.0,0.9999999999911651,0.9999999999990568,0.9999999853496204,0.9999997353087787,0.9999999999999991,5.697765104570776e-49,0.9999999999999993,0.9999999999995479,0.999999999999639,0.9999999999914266,4.2055999921451825e-42,1.0,1.0,0.9999999996242437,2.2958385604947465e-43,0.5003179672899726,1.362754366019542e-12,8.376308668052977e-14,5.379753943656151e-10,0.9999999999999996,0.9999999999999971,0.9785281299347411,0.9999999999999458,0.999999999211608,1.0,1.2286275723741497e-12,1.0,1.0,2.6366143201210683e-46,0.9999999980349146,0.999999999999996,1.0,1.3924126653663524e-08,1.0,0.9999999993255737,3.4255905189636103e-47,2.997026180424557e-50,0.9999999999999996,0.999999999999911,0.08147507435384209,0.9999999999999161,2.2480359276089764e-13,1.0,2.3626803808197467e-11,2.457973698114524e-14,0.9999999999999885,2.2670217223009768e-17,1.3729414752410775e-20,2.1744789112373302e-20,7.072046487408668e-46,1.0,2.3061443175670164e-09,2.5050779768491423e-08,1.1998066436736155e-08,0.04906280929204652,2.680327493132243e-07,0.9999999999999909,9.354345695199449e-20,4.747722510417598e-44,0.9999999999561733,2.2485405507044975e-46,1.0,1.3472719049037742e-19,1.3105048821181425e-13,3.011747814990975e-15,3.670081520218454e-10,0.9999999999999969,0.9999999999213649,0.10762818633370237,1.1019750869344294e-41,2.346556647514786e-08,6.204297960088853e-09 -पीले,rgb,0.9999999999999962,0.04845411198008564,4.511554228374811e-18,6.740487225778646e-49,4.090239802457423e-22,1.0,0.9999996894862127,1.0,1.0,1.0,3.5590848190735174e-10,2.1129726337454484e-14,1.5323016867343656e-13,0.0034699435332419203,2.3804786465459098e-50,0.9999999999950828,5.657441479327937e-08,2.4102050394847283e-08,1.4704651986962295e-07,0.9999610736102436,0.0023627638793495198,0.0010439345753757445,1.0,4.959798186360715e-07,0.9999999999999551,4.295805896751752e-15,1.0,0.9999999999999409,0.9999999999983638,1.1876445485473352e-08,1.0,1.3012439612417508e-19,1.0,1.0,2.2438349928306463e-42,0.9999999999883395,0.9967395773317155,0.007859565988274609,0.9999999999999998,1.0,5.949269586832986e-47,1.9705440923067635e-08,1.0,5.770741610262597e-11,0.9999999792667451,1.747051270445736e-16,2.0866970576844584e-19,4.8273620289306774e-18,0.9999999978153054,0.9999999999999614,1.0,3.2922824544496504e-47,1.0,1.0,0.9999999995120401,1.0,0.009684432469025919,0.0008988096917369311,4.34663487919197e-14,1.0232281586552851e-12,3.4212959040043914e-10,0.012807494293308564,0.9999999999998093,4.173354166494484e-09,1.643227210157573e-09,0.0007809792455754066,1.5776340789010346e-12,1.0,1.0,1.0,1.0,1.0887542408133725e-47,1.813532227910261e-46,1.0,0.9994902474324786,8.269101567930279e-08,1.9506460190370747e-14,3.785684821890983e-05,0.0003573164039718799,0.00019271179450932726,1.0,0.010019650210863233,0.9999999533428543,1.7353830828124023e-05,1.0,0.9999991521247747,0.9999999999978639,0.0011126209899240795,0.9999999999999949,1.0,1.0,0.9999999999999976,0.09462573624656244,9.734655882311102e-05,6.238624484701717e-05,2.027681863097967e-05,0.999999999992659,1.5959759947934687e-05,0.012288333122784203,3.765545597874409e-05,5.306435894887774e-06,0.9999730475855177,1.0,3.7895294802590214e-48,1.0674057076279038e-06,1.0,0.9999997526060923,6.68412653448596e-07,1.2645459136413104e-16,1.0,9.091131545576685e-13,1.1364732521992596e-47,2.1712631648880214e-49,2.083797250922039e-14,9.687141113911504e-12,1.1867835299949588e-10,1.0,5.358587139773079e-08,1.2967107372516696e-14,8.045701149025214e-17,8.988169194719367e-20,4.885044840584686e-10,0.9999999999999962,1.0909099968265482e-46,1.4690640327999168e-13,0.9999999999053866,2.599487420505388e-10,1.0,0.999999999918614,0.9999999999999809,0.9991705505461488,1.0,1.0,1.0,1.0,1.0370708142800393e-05,6.043486273698901e-07,2.7438246831422054e-07,0.9999999999988769,1.950152704088877e-09,3.1885858396532086e-42,0.9999999999999851,1.0,1.0003105039967672e-45,0.9999989754190534,0.9964709656280931,0.999996407857246,0.00025377191160560114,2.1724988158369244e-13,4.146047899015108e-05,1.6053471962851067e-46,0.9999999976415432,0.9999999999914924,4.94441206390406e-10,0.9999999995780247,7.360268779704875e-13,7.684761868242371e-14,0.9999999999990292,0.9999999985194117,4.909840712182624e-06,0.999999999999984,2.121838667249765e-06,0.9999999638068877,0.999999999999706,0.9999999999999876,0.9999999999999998,0.9999999999999933,3.1260871354810996e-13,1.4387880606130367e-12,5.167263315793171e-48,0.999999990140268,1.0,0.9999999999911917,0.9999999999990858,0.9999999853687347,0.9999997404431967,0.9999999999999991,5.8115407962703194e-49,0.9999999999999993,0.9999999999995504,0.999999999999641,0.9999999999916862,4.274869878002414e-42,1.0,1.0,0.9999999996336211,2.32446426274388e-43,0.5025023127036,1.3591604889113512e-12,8.354840419080949e-14,5.365355562271072e-10,0.9999999999999996,0.9999999999999971,0.9785029658296156,0.999999999999946,0.9999999992303286,1.0,1.2254376753837613e-12,1.0,1.0,2.678082515096509e-46,0.999999998038744,0.999999999999996,1.0,1.3888494192497355e-08,1.0,0.999999999343044,3.482843217053796e-47,3.0606927661942936e-50,0.9999999999999996,0.9999999999999114,0.0815940756033928,0.9999999999999165,2.242206576953153e-13,1.0,2.3564753189866793e-11,2.4518231256576743e-14,0.9999999999999889,2.2621166692303627e-17,1.3707972378413985e-20,2.171054483883916e-20,7.180309976484191e-46,1.0,2.3123845886833375e-09,2.5003439280879275e-08,1.1974723511313532e-08,0.049487223115946506,2.675475694325922e-07,0.9999999999999911,9.338037215499e-20,4.835472042330335e-44,0.9999999999564044,2.284319139638078e-46,1.0,1.3448945157260206e-19,1.30720643639149e-13,3.0044489036722027e-15,3.691280165069909e-10,0.9999999999999969,0.9999999999215692,0.10784608023337117,1.1193219645548079e-41,2.3403989667606936e-08,6.187927035648522e-09 -प्रकार,rgb,3.515625800638882e-20,1.0,0.00044717734189412547,0.999913319559704,0.0003795806729225475,0.9987388307180128,1.3581463599950332e-22,0.007999160566558897,0.017285859702471325,0.0014162340022961105,0.004668104111888194,0.003196970527713893,0.0027880483818396007,1.0,0.9999983882974454,4.2750663734436995e-25,2.5435974080566437e-08,7.017377935981747e-08,2.754725026757216e-08,0.013637760682649422,2.6016062751725653e-09,3.3068528236256045e-14,0.9962735272406984,4.385016437535692e-16,0.9999999561273302,6.640555581680728e-11,1.0941131154160031e-20,0.9999998951117565,1.5751182125195374e-24,0.9999999999999736,0.9987420939358959,0.0024012850227380163,0.9969680657518201,2.433710694884314e-07,0.9999999995440088,4.7413629290222405e-25,0.008181017913628139,4.214311664465459e-12,0.9998379117331339,0.9906473990771988,0.999963970945983,0.9999999999959741,0.9987922054760395,0.9999999999999905,5.582048984299312e-24,0.028514255432323856,0.0050245415420213935,0.0004241750990964173,1.1201711863546463e-23,0.001188700566846643,0.9984787350236167,0.9999576572926098,0.004295982816657605,0.9881863937434702,1.9523821801766625e-24,0.996241421586843,0.999997342314105,0.9999938688739899,0.0034740020795751463,0.002851421123918542,0.0037912541615540015,9.40654583183823e-10,3.644636114361925e-25,0.9999999999753604,0.9999999999998792,4.868777700627234e-16,2.398669956397278e-12,0.0015209315776562136,0.006008207933298779,0.018527191542765813,0.9934056056223696,0.9998778601552926,0.9999498060306746,0.0005745887316125959,0.9999999999999993,0.99999999999251,1.3637969502807873e-11,7.101315984969318e-16,1.8016955886340025e-14,0.9999878815483628,1.7724007248730434e-20,0.9999940662399188,2.2376913482922227e-09,0.9999518768380377,0.010146381669581109,8.623501759830389e-10,1.0657196826698447e-24,2.5564582978635638e-12,9.78342011559987e-19,2.2154387109788405e-20,0.004999962635516616,4.871894501136369e-25,0.9999990714487954,0.9999934318575832,0.9999812738188392,0.9999640916450868,1.8484272587166455e-24,0.9999495145181972,0.9999957785671173,0.9999508019266878,0.9998256970754611,2.5561082320322275e-22,0.9876821763819373,0.999956677952863,0.999802873075572,0.9989588784811706,7.697232065704703e-24,7.443741957788775e-16,1.3659737517570581e-09,0.9797027232808203,1.210922977458619e-10,0.9999381947535083,0.9999791771329024,0.017669415058503786,0.005467955234637318,0.007385572861084826,2.267081068269808e-05,0.12456678552660927,0.0025169194241347974,7.55296545829794e-06,0.0017470983017431863,0.05851295778949295,0.0043245060182570145,0.9998727734093066,0.03249061424267678,0.9997425016805641,0.06263988158829166,5.931520855224637e-05,0.0006011866099262241,3.133231529962781e-07,0.5051509602790162,1.864978896137151e-07,0.9988343922571498,0.0007094166276705497,1.4085014085651285e-05,2.7223061853260345e-08,2.253558505305926e-08,3.8192817674757326e-08,0.0012940335198350832,0.9999999999999687,0.9999999990863102,1.8595910724557747e-24,0.9916206154801934,0.9998767956766381,0.02624590990888292,0.01309888678909668,0.9818899011829514,9.125523651686776e-15,3.3726649820063078e-12,2.9995700809006613e-16,0.9998545334080813,7.5739119010927276e-06,8.506650864452073e-25,0.004869891819727215,1.936357085335477e-24,0.003329701790652963,0.00451842110073443,0.9999999983231622,0.9999999970051292,1.0379341409491215e-08,0.9999999996115685,1.129718814021837e-08,7.946330041290994e-26,0.9999999887233947,0.9999999832527066,0.9999999675623091,0.9999999386435563,0.004405824898665424,0.0029727945047224387,0.9999515223744319,1.1906284600427605e-05,0.9984788330613954,8.1348571480496e-06,3.989685087741321e-25,2.890058854646291e-05,1.2997861360708721e-22,5.737361291608429e-25,0.9999982596017282,0.999999999547559,0.9999999975588203,0.9999999927754293,2.6969147955353733e-25,0.9999999996123119,0.9959768712968725,0.9989606306168735,5.4154049349384154e-24,0.9993586808776548,0.9999999999999998,0.0029246623814228566,0.0037663344376730333,0.004063409354055773,4.798537374875301e-09,2.4568186964962495e-20,0.010138728241754965,2.0276876288660244e-06,1.2439154489329662e-23,3.231867098791998e-05,0.01896282198489905,0.9976980307583793,0.9805645749043275,0.9998854105959253,4.186265524531356e-06,0.9999997414848425,2.0438808794989355e-20,0.09613967113988678,0.9844082876409904,1.986137986704351e-24,0.999911490600998,0.9999968666429007,1.2705941964059533e-20,3.104186300677872e-08,3.6261316977778195e-12,0.9999999538013163,0.0035042845335397877,0.9999999187202517,0.030790441279224794,0.008963736009942337,3.866295818385876e-25,0.0029495864627621495,0.0017902821030042915,0.005766334940487716,0.9998888014667822,0.9915425367480859,0.9999999999357088,9.602450739961999e-08,1.2037378949631858e-07,1.0,1.0631866417959834e-07,3.9974627758263172e-25,0.001732871020582643,0.9999999997280913,9.973407136353386e-11,0.9999221176541309,0.9859046494889411,0.0029823940616707785,0.03133600433593209,0.0062095001678766,0.9999999999999569,1.769367743109216e-06,4.9117301033326505e-06,5.484217849157021e-13,0.9999999991586761,0.005245737152154948,0.011951055004201811 -प्लास्टिक,rgb,0.1007372765667024,0.9999999999999813,0.2263080231709336,1.0,0.8707971519853513,0.9673620047606127,0.03452347450604922,0.44464749739499615,0.3365715971041947,0.10783952363427016,0.009106300960432665,0.06785592016500433,0.03889477109113694,0.9999999999999927,1.0,0.9994060843512818,2.3086088967500964e-05,3.575204304344678e-05,2.0539999333852036e-05,0.0006182957833846818,3.9271004164987295e-06,1.594443195310809e-06,0.9423411398907104,4.390122621224335e-06,0.9997429826030565,0.0001438695446349621,0.719746284608436,0.9994386610346225,0.9976338008296978,0.9999999999976739,0.966739631888474,0.7014019443503329,0.9310409366027338,0.001183729966801308,1.0,0.9989532935212363,0.0005055974260445643,1.4669047794795839e-06,0.9250598304822432,0.7099605659435432,1.0,0.999999999062624,0.9597288229619266,0.9999999999998324,0.6720188737656482,0.5019494999354088,0.7532725105019933,0.21781805311497093,0.6583624779127463,0.0009879602510538057,0.9634683962936067,1.0,0.229755538527132,0.806212167599543,0.9648338385369306,0.8371372958546671,0.9947176988325436,0.9921992333027673,0.05933800601577335,0.025044394423484058,0.00820379087216122,2.84855584116439e-06,0.9999131964072384,0.9999999951601797,0.9999999999910509,2.6368751885058852e-06,2.3574648414078864e-05,0.16843416881789533,0.3739791666380049,0.39016403781429987,0.8700522451236542,1.0,1.0,0.1267400442840592,0.9999999999985809,0.9999999974181797,7.654277004542306e-05,2.8934459188192096e-06,1.7552746648290997e-06,0.9889758774285701,0.5101215518975015,0.9895844906727285,4.477465471699559e-06,0.9766848725089747,0.41978342835095356,3.086228155949329e-06,0.9984627975578882,1.5877636469937148e-06,0.00891636992019042,0.5083425072189346,0.4036913757419669,0.9999891889219514,0.9971611652319963,0.9940182324289704,0.9866943976103522,0.9810777626529309,0.9941091763521052,0.9761001196825099,0.991958622786468,0.9732595953719518,0.9477761880474525,0.0076708183965442205,0.6633975878228885,1.0,0.955876847655304,0.9703461824598749,0.4045145080021023,3.942348185808301e-06,0.0007135522663123403,0.5947226052669887,4.6835750003454003e-05,1.0,1.0,0.16305594792683434,0.021304170895597746,0.01465493387742408,0.007675259149264403,0.02435518791789459,0.06772372392725479,0.01660824244661772,0.69037086936463,0.03609788322967403,0.002470469616897302,1.0,0.14448858420274624,0.6732278125391579,0.04267345892147071,0.010063447542042428,0.00028163064053573247,8.573751012194041e-05,0.006849849857261178,0.0004447678135928085,0.9712774075048275,0.13574743162090744,0.0057099742266986,1.1801897474819448e-05,1.5940703868477354e-05,2.0691537174606777e-05,0.0006323574134601224,0.999999999998159,1.0,0.9997292770933163,0.8541890141575974,1.0,0.0009080680862561252,0.0006456039383326381,0.0717736565416851,1.8894802150575766e-06,3.703718383015442e-05,3.328268917027665e-06,1.0,4.0958449558573415e-05,0.997875167694464,0.008722640117628837,0.9670254206751384,0.029385301735577306,0.05928639855148319,0.9999824723879328,0.999956408654146,9.909998472832325e-06,0.9999969617794409,1.121817781584618e-05,0.997830394914714,0.9999080268037975,0.9999039575075864,0.9998906977908634,0.9997207222166667,0.04178029211866141,0.023651901997255316,1.0,4.236325649272033e-05,0.9632217170718913,7.677130077154333e-05,0.9997697812285983,5.613899289932767e-05,0.03746304180187235,0.9999926613040956,1.0,0.9999975825619469,0.9999765460447082,0.9999374887332174,0.999622016885708,1.0,0.9329522449353086,0.9701710108366239,0.894909044122099,1.0,0.9999999999999087,0.02375914884460575,0.05278983560509982,0.007781339316994329,0.00010359811804277833,0.14304989492568504,0.0006024565954933877,0.00011120819591164064,0.7098112344407377,0.005854041211048335,0.067191987143415,0.9451732654561675,0.7553983954766946,1.0,3.445087611646872e-05,0.9991129334255434,0.6682751294890548,0.026092242164377458,0.711182812407842,0.9599307262238511,1.0,1.0,0.3855543904873309,4.135113450828814e-05,1.31907599438171e-06,0.999713916400269,0.04004438976005143,0.9998233930378839,0.04612944300352574,0.11137827945448453,0.9999812808614824,0.33053874295736047,0.8135118728220658,0.8788378349852887,1.0,0.852073300823482,0.9999999881307936,3.926070188038092e-05,4.752139550770159e-05,0.9999999999999809,2.843309230647687e-05,0.9999827082706716,0.6865784779581775,1.0,7.745363773392691e-06,1.0,0.6755932782760751,0.724265196418221,0.14544535217653162,0.15223555503657565,0.9999999999982354,0.00018240000800544856,5.033914423792489e-05,1.2404882898042925e-06,1.0,0.0043944057492927855,0.008790842363007877 -फल,rgb,0.2520671184306131,3.556856104730503e-10,0.2141747568157778,2.1065128880109351e-38,0.0004162292421899656,0.9999998759841039,0.003957412654909881,0.9999999780583662,0.9999999873347981,0.9999999934947816,0.9997726614770268,0.9633009855697374,0.9885365774168438,6.18256919367213e-11,1.661710143312419e-42,5.57717670510541e-10,0.9999973241052901,0.9999961386893227,0.999998199829948,0.9999999954529422,0.9999999356946133,0.9999973373675848,0.999999921559399,0.999651550267633,0.9999509735813484,0.9867148693248786,0.005766644038286771,0.9999755691364498,9.016836301216716e-09,1.1835877011167517e-09,0.9999998774905409,0.013388935690374366,0.9999999295917651,0.9999999982694969,3.9089804918650463e-35,1.110375538967445e-09,0.999999989584372,0.9999998061262666,0.9999998649164226,0.9999999761559163,7.015258542949399e-36,8.661557171893723e-07,0.9999998913311177,1.3995145094410502e-11,5.027042077829596e-06,0.3676060552256081,0.013879649334297384,0.22477326903086495,1.1693410220201676e-05,0.9999999996120821,0.9999998866119777,3.4720799360633744e-36,0.999999989189046,0.999999969033677,1.612431863785576e-07,0.9999999602904488,0.9953591907183434,0.993888604169978,0.9748230988193444,0.9959591973993384,0.9997845967820891,0.9999999555496115,6.252827914330996e-11,3.0992594207905476e-06,2.879250547531965e-09,0.9999640324874559,0.9987496460234969,0.9999999901622466,0.9999999818543356,0.9999999848389556,0.9999999569162797,1.923562918002047e-36,4.886952017943114e-35,0.9999999906455007,5.503709598966898e-07,3.825492153820181e-06,0.9921769088347111,0.9999354980590404,0.9999950620866711,0.9932402544219764,0.0211664709032984,0.9975679664272855,0.9999999991992163,0.9933579634792745,0.9999999809267314,0.9999999987305694,3.868491751725238e-09,0.9999995989747538,0.9806075234253611,0.025489097467231093,0.9999999789075826,8.504088403879533e-12,0.9955080156080303,0.9855967819096189,0.9922246500678978,0.9922901826094461,2.6740122786658595e-08,0.9933514902118102,0.9970652524158987,0.995311321883486,0.9955952286322107,0.018931376390441026,0.9999999794188053,1.4410278758262992e-37,0.9917347579572037,0.9999998657528864,1.720818190943223e-05,0.9997764089358602,0.9298849476308698,0.9999999834119875,0.9993049376929981,1.0543239767173468e-36,8.705546586752387e-40,0.930007872964644,0.9984731663912788,0.9995338158625886,0.9999999980449614,0.9999198855184007,0.9555715066085861,0.8376773393368309,0.011694780986467448,0.9994681314690361,0.9999999994803606,5.791643558838767e-35,0.9694512720650884,0.999999818762797,0.9992470032874071,0.9999999980980645,0.9999999996002702,0.9999999996559965,0.9999999570234875,0.9999999990544579,0.9999998641791563,0.9999999904980893,0.9999999982381771,0.9999996564375712,0.9999989773533846,0.9999986070766418,0.9999999996118349,5.435978072045198e-10,1.5454721715971988e-34,1.0933563569132047e-09,0.9999999609884873,1.321256782251091e-33,0.9999999971541778,0.9999999877263904,0.9999999155618615,0.9999921084426145,0.9969100066365777,0.9998876250198399,1.1472801810453496e-34,0.9999999996781619,4.238487936089318e-09,0.9998038454483951,1.5029402605076768e-07,0.9948848613572552,0.9799003800228153,0.9989209348453548,0.9983615809353846,0.9999995293562659,0.9968617613013012,0.9999993568460199,2.897761401450825e-10,0.9998238944678208,0.9998967099780722,0.9999456310113676,0.9999658249167159,0.9909118482618645,0.9965943770844877,2.565292824363917e-37,0.9999999996286046,0.9999998871166521,0.9999999997506317,1.936161071188099e-10,0.9999999995878495,0.0035642714520036393,6.454989595169907e-12,2.7634103810653725e-40,0.9976005038526912,0.9992867568493038,0.9997356789219202,2.140654699023657e-10,7.508585538441773e-35,0.999999929648998,0.9999998662480815,1.436168761982949e-06,1.0182551384295403e-29,4.35552533412205e-09,0.996507524793854,0.9820554487820302,0.999823283825356,0.9999999987751,0.14603193750502771,0.9999999820314079,0.9999999997236757,1.0708952721284824e-05,0.99999999853629,0.9924518943894033,0.9999999161659813,0.9999999749795849,1.9020634633859294e-34,0.999999999688161,0.9999892647120253,0.01225973681264885,0.9998678223262404,0.9999999775942973,1.8602970714085989e-07,7.78249443716758e-36,5.2330105182171644e-42,0.026471970116499936,0.9999999995564199,0.9999998912111524,0.9999512930170045,0.9899412045870707,0.9999736643591017,0.9981049750279735,0.9507421241334766,1.2460866332947403e-11,0.2859335072219331,0.003092043794938464,0.0027022915445181835,7.5069315923251935e-34,0.9999999614110001,6.641559953889963e-06,0.9999961673873566,0.999994683425598,3.6450350156601416e-10,0.9999985751458397,1.1799398205093391e-11,0.012043385329042191,9.995974285026404e-38,0.9999999983545136,1.0448558557941531e-34,0.9999999792441303,0.012607042314728324,0.9679078872698693,0.8649174219644318,3.184529219504598e-10,0.9999999996644025,0.9999999997376701,0.9999997888468555,7.386237242619808e-34,0.9999678597593665,0.9999194497961769 -फिर,rgb,0.9993788155098196,9.474183918146605e-12,1.8098008335315736e-05,4.911431377069695e-07,2.019830599643418e-05,1.198332147432405e-06,0.999879821225115,0.00014265747816782066,8.996954236059168e-05,0.0002141493702091359,8.246327690129912e-06,8.826553378060482e-06,9.3697984452602e-06,8.139551319962561e-12,1.7945873120925607e-07,0.999997932327267,0.0009131479750641126,0.000602742857929359,0.0008993948718734853,1.1229631618245021e-05,0.0028490559887505776,0.242046188542383,1.8071009745013736e-06,0.6393248493537028,1.4348203922287916e-08,0.008257917996279276,0.9997749170437749,1.8931602304226417e-08,0.9999959209248641,4.687852186167397e-11,1.1909611577298272e-06,9.85119002467948e-06,1.550142286020698e-06,0.0040190030909581405,4.65450565519851e-09,0.9999976273121122,1.1801581178529085e-05,0.040456623254818976,3.094002050944118e-07,1.7924014642332437e-06,2.7518865050483263e-07,2.1057372574956233e-10,1.1097403094691634e-06,3.4035117315964575e-11,0.9999823750926979,3.897897465688849e-06,7.49773382682665e-06,1.8453516303052443e-05,0.9999778105953299,6.84242238929461e-05,1.2825024154957891e-06,3.0097314465338967e-07,0.0001549600912390212,2.330247480119975e-06,0.9999926210434417,1.3506177641929042e-06,1.802825444098545e-08,2.2792590988299553e-08,8.586031113938663e-06,9.399807161315434e-06,8.902881122620156e-06,0.004499007938717457,0.9999986072999446,3.6178474813193075e-10,7.245261861571466e-11,0.6723076171633875,0.03339791414807738,0.00023144937773193023,0.00015342040127329433,9.147483524472173e-05,1.9424554187573863e-06,4.5396340115187674e-07,2.850040994043823e-07,0.000338218346676485,2.3395675749199895e-11,2.574684141512836e-10,0.015860619409455764,0.6141096892656547,0.2878476454117658,2.7880375104313377e-08,0.9996832604455839,2.3599574523470017e-08,0.006665893661620857,4.267204802040155e-08,0.0001249113215924269,0.008713925714103387,0.9999966857912849,0.04703465416351795,0.9965249190168359,0.9996559541167079,0.0001715660177121658,0.9999989241754653,1.3332670140103016e-08,2.244510630473391e-08,3.167187492490261e-08,3.874425238929056e-08,0.9999949034000557,4.3313124635296924e-08,2.1142367824033934e-08,4.3525820465462535e-08,6.487738900319844e-08,0.9997820787720224,1.956502890066955e-06,3.4980714370899076e-07,6.610223933719239e-08,1.1122454547281881e-06,0.9999750813135988,0.5848990392533131,0.002408008970099659,2.357305711181222e-06,0.006744818577523156,3.640175983986888e-07,3.3843655446346165e-07,4.697924184894799e-06,7.515331269436883e-06,6.879703824669039e-06,0.0007883056934151396,2.5217721669237498e-06,9.62280642903181e-06,8.358964276542947e-05,1.1091855026607702e-05,3.215834467361403e-06,4.708854338948039e-05,3.964509764562286e-07,3.775822164554907e-06,1.9730341168869923e-07,3.1119030958506186e-06,0.0005384914163745275,6.149732466769122e-05,0.0018354154546138157,2.0916761313727476e-06,0.003594609145197099,1.1886211486268143e-06,0.00031206780241739546,0.0009165802391909854,0.0009804368148823748,0.0009993388118949976,0.0007989263393090864,5.598360097687229e-05,4.878806538767575e-11,5.6027877682989465e-09,0.99999707347132,2.1263040880917323e-06,3.4222353026412626e-07,9.952612502683903e-06,9.861691306822343e-06,5.985487777223368e-07,0.3505284369145837,0.02853126220168043,0.7013891088347544,4.039988487247087e-07,0.00028949958883356115,0.9999967306942615,8.147385883270289e-06,0.9999927378752927,8.857164334045166e-06,7.813402980978959e-06,4.303184180852404e-09,3.88990202938386e-09,0.0014181172652055565,3.2116135571338175e-09,0.001347998609266171,0.9999984315448884,8.431853950345716e-09,1.1069609000775788e-08,1.639987537121086e-08,1.7509794677238522e-08,7.945391871703067e-06,9.277757361999771e-06,3.5505362980028496e-07,0.0002279806200897734,1.2802490585811556e-06,0.0003639438633130105,0.9999982959312583,0.00015862620461830096,0.9998838950180621,0.9999989337662731,1.4539383699032638e-07,3.9316430946969886e-09,5.0226154434390635e-09,7.223937472697633e-09,0.9999983592298495,4.282456003060816e-09,1.8068373161979646e-06,1.1096057323695388e-06,0.9999870722089156,4.2857246161220403e-07,1.2828743795398492e-11,9.330201916228985e-06,8.359389153405615e-06,8.720235770237485e-06,0.0127830909184114,0.9994952383490989,1.0284243136251346e-05,0.0008185861871067353,0.9999781863407294,0.0006289083303074839,4.672135732662154e-06,1.4291519819760695e-06,2.800692810448925e-06,3.624067488553615e-07,0.0003685782686574489,2.9041914229581377e-08,0.9997044384086796,2.7522285862860543e-06,2.3529250191461036e-06,0.999992375750158,3.795213876749446e-07,2.1620208316793524e-07,0.9996914217651443,0.004325410565616524,0.04600320686935939,1.419282989528666e-08,8.629424491623337e-06,2.4765379559529423e-08,3.986754594907269e-06,6.039926486417325e-06,0.9999989085805424,9.000848091230234e-06,1.1110044821151558e-05,7.215409987910854e-06,3.3783256954405064e-07,2.1274503127985087e-06,4.840664852942051e-10,0.0005330116710991961,0.0004820821790919836,9.50514211816201e-12,0.0005329581189000968,0.9999989109885161,1.1123145201291644e-05,4.997171671307922e-09,0.033260229969620934,3.2332589324290136e-07,2.133541790579333e-06,9.096564872404327e-06,3.8252041138645464e-06,6.86900340439219e-06,5.310555742353613e-11,0.0010106465530007834,0.00040037601317199955,0.09827425316934194,5.107309009980203e-09,8.31504026207277e-06,6.019269688291584e-06 -बंद,rgb,1.5727906616097388e-08,0.9981888330129037,0.9999673144842647,0.999999999999978,0.9999973856405603,3.01159751930454e-06,1.2158856295189999e-06,4.99782090151072e-08,1.1269973252591712e-07,1.1992512467765993e-07,0.9964495594880157,0.9997519289695115,0.9995595959393048,0.9991919011533898,0.9999999999999942,9.332426836943429e-09,0.8992383503520273,0.931250040695449,0.8733346360695116,0.034143044693649684,0.22151574183092473,0.043559621665728486,2.3001591494020933e-06,0.15213177073377895,0.0020658040863106124,0.9968766733273979,2.6744889119901716e-09,0.0019801946723795503,9.289159685924393e-09,0.9999478673305912,3.091477575634101e-06,0.9999905793762744,3.499774130890872e-06,3.0784630209953434e-07,0.9999999999998157,1.261178813604896e-08,0.10579035875630051,0.05920315514366016,0.00011668302453859161,1.1236254708483731e-05,0.9999999999999416,0.9998861054030789,4.106747376498858e-06,0.9999895869198449,2.4539296624128815e-07,0.9999537856503464,0.9999904622453899,0.9999664151656836,1.4539896603173862e-07,5.0979128437170236e-05,2.916428748664324e-06,0.9999999999999485,8.930623462843149e-08,4.3595496377795396e-06,5.888287562766199e-08,1.0113994577421544e-05,0.9717350491401976,0.9836629432002937,0.9997007435667608,0.9992543088089124,0.9963699329489235,0.12694908144754408,3.1724540059453253e-09,0.9999065860394828,0.9999636947095522,0.02139707258472606,0.9709750902508237,7.664672660707693e-08,5.622771534373663e-08,9.426332266627363e-08,4.0932829283808465e-06,0.9999999999999547,0.9999999999999194,6.596368926042666e-08,0.9525382300440733,0.9998153800844019,0.9936881879496637,0.05354077739285463,0.05241418568037789,0.9883188345182233,4.067445719693232e-09,0.9680773447133847,0.00033875774072462543,0.9927667046880778,6.157033738193808e-08,0.0006733850000625771,9.123845118390872e-09,0.09190193437249221,3.67023173513049e-08,3.759652377522527e-09,4.6056095217737257e-08,8.354870103587208e-10,0.9530490086374945,0.9911695209263091,0.9909480458467629,0.9927557303656014,1.5563756135803113e-08,0.9928861955743095,0.9677708851724126,0.9909743248916462,0.9937538772607722,5.461866625358895e-06,1.1519921587406685e-05,0.9999999999999696,0.9959530866023167,3.1932226332169476e-06,5.695312469547058e-07,0.15444643328378382,0.999311809945031,1.050149163867374e-05,0.9875362084798713,0.9999999999999583,0.9999999999999862,0.9998119294606482,0.9987397059215011,0.9975755544812489,2.630602106666767e-07,0.99151948954211,0.9997750124785688,0.9998591839087118,0.9999910470702984,0.9974196545405516,3.123259705569026e-05,0.9999999999999194,0.9997062921172302,0.005580482127019288,0.9978628718904587,3.073654462486979e-07,0.000447483728361935,1.001068282251433e-05,0.14612268842974024,8.403257215009007e-07,2.7622996241453218e-06,6.760993316129249e-08,2.907789401353495e-07,0.671258135583227,0.8165670820592719,0.8593063421795478,0.00014185965537672979,0.999967840109673,0.9999999999997804,2.168590982535508e-09,3.879902479301841e-06,0.9999999999998608,0.013391168683189802,0.11561904583367812,0.06096779955806824,0.050865494617312434,0.9841713095351285,0.04444532900577248,0.9999999999999096,0.0005812206513019638,1.3318274547854804e-08,0.9961326918045194,5.6154143328482736e-08,0.9993365577801093,0.9996636632420617,0.008100684702360665,0.06134655264349747,0.6814049214539293,0.002953124556935596,0.7339644369052322,9.809541601279265e-08,0.004369077579700268,0.0016146720013978614,0.000493882500316675,0.0011177236285201885,0.9995005373074557,0.9991852155016462,0.9999999999999667,0.0009590141467522765,2.9414228730973357e-06,0.00011141670789999923,5.3645060765581325e-09,0.0012525514292931908,1.1393463147420717e-06,6.20792029013771e-10,0.9999999999999876,0.001088160946661157,0.006132523391939311,0.004934057639474146,9.74670712368187e-09,0.9999999999997877,2.6043089183254827e-06,3.2220804080017556e-06,6.969949555346457e-08,0.9999999999993143,0.9952971598669896,0.9991959855081752,0.9996455773053309,0.9959268436418466,1.415330267655992e-06,1.3363945627377479e-08,0.17559485612970108,1.9002452260443107e-05,1.0798634365692306e-07,4.1333767918246256e-07,0.9994208211544635,3.341285893722607e-06,4.020638291875822e-06,0.9999999999999007,0.0004971607254156754,0.0007746667412828018,2.4853188291060504e-09,0.993925739303742,6.6692222979813685e-06,6.488959972692109e-08,0.999999999999942,0.9999999999999933,6.583201075365953e-09,1.0541270862550138e-05,0.029463578204091522,0.0024663168300469124,0.9995278199795575,0.00022974828050739061,0.9987750105882812,0.9997806678160618,1.2892013411762066e-09,0.9999622796372428,0.9999946729349365,0.9999949821376998,0.9999999999998737,3.9297601480263486e-06,0.9999101441985077,0.9339736447832511,0.9476998367947334,0.9981751581792775,0.880036678013425,1.2097003695893535e-09,0.9999909409982038,0.9999999999999338,2.392135888531593e-05,0.9999999999999094,9.280309385239918e-06,0.9999908155769907,0.9997140227936723,0.9998702646133895,0.9999789651377637,7.828449309425181e-06,0.00019619123007656153,0.019145356688612954,0.9999999999997018,0.9887296162245012,0.9931909881606497 -बनाने,rgb,1.5862850491115922e-21,1.0,0.9999999730539811,1.0,0.9999999989719648,0.001169732858699205,2.3764631674780722e-20,2.1509600296195314e-09,1.2139954152415534e-08,2.848087461920033e-09,0.9999963051804543,0.9999998787533424,0.9999997109118647,1.0,1.0,1.8049244592200315e-25,0.5079903505078217,0.7803418178829563,0.43098277556514614,0.6193007512516452,0.0018348341303396061,8.149277388815727e-08,0.0004074435261296547,3.099037146704631e-08,0.9998828642264654,0.7513158980937558,4.308581877122254e-23,0.9997930405123024,4.7947149323223225e-25,1.0,0.0012189308532920076,0.999999998238779,0.0008708237652148491,5.3904380704958445e-11,1.0,3.1384325905009094e-25,0.8707746148405802,3.232532691862281e-06,0.49203865460050433,0.002574277556156628,1.0,0.9999999999999998,0.0019191216758711225,1.0,2.0001016104341486e-22,0.9999999968867699,0.9999999988761357,0.9999999711044394,1.4963946003958156e-22,2.4239058190109984e-05,0.0009966052800405086,1.0,3.587444794123835e-09,0.0005364122650179651,1.0117417078278715e-23,0.0037961060327738995,0.9999999989160866,0.9999999991898689,0.9999998514045619,0.9999994140129386,0.999995659222709,0.00036560258392997114,2.8870757277061726e-26,0.9999999999999996,1.0,1.6594206994380113e-09,0.014905390918851187,1.4946831524482646e-09,2.1623006665331183e-09,9.629225230173868e-09,0.0006930502985947305,1.0,1.0,6.503989957826979e-10,0.9999999999999931,0.9999999999999996,0.2876092161227858,8.342221447764064e-09,7.161165739726156e-08,0.9999999992457171,1.175674492149385e-22,0.9999999979183878,9.805730061752588e-08,0.9999999991267632,3.4378586954757923e-09,1.455592982774427e-07,3.4741249657518453e-25,4.582185286924917e-06,6.072038642212173e-20,1.216940311433253e-22,1.4187232273787688e-09,4.2404678549678204e-27,0.9999999987774544,0.9999999996470563,0.9999999993182453,0.9999999992653177,1.2172282358437665e-24,0.9999999991221808,0.999999998275245,0.9999999987917179,0.999999998464213,3.6178601749942975e-19,0.0022631660716006742,1.0,0.9999999990990274,0.001432478947169597,9.196324364072665e-22,4.555155563212854e-08,0.9942572706961383,0.0014535395061831152,0.3984855981999868,1.0,1.0,0.9999999716807167,0.9999991993764594,0.9999983658739139,7.311283102323397e-10,0.9999985041478914,0.9999998766373172,0.9999974248520533,0.9999999979889593,0.9999995236319417,2.5941982395827113e-05,1.0,0.9999999647553927,0.9955676232539203,0.999999649084892,1.6885939562047478e-09,0.0003975148638990605,1.2267253587321698e-08,0.9954992744752738,2.1014164533127022e-10,0.0010753680975494804,7.695271143017768e-10,6.330884678050296e-10,0.11970207525102776,0.26492136003908695,0.44089351698188184,0.00011697152791730708,1.0,1.0,5.408997527420018e-26,0.0005533385478768208,1.0,0.3802289316856933,0.9125619667957744,0.9983647749019757,4.334664886548386e-08,0.04270932683977053,3.5123636267801353e-09,1.0,3.8058398840424595e-05,5.318315263294631e-25,0.9999959489618763,9.341061334152785e-24,0.9999995470199707,0.9999998522637307,0.999997644437983,0.9999998418458546,0.07237949367273956,0.9999954807572498,0.10548725620754287,1.9885191071582575e-24,0.9999823729673808,0.9999035263662847,0.9991814746187133,0.9996470141552093,0.9999997423886069,0.9999993553959544,1.0,0.00010556446228995348,0.0010096159386652225,3.470075219785368e-06,7.130865475797228e-26,0.0002723869284208047,2.08591278584576e-20,2.9735855184316193e-27,1.0,0.9999783644108209,0.9999955865370277,0.9999886152303662,1.3620518799063988e-25,1.0,0.00046988902659993024,0.0014535808448690785,2.808096391514035e-23,1.0,1.0,0.999999360536438,0.9999998220917469,0.9999951236997969,4.505780065979257e-11,9.551812275324015e-22,0.9471090312812086,1.0408153422368955e-07,1.0219289560192187e-22,1.818625671766651e-09,0.9999998742327827,0.0009568462038463008,0.0003506835611983812,1.0,2.0829073086085784e-05,0.9985982337045607,5.98454479911832e-23,0.9999988773327951,0.0008614990522769123,1.1915168580186189e-23,1.0,1.0,1.9772902342675215e-22,3.0538635654932748e-09,1.030464835293707e-06,0.99990709868007,0.9999997245533477,0.9956604084775537,0.9999997417040146,0.9999999463871139,7.145891517057577e-27,0.9999999900518938,0.9999999990088047,0.9999999995626043,1.0,0.0005609895930934429,0.9999999999999993,0.8219335384490074,0.8828842787852837,1.0,0.6629484275796903,6.617362147049558e-27,0.9999999979465164,1.0,2.5935668002830386e-10,1.0,0.0015068449306116364,0.9999999985150383,0.9999999652159218,0.9999999669127699,1.0,2.5291671491167738e-08,5.841817142080614e-06,1.5693066957424152e-07,1.0,0.9999827943566141,0.9999949329679266 -बहुत,rgb,0.9999999999999996,1.603550355515789e-12,0.9999999999999998,1.0,1.0,1.8200491175256813e-08,1.0,3.2984861013508376e-05,4.959593736350879e-05,0.0012448795675126423,0.9999999999957294,0.9999999999999492,0.9999999999998996,3.2624371661451438e-12,1.0,1.0,0.9999999999999998,0.9999999999999993,0.9999999999999996,0.9999837579345658,0.999999999999996,1.0,4.571141121913374e-08,1.0,1.741214690864293e-09,1.0,0.9999999999999973,4.951612867591302e-09,1.0,1.06866189587612e-06,1.894800739286929e-08,0.9999999999999998,7.077045597403891e-08,0.9960516552248405,0.9999999999927647,1.0,0.9999987138193762,1.0,5.625358824276232e-07,2.0305322412789303e-06,1.0,0.00022264558956002815,2.8849280440938253e-08,3.0932408867364284e-06,1.0,0.9999999999999354,0.9999999999999993,0.9999999999999998,1.0,0.9724718351918306,2.1866759807875212e-08,1.0,0.00019124690500424202,5.70739624923707e-07,1.0,5.382817512187424e-07,0.5789741187070058,0.9030055593075067,0.9999999999999258,0.9999999999997746,0.9999999999965825,0.9999999999999967,1.0,0.003066549171518026,1.3149578357138954e-05,1.0,1.0,0.0005355440086197004,5.757463225899078e-05,3.360087756371458e-05,2.4528921021590297e-07,1.0,1.0,0.0013834115074614617,2.342932260566175e-13,0.00024075970031362402,1.0,1.0,1.0,0.9736406087069006,0.9999999999999978,0.7579954964185236,0.9999999998612306,0.9977205663263394,3.488007045173583e-05,0.9999999999853675,1.0,1.0,0.9999999999999953,0.9999999999999967,5.160949684811743e-05,1.0,0.13940517144133346,0.9632555871152048,0.9895402504147187,0.9967006980450912,1.0,0.9979074872910775,0.6673887440663567,0.996891594186008,0.9996379345519848,1.0,3.0021480160492356e-06,1.0,0.9998396401744652,1.5745051497113217e-08,1.0,1.0,1.0,4.875216670257732e-06,1.0,1.0,1.0,0.9999999999997211,0.999999999998902,0.9999999999957603,0.4322165487577083,0.9999999989357629,0.9999999999999671,1.0,0.9999999999999998,0.9999999999366695,0.7624201215162508,1.0,0.9999999999988392,0.0005256767968154173,0.999999999947828,0.2327550884593739,0.999639503974637,0.9999832319599194,0.9997191524495905,0.999463967899162,1.4270270574560356e-08,0.001111956457738814,0.617477819739279,0.9999999999999967,0.9999999999999991,0.9999999999999991,0.9940859207917234,2.7416071470158056e-06,0.9999999999962637,1.0,3.04076538301358e-07,1.0,0.9998317021825182,0.9999980221422757,0.8457264453365058,1.0,1.0,1.0,1.0,0.9999988915930722,1.0,0.9999999999948821,1.0,0.9999999999997708,0.9999999999998783,2.414449486464476e-10,1.399255333893801e-08,0.9999999999999991,7.210557385424077e-12,0.9999999999999993,1.0,1.0260828435569882e-09,3.409919915399039e-10,1.1645119359625857e-10,9.89935024069501e-10,0.999999999999788,0.9999999999997293,1.0,0.9999991384025703,2.2177455203811056e-08,0.9999825728522168,1.0,0.9999983393685458,1.0,1.0,1.0,1.7419754776376064e-12,2.494113517787113e-10,7.058767218650886e-10,1.0,0.9999999999893971,6.19212136022501e-08,1.5948300084312046e-08,1.0,1.0,1.1911625870233685e-12,0.99999999999974,0.9999999999998948,0.9999999999955727,0.9999973238412347,0.9999999999999996,0.9999993303645048,0.9999429831852207,1.0,0.5122644749796103,0.9999999999983871,4.626498255133568e-08,9.420958340885481e-07,1.0,0.9999993089456244,3.4292520414655096e-09,0.999999999999994,0.9999999995525428,1.6434813926248194e-06,1.0,1.0,1.0,0.9999999999999993,0.9999990682664534,1.0,2.4765349154641534e-09,0.9999999999998528,1.0846880688792891e-10,0.9999999999909259,0.9999999999998495,1.0,0.9999999999999971,1.0,0.9999999999999996,1.0,3.1426360604970777e-07,0.01103663076422251,0.9999999999999993,0.9999999999999993,1.6068390261762321e-12,0.9999999999999976,1.0,0.9999999999999998,0.9999999999960685,0.9999999997570796,1.0,2.494743980129174e-06,0.9999999999999996,0.9999999999989342,0.9999999999999558,7.752138465675227e-06,0.9997931441888483,0.9999962363043867,1.0,0.9999999999939206,0.9999999999715887,0.9999999999634201 -बीट,rgb,0.9999999983056846,2.123238242816083e-15,0.3737447413163048,0.00022036363534076755,0.5309114963149719,1.6166600661955654e-07,0.9999999999872828,0.0002635286303510555,0.0001784838850120637,0.0011013629432472323,0.04013307482099704,0.08709615121627742,0.0854873422092472,1.893826723114436e-15,1.660380095016945e-05,0.9999999999994313,0.991933164103114,0.9847873014719943,0.9909966330295924,0.0029695352329443168,0.9967704680608604,0.9999985421555259,3.3330397326018873e-07,0.9999999506316486,3.963849219510063e-10,0.9999457247310276,0.9999999989359014,7.348436776196265e-10,0.9999999999985514,3.773637869620463e-13,1.6225061744245243e-07,0.18745510172532195,3.136156930138029e-07,0.40392799788463146,2.309082225032022e-08,0.9999999999994251,0.005518231843738136,0.999955875706886,7.945455741699846e-08,9.027643933284882e-07,9.603478648481192e-05,1.1900126520895635e-11,1.6721378190141083e-07,2.5382873711586787e-13,0.9999999999981943,0.026835780499805444,0.11909558973240164,0.381335786470496,0.9999999999966818,0.0044110043775406,1.8376695434946258e-07,0.0001106052836344128,0.0004661404695954805,8.775739116660623e-07,0.9999999999988529,4.570354843646986e-07,5.70930495468086e-08,1.1691101038800281e-07,0.07956047727798489,0.076182743245231,0.046122649213850515,0.9982078707062049,0.9999999999993638,4.556583321569597e-11,1.213865848234519e-12,0.9999999175681015,0.999992000162576,0.0009528604037608798,0.00033218438920189615,0.00016343591800602699,5.676502863952751e-07,0.0002428483910513997,0.00011410343313903456,0.001856875769511541,6.022487621270333e-15,1.681758276170162e-11,0.999979813606577,0.9999999113267027,0.9999990942730227,2.0466575068739485e-07,0.9999999986229837,9.903706211048853e-08,0.9883255571088586,6.092263245218889e-07,0.00023173556075061446,0.9948629204130025,0.9999999999989009,0.999972071882885,0.9999999846041099,0.999999998357296,0.0003637574391658521,0.9999999999989633,2.4045921182984124e-08,1.3979258916283825e-07,2.951283587258603e-07,4.935352548898323e-07,0.9999999999985423,6.327584557155733e-07,7.739379389148234e-08,5.909510359021953e-07,1.583191832862109e-06,0.9999999999853828,1.1083103719796767e-06,0.00012526389773053067,1.8933358037048084e-06,1.4258100880010433e-07,0.9999999999980942,0.999999928113401,0.9996530003983572,1.5651539813883022e-06,0.9998885262544167,0.00015147696912661226,8.714335829167247e-05,0.02847217850095016,0.04421413121013195,0.03147613008634026,0.024684851326283272,0.00300074507143021,0.10365821480300308,0.8919417432406485,0.2266451624201707,0.006941913829872311,0.0015766156060749719,0.0002223658220962265,0.01678311584419162,2.4850109161382897e-07,0.0068534808839096975,0.012939626572392617,0.011248932538981547,0.5392343008308285,0.0001884254554495459,0.5029767347789263,1.500260453310261e-07,0.001604619063692951,0.03509569777214099,0.9885347698978363,0.9914595790924888,0.9883586018163816,0.005134238340456672,4.724674963477603e-13,3.669560147293201e-08,0.9999999999977858,6.675687167662892e-07,0.0001943665066293395,0.0015088401708816012,0.004010306358251113,8.889673490956807e-06,0.9999994402837895,0.9999910167919499,0.9999999502189905,0.00023916512300205456,0.21732282995983368,0.999999999999136,0.038312608807168705,0.9999999999988483,0.07025396017353056,0.06525516455147166,5.0573922428969845e-11,1.183213875151794e-10,0.9942822796582712,1.4313984709383902e-11,0.9942370458980142,0.9999999999998959,1.7470406164879905e-10,1.8849671790666655e-10,2.366635735999975e-10,4.4364753077013423e-10,0.06147224069669709,0.07284646308297008,0.00013328006331006305,0.18219329046586125,1.8408655201920778e-07,0.15746435908157763,0.999999999999392,0.1108214518084945,0.9999999999875082,0.9999999999987594,1.4946568155920311e-05,1.2964390711826424e-11,6.247833658462888e-11,1.3015269103963567e-10,0.9999999999995948,1.9963402119331974e-08,3.6149285244335744e-07,1.42676539593887e-07,0.9999999999977005,0.00045845017358972566,3.2881189862930275e-15,0.07383264807731982,0.07299301263783194,0.04297688103326031,0.9397780791502054,0.9999999986439814,0.005339430907724519,0.2593767254436772,0.9999999999961933,0.021112143787940938,0.021568935118178572,2.547150595686414e-07,1.2405691362496254e-06,0.00019768839211455486,0.2914482221013191,1.1547540281736023e-09,0.9999999983088435,0.0039611548071601796,1.1738355268854156e-06,0.999999999998862,0.00018341501910136703,2.596190870293869e-05,0.9999999990194415,0.861434467502134,0.9999539008636634,4.268919929008231e-10,0.07248704075656065,3.9023403963718215e-10,0.013038276084452557,0.04443325693421257,0.999999999999198,0.12992292960340127,0.24276892557943933,0.12264784025044738,0.00018417864828820265,6.738640324546821e-07,9.148815932344856e-11,0.9811873207132388,0.9790296449082361,2.1356486336223567e-15,0.9769067583458783,0.9999999999991676,0.2272492745890603,1.9639832254910517e-08,0.9978013148271982,0.00015269420893063667,1.1685528523299939e-06,0.16557030953044316,0.017325493610349615,0.06332525324924064,6.478416328342383e-13,0.2429471627600398,0.23200372996396734,0.9999869641558037,3.248635337915488e-08,0.029313311472817783,0.018156338593074306 -बेंगन,rgb,8.187024801474611e-06,5.196664266840358e-08,0.9999018435410505,7.135463517572613e-06,0.9998804428006846,6.900247377085722e-06,0.0005413410197071027,3.780611443160992e-06,9.640898896525286e-06,2.7618211891960143e-05,0.9996491700986042,0.9998157911055253,0.9998082255653022,5.033320138576063e-08,1.341343254767092e-07,8.135402750314631e-09,0.9999245097136769,0.9999256062671649,0.9999148784926133,0.9453117743815319,0.9996838657946603,0.9993574591490203,8.500951126788616e-06,0.9995692790821263,3.509098495063957e-05,0.9999841238054336,2.4447025537895147e-07,5.846024123656555e-05,2.0741484567281115e-08,2.3255104258727303e-05,7.136324582634928e-06,0.9998413102718428,1.3388574740325591e-05,0.0014646218378989765,8.708591093132507e-07,1.5144212294589977e-08,0.9806751042013652,0.9995088816448146,0.0002097587989202921,0.0001075301760899789,2.8466313349219478e-05,0.000810685107842657,1.0184534444729079e-05,1.3192409179197691e-05,1.000745940454449e-05,0.9996899980421465,0.9998070792989687,0.9999031255035934,6.923413097126497e-06,0.07486388806455409,7.303208618805327e-06,2.4573632691877957e-05,1.172382993775761e-05,3.5985769168041605e-05,5.636530255516132e-07,5.914361568777628e-05,0.34805474038168827,0.5204750958776987,0.9998068215078745,0.9997889121976624,0.9996684983346599,0.9995771162162707,9.440934046381477e-10,0.0029515667935872385,7.850983279299818e-05,0.9984530375725201,0.9999744058447213,1.369800290944312e-05,5.0750072904730295e-06,7.1565227262077345e-06,2.460965696634426e-05,2.8546156612483938e-05,5.38524336581942e-05,1.5449865314253615e-05,7.945490631496265e-08,0.001123277018298004,0.999982433998337,0.9992068727128309,0.9994122908864302,0.6434051920900838,6.258968631420006e-07,0.43811591860313814,0.9404956946451991,0.8172878419087292,4.753739577149423e-06,0.9722174578122474,1.5252868757975865e-08,0.9996423537791777,8.669951597882208e-05,5.907608350885957e-07,3.997033539035472e-06,8.030931568319044e-11,0.18671509461924682,0.5941033026999696,0.7157896663998605,0.7938386191678661,5.78932443693545e-08,0.8218384692334496,0.39213734708803316,0.8056581764183052,0.8999503632494585,0.004906179461959403,0.00012748340737438763,1.0087822059238671e-05,0.9178637109529741,6.735730825051683e-06,4.084962678511461e-05,0.9996037409694755,0.9999848815671257,0.00014588158580038885,0.9999782965692964,1.9703504495195847e-05,1.8589357640682323e-06,0.9997038246769498,0.9997156432938555,0.999635581881646,0.00034565536395780324,0.9985923099924905,0.9998297699386847,0.9999584356711314,0.9998531730608831,0.9992671878694995,0.028368636913897852,7.460811710927032e-05,0.9996189968067306,0.014201378501348602,0.9992860188264652,0.00032076096015192076,0.5085167285006128,0.11606626546757656,0.9153840834419735,0.006222932987386528,5.892012476589999e-06,1.4891121853225391e-05,0.0004598852903668442,0.9998508075047637,0.9998998138358092,0.9999057910389114,0.19520755806658724,2.8823494036031223e-05,1.63786924030851e-06,1.5157237133761422e-09,2.5927436863648505e-05,0.00017357074067859773,0.8629388421714073,0.9788038021330907,0.48527483770188395,0.9993699368424315,0.9999783392291015,0.9989912478394518,9.370450266903138e-05,0.8312623339078612,2.5579930629084682e-08,0.9996359782593083,5.190869534039498e-07,0.9997838936426366,0.9997882359679077,1.5657611500576005e-05,0.00014693352721354243,0.9998732994393656,2.1208609723396134e-06,0.9998866356027487,1.2397244975749734e-07,3.0666192167614064e-05,1.4638621214068014e-05,6.425093079514799e-06,2.3141626033399153e-05,0.9997766966686211,0.999782764868939,1.2289722549446709e-05,0.8760606090119109,7.386917719097097e-06,0.4711095267395701,2.7668206444597283e-09,0.8767727124369592,0.00048588501780945587,4.8856452357142035e-11,6.203948637907042e-07,8.371197304530386e-07,1.5439415675355643e-05,2.576814739385526e-05,6.191783915988189e-09,9.665055686807873e-07,1.045715749735866e-05,6.811008544569455e-06,1.4219112526303776e-06,0.0029858496325345135,7.383517623449814e-08,0.9997843347204928,0.9997976096309065,0.9996503087125955,0.025564895372551456,5.5048601256309825e-06,0.9860709471475534,0.15088821572896677,4.66574095781679e-06,0.0005894489696139779,0.9996424530831602,1.0898492037008667e-05,4.163760011019872e-05,0.00010025819207945925,0.8316147995494662,3.896477693400248e-05,2.7151105788343344e-07,0.9988630831156515,7.182272650665894e-05,6.668321941178276e-07,3.8394407278068494e-05,2.319335539896854e-07,1.2895235446700632e-06,0.18672473267344677,0.9991986329830835,4.335071417031449e-05,0.9997929686561017,4.9751449018858145e-06,0.99951226866723,0.9997548554332619,1.640405990333239e-10,0.9998405621090534,0.9998442428968071,0.9997872212918191,0.00014441947627326203,2.649202303870244e-05,0.005657209256128043,0.9999230948549623,0.9999274840568259,5.227233302437627e-08,0.9998974879500274,1.4784471159913484e-10,0.9998536254479021,1.4596216093622252e-07,0.5885107352898524,7.577808173568833e-05,0.00010395804472669776,0.9998317079195255,0.999624908961161,0.9997916253053781,3.898182470878093e-05,0.059952158301218306,0.6492754798144987,0.9989350868096599,2.3683309654563384e-06,0.9994780508822406,0.9994277419884777 -बेर,rgb,0.9999999974636513,2.8869458254313295e-15,0.33943538327857187,0.00022062549879293147,0.4921505148927781,1.7062536301226694e-07,0.9999999999796947,0.0002526639296061199,0.0001718418417113885,0.0010347055951141146,0.03582035484020811,0.07749489660724958,0.07603602077703052,2.5806807758786757e-15,1.7301557684767374e-05,0.9999999999990679,0.9899241450233857,0.9811891339862863,0.9887721277801917,0.0027289584542567755,0.9959110444843542,0.9999979627621162,3.483814392155523e-07,0.9999999280389068,4.5278064548921146e-10,0.9999276857635871,0.9999999984039036,8.321875661158905e-10,0.9999999999976499,4.775622998380113e-13,1.7122955939763784e-07,0.16764245005517797,3.279441132293883e-07,0.36864434043270305,2.5991021800732453e-08,0.999999999999057,0.005029648054141477,0.9999409313501118,8.443624405652901e-08,9.294350696840103e-07,9.687230391266278e-05,1.43288555180202e-11,1.763468288783007e-07,3.2357536613352415e-13,0.9999999999970592,0.02412381911701571,0.10623594792334481,0.3466130229993568,0.9999999999946376,0.004044385234053468,1.9361510603709532e-07,0.0001114083638137799,0.00044316718943381077,9.046090098354942e-07,0.999999999998127,4.749958503719077e-07,6.085558633711053e-08,1.2341752517818243e-07,0.07080164887237968,0.06776434673248621,0.04111724094364592,0.9977128338511925,0.999999999998961,5.384444645843878e-11,1.5113042328567217e-12,0.999999880637221,0.9999890669028113,0.0008974446933655557,0.0003174481973080133,0.0001575770117549044,5.886795411288443e-07,0.00024216481931524153,0.00011470293379638035,0.0017337595520264572,8.053039260758048e-15,2.014301673556621e-11,0.9999727535758928,0.9999998716913345,0.9999987267168081,2.1442853626174377e-07,0.9999999979390126,1.0475916437222126e-07,0.9855209122757624,6.289358238099926e-07,0.0002225039624515857,0.9935480087946523,0.9999999999982114,0.9999623932882968,0.9999999775208165,0.9999999975468794,0.0003472906179161655,0.999999999998322,2.5933969310299528e-08,1.4725154176150793e-07,3.076905605939392e-07,5.109765837391409e-07,0.9999999999976323,6.528951409997274e-07,8.214411477318393e-08,6.102571834347017e-07,1.6132803585868788e-06,0.9999999999766529,1.1378264451394289e-06,0.00012620694272428413,1.925049647890462e-06,1.5073493435842282e-07,0.9999999999968936,0.9999998956997591,0.9995489795221097,1.5993852533829466e-06,0.9998527159331825,0.00015205181402521976,8.84952810510179e-05,0.025547824472098777,0.039454432752878514,0.028164141657277507,0.022272730421635224,0.002760888680252684,0.09220933331202046,0.8727313577092682,0.20322689025069535,0.006322034996474125,0.0014658415438020172,0.00022154634502927702,0.015142232800071034,2.594824483309062e-07,0.006243230781442626,0.011760551512942669,0.010178265270892325,0.4993819619989854,0.0001796376489868886,0.4642012676717412,1.5851662278826823e-07,0.001501086441844209,0.03154822685630448,0.9857514565846403,0.9893397776547772,0.9855393860611065,0.004695001762703938,5.962762064734804e-13,4.101725514893402e-08,0.9999999999964371,6.907954972861639e-07,0.00019363447360522422,0.0013993698276899512,0.0036703730585173964,8.834108495896417e-06,0.9999992084093228,0.9999877443827435,0.9999999274553096,0.0002379571373362503,0.19388350043393937,0.9999999999985891,0.0342081218154031,0.9999999999981197,0.06251918824732752,0.05812174719253408,5.943622173886726e-11,1.3734355554671182e-10,0.9928198106581305,1.7130391057131842e-11,0.9927641668576372,0.9999999999998253,2.0180966545738648e-10,2.1759318895682336e-10,2.724768545393456e-10,5.061019543977258e-10,0.054756235351706574,0.06480592378048951,0.00013412664657176378,0.16212066448901585,1.9394559711104907e-07,0.14007767469585217,0.9999999999990055,0.09834100908720704,0.9999999999800522,0.9999999999979974,1.5547833344622355e-05,1.5543478663159496e-11,7.321466205314558e-11,1.5096276084572627e-10,0.9999999999993332,2.250573460898742e-08,3.7737817474283085e-07,1.5083324113055942e-07,0.9999999999962732,0.0004491933402193018,4.4400792269370624e-15,0.06567974547787449,0.06497316200695434,0.03833289838289306,0.9279721387840165,0.9999999979653165,0.004868612333755405,0.23261273180827247,0.9999999999938609,0.01907200808995769,0.019394719353291415,2.6712733303068234e-07,1.272831640006937e-06,0.00019712681267213116,0.2617103080078217,1.3000316542405549e-09,0.9999999974775751,0.00363191634833028,1.2047186179476371e-06,0.9999999999981415,0.00018342538917149646,2.6874379238545766e-05,0.9999999985250556,0.8382972845865607,0.9999383294002243,4.870877806913119e-10,0.0645116666764257,4.46336821889285e-10,0.011786772883355891,0.03969775070677934,0.9999999999986966,0.11576668522673696,0.21805389096931488,0.10948042350394449,0.0001836774538083919,6.97211714277508e-07,1.070580175676465e-10,0.9768216505547467,0.9742147477007017,2.903560998723412e-15,0.9716459469067049,0.999999999998648,0.20377553603341897,2.2232918016629058e-08,0.9972123155392939,0.00015283632830932336,1.1990242985228342e-06,0.147904357339808,0.01562612361716346,0.056454488261151195,8.142742990300116e-13,0.2177070771361252,0.2073189282733629,0.9999822812537793,3.6337790198555213e-08,0.02622624960019192,0.01633316543640647 -बेलन,rgb,0.9157171860101833,1.0,0.009018077170271938,1.0,0.2849081570557968,0.9990528643532234,0.47830174883664345,0.9660332659266715,0.9224620628806445,0.6327136050576823,0.00020830998615568416,0.001983202549516545,0.0010100358174236707,1.0,1.0,0.9999999269850999,1.748944690393165e-07,2.8025859299468606e-07,1.5780647607716384e-07,4.2300655530571724e-05,3.740447895919335e-08,2.5490636396401446e-08,0.998042434185159,8.836896309868606e-08,0.9999924287144408,1.1721331521976962e-06,0.9992998142482035,0.9999783047269319,0.9999994661097865,0.9999999999999964,0.9990201382381945,0.10433704308533216,0.9971398666983049,0.0028705078412543223,1.0,0.9999998249801123,2.4088567918322965e-05,1.7426747095240073e-08,0.9913902630884168,0.9612719589810473,1.0,0.9999999999887714,0.9986092392013755,0.9999999999999998,0.9977841334873704,0.045821379002742524,0.14098783592070263,0.008495649474375432,0.9978230042326575,0.00045505221617890784,0.9989012097665563,1.0,0.8632085240434182,0.985223772540525,0.9999606740518528,0.9858509582772121,0.9949533808346857,0.9902999293423603,0.0016948024277265148,0.0006083033836662787,0.00018214363112047964,2.9271859087544042e-08,0.9999999962629549,0.9999999998898401,0.9999999999999751,7.264338237253579e-08,1.840407693190566e-07,0.7984350960087478,0.9487593599942994,0.9449770436378663,0.9923148963898248,1.0,1.0,0.7277159791177438,0.9999999999999996,0.999999999959708,6.119656994006413e-07,6.441522238171034e-08,2.8438553447797405e-08,0.9833304292325226,0.9971986212875129,0.9877012059637634,2.409342724907307e-07,0.9498376246695108,0.9587022906118416,1.2493139495651436e-07,0.9999997143406968,1.7634740056510894e-08,0.18422038864144802,0.9972018164565521,0.9589333503174782,0.9999999998540265,0.998072644862905,0.9922224322339104,0.9773055796856339,0.9619287078159576,0.9999977941776252,0.9479984628842641,0.9913517371844524,0.9426821919745716,0.8556448450866982,0.06707742061950077,0.9484371634224223,1.0,0.8726060160334645,0.9991573721087531,0.9871304646202059,7.415865466188495e-08,6.788333693418575e-06,0.9269294410485545,3.3555869109297413e-07,1.0,1.0,0.006867223590334355,0.000536112176883026,0.0003656482337700053,0.0338541993767473,0.0009240527059845866,0.0019475926099575532,0.0002793703026915731,0.09764407064251496,0.0012507660343330383,0.0017716362220345037,1.0,0.006137169017503888,0.7841418403785916,0.0015191362904748702,0.04552673406961822,4.6771140932195225e-05,3.0160816077768143e-05,0.0007148824733764522,0.0005730441207828269,0.999227059104705,0.7464611903665128,0.022404107700748403,9.819249121719454e-08,1.2422291075936623e-07,1.6230357964189568e-07,0.00018806226558648481,0.9999999999999971,1.0,0.9999999821670645,0.9909491094162467,1.0,8.974287693449646e-05,3.252562387610668e-05,0.022717442365308028,3.26104210062999e-08,2.935244674383119e-07,8.502215275463996e-08,1.0,3.4579150367670594e-06,0.999999509610531,0.00019990256835498256,0.9999646130176524,0.0007395798958371963,0.0017251439761544864,0.9999997215288479,0.9999983603763697,7.87862107819021e-08,0.9999999804252638,8.772437601906592e-08,0.9999992416169061,0.9999977280329257,0.9999981440205382,0.9999983835305122,0.9999927906327011,0.0011370168460760725,0.0005718761331363211,1.0,3.1467282099088274e-06,0.9988880462452119,1.2551863408217457e-05,0.9999999832129062,4.226622722326687e-06,0.5124639914783123,0.9999999999207689,1.0,0.999999988984252,0.9999996146934208,0.9999986144166,0.9999999615292808,1.0,0.997478757075674,0.9991482181741766,0.9997800827580855,1.0,1.0,0.000574057337118707,0.0014814527972285946,0.00017349512977767067,7.48764948453724e-05,0.9525303224004086,2.640212910107512e-05,3.452463775164673e-05,0.9985461485843881,0.02064448600382109,0.002253784061256718,0.9979704959555882,0.9785655018706435,1.0,2.8840050672941437e-06,0.9999684414333024,0.9990106884196636,0.0009489360398326333,0.9667275253651046,0.9999512407832384,1.0,1.0,0.9936771784313152,1.1682747239318945e-05,1.809823808927186e-08,0.9999908214364854,0.0010630377670281144,0.9999974694111694,0.001525007871759532,0.0039557204112401385,0.9999999996518822,0.01797160738997688,0.19588622279233983,0.31905164418061677,1.0,0.9907082653684472,0.9999999996224527,3.124433054802572e-07,3.8077930183920335e-07,1.0,2.3301762643250487e-07,0.9999999996930384,0.09576024361139288,1.0,1.1293494069762891e-06,1.0,0.9547051486998951,0.11839471875999585,0.006171472694860286,0.005818933411165434,0.9999999999999969,8.659840688897409e-05,6.148827895280863e-06,1.9899866122935123e-08,1.0,9.898438450268658e-05,0.00022496950863486173 -बैंगन,rgb,8.095832774277519e-06,6.002845566109316e-08,0.9998891324020643,0.00011852993176236165,0.9998940352878677,2.5047965628088247e-06,0.0006767119246691698,1.3896899564960487e-06,3.4749183663656907e-06,9.956491619494342e-06,0.999415970598196,0.9997485955869494,0.9997265491489072,6.189063082311877e-08,3.0018158964946955e-06,1.7714655626242774e-08,0.9998652382016465,0.9998680730302978,0.9998455600379941,0.8689968114811584,0.9993553784097353,0.9989427581051047,3.0612551922636474e-06,0.999428734800489,1.4981648172136723e-05,0.9999804610077068,2.769939037080772e-07,2.4553996429237942e-05,4.058282961993521e-08,2.7985965665130437e-05,2.5898618191532194e-06,0.9998373339944929,4.809889032520066e-06,0.0005496781898486151,9.870044258762246e-06,3.225149114755617e-08,0.9530781657547158,0.9990791988828586,7.708690966888273e-05,3.7939198437021396e-05,0.0003816446650150612,0.0008094613284606235,3.6875298143606613e-06,1.853751579119817e-05,1.598265335701965e-05,0.9996259989243951,0.9998006636270592,0.9998903776948519,1.063345547562031e-05,0.02702074092522836,2.6467543346637168e-06,0.00033830166880613385,4.248530260764951e-06,1.2745720097010868e-05,1.0112751108043663e-06,2.1043919296921696e-05,0.2292210562367116,0.38178329884479445,0.999732246109723,0.9996866923670831,0.9994480588326328,0.9991303509928926,2.200785089491453e-09,0.0028718749790304083,9.31587266405465e-05,0.997746019792544,0.999966262858312,4.9884629441171455e-06,1.8598377452040352e-06,2.5902518399559354e-06,8.76503414421863e-06,0.0004051979694061716,0.0006757646541041821,5.659495127521428e-06,7.113103074350659e-08,0.0010680687564844913,0.9999781750263494,0.9988711431220751,0.9990596588895658,0.5095936526553984,6.771528939724283e-07,0.29945710089290345,0.863879389933124,0.7234552977047966,1.7380463422490733e-06,0.9353659089084487,3.0824224327327515e-08,0.9993510837085576,7.055557046973428e-05,6.333483490481041e-07,1.4725686822512789e-06,1.9791642338239953e-10,0.11193595385548498,0.4630611457580971,0.5944858562489064,0.6930287523961725,1.0940626956505534e-07,0.7296858083660487,0.26190708110996835,0.7051931119330277,0.8400702586315609,0.005838586749312745,4.487376734367366e-05,0.00015553641502643724,0.8700972360896219,2.448598045183454e-06,6.276645300811464e-05,0.9994639375396789,0.9999821833671798,5.1168852143862033e-05,0.9999699645007172,0.00028397283983637445,3.4125169517405534e-05,0.9995998133492872,0.9995593278529875,0.9994073501008569,0.0001248567217530958,0.9974817647509723,0.9997699148223033,0.9999493862710652,0.9998506817446364,0.9987905966308092,0.009868858694663304,0.0009383222068431411,0.9994648812677315,0.005498258226158104,0.9988364970275053,0.00011489719161298296,0.26661270135734516,0.04554630054609691,0.8136346191480208,0.0023175399942344313,2.1425598437751607e-06,5.448467666650124e-06,0.00016637194762685555,0.9997109288706557,0.9998143978486791,0.9998269036583022,0.07734239322434357,3.580909391511594e-05,1.7796537550511303e-05,3.1482472683594248e-09,9.219210846058408e-06,0.0019509240478845097,0.7011806002479614,0.9487775013352135,0.27168988473757083,0.9990137260581546,0.999972365263966,0.9986000963458462,0.0011513997163572697,0.6416042089020888,5.178434486599277e-08,0.9993903222005391,9.332957487770411e-07,0.9996816718860588,0.9997032037894092,7.292584785852109e-06,7.089231648550002e-05,0.9997593023910226,1.0035933057920596e-06,0.9997871724962528,2.852760792381114e-07,1.3590085296968558e-05,6.3443520712137234e-06,2.715821007270471e-06,9.742595010261908e-06,0.9996774032480003,0.9996753311019418,0.0001858351074343861,0.7207166074182063,2.67685376275921e-06,0.24052353070907798,6.224634207367815e-09,0.7215667640868151,0.0006095229078214889,1.2109511648500412e-10,1.1593324710225797e-05,3.9007001679899327e-07,7.098482664292147e-06,1.1543934687434819e-05,1.3993813567147286e-08,1.0685053155032488e-05,3.7578052827694e-06,2.4757811602121093e-06,2.348617716281943e-06,0.024286160738804366,7.833435779562492e-08,0.9996780351797745,0.9997155684211837,0.9994129465731425,0.010083058877720244,5.5824470405823865e-06,0.9666019728881039,0.05956931310334138,7.164728575342378e-06,0.00021090468676465774,0.9994726943746515,3.927681529212283e-06,1.4697704304806714e-05,0.00120729630522109,0.6428808073834688,1.592666920347984e-05,2.9788902462777766e-07,0.9980104561626805,2.5303624140181783e-05,1.1912432426935187e-06,0.0005170342050426316,5.014737835646091e-06,1.3934133705777657e-06,0.07915702874600963,0.9984615813947526,1.853738672365792e-05,0.9997026933192958,2.05639632908294e-06,0.9992381248526336,0.999666168331557,4.0115197413477385e-10,0.999814220815605,0.9998492542256572,0.9997929481328937,0.0016551167453432393,9.418153946446194e-06,0.0054114004190500015,0.999863246516623,0.9998724681802145,6.033309069913914e-08,0.9998103271737585,3.619393585983982e-10,0.9998509879465289,2.0356162582919514e-06,0.372335627327783,0.0009290893604503928,3.6587878188967435e-05,0.999827548903082,0.9994743814133852,0.9997287319159033,4.962268566209834e-05,0.022253339039383802,0.3994534181651544,0.9980287665992004,2.43175050731338e-05,0.999061914510595,0.9989997737839145 -बैंगनी,rgb,7.928905620567521e-06,5.7665345775987173e-08,0.9998940523933748,0.00012127508519919285,0.9998990840224229,2.403304929236592e-06,0.000675038014620751,1.33189199132138e-06,3.339620403595208e-06,9.604195606171355e-06,0.9994357364900447,0.9997584462408057,0.9997370363625167,5.950894448930618e-08,3.045125992824258e-06,1.7189484191892142e-08,0.9998704137854149,0.9998731523829087,0.9998513900964694,0.8700981383050177,0.9993758251024528,0.9989782227627648,2.9390713869041883e-06,0.999450787624883,1.4483869983236447e-05,0.9999814328273663,2.6873599681207033e-07,2.3773600438714426e-05,3.942956601215058e-08,2.74701299838994e-05,2.4851935968507057e-06,0.9998445394565559,4.624718949135144e-06,0.0005379912918284044,9.956006212747216e-06,3.1348815620860985e-08,0.9537031607296683,0.9991086802151998,7.482267452321812e-05,3.6726085052586515e-05,0.0003908689274670848,0.0008018031374811477,3.542581712648727e-06,1.8207511792950424e-05,1.5798789314320363e-05,0.9996407206420158,0.9998093340851724,0.9998952441266695,1.0490793878865904e-05,0.0267581399601912,2.539953864503662e-06,0.0003464651579043576,4.086510578803617e-06,1.2293872490343898e-05,9.920333022360167e-07,2.0331940143578624e-05,0.22979902493899793,0.3832140846270102,0.9997426279115639,0.999698406750616,0.9994668461516528,0.9991570361675304,2.122603805063165e-09,0.0028561843763883306,9.180275182895357e-05,0.9978201068377439,0.9999678587134041,4.801432720824897e-06,1.7841893204229219e-06,2.487073069474822e-06,8.444014804575357e-06,0.0004154243354017139,0.0006928210792636364,5.450364692054055e-06,6.814550028009537e-08,0.0010582946068701101,0.9999792521595142,0.9989111457168888,0.999091938978953,0.5115951266618848,6.585115243979766e-07,0.3003642167805495,0.865180711615416,0.7257302568681744,1.666867272576945e-06,0.9362270879680387,2.9934354321358704e-08,0.9993729001791637,6.940885187636158e-05,6.156908583979214e-07,1.4116814618281803e-06,1.894863094299559e-10,0.1119486063723207,0.46496468230605326,0.5967342620928507,0.6953472558424487,1.0660090878393663e-07,0.731951290285555,0.26262672181399255,0.7074581017551607,0.8419153704437679,0.005862352187090456,4.346277138103207e-05,0.00015911748228857617,0.8717802093634098,2.3492228567646397e-06,6.229646350530844e-05,0.9994845885692375,0.9999830815681303,4.958092793521792e-05,0.9999713709238345,0.0002908404926093805,3.4813669228138563e-05,0.9996149024927967,0.9995750524003639,0.9994275433870904,0.0001214995664673841,0.9975519818780851,0.9997790281370436,0.9999517226919513,0.9998573550138589,0.9988285945188334,0.009736600277406854,0.0009631461661242259,0.9994842645978042,0.005417630216924949,0.9988733881152173,0.00011175753226092874,0.26640912808764067,0.045245101947611575,0.8149536663527513,0.002279035189314735,2.0547063184666904e-06,5.2463166987417115e-06,0.00016206265415490798,0.9997210070059009,0.9998212457622269,0.9998333424975913,0.076898484102809,3.519362021063991e-05,1.7977650355777e-05,3.035044607378896e-09,8.882996676807921e-06,0.0020044010417877784,0.7023913969123721,0.9494418748813792,0.27168151429890575,0.9990477482648503,0.9999737011282165,0.9986492430741719,0.0011823092995389849,0.642759747693974,5.037892766926407e-08,0.9994108209078623,9.153176018026431e-07,0.9996935860354461,0.9997145653942882,7.0401167467931745e-06,6.899794979472565e-05,0.9997679124095107,9.625387107622658e-07,0.999794902241925,2.796503212871521e-07,1.313976397487814e-05,6.1167641691994606e-06,2.610172413763712e-06,9.403703891769547e-06,0.9996895392089779,0.9996874028650716,0.00019017885211007967,0.7219813394458989,2.5689332066438827e-06,0.24032514490769774,6.0215923410007464e-09,0.7228149456036347,0.000607831818704629,1.1575383845088533e-10,1.1785492052987178e-05,3.728539399935827e-07,6.851074702426025e-06,1.1156628957175204e-05,1.3575381102420782e-08,1.0777272121025876e-05,3.6102194589245765e-06,2.3753882296036792e-06,2.307745771936535e-06,0.025047584864383327,7.523570909399627e-08,0.9996900200820692,0.9997264889170516,0.999432745418982,0.009973895822281838,5.462492692882041e-06,0.9670995759685205,0.059213323823210866,7.05917714092664e-06,0.00020556481980144124,0.9994915027355847,3.7740031182812487e-06,1.4183228121578205e-05,0.001239548324502421,0.6440563582713665,1.539327360715572e-05,2.8894268707075134e-07,0.998068102683838,2.446151887135458e-05,1.169150926367892e-06,0.0005301303375596844,5.093705607378574e-06,1.3583464076691595e-06,0.07883441493588439,0.998507772702359,1.793472637426738e-05,0.9997139835831643,1.974069291640039e-06,0.9992637932064032,0.9996789314766706,3.849427247354868e-10,0.9998220617758862,0.9998560824558639,0.9998020871251836,0.0016999876356023251,9.075316808377951e-06,0.005392422461249575,0.9998684884858406,0.9998774020333095,5.795838284151648e-08,0.9998172979644985,3.4719900122323313e-10,0.9998576466048767,2.048135725713208e-06,0.3732185934948615,0.0009532830329307056,3.541336043527365e-05,0.9998351539897802,0.9994934679311066,0.9997394492978925,4.884019333697045e-05,0.022041413983337744,0.39983192588146743,0.9980874852180749,2.4571898022304626e-05,0.9990912643794141,0.9990311720178552 -बैगन,rgb,8.187024801474611e-06,5.196664266840358e-08,0.9999018435410505,7.135463517572613e-06,0.9998804428006846,6.900247377085722e-06,0.0005413410197071027,3.780611443160992e-06,9.640898896525286e-06,2.7618211891960143e-05,0.9996491700986042,0.9998157911055253,0.9998082255653022,5.033320138576063e-08,1.341343254767092e-07,8.135402750314631e-09,0.9999245097136769,0.9999256062671649,0.9999148784926133,0.9453117743815319,0.9996838657946603,0.9993574591490203,8.500951126788616e-06,0.9995692790821263,3.509098495063957e-05,0.9999841238054336,2.4447025537895147e-07,5.846024123656555e-05,2.0741484567281115e-08,2.3255104258727303e-05,7.136324582634928e-06,0.9998413102718428,1.3388574740325591e-05,0.0014646218378989765,8.708591093132507e-07,1.5144212294589977e-08,0.9806751042013652,0.9995088816448146,0.0002097587989202921,0.0001075301760899789,2.8466313349219478e-05,0.000810685107842657,1.0184534444729079e-05,1.3192409179197691e-05,1.000745940454449e-05,0.9996899980421465,0.9998070792989687,0.9999031255035934,6.923413097126497e-06,0.07486388806455409,7.303208618805327e-06,2.4573632691877957e-05,1.172382993775761e-05,3.5985769168041605e-05,5.636530255516132e-07,5.914361568777628e-05,0.34805474038168827,0.5204750958776987,0.9998068215078745,0.9997889121976624,0.9996684983346599,0.9995771162162707,9.440934046381477e-10,0.0029515667935872385,7.850983279299818e-05,0.9984530375725201,0.9999744058447213,1.369800290944312e-05,5.0750072904730295e-06,7.1565227262077345e-06,2.460965696634426e-05,2.8546156612483938e-05,5.38524336581942e-05,1.5449865314253615e-05,7.945490631496265e-08,0.001123277018298004,0.999982433998337,0.9992068727128309,0.9994122908864302,0.6434051920900838,6.258968631420006e-07,0.43811591860313814,0.9404956946451991,0.8172878419087292,4.753739577149423e-06,0.9722174578122474,1.5252868757975865e-08,0.9996423537791777,8.669951597882208e-05,5.907608350885957e-07,3.997033539035472e-06,8.030931568319044e-11,0.18671509461924682,0.5941033026999696,0.7157896663998605,0.7938386191678661,5.78932443693545e-08,0.8218384692334496,0.39213734708803316,0.8056581764183052,0.8999503632494585,0.004906179461959403,0.00012748340737438763,1.0087822059238671e-05,0.9178637109529741,6.735730825051683e-06,4.084962678511461e-05,0.9996037409694755,0.9999848815671257,0.00014588158580038885,0.9999782965692964,1.9703504495195847e-05,1.8589357640682323e-06,0.9997038246769498,0.9997156432938555,0.999635581881646,0.00034565536395780324,0.9985923099924905,0.9998297699386847,0.9999584356711314,0.9998531730608831,0.9992671878694995,0.028368636913897852,7.460811710927032e-05,0.9996189968067306,0.014201378501348602,0.9992860188264652,0.00032076096015192076,0.5085167285006128,0.11606626546757656,0.9153840834419735,0.006222932987386528,5.892012476589999e-06,1.4891121853225391e-05,0.0004598852903668442,0.9998508075047637,0.9998998138358092,0.9999057910389114,0.19520755806658724,2.8823494036031223e-05,1.63786924030851e-06,1.5157237133761422e-09,2.5927436863648505e-05,0.00017357074067859773,0.8629388421714073,0.9788038021330907,0.48527483770188395,0.9993699368424315,0.9999783392291015,0.9989912478394518,9.370450266903138e-05,0.8312623339078612,2.5579930629084682e-08,0.9996359782593083,5.190869534039498e-07,0.9997838936426366,0.9997882359679077,1.5657611500576005e-05,0.00014693352721354243,0.9998732994393656,2.1208609723396134e-06,0.9998866356027487,1.2397244975749734e-07,3.0666192167614064e-05,1.4638621214068014e-05,6.425093079514799e-06,2.3141626033399153e-05,0.9997766966686211,0.999782764868939,1.2289722549446709e-05,0.8760606090119109,7.386917719097097e-06,0.4711095267395701,2.7668206444597283e-09,0.8767727124369592,0.00048588501780945587,4.8856452357142035e-11,6.203948637907042e-07,8.371197304530386e-07,1.5439415675355643e-05,2.576814739385526e-05,6.191783915988189e-09,9.665055686807873e-07,1.045715749735866e-05,6.811008544569455e-06,1.4219112526303776e-06,0.0029858496325345135,7.383517623449814e-08,0.9997843347204928,0.9997976096309065,0.9996503087125955,0.025564895372551456,5.5048601256309825e-06,0.9860709471475534,0.15088821572896677,4.66574095781679e-06,0.0005894489696139779,0.9996424530831602,1.0898492037008667e-05,4.163760011019872e-05,0.00010025819207945925,0.8316147995494662,3.896477693400248e-05,2.7151105788343344e-07,0.9988630831156515,7.182272650665894e-05,6.668321941178276e-07,3.8394407278068494e-05,2.319335539896854e-07,1.2895235446700632e-06,0.18672473267344677,0.9991986329830835,4.335071417031449e-05,0.9997929686561017,4.9751449018858145e-06,0.99951226866723,0.9997548554332619,1.640405990333239e-10,0.9998405621090534,0.9998442428968071,0.9997872212918191,0.00014441947627326203,2.649202303870244e-05,0.005657209256128043,0.9999230948549623,0.9999274840568259,5.227233302437627e-08,0.9998974879500274,1.4784471159913484e-10,0.9998536254479021,1.4596216093622252e-07,0.5885107352898524,7.577808173568833e-05,0.00010395804472669776,0.9998317079195255,0.999624908961161,0.9997916253053781,3.898182470878093e-05,0.059952158301218306,0.6492754798144987,0.9989350868096599,2.3683309654563384e-06,0.9994780508822406,0.9994277419884777 -भी,rgb,0.004447319745704658,0.9999804638063542,0.0014502258028490098,1.3965739051967362e-07,0.00026335318632611315,0.9999896628049372,4.987734219995085e-05,0.9999258676744943,0.9999175494371515,0.9997950253086654,0.06026611685502569,0.01065474249854663,0.014463548597903155,0.9999717949451231,1.7893254444856723e-07,3.258443119082208e-05,0.005846378108341037,0.006678877631261979,0.007012593826158488,0.9453156408782247,0.01816848513553892,0.000649699285382283,0.9999869761861643,5.144573378906351e-05,0.9999901028685395,6.812201557919905e-05,0.005829263638047312,0.9999871964998841,6.08489494263842e-05,0.9989233996741619,0.9999895391335023,0.001199517315418468,0.9999850890202504,0.9928168601072391,5.1691988158423824e-05,3.005572031097586e-05,0.8803489360032786,0.003667300995427131,0.9999675720264022,0.9999612703676657,4.3434494705749655e-07,0.9968638536087202,0.9999881447750232,0.9978390687155735,2.499684400321852e-05,0.00819185702744154,0.0015823796181679475,0.001447481431931381,4.409722006822174e-05,0.995768893711865,0.9999891669055994,3.7008246332161616e-07,0.999879193950161,0.9999737277416935,2.9634818527453703e-05,0.9999729809034184,0.9916992022662138,0.9848726549428206,0.012329808193004077,0.020118085103659457,0.05687446559042759,0.018100364949530236,4.770047919862337e-05,0.9937548003735,0.9978525565086268,0.00017842127370755684,7.401531791007217e-05,0.9998378636273625,0.9999134204062136,0.9999259949098926,0.9999790938269942,2.2855622884654302e-07,5.039824307818478e-07,0.9997868059322579,0.9999942579989132,0.9971692877819522,5.677888287058575e-05,0.00012154997872435396,0.0004562607473180355,0.9769752485257808,0.006002395358123308,0.9899556450861189,0.4154887107702787,0.95251917871935,0.9999249088279023,0.25610021458703847,5.093723747335234e-05,0.00230642210295228,0.012466506858374653,0.006841715633452304,0.9999157853714554,9.47436189781313e-05,0.9956713527732685,0.9777712688539579,0.9692184499746312,0.956805418201354,5.2386937533471114e-05,0.9513247205852351,0.9910695783220442,0.9578901513085305,0.9225349212320589,3.14878887019589e-05,0.9999569361035935,2.3578646962432898e-07,0.8978943489680288,0.9999900214015711,1.9440577384615823e-05,6.325639107081972e-05,8.535574970512567e-05,0.9999511971627586,0.00020345082059033284,2.7159298122045073e-07,1.5517144567503272e-07,0.016562307356844806,0.034700949737493506,0.05653442513106613,0.9987075256798981,0.2687931252052071,0.009201832778171683,0.0008185343925915507,0.0010333423880483183,0.11724867843104887,0.9979089699604785,3.631778843873286e-07,0.027093426794725605,0.9997134173925439,0.1082923737273652,0.9990136012142271,0.9835738119512332,0.9648704640068482,0.9701026770263024,0.9872205626875338,0.9999903453761111,0.9997998324538407,0.9983917463826301,0.014176219783129544,0.008406346342886417,0.00850803796377302,0.9930673943071675,0.9984676558314215,4.7314234652542644e-05,0.00012217781938989077,0.9999779170678113,5.75161427488121e-07,0.973674767836547,0.8917024267437178,0.9954381834220511,0.0003533286009408542,5.7991188542465604e-05,9.54490068292233e-05,3.805357102094871e-07,0.9153207577291849,3.881312710270077e-05,0.06420607603309841,3.016396982195431e-05,0.01979700293019924,0.014557465583505503,0.9999927640846745,0.9999733307760833,0.009634111660044357,0.9999973288785091,0.00857886174122188,5.082654209194612e-06,0.9999904716017495,0.9999936074238185,0.9999957366834746,0.9999920128493353,0.01838972442486131,0.02154617445644605,2.447013503861884e-07,0.9071085161360366,0.9999891220186938,0.9634299269146336,3.994533869519311e-05,0.9211143224789459,5.047642041136229e-05,0.00011545031132855076,3.4283411360453837e-07,0.9999983377281829,0.9999929791064007,0.9999911782105697,2.5611258106355854e-05,6.106986225242108e-05,0.999985805218285,0.9999899831554049,4.4225594266463097e-05,1.1582873084363966e-06,0.9999856063005861,0.021249754347488884,0.014088500839765728,0.06221406898222924,0.9390880331996657,0.004096803861299489,0.8509796532783248,0.9752190372570814,5.314406556596009e-05,0.9985879611659003,0.03370932998280362,0.9999867067945912,0.9999700648686978,4.474772819431075e-07,0.9044179037116035,0.9999895224654599,0.007894477693039931,0.2130986047456744,0.9999643973283878,2.85816663864802e-05,3.1365306030154615e-07,1.61325918476365e-07,0.00420907850263601,0.9193247567421183,0.0052056016866888636,0.9999889529832855,0.016378104718559723,0.9999961407095913,0.06210043978686836,0.014281569756292665,7.11054718477038e-05,0.003159270585415922,0.0007430312695330849,0.0010950683764218976,5.510958117763406e-07,0.9999777086552291,0.9913549426741937,0.007317495072631788,0.00687382058621075,0.9999804922112797,0.011183961222281949,7.415501122140476e-05,0.0010381858257759605,2.676071511640957e-05,0.4641414651859612,4.7538993701202713e-07,0.999959497516781,0.0012768773213543444,0.02631282945848173,0.00902918745648173,0.9977998866535936,0.9832030567190623,0.942339116978653,0.0031834518256693813,6.203663822484713e-05,0.11913541637892312,0.11813776622299071 -भुट्टा,rgb,3.1889558782474304e-33,4.150989425181496e-18,0.1204787442646456,2.2277063164905656e-46,0.00035789713382479335,3.6634737033528184e-10,8.700279309857459e-33,6.605656479484352e-14,1.3965535736690129e-12,3.3600129779750985e-12,0.9942815007981965,0.8784155442017945,0.9414484117511127,1.2183103434521755e-18,3.705663966247623e-52,1.0643408526931612e-50,0.9467078486273456,0.967011581811805,0.9531140356630748,0.9837301301858193,0.7657492649854334,5.8948451844918325e-06,3.6539286504043565e-10,8.791770192743091e-09,2.0602132949579278e-07,0.00432951969804417,2.469702335768594e-38,5.62141512007478e-07,2.156916824134104e-48,4.5591948603425544e-14,3.9843175336017404e-10,0.014389445079807075,1.234471121473606e-09,6.471900494156081e-11,1.4220069101030444e-41,7.6991931016295175e-50,0.9951093231021627,0.0037478770650624348,2.3912550986577387e-06,1.0925134016356854e-07,1.0534494294847718e-42,4.667065569641489e-10,9.702254058102521e-10,7.332664276725652e-16,5.859530547287595e-40,0.35062587057696853,0.017168478885514996,0.12470005700144184,9.179512201870836e-40,0.0007699026550175396,3.860340485409874e-10,3.78730381039178e-43,8.269186866742649e-13,7.0949879296262755e-09,3.228062062473639e-44,4.018494541561679e-08,0.1452259329331706,0.24466360728404635,0.9058080987122445,0.9696658782212763,0.9943173621202122,0.5234699438060881,1.5360615198454737e-53,5.357406814268032e-09,4.012890166367958e-13,4.114538257480354e-09,0.0008975440641016931,5.629604070020883e-13,1.1639331803028374e-13,6.717764188358252e-13,3.753500476563493e-09,1.4195613947316072e-43,1.6058475973807427e-41,3.606134440681692e-13,7.408020575923834e-16,2.0091358377907532e-09,0.0016307024196168085,1.4063692015233622e-08,2.681242699122526e-06,0.3435297808502785,7.943247733770397e-37,0.26161863335270724,0.001378563252538254,0.5625175866653229,1.4536999854654265e-13,0.00246970617854321,4.104346030428624e-49,0.002751355327364755,4.044766916692846e-28,9.756299007999334e-37,5.356950043204382e-14,1.8921031444870906e-56,0.06048006403877207,0.22048844324218833,0.40474657129602,0.5075348485997202,5.389029500616278e-47,0.5694579687384569,0.20768937193051393,0.5900004669417852,0.7508496615609567,5.860876716865065e-30,1.4358069878394383e-07,3.930595344562658e-45,0.720060768056644,3.7715967520320164e-10,4.200202880845343e-38,2.2775802911470576e-08,0.011440662070222408,1.5549962267684408e-07,0.03999332508766382,6.561523850900389e-44,2.640423245996623e-48,0.8473146917594857,0.9843378102068869,0.9920869685591434,8.543577541713629e-11,0.9965508008129084,0.8577658627709599,0.30544276022246347,0.011909194802116767,0.9922401276987598,0.00018429958269994832,1.8229637303246035e-41,0.9151369458084249,0.010808993738537373,0.9907352649246265,1.5536122733244617e-10,0.09311575665606042,4.414150977338408e-06,0.989191345233614,1.934660248234672e-09,2.574938944237625e-10,3.8655349646320396e-13,1.191648934772213e-10,0.9602609332980387,0.9517490760831171,0.9629850893229391,0.008481304087655957,3.302395557717791e-14,1.0117795276590163e-40,1.5880568094816218e-51,3.790036002443057e-09,1.5324649001296328e-39,0.9451579538952833,0.9952307498243426,0.8557608814584159,9.301583356225859e-07,0.0007813519450484079,2.7434928485507453e-09,4.729858002446493e-41,0.10845016277214647,1.1239128057679564e-48,0.9947009083673362,2.5376359239483103e-44,0.9656449647503577,0.9213558872538555,3.388831732112074e-08,1.8268089307701999e-06,0.9265610578108612,5.96182262704381e-10,0.9293671531026955,5.709584931367381e-49,1.5031593172786152e-07,3.576403727093274e-08,6.355129960682295e-09,8.858139747925692e-08,0.95251745459429,0.9728357582376567,8.887413848276469e-45,0.24787810389850992,3.970302833302758e-10,0.004112798269305715,4.186342554073314e-52,0.3762883893681321,6.119994391950865e-33,5.899556610477699e-57,6.4973891101478734e-49,9.131725913055022e-11,3.4863495795754514e-08,1.0386516590414895e-07,1.8829640375254082e-51,3.462969225257424e-41,5.869265760350249e-10,3.8790208966571996e-10,3.133548044117211e-42,3.27409473205732e-34,3.600415214477143e-17,0.9723540879866676,0.9251328560351172,0.9948760404907745,2.0262666714370023e-09,5.908477541348149e-34,0.9967863270079502,4.206694072450241e-05,3.980849838918982e-40,4.4552683291669825e-10,0.9635905351222471,8.496282719704422e-10,7.862934470992878e-09,9.989462163025766e-41,0.07392799632736868,2.355493306884748e-07,9.383677634453745e-38,0.9958615709745051,3.2751916487736124e-08,5.274177604707979e-44,1.0947608374737807e-42,1.865776220954639e-51,3.48673820876647e-36,2.013331643225152e-06,0.0019039260836060006,3.126517151684335e-07,0.9478146144096988,3.338998710947867e-09,0.9844548752415526,0.8702632897940951,1.0009926803424375e-55,0.22096392259342276,0.0035363616807170687,0.003977482682311292,6.98964584668566e-40,3.975998218134825e-09,1.9590993847258054e-08,0.9721573942758713,0.972837297369131,4.256325468634019e-18,0.9789898004360538,7.859971867852657e-56,0.012208089835252893,3.2339638166526754e-45,4.1775118333784316e-07,4.481836826598288e-41,8.310645456767677e-08,0.014245384719998387,0.9121756980581085,0.7404997735939145,3.162904325772066e-14,3.619954738059168e-06,0.0126683930374056,0.0001413177790178627,8.712445102912762e-40,0.9975988082660169,0.9966705873099247 -भुट्टे,rgb,3.1889558782474304e-33,4.150989425181496e-18,0.1204787442646456,2.2277063164905656e-46,0.00035789713382479335,3.6634737033528184e-10,8.700279309857459e-33,6.605656479484352e-14,1.3965535736690129e-12,3.3600129779750985e-12,0.9942815007981965,0.8784155442017945,0.9414484117511127,1.2183103434521755e-18,3.705663966247623e-52,1.0643408526931612e-50,0.9467078486273456,0.967011581811805,0.9531140356630748,0.9837301301858193,0.7657492649854334,5.8948451844918325e-06,3.6539286504043565e-10,8.791770192743091e-09,2.0602132949579278e-07,0.00432951969804417,2.469702335768594e-38,5.62141512007478e-07,2.156916824134104e-48,4.5591948603425544e-14,3.9843175336017404e-10,0.014389445079807075,1.234471121473606e-09,6.471900494156081e-11,1.4220069101030444e-41,7.6991931016295175e-50,0.9951093231021627,0.0037478770650624348,2.3912550986577387e-06,1.0925134016356854e-07,1.0534494294847718e-42,4.667065569641489e-10,9.702254058102521e-10,7.332664276725652e-16,5.859530547287595e-40,0.35062587057696853,0.017168478885514996,0.12470005700144184,9.179512201870836e-40,0.0007699026550175396,3.860340485409874e-10,3.78730381039178e-43,8.269186866742649e-13,7.0949879296262755e-09,3.228062062473639e-44,4.018494541561679e-08,0.1452259329331706,0.24466360728404635,0.9058080987122445,0.9696658782212763,0.9943173621202122,0.5234699438060881,1.5360615198454737e-53,5.357406814268032e-09,4.012890166367958e-13,4.114538257480354e-09,0.0008975440641016931,5.629604070020883e-13,1.1639331803028374e-13,6.717764188358252e-13,3.753500476563493e-09,1.4195613947316072e-43,1.6058475973807427e-41,3.606134440681692e-13,7.408020575923834e-16,2.0091358377907532e-09,0.0016307024196168085,1.4063692015233622e-08,2.681242699122526e-06,0.3435297808502785,7.943247733770397e-37,0.26161863335270724,0.001378563252538254,0.5625175866653229,1.4536999854654265e-13,0.00246970617854321,4.104346030428624e-49,0.002751355327364755,4.044766916692846e-28,9.756299007999334e-37,5.356950043204382e-14,1.8921031444870906e-56,0.06048006403877207,0.22048844324218833,0.40474657129602,0.5075348485997202,5.389029500616278e-47,0.5694579687384569,0.20768937193051393,0.5900004669417852,0.7508496615609567,5.860876716865065e-30,1.4358069878394383e-07,3.930595344562658e-45,0.720060768056644,3.7715967520320164e-10,4.200202880845343e-38,2.2775802911470576e-08,0.011440662070222408,1.5549962267684408e-07,0.03999332508766382,6.561523850900389e-44,2.640423245996623e-48,0.8473146917594857,0.9843378102068869,0.9920869685591434,8.543577541713629e-11,0.9965508008129084,0.8577658627709599,0.30544276022246347,0.011909194802116767,0.9922401276987598,0.00018429958269994832,1.8229637303246035e-41,0.9151369458084249,0.010808993738537373,0.9907352649246265,1.5536122733244617e-10,0.09311575665606042,4.414150977338408e-06,0.989191345233614,1.934660248234672e-09,2.574938944237625e-10,3.8655349646320396e-13,1.191648934772213e-10,0.9602609332980387,0.9517490760831171,0.9629850893229391,0.008481304087655957,3.302395557717791e-14,1.0117795276590163e-40,1.5880568094816218e-51,3.790036002443057e-09,1.5324649001296328e-39,0.9451579538952833,0.9952307498243426,0.8557608814584159,9.301583356225859e-07,0.0007813519450484079,2.7434928485507453e-09,4.729858002446493e-41,0.10845016277214647,1.1239128057679564e-48,0.9947009083673362,2.5376359239483103e-44,0.9656449647503577,0.9213558872538555,3.388831732112074e-08,1.8268089307701999e-06,0.9265610578108612,5.96182262704381e-10,0.9293671531026955,5.709584931367381e-49,1.5031593172786152e-07,3.576403727093274e-08,6.355129960682295e-09,8.858139747925692e-08,0.95251745459429,0.9728357582376567,8.887413848276469e-45,0.24787810389850992,3.970302833302758e-10,0.004112798269305715,4.186342554073314e-52,0.3762883893681321,6.119994391950865e-33,5.899556610477699e-57,6.4973891101478734e-49,9.131725913055022e-11,3.4863495795754514e-08,1.0386516590414895e-07,1.8829640375254082e-51,3.462969225257424e-41,5.869265760350249e-10,3.8790208966571996e-10,3.133548044117211e-42,3.27409473205732e-34,3.600415214477143e-17,0.9723540879866676,0.9251328560351172,0.9948760404907745,2.0262666714370023e-09,5.908477541348149e-34,0.9967863270079502,4.206694072450241e-05,3.980849838918982e-40,4.4552683291669825e-10,0.9635905351222471,8.496282719704422e-10,7.862934470992878e-09,9.989462163025766e-41,0.07392799632736868,2.355493306884748e-07,9.383677634453745e-38,0.9958615709745051,3.2751916487736124e-08,5.274177604707979e-44,1.0947608374737807e-42,1.865776220954639e-51,3.48673820876647e-36,2.013331643225152e-06,0.0019039260836060006,3.126517151684335e-07,0.9478146144096988,3.338998710947867e-09,0.9844548752415526,0.8702632897940951,1.0009926803424375e-55,0.22096392259342276,0.0035363616807170687,0.003977482682311292,6.98964584668566e-40,3.975998218134825e-09,1.9590993847258054e-08,0.9721573942758713,0.972837297369131,4.256325468634019e-18,0.9789898004360538,7.859971867852657e-56,0.012208089835252893,3.2339638166526754e-45,4.1775118333784316e-07,4.481836826598288e-41,8.310645456767677e-08,0.014245384719998387,0.9121756980581085,0.7404997735939145,3.162904325772066e-14,3.619954738059168e-06,0.0126683930374056,0.0001413177790178627,8.712445102912762e-40,0.9975988082660169,0.9966705873099247 -मकई,rgb,3.1889558782474304e-33,4.150989425181496e-18,0.1204787442646456,2.2277063164905656e-46,0.00035789713382479335,3.6634737033528184e-10,8.700279309857459e-33,6.605656479484352e-14,1.3965535736690129e-12,3.3600129779750985e-12,0.9942815007981965,0.8784155442017945,0.9414484117511127,1.2183103434521755e-18,3.705663966247623e-52,1.0643408526931612e-50,0.9467078486273456,0.967011581811805,0.9531140356630748,0.9837301301858193,0.7657492649854334,5.8948451844918325e-06,3.6539286504043565e-10,8.791770192743091e-09,2.0602132949579278e-07,0.00432951969804417,2.469702335768594e-38,5.62141512007478e-07,2.156916824134104e-48,4.5591948603425544e-14,3.9843175336017404e-10,0.014389445079807075,1.234471121473606e-09,6.471900494156081e-11,1.4220069101030444e-41,7.6991931016295175e-50,0.9951093231021627,0.0037478770650624348,2.3912550986577387e-06,1.0925134016356854e-07,1.0534494294847718e-42,4.667065569641489e-10,9.702254058102521e-10,7.332664276725652e-16,5.859530547287595e-40,0.35062587057696853,0.017168478885514996,0.12470005700144184,9.179512201870836e-40,0.0007699026550175396,3.860340485409874e-10,3.78730381039178e-43,8.269186866742649e-13,7.0949879296262755e-09,3.228062062473639e-44,4.018494541561679e-08,0.1452259329331706,0.24466360728404635,0.9058080987122445,0.9696658782212763,0.9943173621202122,0.5234699438060881,1.5360615198454737e-53,5.357406814268032e-09,4.012890166367958e-13,4.114538257480354e-09,0.0008975440641016931,5.629604070020883e-13,1.1639331803028374e-13,6.717764188358252e-13,3.753500476563493e-09,1.4195613947316072e-43,1.6058475973807427e-41,3.606134440681692e-13,7.408020575923834e-16,2.0091358377907532e-09,0.0016307024196168085,1.4063692015233622e-08,2.681242699122526e-06,0.3435297808502785,7.943247733770397e-37,0.26161863335270724,0.001378563252538254,0.5625175866653229,1.4536999854654265e-13,0.00246970617854321,4.104346030428624e-49,0.002751355327364755,4.044766916692846e-28,9.756299007999334e-37,5.356950043204382e-14,1.8921031444870906e-56,0.06048006403877207,0.22048844324218833,0.40474657129602,0.5075348485997202,5.389029500616278e-47,0.5694579687384569,0.20768937193051393,0.5900004669417852,0.7508496615609567,5.860876716865065e-30,1.4358069878394383e-07,3.930595344562658e-45,0.720060768056644,3.7715967520320164e-10,4.200202880845343e-38,2.2775802911470576e-08,0.011440662070222408,1.5549962267684408e-07,0.03999332508766382,6.561523850900389e-44,2.640423245996623e-48,0.8473146917594857,0.9843378102068869,0.9920869685591434,8.543577541713629e-11,0.9965508008129084,0.8577658627709599,0.30544276022246347,0.011909194802116767,0.9922401276987598,0.00018429958269994832,1.8229637303246035e-41,0.9151369458084249,0.010808993738537373,0.9907352649246265,1.5536122733244617e-10,0.09311575665606042,4.414150977338408e-06,0.989191345233614,1.934660248234672e-09,2.574938944237625e-10,3.8655349646320396e-13,1.191648934772213e-10,0.9602609332980387,0.9517490760831171,0.9629850893229391,0.008481304087655957,3.302395557717791e-14,1.0117795276590163e-40,1.5880568094816218e-51,3.790036002443057e-09,1.5324649001296328e-39,0.9451579538952833,0.9952307498243426,0.8557608814584159,9.301583356225859e-07,0.0007813519450484079,2.7434928485507453e-09,4.729858002446493e-41,0.10845016277214647,1.1239128057679564e-48,0.9947009083673362,2.5376359239483103e-44,0.9656449647503577,0.9213558872538555,3.388831732112074e-08,1.8268089307701999e-06,0.9265610578108612,5.96182262704381e-10,0.9293671531026955,5.709584931367381e-49,1.5031593172786152e-07,3.576403727093274e-08,6.355129960682295e-09,8.858139747925692e-08,0.95251745459429,0.9728357582376567,8.887413848276469e-45,0.24787810389850992,3.970302833302758e-10,0.004112798269305715,4.186342554073314e-52,0.3762883893681321,6.119994391950865e-33,5.899556610477699e-57,6.4973891101478734e-49,9.131725913055022e-11,3.4863495795754514e-08,1.0386516590414895e-07,1.8829640375254082e-51,3.462969225257424e-41,5.869265760350249e-10,3.8790208966571996e-10,3.133548044117211e-42,3.27409473205732e-34,3.600415214477143e-17,0.9723540879866676,0.9251328560351172,0.9948760404907745,2.0262666714370023e-09,5.908477541348149e-34,0.9967863270079502,4.206694072450241e-05,3.980849838918982e-40,4.4552683291669825e-10,0.9635905351222471,8.496282719704422e-10,7.862934470992878e-09,9.989462163025766e-41,0.07392799632736868,2.355493306884748e-07,9.383677634453745e-38,0.9958615709745051,3.2751916487736124e-08,5.274177604707979e-44,1.0947608374737807e-42,1.865776220954639e-51,3.48673820876647e-36,2.013331643225152e-06,0.0019039260836060006,3.126517151684335e-07,0.9478146144096988,3.338998710947867e-09,0.9844548752415526,0.8702632897940951,1.0009926803424375e-55,0.22096392259342276,0.0035363616807170687,0.003977482682311292,6.98964584668566e-40,3.975998218134825e-09,1.9590993847258054e-08,0.9721573942758713,0.972837297369131,4.256325468634019e-18,0.9789898004360538,7.859971867852657e-56,0.012208089835252893,3.2339638166526754e-45,4.1775118333784316e-07,4.481836826598288e-41,8.310645456767677e-08,0.014245384719998387,0.9121756980581085,0.7404997735939145,3.162904325772066e-14,3.619954738059168e-06,0.0126683930374056,0.0001413177790178627,8.712445102912762e-40,0.9975988082660169,0.9966705873099247 -मकाई,rgb,3.1889558782474304e-33,4.150989425181496e-18,0.1204787442646456,2.2277063164905656e-46,0.00035789713382479335,3.6634737033528184e-10,8.700279309857459e-33,6.605656479484352e-14,1.3965535736690129e-12,3.3600129779750985e-12,0.9942815007981965,0.8784155442017945,0.9414484117511127,1.2183103434521755e-18,3.705663966247623e-52,1.0643408526931612e-50,0.9467078486273456,0.967011581811805,0.9531140356630748,0.9837301301858193,0.7657492649854334,5.8948451844918325e-06,3.6539286504043565e-10,8.791770192743091e-09,2.0602132949579278e-07,0.00432951969804417,2.469702335768594e-38,5.62141512007478e-07,2.156916824134104e-48,4.5591948603425544e-14,3.9843175336017404e-10,0.014389445079807075,1.234471121473606e-09,6.471900494156081e-11,1.4220069101030444e-41,7.6991931016295175e-50,0.9951093231021627,0.0037478770650624348,2.3912550986577387e-06,1.0925134016356854e-07,1.0534494294847718e-42,4.667065569641489e-10,9.702254058102521e-10,7.332664276725652e-16,5.859530547287595e-40,0.35062587057696853,0.017168478885514996,0.12470005700144184,9.179512201870836e-40,0.0007699026550175396,3.860340485409874e-10,3.78730381039178e-43,8.269186866742649e-13,7.0949879296262755e-09,3.228062062473639e-44,4.018494541561679e-08,0.1452259329331706,0.24466360728404635,0.9058080987122445,0.9696658782212763,0.9943173621202122,0.5234699438060881,1.5360615198454737e-53,5.357406814268032e-09,4.012890166367958e-13,4.114538257480354e-09,0.0008975440641016931,5.629604070020883e-13,1.1639331803028374e-13,6.717764188358252e-13,3.753500476563493e-09,1.4195613947316072e-43,1.6058475973807427e-41,3.606134440681692e-13,7.408020575923834e-16,2.0091358377907532e-09,0.0016307024196168085,1.4063692015233622e-08,2.681242699122526e-06,0.3435297808502785,7.943247733770397e-37,0.26161863335270724,0.001378563252538254,0.5625175866653229,1.4536999854654265e-13,0.00246970617854321,4.104346030428624e-49,0.002751355327364755,4.044766916692846e-28,9.756299007999334e-37,5.356950043204382e-14,1.8921031444870906e-56,0.06048006403877207,0.22048844324218833,0.40474657129602,0.5075348485997202,5.389029500616278e-47,0.5694579687384569,0.20768937193051393,0.5900004669417852,0.7508496615609567,5.860876716865065e-30,1.4358069878394383e-07,3.930595344562658e-45,0.720060768056644,3.7715967520320164e-10,4.200202880845343e-38,2.2775802911470576e-08,0.011440662070222408,1.5549962267684408e-07,0.03999332508766382,6.561523850900389e-44,2.640423245996623e-48,0.8473146917594857,0.9843378102068869,0.9920869685591434,8.543577541713629e-11,0.9965508008129084,0.8577658627709599,0.30544276022246347,0.011909194802116767,0.9922401276987598,0.00018429958269994832,1.8229637303246035e-41,0.9151369458084249,0.010808993738537373,0.9907352649246265,1.5536122733244617e-10,0.09311575665606042,4.414150977338408e-06,0.989191345233614,1.934660248234672e-09,2.574938944237625e-10,3.8655349646320396e-13,1.191648934772213e-10,0.9602609332980387,0.9517490760831171,0.9629850893229391,0.008481304087655957,3.302395557717791e-14,1.0117795276590163e-40,1.5880568094816218e-51,3.790036002443057e-09,1.5324649001296328e-39,0.9451579538952833,0.9952307498243426,0.8557608814584159,9.301583356225859e-07,0.0007813519450484079,2.7434928485507453e-09,4.729858002446493e-41,0.10845016277214647,1.1239128057679564e-48,0.9947009083673362,2.5376359239483103e-44,0.9656449647503577,0.9213558872538555,3.388831732112074e-08,1.8268089307701999e-06,0.9265610578108612,5.96182262704381e-10,0.9293671531026955,5.709584931367381e-49,1.5031593172786152e-07,3.576403727093274e-08,6.355129960682295e-09,8.858139747925692e-08,0.95251745459429,0.9728357582376567,8.887413848276469e-45,0.24787810389850992,3.970302833302758e-10,0.004112798269305715,4.186342554073314e-52,0.3762883893681321,6.119994391950865e-33,5.899556610477699e-57,6.4973891101478734e-49,9.131725913055022e-11,3.4863495795754514e-08,1.0386516590414895e-07,1.8829640375254082e-51,3.462969225257424e-41,5.869265760350249e-10,3.8790208966571996e-10,3.133548044117211e-42,3.27409473205732e-34,3.600415214477143e-17,0.9723540879866676,0.9251328560351172,0.9948760404907745,2.0262666714370023e-09,5.908477541348149e-34,0.9967863270079502,4.206694072450241e-05,3.980849838918982e-40,4.4552683291669825e-10,0.9635905351222471,8.496282719704422e-10,7.862934470992878e-09,9.989462163025766e-41,0.07392799632736868,2.355493306884748e-07,9.383677634453745e-38,0.9958615709745051,3.2751916487736124e-08,5.274177604707979e-44,1.0947608374737807e-42,1.865776220954639e-51,3.48673820876647e-36,2.013331643225152e-06,0.0019039260836060006,3.126517151684335e-07,0.9478146144096988,3.338998710947867e-09,0.9844548752415526,0.8702632897940951,1.0009926803424375e-55,0.22096392259342276,0.0035363616807170687,0.003977482682311292,6.98964584668566e-40,3.975998218134825e-09,1.9590993847258054e-08,0.9721573942758713,0.972837297369131,4.256325468634019e-18,0.9789898004360538,7.859971867852657e-56,0.012208089835252893,3.2339638166526754e-45,4.1775118333784316e-07,4.481836826598288e-41,8.310645456767677e-08,0.014245384719998387,0.9121756980581085,0.7404997735939145,3.162904325772066e-14,3.619954738059168e-06,0.0126683930374056,0.0001413177790178627,8.712445102912762e-40,0.9975988082660169,0.9966705873099247 -मक्का,rgb,3.1889558782474304e-33,4.150989425181496e-18,0.1204787442646456,2.2277063164905656e-46,0.00035789713382479335,3.6634737033528184e-10,8.700279309857459e-33,6.605656479484352e-14,1.3965535736690129e-12,3.3600129779750985e-12,0.9942815007981965,0.8784155442017945,0.9414484117511127,1.2183103434521755e-18,3.705663966247623e-52,1.0643408526931612e-50,0.9467078486273456,0.967011581811805,0.9531140356630748,0.9837301301858193,0.7657492649854334,5.8948451844918325e-06,3.6539286504043565e-10,8.791770192743091e-09,2.0602132949579278e-07,0.00432951969804417,2.469702335768594e-38,5.62141512007478e-07,2.156916824134104e-48,4.5591948603425544e-14,3.9843175336017404e-10,0.014389445079807075,1.234471121473606e-09,6.471900494156081e-11,1.4220069101030444e-41,7.6991931016295175e-50,0.9951093231021627,0.0037478770650624348,2.3912550986577387e-06,1.0925134016356854e-07,1.0534494294847718e-42,4.667065569641489e-10,9.702254058102521e-10,7.332664276725652e-16,5.859530547287595e-40,0.35062587057696853,0.017168478885514996,0.12470005700144184,9.179512201870836e-40,0.0007699026550175396,3.860340485409874e-10,3.78730381039178e-43,8.269186866742649e-13,7.0949879296262755e-09,3.228062062473639e-44,4.018494541561679e-08,0.1452259329331706,0.24466360728404635,0.9058080987122445,0.9696658782212763,0.9943173621202122,0.5234699438060881,1.5360615198454737e-53,5.357406814268032e-09,4.012890166367958e-13,4.114538257480354e-09,0.0008975440641016931,5.629604070020883e-13,1.1639331803028374e-13,6.717764188358252e-13,3.753500476563493e-09,1.4195613947316072e-43,1.6058475973807427e-41,3.606134440681692e-13,7.408020575923834e-16,2.0091358377907532e-09,0.0016307024196168085,1.4063692015233622e-08,2.681242699122526e-06,0.3435297808502785,7.943247733770397e-37,0.26161863335270724,0.001378563252538254,0.5625175866653229,1.4536999854654265e-13,0.00246970617854321,4.104346030428624e-49,0.002751355327364755,4.044766916692846e-28,9.756299007999334e-37,5.356950043204382e-14,1.8921031444870906e-56,0.06048006403877207,0.22048844324218833,0.40474657129602,0.5075348485997202,5.389029500616278e-47,0.5694579687384569,0.20768937193051393,0.5900004669417852,0.7508496615609567,5.860876716865065e-30,1.4358069878394383e-07,3.930595344562658e-45,0.720060768056644,3.7715967520320164e-10,4.200202880845343e-38,2.2775802911470576e-08,0.011440662070222408,1.5549962267684408e-07,0.03999332508766382,6.561523850900389e-44,2.640423245996623e-48,0.8473146917594857,0.9843378102068869,0.9920869685591434,8.543577541713629e-11,0.9965508008129084,0.8577658627709599,0.30544276022246347,0.011909194802116767,0.9922401276987598,0.00018429958269994832,1.8229637303246035e-41,0.9151369458084249,0.010808993738537373,0.9907352649246265,1.5536122733244617e-10,0.09311575665606042,4.414150977338408e-06,0.989191345233614,1.934660248234672e-09,2.574938944237625e-10,3.8655349646320396e-13,1.191648934772213e-10,0.9602609332980387,0.9517490760831171,0.9629850893229391,0.008481304087655957,3.302395557717791e-14,1.0117795276590163e-40,1.5880568094816218e-51,3.790036002443057e-09,1.5324649001296328e-39,0.9451579538952833,0.9952307498243426,0.8557608814584159,9.301583356225859e-07,0.0007813519450484079,2.7434928485507453e-09,4.729858002446493e-41,0.10845016277214647,1.1239128057679564e-48,0.9947009083673362,2.5376359239483103e-44,0.9656449647503577,0.9213558872538555,3.388831732112074e-08,1.8268089307701999e-06,0.9265610578108612,5.96182262704381e-10,0.9293671531026955,5.709584931367381e-49,1.5031593172786152e-07,3.576403727093274e-08,6.355129960682295e-09,8.858139747925692e-08,0.95251745459429,0.9728357582376567,8.887413848276469e-45,0.24787810389850992,3.970302833302758e-10,0.004112798269305715,4.186342554073314e-52,0.3762883893681321,6.119994391950865e-33,5.899556610477699e-57,6.4973891101478734e-49,9.131725913055022e-11,3.4863495795754514e-08,1.0386516590414895e-07,1.8829640375254082e-51,3.462969225257424e-41,5.869265760350249e-10,3.8790208966571996e-10,3.133548044117211e-42,3.27409473205732e-34,3.600415214477143e-17,0.9723540879866676,0.9251328560351172,0.9948760404907745,2.0262666714370023e-09,5.908477541348149e-34,0.9967863270079502,4.206694072450241e-05,3.980849838918982e-40,4.4552683291669825e-10,0.9635905351222471,8.496282719704422e-10,7.862934470992878e-09,9.989462163025766e-41,0.07392799632736868,2.355493306884748e-07,9.383677634453745e-38,0.9958615709745051,3.2751916487736124e-08,5.274177604707979e-44,1.0947608374737807e-42,1.865776220954639e-51,3.48673820876647e-36,2.013331643225152e-06,0.0019039260836060006,3.126517151684335e-07,0.9478146144096988,3.338998710947867e-09,0.9844548752415526,0.8702632897940951,1.0009926803424375e-55,0.22096392259342276,0.0035363616807170687,0.003977482682311292,6.98964584668566e-40,3.975998218134825e-09,1.9590993847258054e-08,0.9721573942758713,0.972837297369131,4.256325468634019e-18,0.9789898004360538,7.859971867852657e-56,0.012208089835252893,3.2339638166526754e-45,4.1775118333784316e-07,4.481836826598288e-41,8.310645456767677e-08,0.014245384719998387,0.9121756980581085,0.7404997735939145,3.162904325772066e-14,3.619954738059168e-06,0.0126683930374056,0.0001413177790178627,8.712445102912762e-40,0.9975988082660169,0.9966705873099247 -मक्के,rgb,3.1889558782474304e-33,4.150989425181496e-18,0.1204787442646456,2.2277063164905656e-46,0.00035789713382479335,3.6634737033528184e-10,8.700279309857459e-33,6.605656479484352e-14,1.3965535736690129e-12,3.3600129779750985e-12,0.9942815007981965,0.8784155442017945,0.9414484117511127,1.2183103434521755e-18,3.705663966247623e-52,1.0643408526931612e-50,0.9467078486273456,0.967011581811805,0.9531140356630748,0.9837301301858193,0.7657492649854334,5.8948451844918325e-06,3.6539286504043565e-10,8.791770192743091e-09,2.0602132949579278e-07,0.00432951969804417,2.469702335768594e-38,5.62141512007478e-07,2.156916824134104e-48,4.5591948603425544e-14,3.9843175336017404e-10,0.014389445079807075,1.234471121473606e-09,6.471900494156081e-11,1.4220069101030444e-41,7.6991931016295175e-50,0.9951093231021627,0.0037478770650624348,2.3912550986577387e-06,1.0925134016356854e-07,1.0534494294847718e-42,4.667065569641489e-10,9.702254058102521e-10,7.332664276725652e-16,5.859530547287595e-40,0.35062587057696853,0.017168478885514996,0.12470005700144184,9.179512201870836e-40,0.0007699026550175396,3.860340485409874e-10,3.78730381039178e-43,8.269186866742649e-13,7.0949879296262755e-09,3.228062062473639e-44,4.018494541561679e-08,0.1452259329331706,0.24466360728404635,0.9058080987122445,0.9696658782212763,0.9943173621202122,0.5234699438060881,1.5360615198454737e-53,5.357406814268032e-09,4.012890166367958e-13,4.114538257480354e-09,0.0008975440641016931,5.629604070020883e-13,1.1639331803028374e-13,6.717764188358252e-13,3.753500476563493e-09,1.4195613947316072e-43,1.6058475973807427e-41,3.606134440681692e-13,7.408020575923834e-16,2.0091358377907532e-09,0.0016307024196168085,1.4063692015233622e-08,2.681242699122526e-06,0.3435297808502785,7.943247733770397e-37,0.26161863335270724,0.001378563252538254,0.5625175866653229,1.4536999854654265e-13,0.00246970617854321,4.104346030428624e-49,0.002751355327364755,4.044766916692846e-28,9.756299007999334e-37,5.356950043204382e-14,1.8921031444870906e-56,0.06048006403877207,0.22048844324218833,0.40474657129602,0.5075348485997202,5.389029500616278e-47,0.5694579687384569,0.20768937193051393,0.5900004669417852,0.7508496615609567,5.860876716865065e-30,1.4358069878394383e-07,3.930595344562658e-45,0.720060768056644,3.7715967520320164e-10,4.200202880845343e-38,2.2775802911470576e-08,0.011440662070222408,1.5549962267684408e-07,0.03999332508766382,6.561523850900389e-44,2.640423245996623e-48,0.8473146917594857,0.9843378102068869,0.9920869685591434,8.543577541713629e-11,0.9965508008129084,0.8577658627709599,0.30544276022246347,0.011909194802116767,0.9922401276987598,0.00018429958269994832,1.8229637303246035e-41,0.9151369458084249,0.010808993738537373,0.9907352649246265,1.5536122733244617e-10,0.09311575665606042,4.414150977338408e-06,0.989191345233614,1.934660248234672e-09,2.574938944237625e-10,3.8655349646320396e-13,1.191648934772213e-10,0.9602609332980387,0.9517490760831171,0.9629850893229391,0.008481304087655957,3.302395557717791e-14,1.0117795276590163e-40,1.5880568094816218e-51,3.790036002443057e-09,1.5324649001296328e-39,0.9451579538952833,0.9952307498243426,0.8557608814584159,9.301583356225859e-07,0.0007813519450484079,2.7434928485507453e-09,4.729858002446493e-41,0.10845016277214647,1.1239128057679564e-48,0.9947009083673362,2.5376359239483103e-44,0.9656449647503577,0.9213558872538555,3.388831732112074e-08,1.8268089307701999e-06,0.9265610578108612,5.96182262704381e-10,0.9293671531026955,5.709584931367381e-49,1.5031593172786152e-07,3.576403727093274e-08,6.355129960682295e-09,8.858139747925692e-08,0.95251745459429,0.9728357582376567,8.887413848276469e-45,0.24787810389850992,3.970302833302758e-10,0.004112798269305715,4.186342554073314e-52,0.3762883893681321,6.119994391950865e-33,5.899556610477699e-57,6.4973891101478734e-49,9.131725913055022e-11,3.4863495795754514e-08,1.0386516590414895e-07,1.8829640375254082e-51,3.462969225257424e-41,5.869265760350249e-10,3.8790208966571996e-10,3.133548044117211e-42,3.27409473205732e-34,3.600415214477143e-17,0.9723540879866676,0.9251328560351172,0.9948760404907745,2.0262666714370023e-09,5.908477541348149e-34,0.9967863270079502,4.206694072450241e-05,3.980849838918982e-40,4.4552683291669825e-10,0.9635905351222471,8.496282719704422e-10,7.862934470992878e-09,9.989462163025766e-41,0.07392799632736868,2.355493306884748e-07,9.383677634453745e-38,0.9958615709745051,3.2751916487736124e-08,5.274177604707979e-44,1.0947608374737807e-42,1.865776220954639e-51,3.48673820876647e-36,2.013331643225152e-06,0.0019039260836060006,3.126517151684335e-07,0.9478146144096988,3.338998710947867e-09,0.9844548752415526,0.8702632897940951,1.0009926803424375e-55,0.22096392259342276,0.0035363616807170687,0.003977482682311292,6.98964584668566e-40,3.975998218134825e-09,1.9590993847258054e-08,0.9721573942758713,0.972837297369131,4.256325468634019e-18,0.9789898004360538,7.859971867852657e-56,0.012208089835252893,3.2339638166526754e-45,4.1775118333784316e-07,4.481836826598288e-41,8.310645456767677e-08,0.014245384719998387,0.9121756980581085,0.7404997735939145,3.162904325772066e-14,3.619954738059168e-06,0.0126683930374056,0.0001413177790178627,8.712445102912762e-40,0.9975988082660169,0.9966705873099247 -मेहराब,rgb,0.999999909421359,0.9998189630892828,0.020046526350506026,0.9999999999999925,0.16108020244791885,0.512615104642275,0.9999999191864698,0.9055113266267536,0.7966202488897001,0.7419043590699714,0.001171398011965644,0.004492340350588431,0.0032323611520360396,0.9998901957682215,1.0,0.9999999999997908,0.0014348299042721473,0.001294024688544598,0.0013335546476443546,0.0005882683183876491,0.0016263366535586863,0.08046727177734567,0.5018099450545945,0.4510777287011495,0.2422679108143459,0.030012527955323283,0.999999997601839,0.18483681848922695,0.9999999999988269,0.9973047109441553,0.5065190256540638,0.04779146610506847,0.4158479549005187,0.5241681304427062,0.9999999999996894,0.9999999999996143,0.0004526276114531199,0.011478438332255134,0.08518851003132308,0.1565377398443291,0.9999999999998679,0.9394395968408601,0.4423553724894476,0.9994275688405233,0.9999999995455966,0.01299543475345807,0.04550022966718826,0.0197224662016534,0.9999999994450575,0.010553431460461336,0.5068512288235263,0.9999999999999065,0.8165759109340849,0.2885347376025597,0.9999999999780649,0.20448977917968994,0.01084665274933816,0.009298693197263681,0.004008181089049896,0.002430008634184407,0.0011631196331193222,0.002122476672628059,0.999999999999972,0.8748893297768396,0.9946547874128532,0.45210593665545235,0.0369212055890459,0.8305045173534564,0.8894375052699737,0.8298850003280613,0.3330052504878483,0.9999999999999325,0.9999999999996638,0.8463335393309123,0.998506665281284,0.900274192876715,0.03710907482857127,0.38245603709301396,0.10316287242224305,0.008213084336977258,0.9999999929278911,0.00834644571831719,0.009339995200546647,0.0063835230697423685,0.8838071350325911,0.008275360226051982,0.9999999999993139,0.013325859612450572,0.9999963055562643,0.9999999923856767,0.9099936623598514,0.9999999999999964,0.014139010211300446,0.010432813606309162,0.007732980265494837,0.0068816771299353915,0.9999999999968392,0.006333937287536367,0.009229314445483661,0.0059952449564511295,0.0048488061190062335,0.9999994325824111,0.1450476665290371,0.9999999999999802,0.005362959957445354,0.5125019998195381,0.999999998338784,0.3776289743115792,0.027012061656385502,0.1398191667532925,0.012482806585778359,0.9999999999999485,0.9999999999999984,0.005157443270393349,0.0018469501594330965,0.0013703159159437124,0.5100746270549177,0.0009321964137368454,0.004805648951239536,0.01110556924361939,0.05083659599521049,0.0013854194067426397,0.01606909555475292,0.9999999999996458,0.003972683831972482,0.009143140909023323,0.0015027247046248819,0.4685273636242537,0.0027417947439162572,0.04160669631395682,0.000649073518485174,0.2887981026547027,0.5390972776069268,0.8440564913585749,0.4843911230792334,0.0010935178377779538,0.0012768337896879917,0.0012175976819211167,0.0054421188111554285,0.9977020715226578,0.9999999999993923,0.9999999999998692,0.330295092091503,0.9999999999983906,0.000799405999983096,0.0004566832477462514,0.001485312218020595,0.1385160016570792,0.04150097502668222,0.5057285236007321,0.9999999999995088,0.0025419309189686342,0.999999999999085,0.0011316233734908266,0.9999999999796119,0.002573604268321005,0.0037189907865362516,0.41304178053829915,0.19457858939795292,0.0013445008177381112,0.704675563173841,0.0013674522725510738,0.9999999999994029,0.28218878318957563,0.3578377408230296,0.45876119696505735,0.2809597762262537,0.0029793784958240606,0.0023185780457600407,0.999999999999974,0.001956245937246144,0.5048024030426567,0.0063241822317492485,0.9999999999999225,0.0016735234135806683,0.9999999273901813,0.9999999999999973,0.9999999999999991,0.7966141598459298,0.4018484993575521,0.31148036792244854,0.9999999999998812,0.9999999999995781,0.4664800298417533,0.5104724102459923,0.9999999999049818,0.999999999890304,0.9995853252450478,0.0023354744724228453,0.003625010926785891,0.0011100725209978494,0.2894285357147152,0.9999999466109573,0.00042336457172911606,0.022349135439763173,0.9999999995634508,0.39093685658212796,0.002721440501190423,0.44528129856957477,0.27858797918657374,0.9999999999993674,0.0028443545759998675,0.21092448263810404,0.9999999962831134,0.0010257001014430114,0.2047590730536004,0.9999999999745366,0.9999999999998648,0.9999999999999998,0.999999989108259,0.05210654777447477,0.013121923626808326,0.22154512785103933,0.0030895180435841015,0.486328251893095,0.0018865384669753485,0.0047250250562928375,0.999999999999994,0.015947233002044415,0.07828102569711759,0.07699368546649302,0.9999999999987708,0.3271403299576337,0.8196373667611156,0.0012327948387801876,0.001261698255835043,0.9998172900131285,0.001040402732421106,0.9999999999999944,0.050371461297697984,0.9999999999999825,0.08647541153777201,0.9999999999995208,0.16495153064868903,0.04819507858498394,0.004032339357766482,0.006604149264846203,0.9978355338327618,0.04391425613890057,0.004642186719234351,0.028140098528359952,0.999999999998727,0.0007704267615715982,0.000918789433352415 -या,rgb,0.09215232221328962,0.9999999999977591,0.11253461609735278,1.0,0.6102373285908806,0.9646689297965864,0.026774718139026633,0.5525020054696118,0.4509048327556176,0.18761767539832627,0.009076692510939375,0.043473701872041096,0.027646913775094706,0.9999999999989639,1.0,0.9962742386645086,5.340139104335501e-05,7.734631226645645e-05,4.911209752373981e-05,0.0015135036491868287,1.3555378118850666e-05,5.395727932692755e-06,0.9423765061223259,1.0730619844532036e-05,0.9993382944585059,0.00018243879661146873,0.6022111282321214,0.9986998496438665,0.988478058547004,0.9999999998212341,0.9640601000040879,0.4172468726173362,0.9319522952864481,0.0036644230206437445,1.0,0.9939283627072578,0.0011886623663989683,5.5187116085009336e-06,0.9191948130279836,0.7491353981845853,1.0,0.9999999698061215,0.9572479338496478,0.9999999999793574,0.45686116242151464,0.28677204244063914,0.47605047449436017,0.10848069303440822,0.4544440139587962,0.0029489675288037493,0.9610608053847418,1.0,0.3397290986493235,0.8296564324130224,0.8871067908322555,0.8513371065607461,0.9850528578778158,0.9783437014390728,0.039144460041579426,0.0195260886645881,0.00828300498685421,1.0454295426883818e-05,0.9992976600077694,0.9999998733139314,0.9999999994136379,7.77969873977808e-06,4.1293785512486416e-05,0.26767675747720004,0.48789880102523725,0.5022602856118773,0.8808590468174152,1.0,1.0,0.21387438394167052,0.9999999999232707,0.9999999298121198,0.00010717861089262174,8.089306025117873e-06,5.715498518583245e-06,0.9702277651794778,0.41186794718890746,0.9734001981155248,2.115490574444766e-05,0.9419638272977231,0.5300408429470377,1.4619336447585004e-05,0.9919036625851649,5.6960593102458974e-06,0.012363103953200463,0.41258721081005767,0.5157079943776143,0.999887159164145,0.9915377959112294,0.9820675278263095,0.9644552630829472,0.9513521163982097,0.9748631697336461,0.9406768723115483,0.9787115853093119,0.9357838549260244,0.8855033148476297,0.007067847522754117,0.7117415628851125,1.0,0.8975380756800848,0.9674473370559196,0.2426127095360275,9.909033067918464e-06,0.000697737384385703,0.656678447106205,7.702475801476543e-05,1.0,1.0,0.09650617930888071,0.01772750981802797,0.013439310128479457,0.01955621245539728,0.02342835551488511,0.04297492269062985,0.011130148771267794,0.4042615234559877,0.03026760419014674,0.006719439826542822,1.0,0.08943019164053566,0.6721368696445948,0.03462304352958904,0.02482994632310243,0.0009056045620645593,0.0003394998965044737,0.01163330136075695,0.001520262863874764,0.9684533376534723,0.22589735526140992,0.015047503521719671,3.2719168857747076e-05,4.036343012237428e-05,5.008555394801716e-05,0.001928420608939813,0.9999999998490232,1.0,0.9982691723593716,0.8682162368645078,1.0,0.0022275897649233485,0.0014686615337279737,0.09385832624343037,5.998798853307966e-06,5.902501005319171e-05,9.015730036907348e-06,1.0,0.0001596226678608058,0.9891303139702917,0.008799122368940154,0.8928184130869944,0.02230928203640776,0.0395610901250304,0.9999314438674465,0.9998338641017186,2.756959883613263e-05,0.9999856031865778,3.027522373545804e-05,0.987127331033785,0.9997196062428525,0.9997209260419038,0.9997023826352526,0.9993066929836235,0.02986598128417475,0.0187009047439775,1.0,0.0001617820730342817,0.9608238256257732,0.00029492282953169006,0.9983641497960489,0.0002064406719788603,0.02876390727733808,0.9999200868121033,1.0,0.9999886681521443,0.9999128640280639,0.9997982664116162,0.9974195577947176,1.0,0.9340687874102658,0.9672727509964528,0.7483876294602593,0.9999999999999925,0.9999999999917455,0.018753618812269442,0.0357557380659426,0.007980230053343898,0.00039985651339900053,0.12440337607070169,0.0013442273224832332,0.00042685355884735846,0.5088780671855222,0.01537929632146986,0.046660844789927866,0.9443582953854479,0.7899757416835427,1.0,0.00013721218646561937,0.9981393226234268,0.5567051827502757,0.024269701339171175,0.7527925204689764,0.8746530605763797,1.0,1.0,0.30687495677842946,0.00017390431626049607,5.216543372495643e-06,0.9992684672130586,0.02858166570507978,0.9995619618207905,0.0354332378855339,0.0681087549443363,0.999815892104912,0.17161240129777303,0.5380111145839244,0.6466259747305619,1.0,0.8664810837087832,0.9999997237747155,8.410453717664474e-05,9.806495157646032e-05,0.9999999999977274,6.637988871743665e-05,0.9998284723363243,0.4007757008570201,1.0,3.5758972090118964e-05,1.0,0.7227389438505403,0.44119579330718023,0.08978302195997002,0.08724287820772157,0.9999999998501226,0.0006749783371404269,0.0001986142758306802,4.853778128174503e-06,1.0,0.005220336985607423,0.009296751348300863 -रंग,rgb,1.0,1.0,0.999914681437243,1.0,0.9999999993195439,1.0,1.0,1.0,1.0,1.0,0.043275160052419596,0.8903942974074842,0.6632539876677571,1.0,1.0,1.0,0.9567459569532619,0.8529827394222173,0.9526364775636561,0.9987087738250038,0.9999181769618344,1.0,1.0,1.0,1.0,0.9999999917317092,1.0,1.0,1.0,1.0,1.0,0.9999990034305988,1.0,1.0,1.0,1.0,0.9428148902706026,0.9999999999898259,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9991754398431406,0.9999986631740035,0.9999078258855987,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999714505144,0.9999997746673931,0.8312129424063565,0.3796009503329959,0.042109983157600124,0.9999955215189633,1.0,1.0,1.0,1.0,0.9999999999410369,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999993798179,1.0,1.0,0.9999990060648205,1.0,0.9999998399924762,0.999999999999994,0.9999855813330057,1.0,0.9999999999999531,1.0,0.999999999992194,1.0,1.0,1.0,1.0,0.9999999983068775,0.9999997270876705,0.9999976109976524,0.999991745547376,1.0,0.9999842864236138,0.9999999249513839,0.9999842763152612,0.9998584483324446,1.0,1.0,1.0,0.9998586556235342,1.0,1.0,1.0,0.9999998315127847,1.0,0.9999995326119802,1.0,1.0,0.9396845356516921,0.17645961084783113,0.0708917595735878,1.0,0.044761071624110485,0.9167701545458466,0.9992633025284652,0.9999993014545766,0.09548015258212823,1.0,1.0,0.8397267428478071,0.9999999999999032,0.121991725095175,1.0,0.9999999999752072,1.0,0.9938616339344652,1.0,1.0,1.0,1.0,0.9725233646819813,0.9673459166500541,0.929286970264196,0.999999999999972,1.0,1.0,1.0,1.0,1.0,0.9999701447346505,0.9391467303256353,0.9999972204144624,1.0,0.9999999999335263,1.0,1.0,0.999999999912496,1.0,0.03921534232918372,1.0,0.4346664910056894,0.7807092721812415,1.0,1.0,0.9925271061191161,1.0,0.9900696592168551,1.0,1.0,1.0,1.0,1.0,0.5829570895188216,0.33679919560070976,1.0,0.9999999987760473,1.0,0.9999999999999907,1.0,0.9999999946300633,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.34326019498360244,0.7614043352001801,0.03686270173377274,1.0,1.0,0.8008447762477025,1.0,1.0,1.0,0.5084126897819508,1.0,1.0,1.0,0.9999999999681315,1.0,1.0,0.049818135524212354,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999987901,1.0,0.61909411868669,1.0,0.2115031789228182,0.9109534394824432,1.0,0.999691250052228,0.9999999380308787,0.9999999284662271,1.0,1.0,1.0,0.7967469518707885,0.758505421894218,1.0,0.7747171733502105,1.0,0.9999992656552615,1.0,1.0,1.0,1.0,0.9999990389306319,0.8476488580845941,0.9787797057877833,1.0,1.0,0.9999999999997846,0.9999999999999973,1.0,0.015200828706079266,0.024343662573798247 -रबर,rgb,0.1007372765667024,0.9999999999999813,0.2263080231709336,1.0,0.8707971519853513,0.9673620047606127,0.03452347450604922,0.44464749739499615,0.3365715971041947,0.10783952363427016,0.009106300960432665,0.06785592016500433,0.03889477109113694,0.9999999999999927,1.0,0.9994060843512818,2.3086088967500964e-05,3.575204304344678e-05,2.0539999333852036e-05,0.0006182957833846818,3.9271004164987295e-06,1.594443195310809e-06,0.9423411398907104,4.390122621224335e-06,0.9997429826030565,0.0001438695446349621,0.719746284608436,0.9994386610346225,0.9976338008296978,0.9999999999976739,0.966739631888474,0.7014019443503329,0.9310409366027338,0.001183729966801308,1.0,0.9989532935212363,0.0005055974260445643,1.4669047794795839e-06,0.9250598304822432,0.7099605659435432,1.0,0.999999999062624,0.9597288229619266,0.9999999999998324,0.6720188737656482,0.5019494999354088,0.7532725105019933,0.21781805311497093,0.6583624779127463,0.0009879602510538057,0.9634683962936067,1.0,0.229755538527132,0.806212167599543,0.9648338385369306,0.8371372958546671,0.9947176988325436,0.9921992333027673,0.05933800601577335,0.025044394423484058,0.00820379087216122,2.84855584116439e-06,0.9999131964072384,0.9999999951601797,0.9999999999910509,2.6368751885058852e-06,2.3574648414078864e-05,0.16843416881789533,0.3739791666380049,0.39016403781429987,0.8700522451236542,1.0,1.0,0.1267400442840592,0.9999999999985809,0.9999999974181797,7.654277004542306e-05,2.8934459188192096e-06,1.7552746648290997e-06,0.9889758774285701,0.5101215518975015,0.9895844906727285,4.477465471699559e-06,0.9766848725089747,0.41978342835095356,3.086228155949329e-06,0.9984627975578882,1.5877636469937148e-06,0.00891636992019042,0.5083425072189346,0.4036913757419669,0.9999891889219514,0.9971611652319963,0.9940182324289704,0.9866943976103522,0.9810777626529309,0.9941091763521052,0.9761001196825099,0.991958622786468,0.9732595953719518,0.9477761880474525,0.0076708183965442205,0.6633975878228885,1.0,0.955876847655304,0.9703461824598749,0.4045145080021023,3.942348185808301e-06,0.0007135522663123403,0.5947226052669887,4.6835750003454003e-05,1.0,1.0,0.16305594792683434,0.021304170895597746,0.01465493387742408,0.007675259149264403,0.02435518791789459,0.06772372392725479,0.01660824244661772,0.69037086936463,0.03609788322967403,0.002470469616897302,1.0,0.14448858420274624,0.6732278125391579,0.04267345892147071,0.010063447542042428,0.00028163064053573247,8.573751012194041e-05,0.006849849857261178,0.0004447678135928085,0.9712774075048275,0.13574743162090744,0.0057099742266986,1.1801897474819448e-05,1.5940703868477354e-05,2.0691537174606777e-05,0.0006323574134601224,0.999999999998159,1.0,0.9997292770933163,0.8541890141575974,1.0,0.0009080680862561252,0.0006456039383326381,0.0717736565416851,1.8894802150575766e-06,3.703718383015442e-05,3.328268917027665e-06,1.0,4.0958449558573415e-05,0.997875167694464,0.008722640117628837,0.9670254206751384,0.029385301735577306,0.05928639855148319,0.9999824723879328,0.999956408654146,9.909998472832325e-06,0.9999969617794409,1.121817781584618e-05,0.997830394914714,0.9999080268037975,0.9999039575075864,0.9998906977908634,0.9997207222166667,0.04178029211866141,0.023651901997255316,1.0,4.236325649272033e-05,0.9632217170718913,7.677130077154333e-05,0.9997697812285983,5.613899289932767e-05,0.03746304180187235,0.9999926613040956,1.0,0.9999975825619469,0.9999765460447082,0.9999374887332174,0.999622016885708,1.0,0.9329522449353086,0.9701710108366239,0.894909044122099,1.0,0.9999999999999087,0.02375914884460575,0.05278983560509982,0.007781339316994329,0.00010359811804277833,0.14304989492568504,0.0006024565954933877,0.00011120819591164064,0.7098112344407377,0.005854041211048335,0.067191987143415,0.9451732654561675,0.7553983954766946,1.0,3.445087611646872e-05,0.9991129334255434,0.6682751294890548,0.026092242164377458,0.711182812407842,0.9599307262238511,1.0,1.0,0.3855543904873309,4.135113450828814e-05,1.31907599438171e-06,0.999713916400269,0.04004438976005143,0.9998233930378839,0.04612944300352574,0.11137827945448453,0.9999812808614824,0.33053874295736047,0.8135118728220658,0.8788378349852887,1.0,0.852073300823482,0.9999999881307936,3.926070188038092e-05,4.752139550770159e-05,0.9999999999999809,2.843309230647687e-05,0.9999827082706716,0.6865784779581775,1.0,7.745363773392691e-06,1.0,0.6755932782760751,0.724265196418221,0.14544535217653162,0.15223555503657565,0.9999999999982354,0.00018240000800544856,5.033914423792489e-05,1.2404882898042925e-06,1.0,0.0043944057492927855,0.008790842363007877 -रब्बर,rgb,0.9999997049450962,2.9002822218184367e-05,1.5987700265202536e-08,1.2869691761378504e-18,8.241696365384306e-10,0.9999757815945073,0.9999278126153134,0.9999997179905884,0.9999992533689875,0.9999990795820141,4.569175811443448e-06,1.9088717630725695e-07,3.7382147113778636e-07,1.138823825337825e-05,3.6513472328935056e-19,0.9999998306854903,0.0001614917871397956,0.00010231782996662866,0.00022054749093976893,0.18820827002448876,0.009096493410520564,0.052701149380904436,0.999981506275488,0.009308358224155962,0.9617089492294645,1.8269206651019177e-06,0.9999999676190731,0.9615518583731107,0.9999998316193827,2.706628656448881e-07,0.9999749870303166,4.0148215520878015e-09,0.999969268300298,0.9999954697359541,2.6385412623714007e-17,0.9999997524175861,0.04971451757008136,0.04245213817295471,0.9980491765889027,0.99986104733627,3.9357403283359916e-18,4.822375354281039e-07,0.9999645291730377,4.335074927760512e-08,0.9999898497596329,2.927673027720726e-08,4.217153820624714e-09,1.646589124491241e-08,0.9999947356042493,0.9983389366936914,0.9999764648640429,3.4067408253054153e-18,0.9999993984615881,0.9999562993809353,0.999998285903342,0.9998843410350574,0.00015112988022964537,7.349226575043839e-05,2.3921077424682396e-07,6.981682368368013e-07,4.6443499614296185e-06,0.01940607071221483,0.9999999567723933,3.375939080407889e-07,1.5847673626146615e-07,0.10631660896285877,2.36399539312698e-05,0.9999994752956269,0.9999996682770637,0.9999994047343497,0.9999609405995512,2.8082540294427303e-18,5.5063744170306156e-18,0.9999995426434978,0.0012835231313388872,8.201557247042315e-07,3.990753737062266e-06,0.03678582072510129,0.04139049309885591,4.698681822670304e-05,0.9999999454782303,0.00016735074946194918,0.9698292562257562,2.4309917826345715e-05,0.9999996386626149,0.9303370059586612,0.9999998353442776,0.02397089753338467,0.999999202299845,0.9999999508081336,0.9999997389516859,0.9999999920671846,0.0003029094758825258,3.476337570323465e-05,3.36589038349542e-05,2.4774791226134955e-05,0.9999996774621044,2.37613531251481e-05,0.00017283805654666294,3.169221535550777e-05,1.8915387347261505e-05,0.9995414014238971,0.9998543718284651,1.90690624717064e-18,1.1164283778679195e-05,0.9999742553243116,0.9999711227200152,0.009245577476572026,3.4061112947395824e-07,0.9998662395713932,9.7355144722695e-06,2.653704769430127e-18,8.285755174356146e-19,1.4956546162468427e-07,1.3427072380811388e-06,2.9660369857910795e-06,0.9999969894678268,1.5355403009136772e-05,1.6815624100540337e-07,7.430102191699621e-08,3.726765795163556e-09,3.5485241472593425e-06,0.9991482328508036,5.264575255664091e-18,2.611664004470733e-07,0.8127662155321824,2.845494713631751e-06,0.9999965144964269,0.9758808456996247,0.9996669774710258,0.041250209130956304,0.9999840530827414,0.9999783428281255,0.9999995334014845,0.999996510551983,0.000945785008048537,0.0003691111218326286,0.0002584164066834779,0.9942126102107529,1.509426798422939e-07,3.0735778834937686e-17,0.9999999732613183,0.9999629267268919,9.613784608882202e-18,0.43396685969871945,0.045342028378647724,0.14744087036509496,0.042079056634850516,1.1451524065797983e-05,0.04508351652891169,5.928791732718965e-18,0.9596473681695121,0.9999997347267529,5.070294490955966e-06,0.999998384772092,6.124299357654188e-07,2.7812997604588164e-07,0.8532526685855123,0.30776214517067174,0.0008599329526533598,0.9567964936809257,0.0006361498604129469,0.9999967578484965,0.9163117605194585,0.9730952961411103,0.9932967314588296,0.9811997952499941,4.435067153108415e-07,7.770400593162249e-07,2.0955331617100347e-18,0.9294419244410496,0.9999762147713218,0.9944856800630485,0.9999999159014841,0.9083753208188693,0.9999333666461665,0.999999994566148,8.530909202279254e-19,0.9867755058954816,0.8887124140301021,0.9066299651057292,0.9999998213235013,3.1180884757812044e-17,0.9999783309166909,0.9999739693840874,0.9999978909314555,5.1684474743833886e-17,8.522653083435315e-05,7.642796628950566e-07,2.9332030498069885e-07,5.346616969792891e-06,0.9999642913513516,0.9999997579640916,0.025331926791416992,0.9993270105784332,0.9999963710289539,0.9999948110151554,5.677585749681167e-07,0.9999714520309348,0.9999592897551708,6.653705525486875e-18,0.9655178824474224,0.9867737349418378,0.9999999707768115,1.0137575170475639e-05,0.9999248453934894,0.9999980642905959,3.722619579333536e-18,4.141346597348018e-19,0.9999998994811482,0.9996067170095845,0.09612600128006692,0.9527053930509963,4.104245773076395e-07,0.9972103332126423,1.4147291096468067e-06,1.7346805447136697e-07,0.999999986226459,2.0654353931294045e-08,2.0318407700529265e-09,2.0010121173386393e-09,8.687333288470307e-18,0.9999623155027377,3.0256485097748835e-07,9.844043265500514e-05,7.394566109589901e-05,2.9242387415458816e-05,0.00021664914395536295,0.9999999872968875,3.77710470105054e-09,8.778142863493201e-18,0.9986332426806658,6.127460300332934e-18,0.999887612787285,3.936831642976976e-09,2.525915259400893e-07,9.168070578259084e-08,8.936037951826349e-08,0.9997728267475412,0.9887675454481303,0.14517433378977412,4.3374167479652274e-17,1.834011866050638e-05,1.0425641371833992e-05 -रूप,rgb,0.3330753428713697,0.9999209635856765,0.6459168331513255,0.05319342500914678,0.46778248748728096,0.9998019571095765,0.05922617813011362,0.9992690868972065,0.9992680441182991,0.9988251736872652,0.9072256622730477,0.8204441283891797,0.8380773674720551,0.9999091255735185,0.06519508190863178,0.03491170889708668,0.6896173078122757,0.7101869903667967,0.7062762430879038,0.9902764797739022,0.7634771418212448,0.32980431710684366,0.9997724256027615,0.12446085482039525,0.9998744345453742,0.21310144023839753,0.3382283322807919,0.9998559029974139,0.047841966855458704,0.999488588527987,0.9998010655648167,0.6417817883647922,0.9997624261144916,0.9928861922793865,0.5213594222887978,0.034175906547076536,0.986009663481978,0.5556114758326498,0.9997171848581727,0.9996374505068882,0.08732028887072593,0.9990576023818499,0.9997915566282105,0.9993364089868997,0.037791937800859945,0.8161648632166023,0.6743388755606236,0.6452808463392753,0.04862558022010584,0.9961618099756366,0.999796600151359,0.08144744050195343,0.9990917932690548,0.9996849570202498,0.037534045408940134,0.9996976870072319,0.9977417267057,0.9970101295755576,0.8298450639423868,0.8563743760115554,0.9043456002648196,0.7549607805477361,0.039463142762839666,0.9986639651059058,0.9992827393384195,0.19193804793329988,0.1958987552839996,0.9989294756213745,0.9992133544379991,0.9993000518325706,0.9997193336620901,0.0649180716825375,0.09200481609403548,0.998751862975436,0.9999483158180537,0.9990783960880719,0.19018660901430695,0.1713874202185422,0.2927725362490897,0.9963431013464412,0.3481230203292854,0.9974820935088544,0.9333728574073006,0.9947620684652569,0.9992743319135735,0.9092748411574745,0.04370215994596638,0.5026597787524089,0.47734019291905033,0.3627755039966371,0.9992142832956348,0.05109440990794835,0.9983405382100463,0.9964769540190377,0.9957981841236561,0.9950254085850094,0.04588677775463166,0.9946961098995936,0.9976320377462714,0.9950222929964655,0.9931925100162353,0.05185617972028665,0.9996173594833266,0.06752006998960247,0.9922521768058825,0.9998063429868975,0.035145130668611226,0.1369308059436163,0.25205114053229,0.9995889117414338,0.30497378960786925,0.0709838760440721,0.057661565008643875,0.8547301562148144,0.8854261107532736,0.9063451385467773,0.9970743210892615,0.9584588476895795,0.8097030487232191,0.5509424568541262,0.6243604826659491,0.9360350279358978,0.9972603041337158,0.07860731062031452,0.8815059075269966,0.9993144909532046,0.9339349008501026,0.9974867730256318,0.993208856743383,0.9869156499034007,0.993682509128454,0.9909903557815798,0.9998078202580577,0.998794416660717,0.9967411933645225,0.7631689401273546,0.7199701992978158,0.7254440066173341,0.9953514352914741,0.9994037256906233,0.5069703187540701,0.061646521651512784,0.9997101322958031,0.09489665499176209,0.9930291276505055,0.9868868113032248,0.9975111809331377,0.2653242668827016,0.18253907513567563,0.15239199167768758,0.07985921516353296,0.9837681232333435,0.03904908744664547,0.909702037072419,0.037755017216301735,0.8562616192208033,0.8409324316744737,0.9999026548895112,0.9998319281460958,0.7247156949297247,0.999938238065511,0.7157289620505107,0.015703662535521797,0.9998828618974809,0.9998984867338587,0.9999112031280045,0.9998831192683348,0.8536885335878166,0.8601351374110165,0.06838174156543753,0.9834460629856543,0.9997962745618162,0.9885919524069582,0.03733387938858015,0.9851679206115304,0.05933176083534246,0.055316257797182966,0.08532663595034375,0.9999485346874633,0.9999023934753241,0.9998883978072995,0.03097057375780566,0.5408616917251384,0.99976388099475,0.9998060704050039,0.046439985196837535,0.12019540070572653,0.9999283079949861,0.8593450814160407,0.8381194984502379,0.9079550773459769,0.979950020430419,0.32110591011954104,0.9846512934311881,0.9895917423642293,0.05236790486535184,0.9970264544851749,0.8889746752015333,0.9997756122588515,0.9996608330597648,0.0858589844738164,0.9824356136708123,0.9998619576203401,0.3738963217451845,0.9525950156162133,0.9996408602181289,0.03708640936102084,0.07467444724187537,0.06141214897244626,0.3138161027850861,0.9794637360582606,0.588961035964528,0.9998685441661117,0.8462726784342617,0.999911338954909,0.9142918504827282,0.8433174194677162,0.04551095177212462,0.731308161045569,0.5911981680471475,0.6402788501261152,0.09351309811966858,0.9997089490410487,0.9984183053308374,0.7206010262627645,0.7172284948325063,0.9999209850134094,0.7556108458788136,0.04628949523024654,0.6247552615148034,0.4516075824750362,0.9286759541996203,0.08886414335101465,0.9996240990926702,0.6496757097863225,0.8800351287963522,0.8137041992045964,0.9992988654839056,0.9910214675936628,0.9859233054543234,0.5177018108381319,0.5375102424215966,0.9305465466586373,0.9323664260349604 -लाल,rgb,1.0,2.5649871393435907e-46,0.9999979021616421,1.0,0.9999999983127699,2.1020254779839876e-28,1.0,4.0073306156797187e-17,8.854416435324122e-18,6.912840384142802e-15,0.011216644811068028,0.9329378057337255,0.8399223620065404,6.086783703349394e-46,0.9999999999999996,1.0,0.9999999998245721,0.9999999985588426,0.9999999996282962,2.993570064627324e-11,0.999999999843894,1.0,2.3762915346632634e-27,1.0,6.533720582856078e-36,1.0,1.0,4.661716471791491e-35,1.0,2.3072205762227523e-37,2.1376286562858317e-28,0.9999907899717922,2.069581483285034e-27,0.0002589821149419851,0.26870497037051944,1.0,8.341960956655568e-10,1.0,5.670104513019753e-29,1.0182717502449671e-25,0.9999999999999927,2.3685971926990365e-33,2.4951864976245672e-28,1.1607600298060026e-36,1.0,0.6593565874031446,0.9999258968967435,0.9999980613154653,1.0,2.8761371813942458e-12,3.2331419329101883e-28,0.9999999999999973,3.0004050948013617e-16,7.419256313608831e-26,1.0,9.502421817091019e-27,7.185859422233434e-25,1.646944710209601e-23,0.876455629325995,0.5927831558134312,0.018742714083027086,0.9999999999744855,1.0,2.176959276628252e-31,1.4366453502311864e-35,1.0,1.0,4.230181770792136e-15,9.176115106087872e-17,6.532947197838316e-18,1.6322359534008125e-26,1.0,0.9999999999999869,5.1002747298283386e-14,6.144413306555014e-47,3.203219092736173e-33,1.0,1.0,1.0,1.717519945666651e-22,1.0,3.9534238589849096e-24,0.9999964518488992,1.3665900228924178e-20,2.4376292726265732e-17,0.999999913323754,1.0,1.0,1.0,1.0,1.3163896836133678e-16,1.0,2.063590494270808e-26,6.804238168085285e-23,8.410012362908587e-22,6.609190204996581e-21,1.0,1.5924584299706027e-20,1.6957639788115867e-24,9.144563116001808e-21,4.527867479370839e-19,1.0,2.0834395916993197e-25,0.9999999999999998,1.5275327992196496e-18,1.3855651851963092e-28,1.0,1.0,1.0,6.726989670067684e-25,1.0,0.9999999999999996,1.0,0.19418833994600676,0.06858823579842656,0.007426380568607283,8.223374574248805e-10,1.769579796310781e-07,0.9713898608589407,0.9999999992168185,0.9999966781373838,2.1099805226911407e-05,5.299718660801425e-14,0.9999999999999989,0.015185538463279956,2.3409662673887927e-26,2.63005239834869e-05,6.799747514769087e-11,2.515262678294905e-10,0.0031305873070434074,4.695399154778482e-15,0.0012545581874230558,1.606882204710973e-28,2.9558538855594916e-14,3.255449713363482e-09,0.9999999961147608,0.999999999506737,0.9999999987744681,7.619278007152511e-12,1.0270414507606888e-36,0.4830467047050371,1.0,2.8233791808003035e-26,0.9999999999999865,1.1676799832715797e-12,2.7640449878546553e-10,3.703072960525598e-20,1.0,1.0,1.0,0.9999999999999987,5.463104780275357e-05,1.0,0.008309506504121201,1.0,0.5542947943961477,0.7231412485824432,2.2970023467209433e-38,1.6915244580918642e-36,0.999999999786515,2.2276342176512053e-40,0.9999999998327296,1.0,7.660487869356453e-37,5.194435550457073e-37,5.533188899807495e-37,6.507280268619735e-36,0.5262477769752437,0.514353241515735,0.9999999999999998,3.0650027608321235e-05,3.257040612658641e-28,5.50703869525697e-06,1.0,3.835517317343827e-06,1.0,1.0,0.9999999999999836,8.943026292724238e-41,3.683154561435838e-38,3.2533118101746263e-37,1.0,0.12039749274292502,3.1997140700259714e-27,1.3909249297895268e-28,1.0,0.9999999999998488,2.3043813618882964e-46,0.5331577924899166,0.7921940241372274,0.012131159057202837,0.9853571158034687,1.0,1.251669738565538e-09,3.372899391874943e-05,1.0,4.460249834680361e-10,0.013994079338033424,1.007890598823729e-27,2.4189386109593875e-25,0.9999999999999962,0.00023000681750261385,1.1670987494584338e-34,1.0,7.827782415177859e-07,2.2208779410488418e-25,1.0,0.9999999999999993,0.9999999999999998,1.0,0.6980618459486576,1.0,9.262537324082226e-36,0.7038342319245308,1.882740211776784e-36,0.0006720042354484323,0.5211899911541515,1.0,0.9994250643616507,0.9999991012358209,0.9999800612419294,0.9999999999999882,2.92326137439248e-26,2.097891233691886e-30,0.9999999967255677,0.9999999962088517,2.579450150424774e-46,0.9999999834505202,1.0,0.9999966509152354,0.8977926708764825,0.999999990123645,0.9999999999999931,2.366364601622714e-25,0.9999842508408973,0.017841091328850773,0.9134193253212815,5.524228688739149e-36,1.9266083042517783e-05,4.4660395899457487e-05,1.0,0.1755385929495894,0.0006818488755104679,0.0002110005813212471 -लिए,rgb,1.0,1.0,1.0,1.0,1.0,0.0031118626775064693,1.0,0.9584897572983707,0.8883787634656422,0.9969451144287799,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999976,1.0,1.0,0.004280607557144075,1.0,0.9986374799495009,1.0,1.0,0.9983169087531212,1.0,1.0,0.0032061293494625694,1.0,0.006201812078846592,0.9999999999234361,1.0,1.0,1.0,1.0,0.46496935978628257,0.07072329079583843,1.0,1.0,0.004470586700778915,1.0,1.0,1.0,1.0,1.0,1.0,0.9999994435550471,0.0033191538545564486,1.0,0.9826480377396939,0.020536855523167082,1.0,0.03261810664235847,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.996344696783369,0.971761497988866,0.8758364851533332,0.012541584542602815,1.0,1.0,0.9992293121183866,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9417224463370595,1.0,1.0,1.0,1.0,1.0,0.9787473108471257,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.08902440405843302,1.0,1.0,0.0030138764089861357,1.0,1.0,1.0,0.10999030536217907,1.0,1.0,1.0,1.0,1.0,1.0,0.9999985109002009,1.0,1.0,1.0,1.0,1.0,0.9999851759901789,1.0,1.0,0.9999944358406757,1.0,0.9999915233378497,0.9999999996583488,0.9999999999988631,0.9999999999999993,0.9999999999837976,0.0026958603171231077,0.998911926273607,0.9999994531776218,1.0,1.0,1.0,0.9999999572904426,1.0,1.0,1.0,0.013779614188866716,1.0,0.9999999999995013,1.0,0.9999999999933356,1.0,1.0,1.0,1.0,0.9999999999999756,1.0,1.0,1.0,1.0,1.0,0.9999940123685254,0.9999999980495755,1.0,0.9998972847603312,1.0,1.0,0.9999101193524834,0.9974590024244573,0.9161337525156097,0.9904633502844121,1.0,1.0,1.0,0.9999999999999887,0.0033527025010183587,0.9999999999949958,1.0,0.9999999999999722,1.0,1.0,1.0,0.9976730867580125,0.9999816474211188,0.9999466332467577,1.0,1.0,0.005172258223211654,0.0030440938501607446,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999993,1.0,1.0,0.9999999999785367,1.0,0.9999978310272448,1.0,0.004959125379198954,0.026702488077418304,1.0,0.9999999999999887,0.9698710368907941,1.0,1.0,0.04585059840138446,1.0,1.0,1.0,1.0,0.9999999999999967,1.0,0.9992290804583687,1.0,0.5640929188305235,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.014103092164968613,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0699815013467283,1.0,1.0,1.0,1.0,0.9999999999004319,0.9999999999996816,1.0,1.0,1.0,1.0 -वर्ग,rgb,0.999523796195596,1.0,2.100696707653394e-08,1.0,4.2247789358992205e-06,0.9682514864482927,0.9781143355928138,0.7395461059032247,0.33832921083205797,0.03881557520464941,1.1694837105164054e-10,2.1975740935132537e-09,9.066744273588888e-10,1.0,1.0,0.9999999999999862,4.6655262263367557e-14,7.200148264896207e-14,4.1708280717962284e-14,7.283538861983622e-11,1.5425071705923198e-14,1.2118193566371304e-13,0.928393890814971,1.3987616448013134e-12,0.9993429929786137,1.1983146516823919e-12,0.9999998792516179,0.997171652016416,0.9999999999996037,0.9999999999999982,0.9663522728577641,5.935474986724606e-07,0.8611132330263432,8.081043858842601e-06,1.0,0.9999999999999407,2.4803762540598572e-11,2.3931276850606736e-14,0.2063036200974207,0.08574347156226209,1.0,0.9999999998574176,0.9388909373414712,1.0,0.9999994915823298,1.3538779097924984e-07,8.794088445759038e-07,1.945224858099537e-08,0.9999995022331458,2.4294338141246335e-08,0.9619592098659162,1.0,0.20954052527242711,0.3673356399372728,0.9999999994638149,0.28714954180063196,0.011720880289068333,0.0043334370071706095,1.7715570661551365e-09,4.65927425873513e-10,9.93450359146215e-11,1.516297297303005e-14,1.0,0.9999999962916517,0.9999999999999727,1.700885726784846e-12,2.2322369569080128e-13,0.14029632031886524,0.5989194364953324,0.4831782821044658,0.5958754096213508,1.0,1.0,0.0998343840491905,1.0,0.9999999991771986,7.057805705802863e-13,1.03460555732965e-12,1.5427045689815755e-13,0.0019380628667183216,0.999998714130928,0.0035123138920993588,1.5435617446371136e-12,0.000382775391659914,0.6520519909063939,5.628506845104202e-13,0.9999999999998623,2.3895812026668567e-14,0.6776787639654389,0.9999986850598608,0.700284203102678,1.0,0.04730951326548164,0.0053237555988177665,0.0012123684289216522,0.0005670982144689241,0.9999999999957456,0.0003626594597021734,0.005727116980493118,0.0003261158829419911,7.750489588915283e-05,0.33867062977436596,0.05807658907062936,1.0,8.9296419103265e-05,0.9720285475266286,0.9999894363184714,9.550709719797195e-13,7.06254428148338e-12,0.0375506004942103,2.136934168159544e-13,1.0,1.0,1.0251293785830887e-08,3.834082742189644e-10,2.3390647510138095e-10,0.00017097438576171335,7.630225074322779e-10,2.1852401914277237e-09,2.921166697317179e-10,5.559949604273067e-07,1.0704850138089128e-09,1.7800438321771862e-07,1.0,8.49302202599047e-09,0.0004947327137865433,1.3646139408177814e-09,0.00022052014751811172,4.647465247959772e-10,2.638801918505387e-09,1.7529791245263895e-09,5.349397208520967e-07,0.9768217990702122,0.10954153475686447,9.436992530524039e-05,2.695800064136497e-14,3.3281641456724355e-14,4.2126734922958336e-14,4.6663975682338255e-09,0.9999999999999987,1.0,0.9999999999999987,0.5476949471038955,1.0,2.621283337467042e-10,3.522748543022847e-11,2.3441538151764323e-07,2.1992018415014326e-13,3.710535006324064e-13,1.9824578358575816e-12,1.0,1.7594660295010953e-11,0.9999999999996636,1.1109428408679803e-10,0.9999999995512863,5.957209005071755e-10,1.7805770833207551e-09,0.9999898978741083,0.999759778041659,2.2823602939560534e-14,0.9999998340734595,2.4923385343068693e-14,0.9999999999993145,0.9998421448296825,0.999916797154617,0.9999560794962346,0.9995105514442156,1.0288215846833347e-09,4.2897898308072816e-10,1.0,1.2276296524698706e-11,0.9611931510439087,1.954454594059603e-10,0.9999999999999989,1.530758927909076e-11,0.9826706073283321,1.0,1.0,0.9999999487623268,0.9999854652104609,0.9999179464086778,0.9999999999999953,1.0,0.8957365489739139,0.9714951845790943,0.9999999899771702,1.0,1.0,4.314941169058432e-10,1.4735088474256515e-09,9.347674225583615e-11,4.012871845107554e-08,0.9998362719521787,2.3711977725297444e-11,1.928936690018631e-09,0.9999997489459209,6.452812676134224e-05,2.330906890937262e-09,0.9104179055781021,0.2658461600471038,1.0,1.5473184485636938e-11,0.9966312054506262,0.9999997700888081,7.746348710353491e-10,0.13119855421889834,0.9999999992291562,1.0,1.0,0.9999951369623248,9.320532819899102e-10,3.132213832848096e-14,0.9990823642567033,9.553636607375062e-10,0.999938910547463,1.3828958474662777e-09,5.1274926183270766e-09,1.0,4.475205471627423e-08,1.726202807843115e-06,3.751880019142385e-06,1.0,0.537096869826237,0.9999999787802922,7.937948036387073e-14,9.725329840611607e-14,1.0,5.79369704318222e-14,1.0,5.40029418715061e-07,1.0,6.100173200202076e-11,1.0,0.07633020876004587,7.057483000248484e-07,8.573664008013842e-09,8.864354107746472e-09,0.9999999999999987,1.0368406293958396e-08,6.155850937473242e-11,5.864365329176362e-14,1.0,4.773705446097313e-11,1.2886054909413916e-10 -वस्तु,rgb,1.0,0.9999999992463555,0.858718512738908,1.0,0.9990783051661752,0.9999999467007865,1.0,0.99999999999969,0.9999999999932083,0.9999999999936233,0.006628760289790546,0.09485512010868954,0.05327346766369397,0.99999999969273,1.0,1.0,0.8164983574187259,0.6587823285094558,0.7969660826432781,0.026128375432266582,0.9837885610527858,0.9999999979954024,0.9999999641721147,0.9999999999985216,0.9990448350134109,0.9999771877450234,1.0,0.9982563239089689,1.0,0.9999994525596095,0.9999999423282318,0.9582922615819254,0.9999998804803388,0.999999999994831,1.0,1.0,0.00953125558843472,0.9999963775343231,0.9995934528185898,0.9999948896300817,1.0,0.9996254196808981,0.9999998662866675,0.9999999782832731,1.0,0.30429254749467255,0.9382643835050205,0.8569048907741614,1.0,0.999650059699476,0.9999999477473861,1.0,0.9999999999974318,0.9999996309583296,1.0,0.9999971873011405,0.00824380845960585,0.005844888184125291,0.07413634715756688,0.030573115343536517,0.0070891269481264995,0.9959110518948358,1.0,0.9981522454105659,0.9999976144943562,0.9999999999993603,0.9999985512279361,0.9999999999987441,0.9999999999995273,0.9999999999964582,0.9999997471918842,1.0,1.0,0.9999999999994049,0.9999999738065213,0.9989204993696451,0.9999948359657829,0.9999999999976024,0.9999999991842923,0.004649098479976869,1.0,0.005672315383349138,0.9999921943605682,0.0031759693378515586,0.9999999999993026,0.9999898504867087,1.0,0.9999975887455538,1.0,1.0,0.9999999999997833,1.0,0.01438001089018123,0.006388187392868495,0.004164639077838695,0.0035068986001246727,1.0,0.00314258428162246,0.006623986214792621,0.0029508944000345137,0.0022601621619373325,1.0,0.9999940429286456,1.0,0.0026127482296897085,0.9999999412730839,1.0,0.9999999999958198,0.9998228403583681,0.9999946620087401,0.9998110454235203,1.0,1.0,0.06713640969510996,0.014187404870803966,0.007339100487315693,0.9999999999692499,0.0014243776486034855,0.11711716556369633,0.9071018503623275,0.9680546235337708,0.0035275450649636967,0.9998563186572492,1.0,0.03221272204413584,0.5068964987165169,0.00397235304425743,0.9999999999258091,0.9731131571510069,0.9999998262101741,0.0036782796985521515,0.9999999998898395,0.9999999604506746,0.9999999999993179,0.9999999999644074,0.7900917849310828,0.8179503157361103,0.7397566925815949,0.9965589377109932,0.9999995969064763,1.0,1.0,0.9999997662697357,1.0,0.0672624077976241,0.007863102190496895,0.01205619745494919,0.999999999751432,0.9999984812067494,0.999999999999597,1.0,0.9926490296932196,1.0,0.006148145138856522,1.0,0.03215920584591369,0.05829760548421805,0.9993516091697241,0.9772526462834493,0.9033963238738251,0.9999743514854381,0.8952831285217188,1.0,0.9987770126926244,0.9997316915859599,0.9999593856203081,0.999622910133069,0.038340385759787175,0.02751323030146264,1.0,0.9782991919036252,0.9999999463665121,0.9996892994238293,1.0,0.9496586298398922,1.0,1.0,1.0,0.9999958926905157,0.9994293965301405,0.9989679314636396,1.0,1.0,0.9999999459205426,0.9999999396853775,1.0,1.0,0.9999999964239008,0.02807145826856638,0.059355182703595154,0.0063741538587198925,0.999999999965479,1.0,0.005765205221237004,0.9999973480529851,1.0,0.9999999998400588,0.018680303898621478,0.9999999065790216,0.9999996618018236,1.0,0.9959349059676357,0.9994613039069298,1.0,0.0017986666986713425,0.9999986189207397,1.0,1.0,1.0,1.0,0.9999999608798091,0.9999982517492211,0.9986122481036958,0.04481833335400765,0.9999844799555764,0.0077743462592033,0.07217113909701157,1.0,0.6265749651360042,0.9885374615068105,0.9810159581139815,1.0,0.9999997564648404,0.9957140528903243,0.5961489913462373,0.5663843057133426,0.9999999992323774,0.5384259240748437,1.0,0.9674700466379759,1.0,0.99999999855904,1.0,0.9999965920607996,0.9555199658772789,0.03361808955918269,0.15378440255114198,0.9999996384464428,0.999999743322716,0.9992363937801099,0.9999999153544051,1.0,0.0032387708418897604,0.003130977497006913 -विभिन्न,rgb,0.005078688956809476,1.4501304234499037e-06,0.9993881548900235,3.1961048698225493e-10,0.9977297372183531,0.047443776650772436,0.033480258217433334,0.05223581825289087,0.0982733392975915,0.19896251737791457,0.9997608356137906,0.9995948308094622,0.9996665477736355,1.024927329504546e-06,4.317555818667016e-12,1.8487441169702514e-06,0.9999663065541551,0.9999637719406129,0.999966161438201,0.999159690414684,0.9999593042720237,0.9998924668714964,0.05907233839264234,0.9998079020846751,0.03859683081602929,0.9999447767471695,0.00026719932033890387,0.059966034604668206,5.467003437499301e-06,9.371811160159714e-05,0.04851629330899376,0.998528268247099,0.07842295318134335,0.8154602743256172,2.8302795878161845e-10,3.103144954339143e-06,0.9995083031079105,0.9999399088265825,0.29210261163607204,0.28262405467661683,2.1994865191876135e-09,0.003184591838977199,0.061239483948472735,2.857848779895668e-05,0.0008526287709158372,0.9988310636974298,0.9983286347977594,0.9994005193750558,0.0007809247665366409,0.9848657739281257,0.04999295672639177,1.7654422179427683e-09,0.11468317231947595,0.15863888639466134,7.469366738425846e-05,0.19524733529359115,0.8905934160729484,0.9246049148260068,0.9996107530520275,0.9997077116133607,0.9997722077958051,0.9999549453233568,3.1759509745400626e-07,0.009305146050563115,0.00024334822216461684,0.9997152282442269,0.9999539386432066,0.12862143974235982,0.06457618184205534,0.0802441069893238,0.12156336709018728,1.76796926746552e-09,4.723267871649288e-09,0.1401596331122531,7.55983532707456e-06,0.005177457758008454,0.9999478273133185,0.9997911890630955,0.9998871460331578,0.9436990700015927,0.0006120913067292785,0.9217843124182237,0.9994824612004031,0.9682050685484705,0.06115791308189929,0.9996638218216937,3.8750459818462715e-06,0.9999442126342818,0.05153462927595935,0.0006091721304743842,0.05472528798035859,4.6151923099322164e-08,0.8255163643864223,0.9267468319210662,0.9530376887683147,0.9640713314952254,1.2745133430094304e-05,0.9688139209493984,0.9095002425500047,0.9687100312508623,0.981147510922163,0.15644411894980842,0.3115582497372365,5.607237702867706e-10,0.9815631070929411,0.045994265534014304,0.002584928128856585,0.9998307581418782,0.9999233064601802,0.3405713710030401,0.9999606039499279,1.2402159803412087e-09,7.452909698127077e-11,0.9993647538459797,0.9997022156003733,0.9997186454117176,0.6189453019978355,0.9995006535758686,0.9996015635074608,0.9998045443639448,0.9985696027081046,0.9995378459852646,0.9694913372547137,6.0684796162973325e-09,0.9993594118499854,0.8509342651481485,0.9995149243125238,0.6056689944251564,0.9969552751955043,0.9902542984351317,0.9981868194929412,0.9254290579104367,0.0423986996465482,0.13668098012213212,0.666322968780522,0.9999644032790906,0.9999662838974989,0.9999654184903194,0.9923731151048022,9.32853399228702e-05,5.485550464661264e-10,7.078896848792228e-07,0.1275215388198724,1.837203122182419e-08,0.9985266610991828,0.9994584780229329,0.9899208752750155,0.9998727055994295,0.9999508070867746,0.999734067509409,7.96174537563835e-09,0.9989731912476892,5.482199716705966e-06,0.999761584351338,7.000164660828225e-05,0.9996894689359374,0.9996030688117661,0.012870695191430553,0.0477724967365835,0.9999664529396429,0.0029549925232567817,0.9999668464710205,9.400643949144831e-06,0.027797718352517722,0.019480598647955975,0.01322727753986959,0.03206293502806569,0.9996460245571555,0.9997114170606426,7.073813731574305e-10,0.9991554414204973,0.050375486389761616,0.9971126610681816,7.704390434147537e-07,0.9991318337245977,0.030775296328920686,3.196677275248915e-08,2.91125591795873e-11,0.0017305458352835901,0.013825882668309747,0.02307688005565587,1.3134016036120622e-06,3.4001157214216986e-10,0.06811255272692107,0.04633255512179679,0.0001974314676754632,5.890195572772005e-07,2.9046549395193655e-06,0.9997114693535776,0.9996233501091877,0.9997725649347579,0.9686018242151135,0.003511918335505064,0.9995583173314775,0.99204599139657,0.0005979110557916818,0.7049225146738054,0.9995296336532568,0.06722746678890318,0.17802484890522116,9.086777819931002e-09,0.9989893032750433,0.05494687007875244,0.00032539975595005514,0.9995237970008083,0.23723065169673394,8.525932790841446e-05,2.743665965464831e-09,7.607031061551645e-12,0.0010127263697385508,0.9930412066781101,0.9999264871606182,0.043956239505005094,0.9996572786744241,0.013025688026227474,0.9995531311215996,0.9994787835805179,7.802607380646964e-08,0.999204177393021,0.9981016066141623,0.9975906984411883,1.4721110758289067e-08,0.12928482884987652,0.016284954768663446,0.9999628884188762,0.9999619054825519,1.462292174413282e-06,0.9999628306995912,7.229941455324923e-08,0.9985803122115223,3.034981165452309e-11,0.9974232877486854,6.782102504609287e-09,0.2846582807704293,0.9984506897126038,0.9993601058075358,0.9994271423208024,0.00010281381200206497,0.984393348520109,0.9981762469978056,0.9999032377837787,9.219848078495847e-10,0.9997849289189857,0.9997269501709918 -वृत्त,rgb,0.9999999715788087,0.9999923999130489,0.0005877517738508412,1.0,0.007170193110561604,0.6793615752247845,0.9999999428261407,0.9533780830630489,0.8689744104398857,0.7883314143469359,3.239619792405553e-05,0.00012833532975451082,8.931016909244543e-05,0.9999956954727621,1.0,0.9999999999999931,2.34749014506368e-05,2.1404349010681277e-05,2.212007046410621e-05,3.59429864394643e-05,3.2316283808443774e-05,0.0022714290617143963,0.6552689391742296,0.02240525531788586,0.35738421559291544,0.0004702965380009019,0.9999999997059872,0.25493841907782805,0.9999999999999476,0.9995188500837269,0.6722435034572656,0.0017879775693849986,0.5468992106594315,0.3516707879006724,0.9999999999999964,0.9999999999999851,2.2233953882188083e-05,0.000261640014288622,0.0797064105944745,0.15827154926282277,0.9999999999999969,0.9683109348679719,0.5927657172661294,0.9999232450763372,0.9999999998967708,0.0004827049727591627,0.0017756733153020336,0.0005750510639712203,0.9999999998808127,0.002022404521347561,0.6707102604903779,0.9999999999999978,0.8773296943894134,0.34729487844601686,0.999999999997701,0.23330866047771004,0.0024549407741711908,0.0018028509573820124,0.00011417209303696607,6.613358468351148e-05,3.168287879679099e-05,4.444336406763227e-05,0.9999999999999996,0.9072253180527845,0.998695226461534,0.02771039634414438,0.0005951008102081842,0.8831582515247117,0.9409586255187491,0.8989655550839354,0.41972536906666164,0.9999999999999984,0.99999999999999,0.8917464573624038,0.9999104956503364,0.9399872622419702,0.0005868037154332134,0.01840352726916333,0.002983386338157825,0.0014202525915726091,0.9999999988764128,0.0016888931572898766,0.0005382986885662103,0.0008934019074229515,0.9387856185113224,0.00040314726009131613,0.9999999999999722,0.00028999835873606047,0.9999976515362371,0.9999999987987072,0.9550661291410512,1.0,0.003889917026939446,0.0019483688120110942,0.0012439476097681518,0.0010027195208134794,0.9999999999998148,0.0008801817963238875,0.0019652006110408697,0.0008431622979560783,0.0005684298755570505,0.9999992988976784,0.1412031007968396,0.9999999999999998,0.0006117181090661578,0.6811292725069679,0.9999999994574496,0.01610223471509879,0.00044522191844574175,0.13155844011955514,0.00018651384115125625,0.9999999999999989,1.0,0.00016872491479477637,5.2049385006030694e-05,3.922732408696267e-05,0.41915483895598343,3.4351226934564704e-05,0.00013575091894592258,0.00023796502912771936,0.0018821358253780375,4.690457603239888e-05,0.003948824131371387,0.9999999999999887,0.00013356983449333614,0.0032885484917487733,5.1198199677452206e-05,0.3834755919348518,0.00029186009886736234,0.007198376373710784,4.805652390849599e-05,0.12321771575448863,0.7102111337826389,0.8909630272794666,0.3778643291182723,1.946567775338767e-05,2.1547832480172042e-05,2.0496674149374286e-05,0.0008087051224558536,0.9995806268200587,0.9999999999999918,0.9999999999999971,0.41292588175538264,0.9999999999999298,6.0599784777742906e-05,2.307091023789076e-05,0.00019796246971323392,0.004295416787930786,0.0006679292496941822,0.032234267744457076,0.9999999999999829,0.00018664869713153425,0.9999999999999583,3.140166606268896e-05,0.9999999999979081,7.102592785702599e-05,0.00010734044936233877,0.622188875686628,0.25580014367277354,2.327596957915868e-05,0.9016513362681374,2.3334167036881682e-05,0.9999999999999643,0.4248792171283343,0.5487851561863802,0.6856426242542633,0.42453571937057843,8.458936979613542e-05,6.313799648019562e-05,0.9999999999999996,0.000132970067708764,0.6682869762069805,0.0006824345759708632,0.999999999999998,0.00011413687767619922,0.9999999500601584,1.0,1.0,0.9485307323771716,0.6084305492277721,0.4730695711829491,0.9999999999999964,0.9999999999999951,0.6105426455793515,0.67878248008269,0.9999999999867577,0.9999999999874907,0.9999793971600193,6.35475953079871e-05,0.00010309729758341754,3.0402369806186326e-05,0.09248716748320367,0.9999999850440802,1.9648272082816474e-05,0.00353523554134887,0.9999999999145925,0.28065999398592706,8.567478137757566e-05,0.5894553115738359,0.3270720464990072,0.9999999999999774,0.0002083520342921851,0.3004269530505071,0.9999999995213578,3.6608836890499e-05,0.2218939193569518,0.9999999999972133,0.9999999999999964,1.0,0.9999999979417584,0.008054816767717955,0.00032831903888131677,0.3204513065674709,8.649491505970501e-05,0.7154889548764538,6.077294370738462e-05,0.00014591495075513627,1.0,0.0005149920587562598,0.0031643040470130273,0.0033591233871513265,0.9999999999999496,0.4081812052713331,0.8418552995657702,2.0551317830029846e-05,2.099771525118681e-05,0.9999923127501078,1.7897400457429676e-05,1.0,0.0018607903075378385,1.0,0.009451535466282598,0.9999999999999842,0.16706600881743455,0.0018326611951716663,0.00013532909482810135,0.000204396352102604,0.9995843752285413,0.008983804629955858,0.0004236642641867554,0.0007777273676437995,0.99999999999998,2.1801141947613765e-05,2.745139644808593e-05 -व्यंजन,rgb,1.1107697733198538e-05,0.9999999999999993,0.641215945029931,2.031908522827023e-05,0.12315719553300855,0.9999999999991926,6.021267172590748e-09,0.9999999995820337,0.9999999996583078,0.9999999977218212,0.9985846150946583,0.9812707728144363,0.9873965760502863,0.9999999999999991,5.281704446155542e-05,1.3161520191147553e-10,0.4549040584880562,0.5763244024781424,0.5225221253068624,0.9999993551244579,0.6501487296426784,0.0005132453510006326,0.9999999999985019,3.980486088957074e-06,0.9999999999999687,0.0002953367612631214,7.211198131486954e-06,0.9999999999999456,5.38943575307763e-10,0.9999999999995319,0.9999999999991831,0.6735988443236318,0.9999999999983886,0.9999972321334175,0.7237092416067088,1.3154967977249074e-10,0.9999977838329683,0.025808007407108893,0.9999999999985496,0.9999999999933513,0.00016370747964317,0.9999999999942637,0.9999999999990794,0.9999999999989637,5.066260979595917e-10,0.9843483628366327,0.7878923577301359,0.6374902456603048,1.33728432700876e-09,0.9999999367528911,0.9999999999990952,0.00012145326703747982,0.9999999991333417,0.9999999999952716,3.2072019856197485e-10,0.9999999999967055,0.9999999995426099,0.999999998731115,0.9850769181443381,0.9921532267739436,0.9983700324727841,0.5695793759815108,1.6163541840967723e-10,0.9999999999780216,0.9999999999983336,2.0741566552074633e-05,0.00011953931024784313,0.9999999982471761,0.9999999994542998,0.9999999997015183,0.9999999999969769,4.550467235875755e-05,0.0002015649788452498,0.999999996607396,0.9999999999999998,0.9999999999943487,0.0001417487335063614,1.4570089449343372e-05,0.0002615956923889025,0.9999999973271816,9.857105425730787e-06,0.9999999992774029,0.9940300967499386,0.9999999896392094,0.9999999996151379,0.9801990799798898,3.5673248813872057e-10,0.012084972839816563,0.00018087024055754965,1.2616662168161644e-05,0.999999999428347,3.3652173451666453e-10,0.9999999998527427,0.9999999978109828,0.9999999955464245,0.9999999915760286,5.242877076033172e-10,0.9999999891374726,0.999999999433564,0.9999999912131793,0.9999999710271714,5.052337521601988e-09,0.9999999999917972,5.5546141927388787e-05,0.999999954839627,0.9999999999992719,4.699559326315123e-10,6.32545422575196e-06,0.0009852455892221266,0.9999999999888316,0.0016344279614338324,6.750922025443445e-05,2.9614656423027637e-05,0.9935472234582625,0.9969724308427665,0.9986259871307729,0.9999999240810742,0.9999485644856242,0.9755509934659792,0.21324368881185707,0.6052704160968657,0.999740088316585,0.9999999819525002,0.00010042076298196404,0.9972928581550344,0.9999999999784908,0.9997113352499164,0.9999999606976375,0.9999996089951267,0.9999857526631296,0.9999999199685916,0.999994335486687,0.9999999999992693,0.9999999970709759,0.9999998851271753,0.7382672713708761,0.5680053129007604,0.6111225526993562,0.9999998913890622,0.9999999999992037,0.6731143814621168,1.0767153821833185e-09,0.999999999996517,0.00022159867547471687,0.9999997962212694,0.999998336459692,0.9999999977302476,0.00014709522999264442,9.485684335290517e-05,7.746261585482144e-06,0.00010668974116132241,0.9999867796566408,2.4244269114488816e-10,0.9987252430963582,3.245130093791434e-10,0.9922911417868249,0.9889762339799141,0.9999999999999913,0.9999999999999505,0.5538600175160856,0.9999999999999982,0.5217119507098953,8.055916002711944e-12,0.9999999999999796,0.9999999999999858,0.9999999999999893,0.9999999999999734,0.9920412600399421,0.9929603043372176,5.831758260019432e-05,0.9999872198992287,0.9999999999990912,0.999995469613614,1.490742996843212e-10,0.9999923660909092,5.958668255386874e-09,4.381554817063724e-10,0.00016368685589698641,0.9999999999999989,0.9999999999999907,0.9999999999999836,7.831458700007585e-11,0.7799474033334117,0.9999999999983142,0.9999999999992693,8.736277003782413e-10,0.0005628156022866065,0.9999999999999996,0.9927892123729798,0.9878970167475322,0.9985976305337646,0.9998628083632085,8.413117959481352e-06,0.999997132385702,0.9999952621363478,1.7088789665317754e-09,0.9999999276740569,0.9977271339355691,0.9999999999987033,0.9999999999935252,0.00014583576611456618,0.999980990243113,0.9999999999999443,1.3627767263642562e-05,0.9999155277333279,0.9999999999927709,3.131161862895222e-10,8.224113197005988e-05,4.050468819909042e-05,5.911327368702797e-06,0.9999083447941898,0.03791764027784185,0.9999999999999638,0.9900404613315822,0.9999999999999873,0.9991847935728804,0.9905018985973808,2.2957796578613548e-10,0.8990436589513422,0.48723883999789536,0.6911586962093441,0.00020915425695662535,0.9999999999964704,0.9999999999574949,0.6286813197840464,0.6245373502713659,0.9999999999999993,0.7567717908577363,2.4277574169498945e-10,0.6064250735302366,0.477888527327964,0.9847682552256928,0.00017113285441950078,0.9999999999919669,0.7046468749114243,0.997148648993702,0.9800088010618364,0.9999999999985869,0.9999967994452812,0.9999905586703792,0.010640546437905024,0.7666010751331134,0.9995079995811398,0.9996023208137226 -व्यंजनों,rgb,1.0,2.1382255776638877e-41,0.0034852621059877457,1.099365485671126e-30,0.0002000035471594417,0.00018055708220100425,1.0,0.9999999943488653,0.9999999379892591,0.99999999959972,0.009675038016720316,0.0008236286414428924,0.002190736068468781,3.588929193069949e-42,4.2452598455427065e-35,1.0,0.9999999999518501,0.9999999994057507,0.9999999999583766,0.9739100669180908,0.9999999999999907,1.0,0.0022053826863428975,1.0,1.16581381392777e-16,0.9999999999999729,1.0,7.40814425301964e-16,1.0,1.3083290203920335e-37,0.0001748207246535046,2.5073328151038307e-05,0.0009375760586900924,1.0,4.683393019781788e-40,1.0,0.9645340514539041,1.0,5.8051015132476876e-08,0.002839805957990266,8.33977398950218e-31,1.2125495994886536e-32,0.00011997935231694623,2.1697230482090698e-39,1.0,1.1987454419050429e-06,5.748881367401882e-06,0.0040063160115230406,1.0,0.9999998525996538,0.00027432688228185454,9.580769931756273e-31,0.9999999971627762,0.012202568041889558,1.0,0.00048539374873886874,9.648969131170508e-18,2.783175445725379e-17,0.0008766785339157692,0.003974719311983622,0.015056125357259267,0.9999999999999993,1.0,4.113069710224568e-31,2.0209487475210697e-36,1.0,1.0,0.9999999997046856,0.9999999964588204,0.9999999401595279,0.003937085670377131,6.719508860577018e-30,2.650016707814964e-30,0.9999999999646279,1.6244616464713101e-37,7.91529292503268e-32,0.9999999999999996,1.0,1.0,7.546626762086317e-17,1.0,5.819426709857637e-17,1.0,7.194429976962043e-16,0.9999999886805301,1.0,1.0,1.0,1.0,1.0,0.9999999980038217,1.0,2.0544085720192575e-18,1.5379881774890352e-17,1.3589646727587327e-16,3.9562480164868515e-16,1.0,7.780185294021734e-16,2.925400447395516e-17,9.804353788030468e-16,8.415557956083366e-15,1.0,0.0048815968660372785,4.481138659815392e-31,6.443297138218323e-15,0.00011464026991149632,1.0,1.0,0.9999999999321239,0.015033626717422597,0.9999999999999836,1.4949892678814089e-30,2.97608229303815e-32,1.8219158757110796e-05,0.00202157813519406,0.0024257734989825133,0.9999999999997917,2.8382718390296164e-05,0.0011829511583038527,0.9869913878451555,4.458273912036415e-05,3.617337297505852e-05,0.9999987973769909,1.743531323688416e-29,8.94077999647068e-06,2.2857725955199535e-09,2.4885427453420814e-05,0.999999999998304,0.9999996168715106,0.9999999999999984,0.0010271824689763289,1.0,0.0001678568138489442,0.9999999999444507,0.9999999999999116,0.9999999999902391,0.9999999999833138,0.9999999999308575,0.9999994774234713,1.0428415173606608e-37,2.5330657111282383e-39,1.0,0.006802239969803218,3.708896807929907e-29,0.9657003514829754,0.9027429265210005,9.415003230961839e-07,1.0,1.0,1.0,2.7151662463716825e-29,0.9999999999240912,1.0,0.009843854915294211,1.0,0.002524207546805496,0.0005949804329786565,3.014840094439135e-20,1.0128973993299008e-20,0.9999999999984868,4.356690610150192e-21,0.9999999999975882,1.0,3.091979373357134e-18,2.0726120995297868e-17,2.918774401517616e-16,4.538309091590839e-16,0.0010152112926076875,0.004070052012733792,6.470044234041858e-31,0.999999999674525,0.00027189114504613907,0.9999999999853197,1.0,0.9999999974061218,1.0,1.0,1.6889536578288714e-34,1.760842018982233e-20,8.928543922686834e-20,1.0756179133122193e-18,1.0,4.1314254704910705e-40,0.0022721107233848663,0.00011319007251713011,1.0,1.103830761175274e-26,4.255687330668402e-40,0.004138495503718531,0.0009162518086887082,0.015037575464724425,1.0,1.0,0.9000673689541548,0.9999999999998632,1.0,0.9999999999993261,6.243833712176303e-05,0.0005584662011565432,0.03642712063971459,1.9309089151036336e-29,0.999999999980534,1.3192059637837969e-14,1.0,3.4232300117063607e-05,0.013940409613779686,1.0,5.065973491437956e-30,2.0637046326495474e-34,1.0,1.0,1.0,1.0700847422836634e-16,0.0015046943911208553,4.4272067602972745e-15,5.6964625982720126e-05,8.791522263584491e-05,1.0,9.430339555591797e-05,2.201963253329989e-05,1.934076228485076e-06,2.6083326895130655e-29,0.006842606957201395,2.870608642740663e-30,0.9999999988317549,0.9999999975424769,2.2046059450295986e-41,0.9999999993408575,1.0,4.600005823998422e-05,3.5352986669509237e-41,1.0,7.69306973426912e-30,0.00806336459152833,1.5696451066130407e-05,9.331032797129034e-06,9.699039668343984e-05,1.2023972251446457e-37,0.9999999999999591,0.999999999990205,1.0,3.348221249983052e-39,0.030099307815016744,0.0031606185064533623 -संतरा,rgb,0.28365649386491865,0.39859471926820206,1.7649439797902384e-09,4.915389000264412e-25,2.0401381501786947e-11,0.9999999762833868,7.71320214057489e-05,0.9999999864817324,0.9999999763044106,0.9999999357849375,1.0284554102403965e-05,1.2027386486182243e-07,2.911520655254018e-07,0.16977040746837294,7.564531108130814e-26,0.00011661289257967585,1.0722868959646619e-05,9.135109834427658e-06,1.6465774783873644e-05,0.8946820237167757,0.0005943741423446486,2.3923787123523656e-05,0.9999999754999974,2.7572937645393905e-07,0.9999967871765315,2.0206459571910645e-09,0.48687769228542055,0.99999617751912,0.00035259987014505143,0.0008139341211200889,0.999999975595718,4.2654882540808364e-10,0.9999999632079333,0.999994101062694,4.873182398701665e-21,9.656957108830469e-05,0.5686694826352579,0.00020632761608861035,0.9999990935887868,0.9999998008820598,7.536905027274423e-24,0.0009648087536692486,0.9999999668149602,7.130190503187945e-05,3.814398757727921e-05,1.8080009270093505e-08,5.948055669402146e-10,1.806961984468529e-09,0.00011478971151515287,0.999934097265783,0.9999999757724513,5.258014222856058e-24,0.9999999689233748,0.999999927495285,7.123347499244232e-05,0.9999998680041785,0.1305533441256981,0.04795300093541727,1.694148502429295e-07,6.916415146024866e-07,9.789127747856458e-06,0.0009519388475533802,0.00026472052774381287,0.0004573989398992385,0.0003300293760226054,5.990476039544429e-06,1.2859011269377353e-08,0.9999999609110652,0.9999999830332537,0.9999999808454633,0.9999999439600897,2.5657231130677284e-24,1.432827856549456e-23,0.9999999516028507,0.9838461835983908,0.0018083435198381543,2.758105880297906e-09,1.945897111417543e-06,1.2925069147641266e-05,0.02386971888067314,0.4744540282086956,0.12466802920290783,0.8378589884579213,0.00755558285897738,0.9999999846439682,0.5764952565604046,0.00025855784830804243,8.085665717887746e-05,0.6049079616719694,0.5313497891787882,0.9999999852116919,0.0010303852445892243,0.30932748507255264,0.01882062252699911,0.01424169452115668,0.008297740910061144,0.0002487187073685836,0.0072555088261009315,0.13800619478782544,0.010523954131574444,0.004008571651066765,2.1823597034739397e-05,0.9999997760075132,1.442561131064515e-24,0.0019691961361837035,0.9999999761094257,1.986089042618396e-05,3.6780124592966955e-07,7.921107173352607e-10,0.9999997631450172,2.591714692627019e-08,2.7334321178941226e-24,2.6546414238597393e-25,1.5382377230520975e-07,2.1039653725019812e-06,6.761199372350448e-06,0.9999992526039886,0.00015456202288605337,9.274389249324558e-08,3.4499172382833836e-09,3.4123497798919163e-10,1.7283418641357475e-05,0.9999777158216996,1.006853411666425e-23,4.105991576302554e-07,0.9998651570160629,1.318414959367506e-05,0.9999993984503036,0.9987346413971578,0.9997250087568151,0.8259546614678197,0.9999799717953081,0.9999999789830571,0.9999999541888235,0.9999989898229945,0.00010141017142149736,2.8981436407022423e-05,2.3054631848649163e-05,0.9997768442562283,0.00035852319209735866,5.945281741141869e-21,0.0014757681961644483,0.999999943083156,3.7188020508171786e-23,0.9755487873251671,0.5793772454472902,0.9862577544378482,9.205050013611188e-06,5.786772975062823e-09,1.5440086535649243e-06,1.255114994496698e-23,0.9896747803921884,0.00015069115443068541,1.1978522042776682e-05,7.419342189335594e-05,6.10004710709012e-07,2.2862235637020807e-07,0.999991822087425,0.9998547883999723,6.010280093056017e-05,0.9999984176980067,4.2818738032333546e-05,2.826428274162268e-06,0.9999940980578349,0.99999815939162,0.9999995011928623,0.9999983822746197,4.3148282389720405e-07,8.120608102378596e-07,1.7275002173628147e-24,0.9838391112644107,0.9999999755399928,0.9987333233408466,0.00018088652511531004,0.9841924674997805,8.031226761272321e-05,0.0015025439560358534,5.329855512735478e-25,0.9999995312756199,0.9999937529032344,0.9999938290891908,7.532302583618151e-05,7.067654824155958e-21,0.9999999711691104,0.9999999758791877,0.0001373196604635219,7.85633937226197e-22,0.7093018337089052,7.894601101288934e-07,2.3111065042014307e-07,1.2081737864288563e-05,0.9998151285840569,0.2665960518293577,0.3862919613521341,0.9997355519631258,0.00016972680267113375,0.9999989414247742,9.954920240860796e-07,0.9999999679371051,0.9999999222553329,1.721433463176519e-23,0.9891498610971601,0.9999985055150734,0.6108218564315402,8.200089949567876e-05,0.9999998712047972,6.553196969382436e-05,5.223844049980715e-24,8.640539371407706e-26,0.31294318423691464,0.9991894353990189,0.0005314111246575204,0.9999959232862555,3.5840895303221357e-07,0.9999997520978874,4.054343831775276e-06,1.500918151778839e-07,0.0005932504681475336,5.008210001917238e-09,1.3961539773671043e-10,2.0638286083882942e-10,3.080172868553054e-23,0.9999999420840573,0.00033994182089261714,9.891734972433006e-06,7.517620494041059e-06,0.4009520740498793,2.813557491066002e-05,0.0006433630567895174,3.470677949767097e-10,5.239596189832286e-22,0.9691737619249577,1.6025250721423158e-23,0.9999998177608699,4.4735638485505725e-10,3.872619185832893e-07,5.4173464103294107e-08,0.0001676994868051733,0.9999019013946293,0.996842458884064,0.0003630839185249796,1.2231448366666758e-20,6.643688461413783e-05,4.1962594721921445e-05 -सबजी,rgb,0.007453459256385053,4.6362763662757825e-15,0.9994200435050876,0.0013401630837050096,0.9997877960504984,2.308347719852667e-11,0.9236596229585046,3.2227499516925577e-10,6.675119038253078e-10,4.399368524411959e-09,0.9701130113891088,0.9948978987664864,0.9936548837790428,5.4270995330623054e-15,2.2062420198087263e-05,0.003809247765154732,0.9997462110792226,0.9996780293923042,0.9996788794588343,0.009043028240419021,0.9987421605862717,0.9999594247700034,3.807283304557556e-11,0.9999973192139834,1.7153959261830534e-11,0.9999986380746423,0.0004032351448655782,3.580118078377022e-11,0.004445859353719936,2.932773937448248e-11,2.3919986323517874e-11,0.9990061534880093,5.891136549420573e-11,5.172836042679608e-06,6.46287317203254e-07,0.006621026781273181,0.04129142900945132,0.9997769756235262,6.180772830099358e-10,7.584270701975255e-10,0.0017267492647359821,2.5704441384837754e-09,3.476343428140121e-11,2.4857446862543913e-11,0.5335689970502201,0.9906866813695316,0.9984173271911245,0.99943185074421,0.340030535422066,2.6734793014102202e-05,2.5726147333481276e-11,0.001744583894828375,1.267500584768057e-09,2.437411090702442e-10,0.09877436174967721,3.131410729561947e-10,9.195210794080026e-06,2.8475176380107288e-05,0.9940663954186689,0.9913809476722278,0.9734418563338032,0.9986386839668784,0.0005043874610055963,1.600591977618996e-08,1.6347133131644022e-10,0.9999817754586019,0.9999987319048005,2.0721588617177227e-09,4.783758735490961e-10,4.789573649569643e-10,1.3883416927712507e-10,0.003223388305855948,0.0027989589387010278,3.2105933686983747e-09,4.253439300410864e-15,3.474279323134004e-09,0.9999989789135958,0.9999914343584284,0.9999730021589811,6.453542745039256e-05,0.0008015874094210699,1.628596219923644e-05,0.46000224357388475,0.00028251981048463954,3.787865448300213e-10,0.7574501943903256,0.004125047328996603,0.9998841613551285,0.015567145821005792,0.0006752008336037913,3.962469497724705e-10,3.90240862847348e-05,2.4844850288556058e-06,4.803405835863185e-05,0.0001114806907724483,0.00022278456093408947,0.01119750573287699,0.0002972135657789303,1.2170213609951742e-05,0.00024461356793429776,0.0008786362217385464,0.9894611709622003,9.806673296246126e-10,0.0011284899793237223,0.001314869173001458,2.143436046360806e-11,0.8060321776693559,0.9999968770787997,0.9999975469148645,1.2929619722839715e-09,0.9999959534135598,0.0018954687716653221,0.0003252216266346124,0.986677187522571,0.9823283496182674,0.968349804615708,2.390111142858646e-07,0.6482600643930369,0.9958311312395517,0.9998986866074023,0.999198432165065,0.8775341593841733,5.8002806883182045e-06,0.005286258061482548,0.9748912566613303,9.725421177867267e-08,0.8848877106855493,1.6090250972891636e-07,0.0006229147990893511,0.0006211490202946456,0.002046939483520173,2.670919130835908e-05,1.909095848481236e-11,2.886790687873128e-09,3.7862196533348314e-07,0.9991763209262567,0.9995972767728281,0.9995807405698831,9.18442478268171e-05,4.568489712275927e-11,1.295774805079103e-06,0.000307970051447013,1.5627433370376799e-10,0.007792007970115752,0.0021211022047796695,0.033112743365293025,3.9929887811105736e-05,0.9999783539552267,0.9999990111519631,0.9999922315139459,0.0063211671509954956,0.014190144881522503,0.007862114119728848,0.9676179107853137,0.0919443717279864,0.9910928245406324,0.9925350960141984,4.236324880535798e-12,7.193889982661176e-11,0.9995249039466375,3.2577509043507066e-13,0.9995942196544915,0.14367326824310447,1.2057373831437873e-11,5.303498761964368e-12,2.2593862036276837e-12,1.1073778079571124e-11,0.9909022222027504,0.9906930437148275,0.001320660740645405,0.019012604760422915,2.6043474833107985e-11,0.0018798776810055946,0.001370862304358909,0.01480339900608493,0.9169770099282478,2.2013349505052413e-05,5.175481931505273e-05,1.1190793263713854e-13,4.354259433999522e-12,9.231403124339496e-12,0.0038348200977586203,6.144252614506412e-07,4.851963297054559e-11,2.168357615010157e-11,0.13361184426527953,0.06405750328991316,5.82282900027341e-15,0.9908586569497603,0.9931657878119171,0.970171676543633,0.0004628080998356188,0.005997027101268335,0.061119608448890105,0.0004676026406443281,0.24347584952972423,3.7422657683058913e-07,0.9746275424178734,4.398738267247132e-11,3.254140723465505e-10,0.005780308393084271,0.017025371941418854,2.5741191482809196e-11,0.0003249182279625093,0.7389452068346448,5.557128336844245e-10,0.11412508942153148,0.0031722537689414464,4.146114324153812e-05,0.001957770716233024,0.0025668924945480517,0.9995853414000692,2.2203214570658927e-11,0.9923775812799697,1.9747228136895216e-12,0.9469226323033609,0.9907335405639179,8.896980971283353e-05,0.998026563710524,0.9993224268816391,0.9986286130411961,0.006775451670207952,1.6034716744253045e-10,3.9989351197679654e-08,0.9996300740839499,0.99965002966601,4.6620267222318196e-15,0.9993637264605905,7.89055782140778e-05,0.9991990162091586,2.0898313367126225e-07,0.14144907080020466,0.004141978633624767,8.113454752554543e-10,0.998873674966197,0.9758303055444074,0.99438601432417,7.875740460623817e-11,0.00015592174168832808,0.00514177384669289,0.9997198891153607,1.4503704272152655e-06,0.932773482216297,0.9189763620948747 -सब्जी,rgb,0.23150500090244086,0.029499854105646907,0.9886936073873438,0.029220602379026465,0.9861420445096422,0.2501943965126082,0.4737329693304447,0.23686193177039036,0.28922251735450544,0.3595655765389737,0.9870073781626596,0.9877804673645011,0.9879868113357174,0.028053574470378588,0.0077339898961581105,0.02788645838810077,0.9927688164575057,0.9927012320940013,0.9925894929520019,0.9589565081869873,0.9902422190333265,0.9877343151731346,0.26438202008165484,0.9879575621719089,0.30317497115628633,0.9944430207670097,0.09356906823842892,0.3387101749364814,0.038021022792146135,0.15067674843138207,0.2520142712428512,0.9860526457171823,0.2901189400089095,0.6469975811146292,0.01845931341256787,0.033504090013019405,0.9687917215110353,0.9890322568538978,0.461348046610208,0.43006089883867704,0.04812001556941694,0.3640549878899674,0.2717302173276145,0.11957083165293608,0.2039674754250653,0.9844355915874683,0.9852419437324199,0.9887535611472825,0.19026860905315685,0.8482698079812938,0.2537501617208586,0.04558458717376292,0.30279602024094243,0.3560373303731198,0.09610544089742211,0.3857826884762411,0.8548197351175798,0.8774830305600357,0.9877248397362665,0.9879587362515259,0.9872376282064661,0.9895645885276748,0.014718280952937384,0.460722489943233,0.20407015061023762,0.9837313275618588,0.9940900131953774,0.31360922695792703,0.25316160391113185,0.2715023552346033,0.3297341896572022,0.04704946477226388,0.05955225493477036,0.3221756498465957,0.039494459269811454,0.39441050229590696,0.9943978486154366,0.9862597819047094,0.98789581920172,0.8920430742640182,0.1213673332115273,0.8696465288823617,0.9623855524305894,0.9147160215647947,0.2490269544230504,0.9694693129608715,0.03439980314280607,0.9898074859038815,0.39201340020417225,0.12001199555453275,0.24026955567135722,0.007098076973916911,0.8224035628925375,0.8841641284738451,0.9005904820726074,0.9109924512557693,0.05121043588914474,0.9154008026459609,0.8628079926610692,0.9136999952121075,0.9298095979412073,0.6332462460138083,0.4429415425406422,0.03341476077736374,0.9327802065890997,0.24841200905540145,0.2806531534134119,0.9883227205624625,0.9942107376757994,0.4541159354909234,0.9943260168318209,0.04191286065574299,0.018694582559678624,0.9857327784310824,0.9871778821454683,0.9866215310342046,0.5441988947967921,0.981101613998965,0.9880024491581902,0.9918349701324296,0.9863257150754603,0.9835680204289378,0.8058169142084705,0.0653804152843921,0.984967017329939,0.73549556068063,0.9835485048195545,0.5380203179450457,0.9195350482689973,0.8697620772808716,0.9501195636825593,0.7363389821131613,0.2415427868716037,0.31963087252952305,0.5650869974006808,0.991668502853043,0.9923552376167439,0.9924113974862967,0.8836583880172983,0.1562148071251628,0.022721372887011773,0.01776891572513482,0.33373919733251084,0.08699937591984713,0.9466797145288444,0.9677939922105697,0.9029049114035695,0.9875666524979192,0.9942281691543914,0.9851889379379734,0.07046523969781615,0.947766945559726,0.03966007373320311,0.9869163539396634,0.09398693486076506,0.9878047890971934,0.9874606579468925,0.2412422311035343,0.3712317861433099,0.9920160412536311,0.14972072560856778,0.9921990975157283,0.05747948794109715,0.2877449235104411,0.2499836488098091,0.21237047832852157,0.28119387561928666,0.987511584142201,0.9879085411376605,0.03572438138176077,0.9522929503989136,0.254373662286818,0.9187824621282303,0.020287566315529325,0.9520715203970763,0.46564442700230774,0.006138737410381797,0.013305150589388295,0.12029615153057485,0.2426324072877337,0.2755476860682647,0.02538611690743584,0.019266561441231372,0.27637740650787873,0.24900717436970185,0.12605110336756473,0.2079428835127223,0.0344774224377764,0.987926628601341,0.987660198782217,0.9871028833818782,0.8083082068976672,0.20999726297616686,0.9711010698147475,0.8786367975683735,0.1734811785683254,0.5821484653900878,0.9857416168969586,0.2773303211155748,0.3671638596578775,0.07242763868101759,0.9479790557938997,0.3188894226151643,0.09737907948437183,0.9819974682008572,0.40360076771897363,0.10056052262299517,0.052433572421064674,0.00927379472142419,0.14547801866164034,0.8869773542135266,0.9876179839772583,0.31588865760489326,0.9877541860537354,0.20410851289528978,0.9849215983363767,0.986617575941618,0.008739725559300335,0.987071560752699,0.9856635868413931,0.9842414072060177,0.0819634650490656,0.3351463842771804,0.5119082730008176,0.9926239134772473,0.9926799589859242,0.02956468555335994,0.9921893241828945,0.008479449801982692,0.9863472473132265,0.009804961671657848,0.9288077103674272,0.0663523332905685,0.42903084113068135,0.9857903498404677,0.9850167259387187,0.9868971758023274,0.16613703467759922,0.8441234385516245,0.9328714573532526,0.9865211121724319,0.02602911950984325,0.9861348238045026,0.9854166267304598 -सलाद,rgb,0.001338999130237908,0.9999999993563795,0.0007594986417585051,1.1617518965587759e-09,5.5626367611348553e-05,0.9999999992576047,1.107989437842631e-06,0.9999999774909468,0.9999999740561523,0.9999998850311568,0.2143989605293509,0.017211686115955627,0.027222501622794524,0.9999999988871984,2.00885405149472e-09,5.115447422712667e-07,0.004546678176514568,0.0057749656598896255,0.006028431564529973,0.999347579900409,0.02399417046693512,9.936308296451487e-05,0.9999999989003043,1.760461945593803e-06,0.9999999995099003,4.014243177791381e-06,0.0019968609317330363,0.999999999248095,1.3822778230123982e-06,0.9999996151685262,0.9999999992438655,0.0006047281509113884,0.9999999986528789,0.9999626964301159,1.5286976611208985e-05,4.517124692227087e-07,0.9975325443853486,0.0016631603404418903,0.999999995932813,0.9999999938749993,6.7240597851258256e-09,0.999997576148028,0.999999999083377,0.9999989250512396,3.545277160072627e-07,0.01250508553892213,0.0009495813983831793,0.0007558261300118579,8.677575507990056e-07,0.9999873705582896,0.9999999991968556,5.239691485061692e-09,0.999999951047924,0.9999999966151714,4.5258975955155475e-07,0.9999999965949307,0.999981841538231,0.9999524474767822,0.02154828318686758,0.04473414237681528,0.19774702661296473,0.023087147697019413,9.253675850984514e-07,0.9999924890251303,0.999998820951053,1.1944651596293255e-05,4.069734691348738e-06,0.9999999202799502,0.9999999711092977,0.9999999781096651,0.9999999976684324,2.41343416043321e-09,8.304592027766487e-09,0.999999874501939,0.9999999998919675,0.9999978779684686,2.8762412470425824e-06,6.697412441331479e-06,5.6606023230100094e-05,0.9999059323652774,0.00210984189093583,0.9999748640773177,0.8705799526349639,0.9996876165002423,0.999999977199035,0.6809752040499303,1.0411818231611115e-06,0.0008013372807258057,0.007200725034721308,0.0026007241668035497,0.9999999721752874,2.717848647320384e-06,0.9999936119573258,0.9999129959677918,0.9998489212823591,0.9997345623059023,1.0974030349454762e-06,0.9996742816797366,0.9999793127633126,0.9997421552916993,0.9992711560499824,5.517908543720444e-07,0.9999999927166039,2.6448212676436594e-09,0.9988348420188976,0.9999999993014681,2.4164894190371615e-07,2.4585744059459442e-06,6.2999635534143965e-06,0.9999999910137441,2.1897864485221883e-05,3.226683507794191e-09,1.4489219822952311e-09,0.03566899054523976,0.1015934219173463,0.20005854813679738,0.999997734552016,0.8177456936317027,0.013650858368998962,0.00027261905120160447,0.00047574607233614536,0.47770214472528333,0.9999959357943967,4.8587871066360406e-09,0.07555068345902965,0.9999998806483525,0.44427469423495536,0.999998552620787,0.9998931697461244,0.9995482586948001,0.999786456610459,0.9999073867586462,0.9999999993338511,0.9999998869090466,0.9999967738906143,0.017736170382048465,0.007909448883785296,0.00820205612286043,0.999972883378573,0.9999993342617499,1.2970897578987672e-05,4.114378027161428e-06,0.9999999974422504,9.764998926902608e-09,0.9998021780877329,0.9979574683661122,0.9999900979476717,3.7399773853174756e-05,2.8327515760161486e-06,4.497573586583794e-06,5.185267647013173e-09,0.9982763993311717,6.791074891167631e-07,0.23261693452645338,4.6514804641202913e-07,0.043909482505403254,0.027967765778702115,0.9999999997308551,0.9999999979482244,0.009499826041735987,0.999999999945095,0.007972278833699522,2.7593236724139908e-08,0.9999999995595168,0.9999999997586886,0.9999999998678519,0.9999999996437903,0.03971280460825926,0.04961922322262316,2.7842319311773503e-09,0.9980138529484108,0.9999999991916966,0.9995645539644453,7.022344502886577e-07,0.9985343504512179,1.1275476502592245e-06,3.711576436967613e-06,5.355026835341009e-09,0.9999999999734517,0.9999999997396025,0.9999999996150324,3.489822295733488e-07,1.9823624002570393e-05,0.9999999987402917,0.9999999992973552,8.594553760184233e-07,2.6328675991882522e-08,0.9999999995827757,0.04857938081327395,0.026445172092119554,0.22240385340332416,0.9987506462128782,0.0011691971383524528,0.9963876296977622,0.9997553008786968,1.1618890202371896e-06,0.999997428066412,0.1015846494071586,0.9999999988824104,0.9999999957890373,6.695864628977709e-09,0.9978438256244497,0.9999999994304838,0.003249199879035068,0.7353829310595801,0.9999999945320948,4.279646142343331e-07,3.951806548830775e-09,1.6684087975756693e-09,0.0012034026455171312,0.9981142338699138,0.002839914883785302,0.9999999994182598,0.03310372258408595,0.9999999998830105,0.2350133658934547,0.027848009348932452,1.7291966778533853e-06,0.00268051076860127,0.0002876094159381119,0.0005436914301459624,9.192436134487857e-09,0.9999999974039895,0.9999871199584919,0.006715738834806247,0.0061485191912808105,0.9999999993575506,0.0129160085919438,1.8474319334489715e-06,0.00047901345043549574,5.7624948531630125e-06,0.8924938773845211,7.460344364610521e-09,0.9999999933464718,0.0006707868603859896,0.07230913121441274,0.013705853323089956,0.9999988258332391,0.9998669911967266,0.9990757333215246,0.0012536317102413296,1.9632712822731693e-05,0.4624088783027269,0.4661963560162942 -साबुन,rgb,0.6733904533646412,0.9982904671489483,0.00021645041655901753,0.9999959057034181,0.0005511039263390492,0.2673364114772123,0.3454071269044679,0.2585621558623271,0.17610045359242288,0.10652501782335366,0.00011079941729986309,0.00016104441605826965,0.00014025833058213356,0.99866294329151,0.9999998090831617,0.9983506172939312,2.8081003938563106e-05,2.950162287585925e-05,2.8172346721979673e-05,0.00027452281253780557,3.2417548820941335e-05,6.645794942131608e-05,0.23664865723988565,0.00010124285071685988,0.2927660154100335,4.0236537129182656e-05,0.9445420250781885,0.22951037590249784,0.9964197181150038,0.9676783677475451,0.2640564689124272,0.0004034256472034803,0.1995156283654073,0.015249825003733208,0.9999961689623798,0.99761259843629,0.00018707212180273949,4.3433826530267055e-05,0.07397701749925753,0.07703199777309193,0.9999837536460753,0.7086623484316237,0.23122442864275253,0.9858473491114013,0.8823035352465811,0.0003412346570313945,0.0004412316052557631,0.00021334427338216407,0.8886053595116371,0.0022116602242555064,0.25978591460151135,0.9999861165900071,0.1592986669644735,0.12397479515386665,0.9772051234875923,0.1053936573715201,0.00918300750020743,0.006874468516267118,0.00015650936826491383,0.0001277375671811249,0.00010705490209151012,3.495898551061005e-05,0.9995315809189365,0.5303977172754449,0.9381885692655727,0.00013445946827668001,3.567214438304533e-05,0.14747378717694887,0.229009092615525,0.2003710170739767,0.14989861381067898,0.9999861280841191,0.9999719841791223,0.13902630125311588,0.9945088232238646,0.6323010000770615,3.878721170413225e-05,0.00010751998889751601,6.885315314340147e-05,0.0055114947523473975,0.9038950205528352,0.00707694003374679,0.00020119552205914024,0.0036119871548507196,0.23620884233022071,0.00014795963261293556,0.997200048021447,4.120233868032127e-05,0.27423082900171203,0.9041634176666683,0.25207251915506024,0.9998819956990208,0.013454798059525718,0.006719851697345645,0.00481359892841332,0.003950070346327818,0.993459181773247,0.003561271965765665,0.007918081149487655,0.003570898815057383,0.002471476984340852,0.13694063607440696,0.07031170660843429,0.9999938770788651,0.0024310130946431953,0.27182814881685663,0.7719246549046148,9.238797846864019e-05,5.048705579123937e-05,0.06445333248827106,3.163180195717604e-05,0.999989216645628,0.9999985480713622,0.00022127342996635364,0.00012937503706016363,0.0001242664802703649,0.030433251871763094,0.0001864802013736801,0.0001591804438956954,9.67021561736756e-05,0.00039550416327386185,0.0001764550546138815,0.003678353366983644,0.9999665513106611,0.0002224642370008399,0.012034496981711964,0.00018259608311256678,0.031572552181344644,0.0006973938518156515,0.0016384483664560034,0.00047093731952286004,0.007345947401500338,0.28411636424052106,0.14148678753909258,0.026388935089854123,2.9256395535387645e-05,2.812588554708542e-05,2.8599491572052102e-05,0.00134742736179884,0.9677726969959444,0.9999938632424276,0.9991677274579244,0.14505648821468234,0.9999262541251315,0.0004101062180881826,0.00020022353935606496,0.0016013255091455714,7.513785415302879e-05,3.7334532695325634e-05,0.0001280371122975782,0.9999594077683438,0.0003230490692872386,0.9964151775589969,0.00011055465543181863,0.9782166249911423,0.0001333248871040415,0.0001586549089210568,0.4783692064176944,0.2590919454189475,2.8092628203415395e-05,0.7251583640657059,2.7843298964154063e-05,0.9947496029291473,0.34454833680820923,0.40588359226599185,0.47573092790148236,0.3222960423412678,0.00014626919619592111,0.000126582751203035,0.9999927740531722,0.00028051823266267385,0.258682928520254,0.0006780976049472132,0.9991174413647628,0.0002855219224698576,0.35963504600492757,0.9999092284811805,0.9999992545494832,0.7949214179390623,0.4657196457928607,0.375738260048536,0.9987086124710439,0.9999956320371735,0.21758915414660587,0.2707403105875867,0.9552801125609515,0.999127189933568,0.9972032649228907,0.000126568149774814,0.0001528828670886625,0.00010693658954048863,0.003870785544599529,0.7289071564743745,0.0001730678701782007,0.0014094578284132109,0.9061612698621572,0.023245185207303284,0.00017874546886198308,0.21906362485673259,0.11372312084719363,0.9999553737719846,0.0003198409065762992,0.24196788143037617,0.9366225591960108,0.0001802850819601245,0.09006616424322861,0.9749982127159619,0.9999810066420916,0.9999997142907714,0.8677627440920777,0.0012915098665148839,5.022258583528196e-05,0.2730920709454906,0.00014298343178655864,0.4791833059311366,0.0001723206847041201,0.00019238889904277647,0.9998282768983608,0.0002603015860897743,0.00048390891107069167,0.000572558780757771,0.9999370277287564,0.1436664607707842,0.43012684107551347,2.9994272386552883e-05,3.053688310325914e-05,0.9982803053319802,3.0046926410256447e-05,0.9998373789301241,0.0003933964609124305,0.9999992208219617,0.0006398574218496599,0.9999637581561562,0.07659804275426915,0.00041833527785556916,0.00022230020259406686,0.0002058319760514676,0.9655358290261938,0.00229496655985037,0.000488217956967111,6.136988318027682e-05,0.9999911095780973,0.00010283462640464846,0.00012168328659738434 -सिलेंडर,rgb,0.9075123278509446,1.0,0.007363783846531747,1.0,0.2895545916031623,0.9997000539342596,0.373247489068023,0.9832896509954826,0.9588643151945876,0.7376573236822687,0.00014489442690460668,0.0015501524531296245,0.0007565938751579075,1.0,1.0,0.9999999619319048,6.149389462907813e-08,1.0330565852269795e-07,5.534863436662816e-08,2.9943472852716625e-05,1.178584413825671e-08,6.4222227028632685e-09,0.9993360513964542,2.1940659995353368e-08,0.9999984789967342,4.0117234853138504e-07,0.9994447887647601,0.9999952364314356,0.9999996887948748,0.9999999999999998,0.9996888754641801,0.1033233666474587,0.9990027002014589,0.002522182963663465,1.0,0.9999999029390946,1.6008997749419533e-05,4.681466273730562e-09,0.9967981689796944,0.9828667770069592,1.0,0.9999999999991043,0.9995463346222372,1.0,0.9976754260960943,0.04562591096691509,0.1443192378565758,0.006903202182661111,0.9977634324664398,0.0003908510271813164,0.9996472625564521,1.0,0.9203132036680676,0.9940135159049113,0.999968632540441,0.9943572302641341,0.998066208605712,0.9960104043592929,0.0013154225129449716,0.00044293368075152244,0.0001250523092357784,8.962518083968104e-09,0.9999999984273664,0.9999999999893241,0.9999999999999987,1.8280789281973283e-08,5.339646109672989e-08,0.8733038573459051,0.9736388167798619,0.9719348465891835,0.9970729099415974,1.0,1.0,0.8164959103246089,1.0,0.9999999999964682,1.9585568715175067e-07,1.6013631134647866e-08,7.11805738108377e-09,0.9927288197742093,0.9975660682527363,0.9948944581867099,9.318936991506961e-08,0.9751438583441543,0.9793676773810519,4.4970743977622234e-08,0.9999998393234345,4.66906210301782e-09,0.14161435046405993,0.9975817714880153,0.9792835677635545,0.9999999999519007,0.9993283941580551,0.9968258041636546,0.9897349966592007,0.9817198979480104,0.9999985780788975,0.974113159333769,0.9965273652836668,0.9712818498056083,0.9169297665725333,0.037519568923405744,0.9764189100503552,1.0,0.9274635132451474,0.9997361111667364,0.9847286540116746,1.8375682569510152e-08,2.7310881054259038e-06,0.9650259407488474,1.0838450375416732e-07,1.0,1.0,0.006030582470326981,0.00039436738560161044,0.0002655641558220197,0.03845598467165582,0.000768984469613961,0.0015116056661225999,0.00016844401022802078,0.0956567535673118,0.0010312120646960273,0.0017235595110443212,1.0,0.005440791182712005,0.8799382572443494,0.0012683563872244294,0.05352630248491689,3.303387549790952e-05,1.8667262776693328e-05,0.0006560230650623372,0.0004428634601788036,0.999759266143149,0.8320199598545047,0.02452380619746937,3.38093092941394e-08,4.291280636285514e-08,5.748170824387856e-08,0.00015040874393004237,0.9999999999999998,1.0,0.999999991940063,0.9964963881324019,1.0,6.854817780615254e-05,2.224615291169047e-05,0.02876516638946401,8.134422434426017e-09,8.787868188753374e-08,2.1235722689966182e-08,1.0,1.8693327397737075e-06,0.9999997111683453,0.0001389079580920876,0.9999719899367207,0.0005467277793746002,0.0013493612874033523,0.9999999574857454,0.9999997068564337,2.6209236145759136e-08,0.9999999976092502,2.9359065234857595e-08,0.9999995064966078,0.9999995871582462,0.9999996687827264,0.9999997145983117,0.9999985576875298,0.0008676896255530821,0.000415411313293844,1.0,1.6949286460586738e-06,0.9996427049974558,7.5721177285147045e-06,0.99999999213101,2.356193129671683e-06,0.40799267201921147,0.999999999975135,1.0,0.9999999987182286,0.9999999396059928,0.9999997583958162,0.9999999806252534,1.0,0.9991269173569324,0.9997330244575499,0.9998060061210307,1.0,1.0,0.000416907009837229,0.0011432528842586236,0.00011903950033737882,4.6556566178240074e-05,0.9495174826309425,1.7609076848747896e-05,2.2195392459233274e-05,0.9985553215815641,0.02273923088593406,0.00185886368087394,0.9993133190113637,0.9909737620831786,1.0,1.5249154629664415e-06,0.9999928440581632,0.9992069640115584,0.000783563487553407,0.9854271303304594,0.9999604961410027,1.0,1.0,0.9941169549321605,6.4723558266848885e-06,4.9024406290818965e-09,0.9999981256996564,0.0008033429360348052,0.9999995351421318,0.0012471104039487564,0.0033047462091278876,0.9999999998770441,0.01600560563674368,0.2002407950298082,0.3399289349292508,1.0,0.9963948808201771,0.9999999999594058,1.1668326329561161e-07,1.4436304552913652e-07,1.0,8.61180441117168e-08,0.9999999998926659,0.09367950666649631,1.0,4.719174081908934e-07,1.0,0.9795462228543784,0.11868879920858118,0.0054676563528627325,0.0049275767466031685,0.9999999999999998,5.977923308746282e-05,3.4737921853707552e-06,5.25776019134649e-09,1.0,6.646901185696286e-05,0.00016148139451875016 -सेब,rgb,0.9999999999982021,2.238519192328193e-19,0.028543320077824577,7.91831753119082e-05,0.0713838182691095,1.4749989259684807e-09,0.9999999999999947,2.6845740213454118e-05,1.3759399410617256e-05,0.00012689538136041644,0.000950492706553615,0.002721881616608426,0.0026241644339061124,1.9819588328267165e-19,5.603496914848403e-06,1.0,0.9628064327433922,0.9177163438240002,0.9577689755967698,5.677894177177995e-05,0.9904427184250436,0.9999996780769681,3.6766977749787692e-09,0.9999999962774806,4.52660779442837e-13,0.9999398297018516,0.9999999999994702,9.323645310566254e-13,1.0,7.693054901664467e-17,1.473928168513186e-09,0.00935879343975066,3.153968065272715e-09,0.23793750337267167,5.742516307164274e-10,1.0,0.00010988601647501349,0.999969000234844,3.380463393278048e-10,8.996941084503816e-09,1.970427448931053e-05,3.77363989364263e-15,1.447451806307486e-09,5.301762126826226e-17,0.9999999999999998,0.000608565421892346,0.0047957851330563605,0.029662406379051463,0.9999999999999996,0.00021604655047029688,1.728354356994727e-09,2.4522446313822478e-05,4.712766586465227e-05,1.0340285686323457e-08,1.0,4.063612495804011e-09,7.308711941717474e-11,1.685014101212526e-10,0.002396286378937844,0.0022278152615157793,0.0011396518356823575,0.9957603426912354,1.0,1.7705678025683986e-14,2.920243613747631e-16,0.9999999938399535,0.9999953662289236,0.00011778394184244959,3.467163815429125e-05,1.2874499531067388e-05,6.215179625013904e-09,6.799732429320643e-05,2.1775354891144908e-05,0.00027825672901324213,7.475021304186062e-19,5.538189789418284e-15,0.999983778013069,0.9999999925228248,0.9999998269825103,3.254679960107552e-10,0.9999999999991216,1.4091811257564834e-10,0.9762242180955263,1.185257249746002e-09,2.1818129777305927e-05,0.9908534734984988,1.0,0.9999823265392193,0.9999999999489619,0.9999999999988993,4.0659894686741236e-05,1.0,2.6737426290198204e-11,2.0577919177063257e-10,5.008963275937665e-10,9.216524386516625e-10,1.0,1.239871535696647e-09,1.0521771247056025e-10,1.1469598206153543e-09,3.711034438712742e-09,0.9999999999999909,1.1450800903263542e-08,3.471786849002773e-05,4.577548073932226e-09,1.2562886549124724e-09,0.9999999999999998,0.9999999937765831,0.9993188878183193,1.7605814482153076e-08,0.9998462169124425,3.90440343318353e-05,3.0143118342899854e-05,0.0006273622825610323,0.0010777755997110298,0.0006931890184071514,0.005157565384599122,3.656834993355937e-05,0.003469820898539727,0.4391366427326422,0.012649172111560567,0.00010261918527063243,6.552300652339303e-05,4.9674983663372075e-05,0.00031677982071615183,7.80928665542785e-10,0.00010095157625231381,0.0022007115110180297,0.0005000699203438593,0.23570408631545428,1.6650385167746615e-06,0.2945335428199417,1.3722641359412007e-09,0.0002309188046556424,0.007913435941394799,0.9461441096221047,0.9611946120036364,0.9422516400323439,0.00022206890362903397,1.0103500317785828e-16,9.386899496713394e-10,1.0,7.620661998395868e-09,3.490009154422024e-05,2.7086329743883675e-05,7.328794006589833e-05,4.432311672190231e-08,0.9999999097679811,0.9999945258289369,0.9999999966590583,5.225465053357572e-05,0.02549084337300969,1.0,0.0008953848665895082,1.0,0.0019998939736036794,0.0018305477427203443,3.5657322023684544e-14,7.709432701969887e-14,0.9774263404782753,9.416646437775599e-15,0.9768961441454803,1.0,1.600026424046228e-13,1.9730700320397793e-13,3.005650661362941e-13,5.579576159351437e-13,0.0016791347632733199,0.002095216662394747,3.6231059649165706e-05,0.01818855971919191,1.729093063047579e-09,0.019875730396796302,1.0,0.008552993268653566,0.9999999999999949,1.0,3.573939003518099e-06,9.537659494956028e-15,4.693818404840311e-14,1.122386140751089e-13,1.0,4.622704941493293e-10,3.953949975961663e-09,1.2551290650155316e-09,0.9999999999999998,6.1023449972252264e-05,3.6405524749097155e-19,0.002133833377624869,0.0021256294504256434,0.0010400169216217478,0.9245184726764396,0.9999999999987521,0.00010055327882994222,0.05649441603022938,0.9999999999999996,0.0038301538978358224,0.00043072156665072223,2.483486199146505e-09,1.5892433311184665e-08,3.995684987316359e-05,0.04200374083313822,1.7823090740141645e-12,0.9999999999989986,5.1368249692618944e-05,1.3537325213991047e-08,1.0,4.399619155903193e-05,9.114109384689658e-06,0.9999999999993685,0.7185731121153446,0.9999693662725955,4.826472546113946e-13,0.002095587556517965,5.986053100666881e-13,0.0002262774229168752,0.0011119082054571803,1.0,0.0050668928064851295,0.014604533627959089,0.005202761839680153,3.372750426513265e-05,7.688073925243108e-09,3.956880888288447e-14,0.8940135396125386,0.878865506536078,2.2529229057770915e-19,0.8686084375758589,1.0,0.012694740789566767,6.671858029370521e-10,0.9981938084913843,2.996715731553004e-05,1.2680614931899495e-08,0.007764841503740781,0.000329973708856423,0.0017993526781783682,1.470310144656e-16,0.05918733372706829,0.03289947690124578,0.9999944971431831,7.384891466646735e-10,0.0006423487014637529,0.0003461121680341698 -स्वास्थ्य,rgb,0.9999999546064547,7.333962217733083e-13,0.0003361745388061491,3.977278677262454e-56,1.6611909941032228e-08,0.9999999999999956,0.9995502804631847,1.0,1.0,1.0,0.999531920299881,0.3175690334108368,0.7595516827830915,4.5409456275454756e-14,1.792976953689156e-61,0.001238954226555454,0.9999998640048408,0.9999997002933722,0.9999999324308472,0.9999999999995666,0.9999999999202764,0.99999999850046,0.999999999999998,0.9999982785406967,0.9999999985160914,0.9215700780063228,0.9999988396999864,0.9999999993646957,0.03294072253479858,1.17630534496256e-13,0.9999999999999956,3.283490328662683e-06,0.9999999999999973,1.0,2.3128932089445906e-51,0.00213968182921333,0.9999999999965903,0.9999999999157916,0.9999999999998781,0.999999999999998,9.253010087856257e-53,5.327833581210725e-10,0.9999999999999951,1.4999685554467648e-16,0.7681639281021684,0.0011899253742329932,3.5038904753915426e-06,0.00037023382568868613,0.9353564540486355,1.0,0.9999999999999962,3.5994502430764547e-53,1.0,0.9999999999999989,0.16629286598731136,0.9999999999999967,0.998037718110441,0.9954738960862076,0.46575173346470666,0.9458888925164057,0.9995681189339997,0.9999999999712352,0.00024346695227012155,1.962513743068867e-09,2.383828712330498e-13,0.9999999819966997,0.9992770646613722,1.0,1.0,1.0,0.9999999999999982,1.5741834921733567e-53,1.215613631323106e-51,1.0,7.966138140561678e-08,4.698190437934452e-09,0.9759320837152993,0.999999916745467,0.9999999962673114,0.9930395987072401,0.9999996467158812,0.9991739633818989,0.9999999999999989,0.9893396410728578,1.0,0.9999999999999964,0.012499201861480052,0.9999999996942492,0.9999999997537874,0.9999997378129378,1.0,7.589073282367957e-05,0.9988362369277812,0.9784275061549595,0.9896266490042869,0.9873662122102742,0.07230221211482422,0.989160998091213,0.998982232105635,0.9941931456237486,0.9923721393098024,0.9997377484388573,0.9999999999999982,5.224754596799312e-55,0.9765591544887249,0.9999999999999949,0.8707358007581077,0.9999989728915863,0.29372755785051563,0.9999999999999987,0.9992655913467602,7.25480173990711e-54,6.180711351870574e-58,0.14293873404363264,0.9889230886559062,0.9984736389296842,1.0,0.999940471072896,0.25144846933932813,0.03625202159138607,2.656398151983816e-06,0.9983644081191447,1.0,1.46851557801648e-51,0.4119535241055391,0.9999999999945388,0.997087316016823,1.0,0.9999999999999996,1.0,0.9999999999764237,1.0,0.9999999999999956,1.0,1.0,0.9999999967714317,0.9999999764741433,0.9999999554206025,0.9999999999999998,3.042108237067222e-14,1.3593132685058534e-50,0.010195548784420716,0.9999999999999987,9.626009265266522e-50,0.9999999999998948,0.9999999999955063,0.9999999999791476,0.9999999936204675,0.996362949354115,0.9999998634850573,3.639947055776856e-51,0.9999999999999996,0.009935566716610906,0.9996359503338927,0.16068786814012304,0.922676018544057,0.5604663209885488,0.9999998142388843,0.9999980429972548,0.9999999950498268,0.9999997390732106,0.9999999910289227,6.871457849410415e-05,0.9999999871228257,0.999999997166044,0.9999999995337723,0.9999999994371582,0.8243825584957195,0.9586540777479031,1.1189023271273082e-54,0.9999999999999989,0.9999999999999962,1.0,0.0005806678843954678,0.9999999999999987,0.9995191864187752,7.154302723590421e-05,1.5213194078016665e-58,0.999999921924477,0.9999999108319448,0.9999999769461388,0.00038207726913067823,5.688846127906546e-51,0.999999999999998,0.9999999999999949,0.6979243843423958,1.5268405454238244e-44,3.279675613580275e-11,0.9569582775253878,0.6043660489659014,0.999691948155211,1.0,0.9999999119853991,0.9999999999890685,1.0,0.9445122351752527,1.0,0.8722616152023527,0.9999999999999969,0.9999999999999991,7.218546615159534e-51,0.9999999999999996,0.9999999998945197,0.9999995617734723,0.9998542610873691,0.9999999999999989,0.17808742743894213,1.02409566585373e-52,7.865193501792368e-61,0.9999995842458792,1.0,0.9999999999777254,0.9999999982739112,0.797674268780627,0.9999999998985503,0.9857447095013839,0.22743111148302272,8.074086757526974e-05,0.0006184889821511537,3.438170042517241e-07,2.826762822550565e-07,4.534343661145933e-50,0.9999999999999987,4.602178938628673e-09,0.999999692647055,0.999999437687916,7.599037380772895e-13,0.9999999468955348,8.015311513517988e-05,2.7800667325078508e-06,8.08233378116712e-55,0.9999999999999998,3.292636083504415e-51,0.9999999999999984,2.996400136950454e-06,0.3916597645813526,0.047418000470800276,1.1027668282027229e-14,1.0,0.9999999999999998,0.99999999996616,1.1350573661008134e-49,0.9999835672670934,0.9999243693982387 -ह,rgb,1.2290581810329426e-34,7.063979486081882e-10,0.9996977386536556,0.0005618795386997869,0.9999339776749121,5.715463856721472e-20,7.058532018458425e-31,8.139144239066795e-25,1.6060009094883512e-23,3.2332836679239556e-23,0.9597639984585021,0.9982890694380729,0.9968295418301382,1.5847952871620828e-09,5.699968304268256e-06,1.0435883530144791e-43,0.028197835400621134,0.06992406400616323,0.019069292252775684,1.226175408036802e-06,2.7827361472450675e-05,2.2096961406477495e-09,3.728723472091644e-20,1.192185545859898e-09,1.0719784839243376e-13,0.26590569579015044,1.312605677399659e-38,1.7407045732507377e-13,1.4548301661044e-42,6.938450706016972e-05,6.253430175847004e-20,0.9998893168401166,1.4635322354605568e-19,1.2944503871511453e-21,0.0017625123343332518,4.9096587133539384e-43,2.0693951617913572e-05,8.223714695057679e-08,3.3144287824844286e-15,1.2613170781466652e-17,0.00685652695580721,0.0025057079811291565,1.6406180881551798e-19,0.00014480833456485874,1.015096199776739e-35,0.9996474261577727,0.9998924310924504,0.9996897974841558,4.784174768707263e-36,3.3491522771780894e-14,5.598070902097658e-20,0.005137108424194621,8.729330753418423e-24,5.73307128177803e-19,5.462474891156841e-39,5.9488678581767786e-18,0.005710281085786998,0.02244936635929231,0.9979181526226976,0.9942400699122267,0.958773471770186,5.026652469112702e-06,5.317230401238636e-46,0.013629262460831943,0.0004402005737428923,1.810119856282958e-11,0.0033229097394955106,5.766661453198289e-24,1.3660549375309286e-24,7.975516752607652e-24,3.577723120447146e-19,0.00415391130367814,0.01561710551187799,3.697498758549563e-24,2.915614793608661e-11,0.002290048183815268,0.06283204009627913,1.8432023240403934e-10,2.1682730823510124e-09,0.053258307460052993,1.604257265512541e-37,0.006923767352544913,2.838050051574029e-12,0.186896357832054,1.7506951631310903e-24,1.391817131264192e-11,6.162632493230527e-43,1.698628747993361e-07,1.9135636246202222e-31,1.5274830157696589e-37,6.477794889300007e-25,1.538506267077041e-48,0.0012749931238080396,0.06199216883731282,0.09486617512066903,0.16765847720829943,1.8941475496262786e-41,0.19419523992304716,0.005728999977992622,0.14018156428801748,0.33234324329904075,2.853128857822935e-28,1.5405456239757777e-17,0.001296972833662311,0.5036040641865565,6.378880407460465e-20,4.03910316275844e-34,1.9450995890884704e-09,0.8858004761411375,1.3966691717317086e-17,0.08281244909493388,0.003134817431302123,0.00012570697036879552,0.9986922568742144,0.9891620151659014,0.9751284874927948,8.749773254183207e-22,0.8409067821815759,0.9984469308936045,0.9981540673663909,0.999890568200235,0.9692062497775223,6.206644726799397e-15,0.017443184332713895,0.9978490436930693,2.7160135847797835e-10,0.9757370228692993,1.4911949108623829e-21,2.1280390313425492e-11,2.0059880738006629e-16,2.0507409336888e-05,4.5579079048557825e-20,4.066782999170088e-20,3.958843440784443e-24,1.2755291749862881e-21,0.0023650009824012375,0.008720962541732871,0.017109934661607942,7.218051026372457e-13,0.00014188071348834468,0.0036317762221501604,2.6218819201237634e-45,3.3085436328785623e-19,0.06003351834467433,1.1083061200759199e-07,2.4447724499769224e-05,7.090891448734477e-07,1.2377460519582973e-09,0.009228349677356267,5.890810699610657e-11,0.023151161855552403,4.7342439201012993e-11,2.0647650307598813e-42,0.9549585603986731,4.4363039066168374e-39,0.9949710246336473,0.9976433895679961,4.222155372955761e-13,1.4207619186642076e-10,0.0019459888578864117,7.936400489311621e-15,0.00312747698007567,6.085518618324664e-41,3.2789569211558237e-13,2.6616722242786936e-14,1.3469614270330715e-15,2.3405872901046386e-14,0.9963578887945854,0.9936125013099744,0.0016786068938926114,1.8964875019263237e-10,5.767024804761289e-20,4.257984303726128e-13,7.38675188460165e-45,3.982615720618068e-10,5.257454174828045e-31,4.9200622402339145e-49,6.317075444739195e-05,5.056295676646432e-16,2.6388602966793466e-13,3.300898718206266e-13,4.775681093615583e-44,0.002132390229580891,5.967934906167666e-20,6.576288195995476e-20,7.256247911985365e-38,0.6770024140093323,3.987588599354153e-10,0.9937111706140944,0.99750527672052,0.952008634572592,1.4615904735378395e-19,3.9481851647888405e-35,7.319333656671364e-05,1.8186332846103855e-15,1.8153951192044424e-36,4.506496879269681e-21,0.9955251401505633,1.0953879702324488e-19,5.370028357731422e-19,0.02812489598242817,2.975871854924146e-11,2.156200250454851e-14,2.1982938554352226e-38,0.8996541268795255,2.7382329410468463e-18,8.356068179944586e-39,0.007465143254840535,1.0334720425735975e-05,8.289675081234275e-37,1.6745084969930238e-16,1.5752112901016118e-08,1.832498917347122e-13,0.9965800751904985,2.565972864331993e-16,0.988706375966544,0.9984925210192925,7.97986765118142e-48,0.9997006223604784,0.9999196850111971,0.9999275677880738,0.04816669608167467,3.4712780383839664e-19,0.02942383178571125,0.08034675188529646,0.12017291597821286,7.06254031027268e-10,0.029910546518651042,6.276182352452743e-48,0.9998896948600682,0.00014906511525610906,4.505904884628327e-16,0.021740977885761542,7.949638747476323e-18,0.9998924322156603,0.9979144810401773,0.999112162504374,0.00030351226511728504,1.0576274616315619e-16,2.167277307641121e-12,2.085227881657539e-09,0.006248946070676243,0.8197813272380035,0.9018411944010182 -हरा,rgb,1.55954295250044e-16,0.999999999999877,3.435251392759141e-05,0.007097285887334941,1.1257037804011106e-05,0.9998817846157262,3.043869425814522e-19,0.47703846457267723,0.6071443547826855,0.1440484919478006,0.0014745723440634639,0.00041620581135037285,0.00045205480428879357,0.9999999999998836,0.09570307531127653,2.461339352740989e-21,9.027668285155317e-08,1.971763346708191e-07,1.0544157925694385e-07,0.05814405446817123,3.362560305969964e-08,1.887541771789522e-12,0.9997164223000001,2.2134919176129978e-14,0.9999999134191879,1.1956402810252074e-10,6.773282982562923e-17,0.9999998209945208,9.166125989077681e-21,0.9999999999334823,0.9998813876923938,9.617078243526643e-05,0.9997404215625583,6.457705576463518e-05,0.9988884389812993,2.606427718655785e-21,0.027054639422968516,1.5035462091675063e-10,0.9999536229806942,0.9991126388033142,0.026561137636232964,0.9999999966541522,0.9998782762532484,0.9999999999491442,1.813985937734327e-20,0.0016058515129548005,0.00018679081754273695,3.310497908866638e-05,4.0079925528289685e-20,0.03744339886814082,0.9998620705806125,0.021585507894436463,0.3209521328912403,0.9991168102974444,8.323297131314302e-21,0.9996062262039385,0.9999550050862025,0.9998899645252506,0.00047922798153719217,0.0005552098016234295,0.0012351204960863152,1.6337752401954192e-08,2.456933740620489e-21,0.9999999836168305,0.9999999997325073,4.584321649803541e-14,1.2277965930712939e-11,0.16340820615246518,0.40945214409848985,0.6298106154305295,0.9994748250205843,0.008005404600047993,0.023865005218236375,0.07867471767642503,0.9999999999996869,0.9999999952376672,3.5757788626114445e-11,4.933013425454714e-14,1.0141318812527818e-12,0.9997797932085749,1.0107738077113871e-16,0.999913979675964,1.911894441496139e-07,0.9991574262597218,0.5196761294296904,6.758912682366126e-08,6.206652280283728e-21,8.254005196775515e-11,3.2277030176299394e-15,1.269598356599225e-16,0.3797696138147872,3.933631200800398e-21,0.9999844809167767,0.9998573196430157,0.9996522033031112,0.999345292096626,9.904957982333367e-21,0.9991171501137744,0.9999359387316569,0.9992014723053727,0.9973236348216409,4.0525214595442584e-19,0.9988660353418601,0.015699973352026757,0.9965659443362453,0.9998984685874563,2.107645015864565e-20,3.6161366287707456e-14,1.1088262653785375e-09,0.9982802591237956,3.367023340461568e-10,0.013828352762267987,0.018657746178708252,0.0017346820956186248,0.0011893459851653643,0.0019464323727288613,0.003743742391821555,0.03865767703822149,0.00032483317518727935,1.526791072096221e-06,7.101027638477871e-05,0.012813829675518935,0.11993219359589359,0.01068166959926522,0.003526458500240328,0.9998183767553738,0.012808270354550313,0.008453333895555465,0.012358493389944098,3.806554126919498e-05,0.6306002536000349,4.133002353793679e-05,0.999891529696469,0.0928143884517616,0.002410045318628199,1.5350368010968216e-07,1.011628915347024e-07,1.4726848374291092e-07,0.031710249641822244,0.9999999999089235,0.9981694871528799,1.3443972724434855e-20,0.9993610619471827,0.014848268918049258,0.1263397853346903,0.03944157333707563,0.9861384421444783,5.437927404778128e-13,1.3608997772802311e-11,2.3307684383876776e-14,0.010128692623219204,0.00024284493086895544,4.6585217276259536e-21,0.001576185617002987,8.325496263274652e-21,0.0006116836983083679,0.0006312730875082035,0.9999999921444452,0.9999999777253026,6.328100990502558e-08,0.9999999982241699,6.305818191957472e-08,3.008258549009038e-22,0.9999999667034278,0.9999999639067476,0.9999999529329711,0.9999999014536604,0.0007100725300344315,0.0005943336402696134,0.015005391875576398,0.00031907755736306176,0.9998618275007164,0.000391424081913906,2.4961407591249912e-21,0.0006541243812330929,2.956469871044382e-19,4.814398191788472e-21,0.13691805106270005,0.9999999984270134,0.9999999899812156,0.9999999763933657,1.5334744399631722e-21,0.9991029954507753,0.9996889738997085,0.9998984205208963,2.234195777676516e-20,0.008312666404218558,0.9999999999998133,0.0005830495980639336,0.0005469281002595917,0.0013659661726387329,1.3856639735103225e-06,1.136099899152502e-16,0.027588712756671168,0.00017362498462626587,4.7048817346737513e-20,0.004669889370235249,0.0027534866450710355,0.9997972538149124,0.9986587879477808,0.013134374501387259,0.0001491291239997467,0.9999996960908084,1.2535329866258712e-16,0.027082511131252287,0.9987655820905607,8.320347514446312e-21,0.012162164323360395,0.06078431455694181,6.776358058472986e-17,4.7435699507271e-06,1.620133138796421e-10,0.9999999054016803,0.0005678389396228083,0.9999999149612998,0.005529652956044208,0.0009980592553570022,2.9450486323338654e-21,0.00019487260940063918,5.943532638134142e-05,0.00016510489287790465,0.015392256812979212,0.9993541246793669,0.9999999627964289,2.5799365164046216e-07,2.917465691977261e-07,0.9999999999998761,3.4971866964636706e-07,3.0715493445325722e-21,7.081245662808136e-05,0.9987492959731971,2.1945699998347654e-08,0.017439636741778942,0.9987843643640937,0.0001155658693040814,0.0033801863350865317,0.0005953519898666408,0.9999999998621913,0.0001885863838321674,0.00021735380930138976,3.239773841419546e-11,0.9985506274063161,0.002414096096845473,0.004237235376020922 -हरी,rgb,1.6962357975135024e-23,0.9999312141185794,0.403669621055834,2.2428047191486838e-07,0.20655107291908797,0.00042499303655100075,6.890301671492526e-24,1.770878855866011e-08,9.15624344133247e-08,3.373793595512258e-08,0.7750821750001599,0.7449306380544803,0.736949137583127,0.999939599247051,4.855184608271558e-08,1.8253246029651284e-31,0.0009280557958811834,0.0021289950163568367,0.0009141591590865468,0.1277975565840325,4.677198151782466e-05,1.249653980841825e-09,0.00021984755756921919,3.101025708381688e-11,0.8710263696033791,1.3225327439519473e-05,1.2913877964751714e-25,0.8525910659004586,1.8145631872998637e-30,0.9999752644914692,0.00044099048328552536,0.5634610940229718,0.0004160326973693118,1.3988944551849413e-09,0.0015217885652855179,3.957406646550309e-31,0.20467048611316777,1.2302878967123942e-07,0.06689194190319986,0.0014285558512404906,3.258127381102777e-06,0.9999742418569741,0.0006584544447260785,0.9999715969917171,4.621274310560776e-27,0.8854807078904042,0.6649822680177679,0.3975963954845296,6.222060888732852e-27,0.00011115241806919064,0.00038751983136311324,2.296258616052703e-06,3.4735842530473035e-08,0.0003830791778011108,7.766083574660968e-29,0.0016165256775509426,0.9995250589083978,0.9995158322927541,0.7561083481454556,0.7414938683961398,0.7546616466932086,1.542095102154601e-05,1.5046295511031872e-32,0.9999713787361059,0.9999758394523928,1.171428340382131e-11,6.33973169899867e-07,1.708523540336541e-08,1.9001512293962682e-08,7.09014333602548e-08,0.0004160334575063236,1.0356162814577887e-06,5.616750727898168e-06,8.544198654654512e-09,0.9998318138959846,0.9999728466035375,3.3311626274265997e-06,2.966997724191165e-11,7.734236718543906e-10,0.9994787273475296,5.619210052593101e-25,0.9994000804062012,3.1463674508259314e-07,0.9993315460810679,2.760020560696416e-08,2.9917118772609667e-07,8.866072193280999e-31,1.0356623399773423e-07,4.73001578642923e-21,6.514272936543516e-25,1.263429353880793e-08,1.3513047289392862e-33,0.9995448980507531,0.9995866088737644,0.9994544149219745,0.9993839528099236,6.424064562149661e-30,0.9993251180043135,0.9994453061895328,0.999289531864128,0.9990582998471206,1.238982594746424e-22,0.001359633850339654,6.822424940196905e-07,0.9991067613178377,0.00048370435424634434,2.7768953588854126e-26,5.484281123824241e-11,0.0001491038489360429,0.0010374880137693529,2.1280747587542537e-05,1.1958830904606766e-06,1.4274452072183362e-07,0.878631170666596,0.801897356436409,0.8202331887555377,1.4684496368369426e-08,0.9433523948375508,0.7171140873758125,0.06437646849911137,0.5130428587413114,0.9301433206493954,0.00011570704175832876,3.6215129549550468e-06,0.9117574673614207,0.7638880844797328,0.933548702342514,3.0637688447968924e-08,0.0007972245942530348,1.801796791589877e-07,0.7325658019448008,5.0558158131178974e-09,0.00038443999730814995,9.816161379528941e-09,1.3231467332937731e-08,0.0006055426560131851,0.0006929277916225213,0.001113556033200177,0.0003574442318999852,0.9999751246357954,0.001820199986918805,1.2477003596188322e-31,0.0003613414270558622,1.1671935987345407e-05,0.08911159770162311,0.2557878974749626,0.8629053046729515,3.8964571219436227e-10,9.142159744052308e-07,1.07282278967024e-11,4.338855332890926e-06,9.840726748208736e-05,1.2409265475422082e-30,0.777328205766194,7.055450923108949e-29,0.7573443217218316,0.7830069887141359,0.9720275337640969,0.9948255176543745,0.0003079854320903876,0.9355863907001862,0.0003586688503201464,6.349289174749164e-31,0.9423248062564206,0.8548978641695879,0.6123167697229167,0.776775843333773,0.7834751576600194,0.7458482926244673,7.991162058967526e-07,0.00020354494459029777,0.00039214550448636685,1.938430567719532e-05,5.297463929851331e-32,0.00042701033707478835,5.901004910112942e-24,9.187781199585566e-34,3.431935755534466e-07,0.8381547908759481,0.9629773264390347,0.9504773399308248,8.611055822127799e-32,0.0020590220449801314,0.000256142234434081,0.0004899697276857784,5.684887620955019e-28,0.0001184597205541453,0.9999199098498026,0.7441545841439837,0.7660451411788526,0.7590767070305521,9.555140823492747e-10,7.913054064558585e-24,0.2900575377229334,1.1940826881196949e-06,4.541477340702762e-27,3.466854260655358e-08,0.8880699861227218,0.00042000607259450604,0.0002959095539495737,5.953160232394431e-06,6.0153612650914434e-05,0.6617336083893186,2.60663590160085e-25,0.9390083077587507,0.0006223173887878375,9.448322315480821e-29,2.0864271010482144e-06,5.360045878970439e-08,8.944470248156411e-25,4.412442424169239e-08,7.024048044402437e-08,0.8888021586801893,0.7611285812932582,0.3774642294629874,0.9097663608788723,0.835775739137721,2.3568023486279856e-33,0.6786871307168884,0.4714044305974201,0.6332351653383146,1.0027932394722297e-05,0.00036669693877447516,0.9999690152086455,0.002680343363052874,0.0033281936549372877,0.9999311846039991,0.0024090299053834974,2.17322372891592e-33,0.512806441424922,0.00022285502221950092,1.9539677233406556e-09,5.876843808894388e-06,0.0009882765265470368,0.5922093550198237,0.9100845080858155,0.7979230178792421,0.9999747341354424,3.754282476477667e-07,2.6234281437275885e-05,1.0157044058026636e-08,0.003271016066355678,0.7550708083968332,0.8379208598086424 -हरे,rgb,4.09406238399833e-19,1.0,0.00011346512876201497,0.00957678512414241,2.4529016675368966e-05,0.9999996686121458,1.6835322326510433e-22,0.9705456650209038,0.985088114858631,0.810465208786656,0.014592804175724653,0.002776548027037719,0.0031487339643262568,1.0,0.17468854845008222,2.210890127802876e-25,8.855124923279679e-08,2.3400991556252744e-07,1.0808281402765211e-07,0.6335950930467914,2.6670753556416114e-08,1.149897266627035e-13,0.9999990223333387,4.019348430499373e-16,0.9999999999577407,1.9300763771903814e-11,1.2134848468507265e-19,0.9999999998978166,1.2428688003068375e-24,0.9999999999999902,0.9999996675865496,0.000383352835842607,0.9999991369196859,0.0002554923025038118,0.9999615664691732,2.4469665321466145e-25,0.3916927553890513,2.9383318372040167e-11,0.9999999058688092,0.9999962631713495,0.05681193803007746,0.999999999998936,0.9999996605674717,0.9999999999999922,3.886431449792895e-24,0.013655008087459385,0.0008765058859506482,0.00010849734957896739,1.0569180016693009e-23,0.4699923294311923,0.9999995992685162,0.04337454344960359,0.9378803922700363,0.9999961590074826,1.2699835215260916e-24,0.9999986155373215,0.9999999088514934,0.9999997240843725,0.003332991121725868,0.004145553073732451,0.011747638799594435,1.079563866366748e-08,1.9980121004589976e-25,0.9999999999926596,0.9999999999999465,1.0129139142126068e-15,1.1545158163465692e-12,0.8338804717000533,0.9594069260298312,0.9866089314975458,0.9999979651249977,0.012600625290006074,0.052547554806228705,0.6412805002242118,1.0,0.9999999999984059,4.2886243036754894e-12,1.1166007806572674e-15,5.227835846425254e-14,0.9999993491428805,2.107259931553699e-19,0.9999997993152282,2.2397804415220237e-07,0.9999965833281111,0.9762815702287541,6.157174563415635e-08,7.439569169774695e-25,1.3774823737817354e-11,2.139724981487707e-17,2.8103162626325814e-19,0.952477301158187,3.24986184380036e-25,0.9999999754677905,0.9999996142765901,0.9999988526103414,0.9999974926226638,1.437059126605349e-24,0.9999963801189321,0.9999998600776414,0.9999968217074281,0.9999858083614056,2.632087705798728e-22,0.9999949547653315,0.02695934858716752,0.9999804515660187,0.999999725522745,4.983694686568272e-24,7.515753246115613e-16,3.040983762740375e-10,0.9999915586837237,7.429646031444894e-11,0.02434733225523624,0.02899383508957734,0.01599006170054823,0.010828734365575446,0.02024515611959883,0.03838911438346689,0.4780099379396937,0.002032748245256013,2.488397924536124e-06,0.00026200260432235887,0.1786672241115349,0.8050788818571971,0.019759223930381088,0.03850170951894967,0.9999995303706174,0.17767210737913086,0.10011746530809316,0.18602722869485094,0.00015278403742148244,0.9905272709181304,0.00015348453286605885,0.9999997007210791,0.6912780739173757,0.02264616858256261,1.7624429282015413e-07,1.0334215375505914e-07,1.6466902211256772e-07,0.4237143632083995,0.9999999999999853,0.999931205629795,1.8002073162583305e-24,0.9999974067846261,0.03222217242719874,0.831647500261662,0.5105999301474714,0.9999035364272886,2.368184871601236e-14,1.2955017262601455e-12,4.2903120386673245e-16,0.01885376334475739,0.0017095520720415375,5.272467624814075e-25,0.015876187162854917,1.2659395502394349e-24,0.004653586801012929,0.00471198360549983,0.9999999999977305,0.9999999999920282,5.79561423528369e-08,0.9999999999996212,5.750802966424371e-08,1.6818373354863313e-26,0.9999999999868616,0.9999999999853415,0.9999999999793843,0.9999999999501235,0.005536581785156512,0.004525303579180065,0.02590396446891077,0.0024207854864426686,0.9999995985369685,0.002986737191103555,2.142903153154363e-25,0.0059205065958921185,1.6153020045791816e-22,4.110101774812655e-25,0.28812170986876084,0.9999999999996685,0.999999999996946,0.9999999999913529,1.1907047103533795e-25,0.9999710856902977,0.9999989105284838,0.9999997254587353,4.680141816288938e-24,0.020113267351952947,1.0,0.004416951793460925,0.003953318035888913,0.013341888887575572,2.2518759217666065e-06,2.688415130639284e-19,0.39716554761771167,0.0010344956568384331,1.2766933075600208e-23,0.05101703441879695,0.029345457889961485,0.999999361167969,0.9999935653157924,0.026317328672618944,0.0009293392161943913,0.9999999998028459,2.671107038881048e-19,0.3651068550699431,0.9999942947961855,1.2785593880720192e-24,0.021951732429048187,0.10602862634062155,1.3068622562879556e-19,1.135352459880528e-05,3.222850470167e-11,0.9999999999530447,0.004188878271498008,0.9999999999570821,0.06899421145759142,0.008156166766587399,2.321024511331124e-25,0.0009926523392385861,0.00020384109308123113,0.0007250076429252112,0.033164216207037585,0.9999973734677949,0.999999999980137,3.2748736154038715e-07,3.801198888180002e-07,1.0,4.853181748382999e-07,2.4374046830698776e-25,0.0002612637940628005,0.999947461979286,1.3783073659539118e-08,0.03663864411558202,0.9999944649643391,0.0004812133806803568,0.036556514998787634,0.004209019225370352,0.9999999999999751,0.0011130909499527427,0.0014569869155361857,4.203303710425106e-12,0.9999507169926202,0.027515061694326104,0.05321797722456701 -हुआ,rgb,1.0396786614590155e-25,1.2149066839372378e-12,0.05384188380971112,2.1011061970195745e-41,0.00016528869603456633,9.728206116932259e-05,2.5816708079686662e-26,8.338025345793932e-08,8.560281357799774e-07,1.276324435026121e-06,0.993334839800284,0.7983511707594262,0.9025706740261684,3.4633886807120604e-13,3.4801492798800413e-46,1.1042983130320895e-40,0.9468102743648956,0.963301300038024,0.9565809303789902,0.99942709228229,0.9192208607695029,9.883299676412261e-05,9.370461548065678e-05,1.64732712363727e-07,0.006143389042418403,0.002481332472515727,1.002926824790954e-29,0.012791605365996089,1.0493463279284987e-38,3.5707343067835383e-10,0.00010334224500966413,0.006972268754393249,0.00022647108056635782,3.690134360088135e-06,1.8498953339425087e-36,5.162931131382161e-40,0.9996560947041002,0.032083219759453024,0.0462486769034252,0.0052894639362024345,3.63966159681077e-38,5.338224594433244e-07,0.00019596585074494683,7.458236547841067e-12,3.6170741964283917e-32,0.249451224369629,0.008868998964834302,0.055692995391819475,6.87632187023149e-32,0.5438435902035001,0.00010044854934352215,1.4647486957239946e-38,5.085639192609056e-07,0.0007536322008357933,1.5867622469710526e-35,0.002689573088809888,0.9021893497431388,0.9208964286455583,0.84417964569553,0.9519080713260174,0.9932541411416975,0.838333195040507,7.104685332119764e-43,3.008809180713846e-06,1.5784250980372003e-09,1.885965420787519e-07,0.0010081495561309675,3.4445697131732467e-07,1.2336840156708657e-07,5.022341350065455e-07,0.0004888570365964333,5.466548788877033e-39,3.7346169525848202e-37,2.2341977448460867e-07,2.1579459651376372e-10,1.968475251214041e-06,0.0011740589525439556,3.8882040603082125e-07,4.464951151094428e-05,0.933865440438917,1.6174423209290476e-28,0.9414434657790672,0.16613847452758584,0.9548664943977345,1.5303399999205572e-07,0.18383985686704885,2.5524847366538743e-39,0.01996971239372043,1.9177066225573267e-21,2.025919644507612e-28,6.816675499616992e-08,4.6373985885482464e-45,0.8499302883872542,0.8920582874040694,0.9381806076031403,0.9480872367703054,1.275806344815525e-37,0.9553633963532472,0.9290928395490298,0.9616550329203962,0.9720278499997581,3.569337261484342e-24,0.006347989775315727,2.7617719155771042e-40,0.962551794961564,9.98855237316626e-05,9.548558742996917e-31,3.83593757558598e-07,0.0046743956154754,0.0065893583994647365,0.02773098423912861,3.043498063482106e-39,5.38070705203425e-43,0.7803427406604597,0.978357296147021,0.9905570284382957,8.50254588677005e-06,0.9978705768474561,0.7618176478925526,0.13304117309575794,0.005629070708994928,0.9929560283840015,0.33713695309260117,3.7088132644088573e-37,0.8861440682230446,0.9247351288449963,0.9913542453519371,1.4820667149070016e-05,0.9666256540090234,0.010853863270545591,0.9995759794641393,4.1526284652436207e-05,7.566278984063023e-05,2.4063070914229426e-07,1.0199288339935448e-05,0.9751110249874541,0.960807756695669,0.9670537453100368,0.859675962243659,2.253803619158957e-10,9.181189643480825e-36,4.60117515120127e-41,0.0004878305947246206,1.769404509570858e-35,0.9989395379847338,0.9996705146404872,0.9982178222655621,1.7320337471100635e-05,0.0007510555713758983,9.716276164918899e-08,8.365221765017913e-37,0.9470192079020568,4.994432322715469e-39,0.993960039519784,1.321167962334747e-35,0.9456299569370815,0.8728757848044303,0.0012617400912197263,0.01496278988935881,0.9524477368735534,7.651061176759406e-05,0.9503287659049948,1.0499376360482594e-39,0.004275358652015249,0.0017782227580824762,0.0006006656017728599,0.003663260709315545,0.9248162296999811,0.9575506736538298,5.528510768906341e-40,0.9729865352403501,0.00010249827031964706,0.66430466067674,9.17406257489755e-42,0.9836377136973862,1.9645171672728625e-26,2.0050578069501978e-45,2.2042750779556824e-43,2.2725431598996512e-05,0.0013639642551652308,0.003184956738697002,2.4533176834807804e-41,4.144097396783008e-36,0.00013144893621697983,0.0001019267043881145,7.4489519078923046e-34,6.5726118074295875e-31,9.173494261876276e-12,0.956660471881629,0.8773203626610748,0.9941054250210283,2.3002825366964808e-05,2.615228330202949e-26,0.9997084731131415,0.06601417179651582,3.8791808127306053e-32,2.9620941765046895e-05,0.95121069770792,0.0001747788558065065,0.0007943807443641112,1.6527919646577568e-36,0.9254556868106164,0.007846938153775948,3.3507271024865564e-29,0.9971092567266028,0.0022155846448594107,2.305538349426442e-35,3.3590999799765796e-38,1.2897086867753703e-45,4.448999312679382e-28,0.0042351025409061,0.02350223994738007,0.008076267180241565,0.9152551329502953,0.00041473128616998533,0.9823582930727311,0.8015768332090947,1.5329211569789395e-44,0.12085115580520621,0.0017126536817005634,0.0021297135134954502,9.03990601302395e-36,0.0005046656732322466,7.72424525771141e-06,0.9687755956108802,0.9675443081109159,1.242150298413731e-12,0.9805474445874623,1.2889953934966824e-44,0.005764838603074934,1.3227097099909685e-39,0.0004312102260613914,8.633062041730371e-37,0.004299030360617252,0.007033462800222458,0.8815137545819599,0.6122765778563044,1.7987775961417774e-10,0.012380492363086604,0.7953607794364592,0.0025960643106617935,6.140698044448134e-35,0.9978792959817533,0.9969870751511528 -हे,rgb,1.0,1.0,0.955444705067808,1.0,0.9996111504706406,0.9999999999999998,1.0,1.0,1.0,1.0,0.12274880228802587,0.46346168777182173,0.34683384348845214,1.0,1.0,1.0,0.9804943480694293,0.9535981054780209,0.9805103298831396,0.9867794949987261,0.9996658583969991,0.9999999999733353,0.9999999999999998,0.999999999999962,0.9999999999608149,0.9999872125377137,1.0,0.9999999999009961,1.0,0.9999999999997213,0.9999999999999996,0.9888588748596382,0.9999999999999989,1.0,1.0,1.0,0.9156831002141624,0.9999999485181759,0.9999999999645197,0.9999999999997866,1.0,0.9999999984047976,0.9999999999999989,0.9999999999999893,1.0,0.7902499327901853,0.9854548730813747,0.9546303368052079,1.0,0.9999999985076988,0.9999999999999998,1.0,1.0,0.9999999999999933,1.0,0.9999999999999218,0.9877262014591378,0.9700669355917777,0.4142114727964974,0.2596436444470644,0.12617650754541007,0.9999367690151626,1.0,0.9999999811767198,0.9999999999971656,0.9999999999999951,0.9999995675998752,1.0,1.0,1.0,0.9999999999999964,1.0,1.0,1.0,1.0,0.9999999948260685,0.9999975104496472,0.9999999999999667,0.9999999999878599,0.9455513931650797,1.0,0.9777890019030628,0.9999999982582921,0.8567021621699682,1.0,0.9999999956899621,1.0,0.9999999536840151,1.0,1.0,1.0,1.0,0.9962941468769976,0.9630955763556297,0.9226581198822655,0.8794076136427355,1.0,0.8524906617558335,0.9831574838847598,0.8586374876383718,0.7228731683503877,1.0,0.9999999999997207,1.0,0.707398328730988,0.9999999999999996,1.0,0.9999999999998888,0.9998743415630705,0.9999999999997293,0.9999349079814249,1.0,1.0,0.44068186346906296,0.17837792195457017,0.12971524269131518,1.0,0.08375276933193126,0.503675752014936,0.960377403306489,0.9909479023392743,0.1051616899125886,0.999999999710262,1.0,0.3210429491875674,0.9999976618462187,0.1117318324374172,1.0,0.999999147874101,0.9999999999990667,0.919222821883214,1.0,0.9999999999999998,1.0,1.0,0.9885200975590372,0.9856845405624529,0.9756619738975719,0.9999999652961306,0.9999999999997415,1.0,1.0,0.9999999999999967,1.0,0.9978022380035662,0.9040191312203604,0.9955359782924742,0.9999999999963938,0.9999994389751937,0.9999999999999951,1.0,0.9999992956160396,1.0,0.11902409754506435,1.0,0.268926303509735,0.3735737575488728,0.999999999980522,0.9999999958868835,0.9946605372031668,0.9999999999998181,0.9934569151452443,1.0,0.999999999948463,0.9999999999939775,0.999999999999551,0.9999999999892251,0.3001910281947271,0.24599943317615788,1.0,0.9999971481747586,0.9999999999999998,0.999999992371195,1.0,0.9999929865005046,1.0,1.0,1.0,0.9999999999999862,0.9999999999837375,0.9999999999604052,1.0,1.0,0.9999999999999996,0.9999999999999996,1.0,1.0,1.0,0.24844016023917811,0.37279734506582735,0.12080918313699927,1.0,1.0,0.8276052121265861,0.9999999999817464,1.0,1.0,0.22674227781765177,0.9999999999999993,0.9999999999999933,1.0,0.9999996158314431,0.9999999999795546,1.0,0.08599722277854618,0.9999999999999585,1.0,1.0,1.0,1.0,0.9999999999996805,0.999999983901666,0.9999999999329292,0.32136864059920967,0.9999999999998699,0.1465512596113264,0.43414906003627596,1.0,0.8964436628425628,0.9965737046594363,0.9953816672612417,1.0,0.9999999999999964,0.9999999328111479,0.9413551309287139,0.929298309999003,1.0,0.9451837654475207,1.0,0.9907807046432305,1.0,0.99999999999995,1.0,0.9999999999998639,0.9885209498952486,0.3272264069508489,0.591154699332913,0.9999999999996945,0.999999999999194,0.99999996694521,0.9999999993596651,1.0,0.0987548845820415,0.09402182556943192 -हैं,rgb,1.0,0.9999996921436654,0.0023511750687510292,0.0015114297553579488,0.0002481142079763833,1.0,1.0,1.0,1.0,1.0,0.37747627744060636,0.01973557683270037,0.03849112648310501,0.9999992225288433,0.014997985727329074,1.0,0.9960455517210768,0.9910519378460115,0.9973157615369179,0.9999996490792314,0.9999920662276955,0.9999999926780252,1.0,0.9999999900897284,0.9999999999978662,0.889206957515378,1.0,0.999999999997133,1.0,0.9968464150841472,1.0,0.0006628478531794996,1.0,1.0,0.002184687716125533,1.0,0.9999959916436002,0.9999999120828256,0.9999999999999452,0.9999999999999996,0.0004898054676012241,0.9782956036661911,1.0,0.9887515975722685,1.0,0.0031321000187394202,0.0006564297904260572,0.002423103963078208,1.0,0.9999999999998297,1.0,0.0005550936743797188,1.0,1.0,1.0,0.9999999999999998,0.9975397987610336,0.9920342357669276,0.02450940688239885,0.07136224133872114,0.38380439739406774,0.9999981206106647,1.0,0.930840113542087,0.9875544004698597,0.9999999997703184,0.9980440565700469,1.0,1.0,1.0,1.0,0.0005956646622057432,0.0003355073543410682,1.0,0.9999999924967579,0.9838036870563678,0.9713313994991657,0.9999999983420993,0.9999999920106147,0.9832443156270125,1.0,0.9973741167232185,0.9999999999918583,0.9485457427123843,1.0,0.9999999999677489,1.0,0.9999998213286674,1.0,1.0,1.0,1.0,0.9992872532499887,0.9787167472605215,0.9717744861182217,0.9526381168613013,1.0,0.9465988553611667,0.9976922152531239,0.9626100102561942,0.9118026305389925,1.0,0.9999999999999996,0.0010395164683204906,0.8397174475928232,1.0,1.0,0.9999999862995983,0.3432822105508381,0.9999999999999996,0.9754419606269749,0.0006875330661489222,0.0031567173813681374,0.014594275003225259,0.1314562443028269,0.26659929328319276,1.0,0.716112876789448,0.017672480376654365,0.015356475256950337,0.000640724220956311,0.3033859591884419,0.9999999999999554,0.0003113028084768594,0.024981300022055498,0.9999999994227169,0.25270944566050746,1.0,0.9999999999669757,0.9999999999999971,0.9999952837939698,1.0,1.0,1.0,1.0,0.999625261961582,0.9987066435258539,0.9976499931449507,0.9999999999979261,0.9936345924799349,0.001490065077575294,1.0,1.0,0.00017876650780992862,0.9999999542419539,0.999995313580303,0.9999996754208401,0.9999999945158908,0.9948353304057547,0.9999999992793769,0.00027332131241543053,0.9999999999358831,1.0,0.4059139411134033,1.0,0.062250968143103845,0.028084994959032113,0.9999999999898093,0.9999999987505495,0.9996608803458648,0.9999999999995337,0.999476145715662,1.0,0.9999999999936202,0.999999999999237,0.9999999999999387,0.9999999999994136,0.04464377255086401,0.07914338290825512,0.000920554244523197,0.9999999997980109,1.0,0.9999999999986713,1.0,0.9999999996278908,1.0,1.0,0.004738280237186659,0.9999999999999525,0.9999999999934583,0.9999999999931983,1.0,0.0020742300298041564,1.0,1.0,1.0,4.1299156622234366e-05,0.9999998679682226,0.07792282938224893,0.029844313667600313,0.4225372768852133,1.0,1.0,0.9999878213133522,0.9999999999999838,1.0,1.0,0.05466581642319194,1.0,1.0,0.00025197840450643256,0.9999999999560079,0.999999999999535,1.0,0.6020300806239829,0.9999999999999998,1.0,0.0004598871321495244,0.011013971163738982,1.0,0.9999999999999973,0.9999999790460539,0.9999999999966998,0.04175869150563301,0.9999999999999858,0.13360570834271362,0.017198089863452,1.0,0.002526434717991295,0.0004044636550475493,0.0003686351766036587,0.00019806467771054666,1.0,0.8878075889771462,0.9899441585443917,0.9848880783636128,0.9999996933337031,0.9962892044938806,1.0,0.0006478183134096124,0.006457072248557079,0.9999999999999925,0.0002857175585276909,0.9999999999999998,0.0006429776366523593,0.02417745296973589,0.009442908580021293,0.9871886077759126,0.9999999999999984,0.9999999999949349,0.9999999954317336,0.0012210090657472214,0.7604310589617179,0.6102225053166594 -होता,rgb,0.35417474124715653,0.9999999961937336,0.9912571488841205,1.8312675135429574e-07,0.9089445010202344,0.9999999997812632,0.004851157762916267,0.999999996300653,0.9999999968752635,0.9999999925122652,0.9999260788736415,0.9993033650849029,0.9995402483254477,0.999999993577998,6.302899738028679e-08,6.158294894204633e-05,0.9989401885733614,0.9991155433068138,0.9991417921118065,0.9999998120651443,0.9996516984343291,0.9603209217156149,0.9999999997225817,0.46342246483825766,0.9999999998707616,0.7809165019476038,0.19372136691677566,0.9999999998465023,0.0001995321792330621,0.9999998875264804,0.9999999997801954,0.9864271515693405,0.9999999997134505,0.9999997568160185,0.0002841046524861654,6.818259518912323e-05,0.9999995793321124,0.996439223301663,0.9999999996662352,0.9999999994824038,1.4089822814299033e-06,0.999999861339829,0.9999999997687494,0.9999996371437416,0.0004860349780098304,0.9987715342716493,0.9900052435753552,0.9912779875845478,0.0009325749220113939,0.9999999684639717,0.9999999997715345,1.0745831152965934e-06,0.9999999951082545,0.9999999995595474,0.00023008446989892037,0.9999999996101516,0.9999999495704092,0.9999999092493379,0.9994222743340021,0.9997013064372534,0.9999212213736853,0.999616492053792,4.9682462403154506e-05,0.9999997727617344,0.999999810262391,0.756257563026693,0.7776312174671705,0.9999999931001551,0.9999999958684032,0.9999999970158537,0.9999999996319433,5.864801440599532e-07,2.164103545468426e-06,0.9999999904177955,0.9999999994099518,0.9999998931717714,0.7307997429358338,0.69599867711249,0.9389671735968288,0.9999998631476218,0.2563420140466627,0.9999999426803354,0.9999861082315861,0.999999721473353,0.9999999965128672,0.9999714525096033,0.00014080395376746903,0.9939675431214698,0.8349919046731827,0.28807564804010855,0.9999999956894554,5.470143979983324e-05,0.9999999724788394,0.9999998592427628,0.9999998164214801,0.9999997435818131,0.00023082513921441768,0.9999997144061968,0.9999999479091,0.999999759768958,0.9999995549605403,0.005466827938455569,0.9999999994362196,4.2340630934556637e-07,0.9999993724127936,0.9999999997895777,0.0005561252455037577,0.5407659636314568,0.8280611246426732,0.9999999993631317,0.9353708104944137,6.510453636553171e-07,1.3138847909807734e-07,0.9995507099716022,0.9998465841471035,0.999917368045305,0.9999999614268945,0.9999889997944402,0.9991698454536431,0.9862506945425088,0.9838437659996924,0.9999643505424409,0.999999982942288,1.552232931529693e-06,0.9997542107778555,0.999999998424473,0.9999599796718193,0.9999999725382068,0.9999999135584007,0.9999995166001955,0.9999999038085564,0.9999996712115569,0.9999999997896882,0.999999991088906,0.9999999528889343,0.999610594910531,0.9992961871948817,0.9993190979576773,0.9999999570467567,0.9999998299222933,0.00031464409151875307,0.00021186332943323366,0.9999999996109219,3.92553815733211e-06,0.9999999064803083,0.9999996264303176,0.9999999834269231,0.9138508535902745,0.7248382175618872,0.6031334937671261,1.7937179801637343e-06,0.9999994821854302,0.0001157844866647945,0.9999317846824023,0.00022919618934744496,0.9996915063743265,0.9995264063971976,0.9999999998858811,0.9999999996812672,0.999373576055989,0.9999999999419258,0.9992906209986123,1.2239618912846253e-05,0.9999999998698985,0.9999999999036993,0.9999999999274034,0.9999999998894473,0.9996528812541722,0.9997260920412874,4.776819691038718e-07,0.9999994716514131,0.9999999997711255,0.9999997274858586,5.628999516631055e-05,0.9999995849935431,0.004753629375430254,6.04840638071765e-05,2.63330512700999e-07,0.9999999999585396,0.9999999998904014,0.9999999998753013,4.032811279893916e-05,0.0003703839482827594,0.999999999709249,0.9999999997892675,0.0005459066351450579,2.8093741880686126e-05,0.9999999978093586,0.9997214141889442,0.9995126506430747,0.999929636862122,0.9999981964782259,0.2997229562342742,0.999999466355891,0.9999997306816383,0.0010524692774627569,0.9999999636175783,0.9998248685188196,0.9999999997368914,0.9999999995006064,2.2927328602592847e-06,0.9999993813895466,0.9999999998673321,0.27430563147214393,0.9999844451607726,0.99999999947299,0.0002318864140133048,1.0039110100158695e-06,6.63886357190041e-08,0.21313322761968503,0.9999986815927546,0.9974098592777174,0.9999999998601832,0.999602758495715,0.9999999999314986,0.9999193233155456,0.9994849944764199,4.715162507850253e-05,0.9964093699260387,0.9742078287593701,0.9828800055642087,3.469001809452212e-06,0.9999999996087849,0.9999997171467653,0.9992099055657886,0.999153497835666,0.9999999962094432,0.9995170003545456,4.8196803840074044e-05,0.9839644818562002,6.133923252547682e-05,0.9999764659945513,2.255157473960245e-06,0.9999999994450048,0.9872617431373643,0.9997452468879443,0.9990782464751755,0.9999997476819905,0.9999997788368721,0.999999591970457,0.9944543238128437,0.0005195163875066378,0.9999697826818846,0.9999681460863759 diff --git a/testResults/testing_hindi/NoOfDataPoints/6000/results.txt b/testResults/testing_hindi/NoOfDataPoints/6000/results.txt deleted file mode 100644 index db11230..0000000 --- a/testResults/testing_hindi/NoOfDataPoints/6000/results.txt +++ /dev/null @@ -1,2 +0,0 @@ -Test Instances :: arch/arch_3 banana/banana_3 cabbage/cabbage_4 carrot/carrot_4 corn/corn_4 cube/cube_2 cuboid/cuboid_4 cucumber/cucumber_3 cylinder/cylinder_2 eggplant/eggplant_2 lemon/lemon_2 lime/lime_3 orange/orange_1 plum/plum_3 potato/potato_1 semicylinder/semicylinder_3 tomato/tomato_1 triangle/triangle_3 -Tokens :: आलूबुखारा पका चित्र हैं एक खीरा उपयोग अर्द्ध रस लिए विभिन्न इसका फल छिला सब्जी बेलनाकार पानी नीबू हुआ बेंगन मक्का आर्च कोई सेब से भुट्टा इसको संक्षेत्रनुमा होता निम्बू प्लास्टिक बहुत वर्ग बीट रहा संतरे जाता है हे आलू बेंगनी मेहराब नीला इसे बनाने पत्तागोभी अन्य जो बैंगनी रबर संतरा किया केले भुट्टे वृत्त खंड मीठा सलाद घनक्षेत्र केला नारंगी क्षेत्र रूप मकाई खट्टा अनाज सिलेंडर त्रिभुज चीज़ रही खीरे प्रकार लाल टमाटर व्यंजन रंग साबुन काग़ज़ी आयताकार अच्छा आधा कहेते का गोभी शरीर बेलन अर्ध अमरुद बंद और फसल सफ़ेद आकर हरा कच्चा ये यह स्वास्थ्य या वाला भोजन षटफलक टुकड़ा घनाकार व्यंजनों नीली नीले लग बैगन चौकोर में ककड़ी घनाभ बेर मकई तैयारी भी वास्तु पत्ता बैगनी बैंगन अमरूद नींबू नुमा पीले वस्तु आम गाजर ह त्रिकोण आकार घन मक्के हरी हरे पीला काले चोकोर त्रिकोणीय को दिखने गोबी की छोटा के पत्ती कहा फूलगोभी ककड़ी इस्तेमाल फिर रब्बर सबजी diff --git a/testResults/testing_hindi/negative_insts.csv b/testResults/testing_hindi/negative_insts.csv deleted file mode 100644 index 3407d1f..0000000 --- a/testResults/testing_hindi/negative_insts.csv +++ /dev/null @@ -1,13 +0,0 @@ -,विभिन्न,अर्द्ध,चित्र,हैं,एक,खीरा,उपयोग,लिए,केला,इसका,फल,छिला,से,बेलनाकार,फूलगोभी,पानी,नीबू,आकर,बेंगन,मक्का,आर्च,कोई,सेब,भुट्टा,इसको,संक्षेत्रनुमा,होता,निम्बू,प्लास्टिक,मीठा,वर्ग,बीट,रहा,संतरे,जाता,है,हे,आलू,बेंगनी,मेहराब,नीला,इसे,बनाने,पत्तागोभी,अन्य,जो,बैंगनी,रबर,किया,केले,भुट्टे,वृत्त,आकार,बहुत,और,घनक्षेत्र,नारंगी,क्षेत्र,पत्ता,रूप,मकाई,खट्टा,अनाज,सिलेंडर,त्रिभुज,चीज़,बेर,खीरे,प्रकार,लाल,टमाटर,व्यंजन,की,रंग,साबुन,काग़ज़ी,आयताकार,हरे,अच्छा,आधा,कहेते,का,गोभी,शरीर,अर्ध,अमरुद,बंद,सलाद,फसल,सफ़ेद,हुआ,हरा,रस,ये,बेलन,स्वास्थ्य,कच्चा,सब्जी,वाला,भोजन,षटफलक,टुकड़ा,घनाकार,व्यंजनों,नीली,नीले,लग,बैगन,चौकोर,संतरा,ककड़ी,घनाभ,रही,मकई,तैयारी,भी,वास्तु,यह,बैगनी,के,अमरूद,या,नींबू,नुमा,पीले,वस्तु,आम,गाजर,ह,त्रिकोण,पका,घन,मक्के,हरी,खंड,पीला,काले,चोकोर,त्रिकोणीय,को,गोबी,दिखने,में,छोटा,बैंगन,पत्ती,कहा,आलूबुखारा,ककड़ी,इस्तेमाल,फिर,रब्बर,सबजी, -lemon/lemon_4,triangle/triangle_1,orange/orange_2,,eggplant/eggplant_3,,cube/cube_4,cube/cube_1,arch/arch_1,cube/cube_4,triangle/triangle_1,triangle/triangle_1,cube/cube_4,lemon/lemon_1,orange/orange_2,cylinder/cylinder_1,cube/cube_4,cube/cube_3,orange/orange_2,cylinder/cylinder_1,cube/cube_4,orange/orange_3,orange/orange_4,cucumber/cucumber_4,cube/cube_4,cylinder/cylinder_1,cabbage/cabbage_1,semicylinder/semicylinder_2,cube/cube_4,orange/orange_2,cucumber/cucumber_4,potato/potato_4,cucumber/cucumber_4,eggplant/eggplant_3,cube/cube_3,cube/cube_1,,corn/corn_1,banana/banana_4,cylinder/cylinder_1,orange/orange_2,orange/orange_3,cylinder/cylinder_1,cube/cube_4,cylinder/cylinder_1,cube/cube_4,arch/arch_1,cylinder/cylinder_1,orange/orange_2,cube/cube_1,cube/cube_4,cube/cube_4,orange/orange_2,orange/orange_2,cube/cube_1,cuboid/cuboid_3,potato/potato_4,cube/cube_3,cucumber/cucumber_4,cylinder/cylinder_1,semicylinder/semicylinder_1,cube/cube_4,cube/cube_3,cube/cube_4,orange/orange_3,semicylinder/semicylinder_2,orange/orange_2,lime/lime_4,cube/cube_4,tomato/tomato_3,banana/banana_4,cube/cube_3,cube/cube_4,,corn/corn_1,orange/orange_3,cube/cube_4,cabbage/cabbage_1,potato/potato_3,arch/arch_2,carrot/carrot_3,triangle/triangle_1,,cylinder/cylinder_1,cube/cube_4,orange/orange_3,cube/cube_4,cylinder/cylinder_1,cube/cube_4,cube/cube_4,cube/cube_4,cube/cube_4,potato/potato_3,cube/cube_3,,orange/orange_3,arch/arch_4,cube/cube_4,cylinder/cylinder_1,cabbage/cabbage_1,orange/orange_2,cabbage/cabbage_1,carrot/carrot_3,orange/orange_2,eggplant/eggplant_1,orange/orange_3,orange/orange_3,orange/orange_2,cylinder/cylinder_1,potato/potato_4,cabbage/cabbage_1,cube/cube_4,cabbage/cabbage_1,orange/orange_2,cube/cube_4,lime/lime_4,cube/cube_3,potato/potato_2,,cylinder/cylinder_1,,cube/cube_4,orange/orange_4,eggplant/eggplant_1,banana/banana_4,eggplant/eggplant_1,eggplant/eggplant_3,cube/cube_3,semicylinder/semicylinder_1,cylinder/cylinder_1,eggplant/eggplant_1,cube/cube_4,orange/orange_2,cube/cube_4,cube/cube_4,orange/orange_2,eggplant/eggplant_1,cylinder/cylinder_1,potato/potato_4,cabbage/cabbage_1,arch/arch_1,cylinder/cylinder_1,lime/lime_4,,cube/cube_4,cylinder/cylinder_1,cube/cube_4,cylinder/cylinder_1,cucumber/cucumber_4,cube/cube_4,cube/cube_4,orange/orange_2,carrot/carrot_2,semicylinder/semicylinder_1, -orange/orange_3,triangle/triangle_2,banana/banana_2,,cabbage/cabbage_2,,cube/cube_1,,,cube/cube_3,cube/cube_3,cube/cube_3,orange/orange_4,eggplant/eggplant_4,potato/potato_2,orange/orange_2,cube/cube_3,arch/arch_2,potato/potato_3,cube/cube_4,orange/orange_4,orange/orange_2,tomato/tomato_3,lime/lime_4,orange/orange_4,arch/arch_1,banana/banana_4,arch/arch_2,cube/cube_3,potato/potato_2,lime/lime_1,potato/potato_3,lime/lime_4,lemon/lemon_1,arch/arch_2,,,,cube/cube_3,orange/orange_2,orange/orange_4,orange/orange_2,cube/cube_1,cuboid/cuboid_1,orange/orange_2,potato/potato_3,cabbage/cabbage_2,cube/cube_1,potato/potato_2,,cube/cube_3,orange/orange_4,orange/orange_4,orange/orange_4,cuboid/cuboid_1,,potato/potato_3,arch/arch_2,lime/lime_4,orange/orange_2,plum/plum_4,orange/orange_4,arch/arch_2,orange/orange_4,orange/orange_2,eggplant/eggplant_1,potato/potato_2,lime/lime_1,cube/cube_1,orange/orange_2,banana/banana_2,cucumber/cucumber_4,cube/cube_3,,,orange/orange_2,potato/potato_3,orange/orange_4,potato/potato_2,cube/cube_3,cucumber/cucumber_4,cube/cube_3,,orange/orange_2,cube/cube_1,banana/banana_4,potato/potato_3,orange/orange_2,cube/cube_3,orange/orange_4,orange/orange_4,potato/potato_2,potato/potato_2,cucumber/cucumber_4,,orange/orange_2,cabbage/cabbage_1,potato/potato_2,cube/cube_3,cabbage/cabbage_3,orange/orange_4,cucumber/cucumber_4,cucumber/cucumber_4,lime/lime_2,cube/cube_3,orange/orange_2,orange/orange_2,cuboid/cuboid_1,cube/cube_4,potato/potato_3,cube/cube_3,cube/cube_1,orange/orange_2,triangle/triangle_1,orange/orange_4,lime/lime_1,arch/arch_2,tomato/tomato_3,,orange/orange_2,,cube/cube_3,tomato/tomato_3,cube/cube_4,banana/banana_2,cucumber/cucumber_4,,arch/arch_2,banana/banana_2,cube/cube_4,potato/potato_4,potato/potato_2,potato/potato_3,orange/orange_4,cube/cube_1,orange/orange_4,cucumber/cucumber_4,orange/orange_2,potato/potato_3,potato/potato_4,lemon/lemon_4,orange/orange_2,lime/lime_1,,cube/cube_3,cube/cube_1,cube/cube_3,arch/arch_1,lime/lime_4,cube/cube_1,cube/cube_3,banana/banana_2,cucumber/cucumber_4,banana/banana_2, -,cube/cube_3,banana/banana_1,,,,arch/arch_2,,,potato/potato_2,cuboid/cuboid_2,arch/arch_2,orange/orange_2,potato/potato_2,cucumber/cucumber_4,orange/orange_4,arch/arch_2,carrot/carrot_2,potato/potato_2,cube/cube_3,orange/orange_2,orange/orange_4,tomato/tomato_4,lime/lime_1,orange/orange_2,semicylinder/semicylinder_4,banana/banana_2,arch/arch_4,arch/arch_2,tomato/tomato_3,cylinder/cylinder_1,potato/potato_2,lime/lime_2,lime/lime_1,arch/arch_4,,,,cube/cube_1,cuboid/cuboid_1,carrot/carrot_3,orange/orange_4,,arch/arch_4,orange/orange_4,tomato/tomato_3,potato/potato_2,cuboid/cuboid_1,tomato/tomato_3,,potato/potato_2,orange/orange_2,carrot/carrot_3,corn/corn_1,cylinder/cylinder_1,,potato/potato_2,cabbage/cabbage_3,cucumber/cucumber_1,cube/cube_1,tomato/tomato_2,orange/orange_2,arch/arch_4,orange/orange_2,potato/potato_3,potato/potato_4,tomato/tomato_3,cuboid/cuboid_2,arch/arch_1,orange/orange_3,cucumber/cucumber_4,arch/arch_2,arch/arch_4,,,orange/orange_4,potato/potato_2,lime/lime_2,tomato/tomato_3,cylinder/cylinder_4,cucumber/cucumber_1,cylinder/cylinder_1,,cuboid/cuboid_1,arch/arch_1,potato/potato_3,potato/potato_2,orange/orange_4,arch/arch_2,orange/orange_2,orange/orange_2,lime/lime_2,tomato/tomato_3,arch/arch_2,,potato/potato_3,semicylinder/semicylinder_2,arch/arch_2,cube/cube_1,cabbage/cabbage_2,lime/lime_2,lime/lime_4,cucumber/cucumber_1,lime/lime_1,lime/lime_4,orange/orange_4,orange/orange_4,triangle/triangle_1,cube/cube_3,cucumber/cucumber_4,arch/arch_2,arch/arch_2,orange/orange_4,lemon/lemon_4,orange/orange_2,cylinder/cylinder_1,arch/arch_4,tomato/tomato_4,,cube/cube_1,,potato/potato_2,carrot/carrot_2,cube/cube_3,cucumber/cucumber_4,carrot/carrot_3,,arch/arch_4,cube/cube_1,orange/orange_4,potato/potato_2,carrot/carrot_3,potato/potato_2,orange/orange_2,arch/arch_2,carrot/carrot_3,carrot/carrot_3,cube/cube_1,potato/potato_2,potato/potato_2,triangle/triangle_2,orange/orange_4,cylinder/cylinder_1,,arch/arch_2,cuboid/cuboid_1,arch/arch_2,triangle/triangle_2,lime/lime_1,arch/arch_2,arch/arch_2,banana/banana_1,cucumber/cucumber_1,cube/cube_1, -,cylinder/cylinder_4,banana/banana_4,,,,arch/arch_1,,,arch/arch_2,,cabbage/cabbage_3,lime/lime_2,,carrot/carrot_3,cube/cube_1,arch/arch_4,cuboid/cuboid_3,eggplant/eggplant_1,cube/cube_1,lime/lime_2,carrot/carrot_3,carrot/carrot_2,cuboid/cuboid_2,lime/lime_2,cylinder/cylinder_4,cabbage/cabbage_3,cuboid/cuboid_3,arch/arch_4,carrot/carrot_2,cylinder/cylinder_3,cucumber/cucumber_4,lime/lime_1,lemon/lemon_3,cuboid/cuboid_3,,,,lime/lime_4,tomato/tomato_4,lime/lime_1,tomato/tomato_3,,cuboid/cuboid_3,cuboid/cuboid_1,arch/arch_2,,cuboid/cuboid_2,carrot/carrot_2,,arch/arch_2,lime/lime_2,lime/lime_1,eggplant/eggplant_4,lemon/lemon_4,,cucumber/cucumber_4,cuboid/cuboid_2,lime/lime_2,cuboid/cuboid_1,plum/plum_1,lime/lime_2,cuboid/cuboid_3,lime/lime_2,orange/orange_4,potato/potato_2,cabbage/cabbage_3,cylinder/cylinder_1,orange/orange_2,potato/potato_2,lime/lime_4,lime/lime_1,cuboid/cuboid_3,,,lime/lime_2,arch/arch_2,eggplant/eggplant_1,tomato/tomato_2,semicylinder/semicylinder_4,carrot/carrot_2,cuboid/cuboid_1,,tomato/tomato_4,arch/arch_4,orange/orange_4,tomato/tomato_3,cuboid/cuboid_1,arch/arch_4,semicylinder/semicylinder_1,cuboid/cuboid_1,cuboid/cuboid_3,tomato/tomato_2,cuboid/cuboid_3,,banana/banana_2,semicylinder/semicylinder_4,arch/arch_4,cuboid/cuboid_1,eggplant/eggplant_3,cube/cube_4,cabbage/cabbage_3,carrot/carrot_2,lemon/lemon_4,lime/lime_2,tomato/tomato_3,tomato/tomato_3,lemon/lemon_4,cube/cube_1,carrot/carrot_2,cabbage/cabbage_3,arch/arch_1,cabbage/cabbage_3,triangle/triangle_2,lime/lime_2,cylinder/cylinder_3,cuboid/cuboid_3,plum/plum_4,,cuboid/cuboid_1,,tomato/tomato_3,eggplant/eggplant_1,arch/arch_2,lime/lime_4,carrot/carrot_2,,cuboid/cuboid_3,arch/arch_1,orange/orange_2,cabbage/cabbage_3,carrot/carrot_2,tomato/tomato_3,lime/lime_2,arch/arch_1,carrot/carrot_2,carrot/carrot_2,cuboid/cuboid_1,carrot/carrot_3,cabbage/cabbage_3,lemon/lemon_3,cuboid/cuboid_1,cylinder/cylinder_3,,arch/arch_4,cuboid/cuboid_2,carrot/carrot_3,cuboid/cuboid_1,cylinder/cylinder_1,arch/arch_1,arch/arch_4,cucumber/cucumber_4,cabbage/cabbage_3,arch/arch_1, -,cube/cube_1,lemon/lemon_3,,,,orange/orange_2,,,carrot/carrot_3,,cuboid/cuboid_2,semicylinder/semicylinder_1,,carrot/carrot_2,cuboid/cuboid_1,cuboid/cuboid_3,cuboid/cuboid_2,eggplant/eggplant_3,cuboid/cuboid_1,semicylinder/semicylinder_1,lime/lime_1,lemon/lemon_4,cylinder/cylinder_1,semicylinder/semicylinder_1,,eggplant/eggplant_1,,cuboid/cuboid_3,eggplant/eggplant_1,triangle/triangle_2,cucumber/cucumber_1,cylinder/cylinder_1,lime/lime_2,cuboid/cuboid_2,,,,lime/lime_1,triangle/triangle_1,carrot/carrot_2,tomato/tomato_4,,triangle/triangle_1,tomato/tomato_4,arch/arch_4,,triangle/triangle_1,eggplant/eggplant_1,,carrot/carrot_3,semicylinder/semicylinder_1,carrot/carrot_2,corn/corn_2,cylinder/cylinder_4,,cucumber/cucumber_1,semicylinder/semicylinder_1,lime/lime_1,triangle/triangle_1,,semicylinder/semicylinder_1,cuboid/cuboid_2,semicylinder/semicylinder_1,carrot/carrot_3,cabbage/cabbage_3,eggplant/eggplant_1,cylinder/cylinder_3,cuboid/cuboid_1,tomato/tomato_4,lime/lime_2,cuboid/cuboid_2,plum/plum_4,,,eggplant/eggplant_1,arch/arch_4,lemon/lemon_4,carrot/carrot_3,,carrot/carrot_1,cube/cube_4,,triangle/triangle_1,cylinder/cylinder_1,carrot/carrot_3,arch/arch_2,tomato/tomato_4,cuboid/cuboid_3,semicylinder/semicylinder_2,cuboid/cuboid_3,semicylinder/semicylinder_1,carrot/carrot_3,cuboid/cuboid_2,,carrot/carrot_3,cabbage/cabbage_2,cuboid/cuboid_3,cuboid/cuboid_2,cucumber/cucumber_2,cylinder/cylinder_4,lime/lime_1,cucumber/cucumber_2,eggplant/eggplant_3,lime/lime_1,tomato/tomato_4,tomato/tomato_4,triangle/triangle_2,cuboid/cuboid_1,cucumber/cucumber_2,cuboid/cuboid_2,orange/orange_2,lime/lime_2,lemon/lemon_1,semicylinder/semicylinder_1,lemon/lemon_1,semicylinder/semicylinder_1,plum/plum_1,,triangle/triangle_1,,arch/arch_2,eggplant/eggplant_3,arch/arch_4,lime/lime_2,carrot/carrot_1,,cuboid/cuboid_2,lime/lime_2,lime/lime_2,cabbage/cabbage_1,cucumber/cucumber_2,tomato/tomato_4,semicylinder/semicylinder_1,orange/orange_2,carrot/carrot_1,carrot/carrot_1,triangle/triangle_1,carrot/carrot_2,eggplant/eggplant_1,cube/cube_1,tomato/tomato_4,triangle/triangle_2,,cuboid/cuboid_3,triangle/triangle_1,arch/arch_4,cylinder/cylinder_4,cylinder/cylinder_3,orange/orange_2,cuboid/cuboid_3,lime/lime_1,cucumber/cucumber_2,lime/lime_2, -,,triangle/triangle_2,,,,cuboid/cuboid_1,,,cuboid/cuboid_3,,semicylinder/semicylinder_1,semicylinder/semicylinder_2,,carrot/carrot_1,triangle/triangle_1,semicylinder/semicylinder_1,semicylinder/semicylinder_1,potato/potato_4,cuboid/cuboid_3,semicylinder/semicylinder_2,carrot/carrot_2,eggplant/eggplant_3,cylinder/cylinder_3,semicylinder/semicylinder_2,,eggplant/eggplant_3,,semicylinder/semicylinder_1,lemon/lemon_4,corn/corn_1,carrot/carrot_2,cylinder/cylinder_3,,semicylinder/semicylinder_1,,,,cuboid/cuboid_2,lemon/lemon_4,carrot/carrot_1,lime/lime_2,,plum/plum_1,triangle/triangle_1,cuboid/cuboid_3,,lemon/lemon_4,lemon/lemon_4,,carrot/carrot_2,semicylinder/semicylinder_2,carrot/carrot_1,plum/plum_2,semicylinder/semicylinder_4,,carrot/carrot_2,cylinder/cylinder_3,cucumber/cucumber_2,lemon/lemon_4,,semicylinder/semicylinder_2,semicylinder/semicylinder_1,semicylinder/semicylinder_2,carrot/carrot_2,cabbage/cabbage_1,eggplant/eggplant_3,triangle/triangle_2,arch/arch_4,,lime/lime_1,semicylinder/semicylinder_1,plum/plum_1,,,lemon/lemon_4,cuboid/cuboid_3,eggplant/eggplant_3,arch/arch_4,,corn/corn_1,,,lemon/lemon_4,triangle/triangle_2,carrot/carrot_2,arch/arch_4,triangle/triangle_1,cabbage/cabbage_3,semicylinder/semicylinder_4,semicylinder/semicylinder_1,semicylinder/semicylinder_2,tomato/tomato_4,semicylinder/semicylinder_1,,carrot/carrot_2,cylinder/cylinder_4,plum/plum_4,triangle/triangle_1,,plum/plum_4,lime/lime_2,eggplant/eggplant_1,lemon/lemon_1,cylinder/cylinder_1,lemon/lemon_4,lime/lime_2,lemon/lemon_1,cuboid/cuboid_3,eggplant/eggplant_1,semicylinder/semicylinder_1,cuboid/cuboid_1,eggplant/eggplant_1,lemon/lemon_3,semicylinder/semicylinder_2,cylinder/cylinder_4,plum/plum_2,plum/plum_2,,lemon/lemon_4,,arch/arch_4,eggplant/eggplant_4,cuboid/cuboid_3,lime/lime_1,cucumber/cucumber_2,,semicylinder/semicylinder_1,cylinder/cylinder_1,semicylinder/semicylinder_1,eggplant/eggplant_3,triangle/triangle_1,lemon/lemon_4,semicylinder/semicylinder_2,cuboid/cuboid_1,lemon/lemon_4,cucumber/cucumber_2,lemon/lemon_4,orange/orange_2,eggplant/eggplant_3,,triangle/triangle_1,corn/corn_1,,semicylinder/semicylinder_1,lemon/lemon_4,cuboid/cuboid_3,,cylinder/cylinder_4,cuboid/cuboid_1,triangle/triangle_1,eggplant/eggplant_1,eggplant/eggplant_1,cylinder/cylinder_1, -,,corn/corn_1,,,,arch/arch_4,,,triangle/triangle_1,,cylinder/cylinder_3,semicylinder/semicylinder_4,,corn/corn_1,lemon/lemon_4,cabbage/cabbage_3,cabbage/cabbage_3,eggplant/eggplant_4,cuboid/cuboid_2,semicylinder/semicylinder_4,carrot/carrot_1,,triangle/triangle_2,semicylinder/semicylinder_4,,cabbage/cabbage_2,,cabbage/cabbage_3,eggplant/eggplant_3,cylinder/cylinder_4,cucumber/cucumber_2,triangle/triangle_2,,cylinder/cylinder_3,,,,cylinder/cylinder_3,triangle/triangle_2,lime/lime_2,lemon/lemon_4,,,lemon/lemon_4,plum/plum_4,,triangle/triangle_2,eggplant/eggplant_3,,cuboid/cuboid_3,semicylinder/semicylinder_4,eggplant/eggplant_1,,,,cucumber/cucumber_2,semicylinder/semicylinder_2,eggplant/eggplant_1,triangle/triangle_2,,semicylinder/semicylinder_4,cabbage/cabbage_3,semicylinder/semicylinder_4,carrot/carrot_1,eggplant/eggplant_3,eggplant/eggplant_4,lemon/lemon_1,cylinder/cylinder_1,,triangle/triangle_2,cylinder/cylinder_3,plum/plum_2,,,eggplant/eggplant_3,plum/plum_4,cabbage/cabbage_2,cabbage/cabbage_3,,corn/corn_3,,,triangle/triangle_2,,carrot/carrot_1,cuboid/cuboid_3,lemon/lemon_4,semicylinder/semicylinder_2,plum/plum_4,semicylinder/semicylinder_2,semicylinder/semicylinder_4,cabbage/cabbage_3,cabbage/cabbage_3,,carrot/carrot_1,,plum/plum_1,triangle/triangle_2,,semicylinder/semicylinder_4,eggplant/eggplant_1,eggplant/eggplant_3,lemon/lemon_3,cylinder/cylinder_4,potato/potato_4,lemon/lemon_4,lemon/lemon_3,cuboid/cuboid_2,eggplant/eggplant_3,cylinder/cylinder_3,arch/arch_4,lemon/lemon_4,,semicylinder/semicylinder_4,lemon/lemon_3,,,,triangle/triangle_2,,cuboid/cuboid_3,,semicylinder/semicylinder_1,corn/corn_1,cabbage/cabbage_1,,cylinder/cylinder_3,semicylinder/semicylinder_2,semicylinder/semicylinder_2,cabbage/cabbage_2,semicylinder/semicylinder_2,potato/potato_4,semicylinder/semicylinder_4,arch/arch_4,eggplant/eggplant_3,cabbage/cabbage_1,triangle/triangle_2,eggplant/eggplant_4,cabbage/cabbage_2,,lemon/lemon_4,cylinder/cylinder_4,,semicylinder/semicylinder_2,triangle/triangle_2,potato/potato_3,,lemon/lemon_3,arch/arch_4,semicylinder/semicylinder_2,lemon/lemon_4,eggplant/eggplant_3,semicylinder/semicylinder_2, -,,corn/corn_3,,,,cylinder/cylinder_1,,,cylinder/cylinder_3,,,plum/plum_4,,corn/corn_3,triangle/triangle_2,semicylinder/semicylinder_2,cucumber/cucumber_2,plum/plum_4,triangle/triangle_1,plum/plum_4,lime/lime_2,,corn/corn_1,plum/plum_4,,eggplant/eggplant_4,,semicylinder/semicylinder_2,eggplant/eggplant_4,lemon/lemon_3,eggplant/eggplant_1,lemon/lemon_1,,triangle/triangle_4,,,,triangle/triangle_2,lemon/lemon_1,eggplant/eggplant_3,potato/potato_4,,,triangle/triangle_2,plum/plum_1,,lemon/lemon_1,eggplant/eggplant_4,,triangle/triangle_1,plum/plum_4,eggplant/eggplant_3,,,,eggplant/eggplant_1,cylinder/cylinder_4,eggplant/eggplant_3,lemon/lemon_1,,plum/plum_4,triangle/triangle_4,plum/plum_4,corn/corn_1,cabbage/cabbage_2,plum/plum_4,cylinder/cylinder_4,lemon/lemon_4,,corn/corn_1,cylinder/cylinder_4,,,,corn/corn_1,plum/plum_1,eggplant/eggplant_4,plum/plum_4,,corn/corn_2,,,lemon/lemon_1,,triangle/triangle_1,plum/plum_4,triangle/triangle_2,plum/plum_4,cabbage/cabbage_2,cylinder/cylinder_4,plum/plum_4,corn/corn_2,cucumber/cucumber_2,,corn/corn_1,,plum/plum_2,,,,eggplant/eggplant_3,eggplant/eggplant_4,,,lemon/lemon_1,potato/potato_4,,triangle/triangle_1,corn/corn_1,semicylinder/semicylinder_2,cylinder/cylinder_1,eggplant/eggplant_3,,plum/plum_4,semicylinder/semicylinder_4,,,,lemon/lemon_1,,plum/plum_1,,cabbage/cabbage_3,,cabbage/cabbage_3,,cabbage/cabbage_3,semicylinder/semicylinder_4,cylinder/cylinder_4,eggplant/eggplant_4,cabbage/cabbage_2,corn/corn_2,plum/plum_4,cylinder/cylinder_1,banana/banana_4,cabbage/cabbage_3,lemon/lemon_1,plum/plum_4,eggplant/eggplant_4,,triangle/triangle_2,lemon/lemon_3,,plum/plum_4,lemon/lemon_1,plum/plum_1,,semicylinder/semicylinder_4,cylinder/cylinder_1,tomato/tomato_2,eggplant/eggplant_3,corn/corn_1,semicylinder/semicylinder_4, -,,corn/corn_2,,,,triangle/triangle_2,,,semicylinder/semicylinder_2,,,cabbage/cabbage_2,,corn/corn_2,lemon/lemon_1,plum/plum_4,plum/plum_2,plum/plum_2,triangle/triangle_2,cabbage/cabbage_2,eggplant/eggplant_3,,cylinder/cylinder_4,cabbage/cabbage_2,,plum/plum_2,,plum/plum_4,orange/orange_4,triangle/triangle_4,lemon/lemon_4,cylinder/cylinder_4,,corn/corn_2,,,,cylinder/cylinder_4,lemon/lemon_3,banana/banana_4,lemon/lemon_3,,,lemon/lemon_1,plum/plum_2,,cylinder/cylinder_4,orange/orange_4,,cylinder/cylinder_3,cabbage/cabbage_2,banana/banana_4,,,,lemon/lemon_4,triangle/triangle_4,eggplant/eggplant_4,lemon/lemon_3,,cabbage/cabbage_2,cylinder/cylinder_3,cabbage/cabbage_2,eggplant/eggplant_4,eggplant/eggplant_4,orange/orange_4,lemon/lemon_3,triangle/triangle_2,,cylinder/cylinder_4,semicylinder/semicylinder_4,,,,eggplant/eggplant_4,plum/plum_2,lemon/lemon_3,plum/plum_1,,,,,lemon/lemon_3,,corn/corn_1,plum/plum_1,lemon/lemon_1,plum/plum_1,potato/potato_2,plum/plum_4,cabbage/cabbage_2,plum/plum_4,,,corn/corn_3,,,,,,cabbage/cabbage_2,cabbage/cabbage_3,,,plum/plum_4,lemon/lemon_1,,triangle/triangle_2,eggplant/eggplant_4,cylinder/cylinder_4,triangle/triangle_2,cabbage/cabbage_2,,cabbage/cabbage_2,,,,,lemon/lemon_3,,plum/plum_2,,semicylinder/semicylinder_2,,cabbage/cabbage_2,,,lemon/lemon_3,plum/plum_4,plum/plum_4,,orange/orange_4,cabbage/cabbage_2,triangle/triangle_2,lemon/lemon_1,cabbage/cabbage_2,lemon/lemon_3,plum/plum_1,plum/plum_4,,lemon/lemon_1,lemon/lemon_1,,plum/plum_2,cylinder/cylinder_4,,,triangle/triangle_4,triangle/triangle_2,plum/plum_1,banana/banana_4,eggplant/eggplant_4,lemon/lemon_3, -,,,,,,plum/plum_1,,,triangle/triangle_4,,,cylinder/cylinder_4,,plum/plum_4,lemon/lemon_3,plum/plum_1,,plum/plum_1,cylinder/cylinder_4,cylinder/cylinder_4,banana/banana_4,,lemon/lemon_3,cylinder/cylinder_4,,,,plum/plum_1,,,eggplant/eggplant_3,lemon/lemon_3,,,,,,triangle/triangle_4,,eggplant/eggplant_4,,,,lemon/lemon_3,,,lemon/lemon_3,,,semicylinder/semicylinder_2,cylinder/cylinder_4,eggplant/eggplant_4,,,,eggplant/eggplant_3,,,,,cylinder/cylinder_4,,cylinder/cylinder_4,corn/corn_3,plum/plum_4,,triangle/triangle_4,lemon/lemon_1,,,triangle/triangle_4,,,,lemon/lemon_3,,cabbage/cabbage_3,plum/plum_2,,,,,,,eggplant/eggplant_4,plum/plum_2,lemon/lemon_3,plum/plum_2,,semicylinder/semicylinder_4,,plum/plum_1,,,corn/corn_2,,,,,,corn/corn_1,,,,potato/potato_2,lemon/lemon_3,,cylinder/cylinder_4,cabbage/cabbage_3,triangle/triangle_4,plum/plum_1,corn/corn_1,,cylinder/cylinder_4,,,,,,,,,corn/corn_2,,,,,cylinder/cylinder_4,semicylinder/semicylinder_4,plum/plum_1,,,cylinder/cylinder_4,plum/plum_1,eggplant/eggplant_4,,,,plum/plum_1,,lemon/lemon_3,triangle/triangle_4,,,lemon/lemon_3,,,,plum/plum_1,plum/plum_2,corn/corn_1,corn/corn_3,cylinder/cylinder_4, -,,,,,,plum/plum_2,,,,,,,,plum/plum_1,,,,orange/orange_4,triangle/triangle_4,,eggplant/eggplant_4,,lemon/lemon_1,,,,,plum/plum_2,,,eggplant/eggplant_4,triangle/triangle_4,,,,,,,,banana/banana_2,,,,,,,triangle/triangle_4,,,triangle/triangle_4,,banana/banana_2,,,,eggplant/eggplant_4,,,,,,,,corn/corn_2,plum/plum_1,,,plum/plum_1,,,,,,,lemon/lemon_1,,potato/potato_2,,,,,,,,corn/corn_3,,,,,,,plum/plum_2,,,plum/plum_1,,,,,,eggplant/eggplant_4,,,,banana/banana_2,potato/potato_2,,triangle/triangle_4,,,,eggplant/eggplant_4,,,,,,,,,,,plum/plum_2,,,,,,,plum/plum_2,,,,plum/plum_2,,,,,plum/plum_2,,,,,,triangle/triangle_4,,,,plum/plum_2,,corn/corn_3,corn/corn_2,, -,,,,,,,,,,,,,,,,,,,,,,,triangle/triangle_4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,plum/plum_1,plum/plum_2,,,,,,,,,,,,,,,,,,,,corn/corn_2,,,,,,,,,,orange/orange_4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,corn/corn_2,,, diff --git a/testResults/testing_hindi_stem/NoOfDataPoints/6000/groundTruthPrediction.csv b/testResults/testing_hindi_stem/NoOfDataPoints/6000/groundTruthPrediction.csv deleted file mode 100644 index 3417773..0000000 --- a/testResults/testing_hindi_stem/NoOfDataPoints/6000/groundTruthPrediction.csv +++ /dev/null @@ -1,305 +0,0 @@ -Token,Type,0-arch/arch_3,1-arch/arch_3,2-arch/arch_3,3-arch/arch_3,4-arch/arch_3,0-banana/banana_3,1-banana/banana_3,0-cabbage/cabbage_4,1-cabbage/cabbage_4,2-cabbage/cabbage_4,3-cabbage/cabbage_4,0-carrot/carrot_4,1-carrot/carrot_4,2-carrot/carrot_4,0-corn/corn_4,1-corn/corn_4,2-corn/corn_4,3-corn/corn_4,4-corn/corn_4,0-cube/cube_2,1-cube/cube_2,2-cube/cube_2,3-cube/cube_2,4-cube/cube_2,0-cuboid/cuboid_4,1-cuboid/cuboid_4,2-cuboid/cuboid_4,3-cuboid/cuboid_4,4-cuboid/cuboid_4,0-cucumber/cucumber_3,1-cucumber/cucumber_3,2-cucumber/cucumber_3,3-cucumber/cucumber_3,4-cucumber/cucumber_3,5-cucumber/cucumber_3,0-cylinder/cylinder_2,1-cylinder/cylinder_2,2-cylinder/cylinder_2,3-cylinder/cylinder_2,4-cylinder/cylinder_2,0-eggplant/eggplant_2,1-eggplant/eggplant_2,2-eggplant/eggplant_2,3-eggplant/eggplant_2,4-eggplant/eggplant_2,0-lemon/lemon_2,1-lemon/lemon_2,2-lemon/lemon_2,3-lemon/lemon_2,0-lime/lime_3,1-lime/lime_3,2-lime/lime_3,3-lime/lime_3,4-lime/lime_3,0-orange/orange_1,1-orange/orange_1,2-orange/orange_1,0-plum/plum_3,1-plum/plum_3,2-plum/plum_3,3-plum/plum_3,4-plum/plum_3,0-potato/potato_1,1-potato/potato_1,2-potato/potato_1,3-potato/potato_1,0-semicylinder/semicylinder_3,1-semicylinder/semicylinder_3,2-semicylinder/semicylinder_3,3-semicylinder/semicylinder_3,4-semicylinder/semicylinder_3,0-tomato/tomato_1,1-tomato/tomato_1,2-tomato/tomato_1,3-tomato/tomato_1,0-triangle/triangle_3,1-triangle/triangle_3,2-triangle/triangle_3,3-triangle/triangle_3,4-triangle/triangle_3 -,,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,plum,plum,plum,nan,nan,nan,nan, , , , , ,nan,nan,nan,nan,nan,nan,nan,nan,nan -,rgb,0.00958721875047366,0.0008052892228908859,0.0018088905956080202,0.00044051334372685646,7.953272668513248e-05,0.0011499266146822145,6.284628712265852e-05,0.9997863368357285,0.9999955273042229,0.9999975778457926,0.9998410324180459,0.9793255763915366,0.9837765718210407,0.9858763156286617,0.9880829103852804,0.9857462629214955,0.9835300707673531,0.9813284950907115,0.9842719513286216,4.6090921610380365e-05,8.57891003576241e-05,7.188451433041955e-05,5.7917332305242434e-05,0.0003006325885617537,0.9999999999780249,0.9999999999610978,0.9999999999639018,0.9999999999491698,0.999999999841112,0.0008992845369222206,0.00020188753104663412,0.0005511431167224105,0.0005250330631799934,0.0006295679127034898,0.0008833708633731552,0.9999118327882137,0.9998566703172425,0.9999398359408093,0.9998949985406339,0.9998664055938467,0.9260977915869708,0.9615968737915189,0.9408780528767173,0.9002979535888457,0.9323506995486747,3.408759220384478e-08,3.600174969990248e-08,3.66744061966116e-08,4.190891866354995e-08,3.4680781393437987e-09,1.8538779224658654e-09,9.724292385938457e-10,4.482789373887049e-09,4.7703575862747035e-09,1.676209999006677e-05,0.00024068599086167546,5.521768085713937e-06,0.9999709277801776,0.9999606375402307,0.9999897441343994,0.9999697754144581,0.9999627174912985,0.989406593862637,0.9916775002644004,0.9975029654515962,0.9974545774118273,6.586445106219583e-09,4.565617649400694e-08,6.022403584768376e-09,5.6129974728344684e-08,6.733640573395725e-09,0.8169748070922684,0.847782035023325,0.8445723931683256,0.8888473772485066,0.00038429166697971054,0.00030908239548394455,0.00031894807998825153,0.0014773580177706342,0.0006376123609035686 -,shape,0.9820199919077396,0.7800376725954842,0.9999980557758633,0.999713847429551,0.9840832144096084,0.9998198908248254,0.6961632934112273,0.9999999580521275,0.999998931827094,0.9999999770686557,0.9999996467433718,0.9996611002205894,0.9993706935404704,0.9978736379958328,0.8916099116788561,0.727639735649467,0.8246683466285842,0.7135526310885348,0.6780536661423174,0.9235143479199155,0.9988351722956185,0.9963292050717658,0.9985616558377624,0.25378953168363966,0.9998130354238847,0.9992957201403085,0.9983700711162788,0.9964011029545266,0.7365852606839273,0.8075143782881776,0.9967711106013626,0.9259469468836949,0.9958458958695814,0.948593626553794,0.9967148307172964,0.9200200247052662,0.9654031420366224,0.8584130145672666,0.9049681806267434,0.9777464193576866,0.9999964479563312,0.999996283995302,0.9999236498594644,0.9999939216896746,0.9999976620270913,0.0001005871756592633,0.00027882676630683144,0.00011278931582722221,4.321329604395497e-05,0.19125005336612574,0.22073949182260763,0.7063600480419197,0.12038642802687849,0.11414644239509081,4.6467091742312844e-05,5.769820166524407e-05,0.00010650135903487196,0.9630822801432756,0.8035955871175519,0.8696204829075144,0.7844468508854949,0.8059797018770303,3.851023810535694e-07,3.8235640930923524e-05,3.139254452807747e-06,0.003297233993375336,0.009374333606523611,0.24036098877939,0.7273892911162049,0.9466165962060433,0.9170927908972075,0.00014020811705918728,4.3000019263392e-06,3.6607283929635686e-05,1.4728803947353217e-06,0.9999947695363094,0.9999343575186593,0.9998670727263659,0.9999135248939928,0.9991486501278138 -,object,0.14286936299096936,0.01924430904738141,0.5261243769028873,0.06482674868216817,0.0030076677222673556,0.28957664163049757,0.006834234799509753,0.9999855538469382,0.999997527958706,0.9999993568308168,0.9999689161061814,0.9699186171502286,0.9629778481627754,0.9617859521374792,0.7339948728083066,0.6169039849094746,0.6394644084274267,0.5817074353735607,0.7318142709317417,0.0028750192492212304,0.041915538011883996,0.017009008932903472,0.030889037420548843,0.0005728071824972022,0.9999944797381076,0.9999915689778052,0.9999830758522282,0.9999497656660883,0.999307009756446,0.009671459146687385,0.02562008139556822,0.012026122885665838,0.035144545310433914,0.01815473779783699,0.08247021436910852,0.9950014734704663,0.996856896547125,0.9959036140411024,0.996250672609291,0.9957243087198856,0.9428514999187065,0.9613392741181732,0.8433014327913108,0.9602020379105356,0.9915924747719821,3.806475191748146e-06,8.219752495900005e-06,4.646853046337279e-06,3.3492771072859303e-06,1.5748814788861576e-05,1.735735161999825e-05,2.7955214111097202e-05,1.4237579276971297e-05,1.5255350363291673e-05,4.815494614459963e-05,0.00024546280518949635,3.875511441284552e-05,0.9943146850092908,0.9777456168115202,0.985564812992272,0.9842637681636097,0.9817427929779026,0.006713647409495615,0.0763102330778047,0.03459861738915797,0.4157691042482859,2.8382039728611717e-05,0.00019776247612307527,9.699364039285497e-05,0.0004156913306431086,0.00021252748197834494,0.152402078822625,0.03199292148726529,0.0929404607400549,0.01920016449606139,0.19474959191968086,0.03182302385457384,0.07509153047992033,0.09474351739855293,0.03724724056452122 -अच्छ,rgb,2.993502483864806e-06,3.7978446705386527e-06,1.2471411765179751e-05,0.001169396461606878,0.001197642134469267,0.9999999999987794,0.9999999999996834,0.9999980432534447,0.9999998960009137,0.9999999366589525,0.9999999059928499,0.9999999999998721,0.9999999999999671,0.99999999999997,0.9999999563772285,0.9999999614342975,0.9999999649877899,0.9999999677502184,0.9999999712061344,2.6916914389268568e-05,6.0730512839218855e-05,0.00010018020348634788,0.0012094607543982096,0.0014315107028166547,1.0847975514428724e-12,1.0710091866053246e-12,1.5318637246106599e-12,2.0126734751903563e-12,6.910914424955176e-11,0.9986331800300541,0.9987435692713837,0.9988142621906353,0.9992625054053152,0.9994272835377457,0.9997433128301747,1.0,1.0,1.0,1.0,1.0,0.9999996953946737,0.9999997937581485,0.9999998500322375,0.9999998939728679,0.9999999788312621,1.0,1.0,1.0,1.0,0.9999919313053938,0.9999973358293064,0.999998242010078,0.9999979078323216,0.9999988629866902,1.0,1.0,1.0,0.9999999999995828,0.9999999999999554,0.9999999999999967,0.9999999999999993,1.0,1.0,1.0,1.0,1.0,0.999999999999672,0.999999999999537,0.9999999999997906,0.9999999999995899,0.9999999999998554,1.0,1.0,1.0,1.0,4.3874746956265016e-05,6.769874751862602e-05,0.00015447652434666826,0.00016721407572239732,0.00019332269606955047 -अच्छ,shape,0.9999999709320431,0.9999999869635965,0.9998376379806855,0.9450442118945079,0.9999996721163202,0.9998828189391951,0.99994954342625,0.9999999999660607,0.9999999984363765,0.9997996660808052,0.9999593305071406,0.9999897712909894,0.9999999999981046,0.9999943791875273,0.9999999998144431,0.9999973361912327,0.9999988294894425,0.9998229030070515,0.9996360510269925,0.11667120334571125,0.0002840974519556032,0.016246695852695617,0.2531145344607581,0.9191670807343421,0.9592884153602617,0.7396235288352306,0.003664134897981411,0.009060219828010859,0.9937726188196068,0.999999999999996,0.9999999352177822,0.9999999999957403,0.9997208270652245,0.999377608098802,0.9993445657940773,7.779979963609743e-05,0.0005740703338148601,0.00757276880538014,7.682030918301304e-06,0.7478470030919847,0.9999999319882009,0.936534125948256,0.9954481413146999,0.9999999994710536,0.44760239360639653,0.9998927552998653,0.9997302396360314,0.9999443682488872,0.9999795032137839,0.9976703075082505,0.9986217700263209,0.9948673232711953,0.9999980821532168,0.9999951699627276,0.9999996766690329,0.9996598406375544,0.9999984566571261,0.9999861506851302,0.9998914468837511,0.9998198103611936,0.9998001806891508,0.9997578656631704,0.9999988748988111,0.9999973848738358,0.9999995053706081,0.9995070328021951,0.9825430156141326,0.9931376279933716,0.002771705942190469,0.9649431324171839,0.9992076426678917,0.999994913594504,0.9999999990127635,0.999999573587464,0.9999999094643499,0.6130910857075018,0.32456473176635997,0.9793674569595924,5.825791836375444e-05,1.4516212221985205e-05 -अच्छ,object,0.6769526073653795,0.11729450458954352,0.7493142405052822,0.238487821568708,0.7688641026361395,0.9999998811730689,0.9999999743996035,0.9999998904697895,0.9999998510845207,0.9999995485875565,0.9999992996783464,0.9999998945473825,0.999999999969404,0.9999999833109895,0.9999999509099153,0.9999987715731999,0.9999987541981837,0.9999870556249081,0.9998255997434068,0.012012805455746818,0.14639804502901677,0.24769035771507586,0.5180183765058262,0.007150359843176066,9.69001731333428e-07,1.354842348430206e-07,4.910832602438899e-09,2.0999689604224127e-08,3.3267515393135183e-07,0.9999995818443462,0.9999886517053904,0.9999982687292234,0.9996924112877755,0.9994221336865138,0.9992841616596408,0.9999999999999845,0.9999999999999609,0.9999999999999245,0.9999999999997549,0.9999999999999984,0.9999550048934751,0.9999049955938295,0.9999284401187774,0.999993049544764,0.9999892058264845,0.9999998646803635,0.9999999070238168,0.9999999830207079,0.999999985639771,0.9983772134287572,0.9995389985061154,0.9994721555924214,0.9998934859752449,0.9998905493506427,0.9999999984754653,0.9999999933635351,0.9999999989832338,0.9999998302431525,0.9999997577401462,0.999999767068653,0.9999999422468453,0.9999999832174836,0.9999997468135559,0.9999999809244483,0.9999999926263463,0.9999999965378685,0.9999980984316572,0.9999966201456593,0.9999842365322069,0.9999994088904552,0.9999997540827416,0.9999999999999947,0.9999999999999929,0.9999999999999969,0.99999999999997,0.1796811479018363,0.005598027521162482,0.005679261045590586,0.0110553666980269,0.005565114896647236 -अनाज,rgb,6.775961409956921e-12,4.865990201253354e-12,5.496681653120727e-11,3.8324278338084296e-08,1.1034005339862467e-08,0.9806860942034488,0.5191029398334871,0.02106935580752869,0.000131216479446633,4.801895973166101e-05,0.06654548117024676,0.9819028255574719,0.9661250693665738,0.9613475194387051,0.9491433274691863,0.9583914487879852,0.9644922545266593,0.9689796200771343,0.9655628380951788,1.802759879923119e-11,1.192705349704805e-10,2.2837112729030523e-10,8.397860234148297e-09,4.031485724234256e-08,7.27750140832639e-52,7.593000926381817e-51,1.5568804883125573e-50,1.3767477780657435e-49,1.8523356152106196e-43,0.19116362459700775,0.07758194602261112,0.16084200077999575,0.21138111202701687,0.26936829136646573,0.4543574781229262,4.262966051769445e-38,2.944330607297905e-38,1.8684559262781025e-39,6.739237583980799e-39,4.7457102989096496e-40,0.97299709512544,0.9633979592796081,0.9768618783630882,0.9860894241678554,0.9900012541540371,7.437208624627716e-13,2.8950215941363476e-13,2.8514489534782283e-13,1.109469337448233e-13,2.976241926009239e-09,6.349178113952066e-10,9.148046670399455e-11,9.439472788133343e-09,1.313880374656949e-08,1.077256196077806e-09,4.9651059988298457e-08,1.9805133006685682e-12,0.03039626457331024,0.029055179718586087,0.0012038417549189626,0.002959714729415106,0.00042457585681106123,0.004990952240451773,0.0017275045644979245,0.00030403851006698763,0.00030541188346606496,8.81946579499253e-10,4.00188060357837e-07,4.6554064676741423e-10,6.572068636963406e-07,5.002571083753875e-10,5.065371029129807e-36,2.138554970579487e-36,5.8263403062217824e-39,6.846267234465415e-39,2.1083409670852072e-10,3.7247717385002784e-10,1.4207649376623266e-09,3.6642566243503436e-09,3.0649312553938897e-09 -अनाज,shape,1.1925509999087302e-06,1.8161166294195815e-07,6.910379840594889e-10,1.8807639939679757e-09,4.961488204739197e-07,0.8991524770447866,3.1423603226604458e-12,1.9908349174785396e-05,2.8789435542004146e-07,0.08474646622288463,0.0007616135271634832,2.257835885854534e-05,0.312833890371052,1.4296029919439903e-06,0.9998348204374901,0.9999999975713623,0.9999998842873447,0.9999953992970693,0.9998469204800212,6.461692543951535e-09,2.1165184588015498e-05,0.002094220558560665,0.001251742998641295,0.00022817699584794953,3.383250710469061e-10,5.573419157014143e-08,0.08547974427387682,0.7868466763330284,0.4685546212533768,0.9984702915832626,0.021091215322122173,0.9978454756944061,0.0020347446181083564,0.9966580603225647,3.495600749302304e-08,3.1038472402897082e-06,1.2432600066531482e-06,2.1204261984318356e-06,5.457333957676756e-09,7.026765967521475e-09,9.59871047556965e-08,1.2218650182105368e-07,2.002418277395713e-09,5.22952502625091e-09,2.7780438017792116e-10,1.0732919198559452e-06,1.3135280944006958e-07,4.269329165054303e-07,1.3746778890852349e-05,2.462820051813039e-09,2.622110249558256e-09,1.2119137404780123e-09,2.2620005180060578e-08,5.643162765508285e-07,0.0001284034709504119,9.126253532109706e-08,1.1083139853522851e-07,3.0083319181341724e-07,3.56945339244824e-07,1.730230515883195e-07,8.498820995636432e-06,2.6190766085269408e-08,0.00012152040492620036,5.72433090476796e-05,0.0009129412896494649,0.0010117000001000648,0.8540895688278394,0.04722013315327328,0.2158897403503998,0.017660018476674776,0.11890952163889679,0.0001785894327287444,1.3652171561242776e-05,2.2104559352689506e-05,1.79958772611689e-05,1.920230486715101e-09,2.053835938911658e-13,7.473433108887964e-08,5.022331649013373e-12,3.785504784086884e-09 -अनाज,object,3.915615837776696e-05,2.5168299177369002e-06,6.621559816169028e-08,2.0898214559053388e-05,0.00015420933945095667,0.9892610743730798,9.953538357608494e-07,0.018206637345425485,0.00010718084312876937,0.950940517353396,0.41684640854478666,0.39096304509753255,0.9991401826339713,0.005560718202810747,0.9999145074476983,0.9999999664259451,0.9999994315034978,0.9999890589536475,0.9998953023673958,1.1898926509000882e-08,4.07434560297584e-05,0.002303947465674529,0.001913433079311264,0.000438375682257774,4.2102162081903137e-10,5.661183365362169e-09,0.0020749772760528143,0.09309045445384505,0.06132492582493427,0.9994746412269297,0.6324350748659484,0.9990130875746782,0.21548381829140872,0.9979072768897418,1.030282707670105e-06,1.6834929306859813e-05,3.3757068243399146e-06,2.4952295469655766e-06,1.018709753858742e-07,4.9535079043747215e-08,0.007386252112507753,0.00465799440346897,0.00016820425976007275,0.0003143100167241887,8.39313204804308e-06,1.753620341691795e-07,4.043791856390017e-08,1.0663760689379666e-07,1.2778707944577536e-06,2.699552520450506e-09,2.8990144202655748e-09,1.5254146483184533e-09,1.214693210712651e-08,1.5169528171045068e-07,5.399093519325029e-05,2.8649014202660923e-07,8.621405354385153e-08,1.0973087895624286e-05,9.509646850343695e-06,1.1347977758122105e-05,0.00014322889142351881,2.208210724762592e-06,0.00043705437187495713,0.00023140171799245214,0.0018375130792746656,0.006983927664661236,0.2016054112783619,0.024023600751284867,0.02616192909849285,0.008024706087274737,0.017480852595806513,8.093802515780861e-06,4.105607942977542e-07,6.396117841588698e-07,4.890331855399464e-07,3.814282398959346e-07,1.3936401116064253e-09,8.464255104602377e-06,3.454266863375095e-08,2.0104687418173278e-07 -अमरुद,rgb,0.9673505999914518,0.9937885338270769,0.9878454477730294,0.9927233437116877,0.9977464223481374,0.7104213360903782,0.9412217210001042,0.0002852273886002325,1.5202839385038612e-05,9.524376478472575e-06,0.0001729877125999049,0.0013247754143707196,0.0009815249230766528,0.0008837013291864335,0.003102863055896444,0.0034704344884631164,0.0038004695953125795,0.004113758308620724,0.003611358854907456,0.9989410777728155,0.9982379786079691,0.9983596634465475,0.9981863888351857,0.9942840496494868,2.9353049097826645e-07,4.331126697975281e-07,3.967809013112019e-07,4.867185883394875e-07,7.344365119222624e-07,0.9568324640964305,0.9840135256589184,0.9683842421587743,0.967971189022939,0.9629767057945855,0.9500708036825875,5.375613525764486e-07,7.392291613046188e-07,3.922271744378824e-07,5.833255618990765e-07,6.526879657837276e-07,0.013569234716384347,0.008168209906080701,0.010775885219116502,0.015295783387019826,0.009830676327190096,0.9990327659943358,0.9989263389921589,0.9989075561803088,0.9987033942556729,0.9999864345344969,0.9999902109203146,0.9999934853945679,0.9999815100275038,0.9999795130594682,0.8896603845026816,0.5432959039039513,0.9356484191135295,1.6310444685097235e-05,1.6173940047736324e-05,5.025080030195565e-06,8.858626638994559e-06,7.386892679575623e-06,0.00024578962065745544,0.0001927620888757946,7.86108788704694e-05,7.958198621220506e-05,0.999890459348806,0.9995941049388076,0.9998925614951857,0.9995261886378414,0.9998797213760909,0.00012904734463403935,0.00010864419098356545,9.94884147455039e-05,7.597889459238676e-05,0.9952217539935211,0.9957025219744677,0.995231954828391,0.9863032490265633,0.9921650998347602 -अमरुद,shape,0.0006399270335261253,2.155107980687908e-06,0.006411233955358335,3.330038529409468e-10,0.012055441722999815,1.1229057294670535e-09,3.6496967717786247e-06,2.6164542646740987e-05,8.545733583107365e-08,0.002503892941878305,2.6583390704871944e-06,3.9015065742888633e-07,1.7096996497714505e-08,1.2156887026096335e-06,0.9909193441449219,0.8178971903304647,0.6194777641364826,0.9955472457060074,6.473722894388044e-05,0.6561350884084082,2.3824590417924946e-05,0.006468199513660596,0.0032645862434188444,0.0004852120243284318,0.0016971351676384398,0.0007689154493892788,1.7820373389368628e-08,5.092932936288368e-06,0.0002215727849782142,0.821562235419196,0.9724101452370743,0.9901389448229179,0.9998687293794585,0.3534163619278074,0.015303901541975905,5.740089988094001e-06,8.52290160052135e-05,0.9484826958254754,5.5746254727324626e-05,0.009367821256558379,1.8502785368479117e-13,6.696114926753582e-13,6.507579799412768e-14,1.2415922769899617e-16,3.783358881591407e-12,0.0041600134059590135,0.0007040933233422333,0.0030904884923076826,0.009514827777168706,0.999757891398886,0.9999446128245092,0.9998693928478961,0.9999316784100937,0.999561715348066,1.809219192198326e-05,3.318178290541851e-05,0.00013734801408215932,0.0008189277888390504,0.017344158532377876,0.8277017876986001,0.9808592033208099,0.0015040195447903503,5.482138432724822e-05,6.928425459526772e-07,4.5350179311235366e-05,6.8093186705581764e-06,0.00190454371275284,0.00027845001090078073,0.0037196221450808246,1.2521791609952738e-05,1.6840462621880516e-05,1.2917053300972713e-06,2.4092127658724712e-05,5.072558192100173e-06,0.0003938178739350138,0.00013527528010709864,6.852448483523433e-07,3.341185035937019e-05,8.207220610828225e-09,7.869722890534296e-05 -अमरुद,object,0.9486079110473187,0.8917652011402881,0.9699978651129604,0.8376090867631429,0.9741184205846897,0.32009286379628826,0.3562001837085521,0.00038562765043397126,1.0784049561446666e-05,1.4254672160144033e-05,0.00013628406547411815,0.0001739789365876359,0.00012784674454931875,0.00033990109001242247,0.0012402674818145997,0.0013680368482491363,0.0015397688018734621,0.001909979115872233,0.0010442436827754241,0.9993993048017841,0.9946898271924866,0.9949472697683867,0.993664695318866,0.9795417171476574,4.163858410951119e-06,2.171678554475519e-06,5.814891816648455e-07,9.497353303563054e-07,1.636286351808262e-06,0.6956314707201028,0.8690834835533678,0.8173940907570312,0.8444417087015487,0.8057093227689084,0.8791040336938399,1.5339337846282748e-06,2.0068780261269977e-06,1.1015471162544355e-06,1.211592106243446e-06,2.369894546074258e-06,0.001222564493105191,0.0010213418767237665,0.001393596921145783,0.0022576026458777346,0.0034381762923058083,0.9929906039364317,0.9910063722709339,0.991907430696173,0.9906252889351815,0.9999844599129394,0.9999887918549439,0.9999951511796108,0.9999815088864867,0.9999762186106135,0.5459270126706034,0.179289753617019,0.7800784810215056,4.536953159335577e-05,0.00011609878625569641,5.208383802754578e-05,6.803385402661178e-05,5.774824151373358e-05,0.00010943974494763906,4.667873643130257e-05,3.2450333255313396e-05,3.301482057350763e-05,0.998381349491274,0.9930023903094587,0.9992228265693989,0.9955201712078772,0.9980657476174155,4.77099392777699e-05,5.334417194525275e-05,5.173505201103553e-05,8.631478751797602e-05,0.9909547470959646,0.9725573065814589,0.9824814848495604,0.8567603390608762,0.9772476832764666 -अर्ध,rgb,0.9762284501100932,0.9944788016513318,0.978542577968109,0.8722559139255612,0.9625396305938273,1.1992414115862515e-05,0.00014038956860309702,2.787258707299537e-07,6.646312079514441e-08,5.5526323049137464e-08,9.133781762091609e-08,1.6076087576128606e-08,1.2611927519602636e-08,1.1855051559252194e-08,2.074309622035922e-07,2.1207732186660298e-07,2.1635984283152038e-07,2.2046768024640015e-07,2.0062962238307057e-07,0.9977399820584765,0.9936214006004219,0.9923924752129177,0.9707528925128913,0.8896174107767333,0.9999997158152502,0.9999996126882061,0.999999470570995,0.9999991658510522,0.9999577656241857,0.004133918557263322,0.012677885537345194,0.0056363043925042435,0.004805216073880072,0.00376998065778667,0.0021099398913079154,0.004877673521074728,0.0068941167607956206,0.008113822559220758,0.008157780870339111,0.016992765149445466,7.659963324704621e-07,5.169956397265458e-07,5.532161367199964e-07,6.206450780139405e-07,3.1976687631442367e-07,0.7151606821079646,0.7316598263957267,0.7284432332972451,0.7304343458872272,0.996515401120128,0.9980060628768498,0.9991197919699375,0.9927342428922523,0.990686290973824,0.0028356944824847784,0.0001829360780103613,0.020085907359929926,3.502658192404031e-09,2.6833135604067653e-09,1.7570597235269986e-09,1.7794723384857794e-09,1.7136741016449415e-09,1.0327087023292966e-08,1.0200124976374907e-08,7.063517927120771e-09,7.119642769338403e-09,0.8966319940222052,0.36277129275308495,0.9085398716111838,0.3008587364708593,0.8943795247497697,0.131854926859328,0.13919734320265648,0.3926795967251848,0.329342922650836,0.9835687367636263,0.9815467303757842,0.968368806553057,0.9054768889447594,0.9407533359398891 -अर्ध,shape,1.754437285232222e-10,2.8820846559637165e-07,3.657030935353224e-10,0.8841394716197774,0.995985178253987,2.981778041741519e-06,0.03785858438047611,7.421133803359929e-07,0.0002505078471868198,0.012248363597060823,0.008538215602906922,3.9998206220799246e-07,9.83150404909975e-12,1.2866161373677779e-11,2.5982341488655177e-05,4.172184042115456e-09,1.8915743032769693e-07,5.639346022107468e-05,0.14014623610035473,2.2723212999620226e-05,0.3387830992145571,0.3008865600445094,0.8270750945269801,0.9926706283965174,1.8453884786294449e-06,0.004934025254036014,0.9962561732774773,0.9966246451250065,0.9937452143111479,4.047224786846882e-06,0.41328765759530417,0.003237420210503503,0.07817649042793705,0.02354722684115149,1.4834195583174031e-05,1.395186488528358e-10,9.027539299342241e-09,0.0002320990811201396,0.8966037792643302,0.0007300442874916585,0.00024413555181902863,2.5730635228246997e-06,0.00011889547751013898,2.7101846029496647e-06,0.01519540803383429,0.011643074291966942,0.31231115797447245,0.004331034821921713,0.00022381846981988046,6.770916696259621e-05,0.00020401705940606795,0.0025908731309536048,8.679899219204531e-05,0.0006236134657405722,0.010877893312985366,0.9480533284522851,0.3787228919891072,3.3815337617638654e-06,1.1961562790095645e-05,0.0016394127493689111,0.023744021991055225,0.030073428973379158,8.341309145384833e-05,3.177437048665313e-05,4.553455512739708e-07,7.038824130239128e-06,0.9994660995723947,0.9998955245354548,0.9995320932445904,0.999632936276393,0.9992862058429071,1.8006613260052693e-07,0.0012699476320397396,0.010871220026315185,3.54142783558517e-07,4.5024726140399306e-10,0.17235638639440623,9.826376007674141e-07,0.04666613129846767,2.299059925453926e-05 -अर्ध,object,4.008751399857614e-09,2.4558516662485528e-06,2.8845184339420528e-08,0.09479528569722805,0.9862872181677099,5.121128456826927e-08,2.8659093786184894e-06,1.9059381044878407e-08,1.0967311421772808e-07,1.7756051150319732e-05,9.507421485619751e-06,3.773365069133299e-09,2.3108982765759866e-11,1.9738495209225935e-13,1.2952696724396605e-06,5.0728203758805954e-08,2.4410169646839147e-07,6.932143280363196e-06,0.0013557817154257064,0.022561724903427824,0.971193527575079,0.9860494548033857,0.9917119825263814,0.9957093167917992,0.009984530593695256,0.9298189929625887,0.9999973031807572,0.9999998103419772,0.9999948723587747,4.267307965910185e-05,0.01537384361715427,0.0015102075804785428,0.010350994326311506,0.0045584075802807345,5.245011641092664e-07,3.4931734406039934e-10,7.98671734022003e-09,0.0006582832527350855,0.001160792534218498,0.0002530341998403125,3.436054181645861e-06,1.8766547413183806e-07,4.6655328037926037e-07,1.625237677617477e-07,4.7769323552866475e-06,0.11450420815706118,0.12034051037655188,0.02356423629246812,0.01315937030812981,0.002586644753228219,0.006733008217779645,0.07796552274849884,0.017612496668380124,0.0713600678944072,0.017682593465321566,0.01303562123132693,0.10400738635056128,6.120813867253256e-09,3.890588234864972e-08,9.734525554724415e-07,1.4588865004833922e-05,5.572087467344481e-06,1.8753538362498525e-07,1.2553938448930554e-06,6.6896423143122735e-09,2.204581063162472e-08,0.9996956108691324,0.9998110201054488,0.9997467401151847,0.9997681489547054,0.9997498308505338,6.078739313627815e-06,0.006419916598414329,0.034407600187904785,0.0002057741012119945,7.284370323282464e-08,0.06088891211649315,1.0139386818054514e-06,0.008769183284593189,8.843966494965765e-06 -आकर,rgb,0.9999999999999958,0.999999999999998,0.9999999999999756,0.9999999999803204,0.9999999999944789,1.4812106635674506e-05,0.0001651968439956319,0.20755598547709403,0.2446583076069285,0.27117431755785454,0.015461228729858102,1.5112435025503418e-07,8.766313908683501e-08,8.665253659164478e-08,0.000977311865587707,0.0008322512382246107,0.0007346987622195443,0.0006615501451236331,0.0006258240872318502,0.9999999999999931,0.9999999999999538,0.9999999999999085,0.9999999999957381,0.9999999999792568,1.0,1.0,1.0,1.0,1.0,0.997186206385967,0.998997944293858,0.9976550292952355,0.9961129246279887,0.9941016158192733,0.981859115273956,0.9999904477033312,0.9999926862607673,0.9999978251793659,0.9999962643858289,0.9999990423417119,0.003914164641842282,0.0030381100401851617,0.0020899660011957843,0.0014168409669761631,0.00035706072718397084,0.984550892842012,0.9863054717471644,0.9859366189722721,0.9861244050811254,0.9999999794274226,0.9999999867962988,0.9999999958064019,0.9999998893849196,0.9999997937020867,0.0021927826585062455,5.440443387762306e-05,0.045231509174146554,5.466279505156178e-06,1.44246057251418e-06,1.3998190396737578e-06,3.3731307632366154e-07,1.3557639186988384e-07,1.1452625023220028e-08,1.2460016786158521e-08,1.6666254147525293e-08,1.6607030061813034e-08,0.9992905313024527,0.953929951250777,0.999383593775674,0.9293630560475616,0.9991523104303723,0.999989642397767,0.9999926098342418,0.9999996213453491,0.9999995191259922,0.9999999999999172,0.9999999999998521,0.9999999999994045,0.9999999999982152,0.9999999999986282 -आकर,shape,0.17252485327387304,4.24622941172007e-06,0.9995113260894044,0.9944728693210604,0.8872749807544477,0.9999999932290566,0.9999560494792066,0.3695123438321262,0.02536541506401579,0.9986501435409346,0.9973404291968803,9.845239995521228e-06,0.9999998309927797,0.0026253389730160914,0.9999851710118597,0.9999999050068712,0.9999997054380263,0.999995996469373,0.999447144824377,0.999245086429583,0.9998925884118439,0.9998387944661156,0.999050206960739,0.9988873874076164,0.0029494520074028244,0.013487215625562978,0.9631974679680739,0.8471949306709524,0.9408175570058557,0.9998522622644755,0.9991199640709973,0.9999793817866847,0.9843405253319184,0.9999999996373308,0.3440153837400264,0.9999985721558134,0.9999873126775297,0.9997213208721475,0.9996429404413484,0.9999417027114764,4.359126041069036e-06,0.7798698165027271,0.31488626949025583,1.2583589063942707e-07,0.9732316901740676,0.0005393918225361565,4.882659297197757e-05,0.00042015742379615257,0.0004268332433852961,0.006202307382111861,0.007767742182181719,0.18817353392395417,0.002367568926099473,0.0009280549927011375,5.8774755615547674e-05,0.0005611085847192676,8.823490039579072e-06,0.00048674902664866084,0.06077914626867831,0.6233587641801152,0.0011498670159172495,0.0028881487023891513,7.209733920191625e-07,2.1364357365128145e-07,1.6771837262625737e-06,0.006420804766013899,0.9900127676846096,0.07446059800800266,0.9999480785462168,0.9917693708311245,0.7484515661765716,1.0730367061500751e-05,5.3388506752898055e-11,3.4869972744442803e-07,1.756741768144719e-09,0.9991389190068367,0.9999901605177088,0.9983060936900064,0.9999957022783051,0.9999770204906135 -आकर,object,0.1698912430360224,0.08186723358191116,0.9999987423890826,0.9993276479383765,0.9927361302338791,0.9779066305112454,0.8560138231457274,0.000619578935615053,4.02245691129377e-05,0.09571938085641808,0.01551196303607643,3.7928927178031696e-06,0.14364613320496578,0.0009478770845041758,0.9699636693182163,0.9645942099277309,0.9660055471260557,0.9964641921627119,0.052221471079117746,0.9995889089046948,0.9996798010239426,0.9996602216226622,0.9991992634891054,0.9994384791441387,0.9999995630774078,0.999993488714025,0.9999989994902168,0.9999913780849525,0.9999642888335918,0.9765018946434748,0.9976899037196797,0.9969805575823533,0.9903443912615645,0.9999963163495043,0.985791721366916,0.9998768790111003,0.9998527435701267,0.999593461070786,0.9996043952104431,0.999860948955153,5.871907722154198e-06,0.008723663079180157,0.007280834487706008,5.551359145483162e-07,0.02872113810329337,0.032407354176412814,0.0028276062118823848,0.0028277844874006223,0.003115621454383886,0.838991090544083,0.9481464071848245,0.9846638206846067,0.7405369828967058,0.3629611359018397,3.84232377556606e-06,0.00038561308993181984,0.00011565192172192103,0.00019368108971215827,0.000597546589760403,0.018177749252241197,3.481906608764872e-05,0.00041337518196377245,3.043355881149692e-08,1.5687314049054489e-09,3.1098863949694692e-09,2.2314198194368445e-06,0.12227672333039068,0.0465208257299147,0.9985149815455767,0.8369557119403807,0.47607199131661054,5.452275615211671e-07,4.726730903032342e-08,2.391331853325213e-06,3.3343462643626584e-07,0.9999981904663237,0.99999863136081,0.9999925070432767,0.9999988888533101,0.9999982090441885 -आकार,rgb,0.9999696831443039,0.9999976301625819,0.999944359817306,0.9857610028399488,0.9989640471094234,8.14853437830327e-12,1.8830808539390973e-09,3.278402980545525e-13,1.9641771204663283e-13,2.1038257675541777e-13,3.291770869632296e-14,1.4827254805744481e-16,1.2448592117753346e-16,1.1814177210275216e-16,1.636337522692548e-14,1.5694088651355782e-14,1.525452042475653e-14,1.493734104663763e-14,1.3296734418115546e-14,0.9999991074453614,0.999990048643507,0.999983026661357,0.9993842584454402,0.9888992381285344,1.0,1.0,1.0,1.0,1.0,1.0391019103935794e-06,9.699305646429649e-06,1.8698268948703442e-06,1.2653107976177001e-06,7.526645010243285e-07,2.130544576912143e-07,0.9999999554371897,0.9999999780059159,0.9999999938628648,0.9999999902814382,0.9999999989099115,1.1189800479017487e-13,6.557779706463163e-14,6.147424802085863e-14,6.123533909964402e-14,1.7967182194185597e-14,0.9979113744099575,0.9987003312478645,0.9986718845699681,0.9990686150874714,0.9999856619012812,0.9999967245709395,0.9999995791991562,0.9999254611115759,0.9998723652666254,0.0004540598725448086,1.2208748268530553e-06,0.10348289632917844,1.8819809555636676e-16,1.2119068077466602e-16,1.9177291467498448e-16,1.3856840522945725e-16,2.5792154016842834e-16,1.9310705458395164e-15,2.7755055422852796e-15,2.8519351817522124e-15,2.884260672870962e-15,0.9966887890634112,0.2673910631873819,0.997892682085196,0.16102103365760567,0.997180276470975,0.9999999990987056,0.9999999994060782,0.9999999999929332,0.9999999999882139,0.9999411273057337,0.9999116109097886,0.9996396629224176,0.9965668834734636,0.998593922226558 -आकार,shape,0.9999234495652756,0.9999258078848983,0.9999999971770139,0.9999899129558922,0.9577376395428225,0.9982486024322602,0.6040567287136379,0.9999999981840062,0.9999999992364004,0.9999999997332187,0.9999999992313882,0.9999905540448949,0.00024061882732360888,0.9998411758511945,8.750837004382701e-06,1.3042413514244068e-08,4.865257135540214e-08,6.645193433478361e-06,4.438069395098278e-05,0.9998668173669958,0.9999989122026607,0.9998828538290377,0.9999688765354611,0.9997492059800258,0.9999743967937234,0.9993157542217748,0.9180036997162366,0.999818521009392,0.999455307867862,1.1379803831734163e-06,0.560719399715191,2.8387634936964575e-05,0.9999215337000872,0.0009100088741562704,0.9981374781333512,0.9997761909455241,0.9999395725497136,0.9998280559730599,0.9999794071029593,0.9999873630999406,0.9999999979771281,0.9999999997458922,0.999999999976289,0.9999999943737952,0.9999999999880422,0.003012693453043724,0.00039232128182217915,5.443668130281717e-06,6.609168511673795e-06,0.48758102007058274,0.7579781488284014,0.9962227836978366,0.8921707761668926,0.41450590874062854,1.7574227039711262e-05,0.0013776926453900372,0.00016737776829875065,0.976802651621558,0.9969464028964622,0.9999931978692217,0.9932156985886158,0.9996490172003223,7.467447498927699e-08,5.035630765331648e-07,2.0623098824202955e-10,1.1910568987378034e-06,3.305633217828913e-05,0.042381200512200935,0.9880217677862486,0.9965571406648522,0.8644524303672542,7.822722427223808e-09,1.2866302157584865e-09,5.115035288688173e-07,1.9067031860144667e-06,0.9999999062796022,0.9999999999960065,0.9999996604569619,0.9999996221768963,0.9999906821976611 -आकार,object,0.96746252575809,0.9928957409486902,0.9999999003421841,0.9990105256423292,0.28967635723923624,0.8328907580688534,0.03217060371335327,0.9996352548546419,0.9997933719425062,0.9999870498697061,0.9999154690165493,0.33875900739658826,1.3727085607759997e-05,0.9797802759902948,1.858314038265963e-05,1.0591335270423423e-07,5.179328347780018e-07,8.169161787999573e-06,5.863793113195818e-05,0.9998921255571691,0.9999957846921115,0.9998119468304625,0.9999154773800848,0.9998535386064177,0.9999999570112067,0.9999990722555875,0.9999705427600543,0.999999619357692,0.9999981952699014,8.772828359805007e-06,0.03729336464490531,8.870678006268082e-05,0.9791090123915743,0.003137406348841222,0.9951901903698135,0.9998379680916979,0.9999652892660873,0.9998617133261068,0.9999777195461336,0.9999736620773356,0.9988681695523821,0.9999444683390657,0.9999917521191007,0.9990321526058468,0.9999953627728134,0.008879194240224743,0.003160483901038729,6.501227662830798e-05,4.6928130399475955e-05,0.7419688732761733,0.9013189497526047,0.997893695036097,0.9039651447021125,0.5199286308214803,1.9414120748923566e-05,0.0018177297102414498,0.0003578360619911288,0.15240812387961622,0.6322653565607852,0.9984086491336222,0.6294020051802773,0.9763946689466667,4.4651911518223356e-08,4.122898568664212e-08,1.1849574393629404e-10,1.817210509217463e-07,0.00012036049955299563,0.05339900556341338,0.9905315348282188,0.9855284557568067,0.786191985573553,1.5954644987231638e-07,6.035316795348209e-08,4.730926876684392e-05,3.5936929283383374e-05,0.9999965352601409,0.9999999952223992,0.999998245948025,0.999997795556414,0.999971781151636 -आध,rgb,0.9999340439778608,0.9999959190673658,0.999966394793878,0.9997099925990512,0.9999710057819915,1.0103906589200178e-05,0.0005776780972438503,8.165202665533343e-10,2.2830959146341684e-11,1.3679544012443418e-11,1.411182018050807e-10,3.5694124307517406e-11,2.1227978624237113e-11,1.8447843780306346e-11,2.0547146644191474e-09,2.24603662683977e-09,2.4205406255671628e-09,2.588274290131519e-09,2.128195048842542e-09,0.9999994844042772,0.9999974624543634,0.9999969306036639,0.9999813064562457,0.9997931036040684,0.9999977657466034,0.999997417785932,0.9999959766970674,0.999993753344281,0.9993537358942628,0.08481111227580172,0.3994709137684203,0.1400977210267477,0.11572527930794471,0.08115500014505803,0.03403338682369202,3.395710386854189e-07,6.216763835653216e-07,5.133172216500845e-07,6.575174914648808e-07,1.6934070120255384e-06,2.584510870696703e-08,1.1681706942144645e-08,1.479848915541895e-08,2.07361981967807e-08,6.727673663903532e-09,0.9985006958039732,0.9985204217545463,0.998472752992359,0.9982803222391264,0.9999998556686793,0.9999999372564995,0.9999999814659682,0.9999995548211896,0.9999993452868999,0.00811540861785825,9.210943817959198e-05,0.10630370226460102,4.3386040229419584e-13,2.8893975499655666e-13,7.904874517118003e-14,1.0543142437759794e-13,8.028110850972073e-14,4.918292881011453e-12,4.079361654005872e-12,1.498362702119502e-12,1.5233306117122957e-12,0.9999374198069905,0.9963617562339454,0.9999466814991446,0.9943887289005386,0.9999299131598602,0.0005806441680521038,0.0005613957362340723,0.002736537290366529,0.0016706937363104748,0.9999855324759191,0.9999840845231867,0.9999659476505687,0.9997377350128951,0.9998977286579734 -आध,shape,1.5048326642217202e-15,1.392676512617618e-11,3.5135239033141013e-09,0.9999999336502545,0.9997490982651596,2.3235539721349225e-08,0.9999996846748749,8.930296820866624e-16,2.7698317382665448e-15,2.1951273954858122e-11,6.824915101536325e-13,6.375134067936682e-07,0.00019729808524487777,4.3476889920942815e-07,0.00012604947215418845,7.102321021284967e-11,1.1658874265830441e-08,2.9474466838585353e-05,0.00313299247118414,5.367884851815256e-08,2.095022493110847e-05,0.010467719749630061,0.011118128587830725,0.9965855437525181,4.4102093594536634e-07,1.5773453810150496e-05,0.9887492388714633,0.9802254701008737,0.994579165580707,0.0019794448031506227,0.8048797446022284,0.10120641692052544,0.5322010052587055,0.0043347468214285,0.0004577669427627777,1.5237271119169414e-07,1.7166597308420535e-06,0.0007939770787124573,0.9908588609015598,0.004002735327747765,0.16865457194166056,0.001031135988401728,0.003233787009263913,2.0358609463301966e-06,0.0002521119296426065,0.08285764433373229,0.8060450684005359,0.5304603748053851,0.004633615251385453,4.6904913434952605e-05,2.7604112683862782e-05,0.00034283273425857343,3.449363277278244e-06,9.701052451997727e-06,0.023946570519454976,0.9593759324176014,0.8465357702965032,1.028862950683952e-10,4.3019630892237275e-10,2.3596489632111883e-05,1.853701596647227e-05,7.135467077662855e-05,0.0006045409179976953,0.00010233803019430162,1.0831710715081673e-06,0.0011462894685197117,0.9995801665571632,0.9999251575487701,0.9997109541908034,0.9997561905345,0.9995245888905656,3.5260339927891703e-06,0.0019137108451113963,0.14090899347645686,2.7122843926452794e-07,2.1707689332798274e-08,0.9417503937886856,3.2692844120632616e-05,0.99999989899393,0.000703639018343281 -आध,object,0.0014165942362834069,0.3840604111318515,0.13980277352699472,0.998832826842176,0.9987398845270339,1.377922109087706e-07,0.007089018648051217,2.3658060310715898e-09,6.585463582809578e-10,4.3616357227765705e-09,4.636400711391115e-08,8.897354261267722e-07,9.083715203694034e-11,1.0554487929521393e-08,3.3664152366098014e-07,6.467835262620016e-09,4.679223578494407e-08,1.6273635336048936e-05,0.0003620170649091487,0.9994804217725317,0.9981593434948826,0.9998717815897945,0.9996513075207631,0.9999971687504403,0.9901547120691433,0.9992845292985911,0.9999920883586391,0.9999954989437478,0.9999950997607098,0.0006042375032398668,0.05375988035111439,0.008070932423116583,0.024235895004932843,0.0460616959948635,0.2434685277953796,1.1143217948604033e-09,6.597059758094297e-09,2.5865905442967046e-07,9.745173266483378e-07,1.4467489710710986e-06,0.0028148321717058043,9.684308280160239e-05,0.00014744183611498026,0.00012671109276498108,0.0020533950046948603,0.9583586828197493,0.9423029167828292,0.8694539107340903,0.677715949136011,0.9954105439714147,0.9956427978816781,0.9994711974910857,0.9963855127831048,0.9965895327790889,0.21289201717664663,0.17916570426623885,0.7101141173710539,7.787958602573679e-08,7.801328491036244e-07,5.636752262854966e-05,3.406862077261954e-05,2.2007773085251368e-05,1.3700425876187544e-05,1.642277769733883e-05,8.977181680411199e-08,1.49666093499443e-06,0.999759288830163,0.9998150843884394,0.9998785752513139,0.9998471088609818,0.9997390956285234,7.126806806285169e-08,4.605628269436933e-06,0.00012313794287503125,4.087929185877083e-06,0.20444798770653858,0.9999867214639195,0.7765913190558381,0.9999552320011984,0.9782199467725808 -आयताकार,rgb,0.1539358791364195,0.40591809300225773,0.07706799640294594,0.0013595329478788894,0.006957726020423895,1.6491460978591838e-10,8.997815295213488e-09,6.570649676120751e-11,4.3548230650968083e-10,6.758127675498892e-10,2.343625841393154e-11,1.4329437122087236e-12,1.9903480675728527e-12,2.0599896819483e-12,2.9285553562183698e-12,2.7244218233854263e-12,2.5796156983117682e-12,2.466521492097685e-12,2.4630607762902162e-12,0.47774070401572466,0.15173643501501963,0.10772485283184634,0.009686155512991127,0.0015456236396384777,1.0,1.0,1.0,1.0,1.0,1.1698732489564137e-08,4.701092257142471e-08,1.6803354571085414e-08,1.3415984617084672e-08,9.831222065080246e-09,4.681348710849923e-09,0.999999999999998,0.9999999999999987,0.9999999999999998,0.9999999999999996,1.0,4.3296019956875666e-12,3.972398818502104e-12,3.4437922036008015e-12,3.0359539448738915e-12,1.9377756468071916e-12,0.9896288689118287,0.994489307637418,0.9944998597398719,0.99697662693602,0.5224108286322322,0.8097113406536522,0.9571152048174083,0.29595026052405443,0.24247458780711564,0.031010170801814698,0.0006401675237686967,0.8181509220317218,1.6454591101434715e-11,1.875856464232993e-11,9.845993281861336e-11,8.092316418205405e-11,3.36216299687063e-10,6.525225648600994e-10,1.2361331957409983e-09,2.4816683703558115e-09,2.494307164248268e-09,0.600564963730371,0.008194959228781126,0.7100015688991748,0.005261496584625801,0.687684404382276,0.999999999999998,0.9999999999999989,1.0,1.0,0.05840669349217121,0.04323571633486208,0.016664375736775205,0.00437534569462523,0.007151631748461532 -आयताकार,shape,0.0005908657246998615,0.06146069016657047,0.5862940103211635,0.00014936177369887773,1.0650141568561969e-05,0.10274579027178649,1.7732158724357298e-08,1.370239355996962e-06,4.214721184041367e-08,0.9830756901297336,0.014965005362028917,0.0048583421550939445,2.3914932666726744e-06,0.12906152161027215,0.00018247366400629236,0.0019065078944073826,0.0012921879564320009,0.021540510068859545,0.9820213499897298,0.02759742824947097,0.8752042055360605,0.9458050179963932,0.9832196613971171,0.9680246616738644,0.9997838170819032,0.9997220296841409,0.999850158375708,0.9999574382595422,0.9998128192627845,1.4737335782158594e-06,0.004715908704389859,6.601195201951448e-05,0.7593723813444497,0.09292500462224434,0.9879976889653542,0.31266954343611997,0.5671967020668713,0.004495716340863924,0.00017655551525868677,0.24871528576129798,0.0007049684335183947,0.014457058857230679,0.00026391855102040246,2.8962886086085963e-05,0.00034721720170777676,0.0007233181465343462,0.0002710597287462136,2.997049063763781e-05,4.5714217588589504e-05,8.483312277201607e-05,0.00016369112582854595,0.0003014092866310276,6.228740645191023e-06,3.9115783826158955e-05,4.262769262424364e-05,0.0009459063610582674,8.433967615068975e-05,1.8267229167053626e-05,5.33597331110459e-07,0.005119501253648526,0.005915736033685812,2.718788844527037e-05,0.00011239886238726573,1.844368272425689e-05,5.383706620059521e-07,0.002544711911289985,0.9868124366757799,0.957925149521773,0.999942319256465,0.9674871885708574,0.907150289026795,1.705784807041548e-05,5.247105029801782e-08,5.407411136445037e-05,9.886779315110045e-06,0.01865747482514015,8.328119339145468e-06,0.022995223139046533,3.5255351664037145e-05,0.4874416246603762 -आयताकार,object,9.227883167397436e-06,0.00026714554915058974,0.50100235790569,0.00022202768026311542,5.48192589311211e-05,0.025750196438501606,3.437404480275216e-08,8.834960910070253e-07,8.226182366894207e-08,0.7463429504947651,0.0016480934290928854,7.334620171929573e-05,1.082327858573092e-06,0.005206615664506749,2.0772091336951603e-05,0.0002317827940755903,0.00020641492990563503,0.0007934913285455292,0.7373030873045531,0.049705865344796894,0.9084604430485328,0.8389019565018809,0.9234997366831381,0.974454661970075,0.9999156581684887,0.9998612661277871,0.9999955814518738,0.9999991076061389,0.9999768860757591,7.851388544287556e-07,0.00043098879155172736,2.423461465349294e-05,0.16741186973270275,0.06024639024000693,0.7875317789019669,0.6899878805129784,0.90148278516032,0.20848414436832402,0.015035126669426408,0.9474118882294199,0.00018937711388991279,0.0013202656622922047,3.468371908374055e-05,8.575335468389223e-06,3.370207083372408e-05,0.003398241034622467,0.001459137692015488,0.00015836055843110124,0.0002511670442287096,8.336379404120733e-05,0.0001786409219302467,0.0005444154523232862,1.4486143059398934e-05,6.659142782071337e-05,0.0002990132396553507,0.002369641472155175,0.0009592013112150627,1.6955310322038773e-06,1.5532735618626828e-07,0.00035694974242329495,0.000618073316688359,9.207168081937635e-06,1.18550492945699e-05,3.335132477526719e-06,1.786834252085048e-07,8.277388200091779e-05,0.9101666653904716,0.9246351694242892,0.9999205849620021,0.9856188889223968,0.9218064551981234,0.00010388024783267305,4.892088130734883e-06,0.004080370873071715,0.0005061725496915972,0.0401741097862366,0.00015398618851948537,0.013096486264396337,9.738855108949448e-05,0.27470629259557683 -आर्च,rgb,0.9936675123634824,0.9926749847670782,0.9808375385740558,0.7018986782277781,0.7665612008516248,0.00011081214017985059,0.0003866713680901739,0.02594872176288859,0.24069965263298798,0.33752551502996997,0.01469709232154948,0.0003257022424878614,0.00041823595403280836,0.0004486552565839555,0.0008558472729251168,0.000764219577633654,0.0006989538119529184,0.0006477766502637986,0.000688478550726738,0.9814349910209409,0.9612765373500264,0.9478689760983865,0.7804465979633352,0.6867790972991968,1.0,1.0,1.0,1.0,1.0,0.002174427697788505,0.0028337002399753796,0.0022371355729139102,0.0018999498652136778,0.0016802896914384078,0.0012035875028084354,0.9999999999997389,0.9999999999997626,0.9999999999999316,0.9999999999998757,0.9999999999999574,0.0005630591097652813,0.0006847368837196509,0.000527460425781887,0.0003931319451259982,0.0003380333702481044,0.9378691597342317,0.956593253141812,0.956872349587725,0.9701755789178534,0.4903973750142901,0.6232088753593479,0.7743029172831022,0.3671817417073055,0.33214801795776466,0.5317221754881842,0.22848131862359672,0.9301441975269039,0.0161609199696343,0.014732602810603738,0.057796079512945055,0.03370154995020155,0.06408453937132508,0.01105215701428178,0.01717569689811874,0.03899813756936709,0.03883377965957677,0.48471853450065716,0.08235710530761801,0.5454079471505572,0.06906968120763401,0.5376895361511705,0.9999999999954767,0.9999999999969069,0.9999999999997311,0.999999999999724,0.9589423034631019,0.9464046120449761,0.9072983570215315,0.8859815679165535,0.8835493155382738 -आर्च,shape,0.9999868358912467,0.9999474485969887,0.9998461746887939,0.9999984399274493,0.9998095725437784,1.4919131313760298e-09,0.9976995161332554,0.9999976501459016,0.9999970831979498,0.9999970043274836,0.9999972190711264,3.2342002375883836e-06,0.21314966924852366,1.4723998693018432e-05,1.8722738422358161e-06,6.832537177997949e-07,6.267800941867178e-07,3.996226444572402e-06,1.0199662695886559e-07,0.0003809363793344575,0.6093938726219139,0.7405994426200677,0.5955389598355031,7.291218363973761e-05,0.41050505344638866,0.04449033054457062,0.004292255344786923,0.00044404866279737146,0.0011183869269339342,0.0011132053887429989,0.00223735734199044,0.0005244016873537985,9.836424593215223e-05,9.854838258480335e-05,0.0011907867949104802,0.011289220920972155,0.0035123101182996485,2.8048060860014366e-08,2.1697264719861264e-08,2.5267503108691118e-06,1.9558622063032383e-05,4.317614718217589e-05,2.8962864372543967e-05,0.4400985822979424,0.02533529812058465,2.7531028305587e-07,6.984420483887194e-08,2.6248570717234675e-07,5.762328468676973e-07,1.8486281140227027e-05,0.00014662226687099252,6.769603327677802e-05,6.211993165131015e-05,0.00011152033340376972,4.839697239327571e-07,1.3596769858268729e-07,6.57621634299544e-08,0.009650264391695557,0.00011009797117702748,0.0005038221809578384,1.0984712466819374e-05,1.0140179877760332e-05,2.0240561996254385e-07,8.517182067519656e-07,4.383196234517924e-06,3.982330711237797e-06,7.569451223159716e-05,8.17646864898484e-06,2.6499456958539966e-07,0.00016512848545123068,0.0007846637176220703,9.24743934810086e-06,1.9918485083906618e-07,1.2037330085846545e-07,5.086540849559783e-06,0.011124253591804205,0.0011864071946149901,0.06331243866348328,5.3319171099731086e-05,0.01248718873455823 -आर्च,object,0.9999559519797726,0.9998644652899934,0.9998310506014686,0.9999902792655614,0.9997152155123521,1.1888443816279664e-09,0.9659615003164266,0.9999412366583184,0.9998614337355458,0.9999669018727739,0.9999395893982284,2.5755672566875093e-06,0.05032640133067506,1.199710995083194e-05,1.5558943666645904e-06,3.021190933265698e-07,3.5232301451105695e-07,2.1829636078661915e-06,4.85785306193412e-08,0.0006836854413657656,0.6812154382845437,0.7924876632838704,0.661259569275873,0.00016128530650169945,0.9454859805931302,0.6036233943855951,0.14806970336983555,0.015954257792339024,0.013356358439808676,0.0006897442199978013,0.0022008453157932807,0.00044275365005873714,0.0001173597210420207,6.654156072146053e-05,0.0010278682784697376,0.07079775505209886,0.021973922798905376,3.7395132404315487e-07,1.6622041079070972e-07,1.98165435961482e-05,1.054518236915722e-05,2.0221027875389292e-05,1.6180515967559928e-05,0.15819027779951153,0.004964592827252611,4.5056466572172153e-07,1.2410321497104285e-07,4.904460983601179e-07,8.33501334875468e-07,3.609508002750373e-05,0.00022002284337886368,0.00012058543740973102,6.266163054168007e-05,9.416706655293579e-05,2.2966567180548745e-07,8.23512835946639e-08,8.157613855958766e-08,0.0014728966019273493,1.91651901164847e-05,0.00011531339835189632,2.5153040698799534e-06,3.603628953221972e-06,4.2623904891077834e-08,1.376328537386437e-07,5.693516651451054e-07,1.2213822095105269e-06,6.296211282553536e-05,9.384762219678244e-06,7.369923730012214e-07,0.00020629259422973924,0.0011194256086745765,1.7688619707673026e-05,4.276926394178133e-07,3.8300578054152535e-07,9.212096095822183e-06,0.03233570718017613,0.00448005051179208,0.08443323365025038,0.00014976989237709256,0.022475978268563807 -आल,rgb,3.2646163455941546e-20,8.134034492308368e-21,4.793044732382999e-20,2.2487231431629137e-18,7.65228359243815e-19,0.04854229321222584,0.03541161151188909,0.00024844144892705196,0.09062657133346302,0.2116136379462374,0.008223780230875577,0.9986683508727789,0.9997529982987562,0.999797119062295,0.0008874999520076541,0.0008942608679868836,0.0008969374526341799,0.0008974782388768861,0.00114684472092455,9.963156200813825e-21,3.4806848458414606e-20,5.257589560878516e-20,6.313445607012423e-19,2.1736271132404822e-18,1.6243470365880918e-17,1.0112036704322092e-17,1.5407515316292826e-17,1.5406989129102975e-17,2.2280074731028497e-16,5.352591367049205e-12,2.2363501461387212e-12,4.543558897842707e-12,7.348807359799645e-12,1.0855961235859692e-11,3.214739949427233e-11,1.0,1.0,1.0,1.0,1.0,2.8757714233488466e-05,7.100112585186511e-05,7.335659347460971e-05,7.235352800374826e-05,0.0005614870742312729,0.9905563906846614,0.9959478128960604,0.9962056155377955,0.9986700035507785,6.72475228087721e-13,1.5808485231138925e-12,1.7317393684892031e-12,3.4074685885858307e-12,6.885575439024831e-12,0.999999730283689,0.9999999778297153,0.9999999449969358,0.9999532432890428,0.9999951473144779,0.9999998979879525,0.9999999701360442,0.9999999992452338,0.999999999524823,0.9999999998392408,0.9999999999692117,0.9999999999691394,0.00015355591095240543,0.0003129860624529277,0.00024223815331876573,0.0004042020333310935,0.00039224362500237073,1.0,1.0,1.0,1.0,6.50864643252181e-20,8.909136269746684e-20,2.1629741541866775e-19,6.385307652633285e-19,4.294102526966456e-19 -आल,shape,1.1104322624811373e-08,0.00021139288769176268,6.431854465662516e-10,2.999087593502802e-05,1.0391776021620205e-05,7.168426292958907e-10,0.5593170975750774,3.53004533610148e-12,3.507239037720596e-10,5.462064596918436e-13,7.949651632239557e-12,0.053751425080076555,0.000430692567130097,3.189696038786427e-05,0.5564110912619036,0.00957751650759294,0.007037049560427675,0.02864605398648321,0.008932722094914239,3.9060674086719395e-08,5.367312921092552e-09,2.9380867890648506e-07,2.9515661566863516e-07,2.8508072356498206e-05,3.461009617188289e-08,0.00016185543369807092,0.0005895071877271048,2.1022121805129642e-05,0.00030939245687484776,0.8095599418271527,0.0060417917031524255,0.08975117252566893,0.011600715270039273,5.3629802353709525e-05,0.00016303941954634498,6.3360090855284e-05,0.00015292532354726202,0.01015931526314917,6.89680382779675e-05,8.796090894115092e-05,4.604545773531321e-08,7.385435215030822e-08,1.4881190494862702e-07,8.033448521142401e-08,3.697109976265416e-11,0.9969702857070493,0.9990209549476647,0.9987769231065405,0.9994316944516627,5.7699739242039596e-05,0.00010605506029986977,5.200793878054993e-07,5.351679743465328e-05,2.165597383046762e-05,0.9958199604867768,0.9969731220768795,0.9650147367353413,2.517689961192262e-07,1.8945368500791604e-08,9.8438631667125e-09,1.1336644165181327e-06,1.6311132393453443e-08,0.9999973557681092,0.9999925210331947,0.9999950069733335,0.999959902858963,0.9981676582630892,0.062301043855981904,1.8126967650433782e-05,5.8682007261039406e-06,0.0005357856026500017,0.9999961627797301,0.9999998775494735,0.9999958391007372,0.9999555484172568,3.6870995828834664e-09,1.063401395067199e-09,3.214121582438367e-07,1.2601829568309869e-05,3.482239191833816e-06 -आल,object,2.8743832627983344e-09,1.1448199775559198e-06,6.352201100207264e-11,8.75774511474394e-08,1.3552186285169228e-08,4.102156625212255e-06,0.4286327482464103,2.674801750978139e-07,9.599369982247624e-05,2.626792484519277e-07,1.416594211237567e-06,0.6881898289336986,0.018393011991756074,0.011443075198700981,0.10697858470025114,0.00581877267957484,0.0046189001490609845,0.014905775248523025,0.07765342492357806,4.187404055604732e-09,5.582299688344172e-10,4.287912485557025e-09,9.715496997129242e-09,5.570875543934849e-08,6.284740926695908e-08,2.3994696206671812e-05,2.5069820231273046e-05,9.607416420803852e-07,4.288792676981388e-06,0.0009820792304527444,3.50232332897624e-05,0.00015726294384695337,0.00011859957470004097,5.4749746855516426e-06,1.6445798549350108e-05,0.9999667131591282,0.9999802631559965,0.9999998501220866,0.9999988141987856,0.9999941181384457,4.049861671970005e-06,1.4379648198785463e-05,1.7406870902365597e-05,3.1543089448762856e-05,1.0746930503072358e-06,0.9942971392645752,0.9984239522422177,0.9957951522481241,0.9983351111998404,1.3797037912115535e-05,2.0362221541239532e-05,9.907769616948733e-07,1.1518218355501881e-05,6.734194508117086e-06,0.9994508743850278,0.9998471611564448,0.9987014764943299,0.039066550383990775,0.011853111237030927,0.010359009200826786,0.207966475386165,0.055537701962620464,0.9999996132482868,0.9999989389242915,0.9999996947369997,0.9999987941936945,0.9419581118702398,0.03688864019456529,0.0001494093192816647,7.544949211102278e-05,0.0011215186305902915,0.9999999999095972,0.9999999999895901,0.9999999998538587,0.999999999864359,2.0409095719310952e-10,1.181893470396057e-10,1.3454474251880907e-09,2.600659795900116e-08,2.1626794113863657e-08 -इस,rgb,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.8376778752436849,0.8928346270570133,0.9012656008608403,0.9568314484535619,0.9997983649243176,0.9870074966671349,0.7572541838126267,0.9995777769861426,0.9992792152593463,0.9999999999999862,1.0,0.9999999999991833,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.011494517341549418,0.9793423701314437,0.006812511779709695,0.9911390602480011,0.009276848983559845,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -इस,shape,0.999999998127548,0.9999997655259104,0.9998679624332211,0.9999991305136435,0.999994544010192,0.9999997140115412,0.9999997952957475,0.9999836315314609,0.9999990791230471,0.9999566875223125,0.9996416976785861,0.999999954422364,0.9999988465128755,0.9999999983306069,0.9999906915605883,0.9999995229249978,0.9999990311606405,0.9999967444839273,0.9999999536017167,0.8397622328397242,0.03574258988613269,0.8040769935520282,0.7655446960847755,0.9975062607735605,0.9487383700060448,0.48384139142181093,0.9998170673891963,0.9998729063521633,0.9999333416024905,0.999999357458036,0.9999981862288085,0.9999971463753065,0.9998642035532121,0.9999982901808322,0.9998449424457453,0.9999999979962555,0.9999999954129097,0.9999548305365271,0.9999662962599123,0.9999696708841118,0.9999824169198678,0.99993666434972,0.9999931772864313,0.9999993105410916,0.9999982222545207,0.9999984940526935,0.9999997854839293,0.9999997137314027,0.9999998429589043,0.9999996340656951,0.9999924305849645,0.9998180030757831,0.999997232193296,0.9999989763513484,0.9999999534498563,0.9999999356509298,0.9999995266636454,0.9999921850899162,0.9999997959090413,0.9999205945844322,0.9999697394812007,0.9999979916025228,0.9999999958957211,0.999999999250917,0.9999999990705053,0.9999999972296143,0.9999998343730462,0.9999999686931548,0.9738225344933222,0.9993479207834673,0.9997837016111613,0.9999999988385562,0.9999999963006694,0.9999999994122923,0.9999999748392105,0.9999999950961038,0.9923490581554225,0.9999999007456838,0.9979544067121889,0.9999999731957976 -इस,object,0.9999999997663673,0.9999999996256932,0.9999996841430344,0.9999999986277441,0.9999999946729794,0.9999664169491402,0.9999995896695492,0.9999012279841109,0.9999988321302177,0.9999469842080889,0.9994252940911539,0.9999988566956075,0.9999988919701641,0.9999999657904307,0.9999999990978325,0.9999999999686828,0.9999999999417202,0.9999999999569897,0.9999999999500819,0.9999964002520653,0.9975029517591754,0.9999736850639738,0.9999163741886573,0.9999999898337174,0.999999999999968,0.9999999999999405,0.9999999999999971,0.9999999999999982,0.9999999999999996,0.9999999881204588,0.9999996275755206,0.9999999466932135,0.9999949994640606,0.9999999974171754,0.9999998517315352,0.9994581888973887,0.9992426354074205,0.9985181430490488,0.9998227500194968,0.9930726149280029,0.9999976387929328,0.9999976643911671,0.9999997503492272,0.9999966836117279,0.999990482528238,0.9999469465435094,0.9999857786118865,0.9999782496400282,0.9999633793695992,0.9999989916521324,0.9999935542104409,0.9997566242858089,0.9999954796325757,0.9999937845140897,0.9999976878246659,0.9999998194666677,0.999982342912182,0.9999999925310509,0.9999999989395016,0.999999990331997,0.9999999842670253,0.9999999892541517,0.9999999999883804,0.9999999999867613,0.9999999999828622,0.9999999998542417,0.999429675716551,0.9999830872525959,0.7955756165322039,0.9696017188779863,0.938128863027511,0.9999848615397284,0.9999951883801986,0.9999968303744219,0.999981641847749,0.9999999884494642,0.9999993821201537,0.9999999985443735,0.9999999894581576,0.9999999996192663 -इसक,rgb,0.0001633912214575109,0.06088616565346277,0.3594282835956484,0.9999998289373908,0.9999999894208488,1.0,1.0,0.999998658360321,0.8012645416076355,0.32661065984857757,0.999999976945244,1.0,1.0,1.0,0.9999999999999996,0.9999999999999998,1.0,1.0,1.0,0.9996648814024852,0.9999309836849354,0.9999879927011571,0.9999999934041797,0.9999999496793189,3.0279742105485437e-89,1.8470563693217172e-87,5.283354764424613e-87,2.0882790844024654e-85,2.3540885175430285e-75,1.0,1.0,1.0,1.0,1.0,1.0,5.276144425630138e-08,1.3652413251886643e-07,1.078973685014957e-09,1.5487845466029828e-08,2.5280461334295637e-09,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999960636,0.9999999999998384,0.9999999999899183,0.9999999999999667,0.9999999999999958,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9989564204179416,0.9962061547559139,0.5313536405192469,0.3559590111941781,0.9979694940583049,0.9996214388878983,0.9999656935276725,0.9995490284266535,0.9999401263220923 -इसक,shape,0.9999998861927936,0.9999999978712508,0.9993631514218008,0.9300940145265895,0.9999832575540895,0.9999999996519033,0.9999996432985803,0.9999999997393427,0.9999999873104531,0.9999100956302539,0.9998797139209846,0.9999999989412487,0.9999999999999998,0.999999999574525,0.9999999999999993,0.9999999999999436,0.9999999999999887,0.9999999998884053,0.9999800828116517,0.7230075062008589,0.05187183126830406,0.0023179873053894456,0.023429325951351165,0.8593279487855363,0.9695553437593544,0.9796145344627603,0.01103910720115893,0.028266010815453643,0.5110982115693347,1.0,0.9999999997208275,0.9999999999999964,0.9999992568265886,0.9998979062156397,0.9999929423690402,0.9999970796207461,0.9999873434125972,0.999999493929634,0.9975646835331294,0.9999995354573639,0.999999920781416,0.9998779136300918,0.9998949182085093,0.999999999389009,0.9998009819288017,0.9999969298776278,0.9999967849505349,0.9999991597120854,0.9999997503800212,0.9999892649502999,0.99998015581626,0.9997583666670672,0.9999957394883053,0.9999895016147057,0.9999718362019913,0.9997162907936811,0.9999503945216179,0.9999992544252992,0.9999953251627817,0.9998278842427917,0.9993654606694514,0.9998592736767222,0.999999957294081,0.9999824716432697,0.9999999815875847,0.9999442590567439,0.9993716116721109,0.9992729392235244,0.4178135889181186,0.30447209955594373,0.9984493708390199,0.9999999378875218,0.9999999998899947,0.9999952429765874,0.9999989176186002,0.8095855253962281,0.08865377377985127,0.9999999998509177,0.9999550518744144,0.9999838487271592 -इसक,object,0.9999999647833496,0.9999996605729249,0.6040293117863575,0.883642972902041,0.9992584261499087,0.999999997030264,0.9999999986246946,0.9999999756957282,0.9999998335764305,0.9999397717803559,0.999998244898124,0.9999999893660246,0.9999999999999754,0.9999999456759033,0.9999999999609535,0.9999999999381324,0.9999999999280607,0.9999998436112731,0.9999025267903834,0.9909911696109813,0.9933956134746684,0.978225725548484,0.9819855639575431,0.8023465271785374,6.851861767825311e-10,7.79814197918617e-09,1.3032747693758604e-12,6.881082764608213e-12,1.8678855091297803e-09,0.99999999999895,0.9999997855586544,0.999999999869021,0.9999684994251551,0.9997672353259784,0.999652866469302,0.9959572358748743,0.9650258410389926,0.9199910380358425,0.7654188140582604,0.6338801120361002,0.9999993198006877,0.9999894720752124,0.9999787773729796,0.9999999947786162,0.9999990377608059,0.9999838182704733,0.9999890375437817,0.9999993224424363,0.9999994621909073,0.9999746777903443,0.9999665830176567,0.9999494858170431,0.9999935740696632,0.9999958987816573,0.9999996280828809,0.9999883986196193,0.9999777975908399,0.9999989110757712,0.9999989484396148,0.999937339719846,0.9999773093198939,0.9999903366022984,0.9999999923280413,0.999999132360046,0.9999999879158471,0.9999981879367281,0.9999915126599576,0.9997979781010936,0.9942194533513994,0.9926831965368061,0.9997886575745962,0.9999991434598481,0.9999986460883662,0.999834930580136,0.999907542726375,0.0017126964919937625,0.01805037040958375,0.9966318989592597,0.9907534172651618,0.5285633985816788 -इस्तेमाल,rgb,1.0,1.0,1.0,1.0,1.0,0.9999999986766925,0.9999999999809621,0.10077920285452173,2.202810635793533e-06,3.7239379510466073e-07,0.009634147508019178,0.06545743913137766,0.014596478771868558,0.01009945580173035,0.9910164884299802,0.9934906582031015,0.9949918688287269,0.9960168930687808,0.993750995426088,1.0,1.0,1.0,1.0,1.0,2.6201742490901923e-13,1.323402663220876e-12,1.0221719631333705e-12,2.5848499978604386e-12,3.525770206244967e-11,0.9999999999999984,1.0,0.9999999999999993,0.9999999999999993,0.9999999999999989,0.9999999999999964,3.5240645416095955e-27,7.850721249452618e-27,5.867294139877613e-28,2.6171245088683468e-27,1.69424608040519e-27,0.999954346487509,0.9997419247646492,0.999883266853065,0.9999576252693355,0.9997181524946201,0.9999999999982943,0.9999999999962874,0.9999999999960048,0.9999999999888249,1.0,1.0,1.0,1.0,1.0,0.999992832012732,0.9987084460514756,0.9999905870387804,5.8073832776966554e-08,2.3118434100921377e-08,1.3852936211067665e-10,4.335761300277108e-10,4.468226558608109e-11,4.815840445451237e-07,1.383023327316715e-07,5.217963932939415e-09,5.394764159283264e-09,1.0,1.0,1.0,0.9999999999999998,1.0,1.4791821116828657e-19,6.858732202077385e-20,1.0141258405593087e-20,4.651638371893655e-21,1.0,1.0,1.0,1.0,1.0 -इस्तेमाल,shape,4.122981147425858e-06,2.8537102111554724e-05,0.0020861991993635313,0.014155719150357198,7.683186112031147e-05,1.0848951614400425e-08,0.5071136052778835,8.153604563868623e-05,3.391020512050255e-08,1.2694313011174053e-07,2.568740151000442e-08,0.9994162114948159,6.827671212016881e-06,0.0015634312297471266,0.8613065886917765,0.07440379451580989,0.024449108104683787,0.4566921473971099,1.1811830741266412e-07,0.031301938481342946,3.1212491299976574e-07,0.014906172028385017,0.005877129628447998,0.027475901840607414,0.006446980772232874,0.049155227044333706,7.803080674818183e-05,0.004435015068023249,0.010607019918046003,0.67227491751217,0.010810997667738008,0.31091411150020143,0.9922928013789937,1.9902279961981866e-06,0.9681718368638061,0.0005568492554124987,0.01600001151292335,0.9997654486327382,0.9880359976435851,0.9898276765087086,0.9999997257477599,0.9999999880884479,0.9999513386576525,0.9994599861069955,0.9995265676770464,0.9996913201727653,0.9999623495454054,0.9999954312889111,0.9998268211572494,0.9999618730404762,0.9999926175043975,0.9999777053727521,0.9999854205718417,0.9985552105764366,0.9998291161480607,0.9955857723562936,0.999508757110763,0.05019888690187296,0.8690315347424459,0.413694869137077,0.9973369075682454,0.05297420490879735,0.9999497488819069,0.9823128134680201,0.9660754800310051,0.9999276978498095,0.004167309833080582,0.08140085887190184,0.005543540432705418,0.004046225819293044,0.15956760378025728,0.978364629707298,0.9999128581666947,0.9999842152587475,0.9992054595993192,0.00014320126910209927,0.0014977152934860152,0.9882843234291839,0.7903592743477976,0.08431366424800249 -इस्तेमाल,object,0.9966939651015326,0.9975853052306278,0.9952808197288359,0.9996873956844048,0.999039676002237,0.9999901327016529,0.9890971742615603,0.004790941235906565,3.6897831841103604e-05,2.095399989833524e-06,0.0001269882838694586,0.20324229070293284,0.3477364605017986,0.022151871889519236,0.012083442698558686,0.06685680484645311,0.07239653672369926,0.011656414123900258,0.03414236953155213,0.9991328634653359,0.9976935927394651,0.9994569132494671,0.9994629477724919,0.9997818596600657,2.4808170901506113e-07,2.980642277785143e-06,4.3820167970317366e-07,2.8713732166407965e-06,2.0753768633475356e-06,0.9830430255817497,0.9745340460427373,0.9662269650286084,0.992331739959893,0.9853059765312276,0.9982594891630646,1.1920627311024226e-06,2.678105982677045e-06,1.1610666650358998e-05,0.00017600390275528834,5.999214608644065e-05,0.9999899607977819,0.9999890201673016,0.999990926964114,0.9999105429414831,0.9999045330008697,0.9999610281666285,0.9999770889382489,0.9999834221239002,0.9998953423627813,0.9999992813323977,0.9999981883388299,0.9999986092977233,0.9999949228234006,0.99998686478899,0.9994841267396612,0.9931317510678961,0.9995846424730812,0.0001339124942750269,0.000563214354617318,2.3829332027149866e-05,0.00012556378770405512,0.00023584453550094174,0.03378524318429548,0.01116140690151283,0.0002446860202734164,0.006540249697895321,0.9997133763532308,0.9999464708899272,0.9999934416712893,0.9999886351685567,0.9999936559707256,0.0003468154279785177,0.00029443396042789604,0.0022374807742830353,6.067729540693245e-05,0.9991087358012005,0.9999703463368067,0.9998557028831745,0.9999994770844506,0.9994024543206979 -उपयोग,rgb,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9231984704916268,0.9343881300437606,0.9424534852106489,0.9740387685219738,0.9999991670478608,0.9985802727385169,0.5535033849231947,0.9999991534858323,0.9999986541126527,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0226873550544448,0.9999988782019059,0.00683841209242945,0.9999998013880588,0.012509461629539208,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -उपयोग,shape,0.9999999982298893,0.9999999729591332,0.9996981013346943,0.9999993751207007,0.9999603149554981,0.9999999554308128,0.9999999679377006,0.9999302517368879,0.9999957686167017,0.9987490789998965,0.9013596344178463,0.9999998560233486,0.9999999721398997,0.9999999990876547,0.99999978992556,0.9999999930311076,0.9999999883818168,0.9999998538053211,0.9999999525603804,0.7777154677318686,0.042330352007906184,0.8275261142598099,0.7381985194512931,0.9984593005366851,0.98336086741687,0.6356074522706774,0.9989682434148449,0.9996515681416112,0.9998941314064697,0.9999999833947275,0.9999987607515767,0.9999997753549191,0.999812461516634,0.9999998180943057,0.9999164590534173,0.9999999982867231,0.9999999931761414,0.9999620498447984,0.999992356017838,0.9998515830828728,0.9999661163737362,0.9998652578031249,0.9999895133523313,0.9999988551375534,0.9999900190357774,0.9999984188950409,0.9999998204258187,0.9999998236446996,0.9999998296568783,0.9999995903154637,0.9999919635389909,0.9997920772792949,0.9999975090416299,0.9999985825355416,0.9999999569250232,0.9999999651527597,0.9999994002150643,0.9999935228940054,0.9999997799978955,0.9998769371586467,0.9999253905935841,0.9999987674055452,0.9999999975551206,0.9999999988359052,0.9999999979291863,0.9999999980953331,0.9999993067155325,0.9999999367512387,0.9682915091837356,0.9992285733260481,0.9997740128374486,0.9999999978645819,0.9999999933403538,0.9999999996040452,0.9999999551687229,0.9999999542396342,0.9769040759218253,0.9999998915104287,0.9998914671981337,0.9999999502213894 -उपयोग,object,0.9999999997872231,0.9999999998452425,0.9999998518050786,0.9999999978990881,0.9999999898213953,0.9999703628062714,0.9999999097714808,0.999473783717944,0.9999932530536642,0.9987752378554441,0.965149698541216,0.9999993441634987,0.9999997073942467,0.999999997958245,0.9999999998914222,0.9999999999828866,0.9999999999767879,0.9999999999855342,0.9999999998250497,0.9999927945184788,0.9892043121893934,0.999919878888346,0.9997280583136071,0.9999999853293213,0.9999999999999221,0.9999999999996829,0.9999999999999045,0.99999999999994,0.9999999999999911,0.9999999989025816,0.999999888608863,0.9999999918803634,0.9999945616409718,0.9999999977544893,0.9999999564399341,0.9999839166190088,0.9999650803137877,0.9998132791161417,0.9999757512902939,0.999507260578302,0.9999971983977426,0.9999976842998698,0.9999998377546734,0.9999955864336311,0.9999811819619797,0.9999868321863158,0.9999968598057042,0.9999963287226894,0.9999919440248138,0.9999997273353298,0.9999978402362654,0.999885485930928,0.9999981418305526,0.9999958685832581,0.9999991266752712,0.9999999574193084,0.9999959804733665,0.9999999945138549,0.99999999907774,0.9999999921262547,0.999999970782026,0.9999999916946757,0.9999999999935725,0.9999999999843863,0.9999999999798037,0.9999999999494809,0.9989383150079166,0.9999856035123916,0.7719948191657122,0.9754590792782034,0.9520668440646389,0.9999929986173997,0.9999979652258782,0.9999993216703926,0.9999920381172908,0.9999999832289609,0.9999996074426396,0.9999999993860615,0.9999999972066163,0.999999999791197 -और,rgb,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.3736783795627054,0.67478407010855,0.06640790749136931,0.3388714156388469,0.3069159164918182,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999543,0.9999999999998284,0.9999999999992133,0.9999999999953006,1.0,1.0,1.0,1.0,1.0 -और,shape,0.9999918689699239,0.9970428186207707,0.9999984922924542,0.9999679264490088,0.9997527912276483,0.999999999729775,0.9999999999340898,0.9999999891237566,0.9999999866263509,0.9997449728573602,0.9999995503999027,0.9998900033752897,0.9999999986740633,0.9999999988394335,0.9999999912093528,0.9999999996755609,0.9999999997012603,0.9999997166191023,0.999998470296776,0.9999874140143887,0.9999971967573642,0.997837760814945,0.9944740304477157,0.9999974745899322,0.020914628271625168,0.00048036159161501376,0.06800159681030435,0.9084825537852775,0.9989513545595894,0.999999996940176,0.9999862720239918,0.9999999776332188,0.9998757538937053,0.9999999881025737,0.9993765891803436,0.9999994631436007,0.9999966732015306,0.999996870918472,0.9999998679611971,0.9999911016960236,0.9999776354751874,0.9999838533451973,0.9999998076274571,0.999995705560509,0.9999973982920024,0.9999941636734612,0.9999886935780848,0.9999954766148641,0.9999980454952042,0.9999899407596702,0.9999802355647132,0.999976279647726,0.9999998256460267,0.9999996113439579,0.9999997769804487,0.9999945839041123,0.9999948697692844,0.9999918066096102,0.9999998248359319,0.9999833308177436,0.9999614676715339,0.9999999201133168,0.9999836017503044,0.99999281290177,0.9999998990557903,0.9998082956963744,0.9915177452647524,0.9985578624763719,0.9995859186650664,0.9995890460081477,0.9981052440922674,0.9999654580288789,0.999999926491728,0.9999986440034412,0.9999987456478685,0.9999999946989322,0.9999991736534549,0.9999986180838979,0.9999998658492704,0.9999963252708484 -और,object,0.9999999988184272,0.9999999961383381,0.9999999982759709,0.9999999997904379,0.9999999999993101,0.9999999997814202,0.9999999999989291,0.9999999982267338,0.999999996897726,0.9999934758618894,0.9999999972091633,0.9999999815586015,0.9999999999915572,0.999999998687092,0.9999999999999667,0.9999999999999836,0.9999999999999818,0.9999999999998108,0.9999999999695113,0.9999999995970459,0.9999999999239519,0.9999999706353528,0.9999999156414079,0.9999999999964766,0.9995614110092542,0.999669406080544,0.9999872859899809,0.9999999335413527,0.9999999976947491,0.9999999999999969,0.9999999999990192,0.9999999999999889,0.9999999999905438,0.9999999999999483,0.9999989943369121,0.9998757460038586,0.9997352786355181,0.9999984723487341,0.9999829352085853,0.9999501881383066,0.9999999925037691,0.999999999921134,0.9999999999711364,0.99999894371627,0.9999999971561675,0.9999999909360066,0.9999999405686568,0.9999999715011682,0.9999999863878575,0.9999999929189132,0.999999987325824,0.9999999650317503,0.9999999994638262,0.9999999992109023,0.9999999780432689,0.9999999515198542,0.999999913582439,0.9999994167940571,0.9999999792962313,0.9999997983554552,0.9999981959840001,0.9999999431911158,0.9999999881263925,0.9999999277608426,0.9999999941003881,0.9999739524421042,0.9999996167906972,0.9999999869413727,0.9999999902622089,0.9999999731494289,0.9999996159309631,0.998452925562285,0.9999986883408325,0.999814456171454,0.9999617998323306,0.9999999999968663,0.9999999999975977,0.9999999998053251,0.9999999999999116,0.9999999998947118 -ककड़,rgb,0.9999669609891177,0.9999766647196664,0.9999744585489472,0.9999709060994003,0.9999709768856374,0.12432538109346243,0.03927509448065337,0.47505978920353437,0.015155544687901916,0.007410143295427248,0.18912441492090806,0.0035419115883949504,0.0013097237028212455,0.0011577175157412474,0.7007178242327945,0.7090237606996477,0.7156444039541912,0.7213103565908644,0.6932047130900314,0.9999767226653912,0.9999765725002027,0.999975819603144,0.9999705220804347,0.9999707383401865,5.264267004752049e-08,1.247628451866e-07,1.2584364851917666e-07,2.2991024965125907e-07,3.3736615871604425e-06,0.9995976014847173,0.9995911370302606,0.9995861967210735,0.999521843544933,0.9994809288107263,0.9993229253508645,4.0586218407832416e-26,3.701104413519103e-26,1.0165254785482719e-26,1.888035484628658e-26,6.3370280947713354e-27,0.9278582638805225,0.8892704396399731,0.8966736182586177,0.9058089361500092,0.8004281787691845,1.0837254188814957e-07,5.43026357360736e-08,5.242198983281641e-08,2.398301653070566e-08,0.9103383056469879,0.7994997857012326,0.6703425249559184,0.8673039336435105,0.8364553982518764,9.361602661793069e-09,1.079693393635331e-08,6.089376237080143e-10,0.00014644454910212276,4.576339350824512e-05,3.0282700228172667e-06,1.931137422237726e-06,1.740778936513154e-07,1.637753651401663e-07,7.194294451755226e-08,2.152995649939985e-08,2.154276078990963e-08,0.0005580697538203633,0.002819531127851985,0.00036651964981600514,0.0029296707257276,0.00029816330674830406,1.9473414159622795e-24,1.2544797096297351e-24,1.0574764387542748e-25,9.948357003386461e-26,0.9999766480680455,0.9999764034229305,0.9999753221898711,0.9999724819000448,0.9999741339767924 -ककड़,shape,5.2409817535184636e-05,1.1779664902795245e-05,0.0036626672832203388,5.666345943216038e-05,3.514775229378125e-06,0.9999000624242768,0.00039693476846589025,0.709759465337981,0.021147048530461347,0.9836307713269167,0.02977622825807213,0.997332325313353,0.9983673378832526,0.28782674449620216,0.9999998155471452,0.9999992404432143,0.9999973404320021,0.9994625106010565,0.6649521886644844,3.664471918119767e-05,0.00556784260972368,0.0003714436832296619,0.00020430402509005933,6.246578041691173e-06,0.01516901441436792,6.928884730718361e-05,0.011266920446055238,0.0006673639233306541,1.8550648889622214e-05,0.9999536155968776,0.9999020435251234,0.9999423318020167,0.9998683356962974,0.9998249768590491,0.9991870780779951,0.0006598445175221097,0.0005820067322182551,0.013981352237057197,0.00285798551616897,0.0020473477875423214,0.00013009541233033163,0.052252426303701235,0.019892129711336578,0.003342858191750998,0.022392011906043396,8.971431446431769e-07,8.232122555394147e-06,1.2071125203349743e-05,2.05035258093539e-05,2.6442709417986718e-06,2.357244194648474e-06,6.868268579947909e-07,1.5891419985120473e-06,2.17201626600776e-06,2.2330331336243457e-06,2.2327825080852595e-06,8.15810824766599e-07,0.0003149958311181945,4.034803571918449e-05,4.243713534920382e-06,0.0009757507523232899,6.069873738481225e-07,8.168910760160143e-06,2.7029205978394394e-06,0.0006341477122967328,0.016202956124339227,0.061649134135611815,4.234275849059592e-05,0.0003157227364042688,5.077068059095011e-05,0.00015708409145223957,0.00030071388358152455,0.002112123870243917,0.00019928884795555546,1.5620861130415495e-06,0.08279950302881302,2.717467473549175e-07,1.3082394175360325e-05,3.6965503326828386e-05,0.04869662215229045 -ककड़,object,0.00875768223009379,1.9071600325700498e-05,0.02219584574738568,0.0007440871802309753,7.29528740232763e-05,0.9999969376852358,2.028494580634053e-05,0.9998168839606187,0.9899007192327715,0.9999926723516301,0.9989372406336102,0.9955764954385841,0.996347995594912,0.6710041606663232,0.9999998702516861,0.9999998746574448,0.9999996994518996,0.9999791313459185,0.9999710161107978,0.02415268058236172,0.33081958819630475,0.008395065072237343,0.010149824182610871,0.007725116491883827,0.2257606081986449,0.3431269889644576,0.99683612066292,0.9466517210119147,0.23403711228662472,0.9999712290207573,0.999912481855961,0.9999798029361574,0.9999280738310792,0.9999433625110347,0.9994379300238027,2.0498867815205603e-07,2.444830850386934e-07,6.205995358427126e-05,9.218636574238018e-06,8.958361524228541e-07,0.10726892583287473,0.9548024170343756,0.3670770344615383,0.05472076238806922,0.9503918896228293,2.515006589116965e-07,2.306672161985466e-06,5.655505389145417e-07,4.2302542313612176e-07,1.7686790024468228e-05,5.679796477971281e-06,3.835915415724472e-06,1.5181929813949956e-06,3.251129604581066e-06,5.114813935353578e-07,3.991186020095938e-06,1.8384896571813888e-07,0.0026857528348176694,0.0026272049742966396,0.0001771622308015136,0.05379698652153748,4.171974059352127e-05,0.0007952855902319182,0.00014788103365759276,0.002532339749184007,0.01187749426165001,0.11470385169500728,0.0010698049339551668,0.015166770136332844,0.00020390862574446496,7.077228873928715e-05,1.0574974000897864e-07,7.657475423161327e-07,1.4401166286055178e-07,1.7291621953178191e-09,0.8661577205120765,0.00022234345958790992,0.008093531586524174,0.05557833224448112,0.8166208560812941 -ककड़,rgb,0.9999601539216894,0.9999707650072766,0.9999687866120535,0.9999652133677589,0.9999643308678369,0.14510259919919444,0.045139594720142576,0.5458120296221596,0.02194063916747843,0.010927865763113725,0.242898631996966,0.00514216069270838,0.0019375193180765536,0.001718270718182808,0.7513848038597375,0.7584494588427142,0.7640598365817877,0.7688464284466825,0.7445939300984465,0.9999700374214338,0.9999703840623817,0.9999694956277388,0.9999635891613723,0.9999648657414767,6.123816875149071e-08,1.4372508244064775e-07,1.4565716544825363e-07,2.6527866009708566e-07,3.952030169714556e-06,0.9995833878022391,0.9995666927632818,0.9995687785715507,0.9995036828252073,0.99946415092555,0.9993104123624231,1.013984313251964e-25,9.18968283786963e-26,2.5722930597713148e-26,4.7254291319184273e-26,1.5900767181999907e-26,0.9404236810544789,0.9091573846124953,0.9150284842255215,0.9222653795444786,0.8350823156922891,1.2425273123512687e-07,6.277098677167975e-08,6.064487630111624e-08,2.8046251922821868e-08,0.8941748810904333,0.7686464057146559,0.627425300559356,0.8470044111863781,0.8135386800542718,1.2595629937458103e-08,1.52807090860049e-08,8.210767865303071e-10,0.00023449339178633325,7.45837907007008e-05,5.180481764040179e-06,3.30481207956293e-06,3.0732596165612305e-07,2.742104325063393e-07,1.219335650928298e-07,3.749380328300689e-08,3.75079766359089e-08,0.0005572164437027372,0.0028927459944120466,0.0003671120644421719,0.003019320635782901,0.00030030758442497427,4.2339978194292e-24,2.7439202384691588e-24,2.3422977323057666e-25,2.218265810191795e-25,0.9999710955208044,0.9999708144092679,0.9999697397928845,0.9999671121190079,0.999968706506407 -ककड़,shape,5.8160254359856e-05,1.334342608461333e-05,0.0035785512519606482,4.9325868786072956e-05,4.01949914097493e-06,0.9999155390203169,0.00036264012569059314,0.7117317321086623,0.021408306214524185,0.9818283439514742,0.031283672634987846,0.9973604316539826,0.9983392002909383,0.2724936975566458,0.9999998299275629,0.999999291223118,0.9999975391363771,0.9994901916382278,0.6813092167161248,4.844119984751843e-05,0.006637486304310555,0.00042500509423750566,0.0002329200039124681,7.415312378328974e-06,0.01629551929036219,7.926972900103643e-05,0.011889201772532375,0.0006923758151507128,2.004916248404884e-05,0.9999572668214706,0.9999061432928642,0.9999487251914425,0.9998624631604643,0.9998218409394666,0.999181768094384,0.0006995317975576061,0.000599149390647943,0.01533760829651965,0.003111089350389332,0.0023866491637122636,0.000137674741381083,0.04977283807363619,0.020852728349315924,0.003908624644222118,0.022192912014566517,1.0598540742788181e-06,9.759085664753126e-06,1.5027959042892299e-05,2.5464832179785008e-05,3.3586492429586846e-06,2.938828354131338e-06,8.873976056700944e-07,2.0451614053672184e-06,2.8736164571459812e-06,3.0639276877501423e-06,2.7320262672159446e-06,1.124319845144084e-06,0.0004511847126955744,5.556763819817191e-05,5.525053674072073e-06,0.0012230591212040638,7.888660095083903e-07,9.432885347382689e-06,3.2293168092266114e-06,0.0008133199070372557,0.019722680735359682,0.06952828625404249,4.866293887835404e-05,0.00034936078379435245,5.9288983496848034e-05,0.00018191500672946217,0.00035440327251498946,0.0024432384594778025,0.00023041599047344145,1.854167948745957e-06,0.07928030311358267,3.3689735526800715e-07,1.2872623970843357e-05,3.531812050117456e-05,0.04839414107198115 -ककड़,object,0.013638714725705192,1.8804999194286808e-05,0.01914516266468221,0.0005507901571574318,5.717192936243851e-05,0.9999978213977677,3.452998845751324e-05,0.9999688130213742,0.9983204357678223,0.9999987066774239,0.9997384038177476,0.9982641777617374,0.99861041118445,0.8211882615468579,0.9999999044140329,0.9999999158002284,0.999999787390078,0.999984835148473,0.9999667227322756,0.01089411973301881,0.25815533496027715,0.005413763078540909,0.006847728510758695,0.0027996595849966517,0.20742007464121215,0.29111003226375715,0.9944675181909534,0.9101453925838126,0.14310853014209707,0.9999648843521531,0.9998928711356051,0.9999739750026803,0.9999333080953527,0.9999317811591177,0.9994096029889739,1.4708400459797463e-06,1.7363732389826663e-06,0.0003172556466395522,4.52706236213103e-05,3.879211692403719e-06,0.07740452185549894,0.9380174032261728,0.3754808702543147,0.0853977716099927,0.9676229737720914,1.941784801752605e-07,1.8988014244244774e-06,4.892618450206508e-07,3.921946442801169e-07,1.0122928218318743e-05,3.6287211213208636e-06,2.277891342435912e-06,1.0775412653703096e-06,2.230692211220602e-06,5.851533465674807e-07,4.901176800442372e-06,1.7899345257637333e-07,0.00679817723154078,0.005956243337914352,0.00038374466155537265,0.11956836136986111,9.795549954162078e-05,0.001255068842347009,0.00023470851728098563,0.004248899575570791,0.028006267633612175,0.09692784169598408,0.0008267536756897766,0.007575071147796651,0.00012027996330675283,5.218958837474965e-05,3.845081247179022e-07,2.3600161771100893e-06,4.575392391027487e-07,5.03938739396831e-09,0.7436016994892012,0.00013071369124105712,0.006123726822125264,0.027836166279154743,0.7138156628248254 -कर,rgb,0.9999932433944029,0.9999996536254937,0.9999986979574329,0.9999991903410966,0.9999999007401884,0.9817676131915871,0.9992944334932652,1.966715147406718e-05,9.392357872389701e-08,4.007155695762102e-08,6.315197362153422e-06,7.47043793257767e-05,3.990117888058429e-05,3.296634556872792e-05,0.0009154480254395291,0.0011027627744315625,0.0012830532990416581,0.0014645043475044997,0.001153943140516342,0.9999999822442233,0.9999999521420325,0.9999999557860504,0.999999932675583,0.9999994646509068,1.1460227308014862e-08,2.2101122259196727e-08,1.8228023664007445e-08,2.4855400705814064e-08,3.219018260741273e-08,0.9999297555412036,0.9999885660698545,0.9999600484795411,0.9999573629560301,0.9999430438726308,0.9998934464031778,8.996852662734564e-12,1.568786456203746e-11,5.133575610459854e-12,1.0315125341122638e-11,1.2463228015386699e-11,0.014420686224264222,0.005719313722210889,0.009063955602703419,0.016297345172415545,0.006552185284241142,0.9999993036050268,0.9999991265357091,0.999999096122807,0.9999987103458935,0.9999999999526246,0.9999999999716505,0.9999999999861406,0.9999999999075748,0.9999999998833069,0.9934941416373769,0.8219332036011885,0.9975551912568497,3.7798325088180934e-08,3.1362941288749176e-08,3.3940307895622342e-09,7.959123401310843e-09,4.560826873214764e-09,1.6088927688072563e-06,9.98315357436301e-07,1.979118239387896e-07,2.0209588101689206e-07,0.9999999930230847,0.9999999248209018,0.999999993083043,0.9999998995066967,0.9999999912990086,1.4888200615686062e-07,1.0920936232246524e-07,9.244643355893759e-08,5.7071978510097676e-08,0.9999997235610576,0.9999997613855293,0.9999996883514274,0.9999979106055477,0.9999992238756799 -कर,shape,0.03490609135408265,0.7068654333265761,1.4270136964563945e-06,0.01714111018612541,0.0626775524067551,0.08054986435231305,0.21189023411510732,1.589715369214361e-08,1.1406999175203267e-07,3.176239156442443e-07,1.9887165498378244e-05,0.022704724964259192,0.22924306709425576,0.010315260666601182,0.9999974902761402,0.9615242925189472,0.9836599731977009,0.9266410372054112,0.12341878092062049,0.004647174591882997,0.000482363270549035,0.046584604352805,0.06382434020537933,0.07961734170837348,0.00041331713347238485,0.1409518096852314,0.9006317914452115,0.1812323225109835,0.3557114228570671,0.9999952761789499,0.9987767687826696,0.9998396250110121,0.9931240044129244,0.012536674955886335,0.08979706199561477,0.12274059750030795,0.11855588443218128,0.04948423016543948,0.007979377785619069,0.5225052604997447,3.864091455986473e-05,7.072999985564649e-05,0.001069375113210049,0.35167028175546133,1.0919430957425218e-05,0.9997578538227334,0.9991100850181615,0.999696093740848,0.9997690282145122,0.10940367882602711,0.1896963304197195,0.013547025348450963,0.04210822510760016,0.019398266572870002,0.9932589601709588,0.9961405595237912,0.9964723983049149,0.0024822806378193467,0.001268191988957409,0.0007545788418833935,0.004113988530523988,0.0006259825744592565,0.9999966089506132,0.9999433951325409,0.9999221378348652,0.9999935701699827,0.9999788405040456,0.9198987988291288,0.03093717277677395,0.1499296397264293,0.743667642262838,0.9999935219999688,0.999991622301368,0.999924146840591,0.9999428102773352,6.101322291362704e-06,1.922481034206812e-05,0.0029364364472074336,0.00016355072066457797,0.004740011207551594 -कर,object,0.00016561469571518822,0.011419582280686688,0.0013543804654172012,0.9965472464262147,0.9991244248869612,0.999697366105311,0.9999830111065532,7.668079228084674e-06,1.306113423918549e-06,2.326101860398761e-05,0.00018031097049076692,0.9864244962579817,0.9981905616293082,0.3438163912673668,0.999450100566492,0.9970890887166957,0.9976071938298274,0.9971358173989648,0.9165195976018942,0.026495554698638412,0.11042121017447186,0.5442478126339834,0.536293135182423,0.8490055170287546,2.649288555224135e-09,1.5073240849375337e-08,1.5298851465842354e-05,1.905730926080858e-05,1.3062878199181061e-05,0.9999714851847156,0.9999631169039701,0.999963733886741,0.999857710242262,0.9995736479246436,0.30653226450528737,0.9530897661370411,0.9551190978846006,0.9998037953073636,0.9998254551029652,0.9980515692343978,0.7491108136919268,0.6986038893328449,0.7534565980523501,0.6176356560158197,0.04281913188447727,0.9999950122212848,0.9999969395117855,0.9999950506340963,0.9999943572274624,0.9883402520637853,0.9947453411749491,0.9941755520263835,0.9929774647418887,0.9925963063708597,0.9999679530481678,0.9999545370200417,0.9999875448931389,0.001662341520254885,0.002584027233470569,0.0035848652214411536,0.00947053646053394,0.021063969567891153,0.983802818794718,0.9875861268445499,0.9832926506441588,0.981387500111088,0.9999978254288383,0.9999936132674031,0.9999900661965656,0.9999831235975947,0.9999957334651717,0.9999485232817995,0.9999847467177662,0.9999738790131159,0.9999335624662611,0.0352861747433062,0.9553481191664266,0.23795168583469964,0.9503082260167326,0.10007209244317435 -कह,rgb,0.3423218408015133,0.1248092322225538,0.3000633124272058,0.5885855628506644,0.29948213486878256,0.9974627644632191,0.9649475902694763,0.9999883265195161,0.9999893315977384,0.9999887927805825,0.9999920727042543,0.9999822176253589,0.9999794210226052,0.9999798184376917,0.9999890489754384,0.9999887741331462,0.9999885289293975,0.9999882983769459,0.9999887978505321,0.04852831797219891,0.10736419283984183,0.1173345997575361,0.252149181194174,0.545866188398834,2.2135327706364464e-07,3.551129356224015e-07,4.547747281245551e-07,7.62160140155244e-07,3.327434308630728e-05,0.993740753035257,0.9824887636150826,0.9915269095731883,0.9920356572665123,0.9933133029147686,0.9954351526172451,4.554945747798591e-08,3.193275677502373e-08,1.9737628854256773e-08,2.2927231767609565e-08,8.591809874326422e-09,0.9999799865831492,0.999983807034612,0.9999824715339968,0.9999802406713394,0.999984394452456,6.743756949675101e-05,4.9754029524939234e-05,4.984721838564895e-05,3.795011275133338e-05,0.0010734161427872976,0.0004659283274325704,0.00018238069131073923,0.0016466333767592713,0.001833355176151755,0.009778011309184816,0.1021832417099079,0.0007277672487244099,0.9999921243513497,0.9999898234070066,0.9999833400657129,0.9999773821564139,0.9999463095569714,0.9995726389660765,0.9994475897264518,0.9994430555353243,0.9994385151801043,0.0004703905908766204,0.00824957016125998,0.0003610875119967843,0.010566431714708927,0.00038321665004609066,5.252908867730947e-09,4.3961549319073935e-09,6.34357497614482e-10,8.006134364085061e-10,0.22940958816165072,0.23982245268781258,0.32068833903233984,0.568072907841975,0.45313608667302285 -कह,shape,0.4624157797898451,0.3793931590186204,2.8864312019689324e-06,0.04747316538564525,0.8801609464979525,0.9998886392370003,0.8489043756742838,0.9999981398548439,0.9999999650695902,0.9999266289092623,0.9992404264781238,0.9999999843956358,0.9999609348163522,0.07091948878916546,0.9999520688337413,0.9999999125731883,0.9999983395265768,0.9999489593752998,0.9999940061034784,5.026374252849915e-07,0.00012366338873812807,0.00017879629506707405,0.00030709644406739703,0.0010357353306778823,1.3152092894777542e-06,0.030290915938098573,0.9691748806010274,0.9897350571308645,0.2621766349926705,0.9995789024297652,0.9883037563098311,0.9987284230875221,0.9991715608280822,0.9994675497088871,0.0004260917763216794,2.4454189198439803e-05,9.612410014985242e-05,0.9946283891031833,0.7310883466035446,0.04373223075505678,0.9999981291091712,0.9999761072969031,0.9998822353612252,0.9998577688508113,0.9999152085486044,0.5390054840671814,0.8147524794158548,0.41164346995337137,0.7586604765996203,9.122119770312253e-06,3.3522066607543018e-06,1.074042213819597e-07,3.1553274759048e-05,4.873670683071105e-05,0.999160696048921,0.9781327514740591,0.8381085337448433,0.004366314610173581,0.0006036813642431809,3.4294949574933134e-06,0.020294767646193212,6.063805297923711e-05,0.9997882359106255,0.9999926984630906,0.9999283668967809,0.9997455792581318,0.9999217857551159,0.9958048729476547,0.5268619638365908,0.0337353657042636,0.44494196837885275,0.999829689477101,0.9999948597683724,0.9999456930784917,0.9798548748439095,0.00021519732634662177,0.0014098577649395512,2.1352486545773046e-05,0.013963679700161095,3.5540254774647426e-05 -कह,object,0.01468756419661181,0.005064550596866335,2.1277719950726487e-06,0.022545022063625873,0.07636317673685987,0.9999817676657936,0.9441206394221461,0.9999994592941567,0.9999999879975053,0.9999994379112334,0.9999844193964048,0.9999999725446677,0.9999981008476154,0.994431876766222,0.9999783289747629,0.9999999048158081,0.9999992282651617,0.9999898081788015,0.9999984160400228,6.628848186146139e-08,4.764071516669525e-06,2.880918572151694e-06,8.229869384396209e-06,0.00013420929264371413,2.518280711449437e-06,0.004039104703134401,0.8014053098760594,0.8246988670527163,0.143889626269162,0.9882836127123038,0.8429526577465961,0.9590709603518838,0.990674816742921,0.9970397201317236,0.000587125212682426,0.02418453911581623,0.07178932509344886,0.9999607277169064,0.9983930006580246,0.9825304321779199,0.9999947948932483,0.9999852060687893,0.9999532758181107,0.9999058045048734,0.9999363822854695,0.015009189357378813,0.02733787734159658,0.003188657990046111,0.012462713576270497,7.909100203018281e-08,2.8488943664620355e-08,2.3306631862742146e-09,1.8447041301967607e-07,2.730035800973809e-07,0.937393786556809,0.918634295309287,0.23005758930223286,0.6319650522974829,0.2898150279451297,0.02350156101585128,0.869252184206314,0.13126174419339828,0.9999153248589281,0.9999947426637265,0.9999604325791134,0.9998331847389959,0.8531965554134627,0.6001469566039809,0.02348348406203984,0.0021941913184988808,0.0030681936894539504,0.9982849390885564,0.9998525668360404,0.9987767372249234,0.9612443172783898,0.00014775839908969568,0.0002193203817935363,1.1368747853513266e-05,0.0041707252547688875,1.0716421649198576e-05 -कहे,rgb,0.9967880551538741,0.9937009596911246,0.9967104962992719,0.9984550347869484,0.9968269004063394,0.9991102069419524,0.9940515306500632,0.9999729405744686,0.999926459236933,0.9999086441585401,0.9999704929639033,0.9998804722893652,0.9998329025490164,0.9998294793739204,0.9999810287994749,0.9999809890885946,0.999980938320978,0.9999808803808833,0.9999807115135686,0.9887692521237991,0.9933206232224983,0.9937022210292095,0.9963298203934278,0.9982885788180398,2.5351984502030085e-05,4.244994154576729e-05,4.961298435112919e-05,7.984471654575501e-05,0.0016661960356870794,0.9998476961966307,0.9997154844001982,0.9998162481313055,0.9998173136404523,0.9998325610536215,0.9998588026883268,6.253024601698482e-10,4.945180767389067e-10,2.634553233933606e-10,3.396554383178866e-10,1.4198574275447635e-10,0.9999822867913687,0.999982387367059,0.9999820059417198,0.9999813011081048,0.9999799555164769,0.002726401661023979,0.0019089936629188206,0.00189449920487943,0.0013213243980870284,0.5663362390336514,0.3852366272198522,0.23080973034826638,0.6048231620638334,0.6066826798076348,0.02968645421192442,0.12192501032435353,0.0031617775250232178,0.9998229723814226,0.9997273443689729,0.9992686992471026,0.999036589341198,0.9970738351820452,0.9903968858847426,0.9862520997352708,0.9811764242879145,0.9810923062540801,0.06876291558385628,0.3880308165347934,0.05362898831471747,0.4270575149068813,0.05290844228438841,4.806357131995893e-10,3.850737943475941e-10,6.32393156721248e-11,7.153904603508484e-11,0.9960879221742305,0.9962360136627672,0.9970426887668161,0.9983496462167447,0.9978664492000244 -कहे,shape,0.9980101545411632,0.9969096923198367,0.002083287928523392,0.0441249806044688,0.9999997219794072,0.999998355949596,0.25911789677331554,0.9999999997077895,0.999999791496206,0.9999998353504043,0.9999810601937369,0.9999999999997522,0.9999999767418238,0.9999617377362211,0.999999999994502,0.9999999992504884,0.9999999984352159,0.9999999991909738,0.9999999691823601,0.005220826658580454,0.020252791294084558,0.013823699684297943,0.07568496596250276,0.013482027653148003,0.26040690044838627,0.06779421849226124,0.9993667773637297,0.9999255278499289,0.9190262687134325,0.9999999999950278,0.999999999914394,0.9999999999884281,0.9999999892307804,0.9999960382650379,0.9986793195929206,9.060726637025152e-05,0.00037719589469440665,0.999999842999016,0.9453115232382915,0.9980034504557492,0.999999999754781,0.9999987840300439,0.999992418741032,0.9999984210988742,0.9999997453159357,0.9995455312714392,0.9997245757367128,0.9997198105066799,0.9998880638033492,0.9999041195284836,0.9998348820225368,0.998895985296278,0.9999907413488034,0.9999927373581533,0.9996939546544816,0.9821885474638998,0.9998235354749845,0.9999914396674251,0.9999974629020254,0.9995960705508314,0.9999976814531335,0.9998498027538627,0.9998257327793962,0.999996161356801,0.9999999468554378,0.9999969869725577,0.9999939392205566,0.9999981182729829,0.47403165421976007,0.9714118541951425,0.9993211358956215,0.9999995435647608,0.9999999999980296,0.9999994549112832,0.9999997378036501,0.9996782052067037,0.8915740551774699,0.05740476159764552,0.025087336576218745,0.3816395228071198 -कहे,object,0.999962561611488,0.9966894908670239,0.0013174091071063497,0.08447888630660158,0.9999913896665711,0.9999813219040801,0.9954787822281876,0.9999999974350793,0.9999999397879115,0.9999979722289323,0.99999851795519,0.9999999999869804,0.9999999644787186,0.9999675807188934,0.9999999999481801,0.9999999986748664,0.9999999939639739,0.9999999942332622,0.9999998994161209,0.13081470163429526,0.015906956724206403,0.14197049365274395,0.19268011210493752,0.009755052090764936,2.5323163720357045e-07,7.869614022214786e-06,0.0006464464516104396,0.000392087007750499,0.00010436739953497192,0.9999999997584221,0.9999999936307689,0.9999999988837631,0.9999992272856231,0.9999438707356644,0.9988594615268022,1.721964409431143e-06,4.8806332278250345e-06,0.9854736106509343,0.024097346782339008,0.07082753229297142,0.999999986099894,0.9999994206278128,0.9999974742079422,0.9999982237248474,0.9999999638819626,0.9992945075186753,0.9996809957736489,0.9998973209293843,0.9999348220324439,0.9999438566413553,0.9998635908497604,0.9989983388415349,0.9999836644029223,0.9999823363618235,0.9999893856722081,0.9997116223921932,0.9998904244020396,0.9999999752548812,0.9999999964139148,0.999995600327739,0.9999999897961634,0.9999954029579183,0.9999999887676251,0.9999999985264874,0.9999999999862488,0.999999997459657,0.9999719046254417,0.9997473974864046,0.015749944125799643,0.685423647832867,0.9555153671125689,0.9999982163912475,0.9999999931409929,0.9999311594948486,0.9999662294530351,0.849093130318969,0.30401477840796165,0.003671061969198616,0.0017764525538366918,0.10366523089121213 -किय,rgb,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.922489909657189,0.9338010786569224,0.942021860574608,0.9740437872633436,0.9999992829715073,0.9986622137874368,0.5490483982714338,0.9999992718154391,0.9999988360788159,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.021203932046328252,0.9999990296940384,0.006287625361725124,0.9999998317824482,0.011588375539316407,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -किय,shape,0.9999999991692743,0.9999999759172332,0.9994314014910913,0.9999998379678825,0.9999879044265497,0.9999999922685566,0.999999992757747,0.9999822775251113,0.9999992875106698,0.9999235003528963,0.9996089797387228,0.9999998339490526,0.9999999904579137,0.9999999992482496,0.9999999363829564,0.999999999644894,0.9999999991704525,0.9999999883901295,0.9999999980211809,0.7621270310700126,0.03969786972068171,0.8591234140024645,0.7923949614565848,0.9993514031937505,0.9370746670248644,0.716349662761114,0.9998846641962251,0.9999234916496593,0.999975099338011,0.9999999960964088,0.9999994170702199,0.9999999497433875,0.9997331779133148,0.9999999895363384,0.9999326448534901,0.9999999987690671,0.9999999965722093,0.9999888373618693,0.9999986110675243,0.9999829020177374,0.9999822925753771,0.9999446051972247,0.9999952138050329,0.9999994076469525,0.9999991667125163,0.9999997782248308,0.9999999751568156,0.9999999569794699,0.999999963693829,0.9999997599427631,0.9999948412327825,0.9998107593667621,0.9999977944988568,0.9999991071467647,0.999999995378926,0.9999999967411717,0.9999999275332533,0.999994471048827,0.999999848275467,0.9998474238345659,0.9999440193848895,0.99999852455003,0.9999999998470703,0.9999999999141675,0.9999999998561642,0.9999999993310253,0.9999999516963026,0.9999999930729362,0.997069654324908,0.999811449946001,0.9999366929175207,0.9999999997238678,0.9999999997134745,0.9999999999726659,0.9999999970735756,0.9999999673635829,0.9437856430214077,0.9999999096016314,0.9999147073468692,0.9999999708876555 -किय,object,0.9999999999718638,0.9999999999630784,0.9999999463770037,0.9999999996475124,0.9999999980402254,0.9999906635869014,0.9999999866304603,0.999965511824625,0.9999995214697667,0.999957091492641,0.9996673915852087,0.9999999407411075,0.9999999778091659,0.9999999996072162,0.9999999999906257,0.9999999999989801,0.9999999999984823,0.9999999999989049,0.9999999999811335,0.9999959344280488,0.9949766445893002,0.999971478252458,0.999891219530361,0.9999999950401284,0.9999999999999825,0.9999999999999447,0.999999999999992,0.9999999999999947,0.9999999999999993,0.999999999889577,0.9999999828999014,0.9999999989714998,0.999998944138037,0.9999999997236466,0.9999999819807791,0.9999954303861318,0.9999902211792157,0.9999241051403592,0.999990513868745,0.9998153798028427,0.999999301057094,0.9999994165254145,0.9999999587994904,0.9999993257873716,0.9999985650139809,0.9999916495312953,0.9999981510069402,0.9999977227482157,0.9999951907235445,0.9999998181550913,0.9999984331254073,0.999891640991978,0.9999987700657293,0.9999975306098038,0.9999997143980978,0.9999999861372884,0.9999980177774525,0.9999999987889308,0.9999999998382958,0.9999999981869381,0.9999999940055162,0.9999999975049068,0.9999999999992675,0.9999999999982627,0.9999999999980398,0.9999999999927953,0.9997127524729025,0.9999944945299937,0.8551681412894597,0.9827868537707036,0.9645009291035915,0.9999982464479055,0.9999995904669371,0.9999998481431362,0.9999978689989838,0.9999999964669395,0.999999778643221,0.9999999998652847,0.9999999992142834,0.9999999999572176 -केल,rgb,3.622054082651959e-06,9.423810117237485e-05,7.276002618349185e-05,0.006227217709634737,0.046171391096425825,0.9999084392378882,0.9999977328658372,5.095540867089151e-08,4.739286097207934e-10,2.2173539391153814e-10,1.2608112351289788e-07,0.025906466235078317,0.02813046671368533,0.023844722278112164,0.00010276626349489765,0.00014024599923289475,0.00018001890294444664,0.00022341577856053684,0.000182868793787926,0.009442647484987665,0.007518059392791855,0.012429912547976634,0.06576759946274505,0.011032708380916988,8.60773604386212e-31,2.529907775466154e-30,2.90845412405753e-30,6.888897673667594e-30,8.694494406151253e-28,0.7659514782123705,0.952638011647971,0.8631639104840703,0.8936122886027558,0.8841492021999634,0.8815311969026094,0.0003762837468049961,0.000711158983077303,0.00018145561442972196,0.0004226979196460109,0.0004891057093139805,0.0006407455208523321,0.00028815086129979005,0.0006240815284031237,0.0015914012384688702,0.001745125015154679,0.999999999854772,0.9999999998621125,0.9999999998609304,0.999999999860721,0.9999999355515098,0.9999999760990533,0.9999999881902047,0.9999999537438792,0.9999999618086407,0.9999999827045564,0.999999764554517,0.9999999949121372,1.1397262248226222e-06,3.807124253211476e-06,1.0775045879256383e-06,9.635833446996747e-06,3.3162729158560705e-05,0.2349348707724096,0.20468078807439025,0.051306353806289694,0.05274320066422069,0.9999999996570299,0.9999999980465304,0.9999999997155351,0.9999999977295377,0.9999999997161633,0.9299646089340129,0.9051368607672369,0.8661328783157912,0.8028527684693632,0.001046095471378076,0.0017664234819228016,0.0027892613393975625,0.0004531781747118021,0.0013830106610569998 -केल,shape,0.006259695258083243,0.0002488000020038461,7.501747558493876e-07,0.9091893866524257,0.2004395851373217,0.9998829854883822,0.9999585774990339,2.357883194908148e-05,4.6327094596988546e-05,1.0040100106231652e-06,5.53950628881173e-05,0.09351417796102025,0.9999705352854119,0.001208832584928363,0.032578361046214234,0.33164964625230475,0.4671512274237732,7.662431569640503e-05,0.7278745974977153,1.047972185154971e-06,7.078107738127506e-07,1.3056096227010026e-06,1.552394540009713e-06,1.3716827697381923e-05,2.7454437365556856e-07,1.0567460976507909e-05,0.10209928767737622,0.0014316532878334296,0.00022678206097138682,0.9872861937639208,0.005709770184402746,0.5718732191575777,6.304530312772342e-05,0.003032389283448251,0.00033028716106560363,0.0020356914889380984,0.0005783979064662986,2.3888194984543528e-05,0.00018115348350794704,4.191708870974397e-06,1.4469896672055896e-05,3.042174934275167e-07,1.4286697430530807e-07,0.03599583510684158,4.096967909874842e-08,0.001433394775543625,0.030925590146114398,0.026728609369134126,0.02944874611883002,3.751044233741952e-06,1.0208181153002305e-05,6.080173356011397e-06,8.33232550275283e-07,1.2383861832550273e-06,0.18399237031417745,0.014247300097598078,0.0019180616277427866,1.0909415634139885e-07,9.068488056182326e-09,5.948037683532192e-08,7.821063802561923e-07,3.764713656779002e-08,0.6066415870290975,0.9914852647103864,0.9932546497983449,0.6359604587176475,0.9753185739094941,0.024095819782438892,3.314379419532408e-05,0.00015277256601689394,0.005057604016040679,0.9994780447313061,0.4992044178577189,0.811804527550006,0.32270499625459903,8.75357589810088e-06,0.00047187281605685927,0.01387578028419614,3.0114441654245368e-05,6.279012218523006e-05 -केल,object,0.19669177550750302,0.03155356884450016,0.00025061985252227813,0.9970234729407056,0.9987249872070122,0.9999240231507521,0.9999827511717608,0.0004207865953074597,3.196502063299106e-05,1.7467735947701672e-05,0.001107626221256531,0.9391771977079055,0.9997355380303509,0.0007597563447108089,0.08933407648440342,0.08758680107863488,0.09034073161933551,0.001178422779754694,0.060154178065826173,0.0006585448692824698,0.0031219623106604278,0.027750639864983256,0.030320385675047364,0.007820889964309605,2.0377142752306795e-11,1.074023596826496e-10,4.527835533350525e-08,1.1766845951252785e-08,3.140073110521868e-08,0.9989497261564885,0.9877080502326914,0.9911598426483537,0.23642653332803726,0.24932631781325604,0.009337543179680554,9.885833084190167e-05,2.6134747435569086e-05,5.92530655327891e-06,2.325946525987541e-05,7.245702735621674e-05,0.1387399361452426,0.009614684693512537,0.018768200200203262,0.9026969181092992,0.0008637337487845724,0.8712641534492985,0.9746785245551577,0.9916101293325332,0.9822171341023348,0.10598112259148569,0.24712547644473679,0.27014128349710814,0.11963476742221003,0.17387730941496643,0.9962861986695017,0.7129254037354573,0.9157199232590442,4.502151581122458e-06,8.936058505123539e-07,7.588764336452495e-07,8.019782380187553e-06,1.270111643371921e-06,0.053114942844186344,0.9172268824634446,0.7800243291073691,0.6123020698918247,0.9999360134390883,0.992382298390858,0.73009062712575,0.9467538945265277,0.9970880920249466,0.9831802376375877,0.2684491901045397,0.609278331300013,0.06848441342960442,0.0013990473956014705,0.8019323729401531,0.03898496926280839,0.11913195451688142,0.001644168454301739 -कोई,rgb,0.9999999965017221,0.9999999976216789,0.9999999909182221,0.9999996628783208,0.999999819428887,0.0030956487724961373,0.008565639234706794,0.5327003438504038,0.45016115708892884,0.44834466828969655,0.17633530698098268,0.00022505429971233135,0.00014804960166848617,0.00014527635864797415,0.05578495663827253,0.05145464217463569,0.04831607603404994,0.045817152184504474,0.04397597298653432,0.9999999949110283,0.9999999862319182,0.999999979991278,0.9999998407855857,0.9999996490535684,1.0,1.0,1.0,1.0,1.0,0.9899088485140642,0.9938705365021256,0.990664256258745,0.9875548842633582,0.9844104717330145,0.971129331884762,0.2676559056181814,0.2907180972727818,0.4015305572232738,0.35021074502077965,0.48696851984929146,0.12867394548578281,0.10989983452245258,0.09162724892145271,0.07560306457721794,0.034096348875347585,0.5233162631040397,0.5162575690469294,0.5116099395527373,0.4875734039891085,0.9999412136238912,0.9999461913407561,0.9999672811770867,0.9998485522359993,0.9997823028853793,0.004005363286850954,0.000622183240666488,0.013475104530682042,0.0011889025885745512,0.0004951624245016497,0.0003494574393124809,0.00014937065307919247,6.57271421438579e-05,1.4803988707871537e-05,1.3929265794723979e-05,1.428230742235017e-05,1.4248279487712963e-05,0.9459665276626189,0.7112668329029799,0.946692744529104,0.6619716629460665,0.9359861514642774,0.3202615199095056,0.3481895220019689,0.6481774063443371,0.6194598986200863,0.9999999820411837,0.9999999753753327,0.9999999480988095,0.9999999098586955,0.9999999202996624 -कोई,shape,0.9999999986505039,0.9999986357465998,0.9999999905144396,0.9998233637012466,0.9999958057880551,0.9999999997439326,0.785182436227679,0.9999999999999918,0.9999999999999767,1.0,0.9999999999999998,0.839515877384753,0.9999967231136969,0.9999696196669589,0.9999999853022818,0.9999999458774924,0.9999999521613251,0.9999999989162076,0.999995681245117,0.9999972825907719,0.9999999985852417,0.9999998720255703,0.9999999357074311,0.999792908909836,0.9999996937379371,0.9999308604777589,0.9999541703393404,0.9999930127008634,0.9999479795561251,0.9999999462480484,0.9999999999314828,0.9999999991918922,0.9999997690075216,0.9999999985702879,0.9996032454284792,0.9999236712794995,0.9999517070937467,0.9996344475052128,0.9997636011455471,0.9998888766043383,0.3911500557765889,0.880996897958163,0.630858473608211,0.04777749267006411,0.9999999994945263,0.0003296398349493702,4.537324046387727e-06,2.6406714093205515e-06,4.860917418991178e-06,0.9883606144118063,0.9967280284163884,0.9999588957694986,0.9996637346230032,0.9998589074426945,1.0366910647525798e-06,4.702025598294572e-05,1.2811169274035982e-05,0.9999042805872466,0.9999913918688653,0.9999989038301563,0.9997534579360464,0.9999978167923986,1.4086616075129605e-08,1.3158207299385755e-08,1.0341882714931322e-09,2.537062702535897e-05,0.999508878725022,0.9997465926317005,0.9999998977230853,0.999969568507945,0.9998506063165903,6.011982169904248e-09,1.645440821144246e-08,2.9121089836901836e-08,1.3708644969265393e-08,0.9999999967147057,0.9999851666990126,0.9999996970243598,0.9999998030424596,0.9999972010385783 -कोई,object,0.9999993693853357,0.9999651153211467,0.9999999581763281,0.9998195823716115,0.999955652993941,0.9999921529549719,0.37297940999345625,0.9999999979368732,0.9999999873226965,0.9999999999991842,0.9999999996695335,0.021072151336203264,0.9574964456398288,0.9960268701394287,0.9999527973399527,0.9991538558909178,0.9994959716802841,0.9999942934387733,0.9946670530663894,0.9999942671546358,0.9999999632457015,0.9999992195173667,0.999999573580711,0.9998869078506113,0.9999999965918422,0.9999993757840933,0.9999997400509376,0.9999999512594603,0.9999992789478059,0.9999482746030323,0.9999999426950181,0.9999992327643052,0.9999932458519565,0.9999996027588945,0.9993101140339512,0.9998190828793558,0.9999220463573711,0.999741829801821,0.9996886271075222,0.9998378392417003,0.002847653680139951,0.05894517487801902,0.028341531057531812,0.0015745005691227972,0.9999910744831078,0.00353143818244962,0.00015527870470719352,2.991680497732754e-05,5.326381424639271e-05,0.9963297805417523,0.998965904806189,0.9999819640492036,0.9995461639897611,0.9996088087464243,3.2356989033351508e-06,9.0109197990189e-05,7.320526274753147e-05,0.8534974131487558,0.9808194126392629,0.9996474325257407,0.9484640599824705,0.998422706685218,2.7343770518469075e-09,4.188569577442873e-09,1.19119793610749e-10,6.430484089368944e-07,0.9994307219654076,0.999641322225897,0.999999124480585,0.9999007128809093,0.9996833475757949,3.8183109081044453e-08,2.548297967823491e-07,1.8655875587314912e-06,5.604378866534084e-07,0.9999999369860642,0.9999917300313043,0.9999993731378009,0.9999990962100899,0.9999947889492711 -क्षेत्र,rgb,1.4082947267063948e-05,0.00014555307482678857,1.484287192785611e-05,7.132627782358518e-07,7.198678013924295e-06,2.1813738279078503e-12,4.184368064118884e-10,4.468954941725244e-16,8.067755732108309e-16,1.0197517918281387e-15,1.9395361258626132e-16,3.4207673902606614e-16,4.898878592197516e-16,4.829562747356809e-16,1.5546072185400568e-16,1.5772865679239637e-16,1.6014493291231812e-16,1.6267738364742007e-16,1.5307763973254018e-16,0.0007511324880592847,0.0001267075151461434,9.708412086909073e-05,1.1385897350339438e-05,9.644165654159767e-07,0.99999999999917,0.9999999999973239,0.9999999999954203,0.9999999999844531,0.9999999097299798,2.030478908914915e-11,1.4789598782571952e-10,3.589566382752289e-11,3.0738385215474314e-11,2.1551816487984854e-11,9.788308337822575e-12,0.9999999999975762,0.9999999999987739,0.9999999999996478,0.999999999999448,0.9999999999999336,4.0512953291920884e-16,2.922588374750271e-16,3.1485115482275525e-16,3.6206478759752716e-16,2.2996447127916367e-16,0.9950644836767496,0.9974859267179763,0.9974838890545276,0.9986481801343926,0.27730309114607665,0.678266598309127,0.9360197313695734,0.1334429294548639,0.10869265743076385,0.010954327032480941,8.57490749359738e-05,0.7342289448849741,2.341851793727184e-16,3.763174809709794e-16,1.4483617464429883e-15,2.2109153641211085e-15,1.3755767476402444e-14,3.87130790922831e-13,7.133915834103931e-13,9.327687263518067e-13,9.456995909163148e-13,0.6874704724015726,0.005693717908614291,0.7941375068541058,0.0034216813939031473,0.7750659607186483,0.9999999999998934,0.9999999999999314,0.9999999999999991,0.9999999999999984,2.351218296295407e-05,1.9619354214668494e-05,7.992618952198523e-06,1.1430958840031635e-06,2.6545468995449286e-06 -क्षेत्र,shape,0.2129205261297555,0.0007837277129171355,6.391051121388109e-06,3.1634696170849672e-06,6.342458302036927e-08,0.00011979553808880634,4.887514953563394e-09,0.9984253715389505,0.999129587357935,0.9999990395539647,0.9999999883533072,2.772628814710976e-09,4.5691743044021476e-07,1.7825243518062515e-09,1.9356794157193625e-11,1.5824578906189594e-09,8.36079986912946e-10,3.228434767685971e-11,0.0023618689619471426,0.9686351904136463,0.9999942696468805,0.9987512119841522,0.998464743167435,0.02976847439444068,0.0008189635520354687,0.00161443397783155,0.10542247495793293,0.20829329183139597,0.7461050159387907,1.3665031814353595e-10,4.52078677509905e-10,7.756977253283975e-10,1.0618274460106341e-09,6.884621672651785e-08,1.6170503013926337e-07,3.1576889091600708e-06,6.551690775454613e-07,2.1001803704905367e-12,7.983409887078477e-10,2.786249533573852e-10,7.126714288690774e-07,2.8114822968709877e-06,3.4675386633331554e-06,0.0022563753540987028,0.09890342296932811,3.449234240877769e-08,1.493508075932171e-08,2.604984201701381e-08,1.9559471936759736e-07,6.980798344476199e-07,1.9776025542106216e-06,0.00020278690233948053,3.978281122277395e-05,0.0031536973604815144,1.5912352211427e-05,3.552882472009256e-08,5.429635453977227e-08,0.0015044507894103635,0.009457853519480265,0.11368423814560404,0.22630339160886684,0.04086360684085221,7.513107834908778e-07,4.372581954752273e-05,2.8425717480561555e-05,1.4832122074717398e-05,0.16722985037958565,0.0002449724109724658,0.03444309324312319,0.040752073705387255,0.044500832625547826,0.00021802165286922902,2.3592060601713733e-08,1.7975855869417286e-07,5.855733769032736e-06,6.251848891751263e-07,7.261097280131658e-09,2.198166035681859e-08,1.138728652019192e-09,2.7860438381552955e-07 -क्षेत्र,object,0.0017641714352132967,6.891324744984205e-05,0.0002499721328153714,2.8307034088841937e-07,4.44822790986783e-06,2.0496928882267228e-05,1.4120629268223437e-09,0.9994849058478762,0.9997916712667302,0.9999998553664771,0.9999997786935907,2.2284566661644227e-06,2.266931922377686e-06,9.157732466248105e-08,1.2101014932989536e-06,7.319128399783833e-07,6.282374197720239e-07,6.932373475822406e-07,0.0016161642222164857,0.7368205598855605,0.9997001050512364,0.9234403059278946,0.9433791192489173,0.0013274282580695458,0.9993277841820482,0.9992789679900494,0.9992259296046335,0.9985438643462906,0.9966399185381428,3.3261394056199255e-08,1.9355080526501862e-06,5.12250802355886e-07,3.213479285207326e-05,9.409056365805065e-07,9.722509059149849e-06,0.008221237813509856,0.004212247829299401,0.0010511318786582003,0.0006863914478728304,0.002330945106573463,4.301900207672363e-06,9.199091163630962e-06,2.3523317265232533e-06,9.228613525732783e-05,0.0024071309958959425,8.492202688587456e-08,2.0261925808000417e-08,3.917915311157007e-08,1.8678799609637295e-07,2.49357524536844e-07,1.8448996812602156e-06,8.30319943555767e-05,9.564205734670062e-06,0.00011670185227231906,6.08929167517988e-07,6.166741846388473e-08,1.9203829594381726e-07,0.4611696550162369,0.14469486807377674,0.8933626917910078,0.897309148618268,0.41931093569804995,1.4391142293773438e-06,7.556460740504746e-06,4.2384731136183476e-05,5.947041386012996e-05,0.0009527963105491708,1.3361547893523978e-05,0.008382471456800886,0.0014171700034225515,0.0018912551040622938,0.0030182061696808252,5.92616208983096e-05,1.2608651714363982e-05,0.0010484480713978761,1.5335274522358716e-06,2.9580745839454615e-06,1.4961994252453774e-07,2.1395026655454988e-08,6.851370283719163e-07 -खंड,rgb,0.9551069555649363,0.9518727464814388,0.9250978796515628,0.7281614114958884,0.7547756146706139,0.006814447670725191,0.010696842627926856,0.1255087750434668,0.2577624938010569,0.2921847294864298,0.08759161997469607,0.00945456703782074,0.00977585815995054,0.01001839543603454,0.027114122941235982,0.025727860044247097,0.02468456841243946,0.02382878367783905,0.024288446590338377,0.9233287294394906,0.8936534803806231,0.8778168048193314,0.7608064490118742,0.7201062880862888,0.9999999996148448,0.9999999994018722,0.999999999306801,0.9999999989454915,0.9999999829143181,0.06645002041254232,0.07343896921781796,0.06674214255049223,0.061148806451580516,0.057525859809798706,0.048404878082402875,0.9998128505000985,0.9998186637521386,0.9998897974421972,0.999859764182026,0.9999075846282497,0.02524524327972193,0.026802032194730915,0.023704227960435836,0.020646299789860354,0.017860364472638605,0.34030097175674046,0.3680885208307061,0.36815899081887166,0.3956093874824293,0.41293957672244985,0.4545288112381,0.5255049959569428,0.3464431743765685,0.32491256169027444,0.1129614446503864,0.06503989267611338,0.24441987940051807,0.04981680417348182,0.042920469749443864,0.06608516922783912,0.04839474954037682,0.053468730342200045,0.021101491398162114,0.024324337337197233,0.03305271229146918,0.03297794711042891,0.22239476235461636,0.0979757742289941,0.23628635697299935,0.09061222061970838,0.23047012156498808,0.9994160257636876,0.9994961228375585,0.9998072779318581,0.9998047340876907,0.8927806160022207,0.8786360694676045,0.8440806907439112,0.8302478716992695,0.8278006231141664 -खंड,shape,0.9999752467927937,0.9999244510533661,0.9998669967948279,0.9999945114591279,0.9998271286216809,3.8120958937905334e-09,0.9970471953220266,0.9999986768576016,0.9999979335746749,0.9999983246575982,0.9999980922691135,2.388328818238506e-06,0.21186760783191094,3.5057443318193285e-05,9.843634401032672e-06,1.1550076356035605e-06,1.0891640111089918e-06,9.254146640343174e-06,1.3896742614814271e-07,0.0011961099002173639,0.696083954878661,0.6007802491688667,0.47898960376941696,0.00015549158480031137,0.4246050834554753,0.038865814450021456,0.0020213767701169425,0.00043027811219312087,0.0013376989329141453,0.0023385578237697254,0.01032225613047356,0.0015404958125703517,0.0011572071070629385,0.00013583466823112388,0.0013742881870815894,0.009328180131616811,0.0038009427876160833,2.6577544249653217e-07,5.002160768690918e-08,2.6817681862398247e-05,2.4001833208164345e-05,0.00016638919798312414,9.2686793187952e-05,0.39227330164924035,0.0696688060189383,4.84971570143357e-07,7.76487785334604e-08,1.9762709398004297e-07,6.950724673934438e-07,1.9770847568453425e-05,0.00014871401770922917,7.527155370898756e-05,6.715973884198931e-05,0.00010758112637520074,3.5654145273365146e-07,1.7629068831846976e-07,7.946602646797498e-08,0.008899676318481023,0.00014202901191966377,0.0010245449855247298,2.1151196253553486e-05,1.2935925636874924e-05,2.240989925978844e-07,5.58915855371985e-07,2.7425112754885063e-06,1.5450847741476544e-06,0.00010061929974781243,9.424321023561271e-06,7.892932714623362e-07,0.00017387101813806755,0.00041209986609072613,3.6438671266466223e-06,1.5389994145807287e-07,8.82206296785652e-08,4.31433528885285e-06,0.015342855757284491,0.0016982362507448482,0.050454584521919636,8.7335894472179e-05,0.01516178281133881 -खंड,object,0.9999533612125642,0.9998730344978859,0.9998182582863967,0.999982186527075,0.9997460608691663,2.240263100129757e-09,0.9719989325581293,0.999962419421016,0.9999064979856138,0.9999846734571549,0.9999621901825358,2.501856680324352e-06,0.057515385326989805,1.9841216051903434e-05,7.521045316992487e-06,6.15051408264661e-07,6.976910078395074e-07,5.762785904943301e-06,1.0739842284518005e-07,0.0018107881675384163,0.7357833361769568,0.6810653147268225,0.5609407374363201,0.0004152496859605634,0.9404839938208046,0.5435487684090676,0.10980581307911928,0.02290748033989936,0.024249759156768167,0.0016373802960866404,0.00903912870148635,0.001352955599056191,0.0011313363250973173,0.00011229890731557409,0.0012442043373886505,0.05817610612760864,0.02487220103684089,2.2563855490534144e-06,2.8190565655767287e-07,0.00013313720715855937,1.4075470802049762e-05,6.270154469379244e-05,4.1607864393381176e-05,0.11683103592285635,0.012313800834773703,1.0685497981304581e-06,1.9658994647557271e-07,4.879374426591549e-07,1.4183721095462778e-06,3.125770281799618e-05,0.00018766518547958026,0.00010086019557753264,6.28158973341457e-05,9.285110805379255e-05,2.8765298476756753e-07,1.599106302616057e-07,1.366070460636227e-07,0.0010645810015370133,2.0032470580301814e-05,0.0001861804757665239,4.580132303030921e-06,3.845331650769169e-06,8.069495602480001e-08,2.020611235286978e-07,6.206998233168721e-07,6.275132759019912e-07,0.00016229636147034945,1.874641441854056e-05,2.8226526703977698e-06,0.000253184005714284,0.0007976666024064603,1.0327412997823045e-05,5.392588277506519e-07,4.360912581201477e-07,1.1986218157514284e-05,0.03923274939734191,0.004270874186977571,0.07992356138764674,0.0002247640952140805,0.031045471888545038 -खट्ट,rgb,4.0839848758492844e-07,9.849146033238157e-06,4.3090217435537355e-06,5.717903491683426e-05,0.000512164170686826,0.018378933055174674,0.5235480323039691,4.961581915402791e-12,8.785205392633406e-14,4.6935506099661936e-14,6.507541227277458e-12,5.02256247139774e-08,5.097226985455148e-08,4.376873932645556e-08,1.4825191085250831e-09,1.9009568694359475e-09,2.3232897219849673e-09,2.765542072283995e-09,2.286469498223515e-09,0.0005309807455609632,0.00027538538706792524,0.00037677967768928044,0.0007705995263753218,9.649476623402064e-05,3.353546164565764e-23,6.359749830937227e-23,6.13302240788919e-23,9.352821475263749e-23,5.535155552134394e-22,0.0002834488771982333,0.0019433608397835954,0.0005445894229375684,0.000637015020840141,0.0005314352806744183,0.00040528211072662424,1.5520017289781156e-05,2.999744848348552e-05,1.2147632224023545e-05,2.2579021488753883e-05,3.8028249255977196e-05,1.0060914580287615e-08,4.652089624638215e-09,8.693260715818773e-09,1.8820760448407754e-08,1.57180447570752e-08,0.9999974002095425,0.9999976948015181,0.9999976670460767,0.9999977834422558,0.9998987140406304,0.9999656966014449,0.9999869144103234,0.9998928819515916,0.9998979199669468,0.9979486625425242,0.9475599368805299,0.999728193817398,1.2527934923896018e-11,3.0280480067235144e-11,1.106487255027994e-11,6.24222219036119e-11,1.850590134490977e-10,5.011344429911127e-07,4.569420042382466e-07,1.2407525571691318e-07,1.2736525527342975e-07,0.9999951829304682,0.9999283815886281,0.9999961837102791,0.9999082677609653,0.9999959512488144,0.1651856272491899,0.1393790480616217,0.2086710820118608,0.14011329124152475,3.830955314335711e-05,5.4506312034039947e-05,6.0434352127387535e-05,8.7103681801512e-06,2.5998931077431738e-05 -खट्ट,shape,1.0241407404775903e-05,0.0002169073054112666,4.045285808916171e-06,3.2113006993816385e-06,6.010372676957272e-05,3.957496947408126e-07,0.0002416388114285704,1.6217016098796056e-13,6.371696830696308e-13,2.448542171452061e-15,3.2918421528624786e-13,4.641480988601611e-07,1.0311141789412743e-07,0.0002828533683352275,0.0014745119763207738,8.26262646733451e-05,9.120043484751773e-05,0.0009950345007448584,0.0011490410818877958,0.0007938581205945675,3.155939430332618e-08,2.6267582887233664e-06,1.6128809111841047e-06,0.040490360156678847,7.029631556352096e-05,0.0017110149550395796,7.940793857566873e-05,9.312261473974225e-06,0.0005365422110557722,0.0009271973538362406,1.706741287207093e-05,0.00043213666463058506,1.55810327033425e-05,4.105182870979977e-05,0.1756460276049323,0.19828461525540367,0.09492509754218287,0.011186474495439261,0.00919528766083851,0.25246639165770157,8.274284904859264e-08,1.2737325671778886e-07,1.7428234167932981e-06,3.4400727918076522e-06,3.087278972796779e-10,0.9999594335359211,0.9998927982663163,0.9999839941445452,0.9999804066059462,0.8777419424853181,0.7722025143269069,0.09112387859075159,0.3847984398261251,0.18494421511965609,0.999799471878475,0.9999095688286903,0.9999767866140268,0.0015462540907179617,0.001726691018412121,0.0076315766207427195,0.007402696679185011,0.0009979784608048015,0.9999999605109622,0.9996873385106542,0.9999808523259917,0.9970421484628623,0.5269596127385837,0.08280454371332609,0.001434407799326215,0.0003548453844563737,0.0006838952367940582,0.9985211516144806,0.9999992576215924,0.9999090860383103,0.9999980292117185,3.256755804933784e-07,2.001863913256622e-06,0.00028733398988807285,2.0990861236261883e-06,0.0024059838687283917 -खट्ट,object,0.08677435113830985,0.2728132006680636,0.0010311047050600547,0.0032641250548811254,0.004060900260776742,0.0001652444571171245,0.8599461582307677,8.634681323128873e-08,3.7084920049156676e-07,1.9819115154545625e-10,5.0684082530382794e-08,9.430112485969032e-06,1.1343394243274443e-05,0.0016572632578712272,5.275981335622929e-06,5.583075502459194e-06,5.917178952828195e-06,1.750316762319068e-05,7.445227947005959e-05,0.14559320564596578,0.000334104918240712,0.0023668028397355162,0.0016278135993902487,0.05867043611057282,7.423868387291849e-09,7.589459747292513e-09,4.556709726900032e-10,3.0237334588939687e-10,3.33905289283408e-08,0.0011255198431597596,0.00021259291570371278,0.0005695697202810768,6.603791573980304e-05,0.00044182788016849044,0.042654258749951636,0.2363349090548187,0.12199432021490055,0.0017243304155008545,0.0215405713993957,0.009084985449160188,1.1625305899612799e-06,2.282027108040006e-06,3.136744353061207e-05,6.406011861300944e-05,4.949532512422835e-06,0.9999683840522668,0.9999644223972576,0.9999892635400062,0.9999849706702704,0.9996098134849524,0.9995061766245038,0.9980911539392386,0.9992923935976069,0.9989383219055438,0.9998540336398529,0.9993967011341943,0.9999154602039249,0.0015114753545563374,0.0039661836502412826,0.0019801456555426033,0.0017937793418968916,0.005382965912444257,0.9984358807816244,0.91890068201311,0.985456113023779,0.5294078624172903,0.980531878386767,0.8282678454284571,0.48907195266824605,0.20406318896693096,0.5540425848242876,0.9980024344194017,0.9998122123189038,0.9981776944878672,0.9998692773189647,0.0010884619384928988,0.0019103957546175634,0.025352089369175445,0.0014037074336390343,0.049109356012583524 -खीर,rgb,0.9999669609891177,0.9999766647196664,0.9999744585489472,0.9999709060994003,0.9999709768856374,0.12432538109346243,0.03927509448065337,0.47505978920353437,0.015155544687901916,0.007410143295427248,0.18912441492090806,0.0035419115883949504,0.0013097237028212455,0.0011577175157412474,0.7007178242327945,0.7090237606996477,0.7156444039541912,0.7213103565908644,0.6932047130900314,0.9999767226653912,0.9999765725002027,0.999975819603144,0.9999705220804347,0.9999707383401865,5.264267004752049e-08,1.247628451866e-07,1.2584364851917666e-07,2.2991024965125907e-07,3.3736615871604425e-06,0.9995976014847173,0.9995911370302606,0.9995861967210735,0.999521843544933,0.9994809288107263,0.9993229253508645,4.0586218407832416e-26,3.701104413519103e-26,1.0165254785482719e-26,1.888035484628658e-26,6.3370280947713354e-27,0.9278582638805225,0.8892704396399731,0.8966736182586177,0.9058089361500092,0.8004281787691845,1.0837254188814957e-07,5.43026357360736e-08,5.242198983281641e-08,2.398301653070566e-08,0.9103383056469879,0.7994997857012326,0.6703425249559184,0.8673039336435105,0.8364553982518764,9.361602661793069e-09,1.079693393635331e-08,6.089376237080143e-10,0.00014644454910212276,4.576339350824512e-05,3.0282700228172667e-06,1.931137422237726e-06,1.740778936513154e-07,1.637753651401663e-07,7.194294451755226e-08,2.152995649939985e-08,2.154276078990963e-08,0.0005580697538203633,0.002819531127851985,0.00036651964981600514,0.0029296707257276,0.00029816330674830406,1.9473414159622795e-24,1.2544797096297351e-24,1.0574764387542748e-25,9.948357003386461e-26,0.9999766480680455,0.9999764034229305,0.9999753221898711,0.9999724819000448,0.9999741339767924 -खीर,shape,5.2409817535184636e-05,1.1779664902795245e-05,0.0036626672832203388,5.666345943216038e-05,3.514775229378125e-06,0.9999000624242768,0.00039693476846589025,0.709759465337981,0.021147048530461347,0.9836307713269167,0.02977622825807213,0.997332325313353,0.9983673378832526,0.28782674449620216,0.9999998155471452,0.9999992404432143,0.9999973404320021,0.9994625106010565,0.6649521886644844,3.664471918119767e-05,0.00556784260972368,0.0003714436832296619,0.00020430402509005933,6.246578041691173e-06,0.01516901441436792,6.928884730718361e-05,0.011266920446055238,0.0006673639233306541,1.8550648889622214e-05,0.9999536155968776,0.9999020435251234,0.9999423318020167,0.9998683356962974,0.9998249768590491,0.9991870780779951,0.0006598445175221097,0.0005820067322182551,0.013981352237057197,0.00285798551616897,0.0020473477875423214,0.00013009541233033163,0.052252426303701235,0.019892129711336578,0.003342858191750998,0.022392011906043396,8.971431446431769e-07,8.232122555394147e-06,1.2071125203349743e-05,2.05035258093539e-05,2.6442709417986718e-06,2.357244194648474e-06,6.868268579947909e-07,1.5891419985120473e-06,2.17201626600776e-06,2.2330331336243457e-06,2.2327825080852595e-06,8.15810824766599e-07,0.0003149958311181945,4.034803571918449e-05,4.243713534920382e-06,0.0009757507523232899,6.069873738481225e-07,8.168910760160143e-06,2.7029205978394394e-06,0.0006341477122967328,0.016202956124339227,0.061649134135611815,4.234275849059592e-05,0.0003157227364042688,5.077068059095011e-05,0.00015708409145223957,0.00030071388358152455,0.002112123870243917,0.00019928884795555546,1.5620861130415495e-06,0.08279950302881302,2.717467473549175e-07,1.3082394175360325e-05,3.6965503326828386e-05,0.04869662215229045 -खीर,object,0.00875768223009379,1.9071600325700498e-05,0.02219584574738568,0.0007440871802309753,7.29528740232763e-05,0.9999969376852358,2.028494580634053e-05,0.9998168839606187,0.9899007192327715,0.9999926723516301,0.9989372406336102,0.9955764954385841,0.996347995594912,0.6710041606663232,0.9999998702516861,0.9999998746574448,0.9999996994518996,0.9999791313459185,0.9999710161107978,0.02415268058236172,0.33081958819630475,0.008395065072237343,0.010149824182610871,0.007725116491883827,0.2257606081986449,0.3431269889644576,0.99683612066292,0.9466517210119147,0.23403711228662472,0.9999712290207573,0.999912481855961,0.9999798029361574,0.9999280738310792,0.9999433625110347,0.9994379300238027,2.0498867815205603e-07,2.444830850386934e-07,6.205995358427126e-05,9.218636574238018e-06,8.958361524228541e-07,0.10726892583287473,0.9548024170343756,0.3670770344615383,0.05472076238806922,0.9503918896228293,2.515006589116965e-07,2.306672161985466e-06,5.655505389145417e-07,4.2302542313612176e-07,1.7686790024468228e-05,5.679796477971281e-06,3.835915415724472e-06,1.5181929813949956e-06,3.251129604581066e-06,5.114813935353578e-07,3.991186020095938e-06,1.8384896571813888e-07,0.0026857528348176694,0.0026272049742966396,0.0001771622308015136,0.05379698652153748,4.171974059352127e-05,0.0007952855902319182,0.00014788103365759276,0.002532339749184007,0.01187749426165001,0.11470385169500728,0.0010698049339551668,0.015166770136332844,0.00020390862574446496,7.077228873928715e-05,1.0574974000897864e-07,7.657475423161327e-07,1.4401166286055178e-07,1.7291621953178191e-09,0.8661577205120765,0.00022234345958790992,0.008093531586524174,0.05557833224448112,0.8166208560812941 -गाजर,rgb,4.289157601516864e-06,2.654772222851817e-07,9.445922482430918e-07,6.682377895257992e-07,9.316865731498768e-08,0.016310558297459962,0.0007871268897845958,0.999926029718265,0.9999995312237192,0.9999997908250853,0.9999760253277745,0.9998151288568694,0.9998999110953897,0.9999164462021264,0.9975131091998275,0.9970476627163558,0.9966053851941963,0.9961650775278562,0.9969380267106351,1.7038065035532173e-08,4.401205284201201e-08,4.130672749283126e-08,6.47168710453114e-08,4.551631683501313e-07,0.9999998170715386,0.9999996625440419,0.9999997206270997,0.9999996296429844,0.9999995696696686,5.851937867737089e-05,1.0660382849514518e-05,3.455265535632037e-05,3.708947610558022e-05,4.892997611373313e-05,8.956007308553196e-05,0.9999999999703155,0.9999999999501272,0.9999999999825784,0.9999999999664362,0.9999999999602149,0.9663896347851764,0.9858178436042379,0.9784046316846808,0.9631697010021767,0.9846292248541291,1.4102698655848876e-06,1.7657185939718239e-06,1.8249884741013087e-06,2.585265806663644e-06,1.0221789045080081e-10,6.436187622179321e-11,3.3054998653809425e-11,1.967986622698693e-10,2.479692219014595e-10,0.00847247165077229,0.18858052939221118,0.0034802100672135946,0.9999998447714186,0.9999998752499797,0.999999985186425,0.9999999682330744,0.999999982309426,0.9999959996333132,0.9999974784240123,0.9999994533469676,0.9999994426238299,1.5359742842902964e-08,1.4330091983313276e-07,1.535340045676848e-08,1.88736366869732e-07,1.918106142701127e-08,0.9999997277987568,0.9999997970533575,0.9999998287877518,0.9999998912001801,2.2678290748044374e-07,1.9941551064053813e-07,2.6090806566985493e-07,1.5592636083929453e-06,6.17475284004792e-07 -गाजर,shape,0.008348222829444044,0.008480170761347825,0.0015983254249458902,1.9741766201726643e-06,5.78114513333432e-07,0.012327166600732891,0.003388578688493815,0.9510621044980564,0.9635564951198629,0.8920324081034793,0.6919579819736478,0.9999904611792859,0.9999342676710341,0.9998755389304547,0.0019121373512756543,0.002010237325157931,0.0018819016751576917,5.206565550244266e-05,0.00021277910767290118,7.676403752895247e-07,5.672794385969861e-06,4.658285461836333e-06,7.61129533536959e-06,3.646352057153623e-08,3.977170835538366e-05,5.680742640590094e-06,5.6196371645536725e-06,5.9987113588601876e-05,2.405502485346614e-05,0.00646881407302402,0.0010092332247691157,0.00043485626206019517,0.01871803648675388,5.577162455299173e-05,9.041719452512816e-06,1.936649497207487e-06,3.2049838689860198e-06,7.017393725172547e-05,2.52211893115909e-07,1.915789809945274e-07,0.1386155501298688,0.0024169658629390844,0.00010820651482926934,0.0008949721754999067,0.0018825895544165665,1.4249253678333643e-07,1.9797345021468258e-07,8.931905448850246e-08,1.800158232476461e-07,5.520544286895993e-08,4.187246577215227e-08,4.910316612617873e-08,6.359836977335064e-08,3.341098816062754e-08,1.826438554105054e-06,1.013160482563725e-07,5.355642610267586e-08,1.2570948032187436e-06,9.269092380848265e-07,8.187557899635542e-07,1.4361600965176316e-06,1.0002398933607612e-07,2.2048176869771653e-07,3.78944438367099e-05,1.5331553049684444e-05,4.208334753502957e-06,0.00017715113474578678,7.117861111551843e-06,1.1771146576985968e-06,1.0275178430903023e-06,1.220489534124308e-06,9.368131622993563e-05,4.541538864133274e-06,3.420975238739133e-05,1.1592506357272738e-05,0.0043015032901568585,0.002738744667485256,0.00019986469366415564,0.011568373893359915,2.4448606333682166e-06 -गाजर,object,0.008809124850076433,0.0015043716528498011,0.006955524141758226,0.00021314535332684663,1.5369918599416332e-05,0.025690722764301375,0.017162514471099812,0.9998457278447074,0.9999712574907809,0.9999685738451998,0.999578481149727,0.9999920304055854,0.9999535100612941,0.9999456448047082,0.5524207684421184,0.42871938956958316,0.43895822639625987,0.13238476323916704,0.2291344137186557,8.491978353322956e-06,4.5364268553810796e-05,3.108774078391371e-05,4.226691599412991e-05,6.84712736232849e-06,0.9979549495169289,0.9843806784628084,0.9766719100430616,0.9926161167674171,0.9897264625369255,0.002354076887315164,0.000876328661308687,0.0005499350185758114,0.006484983391210367,0.00030810286123850335,0.0006605340266901056,0.9795605258335698,0.975132854364182,0.9786283035190844,0.8217126523619428,0.8566147636311744,0.9806547289029244,0.94134276829244,0.8169505881301729,0.8882843102711206,0.894418700333771,4.654014454359489e-07,5.901339871337796e-07,5.289734074376107e-07,6.124521314199071e-07,4.748917500328957e-08,3.075885450381928e-08,2.8192312863530177e-08,6.596009443096422e-08,4.403422941286649e-08,8.496439553769467e-05,8.783191373652962e-05,9.800822057297726e-06,0.915347445048163,0.9021129244082716,0.9593087698397887,0.9255290856483664,0.8548984127116727,0.07146645346981757,0.5996796725918535,0.5836386426513946,0.6261901554223712,1.430487337233603e-06,1.9464369250104923e-06,3.4009932075593985e-07,2.325390671076873e-06,5.901394467101061e-07,0.31313626170645853,0.09421525716240352,0.22698733758629772,0.1699162925814242,0.003959242705529131,0.0046217923514391855,0.000991549450260694,0.01932614967636412,0.00011606921403797916 -गोब,rgb,0.9998537325237513,0.9981063465723615,0.9987257779894684,0.97407698236674,0.8674309438994101,0.0001265604309210713,3.485617889251209e-06,0.9999918643956915,0.999999232412326,0.9999994610195594,0.9999791873180034,0.6324057297207952,0.5464372610163307,0.5699786990096519,0.9983771087286819,0.9979745827449674,0.9975796654665594,0.9971759288276412,0.9974936688282902,0.9356644132735229,0.9536460905539008,0.9349611832969154,0.8250005537654781,0.9595575843466901,1.0,1.0,1.0,1.0,1.0,0.3425575144683742,0.09954459358334405,0.23091018694547816,0.19191739407087782,0.20551285084585227,0.21028224297206302,9.470986341785167e-08,5.384790620747915e-08,9.38801297521654e-08,6.149461049421357e-08,3.3684323777129865e-08,0.9955364181782199,0.9972999358062636,0.9952764623311718,0.9906913773998384,0.9880895294089411,6.634907468554144e-12,4.9914101399848196e-12,4.978015191994462e-12,3.826583552854736e-12,1.311352207695307e-07,4.160773812540083e-08,1.7072628360620036e-08,1.002312009320896e-07,8.353217887871756e-08,3.2632877226101833e-10,3.8221447330565825e-09,3.742605876559809e-11,0.999270470561543,0.9974756589746371,0.997717279098727,0.9865520278556039,0.9291516841897309,0.010404058484020356,0.009035285466830884,0.02027276727726419,0.01982387870541086,1.793608131501209e-10,1.7978444072379381e-09,1.3239572207213716e-10,2.1366600327317634e-09,1.267352955188577e-10,7.934433150783387e-11,8.662854161926703e-11,3.9813116959674595e-11,5.7710508075889804e-11,0.9906401457323704,0.9864522984512851,0.9824706143554902,0.9961005780226944,0.9904908400166375 -गोब,shape,0.9838087214223347,0.06837680196945159,0.01768735308423397,7.087722481962942e-07,2.0362085120371695e-06,0.00018832868577696929,4.1014813872653805e-06,0.9999975291028764,0.9999999515990389,0.9999892818496464,0.9998339540814493,0.0004952747337892834,0.00044433159560812544,0.00044613454341633265,0.00010123338392338723,0.0004016161600569185,0.00020022414594328235,5.326053352298917e-05,0.00018404610026754282,0.00014265184062374958,0.0010347463963618466,0.00013825693748000108,0.00024849074802688997,2.0101920714157003e-07,0.0005391622990724175,0.0037522528415612553,1.1644551719356718e-05,2.5344818777322895e-06,1.9645401415782637e-06,0.00029074061157154275,6.061301056965758e-05,0.00016933368466373874,2.338873473932287e-05,4.112035359930593e-05,9.63755183537856e-05,3.1430535441419246e-05,4.310991134432063e-05,1.020262516875284e-06,3.4735798416124416e-07,3.041310571259911e-07,1.313603001552429e-06,1.9018482213986758e-06,8.698826098825787e-07,4.3423324864238924e-05,0.013280312884947769,1.53284200630117e-07,1.9190563065276086e-07,2.393300972182509e-07,5.041506528200696e-07,3.544149295763732e-05,1.9716445964609082e-05,1.60415693287963e-05,3.286055948554389e-05,5.8278316428583944e-05,9.54421110733025e-07,4.050975095856246e-07,1.3161555140657615e-07,0.013938562609191064,0.003440886754497957,0.00016017484598849864,0.0006085778931496875,7.776434460789644e-05,9.37150547219309e-06,5.801907455808091e-06,3.2401408334896796e-05,7.487591614770662e-06,0.00014206794747100506,8.674156655237675e-06,1.941271485096414e-06,6.24984435899639e-07,1.277218134380812e-06,3.463343470357059e-05,1.1580066161827662e-05,5.403896692268313e-06,2.9469253681046655e-06,0.002135888565305897,6.468717592723352e-08,1.8173101805900316e-05,1.641130622853578e-07,3.029262148822622e-05 -गोब,object,0.9988846799893698,0.8629512103003729,0.7621636788558044,0.0002603788086937498,0.0001676119525141062,0.0001896585614484965,6.963808508802775e-06,0.999998676043167,0.9999999052470899,0.9999971157978944,0.999942512903434,0.013084520890866775,0.00456904601863394,0.053886664669373946,0.010529221687941117,0.015657166536766708,0.010445690669230588,0.006191367698325946,0.011160362610114808,0.0517797008453841,0.1552446581519413,0.024914171468212606,0.029762944130132026,0.000283953826436522,0.9999243022041496,0.99993045482686,0.978130457844412,0.9568704395366268,0.9361122283815063,0.0014042801455708828,0.0004828724335124019,0.0009045874933929498,0.0006255884048750982,0.00036900906480266253,0.009376353597894797,0.00019601909668971677,0.0001868882288150154,7.368311330648761e-06,2.9125996453322078e-06,5.675157532198936e-06,0.004812072124984993,0.007942949532283125,0.003897407564719032,0.03124808005271108,0.6140905181296391,6.149339723506274e-08,5.127896721352466e-08,7.019136667396456e-08,1.0737635596056462e-07,6.851684375401679e-05,3.992468030377272e-05,3.3379256241632954e-05,7.283342061461533e-05,8.627928200838563e-05,5.066587761319862e-07,5.824189860233484e-07,1.0486789476152806e-07,0.8783420046347105,0.6593655060815612,0.25964225788061857,0.26216986042614154,0.08135452297246272,0.0002752459617530003,0.00017682672077437388,0.0005784451188031661,0.00045107076226366444,2.4675992188373914e-06,1.2356227643652157e-06,4.887478889225334e-07,7.790954892997397e-07,4.925400537974852e-07,4.148371003354497e-06,1.7574981500995575e-06,1.0727735646142668e-06,1.3606734507456562e-06,0.15831136120288994,0.00010849323871962204,0.010283685358143784,0.0002773279281727031,0.014719094353368609 -गोभ,rgb,0.999779051344178,0.9971887403446359,0.9981022966503222,0.962558044706924,0.8191681012445029,9.588065230557952e-05,2.7120942854796017e-06,0.9999876499349882,0.999998825615544,0.9999991746039871,0.999968670418347,0.5517826181761057,0.4640161530164899,0.48772598218866875,0.9976170456046612,0.9970306351107353,0.9964562282447127,0.9958698127321387,0.9963319766168954,0.9092733103904623,0.9339508566280768,0.9082867695059365,0.765871886288401,0.942138545539635,1.0,1.0,1.0,1.0,0.9999999999999998,0.2687409982982875,0.07304222514218563,0.17529932679788018,0.14415629773926272,0.15495458369440002,0.15880280385722254,8.42518336188124e-08,4.809306454174827e-08,8.376231221899043e-08,5.495135702391561e-08,3.029157350322585e-08,0.9934787004274879,0.9960421606582835,0.9931068125733328,0.9865015525667867,0.9828017685854484,5.789350445857097e-12,4.369470274963173e-12,4.358099091080917e-12,3.361001043216327e-12,1.0363534857825186e-07,3.3196870521162605e-08,1.3722903453689267e-08,7.939934004120053e-08,6.627587938659e-08,2.7828952047624516e-10,3.2036644455288603e-09,3.25677077926421e-11,0.9989416251067447,0.9963781064829818,0.99673928537414,0.9811154601716339,0.9041875388894851,0.007868386055183665,0.006848218574627183,0.015361153070087646,0.015021578042598441,1.506787839400233e-10,1.4816624301428114e-09,1.1154211493424617e-10,1.7586058804777845e-09,1.0684123326000734e-10,7.34419259345603e-11,8.020981989265194e-11,3.724992551779744e-11,5.386595805926353e-11,0.9862916696101348,0.9802439195376749,0.974524510350581,0.99423969705194,0.9860717737027492 -गोभ,shape,0.9750266936468887,0.09980192011783418,0.011029520782648015,6.944559935622194e-06,2.4088942062707422e-05,0.011655526635363362,0.00013212595025192814,0.9999946485222517,0.999999911075771,0.9999784006962616,0.9997016987407913,0.0028937611398830304,0.028523778261034458,0.0009320846840636658,0.0029207321329692807,0.030683142883785257,0.01595695354933479,0.0019312784855543847,0.0026379935756023817,0.00013292214490952348,0.0010215915774051587,0.00016856665210393656,0.00026841338805580093,7.888471094735145e-07,0.0004014367815784309,0.0043907877075802125,4.0240289219863236e-05,1.1205571507491451e-05,7.38757779947371e-06,0.010729799071648867,0.000772040604910968,0.004364138049475887,0.0001603778516850786,0.0016835079429069286,0.00015215135772222673,4.858294399608333e-05,5.943204730114356e-05,1.446914544040438e-05,7.466919392834963e-06,1.6230695194270093e-06,3.5124725330135123e-06,4.220416535692723e-06,2.2745066083226834e-06,0.00012644776032043402,0.01629778108031509,9.013876891476997e-07,1.2420425435997122e-06,1.218464896939781e-06,2.2703855404238375e-06,5.314055525038438e-05,3.001234514397362e-05,2.0658690081542905e-05,5.0088343867403816e-05,8.222766087318403e-05,5.869595997478697e-06,3.630585554934932e-06,7.614763274960511e-07,0.011223203796582126,0.003517560986076967,0.00014095423941446532,0.0005803284478403548,0.00010937706818287365,5.609972510690325e-05,4.195220904875567e-05,0.0001472758910540226,2.8459015331667098e-05,0.0008559707086141184,7.774765211541658e-05,1.2909965686484885e-05,2.5523051674903244e-06,4.628493998258833e-06,0.0001603809576151947,7.935239413778168e-05,4.338562610279481e-05,1.4537761315399784e-05,0.0024048921594339006,5.212841800685405e-07,3.0597834944201355e-05,4.667217674067695e-06,4.8396796807155916e-05 -गोभ,object,0.9980784276737477,0.8390318043409893,0.6645690336582806,0.000676198647716847,0.00048306164282428107,0.002522273043617715,4.777370327563559e-05,0.999997711733556,0.9999998345844237,0.9999953880967124,0.999912676743783,0.026612718323396924,0.0629338461753314,0.07211489205097235,0.06084421739338472,0.16871970809986794,0.11985121489208778,0.04092453456822351,0.04268784665891447,0.038172465516403575,0.1342443450914623,0.02190320090234896,0.024885812383913925,0.0004517679600893025,0.9998284418334574,0.9998745163614631,0.978636738871074,0.963445161638255,0.9428808937079529,0.010467599186008257,0.0016783543568465477,0.005370366304392795,0.0014129705007018504,0.0030568720195452226,0.009456577969966271,0.00021905828308453333,0.00018804463204453564,2.8564769473343525e-05,1.450318894276265e-05,1.183806796972385e-05,0.006606232939792389,0.0103032805654262,0.005441333717210775,0.04581195515118236,0.5746858435847965,1.291187991608326e-07,1.1479585372750404e-07,1.3783748027519477e-07,1.9626192035622936e-07,6.679401647956147e-05,3.933541909573426e-05,3.1824620664008936e-05,7.269260166444387e-05,8.530090212561812e-05,1.167277536430111e-06,1.5869056902678008e-06,2.2515508277275942e-07,0.8383624009959624,0.6162742530534304,0.20768455612555697,0.21587558924591865,0.08131310395513897,0.0005386390829799213,0.0003788765625608846,0.0010389512474635993,0.0006813186142337482,5.873175049548455e-06,3.6293428191270657e-06,1.3795163336924587e-06,1.6071012461154253e-06,9.133583973611458e-07,7.956110293049323e-06,4.062793795207048e-06,2.785093069596039e-06,2.635914626894588e-06,0.13932825063753562,0.00024130900558579953,0.009335281803905665,0.0014398753900411302,0.012952347850649129 -घन,rgb,0.9999997411426853,0.9999997744812146,0.9999993620440368,0.9999864144246808,0.9999908152090611,0.003982290594074566,0.00759333512242541,0.5893331319602692,0.6007252552006886,0.6115629376193029,0.2744106766491669,0.0010226790233474356,0.0007471176970807862,0.0007439949053034179,0.08648104484587228,0.0801356605557884,0.07547806559619943,0.07173314513003196,0.07032339999252282,0.999999486038511,0.9999988879954955,0.9999984712668109,0.9999915304821605,0.9999855795062662,1.0,1.0,1.0,1.0,0.9999999999999993,0.9445372605141259,0.9585980411598477,0.9461064296460706,0.9324868450514727,0.9207115304967175,0.8768498280930936,0.5427956777708615,0.5578764414380856,0.6708839946933913,0.6192825773086598,0.7203157852882904,0.14690062060212902,0.13566264559481728,0.11404422672836882,0.09425075977730196,0.05159569974658208,0.21736462557706523,0.21545088468986048,0.2131719745399663,0.20322965970960494,0.998071689572036,0.9981462147361593,0.9987190684207982,0.9959174217531119,0.994550776140386,0.004435049029442936,0.001161289240019999,0.011453021680075023,0.006554227015769839,0.003182487553998887,0.002713953980026577,0.001262214868353565,0.0006532497250198538,0.000129709534959787,0.00012673016269879183,0.0001427918601909384,0.00014232012213973475,0.6841323569123683,0.3280523483176615,0.686363116333648,0.2909114433624793,0.653426713625764,0.4464858065871266,0.4771720792503667,0.7211157089862827,0.7060720582598028,0.9999987554235474,0.9999983635084437,0.9999969938468494,0.9999957618019296,0.9999959328147874 -घन,shape,0.0777256815594404,0.00045072717816860443,0.9997950565654397,0.9945205418196726,0.9977202115877977,0.9999999593402783,0.999952819931207,0.9999928557196888,0.9992724291619488,0.9999999899666677,0.9999998683023572,0.9998766301721782,0.9999999999607609,0.9374290996703251,0.9999999999406988,0.9999999999645228,0.9999999999821334,0.9999999980505152,0.9999993241297842,0.9994889558715518,0.9999982549143405,0.999944044757199,0.9997646646043995,0.9992698257523323,0.027353149809353824,0.48066911864107903,0.9975658932437601,0.9991098246839148,0.9986326721163604,0.9999999996246012,0.9999999868991214,0.9999999998298834,0.9999992351523795,0.9999999993974169,0.4727297359125837,0.9994724963519249,0.9990675304442472,0.9974556211126071,0.9952378133450454,0.9252333069943524,0.08680656766557714,0.945587999892281,0.09530117167360522,2.9452074963991866e-06,0.9992883047703245,0.00020785776182958643,5.2341147637795936e-05,9.485327949573898e-05,0.00022337825573937818,0.00028619263975212476,0.0003102832320723868,0.007904093410874984,0.0016966356544316115,0.0010683750129171657,1.7908753043858575e-05,7.570409580365539e-05,5.432273661669253e-06,3.32316721720895e-05,0.003188622611342571,0.5743741233829363,0.056598860493228445,0.0012487560331547363,7.466628164413201e-07,3.971321086709342e-07,4.027066233144556e-06,0.004024120131033122,0.9984729772608675,0.7434734985432383,0.9999977067412716,0.9992774237667763,0.9752161348950409,2.4531058776575718e-05,4.3413908495713495e-09,4.1832251462748905e-06,5.702585512546463e-08,0.9987367766684816,0.9999936132199881,0.48942753104346887,0.9999972714005981,0.9455818780727393 -घन,object,0.5838910684302279,0.025064913015040057,0.9984827646244234,0.9981200217954482,0.9994556647941725,0.9952144581365436,0.8644071793230622,0.9791142949489221,0.775281786916419,0.9999752742078677,0.9999333696937376,0.04660988565003007,0.9976377086711393,0.00033434301143490084,0.9999707131321495,0.9999495654680608,0.9999624958172658,0.999799620844861,0.9469910848510419,0.9999046102876751,0.9999999668979356,0.9999978202388159,0.9999909581313344,0.999810121905813,0.9980742070106805,0.9997388086767465,0.9999995395806142,0.9999998253200456,0.9999977043867986,0.9999649733045297,0.9999706954751673,0.9999977821192638,0.9997158566630471,0.9999981323004994,0.050339741455082,0.33776603675704703,0.2952320568469991,0.15675394883623273,0.3393659242246892,0.02187746784200772,3.495644218079727e-05,0.0025030534942180184,0.0020554749334353657,1.5577449012141494e-05,0.7129453013854272,0.00041596685483173224,7.732110336135012e-05,7.832737592085118e-05,0.0002856147228647141,0.011691319737281509,0.0346392412276296,0.5386358387070896,0.14326819146354922,0.09092817248766889,1.4018816129284113e-05,1.467858196791466e-05,6.427560290283402e-06,3.1049872342608224e-05,0.000598022825018505,0.06946647956306089,0.0012660315748625052,0.00038636372893780354,5.5084200912967305e-08,8.958632407026614e-09,4.792771206657411e-07,1.3373044716324601e-06,0.9840237165604134,0.5160618285236194,0.9998467205351355,0.9957505072585003,0.9770797791778084,1.4721728251965985e-06,2.469067398027543e-07,2.764284944855144e-06,9.090080681372669e-07,0.9862322342887263,0.9999880817335227,0.7702579290763969,0.9996666883357656,0.9873091211254096 -घनक्षेत्र,rgb,0.9999999999998939,0.999999999999964,0.9999999999992408,0.9999999982614618,0.9999999996620925,1.1442646513671848e-09,2.866139558429011e-08,2.5778796498498243e-05,3.793464031322931e-05,4.602930262787157e-05,1.0699994620223446e-06,3.243316429376696e-12,1.873623650305828e-12,1.85225793674796e-12,4.5236418567461024e-08,3.784134515082382e-08,3.2958983624146956e-08,2.9351218093713852e-08,2.7514685514521072e-08,0.9999999999998737,0.9999999999987481,0.9999999999972473,0.9999999997577353,0.9999999982097789,1.0,1.0,1.0,1.0,1.0,0.15644236038007603,0.41544673448373526,0.1937448693084112,0.11901695790946022,0.07581519850754422,0.021142908867906332,0.9999851946257149,0.9999897237706514,0.9999977067456817,0.9999955646474821,0.9999992250125986,2.2436986579220292e-07,1.655851875380956e-07,1.0967219191755065e-07,7.189902650277142e-08,1.5121252389751723e-08,0.4603603559220494,0.5146052227583667,0.5072905201621082,0.5305387967236613,0.9999990744506853,0.9999995308768901,0.9999998931158026,0.9999934921007585,0.9999867543281733,3.7741883745901687e-06,3.8332714195517404e-08,0.000208798399779447,1.824338527596592e-10,4.451923305449634e-11,5.2176913333245364e-11,1.1266779303108907e-11,5.149347368926138e-12,4.548438630563294e-13,5.400187899389006e-13,7.873964391327881e-13,7.853164353374881e-13,0.9343326458713439,0.06576760610424161,0.9466323171203732,0.038841984210301134,0.925160806864538,0.9999869167934264,0.9999914739592463,0.9999998047005574,0.9999997346444838,0.9999999999971732,0.9999999999945202,0.9999999999718368,0.9999999998850033,0.9999999999207945 -घनक्षेत्र,shape,0.10222334617224856,0.009420471594909566,0.002115409940526884,6.38076196839095e-05,1.1732081554611635e-05,1.6472037927708282e-06,3.631680035181131e-06,0.000402173404392024,6.158383708160786e-05,0.9863637808714442,0.9999579082597942,7.052732841616565e-08,4.212797920456611e-06,1.3666126185448232e-06,3.8813533565900184e-08,1.0318833895945097e-07,1.2870558790531742e-07,1.0296161840494252e-07,0.0019118355420155333,0.9997575584664745,0.9999950040507428,0.9998781117441942,0.9999295840991493,0.9994588319406307,0.13057358691465232,0.002590240207906606,0.2392449933018309,0.766723022070507,0.9988498106771103,8.059086392919844e-08,3.892593714249629e-07,1.2301784952422713e-07,5.058985204922246e-05,6.845297075248307e-06,0.0007479551273109215,0.0005966042647027768,0.0007229367431771744,6.683938599739605e-08,2.0360599663805237e-06,6.442087138759311e-05,4.666095760190835e-06,1.4871925048403617e-05,3.838332737766649e-05,0.00011613942184372566,0.029351340702892352,0.00010656353547740371,5.717622242768987e-06,4.274285033804603e-06,4.061238212210621e-05,0.00048318081185073615,0.0038032555087269986,0.2569009692643386,0.055867286525581324,0.4839039750412242,3.014230956049869e-05,5.476092739000457e-06,3.5340945330592387e-06,0.004901511085291642,0.07366127612150743,0.9617183676976621,0.9767363417349018,0.929121339822747,3.2809479142979025e-06,1.6503549269650956e-05,3.2090981751815515e-07,0.0001387856932913672,0.47841814476530825,0.02334882119278638,0.9947904362958567,0.7245981987087082,0.5837621168437762,3.882772385704605e-05,2.4094326939817597e-08,3.623214032145511e-07,5.066356863117531e-06,0.006448991774402617,9.181935671104487e-07,0.0001919720267154199,6.971533130977739e-06,0.006440859112068479 -घनक्षेत्र,object,0.045150356104832375,0.02324478401808807,0.31943263171494374,0.0007637105131893068,0.0013569103534904446,3.181422468220041e-08,1.7366933585458323e-07,0.0003608350001461764,2.8445288222323754e-05,0.784809399442163,0.9970208555484741,7.896594455281701e-08,9.831319598276885e-08,1.5912936394601045e-06,2.3410923199729068e-07,5.2262041015930696e-08,7.655832668087415e-08,3.039159237767309e-07,9.337451297686433e-05,0.9998895541685362,0.9999990402878605,0.9999644119842954,0.9999678949946808,0.9997503202509377,0.9998017842786223,0.9880667384064105,0.9994768080495467,0.9999574465531657,0.999997638605258,3.6240711781218945e-07,7.003988828734698e-06,1.2763873706327513e-06,0.0009364529942874455,7.577086226532302e-06,0.0038129260180575957,0.0008501270837373274,0.001157278091773842,7.611833873324922e-07,1.1634599260369936e-06,0.0002068169297833888,1.1227129532321815e-05,2.8212025012701112e-05,5.7161192626269824e-05,0.00017495979852245465,0.002371499501773683,0.00010726785567760733,6.014411708266445e-06,6.729992077510546e-06,5.018916210067758e-05,0.002589888259675101,0.018850447575653805,0.48140668744731774,0.25810635446544267,0.6754161126300434,7.971903665426873e-06,1.9394835633332016e-06,5.337682518023456e-06,0.002910963814859723,0.016859696290146553,0.8689417180061172,0.7306322072766404,0.5083709165250618,3.286136929916067e-07,6.4573135770254e-07,9.871428111028935e-08,1.8353032959094906e-06,0.017518043372889883,0.0033256226652449363,0.9266769248543845,0.5526745658764743,0.38036111586915167,1.8399477669548772e-06,2.8648002781373036e-07,5.235379918730469e-07,1.3076797523568603e-05,0.12392298029770812,0.00041657725220758935,0.011777380583386114,6.721489851462529e-05,0.1804946296598877 -घनाभ,rgb,0.3057490831670761,0.5156162391402023,0.18753520359853165,0.010444053570341,0.03271946812965847,2.020886359014208e-07,3.95288300093384e-06,1.3916641481249484e-07,8.582941868437669e-07,1.2775513037075217e-06,7.227555206015618e-08,1.0751099219140218e-08,1.4881184244461888e-08,1.5470327840983223e-08,1.1463883831987091e-08,1.077587816720231e-08,1.0278817190740607e-08,9.884789886681672e-09,1.002599654520548e-08,0.5485040564985577,0.26951165257949034,0.2155894038013934,0.04119997239347852,0.011354343435327733,1.0,1.0,1.0,1.0,0.9999999999999762,2.2901722206850677e-06,6.156809550434981e-06,2.959100415747517e-06,2.527475552835234e-06,2.030078786849446e-06,1.2061755217656863e-06,0.9999999999999669,0.9999999999999767,0.9999999999999936,0.9999999999999887,0.9999999999999976,1.276923491398352e-08,1.2660911314592971e-08,1.1173258073585259e-08,9.931812906547134e-09,7.691750362706225e-09,0.9955701667056642,0.99737639498094,0.9973883873739875,0.9984265587702575,0.6612590160466834,0.8491006257641828,0.9520248484524672,0.49995727179272104,0.4545661757276165,0.4613541678461638,0.047959700013257854,0.9754946371829961,1.0110178122360972e-07,1.20408490051885e-07,5.24294090379119e-07,4.540652925334516e-07,1.552083225523324e-06,2.158975225786017e-06,3.7129476143832856e-06,7.056801394866502e-06,7.079123978124932e-06,0.8392659938562297,0.09357587702194461,0.8852443129803996,0.0692430218593106,0.8790013435500313,0.9999999999999467,0.9999999999999649,0.9999999999999987,0.9999999999999984,0.14946153029536297,0.12138288179333369,0.06281865919077811,0.025318842174573884,0.03511576710022518 -घनाभ,shape,0.030199328420246394,0.31083170795499365,0.9737757071728989,0.0009243695675226901,9.525963669514325e-06,0.017267831415572622,4.931100919965281e-08,1.2071396537155328e-06,2.1512251147612586e-08,0.9315409039170559,0.008697481461410946,0.005103402195554268,1.3363354581520825e-06,0.9222380351156628,0.00010078779492627995,0.0007450004461877096,0.0005547691884869724,0.011692836234305426,0.9638726373980218,0.019658176283378893,0.7969079612094403,0.9661370919878424,0.988194303140762,0.9778056363423255,0.9998417204264153,0.9997123685699377,0.9998330238169273,0.9999589251119338,0.9998243794919308,1.0423724958081472e-06,0.006759827501714645,4.301252501784742e-05,0.7982662383063149,0.04515123448482919,0.9983598559739096,0.9934367721527201,0.9966035325015302,0.0014107432321965707,9.290174181833409e-05,0.19516151893248515,0.0005220820272642177,0.012181270971106,0.00016929430611322403,6.739077174383278e-05,0.00021449040230196812,0.0007121956647640383,0.0003143230131813833,3.6715537990749474e-05,7.141447283024806e-05,0.00029988269511862934,0.00047182739369142703,0.0005622979042499784,1.5869410273101144e-05,8.831359403734017e-05,5.817936273030969e-05,0.0006211674270051435,8.227487231569543e-05,4.420847737981086e-05,8.12178550571971e-07,0.015487402420518845,0.005649106177869527,4.279662879603438e-05,0.00017573574665141853,2.48221918894689e-05,7.843699279816348e-07,0.003524942638258724,0.9742359178848824,0.9365304358030695,0.9998791075143575,0.9660607006813369,0.9352157364943086,1.9345927413075764e-05,8.171835877468571e-08,4.809774476985472e-05,1.6272783619554834e-05,0.0865744106871237,1.0620629035141434e-05,0.711910739315054,2.0367601233213585e-05,0.930274925260232 -घनाभ,object,0.005272446891498305,0.02203010864451466,0.9757387994884624,0.003285770327506554,3.127806613611165e-05,0.0036150011498754836,1.8922172756700278e-07,1.2671403609714477e-06,7.976599428760466e-08,0.4133799006417434,0.0007448770210334737,0.0001265055857349289,6.082799805564172e-07,0.4341771347756775,1.0049783244563501e-05,6.453753828212122e-05,6.17647531820179e-05,0.00034733490669250057,0.4821667918897492,0.02410473528612865,0.8304312564472962,0.9100282071786633,0.9540411558346437,0.9738783431233448,0.9999490315713592,0.9998388644201951,0.9999853020628147,0.9999981978666374,0.9999615977699557,7.164570681139696e-07,0.0007679995526211412,1.707982209797169e-05,0.2533780959439882,0.01783979293325021,0.9839725254270595,0.9993388223101842,0.9997131034018264,0.02579858619438635,0.0036777881923730177,0.7760394964488239,0.00018076915037883097,0.0012644803177603743,2.5676185079603783e-05,2.147311187379531e-05,3.6068854885311515e-05,0.0031949140944070612,0.001713616336446697,0.00021867197744644085,0.0004358838503974125,0.00041563294682904803,0.000760384193964237,0.001056633206936524,4.45603053192002e-05,0.00016768225936956147,0.00036194355021277285,0.0012810563008472439,0.0005865027907311517,2.7365510158896676e-06,1.2193725247802765e-07,0.0005866986978360038,0.00028775298689569863,7.046887857579648e-06,1.9883461202945727e-05,5.567660149619673e-06,1.7907577678246584e-07,0.00014765340635884333,0.8716764380067502,0.8934464820547112,0.999764760645579,0.9763420842918248,0.9508766581390086,0.00010030219585932002,4.833836220840761e-06,0.002504213440901156,0.0004761302498165191,0.11795458267549358,0.00013126027786115405,0.8793203371611429,8.764887833958192e-05,0.9155366532046456 -चीज़,rgb,1.0,1.0,0.9999999999999998,0.9999999999994336,0.9999999999998643,3.602345374372206e-06,5.3423794004532255e-05,0.2130295052785105,0.25067828179205326,0.28019826623903166,0.010825673741024246,2.0382828150181598e-08,1.0858110586006049e-08,1.0708626091228014e-08,0.000470189855285541,0.00039154120570302164,0.0003396917554037942,0.00030142796402079586,0.0002828479266846246,1.0,0.9999999999999993,0.9999999999999987,0.9999999999998985,0.9999999999993969,1.0,1.0,1.0,1.0,1.0,0.9989616317146545,0.9996748803577218,0.9991524920137888,0.9984914599261219,0.9975763417347614,0.9912562297977917,0.9999963101975438,0.9999972611185394,0.9999992995365262,0.9999987123456271,0.99999972023233,0.0022948095505109577,0.0017182487785591626,0.0011212056770091084,0.000719329286190621,0.00014922594558945847,0.9891835788041986,0.9904844692054464,0.9901885394122971,0.9902415983781859,0.999999998165694,0.999999998870962,0.999999999688149,0.9999999875893072,0.9999999747618908,0.0008032109223803775,1.2381828318469533e-05,0.02436291265647411,1.1961431348285971e-06,2.591864285699528e-07,2.435227098335336e-07,4.781116498024426e-08,1.641830078861635e-08,9.55125407514696e-10,1.0407440090230122e-09,1.4356674311377423e-09,1.4296965259870104e-09,0.9997067592857928,0.9672448784149474,0.9997483582706914,0.9465031936439817,0.9996380303778388,0.9999959457125145,0.9999972226137054,0.9999999010620795,0.9999998705138938,0.9999999999999989,0.9999999999999978,0.9999999999999893,0.9999999999999631,0.9999999999999725 -चीज़,shape,0.9998633495991054,0.9999454965077373,0.9999978675709733,0.99999999999663,0.9999859178308146,0.9999999997648326,0.9999999999999991,0.9996819284744797,0.9999450212741255,0.9999998626084521,0.9999916911946012,4.3229217762714195e-05,0.9999999999999996,0.0005998612094102984,0.9999999999992384,0.9999999999998845,0.9999999999999178,0.9999999999867748,0.9999999991635071,0.9997636433174295,0.9999978061374928,0.9999723767571539,0.9998807499384847,0.999277923558547,0.9997485833746149,0.9998902844154738,0.9999742313145233,0.9999684971726248,0.9999543831274236,0.9999999999998532,0.9999999875859927,0.999999999997278,0.9999947025913896,0.999999999999938,0.9999735914805934,0.9999990113915781,0.9999927664369097,0.9999386212677495,0.9999986061331756,0.9999014341420871,1.5519511624575157e-06,0.12173484551618262,0.0031370534164645446,5.435865106653363e-05,0.9982471132875154,0.0739474878239155,0.08335167510412539,0.0344565441410667,0.03009544198047851,0.02350518338700394,0.25172859439711803,0.18705357309137383,0.0027804551933307384,0.0005543589035790012,0.0009661188185383812,0.6711136314870622,7.659088489484097e-05,5.8111458652735176e-05,5.21932266113216e-05,0.010959176557427213,0.00015727135331432472,5.8023382801712946e-05,0.002904336215156993,0.0005150176229214533,0.0011107986009837704,0.792234823817865,0.9999542381388872,0.9998086853630471,0.9999929794631855,0.9998704822268031,0.9994041750096778,0.0119107934672186,7.386821641242803e-09,0.008295572997578765,8.278608854198766e-06,0.9997237928502853,0.9998881451578017,0.999811557774377,0.9999999996862352,0.9999992582037356 -चीज़,object,0.9997916374300878,0.9996650817015277,0.9999927197276541,0.9999999672479403,0.9999144017064101,0.9995924406943789,0.9999999677962789,0.38719402690076654,0.7332398624701005,0.999563476405687,0.928045270444921,2.1083309297263695e-05,0.9999907024496593,0.0002814507014971972,0.9999695579663621,0.9999888474542148,0.9999908282932766,0.9999670628067363,0.9992335989387517,0.9997547426328346,0.999997057756078,0.9999491064222054,0.9999086055341048,0.9993195555718551,0.9999988710801161,0.9999982193651872,0.999999922290929,0.9999998933800567,0.9999979596544383,0.9999989191825396,0.9999646286464046,0.9999990244193734,0.9987768103578887,0.9999999893500539,0.9973493941524056,0.9999705430967026,0.9999746379985481,0.9998890249790436,0.9999444125049933,0.9998886444164083,4.0313684825579214e-07,0.00014033124917124445,6.58058082352049e-05,3.7204183654054366e-06,0.12053600607493677,0.7258798296763405,0.6792734100403868,0.16344094923484942,0.2840643790733628,0.8159539076013871,0.9824344675714903,0.9862802963013317,0.7336509574860598,0.4168721852208272,0.002138406789609008,0.19183080193020177,0.0027156696817336404,4.2152689648573995e-06,4.305835155599441e-06,0.0002797766125622006,1.2163366598032496e-05,2.080628007014307e-05,2.7459466292018724e-06,2.9377598753513004e-05,4.634981047271192e-06,0.0004382291595616076,0.9999024478574878,0.99971917216839,0.9999870389862027,0.9998086338667379,0.9996943501999386,0.08633685434025193,0.00011516380541142735,0.4532741819987779,0.00874926577285767,0.9999423114284152,0.9999601176249501,0.9999272379812615,0.9999994294382979,0.9999917850824142 -चौकोर,rgb,0.9999999991746926,0.9999999996837732,0.9999999972229272,0.9999995005280663,0.9999998622114997,2.182207683541067e-06,2.802519239414682e-05,0.0004808040748056607,0.0005380615131314123,0.0006022743102550602,5.595952803415854e-05,1.7189089607168057e-08,1.2105854607880954e-08,1.1928635236919733e-08,8.424221370803054e-06,7.560869327994152e-06,6.957581553081601e-06,6.491039750923515e-06,6.150506815134455e-06,0.9999999994240925,0.9999999970363638,0.9999999949907008,0.9999998937118599,0.999999508296785,1.0,1.0,1.0,1.0,1.0,0.3817514519158596,0.6418555238398782,0.4362002741553148,0.34489232696811284,0.2693304493698145,0.12613569756266194,0.9999618784525416,0.9999718007400235,0.9999898113462754,0.9999842746667993,0.9999956262597368,2.7773555082590745e-05,2.163213063999701e-05,1.6921408021436787e-05,1.3265948810612029e-05,4.553303322163399e-06,0.9384536083106798,0.9480476627722795,0.947048298981839,0.9514463351445204,0.9999916207377816,0.9999952792477252,0.9999984492983262,0.9999678259935126,0.9999478480380258,0.001979774732282755,6.504984647033621e-05,0.03857308543206604,1.7576943489271902e-07,7.256182783253691e-08,8.194806104662249e-08,3.224456151061167e-08,2.1654382717586715e-08,6.910647580261867e-09,7.927243764383339e-09,9.763349689609594e-09,9.762745525828607e-09,0.9876749906735838,0.6138681975059171,0.9896999804422442,0.5149977215708341,0.9868296935825847,0.9999794702291964,0.9999847408378438,0.9999990042336017,0.9999987289667464,0.9999999940260738,0.999999990767913,0.9999999714631854,0.9999999137016068,0.999999938084919 -चौकोर,shape,0.21146663671388155,0.03435471815364512,0.23192753854615375,0.6433061496169565,0.902901683724365,8.596053535550342e-13,0.08395930816521402,7.682104347462914e-05,3.111324905744075e-05,0.01686132376782519,0.9042571462109551,6.431605203037271e-07,6.306562585488446e-07,1.7089358033225658e-05,2.3165061313202412e-05,1.74491706319219e-09,5.431065215361521e-09,1.7173078232726518e-06,4.439721213953681e-09,0.9997957751966859,0.9999774862119475,0.9998016931120537,0.9998304096934942,0.9996672008706794,0.6350299510711073,0.002032660034495,0.000657999153134278,0.0012575039730086375,0.263095251601164,6.29509648755697e-05,0.00734869531956301,0.00015601321917817107,0.01474015123561497,6.034904183008437e-07,0.005800954234518786,8.568644617306317e-05,0.0004869438050831162,8.652110977737444e-07,3.569280116791966e-05,0.00017476716902962175,4.106153722773378e-06,7.698612464092558e-06,8.783126352697167e-05,0.00020677382301431636,0.03079402880310838,0.001247795722735288,1.6998560915996077e-05,1.5149400826187954e-05,8.71958188101768e-05,0.00310169822730154,0.12445272668216989,0.9222104996513929,0.7867216134697894,0.8847601161151564,1.5996945866191395e-05,0.00015586364818656975,0.00017521206849512892,0.005760709868238061,0.040889267996610607,0.9964776515405177,0.9157882978610302,0.9745350836675444,8.165973109766636e-06,4.163976618068993e-07,5.595855329084954e-08,6.21337738165223e-08,7.599597358792497e-05,7.283102793362633e-05,0.46966653049184975,0.10810838469718105,0.012423597017234049,1.3339972054324533e-08,5.630404102463563e-06,2.028428069837492e-07,4.062330020957844e-05,0.008261025448856084,0.11536680552033463,0.004675581600348302,0.000973665207574076,0.012041235325643058 -चौकोर,object,0.012759221836057662,0.008444608650215311,0.07940238548082032,0.36604302658016935,0.9588157533687235,7.571511684031953e-11,0.003535897078657276,1.3900449382955087e-05,3.871744935542525e-06,0.0025043001270007676,0.1667491678354103,2.4521790007262246e-07,1.3624318992606581e-07,1.6327991031751105e-07,2.720853062728949e-06,2.6726803643774153e-09,6.3521568434031295e-09,2.8710706712085554e-07,1.0817281329272809e-08,0.9998117801668872,0.9999950387277086,0.9998918894984528,0.9998781346891784,0.9997836864987669,0.41466327478331744,0.0059423162780051315,0.048955578645307196,0.37613433552802544,0.9418646671318549,8.390206173357078e-05,0.007721010138915473,0.00033374856680838704,0.020994107968715276,6.6614556542809565e-06,0.0001891307758118026,1.2279408101577355e-05,6.52992523859481e-05,4.250671528349696e-06,5.965456194543894e-05,0.00031180243476887923,3.053458115210584e-06,6.3142166257018414e-06,6.786802687111661e-05,4.894391470627302e-05,0.0012052047906582453,0.008647819290442714,0.00029222880415468843,0.0002016802610380374,0.0010359559418515632,0.016823492681055454,0.2692758163928677,0.9673863775895896,0.9189056091628345,0.9593967612415315,0.00011729753587199401,0.0001106516547840572,0.0007413678211514341,1.8723297302861088e-05,0.00026649534476205376,0.18825178672312015,0.03812892899206013,0.09632611091401216,5.912656195372781e-08,3.300274558849751e-08,4.0877342946047e-09,2.6312613605285698e-09,0.005750159277665944,0.006631006751648421,0.9666924441475205,0.8230152602114679,0.5096686730726886,1.4389695729802056e-07,1.7268133931891844e-05,5.298957310419293e-06,0.00012481815502803206,0.014399180630552805,0.5887877150411943,0.0013466730180097168,0.003602928603903668,0.004221468130851962 -छिल,rgb,6.775961409956921e-12,4.865990201253354e-12,5.496681653120727e-11,3.8324278338084296e-08,1.1034005339862467e-08,0.9806860942034488,0.5191029398334871,0.02106935580752869,0.000131216479446633,4.801895973166101e-05,0.06654548117024676,0.9819028255574719,0.9661250693665738,0.9613475194387051,0.9491433274691863,0.9583914487879852,0.9644922545266593,0.9689796200771343,0.9655628380951788,1.802759879923119e-11,1.192705349704805e-10,2.2837112729030523e-10,8.397860234148297e-09,4.031485724234256e-08,7.27750140832639e-52,7.593000926381817e-51,1.5568804883125573e-50,1.3767477780657435e-49,1.8523356152106196e-43,0.19116362459700775,0.07758194602261112,0.16084200077999575,0.21138111202701687,0.26936829136646573,0.4543574781229262,4.262966051769445e-38,2.944330607297905e-38,1.8684559262781025e-39,6.739237583980799e-39,4.7457102989096496e-40,0.97299709512544,0.9633979592796081,0.9768618783630882,0.9860894241678554,0.9900012541540371,7.437208624627716e-13,2.8950215941363476e-13,2.8514489534782283e-13,1.109469337448233e-13,2.976241926009239e-09,6.349178113952066e-10,9.148046670399455e-11,9.439472788133343e-09,1.313880374656949e-08,1.077256196077806e-09,4.9651059988298457e-08,1.9805133006685682e-12,0.03039626457331024,0.029055179718586087,0.0012038417549189626,0.002959714729415106,0.00042457585681106123,0.004990952240451773,0.0017275045644979245,0.00030403851006698763,0.00030541188346606496,8.81946579499253e-10,4.00188060357837e-07,4.6554064676741423e-10,6.572068636963406e-07,5.002571083753875e-10,5.065371029129807e-36,2.138554970579487e-36,5.8263403062217824e-39,6.846267234465415e-39,2.1083409670852072e-10,3.7247717385002784e-10,1.4207649376623266e-09,3.6642566243503436e-09,3.0649312553938897e-09 -छिल,shape,1.1925509999087302e-06,1.8161166294195815e-07,6.910379840594889e-10,1.8807639939679757e-09,4.961488204739197e-07,0.8991524770447866,3.1423603226604458e-12,1.9908349174785396e-05,2.8789435542004146e-07,0.08474646622288463,0.0007616135271634832,2.257835885854534e-05,0.312833890371052,1.4296029919439903e-06,0.9998348204374901,0.9999999975713623,0.9999998842873447,0.9999953992970693,0.9998469204800212,6.461692543951535e-09,2.1165184588015498e-05,0.002094220558560665,0.001251742998641295,0.00022817699584794953,3.383250710469061e-10,5.573419157014143e-08,0.08547974427387682,0.7868466763330284,0.4685546212533768,0.9984702915832626,0.021091215322122173,0.9978454756944061,0.0020347446181083564,0.9966580603225647,3.495600749302304e-08,3.1038472402897082e-06,1.2432600066531482e-06,2.1204261984318356e-06,5.457333957676756e-09,7.026765967521475e-09,9.59871047556965e-08,1.2218650182105368e-07,2.002418277395713e-09,5.22952502625091e-09,2.7780438017792116e-10,1.0732919198559452e-06,1.3135280944006958e-07,4.269329165054303e-07,1.3746778890852349e-05,2.462820051813039e-09,2.622110249558256e-09,1.2119137404780123e-09,2.2620005180060578e-08,5.643162765508285e-07,0.0001284034709504119,9.126253532109706e-08,1.1083139853522851e-07,3.0083319181341724e-07,3.56945339244824e-07,1.730230515883195e-07,8.498820995636432e-06,2.6190766085269408e-08,0.00012152040492620036,5.72433090476796e-05,0.0009129412896494649,0.0010117000001000648,0.8540895688278394,0.04722013315327328,0.2158897403503998,0.017660018476674776,0.11890952163889679,0.0001785894327287444,1.3652171561242776e-05,2.2104559352689506e-05,1.79958772611689e-05,1.920230486715101e-09,2.053835938911658e-13,7.473433108887964e-08,5.022331649013373e-12,3.785504784086884e-09 -छिल,object,3.915615837776696e-05,2.5168299177369002e-06,6.621559816169028e-08,2.0898214559053388e-05,0.00015420933945095667,0.9892610743730798,9.953538357608494e-07,0.018206637345425485,0.00010718084312876937,0.950940517353396,0.41684640854478666,0.39096304509753255,0.9991401826339713,0.005560718202810747,0.9999145074476983,0.9999999664259451,0.9999994315034978,0.9999890589536475,0.9998953023673958,1.1898926509000882e-08,4.07434560297584e-05,0.002303947465674529,0.001913433079311264,0.000438375682257774,4.2102162081903137e-10,5.661183365362169e-09,0.0020749772760528143,0.09309045445384505,0.06132492582493427,0.9994746412269297,0.6324350748659484,0.9990130875746782,0.21548381829140872,0.9979072768897418,1.030282707670105e-06,1.6834929306859813e-05,3.3757068243399146e-06,2.4952295469655766e-06,1.018709753858742e-07,4.9535079043747215e-08,0.007386252112507753,0.00465799440346897,0.00016820425976007275,0.0003143100167241887,8.39313204804308e-06,1.753620341691795e-07,4.043791856390017e-08,1.0663760689379666e-07,1.2778707944577536e-06,2.699552520450506e-09,2.8990144202655748e-09,1.5254146483184533e-09,1.214693210712651e-08,1.5169528171045068e-07,5.399093519325029e-05,2.8649014202660923e-07,8.621405354385153e-08,1.0973087895624286e-05,9.509646850343695e-06,1.1347977758122105e-05,0.00014322889142351881,2.208210724762592e-06,0.00043705437187495713,0.00023140171799245214,0.0018375130792746656,0.006983927664661236,0.2016054112783619,0.024023600751284867,0.02616192909849285,0.008024706087274737,0.017480852595806513,8.093802515780861e-06,4.105607942977542e-07,6.396117841588698e-07,4.890331855399464e-07,3.814282398959346e-07,1.3936401116064253e-09,8.464255104602377e-06,3.454266863375095e-08,2.0104687418173278e-07 -छोट,rgb,0.9853830108372419,0.9976495198396326,0.9951994021376991,0.997469042272143,0.9992961087903074,0.8983743906551087,0.9858324768294928,0.00036127014097399356,1.554980897489575e-05,9.418634921982657e-06,0.00022056465441529411,0.002538271259400054,0.0018730362643370486,0.0016732383852102102,0.005181637611192565,0.005864252203643053,0.006483143934594396,0.007075421258867217,0.006153515806972175,0.9996699029711777,0.9994332279092092,0.9994802532938301,0.9994445559986203,0.9980627940463517,9.747146466542989e-08,1.4900246455739044e-07,1.3629809801557276e-07,1.711959606531873e-07,2.859798764178168e-07,0.9856131797670271,0.9952266929007776,0.9898630006388689,0.989797135688272,0.988059085933089,0.983523157873322,1.022144578740561e-06,1.449725286044711e-06,7.315464029475757e-07,1.1244200891769032e-06,1.282051250176968e-06,0.024807839517462984,0.014433006683297384,0.019576388269566185,0.028711975445338545,0.018312005086942463,0.9998700596635163,0.9998560521021876,0.9998534218633779,0.9998257124771676,0.9999980222896245,0.9999986379638002,0.9999991310226495,0.9999972920803271,0.9999970031558333,0.9773977005394713,0.8452336468215444,0.9883180846987913,2.0690826140138206e-05,2.127833745539062e-05,6.212267641188174e-06,1.187079483197916e-05,1.0298080733796422e-05,0.0004997341771804775,0.00038854038156600903,0.000147965969618637,0.00014998153182192915,0.9999855042747355,0.9999394663319873,0.9999859082678916,0.9999285162679303,0.9999841636397284,0.00039306325559778813,0.0003270042158027127,0.00030234137502655687,0.00022560576552662343,0.9983083408766353,0.9985045148356411,0.9983486038976447,0.9947668675471689,0.9971694471632676 -छोट,shape,3.6450893565009226e-07,6.626180143618331e-07,0.003374116934696798,1.406850798632359e-06,0.0016391763350285195,1.5028270118704793e-09,0.003955400587045314,1.1088145410391955e-11,4.192833903550358e-14,1.7548455951307278e-08,1.0873418277399047e-11,7.088214609188542e-08,7.863615921354202e-09,0.00035660235289369476,0.9999952867463189,0.9311594561336115,0.9554540383396282,0.9999104130466469,0.0031164383253379883,0.11577261399504199,1.3882784881593038e-06,0.0030054166341517362,0.0006752725695627169,0.019217617224111153,0.010038458086680607,0.022112602786016296,5.064106959687774e-05,4.961522032922728e-05,0.0013420692762300377,0.9999233590770626,0.9990556962498718,0.9999795069572659,0.9975474679331506,0.2920008328178402,0.9694870826734867,0.0024912602785781735,0.014580692640931585,0.9680115511292284,0.07337449227907214,0.13139990902021167,3.7765266232073134e-14,6.58719937809872e-14,4.450085224855587e-15,1.0753319384550095e-15,2.9427030215870945e-13,0.9432637938237728,0.9960529584508246,0.997180802053579,0.9407252626215937,0.9999367090084151,0.9999912636283689,0.9998436094814347,0.9999328977454413,0.9994310651411625,0.00554848670454075,0.7783635328031451,0.22578590505212168,7.604191950207837e-06,3.673265080010392e-05,0.01363709464885002,0.21817346227244072,0.00031506034364989606,0.83746595035251,0.04230825289506654,0.016031934877555692,0.9870028865220537,0.7998034387929985,0.3804674339928558,0.02697768190706261,2.2926880172128287e-05,0.0004692269515557467,0.16158012873073108,0.12677150748101246,0.8902303491133738,0.038403455099810004,0.0010722781853203655,1.1640438588969131e-07,0.0038752771605706686,5.984247656090116e-06,0.10167753060658775 -छोट,object,0.8546806973341035,0.9670136744512794,0.9874914271228474,0.9879228498825877,0.9926233377402687,0.9530429737244354,0.9594662240679654,2.3588587388988372e-05,1.1027074086824892e-06,1.0625837520427588e-06,1.1152109410379178e-05,0.001855415261885209,0.001725704652401572,0.0045726506038667155,0.05850357119684454,0.04431776323261983,0.059236607883275894,0.06915834586702778,0.0344542467353544,0.9989023513765338,0.9894163741145805,0.9944271922778516,0.9937758160340755,0.9951230105445819,2.6727594528595592e-06,5.143472923289956e-06,2.441507342397425e-06,1.9125057487186647e-06,2.164018317616184e-06,0.9915408236413181,0.9926677345157939,0.9932820460402696,0.9834662937720557,0.9911399590439605,0.9946508381432411,7.306100863171039e-06,1.0332309040665817e-05,1.0475636022505442e-05,3.429085537132902e-05,1.3134333821483522e-05,0.006292194828076038,0.0024386411958502874,0.0029737758256286623,0.00852264950330618,0.0035624270645115957,0.999827502782192,0.9998751879740666,0.9998468207017452,0.999696536375911,0.9999969427506795,0.9999975852339518,0.9999972794978171,0.9999894977867773,0.9999821218621358,0.9293763089189591,0.911258622842061,0.9847744413331221,1.810762372151597e-05,2.5924016913599405e-05,8.997660156792786e-06,2.0095935453379624e-05,2.256648978486212e-05,0.003058802030970027,0.001419467127081632,0.00030287219800998843,0.0013299372605196874,0.9999250983590758,0.9997930167405388,0.9999184570444257,0.9992264876026424,0.9997831090438596,0.0015265335765361787,0.0006893850521782245,0.0017058744624014607,0.0004973473864586405,0.9985339275393159,0.9945580268227946,0.9981880859339879,0.9971042723988522,0.998399840051236 -जा,rgb,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9168261006561322,0.9293882281799276,0.9379182936527037,0.9718694368026797,0.9999988219844099,0.9982299030272954,0.5269097382145375,0.99999878802642,0.9999980792343394,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.021126703038378193,0.9999983351056058,0.0065192517941545175,0.9999996960413633,0.011815258560018117,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -जा,shape,0.9999999985144039,0.999999900922953,0.999747667383879,0.9999997753936045,0.9999993626461642,0.9999999933154906,0.9999999912514191,0.9999793618688724,0.9999992152151184,0.9999194215126344,0.999612440851586,0.9999999821328606,0.9999999871785091,0.9999999985594115,0.9999999356583736,0.9999999993929085,0.9999999986838852,0.9999999873953561,0.9999999983575372,0.8332127750686122,0.036326215166218145,0.8288617022940666,0.7591133510364878,0.9995299369112671,0.9272190197167327,0.5927705346810723,0.9999130732214043,0.9999470195314859,0.9999791328241785,0.9999999964468147,0.9999998830458606,0.9999999756495977,0.9999056753104822,0.999999992637882,0.9998867794329214,0.9999999981961898,0.9999999952976351,0.9999952565645157,0.9999981837904869,0.9999954218317222,0.9999838825373991,0.9999421130880086,0.9999948683607824,0.999999328778596,0.9999976696869006,0.9999998275059754,0.9999999761116841,0.9999999619061489,0.9999999735507779,0.9999997481229473,0.9999952411382492,0.9998331172256997,0.9999982386766585,0.9999993369063322,0.9999999958470849,0.999999995797471,0.9999999510109185,0.999994011960486,0.9999998504123564,0.9999087625927976,0.9999615575652787,0.9999985745709598,0.9999999997437921,0.9999999999228004,0.9999999999074793,0.9999999991805828,0.9999999707192206,0.9999999958375188,0.9971934873993732,0.9998995215110806,0.9999486652592232,0.9999999997679927,0.9999999997468392,0.9999999999669009,0.9999999976172174,0.9999999919845198,0.9967363326693994,0.9999998356276903,0.9998626364963697,0.999999967801564 -जा,object,0.9999999999560834,0.9999999999057556,0.9999999532914281,0.9999999996468742,0.9999999985175545,0.9999952955787768,0.9999999845649197,0.9999608519270855,0.9999994476486971,0.9999555989049121,0.9996514104003157,0.9999999145798999,0.9999999849992964,0.9999999994737674,0.9999999999922928,0.9999999999991991,0.9999999999988036,0.9999999999990341,0.9999999999871703,0.9999961263543832,0.9940411894401568,0.9999652156760547,0.9998711155639831,0.9999999950374496,0.9999999999999805,0.9999999999999429,0.9999999999999951,0.9999999999999956,0.9999999999999993,0.999999999901092,0.9999999848643768,0.9999999991796098,0.9999989236631436,0.9999999997851798,0.999999983553364,0.9999963689330064,0.9999929993591085,0.999950084288153,0.9999933300547472,0.9999200141021275,0.9999992807584599,0.9999994828867332,0.9999999597827142,0.9999992912112617,0.9999982461972258,0.9999916274344386,0.9999982192672638,0.9999977562117546,0.9999951027819598,0.999999801491673,0.9999982442535635,0.9998908194258864,0.999998590665625,0.9999973601365155,0.9999997132006256,0.9999999864268956,0.9999981776914267,0.9999999988108832,0.999999999860941,0.9999999985135737,0.9999999952863843,0.9999999978192482,0.9999999999992952,0.9999999999983016,0.999999999998366,0.9999999999937303,0.9997567891891123,0.9999952395753785,0.8764293760279457,0.9863133484692803,0.9685699730322289,0.9999985371657245,0.9999996601288679,0.9999998598827909,0.9999978856954735,0.999999997527999,0.9999998197539527,0.9999999998651463,0.9999999991040347,0.9999999999617382 -जो,rgb,0.8270814731076392,0.8716508070265587,0.8843695172259562,0.9437110035291559,0.9481112396378613,0.8664242904582043,0.8253700409472426,0.4234940976790248,0.09694372574806236,0.07082785747154667,0.367358725500248,0.4314911058519126,0.353873518965783,0.34040861733402383,0.7443103638118372,0.7540884236029608,0.7617178946471708,0.7681532083598378,0.7566407496702383,0.9162437913293954,0.9242244440632316,0.9295052241135265,0.9485052153051925,0.946310780419566,2.904192892142099e-08,4.795779535007292e-08,5.110294925492389e-08,7.59853041739163e-08,6.54662116080818e-07,0.9748015013061694,0.9766063640785962,0.9755841958515887,0.9757044155581308,0.9754681148580676,0.9749063567854876,2.4220950674780255e-10,2.424681949338225e-10,1.2301770578211286e-10,1.725677750364957e-10,1.0606002075549037e-10,0.8533100745576737,0.8228527116241424,0.8396181779200321,0.8580449317221602,0.8286696659538125,0.035973497523420654,0.027942983776604036,0.02761947937033952,0.020774940045987126,0.8904418339943861,0.8582660884759121,0.8222153651765017,0.8884110537447509,0.8851614990644863,0.019882481922455432,0.021637702087917623,0.006554694088284114,0.07215050987289769,0.0576593465080016,0.01969211776827481,0.02203210207091454,0.01075964426558584,0.026455754102743378,0.019228326813015714,0.01064703518152932,0.010677820317017812,0.40253049525903695,0.5867538829766862,0.36697948421897286,0.5946531642993768,0.3543560294717469,2.4805156339583084e-09,2.0017701572760877e-09,6.302123288874924e-10,6.022842378520544e-10,0.914966070987905,0.9209845098965731,0.9291114085805888,0.9208915020635088,0.9278125120897681 -जो,shape,0.9696254225274248,0.030992762084123323,0.7881712639103801,0.9999999272685427,0.999999602795088,0.9999903458353067,0.9992332583195281,0.9263918866782671,0.0011888561408582503,0.999956231065742,0.9999318073295359,0.9998794200071649,0.9999991983048985,0.829085790699072,0.9999291527777524,0.9999456462057448,0.9999543618252826,0.9998105999918845,0.999629149268826,0.5584622875388371,0.9995882499286058,0.9999472372529166,0.9998658442022752,0.9998882642660927,0.9760501305574868,0.004345066441833206,0.99902869940191,0.999996952955193,0.9999878429402812,0.999997294038116,0.9999962512100755,0.9999988057073254,0.9990482231682674,0.9999914656120035,0.23959300945753223,0.8386096549280707,0.5010569149794619,0.004137379999680638,0.9760282527995257,0.01299831257906702,0.9999999621050136,0.9999990499605094,0.9999975618855478,0.9999761774857682,0.9999921211448969,0.0012118148531353237,0.0002862441881881837,0.0004079272203973267,0.000413942047741895,0.0070579016897466705,0.02075752475435875,0.5300402089263777,0.02151467066999449,0.21602607192142845,0.04825582880712186,0.0026001898099102423,0.0040173061701383,0.0076786892080234126,0.10304793413034388,0.9248646664231077,0.7393089849434739,0.960591705354144,0.0008836690887146073,9.287918495800805e-05,9.32446048507488e-06,0.00032708943898962777,0.12823967315264748,0.9975826761743285,0.9999769703686798,0.9999828156001158,0.9999004773688812,2.6063830167519335e-06,3.6011930493284497e-06,4.274515437932621e-05,6.949769243002192e-05,0.991783030927414,0.9999425121432476,0.998955135470597,0.9997964904406643,0.735187963026738 -जो,object,0.9995941539032925,0.998533436626032,0.9961278980864082,0.9999999969333488,0.9999999992878457,0.9998155753683905,0.9991231867815272,0.1498030772813819,0.00022552634434010662,0.7566331139179812,0.8794819709738807,0.9999608003802062,0.9999924907259904,0.045150366530287894,0.999975401642971,0.9999727648539182,0.9999778912647537,0.9998606598056461,0.9997172882929707,0.9929011519230609,0.9999094899965273,0.9999867285543055,0.9999135953488055,0.9999994750686203,0.9999609914411907,0.9957145641092212,0.9999997867366814,0.9999999997381446,0.9999999994974289,0.9999998760893152,0.9999998127795158,0.999999843749918,0.9999951307354945,0.9999989093733814,0.24667703738120714,2.535042548780236e-10,7.241568395300281e-11,4.4839943558651225e-10,7.589069265164751e-08,9.700970463912738e-11,0.9999996717403191,0.9999956258643494,0.9999970192358786,0.9999602616315694,0.9969560657056418,2.670359645172418e-05,8.009804171153627e-06,8.036924231312975e-06,5.000699143052398e-06,0.004982449073318767,0.006226983282728342,0.023887980260195188,0.017475287816134093,0.03782962791922536,0.0002285040280131658,1.64881315427025e-05,7.012364459082859e-06,1.4854216835330546e-05,6.889293434946125e-05,0.001530021306801073,0.00028461859953123097,0.00038311764988794395,3.179635174297099e-05,0.00018489233875539695,1.8722773054156185e-06,9.387057032492629e-06,0.029075390548062695,0.8709315501094939,0.8675116772518837,0.898855763033434,0.4694588426395599,6.01352294487006e-12,5.789648928462983e-12,6.501115199771134e-11,1.8800517393789803e-11,0.9999396436384023,0.9999999991177,0.9999731128930229,0.9999999990215114,0.9978769857165146 -टमाटर,rgb,4.9306973095604636e-08,2.9349140618646724e-08,5.877290557796022e-08,2.8051438185177334e-07,1.8842617036226567e-07,0.5718165327071972,0.5624712646858671,0.1024547488415952,0.5684014660939072,0.6641023819149268,0.3239693329256741,0.9825823173792313,0.9912617906164972,0.991925979672977,0.16536548756982875,0.166070042426079,0.1664673928976185,0.16670353496720772,0.18089152414231718,3.353599906319528e-08,5.4578015698914727e-08,6.459676089718239e-08,1.7563951450817277e-07,2.787488098506473e-07,8.074184276494729e-07,6.573306979165145e-07,7.760925808309307e-07,7.661898321100018e-07,2.0822216862547996e-06,0.00010428292978931282,7.575708401275492e-05,9.866655170541468e-05,0.0001201474712323414,0.00014024214234897238,0.00021656597951477132,0.9999999999987752,0.9999999999987266,0.9999999999992168,0.9999999999989939,0.9999999999992364,0.04722575119077448,0.06646922462767738,0.06765038985238098,0.06775659170592055,0.1436399813636866,0.981413231145724,0.9869601842133533,0.9873039281111912,0.9917934741181076,6.836352168732818e-05,0.00010012677664809125,0.00010733813826538072,0.00013167988116087452,0.00017541512941943722,0.9996970347005614,0.9998818256827647,0.9998554916421387,0.995261096376819,0.9981524081008335,0.9996263295367043,0.9997785761890454,0.9999527674044085,0.9999646704343853,0.999977546637692,0.9999885598723033,0.9999885530344121,0.16447742992483483,0.19330201167260536,0.1933035017203198,0.20885987118484997,0.2258030844194266,0.999999999983668,0.9999999999863425,0.9999999999930897,0.9999999999938238,6.811718686264122e-08,7.752596095750202e-08,1.1046996108063882e-07,1.6585903863263677e-07,1.4354110893914137e-07 -टमाटर,shape,2.997969589167488e-07,2.956089023778714e-05,6.898061382565651e-10,1.4120557186473559e-05,0.0003429145956443661,2.0134746975832077e-09,0.0033942641600091254,2.6580512616122316e-13,2.0838897484678892e-12,4.8736309285907304e-14,6.138592228357183e-13,1.7689839398857428e-05,1.8557197386518182e-06,1.5579540682422976e-06,1.939874793295038e-05,1.607824225646447e-05,8.176305801646024e-06,3.660195640274767e-05,0.0001167260857764823,5.996068703003808e-06,1.8555645784207194e-08,7.59882530184083e-07,5.4680715806745e-07,0.008720870513758599,3.2332812910686243e-07,9.365249058894497e-05,9.837811080840223e-05,4.0061674095802386e-05,0.002280473953654869,7.449906514211844e-05,1.120023532322776e-06,9.058382242867574e-06,1.4887469064235702e-06,1.6320495103778631e-06,0.00014354915564867874,0.00041994787568244067,0.00024323837298637494,0.0006595129912797085,1.635437395795274e-05,0.00041725048315818217,2.550948584430328e-07,2.5883503992780496e-07,2.697116090671841e-06,5.358419104987184e-07,8.737377665281912e-11,0.9997526889298167,0.9998909505038408,0.9999642197152558,0.9999250308455646,0.026750072115886286,0.022950550008069788,0.00042792180010047556,0.004933408955218119,0.0029001201698965425,0.9999865085181344,0.9998871448561083,0.9999261607583055,1.0755903175720235e-05,7.427422212908712e-06,1.455337115434157e-05,0.00019292975234613536,4.253501641528996e-06,0.9999993474002633,0.9999974455355553,0.9999995366069165,0.9998453855216167,0.9015568349414752,0.02987413891671763,0.0005607986727831957,0.00040600886719170296,0.002811033552625551,0.9999947125017524,0.999999557891157,0.9999988853361682,0.9999984752384886,5.211288554267783e-09,3.0710644145076426e-07,5.731360996629772e-07,2.0994411820506802e-07,9.200335985582929e-06 -टमाटर,object,7.691604945766155e-08,7.983189696262309e-07,2.563837967103123e-08,7.769173397236027e-06,1.0915812631325456e-05,0.01285979896974087,0.2619064752127106,3.867230775570089e-06,4.306199151710873e-05,2.5056719508453575e-05,3.338204007398792e-05,0.21167779125023395,0.12947329906065436,0.171573826678494,0.0018837979146386363,0.008314033358196088,0.005815961270633899,0.008004897607199073,0.12671499894088503,6.151922108763903e-07,1.7007576183449e-07,7.833138000231074e-07,1.2368474461700278e-06,9.755921941494985e-05,1.8747963298695093e-07,1.7818592986450846e-06,1.559502026849449e-05,1.974329741219778e-05,0.00010634294605881635,4.5809586102101085e-05,2.4135274014250274e-05,3.514020151235093e-05,5.58977050571563e-05,0.0002070166342501808,0.00026916762118486766,0.9999993453578688,0.9999993907322149,0.999999752226374,0.9999993646008742,0.999999843748675,0.00615513358680634,0.004767454770934425,0.009720186744233406,0.0022001991815441494,0.00038873092032082465,0.9989022122284877,0.9992655074138806,0.999175953260522,0.9994228608378154,0.001175574333215637,0.0011170544834552191,0.0003891020388044842,0.0009458178653619432,0.001268560512308674,0.999974361000442,0.9999599488493119,0.999958279872879,0.13190739533008317,0.23635519507022698,0.5956031791819306,0.8254705254087805,0.7824902107522743,0.9999833055808877,0.9999922532797277,0.999991998733389,0.9999350853862684,0.8706026208363505,0.6630337873328467,0.36080041177397637,0.3148507904340859,0.43066405846927996,0.9999999968840974,0.9999999973759857,0.9999999990313875,0.9999999987731445,8.105435656699943e-08,1.5311356648070734e-06,6.433051406061848e-07,1.6844637661435373e-06,1.7537472445629435e-06 -टुकड़,rgb,1.9609347166159218e-07,2.165577588392471e-06,1.292633686035227e-06,1.3812359465326616e-05,7.318117515137638e-05,0.07222198335755048,0.6869924686454404,9.966596823437815e-10,9.165653772775306e-11,6.407290818168551e-11,1.8323908971655504e-09,8.14233465279205e-06,1.0270914221616315e-05,9.338330270302647e-06,9.507723744659373e-08,1.1558245182458275e-07,1.3527842937626805e-07,1.5506635941710642e-07,1.3745410978950676e-07,5.2992712585287526e-05,3.4539367707727184e-05,4.591158802451538e-05,0.00010006999349628052,2.092854511029734e-05,5.558957702119767e-19,8.252160049985769e-19,8.271784782609229e-19,1.0958318983555271e-18,4.3357336274760556e-18,0.00019352865448672588,0.0008432048910374592,0.0003226798611247683,0.0003844353202342384,0.00034531769757875717,0.00030966074841116167,0.870085463355471,0.9188121714576116,0.8712742028767171,0.909187516132683,0.9461223208306153,2.883360476525671e-07,1.7432881479250712e-07,2.857811514273355e-07,5.23791907151939e-07,5.749411863297406e-07,0.9999971343307004,0.9999977107509885,0.9999977078440172,0.9999981102281877,0.996515129583928,0.9987346735701768,0.9994522759236337,0.9969071003732968,0.9972413740239984,0.9997888139881225,0.9975576126068526,0.9999710468696298,1.8799329969381954e-08,5.0303685971649414e-08,3.8842131150995425e-08,1.7685198915708204e-07,6.956090934249326e-07,0.0003973549797498237,0.0004324991229685441,0.0001937799330031432,0.00019782238422437715,0.9999712923333227,0.9997279722618406,0.9999778507648006,0.9996738362512083,0.9999780408453937,0.9998137872825936,0.9997968668490448,0.9999023110930993,0.999860542878902,7.503687530117255e-06,1.019306003979774e-05,1.1892524423218105e-05,2.7809175586304473e-06,6.420175878636918e-06 -टुकड़,shape,0.030419020098038596,0.7087737843127323,0.9742639083660196,0.6775943371887843,0.748578430180123,0.0005949764677515718,0.44724001430919946,1.4789227192740245e-09,3.3615829724885957e-09,1.135938529127554e-07,1.2568778758323815e-06,5.381472391152374e-07,9.947199652437994e-06,0.014949757741561884,0.0013201069213790242,4.311759028902347e-05,0.00010997114789665934,0.053579434469097215,0.3240007876328565,0.9999984353341592,0.988649746697395,0.9981046356449713,0.997884252882213,0.9999980585107915,0.9999761494126338,0.9998214464955245,0.9872667579634596,0.9244058446083929,0.9995831590624765,0.002103453745923532,0.016032173657145158,0.020133786091094723,0.002361432491160158,0.04609538031002679,0.9999954103753699,0.9999945102600303,0.9999928921239101,0.9241990069983346,0.9964933729042115,0.9998929607343432,3.613701976843092e-07,3.520442974197251e-05,0.0006157878225149224,0.00028542304656520176,7.020955298116552e-05,0.9999996363551872,0.9999994977519033,0.9999996151824273,0.999998515071817,0.9999999434494772,0.999999978696217,0.9999999887955747,0.9999995346830866,0.9999994697154687,0.999955492634926,0.9999965822779278,0.9999985592907499,0.9990324972764048,0.9993938438836711,0.9999989948446217,0.9998727004975221,0.999984308992255,0.9999890146858487,0.9997846696347408,0.9998807860039813,0.9997309872566763,0.9997787541330735,0.9998174431733525,0.9999536267348752,0.9998647254721266,0.9997922468691365,0.9997577853043116,0.9997588556525475,0.9997978155870912,0.9999863563006799,0.8694477482706899,0.9880971906854478,0.9997580628167415,0.9879474992876829,0.9999883496996439 -टुकड़,object,0.00015226233449935564,0.0008896333553439231,0.0008016656066608762,0.0017123775258645162,0.004150897716766604,0.011619483725974565,0.7554727928541901,5.090586565818695e-08,4.7751787657541736e-08,1.3690012923796834e-08,1.7225451133476863e-07,2.1726083322096876e-06,7.048281301975529e-06,0.0002938874943767461,1.0437252555933443e-06,4.029004061325813e-07,5.832457245745789e-07,4.78553392836505e-06,1.7732348437229728e-05,0.09196388451942472,0.005627335897848567,0.01213374370445365,0.024496459335491626,0.03564194627134681,4.802978106527531e-11,5.899547265867838e-11,5.114322999669379e-12,2.9371379672148998e-12,3.580804044232039e-11,0.0002910608125526497,0.0012747731059973874,0.0007110190576006651,0.0002860629751333524,0.0008389758525705142,0.24753863028961437,0.9994725115093077,0.9996434550559221,0.9666472228452802,0.9940368400398539,0.998780576670641,7.136105982617152e-07,1.4387453590032511e-06,6.79760537528096e-06,1.56337200298964e-05,2.008952184014923e-05,0.9999990176234884,0.9999991624908084,0.9999992910321717,0.9999989601776108,0.999960387725798,0.9999830284441346,0.9999922207236511,0.9999236436545887,0.9999286593119595,0.9999622707246882,0.999903091457118,0.9999961532640639,0.00039218538311058706,0.000749519154251906,0.003027415921297921,0.0022484675170949798,0.014154990084222585,0.3634202958516139,0.2060081853318316,0.10958169317713926,0.12267755044612276,0.9999401913813718,0.9998800066845551,0.9999693709353535,0.9998505257774748,0.9999745389456544,0.9999634368520279,0.9999705644122234,0.9999870997274135,0.9999884282277706,0.0008175514984045054,0.0013462925922700932,0.012939286486171682,0.00032970352056911704,0.01591496173796873 -तैयार,rgb,1.2589192347509506e-32,1.801535463350086e-38,3.241100044970762e-36,2.7514317182171607e-38,2.4874899101327252e-42,1.916443925444823e-25,7.697019166859708e-32,0.9999999293441107,1.0,1.0,0.9999999984560477,0.9583888381783282,0.9961283467962915,0.9983383327240679,0.03703991962582766,0.015138375483602015,0.007251410835044705,0.003804111944909603,0.01079806697703897,1.0737354752972506e-44,5.3382091892985525e-43,2.8242585668332287e-43,4.462014187256865e-43,3.910417245871486e-39,1.0,1.0,1.0,1.0,1.0,1.1603742971402754e-32,3.5794205236984035e-36,8.861943801707464e-34,9.489784321895093e-34,3.0510983913979982e-33,3.407433924072819e-32,1.0,1.0,1.0,1.0,1.0,2.6776909965276476e-07,1.6381470784128456e-05,1.675019262444561e-06,9.35379886176037e-08,3.123268571107672e-06,1.76120801834891e-45,4.2872664033252054e-45,4.924868291193982e-45,2.0413835830178488e-44,2.989079655950277e-60,2.413545842308106e-61,1.0715727771249114e-62,3.1323325377353458e-59,6.817497449674136e-59,5.937614814366472e-29,1.8920649676176e-22,8.279802808184742e-31,1.0,1.0,1.0,1.0,1.0,0.999999958249604,0.9999999943723197,0.9999999999961413,0.999999999995741,3.718697319862051e-53,8.212353493733972e-49,3.3079815790276e-53,2.713286702588875e-48,8.029843417313225e-53,0.9999999999985545,0.9999999999996563,0.9999999999998892,0.9999999999999869,1.5300561178592542e-39,6.176858118147434e-40,1.254001845208921e-39,5.739959429040365e-36,6.369865289456639e-38 -तैयार,shape,0.9999979391191964,0.9999882894054903,0.6124040722949922,0.15462627149456773,0.01392674314366365,8.246031164654107e-05,0.8491162761720498,0.9999998523502645,0.9999999867312037,0.9992644057772574,0.9994356653031146,0.9998705516933979,0.999678073360723,0.9998585278403388,1.2118147676079247e-05,0.00010878373861328962,8.013044291546066e-05,2.8307321602863472e-05,1.8890156975702894e-05,0.1171927775473043,0.0417615213535953,0.22742659559658873,0.15078681955488737,0.00045946145809281616,0.036329835746052724,0.01135272254307377,8.69960081805604e-06,0.00024311185893628422,0.00213750192535596,0.00047839354495931435,0.00019978046332217727,5.475461217533081e-05,0.00032351217166767257,5.467786403263297e-05,0.0005024606398217255,0.006180583006180559,0.0016713742432369675,0.0005066556313055487,9.145336333840138e-05,1.814021692455906e-05,0.6375977711573758,0.847495917501128,0.9652599063559776,0.9733587795944122,0.9971562413304982,0.00010414500982659876,8.821458045563845e-05,0.0006185907872812235,0.0008881757279062581,0.33676546926417683,0.11614363173870641,0.319663349600902,0.8229280266533465,0.8335587404317172,0.01962346039931555,0.0001384092937024849,0.00048325971425599413,0.9996002916487569,0.9999509474930712,0.9996118661963098,0.9992806015890767,0.9992955608344796,0.0043226900585854235,0.024218708036091916,0.09998333658665873,0.00775602305246004,0.0016026921403591583,0.0009502975654910028,1.2762215487617693e-05,0.00017844700492674392,0.0002822841439177802,0.055172785275849276,0.06745378793759706,0.008647267137486573,0.07751807563060034,0.1614411615145696,0.15446133449547703,0.005493898285605211,0.34291339774524326,0.002583772277295255 -तैयार,object,0.992792513703629,0.6558154481142175,0.3985575180972407,0.005020796635210104,2.8523722698047698e-05,6.920871400444256e-06,0.08374567038737213,0.9999998923416304,0.9999999907648603,0.9999995312494155,0.9999979685193343,0.9998727054860362,0.9997612463220126,0.9999335788217228,4.535598165438972e-05,6.146146929595762e-05,6.699674013790606e-05,4.167403849453494e-05,0.0002385856010006907,0.003991505395340549,0.00861841026444423,0.004148753828992711,0.005062893559806321,8.853555294531252e-05,0.9999850185249514,0.9998023506473963,0.9110603222426871,0.9659875486289378,0.9929195156669964,8.935330394578244e-07,1.325857567330499e-06,1.4052097286653463e-07,2.6840060152173682e-05,2.8399892100920095e-07,0.00641664923707838,0.9990529542960963,0.9980955389537496,0.36062976352371084,0.17185679463865028,0.7723975440195696,0.954104855735371,0.9822394719154631,0.9935551757787856,0.99752576671124,0.9990384091080512,9.513821565881579e-07,9.319738459437713e-07,3.2393263137915257e-06,2.787764338473292e-06,2.3415263255391423e-05,1.3158100186397856e-05,1.9561561836699802e-05,4.7773356990074056e-05,3.284460923674504e-05,0.0002982944487518628,0.00010552816001284227,2.8072934639814556e-05,0.9999434924230328,0.999946742682612,0.999969311982724,0.9998529861626554,0.9998394983957768,0.31223673182301354,0.7101334116213988,0.8963239013579651,0.8699527936656761,3.8081517148714834e-07,1.8936269725484938e-07,5.7248282130315637e-08,1.2436004853011545e-06,5.448470938655487e-07,0.6720680648814925,0.16783773986742628,0.1766329849469142,0.4744904055975997,0.045261760720040824,0.0023177140018809084,0.011906648315725996,0.012192137585945126,0.005366873304103802 -त्रिकोण,rgb,0.9709881937146961,0.9780772510325383,0.9685639996501857,0.9386318712572551,0.9531358622381463,0.14604309296277243,0.22071468977519443,0.14950456108199106,0.11479694160561088,0.11116961829225137,0.10793815543944746,0.04049310477434499,0.037037986693645816,0.03656990558235721,0.1094706645446244,0.10896794808170128,0.10862506977974022,0.10836960879269066,0.10633730735200722,0.9794529240549993,0.9730448328936944,0.9711619783703928,0.9555528280802091,0.9399403122483325,0.9997371100588357,0.9997071725518112,0.9996791750433786,0.999629032086175,0.9987580378137966,0.5947269368128235,0.6509173658754589,0.6089743575905252,0.5949214357926592,0.5791127855862694,0.5383722797863333,0.32732140889246386,0.34264962312920305,0.358437334762059,0.35440955815283687,0.39516233682312185,0.14561736643680986,0.1350466694364536,0.1338991119888613,0.13358864712274837,0.11148213838890805,0.6825365100953928,0.6836181517402304,0.6825442412265371,0.679303833221836,0.9384744633155042,0.9436885462704483,0.9526420541177362,0.9240305928113384,0.9180690624648087,0.2746767876730977,0.16505218851975648,0.3688813517489256,0.03684173005124642,0.031966089367705786,0.02821104274945975,0.025783117679837923,0.023083079935655067,0.026349377554455773,0.025963075292185014,0.024309360542706517,0.024334334100564015,0.7915906427670875,0.6658330757248747,0.7949471875031123,0.6500113636076803,0.7868877748055747,0.47581477379164794,0.48085967758121473,0.5656488000599237,0.5510960872480622,0.9677173629929271,0.9660100609522533,0.9599226156119215,0.9490608839768894,0.9535448988942697 -त्रिकोण,shape,0.01339233833226951,0.003147670715200453,0.9998157787836303,0.00030341287749315754,1.2413191862734873e-06,0.9921681590785101,0.10196278618535448,5.691399030833583e-05,1.888770665938589e-06,3.0307948300807536e-07,2.290124545673243e-06,0.012970593512815466,0.009544541152546666,0.9883510517788427,4.9000623379691336e-06,3.1415284092862147e-05,8.419677494753757e-05,0.0001351193238587072,3.3582224377868104e-06,0.00915676883069386,2.4187585073348387e-07,6.005447664921017e-09,4.680240588804223e-09,9.453005119730583e-05,0.6480235669681562,0.0001146964477514566,4.227604639808156e-08,2.5250670450332822e-08,2.8436503262529076e-07,2.5750233445629558e-06,0.0001067355721033956,4.3772511065416605e-06,8.232086509877287e-06,0.01919709599171006,0.9618416533983644,0.9984465673181248,0.99586267011361,0.06159678344551014,0.9045301194504297,0.9783242897554927,4.0779140301517204e-07,2.337497036873153e-05,0.00022503897874033308,0.000152478394231142,0.0013568992499952907,0.0005397601144773187,7.884061913205043e-05,1.5896848661285623e-05,8.010465423216485e-06,0.006682931205808777,0.006401392557353074,0.005625934587656799,0.0007752577734768398,4.890453984744491e-05,1.9612176161592958e-07,5.600591240346581e-05,1.3569570816233448e-05,5.127364988288187e-06,3.8613698920094927e-05,0.0010766161004931926,1.9244441992393208e-06,8.32060460055893e-05,6.207693995651652e-08,2.5584006197674705e-07,2.3160098916041413e-09,5.731273819149306e-07,6.766379065764625e-09,2.2322040346844412e-07,0.000237910503794035,1.101424561875229e-06,3.28594119253773e-08,1.5774970999157008e-08,3.2776665194535787e-09,2.693337480436783e-07,6.110932680715012e-07,0.9999774081902678,0.9999743459807566,0.9999611700036684,0.9999479487440915,0.9999030063728893 -त्रिकोण,object,0.005078330598215522,0.002501797043109415,0.9998512200397252,0.00047733590573705237,2.8820427401348185e-07,0.3813294775642942,0.11667083216729818,1.2165706787732315e-05,6.430346674084248e-07,7.094277107278195e-08,3.5234805685380576e-07,0.01300357510775922,0.004562167989968811,0.9947232198429432,3.2625580277805623e-06,7.779958505397868e-06,2.566757162744365e-05,4.7436699089328416e-05,1.2199784926032384e-07,0.003168176456596265,1.3981521508036797e-07,6.300592105226569e-09,3.2646046913752056e-09,2.4221318988844356e-05,0.9962648013600995,0.009458013815364383,1.602454014646755e-06,6.795023207631302e-07,6.543956758021691e-06,1.0279574069578223e-06,1.9293918544238358e-05,1.0396863422258967e-06,2.887480017791271e-06,0.0008873128953902753,0.9468734414818251,0.9999356948645372,0.9998213425134022,0.2732560880418999,0.9780881872927285,0.9896465207427962,1.9238386457617698e-07,7.434622896796934e-06,8.226998709314036e-05,4.887602066651832e-05,0.000407999845184508,0.0002353600554920581,4.912923996131465e-05,1.3598106413095003e-05,6.208328719148291e-06,0.0028445347440033395,0.0029728964413072274,0.002163427872998222,0.00032415818241391515,1.5315001964389804e-05,8.927784342504095e-08,2.639747996470535e-05,6.584620973667968e-06,7.250146762659985e-06,3.7444606379108034e-05,0.0011745550676058535,1.1495637630429466e-06,8.40384393439585e-05,1.5250417164550828e-07,2.5514256209351315e-07,6.2230713576841134e-09,1.0292655724047433e-06,1.1268240442013267e-09,2.0088304759580496e-08,1.0997063309833121e-05,1.1078045913635178e-07,8.131739482630925e-09,2.420720741638551e-07,5.12352216051437e-08,3.4805745202752638e-06,8.940158168030711e-06,0.9999708752872271,0.9999146421495423,0.9999707028041328,0.9999257293412401,0.9999152701558989 -त्रिकोणीय,rgb,0.13622299819808414,0.25896446640558773,0.14490467253444284,0.06511322206414913,0.12927086576703334,0.0010220455856226793,0.005354364576435521,5.110756075243554e-05,4.929852527583552e-05,5.106936793189444e-05,3.7940192190571576e-05,4.6894050077844e-05,5.0664456546750425e-05,5.007959660789945e-05,4.269175752965424e-05,4.315417438401265e-05,4.357834174523387e-05,4.3983758924718515e-05,4.280578389071796e-05,0.38570195526019124,0.26349699956489175,0.24883370110656763,0.14699349091518737,0.0716903777393737,0.9998014999242819,0.9997268946928396,0.9996775415756118,0.9995432963007433,0.9941999238139718,0.0025996510089853378,0.004969627849658081,0.003135094744996171,0.0029838144829242652,0.002658119593449063,0.002055193023576779,0.9994966190683623,0.9995960668894577,0.9997075406254489,0.9996750721310658,0.9998263299029341,6.313218284235672e-05,5.5323620835850345e-05,5.7469207431282656e-05,6.114294091866622e-05,5.142059232256126e-05,0.9475085032481817,0.9561030384885152,0.9560324075227346,0.962525227594255,0.8189109388377125,0.8833411868779989,0.9320384643927981,0.7705392660487529,0.7562181697317659,0.4137697682836781,0.1291380187204717,0.7861504481667635,3.1745810592454e-05,3.595601346163637e-05,4.871859223287196e-05,5.6587327827999236e-05,9.367789323046196e-05,0.0003062896442010969,0.00035901124878815903,0.0003647637528755426,0.0003665139484269755,0.8552607577638639,0.4854908426783841,0.874368653950319,0.4453529678131086,0.8695696690728422,0.9998604131726134,0.9998757830089932,0.9999641926130544,0.9999585840907679,0.16985415283046387,0.16303505520229586,0.12872619472879693,0.07212875788566371,0.09358173253675657 -त्रिकोणीय,shape,5.59280217300203e-05,0.00020040633479010894,0.9964842705775073,0.0006305756959887189,6.765812324795757e-07,0.9905450522931286,0.04024985678586244,3.161722219269765e-06,1.1312208756956717e-07,2.135858395257386e-08,4.794948751593494e-07,0.008767711196129162,0.0037479663705797446,0.948260766023829,4.007676293771691e-06,3.558505893291989e-05,9.040434527240096e-05,0.00015857660243917638,1.6274749561771918e-05,0.00044349996423668624,3.904906015784827e-08,1.5509827286013446e-09,1.2579742978361229e-09,0.0002621395718305553,0.04384015980779795,3.053787764833867e-05,2.3332562218930648e-07,1.2830192607997032e-07,1.0772533665065522e-06,1.915495162765371e-06,5.811637708514241e-05,3.321983216660565e-06,4.8860347563980595e-06,0.03219596873931964,0.8035913588591876,0.9960466921157345,0.9892253286941461,0.036318592991553475,0.922687044121207,0.9850901737581047,3.2344643147346364e-06,0.00014511540831668642,0.0005778768986483032,0.0004786603701307322,0.0007574389758170972,0.0004252210790937584,7.71466224708273e-05,1.0957684717949568e-05,5.290553954745934e-06,0.00022963459678626577,0.0001481528845551898,0.00011440482348811056,2.161933151825828e-05,2.0997686049685447e-06,3.351944673521073e-07,5.816912748354215e-05,1.701939197675304e-05,3.0893715106976306e-07,1.7029603395132588e-06,6.019208253612543e-05,2.7049457783734635e-07,5.638806023934896e-06,5.0135344394298955e-08,3.1323621561359056e-07,1.8662408639952043e-09,4.4700744133873955e-07,8.953040206468048e-09,7.794002913366508e-07,0.000944148725937582,4.523023410093706e-06,1.1007637649060238e-07,1.215950371581431e-08,3.830627877829052e-09,3.723147084190694e-07,3.246240253956132e-07,0.9997924258710953,0.9998815915834843,0.9994940540470724,0.9999030043911415,0.9990398164632698 -त्रिकोणीय,object,1.5226890256037835e-07,1.4700319997623917e-06,0.8969268040622287,0.00033868219745851225,1.6958477797317985e-08,0.022037729084946275,0.08105656794580006,6.630952332810237e-08,4.695529934494301e-09,8.442061149973436e-10,1.918407627418216e-09,0.0013328029389031485,0.016452892384086405,0.9934513346958799,1.7445641219328424e-05,8.835064368887125e-06,4.8356362837064365e-05,4.368532918393858e-05,6.431509651294967e-08,4.958265592504041e-06,1.2937430504169688e-09,1.9360541148268745e-10,1.4221581125864539e-10,1.828927161550531e-06,0.7072137506549568,0.0005420224379473552,1.6769031044758538e-06,1.6813663823475407e-06,2.2615194803919046e-06,1.051995347318308e-06,4.097614142023342e-06,7.381867366067398e-07,4.526675967066766e-07,4.910988866699896e-05,0.39991161706080197,0.999999369284632,0.9999983487517726,0.9823156979622432,0.9999321383676966,0.9999736701268617,7.382317514996979e-06,2.239857642704519e-05,3.923530423062362e-05,3.703684485950878e-05,5.200410437708189e-05,0.00022995872337902034,0.00013194645547423374,3.026845466969124e-05,7.3317649162352855e-06,6.145495001000022e-05,4.902490857632979e-05,2.8763621348274118e-05,2.6445132285943727e-06,1.6679985183756696e-07,1.3741565748851608e-07,7.613819372268165e-05,1.929641602304205e-05,4.822111206744907e-07,2.3173325782120852e-06,0.00013134984483300326,3.000032984388272e-07,3.955050416955528e-05,2.6414710923394795e-07,2.1307531698792894e-07,6.114805990492998e-09,1.7325973917990868e-06,1.8986181584393655e-10,1.9408917649343966e-08,6.383022388187937e-06,4.319561019624542e-07,5.415786766170889e-08,9.707879786117483e-06,3.7412540661178427e-06,0.0003375533970037442,0.0001530594275508453,0.861254791346856,0.8475188091791646,0.9984563525059972,0.9976547644801678,0.9725454026898981 -त्रिभुज,rgb,0.9709881937146961,0.9780772510325383,0.9685639996501857,0.9386318712572551,0.9531358622381463,0.14604309296277243,0.22071468977519443,0.14950456108199106,0.11479694160561088,0.11116961829225137,0.10793815543944746,0.04049310477434499,0.037037986693645816,0.03656990558235721,0.1094706645446244,0.10896794808170128,0.10862506977974022,0.10836960879269066,0.10633730735200722,0.9794529240549993,0.9730448328936944,0.9711619783703928,0.9555528280802091,0.9399403122483325,0.9997371100588357,0.9997071725518112,0.9996791750433786,0.999629032086175,0.9987580378137966,0.5947269368128235,0.6509173658754589,0.6089743575905252,0.5949214357926592,0.5791127855862694,0.5383722797863333,0.32732140889246386,0.34264962312920305,0.358437334762059,0.35440955815283687,0.39516233682312185,0.14561736643680986,0.1350466694364536,0.1338991119888613,0.13358864712274837,0.11148213838890805,0.6825365100953928,0.6836181517402304,0.6825442412265371,0.679303833221836,0.9384744633155042,0.9436885462704483,0.9526420541177362,0.9240305928113384,0.9180690624648087,0.2746767876730977,0.16505218851975648,0.3688813517489256,0.03684173005124642,0.031966089367705786,0.02821104274945975,0.025783117679837923,0.023083079935655067,0.026349377554455773,0.025963075292185014,0.024309360542706517,0.024334334100564015,0.7915906427670875,0.6658330757248747,0.7949471875031123,0.6500113636076803,0.7868877748055747,0.47581477379164794,0.48085967758121473,0.5656488000599237,0.5510960872480622,0.9677173629929271,0.9660100609522533,0.9599226156119215,0.9490608839768894,0.9535448988942697 -त्रिभुज,shape,0.01339233833226951,0.003147670715200453,0.9998157787836303,0.00030341287749315754,1.2413191862734873e-06,0.9921681590785101,0.10196278618535448,5.691399030833583e-05,1.888770665938589e-06,3.0307948300807536e-07,2.290124545673243e-06,0.012970593512815466,0.009544541152546666,0.9883510517788427,4.9000623379691336e-06,3.1415284092862147e-05,8.419677494753757e-05,0.0001351193238587072,3.3582224377868104e-06,0.00915676883069386,2.4187585073348387e-07,6.005447664921017e-09,4.680240588804223e-09,9.453005119730583e-05,0.6480235669681562,0.0001146964477514566,4.227604639808156e-08,2.5250670450332822e-08,2.8436503262529076e-07,2.5750233445629558e-06,0.0001067355721033956,4.3772511065416605e-06,8.232086509877287e-06,0.01919709599171006,0.9618416533983644,0.9984465673181248,0.99586267011361,0.06159678344551014,0.9045301194504297,0.9783242897554927,4.0779140301517204e-07,2.337497036873153e-05,0.00022503897874033308,0.000152478394231142,0.0013568992499952907,0.0005397601144773187,7.884061913205043e-05,1.5896848661285623e-05,8.010465423216485e-06,0.006682931205808777,0.006401392557353074,0.005625934587656799,0.0007752577734768398,4.890453984744491e-05,1.9612176161592958e-07,5.600591240346581e-05,1.3569570816233448e-05,5.127364988288187e-06,3.8613698920094927e-05,0.0010766161004931926,1.9244441992393208e-06,8.32060460055893e-05,6.207693995651652e-08,2.5584006197674705e-07,2.3160098916041413e-09,5.731273819149306e-07,6.766379065764625e-09,2.2322040346844412e-07,0.000237910503794035,1.101424561875229e-06,3.28594119253773e-08,1.5774970999157008e-08,3.2776665194535787e-09,2.693337480436783e-07,6.110932680715012e-07,0.9999774081902678,0.9999743459807566,0.9999611700036684,0.9999479487440915,0.9999030063728893 -त्रिभुज,object,0.005078330598215522,0.002501797043109415,0.9998512200397252,0.00047733590573705237,2.8820427401348185e-07,0.3813294775642942,0.11667083216729818,1.2165706787732315e-05,6.430346674084248e-07,7.094277107278195e-08,3.5234805685380576e-07,0.01300357510775922,0.004562167989968811,0.9947232198429432,3.2625580277805623e-06,7.779958505397868e-06,2.566757162744365e-05,4.7436699089328416e-05,1.2199784926032384e-07,0.003168176456596265,1.3981521508036797e-07,6.300592105226569e-09,3.2646046913752056e-09,2.4221318988844356e-05,0.9962648013600995,0.009458013815364383,1.602454014646755e-06,6.795023207631302e-07,6.543956758021691e-06,1.0279574069578223e-06,1.9293918544238358e-05,1.0396863422258967e-06,2.887480017791271e-06,0.0008873128953902753,0.9468734414818251,0.9999356948645372,0.9998213425134022,0.2732560880418999,0.9780881872927285,0.9896465207427962,1.9238386457617698e-07,7.434622896796934e-06,8.226998709314036e-05,4.887602066651832e-05,0.000407999845184508,0.0002353600554920581,4.912923996131465e-05,1.3598106413095003e-05,6.208328719148291e-06,0.0028445347440033395,0.0029728964413072274,0.002163427872998222,0.00032415818241391515,1.5315001964389804e-05,8.927784342504095e-08,2.639747996470535e-05,6.584620973667968e-06,7.250146762659985e-06,3.7444606379108034e-05,0.0011745550676058535,1.1495637630429466e-06,8.40384393439585e-05,1.5250417164550828e-07,2.5514256209351315e-07,6.2230713576841134e-09,1.0292655724047433e-06,1.1268240442013267e-09,2.0088304759580496e-08,1.0997063309833121e-05,1.1078045913635178e-07,8.131739482630925e-09,2.420720741638551e-07,5.12352216051437e-08,3.4805745202752638e-06,8.940158168030711e-06,0.9999708752872271,0.9999146421495423,0.9999707028041328,0.9999257293412401,0.9999152701558989 -दिख,rgb,0.9999476292190589,0.9975524674092201,0.9963627190921327,0.1609716063082738,0.02335101798378821,4.9985749660878977e-11,2.129380213937444e-12,0.9999354477797899,0.9999999666259589,0.9999999907957734,0.9997655000962705,0.0003947189160295889,0.00048173744653886495,0.0006231922659535981,0.1707343422892337,0.11713146916555263,0.08536651268551902,0.06446716665357195,0.08410440239972203,0.5221459304284681,0.45159384279230813,0.27059870908263334,0.016303883689559907,0.08653157779053372,1.0,1.0,1.0,1.0,1.0,1.3875152216198446e-06,2.1404495178673113e-07,6.743546017419909e-07,4.402253701286511e-07,4.534828272688035e-07,3.782902059475878e-07,0.9999999999998814,0.9999999999997744,0.9999999999999831,0.9999999999999276,0.9999999999999651,0.015393735424054249,0.04500971554378094,0.015828862718593687,0.004416743230522948,0.003947838189812949,3.298868148238853e-13,4.424514702414977e-13,4.507689694769287e-13,6.511377264466149e-13,5.524726621440533e-12,2.9473797250739654e-12,2.4200001362117586e-12,2.7701661854276427e-12,2.05151775929406e-12,1.5458049522575842e-11,1.1201009012363135e-10,3.1127964585930687e-11,0.998863612600676,0.9958301343798484,0.9997361905009196,0.9954903793428252,0.9914856459567861,0.0009924268229321315,0.0018392194420351132,0.022346351704075243,0.02156638752442608,4.413790052156965e-14,4.8554952172448733e-14,4.464742872763256e-14,4.999379927591371e-14,4.460025742118785e-14,0.9999997887629151,0.9999998951071908,0.999999991278869,0.9999999947838119,0.8817084611970956,0.7707613889454812,0.5677331536155871,0.8989324290403897,0.7094861348658875 -दिख,shape,0.9999999086518155,0.9999966830127166,0.9999954344210003,0.21375257963511318,0.11148945399713238,0.0028120466530245692,0.04694255433749917,0.9999989420079249,0.9999994447612827,0.9792483212817608,0.9999661148370841,0.08434262527613415,0.0007803468850938685,0.9976321080374216,3.838176432087081e-05,6.614921813889122e-07,3.123111159335457e-06,3.2995785917134186e-05,0.002087069185624134,0.9999933200870975,0.9998777800924191,0.9938542553033817,0.9965453244941831,0.9644553247266135,0.9999996736857605,0.9999947438743122,0.017475193873554343,0.06623907611272532,0.22673937839513303,6.84710646410667e-05,0.0006198876450721563,8.146358891622814e-05,0.000503606110442509,4.3536619700500264e-05,0.9998487018719496,0.9984442860059902,0.9991313788256028,0.23518747701083248,0.7622519215018956,0.9931209182081603,0.9999999104105541,0.9999678221533591,0.9998741322162612,0.9999842911553678,0.9999999980708347,0.9703659865258469,0.7428986485856545,0.9764896106656317,0.9453156503540132,0.9999796481705554,0.9999378194072923,0.9999729299762625,0.9999421286067793,0.9999110498279576,0.9166502884476121,0.9596805479668802,0.9942724845290288,0.9999924377179606,0.9999990396976519,0.9999932661763004,0.9999551309761269,0.9999992364655027,0.9098744936568124,0.537804156989478,0.015656181423062392,0.36899744578174326,2.0457162394836657e-05,0.022404839072181486,0.3062009642323873,0.9430964292510977,0.630467956154241,0.029018908680961884,0.12774801056370985,0.22463115962031807,0.3420501524730379,0.9998685274975437,0.9961293740561963,0.999798904070844,0.997740968902445,0.9999109882103103 -दिख,object,0.9984447918981005,0.816017768277923,0.9836647901649,1.3888710444021836e-05,1.7213728750897596e-06,0.006829193116535693,0.004890055666132512,0.9999833800447762,0.999994526154339,0.998473688085779,0.9995897611788456,0.07646310497200977,0.009652186394833756,0.998132182532049,0.00018170174088330586,1.4924291857518008e-05,3.182633878636228e-05,5.945360596074578e-05,8.123456525397255e-05,0.7313347838769955,0.18639998105849712,0.01374705747825449,0.02890587654663885,9.295087704969183e-05,0.9902202044547523,0.6631263958079398,6.700696754767291e-06,1.5801025116450887e-06,7.318349877571775e-06,9.995008357596367e-06,2.9145206484998685e-05,8.912420650739382e-06,2.342231392723609e-05,1.6020260945697547e-06,0.9483673689253287,0.9999999860823607,0.999999981584102,0.9995883641494356,0.9997949836539285,0.9999944095196449,0.4359796833986162,0.19152639347662712,0.1361390163338529,0.8314669674472369,0.9993936857268924,0.5119610938298884,0.3200522605612195,0.7491700560501029,0.7604864392642924,0.9543051170283561,0.945797574779036,0.9725183147112827,0.9357414073219198,0.9133886403353491,0.5017100172309059,0.6913293885777493,0.8547943782171948,0.9999859583993721,0.9999925230670995,0.999970715903782,0.9998850671454479,0.999988401882918,0.8871524557505402,0.4947895328455258,0.6908319588676888,0.9480293534105491,0.00022271826049143762,0.0004972037138573887,0.003381483483549895,0.022366044986399946,0.019855681324676286,0.999676362901444,0.9989768003196081,0.9992943374754292,0.9998647942793377,0.5246811554001894,0.00014106384633380453,0.22278990448525424,0.00013438483661608295,0.43399483169052555 -नारंग,rgb,9.40172294670271e-09,7.014894418923143e-07,2.7775795301759325e-07,1.701148069359478e-05,0.00031353274686962083,0.5402556263286413,0.9962809394310657,3.305926164069432e-14,1.3491733495335157e-16,5.697095458369907e-17,6.203102200580422e-14,3.8995826546540086e-08,4.234938202629365e-08,3.444134149191896e-08,1.321426654828736e-10,1.884422793801229e-10,2.5083149508601183e-10,3.214664481591241e-10,2.491124423175378e-10,0.00018886670890065404,8.95187309516204e-05,0.00014596234529096528,0.0005388320258799323,3.512427710752319e-05,7.780682787417213e-33,2.0625181468378852e-32,2.0800829287583943e-32,4.152666646460839e-32,1.130254507452265e-30,0.0007609717329576408,0.009830712134173226,0.0018415412978251403,0.0023878620658172233,0.0019294668461034845,0.0014664337708342357,2.7325393122552357e-05,6.63311644908942e-05,1.7673926504724244e-05,4.293163662267695e-05,8.013600616437783e-05,1.5975622760170412e-09,5.686793642130107e-10,1.3855221026432652e-09,4.137093358084049e-09,3.6729061631852266e-09,0.9999999997986708,0.9999999998297022,0.9999999998273625,0.9999999998410845,0.9999998689476882,0.9999999698770483,0.9999999913160923,0.9999998777436477,0.9999998917913026,0.9999991926566519,0.9999444740000647,0.9999999387467267,3.351178619745351e-13,1.2865943025462848e-12,3.3795130748779055e-13,4.148183500580994e-12,2.081715556446377e-11,1.361044315264965e-06,1.2072632047183591e-06,1.9991414911720544e-07,2.0730800979394473e-07,0.999999999295704,0.9999999789838716,0.9999999994866717,0.9999999715166455,0.9999999994595357,0.9204301119424914,0.8958632319194961,0.9321666236362768,0.8785141367331691,6.213216740173097e-06,1.0593515967612999e-05,1.3712586028591658e-05,1.0447050105996122e-06,4.6025882693670426e-06 -नारंग,shape,8.968451881327671e-07,5.93756697306309e-05,4.609759619513824e-08,2.854584743466648e-06,0.00028877198079504127,9.45342233001195e-08,1.5885355762500736e-06,1.2820226506655718e-12,4.570665127742857e-13,1.5870468565632547e-15,1.6227873003034252e-13,4.866393706949248e-07,5.560906390431898e-08,3.165325017926878e-06,6.501367339208444e-06,1.6341664349888398e-06,1.6889243609007144e-06,4.449086040475816e-06,4.026087240923405e-05,0.0002920828914372358,4.809749831604026e-08,1.5820491004369112e-05,6.654844729970479e-06,0.1113005856904208,2.5398135910279534e-05,0.0005792701442378271,3.694197711593635e-05,2.6934834204341804e-05,0.0019001470488878018,1.8121672033801432e-05,1.0982078975864717e-06,3.930783366098658e-06,1.6146394260789685e-06,6.038027164175819e-07,0.0016762243385378948,0.0004502318597960954,0.00015333556260588817,0.00018014478242816067,0.00015180604030422634,0.0016731260863158618,9.147722564134286e-05,4.505522975986867e-05,0.0002935439822315115,0.0001349547326144683,2.0271531152075853e-08,0.9987595554828999,0.9992787507449655,0.9998978592350385,0.9996808587167563,0.6252312040413864,0.3030213847802911,0.041549834698936174,0.25531776379440324,0.2087516895406917,0.9999820608281658,0.999862717214863,0.9999879093321541,0.002196274342094933,0.003962459283692738,0.008610134413459668,0.01406347060311928,0.0033859484497589,0.9999970891419397,0.9992368071366218,0.9998882390480383,0.9644116943177979,0.03166332110962981,0.008392830663331864,0.0009827646199114112,0.003464163768804669,0.00810690809866044,0.9799322812119945,0.9999688772159623,0.9996673648849812,0.999959912701066,1.5438982616417024e-09,5.599634441382769e-06,5.1915658398193e-06,7.552977535663403e-07,2.20123850630466e-05 -नारंग,object,0.004898324770406975,0.030165740940644264,5.186118692549088e-06,0.0003158611178954259,0.01165435773295077,5.465854310348865e-05,0.08319516913213036,1.3817508990276274e-08,7.916873632847901e-09,2.8935567747628103e-11,1.1454770444688147e-08,3.936377022637549e-06,2.5388906857142177e-05,6.488231551659878e-05,3.5704214849181856e-06,4.135741235239874e-06,4.0272949790019855e-06,2.902101292288166e-06,1.5287747414382827e-05,0.0595357184704236,0.00030454533649440876,0.0049419776105747975,0.002626936268856348,0.42193402538880836,3.1112809206940124e-09,4.988550529205517e-09,7.288108959651889e-10,2.8732225837698025e-09,1.624150281788974e-06,0.0005763342703634883,4.606238358225973e-05,0.00015449433121320742,1.077800629119858e-05,3.211525024868304e-05,0.0006012223693758676,0.007828905586096875,0.0023678933772865764,0.00022878646120447896,0.0004258787651123478,0.01613360919962673,6.660489029907628e-05,5.94848319798858e-05,0.0020074621692886987,0.0009757759407235618,7.765890308661165e-06,0.9999330002229103,0.999882584236482,0.9999815252140253,0.9999760833603313,0.9914109555135787,0.9865419959445313,0.9751164883310028,0.996407154613429,0.9962757969297754,0.9999947017804536,0.999773691179711,0.9999887276105403,0.0016525320532493478,0.00970958656098167,0.008381419848637892,0.00796147900840959,0.015883945907522738,0.9984017372114203,0.9886324670344764,0.9972961248649127,0.7160417235418811,0.95462724645707,0.5388710580030753,0.47761312966634806,0.6892192905554715,0.8329802637725989,0.9979272652895286,0.9997408304761678,0.9995652126376883,0.9999388069459246,3.7328448790656564e-06,0.0003332953364536737,4.393392844946668e-05,6.895497150846342e-05,0.0001560006078319505 -निम्ब,rgb,0.7851550407527484,0.9649122453375291,0.9294586431773211,0.9700394527731762,0.992526693908945,0.7843132126692695,0.9753249063801962,2.7414220490825656e-05,1.1784228622501171e-06,7.170316770321407e-07,1.9241356411461794e-05,0.0006026632839098975,0.0004780413841421421,0.0004262144923408377,0.0005765500653837668,0.0006631917863407387,0.0007428559397791102,0.0008200120022738713,0.0007104570265639886,0.9961544993005934,0.9932759149347739,0.994016130690797,0.9942393893591492,0.9777069841810594,1.3636249362930782e-09,2.0860898628252718e-09,1.9182554143001613e-09,2.421851520196396e-09,4.326643462142373e-09,0.9023317517340582,0.9693105617581378,0.9321805533045244,0.9333830986626813,0.922661755710452,0.8970810345215745,8.305952022976047e-06,1.2340848183681912e-05,6.297612496809284e-06,9.742712801160877e-06,1.215970801910494e-05,0.0028050186887070144,0.0015894292004591103,0.0022552644893673235,0.003501232892078326,0.0023523096486092873,0.999950849415416,0.9999483061273654,0.999947458141099,0.9999408447093149,0.9999962772137085,0.9999977436628831,0.9999986904135771,0.999995125565316,0.9999947466011474,0.9898331998514618,0.9109498297846274,0.9960384195238986,3.3544631382157674e-06,4.008485842404725e-06,1.3094295515868194e-06,2.9370198473117807e-06,3.2404205326816323e-06,0.00027380570036879634,0.00022311166765996934,8.410082935248629e-05,8.539407949451464e-05,0.9999896204059106,0.9999451188360324,0.9999903187933262,0.9999343024451635,0.9999892645346381,0.004607422738737861,0.003881049560238254,0.004210989855192679,0.0030679171757908774,0.977621267665717,0.980756135133824,0.9793199195418586,0.9303890816476664,0.9635509619648175 -निम्ब,shape,4.588257698314148e-05,1.5290235641170386e-06,0.0006115793564318504,3.4051103865511994e-09,4.900353598860554e-05,4.305450490920792e-12,0.0004478881642659734,3.335862718839538e-11,3.593284675308797e-12,9.112624053736964e-09,1.0872839066063007e-11,1.2086205909982661e-08,2.031208568455885e-10,2.1366854350136998e-05,0.7350586171864646,0.002034473864799186,0.0011267334085684265,0.14676949311268755,5.457072534716134e-05,0.7221815135448351,1.104469758374561e-06,0.0002869788187714125,0.00023495853420713077,0.01077695873633948,0.0015477108512728355,0.017594463321531327,4.9807429860311745e-06,8.392299632213679e-05,0.05237785339836733,0.15948969996701134,0.02457481651539942,0.2143736913377528,0.7674980579768508,5.781817179931662e-05,0.9572266379371744,0.014365691216668782,0.5092972214716133,0.622618808922613,5.5209320744769075e-05,0.15283892150857262,9.682753839115624e-13,3.4887187246910038e-12,3.5956636430764957e-13,3.910447519423372e-17,1.831782051921327e-14,0.9999640118400855,0.9999168604527378,0.9999927365280002,0.9999932550482649,0.9999615565557777,0.999988731611811,0.9997228504564678,0.999932801353638,0.9992121358032321,0.9886150961157457,0.9953014782723284,0.9939442382954672,2.983824624374164e-05,0.0009672464431169675,0.18335156215481802,0.9942329960487801,0.00021431904559832224,0.9999603620856925,0.9990972253528192,0.9994702810580172,0.999723055634001,0.8545893008412265,0.2819112055669715,0.0436537207325035,6.102700470791192e-05,0.001280584691280589,0.9988730285589295,0.9993445837740694,0.999745546702934,0.9995382209064172,5.036534154485592e-06,4.17467529625586e-08,0.0029653335546559346,6.2576489027727105e-09,0.021766253736135648 -निम्ब,object,0.6848299722401592,0.9330724077514526,0.8002495805218144,0.9443043765141843,0.993764137690128,0.6366801811922298,0.9613191329491085,2.2634006442744633e-06,3.6867570625641215e-07,3.164275170513784e-07,2.6500565293437713e-06,0.00047144144065369774,0.0008129458743636092,0.0005633585386733879,0.019335247443347713,0.02992896687433401,0.027979781419695576,0.038073165057103134,0.02920120381526795,0.9974612861653919,0.970399046100339,0.9887049505890656,0.987097277749292,0.9929893325828741,5.769790200110775e-07,2.275369626750637e-06,2.897988320348137e-06,2.018643221135189e-06,3.680055392761876e-06,0.9694826534245806,0.9730916939115887,0.9758174069453143,0.9589178551319875,0.9786420753359074,0.9697137519580902,1.7160140191188382e-05,2.7291666964664596e-05,6.700021232111275e-05,5.493122882896794e-05,6.232145888373626e-05,0.0006750352826520128,0.0005704449319300546,0.0009443085008776015,0.0005284791398579364,0.00027580963010347717,0.9999798891483394,0.9999831162026179,0.9999826223118391,0.9999785917851819,0.9999956055107693,0.9999970396898847,0.9999959227972085,0.9999892366550576,0.9999860424140284,0.9966789445376354,0.99073081124567,0.9986396224473328,3.9511601738967067e-05,5.029498358585428e-05,1.9708281942641842e-05,6.749631235917628e-05,2.9160682532918396e-05,0.09346716339066526,0.03668812645481754,0.02674129668657426,0.0110078210969358,0.9999913301008932,0.9999088460875819,0.9999487934445833,0.999413846239149,0.9998897509541491,0.10088298373804648,0.10380277862920226,0.08040061334510747,0.059821703196453746,0.9368676649001174,0.9472005439105879,0.9763148850310068,0.9419478154085995,0.9847705614931546 -नींब,rgb,0.8525856330168629,0.9869009481043577,0.9696722657635424,0.9923800979479078,0.998705665730293,0.9783304684238205,0.9989504124215507,7.0914508398621955e-06,1.4195807572393832e-07,7.652095915797142e-08,5.236290774520757e-06,0.0008002929959966069,0.0006295153154316643,0.000545675205865239,0.0004267015828422981,0.0005134525607317446,0.0005964048030466409,0.0006794275957172303,0.0005686656651381494,0.9993014471733103,0.9986518892520811,0.9988706497811576,0.9990692274987256,0.9948504528918521,1.3550345462594323e-12,2.3755792371778905e-12,2.185055620056868e-12,3.0359429385294527e-12,8.496676331630738e-12,0.9823640365397128,0.996214500047171,0.9893145814301915,0.9898160684722713,0.9877155205558827,0.9825763351903795,1.0011723666249249e-05,1.6605613450619927e-05,7.022797303168368e-06,1.2273386662442347e-05,1.6272316450488216e-05,0.0029322775986849463,0.0014469520919866575,0.002297639444128995,0.004095415825204731,0.0026639926390568907,0.9999996903973164,0.9999996771887553,0.9999996711089365,0.9999996283233865,0.9999999627367514,0.9999999809133818,0.9999999904222713,0.999999951136523,0.9999999478645469,0.999805731811458,0.9968568229869863,0.9999430473892759,9.768536457455033e-07,1.3509225255289004e-06,3.551989706515901e-07,1.0806188582133901e-06,1.396010181295914e-06,0.000472456141691699,0.0003736864278849294,0.0001100191142789864,0.00011222206323107104,0.9999999347240225,0.99999948372085,0.9999999410505357,0.9999993579714356,0.9999999339324531,0.029540859636970482,0.02391655539653785,0.02636374431349086,0.01782915295427113,0.9936548722309902,0.9949023103677571,0.9946757686673863,0.9743803425471161,0.9891010882953909 -नींब,shape,1.3016152584842488e-06,1.2462178275023855e-05,0.0001625815686039492,1.9410536179519296e-07,0.0012634577006220985,5.7209569300364765e-15,1.3621936261544922e-05,7.474339398138614e-13,1.6205503813511942e-13,1.587252697170587e-12,9.574986051297967e-14,8.099628933844812e-09,1.8437607746256165e-14,1.0141860502220325e-06,0.00013164580753111997,6.021048109827126e-08,5.1969472515862585e-08,0.0002122778871542429,8.598070365631445e-07,0.11859067477821618,1.7496227758182923e-08,0.00011014655066307521,8.581296181075171e-05,0.07263483696419828,0.0010911074812536062,0.0063191874066005444,5.019448198353788e-05,3.632259884386822e-05,0.007519682017178935,3.135013873825154e-05,0.00026645782921697216,0.00010361739789070413,0.015177720639754361,8.525955047921586e-08,0.9140374797052897,0.005072259634279738,0.11410909454976799,0.10591035145008569,0.00027407267779692735,0.22335325629437414,2.806628686046892e-12,7.46626686163757e-12,2.2600992973560747e-12,5.440545335265244e-13,1.2175982823122264e-13,0.9999820056692911,0.9999780697858893,0.999998816876728,0.9999950261789045,0.9999646553254258,0.9999899809818404,0.9999184266378944,0.9999802924781435,0.9998055808055363,0.9994159051487292,0.9992324314216708,0.9999477901461706,0.044119360106864756,0.02921512047199747,0.7410565537016521,0.9867951373374126,0.030372909661401905,0.9999963463710049,0.9993350112613278,0.9990569105193484,0.9998396351874176,0.5151033385746001,0.7700624032239719,0.002628717551550828,3.306651768746522e-05,0.0028110170675968585,0.9935259629137012,0.9999941282079785,0.9993007461754532,0.9999285795548913,8.655551835695647e-06,1.0287367502958905e-06,0.04656585851123821,8.28647694567086e-10,0.22656990106998823 -नींब,object,0.5832725347011884,0.9420700879131592,0.8975931838228423,0.9523473844730207,0.9636309346329708,0.0239742351627526,0.9037474190348526,1.0352468973753438e-06,5.346977152223143e-08,1.2568436185653251e-08,9.488390117403273e-07,0.00025389675151186124,1.5493463390335027e-05,0.0023906028569998065,5.266519914001389e-05,3.727262730522211e-05,4.7048583675828875e-05,0.000130620935298978,0.0005408053475176387,0.9992388043465958,0.9685247250396333,0.9922821304998629,0.9905294890315928,0.9975539301870835,3.70209577835369e-07,7.768194289971432e-07,3.5030086707759e-07,3.896402199095104e-07,2.096243212526206e-06,0.10532497785160466,0.37934898619459195,0.12407617778762003,0.6570629937876433,0.18036919229965614,0.9787083244079631,0.0001225921316019664,0.00018206653305550763,1.3017333883938949e-05,1.955064249087767e-05,0.00016874308752300087,0.007792960300889932,0.007419011495640071,0.014276649075681179,0.011466769729664195,0.0014378634579591749,0.9999964256553369,0.9999960443000414,0.9999973488881762,0.9999962102572838,0.99999936497486,0.9999993915494166,0.9999993399273459,0.9999983547941422,0.9999975901266221,0.9996196099524483,0.9957983489354639,0.9998815611558745,0.00011205801413740856,0.00017842390387032202,0.00012980057889587886,0.0001902998980020346,0.00014507813245587256,0.1896798396516015,0.07877348916794118,0.055884529483298924,0.0193687315300056,0.9999771380087523,0.9997363898003022,0.9999130218212545,0.99972418400692,0.9999452115572748,0.22433639657340435,0.2579560614578304,0.1561661012086488,0.36830042382707234,0.9749124060620089,0.9601053985865099,0.9916394285566885,0.8617451260781052,0.9946543670015323 -नील,rgb,0.5548245208320801,0.35189134486772916,0.34979029851901555,0.11184838284904716,0.06810115355054797,7.572057346827393e-05,2.2146909669616642e-05,0.18055124553055074,0.26989100207278066,0.28480245757855327,0.10830754175723406,0.0012437040474608438,0.000983183710338862,0.0010061340339595128,0.026277989172457578,0.024214671627359775,0.02267658776170188,0.021425156629008887,0.02202412176124553,0.1251087262435608,0.12680344253878437,0.10944918018292109,0.061893819464325844,0.09645885277983066,0.9999956907162606,0.9999949108869689,0.9999946201353929,0.9999936820079826,0.9999808594545995,0.007898190072094299,0.0048566262387944965,0.006565953123809311,0.005814636967050034,0.005815630013531834,0.005401563393804976,2.3333243503917231e-07,1.9271960784835437e-07,2.2615790191911144e-07,1.9866926059877022e-07,1.5892356959636787e-07,0.02284158828616115,0.025824297833986005,0.020989327702098215,0.016360401691427832,0.012987615989383902,1.5768788541052067e-07,1.3592279318599632e-07,1.3520967522907105e-07,1.1588187665599574e-07,4.717084297968087e-05,2.9959446503386177e-05,2.2118657426218734e-05,3.772714042483439e-05,3.351389957885006e-05,2.8832407278157856e-07,5.64301195212959e-07,1.283446379307826e-07,0.012221853793259537,0.00671411769705938,0.005597761903049327,0.002669832416947681,0.0011442349953451941,8.080613119735915e-05,7.230899174570124e-05,8.905509809262642e-05,8.832854089238528e-05,1.1829410756175389e-06,2.3959784744852305e-06,1.0360362916297126e-06,2.4902376550550845e-06,9.858877297248995e-07,2.6139602543923203e-08,2.6524078679916363e-08,1.9538740313135362e-08,2.186483355925175e-08,0.20014568313116538,0.1750709492947115,0.1514353465452485,0.2210895670465326,0.1742980657516739 -नील,shape,0.9999315620770725,0.9992085963398708,0.9999999855684127,0.9997626930860638,0.9926714642105305,0.12579791088395068,0.02875948223909261,0.999999999999549,0.9999999999981004,0.9999999999999998,0.9999999999995337,0.9999962520368139,0.0010403514831785574,0.9984117110018632,0.0299999882883448,0.013810670515444962,0.010112278590639002,0.9813089212077367,0.5830277327821238,0.9999703898831102,0.9999999951458087,0.9999998416527736,0.9999998740452621,0.9730191855408935,0.9999991285894192,0.9998410158676578,0.9998225825887127,0.9999931059965915,0.999837769966221,0.0003758444993267295,0.9947769742488475,0.06294090294561679,0.9999963107232633,0.9687788390782004,0.9413268611676242,0.9914551863620259,0.9988115804308887,0.9993109795525256,0.9004167760780286,0.9982666331876532,0.9999999646389212,0.9999999866753304,0.9999995226506,0.9994516055679874,0.9999999999912776,2.940753595336087e-05,1.6970444944454357e-05,4.439584032455249e-06,4.073954165053091e-06,0.7013985450920068,0.8136218998786987,0.9965902476437568,0.9769943955148717,0.9833054264455076,2.592382459603642e-06,6.29174405301202e-06,6.568648845290168e-06,0.9999694830110866,0.9999692620480395,0.9999726325538815,0.9997651653190748,0.9998685008376439,7.733523841595757e-09,2.3755940601351339e-07,5.9286219502751806e-08,6.997834385318014e-05,0.019110787251061412,0.3980961454728052,0.9986518726254706,0.999686618940718,0.9979941210511247,7.611833923835731e-07,7.882943123711698e-09,2.716839929101449e-07,9.315192012370175e-07,0.9999999912122083,0.9999955651672077,0.9999007098276417,0.9999469396223442,0.9998862531350389 -नील,object,0.8839967987486375,0.7107503640637479,0.9226237874534612,0.21219684663710234,0.12460196187155273,0.00013469722018307493,4.115182774021384e-05,0.8286958358878271,0.811154028796764,0.8680832987097462,0.6558368201537368,0.011821736659243612,0.00094922265390758,0.012756568657472971,0.02120283854696832,0.010614148655244906,0.010845166466791754,0.02236497748116895,0.015328651140394629,0.5327949078388451,0.5655148340550533,0.4475831017947741,0.3173574725270198,0.24178535078651828,0.9999987620330675,0.9999957200836329,0.9999850417707584,0.9999886086446805,0.999969251031251,0.0040772384582498985,0.00970894816004543,0.00499886573409475,0.02434101348918625,0.0052883644296988904,0.04004904699204315,9.259767245229144e-06,7.795502367112342e-06,3.042649615753932e-06,1.8962407017297842e-06,4.39882750006362e-06,0.25981927528149507,0.3079357861510884,0.2531372391599651,0.14791575702601628,0.2926256573876593,6.797954504761865e-07,4.1638514769142215e-07,5.138535792393362e-07,4.544147528831375e-07,0.00044824704934003096,0.0002880449960301918,0.00030024580196356867,0.0004268018717282118,0.0003394308670783762,7.252446093084276e-07,1.3672104486075717e-06,4.966724547055306e-07,0.13002487592638245,0.09183584543432001,0.10068185888363712,0.033015639881403526,0.019930794761920778,9.947368696563284e-05,6.697400072133047e-05,7.071928642169433e-05,0.00019661361243667415,1.6734261318782507e-06,6.5924696987402974e-06,6.555946348934307e-06,1.9399350999524884e-05,6.467710459488639e-06,5.945899416514371e-08,5.6966382106255345e-08,4.29570593894948e-08,8.249751205203712e-08,0.7725474780265982,0.5857328188716135,0.5933967651225148,0.4847970414961947,0.6257422538876899 -पत्तागोभ,rgb,0.9998537325237513,0.9981063465723615,0.9987257779894684,0.97407698236674,0.8674309438994101,0.0001265604309210713,3.485617889251209e-06,0.9999918643956915,0.999999232412326,0.9999994610195594,0.9999791873180034,0.6324057297207952,0.5464372610163307,0.5699786990096519,0.9983771087286819,0.9979745827449674,0.9975796654665594,0.9971759288276412,0.9974936688282902,0.9356644132735229,0.9536460905539008,0.9349611832969154,0.8250005537654781,0.9595575843466901,1.0,1.0,1.0,1.0,1.0,0.3425575144683742,0.09954459358334405,0.23091018694547816,0.19191739407087782,0.20551285084585227,0.21028224297206302,9.470986341785167e-08,5.384790620747915e-08,9.38801297521654e-08,6.149461049421357e-08,3.3684323777129865e-08,0.9955364181782199,0.9972999358062636,0.9952764623311718,0.9906913773998384,0.9880895294089411,6.634907468554144e-12,4.9914101399848196e-12,4.978015191994462e-12,3.826583552854736e-12,1.311352207695307e-07,4.160773812540083e-08,1.7072628360620036e-08,1.002312009320896e-07,8.353217887871756e-08,3.2632877226101833e-10,3.8221447330565825e-09,3.742605876559809e-11,0.999270470561543,0.9974756589746371,0.997717279098727,0.9865520278556039,0.9291516841897309,0.010404058484020356,0.009035285466830884,0.02027276727726419,0.01982387870541086,1.793608131501209e-10,1.7978444072379381e-09,1.3239572207213716e-10,2.1366600327317634e-09,1.267352955188577e-10,7.934433150783387e-11,8.662854161926703e-11,3.9813116959674595e-11,5.7710508075889804e-11,0.9906401457323704,0.9864522984512851,0.9824706143554902,0.9961005780226944,0.9904908400166375 -पत्तागोभ,shape,0.9838087214223347,0.06837680196945159,0.01768735308423397,7.087722481962942e-07,2.0362085120371695e-06,0.00018832868577696929,4.1014813872653805e-06,0.9999975291028764,0.9999999515990389,0.9999892818496464,0.9998339540814493,0.0004952747337892834,0.00044433159560812544,0.00044613454341633265,0.00010123338392338723,0.0004016161600569185,0.00020022414594328235,5.326053352298917e-05,0.00018404610026754282,0.00014265184062374958,0.0010347463963618466,0.00013825693748000108,0.00024849074802688997,2.0101920714157003e-07,0.0005391622990724175,0.0037522528415612553,1.1644551719356718e-05,2.5344818777322895e-06,1.9645401415782637e-06,0.00029074061157154275,6.061301056965758e-05,0.00016933368466373874,2.338873473932287e-05,4.112035359930593e-05,9.63755183537856e-05,3.1430535441419246e-05,4.310991134432063e-05,1.020262516875284e-06,3.4735798416124416e-07,3.041310571259911e-07,1.313603001552429e-06,1.9018482213986758e-06,8.698826098825787e-07,4.3423324864238924e-05,0.013280312884947769,1.53284200630117e-07,1.9190563065276086e-07,2.393300972182509e-07,5.041506528200696e-07,3.544149295763732e-05,1.9716445964609082e-05,1.60415693287963e-05,3.286055948554389e-05,5.8278316428583944e-05,9.54421110733025e-07,4.050975095856246e-07,1.3161555140657615e-07,0.013938562609191064,0.003440886754497957,0.00016017484598849864,0.0006085778931496875,7.776434460789644e-05,9.37150547219309e-06,5.801907455808091e-06,3.2401408334896796e-05,7.487591614770662e-06,0.00014206794747100506,8.674156655237675e-06,1.941271485096414e-06,6.24984435899639e-07,1.277218134380812e-06,3.463343470357059e-05,1.1580066161827662e-05,5.403896692268313e-06,2.9469253681046655e-06,0.002135888565305897,6.468717592723352e-08,1.8173101805900316e-05,1.641130622853578e-07,3.029262148822622e-05 -पत्तागोभ,object,0.9988846799893698,0.8629512103003729,0.7621636788558044,0.0002603788086937498,0.0001676119525141062,0.0001896585614484965,6.963808508802775e-06,0.999998676043167,0.9999999052470899,0.9999971157978944,0.999942512903434,0.013084520890866775,0.00456904601863394,0.053886664669373946,0.010529221687941117,0.015657166536766708,0.010445690669230588,0.006191367698325946,0.011160362610114808,0.0517797008453841,0.1552446581519413,0.024914171468212606,0.029762944130132026,0.000283953826436522,0.9999243022041496,0.99993045482686,0.978130457844412,0.9568704395366268,0.9361122283815063,0.0014042801455708828,0.0004828724335124019,0.0009045874933929498,0.0006255884048750982,0.00036900906480266253,0.009376353597894797,0.00019601909668971677,0.0001868882288150154,7.368311330648761e-06,2.9125996453322078e-06,5.675157532198936e-06,0.004812072124984993,0.007942949532283125,0.003897407564719032,0.03124808005271108,0.6140905181296391,6.149339723506274e-08,5.127896721352466e-08,7.019136667396456e-08,1.0737635596056462e-07,6.851684375401679e-05,3.992468030377272e-05,3.3379256241632954e-05,7.283342061461533e-05,8.627928200838563e-05,5.066587761319862e-07,5.824189860233484e-07,1.0486789476152806e-07,0.8783420046347105,0.6593655060815612,0.25964225788061857,0.26216986042614154,0.08135452297246272,0.0002752459617530003,0.00017682672077437388,0.0005784451188031661,0.00045107076226366444,2.4675992188373914e-06,1.2356227643652157e-06,4.887478889225334e-07,7.790954892997397e-07,4.925400537974852e-07,4.148371003354497e-06,1.7574981500995575e-06,1.0727735646142668e-06,1.3606734507456562e-06,0.15831136120288994,0.00010849323871962204,0.010283685358143784,0.0002773279281727031,0.014719094353368609 -पा,rgb,0.9480565904610023,0.9928076259638071,0.9843436025446788,0.9923600687713153,0.9981369620961402,0.7627354573281396,0.9705232641969386,4.1005754446807895e-05,1.4617802039537667e-06,8.614522662500891e-07,2.5052006349703427e-05,0.00044484865874410356,0.00032961479230639854,0.0002921870681870109,0.000765217317004524,0.0008770732994951359,0.0009797076871237028,0.0010789338137724659,0.0009282894684196853,0.9991795411135046,0.9985122897160914,0.998651101401268,0.9985666171122858,0.994311719368318,7.377882882279112e-09,1.1457443761817557e-08,1.0388193013108057e-08,1.3106083429416755e-08,2.1293341980487346e-08,0.9548961773408005,0.9863999378890528,0.969105691511473,0.9690690943648655,0.9634586094868567,0.948916791996585,5.15035945371905e-07,7.606349608802741e-07,3.7334120571675574e-07,5.878738664242967e-07,7.06137487269528e-07,0.004139381865831615,0.002290145687754162,0.003217632946982565,0.004943650582619998,0.0030778786743644033,0.9998944539678226,0.9998847202508201,0.999882542048241,0.9998617357728485,0.9999979511796847,0.9999986890702691,0.9999992210989702,0.9999971519374358,0.9999968449423612,0.9713616802215475,0.7743679871160546,0.9874164604584166,2.4160590281212503e-06,2.605581787798991e-06,7.364338556399028e-07,1.5365394659344704e-06,1.435669502240367e-06,0.0001062682731319253,8.286655366211641e-05,2.9723174879000813e-05,3.01713215591001e-05,0.9999872134467415,0.9999343529260513,0.999987794426857,0.9999210244139883,0.9999862216108877,0.00032531881262297065,0.0002695353219474431,0.0002694032979627433,0.00019531946176214697,0.9950223725887614,0.9956607596149482,0.9951762657898383,0.982942588175728,0.9912886976547854 -पा,shape,3.5596338739069674e-05,1.0806078405062048e-05,0.0013452725259031008,5.571511154897147e-06,0.000247187529172505,1.3327529845599863e-10,0.006525820603632804,9.12078708522991e-12,1.8529260289048513e-13,2.65860372486706e-07,2.8255744864244643e-12,2.234097265488034e-09,2.5253433581625874e-09,0.0006338922637442645,0.999656921828297,0.7564173521595738,0.857107787402969,0.9998374962653861,1.668443164922798e-05,0.6740058357687487,4.921654593416069e-05,0.005003282522789075,0.0020266051681286064,0.0038102219481223297,0.08552365000826306,0.2913439057805037,8.228684834898214e-06,9.344020828290199e-06,0.0014468879118943322,0.9903488092344208,0.963232773143212,0.9963456304917234,0.9951430823350229,0.04012065987964884,0.9718869287258801,0.006412846092319964,0.011350585334077089,0.9172735228036102,0.3835824255721245,0.08301991671635466,5.234864073331779e-12,3.844088720793567e-12,1.560378385088202e-12,1.1082159075591714e-16,4.444725443575418e-13,0.9993306152001324,0.9995049393974441,0.9997440203440999,0.9996177237220055,0.9999947402813967,0.9999975162959152,0.9999620316459245,0.9999131055635296,0.9992102802734273,0.0013117553195115422,0.7046375781682364,0.6078509765916827,0.00047801607591215026,0.00991378474496698,0.1990301627243148,0.8449802848649083,0.010357603417545786,0.9678213252208877,0.042206478590974504,0.778123190384657,0.8040761585638101,0.5793475932801166,0.0035981324702409377,0.05934339704427425,1.988261104406245e-05,0.0002134839285951898,0.9935783835346493,0.9123152424183061,0.8761799457803331,0.9417294378962234,0.00013519823893593877,3.120117756692463e-08,8.255672421676536e-05,5.933159740126389e-05,0.01784927116676285 -पा,object,0.7967707462661981,0.9576405993697019,0.9731400264234936,0.9706547729655656,0.9935685025239952,0.9086097450899754,0.8559405570736497,3.3189997281559534e-06,1.9032718297452523e-07,2.6491725738290677e-07,2.544088831256479e-06,0.00028179054062517004,0.00047332822845081406,0.0008193099235642795,0.03652732052768091,0.029237845607005538,0.03821076224207907,0.0545243443656913,0.024869809426407416,0.999285092786759,0.9898354809566005,0.9949863430761561,0.9943792268421803,0.9971017271380742,3.1586430005405072e-06,9.609735469034626e-06,3.816492664186768e-06,2.693342594039624e-06,3.858786308510649e-06,0.9846436050544496,0.9881625990189741,0.9896807294192028,0.9736129399634759,0.98733536245006,0.9938833187339303,3.152800608806116e-06,4.458121199510552e-06,6.299981305125633e-06,2.3147416310016046e-05,1.0558617589076743e-05,0.0025706663700338886,0.0012662198296817017,0.0022329521941010662,0.0021442434015643123,0.001347494541624392,0.9999276203387993,0.9999281003785224,0.9999309814302992,0.9998819212472675,0.9999977205132105,0.9999980032368967,0.9999977510275192,0.9999904768106328,0.9999855470855417,0.9513446150064152,0.9420261349635226,0.9928931459847204,1.82945754455909e-05,3.5133448731872485e-05,1.0318943974049842e-05,2.681327443202803e-05,2.289089791048178e-05,0.008584534435001987,0.0017577225409873044,0.0005278164997725701,0.0011326404627630413,0.9999386874297757,0.9997817299755729,0.9999432195790167,0.9992806045630904,0.999780683422555,0.00193205031000449,0.001311597885461051,0.0016620015801175566,0.0008865807716302094,0.9946079963633928,0.9902052543592551,0.9945697038069161,0.9956392649345014,0.9977165129222626 -पील,rgb,2.277875102684518e-12,1.9703571314281782e-10,1.1619237135373978e-10,4.092567578527302e-08,8.479329176714995e-07,0.9999379892429859,0.9999999007728319,6.277148761931838e-13,1.7472568539272943e-14,1.0329777286948158e-14,4.961571078192949e-12,0.001672855601252298,0.0038123862737820093,0.0032830969026855865,9.73345015566288e-09,1.4514079557662922e-08,2.000822987438053e-08,2.6418884365870134e-08,2.1883671858632812e-08,1.2809437814130747e-07,7.819792356960567e-08,1.5556550928583463e-07,1.4988729931504872e-06,9.322833645587863e-08,2.454492593499939e-36,5.301756117167951e-36,6.033592106908677e-36,1.1506010909754456e-35,5.709150024926232e-34,0.0004242023995483266,0.006258443224756827,0.0011233188631665067,0.0018014602414298023,0.0016105840348190404,0.0017159408746912947,0.9999999999998952,0.9999999999999616,0.9999999999999085,0.9999999999999543,0.9999999999999856,4.152888754297394e-08,1.8503204128347467e-08,5.090446979768302e-08,1.7341781472599044e-07,3.3882708171102754e-07,1.0,1.0,1.0,1.0,0.999999996237608,0.9999999995671536,0.9999999999141713,0.9999999980484446,0.9999999986961725,0.9999999999999993,0.999999999999954,1.0,1.4876784870957532e-08,1.7811083464495302e-07,2.280644037214401e-07,6.445888967677748e-06,0.00021391040974371836,0.9880895988029789,0.9917998470655471,0.9708430215940503,0.9719770859145759,0.9999999999999967,0.9999999999998057,0.9999999999999982,0.9999999999997418,0.9999999999999984,1.0,1.0,1.0,1.0,4.388177729050381e-09,8.884058115371038e-09,1.5604774097860212e-08,1.1429719894230217e-09,5.500875881309335e-09 -पील,shape,0.8481348466422554,0.998485597446403,0.9728949147199959,0.8899391205497914,0.9788257888331752,0.9994555535932353,0.9997277855577579,5.6883925974640374e-08,1.5392837268762646e-08,5.442303475984352e-07,4.6579301047425245e-05,2.951939913179178e-05,0.40039954227637675,0.9666454823983482,0.0009636795264761443,0.0002479321292840482,0.0007300418592600172,0.002205260034715244,0.8776064740037759,0.9999314074541167,0.9993042684156309,0.999713762410801,0.999858296160628,0.999983458588742,0.9999495763543464,0.9993036280195887,0.9521842774030269,0.9992697862082526,0.9999966266965373,0.6434444687489306,0.10753352600858565,0.5502854391087888,0.03834481261335608,0.003124692433902428,0.9999552867846945,0.7215429432114762,0.2231562898115536,0.0025028642889931485,0.9645488285981358,0.03993308978612717,0.9985595269302212,0.22736539512526588,0.06529816417716176,0.9454166778917932,2.9526143130233263e-05,0.9999987986678175,0.9999992616835081,0.9999995607137624,0.9999995022763878,0.9999929128513652,0.9999993958890226,0.999999308607753,0.9998952181843795,0.9999747171156959,0.999999872875653,0.9999996167275523,0.999998451462275,0.9790690963448448,0.9170764558222628,0.998683958821249,0.9899968075124652,0.9996325461786998,0.9999996292127533,0.9999999389599985,0.9999314952860807,0.9999670990870098,0.9999929984389732,0.9999937690058464,0.9998058529600673,0.999817996136324,0.9999745058180787,0.9999966448032497,0.9980429884076238,0.9999966884022152,0.9999957370600862,3.62019204986614e-05,0.7944253380552743,0.9986769216917105,0.006127859129101188,0.10776201619231399 -पील,object,0.00022325797229811217,9.315528404864085e-05,3.927470132007081e-05,0.001720302685978213,0.07053117052465756,0.9996804549781061,0.9999762217797931,4.043287032023082e-07,4.277393452951055e-07,9.989831902562175e-08,3.931881505984747e-06,0.032064678333919384,0.7238424294571155,0.016548161977172564,2.395918707233257e-06,4.469899842074788e-05,3.850023711563926e-05,5.273711911810276e-05,0.006318318104839195,0.008418756723633436,0.0005794331808211709,0.0023391767524749375,0.004693332647553676,0.017947883834743297,6.038557240933163e-12,4.194718270674204e-12,8.495323689745736e-13,5.1479660329892166e-12,1.1043934287024829e-10,0.00025696893691634897,0.0020768544457132228,0.000494866062401149,0.0006304569183427138,0.008108407854334403,0.2061027992626732,0.999999985838163,0.9999999697983353,0.9999997021293093,0.9999999437446886,0.999999983943058,0.0019042202919992653,0.0002469484901454267,0.0016870388507622346,0.05008679898360081,0.0007384674777770587,0.9999999862418507,0.999999985491461,0.9999999957490717,0.9999999964137047,0.9998721591523339,0.9999445422329739,0.9999812776051386,0.9998647750808889,0.9999235193188312,0.9999999979081462,0.9999999520099284,0.9999999961628501,0.0813193325798938,0.28916631175462737,0.7617011660600489,0.7849085553188773,0.9555145186655644,0.9998287256051993,0.9999798595870708,0.9998643683397405,0.9997501041861249,0.9999986600363677,0.9999971264131179,0.9999970038321948,0.9999915866331541,0.9999983509819071,0.9999999999309743,0.999999999612641,0.9999999999277529,0.9999999999291049,1.996039704343135e-05,0.020321121894340124,0.000782067209979849,0.0018600590144419106,0.0013534959348261658 -प्रकार,rgb,0.9999999999933651,0.9999999999991398,0.9999999999952878,0.9999999999476481,0.9999999999887661,0.015440413547197657,0.0747782894818599,0.001510054485056556,5.541216637782985e-06,2.2333042463089453e-06,0.0001074824880607807,2.0666091134872619e-07,5.869778644510395e-08,4.847155048302095e-08,0.0024828796063720584,0.0026403959462652747,0.0027819141163430397,0.0029157699967179143,0.002292293937843215,0.9999999999996858,0.9999999999989264,0.9999999999986287,0.9999999999915257,0.9999999999564118,0.9999983192599613,0.9999989451810058,0.9999984870866724,0.9999985519986986,0.9999887780555685,0.9999956049176987,0.9999987938774256,0.9999968468000444,0.999995602252999,0.9999936608918352,0.9999837141009303,2.5766168046613423e-23,3.522029937529247e-23,1.229321576316148e-23,2.2425719901379253e-23,1.8495331983304085e-23,0.056370461627405596,0.023411212229186386,0.027016728528069044,0.03361758003090285,0.006744601615497299,0.02593853401272315,0.014727971146474379,0.013971779066183555,0.006644139604935068,0.9999999977414942,0.9999999970598434,0.9999999978190224,0.9999999916987233,0.999999985816636,8.828168521226598e-07,4.1414066296669125e-08,6.189473615232373e-07,1.709859721889681e-09,3.9682133695219095e-10,1.7302190083541137e-11,1.1062952975587298e-11,9.993942379196401e-13,7.061141679280378e-12,3.125901732793225e-12,6.361889305118498e-13,6.423103078163882e-13,0.9979270622203086,0.9897890493492684,0.9973325845129849,0.9864000569224983,0.996068635889194,5.694971306536732e-20,4.0068020304138496e-20,1.840297425353266e-20,1.2608735952074644e-20,0.9999999999967737,0.9999999999962339,0.9999999999924292,0.9999999999676226,0.9999999999829747 -प्रकार,shape,0.9990323452867952,0.9999698106221293,0.9999999673043121,0.9999536815365794,0.9999879769052922,0.9999977183751698,0.9999997515789776,0.9999983291994992,0.9996097744604885,0.9999999326526495,0.9999850566569587,0.9999999980332865,0.9999999999896914,0.9996804867189638,0.9999999999904756,0.9999999966940551,0.9999999991987127,0.9999999991009842,0.9712020870795469,0.999363340920598,0.9999696853985856,0.9997709379790047,0.9994245399523064,0.9991533181598415,0.9999549193821807,0.9961440895342919,0.8786905932813354,0.9624614676910803,0.9650071985935561,0.9999999999725346,0.9999999997896152,0.9999999999564224,0.999999999926366,0.9999999757086838,0.9999888519882899,0.9999194751729598,0.9999261054696933,0.9999992837421451,0.9998701839492106,0.999604145788174,0.9997649407896204,0.999974635783212,0.9995594212181612,0.9575985724910451,0.9998702745292416,0.018543442721349154,0.0014712234907699416,0.0035935329865934796,0.002697162050684956,0.13016552468281006,0.1629688186019928,0.23329336047681523,0.07507750540669064,0.011880843077780905,2.736917879159058e-06,0.0013354268453608122,0.00018254307636325222,0.0018108673442712253,0.01136613651164024,0.823653790292127,0.5561351348436183,0.004235867764588663,8.186663127164338e-05,9.762777154779578e-08,1.2309338902845457e-07,0.0009567182565047653,0.288159410520034,0.24970695700380016,0.9997063131257404,0.9564332819735181,0.7592674391890887,8.942822654181664e-07,9.033089827970884e-07,1.7121775364269693e-06,7.832233092948748e-07,0.999858214301584,0.9999999707575,0.9999976957049999,0.9999999995994582,0.9999811478032609 -प्रकार,object,0.9999992335431157,0.9999974528179743,0.9999999936997708,0.9999960253223613,0.9999955079229573,0.9556104353905707,0.7528107653332917,0.9999765720599044,0.9994796709162138,0.9999709717495243,0.9999475097723434,0.49006105123499083,0.5147161730050704,0.12302240636584101,0.9783479063973199,0.9062947082723614,0.936079579223136,0.9388863899122205,0.4958193601195575,0.9999998667911734,0.9999999908589102,0.9999998290220274,0.9999996935357642,0.9999475675126646,0.9999996036801505,0.9999982080188303,0.9999847820857942,0.9999771502664504,0.999729599083844,0.9998606782428666,0.999969493077744,0.9999340759218024,0.999981361601195,0.9998021727689808,0.9998195439110289,1.3185738151206739e-08,1.7896208381268985e-08,3.3748055659686875e-08,1.5151351644075602e-08,7.186326571193022e-09,0.9659730910493911,0.966317540235084,0.8941474645721547,0.9393685472514385,0.9963457216217808,0.0004685197560198597,0.00030589778938317657,0.0002599539323037366,0.0001571912086232051,0.996594906752016,0.9980155863716427,0.9995129947562728,0.9974119562106795,0.9956132038446833,1.9553950542337248e-06,5.2050614496979236e-06,3.3969208856300433e-06,0.025607043628404377,0.009550360367179706,0.006924598835160842,0.004386250889244443,0.0006103185098990487,2.7579502114455344e-07,1.211997810118768e-07,6.771726822116228e-08,1.721027836346357e-06,0.21391724273206703,0.2780042316574094,0.9194661901694886,0.6982566277283309,0.6215038012256863,4.606401292517644e-11,2.1808503071804695e-11,1.85516804619212e-11,1.073483307124167e-11,0.9999999194456157,0.9999999143814235,0.9999997494741698,0.9999997373639645,0.9999986280215192 -प्लास्टिक,rgb,1.0,1.0,1.0,1.0,1.0,1.0370889109845663e-09,2.628594585643288e-08,0.9824817599723854,0.993027092368645,0.9949794726303453,0.17834704621703323,3.8209874302434785e-12,1.187270079606086e-12,1.1904234093017472e-12,0.00036654301551698124,0.0002544895337274995,0.0001913713192811781,0.00015036261849625925,0.00014002359455163608,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999989603057744,0.9999997461936794,0.9999991134661012,0.9999975508665642,0.9999948203481264,0.9999578238945456,0.9999998694648972,0.9999999039754609,0.9999999907888694,0.9999999723493344,0.9999999971109557,0.00374253785429075,0.002687966875716068,0.0011325445084887224,0.0004472392807806968,3.110770412257217e-05,0.7976897083450931,0.81313362181482,0.8050492586798577,0.7889530234379937,0.9999999999999394,0.9999999999999596,0.9999999999999933,0.9999999999985034,0.9999999999949354,7.232544217189007e-08,1.7547200373926203e-10,9.00044686915347e-06,2.023113309070858e-08,1.1005956101253906e-09,9.335350094128887e-10,3.751431321451233e-11,3.5648302599242073e-12,3.855382443503565e-15,4.122597410205179e-15,8.591830137299759e-15,8.4739571456995e-15,0.9998106405808799,0.8344408222141493,0.9998354504136098,0.6982738278343562,0.9996965737806934,0.9999988137893363,0.9999993663210721,0.99999999612464,0.9999999946361786,1.0,1.0,1.0,1.0,1.0 -प्लास्टिक,shape,0.9999930783101869,0.9999389096062008,0.999999807365654,0.9999999999985574,0.9999989486559537,0.9999999999999718,0.9999999999998648,0.9999996503413701,0.9999985515041729,0.999999999883356,0.9999997823088537,5.2144239781981066e-06,1.0,0.00029618761122044644,0.9999999999993936,0.9999999999999976,0.9999999999999991,0.9999999999929661,0.9999999994403004,0.9997200805330455,0.9999997092755172,0.9999911080977982,0.9999332075970143,0.9989000668637197,0.9999720576592303,0.9997860999879244,0.9998894681693391,0.9999317492066335,0.9999171628446739,0.9999999999999409,0.9999999983827497,0.9999999999980398,0.9999986441716522,0.9999999999999987,0.9999915204941291,0.9999985905212858,0.9999649152505838,0.9997943686947213,0.9999895303949741,0.9998311702251519,5.4230381093928425e-06,0.09212343188783925,0.016574188455378388,0.0011751888477459316,0.9998687839923537,1.339972136385533e-05,4.713742060233869e-05,4.581764262740787e-05,0.00011447827392033123,0.032797867772455656,0.1329822710206351,0.25997439585558496,0.008653641007071925,0.005306991227472388,1.4189457175177133e-06,0.000298061338189009,3.0663821159092244e-07,0.0005918516286006154,0.003683735234392351,0.1361894417438499,0.0006991979883946185,0.00022864222474525738,4.5063622748989455e-10,6.736978379630172e-07,4.624407991885704e-06,0.016539902053767465,0.9996973925699231,0.9993899544016456,0.999983963790395,0.9999585760431347,0.9994902414396679,0.0010041936272492406,1.1161348625285128e-11,7.346747370467414e-06,1.382225265635663e-09,0.9997057311648332,0.9999907328985076,0.9998769337168258,0.9999999999969706,0.9999919451718049 -प्लास्टिक,object,0.9998876406097267,0.9996758370505536,0.999998508405181,0.9999997605240486,0.9999558624886434,0.9999978761667901,0.9999828369903561,0.9954609052204705,0.9306804085874727,0.9999800688864685,0.9890327571317469,1.1050185532755262e-05,0.9999978405257524,0.00010430663324165487,0.9999364512722034,0.9999963393588209,0.9999976728601682,0.9999402009271623,0.9976897809916846,0.9996486391109122,0.9999981483268653,0.9999793384547935,0.9999301033902882,0.999415034627899,0.9999999005710988,0.999998081487976,0.9999995745823054,0.9999999718798754,0.9999997834171898,0.9999948038662849,0.9999862169441539,0.9999959274243128,0.9999121276476555,0.9999999930778338,0.9927879779711154,0.9999730126487983,0.9999434169836349,0.9997984327122351,0.9997411535128137,0.999881651614506,6.974240840633553e-06,0.0026137005367349265,0.0015785704338324043,6.881317353885994e-05,0.6046770289755922,0.0013460496656190724,0.0004426045510425031,0.00015419776048052086,0.0019355319583721534,0.37678206076400284,0.7092950578956144,0.9316535792151579,0.6237330130849494,0.46633324137946647,1.4062681395070005e-05,3.621841333455609e-05,9.026194735321467e-06,1.1618159520817623e-05,5.272595273841632e-05,0.008753688768036378,3.787109266874512e-05,5.7098055667769955e-05,1.572027527140323e-11,2.817043642465864e-08,5.841243968600705e-09,1.9468277726728102e-06,0.9995084028288732,0.9992261242353108,0.9999546656688368,0.9998599177704394,0.9996337993187548,0.00015062905590793586,1.499202266279939e-08,0.00013957629223182148,1.036725752555644e-06,0.9998501396903399,0.9999926950976643,0.9999048311488566,0.9999996859557603,0.9999522739815784 -फल,rgb,1.1872787192971963e-09,6.709684038085937e-09,2.542782505872822e-08,2.585612862218063e-05,4.729831107133653e-05,0.9999999956829588,0.9999999982926122,0.02315021828729823,0.0006768890336950248,0.0003556142038721156,0.17146429132318003,0.9999979636834392,0.999998493536583,0.9999983089386242,0.9910727800324571,0.9934062043694543,0.994819231847779,0.9957884523391759,0.9952973164089,3.070280046051565e-07,8.175000582799117e-07,1.7170857831228982e-06,5.1956938368855616e-05,3.912111835221113e-05,2.643550292623249e-42,1.264209524296056e-41,2.1152168921565292e-41,9.368219091262774e-41,1.8881086260944513e-36,0.9894914279104531,0.9941541967892896,0.992387966962701,0.9952763136997083,0.9960464025561132,0.9979050516188809,4.231485159507069e-05,5.473674212864129e-05,9.704311696580046e-06,2.464776095409043e-05,1.1105434369288501e-05,0.9946976684045533,0.991973655256996,0.9961645505116893,0.9983768020805575,0.9992786608240409,0.9999999840873512,0.9999999825453211,0.99999998267689,0.999999981410672,0.9993266756564781,0.9995121401081943,0.9993637937027999,0.9997940219439877,0.9998723111670967,0.9999999989663086,0.9999999993557676,0.9999999964794828,0.9826779293246533,0.9960878455286114,0.9890708205725909,0.9988550407985443,0.9996456706804666,0.9999998103128815,0.999999760755927,0.9999991183645173,0.9999991371383472,0.999999909506103,0.9999999793537027,0.9999999101977194,0.999999982623828,0.9999999245865504,0.05956284590821705,0.03864164951999438,0.004357914996487959,0.0036771771012285522,3.108335605110836e-07,6.208753608138323e-07,1.919218072896127e-06,1.0897154064728402e-06,1.9672082422569953e-06 -फल,shape,0.7509417775423259,0.02561672632909342,0.0010660988619736991,0.0003543925901879851,0.05745078242846334,0.999584517757644,0.9994232632573181,0.2577947932477314,0.00012074199214142663,1.8018943587238475e-05,0.08270674319373306,0.999946439503546,0.9999993334428139,0.9999986198224591,0.9960255823285719,0.8068361123958272,0.9921452453434401,0.0673867277829857,0.3975417289531378,0.14608662877421205,0.00017332989043825864,0.00019173181354726558,0.0010591133589654867,0.4513197234305023,0.0023820787437347953,0.00016539917221274788,0.0005863898419945816,0.0010016457884784447,0.12744984382132304,0.999999517285236,0.8048535311118897,0.9999532834632392,0.19073263026388582,0.002730448097284336,0.6465008488310415,0.10137810936247528,0.09865467444555232,0.05234985585011891,0.0028629803775041965,0.0072550609439212,0.9888398742265335,2.3236062071589934e-06,1.579962880072995e-06,0.9999966548100327,7.09462470630215e-07,0.9995998481227752,0.9998606955706659,0.9999768223389195,0.9999139825864108,0.9994505864793233,0.9997509728718467,0.9998565018012353,0.9999884300306793,0.9999945462195176,0.9999842897666266,0.9991069293230753,0.9999475960505289,0.9992654440155466,0.9999062172635436,0.9996352873349341,0.9997489538292447,0.9999748618919474,0.9999997853192882,0.9999939303967702,0.9999984063674664,0.9997104199771519,0.9989828147335568,0.9977966688255798,0.03420155595622919,0.05193725121963635,0.6895747823167705,0.9999903494678901,0.9999999997956721,0.9999997447821359,0.9999999806718466,0.04675087437721219,0.00018851167157838943,0.9994926581051143,0.002121204552586715,0.000344256470211728 -फल,object,0.9942912909971979,0.9933203770388864,0.03299587920937869,0.17898819443162453,0.7718186174238009,0.9998327948974085,0.9999813321724276,0.029572195961466978,3.5489951656676665e-05,0.000199896935826159,0.8866250132820322,0.9999985387643899,0.9999995069985262,0.9999770630089528,0.999816138665365,0.9941015470646656,0.9987036997336899,0.9117579327124736,0.15887428858134034,0.9829949190642602,0.99001624694797,0.9852806027596894,0.9699260472568919,0.8958018002807753,2.587587690947491e-09,2.898220204751967e-10,1.2091709926470229e-11,4.7640168627190845e-11,2.9573098438144108e-08,0.9999955090367975,0.9995972672644972,0.9999596708598291,0.9492456091951433,0.2481349163562039,0.910965296560297,0.9984515556578702,0.9816630765764657,0.05082514508604564,0.36025440766427497,0.10760089235822914,0.997839108576968,0.8791121481933017,0.9323032351686195,0.9999993884277393,0.9627633173134637,0.9998955236661689,0.9999714524444027,0.999999208346729,0.9999962334393452,0.9999188194343777,0.9999558915333272,0.9999920457005795,0.9999956989661245,0.9999980422864244,0.9999982286948026,0.9997368414864958,0.9999810986083868,0.9999079201850227,0.9999886340947378,0.9999309572453732,0.9997287132488087,0.9999806541686074,0.9999852908518299,0.9999307407502757,0.9999977203205004,0.9999849403980381,0.9999200547384335,0.9972745131771746,0.965786500422483,0.998301975251085,0.9999033248718447,0.9999969391157516,0.9999944606666573,0.9998542277228916,0.999966867059703,0.0011119264789604972,0.4724064233101517,0.9912565872686653,0.9667092023882494,0.21550272985458896 -फिर,rgb,1.0801187684568345e-10,5.114046558258973e-11,8.887879736457092e-11,1.7824102712472671e-10,1.0569099760639369e-10,4.366228836948041e-06,2.856117304712923e-06,1.152697000996494e-05,0.0001239531971287178,0.00018360786801365706,3.106087287549073e-05,0.00030588208247566556,0.0005160309120213815,0.0005585701144610393,7.603928169338029e-06,7.377948612731773e-06,7.194699527195534e-06,7.035709492136806e-06,7.753032487225289e-06,3.423647425254745e-11,5.069798492721905e-11,5.4491458976931335e-11,9.623977403407222e-11,1.6661604245201206e-10,4.870843786614771e-07,3.6928307823452905e-07,4.122832267287793e-07,3.706155857856466e-07,4.593940929703854e-07,7.967314461344567e-09,5.1386470690868325e-09,7.116076913036187e-09,8.009663273216124e-09,9.09960145747796e-09,1.2684295666962914e-08,0.9999663894151052,0.9999629192420043,0.999978000970803,0.9999707715200328,0.9999760204378293,2.1707729585345316e-06,3.119903419572113e-06,2.9083805056274717e-06,2.6286199711942495e-06,4.914078488397313e-06,1.7635510208893654e-05,2.3094524193272084e-05,2.3597250722674736e-05,3.305185779093486e-05,1.120394944319265e-09,1.3480781110630293e-09,1.3204800447771905e-09,1.7765941533910206e-09,2.163249179381008e-09,0.0006802400126316135,0.0018356082970506153,0.0010556931442725738,0.0024974692381641754,0.004487264595618317,0.017235391789314804,0.02014966869978769,0.0552010845830997,0.02624928004784548,0.037400400947621364,0.07154486817867477,0.07130466067577003,2.722449616892146e-07,3.783689104073875e-07,3.101061867276218e-07,4.1370108580583196e-07,3.5998498197944515e-07,0.9992443550464134,0.9993644295264853,0.9996401662015988,0.999685729488714,7.431053255474804e-11,7.739488790033965e-11,9.622142351690499e-11,1.5945573672255698e-10,1.2659188049653083e-10 -फिर,shape,0.0001663687526613502,0.7574602803002278,0.026539464722872236,0.004599519704687932,1.2148339633018195e-06,0.40201916767102275,0.0008148495306543038,6.570866817086518e-05,0.010916189753853212,0.9605370888795647,0.9756824634946578,0.0022836678867244795,2.5874455252010046e-06,0.018865759180338115,0.00010237036899724915,0.0023140894411632306,0.0022925608813762254,0.4179773874154402,0.9999216416446179,0.2986342231934184,0.997834544732631,0.6117353806039876,0.77852490959004,0.9891649073035875,0.855107098996096,0.9844563131970138,0.9969357659087712,0.9985555891352139,0.9974519956912782,1.190281872709048e-06,9.573638930700481e-05,1.799599808799329e-05,0.0015600381089494254,0.729709165079228,0.4000937784211492,0.9997694199735471,0.9999365691267825,0.9993309855742056,0.9991755617827895,0.9995813932749265,0.015653596651396474,0.02391538521336164,0.04404473399473994,0.0013218750978076985,0.9726575493161798,0.7879841082550937,0.023895885960176538,0.003712743523416677,0.08057356580887504,5.79897594083012e-05,7.472934458518533e-05,3.3228828424573014e-05,2.8891641193908934e-05,0.00013168513566296714,0.0009326845285518019,0.6646601460426352,0.002194445132072943,0.00045139842369932215,0.0002009825825019954,0.006430239950743139,0.0002202213039027471,0.007343356533452054,0.31523688480094675,0.04687087822029731,0.00012086588120637634,0.0028920556171767053,0.9573113631889795,0.9986547473847596,0.9998938324249608,0.9322700709846867,0.3695086402364846,0.001308231362608656,0.00017563248955733125,0.0034918707772505775,0.006112084665274275,0.749926891443742,0.0015376574207948451,0.019260829473030188,0.7396032536714635,0.9955910419819235 -फिर,object,3.205589623348479e-09,9.794121235592841e-10,1.0656993084296243e-08,7.207282662427088e-09,3.086486636956188e-09,8.976208051929575e-05,3.9984946049755884e-05,0.00014688751673145814,0.0010268236545904212,0.005424118367767107,0.0005887944385307465,0.0011924235035509774,0.00180640834790267,0.006634695935784494,4.472929113200136e-05,4.991878670242215e-05,4.7438279612223067e-05,5.988723666696893e-05,7.628971331440514e-05,1.7051837155714306e-09,4.8688850960438195e-09,1.6976274608010733e-09,3.5870907227578505e-09,5.4351681304323215e-09,6.042570775473302e-07,2.646320592482436e-07,7.60484590091064e-07,7.519094246142733e-07,7.041098162867829e-07,1.6501568601516268e-07,2.0909008569521266e-07,2.2882283177254527e-07,3.591402050833477e-07,4.97870289362859e-07,2.726601808151861e-07,0.9999561808810917,0.9999689429080343,0.9999620158008639,0.9999351304795936,0.9999446304548237,8.713535137728885e-06,1.720655198703704e-05,1.2499825678027044e-05,5.660576751837532e-06,4.723914816950405e-05,0.00011452297765540781,0.00011393018582910466,6.0935476426332235e-05,0.00011392780381992132,2.26739280675876e-08,3.051769488525693e-08,4.167732961136215e-08,3.955278899696818e-08,5.1550161788985214e-08,0.0007785639508150861,0.0035105380824794236,0.0015880314378196034,0.0013655411421243122,0.002902738736950343,0.012809847578083603,0.014645287361510896,0.03984808082784994,0.0075798770704029765,0.011794411207529462,0.01376806438817585,0.012952436432944376,6.370955142725825e-06,1.1830861930041518e-05,2.6849136093501543e-05,1.2081484400268735e-05,7.615543535870767e-06,0.992643686137761,0.9948122135122931,0.9974840308364628,0.9974684939897681,2.6901947099469664e-08,3.742827103716527e-09,8.669422332029522e-09,5.806403950838775e-09,9.306761297579314e-09 -बंद,rgb,0.9998537325237513,0.9981063465723615,0.9987257779894684,0.97407698236674,0.8674309438994101,0.0001265604309210713,3.485617889251209e-06,0.9999918643956915,0.999999232412326,0.9999994610195594,0.9999791873180034,0.6324057297207952,0.5464372610163307,0.5699786990096519,0.9983771087286819,0.9979745827449674,0.9975796654665594,0.9971759288276412,0.9974936688282902,0.9356644132735229,0.9536460905539008,0.9349611832969154,0.8250005537654781,0.9595575843466901,1.0,1.0,1.0,1.0,1.0,0.3425575144683742,0.09954459358334405,0.23091018694547816,0.19191739407087782,0.20551285084585227,0.21028224297206302,9.470986341785167e-08,5.384790620747915e-08,9.38801297521654e-08,6.149461049421357e-08,3.3684323777129865e-08,0.9955364181782199,0.9972999358062636,0.9952764623311718,0.9906913773998384,0.9880895294089411,6.634907468554144e-12,4.9914101399848196e-12,4.978015191994462e-12,3.826583552854736e-12,1.311352207695307e-07,4.160773812540083e-08,1.7072628360620036e-08,1.002312009320896e-07,8.353217887871756e-08,3.2632877226101833e-10,3.8221447330565825e-09,3.742605876559809e-11,0.999270470561543,0.9974756589746371,0.997717279098727,0.9865520278556039,0.9291516841897309,0.010404058484020356,0.009035285466830884,0.02027276727726419,0.01982387870541086,1.793608131501209e-10,1.7978444072379381e-09,1.3239572207213716e-10,2.1366600327317634e-09,1.267352955188577e-10,7.934433150783387e-11,8.662854161926703e-11,3.9813116959674595e-11,5.7710508075889804e-11,0.9906401457323704,0.9864522984512851,0.9824706143554902,0.9961005780226944,0.9904908400166375 -बंद,shape,0.9838087214223347,0.06837680196945159,0.01768735308423397,7.087722481962942e-07,2.0362085120371695e-06,0.00018832868577696929,4.1014813872653805e-06,0.9999975291028764,0.9999999515990389,0.9999892818496464,0.9998339540814493,0.0004952747337892834,0.00044433159560812544,0.00044613454341633265,0.00010123338392338723,0.0004016161600569185,0.00020022414594328235,5.326053352298917e-05,0.00018404610026754282,0.00014265184062374958,0.0010347463963618466,0.00013825693748000108,0.00024849074802688997,2.0101920714157003e-07,0.0005391622990724175,0.0037522528415612553,1.1644551719356718e-05,2.5344818777322895e-06,1.9645401415782637e-06,0.00029074061157154275,6.061301056965758e-05,0.00016933368466373874,2.338873473932287e-05,4.112035359930593e-05,9.63755183537856e-05,3.1430535441419246e-05,4.310991134432063e-05,1.020262516875284e-06,3.4735798416124416e-07,3.041310571259911e-07,1.313603001552429e-06,1.9018482213986758e-06,8.698826098825787e-07,4.3423324864238924e-05,0.013280312884947769,1.53284200630117e-07,1.9190563065276086e-07,2.393300972182509e-07,5.041506528200696e-07,3.544149295763732e-05,1.9716445964609082e-05,1.60415693287963e-05,3.286055948554389e-05,5.8278316428583944e-05,9.54421110733025e-07,4.050975095856246e-07,1.3161555140657615e-07,0.013938562609191064,0.003440886754497957,0.00016017484598849864,0.0006085778931496875,7.776434460789644e-05,9.37150547219309e-06,5.801907455808091e-06,3.2401408334896796e-05,7.487591614770662e-06,0.00014206794747100506,8.674156655237675e-06,1.941271485096414e-06,6.24984435899639e-07,1.277218134380812e-06,3.463343470357059e-05,1.1580066161827662e-05,5.403896692268313e-06,2.9469253681046655e-06,0.002135888565305897,6.468717592723352e-08,1.8173101805900316e-05,1.641130622853578e-07,3.029262148822622e-05 -बंद,object,0.9988846799893698,0.8629512103003729,0.7621636788558044,0.0002603788086937498,0.0001676119525141062,0.0001896585614484965,6.963808508802775e-06,0.999998676043167,0.9999999052470899,0.9999971157978944,0.999942512903434,0.013084520890866775,0.00456904601863394,0.053886664669373946,0.010529221687941117,0.015657166536766708,0.010445690669230588,0.006191367698325946,0.011160362610114808,0.0517797008453841,0.1552446581519413,0.024914171468212606,0.029762944130132026,0.000283953826436522,0.9999243022041496,0.99993045482686,0.978130457844412,0.9568704395366268,0.9361122283815063,0.0014042801455708828,0.0004828724335124019,0.0009045874933929498,0.0006255884048750982,0.00036900906480266253,0.009376353597894797,0.00019601909668971677,0.0001868882288150154,7.368311330648761e-06,2.9125996453322078e-06,5.675157532198936e-06,0.004812072124984993,0.007942949532283125,0.003897407564719032,0.03124808005271108,0.6140905181296391,6.149339723506274e-08,5.127896721352466e-08,7.019136667396456e-08,1.0737635596056462e-07,6.851684375401679e-05,3.992468030377272e-05,3.3379256241632954e-05,7.283342061461533e-05,8.627928200838563e-05,5.066587761319862e-07,5.824189860233484e-07,1.0486789476152806e-07,0.8783420046347105,0.6593655060815612,0.25964225788061857,0.26216986042614154,0.08135452297246272,0.0002752459617530003,0.00017682672077437388,0.0005784451188031661,0.00045107076226366444,2.4675992188373914e-06,1.2356227643652157e-06,4.887478889225334e-07,7.790954892997397e-07,4.925400537974852e-07,4.148371003354497e-06,1.7574981500995575e-06,1.0727735646142668e-06,1.3606734507456562e-06,0.15831136120288994,0.00010849323871962204,0.010283685358143784,0.0002773279281727031,0.014719094353368609 -बन,rgb,0.9999999999567495,0.9999999999740619,0.9999999999678513,0.9999999999478748,0.9999999999483189,0.953064256212766,0.7468820677773351,0.9986901708735909,0.5914351250427251,0.3228349171316926,0.9881224865049653,0.06526845010814365,0.014282696376276511,0.01183965491149198,0.9995981691367394,0.9996185574511832,0.999634368257262,0.9996475826407089,0.99956522522331,0.9999999999709703,0.9999999999690283,0.9999999999664861,0.999999999947139,0.9999999999468083,1.7333147458598862e-07,6.276326402484454e-07,6.2096169990409e-07,1.4973158467322821e-06,6.500901541377506e-05,0.9999999938054531,0.9999999936579287,0.9999999934944912,0.9999999916816033,0.999999990438024,0.9999999850188812,2.968364775119596e-37,2.5645360031467693e-37,3.6327454785667955e-38,9.247989623701139e-38,1.7538967727190112e-38,0.9999720990141122,0.9999421876156842,0.9999474956767469,0.9999540078813777,0.9998121563718388,7.542609791596467e-09,2.575934846459846e-09,2.436541566730671e-09,7.203257501624367e-10,0.9999704992730082,0.9998729809596107,0.9996455532111531,0.9999379303939446,0.9999069714363156,1.3097480903309306e-10,1.5255887164649613e-10,1.9911637308051934e-12,0.0006392206688384599,9.811634075536728e-05,1.4522139652636883e-06,6.644972798271528e-07,1.4863033675936083e-08,1.0747357130291657e-08,2.99749656779803e-09,4.733619426414569e-10,4.735176232969236e-10,0.005125393255575572,0.05519686306039966,0.002670118506808097,0.05778146559300667,0.0019177489600738136,1.0372315755443902e-34,5.309570077716871e-35,1.2385367839624636e-36,1.1265491945461404e-36,0.999999999969649,0.9999999999683202,0.999999999964269,0.9999999999575193,0.9999999999610152 -बन,shape,0.0007168713930298665,0.8045033618448526,0.005729411268243053,0.9342529443310444,0.9822848109564416,0.9999706062648988,0.9909090431713693,0.9988611927351637,0.9999893785874351,0.9507461606806443,0.001339584891301487,0.996781940441646,0.8874912425425446,0.008959448264820244,0.9999991838819405,0.9999985837035554,0.9999984962407054,0.999999941529753,0.9998819839074575,0.1963193298171162,3.933237013757353e-05,0.001563086145278091,0.006809135311386136,0.6971873406967928,0.9986376714436537,0.9999931178523187,0.9807804717852832,0.8650002971121697,0.13351836338795595,0.9999923620399154,0.9999341604461847,0.9999934446000219,0.9999437932780728,0.9999943209878404,0.9998853122222588,0.00011926232475134475,0.001271901985742402,0.9999999908814973,0.9999999930974386,0.9999947263407855,0.9999853419571444,0.9965220580580334,0.9941101087418023,0.6439935731094892,0.9709767560554621,0.999818792922392,0.9999603335263494,0.9998935583145557,0.9972949269094479,0.9999366775268622,0.9999382370797549,0.9996661406706451,0.9999420575175402,0.9995781422936441,0.9976578006875663,0.999983197071176,0.9999926668991155,0.9960854446889937,0.993871040629125,0.8709360449565797,0.9964551471570836,0.9971005287789481,0.9991399452658656,0.9927015220717658,0.7313158819498893,0.993925821457272,0.3045228744911906,0.9999091281893671,0.9973077325932346,0.6659151206527838,0.7767549286156041,0.8381057756825394,0.9999919454415379,0.9996877295070713,0.9644290422125338,0.8547387000951495,0.9935840588233557,0.8440221105298323,0.9999879537590368,0.848509673234744 -बन,object,0.9975088791324696,0.9996689864529532,0.9323686613260995,0.8879245962240553,0.9999939558576605,0.999999980290127,0.9993858972473929,0.9992802750276786,0.9999773384113315,0.44381420533534977,0.32193524671725204,0.9987147519298063,0.9999386370916052,0.58617679211815,0.9999948947358381,0.9999925455200475,0.9999888728970694,0.9999718450631359,0.9993946662032488,0.9962487194782548,0.6122714212150826,0.5384978078301023,0.6821011238504985,0.9879714358566326,0.0010088466989094753,0.058757997310268706,0.0003451509838973336,0.0004075855218604122,0.00013432876557942626,0.999999707829167,0.9999975650980477,0.9999996170534381,0.999937448355015,0.9999964083919126,0.9995947717347629,2.255598782317642e-08,1.3201817300197963e-07,0.8153037961395071,0.885681795415147,0.30534406056925045,0.9999837634941735,0.9990895396663807,0.9997600132810661,0.9831455889382815,0.9999730992625604,0.9998130465106135,0.9998867582728687,0.9998449405976363,0.9990285985549383,0.9999710665825737,0.9999374488700964,0.9999165901833729,0.9999680461822146,0.9999376130791192,0.9996959407758742,0.9999074675201715,0.9999372398751482,0.8523842884332336,0.8802512565099143,0.21360120077848369,0.8599525173373308,0.6765021796844027,0.9842270128300732,0.9894657943957135,0.6282824823784344,0.8004709688636602,0.9945776790583654,0.9999803183001751,0.9996784287600302,0.9958161747426514,0.9931394644846055,0.04631520144416281,0.7025341093730603,0.5155065157730091,0.00553748523592893,0.997234885732101,0.99999706450609,0.9141206183504613,0.9999996426317657,0.9810766476077482 -बहुत,rgb,0.04000527911225295,0.0002523370208420718,0.002826206241825062,0.0018012516577383903,4.468714956384545e-05,0.9999771666218459,0.9905735364597914,0.9999999999999998,1.0,1.0,1.0,0.9999999999999973,0.9999999999999989,0.9999999999999991,0.9999999999999019,0.9999999999998668,0.9999999999998295,0.999999999999788,0.9999999999998563,1.611459049870723e-06,9.976429112737135e-06,9.004061295206655e-06,2.2445782892511178e-05,0.0008843507294083274,1.0,1.0,1.0,1.0,1.0,0.8785456555386132,0.22795418715308527,0.7287068848756341,0.750602313199167,0.833457565413401,0.9374103560926933,1.0,1.0,1.0,1.0,1.0,0.9999999999908888,0.9999999999980356,0.9999999999957847,0.999999999988741,0.9999999999974865,2.5387101821491894e-05,3.253065399879174e-05,3.4326833146575645e-05,5.431986743431038e-05,2.7012490562679338e-11,9.021703203775177e-12,2.146560899025837e-12,8.671675158212001e-11,1.2821019905205867e-10,0.9952206137604735,0.9999910701132029,0.9489672857115774,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,4.019442015474851e-08,4.29957916171177e-06,3.61526078623343e-08,7.34408072313773e-06,5.2567114879589387e-08,0.9999999999999953,0.9999999999999971,0.9999999999999956,0.9999999999999982,0.00021339768501418512,0.0001709290285440276,0.00029163863978725745,0.008072370199308301,0.0014650721494294235 -बहुत,shape,0.9999803360458515,0.9990758909203561,0.003518157481618049,0.8994133035603568,0.9984398977265522,0.9922564083455434,0.8537896284480256,0.9999999989257926,0.9999999998862548,0.9999953184921345,0.9999999548039491,0.999999997241007,0.9999977494278192,0.9999222092777433,0.9999581900373846,0.9999885954120139,0.9999433122385484,0.9994631137393104,0.9997265104248868,0.0013027806333763248,0.07248785935031454,0.4309128929185957,0.5282297175763346,0.0027068048452154304,0.0013813251408782647,0.0006242671039476479,0.5167818889117256,0.9207774059901807,0.40023855293626104,0.9999959227649472,0.9999598610884409,0.9999451200127291,0.865217877953622,0.9729595959710321,1.917729226057623e-05,5.2066526848357156e-05,4.295204616144908e-05,0.0002173011230978768,0.00045490694711305133,1.8871112365084342e-05,0.9999998485886816,0.9999693614006843,0.999890559666454,0.9999967074820655,0.9999997012160853,0.0001989833785848693,0.0014583163422757302,0.0006343109144813675,0.0054488344643114405,0.00024418093266263574,0.0001780127475540829,0.0006028559767835549,0.25277026559052473,0.8126110158501483,0.992206032269464,0.0215348905967243,0.03146589368166221,0.9971068525868115,0.9862087911855776,0.3914442137727305,0.8921255043608627,0.9823945634876179,0.17631187502494516,0.9986252041883371,0.9988178137118396,0.7951470534909971,0.9645513021485875,0.9794812943824508,0.005276697650436521,0.4877210819036763,0.916947118565518,0.9029888168920738,0.9984580270999925,0.9944360710066713,0.6422168423016846,0.9625080409971726,0.020839421837335448,0.03204519733831298,0.0005982620458230043,0.00023607785950795305 -बहुत,object,0.08097877019280063,0.0030805382314034557,0.0006078004184979544,0.4097124559733135,0.30130718048992455,0.9664479951553658,0.6976863864767114,0.9999995315190123,0.9999999733790428,0.9999999755954218,0.9999994230140835,0.9999998393909841,0.9999999787566449,0.9999601570660063,0.9999999439281846,0.999999588024249,0.9999993022661405,0.9999905492052179,0.999949817923843,2.147224680511376e-06,0.0003366101003683285,0.0028662009903372403,0.00334334352373465,0.00040405686389197133,0.9998910988548133,0.9999211885995621,0.9999997933216117,0.9999998728320165,0.9999991413705319,0.9997693344369394,0.9960879766244998,0.9980264108771276,0.9877316053330506,0.613859216909776,0.00186191377297559,0.9999784737457793,0.9999604294063711,0.9999939243606386,0.999968577036632,0.9999561304112811,0.9999959975894726,0.9999955444201433,0.9999681152874303,0.9999527120368039,0.9999491091534881,1.718746179021392e-05,3.434396721786106e-05,4.365499255703612e-05,8.540748761027352e-05,2.611821578747619e-08,2.1558004014553387e-08,8.378797981045206e-09,2.3172632186400282e-07,5.02970953718442e-07,0.12237216784910625,0.10142533951099827,0.0074108921774817035,0.9999664713739096,0.9999025681526881,0.9998914845962272,0.9999646169527078,0.9999206608845507,0.9996387261065826,0.9999715583399974,0.9999950990304305,0.9999857533073544,0.0010212411160315025,0.0013072852239124954,1.9512101747219596e-05,0.0015872600413951393,0.0009695677244480284,0.9998560885187069,0.999970933393427,0.9998996512407778,0.9993189107278967,0.0010892317809352147,0.0005374790435540065,0.000758971320454387,0.0030521520391590096,0.00015637042023334467 -बीट,rgb,3.189626203835938e-11,5.154962419508966e-12,1.8109092733393775e-11,6.225228714350701e-11,1.6178097342612807e-11,0.002686462023604819,0.0004882398224120137,0.24458578646997134,0.9586753032080217,0.9787780943804352,0.6411553604693959,0.9677451258751223,0.9855895525895858,0.9875493235055871,0.09353617250556408,0.08723832823447782,0.08230761636813666,0.07815229589503869,0.09271243497895171,1.4743917991846604e-12,3.690191242334504e-12,4.152291639299218e-12,1.262333980545999e-11,5.104480641504952e-11,1.81344990500604e-05,1.2272923643675589e-05,1.570781383793008e-05,1.44905022060887e-05,4.60621854159142e-05,9.336427860530784e-08,2.9720071978237792e-08,6.797979030281257e-08,8.282882009237867e-08,1.0846219623769398e-07,2.112003463085535e-07,0.9999999999958975,0.9999999999944282,0.999999999997532,0.9999999999960034,0.9999999999961435,0.009492797458790905,0.019216517660073693,0.015981513373730636,0.012355069188035481,0.03640201993809329,0.00013116211628674327,0.00018756950825544528,0.00019462804854762682,0.0003152082812303916,4.343603383168687e-11,4.363169703676075e-11,3.073364852445288e-11,1.0389390567949846e-10,1.4706601085138728e-10,0.24793485624857775,0.8048820518922313,0.2297994786312355,0.999573613718141,0.9998141758102334,0.9999793675079102,0.9999802042105755,0.9999951786297002,0.9999438943515279,0.999967477709026,0.999990537303348,0.9999904403940618,2.333608972300569e-07,1.035315377138313e-06,2.653780440843608e-07,1.3037981126100217e-06,3.461204812956902e-07,0.9999999973787297,0.9999999979731065,0.9999999986546806,0.9999999990248334,1.0256434529473344e-11,1.080678807519273e-11,1.6975569372540002e-11,5.932656560189362e-11,3.2967740225438296e-11 -बीट,shape,0.9999990430681347,0.9999761904402015,7.28261978588298e-05,4.92582356160908e-09,2.0776577417354395e-12,1.9113513670649268e-05,1.5908362479202246e-12,0.9999975361490426,0.9999999596758687,0.9997531272086844,0.9999997270926756,3.31431653203822e-08,1.5295517659523908e-10,0.001168685887911438,7.669869102417832e-18,1.2295789118038982e-16,1.569184858670146e-16,3.948358360200977e-17,3.4557836755734353e-09,0.8780316677066204,0.9990031737520436,0.42555779348863587,0.8452591040063128,0.0005862216419394099,0.05345276093391472,0.43070701052859744,6.5354951812607325e-06,1.4364590248178223e-05,0.0005422481805458945,1.8183730158327897e-17,1.2685207438235242e-15,1.3368855522388824e-17,5.912017964651382e-14,9.873403541781666e-16,2.311120252675765e-05,0.0007229424244422259,5.011819231257673e-05,9.217651642305891e-13,4.78087531327943e-10,1.0320796895268046e-07,0.7817798458351347,0.9979585689863587,0.9999772731560675,0.9999998682381104,0.9999993382159705,2.0219289479698926e-07,1.5677549177102345e-08,1.8012651198112558e-07,8.57019747663419e-07,0.00032648694457478603,6.849537035776872e-06,0.0005636398268743108,0.00016642293268525444,0.006274085970441489,6.853923995178807e-05,1.4066494695865033e-07,2.214492721980581e-06,0.9999165402000573,0.9999471535113474,0.9997574690497907,0.9996834631333333,0.9998935027828763,1.2992330584879338e-05,3.274516361284193e-05,2.3964557749039448e-05,8.353671569068672e-05,5.274406810573136e-06,9.249242667199633e-08,6.919927235015707e-06,6.893593797229179e-05,3.2414687135679036e-05,0.0008241532224161839,6.556143089299053e-06,3.9092353061526954e-07,2.5777534771847845e-05,7.312089765191586e-05,3.511277898883637e-08,1.1473958160564848e-08,1.8487967961713105e-06,9.331971163111277e-06 -बीट,object,0.011390358131875439,0.0002728287303128695,1.0436871044147203e-06,1.6332036771846778e-08,9.882056153645042e-09,0.00047922755445299413,1.6865065459475328e-06,0.9997803494751453,0.9999802052411045,0.9999656915878217,0.999923882846123,0.016146470777627996,0.0068313113964039935,0.1324095284806307,2.8198976394484453e-05,5.600277061917479e-05,4.095135406612651e-05,3.259478203955896e-05,0.0014261468454955725,2.8095632916231727e-05,0.0002904288246529138,6.657474832231254e-05,0.00015345735469045037,6.004130854531029e-07,0.08580800404383097,0.06373046944877094,0.0008984671283132989,0.0008500701275925112,0.004145640564590659,3.674424074854832e-08,4.536280122693163e-08,3.688539912099712e-08,1.8375378428315782e-07,5.338227703978018e-08,1.1696103126865957e-05,0.9999333420066215,0.9998397029890135,0.9979460660267865,0.9984681127359961,0.9995484380896699,0.03316118500086215,0.09749918291232866,0.1305895697705437,0.5043662278235119,0.9291615065800697,2.8128254588059607e-05,1.655606816421228e-05,6.907012049716808e-05,0.00017151887526802373,2.7402706604952827e-06,2.3147264539535124e-06,9.560642171027781e-06,1.3310626156792045e-05,4.8086504002499546e-05,0.019681444294072842,0.00452821370733261,0.004878128725478261,0.9999639863450167,0.9999745425548288,0.999949222311824,0.9999584572556423,0.9999748569630037,0.7416652034721861,0.7661913839925785,0.9450836851108938,0.9452048917709239,1.3570370888653454e-05,6.573841804188596e-06,9.312198076154586e-06,6.042116189843594e-05,4.935175463674673e-05,0.9994457431802366,0.9987814705900546,0.9957017096251548,0.9996980566598216,1.8689796581310865e-08,3.5509284814517856e-09,2.307420041817242e-08,2.426781336363962e-09,3.0873608062340344e-08 -बेंगन,rgb,0.011006999495356325,0.0028525610865196504,0.008466251793310408,0.025968800955302743,0.00788579464827018,0.9669786076792491,0.7097988548615151,0.9998403795033564,0.9999212688806998,0.999925901888568,0.9999080962939972,0.9998652873753495,0.9998642126216738,0.9998693040381533,0.9998111128950826,0.9998046094500516,0.9997988836786891,0.9997935497261079,0.9998063323303463,0.0009817918200527647,0.0022802875517387274,0.0025082884922206783,0.006242574088910149,0.02183983537823188,5.511770887671175e-07,7.671616167326905e-07,9.744585754689817e-07,1.4710145981762453e-06,3.857136559380147e-05,0.7794435652514904,0.5552659104117418,0.7228843922055065,0.7380576814864578,0.7722158230096241,0.8366346574353826,1.546148739469252e-05,1.0965138305411007e-05,8.317047426699244e-06,8.751052276482676e-06,3.87787694938813e-06,0.9995593104006063,0.9996676861320397,0.9996333154751008,0.9995766368256238,0.9997014211886013,3.985148189082311e-05,3.24945391571783e-05,3.2714951893394097e-05,2.7872781786766546e-05,5.296108425257646e-05,2.6213760751080052e-05,1.1361623570009266e-05,8.518466345440638e-05,9.762411141479735e-05,0.007770092271449265,0.08011541811580672,0.0008706723304763188,0.9999656532532436,0.9999617322928998,0.9999579207485675,0.9999450421644908,0.999906237318584,0.999199985597441,0.9990828813678381,0.9992319351320499,0.9992254435266404,8.404104647490246e-05,0.0011461183019102856,6.852845003488115e-05,0.0014585944704813352,7.47150374493112e-05,9.56453962518417e-07,8.569226344636709e-07,1.8141958994382233e-07,2.311860516531321e-07,0.005664294078185157,0.0059603296082413534,0.0088192194635447,0.02461104025997217,0.015438776003496638 -बेंगन,shape,0.0025054592001715124,0.00017553311597639967,8.582914477736332e-05,8.325711599847683e-05,0.0005842027355125047,0.016576567438493704,2.7067948250533235e-07,0.9617535886306453,0.37082254247144253,0.005936435930762168,0.06508743437607384,0.4438034415280119,0.00036945724309489167,7.119440184689156e-05,4.3130611381903994e-07,2.4652042064027004e-07,2.3956175844162734e-07,4.302759056866505e-08,1.6294440643343433e-07,2.0918740578034777e-06,5.16201651435303e-05,6.17125818948028e-05,8.056202738123277e-05,3.349390768968889e-05,1.268507360093715e-05,2.1579639484646942e-05,1.8741785906232164e-06,0.00015622493629367792,2.750611013790041e-05,6.071864643436996e-07,5.551917692858811e-06,3.6774755106094593e-07,6.176749399617152e-05,7.418313021160668e-08,4.96912022806535e-07,5.098903789862182e-07,7.377973231144376e-07,1.1923276047116015e-05,3.34517330777496e-05,0.00018814276785456674,0.9999987396740854,0.9999906373119705,0.9999906306722122,0.9999821381589924,0.9999289860453934,1.142027831924009e-07,1.0879117025257859e-07,2.868563353900531e-07,8.10650350114435e-08,1.0214959518085996e-06,2.388238321940935e-07,5.469475387361575e-07,1.9848044856841414e-06,1.1706648022582359e-06,2.117954481482105e-05,3.774745374365631e-07,7.2098349356526865e-06,0.00011815298699676446,0.0004674048437236298,3.806185417237839e-05,8.043650786122055e-05,0.00027421605353271757,6.705366544517418e-08,4.193772836819884e-07,9.881599372625116e-09,9.51164569981935e-07,2.2507806788517493e-09,7.603896688765473e-07,6.786494241301318e-07,0.00011493587474102275,3.1581222384228696e-05,2.3080302728997426e-08,2.7278895914964604e-08,2.2263743548045694e-07,9.590772673700294e-09,9.046433729368434e-05,0.06125153647036227,5.242607933569717e-05,0.002629261889329507,2.1123459801075664e-06 -बेंगन,object,0.012373862180552189,0.0012040689471512623,0.0004662642502307837,0.0011643011054767482,0.0037744569697507565,0.1408913203075236,6.8620511793853474e-06,0.9950020631432381,0.9074410386323907,0.1386710971712897,0.40675933370122935,0.956139348548321,0.026446574633294872,0.0018239543236108766,0.00014103176064667156,7.541093391209044e-05,7.165735388863562e-05,1.9003221804038085e-05,1.556832710336877e-05,2.7613436538077344e-06,4.082771958424911e-05,4.4697850569214856e-05,5.741804576837012e-05,6.866976280777935e-05,0.00023518033915048974,0.0004707738755217427,6.634963569631536e-05,0.0022255053274458664,0.00042595150212620817,6.301734954514894e-05,0.0002814525682083423,3.4496165110398115e-05,0.0011036037832335849,6.047971610660526e-06,4.129155843460489e-06,2.9526899723700033e-07,3.625606810884033e-07,1.4757915709678141e-05,3.6887864447558905e-05,6.509621692344476e-05,0.9999987581370918,0.9999918759154137,0.9999906478638253,0.9999855453566853,0.999928766660664,5.0815656924337223e-08,4.5635491758960274e-08,7.422766629821243e-08,2.2493460129202246e-08,3.3637004805249625e-07,8.898234796010147e-08,1.2032381528691426e-07,5.200348766532531e-07,2.7398989703997967e-07,5.6075245464933476e-06,4.689671975832126e-07,1.9222577239932027e-06,0.0005999247133518777,0.0014080708927031763,0.00015243281540331104,0.0002339720018600393,0.0005982689232108467,9.291280142211862e-07,4.406216140042379e-06,1.1815718141413972e-07,6.499275593065355e-06,2.985540764411076e-09,6.680089083203165e-07,3.401362320634571e-07,2.6263199372255744e-05,5.117766171732143e-06,9.167158048362965e-09,1.2174214621444701e-08,5.4422721489134075e-08,3.5944866384697063e-09,0.0006600172288341436,0.27158216036303345,0.0003660800266446683,0.04002113597159608,1.3810724787169882e-05 -बेर,rgb,3.5434971238661686e-11,5.855695284543057e-12,2.0248157662699583e-11,6.853381318394139e-11,1.8119198526763655e-11,0.002446818198282572,0.0004559891772450711,0.21630370770447463,0.949862628664336,0.9739672417896044,0.5993478910862021,0.9608063793318363,0.9822864174143162,0.9846652080041782,0.08172807921157396,0.07621895979314622,0.0719097513379997,0.06828076143259144,0.08101494096862852,1.701653183547578e-12,4.2094136088900695e-12,4.729765913792222e-12,1.4183374285094245e-11,5.6338493800998464e-11,1.8394823469959637e-05,1.248035746880389e-05,1.5922532234570714e-05,1.4678201283546357e-05,4.561796534370376e-05,9.429931238473994e-08,3.046055970747763e-08,6.894429365554858e-08,8.382607814213102e-08,1.0941609967277706e-07,2.114101741247705e-07,0.9999999999942186,0.9999999999921807,0.9999999999965132,0.9999999999943785,0.9999999999945899,0.0084083576842187,0.016910473725095163,0.014088107282031966,0.010919172162452716,0.03190121508846419,0.00012919309987947792,0.00018427329960146315,0.00019113676480364108,0.00030833894553346713,4.914328225118533e-11,4.9492555399617445e-11,3.5085368738634444e-11,1.1638661556722705e-10,1.6413349898124336e-10,0.22832025692502234,0.7818131327167949,0.21272783374728021,0.9994534175000034,0.9997600240568425,0.9999728062417385,0.9999739274332895,0.9999935781809443,0.9999275784260013,0.9999578251860803,0.9999875766965137,0.9999874510734819,2.432438369095435e-07,1.0539446487827609e-06,2.7649298733027804e-07,1.3232095857034924e-06,3.5960599361409555e-07,0.9999999965604225,0.9999999973349558,0.9999999982343424,0.9999999987151065,1.154798901078785e-11,1.2159737271728665e-11,1.8993053929985154e-11,6.534647497606851e-11,3.657951986428174e-11 -बेर,shape,0.9999969104616926,0.9999961920402929,5.981487244744318e-05,3.7869052599186954e-08,4.280320317816078e-12,9.57358472117271e-05,3.263860506520266e-12,0.9999990147553354,0.9999999919668844,0.998457234673638,0.9999999368979924,7.021074117426616e-08,4.5472468949093435e-10,0.0002701814025011801,3.7478503280369107e-17,9.262070280459433e-16,1.6181662583759043e-15,3.4349494074512176e-16,1.6870448647529334e-08,0.8397848486094315,0.999189569928172,0.6372490319937397,0.9356752552226524,0.012506567836926854,0.03293823244198175,0.8400813867991578,2.374752023385497e-05,4.997082922657763e-05,0.0028701461093896125,1.4846846323041043e-16,1.031508666145935e-15,3.6647771049854096e-17,1.5430721298166883e-14,2.871411753132992e-15,3.412357856191138e-05,0.00042749611331923705,5.608765597265998e-05,7.97821978211031e-13,1.0396061528806162e-08,1.8606095855800127e-07,0.9672442663285536,0.9996607928931229,0.9999968685223588,0.9999999987555668,0.9999999809570063,4.314591265186536e-06,1.98754053484985e-07,1.5988284512724958e-06,6.081473331844028e-06,0.0006194711722241612,1.1881686938640706e-05,0.0008715545758840119,0.0004129797264006143,0.0149942262068638,0.0009951615923797692,2.227184125731894e-06,5.615900657879641e-05,0.9999680717497527,0.9999862686739619,0.9997393131410792,0.9996041790497279,0.9999832111846677,0.00046259927491407513,0.0003938897948748435,2.1958934266236632e-05,0.0001206037284201483,8.208342786428005e-06,8.930087938110269e-07,3.184219264310919e-05,0.000844135299383213,0.00031476484248130877,0.0015654064366626417,0.00011491494277327913,4.725606443778587e-06,0.0006697503633474858,4.2634226642830336e-05,1.9931181058417665e-08,5.8880928581677304e-08,1.0107496045838679e-05,1.3745834733959764e-05 -बेर,object,0.0037420548727466244,0.00010613878131083476,4.0169307746809135e-07,1.6126444236358536e-08,1.2160527864321836e-08,0.0009549143651041549,1.6854996249920692e-06,0.9996638575209505,0.999966348440238,0.9999606796877784,0.9999372021921542,0.016129905284873364,0.011235255504959957,0.1181387933173669,3.956029045998601e-05,9.18253333574414e-05,6.88762766633551e-05,5.488702881896327e-05,0.0032212646069486135,1.9208001567134138e-05,0.00019787605883709626,5.689271229786858e-05,0.00012800541844646264,1.5112080764714906e-06,0.029385839197976386,0.029954743130700658,0.0011983798345380017,0.0014681449374003197,0.009079430987046652,4.678808608402075e-08,4.9352423909540766e-08,4.805900119176289e-08,1.9758775076585252e-07,7.86002878874649e-08,6.0942921753660295e-06,0.999959581372473,0.9999237249680764,0.9991559967724548,0.9994703021854041,0.99982121402055,0.04445607602510909,0.12686648242443155,0.16577671589437598,0.5959354013089943,0.9492588292578131,5.9196826816941485e-05,2.7196308250258623e-05,8.821031947061676e-05,0.0002331901870935935,1.8192204392386458e-06,1.4315820199426093e-06,6.911296634443619e-06,1.1565878859622973e-05,4.6956126138918825e-05,0.04815122280974578,0.010028672419140048,0.012302349858686354,0.9999456393516177,0.9999713091348644,0.9999622002162061,0.9999676961802947,0.9999846551051277,0.8873390515041429,0.8654872658578007,0.9553156234019253,0.9407593092819913,2.654889370613363e-05,1.7071157562181004e-05,3.208485724060772e-05,0.00016217747941452425,0.00010362117797472791,0.9995861917771754,0.9995271460112787,0.9982016454273793,0.9999127559805442,1.445230530974095e-08,2.6110424610605207e-09,1.489625181504571e-08,2.0964803043193588e-09,1.9329295945409265e-08 -बेलन,rgb,0.999593172731757,0.9999626432590644,0.9995159513785571,0.9730339515357072,0.9972345939867817,1.4710865406900928e-09,1.409319434183202e-07,1.1926705668863687e-11,3.1761204352606975e-12,2.8727149133578378e-12,1.761794206143536e-12,4.547404606686344e-14,3.54980271662611e-14,3.3025841898555715e-14,2.472701271548006e-12,2.473871525274951e-12,2.4850597293451613e-12,2.5019271234084318e-12,2.201822450384187e-12,0.9999889370958186,0.9999219893794248,0.9998855408884376,0.9982356224050155,0.9789873997436533,1.0,1.0,1.0,1.0,0.9999999999999254,2.6069672765658864e-05,0.00018463877291089494,4.424496553780612e-05,3.269537999579345e-05,2.1173271319370276e-05,7.455338497973285e-06,0.9958939350985354,0.9977752625515955,0.9989411055332943,0.9986852957711071,0.9997444548264728,1.6688414732475488e-11,9.553799066594138e-12,9.845197751576865e-12,1.0848365389499567e-11,3.7041071071767264e-12,0.990739660322922,0.9931591431972745,0.9930062970049733,0.9942304293924615,0.9999634797694099,0.9999886347904222,0.9999977764937757,0.9998605632317598,0.9997832687533711,0.0007729030226032847,5.375458319971603e-06,0.050599668464949475,1.4749001993083233e-14,1.0149544859437187e-14,9.499073044179442e-15,8.543160558790853e-15,1.1941152414375632e-14,1.404756101613806e-13,1.6792099071494097e-13,1.288253259682409e-13,1.3035938635256643e-13,0.994583639772573,0.4650805266143361,0.9961065729117499,0.3397756221900042,0.9949688425049292,0.9999567996014493,0.9999664180097488,0.9999986649193192,0.9999978845243499,0.9996100565319475,0.9994855435966178,0.9984750926605425,0.9889346571080788,0.9951386818014071 -बेलन,shape,4.036974371071297e-06,2.3305908500250844e-05,0.9009502546160574,0.5795475242177719,0.026528114295037465,0.8340116968934312,0.3734457665621053,0.00012313969920564111,0.0008705009620967716,0.00021152435169392836,0.0010180232856244933,1.3639431202399332e-06,1.9733387504542002e-06,0.0004933274280592821,0.0003003188960619213,2.0135159329516424e-07,5.774584812857567e-06,7.758248913315121e-05,0.0025503379831487527,0.004544850728408977,0.0034747919955198095,9.929726969857937e-05,0.0003790264472838361,0.03190744805003113,0.5022450071778071,0.39281861719012867,0.00479858906312415,0.0011662344306866382,0.00013015753224220966,5.024813045615458e-06,0.2397645854909796,7.810450905438343e-05,0.8910660221140876,0.05830056139886489,0.9695430422925271,0.9998196025307331,0.9999193276424476,0.9998132661467036,0.9999171565602976,0.9999643587586224,0.020946259761208483,0.00794692363176038,0.004575679819746419,6.088514336955155e-05,0.966334207017801,0.0014990334685646128,0.0005502437647157072,9.747660886834512e-05,1.2876225390228904e-05,0.10957820688790676,0.031395703614569774,0.08218248402295254,0.0012021581557370197,0.00010241979204412658,6.049708707640319e-08,0.008868913104561534,0.0001513474951890624,0.00015707653843378071,0.0005020291239013725,0.008122663032905987,4.816940120905008e-06,0.01033890940395489,1.5761514889791864e-06,2.50506247519503e-10,8.651535837446536e-11,8.663498394147901e-08,3.0610654297980533e-06,0.005756478434543836,0.20350415321616175,0.019929561750680946,0.000648339437845657,1.609001227662535e-10,3.812501550561634e-08,3.2971353581738826e-09,4.4535774735820415e-09,0.9322223047850625,0.9990527262405824,0.9997894330945324,0.9999991812318569,0.9999622218108691 -बेलन,object,2.646667138824457e-06,6.014850316358082e-05,0.9803354051112333,0.03242770447979046,0.001131219779014734,0.06820880171928208,0.0006631167152855427,9.505721435040006e-07,8.238833382708979e-07,6.746616751763167e-07,1.3481204525134819e-06,2.6961104079983035e-07,2.2993699367661387e-07,0.000550950861656988,3.6281505583522375e-05,5.919644159460681e-07,5.279380478210165e-06,3.464826343829089e-05,6.575926041902724e-05,0.24989531139355492,0.05938201324199212,0.0011573471043578672,0.0018324718206857197,0.12166213419869394,0.9988853918887649,0.9955860118968396,0.9753314489572277,0.9630764272153867,0.2239226813286687,2.321017455404041e-05,0.0033519663046798517,0.00014206359071809743,0.03076184355011883,0.009442513835098745,0.7215717895225124,0.9998536444864925,0.9999545956855808,0.9998868178896807,0.9999161684882861,0.9998975976590906,0.00018607304831688037,0.000410032973130146,0.00015227486728951358,5.548687879532623e-06,0.010007435016584645,0.030493863136613248,0.02067069039040197,0.001679883540016738,0.00043491226030870967,0.4701530662533996,0.37875510012736874,0.7337048348914317,0.03502792593945604,0.005130574094885388,1.0852387528928803e-06,0.001261563460807031,0.00043675878468851277,2.4852191477997673e-06,1.2024839869167045e-05,0.00013395487116007294,7.345753087104089e-07,0.00022852212788041648,8.002904586770514e-08,6.582071726318186e-10,8.602955866081267e-11,2.7604023922171646e-08,2.2297631977124173e-05,0.008049817510213685,0.5996708065695711,0.07320179951864798,0.013593030399482498,2.528320674517916e-07,7.277105811399913e-06,2.445554701256487e-05,1.3255264377174898e-05,0.995637672898042,0.9991068120214628,0.9997700085956343,0.9998999443154812,0.9998085951845723 -बैंग,rgb,0.22187426938656452,0.012538366830330836,0.04321571529360421,0.014148657208888396,0.001405041630743481,0.011530302294357484,0.00012940802453065514,0.9999996001626632,0.9999999835271123,0.9999999896216197,0.9999996395171076,0.9996809941469273,0.9996649240324866,0.9997053647547101,0.9999745832205377,0.9999690287225518,0.9999636377560545,0.9999581711784087,0.9999647575045442,0.00037611941895044113,0.0010166168597859596,0.0008611883763177037,0.0009057934977476942,0.00875781095020021,0.9999999871881867,0.9999999839843157,0.9999999865566644,0.9999999862099778,0.9999999941086144,0.0803207957715599,0.01137466229829911,0.04329776652866369,0.04052069075601282,0.05105257281687933,0.07721802410693514,3.453780486708913e-05,1.7348436688033086e-05,2.670648922803506e-05,1.8061596307653645e-05,7.2242969318594416e-06,0.9998399368576668,0.9999214449374708,0.9998696945845714,0.999753197339692,0.9998201895449814,9.480061074973181e-12,7.484309705075698e-12,7.571500005457456e-12,6.434677813085291e-12,2.8921403889942274e-10,8.335320815612815e-11,2.4298346272365513e-11,3.986503073385698e-10,4.157706517707048e-10,2.766358388846667e-08,1.313599919938369e-06,1.5127398663549516e-09,0.9999995994914518,0.9999991620859414,0.9999995260418261,0.9999980399168197,0.9999935478668702,0.9930201015467389,0.9926884184998807,0.9973052196785706,0.9972400772591882,3.1292440288430864e-11,1.1601688997292022e-09,2.3000786578418118e-11,1.61160076191419e-09,2.5144978402849538e-11,8.03013839977458e-09,8.528069367857301e-09,2.1064865327111125e-09,3.4498286962688785e-09,0.007318341790900282,0.0058765854598342784,0.00695901723958317,0.05071478843819384,0.017879954637022393 -बैंग,shape,0.27686539460858955,0.00405176024776968,3.799605826310043e-05,1.53670139089966e-05,6.600339316072552e-06,0.9933538734776874,1.1524050525548556e-06,0.9999999921605282,0.9999999990038204,0.9999593885073176,0.9997881198677454,0.6462052859207359,0.6990257743638577,2.7023676199408576e-05,0.00012364890982293224,0.003975573946484021,0.002286718214375431,4.747023706679587e-06,0.002437501744703228,1.9218222765176752e-05,0.00046337570905492754,9.493076857267645e-05,0.00034795312375885713,1.2793003246150826e-05,6.292179533971549e-05,0.009229245380631138,9.811319442748869e-05,0.00045153283458006216,4.9850146097167376e-05,0.0005892984898773097,4.523970985660498e-06,3.63562982621121e-05,5.108505616246091e-05,1.6047670536428453e-05,1.0686855573824336e-05,2.067426631650388e-06,4.448120085834773e-06,6.814041910140073e-05,0.0004750456721031574,6.189745979274574e-05,0.9999923886959349,0.9999895095384369,0.9999610223568279,0.9999652536653711,0.9999761277891063,2.4324617186886643e-07,1.0384941925877816e-06,1.2486126100829919e-06,3.368354653769437e-07,5.07259651870654e-06,2.6541535893249645e-07,4.687648863418329e-07,1.171529308918689e-06,1.7480844217474822e-06,0.0001578862999939347,8.160675524528674e-06,1.5924849614926165e-05,0.008697547560666036,0.01586267349607805,4.6358961399513675e-05,0.001462747839454412,0.001465542769648672,2.2627337284116698e-05,1.8037005186929144e-05,1.8023313743940022e-06,2.4656206738006525e-05,2.622034236189384e-06,5.908441029862384e-05,2.4823327755971356e-05,9.527075496305793e-05,5.730010061192694e-05,5.8964537581900144e-06,6.270131938978156e-06,2.190488578809547e-05,1.1195514645123657e-07,0.0006746441628863505,2.6418078422750133e-05,3.528932364278147e-05,0.003234884523923343,7.396305947501967e-06 -बैंग,object,0.960544453771342,0.6866695843198398,0.07013800368314606,0.004628431257933564,0.005197767335928405,0.7703407398699974,0.00021745058869870724,0.9999999917178529,0.9999999946289577,0.999989780582411,0.999984758124148,0.9961787468593328,0.9887182804454737,0.020190917776190344,0.6584057107793969,0.7381968770496398,0.6983543892714542,0.07822166087392476,0.04011893815290834,0.003956303129329121,0.034330628435376084,0.003610145165189803,0.003963879252230619,0.0022130707181710063,0.98140223714448,0.9988393082531143,0.5910987602074639,0.9016266305481447,0.9188155240446044,0.2037080403130027,0.005603777371054606,0.024351520387588164,0.014887478524798055,0.001647257616946724,0.0006168676554284718,3.7331676266197996e-06,2.503673455385167e-06,3.133687111677403e-05,9.83946163599379e-05,3.0678440597580515e-05,0.9999910347039376,0.9999887223340751,0.9999890576346446,0.9999953267687713,0.9999713714008844,2.9200900919076116e-08,2.412675192686228e-08,6.621547202060525e-08,3.30053607014339e-08,1.599441599079241e-06,2.6650545144451186e-07,2.1607289599822597e-07,2.735677772097301e-06,1.8233226566263588e-06,3.4491376974280494e-06,1.2549309749362198e-06,4.5373628510334417e-07,0.8543088261860574,0.8634897263046083,0.18665663224213533,0.2321105071232209,0.26394269605688386,0.0013159519280778514,0.000877102477089639,0.0002760542849560634,0.0013868991485969228,2.5836920642465864e-08,3.307407907361393e-07,1.492465089110679e-07,1.3987187978630261e-06,3.8568066810304647e-07,3.6426887512334797e-07,2.5545800964836483e-07,1.390093549473597e-07,2.5728103619674988e-08,0.04402362768002619,0.09386107228678561,0.008159453782129598,0.6527881699683968,0.0020661968717465974 -बैंगन,rgb,0.281650502178836,0.013243377769532133,0.04753729023609363,0.011755872649140789,0.0009797754863513414,0.004195916922061189,3.399716266561259e-05,0.9999998453652802,0.9999999955253185,0.9999999973348173,0.9999998536011935,0.9996910452155542,0.9996739519422139,0.999717027818123,0.9999830809001362,0.999978907228596,0.9999747764260866,0.9999705185661093,0.9999755518669309,0.00027973319913602386,0.0007841700344811615,0.0006423507771501929,0.0006116412284829473,0.006952581591796747,0.9999999997936204,0.9999999997234221,0.9999999997668731,0.9999999997480937,0.999999999859295,0.04984366011328842,0.005895333954943602,0.02511940783055833,0.02306628276721551,0.029521416416511886,0.045697184349140337,3.236691959262126e-05,1.5418212834446472e-05,2.6018757949922258e-05,1.658064061179469e-05,6.448384746655252e-06,0.9998759562158505,0.9999428912980044,0.9998997040577098,0.9997963053399352,0.9998520527298279,9.869519129111993e-13,7.733538105929693e-13,7.830016153790835e-13,6.637407028634722e-13,4.53884012474042e-11,1.2010005352692588e-11,3.2685846950664057e-12,6.184886792752144e-11,6.386747227998298e-11,4.593780632926419e-09,2.777370924388435e-07,2.1955639476005867e-10,0.999999816370875,0.9999995812929835,0.9999997837444149,0.9999989499830132,0.9999961934516747,0.9917495052706051,0.9914469350621122,0.9971903179607986,0.9971159148350593,3.4796916342354273e-12,1.548704530158662e-10,2.513424148324145e-12,2.186694167546053e-10,2.753793058245756e-12,3.342128132533273e-09,3.626079716721881e-09,8.904448075532103e-10,1.5156346489584786e-09,0.006637573358954691,0.0051426079220452,0.0059536395610275605,0.050544714386526794,0.016304569751474384 -बैंगन,shape,0.1949804003551213,0.0011229060539229326,6.45760845070959e-05,9.987338032561698e-07,2.515250275672115e-06,0.998955735308887,7.753304465669114e-08,0.9999999243493636,0.9999999610827219,0.999885141378439,0.9997198363274947,0.8796732020016642,0.705708028495187,2.9993020687863758e-05,0.0002873422992807671,0.0021491202565952763,0.001739557346250837,6.210763407207868e-06,0.0011483177297922295,3.402495595857731e-05,0.0003531822654298207,5.150534379039476e-05,0.00018324429108212994,1.5546350560341016e-05,5.464185618294128e-05,0.00362993112180858,7.08931551138925e-05,0.0003585020315498924,4.945862705017267e-05,0.0004949307615747514,2.4673758498897994e-05,7.249040200661043e-05,0.000228237772064386,9.192950774458927e-06,1.8284119000509997e-05,4.396690598519053e-06,8.696216775072969e-06,0.0001241092013262397,0.0005481277959052301,0.00012684005678929738,0.999992125229814,0.999990174841176,0.9999646112093281,0.9999565993256654,0.9999731089835233,2.609247802593076e-07,6.424912509681946e-07,8.136721474394151e-07,2.234270500456008e-07,4.651224865030985e-06,2.3096428637143356e-07,6.074796461639136e-07,7.477899751045334e-07,9.647460412206894e-07,3.9090242237621224e-05,2.3897838197833118e-06,8.876955818799144e-06,0.0030794794944946006,0.012371081880458828,7.915873469211218e-05,0.0010557541083791601,0.0009417730508195582,6.057656798934664e-06,4.9504754938566445e-06,3.599352153228442e-07,5.624479598390091e-06,1.4220391558034871e-06,2.6250090815164438e-05,5.000788981919086e-05,0.00011845539161696694,4.281037189672965e-05,1.5803156838867833e-06,1.2003587210379128e-06,4.7460087310240875e-06,5.292425606420109e-08,0.0009361961046691739,0.000242463454284727,6.569709480478055e-05,0.010220685937391557,1.6186460496078793e-05 -बैंगन,object,0.9134605647661426,0.44906844316227784,0.06245996804538752,0.0012167561666865548,0.0022084125903959677,0.9059481125328696,5.0367107822300785e-05,0.9999999498036266,0.9999999448373288,0.9999472426258414,0.9999467434972563,0.9966021199067685,0.987944939344512,0.012185279323927642,0.649971401848815,0.6288046329745696,0.6253142147814894,0.06389688615414572,0.028400327320262375,0.003848633283149875,0.018914264345701703,0.002074219452981201,0.002204608810571405,0.0021600709075403103,0.9800646219488985,0.9983231523319147,0.5801380470871795,0.8961876087314319,0.910354224701221,0.13598646000709277,0.006653471938544347,0.020695884683741807,0.017811856081685604,0.0010863902524576158,0.0007110517087382182,3.5563043846125136e-06,2.3794950972522563e-06,4.5126807623340743e-05,0.0001361858935717801,4.5196903298398603e-05,0.9999915212413092,0.9999903156498747,0.9999896260204431,0.9999942684804085,0.9999655003808836,2.868663568291191e-08,2.0280050224858415e-08,5.484945968465435e-08,2.432134335612418e-08,1.444847964455708e-06,2.186214947815038e-07,2.1363639740167023e-07,1.8229916154550508e-06,1.1026430146699213e-06,1.8314111697891568e-06,7.343375085417237e-07,3.633241301162594e-07,0.7151369348145741,0.8042573054425141,0.16521362780833151,0.1625396722533116,0.18675892246523498,0.0005927120947257052,0.0004031097558855988,8.855928176292571e-05,0.0006141038130972388,1.605290065643045e-08,2.3344855134266636e-07,2.063071965779954e-07,1.6074105055299842e-06,3.3295241887926304e-07,1.703978259517517e-07,1.0389365532465067e-07,7.127144085183395e-08,1.5309132072081882e-08,0.039977004075569963,0.1932851662028366,0.0071334471230907704,0.8171893048025304,0.002412630407539259 -बैगन,rgb,0.011006999495356325,0.0028525610865196504,0.008466251793310408,0.025968800955302743,0.00788579464827018,0.9669786076792491,0.7097988548615151,0.9998403795033564,0.9999212688806998,0.999925901888568,0.9999080962939972,0.9998652873753495,0.9998642126216738,0.9998693040381533,0.9998111128950826,0.9998046094500516,0.9997988836786891,0.9997935497261079,0.9998063323303463,0.0009817918200527647,0.0022802875517387274,0.0025082884922206783,0.006242574088910149,0.02183983537823188,5.511770887671175e-07,7.671616167326905e-07,9.744585754689817e-07,1.4710145981762453e-06,3.857136559380147e-05,0.7794435652514904,0.5552659104117418,0.7228843922055065,0.7380576814864578,0.7722158230096241,0.8366346574353826,1.546148739469252e-05,1.0965138305411007e-05,8.317047426699244e-06,8.751052276482676e-06,3.87787694938813e-06,0.9995593104006063,0.9996676861320397,0.9996333154751008,0.9995766368256238,0.9997014211886013,3.985148189082311e-05,3.24945391571783e-05,3.2714951893394097e-05,2.7872781786766546e-05,5.296108425257646e-05,2.6213760751080052e-05,1.1361623570009266e-05,8.518466345440638e-05,9.762411141479735e-05,0.007770092271449265,0.08011541811580672,0.0008706723304763188,0.9999656532532436,0.9999617322928998,0.9999579207485675,0.9999450421644908,0.999906237318584,0.999199985597441,0.9990828813678381,0.9992319351320499,0.9992254435266404,8.404104647490246e-05,0.0011461183019102856,6.852845003488115e-05,0.0014585944704813352,7.47150374493112e-05,9.56453962518417e-07,8.569226344636709e-07,1.8141958994382233e-07,2.311860516531321e-07,0.005664294078185157,0.0059603296082413534,0.0088192194635447,0.02461104025997217,0.015438776003496638 -बैगन,shape,0.0025054592001715124,0.00017553311597639967,8.582914477736332e-05,8.325711599847683e-05,0.0005842027355125047,0.016576567438493704,2.7067948250533235e-07,0.9617535886306453,0.37082254247144253,0.005936435930762168,0.06508743437607384,0.4438034415280119,0.00036945724309489167,7.119440184689156e-05,4.3130611381903994e-07,2.4652042064027004e-07,2.3956175844162734e-07,4.302759056866505e-08,1.6294440643343433e-07,2.0918740578034777e-06,5.16201651435303e-05,6.17125818948028e-05,8.056202738123277e-05,3.349390768968889e-05,1.268507360093715e-05,2.1579639484646942e-05,1.8741785906232164e-06,0.00015622493629367792,2.750611013790041e-05,6.071864643436996e-07,5.551917692858811e-06,3.6774755106094593e-07,6.176749399617152e-05,7.418313021160668e-08,4.96912022806535e-07,5.098903789862182e-07,7.377973231144376e-07,1.1923276047116015e-05,3.34517330777496e-05,0.00018814276785456674,0.9999987396740854,0.9999906373119705,0.9999906306722122,0.9999821381589924,0.9999289860453934,1.142027831924009e-07,1.0879117025257859e-07,2.868563353900531e-07,8.10650350114435e-08,1.0214959518085996e-06,2.388238321940935e-07,5.469475387361575e-07,1.9848044856841414e-06,1.1706648022582359e-06,2.117954481482105e-05,3.774745374365631e-07,7.2098349356526865e-06,0.00011815298699676446,0.0004674048437236298,3.806185417237839e-05,8.043650786122055e-05,0.00027421605353271757,6.705366544517418e-08,4.193772836819884e-07,9.881599372625116e-09,9.51164569981935e-07,2.2507806788517493e-09,7.603896688765473e-07,6.786494241301318e-07,0.00011493587474102275,3.1581222384228696e-05,2.3080302728997426e-08,2.7278895914964604e-08,2.2263743548045694e-07,9.590772673700294e-09,9.046433729368434e-05,0.06125153647036227,5.242607933569717e-05,0.002629261889329507,2.1123459801075664e-06 -बैगन,object,0.012373862180552189,0.0012040689471512623,0.0004662642502307837,0.0011643011054767482,0.0037744569697507565,0.1408913203075236,6.8620511793853474e-06,0.9950020631432381,0.9074410386323907,0.1386710971712897,0.40675933370122935,0.956139348548321,0.026446574633294872,0.0018239543236108766,0.00014103176064667156,7.541093391209044e-05,7.165735388863562e-05,1.9003221804038085e-05,1.556832710336877e-05,2.7613436538077344e-06,4.082771958424911e-05,4.4697850569214856e-05,5.741804576837012e-05,6.866976280777935e-05,0.00023518033915048974,0.0004707738755217427,6.634963569631536e-05,0.0022255053274458664,0.00042595150212620817,6.301734954514894e-05,0.0002814525682083423,3.4496165110398115e-05,0.0011036037832335849,6.047971610660526e-06,4.129155843460489e-06,2.9526899723700033e-07,3.625606810884033e-07,1.4757915709678141e-05,3.6887864447558905e-05,6.509621692344476e-05,0.9999987581370918,0.9999918759154137,0.9999906478638253,0.9999855453566853,0.999928766660664,5.0815656924337223e-08,4.5635491758960274e-08,7.422766629821243e-08,2.2493460129202246e-08,3.3637004805249625e-07,8.898234796010147e-08,1.2032381528691426e-07,5.200348766532531e-07,2.7398989703997967e-07,5.6075245464933476e-06,4.689671975832126e-07,1.9222577239932027e-06,0.0005999247133518777,0.0014080708927031763,0.00015243281540331104,0.0002339720018600393,0.0005982689232108467,9.291280142211862e-07,4.406216140042379e-06,1.1815718141413972e-07,6.499275593065355e-06,2.985540764411076e-09,6.680089083203165e-07,3.401362320634571e-07,2.6263199372255744e-05,5.117766171732143e-06,9.167158048362965e-09,1.2174214621444701e-08,5.4422721489134075e-08,3.5944866384697063e-09,0.0006600172288341436,0.27158216036303345,0.0003660800266446683,0.04002113597159608,1.3810724787169882e-05 -भी,rgb,0.9899785078869732,0.9984676178422596,0.9968015229136395,0.9983246067859981,0.9995491450312881,0.916757221800118,0.9891141963020431,0.000361236009278982,1.4170552697765689e-05,8.455648357001855e-06,0.0002158403721193264,0.002545077630678624,0.0018549532616762717,0.001651699643746393,0.005501670180806795,0.006244336661150506,0.006919427398974377,0.007566887905003698,0.006555079750720689,0.9997944507902461,0.9996415266989089,0.9996716049458529,0.9996463530717451,0.9987259474605702,8.449487279392083e-08,1.307461598024679e-07,1.1923447711249265e-07,1.5068393689944227e-07,2.540813068704279e-07,0.9896631225140655,0.9966735746161882,0.9927871716452419,0.9927295056384273,0.9914467064731955,0.9880589349993865,6.988920091295341e-07,9.995098909867443e-07,4.941825666118026e-07,7.689532969767242e-07,8.768884998153962e-07,0.027545926240758252,0.015800343044621776,0.021572641510102315,0.03189553192722269,0.020035852130777146,0.9999075003694304,0.9998969812819942,0.9998950333377742,0.9998742416859632,0.9999988464056683,0.9999992097915671,0.9999995005193155,0.9999984018619469,0.9999982236482505,0.9812635839099375,0.8624110653012095,0.9904120214795649,1.8325046825448187e-05,1.872779103465001e-05,5.245830746398654e-06,1.014058159737923e-05,8.66408797306049e-06,0.0004596369964678644,0.0003539752675076182,0.0001310805454011471,0.00013290876533194817,0.999990609345996,0.9999594820022035,0.9999908620208289,0.9999519408490827,0.9999896882106201,0.00031512275805079974,0.00026062307669480245,0.00023886228571026426,0.0001768887709250455,0.9989004488663851,0.9990300817106393,0.9989241324621365,0.9964842601630594,0.9981287800258171 -भी,shape,2.1824659708447797e-06,1.3520939739837482e-05,0.005060005733763163,2.1875565089860199e-07,0.24371347691251818,0.00021511314302109818,0.038296689463746154,2.0345897698034473e-10,3.1159549938548642e-12,9.798172781214295e-07,1.7176579734282648e-11,0.00024742415729911443,1.6846312359705556e-06,0.0011597752561233164,0.9999999493327435,0.9999522856507906,0.9999663302473017,0.999999909845494,0.5225575618174676,0.3332921006979285,1.3063784841718657e-05,0.0009651197350274914,0.0008016645279878135,0.38929861851274405,0.008889479945047506,0.17435705629138085,2.742266335586995e-05,0.0013955794311613981,0.198434811079608,0.9999923308398344,0.9999957162674773,0.9999993143262341,0.999999892136099,0.9994875887369292,0.9847253695854913,0.0017987543291089253,0.007245473743309345,0.9999954397663247,0.9979771619772367,0.9882148261977696,1.806281406286627e-11,4.992861587229292e-11,1.1025457668616958e-10,3.5314462728189133e-15,1.502995399349904e-13,0.9996082252665598,0.999604156984245,0.9998923166694753,0.9996282843851808,0.9999739495577357,0.9999894565687966,0.9997128830842081,0.9999077306081785,0.99887438802828,0.056525767299826696,0.9681281315286971,0.9436974059169144,9.371239330926873e-05,0.0005882864324276689,0.13168474634149907,0.9315754602645961,0.0018737073786527425,0.9072902630125941,0.1603945346030414,0.1398026079890113,0.936699209515333,0.9140615539265305,0.8289292359007336,0.9182668797326319,0.0007974734338781406,0.0026105526213391524,0.7349366122959122,0.6024951715146722,0.9060218816990183,0.4620453531194985,0.016621379644607887,0.001275321621303563,8.307866329395918e-05,0.02177071609924774,0.04471646739497266 -भी,object,0.7947328529344451,0.9681950754012055,0.9885312952528579,0.9879204091582466,0.994387840602341,0.9568047474103522,0.9619283931837344,1.3291234399975196e-05,5.323763010683963e-07,6.411560607185098e-07,5.828633659683777e-06,0.0030213665249138833,0.0016591315244172185,0.006033760270807735,0.0877971607551694,0.048140295432440465,0.0692280072071185,0.10417609380060872,0.03177060042969335,0.9990985657949712,0.9885361956795946,0.9928259910858761,0.9920889598221494,0.996918168282101,1.8758549098404914e-06,3.6926408320596306e-06,1.6623869583584799e-06,1.6563972423002388e-06,2.41031226894863e-06,0.9936829689620462,0.995952813573145,0.9957237634002084,0.9920863776171952,0.9931224841844714,0.9953369532760238,8.949611896564373e-06,1.273869136508251e-05,1.7425923270870103e-05,5.9365358253228215e-05,2.133743859645756e-05,0.010827662407324669,0.004539796698446848,0.00652413582402285,0.006596453198598882,0.0030664115234815144,0.999936140325908,0.9999381278880555,0.9999316085580322,0.9998760994297857,0.9999974668389906,0.9999977572278137,0.999997417190382,0.9999900705632707,0.9999820888610537,0.9496284641718418,0.9396274944113326,0.9932808096510776,1.3046830356795843e-05,2.582267500230996e-05,9.644680448047288e-06,1.9874054824227067e-05,2.143351003587141e-05,0.00492727403402837,0.0015776292902273232,0.000352411234787682,0.0009316175632102506,0.9999365979897894,0.9998241414103451,0.9999571956905352,0.9994908507604352,0.9998286397257382,0.0018462075179231355,0.0010448688143882656,0.0019099952998113607,0.000895178727440004,0.9989059763234609,0.9975414915528188,0.9980736583760978,0.9986585615330928,0.9986785999379386 -भुट्ट,rgb,6.775961409956921e-12,4.865990201253354e-12,5.496681653120727e-11,3.8324278338084296e-08,1.1034005339862467e-08,0.9806860942034488,0.5191029398334871,0.02106935580752869,0.000131216479446633,4.801895973166101e-05,0.06654548117024676,0.9819028255574719,0.9661250693665738,0.9613475194387051,0.9491433274691863,0.9583914487879852,0.9644922545266593,0.9689796200771343,0.9655628380951788,1.802759879923119e-11,1.192705349704805e-10,2.2837112729030523e-10,8.397860234148297e-09,4.031485724234256e-08,7.27750140832639e-52,7.593000926381817e-51,1.5568804883125573e-50,1.3767477780657435e-49,1.8523356152106196e-43,0.19116362459700775,0.07758194602261112,0.16084200077999575,0.21138111202701687,0.26936829136646573,0.4543574781229262,4.262966051769445e-38,2.944330607297905e-38,1.8684559262781025e-39,6.739237583980799e-39,4.7457102989096496e-40,0.97299709512544,0.9633979592796081,0.9768618783630882,0.9860894241678554,0.9900012541540371,7.437208624627716e-13,2.8950215941363476e-13,2.8514489534782283e-13,1.109469337448233e-13,2.976241926009239e-09,6.349178113952066e-10,9.148046670399455e-11,9.439472788133343e-09,1.313880374656949e-08,1.077256196077806e-09,4.9651059988298457e-08,1.9805133006685682e-12,0.03039626457331024,0.029055179718586087,0.0012038417549189626,0.002959714729415106,0.00042457585681106123,0.004990952240451773,0.0017275045644979245,0.00030403851006698763,0.00030541188346606496,8.81946579499253e-10,4.00188060357837e-07,4.6554064676741423e-10,6.572068636963406e-07,5.002571083753875e-10,5.065371029129807e-36,2.138554970579487e-36,5.8263403062217824e-39,6.846267234465415e-39,2.1083409670852072e-10,3.7247717385002784e-10,1.4207649376623266e-09,3.6642566243503436e-09,3.0649312553938897e-09 -भुट्ट,shape,1.1925509999087302e-06,1.8161166294195815e-07,6.910379840594889e-10,1.8807639939679757e-09,4.961488204739197e-07,0.8991524770447866,3.1423603226604458e-12,1.9908349174785396e-05,2.8789435542004146e-07,0.08474646622288463,0.0007616135271634832,2.257835885854534e-05,0.312833890371052,1.4296029919439903e-06,0.9998348204374901,0.9999999975713623,0.9999998842873447,0.9999953992970693,0.9998469204800212,6.461692543951535e-09,2.1165184588015498e-05,0.002094220558560665,0.001251742998641295,0.00022817699584794953,3.383250710469061e-10,5.573419157014143e-08,0.08547974427387682,0.7868466763330284,0.4685546212533768,0.9984702915832626,0.021091215322122173,0.9978454756944061,0.0020347446181083564,0.9966580603225647,3.495600749302304e-08,3.1038472402897082e-06,1.2432600066531482e-06,2.1204261984318356e-06,5.457333957676756e-09,7.026765967521475e-09,9.59871047556965e-08,1.2218650182105368e-07,2.002418277395713e-09,5.22952502625091e-09,2.7780438017792116e-10,1.0732919198559452e-06,1.3135280944006958e-07,4.269329165054303e-07,1.3746778890852349e-05,2.462820051813039e-09,2.622110249558256e-09,1.2119137404780123e-09,2.2620005180060578e-08,5.643162765508285e-07,0.0001284034709504119,9.126253532109706e-08,1.1083139853522851e-07,3.0083319181341724e-07,3.56945339244824e-07,1.730230515883195e-07,8.498820995636432e-06,2.6190766085269408e-08,0.00012152040492620036,5.72433090476796e-05,0.0009129412896494649,0.0010117000001000648,0.8540895688278394,0.04722013315327328,0.2158897403503998,0.017660018476674776,0.11890952163889679,0.0001785894327287444,1.3652171561242776e-05,2.2104559352689506e-05,1.79958772611689e-05,1.920230486715101e-09,2.053835938911658e-13,7.473433108887964e-08,5.022331649013373e-12,3.785504784086884e-09 -भुट्ट,object,3.915615837776696e-05,2.5168299177369002e-06,6.621559816169028e-08,2.0898214559053388e-05,0.00015420933945095667,0.9892610743730798,9.953538357608494e-07,0.018206637345425485,0.00010718084312876937,0.950940517353396,0.41684640854478666,0.39096304509753255,0.9991401826339713,0.005560718202810747,0.9999145074476983,0.9999999664259451,0.9999994315034978,0.9999890589536475,0.9998953023673958,1.1898926509000882e-08,4.07434560297584e-05,0.002303947465674529,0.001913433079311264,0.000438375682257774,4.2102162081903137e-10,5.661183365362169e-09,0.0020749772760528143,0.09309045445384505,0.06132492582493427,0.9994746412269297,0.6324350748659484,0.9990130875746782,0.21548381829140872,0.9979072768897418,1.030282707670105e-06,1.6834929306859813e-05,3.3757068243399146e-06,2.4952295469655766e-06,1.018709753858742e-07,4.9535079043747215e-08,0.007386252112507753,0.00465799440346897,0.00016820425976007275,0.0003143100167241887,8.39313204804308e-06,1.753620341691795e-07,4.043791856390017e-08,1.0663760689379666e-07,1.2778707944577536e-06,2.699552520450506e-09,2.8990144202655748e-09,1.5254146483184533e-09,1.214693210712651e-08,1.5169528171045068e-07,5.399093519325029e-05,2.8649014202660923e-07,8.621405354385153e-08,1.0973087895624286e-05,9.509646850343695e-06,1.1347977758122105e-05,0.00014322889142351881,2.208210724762592e-06,0.00043705437187495713,0.00023140171799245214,0.0018375130792746656,0.006983927664661236,0.2016054112783619,0.024023600751284867,0.02616192909849285,0.008024706087274737,0.017480852595806513,8.093802515780861e-06,4.105607942977542e-07,6.396117841588698e-07,4.890331855399464e-07,3.814282398959346e-07,1.3936401116064253e-09,8.464255104602377e-06,3.454266863375095e-08,2.0104687418173278e-07 -मक,rgb,6.775961409956921e-12,4.865990201253354e-12,5.496681653120727e-11,3.8324278338084296e-08,1.1034005339862467e-08,0.9806860942034488,0.5191029398334871,0.02106935580752869,0.000131216479446633,4.801895973166101e-05,0.06654548117024676,0.9819028255574719,0.9661250693665738,0.9613475194387051,0.9491433274691863,0.9583914487879852,0.9644922545266593,0.9689796200771343,0.9655628380951788,1.802759879923119e-11,1.192705349704805e-10,2.2837112729030523e-10,8.397860234148297e-09,4.031485724234256e-08,7.27750140832639e-52,7.593000926381817e-51,1.5568804883125573e-50,1.3767477780657435e-49,1.8523356152106196e-43,0.19116362459700775,0.07758194602261112,0.16084200077999575,0.21138111202701687,0.26936829136646573,0.4543574781229262,4.262966051769445e-38,2.944330607297905e-38,1.8684559262781025e-39,6.739237583980799e-39,4.7457102989096496e-40,0.97299709512544,0.9633979592796081,0.9768618783630882,0.9860894241678554,0.9900012541540371,7.437208624627716e-13,2.8950215941363476e-13,2.8514489534782283e-13,1.109469337448233e-13,2.976241926009239e-09,6.349178113952066e-10,9.148046670399455e-11,9.439472788133343e-09,1.313880374656949e-08,1.077256196077806e-09,4.9651059988298457e-08,1.9805133006685682e-12,0.03039626457331024,0.029055179718586087,0.0012038417549189626,0.002959714729415106,0.00042457585681106123,0.004990952240451773,0.0017275045644979245,0.00030403851006698763,0.00030541188346606496,8.81946579499253e-10,4.00188060357837e-07,4.6554064676741423e-10,6.572068636963406e-07,5.002571083753875e-10,5.065371029129807e-36,2.138554970579487e-36,5.8263403062217824e-39,6.846267234465415e-39,2.1083409670852072e-10,3.7247717385002784e-10,1.4207649376623266e-09,3.6642566243503436e-09,3.0649312553938897e-09 -मक,shape,1.1925509999087302e-06,1.8161166294195815e-07,6.910379840594889e-10,1.8807639939679757e-09,4.961488204739197e-07,0.8991524770447866,3.1423603226604458e-12,1.9908349174785396e-05,2.8789435542004146e-07,0.08474646622288463,0.0007616135271634832,2.257835885854534e-05,0.312833890371052,1.4296029919439903e-06,0.9998348204374901,0.9999999975713623,0.9999998842873447,0.9999953992970693,0.9998469204800212,6.461692543951535e-09,2.1165184588015498e-05,0.002094220558560665,0.001251742998641295,0.00022817699584794953,3.383250710469061e-10,5.573419157014143e-08,0.08547974427387682,0.7868466763330284,0.4685546212533768,0.9984702915832626,0.021091215322122173,0.9978454756944061,0.0020347446181083564,0.9966580603225647,3.495600749302304e-08,3.1038472402897082e-06,1.2432600066531482e-06,2.1204261984318356e-06,5.457333957676756e-09,7.026765967521475e-09,9.59871047556965e-08,1.2218650182105368e-07,2.002418277395713e-09,5.22952502625091e-09,2.7780438017792116e-10,1.0732919198559452e-06,1.3135280944006958e-07,4.269329165054303e-07,1.3746778890852349e-05,2.462820051813039e-09,2.622110249558256e-09,1.2119137404780123e-09,2.2620005180060578e-08,5.643162765508285e-07,0.0001284034709504119,9.126253532109706e-08,1.1083139853522851e-07,3.0083319181341724e-07,3.56945339244824e-07,1.730230515883195e-07,8.498820995636432e-06,2.6190766085269408e-08,0.00012152040492620036,5.72433090476796e-05,0.0009129412896494649,0.0010117000001000648,0.8540895688278394,0.04722013315327328,0.2158897403503998,0.017660018476674776,0.11890952163889679,0.0001785894327287444,1.3652171561242776e-05,2.2104559352689506e-05,1.79958772611689e-05,1.920230486715101e-09,2.053835938911658e-13,7.473433108887964e-08,5.022331649013373e-12,3.785504784086884e-09 -मक,object,3.915615837776696e-05,2.5168299177369002e-06,6.621559816169028e-08,2.0898214559053388e-05,0.00015420933945095667,0.9892610743730798,9.953538357608494e-07,0.018206637345425485,0.00010718084312876937,0.950940517353396,0.41684640854478666,0.39096304509753255,0.9991401826339713,0.005560718202810747,0.9999145074476983,0.9999999664259451,0.9999994315034978,0.9999890589536475,0.9998953023673958,1.1898926509000882e-08,4.07434560297584e-05,0.002303947465674529,0.001913433079311264,0.000438375682257774,4.2102162081903137e-10,5.661183365362169e-09,0.0020749772760528143,0.09309045445384505,0.06132492582493427,0.9994746412269297,0.6324350748659484,0.9990130875746782,0.21548381829140872,0.9979072768897418,1.030282707670105e-06,1.6834929306859813e-05,3.3757068243399146e-06,2.4952295469655766e-06,1.018709753858742e-07,4.9535079043747215e-08,0.007386252112507753,0.00465799440346897,0.00016820425976007275,0.0003143100167241887,8.39313204804308e-06,1.753620341691795e-07,4.043791856390017e-08,1.0663760689379666e-07,1.2778707944577536e-06,2.699552520450506e-09,2.8990144202655748e-09,1.5254146483184533e-09,1.214693210712651e-08,1.5169528171045068e-07,5.399093519325029e-05,2.8649014202660923e-07,8.621405354385153e-08,1.0973087895624286e-05,9.509646850343695e-06,1.1347977758122105e-05,0.00014322889142351881,2.208210724762592e-06,0.00043705437187495713,0.00023140171799245214,0.0018375130792746656,0.006983927664661236,0.2016054112783619,0.024023600751284867,0.02616192909849285,0.008024706087274737,0.017480852595806513,8.093802515780861e-06,4.105607942977542e-07,6.396117841588698e-07,4.890331855399464e-07,3.814282398959346e-07,1.3936401116064253e-09,8.464255104602377e-06,3.454266863375095e-08,2.0104687418173278e-07 -मकई,rgb,6.775961409956921e-12,4.865990201253354e-12,5.496681653120727e-11,3.8324278338084296e-08,1.1034005339862467e-08,0.9806860942034488,0.5191029398334871,0.02106935580752869,0.000131216479446633,4.801895973166101e-05,0.06654548117024676,0.9819028255574719,0.9661250693665738,0.9613475194387051,0.9491433274691863,0.9583914487879852,0.9644922545266593,0.9689796200771343,0.9655628380951788,1.802759879923119e-11,1.192705349704805e-10,2.2837112729030523e-10,8.397860234148297e-09,4.031485724234256e-08,7.27750140832639e-52,7.593000926381817e-51,1.5568804883125573e-50,1.3767477780657435e-49,1.8523356152106196e-43,0.19116362459700775,0.07758194602261112,0.16084200077999575,0.21138111202701687,0.26936829136646573,0.4543574781229262,4.262966051769445e-38,2.944330607297905e-38,1.8684559262781025e-39,6.739237583980799e-39,4.7457102989096496e-40,0.97299709512544,0.9633979592796081,0.9768618783630882,0.9860894241678554,0.9900012541540371,7.437208624627716e-13,2.8950215941363476e-13,2.8514489534782283e-13,1.109469337448233e-13,2.976241926009239e-09,6.349178113952066e-10,9.148046670399455e-11,9.439472788133343e-09,1.313880374656949e-08,1.077256196077806e-09,4.9651059988298457e-08,1.9805133006685682e-12,0.03039626457331024,0.029055179718586087,0.0012038417549189626,0.002959714729415106,0.00042457585681106123,0.004990952240451773,0.0017275045644979245,0.00030403851006698763,0.00030541188346606496,8.81946579499253e-10,4.00188060357837e-07,4.6554064676741423e-10,6.572068636963406e-07,5.002571083753875e-10,5.065371029129807e-36,2.138554970579487e-36,5.8263403062217824e-39,6.846267234465415e-39,2.1083409670852072e-10,3.7247717385002784e-10,1.4207649376623266e-09,3.6642566243503436e-09,3.0649312553938897e-09 -मकई,shape,1.1925509999087302e-06,1.8161166294195815e-07,6.910379840594889e-10,1.8807639939679757e-09,4.961488204739197e-07,0.8991524770447866,3.1423603226604458e-12,1.9908349174785396e-05,2.8789435542004146e-07,0.08474646622288463,0.0007616135271634832,2.257835885854534e-05,0.312833890371052,1.4296029919439903e-06,0.9998348204374901,0.9999999975713623,0.9999998842873447,0.9999953992970693,0.9998469204800212,6.461692543951535e-09,2.1165184588015498e-05,0.002094220558560665,0.001251742998641295,0.00022817699584794953,3.383250710469061e-10,5.573419157014143e-08,0.08547974427387682,0.7868466763330284,0.4685546212533768,0.9984702915832626,0.021091215322122173,0.9978454756944061,0.0020347446181083564,0.9966580603225647,3.495600749302304e-08,3.1038472402897082e-06,1.2432600066531482e-06,2.1204261984318356e-06,5.457333957676756e-09,7.026765967521475e-09,9.59871047556965e-08,1.2218650182105368e-07,2.002418277395713e-09,5.22952502625091e-09,2.7780438017792116e-10,1.0732919198559452e-06,1.3135280944006958e-07,4.269329165054303e-07,1.3746778890852349e-05,2.462820051813039e-09,2.622110249558256e-09,1.2119137404780123e-09,2.2620005180060578e-08,5.643162765508285e-07,0.0001284034709504119,9.126253532109706e-08,1.1083139853522851e-07,3.0083319181341724e-07,3.56945339244824e-07,1.730230515883195e-07,8.498820995636432e-06,2.6190766085269408e-08,0.00012152040492620036,5.72433090476796e-05,0.0009129412896494649,0.0010117000001000648,0.8540895688278394,0.04722013315327328,0.2158897403503998,0.017660018476674776,0.11890952163889679,0.0001785894327287444,1.3652171561242776e-05,2.2104559352689506e-05,1.79958772611689e-05,1.920230486715101e-09,2.053835938911658e-13,7.473433108887964e-08,5.022331649013373e-12,3.785504784086884e-09 -मकई,object,3.915615837776696e-05,2.5168299177369002e-06,6.621559816169028e-08,2.0898214559053388e-05,0.00015420933945095667,0.9892610743730798,9.953538357608494e-07,0.018206637345425485,0.00010718084312876937,0.950940517353396,0.41684640854478666,0.39096304509753255,0.9991401826339713,0.005560718202810747,0.9999145074476983,0.9999999664259451,0.9999994315034978,0.9999890589536475,0.9998953023673958,1.1898926509000882e-08,4.07434560297584e-05,0.002303947465674529,0.001913433079311264,0.000438375682257774,4.2102162081903137e-10,5.661183365362169e-09,0.0020749772760528143,0.09309045445384505,0.06132492582493427,0.9994746412269297,0.6324350748659484,0.9990130875746782,0.21548381829140872,0.9979072768897418,1.030282707670105e-06,1.6834929306859813e-05,3.3757068243399146e-06,2.4952295469655766e-06,1.018709753858742e-07,4.9535079043747215e-08,0.007386252112507753,0.00465799440346897,0.00016820425976007275,0.0003143100167241887,8.39313204804308e-06,1.753620341691795e-07,4.043791856390017e-08,1.0663760689379666e-07,1.2778707944577536e-06,2.699552520450506e-09,2.8990144202655748e-09,1.5254146483184533e-09,1.214693210712651e-08,1.5169528171045068e-07,5.399093519325029e-05,2.8649014202660923e-07,8.621405354385153e-08,1.0973087895624286e-05,9.509646850343695e-06,1.1347977758122105e-05,0.00014322889142351881,2.208210724762592e-06,0.00043705437187495713,0.00023140171799245214,0.0018375130792746656,0.006983927664661236,0.2016054112783619,0.024023600751284867,0.02616192909849285,0.008024706087274737,0.017480852595806513,8.093802515780861e-06,4.105607942977542e-07,6.396117841588698e-07,4.890331855399464e-07,3.814282398959346e-07,1.3936401116064253e-09,8.464255104602377e-06,3.454266863375095e-08,2.0104687418173278e-07 -मक्क,rgb,6.775961409956921e-12,4.865990201253354e-12,5.496681653120727e-11,3.8324278338084296e-08,1.1034005339862467e-08,0.9806860942034488,0.5191029398334871,0.02106935580752869,0.000131216479446633,4.801895973166101e-05,0.06654548117024676,0.9819028255574719,0.9661250693665738,0.9613475194387051,0.9491433274691863,0.9583914487879852,0.9644922545266593,0.9689796200771343,0.9655628380951788,1.802759879923119e-11,1.192705349704805e-10,2.2837112729030523e-10,8.397860234148297e-09,4.031485724234256e-08,7.27750140832639e-52,7.593000926381817e-51,1.5568804883125573e-50,1.3767477780657435e-49,1.8523356152106196e-43,0.19116362459700775,0.07758194602261112,0.16084200077999575,0.21138111202701687,0.26936829136646573,0.4543574781229262,4.262966051769445e-38,2.944330607297905e-38,1.8684559262781025e-39,6.739237583980799e-39,4.7457102989096496e-40,0.97299709512544,0.9633979592796081,0.9768618783630882,0.9860894241678554,0.9900012541540371,7.437208624627716e-13,2.8950215941363476e-13,2.8514489534782283e-13,1.109469337448233e-13,2.976241926009239e-09,6.349178113952066e-10,9.148046670399455e-11,9.439472788133343e-09,1.313880374656949e-08,1.077256196077806e-09,4.9651059988298457e-08,1.9805133006685682e-12,0.03039626457331024,0.029055179718586087,0.0012038417549189626,0.002959714729415106,0.00042457585681106123,0.004990952240451773,0.0017275045644979245,0.00030403851006698763,0.00030541188346606496,8.81946579499253e-10,4.00188060357837e-07,4.6554064676741423e-10,6.572068636963406e-07,5.002571083753875e-10,5.065371029129807e-36,2.138554970579487e-36,5.8263403062217824e-39,6.846267234465415e-39,2.1083409670852072e-10,3.7247717385002784e-10,1.4207649376623266e-09,3.6642566243503436e-09,3.0649312553938897e-09 -मक्क,shape,1.1925509999087302e-06,1.8161166294195815e-07,6.910379840594889e-10,1.8807639939679757e-09,4.961488204739197e-07,0.8991524770447866,3.1423603226604458e-12,1.9908349174785396e-05,2.8789435542004146e-07,0.08474646622288463,0.0007616135271634832,2.257835885854534e-05,0.312833890371052,1.4296029919439903e-06,0.9998348204374901,0.9999999975713623,0.9999998842873447,0.9999953992970693,0.9998469204800212,6.461692543951535e-09,2.1165184588015498e-05,0.002094220558560665,0.001251742998641295,0.00022817699584794953,3.383250710469061e-10,5.573419157014143e-08,0.08547974427387682,0.7868466763330284,0.4685546212533768,0.9984702915832626,0.021091215322122173,0.9978454756944061,0.0020347446181083564,0.9966580603225647,3.495600749302304e-08,3.1038472402897082e-06,1.2432600066531482e-06,2.1204261984318356e-06,5.457333957676756e-09,7.026765967521475e-09,9.59871047556965e-08,1.2218650182105368e-07,2.002418277395713e-09,5.22952502625091e-09,2.7780438017792116e-10,1.0732919198559452e-06,1.3135280944006958e-07,4.269329165054303e-07,1.3746778890852349e-05,2.462820051813039e-09,2.622110249558256e-09,1.2119137404780123e-09,2.2620005180060578e-08,5.643162765508285e-07,0.0001284034709504119,9.126253532109706e-08,1.1083139853522851e-07,3.0083319181341724e-07,3.56945339244824e-07,1.730230515883195e-07,8.498820995636432e-06,2.6190766085269408e-08,0.00012152040492620036,5.72433090476796e-05,0.0009129412896494649,0.0010117000001000648,0.8540895688278394,0.04722013315327328,0.2158897403503998,0.017660018476674776,0.11890952163889679,0.0001785894327287444,1.3652171561242776e-05,2.2104559352689506e-05,1.79958772611689e-05,1.920230486715101e-09,2.053835938911658e-13,7.473433108887964e-08,5.022331649013373e-12,3.785504784086884e-09 -मक्क,object,3.915615837776696e-05,2.5168299177369002e-06,6.621559816169028e-08,2.0898214559053388e-05,0.00015420933945095667,0.9892610743730798,9.953538357608494e-07,0.018206637345425485,0.00010718084312876937,0.950940517353396,0.41684640854478666,0.39096304509753255,0.9991401826339713,0.005560718202810747,0.9999145074476983,0.9999999664259451,0.9999994315034978,0.9999890589536475,0.9998953023673958,1.1898926509000882e-08,4.07434560297584e-05,0.002303947465674529,0.001913433079311264,0.000438375682257774,4.2102162081903137e-10,5.661183365362169e-09,0.0020749772760528143,0.09309045445384505,0.06132492582493427,0.9994746412269297,0.6324350748659484,0.9990130875746782,0.21548381829140872,0.9979072768897418,1.030282707670105e-06,1.6834929306859813e-05,3.3757068243399146e-06,2.4952295469655766e-06,1.018709753858742e-07,4.9535079043747215e-08,0.007386252112507753,0.00465799440346897,0.00016820425976007275,0.0003143100167241887,8.39313204804308e-06,1.753620341691795e-07,4.043791856390017e-08,1.0663760689379666e-07,1.2778707944577536e-06,2.699552520450506e-09,2.8990144202655748e-09,1.5254146483184533e-09,1.214693210712651e-08,1.5169528171045068e-07,5.399093519325029e-05,2.8649014202660923e-07,8.621405354385153e-08,1.0973087895624286e-05,9.509646850343695e-06,1.1347977758122105e-05,0.00014322889142351881,2.208210724762592e-06,0.00043705437187495713,0.00023140171799245214,0.0018375130792746656,0.006983927664661236,0.2016054112783619,0.024023600751284867,0.02616192909849285,0.008024706087274737,0.017480852595806513,8.093802515780861e-06,4.105607942977542e-07,6.396117841588698e-07,4.890331855399464e-07,3.814282398959346e-07,1.3936401116064253e-09,8.464255104602377e-06,3.454266863375095e-08,2.0104687418173278e-07 -मेहराब,rgb,0.9995743583325004,0.9993370618334336,0.9970289484736987,0.6880685504272002,0.7716629228982139,1.5351146332327271e-06,1.1428248072824487e-05,0.02039273758991854,0.7203869436796718,0.8645081903022007,0.010047714746256492,2.9039565776286814e-05,5.095580302522206e-05,5.859954964077888e-05,5.5735040723484054e-05,4.565129638988394e-05,3.899164711548314e-05,3.408305464171231e-05,3.8767775181337384e-05,0.9963966071513646,0.9884129862533197,0.9808972983618246,0.7904229524000427,0.6577160597719055,1.0,1.0,1.0,1.0,1.0,4.437645352342856e-05,6.203277927503504e-05,4.522381671427218e-05,3.5377599332113855e-05,2.9707962175462215e-05,1.842472109707168e-05,1.0,1.0,1.0,1.0,1.0,1.970037785675645e-05,3.018952305704958e-05,1.905845831335554e-05,1.1287530427441442e-05,1.0317814294218222e-05,0.9991001929590281,0.9995583972062475,0.9995658882592595,0.9997922520703348,0.4461936366644114,0.6793863280449967,0.8788349212808669,0.27885761264414877,0.23889011486722866,0.9732869490480521,0.8293361810960834,0.9996225257130152,0.03692126244146362,0.036845696524874884,0.37413234680464547,0.19368143851591044,0.49848549605319004,0.0365569004373996,0.0818162944717745,0.307585609569623,0.3058052471915826,0.7696843215373088,0.06379582041525475,0.8393146078643263,0.04811377222830858,0.8375399453930542,1.0,1.0,1.0,1.0,0.9883700507780432,0.9816618531920435,0.9543155074343245,0.9416243016539542,0.9358476787647709 -मेहराब,shape,0.9999819127964465,0.9999416492426796,0.9998713568204969,0.9999974246449559,0.9998333523353049,2.897403968480616e-09,0.9985058857177231,0.9999991120011084,0.9999985343328973,0.9999985920015158,0.9999983154244726,3.424717914050032e-06,0.2739709884414771,2.6514339914042985e-05,1.647785498933446e-05,1.2761517477370257e-06,1.3092809631387448e-06,1.169738660191065e-05,7.490978906580116e-08,0.0007356573858935736,0.7215996471438357,0.6089969078111102,0.4539404566991723,6.20624297500418e-05,0.46683793516636046,0.03715032126434836,0.001069002358991561,0.00021813592144876226,0.0005314497146467678,0.004342854445131394,0.01700085434345166,0.0024555472094502035,0.0010506781503391658,0.00012858956608628763,0.001091030983382251,0.00964677089907368,0.0033319675222127578,1.7391166691386544e-07,4.430513097092001e-08,1.264108384172949e-05,2.7478187144293077e-05,0.00014140329115119472,7.113021879822531e-05,0.4053978353067118,0.09701681331272988,2.3469210918869143e-07,3.688841651117913e-08,1.388279189587232e-07,4.385263867382168e-07,1.470337180526731e-05,0.00012769672584716794,5.644103072305294e-05,6.022083971398833e-05,8.312940904838942e-05,1.637511994767797e-07,8.675497887124524e-08,3.4281112730794315e-08,0.009128019988100596,0.00011223435805432636,0.0005652731978083811,9.605822709048633e-06,8.973040064262092e-06,1.1652337753638996e-07,3.265295624575049e-07,1.6075400003188455e-06,1.4488469515394261e-06,3.652356917166594e-05,4.650177627154317e-06,2.6254331516767195e-07,8.435653971834978e-05,0.00025489805356091735,2.764076099873286e-06,9.574948386995707e-08,5.334335822231831e-08,2.2561779044855837e-06,0.017516406509718096,0.0017547654644842817,0.05827945002114517,0.00013924057308406382,0.015507914687623995 -मेहराब,object,0.9999471359814671,0.9998690700052134,0.9998008012346433,0.9999849881690226,0.999743478460975,2.116597517074307e-09,0.9790206325726424,0.9999584376582348,0.9998996598457943,0.999977227954433,0.9999482734310964,2.4693352419575013e-06,0.05595693890116611,1.8687119039270387e-05,8.386018804555888e-06,5.138289898083193e-07,6.14699426863071e-07,5.2692245779283e-06,6.324455166637079e-08,0.001334299506694241,0.7602819699121086,0.7006404478471887,0.5605602449244527,0.0002199717213999502,0.9405894801478876,0.5507633445696715,0.07080327211214098,0.012234269094185029,0.011697318734244514,0.0019098139233345844,0.01134305368118938,0.0014705818356111919,0.0009293775200775239,9.121224903982798e-05,0.0011015278880903319,0.06456752029317647,0.023570371314400006,2.0391957433446567e-06,3.079559924952855e-07,0.0001042759533434605,1.432325548194995e-05,6.0102195078604375e-05,3.936541776307493e-05,0.12207028185073354,0.013701867762848511,8.84740447165931e-07,1.6963590190186743e-07,6.154489203370491e-07,1.5122667745617788e-06,3.7037102819356874e-05,0.00022977009019189862,0.00011111267429042199,7.122738227322295e-05,9.32602431197618e-05,2.422351089973194e-07,1.3298935614639715e-07,1.0976585612651726e-07,0.0013232294429254762,2.0014284724803632e-05,0.00012918262075365365,2.850338276514341e-06,3.1667968655293777e-06,5.954116412691828e-08,1.746808337153694e-07,6.505838616504122e-07,1.0012226464197713e-06,9.023201247595432e-05,1.1928832359483953e-05,1.3379195421068334e-06,0.00018600537624073775,0.0007170387262242229,1.5271976989325466e-05,5.65168013361394e-07,4.981459149863048e-07,1.0649182209240428e-05,0.035060272624748416,0.004997681810066132,0.07437209408830825,0.00030160302829810193,0.029329691239219007 -या,rgb,0.9999999954824346,0.9999999970731499,0.999999988489971,0.9999995675552493,0.9999997773288091,0.0021231956474099616,0.006362946793814894,0.38029860849143776,0.2979037117175351,0.29537306243420147,0.10230850057667919,0.00012682352750485723,8.344557073326593e-05,8.174350037388071e-05,0.0318752540226196,0.02940351970608767,0.027617634816520024,0.026199011191306628,0.0250645435588989,0.9999999940181332,0.9999999834429363,0.9999999759263011,0.9999998051461034,0.9999995529029561,1.0,1.0,1.0,1.0,1.0,0.9857118520050397,0.9915960099095842,0.986912887759643,0.9825603104912497,0.978070545123783,0.9591858063538147,0.2506974484400005,0.27510863303965993,0.3835149136720651,0.3337048128426275,0.4739852457196,0.07815410352329837,0.06553785392963495,0.05448080006670281,0.04495239694952373,0.01973632652013653,0.5284239281659099,0.522689685156969,0.517991226303197,0.4949341369926966,0.9999409131998012,0.9999470854208696,0.9999685957488822,0.999846069426141,0.9997781005673928,0.0034975388262316245,0.0005049940097266937,0.012511601225690689,0.0006212299414585477,0.00026051220231903486,0.00018322682220196838,7.952559048073624e-05,3.562634903630496e-05,8.793224329454095e-06,8.295149711381822e-06,8.411352545008524e-06,8.394109318116259e-06,0.9459885226476988,0.6958950840269402,0.9470112101660644,0.6437165777594734,0.9362271670783462,0.3260011374889293,0.3544922152886122,0.6629950393224198,0.6329189994678805,0.9999999777127311,0.9999999694625741,0.9999999350901105,0.9999998833394034,0.9999998985655733 -या,shape,0.9999999976886804,0.9999864681521026,0.9999995433740367,0.9996069769716999,0.999999822209911,0.9999999996147877,0.6721223519590577,0.9999999998747211,0.9999999999726394,0.9999999999999987,0.999999999999682,0.0013530580949114282,0.9999882478758565,0.9884472984024087,0.9999985746557637,0.9999995492827427,0.9999993663785542,0.9999999957266861,0.9999863851959206,0.9999971120656346,0.9999999944768849,0.99999988686042,0.999999933271666,0.9998963106914781,0.9999993299988562,0.999975502779206,0.9999525548558178,0.9999658832268307,0.999802745008011,0.9999980371144959,0.9999999992319748,0.9999999688823563,0.999995407565952,0.9999999982346011,0.9997357289843427,0.9999752079118996,0.9999740392866522,0.9996005972057178,0.9998086374290817,0.999930606861042,2.7929345401690474e-05,0.0016555373858445552,0.013942529793784254,0.0007251638493757248,0.9999999947126386,0.002113957393600513,3.380800580106084e-05,3.472021744091526e-05,5.796769395762444e-05,0.999507284298876,0.9998728732895686,0.9999975849700521,0.999846797110222,0.9999509324787139,7.778356896968756e-06,0.001741850199872168,8.844510026549392e-05,0.9999683440535324,0.9999966815391229,0.9999988735974448,0.9996846337861349,0.999998952164995,3.5882543515621554e-07,1.9616162433332583e-07,1.2822647897313091e-08,0.00015080410113865243,0.9996722371295669,0.9998805121323028,0.9999999133338009,0.9999838799292614,0.9998880295641914,1.4113331062800445e-07,1.4516483403366186e-08,6.898822600889506e-08,1.4293063003576906e-08,0.9999991582621119,0.9999620562770879,0.9999888827578656,0.9999997466659583,0.9999972311504135 -या,object,0.9999976851000476,0.9998897969301911,0.999999612656897,0.9998107040448672,0.9999915062030735,0.9999183903137987,0.18631570621660556,0.999994105245512,0.9999808625607816,0.9999999994717148,0.9999996131851403,6.424452256679649e-05,0.681804995804518,0.6655880625926958,0.9986751058480442,0.9902046235270157,0.9929482590815712,0.9999762516092437,0.9590375481781075,0.9999947049672377,0.999999885678861,0.9999992302179835,0.999999455635065,0.9999609524013036,0.9999999988858363,0.9999999411927779,0.999999922990063,0.9999999706779132,0.99999952780695,0.9992198175986162,0.9999995356488696,0.9999892729410493,0.9999572968645261,0.999999015317096,0.9996265992956387,0.9998935427343073,0.9999485215656809,0.9997480911289084,0.9996923500453925,0.9999201670223109,8.919390818343434e-06,0.0005653879704971751,0.0015589869894982332,0.0001684511584468424,0.9998814024851419,0.013461627366888659,0.0008639272184673063,0.00027739707061362186,0.0003442503544015077,0.9996592197394795,0.9999050690889959,0.999997055608387,0.999840037845419,0.9998537601984465,8.716567642441165e-06,0.0006193430216565931,0.0003464340935520196,0.7806317843122822,0.9648035807729097,0.9991241873084447,0.8934948952404106,0.9971068406964827,5.722222971121618e-09,1.6197559880207756e-08,2.168853516070583e-10,1.0895108785706528e-06,0.9993226878627786,0.9996561435150145,0.9999987088589618,0.9999118134837135,0.9996970181756568,2.153441610805767e-07,2.7515272391725675e-07,4.942783271448497e-06,5.090938343977929e-07,0.9999983346310167,0.9999900658682965,0.9999971208803589,0.9999993834031189,0.9999980460626208 -रंग,rgb,1.0,1.0,1.0,1.0,1.0,0.9999776661990522,0.9999999999560072,0.9999982292447608,0.9999999999149445,0.9999999999895133,0.9999689257594266,0.5973992066266773,0.8873419648179726,0.908539218542485,0.5840382149640396,0.49861653237615317,0.4325926938672314,0.37915186595560485,0.4096673917161503,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999993752298,0.9999999999904823,0.9999999997827416,0.9999999995452138,0.9999999988076471,0.9999999879745888,1.0,1.0,1.0,1.0,1.0,0.5393278943959368,0.588235230407253,0.40977336595686487,0.2520374979889137,0.11022069710998424,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999978029485597,0.9999990330112218,0.9999999994525777,0.9999999985847874,0.9999999999960045,0.9999999999955855,0.9999999999996936,0.9999999999999902,0.9999999999999902,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -रंग,shape,0.9999997515265155,0.9999999845252048,0.9999996843331769,0.9999999999779423,0.9999888928781404,0.9999994249214387,0.9999999999959086,0.999999997184428,0.9999999999246869,0.9998557349280291,0.9999996711836774,0.9999999805554732,0.9999987735425709,0.999987258110478,0.9999887077724127,0.7517880201814374,0.955938092975613,0.010941222362677411,0.8690443198505579,0.9999998692917826,0.9999884345554961,0.9999079468257404,0.9999622558852683,0.999998450476505,0.9999995535499359,0.9999999811907591,0.9996885744570716,0.9999279545489892,0.9999834641204258,0.9999999069732852,0.9999983581506589,0.9999996666305763,0.9999983368813861,0.9989442010306067,0.9999996104036418,0.9996277895571342,0.9996302730919172,0.999922719630136,0.9999999999869724,0.9999999855842787,0.9999999999848042,0.9999999999902129,0.9999999999995841,0.999999999999889,0.9999999996844606,0.9999998222246639,0.999999974506423,0.9999990730763483,0.9999962253078358,0.9999997441493909,0.9999998704854512,0.9999999018675262,0.9999995992882929,0.9999910203881082,0.9999998271063942,0.9999999788646614,0.9999999712992332,0.9999963096089551,0.9999977372971011,0.9999994383725569,0.9999975625984426,0.9999997819773414,0.9999995323466386,0.9999991454372719,0.9999821924405385,0.9999922121348752,0.9999576166545792,0.9997251479286425,0.9995700049940406,0.9999846377173661,0.9999717817498004,0.9999930574366956,0.9999993133342983,0.9999999194899198,0.9999999012602672,0.9999983561994261,0.9999999999172617,0.9999958330478925,0.9999999989138104,0.9999956223177346 -रंग,object,0.9999999370557164,0.9999999970246465,0.99999953144206,0.9999999997614213,0.9999874682083757,0.9999974663317615,0.9999999999303055,0.9999999885258125,0.9999999996912277,0.9996357749328958,0.9999987269118975,0.9999995391095792,0.9999846471652613,0.9997799155760051,0.9998918283038534,0.6150075913573421,0.8866999033837467,0.006585411046661136,0.41134916055490933,0.9999999346643274,0.9999976333771644,0.9999714685982672,0.9999842631784523,0.9999959421332147,0.9999995546238579,0.9999999858207997,0.9995852133408101,0.9998629847281059,0.9999278850639648,0.9999997348079649,0.9999959454462457,0.9999990787905699,0.999993758612291,0.9988209900732027,0.9999985285056142,0.9996588997304486,0.9996718041014859,0.9999342231994904,0.9999999999215698,0.9999999175430995,0.9999999991497364,0.9999999993051414,0.9999999999638876,0.999999999992168,0.9999999981870071,0.9999999516200516,0.9999999912532825,0.9999998378520679,0.9999994174445775,0.9999999615723133,0.9999999755370269,0.9999999803160263,0.9999999350552815,0.9999989483867807,0.9999998447214579,0.9999999615320158,0.9999999755127783,0.9999819718777786,0.9999886362181468,0.9999834130052355,0.9999535568136743,0.9999971425949981,0.9999968806268952,0.9999939611930005,0.9999208572504623,0.9999408685896587,0.9999902728726066,0.9998493262602355,0.9998129246292052,0.9999903597258751,0.9999921911406986,0.9999989696071513,0.999999850600969,0.9999999797277046,0.9999999690768541,0.999998142112661,0.999999999623377,0.9999882680127302,0.9999999979961549,0.9999949892076208 -रबर,rgb,1.0,1.0,1.0,1.0,1.0,1.0370889109845663e-09,2.628594585643288e-08,0.9824817599723854,0.993027092368645,0.9949794726303453,0.17834704621703323,3.8209874302434785e-12,1.187270079606086e-12,1.1904234093017472e-12,0.00036654301551698124,0.0002544895337274995,0.0001913713192811781,0.00015036261849625925,0.00014002359455163608,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999989603057744,0.9999997461936794,0.9999991134661012,0.9999975508665642,0.9999948203481264,0.9999578238945456,0.9999998694648972,0.9999999039754609,0.9999999907888694,0.9999999723493344,0.9999999971109557,0.00374253785429075,0.002687966875716068,0.0011325445084887224,0.0004472392807806968,3.110770412257217e-05,0.7976897083450931,0.81313362181482,0.8050492586798577,0.7889530234379937,0.9999999999999394,0.9999999999999596,0.9999999999999933,0.9999999999985034,0.9999999999949354,7.232544217189007e-08,1.7547200373926203e-10,9.00044686915347e-06,2.023113309070858e-08,1.1005956101253906e-09,9.335350094128887e-10,3.751431321451233e-11,3.5648302599242073e-12,3.855382443503565e-15,4.122597410205179e-15,8.591830137299759e-15,8.4739571456995e-15,0.9998106405808799,0.8344408222141493,0.9998354504136098,0.6982738278343562,0.9996965737806934,0.9999988137893363,0.9999993663210721,0.99999999612464,0.9999999946361786,1.0,1.0,1.0,1.0,1.0 -रबर,shape,0.9999930783101869,0.9999389096062008,0.999999807365654,0.9999999999985574,0.9999989486559537,0.9999999999999718,0.9999999999998648,0.9999996503413701,0.9999985515041729,0.999999999883356,0.9999997823088537,5.2144239781981066e-06,1.0,0.00029618761122044644,0.9999999999993936,0.9999999999999976,0.9999999999999991,0.9999999999929661,0.9999999994403004,0.9997200805330455,0.9999997092755172,0.9999911080977982,0.9999332075970143,0.9989000668637197,0.9999720576592303,0.9997860999879244,0.9998894681693391,0.9999317492066335,0.9999171628446739,0.9999999999999409,0.9999999983827497,0.9999999999980398,0.9999986441716522,0.9999999999999987,0.9999915204941291,0.9999985905212858,0.9999649152505838,0.9997943686947213,0.9999895303949741,0.9998311702251519,5.4230381093928425e-06,0.09212343188783925,0.016574188455378388,0.0011751888477459316,0.9998687839923537,1.339972136385533e-05,4.713742060233869e-05,4.581764262740787e-05,0.00011447827392033123,0.032797867772455656,0.1329822710206351,0.25997439585558496,0.008653641007071925,0.005306991227472388,1.4189457175177133e-06,0.000298061338189009,3.0663821159092244e-07,0.0005918516286006154,0.003683735234392351,0.1361894417438499,0.0006991979883946185,0.00022864222474525738,4.5063622748989455e-10,6.736978379630172e-07,4.624407991885704e-06,0.016539902053767465,0.9996973925699231,0.9993899544016456,0.999983963790395,0.9999585760431347,0.9994902414396679,0.0010041936272492406,1.1161348625285128e-11,7.346747370467414e-06,1.382225265635663e-09,0.9997057311648332,0.9999907328985076,0.9998769337168258,0.9999999999969706,0.9999919451718049 -रबर,object,0.9998876406097267,0.9996758370505536,0.999998508405181,0.9999997605240486,0.9999558624886434,0.9999978761667901,0.9999828369903561,0.9954609052204705,0.9306804085874727,0.9999800688864685,0.9890327571317469,1.1050185532755262e-05,0.9999978405257524,0.00010430663324165487,0.9999364512722034,0.9999963393588209,0.9999976728601682,0.9999402009271623,0.9976897809916846,0.9996486391109122,0.9999981483268653,0.9999793384547935,0.9999301033902882,0.999415034627899,0.9999999005710988,0.999998081487976,0.9999995745823054,0.9999999718798754,0.9999997834171898,0.9999948038662849,0.9999862169441539,0.9999959274243128,0.9999121276476555,0.9999999930778338,0.9927879779711154,0.9999730126487983,0.9999434169836349,0.9997984327122351,0.9997411535128137,0.999881651614506,6.974240840633553e-06,0.0026137005367349265,0.0015785704338324043,6.881317353885994e-05,0.6046770289755922,0.0013460496656190724,0.0004426045510425031,0.00015419776048052086,0.0019355319583721534,0.37678206076400284,0.7092950578956144,0.9316535792151579,0.6237330130849494,0.46633324137946647,1.4062681395070005e-05,3.621841333455609e-05,9.026194735321467e-06,1.1618159520817623e-05,5.272595273841632e-05,0.008753688768036378,3.787109266874512e-05,5.7098055667769955e-05,1.572027527140323e-11,2.817043642465864e-08,5.841243968600705e-09,1.9468277726728102e-06,0.9995084028288732,0.9992261242353108,0.9999546656688368,0.9998599177704394,0.9996337993187548,0.00015062905590793586,1.499202266279939e-08,0.00013957629223182148,1.036725752555644e-06,0.9998501396903399,0.9999926950976643,0.9999048311488566,0.9999996859557603,0.9999522739815784 -रब्बर,rgb,7.696606114930404e-29,4.536468982417683e-26,8.384641580463728e-27,2.128989832005982e-24,2.2616167513256256e-22,2.356815656709122e-13,5.394511182440364e-09,1.709590444362516e-34,2.9081381226235312e-36,1.7073952396615082e-36,1.299030381396996e-33,1.9452665648634957e-23,5.962524328276287e-23,4.9429647762366305e-23,9.923310457072565e-30,1.6056885527375916e-29,2.3676130746207117e-29,3.3176722189627114e-29,2.5711678018812305e-29,2.096382285272918e-22,5.1094972911019045e-23,1.0193714673000613e-22,5.4941590865009e-22,6.496512224902589e-24,1.1085400265497876e-49,1.6390688141419064e-49,1.4889921667969465e-49,1.842201107666994e-49,3.604859027311632e-49,8.86172156358851e-22,5.445418354407607e-20,3.6616734149195e-21,5.9462298921262125e-21,4.405459612346245e-21,3.2700564973470787e-21,0.9999999888031738,0.9999999975083806,0.9999999959715595,0.9999999978477645,0.9999999997893798,9.023370718056567e-29,2.939070762632093e-29,1.011454441047554e-28,4.625237471824245e-28,8.103157754423017e-28,0.999999999798985,0.9999999999272511,0.9999999999281908,0.9999999999727345,0.004333145880362193,0.10840316533138479,0.66657534682669,0.006094071658088697,0.008741195884722865,0.9999780860496431,0.971731221001916,0.9999999857206907,1.5506716605937608e-29,3.556753359879189e-28,8.31819508267171e-28,5.25050489487175e-26,7.324858057918748e-24,1.445815483655812e-16,2.9397835488110845e-16,7.000765861517359e-17,7.395162575792962e-17,0.9999914108388619,0.9836949176661438,0.9999967055068981,0.9714310579778396,0.9999970109027371,0.9999999999999984,0.9999999999999984,1.0,1.0,7.6961493862358985e-25,1.6318742092569802e-24,2.0942731808267363e-24,3.8220489741265615e-26,3.6441243172888236e-25 -रब्बर,shape,0.0019439714361233974,0.07777642488662531,0.9924303266516596,0.9786481390145082,0.937414728093791,0.9298766244349573,0.9888911406123234,1.0075602588684195e-08,5.1965922696001325e-05,0.023819055966876158,0.43416001532217147,7.755919051877553e-07,0.004921020786533951,0.0004432111011748332,2.733118070308042e-05,0.00014876497151551502,0.00037183747860850534,0.4657131878693006,0.9999892403449437,0.8663159947259604,0.9980644775802309,0.9670884113054771,0.9873044102911548,0.999773393283551,0.9707852602585514,0.9978302996646414,0.9999705298035307,0.9997642774197945,0.9989624351702823,0.0003671665647414681,0.0086038682805502,0.009374696112654596,0.006609926244647545,0.989294967356435,0.9989662597694338,0.9999148009761634,0.9999811896876725,0.9993293157964366,0.9993299246664499,0.9996080637374716,2.617792201961447e-06,3.47784225234987e-07,4.0783519944602286e-07,0.00012019861620252622,0.00041508503592646795,0.8943048999063403,0.6099542146484533,0.12520000850638885,0.12579080602092654,0.002928534819784623,0.04095378083897061,0.09713350970013085,0.0005839790032899769,0.008682109032823385,0.023682484816187958,0.9824695243053064,0.03970978879859962,0.002221002643286112,4.9809324566254065e-05,0.0938175956930037,0.00424292881429424,0.0346095821497284,0.43553722824050684,0.4309335033835768,0.0009855980058733342,0.06028077554109019,0.999796836656018,0.9999992841218375,0.9999959839339738,0.9997935075879919,0.9992662656107408,0.10113815735171607,0.0015341886845614344,0.016062709772368244,0.0011284938626054688,0.8935960201639477,0.9933200060923781,0.9997744853433902,0.9999497603089733,0.9999141399391805 -रब्बर,object,5.0672509992877826e-11,2.072770575445182e-11,7.770725471062409e-08,3.1847037541951425e-06,3.0587274667131594e-07,0.9573365080210152,0.93858319639521,2.1109195738010553e-07,3.0725348030938384e-07,6.298010720105517e-05,3.5986758425499664e-06,1.030553480313785e-05,0.039072818413134563,0.0002174349101048766,4.4683349960762885e-07,4.453700243430683e-07,7.073059989537111e-07,5.650087710502256e-07,2.1993433836408764e-05,3.831313755442928e-09,9.056559793598095e-07,3.526789830939684e-08,2.94873659458635e-07,6.357512589197703e-08,4.99493795842836e-20,2.791913409347049e-20,3.8951193429805596e-17,4.643862583371212e-17,1.798542148948012e-17,5.890121350336078e-05,0.00012965965290901945,0.00015842560989929975,7.447254849756924e-05,0.001001749137099018,1.939991349581585e-05,0.9999718313454622,0.9999953741969007,0.999991888236384,0.9999459101164094,0.9999945918027527,6.459580857272539e-08,1.4812335715853572e-07,5.6800207836996165e-08,7.779705589093124e-08,1.8787279840612667e-06,0.9889449411545439,0.9907711195277883,0.9071379519012698,0.9329230920786119,9.779866294333456e-05,0.000724377033532177,0.006087652743461626,0.00011955812325671955,0.00025911173747499857,0.760760051043458,0.8413907535135683,0.9255349900786952,2.2886830141270517e-10,1.9496591559752513e-10,5.1045311041725185e-09,1.8122201974650507e-08,8.261644027360405e-08,1.200196083378533e-06,2.148755684493956e-05,1.355160379094568e-07,2.0557544347497092e-06,0.9998067446157792,0.9998401111293078,0.9999905751471736,0.9995833379496958,0.9997639566226265,0.9967622486696005,0.994086896709836,0.9998958655820402,0.996064375418273,4.2422930507976626e-07,2.493512789489442e-07,1.479702027048042e-06,1.5867282699852149e-06,8.703109544822414e-08 -रह,rgb,0.9998717847168194,0.9988962656761994,0.9985624790803428,0.904946419440881,0.7404078369542861,1.1635079164506563e-06,1.4011055921547493e-07,0.9980459272515867,0.9999379189177139,0.9999652725613133,0.9942573241386156,0.004936806070213799,0.0043805495101084755,0.004940910941139807,0.474262315867903,0.4133305278889313,0.3663461599278854,0.3277374604332372,0.35814840533171727,0.9663055537173092,0.9601094859388203,0.9373900082256938,0.6968675385375699,0.8630801244223314,1.0,1.0,1.0,1.0,1.0,0.004770539659566228,0.001614514815665809,0.0031221525629980948,0.0023509239862104098,0.0023416338176824917,0.001969968622277741,0.9870856940505822,0.9809504018571991,0.9942687700720705,0.9884280049629445,0.9902805716396169,0.23187472690182234,0.3391577337921606,0.2181605233726437,0.11880351795531573,0.09272662391772853,2.4879061751753436e-09,2.511966150981855e-09,2.5181438395465676e-09,2.597363895921407e-09,1.0071144132894269e-06,5.625142902372073e-07,4.3071372396652963e-07,6.029932261494546e-07,4.7661607636231204e-07,1.2527125006306502e-08,4.029635244470771e-08,1.0074320144453714e-08,0.9220420279954396,0.8074097111098223,0.9172841258975302,0.654584736483217,0.4253484671165687,0.0008082335594444803,0.0009552864198250924,0.003115712938541775,0.0030511067731675036,5.796203897008478e-09,8.779701299178665e-09,5.291233894802665e-09,8.991443340040394e-09,5.030705616391718e-09,0.041701124442397736,0.05579906525973991,0.12497826583804672,0.15943798961983094,0.9885807214308624,0.9818797891822661,0.9685749100115378,0.989128833147642,0.977560192715972 -रह,shape,0.9982487034124486,0.39072559370191445,0.6293305291740384,0.04242155439057238,0.9206043655210222,0.9806864620747343,1.0015590959645524e-06,0.999990507877234,0.9999755417293074,0.9999999440376011,0.9999993493568838,0.00483761360175814,0.003812265452163447,5.769554799053279e-05,0.0001452566791881656,0.0038287001049241336,0.001736236581797762,0.001511985984088712,0.9528374628096903,0.9994512640411322,0.9999852326033126,0.9999842661662329,0.9999920107620043,0.8909494173115536,0.9983871446303668,0.9995865953568666,0.9998117252224163,0.999769423200416,0.9936726590714746,8.854159957009545e-05,0.021264823647475773,0.0018767413562151961,0.09059566442918279,0.07430650713385711,0.21707767590564161,0.0006655463975257003,0.0008530409958390455,0.003475513273501466,0.003189311009753946,0.014586034846096574,0.995095287974585,0.9916000658938482,0.9544279240728781,0.9923111180073522,0.9998145917093467,0.00043320281877159104,0.0003027515678366976,0.0005931839652679587,0.0012450215518926013,0.5750495629249522,0.5450429524246894,0.9865498719095809,0.7921863198161647,0.9815055406344104,0.056081382663455984,0.0018000482703295466,0.023578291987513048,0.9998523584500737,0.9997211092570711,0.9996298234743337,0.9999532112746965,0.9993516882866393,0.0007710477517639518,0.003312572928210454,0.002799671542914667,0.008679182085246073,0.765928617652525,0.9219074857500887,0.9939291744847323,0.9981106466064056,0.9935783128603477,0.0006816125928813362,0.0002669461873949537,0.00014502039957160504,0.0008401123530793563,0.04278553450726974,0.27311290400058064,0.0009344375390518174,0.00023645097619002533,0.010513792924894575 -रह,object,0.9975442163094506,0.6956263049502912,0.782721615367452,0.0979716299473195,0.918246866758413,0.8448593781687538,1.5450514193439594e-06,0.9999624113335689,0.9999871961137118,0.9999999100193705,0.9999977768086955,0.004996093511728471,0.0235997920483141,0.0007497853908988055,0.02521682239764779,0.2638955425996428,0.15249594972643915,0.14514143109519997,0.9975893141500018,0.9993495766291035,0.9999399870767873,0.9999549846754817,0.9999687325252958,0.9780092869982154,0.9999999921762944,0.9999999983540926,0.9999999990967681,0.9999999979640808,0.9999999525314129,0.000878736624391968,0.02349442300332975,0.00811648810743346,0.07727163718905464,0.21337562794567289,0.5676865309088952,0.02806129603730471,0.030634653544552446,0.1516392602450319,0.12174860165050505,0.4558733034233084,0.9827106868355883,0.986276740294585,0.9656647856296391,0.9815017438145877,0.9993810291075638,0.0002367587527746819,0.0001710689677799479,0.0003373864516300311,0.0005756805906311895,0.1615189170148626,0.12388529604233062,0.6784162161649008,0.2258224367521223,0.6804706579697951,0.02507635211867233,0.00595677340573262,0.011514862545544813,0.9999901431659443,0.9999807613776461,0.9999790568144367,0.9999946024489627,0.999946377103034,0.111017500965538,0.19024893126868742,0.2595954038035696,0.4843017651469512,0.12093423074941968,0.35576592085065273,0.657832410712464,0.8854835930528031,0.6478859237357424,0.01101796151090295,0.0070611561253797386,0.00422236391511095,0.013680766070120441,0.06396722157569915,0.31901073798558993,0.006926637516845823,0.005218715797622742,0.16171270281246916 -रूप,rgb,0.9999986311544505,0.999999863006168,0.9999996099653539,0.9999997417960159,0.9999999525756151,0.9999717301381336,0.9999985747051487,0.11987103866808257,0.005628974345058771,0.0034688458006700918,0.07332972518123157,0.6474633512194271,0.5934613939457333,0.5642728630102701,0.6977130129808633,0.7262257803412946,0.7481555124891289,0.7663477830901111,0.7374765129978009,0.9999999875174371,0.9999999722063228,0.9999999741365826,0.9999999654910002,0.9999998153747601,0.03647858063415426,0.048105177969460435,0.04133964469794627,0.044681294448063257,0.02628795798403412,0.9999953452986122,0.9999989305445842,0.9999970716235627,0.9999970337395501,0.9999963357582725,0.9999943509527959,0.9213911112218928,0.9496002516277715,0.916441577920599,0.9418854819125809,0.9624217505951163,0.9308942309969462,0.8784300079272221,0.9113352861164024,0.9416132486593815,0.9071013308205352,0.9999999998514297,0.999999999852812,0.9999999998501603,0.999999999839376,0.9999999999895761,0.9999999999946907,0.9999999999975318,0.9999999999841551,0.999999999982123,0.9999998775971987,0.9999978464772301,0.9999999741755723,0.009691281296167776,0.011480951485805349,0.0040888589409083164,0.009157328979518115,0.011367901841314004,0.5702570836801021,0.5315760101999576,0.3007061214828919,0.3042327280143273,0.9999999999612081,0.9999999995833773,0.999999999965733,0.999999999467506,0.999999999961048,0.999901499653963,0.9998881047158673,0.9999358347678847,0.9999068717322452,0.9999998853676098,0.9999998984350832,0.9999998753836199,0.9999994378409849,0.9999997429017745 -रूप,shape,0.9997711139350547,0.999904696635671,0.9988233267091586,0.9999999999357487,0.9999999997012539,0.12570531089189774,0.9999999999999996,0.0005247804428542654,0.13122190814092363,0.9999103032871565,0.001929831408828945,0.9999983906951481,0.9999984342258478,0.9999978672156249,0.9999999958665637,0.9999999998999645,0.9999999994178503,0.9999999999944202,0.999761612341308,0.9707129346879112,0.883247026111763,0.9943976213527689,0.9827245526676496,0.8688401595263224,0.9999920978863354,0.9910718423911666,0.9979531098549981,0.9997507873322079,0.9999387107390086,0.9999999910319245,0.9999999995071205,0.999999995372423,0.9999999999833553,0.999999999994341,0.9998655081105796,0.9999631989245493,0.9999394355666635,0.9999999999730447,0.9999994900220611,0.9999973469438564,0.9924946290214318,0.999163079979548,0.9997793533048133,2.116901793550756e-08,0.005971049348091226,0.9999993856105214,0.999999574913963,0.9999987982058566,0.9999998205142384,0.9999962115924854,0.9999994894119275,0.999943940742179,0.9999526456221135,0.9991980356148156,0.9994435379336177,0.9999993293417312,0.9999720187465705,0.013068756299638959,0.042138735400559256,0.5135552227472111,0.9527632376792681,0.0018824765384374024,0.9996985775441749,0.9999873416613063,0.999999992763221,0.9999968776568433,0.9999993420000644,0.9994807910581868,0.9999653838362161,0.9484262295902882,0.9635119075868601,0.9999999631727801,0.999999834937266,0.99999987828397,0.9999999261893154,0.9711245805198362,0.9999985474523518,0.9999811136197073,0.9999999304584248,0.998836720676847 -रूप,object,0.9997319824865684,0.9999960686842974,0.99978614355558,0.9999999999814269,0.9999999969398132,0.9999997823880346,0.9999999999999973,0.11411759471657659,0.8161055208785425,0.9887147747187305,0.3959149804451571,0.999997127477195,0.9999999384531071,0.9999988215540047,0.9999203762745467,0.9999982573947253,0.9999950078346715,0.9999977694195589,0.9997592607379189,0.8877819930760646,0.9962466643040895,0.9981008523770702,0.9991026613867051,0.9995517200720546,1.230516524901412e-07,5.17978163848427e-08,0.00016439728659195554,0.00017858936114207408,0.0002869393373935313,0.9999999890769066,0.9999999953272933,0.999999990657806,0.999999956188837,0.9999999999616727,0.9999434370069148,0.9998832815811107,0.9998828060220545,0.9999929327696115,0.9999256134153518,0.9999172116014167,0.9998160572836282,0.9999871824398654,0.9999991216302399,0.4666792776496872,0.9786944024929515,0.9999999996771918,0.9999999996644975,0.9999999964183308,0.9999999981716123,0.9999995321514767,0.9999998244960425,0.9999974676204088,0.9999863742750997,0.9999556944687384,0.9999998505057163,0.9999999514392163,0.9999999601339509,7.280639940782099e-06,1.6834336874837545e-06,4.286552025163054e-06,1.773946369620518e-05,2.0579285379557224e-06,0.9183295513301061,0.9992321716412786,0.9981249620919884,0.9854647390115754,0.999999999996493,0.999999999794905,0.9999999999327156,0.9999999701103814,0.9999999887056282,0.9999940937793794,0.9999945723778599,0.9999974775983936,0.9999770217711693,0.9999861686400096,0.9999999841602636,0.9999999652667101,0.9999999986268202,0.9999786472140751 -लाल,rgb,2.934393926779951e-09,1.4440386268860595e-10,7.096862321427968e-10,1.0673592549203311e-09,1.251365707572346e-10,0.04439928255343877,0.0022644250338702005,0.9999004001588702,0.999999807894929,0.9999999297232798,0.9999839432402783,0.9999883961933351,0.9999955495066567,0.9999964251210085,0.9974717200568289,0.9970085825684853,0.9965677368471537,0.9961282486834956,0.997051454337966,1.0122562875893804e-11,3.2750074586394715e-11,3.335795671837365e-11,8.433530888021222e-11,7.273592760097293e-10,0.9999407341425596,0.9998784117612322,0.9999068717397444,0.9998749482533444,0.9999063722970181,1.595671434783294e-06,2.5323675268348675e-07,9.221542244192303e-07,1.089605547186534e-06,1.5462321280324668e-06,3.481277874834371e-06,1.0,1.0,1.0,1.0,1.0,0.9355572151995004,0.976594540304159,0.9649303932636933,0.9409938827966094,0.9832334698181261,3.103266630144011e-05,4.6570260583221684e-05,4.8773826202841224e-05,8.610844190734168e-05,2.7846641613385677e-12,2.1443747880031884e-12,1.1572359513361581e-12,7.34758384545263e-12,1.0640599831100967e-11,0.5673674447443583,0.981910647916961,0.4454579924336336,0.9999999947385987,0.9999999973538825,0.9999999998573088,0.9999999997651323,0.9999999999395746,0.9999999886798784,0.9999999943064959,0.9999999991109492,0.9999999990933979,2.116183064736082e-08,2.0748265152702087e-07,2.3393333148314265e-08,2.8539178535598265e-07,3.2150182169072294e-08,0.9999999999996003,0.9999999999997276,0.9999999999998401,0.9999999999999034,1.8494682622374567e-10,1.7325820035536922e-10,2.681666213255753e-10,1.919887337810818e-09,7.145741199393647e-10 -लाल,shape,0.9999537740218417,0.999999982688171,0.23733160218833438,0.0003115800274967092,0.9998188615652931,0.9999518847540609,2.660610181579224e-05,0.9999999325828138,0.9999999999998459,0.9999910121892538,0.999999999263754,0.9999999999974434,0.9998111492584546,0.9999455718510153,4.953084376806753e-10,3.397687543603384e-10,1.219843210780481e-09,1.0510680467194713e-09,0.24324327694363457,0.8760157944061483,0.9999704633781187,0.951196995886123,0.9950635030446247,0.6599737334617359,0.836365305343749,0.9433738418410677,0.9931456846762676,0.9990181054787975,0.9989641232707778,8.732091962309083e-08,0.0018831447021431396,5.6034426790724995e-09,3.64760160615524e-05,1.2153240697077874e-07,4.396960259405191e-06,0.9991412940930843,0.9993064920822273,0.9988399050198613,0.9978089451166137,0.9991563222007379,0.9999999999992557,0.9999999907823228,0.9999999999363016,0.9999999999826357,0.9999999998817355,0.8981736683317058,0.13032003107890958,0.10007785119403821,0.9871509593438282,1.3848711650947229e-05,1.7530927258060981e-06,1.353256579989457e-05,0.0005617280257728153,0.03585117271811434,0.9999990376191596,0.9654554372498674,0.9979667804459962,0.999986180122286,0.99994315241835,0.999725150742479,0.9989002667939787,0.9992235651316467,0.9995489700259138,0.9999999935765453,0.999998064556682,0.9986892763868371,0.8384265494722524,0.9939521327696276,0.005183949247682952,0.99915047110716,0.9233407688306018,0.9999960812941858,0.9999015447787905,0.999956034095824,0.999992043254865,0.7773284648733898,0.9999999999794102,0.00021738686743677933,0.8195328539757559,0.0017849844363612955 -लाल,object,0.0014170482381478857,0.00026440102398744765,0.00013895841116782394,9.013501224760208e-06,2.2946745282020238e-05,0.005343777211876968,0.13020729448856158,0.9999905677869871,0.9999999542444503,0.9999995602883969,0.9999881033077169,0.9999807183676966,0.9999418479708432,0.9999090591300209,0.09962388445848751,0.4347239936768343,0.27899664957313225,0.09342501066072963,0.9220904834730831,0.0001442496921193302,0.0001245697792654893,1.839009970197911e-05,3.885931399259196e-05,3.52002282529851e-05,0.9998989763463252,0.9997275203837149,0.9995721163299333,0.9996948513024979,0.9998897725153723,5.087432132868594e-06,8.35742321748301e-06,3.998419896039908e-06,3.7044257119382005e-05,0.00019868726838007342,0.0006157008041499304,0.9999994958322885,0.9999996541384705,0.9999998035617346,0.9999766881134639,0.9999995252601723,0.6476339503403166,0.893698444157585,0.91264964038433,0.8820486768352926,0.8004018823130803,0.0007463265574730952,0.0005928518051306888,0.0005701881753400053,0.002135947840016308,6.728537542255674e-07,5.514070697724463e-07,5.632852344794185e-07,2.218251652258466e-06,1.7199214180453154e-06,0.8563123723185165,0.5267131651487861,0.1550450933534545,0.9999976717253473,0.9999973308889828,0.9999993509146631,0.9999968004449868,0.9999959759430628,0.9997542619134805,0.9999994821908634,0.9999996489682124,0.9999048069417041,4.1594124073281544e-05,3.231609259625701e-05,9.636575200937763e-07,5.645902732986226e-05,6.6619414034510265e-06,0.9999992326354306,0.9999965835734277,0.9999969969654466,0.9999995819133278,5.655332744259535e-05,0.007404508864122509,2.3854215145339558e-05,0.00010387158558197829,1.0652599680616973e-05 -लिए,rgb,1.0,1.0,1.0,1.0,1.0,0.9999999999999947,0.9999999977575713,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.8265190283932518,0.9111934845910689,0.917000303397387,0.9700432416595689,0.9991466486133445,0.987104955263101,0.93784207651093,0.9965403576565929,0.9930845503943766,0.9999999993856872,0.9999999999999498,0.9999999991718815,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.00476659593351466,0.14380715378521639,0.0040606653108700924,0.2025789543786914,0.004742688645413981,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -लिए,shape,0.996969850159719,0.9999899731183384,0.9351515750401608,0.4264419768368192,0.9991492471050404,0.9999999863003195,0.9999415810172195,0.998298787152919,0.9999987542775419,0.900421929350076,0.9921437555446795,0.9999998799249754,0.9999960556652766,0.9999993502810347,0.9999983294856951,0.999985650604181,0.9999858978915779,0.999985852533102,0.9999999188222018,0.9999852292350596,0.9222884410587009,0.9303304733162084,0.9738045706007125,0.999779506326818,0.9998771513448175,0.9999915396817873,0.9999878526243958,0.9999317090587767,0.9997177084251138,0.9999608274517017,0.9999788517496931,0.9999686907904123,0.9999872636448949,0.9999765102593949,0.999977681039921,0.9496837319394369,0.9899439629757307,0.9999999968287943,0.9999999782427806,0.9999999439589102,0.9999972740480135,0.9999860090704832,0.9999844172528307,0.9998114557157015,0.9999999316277162,0.9999998907512748,0.9999999754231902,0.9999998687722821,0.9999996887705718,0.9999969370762053,0.999986865354228,0.9999899025877049,0.9999899860886085,0.9999836225011932,0.9999998943026048,0.9999999904784335,0.999999976410935,0.9999741455734665,0.999990186062875,0.9999911255258782,0.9999992038316372,0.9999929990197512,0.9999998763375173,0.9999999938305126,0.9999996902039048,0.9999998442528208,0.9999986275192344,0.9999998661968962,0.9999979396740667,0.9999439014175541,0.9999519780296061,0.9999999646906602,0.9999999241307371,0.9999999828805591,0.9999986561921249,0.9998430513681409,0.9999997078591315,0.9997392645142471,0.9999999292728009,0.9999608142953658 -लिए,object,0.9999946804511227,0.9999999515114247,0.9997695880608816,0.9998217750141182,0.9999980011894489,0.9999748424542158,0.9999675270420448,0.9998321692885136,0.9999997557580121,0.9996975170146415,0.9998849338678614,0.9999983640517185,0.9999954654658408,0.999997804604397,0.9999999917110819,0.9999999917775263,0.9999999902765303,0.9999999952206431,0.9999999967137385,0.9999998185798615,0.9998466756063461,0.9999290262278897,0.9998908331869316,0.9999997479676139,0.9999999999997562,0.9999999999999731,0.9999999999995299,0.9999999999987141,0.9999999999991427,0.9999977201861218,0.999986972091624,0.9999952465276126,0.9999890885235045,0.9999989883094015,0.9999978969424139,0.9051493033476188,0.9392938040551468,0.999998970525515,0.9999993695011143,0.9999899723453596,0.9999923751038142,0.9999863458258816,0.9999964596068924,0.9999400108240875,0.9999993342591966,0.9999808436831036,0.9999885387036788,0.9999844130309434,0.9999686768833701,0.9999839545221852,0.9999609697997044,0.9998527877400615,0.9999853849334731,0.9999730417807858,0.9999970596413539,0.9999998741441053,0.9999971946560124,0.9999999984292922,0.9999999989791781,0.9999999981694037,0.9999999988578279,0.9999999973808273,0.9999999998225197,0.9999999998919251,0.9999999996947719,0.9999999987402226,0.9983674284625059,0.9998632212808779,0.9942997697296397,0.9791995986018373,0.9496233718721614,0.9999980593949417,0.9999994668280223,0.9999987290304513,0.9999957574920937,0.9999683746306517,0.9999998175838436,0.9999720998384757,0.9999999951435836,0.99999882542903 -वर्ग,rgb,0.9999999999998939,0.999999999999964,0.9999999999992408,0.9999999982614618,0.9999999996620925,1.1442646513671848e-09,2.866139558429011e-08,2.5778796498498243e-05,3.793464031322931e-05,4.602930262787157e-05,1.0699994620223446e-06,3.243316429376696e-12,1.873623650305828e-12,1.85225793674796e-12,4.5236418567461024e-08,3.784134515082382e-08,3.2958983624146956e-08,2.9351218093713852e-08,2.7514685514521072e-08,0.9999999999998737,0.9999999999987481,0.9999999999972473,0.9999999997577353,0.9999999982097789,1.0,1.0,1.0,1.0,1.0,0.15644236038007603,0.41544673448373526,0.1937448693084112,0.11901695790946022,0.07581519850754422,0.021142908867906332,0.9999851946257149,0.9999897237706514,0.9999977067456817,0.9999955646474821,0.9999992250125986,2.2436986579220292e-07,1.655851875380956e-07,1.0967219191755065e-07,7.189902650277142e-08,1.5121252389751723e-08,0.4603603559220494,0.5146052227583667,0.5072905201621082,0.5305387967236613,0.9999990744506853,0.9999995308768901,0.9999998931158026,0.9999934921007585,0.9999867543281733,3.7741883745901687e-06,3.8332714195517404e-08,0.000208798399779447,1.824338527596592e-10,4.451923305449634e-11,5.2176913333245364e-11,1.1266779303108907e-11,5.149347368926138e-12,4.548438630563294e-13,5.400187899389006e-13,7.873964391327881e-13,7.853164353374881e-13,0.9343326458713439,0.06576760610424161,0.9466323171203732,0.038841984210301134,0.925160806864538,0.9999869167934264,0.9999914739592463,0.9999998047005574,0.9999997346444838,0.9999999999971732,0.9999999999945202,0.9999999999718368,0.9999999998850033,0.9999999999207945 -वर्ग,shape,0.10222334617224856,0.009420471594909566,0.002115409940526884,6.38076196839095e-05,1.1732081554611635e-05,1.6472037927708282e-06,3.631680035181131e-06,0.000402173404392024,6.158383708160786e-05,0.9863637808714442,0.9999579082597942,7.052732841616565e-08,4.212797920456611e-06,1.3666126185448232e-06,3.8813533565900184e-08,1.0318833895945097e-07,1.2870558790531742e-07,1.0296161840494252e-07,0.0019118355420155333,0.9997575584664745,0.9999950040507428,0.9998781117441942,0.9999295840991493,0.9994588319406307,0.13057358691465232,0.002590240207906606,0.2392449933018309,0.766723022070507,0.9988498106771103,8.059086392919844e-08,3.892593714249629e-07,1.2301784952422713e-07,5.058985204922246e-05,6.845297075248307e-06,0.0007479551273109215,0.0005966042647027768,0.0007229367431771744,6.683938599739605e-08,2.0360599663805237e-06,6.442087138759311e-05,4.666095760190835e-06,1.4871925048403617e-05,3.838332737766649e-05,0.00011613942184372566,0.029351340702892352,0.00010656353547740371,5.717622242768987e-06,4.274285033804603e-06,4.061238212210621e-05,0.00048318081185073615,0.0038032555087269986,0.2569009692643386,0.055867286525581324,0.4839039750412242,3.014230956049869e-05,5.476092739000457e-06,3.5340945330592387e-06,0.004901511085291642,0.07366127612150743,0.9617183676976621,0.9767363417349018,0.929121339822747,3.2809479142979025e-06,1.6503549269650956e-05,3.2090981751815515e-07,0.0001387856932913672,0.47841814476530825,0.02334882119278638,0.9947904362958567,0.7245981987087082,0.5837621168437762,3.882772385704605e-05,2.4094326939817597e-08,3.623214032145511e-07,5.066356863117531e-06,0.006448991774402617,9.181935671104487e-07,0.0001919720267154199,6.971533130977739e-06,0.006440859112068479 -वर्ग,object,0.045150356104832375,0.02324478401808807,0.31943263171494374,0.0007637105131893068,0.0013569103534904446,3.181422468220041e-08,1.7366933585458323e-07,0.0003608350001461764,2.8445288222323754e-05,0.784809399442163,0.9970208555484741,7.896594455281701e-08,9.831319598276885e-08,1.5912936394601045e-06,2.3410923199729068e-07,5.2262041015930696e-08,7.655832668087415e-08,3.039159237767309e-07,9.337451297686433e-05,0.9998895541685362,0.9999990402878605,0.9999644119842954,0.9999678949946808,0.9997503202509377,0.9998017842786223,0.9880667384064105,0.9994768080495467,0.9999574465531657,0.999997638605258,3.6240711781218945e-07,7.003988828734698e-06,1.2763873706327513e-06,0.0009364529942874455,7.577086226532302e-06,0.0038129260180575957,0.0008501270837373274,0.001157278091773842,7.611833873324922e-07,1.1634599260369936e-06,0.0002068169297833888,1.1227129532321815e-05,2.8212025012701112e-05,5.7161192626269824e-05,0.00017495979852245465,0.002371499501773683,0.00010726785567760733,6.014411708266445e-06,6.729992077510546e-06,5.018916210067758e-05,0.002589888259675101,0.018850447575653805,0.48140668744731774,0.25810635446544267,0.6754161126300434,7.971903665426873e-06,1.9394835633332016e-06,5.337682518023456e-06,0.002910963814859723,0.016859696290146553,0.8689417180061172,0.7306322072766404,0.5083709165250618,3.286136929916067e-07,6.4573135770254e-07,9.871428111028935e-08,1.8353032959094906e-06,0.017518043372889883,0.0033256226652449363,0.9266769248543845,0.5526745658764743,0.38036111586915167,1.8399477669548772e-06,2.8648002781373036e-07,5.235379918730469e-07,1.3076797523568603e-05,0.12392298029770812,0.00041657725220758935,0.011777380583386114,6.721489851462529e-05,0.1804946296598877 -वस्त,rgb,0.9999918492007948,0.9999895960214618,0.999947318101237,0.9931657202202879,0.9966018535863731,0.02946430084820303,0.41142956405234615,0.9516615713134088,0.9999149035610196,0.9999743394883126,0.9467403585120374,0.432123025015257,0.6827398737268783,0.7211257254465309,0.04970951294037971,0.04119679229756277,0.03548112100839926,0.031219882939952627,0.03691029961258907,0.9999619036399305,0.999860209221527,0.9997746453065233,0.997130558024407,0.9926048699049279,1.0,1.0,1.0,1.0,1.0,0.007314000149886105,0.013034705328027104,0.00815305810547911,0.006874563739291792,0.005828120117195906,0.003878018517804778,1.0,1.0,1.0,1.0,1.0,0.010146324005194699,0.01775471629257979,0.011499282730450509,0.006997396726247942,0.009250877947950346,0.9999999999955271,0.999999999998465,0.9999999999985141,0.9999999999995193,0.9999472519087126,0.999988904097322,0.9999979753042472,0.999906546114277,0.9998966564111214,0.999999999886003,0.9999999985363435,0.9999999999997011,0.9995388254049469,0.9997540976114359,0.9999953879533864,0.9999920688355122,0.9999994662815024,0.9999938584885651,0.9999982431609796,0.9999997776543831,0.9999997763370033,0.9999999018297913,0.9999837353038015,0.9999999504389097,0.9999767358354335,0.9999999539253558,1.0,1.0,1.0,1.0,0.9998226374650395,0.9997259139523632,0.9992929050130475,0.9988930897245617,0.9988888853317934 -वस्त,shape,0.9998242171057212,0.999987956620818,0.999996273280978,0.9999952933193907,0.9999997320913638,0.9971399453715333,0.9999999226160314,0.9981597219964354,0.9998652826744686,0.999988640969441,0.9999840849404227,0.9977495760247203,0.9999978727726911,0.9999913503756008,0.9999999998557942,0.9999999965472828,0.9999999969971127,0.99999999963362,0.999999899661525,0.9999995747113718,0.9999972590188383,0.99999576702402,0.9999928247742323,0.9999959606017413,0.9999950633320839,0.9999900701193801,0.9999982463324628,0.9999717085236303,0.9999903775763501,0.9999999996896465,0.999999998987364,0.999999999910637,0.999998999316291,0.9999999966441981,0.9999993020354045,0.9999977856382742,0.9999962837304823,0.999995001919296,0.9999893785307191,0.9999940689864545,0.00043863541881756135,0.02324726838759879,0.013018925311880099,0.008524735370378183,0.7898862873464577,0.9999997585062398,0.9999996386950922,0.9999994353983105,0.9999997395811672,0.9999992056959041,0.9999998487174873,0.9999997612898329,0.9999997852710422,0.9999997945291983,0.9999870814398188,0.99999933095044,0.9999962586589466,0.9999909673874342,0.9999909054445376,0.9999974084364764,0.99999329634826,0.9999847716697141,0.999999240240332,0.999995897943941,0.9999999002037792,0.9999954061595432,0.999999992813063,0.9999998347894663,0.9999997217926585,0.9999913810734189,0.9999953429553383,0.9999988184103746,0.9999999704655469,0.999999135330311,0.9999998944459851,0.9999830811887391,0.9998366414518415,0.9999761476028628,0.9999831426581901,0.9999973169892443 -वस्त,object,0.9996795748377292,0.9999784089356568,0.9999920807050983,0.9999671427086654,0.9999965548844366,0.9886296963897848,0.9999989063500175,0.9943564763414154,0.9994794229074341,0.9999226588960843,0.9999136502667895,0.9805496036295331,0.9999387423541435,0.999869773568611,0.9999999860610893,0.9999998164442289,0.9999998550879731,0.9999999757787744,0.9999971149732306,0.9999995870436953,0.9999971531482361,0.9999944603500217,0.9999903955638233,0.9999914371567209,0.9999977274995329,0.9999946974764143,0.9999969616754186,0.9999557400430914,0.9999849975163874,0.9999999812518913,0.9999999597389596,0.9999999942863282,0.9999831305930018,0.9999999113732009,0.9999977832311047,0.9999988826550897,0.9999983002138899,0.9999948053461561,0.9999944495182986,0.9999962552165924,9.630006758747423e-05,0.006153221393945178,0.0057155243062475165,0.005784950581457508,0.6340964350182883,0.9999996511841482,0.9999995253647739,0.9999993705992423,0.9999996650865712,0.9999993566891148,0.99999986213175,0.9999998404235267,0.9999998232243664,0.9999998220278558,0.9999816789730671,0.9999983251614888,0.999995566442557,0.9999745193051297,0.9999792726460128,0.9999929335165941,0.9999806094422825,0.9999724171599822,0.9999942824003467,0.9999694783373778,0.9999990728915769,0.9999761115505966,0.9999999733610692,0.9999994562287239,0.9999995101260448,0.9999864236578245,0.9999942437149787,0.9999990989141406,0.9999999676253853,0.9999994928410824,0.999999928305561,0.9999606889626633,0.9997038970876682,0.9999476459408919,0.9999528636512877,0.9999952062775728 -विभिन्न,rgb,2.4691673888909688e-15,1.1561679645551413e-18,6.39261612861902e-16,1.546615346863015e-12,2.7043105604987497e-15,1.0,0.999999999999996,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,8.348313006224903e-21,9.41460006389152e-19,1.9577418054512983e-18,8.110632306873703e-16,6.607773294513138e-13,2.8072473659035707e-19,3.4207053227684083e-19,1.3394002581594563e-18,4.384734501186574e-18,3.556393197446223e-12,0.9995813812889152,0.9148290377920734,0.9981368611111778,0.9991845159022331,0.9997554997174551,0.9999867823228253,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.8711236883795502,0.9101244853822451,0.9190908735942721,0.9634824894268453,1.1895962175753502e-17,2.2966796472877476e-18,1.0908736639224973e-19,5.049052532785455e-16,1.9749511858780543e-15,0.9999999999999998,1.0,0.9999999999999118,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.880243680809404e-06,0.07829193659745436,1.5903205611329812e-06,0.22714607054015662,4.112702297844319e-06,1.0,1.0,1.0,1.0,1.0096803152468573e-16,1.5656386728859797e-16,1.7944951654594684e-15,5.324709161011123e-13,4.1308104575904064e-14 -विभिन्न,shape,0.9999915971962867,0.9999999850380206,0.002171574002727899,0.09768931922831815,0.9994172881081931,0.9833639576996491,0.8554795836772427,0.9999999756666363,0.9999999316827413,0.9962935751817978,0.8889176614477535,0.999999909478972,0.9999522275469308,0.9999326221263881,0.9999999940225017,0.9999969621177897,0.9999960420295221,0.9999974915599246,0.8198006536617669,0.0017397241395263525,0.020635697263059964,0.0006304566704245937,0.0027940286661941693,0.022091944396598968,0.9254724887434959,0.6135749223878403,0.0009867133264577763,0.0024067557935063795,0.005841057389421734,0.9999999988076509,0.9999997942334756,0.9999999746628443,0.9998779961577765,0.9995182459640969,0.9984119363545989,0.0005397579321901111,0.0013099258844745118,0.9849444805128611,0.9886205380443063,0.32674161874794116,0.9999996685231063,0.9999993659254783,0.9999999604399279,0.9999999642963883,0.9999437003985016,0.9992746584705011,0.9993261951613581,0.9996436430478591,0.9996425885719843,0.9947812975055593,0.9900730359902061,0.7327518996811406,0.9992579006267481,0.9992154672177506,0.9913622330505035,0.9948470665750128,0.9997355201180942,0.9999976723656561,0.9999954708083268,0.9991699294552695,0.999774542960914,0.9998744963366644,0.9999941681010616,0.9991360847017635,0.9999987743202864,0.9979604459472436,0.32720527069367905,0.1773985758191387,0.0008789670279974301,0.03113845094249662,0.21033427451604408,0.9999916574913507,0.9999999999844067,0.9999989654366762,0.9999994420588552,0.8848148489093323,0.03677617987120677,0.001633697116667872,0.008660609207462849,0.020641462617488216 -विभिन्न,object,0.01474976684487939,0.0039603008354840985,2.794499682611113e-06,1.494843307492167e-05,0.0063283240648411955,0.9999837704595173,0.9544383165313456,0.9999993801686675,0.9999998464393989,0.9999968837889258,0.9992448638774788,0.9999999999861771,0.9999999971657396,0.9999999026283198,0.9999999999650102,0.9999999995543667,0.9999999981781909,0.9999999958691996,0.9999999233396525,1.9546257341227667e-08,2.9200501086851935e-07,1.6877442202653465e-07,9.459510712200421e-07,1.4851741080853804e-05,0.0005325992081286102,0.007253629475492486,0.01022189286302197,0.018128476167139872,0.007832848153216264,0.9999986411925396,0.9999768138478308,0.9999960703510192,0.9998893965292729,0.9996142066828144,0.9985343329733942,0.9999963903632672,0.9999989062937396,0.9999999999182854,0.9999999957274566,0.9999999989820987,0.9999999735893819,0.9999999995786877,0.99999999656414,0.9999726596212608,0.9999924920779659,0.9992694353396336,0.9995716159095166,0.9997118366974236,0.9997116578529509,0.00028167083910108503,9.356673109924582e-05,1.0740320197641825e-06,5.2776627762119906e-05,5.851300554989361e-05,0.9999975139284598,0.999998124434926,0.9999960153761471,0.9999988471016446,0.9999983774685233,0.9999460549718692,0.9999998260498811,0.9999699238493082,0.9999999999882818,0.9999999999329674,0.9999999999975095,0.999999999899426,0.9693255462167437,0.7929297536364658,0.013779158560565823,0.19882076738583748,0.1252002194285199,0.9999999999771318,0.9999999999999876,0.9999999999955886,0.9999999999624822,3.318250404998452e-05,2.3628616456649547e-06,2.946110658052646e-07,5.2072134372825555e-05,1.1188949565904992e-05 -वृत्त,rgb,0.9991987466087513,0.9988917646324387,0.9956062276571963,0.7164926230353055,0.7961466760356328,6.1275681224972394e-06,4.044487701946575e-05,0.02098779281902145,0.589228040898186,0.7605325530943358,0.010868979163932011,6.19245008055425e-05,0.0001013028448686371,0.0001143378991393293,0.00011575181943280866,9.721410806170532e-05,8.47007579004987e-05,7.531106318650267e-05,8.407169139003064e-05,0.9953050065519244,0.9863003499036522,0.9786111689855915,0.8131510095402099,0.6928977623076084,1.0,1.0,1.0,1.0,1.0,0.00013939623985993898,0.00019701138862569922,0.00014381032597955522,0.00011524609751209218,9.784718923971307e-05,6.280570555505178e-05,1.0,1.0,1.0,1.0,1.0,4.8515453184484025e-05,6.962433648805759e-05,4.660704606575914e-05,2.9556026470411064e-05,2.6725970884038162e-05,0.9986454113963038,0.9992822116319856,0.9992926228709743,0.9996325108902507,0.5731777272855395,0.7646744836250599,0.9091001670249775,0.40636391886158635,0.3609576072243356,0.9649974877394424,0.805521500330607,0.9992511250218485,0.0316316877585386,0.03155152843763562,0.2681533783812946,0.14194807054388936,0.37035475997696815,0.03510145799047928,0.07196210596334564,0.24014059765178755,0.2388671908592792,0.8145319797664433,0.11126825768621021,0.8678506023112352,0.0868062418649026,0.8659131041774248,1.0,1.0,1.0,1.0,0.985647388388864,0.9785085350851714,0.9510855595504217,0.9363363514416129,0.9323102415745153 -वृत्त,shape,0.9999657937878422,0.9999388319293685,0.9998779678971099,0.9999968540944393,0.9998467618018251,2.0528516190525632e-09,0.9981677879756948,0.9999985546779397,0.9999980959806325,0.9999988630137171,0.9999983747672555,2.4906588243310695e-06,0.10878927782401109,1.9527191936640624e-05,1.3194228347886584e-05,1.130352574220574e-06,1.106351170481162e-06,1.1314284162559013e-05,1.0567223817854345e-07,0.0019938225993896474,0.9136221846740046,0.8101299052565846,0.6608548185419313,0.00014612641784774583,0.6207374204472984,0.03283150867241825,0.0010256731784291171,0.00032784937454223524,0.0008797489014811225,0.003475880021840826,0.012713515559661366,0.0021128606581637685,0.0009452855509832054,0.00013900202192316014,0.001148408823042796,0.003960100499884725,0.0012512200231258952,1.7260608788631026e-07,5.78283661829099e-08,3.3522573337629755e-05,3.577459023231989e-05,0.00010101161080493347,5.325125147603335e-05,0.3482827124636829,0.08352086875353125,3.7659178249767174e-07,5.463808843725942e-08,2.7042430917066694e-07,9.812779939834782e-07,1.4097422802432245e-05,0.00022138993350945564,7.099623984793379e-05,0.0003544857371609677,0.0005252349981044717,4.015467496227982e-07,1.458270142973734e-07,7.320032452165607e-08,0.01863171407499167,0.00026687055654997066,0.001296917931157697,3.560665189534455e-05,2.0526830191501186e-05,1.4461969744215948e-07,9.350897850745691e-07,3.9855557200030975e-06,3.938538499694078e-06,4.7565893752386664e-05,9.327908701918178e-06,4.377604582409614e-07,9.648196208945868e-05,0.00032062378248171687,5.191172348342381e-06,3.1014054273023807e-07,1.2974018746556153e-07,3.749314333853832e-06,0.018085719698986955,0.001499113873174995,0.03649322997503944,0.0001001461453075327,0.00845852679445655 -वृत्त,object,0.9999526290240709,0.9998884272462141,0.9998488799441546,0.9999866273164882,0.9997736917532366,1.6301761233070587e-09,0.9773806422842115,0.9999379002981784,0.9998631492494832,0.999980030594097,0.999940435366679,2.455560537184618e-06,0.02192183935934008,1.2089562739723051e-05,7.3749594505227495e-06,5.914883571144401e-07,6.525350525745432e-07,5.806972079059755e-06,8.0112820515519e-08,0.003067560612256976,0.9356323030243722,0.8789392056568686,0.7598408071138315,0.0004982722589091768,0.9522563939074774,0.4033201204308899,0.05351656160842516,0.015130051970124337,0.015724145777853103,0.0022436674091317007,0.010669926430668542,0.0017466324044940495,0.0009450665011683977,0.00014211292437192263,0.00117630997050058,0.019658017950778192,0.006485454101509549,8.729375113813074e-07,1.7865141928423963e-07,9.714077965723113e-05,2.239466147271647e-05,4.6216586791636914e-05,3.091763799952218e-05,0.07606120559101333,0.01110857278353846,1.0921899764351703e-06,2.180231675172107e-07,1.091976103797796e-06,2.9424026659606597e-06,3.479385184691383e-05,0.00038635320702437993,0.00013259372741009865,0.0003854388631645597,0.0005359942880162076,5.25896777246237e-07,1.5903761870408392e-07,1.647990128484298e-07,0.0016717871096377326,2.7311702211877215e-05,0.0001461734877439213,5.551458410113575e-06,3.427268994677253e-06,4.409470200724788e-08,3.457737588544888e-07,1.1103904820521217e-06,2.1482308525355198e-06,0.00012575208327249312,2.33601605689261e-05,2.2808272149082947e-06,0.00020937471700553453,0.0010530028676265226,1.7880520344495405e-05,9.662294845324955e-07,7.381257900793414e-07,7.901432323905864e-06,0.042940278239690335,0.005462998707907939,0.08794777938820199,0.00028013485791711764,0.022380481121490187 -व्यंजन,rgb,0.9887898934602778,0.981531583076175,0.9888116194051738,0.9940139187136927,0.9897154082769547,0.9972281595880297,0.98848807724932,0.9997656329438694,0.9995056883408773,0.9994184026694731,0.9997571119969073,0.9993946830024558,0.9992284110552461,0.9992167252993339,0.9998304895591331,0.9998305355025534,0.9998304410381964,0.999830262751963,0.9998292211694072,0.9722633157144188,0.9813664473586204,0.9822769333572797,0.9885277347869588,0.9935507341561417,0.000262607255307214,0.00039006150313248167,0.000440941151450088,0.0006367710452747968,0.0067295911676596805,0.9991072127911105,0.9985694270568201,0.9989727445179533,0.9989824756508788,0.9990499274509927,0.9991718998813128,2.357219580851536e-07,1.9767246543580728e-07,1.2236231129303892e-07,1.4859418301808835e-07,7.682743956475784e-08,0.9998368905713275,0.9998378868050137,0.9998359964530866,0.9998320258145348,0.9998255533868431,0.02117344166966077,0.016310646970087675,0.016224245258405632,0.012462844945358821,0.6455593203903598,0.5129482598096649,0.3764471316470597,0.6756856583500649,0.6783237315726828,0.12497676960285858,0.3120193309109201,0.02520756360915078,0.9991548018442133,0.9988524981734996,0.9976167637816837,0.9971230893794307,0.9935252927179634,0.9849169589628222,0.9803345626146809,0.975115568760505,0.9750351090452284,0.19431646564905664,0.5526895553893175,0.16526008673676026,0.583158632812432,0.1642363045268509,1.9565198271009993e-07,1.6542023725335665e-07,4.210597254711158e-08,4.622784068968207e-08,0.9874667234606481,0.9878903903767892,0.9899988643738569,0.9935530239536923,0.9921958446653635 -व्यंजन,shape,0.9999484689568374,0.9999973975033603,0.0013317127853864853,0.9471373904831669,0.999999799284839,0.9214939325926143,0.9387012999160811,0.9999999991690727,0.9999999760183241,0.9999485815651327,0.9996967328175207,0.9999999991263357,0.9999998678309382,0.9999075267471341,0.9999999998573714,0.9999998546689703,0.9999999249009567,0.9999996638589679,0.9961721120180855,0.015280398677627833,0.015291499534406443,0.05598011495085847,0.2899506551644084,0.007455545854430288,0.21961426282494595,0.07956309348159125,0.46801609256987553,0.9989018263467749,0.8433594084513564,0.9999999999709834,0.999999999023603,0.9999999997806526,0.9999993200153136,0.9718003714190389,0.015510127898735354,1.237654634840713e-06,2.435659600820428e-06,0.9996465027804298,0.6182437385967521,0.8915420965926967,0.9999999999996732,0.9999999333184313,0.9999984694162708,0.9999999540543297,0.9999928719955392,0.9993106585571454,0.9996033830500076,0.9994278655916671,0.999584496523621,0.9998511281100638,0.9999338149833018,0.9994348566856033,0.999994448156295,0.9999931995680024,0.999507628525137,0.968769612438745,0.9997559750737752,0.9999917867526968,0.9999987942502254,0.9996022073211469,0.9999717119104904,0.9999288156178812,0.9999033897019745,0.9999679800940826,0.9999999111797299,0.9989701345709028,0.9935579944102562,0.9984845044811907,0.001237738560298746,0.9439292231355911,0.9941196441467822,0.9999874962013382,0.9999999999572629,0.999999454921012,0.9999999704562699,0.15738897818327338,0.08417509815629501,0.2176408083452128,0.008726302452422436,0.00030405602122858576 -व्यंजन,object,0.999999224908361,0.9999876674085203,0.00010306932995524615,0.8247547200098992,0.9999991638892468,0.9973646046038279,0.999568144326096,0.9999999905752149,0.999999956934596,0.9997161849295088,0.9999761055408349,0.9999999995837752,0.9999999626413058,0.9999142739779834,0.9999999997104418,0.9999999801820627,0.9999999524778433,0.9999998403316117,0.9999523439664358,0.16638616446322035,0.021103531472317267,0.33530582824949007,0.42092320733862437,0.006100084746971659,6.960549697320943e-08,1.1202662868949693e-06,4.94315599555929e-06,0.00011400051169995261,5.373805153964156e-05,0.9999999997671585,0.9999999886385899,0.9999999980324021,0.99999488518527,0.9961745003038491,0.010707706187058769,4.353959577635193e-07,4.898109710926007e-07,0.8390505360285683,0.00669939359476184,0.011532775720400389,0.9999999997001285,0.9999998808537527,0.9999991644409494,0.9999998603496629,0.9999996278173078,0.9992310796657867,0.9996576657049075,0.9998751935010458,0.9999263293857122,0.9999230771553621,0.9999249934717422,0.9993525705715687,0.9999942109324144,0.9999913065602014,0.9999929467627463,0.9991163947760324,0.9998980442253586,0.999999967740734,0.9999999967916053,0.9999888247762541,0.9999997094103005,0.9999970858418263,0.9999999548863236,0.999999994512258,0.9999999999841898,0.9999998687102191,0.9997133970918266,0.9962373596318265,0.0004014110720602329,0.8263327214432995,0.9670665968005846,0.9999979165720959,0.9999999880734026,0.999972662949746,0.999997501599054,0.016360128196501855,0.15604751669205497,0.004287670345896274,0.000545842787949042,0.0002342499312910096 -संतर,rgb,9.40172294670271e-09,7.014894418923143e-07,2.7775795301759325e-07,1.701148069359478e-05,0.00031353274686962083,0.5402556263286413,0.9962809394310657,3.305926164069432e-14,1.3491733495335157e-16,5.697095458369907e-17,6.203102200580422e-14,3.8995826546540086e-08,4.234938202629365e-08,3.444134149191896e-08,1.321426654828736e-10,1.884422793801229e-10,2.5083149508601183e-10,3.214664481591241e-10,2.491124423175378e-10,0.00018886670890065404,8.95187309516204e-05,0.00014596234529096528,0.0005388320258799323,3.512427710752319e-05,7.780682787417213e-33,2.0625181468378852e-32,2.0800829287583943e-32,4.152666646460839e-32,1.130254507452265e-30,0.0007609717329576408,0.009830712134173226,0.0018415412978251403,0.0023878620658172233,0.0019294668461034845,0.0014664337708342357,2.7325393122552357e-05,6.63311644908942e-05,1.7673926504724244e-05,4.293163662267695e-05,8.013600616437783e-05,1.5975622760170412e-09,5.686793642130107e-10,1.3855221026432652e-09,4.137093358084049e-09,3.6729061631852266e-09,0.9999999997986708,0.9999999998297022,0.9999999998273625,0.9999999998410845,0.9999998689476882,0.9999999698770483,0.9999999913160923,0.9999998777436477,0.9999998917913026,0.9999991926566519,0.9999444740000647,0.9999999387467267,3.351178619745351e-13,1.2865943025462848e-12,3.3795130748779055e-13,4.148183500580994e-12,2.081715556446377e-11,1.361044315264965e-06,1.2072632047183591e-06,1.9991414911720544e-07,2.0730800979394473e-07,0.999999999295704,0.9999999789838716,0.9999999994866717,0.9999999715166455,0.9999999994595357,0.9204301119424914,0.8958632319194961,0.9321666236362768,0.8785141367331691,6.213216740173097e-06,1.0593515967612999e-05,1.3712586028591658e-05,1.0447050105996122e-06,4.6025882693670426e-06 -संतर,shape,8.968451881327671e-07,5.93756697306309e-05,4.609759619513824e-08,2.854584743466648e-06,0.00028877198079504127,9.45342233001195e-08,1.5885355762500736e-06,1.2820226506655718e-12,4.570665127742857e-13,1.5870468565632547e-15,1.6227873003034252e-13,4.866393706949248e-07,5.560906390431898e-08,3.165325017926878e-06,6.501367339208444e-06,1.6341664349888398e-06,1.6889243609007144e-06,4.449086040475816e-06,4.026087240923405e-05,0.0002920828914372358,4.809749831604026e-08,1.5820491004369112e-05,6.654844729970479e-06,0.1113005856904208,2.5398135910279534e-05,0.0005792701442378271,3.694197711593635e-05,2.6934834204341804e-05,0.0019001470488878018,1.8121672033801432e-05,1.0982078975864717e-06,3.930783366098658e-06,1.6146394260789685e-06,6.038027164175819e-07,0.0016762243385378948,0.0004502318597960954,0.00015333556260588817,0.00018014478242816067,0.00015180604030422634,0.0016731260863158618,9.147722564134286e-05,4.505522975986867e-05,0.0002935439822315115,0.0001349547326144683,2.0271531152075853e-08,0.9987595554828999,0.9992787507449655,0.9998978592350385,0.9996808587167563,0.6252312040413864,0.3030213847802911,0.041549834698936174,0.25531776379440324,0.2087516895406917,0.9999820608281658,0.999862717214863,0.9999879093321541,0.002196274342094933,0.003962459283692738,0.008610134413459668,0.01406347060311928,0.0033859484497589,0.9999970891419397,0.9992368071366218,0.9998882390480383,0.9644116943177979,0.03166332110962981,0.008392830663331864,0.0009827646199114112,0.003464163768804669,0.00810690809866044,0.9799322812119945,0.9999688772159623,0.9996673648849812,0.999959912701066,1.5438982616417024e-09,5.599634441382769e-06,5.1915658398193e-06,7.552977535663403e-07,2.20123850630466e-05 -संतर,object,0.004898324770406975,0.030165740940644264,5.186118692549088e-06,0.0003158611178954259,0.01165435773295077,5.465854310348865e-05,0.08319516913213036,1.3817508990276274e-08,7.916873632847901e-09,2.8935567747628103e-11,1.1454770444688147e-08,3.936377022637549e-06,2.5388906857142177e-05,6.488231551659878e-05,3.5704214849181856e-06,4.135741235239874e-06,4.0272949790019855e-06,2.902101292288166e-06,1.5287747414382827e-05,0.0595357184704236,0.00030454533649440876,0.0049419776105747975,0.002626936268856348,0.42193402538880836,3.1112809206940124e-09,4.988550529205517e-09,7.288108959651889e-10,2.8732225837698025e-09,1.624150281788974e-06,0.0005763342703634883,4.606238358225973e-05,0.00015449433121320742,1.077800629119858e-05,3.211525024868304e-05,0.0006012223693758676,0.007828905586096875,0.0023678933772865764,0.00022878646120447896,0.0004258787651123478,0.01613360919962673,6.660489029907628e-05,5.94848319798858e-05,0.0020074621692886987,0.0009757759407235618,7.765890308661165e-06,0.9999330002229103,0.999882584236482,0.9999815252140253,0.9999760833603313,0.9914109555135787,0.9865419959445313,0.9751164883310028,0.996407154613429,0.9962757969297754,0.9999947017804536,0.999773691179711,0.9999887276105403,0.0016525320532493478,0.00970958656098167,0.008381419848637892,0.00796147900840959,0.015883945907522738,0.9984017372114203,0.9886324670344764,0.9972961248649127,0.7160417235418811,0.95462724645707,0.5388710580030753,0.47761312966634806,0.6892192905554715,0.8329802637725989,0.9979272652895286,0.9997408304761678,0.9995652126376883,0.9999388069459246,3.7328448790656564e-06,0.0003332953364536737,4.393392844946668e-05,6.895497150846342e-05,0.0001560006078319505 -सबज,rgb,4.289157601516864e-06,2.654772222851817e-07,9.445922482430918e-07,6.682377895257992e-07,9.316865731498768e-08,0.016310558297459962,0.0007871268897845958,0.999926029718265,0.9999995312237192,0.9999997908250853,0.9999760253277745,0.9998151288568694,0.9998999110953897,0.9999164462021264,0.9975131091998275,0.9970476627163558,0.9966053851941963,0.9961650775278562,0.9969380267106351,1.7038065035532173e-08,4.401205284201201e-08,4.130672749283126e-08,6.47168710453114e-08,4.551631683501313e-07,0.9999998170715386,0.9999996625440419,0.9999997206270997,0.9999996296429844,0.9999995696696686,5.851937867737089e-05,1.0660382849514518e-05,3.455265535632037e-05,3.708947610558022e-05,4.892997611373313e-05,8.956007308553196e-05,0.9999999999703155,0.9999999999501272,0.9999999999825784,0.9999999999664362,0.9999999999602149,0.9663896347851764,0.9858178436042379,0.9784046316846808,0.9631697010021767,0.9846292248541291,1.4102698655848876e-06,1.7657185939718239e-06,1.8249884741013087e-06,2.585265806663644e-06,1.0221789045080081e-10,6.436187622179321e-11,3.3054998653809425e-11,1.967986622698693e-10,2.479692219014595e-10,0.00847247165077229,0.18858052939221118,0.0034802100672135946,0.9999998447714186,0.9999998752499797,0.999999985186425,0.9999999682330744,0.999999982309426,0.9999959996333132,0.9999974784240123,0.9999994533469676,0.9999994426238299,1.5359742842902964e-08,1.4330091983313276e-07,1.535340045676848e-08,1.88736366869732e-07,1.918106142701127e-08,0.9999997277987568,0.9999997970533575,0.9999998287877518,0.9999998912001801,2.2678290748044374e-07,1.9941551064053813e-07,2.6090806566985493e-07,1.5592636083929453e-06,6.17475284004792e-07 -सबज,shape,0.008348222829444044,0.008480170761347825,0.0015983254249458902,1.9741766201726643e-06,5.78114513333432e-07,0.012327166600732891,0.003388578688493815,0.9510621044980564,0.9635564951198629,0.8920324081034793,0.6919579819736478,0.9999904611792859,0.9999342676710341,0.9998755389304547,0.0019121373512756543,0.002010237325157931,0.0018819016751576917,5.206565550244266e-05,0.00021277910767290118,7.676403752895247e-07,5.672794385969861e-06,4.658285461836333e-06,7.61129533536959e-06,3.646352057153623e-08,3.977170835538366e-05,5.680742640590094e-06,5.6196371645536725e-06,5.9987113588601876e-05,2.405502485346614e-05,0.00646881407302402,0.0010092332247691157,0.00043485626206019517,0.01871803648675388,5.577162455299173e-05,9.041719452512816e-06,1.936649497207487e-06,3.2049838689860198e-06,7.017393725172547e-05,2.52211893115909e-07,1.915789809945274e-07,0.1386155501298688,0.0024169658629390844,0.00010820651482926934,0.0008949721754999067,0.0018825895544165665,1.4249253678333643e-07,1.9797345021468258e-07,8.931905448850246e-08,1.800158232476461e-07,5.520544286895993e-08,4.187246577215227e-08,4.910316612617873e-08,6.359836977335064e-08,3.341098816062754e-08,1.826438554105054e-06,1.013160482563725e-07,5.355642610267586e-08,1.2570948032187436e-06,9.269092380848265e-07,8.187557899635542e-07,1.4361600965176316e-06,1.0002398933607612e-07,2.2048176869771653e-07,3.78944438367099e-05,1.5331553049684444e-05,4.208334753502957e-06,0.00017715113474578678,7.117861111551843e-06,1.1771146576985968e-06,1.0275178430903023e-06,1.220489534124308e-06,9.368131622993563e-05,4.541538864133274e-06,3.420975238739133e-05,1.1592506357272738e-05,0.0043015032901568585,0.002738744667485256,0.00019986469366415564,0.011568373893359915,2.4448606333682166e-06 -सबज,object,0.008809124850076433,0.0015043716528498011,0.006955524141758226,0.00021314535332684663,1.5369918599416332e-05,0.025690722764301375,0.017162514471099812,0.9998457278447074,0.9999712574907809,0.9999685738451998,0.999578481149727,0.9999920304055854,0.9999535100612941,0.9999456448047082,0.5524207684421184,0.42871938956958316,0.43895822639625987,0.13238476323916704,0.2291344137186557,8.491978353322956e-06,4.5364268553810796e-05,3.108774078391371e-05,4.226691599412991e-05,6.84712736232849e-06,0.9979549495169289,0.9843806784628084,0.9766719100430616,0.9926161167674171,0.9897264625369255,0.002354076887315164,0.000876328661308687,0.0005499350185758114,0.006484983391210367,0.00030810286123850335,0.0006605340266901056,0.9795605258335698,0.975132854364182,0.9786283035190844,0.8217126523619428,0.8566147636311744,0.9806547289029244,0.94134276829244,0.8169505881301729,0.8882843102711206,0.894418700333771,4.654014454359489e-07,5.901339871337796e-07,5.289734074376107e-07,6.124521314199071e-07,4.748917500328957e-08,3.075885450381928e-08,2.8192312863530177e-08,6.596009443096422e-08,4.403422941286649e-08,8.496439553769467e-05,8.783191373652962e-05,9.800822057297726e-06,0.915347445048163,0.9021129244082716,0.9593087698397887,0.9255290856483664,0.8548984127116727,0.07146645346981757,0.5996796725918535,0.5836386426513946,0.6261901554223712,1.430487337233603e-06,1.9464369250104923e-06,3.4009932075593985e-07,2.325390671076873e-06,5.901394467101061e-07,0.31313626170645853,0.09421525716240352,0.22698733758629772,0.1699162925814242,0.003959242705529131,0.0046217923514391855,0.000991549450260694,0.01932614967636412,0.00011606921403797916 -सब्ज,rgb,0.3734493473239613,0.28288921297395614,0.36910872068813044,0.5022109879554044,0.4073028555423025,0.9641572214113351,0.9257306743969196,0.9886240862237791,0.9909535532057968,0.9911261420073332,0.9912257157481219,0.9935846697487172,0.9937443467348505,0.99382070609135,0.9899867741373556,0.9899410434194194,0.9898978969903515,0.9898560474764921,0.9900666699472999,0.23331174810908947,0.2915208874146621,0.3019623066905088,0.3893552528332894,0.49013992964288094,0.006461280450241569,0.007342630184135808,0.008036635448652395,0.00940899077534301,0.03237751422771754,0.8846797825097771,0.8467738028834279,0.8750074723418193,0.879314899074325,0.8862391139941779,0.9011113575415765,0.26846394043284655,0.24834635441265832,0.22909544572159213,0.2337928503230139,0.18975433994393934,0.9865074887445571,0.9876870432081252,0.9874898147194582,0.9871308277689504,0.9889341473511554,0.2901471294365479,0.2789328744791073,0.27956499657089207,0.2719335868055112,0.19162764652561842,0.16194039118899936,0.1288018473431719,0.2235329167952663,0.23439379681285244,0.7233304028056339,0.8535486523173074,0.5659077287291765,0.9952265853598108,0.9953430723515199,0.9953436867004744,0.9952318132666889,0.994745528101807,0.9911675840062981,0.9908690097519028,0.9913276520462895,0.9913081495978305,0.2955839794928753,0.49857706437728155,0.28359578173004635,0.5192819518265801,0.2911662256134346,0.13912586219952688,0.13463255651352782,0.08517453595480698,0.09136672121213539,0.351898258921714,0.35964512294111667,0.3968155604958669,0.4782783497517464,0.44260654853342213 -सब्ज,shape,0.9999225481016892,0.9999844869842899,0.05251799667179966,0.007092029354404533,0.999601015364992,0.34768839982824323,0.9386407498344312,0.9999999994392197,0.9999999992642918,0.9998018624292809,0.9998337179126524,0.999999969117681,0.9999984281243187,0.9998813043552618,0.99999999999917,0.9999999991348525,0.9999999985527368,0.9999999644786398,0.9249015005009015,0.011712323773079328,0.004621114298882595,0.012816327846536458,0.03268187186442164,0.0719701653228401,0.025989672027102374,0.9828675208301215,0.04971922631753594,0.0035994060842419583,0.008000307645765568,0.9999999999995228,0.999999549888206,0.999999999908312,0.999881949386797,0.999471058130126,0.9986646239362199,7.242149557656094e-06,0.004488310708821895,0.9995409005367619,0.9761738366480622,0.987809515686185,0.9999993981567473,0.9999792752437799,0.9999907552731432,0.9999959403023615,0.9999900822300325,0.999888555081908,0.9999873874016141,0.9999552251420253,0.9998836293029703,0.999988958989083,0.9999696014947634,0.9992299368935356,0.9999897118893536,0.9999072817820897,0.9999710527959705,0.999837712821988,0.9999179992082241,0.999981059338847,0.9999908741767964,0.944436073780352,0.9999182520406286,0.9957277534185309,0.9999998095303672,0.9999634702659367,0.9999995390740348,0.9999725206043242,0.8993747781695,0.7187722069145545,0.0007767025154091576,0.09290257533260185,0.8546616619490855,0.9999985267001871,0.9999999998987745,0.9999999677266352,0.999997620081979,0.5545247510503796,3.520157849348984e-05,0.08442655369048113,0.0036092789122591745,0.05377046502900019 -सब्ज,object,0.9999990695519436,0.9999647148443206,0.015642151069202248,0.010543716575434637,0.9991348982252923,0.9998785562814888,0.9962101166340058,0.9999999885208862,0.9999999520021893,0.999927595062816,0.9999950282804547,0.9999999736126202,0.99999992064081,0.9998375307663313,0.99999999998135,0.9999999994721376,0.9999999981519334,0.9999999811356733,0.9998111543250356,0.24375462347992155,0.04018677642019224,0.23345344589162256,0.2570268111598056,0.025394799095093346,3.531458533396722e-07,0.00020300540938765732,7.759143249567548e-07,6.97783886582738e-08,9.448021862560978e-07,0.9999999999657379,0.9999997221772595,0.9999999986515566,0.9999126020235661,0.9998187739183714,0.9989165802817701,1.498491833368931e-06,1.0752475818972039e-05,0.3693150700472714,0.019551364827971977,0.032534010239806156,0.999999042263003,0.9999959567404475,0.9999985926199028,0.9999993749365493,0.9999998605691854,0.9971809329955401,0.9994360302332798,0.9998856091986724,0.999819119394659,0.9999806192586773,0.9999413188246287,0.9992708711251427,0.9999890232589758,0.9999782426495188,0.9999528080250747,0.9996480753102874,0.9994879072585978,0.9999999779196491,0.9999999954522076,0.999947964773488,0.9999998758806913,0.9999762269708374,0.9999999935593309,0.9999997988738025,0.9999999996248843,0.9999999818467121,0.9935215132210282,0.8291885355447752,0.0011064288160874197,0.08089096093053848,0.43412966584236684,0.999992531364273,0.9999998981659602,0.999927031240605,0.9997685262841755,0.38372406861962105,0.00039805061677087965,0.0032099067907249406,0.002348129661533792,0.0821685720788791 -सलाद,rgb,0.9999563707853721,0.9999954216116588,0.999989097663657,0.9999950852283876,0.9999989609029388,0.9991026851856238,0.999920811030743,0.005499497148260337,9.531447001643119e-05,4.9672435286642276e-05,0.0028257655531547976,0.04334307267772599,0.02874146034920102,0.02497165271605958,0.13245183983247258,0.15119058954525907,0.16794592447188442,0.18373247859869613,0.15845540639717223,0.9999995820184244,0.9999991983012758,0.999999278872773,0.9999992196491191,0.9999964511673302,6.990726306691741e-08,1.236550493689179e-07,1.1128537195547988e-07,1.527932238239843e-07,3.457431232632833e-07,0.9999550301706517,0.9999883263707103,0.9999707074096733,0.9999702783887943,0.9999638186398098,0.9999455652918561,1.4545146937881325e-07,2.2107388806406e-07,8.895837567915846e-08,1.557722038466393e-07,1.7075327264346713e-07,0.5355037819881044,0.36460324139837885,0.456927927173856,0.5772733052514971,0.4270609349287411,0.9999994312461193,0.9999993293702535,0.9999993131091847,0.9999991129700231,0.999999998724856,0.9999999991435446,0.9999999994824011,0.9999999980945817,0.9999999978186411,0.9996559476917127,0.9958466653501149,0.9998199482412239,0.00010713205296582005,0.00010412859395665082,1.9931044372794216e-05,4.288665712719264e-05,3.150452606115447e-05,0.0035413127497551473,0.0024884953485769215,0.0007180499209129191,0.0007299866450244552,0.99999997560339,0.9999998755178314,0.999999975836907,0.9999998482029107,0.9999999718500426,0.00025279170223255665,0.00019682164111813592,0.0001535477140159354,0.00010726625015457713,0.9999969727622411,0.9999973983535493,0.9999970709887551,0.9999880128648048,0.9999943532891654 -सलाद,shape,9.692519738863702e-09,1.1846129896639714e-06,0.007524989255738447,0.040338558795923955,0.001188442208295459,0.00038562148228083614,0.8757012407304033,2.754779777647157e-07,5.647543274097194e-11,0.0019718485887582635,4.72191397536593e-09,0.0015355221905445926,0.0016252486532280324,0.15714670484746637,0.9999999999995812,0.9999999934086943,0.9999999968637623,0.9999999999682041,0.19461714257160037,0.6375463977182825,2.298740443981046e-05,0.016086801352574575,0.004446103466877369,0.0017266367624466194,0.2503592779265226,0.8558027611235199,0.1966088671359251,0.01859480996449266,0.025524150141723847,0.9999999998920452,0.9999999767893611,0.9999999999048936,0.9999998846743334,0.9999673462365715,0.9999608023731364,0.08693625016947203,0.5122060492510354,0.9999884327796613,0.9996525737963726,0.9991016423151312,2.4255879779005854e-10,4.2183240574605414e-10,2.4822254562312737e-12,9.542572135009161e-12,1.0941192411500735e-10,0.9996052232949159,0.9999117960551829,0.9998526964071904,0.9996077054394161,0.999981513423947,0.9999972881200616,0.999927784056911,0.9999429021314553,0.9975158902299265,0.0025532759698877598,0.7919118678311621,0.7379000433354602,0.0005624637132650205,0.0008038215209645764,0.0006524272685312886,0.05525355528324522,2.1283569632767936e-05,0.8276464176472478,0.07120584138135974,0.6004819502953062,0.9959630486269143,0.995884864875447,0.33497498383076296,0.20942786242672012,0.0035888077879674,0.06128470993613523,0.8494751763399656,0.8323451062762245,0.9818153789118471,0.9533567225802572,0.028711782490307012,1.173714032800192e-06,0.24431468823318048,4.073723616839511e-05,0.9629442336574671 -सलाद,object,0.9407938872964434,0.995197462677542,0.9989348936457113,0.999531269100083,0.9993524759977577,0.9999369835342018,0.999093038206432,0.0013514191674916971,2.5246480540677188e-05,0.00011955082932031043,0.0004893669551050674,0.6002093492830342,0.5335311769386966,0.3260961848134665,0.990682161367073,0.977313364085963,0.9841126788650044,0.9742886986840307,0.7916453210857329,0.9998438200049296,0.999441376958999,0.9992108125045772,0.9991668023073526,0.9995903138642044,2.1697637414789773e-06,5.660831710686914e-06,1.9223366351709974e-05,1.208990780422721e-05,7.417554951162996e-06,0.9999924997262302,0.999989960945783,0.9999936581822837,0.999978834958991,0.9999782065431916,0.9998404808673258,2.39466823520468e-05,3.365160657667645e-05,0.0001677343408401883,0.0002530077393500202,8.571813441769461e-05,0.23851477655473735,0.23247438361126516,0.18385951886866442,0.2482847967031641,0.1071409102072673,0.9999764610691824,0.9999846694027935,0.9999708263596375,0.9999472336251877,0.9999987929649351,0.9999989309208964,0.9999986153909355,0.9999933756754305,0.9999861678511626,0.9734072737785354,0.9779736238874368,0.9955957853687899,2.9792645163517166e-05,4.137294210158211e-05,1.0058494508963601e-05,2.9023702484222912e-05,1.6103693953151617e-05,0.01143085568068749,0.005112616028107516,0.0018769429416095125,0.005230911810684143,0.999998811631944,0.9999892037336792,0.9999977797963323,0.9999631829828542,0.9999861436902215,0.002819178209798724,0.0009909455552019513,0.00243095803125372,0.0005342557672972121,0.999961643457859,0.9999030187347772,0.9999267415899464,0.9999775580215201,0.9999420528818822 -साबुन,rgb,0.6804080975771253,0.7590794327318773,0.6182076627060846,0.2847081134285354,0.38917896366030347,0.0003775253430884026,0.001034277160865562,0.0006321167533418777,0.0007322854354029636,0.0007753087908445797,0.00037435648330482347,6.855728910960792e-05,6.637931366793671e-05,6.623756720262606e-05,0.00023024399047867159,0.00022479886229579167,0.0002207625446385446,0.00021749572586044375,0.00021439603669642124,0.7578707135059228,0.653251245384791,0.6212893160223989,0.4118730110626259,0.2902833857454092,0.9999996819128257,0.9999995473554989,0.999999461154255,0.9999992128627416,0.9999875952686427,0.0062804962927634385,0.009297051514863066,0.006907615181664588,0.0062789059484659295,0.005648515161447745,0.004327539442008215,0.9296194411390062,0.937243503027161,0.9549668187604035,0.9483379918998699,0.9671926626593536,0.00031441854485403554,0.000292286027877468,0.0002777899391337551,0.00026537108095534315,0.0002046568036636313,0.1736790004791686,0.18944914810571978,0.1888458965752792,0.20200866400011244,0.4077713822872964,0.476635998839826,0.5795510508041453,0.3231982219694416,0.2970298375807485,0.01346144239204704,0.004294928738669488,0.0416646847973142,0.00011914812075162162,0.000103544217979941,0.00012435728691338074,0.00010508046736274969,0.00011590179755816324,0.00011648726098901977,0.0001279603027142885,0.00014004408160755974,0.00014019137347321488,0.15467393523261852,0.04411496796654825,0.16716861032716587,0.038889922265644035,0.15885331899315366,0.9474719096897647,0.9526523295923045,0.9819405460199899,0.9803175898576352,0.5851338914673757,0.5577375514829482,0.477187487742444,0.37981630571801744,0.4131649285519503 -साबुन,shape,0.00481640791603762,0.16163246995274555,0.7053554924297377,0.8172601820550528,0.9781112692070019,0.9999999406731586,0.00040745343534132734,0.9987096396832865,0.9946517997736742,0.9999999147699249,0.9982566119958861,5.805817651619664e-05,0.9999727367549849,0.00015122371756448382,0.9997092269958675,0.9999999057885043,0.9999998686126813,0.9999873518471984,0.9999999151828455,0.028884950561759024,0.9996155594103798,0.9936555558323059,0.9960834359744256,0.9863175186140053,0.9996010369874662,0.999633979988243,0.9997967578285097,0.9999733542674768,0.9996702217647502,0.99859497405379,0.9932355528833343,0.9996827417365154,0.9776136906770815,0.9999999229879927,0.6090914273567666,0.0009071549188112379,0.00043130925839068916,0.2561215357382554,0.13703488510627987,0.17857757767189333,0.4213249860068121,0.8907659836015231,0.20447209937512972,0.0078531051890377,0.569475658695446,1.3239700906580102e-05,6.5725415366700506e-06,2.253821433945395e-06,2.3032747639945248e-06,7.508256864415027e-06,1.4754000942140844e-05,3.371197235226556e-05,6.130163833744925e-06,7.767080968384488e-05,9.014584389619096e-05,0.0008595606162399191,6.099602884267983e-05,0.0032095441168081976,0.00014978065604451347,0.0029667127790689177,0.0022218480465694165,0.0008224794577955095,2.8728611592956643e-06,4.7343197057195606e-07,3.2736068486055454e-07,1.407360873400562e-05,0.6447738931232658,0.985919631566182,0.9999761593172317,0.9995001462264265,0.994918028373246,1.0700444160751762e-07,1.574319153943246e-08,1.9954710917964253e-06,6.732591623022986e-08,0.0019337042029200088,0.0007393239292572076,0.00027970002359293595,0.6017951887846928,0.003263322901790071 -साबुन,object,0.0002692374804673645,1.575827154580472e-05,0.4069811444363011,0.019060027753125725,0.007380212288103213,0.9946585744214697,1.0902403120066184e-06,0.9752187076945361,0.9664552196788765,0.9999999785396279,0.9998033826116054,7.301627138874882e-07,0.3820081758795042,0.0010748346572143476,0.02908626701179715,0.8968449218413374,0.8676679494229472,0.25898828178146227,0.9999699263075553,0.17721943940308446,0.9988074511447552,0.9710619459317619,0.9873764508473424,0.9755742160727282,0.9999953359001097,0.999919908952177,0.9999999807267362,0.9999999969304467,0.9999999388068403,0.0005119910875641885,0.0015430963858331357,0.007481968601056733,0.0238532755013126,0.9874278895702012,0.14518635601217914,0.9653362380068834,0.9772770564880767,0.9336293783153075,0.6895718272442128,0.9981873764511229,0.0035117632862992614,0.07711264907560077,0.00337905158255047,0.000418407155360628,0.03218733811183813,2.794750041187034e-05,8.053182704704223e-06,1.3392467586104586e-06,5.272364122848249e-06,2.4519475998285182e-06,6.31746822997362e-06,6.651850403037882e-05,3.5586387029601022e-06,4.428715340309044e-05,0.00033606826280170533,0.0007463020240748261,0.0001895973770708104,0.00798265976827751,0.003077030244031519,0.39704153273553155,0.3893423863693528,0.09632743422468194,1.714146564700283e-05,1.4150982847930609e-05,9.849190583304258e-06,6.502027485993467e-05,0.35676981274207625,0.8907503577673144,0.9996376182730353,0.9960855448785053,0.896790817632906,0.00011563094090784101,3.116662111995455e-05,0.004863094361552554,0.0022280823701279393,0.03253180569301478,1.8769831314957105e-05,0.0004879498120291113,8.326919592089641e-05,0.01200231499650324 -सिलेंडर,rgb,0.9996715376434876,0.9999671518869309,0.9996377664425868,0.9855885604200462,0.9983662561192947,1.3017675805485027e-08,9.614594552635505e-07,9.164289584425333e-11,2.1951268792040563e-11,1.9339072919983135e-11,1.5100893846606093e-11,5.657703785741805e-13,4.385032483370084e-13,4.0729608294706175e-13,2.5007357625914505e-11,2.5194707542401865e-11,2.5444351971166096e-11,2.573102939710175e-11,2.2669925270089834e-11,0.9999903620549805,0.9999399614029132,0.9999148765367496,0.9989340716115738,0.9887376464809485,1.0,1.0,0.9999999999999998,0.9999999999999996,0.9999999999987721,0.00013241129448571018,0.0008530533498330059,0.00021963796033852491,0.0001658910358940719,0.00011011925079081267,4.123739113739535e-05,0.9854579542732547,0.9918399242792463,0.9956619001762131,0.9948599674289907,0.9988559216748985,1.6096269508195795e-10,9.301809562345975e-11,9.729718069010677e-11,1.0875830986735115e-10,3.90589510439767e-11,0.9940021311201994,0.9954092690226113,0.9953083866593458,0.9960040067096398,0.9999759248512017,0.9999918741927122,0.9999982241331253,0.9999154426262268,0.9998720119705813,0.0022338446207402895,2.0590346365492844e-05,0.10039321982548977,1.501260105611865e-13,1.052551003145661e-13,9.017349427365985e-14,8.42441011164439e-14,1.1103806381643581e-13,1.323201812159796e-12,1.5259859561327358e-12,1.121315159425944e-12,1.134440222180858e-12,0.9970218995863723,0.6942888758932747,0.9977983573674934,0.5813795473933925,0.9971868742014817,0.9998453872061007,0.9998756463098818,0.9999934444664517,0.9999898163169242,0.999719525719578,0.9996402183780011,0.9990145185223868,0.9934587751474113,0.997042454140864 -सिलेंडर,shape,3.5479281581045646e-08,5.401573079990914e-07,9.919800578884195e-05,0.9991685749277308,0.054694092084629733,0.9300751700709872,0.9673188420896898,1.1179036030920498e-08,9.146180475642896e-07,8.18075754967482e-06,1.3641546542299562e-05,3.880588671560951e-06,3.4535169259872893e-08,1.234835833779371e-05,0.0006395582694098711,8.550903097084272e-07,5.0185957360879044e-05,0.0005210492546535496,0.556367156384926,4.9479798110750454e-05,0.001083825045764572,0.0008024509759205082,0.004587730445779354,0.6511774069572372,0.002190191981073595,0.4457953314404336,0.9991320077044795,0.9872196851781173,0.9399804099931149,2.807032522877343e-05,0.431466231780465,0.00029477516572304005,0.9758783078803789,0.3402819238520264,0.9832464253987329,0.9997027356104136,0.9999205346479293,0.9998951276156363,0.9998594789885475,0.9999697086939433,6.362631526678137e-05,0.000576018302800091,0.006965008709940176,2.8644504448317064e-06,0.26909173271684406,0.8645581296733797,0.9160134268452005,0.17643813441670977,0.036730811645999485,0.01016370896662611,0.008731151738268085,0.0084798379111803,2.908353010086562e-05,5.397293592174553e-06,0.0027733151136991956,0.9773051171125404,0.13740596480610498,5.874036608599398e-08,9.958312586172905e-07,0.000578819057604246,2.0238005229403084e-05,7.634010674482556e-05,0.00505695488015882,0.0010041120505778671,2.381983243224649e-06,0.03999465150167164,0.9995106787303311,0.9994236297196554,0.9990034859655587,0.9991899791133926,0.9980960498359335,0.00015791087160455086,0.0005116300535133922,0.004358051366857755,1.1439160276010591e-05,0.012056785532494086,0.9956263978168012,0.9966539375430324,0.99999750888082,0.9998526281039684 -सिलेंडर,object,1.3813653707524334e-07,7.867578867036758e-05,0.04444574560475797,0.8247059401078559,0.0026095547755420278,0.2726444472268441,0.004701944947799864,5.980078782420338e-10,5.6497151185031025e-09,1.212820906619735e-07,1.2837609879424603e-07,5.073762377384199e-06,2.1808909465971074e-09,2.5046579418448524e-05,3.917653133142143e-05,1.7231296804048307e-06,1.281506278157565e-05,0.0001851218835519721,0.008776765420676524,0.05435117425755835,0.25180630040754426,0.11668783162946758,0.24894038292038212,0.8599662240177552,0.4494366096378055,0.9636968326038019,0.9999722450423498,0.9999692488638615,0.997697747331832,4.0364365973869524e-05,0.025223341012530313,0.0003492641842535433,0.5562763085092466,0.1115489012350027,0.8541884864938167,0.9996681849289463,0.9999368920875521,0.999924899333608,0.9998137302850356,0.9999112671047606,9.039378848041479e-06,4.841075624213344e-05,0.00012346202114547496,1.5480634130761593e-06,0.0003514738633934177,0.9930806352807514,0.9935729685301318,0.7607387350978232,0.6860414670968369,0.5904425403976948,0.7149412062280945,0.8433417264567383,0.10021806398587171,0.02105303553689293,0.0052810742043478305,0.4388648875074883,0.14062829417068773,1.0796437838679693e-08,8.111896724124764e-08,5.08452921680069e-06,4.069191794395643e-07,2.430676494759826e-06,4.42402554466472e-06,2.569540462634218e-05,3.516872217220774e-08,0.00011865129305433888,0.9995840870993222,0.9994898263639637,0.9997278827187729,0.9994406480316469,0.9994038470214681,0.010548888772652048,0.010840779945975224,0.47505685573024015,0.009696618889909253,0.7356370684470551,0.9967886160927657,0.99941838726749,0.9997841892142044,0.9997271421084444 -सेब,rgb,1.0754309334581684e-14,1.2646066642563168e-15,5.3447241630537285e-15,2.158041850093267e-14,4.619240172247674e-15,6.158687922349455e-05,1.0507466449914466e-05,0.012214791667070839,0.7514831354079712,0.8809688248085522,0.09519812765266551,0.8205443067877117,0.9313409143457859,0.9424338633775292,0.0027866471510682635,0.0025350476796819482,0.0023440225126990883,0.0021870776500478263,0.0027619007261362456,2.9733975142782494e-16,8.44235009181497e-16,9.670525020146969e-16,3.4863583680103417e-15,1.7185435621993027e-14,3.2084881604999626e-06,1.79372109775771e-06,2.368448234231641e-06,1.9608891451338033e-06,4.695764047843344e-06,1.2526014796847472e-10,3.389260426018329e-11,8.742419132331752e-11,1.1166465930797444e-10,1.5364560805967827e-10,3.409940405011437e-10,0.9999999999999996,0.9999999999999996,0.9999999999999998,0.9999999999999998,0.9999999999999998,0.00014352973867376694,0.0003488678373634889,0.00027740671054286945,0.00020197635936118692,0.0008086210707579223,1.597689525265619e-05,2.6648566487406944e-05,2.79415959068503e-05,5.444706725736415e-05,4.3969286035589476e-14,5.0705441123233124e-14,3.7615128647291556e-14,1.2631995203876548e-13,1.9435541759760164e-13,0.14732086641334918,0.7512297150993505,0.18885061238705222,0.9991008676484406,0.9997047275587465,0.9999840382634795,0.9999856042779076,0.9999979813527873,0.9999658365233122,0.9999837966402889,0.9999967121569896,0.9999966730530322,3.2817833356786433e-09,1.4025673805391966e-08,4.045718664493357e-09,1.8129912024404547e-08,5.644911621678947e-09,0.9999999999989146,0.9999999999992437,0.9999999999996756,0.9999999999997775,2.7231044030672383e-15,2.885410268810894e-15,4.837686304908776e-15,2.0568594871735623e-14,1.0391879743327054e-14 -सेब,shape,0.9999880372352076,0.9999962591349083,3.272461597768204e-08,3.6227442009890846e-09,5.64163275507197e-09,0.010344718496538294,9.268274147488804e-13,0.8700990018868555,0.9999569229618388,0.01238434157476752,0.20867752761440658,1.3273466377336353e-07,1.6515378334950517e-10,0.0011199868606528972,4.942190178711018e-15,8.044481455532994e-13,5.006598883064212e-13,6.092553058677371e-13,2.3027486064512554e-06,2.8652319643467818e-05,0.004180346582068553,0.0002560181248873274,0.0031715840716872363,0.001008134172172406,0.0024602031806166586,0.38769349388482494,0.00010171837888896258,4.98357066157871e-05,0.0004444102558327717,1.888862200826657e-14,1.3963247942060205e-13,9.833330938389102e-15,9.829318791433185e-14,5.80291197549124e-13,0.00016963361609652949,0.00030940245292920143,0.00016327293120879348,7.683113072364185e-10,3.9892056254021285e-08,1.5141755158408718e-07,0.3666502534424398,0.12747232164465844,0.9698160575705917,0.9999999091432599,0.9691104652628765,0.008811808401931779,0.0011888166149821707,0.0027041555428532556,0.032882698494070745,0.0005137289327491389,1.8459422235069737e-05,6.20758413778379e-05,0.0015386447156281182,0.06974391191011152,0.9621173420698097,0.0844489803455061,0.08077355343180792,0.9999248611298046,0.9999358572814019,0.9993481047373995,0.9995847249385951,0.9999568392393404,0.9998163768665352,0.9997754382902878,0.9996101909404403,0.9993231378721306,0.00023985515491459003,0.0019255875926234695,4.4585290732997544e-06,0.0002984208936622735,0.0024924383736157304,0.995631264107058,0.999965254573176,0.9863569525294082,0.9879818876956327,2.4020060777106206e-07,9.325941145754895e-10,2.522247716802179e-08,5.1823086342138956e-08,2.5757205819700177e-06 -सेब,object,8.158462596391873e-05,1.0032854684745161e-06,4.045053089034929e-09,1.9719081953321288e-10,7.927511807050302e-11,0.001664816954920731,2.934204621820459e-05,0.9910745768229733,0.9998896500305036,0.9888149205802327,0.9875816221685205,0.23148283180776766,0.03520747377075649,0.7685092512881057,1.192141323819987e-05,3.3153838690385376e-05,2.2246339428272703e-05,1.6246778534364912e-05,0.00030189726631977567,3.4297254896188433e-09,3.9399860770163886e-09,2.587987853020288e-09,7.204187169554173e-09,1.0852049742010571e-09,4.267565559125981e-05,3.141050191405843e-05,1.1347577689631364e-07,1.2592723056284617e-07,1.245944446950531e-06,2.1513523305708728e-09,2.0503332612840063e-09,1.1798089791041784e-09,4.5028489298658594e-09,1.736389855888302e-09,1.6860229073436938e-06,0.9999999964329285,0.9999999962672854,0.99999987451956,0.9999999500006315,0.9999999778126121,0.018457614318848143,0.030840127493847024,0.08332410980492783,0.37235418732688397,0.8270801792894387,0.0010293273464460696,0.0006402538592553738,0.001086565415313762,0.0031364376870633296,1.1420218211208678e-07,1.0725154496223917e-07,1.6300683927250135e-07,7.837033760688534e-07,1.6996014744684743e-06,0.8435744961049919,0.6597177356299317,0.419610100828984,0.999948696801839,0.9999753697907644,0.9999702079767798,0.9999760511581428,0.9999951972535674,0.9998698584084419,0.9998922923246187,0.9998789568914335,0.9998362704089568,1.5719360972015294e-06,4.001805454354834e-06,9.56066862542303e-07,5.664011343571832e-06,4.745283636811414e-06,0.9999998883778749,0.9999999734431495,0.9999999410806265,0.9999999903390168,4.563411953429117e-10,3.9730132485676176e-11,1.0853880178507351e-09,8.451946625933852e-11,9.115688726442841e-10 -स्वास्थ्य,rgb,5.575817287221389e-14,7.142244577710548e-14,5.956200549637158e-13,5.624156250421272e-10,3.0283004985906367e-10,0.9997181091526058,0.9983947869640348,0.0029278243253491186,0.00014482966470331433,7.906292660598568e-05,0.02354639636410973,0.9994687856099511,0.9995088303588524,0.9994667935663868,0.7801836046826071,0.8173075073453843,0.8429543877719214,0.8624016047317865,0.8555868781434709,6.545239151399854e-13,3.2630341736348003e-12,6.614195797138263e-12,2.625367314747863e-10,6.743773574541655e-10,2.2862467577089313e-47,1.3368726167875774e-46,2.5765557103328105e-46,1.4584726688767668e-45,1.963452619630155e-40,0.010889912290862048,0.006801212730890353,0.010738554130749232,0.016746742024953118,0.022659833388250124,0.05264108536587914,7.936369758639545e-18,7.044334472145004e-18,1.0264634091591107e-18,2.6109158374130426e-18,5.219961445014786e-19,0.7692230444702911,0.7383653828766215,0.8295204626386115,0.8992824885586307,0.954754326720836,0.00038767885423951677,0.0002642376377036679,0.0002660226236923544,0.00018947255845511876,1.433330991040168e-06,8.347014177055961e-07,2.7396966862700256e-07,5.602285069920213e-06,9.11917822799575e-06,0.2581538326292062,0.8330408728077388,0.010090017293812096,0.6608644291955467,0.8364198446775297,0.5547513086540515,0.8578982639777067,0.8678931562646993,0.997973356628968,0.9967934238537433,0.9901215155012674,0.9902220191383682,0.0007561775049711976,0.03764493428504947,0.0005866476928094678,0.05389542941693455,0.00071103221329009,5.269458593016097e-16,3.0169483645792815e-16,7.30398640113192e-18,7.8511824231833e-18,3.3924261819716787e-12,6.348718076325174e-12,2.3462586177129654e-11,3.77955946179442e-11,4.0272568897426454e-11 -स्वास्थ्य,shape,4.624356272783068e-05,0.0001152359195015975,0.010459314586908918,0.9933028705648639,0.9517960566806951,0.25385580906323973,0.9915124753400939,0.00629878058492041,0.00016494473959923785,0.015040875309962128,0.012017911111319161,0.9999981275166833,0.9999405309099986,0.9995228918570251,0.9997598401143132,0.9999544698726858,0.9998865153009666,0.9995702433578751,0.9992911554954934,5.033454430285271e-06,0.0005513285153342745,0.015542288062248307,0.0028077444889877214,4.229022592696972e-05,5.0220016938251566e-05,1.2250168382419652e-05,0.8299473749617121,0.6379483453384736,0.1986816153319643,0.9996708256065969,0.9967762423584295,0.9997288315002159,0.33960910699186475,0.9943201704867937,0.0002854915418790399,0.00020800217032488578,0.00026088347254864665,0.0006826556675481955,8.627461272219525e-05,1.1724643510477766e-05,0.41966826857960915,0.0076669030225647835,0.0012289536804024745,0.029388067486916265,5.269410958077144e-06,0.006955386067997724,0.07071201739667031,0.448378483390725,0.44863413412463427,1.1251641074942392e-05,6.778196562584946e-05,1.2488688406584654e-05,7.953369805252994e-05,0.00012146149636682631,0.9005809973011906,0.009237434751519327,0.02418574299633942,0.00010206595311808758,1.102974456185269e-05,1.808959633995993e-06,1.0838148187131088e-05,6.755089195325199e-07,0.09823136134592086,0.997396281698178,0.9999369987947928,0.9975559377334388,0.9964586785972892,0.2668631867552174,3.55604294849411e-05,0.050115588590408336,0.6080991192578743,0.9999614088098371,0.971799155949659,0.9974697872374495,0.9180268713305764,0.3350972536628193,0.09440799225578929,0.004264913604014287,0.00026167103943081115,0.0001552169058617491 -स्वास्थ्य,object,0.00012838582625532253,7.604172907922951e-05,0.005668064443996791,0.9957485299828501,0.9830339883339584,0.189515688940559,0.9777261375940598,0.028132052075612462,0.0011502873956466594,0.6385989739037347,0.5989149926750073,0.9999983837367816,0.999990571637885,0.9997689862392773,0.9999385037992891,0.9999266013845223,0.999887538099096,0.9997346420836789,0.9996339885454765,7.668659353137192e-06,0.000297988317998564,0.012155235784665482,0.004032808982202137,0.007414067764523892,0.24340550790569368,0.041925679183681994,0.9999066784073243,0.9998721567551438,0.9999010374219344,0.9973262604267438,0.9885156966319497,0.9960349865379787,0.6201872729647429,0.8282738833686063,0.0013453704668526178,0.011066638850656368,0.006859523550425809,0.004435632762818447,0.000863972781837255,0.006956620847326092,0.9976063879062319,0.9776194204980467,0.9792811941800111,0.9875696211512471,0.006157229591531895,0.00011527019940422101,0.0005079358083230573,0.0024283139739342445,0.0015922130487452876,2.0654014246361055e-07,5.886980853826908e-07,1.5846674920147018e-07,1.2700872444757873e-06,2.1570569785356552e-06,0.3181557485472975,0.009761612583655772,0.004188142990083241,0.11324633202204124,0.024893214490974723,0.07059200061664754,0.12758659959058224,0.012630624487369228,0.9305982690970291,0.9998698512133889,0.9999842696935269,0.9999038638912446,0.11646580285094872,0.00612636150562106,5.15024415939014e-06,0.0022716876426243544,0.0049021302053272,0.9867630025452921,0.5095828896903515,0.8230626513171554,0.3056131941062624,0.1022467813616945,0.47226949276524277,0.022169570183638302,0.015233527376349417,0.0009253295096524892 -ह,rgb,1.1524467818418836e-11,8.271116519256305e-12,8.949833286027383e-11,5.486338455681123e-08,1.606602471178364e-08,0.9783173207920751,0.5027155448270574,0.02316245002146586,0.00015677902368073485,5.830032519407429e-05,0.0707638019014693,0.9799233992019798,0.9626997030709213,0.9575505038084798,0.9472732646272788,0.9566667715415557,0.9628892215865041,0.9674814564898261,0.9639654188860171,2.958514836157889e-11,1.8936125617774993e-10,3.5787899891227585e-10,1.2274503550603106e-08,5.757417320121148e-08,6.384875629489799e-51,6.4008098233727105e-50,1.295347782289964e-49,1.1029490534367516e-48,1.1562806111254452e-42,0.19905497270264283,0.08228231995080615,0.16800727378211913,0.21892598883417266,0.2770752078905412,0.4600530049647209,1.4559576187232917e-37,1.010103752637865e-37,6.710117194856736e-39,2.3682226866638043e-38,1.737632599573909e-39,0.9717774423657122,0.9619502565183008,0.9756977933370673,0.9852221213798708,0.9892606810180148,1.0452120621463695e-12,4.121855964771174e-13,4.060243133542201e-13,1.5999299724526904e-13,4.040590849087287e-09,8.794001939770166e-10,1.304511784920307e-10,1.2514364186518287e-08,1.728539935952103e-08,1.3288040187146169e-09,5.7632184415069896e-08,2.6852384614773397e-12,0.031469150335692045,0.029836852445169947,0.0012953639405030388,0.003108853198668674,0.00045443377097767007,0.004992510593840393,0.001754181157407616,0.00031767976183638127,0.0003190663411388446,1.1459454694651858e-09,4.7242665829811664e-07,6.101596810528657e-10,7.694674638244742e-07,6.540990587196286e-10,1.579012162839229e-35,6.759552889156066e-36,2.021173472349913e-38,2.3702112671962363e-38,3.330410981110131e-10,5.816296674753328e-10,2.1632120253715764e-09,5.508118970383303e-09,4.6102230945483086e-09 -ह,shape,8.535170793458323e-07,2.1325655571648796e-06,1.4727111163930148e-10,1.2760679219483772e-09,4.0010146624253514e-08,0.8734082954747556,1.5484876634397988e-11,3.972819140983597e-05,1.4850385601477449e-06,0.0032672643339172153,0.00033305024837851474,0.0002690523051574981,0.2353516120806414,6.085703148221157e-07,0.9998732930339593,0.9999999895980972,0.9999994970433578,0.9999553960311752,0.9997780766913112,7.2418320825999976e-09,3.21942402313361e-06,0.00012096691879232253,8.251844559883193e-05,0.00028423895940030543,1.1812480741983572e-10,3.642408746123775e-08,0.0043028853875824065,0.4998969887696645,0.24981401516765644,0.9994016716847952,0.010367737942801327,0.9984727660962018,0.0010824351920717095,0.9837511436233847,1.363760915062968e-08,3.8404055136585505e-07,1.4226659299482872e-07,6.954806431027757e-07,6.408798711679101e-08,3.358102677529851e-08,7.694202550221933e-07,2.3649282902417126e-06,1.1386287771864895e-07,9.892103514507698e-08,2.1822797075565256e-09,2.0849968976098087e-06,4.11024442691053e-07,2.3152838229549913e-07,1.1536810780483056e-05,1.4765265925025898e-09,1.9190227236396753e-09,5.492212912244533e-10,2.1176246037400048e-08,2.322900627206543e-07,0.0002915035732001454,2.9541480586616185e-07,2.2684088599091366e-07,6.098577395425709e-08,1.0969091891206518e-07,9.424102309297686e-08,4.258382452852542e-06,2.064160255484161e-08,0.00029238812502575487,0.00011546808218296406,0.0005064859686427488,0.00024555127591317517,0.7541008439055952,0.02507182508044975,0.06105229909173271,0.005575897329734109,0.0346156209551335,7.611062768531807e-05,1.4119037725023505e-05,4.5004832302646296e-05,5.042398974877901e-05,2.867345788305544e-10,3.3491194507582845e-13,2.4262517989874385e-08,5.649138106263377e-12,7.584308581623587e-10 -ह,object,3.901384550802656e-06,1.793129156144502e-06,2.69946153006273e-09,8.8613236927145e-07,5.446642905121254e-06,0.9862880475567175,3.8791920127067516e-07,0.01143823951171482,0.00027756477277004506,0.47247710390186787,0.07039452162065783,0.6536850273374134,0.9974305035907383,0.0009120176609558631,0.9999253406796602,0.9999999307868138,0.999998758280344,0.9999570006293981,0.9998450800678732,1.6675987282501487e-09,7.283696778882478e-07,1.5378884380479494e-05,1.6867686082707922e-05,0.00016881641943714178,4.8738817387733035e-11,1.8620195181283e-09,0.00017892125345985558,0.028750608175533647,0.02632678618962767,0.9994518129806426,0.24801981938435075,0.9984934664866466,0.05588046304221508,0.9882817254985944,8.687498833129348e-08,1.7935734006689796e-06,5.745188436836396e-07,5.127191093563587e-06,1.6963944739788532e-06,3.4553121158888467e-07,0.0026933172481712338,0.007866309135433836,0.0010272997860687459,0.0003435826794961299,3.0129689976560354e-06,1.7635387532962225e-07,5.895686389838683e-08,2.2253594842224574e-08,3.557045457624314e-07,2.364368940579666e-10,2.531292875986234e-10,9.620152331159215e-11,1.528210654040071e-09,1.1267788223286027e-08,5.349162281300028e-05,5.03631868039574e-07,9.820331127451235e-08,8.09612105660328e-07,1.2226066496126969e-06,3.053406762006634e-06,5.620764846182753e-05,8.118408692724319e-07,0.000869419442281318,0.00033127842704106625,0.0007296142256817456,0.0010850963205935797,0.07819009948765865,0.008633440600961833,0.00711641355373152,0.0008387307107640246,0.0013146456536574243,4.281324255749745e-06,1.1368908348687029e-06,2.2404153666277097e-06,2.1325464667787457e-06,1.5998870440889283e-08,4.871750517832081e-10,3.289462267172239e-07,7.302824433598947e-09,5.646025141107711e-09 -हर,rgb,0.9999999880911637,0.999999999179068,0.9999999965745514,0.9999999947483678,0.9999999992121811,0.9308085363283796,0.9945650529343283,0.00033051320851204324,1.089422978961137e-06,4.3323058155688325e-07,6.015116680074783e-05,3.2454617485918345e-05,1.3174607775742997e-05,1.0792449016279212e-05,0.005663601960758513,0.006567771762646737,0.007412860832618692,0.008242335873057071,0.006442280900554754,0.9999999999198106,0.9999999997707354,0.9999999997651277,0.9999999994440503,0.9999999962489947,0.00020204478926720554,0.000393394746680696,0.00030929717469506336,0.00040852027291441193,0.00033118839541005485,0.9999955468940601,0.9999991253551627,0.9999972511802521,0.9999967768322442,0.9999955785731364,0.9999907466412806,7.399566797873678e-17,1.1780215047521113e-16,3.556544710670044e-17,7.262173703224729e-17,7.054032294926262e-17,0.1034859065482711,0.04248022073872941,0.06017908090814334,0.09391868919395356,0.03012742837828844,0.9997775347868952,0.9996704265099705,0.9996560163616144,0.9994087065396561,0.9999999999536593,0.9999999999614282,0.9999999999769928,0.9999999998868734,0.999999999840328,0.23438583163348717,0.011158122039024849,0.29489818772476034,3.238444216671417e-08,1.6416598696063097e-08,1.0869787649838597e-09,1.6231973929528972e-09,4.284196302840997e-10,4.16271738972624e-08,2.177486999249112e-08,3.995814359307583e-09,4.06510846437532e-09,0.9999997759936003,0.9999984112177427,0.9999997500597185,0.9999978926047048,0.9999996647340561,8.13433482215169e-13,5.687462170204482e-13,3.201329965226474e-13,2.0435370661540174e-13,0.9999999989435935,0.9999999989966666,0.9999999985041266,0.9999999914163274,0.9999999964217534 -हर,shape,0.9995608447274429,0.9990046600008372,0.9996921009980824,0.9999731540758658,0.9993426503113113,0.9999999128881589,0.9996980457184136,3.5700256559268287e-06,1.074548340947875e-12,0.4864252842975792,5.09917503936795e-05,0.9987364083242742,0.9995875745293951,0.0020258874760771574,0.9999968159099794,0.9999999698335447,0.9999998716754068,0.9999999313946748,0.5063701135931089,0.9999963305299813,0.9989119709590422,0.9999960969555424,0.999777482053475,0.9993495810769749,0.9999999422504033,0.9759678158582255,0.991912166150783,0.9990212604427082,0.9924856660403203,0.9999156591436376,0.9999999746781594,0.9999991497292668,0.9999999999965992,0.9999999075782103,0.9999989303845037,0.9972552602439534,0.9838627521898154,0.9996229545399975,0.999999823159248,0.9999713976962763,0.0009137906758265123,0.6388448500363546,0.7200942302476178,0.00026880098448898765,0.0036795682110802802,0.0017620768325891333,0.001918338160022293,0.0012607621668740711,0.0018310864787620086,0.9999434288461884,0.9999267942653245,0.9999969299502779,0.9997987030226865,0.9997326547039079,2.598611153498247e-06,0.0010138705812952119,0.002037976046454993,0.004404424512378805,0.12716866932599658,0.9998819313877497,0.999920746005039,0.2714498660197991,3.1045512658678768e-06,5.5821022070106655e-08,4.0279388563083264e-07,0.7244605405608989,0.9997896117553055,0.5182421328849356,0.9999994629127977,0.3834074926634918,0.15064840973663327,1.3691220981429362e-06,2.9839581538999165e-06,6.295049122917826e-07,1.7231777867655703e-05,0.9996131741340231,0.9996951021592954,0.9994995729761111,0.9999988752364889,0.9998969738081995 -हर,object,0.9999902607975961,0.9999946652579692,0.9999986917326242,0.999999304120397,0.9999997150216721,0.9906114833734471,0.9885002035621631,0.0012045992423727486,3.3728925745417677e-06,8.842331459823999e-05,0.004061004312099689,0.19283718998602514,0.4625502562085075,0.06918731845664945,0.9969583910843365,0.9895570257947911,0.9926601901604155,0.9912020068345042,0.6573672863269643,0.9999973363794733,0.9999948082155582,0.9999987732518923,0.9999955578481238,0.9999986598421117,0.9823648789495533,0.9018301368981004,0.945344520871619,0.9825075469538872,0.9759087546113959,0.999999227414369,0.9999976372678451,0.9999985029254265,0.9999969449275429,0.9999745523880889,0.999828109009015,6.49773969759822e-09,3.3479663263629108e-09,9.520366254016179e-09,4.25836176728437e-08,1.2627642486554484e-08,0.9904004172728204,0.9735630927738825,0.9706528863947036,0.9196721086089092,0.8465819680533558,0.8311673764168989,0.702038843411595,0.7775546005680025,0.6555602694763333,0.9999826094198988,0.999982228862969,0.9999820976602906,0.9999763419541244,0.9999718571265331,0.014083502671363953,0.014103586497763323,0.04347544403026827,0.0001994891220156244,0.0002552556028006259,0.0001470036398784755,0.00012536003819697155,8.24956087004253e-05,0.000308893060253592,1.5968680645236174e-05,5.556419380220891e-06,0.00011960814831265038,0.9936239451626454,0.9955390412835224,0.9996346499706524,0.9953779601428829,0.9958896830905523,2.763951750501768e-09,1.3836701918935906e-08,7.343225812453739e-09,2.6884566375897776e-09,0.9999997409511321,0.999998803821385,0.999999149619814,0.9999999263333826,0.9999994450478986 -हुआ,rgb,8.541176031627897e-11,1.892523702983811e-10,1.3831622439610837e-09,1.6195844338418693e-06,1.0904134923716683e-06,0.9998782764233025,0.9989859355301843,0.0021415148317098414,5.213009042723463e-06,1.6820627850794843e-06,0.007688872934727235,0.9911939068196236,0.9848071752312272,0.9819277105147047,0.8978978545409668,0.9211057223218275,0.93592945400918,0.9464917294711827,0.9376590259089352,2.6423105651636847e-09,1.2358944173983774e-08,2.5442078496770337e-08,9.754606235024113e-07,2.0433681156804888e-06,1.907662632844277e-53,2.0758955520739112e-52,4.020404633869031e-52,3.5110518171029695e-51,3.2940773235253443e-45,0.8844112453756282,0.8513496445325768,0.8879455422421934,0.9203363408989969,0.9362041357981381,0.966688932451688,1.9477042951362592e-33,1.743618172242913e-33,1.0113733896773428e-34,4.07728982966766e-34,4.27112577171481e-35,0.9673069403737263,0.944927582489989,0.9707739334255955,0.9860370000218814,0.9895280535003412,6.191468503727914e-07,2.751475016521554e-07,2.7056175341049865e-07,1.1779543682237531e-07,0.00017327122104928713,6.219086620548096e-05,1.462546413174252e-05,0.0005124513001626028,0.0007190897618304551,6.127687410645199e-05,0.0006944650101050622,3.8409069275925425e-07,0.006339971003424602,0.008729707446547233,0.00034357047439728737,0.0015041479488374975,0.00039854656419157513,0.06191563247371282,0.023863197640073355,0.003181971766752419,0.0032248783332432278,0.00025662495165090354,0.027869967222000414,0.00015597470277246703,0.040106210952612915,0.00016501709898692166,4.046628547399853e-30,1.712942986313366e-30,8.927337943532445e-33,8.790142006278826e-33,1.0519410784087053e-08,2.033744793777138e-08,7.429336486988813e-08,9.177873781594102e-08,1.1381186978257664e-07 -हुआ,shape,3.71452886455155e-05,1.3037758143294965e-06,3.4980378340936014e-05,0.0014505660083295303,0.12395384357478705,0.8472747014605778,4.480209778409167e-08,0.000963482729627284,1.4304568203267817e-07,0.0008699373011485751,0.0017819646083524338,0.9998888070498106,0.16076805858934898,0.0003213930828221077,0.9998391686394232,0.9999995227245724,0.9999914904135359,0.9999907196705033,0.9997504373302953,9.007286392346148e-07,4.1968475095847986e-05,0.013109485010402116,0.003743344338513532,0.0013190215959463342,1.0214817854014434e-06,1.386165973367337e-05,0.9566197105231301,0.9977318543733515,0.7020697424026242,0.9995117770642584,0.978373503609355,0.9994684575433554,0.7453012498794633,0.9820646686765614,0.0002578182418418563,0.5204780578603775,0.23863229114367718,0.0027708682254779524,8.991573417636566e-06,1.792838357342148e-05,0.018559064498975666,0.00037896358924805905,1.0253300642131607e-06,0.0027379753407650595,8.486315045387594e-07,0.00047365967018891557,6.671383263806574e-05,0.0003613355958045488,0.01144864806026201,5.837566377274134e-07,2.3919498367079818e-06,1.309276860240311e-06,1.865465631000276e-06,7.489046745911815e-06,0.009611719333404715,2.065600908609326e-06,9.350991306907822e-06,1.0492767702362257e-06,6.898569138174805e-07,6.423211687206502e-06,5.9020954357456906e-05,1.2339684754238643e-07,0.01129885618962583,0.02941586675458501,0.024054212735098612,0.7526067781222222,0.8761829084612174,0.11686824540372157,0.053197121932878136,0.608186238372289,0.974973755515477,0.0455936579010462,4.577311037304262e-05,0.00043750875439010504,0.005823986331123486,9.398195014533605e-05,0.000374966976172024,0.758450638003395,1.9983785188998534e-09,0.0010060748491952786 -हुआ,object,0.00010186315049046907,1.1216080118360831e-05,0.00032183738181317955,0.7907538318912698,0.4498019375219045,0.9992671736541865,0.0735807314418725,0.01716885620665485,5.075684959124741e-06,0.03758042273819668,0.10253218706541531,0.99999929599046,0.9997675853490191,0.5317272683760449,0.9999585349131036,0.9999997646867304,0.9999979907271961,0.9999963037339967,0.9997816315231599,8.760102585530851e-07,0.00011912990909136433,0.014289293495792908,0.005592716698242701,0.005575739756504414,3.4898631596705784e-09,7.634873038132738e-09,0.002899388279060541,0.05763932054843699,0.0042889107071923315,0.9998134852111367,0.9992419714079547,0.9998762737861796,0.9978491250889577,0.9997135127876806,0.004783966580131408,0.14361465470122894,0.01716214766370277,0.0022838706960661547,0.0003650840039036236,4.27457778894013e-05,0.9980791115263636,0.951822487616661,0.22531222885986232,0.9612949361780846,0.012411313612606573,0.00019627751771300985,7.725653890279645e-05,0.00021047811109254215,0.00159600879531666,1.394314810814003e-06,3.3813885591398126e-06,2.460401692366151e-06,1.2831052753652125e-06,2.909021751315139e-06,0.0038468811281042784,3.976055000094551e-05,1.4952493537022418e-05,3.47661609791121e-05,2.6644365210972163e-05,0.00012840376362371246,0.00028292568074625115,6.783929609211884e-06,0.03952971144726377,0.02253537321511976,0.04685891949076806,0.8667011741164213,0.5734050923664725,0.08660795313398623,0.1032084880209972,0.574016573620646,0.8435658373636362,0.0014440944805631292,1.3273333680942948e-06,9.046365949241536e-06,3.647752914516522e-05,0.003277881120812263,0.053374569731455074,0.8947916328617939,0.00015758175529706627,0.010133583053831661 -हे,rgb,0.9999999999022298,0.9999999999673717,0.9999999996251054,0.9999999317333514,0.9999999887473451,0.9895965948620215,0.9999496206407424,0.9862391632739369,0.9999349190872197,0.9999777162227864,0.9795964759139525,0.9130319740874225,0.9679102566291901,0.9719142031639846,0.33211222653405914,0.3022375918389547,0.2801789002187989,0.26246372764257714,0.28331151974192986,0.9999999999668341,0.9999999997701579,0.9999999996245565,0.9999999923134689,0.999999938993507,1.0,1.0,1.0,1.0,1.0,0.9774106778112608,0.9950514603928541,0.984765144489772,0.9815284652945425,0.9749718566163965,0.9503632198502744,1.0,1.0,1.0,1.0,1.0,0.1801944716601437,0.22447296790016052,0.17885392721064855,0.1396479954475533,0.1444749367020211,1.0,1.0,1.0,1.0,0.9999999999994671,0.9999999999999396,0.9999999999999944,0.9999999999987166,0.9999999999984666,1.0,0.9999999999999964,1.0,0.9997283911905425,0.9998828436655791,0.9999976471107502,0.9999973808556076,0.9999998956676015,0.9999999069880239,0.9999999754387771,0.9999999958062151,0.9999999958204306,0.9999999999999993,0.9999999999989722,0.9999999999999998,0.9999999999982201,0.9999999999999998,1.0,1.0,1.0,1.0,0.9999999992978734,0.999999998937176,0.9999999965303743,0.9999999858890198,0.9999999911210807 -हे,shape,0.9999978002166274,0.9998593040300002,0.9999989999271445,0.9996085095057103,0.3311965624984073,0.017931613328261726,0.9998789971755898,0.999999741194309,0.9999999128882564,0.9997727482148963,0.9999653236955851,0.9999186462936982,0.9998046448386663,0.9999519921264965,0.011479386747914934,8.46470469860904e-05,0.0001989191929164892,6.710635001443507e-05,0.00015873566067892123,0.9930478426235518,0.8255459624213413,0.3795909988786141,0.5433930772621773,0.0320114744576601,0.9999555103635408,0.9994873629663793,0.12885590948433986,0.006281029577406446,0.0054930802403261,0.21930537294920102,0.18231345235573262,0.03006012253190869,0.06731684278444586,0.00027072034399768533,0.9999501739665049,0.999853886679098,0.9999207457731957,0.049395803691144026,0.8281816406894412,0.9299393728489985,0.998287848707421,0.9965775974141521,0.9979462102330653,0.9999738611567262,0.9999832607525446,0.4899795960386441,0.8022376033430787,0.7943842391980791,0.4716733362494869,0.9962218614358986,0.9963883965814199,0.9952794737565639,0.9544339285505101,0.7884710898124618,0.2697652819047179,0.46811014561282766,0.44038263382954984,0.9934871095044584,0.978159591797229,0.9629451701722317,0.8505749810922668,0.9115412462947354,0.6000378299531051,0.5129202925321712,0.5300578552830529,0.8885373345113251,0.009570725782973716,0.002117928330264406,0.0018959196593330277,0.03228634950205828,0.07407157772720059,0.8873391414623766,0.5386436111076879,0.7225845949926354,0.5732923871235533,0.999979973241213,0.9996100585715821,0.9999962464540988,0.9974390000278643,0.9999541246129725 -हे,object,0.9999912583617527,0.9990343176917352,0.9999906862163451,0.9934682952573568,0.05058112432447084,0.07680653552552108,0.9999244923030568,0.9999998260716427,0.9999999395804581,0.9997729031718634,0.9999678378519176,0.9999478296789436,0.9998322295980573,0.9999849823660367,0.008372379279996069,8.47266183429999e-05,0.0001847295735073742,6.216769775198117e-05,0.0001198847176499781,0.9285813762243306,0.34166834817690533,0.05375504446311407,0.1255527330036192,0.00294236953866075,0.9722619123440793,0.7358218619639617,0.00013374337221909343,7.817474430445157e-06,1.2378483883067808e-05,0.12236638643363643,0.10804617650736566,0.017236904376481395,0.03671815613439573,0.0001573674209241927,0.9998406162550662,0.9999907915233477,0.9999948368567744,0.4643150546392864,0.9826452125083952,0.9949870914888957,0.9973700496633072,0.994853294830737,0.9966653495395161,0.999953738185604,0.9999827177654249,0.8032595725562144,0.9370686977031734,0.9344390880530812,0.8067784288955157,0.9948071127192721,0.9953287835385378,0.9943147201458858,0.9513592459055565,0.7990200828724464,0.6944837259629187,0.8178226708097213,0.8294312541553778,0.9948286779414897,0.9854262533546486,0.9739055589824607,0.9101492788888733,0.957761790800292,0.812559398090144,0.746177089606418,0.7553453701138098,0.9494979844192015,0.026923258744439748,0.005592315573697897,0.006058957168858276,0.06905918764304608,0.15204902170880766,0.9918803044348812,0.947797928164724,0.9757852486681263,0.9598742176886044,0.9998435389809509,0.9926499379628131,0.9999543691118666,0.9567321843830129,0.9993477907313113 -हैं,rgb,0.45099495069531176,0.941397328827964,0.8412518127253542,0.9677178131844768,0.9968817833964276,0.999999736575072,0.9999999989483888,0.000831616336451539,0.0005935730040270989,0.0006200229704287148,0.002449300268943536,0.9933510199126994,0.9970915916226939,0.9969647834577675,0.044591047502394544,0.05337000576529135,0.061656169725848704,0.06984850788416432,0.06507915101833996,0.9985968005092711,0.9964750787961938,0.9972319447684036,0.9980267431321095,0.9805411091936935,0.013667935234616275,0.009915767383038347,0.008581034484719318,0.00618549117711487,0.0006851787796295723,0.9905552530269093,0.9988150677488082,0.9952999585233189,0.996198948594482,0.9955096007778076,0.9945471640687632,1.0,1.0,1.0,1.0,1.0,0.07704335566567606,0.05383587605739187,0.08576214621877556,0.14874434463197733,0.20782009792232303,1.0,1.0,1.0,1.0,0.9999999999996205,0.9999999999999476,0.9999999999999907,0.9999999999996556,0.999999999999712,1.0,1.0,1.0,0.5277001249898557,0.863247259221565,0.9633780703017412,0.9944790582429526,0.9997525879990092,0.9999998736358642,0.9999999345455929,0.9999999219465018,0.999999923877301,1.0,0.9999999999999987,1.0,0.999999999999998,1.0,1.0,1.0,1.0,1.0,0.9731543663985849,0.9795296943062367,0.9783498359385335,0.8604993613335872,0.9474522203189796 -हैं,shape,0.4419719750596845,0.9882056855524957,0.6681991965763044,0.9998247139202973,0.9998970127195507,0.8686619989631494,0.9999964018045991,4.840374362763199e-07,9.108349508315609e-08,0.00354975664953304,0.013830708664058895,0.9996547634629845,0.9946669399267679,0.999990555764751,0.9999987141697118,0.9999974789477616,0.9999962212368844,0.9999997089607938,0.9999950762192018,0.99794818171024,0.9375758319203141,0.9888118144094054,0.9780203598591547,0.9999586919084013,0.9941555498874011,0.853837951968571,0.9999451664248133,0.9997962499496177,0.9999053572878928,0.9999940630148996,0.9999985769316976,0.9999991040004915,0.9999642682246676,0.999998936557233,0.9998136612195292,0.9999928281776304,0.9999852221571145,0.9999562676890658,0.9998136829335158,0.9999642243489018,0.00035616517205359726,0.007510891679246902,0.0073014416906034465,0.000904768626668224,0.0024560845081424082,0.9999965310452241,0.9999978334724138,0.9999874917217618,0.999990494521756,0.9996005589448558,0.9999100242726129,0.9998478751614779,0.9991564311702369,0.9992745213751221,0.9999506277383615,0.9999959510280212,0.9999738577475129,0.5470978093837523,0.7373876654530993,0.9900152504860192,0.9916216027688588,0.9495738633012495,0.9999909467058556,0.9999795699947247,0.9999964260250027,0.9999826355967856,0.9999998860353233,0.9999962867165662,0.9999978597465674,0.999533233531845,0.9997173506258773,0.9999710611228377,0.9999975479238963,0.9999963300524497,0.9999990155859079,0.9858634728840587,0.998284223110101,0.9998767052014285,0.9994779818144915,0.9998769668062566 -हैं,object,0.7811942055691967,0.9992398041260228,0.8834366229902509,0.9983584974865678,0.9999397253244768,0.862393200746082,0.9999912895527346,1.5427958640986859e-07,1.530283068070898e-08,0.00017342933950443464,0.001076057426583112,0.9997286746603239,0.7096596462618238,0.9998986454383525,0.9999018580547359,0.999790238396422,0.9996437772365686,0.9999854968330413,0.9997789243091142,0.9996594297928267,0.9970674874624059,0.9996327970598738,0.9993989364400166,0.9999842976163789,0.009362939249540172,0.0007738523823036925,0.4565922424413178,0.2710301638637782,0.5893551193810374,0.9999903616398181,0.999999325270528,0.9999984993587427,0.9999918099655343,0.9999978437184418,0.9998775800606099,0.9998814303046842,0.9998244963197034,0.9993136005777068,0.9817782390589417,0.9986046376406155,0.0003705831720899154,0.0017159932072496151,0.001917412807921647,0.0004833962726725089,0.0005825024661617312,0.9999999906743983,0.999999991346504,0.9999999776050564,0.9999999905925906,0.9999989256663431,0.9999997511597771,0.9999994934428588,0.9999989060913299,0.9999991440975258,0.9999994774517439,0.9999995684245762,0.9999996081783679,0.0733925364945924,0.12413520425712825,0.6153502847329468,0.7876054359269148,0.3126504623445827,0.9999643472244742,0.9999451773652855,0.9999878434014813,0.9999323652833239,0.9999999997487734,0.9999999778475681,0.9999999802370065,0.9999979806501537,0.9999996721554951,0.9999963786194934,0.9999993968392161,0.9999987868581237,0.9999996218901372,0.993202653271966,0.9986004701048681,0.9999229427874795,0.992446170951206,0.9998972357330428 -हो,rgb,0.0237430674610334,0.05970900182393455,0.05646449082779402,0.24024775682581645,0.40559084656765565,0.9999972822995997,0.9999997293999439,0.872889963038947,0.9601037612028731,0.9686532338284919,0.9616162370902296,0.9999770146595814,0.9999891914015918,0.9999894845471647,0.9816510952665677,0.9831027669882961,0.9841841310704975,0.9850643191014626,0.9854229268520993,0.2561168538418026,0.2370626315189907,0.2756863506672917,0.4429192636316457,0.28202413706035984,0.015172072514939537,0.011878086632809108,0.012319722921274399,0.010736021979515509,0.00794277264926705,0.9461218090239746,0.9723712115124452,0.9581497874455388,0.9656661572709495,0.9663152363150569,0.9714841009433377,1.0,1.0,1.0,1.0,1.0,0.9685191517547801,0.9698911796913735,0.9758063339586364,0.9813664012418124,0.9902618493474814,0.9999999999994558,0.9999999999996785,0.9999999999996856,0.9999999999998226,0.9999969874768521,0.9999989519726625,0.9999995132345469,0.9999980310090111,0.9999984557825895,0.9999999999994011,0.999999999998177,0.9999999999999503,0.9999119039143245,0.9999755436968155,0.9999946505987158,0.9999982592890245,0.999999808503663,0.9999999935652122,0.9999999962411354,0.9999999972411886,0.9999999972694515,0.9999999996248361,0.9999999975422829,0.999999999743078,0.9999999973134313,0.999999999778461,1.0,1.0,1.0,1.0,0.1290056658826448,0.15252501855889475,0.17811885201241837,0.10572940133920025,0.14623703156386086 -हो,shape,0.999999999998656,0.9999999993899935,0.9944372540498091,0.9979114200672657,0.9999916954423215,0.9915315153887382,0.9968351474779926,0.9999999999955527,0.99999999999979,0.9999999999992923,0.9999999999987421,0.9998566557631422,0.9999998213026635,0.9999293021867138,0.9980852183591163,0.9990268297058345,0.9971346389976437,0.36488443492383577,0.9999902842748365,0.9999993024930294,0.9999999972131968,0.9999999996501456,0.9999999998583233,0.999992586633157,0.9999970330360556,0.9999997523045866,0.9999950315511463,0.9999998362887695,0.9999999968670317,0.9999985605497498,0.9973130469780447,0.9999215076037151,0.9970955376754908,0.3663408198366475,0.9922238156338133,0.0025121809685909216,0.0004012320439138643,0.00013996138546808404,5.5899543675877696e-05,0.21501958316433903,0.9999994311649214,0.9999299548573621,0.9999208938872941,0.9999998147076922,0.9999823899232564,0.9998915341908742,0.9998985622737339,0.9999890927773689,0.9999970398560197,0.9999307185570072,0.9999798769488489,0.9999834322701193,0.9999988258252828,0.9999998411589813,0.9999999969572972,0.9999872608190876,0.9999983617052818,0.9999999412740789,0.9999994354841351,0.9999969912634648,0.9999999917345869,0.999999065578184,0.9999998882949248,0.9999999969844666,0.9999999975896754,0.9999997269756463,0.9999999997061324,0.9999997745433717,0.9999331141719144,0.999997471985165,0.9999997810652728,0.9999999978321374,0.9999999214979962,0.9999999828794198,0.9999999714151918,0.012531091073333127,0.0024928890670155583,0.0022301602632010743,0.00012130645812683423,7.677639632048577e-05 -हो,object,0.9996572838375504,0.9680773978282277,0.9648385043792657,0.9977004836033743,0.9996895584854965,0.999916674555216,0.9997873553750556,0.9999999968276925,0.9999999937897206,0.9999999992915907,0.9999999992111974,0.999935040823029,0.9999987521061424,0.9999087849132946,0.8385536170947323,0.5809501269755964,0.5353715611192467,0.09832730559982343,0.9983338959627175,0.9997298240714104,0.9999974206266821,0.9999984467917267,0.9999997015940378,0.9985240783262921,0.029630251910933367,0.03851489597768635,0.321475729901052,0.5214469249343641,0.8489797606511931,0.9924700932237315,0.9965767876569771,0.9892917561566329,0.9766259441842863,0.445214735828094,0.9915497956740541,0.9999479358433272,0.9998971613773457,0.9997757693799347,0.9998222059369185,0.9999999648469712,0.999999563027236,0.9999982157408879,0.9999981029669555,0.999999837175381,0.9999981568312692,0.9999972120002033,0.9999982482474719,0.9999993636636845,0.9999994470201405,0.9999049922952573,0.9999767371401146,0.9999978329730832,0.9999944747619052,0.9999989092161824,0.9999999971856166,0.9999987935397856,0.9999999814126618,0.9999992159300711,0.9999976355466202,0.9999982532896331,0.9999999703634559,0.9999997231823277,0.99984648592521,0.9999997470494557,0.9999994522833235,0.9999991861257098,0.9999999895932669,0.9999998955591425,0.9999998596320999,0.99999999766417,0.9999999989958042,0.9999999997192188,0.9999999976574985,0.9999999996722089,0.999999998812438,0.47599889325186046,0.6561593649006148,0.02088859650896732,0.01125510879356327,0.006115997595235734 diff --git a/testResults/testing_hindi_stem/NoOfDataPoints/6000/groundTruthPredictionTrain.csv b/testResults/testing_hindi_stem/NoOfDataPoints/6000/groundTruthPredictionTrain.csv deleted file mode 100644 index 10e1bde..0000000 --- a/testResults/testing_hindi_stem/NoOfDataPoints/6000/groundTruthPredictionTrain.csv +++ /dev/null @@ -1,305 +0,0 @@ -Token,Type,1-tomato/tomato_2,1-semicylinder/semicylinder_4,1-cabbage/cabbage_1,0-cube/cube_3,1-cabbage/cabbage_3,0-cube/cube_1,0-cube/cube_4,0-lemon/lemon_1,0-lemon/lemon_3,0-lemon/lemon_4,0-corn/corn_1,0-corn/corn_2,0-corn/corn_3,0-semicylinder/semicylinder_4,0-semicylinder/semicylinder_1,0-semicylinder/semicylinder_2,1-carrot/carrot_3,1-carrot/carrot_2,1-carrot/carrot_1,0-banana/banana_2,4-carrot/carrot_1,1-plum/plum_4,3-arch/arch_1,1-plum/plum_1,2-lime/lime_2,1-plum/plum_2,3-tomato/tomato_3,3-lime/lime_2,3-cuboid/cuboid_3,3-cuboid/cuboid_2,3-cuboid/cuboid_1,1-cabbage/cabbage_2,1-arch/arch_1,3-orange/orange_3,1-arch/arch_2,1-arch/arch_4,2-banana/banana_1,1-potato/potato_2,2-banana/banana_4,0-cylinder/cylinder_1,0-cylinder/cylinder_3,0-cylinder/cylinder_4,0-cuboid/cuboid_1,0-cuboid/cuboid_2,0-cuboid/cuboid_3,2-cabbage/cabbage_2,2-cabbage/cabbage_3,2-cabbage/cabbage_1,2-cube/cube_4,3-orange/orange_2,2-cube/cube_1,2-cube/cube_3,3-lemon/lemon_3,3-triangle/triangle_2,3-triangle/triangle_1,0-arch/arch_1,1-cucumber/cucumber_1,1-cucumber/cucumber_2,2-corn/corn_2,2-corn/corn_3,2-corn/corn_1,5-carrot/carrot_1,3-arch/arch_4,2-cylinder/cylinder_4,4-cuboid/cuboid_2,4-plum/plum_1,4-plum/plum_2,1-lemon/lemon_4,1-lemon/lemon_1,1-lemon/lemon_3,1-cylinder/cylinder_1,4-semicylinder/semicylinder_1,1-cylinder/cylinder_3,3-lemon/lemon_4,4-semicylinder/semicylinder_4,1-cylinder/cylinder_4,2-plum/plum_2,2-plum/plum_1,2-plum/plum_4,2-cucumber/cucumber_2,1-tomato/tomato_3,2-cucumber/cucumber_1,1-tomato/tomato_4,2-cucumber/cucumber_4,2-lemon/lemon_3,0-tomato/tomato_4,4-cuboid/cuboid_3,0-potato/potato_2,0-tomato/tomato_2,0-tomato/tomato_3,2-lemon/lemon_1,3-semicylinder/semicylinder_2,0-cucumber/cucumber_1,0-cucumber/cucumber_2,0-cucumber/cucumber_4,1-cucumber/cucumber_4,1-cuboid/cuboid_3,3-cucumber/cucumber_4,3-cucumber/cucumber_2,3-cucumber/cucumber_1,4-cucumber/cucumber_4,0-triangle/triangle_1,0-triangle/triangle_2,0-triangle/triangle_4,4-cucumber/cucumber_1,2-cuboid/cuboid_1,1-triangle/triangle_1,0-plum/plum_1,0-plum/plum_2,1-triangle/triangle_2,0-plum/plum_4,1-triangle/triangle_4,3-semicylinder/semicylinder_1,0-eggplant/eggplant_3,3-eggplant/eggplant_3,3-eggplant/eggplant_1,2-orange/orange_4,3-eggplant/eggplant_4,2-eggplant/eggplant_3,4-cabbage/cabbage_2,4-cabbage/cabbage_3,2-eggplant/eggplant_4,2-orange/orange_2,3-triangle/triangle_4,0-eggplant/eggplant_4,0-banana/banana_4,1-eggplant/eggplant_4,0-orange/orange_4,0-orange/orange_2,0-orange/orange_3,3-banana/banana_4,2-orange/orange_3,4-cuboid/cuboid_1,2-lemon/lemon_4,3-orange/orange_4,2-carrot/carrot_1,2-carrot/carrot_2,2-carrot/carrot_3,1-orange/orange_2,2-cuboid/cuboid_2,3-arch/arch_2,4-arch/arch_4,4-cylinder/cylinder_1,4-cylinder/cylinder_3,1-banana/banana_2,1-banana/banana_1,1-banana/banana_4,3-plum/plum_4,3-plum/plum_2,3-plum/plum_1,4-triangle/triangle_4,1-potato/potato_3,2-cuboid/cuboid_3,1-corn/corn_1,4-triangle/triangle_1,1-corn/corn_3,1-corn/corn_2,0-lime/lime_2,0-lime/lime_1,3-carrot/carrot_1,0-lime/lime_4,3-carrot/carrot_2,0-arch/arch_4,2-lime/lime_4,3-lime/lime_4,3-lime/lime_1,2-lime/lime_1,4-corn/corn_2,4-corn/corn_3,1-cube/cube_3,0-potato/potato_3,1-cube/cube_1,1-potato/potato_4,5-cuboid/cuboid_3,0-potato/potato_4,1-cube/cube_4,4-semicylinder/semicylinder_2,2-semicylinder/semicylinder_1,1-lime/lime_2,1-lime/lime_1,1-lime/lime_4,2-arch/arch_4,2-arch/arch_2,2-arch/arch_1,1-cuboid/cuboid_1,4-cube/cube_4,4-cube/cube_3,3-semicylinder/semicylinder_4,3-corn/corn_3,3-corn/corn_2,3-corn/corn_1,2-tomato/tomato_4,2-tomato/tomato_2,0-banana/banana_1,2-potato/potato_4,3-cube/cube_4,1-orange/orange_4,0-eggplant/eggplant_1,3-cube/cube_1,4-triangle/triangle_2,3-cube/cube_3,2-potato/potato_3,5-lime/lime_1,2-tomato/tomato_3,2-eggplant/eggplant_1,2-triangle/triangle_2,2-triangle/triangle_1,2-triangle/triangle_4,1-semicylinder/semicylinder_1,3-tomato/tomato_2,1-orange/orange_3,2-potato/potato_2,4-lime/lime_4,5-corn/corn_2,4-lime/lime_1,1-eggplant/eggplant_1,1-eggplant/eggplant_3,1-semicylinder/semicylinder_2,0-cabbage/cabbage_1,0-cabbage/cabbage_2,0-cabbage/cabbage_3,3-cylinder/cylinder_3,3-cylinder/cylinder_1,3-cylinder/cylinder_4,0-carrot/carrot_2,0-carrot/carrot_3,2-semicylinder/semicylinder_4,0-carrot/carrot_1,2-semicylinder/semicylinder_2,5-cabbage/cabbage_3,0-arch/arch_2,3-tomato/tomato_4,2-cylinder/cylinder_3,2-cylinder/cylinder_1,3-cabbage/cabbage_3,3-cabbage/cabbage_2,3-cabbage/cabbage_1,1-cuboid/cuboid_2,3-potato/potato_4,3-potato/potato_3,3-potato/potato_2,4-arch/arch_2,4-eggplant/eggplant_1,4-eggplant/eggplant_3 -,,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,nan,plum,nan,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,nan,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan -,rgb,0.9197843405107724,3.2671996971468833e-07,0.9996519618000423,0.9999999999778837,0.999976636489004,4.866256978822364e-09,0.9998771083569089,3.4328275385177956e-08,4.38922685231895e-08,1.4367885944932786e-07,0.8985275582260227,0.9931678076308705,0.9887115553887379,6.105032151046272e-07,0.9999999999786038,0.9998921478147993,0.9912313498753343,0.9902343992665472,0.9884000995468806,0.0013650219218279574,0.9354718080130666,0.9989365658537517,6.279326585017371e-09,0.9999706340803838,1.2997655205843192e-08,0.9999863873665901,0.8699958869473564,1.7861023401329863e-08,0.9997442118042256,9.96660720617803e-05,4.959883791849026e-09,0.9997841889320329,7.941436671211049e-09,1.6808547485212414e-05,0.9999999232518025,0.999905921991823,0.005000242920024676,0.9898895113366883,3.658052517737408e-08,3.200810299686419e-08,0.9999999998763067,0.00032165351652572625,6.069434326194198e-09,0.0003368222518724985,0.9999440808819252,0.9964316985003278,0.9996893517075496,0.9996510969951878,0.9998717338232205,1.7005794534599616e-05,5.141362488779851e-09,0.999999999902587,6.969664427392164e-08,1.6919412349154283e-08,0.9999192782872267,1.988357574554132e-08,0.0003732588458696003,0.0008968782295419933,0.991447322351018,0.9809397196745845,0.9052638284027709,0.9293261226997916,0.9998007158432821,0.0007981031072956237,0.00025480324305886867,0.999790793746097,0.9999781667225978,9.994552976079663e-08,4.261082241710677e-08,3.727183461372389e-08,1.2516143406281986e-08,0.9999999999495168,0.999999999837385,1.397053130313199e-07,3.6230006604083155e-08,0.00025584350864238023,0.9999880130497761,0.9998904641767322,0.9993546940361762,0.0016479294331611443,0.8698721145171363,0.0004659489439977536,0.04200916495864741,0.0046783061316920905,3.5880757244225566e-08,0.11160063827447421,0.9997995944601858,0.9948906014461724,0.7537535505454276,0.8472754463404633,4.004406557927166e-08,0.999429503698801,0.00014718108380282538,0.0016590294767533198,0.0025275197570284675,0.004122914090645723,0.9998008889245137,0.004851263454394796,0.00039986898419571055,0.0038258974505600415,0.00932533337671132,0.9999441169997647,3.679787496458613e-08,0.9999999999525362,0.014824724932375497,4.692733779106499e-09,0.9999635278728334,0.9999613470836435,0.9999857253297048,4.2593393137043584e-08,0.9999270649762496,0.9999999999381648,0.99999999997755,0.9884252494993143,0.957625075057255,0.9118768562340418,1.7432516448136374e-06,0.44008236518442384,0.9944583024241845,0.9997861282680078,0.9998240874722304,0.784401060831792,6.3342363134168785e-06,0.9999999998936122,0.9761570064448138,1.09992959983828e-06,0.8086761123997916,1.2517483294763206e-06,0.00013854061768499315,0.00022162459168274386,0.0007825939605794032,4.1032604482096556e-05,4.403421070491428e-09,1.2916010158560713e-07,2.348885847491613e-06,0.9649154615733287,0.9842380914073039,0.9847693423568817,3.763762920363935e-05,0.00017167326886617583,0.99999992819364,0.9992459517312481,1.3317630267923799e-08,0.9999999997787716,0.00043797503470857424,0.004394851174097839,5.736219593469146e-05,0.999539366231537,0.999985695022607,0.9999186082802447,0.9999999998836988,0.001336025438924354,0.9998666354347079,0.8887477955160615,0.9999169301741879,0.9817141301752298,0.9891485121131794,1.109134742025622e-08,8.255373944042613e-08,0.978883450351606,2.661797137533299e-09,0.9825529846622337,0.9999932595191633,1.4082876194692746e-08,7.184519449177298e-09,3.533893213754585e-09,8.940865711954704e-09,0.9842021298752546,0.9788315334494176,0.9999999999490183,0.001642464298585948,5.175101729681959e-09,0.0003286252827931894,0.999850464594978,0.0013543717881737685,0.9998742394793696,0.9992333395252657,0.9999999999388907,1.2363442128987683e-09,1.017042430919046e-08,1.3051984892184872e-08,0.9999229997823599,0.9999999015411652,7.1385794960908654e-09,4.721997725544255e-09,0.999862036272527,0.9999999991910933,1.831124883829604e-07,0.9792585647191598,0.9895058330410771,0.8921266122899482,0.0003635932540434734,0.9265857950339849,0.007623170220464824,0.00015138472471975563,0.9998295115858673,2.0773409240570763e-06,0.9643005257587293,6.8115239175753195e-09,1.975672816771856e-08,0.9999999998530904,0.0015530418632513387,1.184832759425315e-08,0.814396478885384,0.5534762704392896,2.658464423614676e-08,0.9999238769277181,0.9999999999190763,0.999999999980524,0.919109199418158,0.000706418747553043,0.9821989813303352,1.5386987619116194e-08,0.9865549651452156,2.7463831713186728e-09,0.9112301534808783,0.9901963452155534,0.9996288385090729,0.9990106500654153,0.9998962678080163,0.9998297339621444,0.9999999997956548,1.3504013013433301e-08,0.0012139902036642216,0.9890690077284544,0.9903250366952163,3.256105902442962e-07,0.9788633029704212,0.999604722838261,0.9998226199958198,0.9999999746786001,0.02292930196914101,0.9999999998447333,3.2937051931188694e-08,0.9997669284104673,0.9771575465857927,0.9951051241075508,0.00029541248827156906,7.969057481471237e-05,0.0006648498479865712,0.9900782054380629,0.9999998902402115,0.7324184071195405,0.7517729995460937 -,shape,0.000750281603563454,0.997365965043819,0.9998748086998374,0.2581608679971347,0.9999947387077227,0.9991976513035428,0.9918941165296747,0.00048505538031771213,0.19965088243407458,0.00014466849551386852,0.9848803047567207,0.9829940665860111,0.8747261977914921,0.5604064154361664,0.997763594113783,0.9990096208457502,0.9991181074767168,0.9914732581466043,0.9985093102889737,0.615439264079867,0.9995757475435861,0.9542035241508717,0.9999270186826185,0.9983097702807567,0.975956820037859,0.9649112138391072,8.516623905579006e-05,0.7490558961376694,0.9997069168448104,0.9996694250731964,0.23861030483080067,0.9999986372648108,0.9999862300580471,0.00015124913427098203,0.999994652955054,0.9976886079019052,0.011041525668031193,6.350407661358642e-06,0.11863039292743924,0.9867853281656187,0.9634854167758803,0.9670456254871648,0.9998997713298058,0.9999640488988534,0.999924166360203,0.9997759666926171,0.9999973789195589,0.9999042987034211,0.8819466741824535,0.0006828051466275301,0.9999467445793028,0.900986292505012,0.0001611088225918444,0.9762247020025953,0.4447992778426689,0.9999193765003452,0.9402947959182776,0.9864177580122221,0.4970449499930446,0.5572521461891922,0.30362111672820086,0.9999672109226414,0.9999022788070259,0.595955687281291,0.9808257115785964,0.9521771834647252,0.9947263260768622,7.753114109619998e-05,0.0002025296010652499,0.003266512317817414,0.9983377244200372,0.7551175346939824,0.9366683299010803,8.630519111999894e-05,0.9951401046946939,0.8944620723896151,0.9942843585113099,0.9423196270192552,0.7693883862881622,0.999985546441107,2.2226738443163314e-05,0.9847323288297097,5.707396829018835e-05,0.9879062507819907,0.0020571634355165424,8.123362976070902e-05,0.9998117649985293,0.00010685736819729216,5.999125329805587e-05,2.5784467009291968e-05,0.00019452975559636215,0.11991878463174627,0.994903398790922,0.9935109139204704,0.9985910624224993,0.9619388500080858,0.9998996445822985,0.9852388807066574,0.8124941479169556,0.996422331429937,0.999776672758968,0.9999923813928149,0.9999619741238532,0.9999928687059854,0.9973755081648348,0.9995819217979439,0.9840080409758113,0.9968368829694858,0.6729246097623883,0.9995450957161183,0.8536584984539518,0.999951217810757,0.9735123552690834,0.9999750204909595,0.999987894748826,0.9999853282802493,0.001620411961616717,0.9999591777564403,0.9972740289247434,0.99936261577166,0.9999911314099768,0.9999905794026861,0.0012466922062201796,0.9998841415082078,0.9999912327694602,0.9990550002297063,0.9999466442111792,0.0020721066393171775,0.00033925707474181466,9.263062817357105e-05,1.365294966788005e-06,6.172817269376311e-05,0.3561687999658534,2.2721320711142235e-05,0.0031706098828309945,0.9999682760998718,0.9991130097060484,0.9999965590648714,0.00010922640863668998,0.9979159920177402,0.8015595142899744,0.9999713259367876,0.9743364859908613,0.894479519087111,0.9967498150682342,0.996833404598557,0.9337161488602418,0.7609320009918094,0.9074230063378791,0.8196452267827237,0.999696906612442,0.015777752272235827,0.9999033209815666,0.9088147989793299,0.09122181642080668,0.9036464884365265,0.9829940665860111,0.7975209008306597,0.3187176370394178,0.9998020186086061,0.04142354008894699,0.9990381950509613,0.9999269255430414,0.15540582712357764,0.5291233239567592,0.8519555491998753,0.9853908630174089,0.7935115955688841,0.1324255234979985,0.9173525374944627,0.27362337858763275,0.9995823559211371,0.00030464134308435837,0.9997518845578326,0.01325712437392706,0.9698436523664277,0.24530063292461024,0.9929563461672817,0.7697831551170586,0.14742418753233602,0.6275298766582621,0.9999825434077582,0.7803793896058983,0.9999198600826675,0.999965034570963,0.5306553670432407,0.694932261110526,0.9714100699739472,0.9741055589909979,0.9716699889737109,0.9773025466979305,0.00034353508723737673,0.0008902419882998889,0.9992511246822706,0.0012959275270594272,0.9758924986655806,0.012558960859225041,0.9999513190496353,0.9991997789648221,0.9733451401701134,0.8578938408888009,6.185725398686991e-05,0.1581346619498332,0.00010539385189427706,0.9998646309469323,0.9990767455792363,0.990710026218464,0.9999271334032847,0.4992144431875528,1.542935320816547e-05,7.343896172652461e-05,6.266904218006674e-05,0.7843738029903448,0.08860352802409957,0.10029194408325805,0.9998412335874873,0.9999739465094938,0.9999982776817818,0.9999904478197994,0.9999863153270805,0.9999982777572902,0.9720313801548285,0.999185549647739,0.7047828105754823,0.9995904255511707,0.9995076701730626,0.7889846490130598,0.9922846612494477,0.9999335912981412,0.9999998690712433,0.9988052207784474,0.0013146717674966902,0.9315432475815655,0.9572652846205785,0.9999911314099768,0.9999289406113471,0.9962723435816259,0.9985662329402702,0.00024620417888533735,0.02218324311222899,2.616606784390253e-05,0.9976203477049413,0.9999997989350105,0.9999934481510142 -,object,0.2508036077958656,0.0007196901860060866,0.9996370307221931,0.9996035043256543,0.9999908117843394,0.002567660384909237,0.9992525022731157,2.3868926026905133e-05,0.00017180605942692756,2.5391078384296668e-05,0.7053790768208341,0.8865475416605806,0.7222212571711011,0.00010815887857806821,0.9999578613966789,0.9997610906379314,0.9816826945444996,0.9538600351914729,0.9503193295558766,0.022058520034966736,0.9584043463130488,0.9775349643642228,0.005563470430211751,0.9995331265436462,0.00038418631574584983,0.993697954523226,0.07195290258749107,0.0001596134358614062,0.9999029400859036,0.061580298915358975,4.3998841812274606e-05,0.9999613339230102,0.012412327666770378,5.331394122530641e-05,0.9999188640479134,0.9998170875029982,0.002898902018761058,0.024071330299607393,6.975691265845028e-05,0.000592357712847928,0.9996138501431858,0.00553332016238506,0.008126269204344233,0.21052285799086126,0.9999476727261644,0.9986616394523998,0.9999724122783866,0.9998199129632879,0.9976689981390162,4.581382592213934e-05,0.01017856071466867,0.999801843754402,7.783560412684403e-06,0.0004176062272765112,0.9923685803359523,0.012783097979555512,0.011945186742464189,0.03406591084793188,0.5502484093550949,0.5529889320637503,0.30661535079198493,0.9870098413172543,0.9996549364498186,0.003037231975632915,0.010329853037518051,0.9899295856703424,0.9980840622734778,1.1079386926459077e-05,8.63727645637883e-06,3.8579331855892075e-05,0.0013355810803201435,0.9996346127950176,0.9994783310565446,1.3050397479442822e-05,0.0002790171576329686,0.003279476032105125,0.9984439375067322,0.9946103305833811,0.9631321446670738,0.6251752396933884,0.04765944982992634,0.018111744352208126,0.0017636129560129209,0.05473586594631501,2.5038003929552057e-05,0.00348414487846579,0.9999109169781967,0.09813036366128805,0.10919303879412064,0.05385025575481669,6.4487839460009326e-06,0.9760498614943941,0.02003444602224529,0.04997384458736746,0.10619941858578685,0.03870116631944577,0.9999254903618915,0.06155643916273946,0.009146293158291494,0.11291755995126995,0.4395647093881173,0.9998944870565731,0.005147826416211166,0.9999924880665874,0.17881177439181786,0.003278522731769223,0.9981577625871934,0.9992968104095276,0.98648354480027,0.003170517703323453,0.9696015850722517,0.9999767572412993,0.9998928291885049,0.9558347045257426,0.9604796234489332,0.9797940946062779,4.771250930276024e-05,0.7705203448408291,0.9101984237754934,0.9994802731318396,0.9999816395458535,0.9088624916235105,4.4586536845568945e-05,0.999971101683421,0.9487855446975643,0.005730053837542963,0.7957324673103533,5.9835556641034555e-05,9.192691996303112e-05,7.650766812364696e-05,5.0563487934588936e-05,4.3460987580849815e-05,5.29985673625329e-05,5.655066365574102e-06,7.444577804918012e-05,0.9825985545605389,0.9722500817174259,0.99877465897377,3.4669068059215696e-05,0.030597346495612247,0.9975809484043884,0.9997717490393372,0.000291624542116063,0.9987017978084544,0.06114102218950905,0.1151625639957582,0.006738518945445759,0.9615732379133745,0.9925946142663641,0.9825258048511235,0.9998621738001384,0.004688448922642411,0.9999560214544122,0.5409865444543693,0.9774298038299879,0.7636990425997611,0.8646662603671685,0.0001825306517809434,8.396414334683242e-05,0.9883383533170453,4.28821229855148e-06,0.9622209923417953,0.9999859792852412,1.5966440506678483e-05,4.375780137128743e-05,8.624609789759286e-05,0.0006221039700016681,0.7391903145676906,0.26185529783685896,0.9998441948848805,0.015173806546704263,0.004963246133317031,0.0007898081362687707,0.9998892572935664,0.006753593913541081,0.9961607032845704,0.9825626523006336,0.9998432249356997,3.3077513631011226e-05,2.3658118170390868e-05,8.030253779645768e-05,0.9999662010571485,0.9969325770288806,0.008753697146368613,0.011592705295808975,0.9898195380711315,0.9990120425592999,0.0004012995189960932,0.8580030283596363,0.8487777170860911,0.754566426672416,0.00046322341427073135,0.2988153088493319,0.20200218747789503,0.001277933731901882,0.9977081176284445,0.00010802019526717253,0.9166200505082869,0.0027974064954630292,0.0005132037428134367,0.99940933220366,0.0007812051142139694,2.918477576915985e-05,0.06832681841919738,0.5781929263543353,0.001459440729396512,0.99855895970651,0.9999725015974181,0.9996789030005129,0.08520588762814843,0.00011407927276457733,0.05351189089012224,0.00011823291735123079,0.35828985773026617,1.7201639594550577e-05,0.8452961911189061,0.9560849845532033,0.9999962882679816,0.9998102691994638,0.9999586746073142,0.9999863118688432,0.9996826613386355,0.0016535421386617614,0.004574881249235509,0.9725196626196692,0.9782147850185811,0.00011026919279521062,0.8928528252667043,0.9997283662839959,0.999989204645391,0.9987796218932113,0.005292484595386103,0.9994204181880211,0.00037392531333654984,0.9999789398360206,0.9969267096719229,0.9973574187211244,0.054209093239851625,0.0001764552070283915,0.0038047223515307797,0.06209568694626638,0.9957534198207554,0.9966379121574656,0.9231636969812024 -अच्छ,rgb,1.0,2.4074723351269036e-07,0.999999738688106,1.1065694946010851e-10,0.9999959608367983,0.9999999999995923,1.0,1.0,1.0,1.0,0.9999999917514525,0.9999998832070879,0.9999999441422469,7.32959317423842e-08,9.37469650204024e-13,1.0,0.9999999999999738,0.9999999999999141,0.9999999999999789,0.9999999999987099,0.9999999999999998,1.0,0.9999999999998639,1.0,0.999999219876798,0.9999999999999822,1.0,0.9999996210682499,1.0,6.9948689446734e-07,0.999999999999581,0.9999963221056658,0.9999999999997595,1.0,1.690271792809448e-13,1.0,0.9999999999969105,1.0,0.9999999999259834,0.9999999999996814,2.0632509055142816e-10,8.781469653972417e-05,0.9999999999994287,5.244683896673609e-08,1.0,0.9999960680266833,0.9999937249357149,0.9999997562204522,1.0,0.9999999999999998,0.999999999999658,1.9826494798381883e-10,1.0,0.9999999999998954,1.0,0.9999999999994202,0.9991790079525219,0.9992123936377904,0.9999998990843948,0.9999999682505322,0.9999999931081542,1.0,1.0,0.00029275134877549167,1.5663742726433003e-06,1.0,0.9999999999999998,1.0,1.0,1.0,0.9999999999998457,3.711356948920432e-10,4.007763115621276e-10,1.0,5.748375072616444e-05,0.0002431175079415565,0.9999999999999973,1.0,1.0,0.9993269045026058,1.0,0.9996130404257229,1.0,0.9996057295212212,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9989493624864624,0.998539768882063,0.9993635847669297,0.9995074829170861,1.0,0.9996129738132694,0.999502506251866,0.9996953762531589,0.9998270946790985,1.0,0.999999999999736,1.0127762142476607e-10,0.999747493620936,0.9999999999994997,1.0,1.0,0.9999999999991673,0.9999999999998366,0.999999999999994,2.0018681525170213e-10,2.0504543106303878e-11,0.9999994282176176,0.9999999710538083,0.9999999823314175,1.0,0.9999999593919097,0.9999998910470217,0.9999999974632787,0.999996921671021,0.9999999196320419,0.9999999999999996,8.062113879324963e-10,0.9999994446372493,0.9999999973790543,0.9999998956845457,1.0,0.9999999999999987,1.0,0.9999999998300395,1.0,0.9999999999996021,1.0,1.0,0.9999999999999944,0.9999999999999887,0.9999999999999767,0.9999999999999993,4.708897959590911e-07,3.609746048275922e-13,1.0,0.9999999999998783,1.5894719341561605e-09,0.9999999999992111,0.9999999999951028,0.9999999987454891,1.0,0.9999999999999996,1.0,1.03280718602084e-09,1.0,1.0,0.9999999922479718,1.0,0.9999999594600669,0.9999998921465686,0.9999595321354088,0.9997822669640676,0.9999999999999971,0.9999545934211177,0.999999999999996,1.0,0.9999951649788916,0.9999987121490895,0.9999997678676781,0.9999996779444451,0.9999999316557837,0.9999999702988269,1.2415326002373838e-10,0.9999999999999998,0.9999999999996552,1.0,1.0,0.9999999999999996,1.0,1.0,2.814067472071547e-12,0.9999853628889299,0.9999773490047773,0.9999922451518466,1.0,1.784743692573452e-13,0.9999999999998552,0.9999999999994946,1.0,4.162514151891595e-08,1.3729184850417077e-06,0.9999999702239355,0.9999999111395615,0.9999999936029307,1.0,1.0,0.9999999999932707,1.0,1.0,1.0,0.9999998262499565,0.9999999999997158,0.9999999999999343,9.753058896771689e-10,1.0,0.9999999274646753,1.0,0.9999999529473669,0.9999999999998719,1.0,3.9971201260142364e-10,1.8841594355304838e-12,1.0,1.0,1.0,0.9999991025871353,0.9999999386874101,0.9999999474514577,0.9999998897119844,0.9999997108829829,1.0,0.9999991013189644,0.9999943563531852,0.9999856167885003,1.3001636141596696e-09,0.9999999999998777,0.0005942943973193013,0.999999999999887,0.9999999999998257,2.447273053522005e-07,0.99999999999994,1.0,0.99999698072836,3.069579513427294e-14,1.0,6.482049425807936e-10,0.9999999999998079,0.9999955552260867,0.9999994437082601,0.9999996063266354,3.7839028678916643e-07,1.0,1.0,1.0,4.987069491125629e-13,0.9999999974629334,0.9999999918169701 -अच्छ,shape,0.985311349749742,0.00017380109524556175,0.9999999996111517,0.0004242049639965767,0.9999997823824093,0.00011950465108239478,0.0007727773515524537,0.8450274176125795,0.05122869475710836,0.6231869474190465,0.9992777054989915,0.9999999999958531,0.999944327379314,0.5939195708377488,0.7528252620796505,0.00010393160318825278,0.9999935797384051,0.9997109555703314,0.9999999999937226,0.9999999917331025,0.9998661612809359,0.9986337509412897,0.0005134656430881435,0.9991482710948102,0.9999837058438485,0.9288752526717601,0.9999840102952994,0.999999415755748,0.9896851626506917,3.882980315217381e-05,0.8706315477338576,0.9999999999971976,0.003929908603000771,0.9999900325286039,0.9999981637485248,0.9999939644114303,0.9999816974457691,0.9999999829041933,0.9995727713008006,0.9704637494414494,0.00026055004629267566,0.00011148194548805089,0.0714190107226174,0.00018062939427480497,0.00076102718824664,0.9999986875480759,0.9999999999410369,0.9999997880222044,0.3884338019293367,0.999769041737535,5.785541367429489e-06,0.0003472208857384143,0.9999959649316936,0.7664123488938342,0.21354024522119808,0.9997630301379231,0.9999999815504265,0.999996816826206,0.9999999999993625,0.9575308567690988,0.9891319526141511,0.9997556879032488,0.9999969055836317,0.00015878592841095244,0.0003395941842997499,0.9996549122236134,0.9999847742094742,0.9995371072087634,0.9992243628740323,0.9879784146968428,0.09566789298107269,0.6357559196876121,0.15620123254368015,0.9637405327740243,0.00035061729806155965,0.00015332259968465307,0.5914414823197026,0.9999710723471098,0.9999998370468558,0.1197033766918487,0.9999636944638941,0.33014314829495034,0.9998512748631927,0.9999997727842073,0.9400119892289696,0.9999204551916804,6.230701838506517e-05,0.9999999563296359,0.9999286555603643,0.9999961115437634,0.9966223355039769,0.9999995685683168,0.9999944331114209,0.9985766362724455,0.9999603256829549,0.9999999994969693,0.0005318369526137199,0.9999685618588479,1.654160202900237e-05,0.9952699605472839,0.9983336253261108,0.0006218458630104342,0.7215069361157447,7.778433983371112e-05,0.00033974081139521756,3.4236774135777104e-05,4.153374195106889e-05,0.999706035134598,0.9948090767875479,0.6965464677957157,0.998430661111351,0.0001113943852066161,0.011432811666196717,0.9999941205441699,0.9999999806029957,0.999850850163141,0.9998482970464424,0.9996350422453212,0.35981314212530857,0.9999998261658694,0.9999999366162755,0.9999937075868949,0.9999981230927364,0.00017628281499080378,0.9999999876408409,0.9787931962599077,0.9999993889602737,0.9999263833730129,0.9999916867663335,0.9999541506503511,0.9999999995499633,0.9997975484507602,0.0003485117254554355,0.9976426136685733,0.999577310105783,0.9999546508057862,0.9999977452746703,0.9997870523590963,0.9999947150726697,0.00019046263169458777,0.9999999358291473,0.9999738624929945,0.02330356702356585,0.36519017879888543,0.9999708459178479,0.998832437459584,0.9999999999936013,0.9999964541073348,0.8678279816571413,0.9999264657159056,9.684912413354674e-05,0.6920251428468401,0.04791291133489673,0.017017433081131635,0.40368924258681443,0.9396826056574282,0.9999999999958531,0.99976708851855,0.9999801003382734,0.999371100674912,0.9999974383301172,0.9995898601298887,0.9999999999999731,0.9991180141532388,0.9977246119251565,0.9998148394837391,0.9978944293455717,0.9998135256259396,0.9996196491868876,0.00032875105999480026,0.9661904091244835,0.010875666911545876,0.9965685510380909,0.009119909128797897,0.9808990918071657,1.731734524845706e-05,0.9973069143937677,0.028129366172547986,0.9996299646487716,0.9999734048251973,0.9999775989835953,0.9999991999829135,0.9999999929339596,9.866818059467406e-05,0.00010101230204824585,0.07686536275440736,0.00039228871825048895,0.5752474423100414,0.015701235636988716,0.999999928553402,0.003606420410374095,0.9999947393842418,0.9992693598731549,0.9994291963045634,0.7289189170739586,4.3583831575483115e-05,0.9995680756788781,0.9998356961896466,1.633928730469081e-06,0.06155184321729172,0.00014435105677719826,0.8742946907514545,0.9983613827116118,0.9999999997310725,0.9999996211062762,0.00020459968619493442,0.09093443650023397,4.563554170660369e-05,0.004781055540957323,0.9999911422927259,0.9999758078384856,0.9999998737231164,0.9997958201081264,0.9998676570336886,0.999818734778969,0.9999923655673567,0.9999814517948038,0.3365823101162944,0.9999982998629816,0.9999999999997795,0.9999988977773319,5.881138800253945e-06,0.05110247561806521,0.0002179464130140211,0.9999997498127322,0.9997602048672912,0.9994525358482629,0.9999999994389728,1.4329468976409157e-05,0.9999728889669852,0.4325458126502586,0.999543915324083,0.48253581333953244,0.8430864371233606,0.9999999366162755,0.9999999998929712,0.9999998828273442,8.971614538445588e-05,0.9999060409377012,0.5767987006369916,0.9999996970775221,0.9999999557101105,0.999947790003237,0.9999999831297633 -अच्छ,object,0.9999999999999001,0.00016082077265273674,0.9999995148624896,2.6430272310633216e-07,0.9999991378876454,0.999999431404613,0.9999999999999984,0.9999999839787965,0.9999999697944404,0.9999998661821886,0.9999976746395906,0.9999999812555248,0.9999926159151985,0.00014009462387732223,2.83506346732959e-07,0.9999999999999996,0.9999999887661589,0.9999999566023864,0.9999999999758311,0.9999999946593461,0.9999999867894631,0.999999999846388,0.9999999575380578,0.9999999999841453,0.9999302641276795,0.9999997307362539,0.9999999999999951,0.9999669991924958,1.0,4.793717208384024e-05,0.9999994074545141,0.9999992373017241,0.999999986944428,0.9999999990470263,4.187930358972884e-05,1.0,0.9999879389475297,0.9999999959113042,0.9999977497172644,0.9999999832268992,2.4571106607104015e-08,0.00017063702347442104,0.9999997409761621,9.867096738308857e-05,0.9999999999999991,0.9999645294586132,0.9999994428954153,0.999999433883637,1.0,0.9999993811783535,0.9999998976084477,1.6600018445628492e-05,0.9999999862286042,0.9999983716551989,0.9999999999999376,0.9999999853672548,0.9999777062686337,0.9998364300927568,0.9999999640408292,0.9968745620057323,0.999576565887266,0.9999999999116798,1.0,8.080779903685873e-05,7.433785372560826e-05,0.9999999999383364,0.9999999530282044,0.9999999599946683,0.999999942667618,0.9999999820161364,0.9999978656378496,3.450920647365323e-07,2.1219986344779576e-07,0.9999999937985369,0.001926776492474558,5.359012837806178e-05,0.999999934657041,0.9999999999755127,0.9999999999601983,0.9552922047168557,0.9999999999998679,0.9993468400655218,0.9999999646865959,0.9999885836876209,0.9999999912998402,0.9999999507865194,0.9999999999999982,0.9999999863093716,0.9999999999999776,0.9999999999998916,0.9999999692677196,1.0,0.9999676878447353,0.9982004834877585,0.9999446935260123,0.9999968533167924,0.9999999999999996,0.999775761398212,0.9856422723892426,0.9995998689858605,0.9994985008273758,0.9999999999999984,0.9999999877183866,1.0727810545639514e-05,0.9975672919323768,0.9999953074527238,0.999999999999803,0.9999999999718974,0.9999992649895291,0.9999989722108676,0.9999970666187851,9.023124098844778e-07,3.984167948156721e-08,0.9998241043973569,0.999966954382826,0.9999879367436905,0.9999999991341839,0.9998481462008839,0.9888943335700029,0.9999991317355557,0.9999993347055084,0.9998987008345676,0.9999999365818089,7.759390766713778e-07,0.9999641272210201,0.9999725774391132,0.9999863691700421,0.9999999995303477,0.9999995034469372,0.9999999777823421,0.9999931831649566,0.9999999943848192,0.9999996511012397,0.9999999738919352,0.9999999995062343,0.9999999592730194,0.999999994053993,0.9999982159647489,0.9999998391473665,3.299908721827644e-05,2.3707231357116866e-06,1.0,0.9999970831695361,1.3128240296982793e-06,0.9999999496575162,0.9999826376670499,0.9999999984766972,0.9999999998708935,0.9999998352639852,0.9999999998601696,7.302882945534601e-08,0.9999999173527183,0.9999999999999982,0.9978717707681293,0.9999999999999882,0.9992703245709167,0.9999999826254545,0.9992646449589849,0.9995403367663648,0.9999999556000394,0.9980129620766381,0.9999998565173255,1.0,0.9980335712025883,0.9995262633839299,0.9999503364729335,0.9999730183634685,0.9999030807189689,0.9996443917833393,1.5171779743849132e-06,0.9999999912123659,0.9999998414036254,0.9999998863714177,0.9999999999999996,0.999999793590439,0.9999999999999953,1.0,1.4610957180917164e-08,0.9992706990251048,0.9989965418722766,0.9995855733683953,1.0,3.2616239914593258e-06,0.999999868025592,0.9999981948037284,0.9999999999999998,3.9089362597759636e-05,8.274609607251553e-05,0.9937039425423781,0.9999996109758632,0.999962789257957,0.9999999996387834,0.9999999999999922,0.9999929166713626,0.9999999759803281,0.9999999999999998,0.9999999984615089,0.9998591800286423,0.9999997857558321,0.999998933709905,4.4188372773084e-06,0.9999993208252335,0.9996156885522705,0.9999999999999993,0.9999823941122703,0.999997921750459,0.9999999999999984,6.563589196376599e-07,1.3489206175883833e-08,0.9999999999999805,0.999999998325884,0.9999999979783067,0.9998797187284046,0.999808982257151,0.9999273017187156,0.9999613089864836,0.9995359182534661,1.0,0.9999982711210661,0.9999996830735692,0.9999971542622567,5.605555784371447e-09,0.9999983043907391,0.00014080829388778612,0.9999999920884158,0.9999996381799264,0.0006926530896744723,0.9999999999243536,0.9999999999999998,0.9999979800988364,4.7665468480623584e-07,0.9999999984644847,3.986546201666508e-07,0.9999979429389501,0.9999992199580384,0.9999976944362469,0.9999961807108777,2.419177158350678e-05,0.9999999873920663,0.9999999394226556,0.9999999970760436,4.56582339091803e-05,0.9999961275564445,0.9999823279593422 -अनाज,rgb,2.2556709833857674e-33,5.529694623834426e-18,0.11956329253787702,2.4966896386705477e-46,0.00035532870864675556,3.8221311136756594e-10,5.969292939364743e-33,6.291674399055091e-14,1.3409038722865997e-12,3.171088662537616e-12,0.9942904351734791,0.8787085099728237,0.941503437672138,1.6291684272080047e-18,4.261455177716463e-52,6.851279395311025e-51,0.9419523047949335,0.9642774292742224,0.9489054262049924,0.983603322392077,0.7447873781834976,4.824337972414985e-06,3.781405141405478e-10,6.982561783511184e-09,2.3429878525072132e-07,0.0038097246389284835,1.7199246929784171e-38,6.355817201414952e-07,1.4037558641088957e-48,5.873639499034781e-14,4.157269399230297e-10,0.014455405756225491,1.2809327736937084e-09,5.764279853037529e-11,1.7351154026932512e-41,4.965852616339732e-50,0.9950660957415146,0.0031840211245737376,2.555995342510545e-06,1.1288806133062589e-07,1.1892748964697092e-42,5.814925577173244e-10,1.0134784842356887e-09,9.528896311549394e-16,3.897201706505842e-40,0.35529828631367855,0.017335780453684668,0.12371296277873234,6.1301866044337295e-40,0.0007388938978279497,4.022066656694676e-10,4.270242443211547e-43,7.857109187569611e-13,7.299231954899643e-09,2.1183599093546047e-44,4.1767361369348854e-08,0.16112684138379305,0.2671389611184725,0.9060706703432647,0.9696781870926033,0.9943177613937093,0.49293512144318413,9.834505789091756e-54,6.5989770702399914e-09,5.122373937441154e-13,3.256611691877955e-09,0.0007676880962707439,5.307996552027155e-13,1.1068349450325479e-13,6.449477141076841e-13,3.87617490896349e-09,1.5885800846887567e-43,1.8093353139774385e-41,3.375541843067275e-13,9.661535150663957e-16,2.4914606161010295e-09,0.0014163284972492749,1.118521891654872e-08,2.185203554023693e-06,0.369704881461545,5.5615277336546865e-37,0.2848574018361514,0.0012110449676274978,0.5883293036797954,1.387849592293486e-13,0.0021586625480559314,2.6622454562127692e-49,0.002330723458207515,2.9450956357204312e-28,6.8411208493155965e-37,5.0843124188939975e-14,1.2080349727437218e-56,0.06822178293599786,0.24156768555764688,0.4319050169981833,0.5343927877113259,3.5185152324812104e-47,0.5950839420974862,0.22801206326292778,0.6151742512275327,0.7685934837520216,4.05951255884969e-30,1.4809226781824816e-07,4.428378087512498e-45,0.7392150801327931,3.940696974127695e-10,2.808432517802375e-38,1.8162680285290986e-08,0.010321283385733022,1.5979379255706416e-07,0.03542602389822026,7.377017836884013e-44,2.986917864613216e-48,0.8492758627146526,0.9844032974467419,0.9921292447477158,7.85335391535777e-11,0.9966323741031525,0.8579103653707775,0.29711826614429643,0.011937902052314231,0.9923937557555502,0.00017823136927213885,2.0407139801362852e-41,0.9166020759724821,0.011623956892288996,0.9909255743209352,1.4384630714935076e-10,0.08977804825245062,3.979455336847108e-06,0.9894584926255919,1.7251761265905604e-09,2.6871764449151153e-10,3.62395605025539e-13,1.0920630651466945e-10,0.9565700180186181,0.9473135926298186,0.9597081695671831,0.008169221895094185,4.252665000686825e-14,1.2290098946278611e-40,1.0293477895332433e-51,3.906921557572319e-09,1.716820247303689e-39,0.9448755947046448,0.9952054375788375,0.8618656120225161,7.54150657256661e-07,0.0006706287192411289,2.1668201771625353e-09,5.290507828532789e-41,0.10184129740099193,7.286334864280712e-49,0.994710060328815,1.6648970186640375e-44,0.9657006441120376,0.9217016234215231,3.9506260984543346e-08,2.1321934563402596e-06,0.9194921966350306,6.99860608270188e-10,0.9226229810426688,3.653250308841939e-49,1.72803069954081e-07,4.09042144068161e-08,7.21469681124184e-09,1.003590785664565e-07,0.9527006210588103,0.9728512490971599,1.0006215600316168e-44,0.23581244741549995,4.13674376657463e-10,0.003820527852802745,2.6876859154967077e-52,0.3625689697495694,4.196636990070791e-33,3.767342170165809e-57,7.47646875505638e-49,1.0681462561039276e-10,4.051569163156605e-08,1.197877918855648e-07,1.2075481772050772e-51,4.2304795268817985e-41,6.073165385800775e-10,4.05309277693301e-10,2.07503878202796e-42,3.6306512368518784e-34,4.761758672916097e-17,0.9723672605674809,0.9253695630523958,0.9948779757926562,1.762883970989269e-09,4.1651075318751054e-34,0.9967667631211532,3.8499523725999484e-05,2.6581652369618246e-40,4.11132810681597e-10,0.964085487106683,8.831206494566312e-10,8.059781005703115e-09,1.1193208975702547e-40,0.06896427001191521,2.6410429636491017e-07,6.565704569469257e-38,0.9959534287924184,3.3672980055988216e-08,3.4627210910890193e-44,1.2281969116675322e-42,2.1362663768767388e-51,2.4390223679469916e-36,1.7856022676981618e-06,0.0016127758055441903,3.556051283686816e-07,0.9479390040452791,3.760124270966844e-09,0.9847067703686148,0.8714113968402796,6.389472353808217e-56,0.22174738445887682,0.00354745952003431,0.004023357114962987,7.835379726208067e-40,4.098516190501309e-09,2.3982272980735427e-08,0.9699047342016092,0.9706963744598404,5.669578924335749e-18,0.9772680161199858,5.01728238669369e-56,0.012236657192873712,3.9562744238525523e-45,3.562495511349336e-07,5.034958644722403e-41,8.55851751798816e-08,0.014332786466972596,0.9136693639811083,0.7420903369148372,4.0671495500367285e-14,3.3015275550249597e-06,0.011751069264787589,0.00011789901683579477,1.059109210153728e-39,0.9976001000589562,0.9966943304722755 -अनाज,shape,1.8179801831315707e-06,1.887402272080818e-06,1.7935628952556978e-07,9.261119790167044e-07,0.00024748906126341306,9.807440393313636e-09,2.644082554318334e-07,1.3537292011015602e-05,3.010430205152988e-07,1.868362723340553e-06,0.9998908666367307,0.9999851402258545,0.9999998151535165,4.943379049410275e-05,0.000285871397747163,0.0002636055313909117,2.33403018754407e-08,2.9386921653104297e-06,0.0012569076516506393,3.5060645764891025e-07,3.5337806080347944e-09,6.38157217650052e-07,0.47266182224418335,6.462407997624744e-05,1.953729123891167e-07,1.0450648403121743e-06,9.687872349573955e-05,3.209860177823948e-08,5.7356158700117635e-08,0.0015914189661173164,0.06403800127240086,1.5024755908937815e-06,5.187961433889591e-11,3.1757607110779504e-06,2.3978704138871274e-10,7.858492679105893e-07,5.989237260144694e-07,0.00024147232504357298,1.9494740361720816e-12,1.7278732185116348e-10,4.6301529352155196e-07,5.399083673288123e-07,6.788364125498765e-10,1.7051099322639485e-10,3.6710811951374564e-10,3.5590936278038053e-06,1.4824750248666417e-07,0.03798302615842476,0.00017932164434134414,1.394773368033983e-07,0.0006405296448961895,0.0022150571990906913,1.8185153854447415e-06,7.713949866981088e-08,1.0811590877725127e-07,3.576381003975896e-08,0.9864131939657239,0.9991327580503636,0.9999791243650377,0.9999003489764772,0.9997395381001705,0.0030216737189991596,4.086217199375917e-06,0.00018717782503049332,0.023414563256356796,1.8481417182741316e-07,6.93184261721228e-09,1.1261656505741329e-07,2.053170305384353e-07,2.433943663672332e-07,9.534796426465267e-07,0.00012157019836445674,2.4324908171882365e-05,1.8095324734299823e-05,7.79478366102564e-06,7.36459875039795e-05,1.1684485484431491e-07,1.168465270661821e-08,2.2131395103022478e-08,0.00025016298591816786,2.0474653936191016e-05,0.004779704755852918,2.3912228119641737e-06,0.3916941531968695,8.046816591802136e-06,5.556524714583627e-07,0.20265822026338873,0.00038950967978240253,0.0006728946817701848,1.1907067689759784e-05,1.7856081065869158e-07,0.0002722684057498294,0.014762559479016628,0.33329660822140744,0.025644658393314666,0.9999994826154887,2.534096492688645e-10,0.5962142876085471,2.5446449034132052e-06,0.2263748839285035,0.002401067293485075,1.5906603271156472e-09,1.9609962199507893e-08,2.57984918162917e-08,1.0868782751370202e-08,0.0007263634398391389,4.862679978752723e-09,2.151204957477842e-06,6.607453697249266e-06,5.247274958218127e-07,1.4812369413192637e-05,8.209344315776636e-14,6.417937105816489e-05,2.479562951752904e-12,2.2825185123599917e-09,1.2400802404716753e-12,3.339010118217934e-07,2.1996720282359313e-09,9.730174096572057e-05,2.7397225950734945e-05,0.11892864648680745,6.819044647520191e-10,4.1818242259430336e-06,1.3839073872495519e-09,7.377725952478296e-09,0.9965398992109087,5.483316021813976e-10,7.834332427829387e-06,1.25670192565177e-06,5.131372275689767e-08,0.9994042231232975,1.6834979480970977e-06,0.00014039637641654476,2.248092703300571e-05,1.0157365322593175e-07,3.746347423556113e-07,2.4712353867292924e-06,0.00015016759658747345,4.374454152503948e-06,0.0061616915044906285,2.769435945233696e-07,0.0003458159704141375,1.4263402938132554e-09,2.644863081025347e-07,0.9999922296969798,6.751898968972174e-05,0.005763438359672444,2.436729612576113e-08,9.01438837002262e-09,1.026808300602929e-06,5.767869886962652e-07,0.00033554197244928735,0.022641607970803793,0.9996529941823814,7.915390672096419e-08,0.999903730035068,0.9999851402258545,7.708016933229652e-08,3.03601560312905e-08,5.010482356378702e-05,3.36389470299867e-09,1.3485549966967122e-06,4.2900431663143954e-10,2.09318826370337e-09,1.2566027663242832e-08,8.07033584081425e-08,0.00011867653078068874,0.999782310562343,0.9996367786204874,5.949154738331142e-07,4.243371390606308e-05,4.227440193683981e-09,5.071613090515287e-06,0.7105278262424217,2.566745527442304e-06,8.082276811509604e-05,3.390212320063643e-05,4.01398213322512e-06,2.550769024841985e-09,2.7421788673427104e-08,2.7253675433497554e-09,1.0814101376802667e-11,2.789114546365272e-07,0.4002315500644207,0.00013605045373110287,3.3928676769195804e-05,2.630421603835301e-05,0.0014509989942639596,0.9996110208318124,0.9999840658822036,0.9996882742925115,3.2697863219175775e-06,5.148443718069541e-05,5.9174424444325705e-12,3.0927515021485356e-06,0.00031512604189171795,2.3945708870566293e-08,2.1192028766191524e-11,5.48366759342314e-05,2.7801597055825302e-09,0.0003141371833712572,7.3865845639480295e-06,4.7082735806904344e-07,0.0008059440279124284,2.4401414768980195e-08,2.2947238206909116e-14,3.1056519013270075e-08,7.988929628912661e-13,0.0006922352245678268,0.00011320711949689297,3.6578890019925304e-07,1.8190743062425118e-05,1.034209399118948e-05,0.9999951750030036,1.6090286665927553e-06,4.1445073644503363e-07,9.733575072305685e-11,0.0002577968240130678,4.9723402325664894e-05,1.5713415441944993e-07,1.6189780108752706e-06,5.126985330130187e-05,7.88056282150459e-07,1.8384224511683658e-07,8.927628580705439e-05,1.2299008192542355e-08,1.1798354442201087e-07,8.536442655473842e-05,4.179929258739403e-08,0.005372008365449426,1.0281236072952761e-12,1.8347341960740666e-06,2.690035088654499e-05,5.952507605588042e-06,0.1189286464868083,4.3643096403751297e-05,5.87913479590307e-05,0.19803056100023778,2.4874574196998006e-05,7.918089205518365e-06,0.00017738178515841414,3.606336311487275e-05,3.575525587719701e-11,9.876011371313695e-09 -अनाज,object,1.5691832833775164e-06,2.691969380377625e-06,3.201258980394793e-05,1.4900440317354528e-07,0.01711474799061539,3.49815442007216e-08,5.834369457566991e-07,9.196997751777577e-06,6.121277689590579e-07,7.915431130565956e-07,0.9999283901674771,0.9999939878543257,0.99999931084005,2.18205537071304e-05,0.00018772395292884997,0.0001215880925004171,9.311752899432952e-05,0.005963247462927761,0.9404775267690818,0.009328245584686201,0.0004686236422101995,3.0624049031535075e-05,0.4625322273257454,0.0012537222754546967,2.8980487060082434e-07,0.00013679782774699646,1.6375780169162255e-06,2.538831023586784e-08,1.1849477489680833e-08,0.0010178385601405532,0.015440067077758145,5.0652747725683754e-05,4.753335564789695e-08,1.9798807217413357e-06,2.473904713605291e-09,1.983337692439434e-06,0.00026093399800781477,0.00025163443910369284,4.04680336505119e-08,1.2054031543060465e-07,8.497846043719538e-07,5.110567871909822e-06,5.046940770365669e-09,1.832922689091439e-09,3.889999647301729e-09,6.0257914744084606e-05,1.3021042013655565e-05,0.3019207892777546,7.714245687124518e-05,5.247774406431604e-07,0.0004386356196829174,0.0004902362909423853,3.6048634441810864e-07,1.4030174225168363e-06,1.6640262670677025e-07,8.109563082894388e-06,0.9940397434882903,0.9993724115950906,0.999987440219049,0.999917916651342,0.9998086195141187,0.9001313198691084,0.00015576499369297675,0.00023269780991330932,0.010255804397834481,6.9596152283741285e-06,6.866121081127774e-07,5.0057254260313174e-08,1.0111238781387661e-07,5.756141945680537e-07,2.126908073964338e-05,6.34937426627105e-05,1.5591524785362203e-05,4.094930787357122e-06,7.196993895950332e-06,8.826346745673394e-05,2.5665074996819274e-05,1.0278402958387626e-06,9.183889112435098e-07,0.010461240782893736,1.3813165411652955e-06,0.20071493680616093,1.361514203566536e-05,0.952067539318263,2.8470745681905484e-06,1.1320757751484142e-05,0.013990477155316787,0.0003516843439404225,0.00023750901821042712,2.2952568735687695e-06,6.424996894128442e-08,4.509618237897012e-05,0.5379203392739037,0.8938102455992538,0.7499550133096535,0.9999971339067153,7.815628453806319e-10,0.9624244168932345,7.238608201012473e-05,0.8805786990933515,0.16746180219875484,9.891572098040328e-07,7.126216569074432e-06,6.464013267336791e-07,1.0697030386044588e-05,0.0007813794087826252,9.596812929990554e-08,7.015519244340094e-05,0.00016817443767460933,6.284492163808585e-05,0.00022102413986131988,2.2507347187074457e-10,4.441626002733362e-05,2.26041403298317e-06,0.00010284103059680161,1.0778125913622346e-07,3.8074999304356226e-07,4.100719314032807e-05,0.10654713655885696,6.617058655868755e-05,0.6967773848969634,5.947297012646157e-05,5.35969820257022e-06,1.2828979318175944e-08,0.0015837480265575145,0.9981070122375163,6.173327554602717e-05,6.633006961114535e-06,4.418124598487623e-06,2.461631417187896e-07,0.9990605617706853,1.112182714351226e-06,0.00011343407701281,1.9599847839951246e-06,1.7725422282729887e-07,0.049208892405000516,0.010658991628426432,0.5045113865260636,6.9734870483506935e-06,0.0030037051381326626,1.791168214564702e-07,0.0013543131969221583,3.974662841327704e-08,4.850919867490485e-07,0.9999790385558881,0.0013674846775478746,0.4848063981084117,9.85089447610875e-07,1.291217484787949e-06,3.393670722502664e-05,1.2804431903515983e-06,0.0024430072301395325,0.002522145283675448,0.9997712976397364,4.165604130523015e-08,0.9999426331847008,0.9999938721114514,2.8915824187371274e-08,4.051600146607721e-08,0.655809696523452,3.1206873911016595e-09,0.033103095487592785,7.1180234223014805e-09,3.808618138458292e-09,1.1417217752428245e-08,4.861815226785671e-08,3.214084653583379e-05,0.9998585495120357,0.9996722857262322,1.2882615428844314e-07,0.0018799779967241046,1.699350686263539e-08,4.881289827924533e-05,0.059362192702838414,6.0452990824737466e-05,0.00016161769883376575,4.07278108412798e-06,1.8689485812321886e-06,1.7649159421304978e-09,1.3077112845121407e-08,3.2157899113619938e-09,1.1896647008544623e-10,2.532005504447036e-07,0.4694997328295303,0.000251242647345802,8.297287764229514e-06,9.195211119824172e-06,0.0010236877620387389,0.9997126014344262,0.9999871235578444,0.999718067705333,3.3190017859785686e-06,1.6578085278501796e-05,3.8273074461774006e-07,1.786554250382654e-05,0.00020545753434909444,5.6281938986609055e-08,2.0468635993854652e-06,4.800212407204195e-05,8.590630582408703e-08,0.00011837847312243698,2.5083748307960705e-05,1.7850152654442838e-07,2.0212188587222497e-05,0.002182553304079452,4.3899620450710937e-10,9.669680985175835e-08,8.657376646586819e-10,0.00036391307164516587,4.4464222157526855e-06,1.6348322901667639e-06,5.8812144528070615e-05,3.865293787758478e-06,0.9999914949421342,2.1643688910459715e-07,0.010075209089463442,9.72092210479526e-06,5.825360702053477e-05,0.0029268927569386363,7.810567524231966e-06,0.00015935090000453465,3.848378004052646e-05,1.5139737985470282e-05,4.5564902360857325e-06,0.8206376618569775,0.0013871517841020978,8.186820742530569e-07,0.6392545027245842,6.182384340476168e-08,0.19032761050553368,3.2790279599024986e-09,8.189598267958124e-06,1.5215996050333475e-05,4.77305745049241e-05,0.6913176394621932,9.830986091883833e-05,0.0010382080270766667,0.056410167136890184,2.777517809504973e-05,5.770375663062418e-05,0.00017480386304488533,0.0009082702052938119,4.960690632945758e-07,0.0001342369919773024 -अमरुद,rgb,7.479328549970222e-05,0.9999783404676369,0.00032690993393491477,1.833811392933589e-07,6.740440987615665e-05,0.9999130406066506,8.577218951301224e-07,0.998878275877638,0.9988295464513173,0.9968411385037931,0.012118603898149501,0.002327058385019565,0.003061659978652538,0.9999704127198341,2.926244029989786e-07,3.78583911283186e-07,0.0006266023498814575,0.0007568352274639284,0.0007446371712861565,0.6866330232354636,0.001536441270503843,3.4076005647844595e-05,0.9998847546620231,2.510849883113203e-06,0.9999574249066046,7.159855693213807e-06,8.752870081136472e-05,0.9999430690686646,7.344320957646683e-07,0.9987521298880656,0.9999121146936398,0.00030555660589151953,0.9998715277566137,0.8741415336537128,9.122986123574086e-05,3.5493546393704744e-07,0.4929078511981022,0.00022961552680905993,0.9997860688065918,0.9996711346836252,5.539475631306915e-07,0.9954671236837799,0.9999018409916605,0.9977789375411038,3.6274173111163223e-07,0.0021009802011773553,0.00041319558377945787,0.00032524459477315556,6.380551514264568e-07,0.9524559845501646,0.9999081292192047,4.7288822944543666e-07,0.99818180471639,0.9997649271053125,3.9075835413647066e-07,0.9997767232419248,0.9747734221686948,0.9546083734436354,0.0026780187887927927,0.004166838914617552,0.011310910518201834,0.0014313751799710332,5.262606844335647e-07,0.9904821864754776,0.9974191653627741,7.872825813367813e-06,6.214199628963843e-06,0.9974548166940488,0.9986841025570393,0.998943354293597,0.999816215361203,2.837917799265799e-07,6.233649078776424e-07,0.9965187857820201,0.9999917900320539,0.9957113478922079,5.462966986408464e-06,5.689371216774133e-06,2.3685660318746785e-05,0.931568362844367,9.32039220641418e-05,0.9685462245049208,0.04063971677294906,0.8627059243475821,0.9988837141813403,0.020126225214536105,6.07282081700879e-07,0.0001452477914979667,0.000243629364071315,0.0001066918098393535,0.998700176327393,9.953479453575112e-07,0.9868760888469125,0.9360073609071021,0.9097375216782931,0.8751458414057608,6.49930860536715e-07,0.8594847488517384,0.9722789476773019,0.8756155043821077,0.7822542012227571,5.919724561091373e-07,0.999631189123581,3.1080790754193236e-07,0.729763862516274,0.999916847367293,2.960123545564224e-07,3.1429436225413884e-06,1.0720153096495156e-05,0.9995727300599142,2.0304028715790902e-05,3.4692923677899516e-07,2.2018634792582024e-07,0.003908916175242794,0.007238759990073722,0.011734958249763332,0.9782464546617065,0.07027016229499965,0.0020012428758282067,0.00014889030392957532,0.0002610662491261137,0.027438029862408238,0.9764718673449225,4.3503735371893456e-07,0.006435791374989754,0.9984038628473008,0.025446318189252227,0.9839602313545396,0.8466230882267638,0.620598657750828,0.837490839628917,0.801151869687808,0.9999186835395755,0.996757979114553,0.9727594617664673,0.0014247612698918902,0.0008684549581181765,0.0009090047758093556,0.9277226057348751,0.9982567630132123,8.064208957357495e-05,1.3907289148519023e-06,0.9998037366098369,6.67623942832403e-07,0.8207439613922104,0.5263195161627362,0.9743193354483269,1.7912868554311332e-05,5.081968172478316e-06,4.303840032343094e-06,4.506500392591671e-07,0.46500512282380224,4.6740394924610155e-07,0.012916795154805549,3.9679281918153224e-07,0.004145774081720578,0.003176740154774341,0.9999740641570413,0.9999117287462803,0.0009359126916451547,0.9999904637250171,0.0008456765281971058,6.242698168520212e-08,0.9999623301858306,0.9999731156622128,0.9999805780886052,0.9999641930398897,0.003940702114884838,0.004453812528935209,3.1954402698907276e-07,0.44957285047692647,0.9999077851419987,0.6624750082939989,4.5207775065882906e-07,0.5048369339856619,8.642637144884809e-07,1.2033568015713132e-06,5.328800637745337e-07,0.9999937418472364,0.9999741484137752,0.9999658749087117,2.9415347467122647e-07,0.0001075005633953402,0.9998747742161519,0.9999165683204291,6.056923968984913e-07,1.1563275207095056e-06,0.9999826999312477,0.004392046618280533,0.00304599915252566,0.012385895318684188,0.4213736911127043,6.76179446096465e-05,0.43894349160128565,0.7201084537756508,7.610615459151226e-07,0.9770269060316329,0.007629429958495509,0.99988632771686,0.9997263530754894,5.312890189368087e-07,0.4253359735862639,0.9999496885568959,0.00012071075037252955,0.05309895325996561,0.9996845928331748,3.7871143600218736e-07,3.8807580963212873e-07,2.555005531482125e-07,6.596260502357237e-05,0.3862330760508485,0.0003133443632028249,0.9999527928582767,0.0034868375919360926,0.9999811630045858,0.014079195037181424,0.003260907140947724,7.559013450426923e-07,0.0007545581702330914,0.00019306363962266784,0.0002971033856839935,6.456492487682602e-07,0.9998019367654505,0.9864143197682996,0.0008402580812092475,0.0008050049397545965,0.9999783555459034,0.0012509615311277849,7.869350758299796e-07,0.0002620550769081016,5.1105347238823835e-05,0.03941450010411008,5.751362360918004e-07,0.9996479309396193,0.0003281270327252501,0.006247185355662406,0.002083465370900891,0.9975233458818362,0.7851369897910438,0.5514705674261198,0.0001759188015911622,0.00010415684132199484,0.023895015570421695,0.024959858836096895 -अमरुद,shape,0.00018027493744593125,4.262006727219277e-05,0.0019032801052525068,2.0495937473509565e-07,1.61625717772033e-07,0.002562695219257674,3.723686997592699e-05,0.022766806729580206,0.0002804554855643152,0.003493609942082437,0.9456886246118676,0.9696728010279074,0.9977685108469795,0.01118424401945399,0.0003217397406842488,4.838739855789968e-11,4.2142299610461546e-05,4.486706227752314e-08,9.45308204502541e-08,1.058506583282782e-05,6.692536824706491e-09,3.248955058509134e-05,0.0001520942501772708,1.4373404930774514e-06,0.9993698026801908,3.954205876207523e-06,0.0002973624924883022,0.9995617499301832,5.883827312142411e-07,3.2070728507549384e-08,0.0418554841022996,0.0285239160655095,3.9391662455082126e-05,0.06203471331049744,0.00014003158970604868,0.00022719771843782307,8.159608015955827e-09,5.3238326301379736e-05,1.905548196037746e-07,0.0037011471020669136,8.342949830732131e-05,0.00045150051791898745,0.05004749215152791,0.0090824738998246,0.00037644832020838366,3.9234871280696514e-05,6.014005908289423e-06,2.4456294464671702e-05,1.5691955613773347e-05,0.0012414272511183347,0.08423795949339602,0.0001761539974355067,0.001249291698710591,1.6242798324912726e-07,1.5598959000649697e-05,0.02413165141583724,0.9992118033921223,9.435269212122476e-05,0.9610086643526907,0.9365252093865962,0.04550822873448418,3.8576672076255053e-10,2.4990675833387414e-06,0.02482603720931612,5.163234926011798e-06,1.585985857772891e-05,1.7832336428568054e-06,0.00042102057277203524,0.00039700091953884334,0.0013101774685344775,1.0436731418549715e-06,0.00016668578890543308,0.04371412204209811,0.00034424426942056816,7.30252013725252e-05,0.804792945822234,6.164683541914746e-06,0.0009204586968655299,0.002823954069049177,2.6689708180972477e-11,4.723244312021807e-05,0.9957455658077793,0.002666636922625122,0.0002157758841723554,0.00011079322839579579,0.003704550051279297,7.373407957118353e-09,8.23603122636949e-06,2.171040721177383e-05,0.00021394429937221998,0.0012273341228443773,0.00048735975435739494,0.9977125462402184,0.9990424614570448,0.9959565901392182,0.9585131046594446,0.0003324509086763392,0.9996680061124763,2.5901403757622115e-05,8.802388419136519e-07,3.3495809689385167e-12,7.656931338444748e-06,1.2289444382528392e-06,3.3092320534580114e-05,3.281344556083767e-05,1.0443691811230335e-07,0.00015560890965941784,6.046302777334071e-06,0.0013410005267282586,3.673190169621567e-05,0.00039078072992372386,1.5159466565581223e-08,4.6382261428426874e-07,4.301385285360262e-11,1.608297265015969e-15,3.8726137476719005e-09,0.01858359629544086,5.241273178859183e-10,1.76722936504543e-09,0.04943687588005752,4.322762262766658e-08,1.8959566447319453e-14,0.0013153929076622779,8.116876151908074e-06,8.832902603093862e-13,1.8766078168370698e-09,1.0786197432159376e-13,0.018815141845949578,0.0038075432304559885,0.001608181775630584,0.0002812370568949793,0.0005935582914689373,0.46236735065088125,0.004786144713998409,0.007210163199350306,2.6638157234286837e-07,0.022643988327671102,3.369646490526384e-12,0.0033722640227815616,1.0903593286744556e-07,1.6453525918897817e-05,0.00010643777862278196,0.009604614671634131,0.07818090650432255,4.1242014316957343e-07,4.767323892976095e-09,0.6835809354204375,0.0006600244846558955,0.002218207612503873,2.097739552690379e-07,0.04791245643708124,0.828736404796473,3.217133406384649e-08,0.9723148990177201,8.331189252475325e-08,0.3667547028805357,0.9696728010279079,0.9991470952541336,0.9997501089567616,1.3760930639767996e-11,0.9996688064909104,2.9743892733969976e-05,0.00015230661479775614,0.9999459905500201,0.9999839445214466,0.9999524538538714,0.9992036149827253,4.4189345875414145e-06,4.197246060608937e-05,0.0029208462986850263,0.9696884533582165,0.0005401905334890939,0.010387373611073126,7.940107940547109e-07,1.0912339781790357e-06,5.4554050986344615e-06,5.1241363885897935e-05,5.392415865109626e-05,0.9999834501153367,0.999901644887323,0.9997844437399788,5.350286949155561e-05,1.4174592600447096e-07,2.807082046169133e-07,1.3881908064129815e-06,9.79023197039619e-07,0.45988531494582024,0.0008473245352834086,0.002859138405553427,0.9990881870550501,0.02567856046909476,0.0005053632239052315,0.0001296788991558658,0.004516009680888364,0.002102835031413165,0.0003365306073895111,0.008240937775011342,3.947451454748445e-09,0.021362406013080867,0.008671819951400383,0.0008268463574698339,0.0001243961985995616,0.9997963776318247,0.00018278391332751795,1.707768438298485e-13,8.619951496559668e-09,8.613514213538755e-05,2.5705833282807516e-09,0.9943463367026589,5.648526750592751e-05,0.11812800480378385,1.1123618542263954e-05,0.9995466602751926,0.7197047975634869,0.9997275831064137,1.6799477777279595e-12,5.235538435442158e-14,0.006882882021485456,0.02072091092820489,0.0018076742344041174,3.970379927595795e-08,0.0008155105260931522,1.633118929619738e-06,0.0005545322877991216,2.9624170407077225e-06,1.437090923439366e-08,7.780368892616747e-08,2.0875912608516093e-05,4.0443477354833687e-07,0.030135364192632824,1.7617431352993339e-09,0.0008060541301457942,0.20017493984139983,2.691680209502102e-07,4.322762262766627e-08,0.5886407162601935,0.00017226511092739827,3.578041942931331e-08,0.0005211110958250418,2.752999137381432e-05,6.074968229907014e-05,0.0001064254872852915,1.3861660857959731e-12,4.9341742705670445e-14 -अमरुद,object,3.83797118975729e-05,0.9996914582404796,0.0003783350534909992,1.3971750915852277e-06,3.467529915422449e-05,0.999823170784418,5.88080573514069e-06,0.984689303254522,0.9821520696193456,0.9743657291889026,0.0044190910081293566,0.0009784748713101475,0.0016263325501080436,0.9994511124814074,9.960595991224807e-07,3.260934016744938e-07,0.00021666994464846745,0.00018157880031628137,0.0001321152205028728,0.08181943765449559,0.00015914232883344745,7.570790779907308e-05,0.998529124251535,6.010310821719274e-06,0.9999419722589451,1.5510557836735635e-05,0.00010189017941599224,0.9999550334399392,9.164213226574761e-07,0.9852054702045512,0.999170639306531,0.0006019488664370343,0.9990879940372805,0.8390678136549048,0.00010149079806451148,9.982502016981548e-07,0.08393147860826931,6.490967886034074e-05,0.9805690701427084,0.9968490257172663,2.900500742653641e-06,0.9889983785781238,0.9998871570220279,0.9987841990223558,6.765277460617542e-06,0.0028276428699165364,0.0003623184349356263,0.00010849299758074458,2.3887861342333756e-06,0.9102545783281424,0.9997356880447178,2.756244527878723e-06,0.9887014336639917,0.9971168977955984,7.401604648332733e-07,0.9988435109221654,0.8494759284094018,0.6911805288777177,0.0007106982943322738,0.001779381531317201,0.0027603659909265143,0.000214958726034125,3.692440993042006e-07,0.9626572402825803,0.9737677826378786,2.725433880378728e-05,9.675929365888132e-06,0.9776045878991309,0.9852938809727347,0.9856768368338024,0.9976606833230087,4.143198432615165e-07,2.178773860374258e-06,0.9695744128870405,0.9998867035851405,0.98381000234893,1.9232990225682943e-05,4.0233123505652434e-05,7.639182122496982e-05,0.4442444048969763,5.421630681684295e-05,0.8063248270634905,0.012262123503189325,0.39254894633391274,0.9867323482036755,0.00581149226823993,4.26065497291493e-07,4.848446301929259e-05,6.164597682421858e-05,5.894044134561444e-05,0.9892790621164274,9.360505732252587e-07,0.8932437006439322,0.6950514221405683,0.5948467659482932,0.5704839785529687,1.0619411582257953e-05,0.5126898803034602,0.8992279437365491,0.36641416918654085,0.16097454410419534,2.047672755968847e-06,0.9964772492631355,1.973131834136919e-06,0.5596146547314528,0.998393125838385,5.961042400258515e-07,1.0097335934787199e-05,5.544636680701201e-05,0.9971803974447676,6.042762047285205e-05,6.358237163800275e-07,2.8877272234468464e-07,0.0007210181435607834,0.0015447390867309896,0.0052667126382587815,0.9764619872464234,0.00906128535985035,0.00038950482032574916,0.00023852166625722062,5.847374164695604e-05,0.0018189819781956591,0.9295292721879304,2.9616633170816766e-06,0.0007239782099257238,0.9887989704220465,0.0023163968691833326,0.9716698493253835,0.7564313505177703,0.4736846371590957,0.2385924276840796,0.6696824529919695,0.9997642926650224,0.981329788276964,0.9605596777989722,0.00028330411791184366,0.00038909622825522886,0.00015668501055121566,0.8221888117781789,0.9763918597865324,4.832269466500879e-05,1.087663115515706e-06,0.9980891965202667,6.595985941959417e-06,0.4697685264727794,0.45895149303381383,0.8562634483602396,3.492984713226385e-05,5.842942684729653e-05,8.728708207413307e-06,3.3060953735365747e-06,0.13831725150338053,4.124357239880598e-07,0.004784035781343509,6.63312493178603e-07,0.001881687505093168,0.0012840739675288833,0.9999706109074613,0.999920452038873,0.00011159576838375192,0.9999878573014571,0.0001492319428362083,1.5361239945804956e-07,0.99997914365838,0.9999888141819442,0.9999885067792267,0.9999483707021298,0.0009048409760100932,0.0015511829173053316,4.8754697857420925e-06,0.13059005127967893,0.9996701410586492,0.23131355581438834,4.7450087867258506e-07,0.0829974735129411,2.5758867000598245e-06,1.1444036028659958e-06,1.3141586543623808e-06,0.9999970191860906,0.9999860900420132,0.9999777083518816,7.685050976343706e-07,3.5904217328896294e-05,0.9981119379806914,0.9987175048695397,2.051329138076359e-06,1.5046087832921938e-05,0.9998426621901448,0.0016602396847523859,0.0014320028346417012,0.017057927660224112,0.12298024401450518,4.207059087734652e-05,0.1625634481525472,0.18128756094116327,4.025495313546475e-06,0.9725613244991443,0.0016462822844629217,0.9996785552922998,0.9970616409893328,3.946938345190934e-06,0.07712150290458679,0.9999641890823824,8.177762867817049e-05,0.016411880206687983,0.9923381626575717,1.7316018242542322e-06,5.248288777073625e-07,7.166913816373761e-07,3.879360298173545e-05,0.46283883234533796,9.340847655309303e-05,0.9999521871651872,0.0008742815522204439,0.9999788384319243,0.0015302159392756663,0.0002641675339369917,2.2486019674189764e-06,0.001752970103149161,0.00026742486618716983,0.00017076685992401124,2.1399726238653066e-06,0.9979929426897673,0.9483906002473315,0.00011342021104519496,8.612164058289631e-05,0.9993373969597629,0.0001471358888820024,9.271055730915999e-07,0.0006655471179383424,1.6501717411830768e-05,0.012685427272898772,2.199253227099299e-06,0.995908192016673,7.158295791175145e-05,0.012365066202369804,0.0007902683817112739,0.9663248148324082,0.42792541391238254,0.1446093231062538,6.512166197580809e-05,5.438725431950293e-05,0.003141332129972674,0.004805031691538602 -अर्ध,rgb,0.02068225365807226,0.9999991806383909,1.4821260357814262e-07,0.9999762346506061,2.765685384478027e-07,0.9313976241461631,0.00040169710746570096,0.782710295463972,0.6410171022562524,0.32878523842290325,2.920848948136199e-07,2.373836385321739e-07,2.2005937425858646e-07,0.9999993392312082,0.9999997580250489,0.8472539770037242,9.804025955121373e-09,1.1562890380348871e-08,1.0638165375408735e-08,1.0492513113559538e-05,1.737060210457826e-08,7.828618257471444e-09,0.90387383422379,4.274227483954241e-09,0.961666588452102,2.1170315524851034e-09,0.30650012967941404,0.9320561304462046,0.7154677484263975,0.9996490194569142,0.9295600495835118,3.539839804156151e-07,0.8684219545744107,0.004569824848954581,0.9999987856693577,0.7617140046168087,4.23724898615829e-06,1.0531978536836144e-08,0.5219815887412095,0.4781350581645546,0.9998985784969817,0.977599263569167,0.9073966238197203,0.9998644127326389,0.011159896584089373,6.735076621545584e-07,4.630075639695656e-07,1.447970658801044e-07,0.01568535639456386,0.0005177760247971241,0.9260080588085915,0.9999127563285198,0.5494631979537182,0.6909068339667175,0.119380477163539,0.6413815927019454,0.006541865705938301,0.0032898559117320067,2.428243350636553e-07,2.2102460643698714e-07,2.691340712921768e-07,1.850914394847868e-08,0.9743692564215763,0.9122026979180349,0.9987143140921165,1.0578177276610642e-08,1.613288276453382e-09,0.4772336109790837,0.727268955577508,0.7006896871781271,0.773947865762803,0.9998894968167124,0.9997911771708875,0.4162007928823957,0.9999971230033904,0.9645279511286231,1.7511906868861865e-09,6.711954697121823e-09,6.961392891751779e-09,0.0019700499313733753,0.16482730715976568,0.004054651226759542,9.880474114906244e-07,0.000757380025056333,0.753368002475031,4.598139308837592e-07,0.7653786230764192,7.941150919244041e-09,0.0033448481008410405,0.17419806907651814,0.7618182079820508,0.9971908892193829,0.015203109538770793,0.0027133134793143414,0.0014170449763337826,0.000905353192097847,0.503460888583612,0.0007331789058206902,0.005054265160548502,0.0007832241931846045,0.0003405605593096203,6.286687640295142e-05,0.43029231272984214,0.9999669997188875,0.00029294444313996386,0.9347835292364184,0.003353514142686605,4.171939949368735e-09,3.612431460415812e-09,0.381451156052313,2.4020411121739873e-09,0.9999297250195069,0.9999950218451659,4.7750642723638e-07,2.8968063032235347e-07,3.404687100347695e-07,0.029082559800138,1.414926578260244e-06,2.1784051295590535e-07,3.196115120030882e-08,3.199201241383885e-07,8.393018924792617e-07,0.0014895154627457786,0.9996821821571615,6.045066577586732e-07,0.030381597087241103,8.520822526461515e-07,0.035356113705219405,5.681510929889248e-05,0.00010187547412208717,3.452057889847061e-05,0.0012656393954599114,0.9403464082394665,0.4315389113287214,0.021398158175806807,1.4939457114155903e-08,1.1331752172780701e-08,1.1912123204455521e-08,0.00021118840454806528,0.9995941342896326,0.9999974833682191,0.9634661539628744,0.7585014430776936,0.9991958968077133,2.5817386711486286e-05,4.975570868979841e-06,0.0004926412566275096,6.908506817710092e-09,1.580949756348408e-09,7.5209362298285e-09,0.9995879652959999,8.044516768856129e-06,0.6712519211641318,2.9973238424946287e-07,0.12719240405325477,2.3472112999952457e-07,2.677873780396459e-07,0.9900859990320913,0.9366695712574236,1.1586282907786325e-08,0.9985807890373624,1.0951584956232977e-08,0.32227860965692257,0.9741702283949693,0.9843983135570349,0.9908203289848403,0.9704274924682798,2.6250800713729717e-07,2.2484432560292775e-07,0.9999587434754167,6.444629497359176e-06,0.9253359750021741,3.290871614521841e-05,0.9355866372963402,7.362670240867295e-06,0.0004399392118203533,0.9982187533897513,0.9999987240264981,0.9993140166450646,0.9893247271962362,0.9795741650224921,0.8746861416545504,0.9999986428502654,0.8859394486894978,0.934218121348688,0.05852434338481611,0.9792184891633565,0.9999984937530485,2.2337893844390283e-07,2.489008160049422e-07,2.8004866965902907e-07,0.00022963310347009935,0.02844768112557243,3.4581697502697397e-06,0.0001027367702096417,0.022093453250758743,0.019456484429548185,4.7533254338218997e-07,0.8920056686900686,0.6440392765061461,0.9995631100192583,7.3380221952272115e-06,0.9404963837968426,0.29564531828049867,1.1785755850568618e-06,0.5413945427013211,0.10472730309690363,0.9998504614685615,0.9999995421942067,0.0921232515318985,4.646221520749311e-05,1.480653974164347e-08,0.9543079310885461,2.401618458723352e-07,0.9910204319984884,5.964707092596687e-07,3.587028991103688e-07,0.9946085922810082,2.8447438606384165e-07,3.7266396768985687e-07,5.79693935473686e-07,0.9993479547310425,0.7548105119006575,0.8321551070487648,1.2441439049009275e-08,1.2555172718540355e-08,0.9999991738854114,1.4884297322040198e-08,0.9950954949054278,3.180103293509047e-07,0.9999998360643407,4.824876684244019e-06,0.9996870463872014,0.467269149799753,3.855083961398819e-07,5.956990712000971e-07,3.2236316039227606e-07,0.9994752633082795,0.00023880133315529127,1.6724530689118417e-05,1.4906151650447006e-08,0.9999962066270284,3.569106490357454e-07,4.6634787191589556e-07 -अर्ध,shape,0.7389800802137433,0.9998477708506726,0.0018558982760865637,1.2369401835333236e-06,7.044060099725951e-06,0.003352376000508573,0.008544231925672136,0.9787017650831284,0.6466365273782722,0.9133027012745801,0.0005536199322319728,7.041200368554005e-07,5.368380291315118e-07,0.9994678516493477,0.999275345025156,0.9999318728053399,1.5194359768801498e-11,1.0946242296882276e-11,4.5216746827797504e-11,2.3232323442286035e-07,5.477707178117791e-06,0.5861559971909089,0.897037494036357,0.038280072423768616,0.9263941698724305,0.028482809326225607,1.5226137101101976e-08,0.0018778433016728956,0.000712451876415422,0.9977140106225645,0.9890551351133279,1.1400675673853556e-06,6.753671614252037e-09,1.0201717781874945e-05,1.653951359613181e-09,7.987587934430958e-11,1.8700732138888739e-06,0.0006738513950220233,0.0005724372412757946,0.3964006685673711,2.7502605250660877e-08,4.180236533356975e-09,1.7802221550215778e-05,5.8825399332601126e-05,3.8946854292340383e-07,3.915871265539655e-05,8.808983616710751e-07,0.01394291138481659,0.4543643325123972,0.0001580846306709273,0.8357486839088003,0.002367116805884857,0.009438072644556615,2.944917451100746e-05,0.00022581601645203908,7.641639112132901e-12,0.0037255246890724137,8.052414650192503e-05,6.711151400018905e-07,0.00048217068971589255,0.00026760803602138815,1.2427641991564148e-08,0.9543097593713492,0.14413847922615178,0.9998575355944874,0.1124079369831001,0.8295807235462519,0.9674618926896132,0.12436706528618462,0.8926865153700325,1.2161325659735609e-05,0.9996902042015554,0.009020784626576937,0.00017293911060505272,0.9999339707195385,0.029085933035611064,0.26482427474039233,0.02769515510775165,0.45582480148638976,0.07182803726722503,0.0005291931059949349,0.0033652419199424826,0.17010786847827106,0.00043955168249134387,1.289081436444088e-05,0.14752270687094052,0.9992260013884577,5.533154766826863e-05,0.000122679981908768,0.512414914440576,0.006534862148168586,0.9997917596619653,0.0010594780989877305,0.00015134329448899335,0.0005875718281432238,4.973292994378653e-05,2.5714142092836343e-06,0.00025742568051368336,2.952838076104962e-06,0.0824601437114896,0.0009505705534457599,2.7127907837100778e-11,4.3823246489518876e-12,1.400510215620028e-11,2.6593852526108462e-05,0.9998110090072568,0.0007606470435947634,0.002007502143952231,1.350756306433416e-07,1.450153319790184e-08,0.6290318753560175,0.9780603159910619,0.9998213292301124,4.617686118615726e-05,0.00020071190333245868,0.059986733099090785,1.6051516236393543e-06,1.2307986978909614e-05,0.00020026246859465195,3.8045694643586047e-06,0.0005553799932546155,2.4982850400504643e-05,0.00038968599291214586,0.000984364537792583,0.00025456204853951904,5.608650595843536e-05,4.855030667295801e-06,5.900221983244542e-06,0.00024693543924310965,0.000535098842182376,9.437162306984333e-05,7.5576835491487365e-06,0.4225131758904561,8.38201227724759e-06,1.0221199854473226e-06,1.3136475918965732e-05,1.2430080141336758e-10,3.7904262281838297e-10,0.0001704102819533959,0.9992956735261874,3.734249960579451e-07,0.28231444694993385,0.014210163240093582,0.0001810962876298055,4.953353452952561e-09,1.432652410382717e-06,0.0002952601766252662,0.2705899776959754,0.0013932568262558166,0.33600927644863443,8.701647883976864e-05,0.7060124608673738,0.9700981296758762,0.0014191375776028265,0.00016695936123298135,0.0007841633436143807,7.041200368554053e-07,0.0008162570789810023,1.8601753522092816e-05,1.1252039685345352e-08,0.00029536904749997864,4.349503999399941e-05,1.4873726373438095e-10,0.00018368299781636773,0.00019653599456356292,0.004586056833897948,0.08616684967167015,0.0006664087722307826,0.0008741670779298773,0.00038504221977578057,0.006436838640916758,0.0204413826885767,0.16569791602210485,0.9988704706674004,0.026020884756666914,0.8691137878714612,0.9998632493515807,0.9998149114852106,0.00024249988958977004,6.491352741964502e-05,0.00017148683532464666,5.617925812544536e-09,1.6106220036918908e-07,0.7867267459487555,0.9994941391810968,0.1687142494801819,0.07501733923870625,0.9993418821792042,0.0017319720411307488,7.092861454040881e-07,0.0005642525212487521,0.0002830409565557884,5.038529559734316e-08,0.5220552376001638,0.09470734748812241,0.389904538090944,1.493281615538875e-06,8.775495377535928e-05,0.33335928355419114,0.00041227435513161754,0.3626479198458241,0.10963189615631938,0.02315185134492146,8.215369339152272e-07,1.3852884246187277e-05,0.0007699631441643486,7.521461647361885e-05,0.0002989011505492054,0.9986892579219392,2.9947760681109847e-06,8.209915392115336e-05,0.42857365746670417,0.05558106420588307,0.00021609714392007378,0.0001993987988151306,0.0015786891624923968,0.00010905038458881203,0.9996817348293578,2.43649396184227e-05,4.3376767199993703e-07,8.336456327232716e-06,0.8357950167807044,6.350537026077524e-06,0.8338350074034692,1.1964046425492288e-05,1.0177931392786438e-06,0.999729402538115,2.9261110652907066e-07,0.9998054062131297,0.004113206402588962,0.9997390224307245,2.6469292605450357e-05,0.0008655949262189541,3.0701756317463145e-08,0.0005553799932546155,8.200880050267543e-07,0.004877910887425785,0.9969907351793021,2.5295748545183128e-05,0.006251274203989836,0.038620371619069484,0.9965628347262152,0.00820374037684455,2.824363047455842e-06 -अर्ध,object,0.08653772520403623,0.9999450245125664,3.810083011227706e-06,0.04927299074833532,1.1579857433170117e-07,0.09681327856058572,0.008199521929808577,0.718320859488253,0.4306175073475986,0.5195024274769474,0.00010145717887793598,3.88012800433402e-07,1.6900050004715429e-06,0.9998369536382845,0.9997632168558405,0.9999316031423777,3.61543788208643e-13,1.9879939771227864e-13,7.099614778857282e-12,1.5723525911019854e-08,9.334408995851568e-09,0.0003706299722112313,0.9983877829978703,2.5583057186869934e-05,0.9301829461709873,7.101808344489294e-06,7.73996307221132e-05,0.03622351152798851,0.006520347385064463,0.9995703295501331,0.998346226185319,1.507628829868459e-08,1.5941939148992416e-08,5.281808633032374e-05,1.1563695315263996e-05,1.5729540472856919e-09,3.0976394306293505e-08,3.106771006458619e-06,0.00011549393810079618,0.02057802880355451,8.481540935148083e-06,1.905171463664484e-07,6.906696989688085e-05,0.0029291772240658907,5.883826168108294e-07,1.7228288983806282e-07,3.2576283993373696e-09,9.472736483035156e-05,0.6413803737664601,0.0001005899354635844,0.9800409271532017,0.9713386330732484,0.012994159322880238,3.1584009330747058e-06,0.00026489778730257973,9.918933874081881e-11,0.0015732884903666834,0.0001276429881316848,3.008309865942558e-07,0.0001605636768508133,0.00012426180027581664,1.4184484902298742e-09,0.9979221710009906,0.1579625180045158,0.9999965946839607,5.4302166918346356e-05,8.759163857421699e-05,0.6871365320237216,0.02774880569270477,0.2354451232295341,1.1105856689315246e-05,0.999916798175751,0.8296867747373046,0.002181874984559541,0.9999604194389855,0.34872165817893225,2.2666322098937884e-05,3.8010433536180026e-06,6.419609154590627e-05,0.008141225177582945,0.0032328243002977468,0.011815008716020257,8.770229554194937e-05,0.00015151412080351576,0.0005791395326020813,8.26994701333017e-05,0.9996305931614773,1.7607395942953616e-06,0.0001992446651347579,0.15938107368575893,0.018368304196119904,0.9998762925815766,0.0019843641191360155,0.0010964876922395991,0.000355078869964164,0.00011584911274079623,1.5808785692393885e-05,0.00021085357926116466,4.5039777840268114e-05,0.002162939812300711,0.00047653690697152865,1.9126076043709806e-11,5.278057249696765e-10,3.2878213294296235e-07,2.032563508265918e-05,0.9988252328562939,0.0002711539684798132,1.7815192853435068e-06,8.537337441578015e-10,1.522820039669233e-08,0.00024270024493427172,0.826363598997912,0.9999719076917383,2.1405835371024137e-07,4.530400662273505e-06,2.1757244998708416e-06,4.308447772145075e-05,1.2835962620961366e-06,8.042325609573347e-06,4.049304182486786e-08,1.4306282715547114e-06,2.0416301748175632e-07,0.00046130389956491234,0.0010484964396575182,2.398440713677118e-06,3.256076073989389e-05,1.244996732981688e-07,0.00015695670178254956,8.159045764918703e-05,0.00010757655107855674,3.162768004511392e-05,6.826642520651861e-05,0.8998439241302334,0.0003404562895628838,2.8635293065226478e-05,2.1433407708281154e-09,2.1276486523558733e-13,1.257821472968443e-11,8.100853649551583e-05,0.9999668995380009,0.0004522750412056555,0.6027172745159516,0.0025570811050450856,0.04852934457132566,2.5774760482570246e-09,1.0071642787670601e-07,3.8557657359527865e-05,6.50104220601523e-05,3.006173330564033e-07,9.286650260913336e-05,0.054046429784163574,0.0009467003359904774,0.9836775284642063,0.00039625846736779255,0.00020173975210828176,0.00014786810042129753,4.0966204388110964e-07,0.021085301992095212,0.0021611234919012173,3.491439125419627e-10,0.04259068962364813,1.2376390523168084e-07,7.612605268441896e-10,0.005298075232086394,0.01267371918402305,0.17749258843388457,0.7187358992253725,7.175702828331186e-05,0.00040793462455012607,0.916402952806361,1.2772968069801851e-05,0.2787998286730181,0.0007318523889108436,0.9999122718147262,1.2979483641271323e-05,0.6469926499587499,0.9998343291442735,0.9999916572854923,0.031297447889784016,0.007971578671347575,0.005311988501915744,6.850751631564954e-08,0.00038490397272402223,0.9939916984641526,0.9961646231201585,0.647459641181133,0.9112793322814466,0.9999454949350056,0.0007003370294005385,7.410359397242852e-07,0.00025819615401589014,0.0001747580488453672,5.132958968182675e-07,0.0002745720312727112,0.000623652965048346,0.7751000507059491,4.204355064041899e-05,7.81900461583621e-07,0.8712733665659016,0.0001365214155529573,0.9984316356139433,0.0002668342762164234,0.1664206545530381,0.00037901191380319404,3.129263355920936e-08,0.0002437150030831431,3.3628958014129104e-05,0.01034368075736363,0.9996592995158039,1.897372348982878e-05,1.6265312883589993e-05,9.737458050387569e-05,0.5643475241219705,9.488657708259551e-05,0.022313600828514017,1.5141109381833626e-05,1.5306985464782322e-07,0.9997874891396632,6.268400811035968e-07,1.4626040174188747e-09,4.3029881286987806e-08,0.9108888060184241,1.0606960911852768e-05,0.0420120395468625,1.1546843970778805e-08,2.7870784865822357e-09,0.9999399531897503,1.5751810687067203e-10,0.9998713309432046,2.2249655903223742e-05,0.9993908192148109,3.385366565109975e-06,0.6336834644646514,1.1931173072209567e-07,1.562726464336063e-06,9.45752287250224e-08,4.4582616398978325e-06,0.9999065077428808,0.00014096594715291765,4.962379867067478e-05,0.0001897318974644708,0.9999877109289682,1.5269463224911468e-05,3.585189989308217e-07 -आकर,rgb,0.9996986579932797,1.0,0.024779640952429478,1.0,0.7488518687275474,0.9996678501695774,0.9972579903428448,0.9912199186989772,0.9734264433367015,0.8207824186129004,0.00015399780075620072,0.002861815062970471,0.0012400362268121421,1.0,1.0,0.9999999999972926,9.024575680390194e-08,1.4576302303042363e-07,7.796201625561992e-08,1.3140527812418991e-05,1.5278683928702635e-08,3.2412367338958684e-08,0.9992766764312154,2.6015976131400237e-07,0.999997808268352,2.154193452103248e-06,0.9999992879378744,0.999992769285008,0.9999999999638007,1.0,0.9996539761498163,0.3353068976631524,0.9988400293635946,0.005024877483869819,1.0,0.9999999999920872,7.352594942651472e-06,1.1777404449806245e-08,0.9945583187432612,0.9757386448462062,1.0,0.9999999999997651,0.9994718178211632,1.0,0.9999989886423474,0.10642250510346905,0.4135288987939267,0.0231666399913652,0.9999989036720627,0.0002444229952643432,0.9996093758259113,1.0,0.9514202943358445,0.9925690492241706,0.9999999932721335,0.992241627243354,0.9973386065810056,0.9947193876699582,0.0023191060405816535,0.0006491335268849126,0.00013365972823705988,1.2359972211015232e-08,0.9999999999999276,0.9999999999968823,0.9999999999999998,1.8488581846647519e-07,2.959058637731101e-07,0.9253057817177788,0.9857658593828312,0.9826373568498783,0.9964437312076458,1.0,1.0,0.8947040931126444,1.0,0.9999999999989291,1.1300825251482973e-06,1.589808872407441e-07,4.0090524832666605e-08,0.9906037192127666,0.9999959323424148,0.9926890396842365,1.1514236189517744e-07,0.969006487501132,0.9885508319903515,5.908199391034465e-08,0.9999999999839295,1.2916104766289114e-08,0.9527462166416042,0.9999958182867493,0.9893918347388138,0.9999999999999984,0.9990595592208488,0.9961130079574497,0.987039048278492,0.9773076489022176,0.9999999997941178,0.9677715249362503,0.9950734952570577,0.9631242744460632,0.8976479305271224,0.9405725807015999,0.9664170036246365,1.0,0.9154076278336866,0.9997065720681211,0.9999911036324851,1.9751019086003718e-07,1.3996939414454591e-05,0.9506431708056592,4.0809718676932643e-07,1.0,1.0,0.01088091416169608,0.0005042209467643791,0.0002960846006117189,0.06009187019955359,0.0006236708603032051,0.0028890658789789527,0.0005312591430965626,0.3239019571855486,0.0010466153577429567,0.001094785406581963,1.0,0.008666939768887738,0.7653435590607466,0.0013282437137483478,0.07758100922724714,1.7743984665127998e-05,2.1091513486349634e-05,0.0002752382020390026,0.0007489473545292449,0.9997379102584022,0.9033679835467441,0.038715453849095076,4.141897658089936e-08,5.8389533990298805e-08,7.731659047404667e-08,8.540240717336732e-05,1.0,1.0,0.9999999999993954,0.9957583404768489,1.0,2.9420012830765506e-05,1.01053366308796e-05,0.011852761713946844,5.12292627506502e-08,5.180051152922705e-07,2.448543591392983e-07,1.0,1.2142774939334224e-06,0.999999999970083,0.00014515936526819068,0.9999999940835216,0.0008144599411174945,0.0022879551663492815,0.9999999477349203,0.9999996053243204,3.5396026282122915e-08,0.999999997519663,4.042730959627905e-08,0.9999999999642746,0.9999994333900699,0.9999995594823947,0.9999996378100622,0.9999979622200165,0.0013529381963147064,0.0005966135035584419,1.0,1.048514406747133e-06,0.9996037587882379,5.4673274372637e-06,0.9999999999995477,1.3751796226368826e-06,0.997686027723884,0.9999999999999993,1.0,0.9999999987448336,0.9999999245480068,0.9999996766400596,0.9999999999988329,1.0,0.9990265575862333,0.9997027069155079,0.9999999378068557,1.0,1.0,0.0006008782249386086,0.0019340814037046143,0.00012429584132289125,9.601470273277734e-05,0.9998628877857801,8.227683378932479e-06,2.0623904376246995e-05,0.9999993160731949,0.03243340248105798,0.0026274748985290965,0.9992130709468048,0.9888439551938337,1.0,1.0336884617723318e-06,0.999989259106791,0.9999988261464773,0.0006758602162698475,0.9806456850884432,0.9999999912583616,1.0,1.0,0.9999895350074678,8.613846254959651e-06,1.2172047507959947e-08,0.9999972610845121,0.0012821666173387176,0.9999994166437324,0.0014884849941061847,0.0059537437056204935,0.9999999999999958,0.04569929784653607,0.5694017877662596,0.7210209199103899,1.0,0.9956257200290695,0.9999999999873586,1.6095030554403684e-07,2.0200925541205367e-07,1.0,1.0793544229381681e-07,0.9999999999999964,0.31822818646031226,1.0,9.819363454783332e-07,1.0,0.9716232123972139,0.36965917685942595,0.008773463404193398,0.010182971299164944,1.0,6.240685361254512e-05,2.471517887228848e-06,1.6690704287058346e-08,1.0,5.802114719922918e-05,0.00014759815314259166 -आकर,shape,0.00023817305806459225,0.9998587653323021,0.00039780210870642456,0.9975438874343092,0.15631553560005182,0.99803113973927,0.9966204169778932,0.001468054265142007,0.24196132253079927,0.0029131901127041155,0.9999983040901996,0.999996914309798,0.9999997874367484,0.6384796979148559,0.9999999993372866,0.9999860637084085,9.515666824229695e-05,4.783417189502428e-05,0.9999735685785314,0.9999774490201009,0.0022513648860215067,0.0004964216741058323,0.9999981842498384,0.0004351891249828135,0.0001338889086839155,0.0002572937861311598,0.0004630482230293197,0.004089192482310481,0.0016617401652500744,0.9978038485772905,0.9852505193530715,0.012066874745890827,0.9914197411716278,0.0002965918587493594,0.8772393547908653,0.10197102296675845,1.9672806596511558e-06,1.289785762494232e-05,0.00838784978494958,0.9999999740903776,0.9999978863825733,0.9999142839259643,0.8256606229177909,0.89799824395201,0.5577038792040641,0.9656531231633649,0.003567767891570894,0.17095786923965992,0.9940943195097186,0.00031987192308036643,0.9998534965534357,0.9994745893834217,0.00010892157565641412,0.9993619742302281,0.9991675240037325,0.0370831903769866,0.9992782450725045,0.9999999501682892,0.9984100148997102,0.9854201126108066,0.8992439531223633,0.9999999999901796,0.7246109532336644,0.9999587776108302,0.42406324450669314,0.00014710085337537747,0.00032588624770436505,6.203395281902556e-06,2.288433244225765e-05,0.0022690733765639293,0.9997994423293692,0.09699255752504499,0.9998946438904595,0.003223855275950223,0.999956449034423,0.9997348135667867,0.0009421868983339943,0.00023157199109994357,0.00011189268986567663,0.9954397544711393,0.0003686734812281247,0.9987781042009316,0.004470345775740239,0.9999996297577148,0.0468145887932292,3.2123329828477814e-05,0.9980862475158595,1.0299192849766e-05,4.920262453743267e-07,6.75074590357294e-07,0.00044925844032584476,3.897171177704478e-05,0.9913573283878642,0.5941469241771355,0.9971266753610014,0.9999982114163113,0.38262646028383857,0.7061950644412012,0.9999997039710292,0.9999997995605618,0.9976891747861835,0.9999454493706015,0.9997622969803518,0.9999960911950879,0.9999985002272749,0.9998771337992772,0.9999867392563341,5.14873867560661e-05,0.0007757262359298074,0.9997202868490437,0.0016252943246126378,0.9998069169988361,0.5913359338224995,0.00011318955377266498,9.219380326368176e-07,0.06352944521539523,0.00041585878277545347,0.00021941914125381536,0.00030570777583063103,0.09333085273070515,0.22143183281337467,8.455355818814968e-05,4.3567924466465414e-05,0.9996035561156926,5.9527960856017365e-05,0.9999908772794823,9.560350178301916e-05,0.0003254440483834597,9.245876269231127e-06,0.00018667531201761533,6.49792463172513e-09,0.000886060161550151,0.9996468661338251,0.00017482145198561126,0.0005974129459517894,0.9793760451559266,0.0003420317061473864,0.000229350633732877,0.0002088360393739304,0.5916730388494921,3.6561747477700324e-06,0.5470554898403565,0.9999910109382563,0.9999992939861182,0.9999998644775884,0.9999991276028012,0.999999965302346,1.4011967529984047e-05,0.000917035031994455,3.415191056315102e-05,0.9999947243449544,0.9191640749915625,0.9295888560419269,0.9874648308237245,0.99983151404937,0.9999990148469244,0.999996914309798,0.0018271176494923183,0.08338545245976209,0.9999999999466529,0.0010437248790719975,0.00015648551061705763,1.1739074666546225e-05,0.2519978861543321,0.3815823353834978,0.0714046565996132,0.24591294092034807,0.9999882479534774,0.9737965382980238,0.9989468253995416,0.9993109075768108,0.8910814918965131,0.0006631375247303432,0.7935351767267544,0.001038109307705714,0.999997208431703,0.003733699946234758,0.8804039083893371,0.6568154943080897,0.0070892911717616814,0.0005571407867815468,0.9598216363783534,1.2054933900826284e-06,0.9999615908323655,0.9994643978773893,0.9958055690099746,0.9987215950308834,0.9992028016401107,0.9999601486779244,0.9999953817771516,0.9999997351777701,0.00035844227365459453,0.00015624119654232218,0.9564432674034776,0.00040109789831480573,0.9999914786323818,0.0007651013881050734,0.0026345499739371227,0.9995044314647146,0.999992802598787,0.9996452191679042,0.0001960778714378972,0.2535743345783981,3.7503882357750236e-06,0.7770973110833349,0.9997503102986937,0.9998620185635441,0.9999976033292635,0.9999845266977653,9.230494448727023e-06,9.120802917136642e-05,3.2127832845450385e-07,0.003181507064585283,0.9168988007373543,0.03094196165432515,0.0035950087197923145,2.985025632054961e-06,0.9999440805434274,0.9783001151368985,0.0002944546147482679,0.3196361386392736,0.999993673945024,0.9999049210028575,0.9999045171377581,7.703360662697957e-05,0.0006490770016022849,0.000275822312142276,0.4032328776219529,0.9936185676464465,0.9997888864957503,0.9999155438477273,0.048931813173338376,0.9997528562068569,0.9999588614353666,0.22143183281337636,0.043073798517254756,6.659001502944026e-05,0.999752152168558,7.068518527935836e-05,0.7471053901468078,3.0908408811181163e-06,0.7510124245349487,0.0011005619560015831,0.0001928853463226402 -आकर,object,0.006196765901466725,0.9999999117540355,3.32865073184582e-05,0.9995078418919678,3.4401731145429754e-05,0.9960840530578036,0.10097687173775952,0.07051517588316052,0.9560643267593382,0.017249975731697818,0.9972807977974352,0.9773219798172992,0.9973851927930464,0.999996116687671,0.9999999999986562,0.9819198098297739,7.71854356080454e-05,2.1696069883664716e-05,0.01780064500489095,0.29660681404506395,0.00019041476464456378,0.00011126699397319508,0.9994058355331881,9.55695951867279e-05,0.13925125023117976,0.00012904487711793124,2.6381431719730346e-05,0.5756773439504117,0.11385222948109784,0.999917766859698,0.9321218736376274,0.0001439208365351916,0.9995619572335472,0.0003146764864337301,0.9999999239884005,0.30551294163711845,4.016292611758727e-07,5.651800676349072e-08,0.08670992811941595,0.999994400501549,0.9999999996208904,0.9999979544962204,0.9986786134472572,0.9999970495790897,0.965504507753476,0.002641291879649757,2.03844947532719e-05,0.0003723410571134776,0.17564084343507366,0.0002482626461257177,0.9980876831228764,0.9999873282611261,0.0009570372809207157,0.9997797467963833,0.9993090979748706,0.5884192741355119,0.99416812167724,0.9993749759167572,0.3956928932847128,0.6121356873276167,0.23293047379306214,0.9917080743559684,0.7814652294062778,0.9999947963926707,0.9765884679508444,5.037893831848486e-05,0.00032691893153229595,0.0006204247163380277,0.003282092653932239,0.14918094091401993,0.9999899148147464,0.9999949282720944,0.9999999712878026,0.0016803502944362496,0.9999997039054374,0.9999934397243347,0.00020370587306282862,7.467418878613492e-05,5.8445038003018715e-05,0.9173430709873521,0.00018409661068426132,0.9604985550051987,7.497206475999664e-05,0.9967341711307813,0.07703301184137763,2.7130642132164525e-05,0.8997387836447335,1.643172081472468e-08,7.046625669089516e-08,6.465580759224305e-05,0.012536382209354697,0.1386828195912757,0.9874287884312783,0.8684583119029525,0.9872156235950369,0.9948668739097699,0.9901625679342642,0.943794588883169,0.9994776643349572,0.9995094812696542,0.7540241531904077,0.9998423165451571,0.9999144510726975,0.9999999999277864,0.9995302612447357,0.99832589931308,0.9999447216830141,3.424483381453184e-05,0.00024127463806108542,0.9998113022503141,0.000670400721042737,0.9999999106864776,0.9999995451646656,5.7366785269397873e-05,2.762706325609108e-06,0.008798678592997062,0.00024380914219088946,0.0001950330620383399,0.0002880849119318671,0.01690169212789874,4.211628404722885e-05,7.423635921138976e-05,4.459382082866919e-05,0.9999999862627302,1.9334220615138342e-05,0.2694251053090616,4.2709192869980614e-05,8.47342219424569e-05,2.3736028692929317e-05,9.048303159496827e-05,6.875553530977523e-11,7.315351665758329e-05,0.9859802414901294,0.0009573930597597084,0.00033178023419242717,0.11020002805220612,0.00021111115106998402,0.00011194372967179237,8.068201754589243e-05,0.9977492206607906,0.9822710889824742,0.9628019144253631,0.9999938324278357,0.999999999536684,0.8376080603065867,0.12228893879055554,0.9996846634284322,4.008312902893602e-05,0.00017476974115202204,1.4451904066319003e-05,0.9999999986509678,0.4504372410128679,0.8395162130416141,0.7684995375050733,0.9996325067568357,0.9841853383660454,0.9770782357983957,0.5637323825597187,0.9439619605120303,0.9519079237299276,0.7552083969274356,3.5951599241605544e-05,0.0010667823578723377,0.9501999090592983,0.9808576707039621,0.9013387766808634,0.7903815919861878,0.7226861838464244,0.0020775706644086916,0.99993211867427,0.9869840441841441,0.9662357092309543,0.00039452118007960444,0.705775152190786,0.0004744027385587527,0.8221804825711766,0.8197207326385936,0.9999999250683248,0.9992785419746089,0.581710703860356,0.4105137754838612,0.9991135998893216,0.9200664989457977,0.9849752490370104,0.9979545153028088,0.2081708947558798,0.9999062522462245,0.9999889200688754,0.8950955369636502,0.9915599800157714,0.5079221115378134,0.00023778645626265304,0.00012401156109279242,0.43614873558126566,0.00018800438320715814,0.9097208879245654,0.0004261042468997823,0.0004033761292570946,0.9942798653259375,0.9999987564827941,0.9999795628721639,5.4534947850692354e-05,0.9248399950218614,2.0308662377992308e-06,0.04968397338980826,0.9997544540604641,0.999793436245115,0.9999999996212685,0.9999999999149554,3.107366512153232e-06,2.7360032561426756e-05,2.4208748783543713e-08,0.33104654992746324,0.2168712619550389,0.67550379187943,5.9581684636041304e-05,2.95716667833592e-05,0.9991605919177892,0.008781734066090736,4.410963085793786e-06,4.5772982311204365e-05,0.999999998458688,0.9999924343888462,0.9999966943006231,2.5859819432435996e-05,0.00020725034685624704,0.9982046959697994,0.001616894065328777,0.9996592503269096,0.3279922968531246,0.9999999910337901,0.0006080390717554493,0.9999999643103005,0.999879463403571,4.460392845119042e-05,0.007806250313948064,7.617586885048534e-06,0.9998245606350608,0.00012287125689657423,0.019240172762840735,7.8948706282853e-08,0.9999771676817167,0.01012772922466227,5.925052550206611e-05 -आकार,rgb,0.9999997866168988,0.9999999999999922,5.810156763888257e-14,1.0,1.465250531938916e-12,0.9988324428742494,0.9997959243293751,0.999526203053388,0.9954662797141752,0.9495386556169102,1.2487167556204051e-14,2.913591694488125e-14,1.9078249018265975e-14,0.9999999999999964,1.0,1.0,1.0098734142747878e-16,1.110423786642064e-16,1.0970995239021583e-16,6.157297723628676e-12,4.630174165220504e-16,1.507078754291444e-14,0.9978550191836005,6.0373161894709e-14,0.9960621720839924,1.7309253515137206e-16,0.9999999999803943,0.9847714678398328,0.9999999999999998,0.9999999950457215,0.9987387929385197,5.618895314973347e-13,0.9940511494174737,0.002870482069577383,1.0,1.0,8.964214668581793e-13,2.3454882909070264e-15,0.36047386798846126,0.5583953239465945,1.0,0.999855632261409,0.9971605377810356,0.9999999997759295,0.9999999979582492,4.2840845502419e-13,8.201473008040116e-13,5.5094229902416294e-14,0.999999998632062,2.1858976866792114e-07,0.9986382873110423,1.0,0.9929658037444261,0.9366938494767671,0.9999999999990439,0.8459795877580351,2.382750437348175e-06,6.053841654255086e-07,2.7194853592988524e-14,1.486879256436875e-14,1.087969881010855e-14,7.593626404847382e-16,1.0,0.996256192357813,0.9999999066791798,3.4749613314362213e-13,1.9127209090590678e-16,0.9901429505757733,0.9990443426622178,0.9977708649640176,0.9741779958406459,1.0,1.0,0.987403567716758,0.9999999999995746,0.9994600547670338,1.793060573390215e-16,1.0583429593362431e-13,1.6578646814129996e-14,2.1817517821490662e-07,0.9999999997379649,8.222129922772953e-07,5.785187543485887e-12,3.250320539753286e-08,0.999172824195555,1.331302097937725e-12,1.0,1.6558987538511698e-15,0.9996800138827601,0.9999999997467719,0.9994653001043665,1.0,1.3791330082819487e-05,4.6546704976887027e-07,1.1528071463666754e-07,4.7329600595301306e-08,0.9999999999999967,3.049378910269469e-08,1.3228807154229296e-06,3.2892259396853624e-08,6.366078533948574e-09,0.9558290235577119,0.45416595915649627,1.0,5.2842944459154085e-09,0.9989218036408869,0.9999999290936009,4.10074840366742e-14,2.9811951052409107e-16,0.3660908939956876,9.210229329231158e-17,1.0,1.0,1.0213783825025944e-13,1.8062934814401927e-14,1.8203202962674237e-14,0.054485772086405065,1.3935545457912846e-13,2.7030276367199994e-14,2.9593448672236644e-15,5.100717706882994e-13,8.021967858861001e-14,2.1022980275180393e-06,1.0,1.177778411073118e-13,7.719121580023443e-05,8.797667199830804e-14,0.06085645599953487,9.765166900738656e-10,9.584000509744182e-08,3.8581153371304185e-11,0.00010056568735630411,0.9991967126003197,0.9883466023927585,0.029482485260534163,1.7804528796153243e-16,1.2250914177952513e-16,1.2071730976102946e-16,2.0883880403640784e-08,0.9999999944301847,1.0,1.0,0.9702195881898285,1.0,4.261395993620673e-11,1.159566490588425e-12,8.372609100743266e-09,2.407185798002838e-14,1.959613322300064e-16,2.312339101843963e-13,1.0,3.64002841039174e-11,0.9999999999999998,1.2660817296805548e-14,0.9999999999992224,1.723348071069058e-14,2.970882420546206e-14,0.999794508319425,0.9802389699692121,1.483199757805997e-16,0.9999981073184172,1.3347097035928677e-16,0.9999999999999978,0.9982220136247958,0.9995441201083556,0.999898590939541,0.9981256001159295,2.3522549192223743e-14,1.4660303545492636e-14,1.0,1.764689896284237e-11,0.9986020734908394,1.2574615757400003e-09,1.0,1.769576962105113e-11,0.9998454207790833,1.0,1.0,0.9999997097714456,0.9997643220973788,0.9989560386963848,1.0,1.0,0.9965133593732257,0.9988940979103088,0.9999999999816513,0.9999999999998392,0.9999999999999527,1.460081549262025e-14,2.5804315741218888e-14,1.1171254791892988e-14,5.915296409521052e-06,0.9999999326131864,5.531935028803135e-13,4.304203160328901e-08,0.9999999994314823,0.01581012067776816,5.6626229928745474e-14,0.99640620299745,0.9094209183068529,1.0,3.6393768442289435e-11,0.9910723008250065,0.9999999999652396,1.1055213062982315e-13,0.7477556669593116,0.9999999999985425,1.0,1.0,0.9999999986585206,3.487737539761155e-08,5.231218711970775e-15,0.9938202626945931,2.1068965461828544e-14,0.9999220071578468,5.944276016372097e-14,5.930334852800933e-14,1.0,1.3067912220845885e-13,1.0310821729485242e-12,2.0512503372107893e-12,1.0,0.9687270738255561,0.9799454921592368,1.176463098603268e-16,1.186638907813186e-16,0.999999999999992,1.4135038791962369e-16,1.0,5.003839721414913e-13,1.0,1.4791614678216362e-09,1.0,0.5646645203472391,6.495658228781363e-13,1.1657492749157692e-13,6.828647085219212e-14,0.9999999916565804,4.199847739974657e-07,2.73556582432172e-10,1.3588909010569107e-14,1.0,1.2492260791610124e-14,2.2029801120368167e-14 -आकार,shape,3.4638614845272196e-06,0.9903542713005544,0.9999866950988291,0.023727882082077087,0.9999984957960131,0.9999998165889886,0.9999892311607325,5.617554738295671e-06,0.5803730849858048,0.00014457429205120447,0.0003924737069685129,1.3021242121673096e-05,4.090541526644618e-06,0.8943967517189765,0.9882923405508685,0.9981892498105301,0.9999986807272475,0.9997423390160649,0.0010347210876602128,2.4273828119210886e-05,0.9999999983847105,0.9999744321756312,0.9999996790684835,0.9998554648165158,0.9999589381764085,0.9999627346570261,1.5034950025603768e-06,0.9923385777836008,0.999827241015179,0.9996821462303221,0.9991751447561964,0.9999999866962643,0.9999999448676543,3.6619768103766724e-05,0.999999998551949,0.9999998231853926,0.0318389547471663,2.043601671026407e-09,0.00041066202248947687,0.9996516123880169,0.9999835772975267,0.9997479167562507,0.99999139131953,0.9999949475041428,0.9999757731096413,0.9999987198312049,0.9999998960662696,0.9736324423558691,0.9996325301921352,0.00015478587901786127,0.9999998224472038,0.9630923669108197,1.9492464383495743e-06,0.9999802669549869,0.9999217141918584,0.9999999945919498,0.0011263346477393132,0.00021954629793618317,1.3783228087730481e-08,3.618137179749392e-05,5.187667235859253e-05,0.5915957195113563,0.9999999645041783,0.9992136473269531,0.9999083060213234,0.9998266070210984,0.9999978865080759,0.00048432820129892156,0.00026713158566436313,0.0009265372661674892,0.9999998782364816,0.9901324835450649,0.9999841983795543,2.2054232083269878e-06,0.9524841800951754,0.999730609938183,0.9998256503011489,0.998876120173357,0.9996313540849388,0.9993036380701453,1.0386600766372178e-05,0.9999727157075584,1.2846479865262813e-05,0.000603143004136491,7.770846094103298e-05,0.00378751047564988,0.9996568358491631,3.55657500507771e-08,6.632045388381306e-10,1.918863211990145e-05,0.0002401334914067769,0.22256237524582195,0.8356272731717829,0.9992118830371804,0.9934750373498272,1.1692504298707224e-06,0.9999792321619021,0.9862301512004762,0.9999979042167482,0.9764112711320889,0.999227311846632,0.9999999838259781,0.9999997417856678,0.9999999361385875,0.9999999995236033,0.9998491184388797,0.9999994502972143,0.9995852839966038,0.1438721900529541,0.9999998378779588,0.999939929672509,0.9999990473473157,0.9997478013587267,0.9999999999999436,0.9999999679102677,0.9999999999742557,0.00011797841783049388,0.9999999999987392,0.9999997799437936,0.9923997607113618,0.9998692949629273,0.9999999999735212,3.650573410730957e-05,0.999999402846443,0.9999999991607174,0.00031672252270965303,0.9999999999925899,1.2034393627984538e-06,0.0001372146335841089,0.00010365789595978255,7.578634997937895e-12,3.428736024754932e-05,0.9997866047942069,1.7756268356463391e-06,0.00025559915779964967,0.9999999825996212,0.9999742639165063,0.9999978240406465,1.248621578169095e-06,0.9982659955877867,0.999911090893941,0.9999921377778052,0.999996621591824,0.9999684398111601,0.003999391135098017,0.22643806071241954,0.00012936285035402583,0.9972810606919967,0.9926446663354226,0.999874706765981,0.9999953391160561,1.1610244354341453e-06,0.9997248998516738,0.0003346125657173244,0.9998148570204034,0.0006094776300192863,1.3021242121673188e-05,0.9088833857665695,0.9693466446855586,0.7082424591120379,0.9791367186714549,0.9999999095574406,0.9999999485277902,0.7607395931932959,0.9971821120389324,0.9979587506778393,0.9903052566734775,0.0002982999465988685,0.022625614057742872,0.9984111680285808,0.010162941660713512,0.9999999380297196,2.0894619340118118e-05,0.9999281272771139,0.00022293156661715326,0.9999980376414522,0.6705817943753032,0.9992558200496102,0.9984674555000592,0.36862318221381746,0.8481837347125839,0.9999999990082131,0.9998322049320292,0.9999933655226603,0.9999920296066223,0.9995190454867097,0.9986889403577791,0.4745607396316185,0.578828018533587,6.171701755221045e-05,0.0005742795385756278,0.00048712476431680003,5.612955591454852e-07,0.9999999920431263,6.923824830834936e-05,0.9998152193029822,0.0003154398540455438,0.9999999999882785,0.9999734457913599,0.9999672447476706,0.9972609395059633,4.259911017937468e-06,0.9191188429521195,1.4595029828982916e-09,0.999999999768056,0.9999999596511472,0.9998555806893156,0.999999991165255,0.1393187614992012,3.364527053672102e-09,1.8246080293783318e-06,2.595524996122233e-08,0.8747041779477602,1.6963672277905648e-07,0.020986958782638364,0.9999999999965896,0.9999999998271243,0.9999999983365349,0.9999996016562228,0.9999998361831413,0.9999999907255451,0.9999988985597094,0.9999997708072145,0.999271459269454,0.9997953142502981,0.9999999988564252,0.9959146869593002,0.23881756347126942,0.999999994809436,0.999999999909204,0.9997201749968175,0.00662427429008365,0.9997604579885099,0.9999498287974672,0.9998692949629273,0.9985229638483134,0.9917446256033877,0.9799894957187644,0.0002822871068924329,0.0036056581485506686,2.2844308364477772e-07,0.9997052878428537,0.9999999999998581,0.9999994840841203 -आकार,object,0.0001980861543316284,0.9997257015210219,0.9382172277883897,0.9717005600242052,0.9210145428902118,0.9999953747612487,0.9999514221511627,0.0002007471159157427,0.62167433674839,0.0017586086631204984,0.0002872351205933803,2.4213398813570032e-05,7.504401107565109e-06,0.9982838273382625,0.9999996362405881,0.9996928609532304,0.996003074908924,0.6844010040019564,8.77820276803763e-06,7.529917102822257e-06,0.9996639063478377,0.9972744981445157,0.9999872886744958,0.9525767296107339,0.9995871371053607,0.9954068857268397,1.5121831816597776e-05,0.9867301634509373,0.9998700065863066,0.999913558628539,0.9991106989857753,0.9983281257358333,0.9999942186851386,4.713356738670383e-05,0.9999999996949818,0.9999970638533228,8.472315307677238e-05,1.445644842022527e-09,0.00022516786817485999,0.9995167593557833,0.9999999276026587,0.9997951058048177,0.9999546726094172,0.9999976882957744,0.9999737303735127,0.9905114636998849,0.9842590927693359,0.0636584773461892,0.9996383055611523,0.0001224745515257575,0.999998096598775,0.9999188572119568,2.7297236184966167e-05,0.9998980807273009,0.999946900519951,0.9999793632334872,0.0003976063841709726,0.0017845387195320854,8.889406812764627e-08,4.960681809315291e-05,4.634347797890105e-05,0.03994684330378085,0.9999991942340789,0.9994052517740221,0.9997956688137899,0.9842919515253461,0.9994234761079633,0.003810775925251996,0.0011733670286678973,0.019483785959773237,0.9999993885213327,0.9999946078876151,0.9999994981698568,1.4421613855680315e-05,0.9988175262337726,0.9997028075293595,0.9889159573496272,0.9244270310289481,0.9617885345070608,0.9892229064484654,0.00031702270527115677,0.9950205258363825,1.366907125406305e-05,0.0034495925780366503,0.0006793964380819574,0.0008890616137192795,0.9997821191272156,5.947635983444555e-09,1.5856040545128196e-08,0.0005624983387962295,0.0013043364490222835,0.9895116781979906,0.051260940786801296,0.9384386289436719,0.2773864425476621,6.5304233987615e-06,0.9999929858541673,0.39181306374848485,0.9998099156407415,0.9236288915650267,0.9680152581322997,0.9999944126286918,0.9999810986083604,0.9999999966140245,0.9999994952664065,0.9997116047723066,0.9999967303005661,0.8885375339357399,0.005209213521308083,0.9999921357659197,0.9971708217651937,0.9999999420378205,0.9999996132146329,0.9999998572170954,0.9984319819272846,0.9999988974178498,0.00014425231181779924,0.9999997130789309,0.9997045674633858,0.7728877357609597,0.3843750523276144,0.9999825073647006,3.32609903612894e-05,0.9999999897705883,0.9997670692564992,0.00016893547267556627,0.9999971604362625,2.954831775029948e-06,7.469673627289787e-05,8.808925997791184e-05,3.6534883466352577e-13,3.3863130862763575e-05,0.9997472795820012,1.4454532210315519e-05,0.00017475941826292324,0.9907303153470461,0.9928898216794555,0.9780374080942708,1.2770855193974023e-06,0.9982804680325207,0.9999825359292804,0.9999813096544189,0.9999699746895506,0.9999994838419237,0.0003851303447373743,0.0007763742731525197,9.067299766684183e-05,0.87535743026845,0.801636919165469,0.9837644730007421,0.9999999711381422,5.854910987268603e-06,0.999878489760345,0.00024503447253541253,0.9999104883796842,0.0010570719985312144,2.347839051579437e-05,0.9328645034666717,0.9560117461174004,0.004957549422991008,0.979384635379166,0.9896918893474986,0.999996722846335,0.8401502848712369,0.9971905248769423,0.9976923451822935,0.9848946046409436,0.0006276459300719019,0.0034723117424106218,0.9999956117577632,0.002317400372336342,0.9999965626068803,5.447882427211024e-05,0.9999680462006655,0.0001827243978678053,0.9999937931245239,0.9987872791828089,0.9999995820278538,0.9994404606199376,0.5660887907010766,0.8435228417177401,0.9999999928774579,0.9999121780672915,0.9998937591532248,0.9999611984873134,0.9997942801471893,0.999992836668529,0.9846269624329351,0.1528598857935293,2.797393580238413e-05,0.0004842771891022816,0.00016659289725719752,1.3282406887238077e-05,0.9994003198126405,7.700056185236016e-05,0.9999302916761272,0.00025479183766700584,0.9999986853401696,0.9998853098669848,0.9998639118548236,0.9999946647384613,8.406729345306338e-06,0.9766685896699212,6.213670853741334e-08,0.9999919705285908,0.9999932169631605,0.9998918294850094,0.9999999995662072,0.9998113814677865,1.9231006355588797e-07,1.8486142547994642e-06,3.023119288168414e-08,0.8789672582596737,5.175573189243535e-07,0.11053399674071183,0.9999995192677191,0.999859177934477,0.9999999984140377,0.9966418938685998,0.9838568570955274,0.9982699292845084,0.9999999865902671,0.9999985550802771,0.9995382586339051,0.07796318465905276,0.9996700380657918,0.9994797540282128,8.691716360106685e-05,0.9999999980229219,0.9999968932794691,0.9999488784834399,0.0009676838729780587,0.999996230813806,0.9998550681813424,0.386996257054392,0.6805386077241681,0.17633193648231493,0.9909411157517324,0.00022098860176417135,0.001890257436300807,1.2091062218384545e-07,0.999876889475068,0.9999999858761321,0.9805855576582374 -आध,rgb,4.00862491541151e-05,0.999999999997071,3.834891742531922e-10,0.9992563277943225,3.5319563997601367e-10,0.9999685341588379,2.3718898134204267e-08,0.9988846262558607,0.9974502645567287,0.9769661352393223,6.610089383252286e-09,2.1116400252652098e-09,2.208992338719279e-09,0.9999999999973967,0.9999981675918264,0.0011406904280803869,1.189391665649486e-11,1.693978377610636e-11,1.443365502547153e-11,8.05214769510646e-06,3.3582354889989216e-11,9.431314165150717e-13,0.9999396885869904,9.148209825953278e-14,0.9999941029995081,1.2955913692728073e-13,0.0016110271325315323,0.9999850639749459,0.0006661974869901391,0.9999999478662405,0.9999672582140687,1.1618894959869954e-09,0.9999031608262352,0.01250809547156577,0.9999995923011825,0.0005699538077107464,1.7088915464573833e-06,4.774313248905993e-12,0.9990514192574471,0.9981692071932369,0.997707727448273,0.9999789250600863,0.9999503880419766,0.9999999788600913,7.160016288128453e-07,7.962545091075443e-09,1.9602516529650006e-09,3.707689280958441e-10,1.516994368167289e-06,0.0024986849984701214,0.9999638985177797,0.9979053870769599,0.9945180260840164,0.9994701976125528,1.4195301139591979e-05,0.9993658359339869,0.18122509730293884,0.06255275165341193,2.34709588640517e-09,2.6146311398642446e-09,5.707297710324944e-09,3.3058767648959954e-11,0.01359604851242691,0.9998050743214517,0.9999996011479372,5.007418285188733e-13,7.230784320298431e-14,0.9902187559174473,0.998229108181099,0.9982633727385316,0.9997305543680435,0.9961484789131705,0.9947621116087657,0.9837136756094815,0.9999999999908336,0.9999624907654778,8.202533731127592e-14,2.487605695666557e-13,6.54377977001909e-13,0.02676409591602693,0.0006455724775959103,0.09517946908133003,2.5030981936378047e-08,0.005321450612836572,0.9986599789537184,6.451578269867258e-09,0.0008085778818887474,2.598005707784945e-12,9.651427336302357e-06,0.0007601058687057897,0.9985730060073376,0.2255008222078626,0.48199273740379417,0.041695507862790505,0.01516181693367677,0.0070926444312170095,0.00021034447339028815,0.005033079585202452,0.130374537247243,0.005871496267442488,0.0014134640259094138,2.1465820750642563e-09,0.9975087411257275,0.9991922512657205,0.0010081118744103069,0.9999715131548039,1.516663086987649e-07,1.0285038076198947e-13,3.5994529557180225e-13,0.9964691698944237,2.6924866301812887e-13,0.9980634783240835,0.9999054417790437,7.0897147028958635e-09,5.026188273503431e-09,8.019797426713665e-09,0.2939481784597839,1.389511764567037e-07,1.7356202368063988e-09,3.184095078148957e-11,9.304719419062393e-10,4.215711220816875e-08,0.013940079513118219,0.9890099427285404,1.2682987186780864e-08,0.8303272548090859,4.1390735828168274e-08,0.39715475715684456,8.491088985800587e-05,6.0305510684342504e-05,6.71859091960763e-05,0.0019760750488794503,0.9999747471835919,0.985597280317546,0.19727574738930895,3.0561568464412997e-11,1.6704261259294115e-11,1.870233754565671e-11,0.0006733342867350228,0.9999999252332126,0.9999989100579287,0.015850092321950227,0.9996863927381896,0.9734847118011052,3.648157297702685e-05,2.2840548167402008e-06,0.005869647925589869,5.397576675469088e-13,6.468852558875366e-14,2.353287351712456e-13,0.9851813007787216,2.3920673675180354e-06,0.000395384078994859,7.0709728742179885e-09,1.5609617907772206e-05,2.82806243789725e-09,2.931636429838167e-09,0.9999992830303026,0.9999858549935653,1.7109149537307655e-11,0.9999999629926872,1.52250691226141e-11,2.0800927435301568e-05,0.9999968619565945,0.9999985576512942,0.9999993411073713,0.9999960357294971,3.2009028297617484e-09,2.7708590620233785e-09,0.9989510581538664,1.815025006577505e-06,0.999963398203807,2.0203205102765378e-05,0.003981581387818624,2.512998869637363e-06,2.6518546834657017e-08,0.3604023555135278,0.9999899696323085,0.9999999875843008,0.9999992004057753,0.9999978246766792,0.0012866630751156706,0.9999995758329704,0.9999203031545628,0.9999711453050973,7.35564955659877e-06,0.4614606458227904,0.9999999999942968,2.7264853128315076e-09,2.5989837715795544e-09,6.307423047617417e-09,8.40070825021933e-05,5.535079705368861e-05,1.2071434059612279e-06,8.548851815496745e-05,2.551783658994463e-06,0.2003532527190282,1.0068497357447893e-08,0.9999317781852998,0.9992387463277417,0.985590045478992,1.9052479083893992e-06,0.9999876112711298,0.0018527448103916318,9.378078788662261e-08,0.9986433364197996,1.1695214607921675e-05,0.9953728527334509,0.9999955910780616,0.0002367766717978399,1.2480000554330994e-05,8.413429809845998e-12,0.9999922092929313,2.6618886948877936e-09,0.999999336470061,1.8827046662161295e-08,4.393527953457829e-09,0.10138905413646992,1.4490314742616294e-09,9.56569241891759e-10,2.1801816972770016e-09,0.9790567834013876,0.9996769984184423,0.9993937299364047,1.9887076400992372e-11,1.9903129828945467e-11,0.9999999999970413,3.060179957527883e-11,0.11466245722052927,9.251816578503072e-10,0.9999999522789128,1.413692240763983e-07,0.9909088451094176,0.997954738881569,1.3530224250530747e-09,1.224114846857182e-08,2.990853067847031e-09,0.9999998752071673,0.0002827078752420332,6.787638814025323e-06,5.656038218240005e-12,0.9999984417036634,1.2173978921796171e-08,1.8013874304696046e-08 -आध,shape,0.9710554425902139,0.9999319530331024,1.3818376470575404e-11,2.729913648536963e-06,1.4528041124229978e-14,6.71377173929136e-07,2.508150597876379e-07,0.9929341379728119,0.9950713432043999,0.8907853209270404,0.0004259787043810063,9.696312747181309e-06,1.1856215080933105e-07,0.9997134806509113,0.999757203439331,0.9999370058618652,1.4961682152079005e-09,2.055354571415063e-11,0.0005146739341738997,0.9992002700411823,5.104070616868081e-05,0.0010276882475889057,0.028543526942038287,5.694545952521259e-07,0.0026622756005750393,6.396239569101489e-05,1.4445662346582533e-06,2.8052510879855747e-06,6.857038573065875e-06,0.7075187766214335,0.9823570094871663,8.552761781259824e-17,1.58231357901929e-05,0.0007714042965130369,1.0939439934728078e-09,2.5070455996905597e-13,0.020034036677049068,0.00025550258791705587,0.9999996281191057,0.9997733190213579,8.057384558683169e-06,1.6666661182683032e-06,2.1193274353526605e-07,1.0250682806303294e-06,5.4018549583887135e-08,9.211026519838023e-12,5.348925735015932e-16,1.6194822350873426e-10,0.006789311152939842,0.026460126314949223,0.005912437097072256,0.0008361081001653451,0.24460801184883477,0.014667831326329345,0.0005271767189643581,1.3455282715856265e-12,0.011951146778431876,3.3074919833617696e-05,9.317680077096303e-06,0.0002395547413015659,0.00018454506094734932,0.08816029118595149,0.9942356955580114,0.004190763633834636,0.9989943740460803,0.0002622060439208418,0.0020209331872769864,0.9837349938676433,0.7228993204399055,0.972555642374871,0.0016936593770520638,0.999718907401473,0.003993384918961261,0.013571004285392286,0.999930589542253,0.00936781406371587,0.00024399100299887542,1.9797208324556597e-05,0.0003987151450588287,0.06936635076019992,9.397932858838606e-06,0.0014157006133600689,0.0006970460429455595,0.0006048055165495771,0.003239854505242809,0.0004266381066509683,0.9998097175648788,0.00015308778089035243,1.2688563546092795e-05,0.0003512271495180266,0.785286940923021,0.9877615120488713,0.0043695165495625425,0.00022232545062860065,0.0005991300933165461,8.335851209415657e-05,2.1898549180146073e-07,0.000285045648709106,6.9583764294092406e-09,0.04299505413937559,0.001103889708573912,4.266491704921051e-08,4.1398842486273563e-07,2.496199208423795e-08,3.97205858972471e-08,0.9975214608146074,0.0008093439510551372,7.346563455738589e-08,4.1867512950908724e-10,4.495950043880929e-06,0.017579858997278725,0.9999975412446668,0.9998159284271407,0.0455476662369276,0.0036888165021069304,0.0003659635943706378,8.642491701387437e-05,0.00012072629640207115,0.016390101521413684,4.2034201265707936e-10,2.7537974655553237e-12,0.04222194454476436,0.041783978158167784,0.001775758899999301,0.05987735937155801,1.2872600177943861e-08,0.0005468914627779265,0.00037691007437032223,0.023380481470485374,0.2032204678365286,0.00012384534828573617,0.00023626120988583143,0.0008438390588421396,0.0011167313728864087,7.4366060093548485e-06,0.003252490834105171,6.821388717319016e-07,2.4264166774081322e-06,0.009495489906867289,0.9997317589919874,1.1740774777421305e-11,0.964636227886251,0.2969321697395682,0.004781128813112155,4.803021493724382e-13,1.1791941764543704e-05,0.24626271946638412,0.000987173415288036,7.374972162747196e-05,0.0002342845137128848,0.0016362861356025034,0.9633791963153069,0.28674357344248763,0.001391506116930479,0.0002945898468471093,0.000401846141384156,9.696312747181275e-06,7.944981340581239e-07,1.0576858623431333e-06,0.9947171439539159,2.9459264873137313e-05,0.00014593470482807377,3.8665994009545e-11,9.480272345846816e-05,4.406959876201791e-06,4.1282184962022276e-05,0.0001872503823084467,0.0002797710069166963,0.0007063489619639143,1.7474564932064445e-07,0.015957904852145408,3.4047895888291974e-07,0.1737577226387462,0.9992769009358282,0.8051949953899264,0.07965663620008953,0.999205275502343,0.9998475763269276,1.9072621844864582e-05,1.3990960627185833e-06,3.1345514419183548e-06,4.140389498884415e-07,2.5070882739385166e-12,0.02762186730537515,0.6326115382894297,0.07144458026669817,6.250987042963429e-05,0.9995106060823508,0.001570969093189768,1.0069017530875963e-06,0.00034788904136460986,0.0002406890275048867,0.00021389520777590648,0.9830189003171577,0.05590203956047745,0.006485483887745543,0.00010083754018487987,0.15439882921730863,0.018870917646776973,0.7616107758333035,0.019462233061502725,0.1682945661454638,0.0009742484863065473,3.5582646267937233e-06,0.00026235787346108597,0.9999999768546991,4.784527046622263e-05,0.9999947533740335,0.9992271390845303,7.086963836293798e-06,0.0033224055628080272,0.40170890663225045,0.0010432170705226092,6.770197742667085e-05,8.817025382537595e-07,0.0015164312800270627,0.49772173008153986,3.957071226669271e-08,7.362206406152798e-14,8.302182698477907e-16,9.856627289387896e-16,0.6570169140220038,0.00165057017620843,0.9519315512990963,0.0001216688337200048,3.329044802807877e-08,0.999974871844844,0.0001107825848693476,0.9999022207741449,1.1368710874630596e-12,0.9999999985649162,0.0001464573488435101,0.0018064800488303814,0.00010306058697353548,2.7537974655553333e-12,5.712208312184634e-13,1.3049841138033874e-11,0.9961828817242581,0.0029948230844697304,0.44772398648447936,0.010638158707747569,0.9960080357086115,0.00024050339196434736,0.0017583980900404848 -आध,object,8.070618253938748e-05,0.9999988776213616,7.057036985228372e-07,0.9973658177040902,1.4078860834158799e-09,0.8399725995859906,1.8425274787514527e-07,0.8874995428460251,0.9637973399604447,0.9391584448050418,8.982633335981161e-06,1.1133785706400545e-07,6.728914779492854e-07,0.9999984152060017,0.9998808362482783,0.0012021027424698838,7.504570233790633e-09,1.030332189433879e-09,1.4604113255123683e-10,7.87966732918198e-05,9.061368229487407e-06,1.5773573679058027e-05,0.9039274831723919,1.4302400693298225e-07,0.9956302109328741,9.710311264737767e-06,2.2706261369078582e-06,0.9751064216854373,9.72451830098924e-07,0.9999935531094829,0.9988452955539763,8.045334757269922e-09,0.0025234914419266143,0.030625675798904486,0.7156337715373139,2.2385220899380688e-11,0.0014510517389391922,4.973428961916806e-06,0.8755657605056646,0.7629292649942788,0.8659306726695362,0.9151089132267631,0.20730720277772774,0.9993431328004362,2.0611933289206725e-08,5.62692834121169e-07,2.5088883164260764e-09,1.2748118921127606e-07,7.382447906628988e-06,0.438710736571411,0.907625078309981,0.9973937615645178,0.5951365697616849,0.419314020252565,5.179564523867106e-06,4.285339571152226e-06,0.0031715996355688642,7.543796473557061e-05,6.439583613575694e-08,0.00011255569917529887,0.0001364970740920865,3.259527784777198e-08,7.14983879641002e-06,0.9961380172777959,0.9999997788940527,1.0993175331002671e-05,0.00013468256666384961,0.9812082931119747,0.8306726485930662,0.84499022544577,0.2503367631783913,0.9998736639139547,0.982982664273513,0.2538486201351368,0.9999980834174957,0.998968276206476,8.849237877416186e-06,1.0607541724454913e-06,1.806147609424825e-05,0.28429434882048016,2.011832726099475e-06,0.019489689646346304,0.00025582532645839433,0.00017633931118008947,0.16381929918655647,0.00012087393430095306,0.0003200037381536253,6.008219628470692e-06,1.2165974949065295e-07,1.4309604126546797e-05,0.8924754756024466,0.00017549669948508766,0.0028737274537922993,0.003291582963995243,0.0003317475725157052,6.119866545496599e-05,1.129891675884348e-07,0.0002762565399723925,0.10383372362841052,0.0037060891159684016,0.0005381496624366358,5.856425594367951e-11,0.0003334087770780586,0.03916056730084078,0.007805698178929875,0.9984002901008103,6.3675401415729545e-06,9.692902145288711e-08,1.4421252359681228e-07,0.0028292810149660266,0.0015643575218059194,0.9999273074552285,0.9999208916803459,0.00035661075009996325,0.001096182742313874,0.0012118014181059789,0.05558414143570038,8.411420691419273e-05,7.212598003672257e-05,5.863628001972615e-07,5.9079219255355666e-09,0.00046112229904024315,0.4955651639063467,0.9681313303463477,0.0017781030367476744,4.35749470359859e-05,1.9468784731047586e-05,0.06638724588873594,0.3000094472601766,0.12820287571779243,0.00025570471288022576,0.01800975685686056,0.9664999303481643,0.18259436764866588,0.03059680085559773,1.3207619255308455e-06,8.222947510960325e-09,6.408011307604101e-08,0.1221320115315464,0.999999324037055,0.852014762923847,1.1445479614768482e-06,0.9508086651263749,0.9974080295552333,3.820047624410189e-09,0.0006867113322957866,0.0012266784664527253,2.2337025116986e-05,3.646063676006353e-06,1.298323776656789e-05,0.9860669360775328,0.0023240319704312877,7.074561366816441e-06,0.00022858637866770372,0.00013486822756680306,4.1638680738533214e-05,1.2398489095399664e-07,0.9864672317002273,0.9607232908301088,1.4457430037848463e-05,0.9996758693474995,1.3488923049756992e-05,9.750626203249821e-12,0.9982053468981714,0.9943220355697902,0.9953794011867481,0.9891701073987844,2.479031766987776e-05,0.0006310008399971858,0.9944170770317351,4.3845188467338095e-05,0.7371921311386497,0.01637429424842148,0.0002373329893731844,0.004293841735965998,1.61036945371906e-05,9.606989034522465e-05,0.9999876680165269,0.9983026692937409,0.9919752523043351,0.9917800024093837,4.761194480420151e-09,0.7619164821642753,0.8513724854745722,0.9804406003231076,5.92394221892562e-05,0.9790675500128753,0.9999991609440949,0.0005671124537544492,2.830412340647905e-07,0.0003661811893368978,0.00039134297413759186,1.1426544727993451e-07,0.42986613128676354,0.002430625647417321,3.5089738111742882e-06,0.1134098423503409,9.782132070027482e-05,0.9457978263611291,0.7117318859866975,0.9991695701097986,0.018658282588315495,0.9969773486187702,7.548370533726737e-07,0.00010938305160309015,0.9973283272989978,5.607837066890148e-07,0.999763567304439,0.9998132323720293,1.3733904722991163e-07,0.008226999356522106,8.343183114220556e-05,0.9955664224386559,6.560801743702302e-05,0.9833906295354413,0.0001508979108765412,0.0004542643341116432,4.3446094502928e-08,1.562516035192497e-07,2.81277035331097e-09,1.981756389142479e-09,0.9980420162661084,0.23428835383324886,0.9972935545165423,1.050134291009416e-06,1.076271294238375e-06,0.9999998320082921,6.6683209471465605e-09,0.0005056898208390794,3.752398971845026e-08,0.9999981112949968,4.948089039260633e-05,0.9816622019601545,0.059082002391896246,7.056957212629122e-09,1.4004266984784182e-06,5.6894641742878734e-08,0.9999987128760226,0.04825383056257273,0.012989240482681972,0.00019070405113473673,0.9999093297888207,0.006443577199176049,0.0005127603661776646 -आयताकार,rgb,0.9999999999997737,0.9999973594091002,2.122303134377108e-11,1.0,4.684271624366151e-10,0.7576681674280862,0.9999999999919855,0.9981509651895158,0.98244548618717,0.9459421175214393,1.5504296052660734e-12,4.562651641506631e-12,3.1893652654760507e-12,0.9999985726139153,1.0,1.0,2.2552146728595392e-12,1.6769044489138571e-12,2.3110216753009347e-12,1.3592980823639773e-10,1.7348302391703313e-11,3.1345579677053303e-08,0.7346724052842397,6.67553751637759e-07,0.025628940380014245,5.026322860872763e-11,1.0,0.010986276938460406,1.0,0.976121697714106,0.7449982486451625,8.759942877905693e-11,0.5137185832931077,0.20077218731952867,1.0,1.0,3.279782869631592e-11,8.764093632207211e-10,0.0026238541477965017,0.023109062198879655,1.0,0.031192300345107858,0.5874280952480639,0.9978788751480429,1.0,2.269999202132247e-11,9.087591463421565e-11,2.064361951542562e-11,1.0,2.5690122803971928e-06,0.7458707686459928,1.0,0.9849701113177309,0.1779599326002491,1.0,0.056398382942178554,1.9794792107841207e-08,8.526938248886033e-09,4.099668667515955e-12,2.447425743325858e-12,1.4901066872372717e-12,3.874379633229161e-11,1.0,0.003740241160366669,0.8510150971465497,2.6312136568695207e-06,1.7988838105300044e-10,0.9864707157339522,0.9969580573675028,0.9902067484537983,0.280737845721172,1.0,0.9999999999999993,0.9884692181311048,0.9999565708825042,0.01226972418001772,9.353514353624382e-11,8.38577204413505e-07,4.410256406995488e-08,4.638728624037707e-09,0.9999999999999996,1.0553420641557348e-08,5.0842424209435966e-08,1.5405639743221763e-09,0.9967115180730988,2.1208069498623275e-08,1.0,8.118116523085934e-10,0.9999999994657776,0.9999999999999996,0.9982884957979855,1.0,5.9448882499763925e-08,7.234062130896002e-09,3.191853587576383e-09,1.9109702686455023e-09,1.0,1.485756030692244e-09,1.4022678875815167e-08,1.5479019855711983e-09,6.147389695582223e-10,0.999999998852708,0.01795549185919457,1.0,5.635176258470744e-10,0.7571870561208729,0.9999999999999978,3.8339879509281223e-07,2.6671286229463194e-11,0.015864966449285263,2.058639621678189e-11,1.0,1.0,7.0667777282057665e-12,2.1603878635540836e-12,1.844895474556292e-12,0.3642420954897804,3.15356462312074e-12,4.731380186798888e-12,7.094899275143547e-12,9.169134798466216e-11,2.9165370627514245e-12,1.1004252624027139e-05,0.9999999999999991,6.058578450688703e-12,1.532623946929649e-06,3.1127788890053946e-12,0.30378899093699524,3.2135639599040743e-08,3.051834733620175e-05,1.3620026132988562e-10,0.015024116558794187,0.8076003709490687,0.9883165532318529,0.28356245549672865,3.292994577795926e-12,2.6844725685688925e-12,2.188390177142249e-12,3.30965500207147e-07,0.9760670505526021,0.9999999999999998,1.0,0.27340756364776364,0.999999999999986,5.426267973457974e-10,3.426016964304624e-11,3.0552297607261915e-09,8.052610744658018e-08,1.6693438393839124e-10,2.340996837687933e-06,0.9999999999999984,1.02634827860571e-08,1.0,1.5342528083707334e-12,1.0,2.6408203401851307e-12,3.9572511992608146e-12,0.09639745910095816,0.0026390070517478582,4.138967010580566e-12,0.7797993374982459,3.704632563741341e-12,1.0,0.03144163980319881,0.10657351232764081,0.35314457673172683,0.05297204791853869,3.1666161933518916e-12,2.362868656173312e-12,1.0,4.653695932331794e-09,0.7415301484943563,2.069551815622242e-07,1.0,3.3242159731500377e-09,0.9999999999938189,1.0,1.0,0.948964857931158,0.09735581731295895,0.04205672105618613,1.0,1.0,0.6514743147120379,0.7530058826235281,1.0,0.9999999999481932,0.999990237602268,2.371985409455328e-12,3.745798795048388e-12,1.4721433052265758e-12,0.005540601256712845,0.9999999999999287,2.0367501642122346e-11,7.388968654356399e-06,1.0,0.1415360137232651,3.778722535258482e-12,0.5962514748166051,0.15759649318079705,0.9999999999999976,1.2890322531828411e-08,0.023659238089459633,1.0,2.951400184208245e-12,0.05652410232834546,1.0,0.9999999999999998,1.0,0.9999999999999982,3.164546718745916e-05,1.8074319680150698e-09,0.01785847637939199,3.1615426291478933e-12,0.4866226943446766,3.075306573252599e-12,5.694528196476774e-12,1.0,2.018972925760958e-11,1.7536874590866776e-10,2.0215659243133093e-10,0.9999999999999918,0.26550797133114523,0.0012296344451859541,1.5604363763064614e-12,1.4594348193557914e-12,0.9999973152966436,1.6881334149408403e-12,1.0,9.037255537347872e-11,1.0,2.035580656262999e-05,0.9999999999999987,0.02745575351155075,9.143996074040444e-11,6.105255856370946e-12,7.75089047287884e-12,0.9708360557816709,5.551031145480399e-05,6.802290257165787e-08,8.746593766456342e-09,0.9999999999999993,1.3706403646509147e-12,1.6788335527788984e-12 -आयताकार,shape,1.7042633858735496e-05,0.013067295531118952,3.276539142052931e-07,0.009248015330541733,1.4676584461060798e-06,0.9664376648708387,0.07774060040468068,0.0018055020387357926,0.044548457081351876,0.005141635241726059,0.05421958321292356,0.0020973833485404586,0.06239891072291381,0.00017877928565202824,0.03210441503827941,0.9793930116067691,0.0006801563398046961,0.0026707940936025257,3.6207402058729536e-08,3.233536971176759e-08,0.3881320678053298,0.004328203120106302,0.9999818063354051,0.1790151649292406,0.00022054170028343946,0.00446208547932087,8.661575554206624e-06,1.1221204203660654e-05,0.9996199488649147,0.9999867239285428,0.999720451348592,3.2503305440370277e-08,0.9385762344300802,0.00021851250262459965,0.3758423999239487,0.005917593939169461,8.349672524503112e-06,6.373462519683382e-06,2.7507929740362774e-09,3.296988600176867e-07,0.595798605241192,0.19101296082224306,0.9997375075925621,0.9998928946481236,0.9999359325581222,4.5126401600860275e-05,3.159532511361795e-08,0.00034972541970092083,0.2852196164682514,6.63298111371966e-05,0.9999777721582666,0.8169324696743828,0.0001384062488030557,0.8068340740479256,3.239415301764306e-05,0.23048569585278833,0.003565673016919041,0.008265286001997432,2.455788748062007e-06,0.9193255081422712,0.18363914861723798,0.002571716836974147,0.004405343485532629,0.001491757651422983,0.999713254207931,0.03283515417495583,0.003047288952706813,0.0011273508749973164,0.0009234483765164232,0.0009112661738984889,0.9883358058445266,0.03404065286320642,0.0003521721193760765,0.001023430639172301,0.08997943332400694,0.041199639182952975,0.07028973584988213,0.012935174300874543,1.9047410238187831e-06,0.9718373163728181,1.6563969611512666e-05,0.9114066006950085,9.330263996222497e-05,6.506780797972583e-05,0.08028419544461496,5.327769616237753e-05,0.9999973006335312,3.368483006264963e-05,4.206471133421718e-07,4.277246694158345e-05,0.0005546040566274367,0.00023297905725000258,0.01739613290577343,0.8883048767605224,0.1823689958898744,0.0016515002772193505,0.9999473724893491,0.29146101384159795,0.8802146335175898,0.06286539327564826,0.07309527923730552,0.009861021911685825,0.054082858790838184,0.024453621316534824,0.8660851429920973,0.9999348961564984,0.0001638299114884737,0.011722683770821626,0.13864614619836657,0.09232533668150078,0.437861530420364,2.3946767404381924e-05,0.04494594697956647,1.335775883098546e-05,0.00015881988772031152,2.464990061209766e-06,4.339295304936674e-05,5.39496413328831e-05,9.886084726001047e-05,0.00016929045952086624,0.00039861640207186513,0.0001667670008209792,3.963556676538261e-05,0.558541878874426,0.00014422695710889337,0.2737858643476369,1.0995621863870877e-05,7.448929123221228e-05,0.00017285193221692433,6.986619324548207e-05,3.6030543153214255e-06,4.261760091119326e-05,0.999364648720947,0.00029072504856967745,5.092536557429701e-05,0.8986309974292276,0.21083129987651417,0.730140469791408,6.529366084527528e-05,0.9998490380141084,0.1441381815222555,0.00872719988737285,0.9893244324685243,0.4849423991244681,0.006846541642172941,0.6814803766647076,3.7118076850627736e-06,8.468253838158739e-05,0.00047865906298237917,0.001133519882200357,0.0757567674020213,0.0005704857455987906,0.9999878361786614,0.9444350346900434,0.9919839298755244,0.9494753703579735,0.0020973833485404643,0.0006596454488146219,4.940781876808031e-05,0.011436439945566802,1.546595091751129e-05,0.774636208528283,0.000379441620701358,7.589431973536256e-05,0.00029215400233432905,0.0005185183726637053,0.13311193993566073,0.2982353858794958,0.9942371295816335,0.016549859278537558,0.00011305131984851861,0.8428463559321181,0.0003383221789283797,0.9999979801344339,0.0002482400752976539,0.990666604595699,0.00017433955808709376,0.022506422927441948,6.047802153726591e-05,5.995364365636011e-06,3.4760247085035415e-05,0.0017316715780009997,0.08498711545960674,0.9999998745639751,0.9999956511063347,0.5871031714915518,0.5008232208247344,0.9971151857964856,0.9996398798260191,0.04104999644215499,0.9999507199928257,8.42781308167169e-06,0.0003663326473322884,0.008533453090242959,0.00031732258810451814,0.9933473803348091,0.00011864562023394813,1.2339358094332095e-05,0.9991883949932706,0.01879112460725619,0.9839831409889942,0.003646535603053742,0.00044985078972131727,1.022830974438516e-06,0.0002941763128657421,7.3757117875839225e-06,0.9684196890270677,3.517797745513628e-05,0.19204919119733013,1.5549650647782956e-06,9.564611682745943e-06,1.7057734595008076e-05,0.0010060876282753958,0.05338780097278395,0.0009318701097938228,1.2002743256397692e-06,3.506549688892188e-05,0.9782967720490439,0.0001617075776423764,7.389845338877585e-10,1.6373096912522154e-06,0.1023079560791786,0.9838963965801735,0.00013691951030056992,0.00200766469858968,0.5111428751391792,2.6795687990202487e-05,1.6404395586385092e-07,0.729125177247363,0.0004584317833753031,1.1105752670135118e-06,0.0002482240523136077,0.00017414427532659355,0.937247721139216,0.0003986164020718638,0.00015514990682321256,6.966086251704845e-07,0.9999939339217124,0.00025078043305139583,0.16274204092127992,0.00018497816683077763,2.360205487257409e-05,0.0001747287837991483,8.057294047794315e-05 -आयताकार,object,0.0009059854191533197,0.4081947504553715,1.409787508644394e-07,0.1714208765671182,1.0887628461465358e-06,0.9689022119540223,0.674835657628985,0.005547083022524554,0.10784418477021272,0.02538281665207391,0.006007829060343087,0.00019322829062651535,0.0029391852485643704,0.004423906024404213,0.983140507657672,0.9999721843490001,8.856842054580828e-05,7.387686667348058e-05,2.197702569196343e-08,1.865251743679415e-08,0.0682228583336314,0.0015713601509360488,0.9999722947723235,0.0219937854888376,0.0002985300063625192,0.0008716202476156102,0.00041932787598380957,3.736599459332533e-05,0.9996757535543533,0.9999774845484672,0.9996750264540218,2.2734078260288e-08,0.7670964326268921,0.0002158466922333299,0.9136518181059805,0.027045800990578447,7.760250095864063e-08,2.7246449773524857e-06,9.385353759952543e-09,3.176267980051166e-06,0.961763420555049,0.0805707344090728,0.9995614973681837,0.9998823141202172,0.9999806047278529,2.2869921215467553e-05,1.604120417232867e-08,0.00026305851814593435,0.8800061359180307,4.9968524875169586e-05,0.9998931321542558,0.9665722611261662,0.00028196546115715875,0.6132020389196162,0.01188804773173512,0.004292898457611236,0.0002724182102900039,0.005466301031550483,4.057446461752592e-07,0.2919717781269617,0.03559943311376802,0.000632591800596657,0.9515451229073516,0.004045779028361533,0.9997260551702167,0.004166116266111604,0.0013714866796064181,0.004674748784162497,0.0019608521564367445,0.006736806471416094,0.9779763632754223,0.9034683951966886,0.053437286664196164,0.001119485240185371,0.7887235570928633,0.05041160681788909,0.009511002421300064,0.0018226253834386671,1.9657990587437352e-06,0.8810058376767403,0.0011360215042560172,0.49578619277636427,9.908086798582058e-05,3.6672533357629286e-05,0.05185428555631425,3.363639075627509e-05,0.9999997441330841,4.308322218634354e-06,1.5105976165940558e-05,0.0066896363435539775,0.0015073147588950146,0.38287690096386845,0.0013358007994919382,0.2446825937911236,0.007671293000539705,0.0003570280795503704,0.999994043389681,0.0128665105119374,0.7219386990337555,0.019869320943932196,0.04755801489585849,0.057103193502393484,0.040426720890980344,0.6058955298260772,0.7793048194557743,0.9998936273846658,0.028432508674551972,0.001114366169796898,0.0010367623648327182,0.01956182510158724,0.06928321434001738,0.01585604562267362,0.9562197487355183,7.966782824209406e-06,0.00010932633066360976,2.12099975123001e-06,3.614476614701114e-05,4.559774444182842e-05,4.736977423750838e-05,0.00011824668941292915,5.775872912539843e-05,0.00011395084246994299,6.876961386430504e-05,0.9805307915633323,7.817695839193816e-05,0.09674244289298062,4.276640932168512e-06,7.051527562199819e-05,0.00011912162789062293,7.01880460482848e-05,9.872262446482566e-09,8.079417235032554e-05,0.999471460110154,0.00041056345271524807,4.853318734964544e-05,0.1059959467002197,0.00603345290086092,0.007478165588942532,4.5336838077529576e-05,0.9998291985709459,0.0512250167765855,0.35989168131401866,0.9930234751004532,0.9794133494629704,0.0013317174433174945,0.12487996309539216,3.894409614035385e-06,3.378250828089677e-05,4.606855319233894e-05,0.0008616027113979882,0.9290313644683383,0.00032528528078339076,0.9999992404974627,0.39750061877534293,0.9997632057981223,0.5661554342478549,0.00019087142680013008,0.0004541209636611733,8.687467799444056e-05,0.0003133468135487516,2.6263936716554243e-05,0.07248028592903856,0.007844914365373159,8.745557002495798e-05,0.0002767968552910739,0.0010216117872516501,0.07419002992921475,0.07395887305069614,0.7719202963925809,0.7711040659940271,8.545658309996209e-05,0.8654963895855673,0.00027138106879896393,0.9999999197461151,0.00012814442598962992,0.9995968320901827,0.39258929412940674,0.9731682945134158,0.0001893108454930326,9.877656171521744e-06,4.111975780436893e-05,0.5281653071744136,0.01351847921935178,0.9999991883754807,0.9999840445357896,0.9837186319292064,0.9273705547522637,0.9994971548993473,0.993060781398256,0.0017345917568807397,0.9904350852313479,1.6155482641581137e-05,0.0003219251402000257,0.0022060840993219618,0.00029844588882996313,0.999790148387665,0.0001216719096784729,8.720057750009483e-06,0.9970236431002475,0.05507870631141596,0.9996815823255252,0.0010270976508225953,0.0005711786863700879,4.052883194582434e-05,0.00018953733404606214,1.3698257781177177e-05,0.9995358135621765,0.006596782023554517,0.9716452119016492,5.9055720978499704e-05,8.636059016274401e-06,9.544360764254303e-06,0.0008926919049037908,0.00382064442862028,0.0014566563351144765,2.092221554989431e-06,1.653471191435324e-05,0.9999640572151757,0.00010187590701205956,6.837239576014004e-10,1.3770260905630985e-06,0.8467013682068079,0.9772275476067747,0.00045091978941836546,2.0113825583485146e-05,0.07708697018409595,0.0020692542439138045,4.633574023194468e-09,0.9998700317919461,0.0005028239398461886,0.0022326955414079604,0.0001619617201914612,0.028934928427015914,0.8326692698572435,5.794714845864843e-05,0.00010127176491682422,5.853833229221138e-07,0.9999750898282105,0.00018141670471990363,0.009417645858190387,9.249339034452291e-05,0.023567274240933953,0.000101677272898532,4.063218497561566e-05 -आर्च,rgb,0.9999999999490112,0.9999500043667774,0.010687110055639288,1.0,0.1648030279343665,0.5659098341233063,0.9999999999637141,0.9759057356189642,0.9233207504969366,0.8995870843293792,0.0002452430829221668,0.0014055430030258278,0.000924592833925599,0.9999732991826001,1.0,1.0,0.0005639533735207457,0.00046911885391768936,0.000512210283733463,0.00010550187909138011,0.0007636366441471473,0.18892062557497752,0.5643990688695966,0.8379374857274952,0.14013981526544114,0.03732542268561848,0.9999999999995881,0.09753235818985066,1.0,0.9986380279409491,0.5579571632734781,0.030998168430090053,0.4480408021690162,0.7866594191037163,0.9999999999999998,1.0,7.551454385634216e-05,0.013229084401192817,0.04582677977595264,0.12670734344109394,1.0,0.9357559456988851,0.4727590362500805,0.9998089453678854,0.9999999999999645,0.005056877848309553,0.0281462479201164,0.01048679612833548,0.9999999999999527,0.0055601172188382356,0.5605934966552159,1.0,0.9381694672620858,0.2916920525684988,0.9999999999999993,0.17606944082626846,0.0021122603644519113,0.0017763925469852673,0.0012086024197426285,0.000639539065813209,0.0002452588839931538,0.0011396775599871664,1.0,0.8472995757845356,0.9968614627029909,0.8413549635669083,0.05736952114627761,0.9474471078370288,0.9702222950527479,0.9412720576774997,0.34518653304663865,1.0,1.0,0.9564337949668211,0.9993158473807113,0.8811710745055947,0.05285520459687641,0.780006694182188,0.2543755849158065,0.001547688703900229,0.9999999999982625,0.0015509683057859404,0.00819131929274026,0.0011730766845258413,0.9672799676107146,0.0072275519339558645,1.0,0.01633026618460483,0.9999999924140254,0.9999999999980695,0.977966317149624,1.0,0.0028814117791833094,0.002058522259619164,0.0014526806541800674,0.0012785095589742035,1.0,0.0011633097987182703,0.0017447340687726256,0.0010840788289086644,0.0008630336649592577,0.9999999995149402,0.11548265609384449,1.0,0.0009853870963342374,0.5635444198053575,0.9999999999998022,0.7726308482031354,0.028169596592599044,0.11217319626975004,0.011771869373165818,1.0,1.0,0.0015580232084240048,0.00043668080919487544,0.0002938219006782443,0.7380253061695377,0.00015841170467955956,0.0015497922035617832,0.005955802531567616,0.034087866884614564,0.0002719860294189916,0.009191801788392417,1.0,0.0010823916491754023,0.0022760894429882414,0.0003008985747773872,0.6845153595484255,0.0009534426773169859,0.04861122900952513,9.770348984943373e-05,0.5000362384578811,0.599081860345371,0.9550716471226385,0.7152314263370172,0.0004009296553444887,0.0004906296928927079,0.00044895584963671565,0.0022950415578424864,0.9988967712854961,0.9999999999999998,1.0,0.34408815657194797,0.9999999999999993,0.00015477833583573043,7.474931434153799e-05,0.0002455766529084986,0.35259536995381435,0.06524675548329628,0.8767272371248784,0.9999999999999998,0.0010410831549707462,1.0,0.000234205388470949,0.9999999999999993,0.0006839052218228169,0.0010845818942548195,0.2807396004020806,0.08806921418881346,0.0005475666259620651,0.6465002990515262,0.0005561197910856985,1.0,0.16633765282294513,0.2447315948075978,0.36911058990291795,0.17797000537116364,0.0008157284161294929,0.0006009364960939436,1.0,0.0007203124743844758,0.5579271710748105,0.0034918840254649307,1.0,0.0005632506801858114,0.9999999999685367,1.0,1.0,0.7807202282788521,0.27253319183297586,0.19015190259657078,1.0,0.9999999999999998,0.5189719829046106,0.5608870282651554,0.9999999999999956,0.9999999999998705,0.9998593903638556,0.0006070156498493578,0.0010578086513251435,0.00023033939397008215,0.5392393556469548,0.999999999974895,6.80781715957219e-05,0.019816827980149995,0.9999999999999656,0.5945329031858425,0.0006806853818717453,0.48423675686869,0.2832779262082977,0.9999999999999998,0.0012398898714901887,0.12350452205700146,0.9999999999992504,0.00018109114719037198,0.18636623045935816,0.9999999999999993,1.0,1.0,0.9999999999969715,0.07138983065549433,0.015986645112342452,0.1228065114727471,0.000863484596086434,0.41519222983391385,0.00041587097480368714,0.0014336010355272411,1.0,0.007296831073137355,0.060169128856715645,0.0560522520178164,0.9999999999999996,0.33994024920491756,0.766989218972896,0.0004341092616594754,0.0004418230814677091,0.9999494264759342,0.0003488107527959104,1.0,0.03368964014592724,1.0,0.1659129097952299,0.9999999999999998,0.13840927439098116,0.03105231244970012,0.0011052023929112545,0.00224685771082828,0.9989888424364474,0.048670615913268926,0.0023643639891917814,0.04674420500557446,0.9999999999999993,0.00014295090542891555,0.00017258126570924713 -आर्च,shape,4.753323379609668e-08,3.3375266661862185e-07,0.9999449044336292,0.00010054125565192769,0.9999995211704412,0.0055311199004977685,0.0011490341947383393,1.2625775966273265e-07,2.9554637142316506e-08,3.278740072750708e-08,3.363494910662474e-05,2.2217995754976352e-05,4.656901947660832e-06,8.51534443365665e-06,0.0002183546558631906,2.7349378258536772e-06,0.14012817257846294,0.00017813990149163512,0.01961173376628339,0.6212294986947579,0.9332241023791096,2.639900134087502e-05,0.9994437223007239,0.07348817030392114,0.00017071357658554552,0.000744575585869177,8.225005868523605e-06,2.4418509242349606e-05,0.171347908778237,0.7285778607018668,0.00083945188919001,0.99948018506689,0.9998573427426105,1.3725343286861577e-06,0.9999933943516017,0.9998896037727962,0.574924060613798,5.614749473427685e-06,0.9987001067729149,3.8013483676902766e-05,0.0024170150967337957,0.0024516955764341416,0.0088844840105249,0.005461910100118471,0.0055958720659742694,0.987582517790313,0.9999947184805398,0.9999996298994183,0.044660286782923615,4.3045350604384926e-07,0.06144046910945054,0.3388684003533188,3.527788931495463e-08,0.007106620602870642,1.9933559671774912e-08,0.9999999486204276,6.789233914703387e-05,2.3431140203721627e-06,2.628491923035853e-05,5.198757536195661e-07,4.049599183432397e-05,0.00045319010738255913,0.9999534277891575,1.4535189591187636e-08,3.285440060308009e-05,0.0003245587833833464,0.007407885837538677,5.058922394124791e-08,8.055171748445566e-07,1.202914458193086e-07,0.0003530512651087279,7.832972146194508e-07,1.2078413587961568e-07,7.840556174633081e-06,5.106862091910097e-08,1.3725843910323075e-08,0.00014545900305537208,0.001207762220439627,0.0009132890770672355,0.11085227038775992,9.588613406354204e-06,0.00018059771860795985,2.9138624031241495e-06,0.00011971728253515962,4.250412144443035e-05,5.822314033383652e-06,0.12616759600830818,1.9987161851497522e-06,2.198532492871763e-06,2.0995833210788606e-06,5.121889627786391e-07,2.0650121537209983e-06,6.809081335921945e-05,4.604760951322969e-07,3.418829031169446e-05,4.985892807584547e-05,0.009950605138288172,1.4418436661645204e-06,0.00016773839483633687,6.0571430459814454e-05,0.00023695546876299254,0.2789210949242076,0.610033458817968,0.15808204821648597,0.00010960230014505144,0.8111942792464636,2.528948234496035e-07,0.010621373810255762,0.0019770830311512597,0.1513857927816384,2.8940833722290713e-05,0.00043801121374879956,2.481006834680579e-06,4.1398498703360724e-05,2.06186338503343e-05,0.03765488718381949,2.8608330884397308e-06,2.881243330685924e-06,2.610431542416696e-05,0.00040868038616240557,0.9999998615026561,8.221728169163614e-06,1.5383249095025652e-06,0.003225852396663643,0.00016682322157866297,1.4565970227969848e-09,0.00019506322528318944,4.91470295667697e-06,1.435273248749196e-07,3.1451003065928707e-07,0.00024144027095886726,3.7124561706487333e-07,0.00038367120611639216,1.456547448048062e-07,1.0957070801219215e-05,0.9994510284449415,9.243672526912455e-05,0.9997780292326337,1.543297443764211e-06,0.0012338121580654318,0.9997482481170308,0.9999975323954833,3.969167977635769e-05,1.47555151483688e-06,1.0166409472784216e-08,1.4600032820106517e-05,0.0020878482366070345,0.0009262891831732054,1.5101426522334888e-05,0.0005096529535472085,1.4402274240042097e-06,1.8436437519069755e-08,0.984780126275112,3.935051094337839e-06,0.0006785315200867554,3.5099506144700595e-07,2.221799575497655e-05,0.00018112272590285923,0.0003630158898817853,0.5729243424613495,0.00022282057382950565,0.00018583592038601385,0.9999980852818908,3.3159311207592152e-06,4.838266816051237e-06,2.134276171477932e-05,0.0006530639976194046,3.6265533893024194e-07,0.0004356737389726253,0.0012941265134905086,7.175664310963739e-07,0.05603682292791673,3.8075121045293364e-08,0.014858710578428644,1.4732335499780026e-06,0.0031264648780975697,9.791722634824185e-07,2.0683252610721194e-07,5.655445632571533e-06,5.249538883712282e-06,2.4692428666391307e-05,0.9999028634002185,0.999957777645324,0.9998058402011616,0.9826208839892686,0.001181771580066523,6.277052872441905e-05,1.8065039431131798e-07,8.003700164658718e-06,5.874452051216816e-06,0.0004329918543244713,5.974079703356424e-06,6.9892448353163465e-06,0.6527450880247186,2.9774582299273912e-06,0.006426071177002245,4.06634493376609e-07,0.00017998965569450775,0.019440594900663324,3.153022381606101e-06,0.012429993015231611,1.2189745559613039e-06,8.882912410862758e-07,1.9258354728606627e-05,0.0866234938571741,0.0012172072885507867,2.1261111827316482e-05,0.00019783177205273165,9.32131411625424e-05,8.957580583310639e-06,7.418326144445684e-07,4.912312570128095e-07,3.129495285983897e-05,1.51999167020266e-06,4.381555266693749e-06,0.0001647587471249668,1.1076429439965713e-05,0.9999742631735533,0.9992031414089777,0.9999712886228795,0.9999884912107283,1.485512277125785e-07,0.00011377083279216593,1.5508184996619674e-09,0.000110897550539929,0.9855447105019668,1.1669331492085478e-06,0.0025373718961411353,6.514422081939171e-07,0.9998180336904692,0.9999647804257644,9.227377006318494e-06,3.7948741118496155e-08,0.0004449480816148506,0.9999998615026561,0.0032828320806120794,0.9955320835442875,0.11864246414242194,2.0177763914040533e-07,1.024379261831618e-05,6.845332206785191e-07,0.9998107409553549,0.302206374526029,9.515110148409731e-05 -आर्च,object,2.7469441854734943e-07,3.878316478519904e-06,0.9978173342710388,0.001080513809003867,0.9999825097448509,0.00912197930687268,0.0028820254901567952,2.5188649618264366e-07,1.357944466063176e-07,3.6823442144554305e-08,2.3513821969501286e-05,1.5630434059450425e-05,2.888753364121752e-06,6.666001302404732e-05,0.007272509874931062,5.2684233700800085e-05,0.058717792630154655,0.00014467406793595644,0.004244093501193044,0.1281566358438179,0.8031686008217309,1.3927758224445146e-05,0.9994766844556843,0.017061031222107,0.00016976054602507905,0.0002671310954395105,1.721601344933634e-05,2.398385830400071e-05,0.5158960580759885,0.8709966836575327,0.0011521419919783883,0.9815617692331693,0.9998709465686931,1.212490621663232e-06,0.9999983543182054,0.9999126422151546,0.07679543599973745,6.949386326954571e-07,0.9896711325250221,8.415463707898079e-05,0.05857628651934815,0.006790549534730432,0.011696459471259845,0.018721297818509022,0.025171157095608045,0.8489476931274259,0.9997618671493114,0.9999889266703835,0.14941614853525534,2.8140622660872536e-07,0.12189496847834759,0.8454191914085697,5.4066217631113994e-08,0.01058365864263475,2.3832353476795534e-07,0.9999996447336182,7.209766361929469e-05,2.9497393030341217e-06,1.099975844800217e-05,2.9360998019964977e-07,1.2285212923068766e-05,7.214063799922902e-05,0.9999846123304114,5.9258142427680354e-08,8.155334594514925e-05,0.00016359364882548308,0.002071680346738969,7.850922389105721e-08,1.5838387152912334e-06,2.519331863380647e-07,0.0012078473916826082,2.6292790049516034e-05,5.602616734428628e-06,1.0286177146144304e-05,5.742934655331986e-07,6.831755524152441e-08,5.9324200120048764e-05,0.00042556462437903,0.00020486650388884935,0.07990762648131676,1.1755695606046261e-05,0.0001631736239421548,5.621526671483113e-07,0.00010688307449441332,6.699281636212993e-05,1.335858141650186e-06,0.5726185898047913,2.794599661271588e-07,1.7966137706252027e-06,3.947592235158709e-06,1.2723407188934355e-06,6.570348194148569e-05,8.245121427004141e-05,6.447931476957378e-07,3.9929622390775206e-05,4.295849606402136e-05,0.07365652068616266,1.8478001953696167e-06,0.00013612647536990878,4.527150824587795e-05,0.00024160050447714676,0.49130609993034713,0.7205285761773493,0.8294319417931992,0.00011022762601665216,0.8363006533417591,2.1784871669948243e-06,0.0024765022596690135,0.000331614525142206,0.14059687431291046,1.200153450920845e-05,0.017507558652649392,0.0001158081298381861,2.651347530388462e-05,1.3671238720979289e-05,0.007199601564317064,2.321976320639713e-06,2.766080134026698e-06,1.9306205206922897e-05,0.000111768272429208,0.9999925626103018,5.349504174209748e-06,8.224893280249334e-07,0.04667430007261277,0.0001389960578206174,1.7021581297176818e-09,0.00013065622950020128,4.2699712465651165e-06,6.967259829583814e-08,2.1920175635865458e-07,7.89271416708763e-06,2.1999590054433936e-07,0.0008047217033029614,1.8662612015181682e-07,8.287587423725296e-06,0.9982409425357831,7.586901925787337e-05,0.9961396580591572,6.611437011670494e-07,0.0042340748498412425,0.9998225972432557,0.9999994133241437,0.00012364729479240523,3.251380592934536e-05,6.655273953664628e-09,3.310651442121859e-06,0.0014370155200258495,0.0003656558328595043,5.926714896322028e-06,0.000156068321580085,3.486501201312367e-05,1.6323498627217055e-08,0.997268361221542,2.0102133145628797e-06,0.0032512483020669734,1.7716466461443864e-07,1.5495934515858682e-05,0.00020467536565291013,0.000306908738961992,0.05611189206341013,0.0002874849959533783,0.00015443623678739897,0.9999987396692717,4.238333529862067e-06,7.763509606701806e-06,2.873999479833656e-05,0.000687153953390709,1.4499207543173517e-07,0.00010438978077561,0.01930134980524445,6.537480081835782e-07,0.06919995056632414,2.3583244853008783e-08,0.1885122386548915,4.644176320066214e-07,0.012513543386036722,3.319232286567154e-05,2.2853556562402325e-05,1.2318704711186356e-05,6.8289069676826886e-06,2.3605213416831166e-05,0.9999492229412652,0.9999671081119048,0.9998095517799412,0.9859138342410518,0.008093835932672606,0.0005839113290971392,1.201345477909091e-06,2.602172359492143e-06,4.524991514648244e-06,0.00030164609821182065,3.5689329587050285e-06,2.519656345328603e-05,0.38649354975769923,1.4553904218871996e-06,0.03918256944206273,4.205425652207157e-07,8.47198360242846e-05,0.031497117210956514,8.47650847632681e-06,0.16143310228792213,3.55992207430204e-07,1.5097162722942038e-06,3.777116357005016e-05,0.020415770818858474,0.0011974555628652202,0.00015004247570253427,0.004361189732056056,0.004491174432553845,1.2846958811734463e-05,3.730443071939489e-07,1.163275294683329e-07,3.8159338785013184e-05,5.674832346411412e-07,5.8838566297405455e-06,6.439659503326802e-05,5.834495126791502e-06,0.9999950260869197,0.983263553728641,0.9985564773640005,0.9996240238032212,4.758043981376316e-06,0.0003949429752825284,5.499901130323582e-09,8.13377985249025e-05,0.9123592355059583,7.445883478920186e-06,0.0008156472708043996,6.657918737226105e-05,0.9975891009705525,0.9999852348090703,2.906557063497803e-06,1.723414489674908e-06,0.0010805751374858273,0.999992594356249,0.0005072444883455047,0.9040827002994954,0.2148896188130491,1.6682500029752756e-07,6.452105823630405e-06,1.2298973838037202e-07,0.9999055729343335,0.10151946714336241,6.578170649824536e-05 -आल,rgb,1.0,3.2800467770836232e-24,0.0015526286395458186,1.7442075408284535e-15,0.0005623857656681414,0.00010144084488755563,1.0,0.9983901273733137,0.9931970681124366,0.9995788476937323,0.0011588263715615918,0.0004500111548532656,0.000704441060180324,1.3972572861662174e-24,1.4328321589918747e-17,1.0,0.999875806814807,0.9994958987102883,0.9998817576010816,0.050826465285686656,0.9999987143666076,0.9999999999991838,0.0004037827117876208,0.9999999999999896,1.8546035188737612e-11,0.999999192902134,1.0,4.923367447248719e-11,1.0,3.5961875180780426e-22,9.937882946840125e-05,0.00012459515439281933,0.00024197197219961062,0.9999999573033194,4.029896672068279e-21,1.0,0.04479600693015655,0.9999999997009192,9.399595536951423e-07,0.00038857373422815014,8.27985280915337e-16,1.201396176350282e-19,7.84646511801753e-05,5.342496179704337e-23,1.0,1.5673489459599635e-05,5.382730408717446e-05,0.0016711468543618075,1.0,0.9803125416243507,0.00012753608640301355,9.617738665318887e-16,0.9988011574661979,0.0009489414068349556,1.0,0.00015096903220454728,5.252808650896614e-12,9.6821090700086e-12,0.00045014331811968377,0.0008996496708136342,0.0014860879549535657,0.99999973173001,1.0,7.691444920019877e-19,1.5267813983634403e-21,0.9999999999999964,0.9999999949856722,0.9996661353446936,0.9987342740400215,0.9934986454086471,0.0005162533903154088,3.081305505137352e-15,1.3106828499899904e-15,0.9998998357929442,2.668604835008678e-22,3.021604386915373e-19,0.9999999126942215,0.9999999999999905,0.9999999999995555,1.703953638079188e-11,1.0,1.3646302153473557e-11,0.9999999808989702,6.01372070281912e-11,0.9975605464874375,0.9999999902843472,1.0,0.999999999781066,1.0,1.0,0.9991062322674177,1.0,2.2156180178286554e-12,7.425364271310996e-12,2.3940683572911173e-11,4.3526566646912e-11,1.0,6.283911653623367e-11,9.427717834597602e-12,6.958003710229473e-11,2.3115149487848e-10,1.0,0.0005202696460742802,8.627202117419706e-16,2.094107971108257e-10,7.889594800858931e-05,1.0,0.9999999999999802,0.9999399639454849,0.0009708572794339356,0.9999992074856351,1.3964678169803663e-15,3.1128082425426484e-16,5.512255135637533e-05,0.0005617972772449268,0.0005612918860315106,0.9999932590710287,3.8848169622864486e-05,0.0005627321226423094,0.25651500340532873,0.0001749654924108354,5.239729681167754e-05,0.9407429279930175,3.749512049462703e-15,3.4045751806826155e-05,1.353622178604185e-07,4.369882824509262e-05,0.999977654929967,0.9642236459984007,0.9999994101568295,0.0001665692395193461,0.9999999375912018,9.85730322682989e-05,0.9998707030164339,0.9999957944896233,0.9999405498866333,0.9999263381290734,0.9998385797277446,0.9590804465466851,3.3798568604919423e-22,9.120811033221381e-21,1.0,0.000698962213869592,4.194887459914089e-15,0.04292517126079269,0.025190706171221575,3.4935946660993996e-06,0.9999999999998055,0.9999999896161959,0.9999999999999969,4.498455446439403e-15,0.9996968385405129,1.0,0.0011554375813310098,1.0,0.0007098307529384377,0.00035384864177955916,2.2677072978647233e-13,1.188616813009905e-13,0.9999800123140212,8.785105359100706e-14,0.9999745939795796,1.0,2.641340813929692e-12,7.60151934514045e-12,3.3168639181406986e-11,3.941636486297203e-11,0.0004457225027957576,0.0008980146057963174,1.0021817353448684e-15,0.9993063181599529,0.00012679415146078394,0.9998841492359202,1.0,0.9977548683395121,1.0,1.0,1.864033807589638e-17,1.9519046559185087e-13,4.056136341625195e-13,1.5087879381323066e-12,1.0,3.516749455774082e-21,0.0004041917330606648,7.827266141214666e-05,1.0,4.306979317522131e-14,1.4153611517307205e-23,0.0009086196072116469,0.0004473866598951438,0.0014597175894782773,0.9999999986797878,1.0,0.025360781749083832,0.9999924100092978,1.0,0.9999862499774105,9.018803679382759e-05,0.0001839960894048769,0.001753349730879088,3.5232154088489156e-15,0.9998602184282596,2.3869880721343375e-10,1.0,4.506236185909983e-05,0.0009751200177211943,1.0,2.278912008341996e-15,3.124726532753668e-17,1.0,0.999999957037841,0.9999999998361722,1.7545575511775044e-11,0.0005624007694575081,1.4746748145141484e-10,7.572122923328294e-05,0.0001300712254936566,1.0,0.000192903934531344,0.00013292422134645503,3.384723866283551e-05,3.637514499063222e-15,0.0007002025788006429,2.1323694097447065e-18,0.9992586559240128,0.998899366480769,3.329578084055278e-24,0.9994176070534455,1.0,0.00017760657573666225,1.7012190708366548e-21,0.9999999999040954,2.221236954593011e-15,0.0006986651111583998,9.605589548228335e-05,3.5039663232692813e-05,0.00015200155427412616,3.8238681131814097e-22,0.9999963671776009,0.9999066105882648,0.9999999999862796,9.132969649543137e-21,0.0018836036395893513,0.0005603265983262183 -आल,shape,0.9997980523492568,2.550062858219981e-05,1.980527873561257e-08,0.00032512376363782417,5.025855622471381e-09,1.8796455934161275e-09,3.2050590692765626e-09,0.9999881861210017,0.9906929160781076,0.9994353512396603,0.00011052110331800936,0.024126167494747542,0.0036682776608579193,0.005204098383097968,6.254411426991733e-08,1.7386917322033307e-06,4.264033565912346e-06,1.3677142811641092e-05,0.005767491249706751,0.9351742808627109,0.004830702865292216,1.3520555466938687e-07,1.2004807492005036e-07,6.9256828629210625e-09,5.868096501595859e-08,2.303191378886936e-08,0.9943034848863013,2.1998408739352167e-06,0.0012116941142775335,2.9908830593130338e-05,0.0001415245544772045,2.4244402342169367e-10,5.049816627442445e-08,0.32523942866380146,4.593566371419622e-09,1.651349440606222e-08,0.8393275899260632,0.9999970555825587,0.987295978887973,0.0013736213357848593,8.075752689173059e-05,1.3249264116000791e-05,1.2511160046966703e-08,4.137323811725169e-09,3.0025086039822052e-09,2.693086495233332e-09,1.3053844050411617e-09,7.87040599331072e-07,2.5056990501433554e-06,0.06578537275690181,8.694434223853628e-09,3.4251728736976296e-05,0.999777108913886,0.00021145509380745281,6.956772670689084e-05,4.46308312244368e-09,0.18608412407162558,2.2692810239869317e-05,0.9744742319952544,0.0011776303268201803,0.00020242857696093998,1.2140931560328076e-05,1.301128983308335e-08,2.549175522627192e-05,4.482863270106241e-05,6.650578006504198e-08,2.558597306902639e-07,0.9991091694155716,0.9999464643555797,0.9975592911376615,0.00015118627546657746,0.004076662425665491,0.0001247429073832934,0.9996114606868337,4.5809972224809226e-05,0.00028969588036134185,1.4627291689192054e-08,6.084895983258605e-07,6.696036756108539e-07,0.0003747659659930378,0.9997782823235294,0.04728164977713179,0.9938128697875148,0.0009932303000032415,0.9993728015353014,0.9948561116786484,9.747079041817518e-05,0.9999361805798589,0.9999999246773713,0.9996496463819551,0.9998192892363579,0.0492388281056586,0.04224008121128626,0.07831219566826422,0.0031165357184894057,0.0024053258627030846,7.15433469147119e-09,0.1323899299359145,0.00022318553396711568,3.388172230477944e-05,0.0002481396061244299,1.2108800624426194e-09,9.265976929967531e-08,9.193591797005437e-09,1.4047437191261994e-07,1.4072834758849951e-05,8.336023616769813e-06,2.0833734255192893e-08,1.7651157589464757e-05,8.501031790542861e-07,5.563210004713008e-08,1.3232027551034126e-06,8.246146976893008e-05,1.4204496399626436e-08,2.311150915352897e-08,2.9906990695649565e-12,0.00174625726668915,2.3807292423915833e-09,1.7859036252480863e-09,6.301633082687243e-05,5.318642926550521e-07,1.3447887895252416e-09,0.32919540163279054,7.559653684924919e-07,3.1556927788139285e-08,2.6240076535201937e-10,3.1092788007272404e-08,0.02117384978578247,0.3323123094296087,0.4971030826634283,0.9999990196654687,0.5274966303267784,2.7739163198483927e-06,0.999571331724268,0.0025013797471761167,8.105330277983193e-07,2.975936461795171e-05,1.684412901247858e-05,0.8704250987646858,7.569849342941837e-05,6.362335117453522e-05,8.164375570218511e-07,0.0025578634531362933,2.8015762771297207e-05,6.696310139730303e-08,6.170370342881304e-07,0.1320509814344879,9.852689584819685e-06,2.7187629479790156e-08,1.5218859240513202e-08,1.5149640236824762e-06,0.9998715503548523,3.49459122199678e-05,0.00011905367349732514,0.01050190610066136,0.00011693655055436763,0.02412616749474735,2.951492112881538e-06,4.164814714278475e-05,0.000812829003949754,2.5127441563624724e-05,0.11993537012104918,1.4634386288505058e-08,2.1487625382519084e-06,4.098524332532504e-07,8.935086443192616e-08,6.838344206931e-08,0.0012124834670414245,0.04585745850759693,3.9827606831293094e-07,0.9998144605040316,3.163545372200257e-08,0.9999211657652877,8.111744713585945e-06,0.9998857514579975,2.8247795785141678e-09,0.010942467390389315,2.2104877184927512e-06,3.133988035535933e-07,3.929650847564353e-06,8.806125830862894e-07,1.7086621982064545e-09,8.64437705838676e-05,1.8977060030250407e-07,7.865744584277951e-07,2.1731678895178087e-06,9.316783814392671e-07,4.939202356742166e-06,1.540926733816696e-05,0.03784506302947231,5.656969339728703e-07,0.9974478641596737,0.9999088376686274,2.0681296638654244e-05,0.9999830271063745,3.359282790046802e-09,0.0008641311041113064,6.648425526627769e-09,1.5193742694355609e-07,0.00037873853723545517,1.0702860322316948e-07,0.9999910820214313,3.970540939817856e-06,0.9996830018610342,3.382486632365923e-10,4.7476312719855644e-05,1.1222167447168883e-05,3.6326545569811986e-06,0.41544094842873447,0.9999939667661087,0.08656634758442311,0.9999871801395668,5.490321349416709e-07,0.21972114576444235,0.0002442885992690504,9.007569726413141e-11,6.969697886049689e-09,1.7823604322883186e-10,4.7404082879759324e-11,9.708789134871579e-09,3.446904522040812e-09,9.410387815747554e-08,7.297917590847254e-05,0.00023046476020805666,0.052717419356486904,0.0004188165181174612,0.003897535915667752,0.9419384055769092,2.2947974933384488e-07,3.470742221814719e-15,0.00012465398325527797,0.9621526478396074,0.00016971359545094465,0.0012154651632759568,5.318642926550558e-07,4.496469009841943e-07,0.00017046863148284386,0.00021158708578748403,0.9998300043851065,0.9997732483562046,0.9999654331528913,1.7969454731641736e-06,1.2343161572516802e-11,5.458913853477626e-08 -आल,object,0.9999999985116435,9.650808824946818e-09,0.00011677947443771333,0.00027834316938159774,6.365248777457257e-05,3.122258110424337e-06,0.9968417946563706,0.9999610344972282,0.9867258449959853,0.9997515891834168,0.00024724573470483267,0.007282559408363485,0.0036031479848821026,2.363713248836103e-08,1.961664953796151e-08,0.99999605302401,0.015729995647910246,0.03764325724604546,0.30788295733388027,0.6713373997564045,0.7948687741911107,0.2674441274374213,6.226238069263871e-06,0.4002335024933599,1.4832393189301266e-07,0.0037661232953555552,0.9999999935437234,3.927876225659138e-06,0.9999999207397329,3.062311279506774e-08,0.0001563583901030543,1.5948242976589055e-05,2.4795660874890928e-06,0.9935666601860523,5.68503548420143e-10,0.9998579619328075,0.6486251662467214,0.9999978303641734,0.14282185553340473,0.004501562516064247,4.1936004263101644e-06,3.209010397712497e-08,4.401490964280726e-06,1.1046304943249819e-10,0.9975847376243681,2.8121153602903326e-05,3.876563462466993e-05,0.00048027860032837663,0.999944266467669,0.6917317443405218,3.2478150331712047e-06,5.950995905934465e-06,0.9994575811546973,0.00031256073077605965,0.9999975023711525,1.3119512241995743e-06,0.0003825316415068076,1.442331327718366e-06,0.2813288225080337,0.0019812709739569423,0.00027514345091045057,0.021461669389638945,0.9965409399374661,3.2848829043797373e-07,3.621030851169598e-08,0.5598292669810992,0.14056927159735558,0.9991115857429851,0.999817468644575,0.9965624757132823,0.0002234675750619591,4.5056531615822425e-05,4.031977453074331e-05,0.9997572472309485,4.513949149131675e-08,3.261328080132391e-06,0.008185647930358695,0.8438912884838075,0.6484841439270589,0.00013481550420696867,0.9999999992121376,0.0002449343290908785,0.9998554799963574,1.2344693042668409e-05,0.9986494372636443,0.999888781798482,0.9999988795050004,0.9999934244795644,0.9999999999868014,0.9999999987959698,0.9994437912355798,0.9999999482211546,0.0001682996470367911,0.0005069188921488979,6.614129016530594e-05,2.2015678975725228e-05,0.9994210035997929,0.0009964032721767623,7.460355325660069e-05,7.172566674154626e-06,0.00028268832827214646,0.9307926255317897,1.3154683266076066e-06,9.74222920405456e-09,6.411516423744274e-07,0.0001491538589835894,0.999989792691407,0.5594239846244635,0.2902778906410233,1.0964290284202151e-05,0.006277827515093599,1.0405846592563028e-06,4.6950670904997105e-06,3.8031759483433015e-06,3.0625837659522304e-05,1.0615814795543282e-07,0.71764822021921,1.2310852128981458e-06,3.3012700620021307e-07,0.05755535176374903,0.0005334957916705396,3.4044323275620345e-07,0.6564593491816983,3.679371001957368e-07,2.3689070342413144e-06,5.901192870321036e-07,2.1673143832952856e-06,0.8350076279950789,0.8138761145132117,0.9931670528208112,0.997856897516464,0.9961493292818168,3.065502745966515e-05,0.9996611055353517,0.7932704734349043,0.0024831675469140133,0.012731541108095962,0.01917107502897855,0.9177849000260615,7.349155803240903e-08,2.148967301939986e-06,0.9971754194132622,0.005204303385159192,8.733020298358058e-06,2.0521880849521885e-05,0.0012087652621610636,0.009177242974407245,0.9029658255881683,0.04585580398227617,0.39239208658516994,1.6513713626108455e-06,0.9998517555997259,0.9999973704279583,0.0002881640170089798,0.9999998943987252,0.0017292665614920297,0.0067360542220704185,3.821484555989126e-06,2.5033391842731686e-06,0.2089825880128633,2.9582508623910293e-06,0.9468749180788658,0.9996974560258685,3.006085048876707e-06,1.5398878110631594e-06,3.950452302146992e-07,1.968930716693175e-07,0.011229288085548284,0.047797466338276764,1.6067143800254238e-06,0.9998640506301564,2.462452682670047e-05,0.9999507800295437,0.9999894531350494,0.9998590709083076,0.9754387244321215,0.9999998736264906,1.5609873779568525e-07,3.1590286451169936e-07,3.5455371004885484e-06,2.6267502190207294e-06,0.9990576648391942,2.4357663862346615e-06,5.710571144625884e-06,3.5524233059225965e-05,0.9999449601847671,1.0836830630980305e-06,7.755227821828673e-09,0.0009809377732481084,0.014191361073150834,3.458021514974644e-05,0.9998233391524937,0.9999999994077442,0.002073727314203311,0.9999858330943062,0.9911467024496429,0.6473536894084996,3.6745482282786672e-06,2.4206338327348293e-05,0.000569069948759476,6.648846434578824e-08,0.9999826599273017,8.260789644450702e-06,0.9999999970385136,3.411955777748422e-07,0.000179858542804191,0.9999949246878306,4.286158486979346e-07,0.0009008200398403483,0.9999999999509279,0.9819945054621878,0.9999971386218208,4.182994285524399e-07,0.03266984551687032,0.0001603813254548698,3.2117554238287455e-08,6.580197516921688e-07,0.9981346550114767,1.6127170495284532e-06,0.00013865579741973705,4.829682543292668e-05,2.8384434858765026e-07,0.0001580417445918761,7.54768749190069e-06,0.568589085434201,0.14145688917295637,3.944134203785208e-08,0.9805132365314362,0.999964565825985,2.7353563151857233e-09,2.606252311997691e-07,0.9998827582091158,3.805453420018158e-05,0.0007330731733046064,0.0004550520239819255,0.0003498670769396442,0.026932822051671114,2.1331708138545786e-07,0.9998637472307437,0.9998223378178193,0.9999966924009079,3.6373356418479908e-09,2.746117545068084e-07,1.228006401700759e-05 -इस,rgb,1.0,1.0,1.0,1.0,1.0,0.003800747073079221,1.0,0.9087123358543091,0.9365221993137981,0.999729450402542,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.006906024410708593,1.0,0.9999862712891094,1.0,1.0,0.9999918390579335,1.0,1.0,0.004141911966061439,1.0,0.02135691673476708,0.9999999999999949,1.0,1.0,1.0,1.0,0.9978351325799749,0.89354390554181,1.0,1.0,0.010453046480610961,1.0,1.0,1.0,1.0,1.0,1.0,0.999999999999929,0.00439963845074516,1.0,0.9935023110611435,0.26234344068029347,1.0,0.5886073209652357,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9990000934445344,0.9600459095015615,0.889991895711884,0.10522581478727888,1.0,1.0,0.9998366956738556,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.90832560447191,1.0,1.0,1.0,1.0,1.0,0.9569461444621964,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9339959389695599,1.0,1.0,0.003582946176889477,1.0,1.0,1.0,0.9561550939436223,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999983454859,1.0,1.0,1.0,1.0,1.0,0.9999999999884226,1.0,1.0,0.9999999999954827,1.0,0.9999999885319414,1.0,1.0,1.0,1.0,0.002545329727555275,0.9997520055779513,0.9999999996336311,1.0,1.0,1.0,0.9999999999999993,1.0,1.0,1.0,0.12223117426348032,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999998918805982,0.9999999999994775,1.0,0.9999486066596702,1.0,1.0,0.9999991948908349,0.9998984947775177,0.9810604643343442,0.9997723109538574,1.0,1.0,1.0,1.0,0.004529058751886224,1.0,1.0,1.0,1.0,1.0,1.0,0.9932694815198775,0.9999996167699635,0.9999994159326852,1.0,1.0,0.01168589798943456,0.003686876220280635,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999989649311,1.0,0.012412040516739659,0.36666331660414875,1.0,1.0,0.99960701349643,1.0,1.0,0.7205577168354451,1.0,1.0,1.0,1.0,1.0,1.0,0.9999947002772306,1.0,0.7608813026658366,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.12872510553321617,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.8840031211130386,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -इस,shape,0.9999998860876481,0.9998134122029243,0.9999947771818365,0.9999996120067594,0.9999998134954785,3.0294974320516592e-05,0.004940298054986487,0.9999998844753311,0.9999995852175456,0.9999995082705888,0.9999599275443181,0.9999946460911845,0.9999936815397168,0.9999947714718382,0.9999795729644084,0.9697906132051246,0.9999999999105642,0.999999999997409,0.9999994749269506,0.9999998967104085,0.999990149362992,0.9999693977687153,0.8179943813669882,0.9998654340354909,0.9999935157290175,0.9999947258555232,0.9999999461369218,0.999967403004931,0.9433915088700299,0.12701594416344578,0.9996857376023838,0.9999989758256462,0.9996636816653415,0.9999965412920941,0.999990804411269,0.9999999994846909,0.9999999796822145,0.9999999980554048,0.999999962441719,0.9924175435299624,0.9999999959757773,0.9999999979098637,0.9637231301981768,0.6462675222450394,0.9028730822794994,0.9999775273760257,0.9999964879005429,0.9999566512198909,0.9994533507855993,0.9999945006238457,6.2760935685089e-05,0.47492272560887105,0.9999999627528431,0.9999999871618025,0.9999962071303091,0.9999797917806047,0.9999958187727329,0.9999988365856645,0.9999995603505639,0.9999994831716681,0.9999999816762565,0.9996593360971854,0.999990129136914,0.9999330590127967,0.9998025981074253,0.9999906278097065,0.9999762782766316,0.9999998361165885,0.9999998254880449,0.9999999337102827,0.9999999942014426,0.9999702441251166,0.9994925054957922,0.9999996988446497,0.9998385389801987,0.9999312706101943,0.999140013922286,0.9999721452701456,0.9999996940236281,0.9991822368332485,0.9999999734195151,0.9998408890272271,0.9999990780428105,0.9999916719861822,0.9999990066312983,0.9999993420219804,0.9990605369661155,0.9999999975303713,0.9999999997248266,0.9999999105070312,0.9999998457225914,0.9999998785575704,0.999998065655322,0.9999982265092842,0.9999987478338631,0.9999979902485142,0.7613021004173572,0.9999982969422819,0.9999292831823391,0.9999885897528906,0.9999613491797728,0.9999999927184631,0.9999999955928431,0.9999999983014436,0.9998458939860451,0.41913909390994675,0.9980846979762351,0.9995962198087114,0.9993470809016123,0.9999999463898006,0.999946940765614,0.9997131625334571,0.99932964596797,0.9999851124742097,0.9999940978742674,0.9999999770122209,0.9999935491220666,0.9999902277818451,0.9999999438555955,0.9999984875792373,0.9999993971701054,0.9999957104657575,0.9999985869946886,0.9999999734881726,0.9999646630786733,0.9999999909107656,0.9999919445318334,0.9999632914259432,0.9999972824994076,0.9999985388153075,0.9999999999694158,0.9999981198462262,0.9963233064625298,0.9999998083994953,0.9999942347261055,0.9999968055773644,0.9999998993782652,0.9998693192152627,0.9999995659033473,0.9999126142574263,0.9999997953178584,0.999914325477615,0.9999782469868648,0.9995502597811408,0.9999999876852353,0.9999799519673623,0.9999671557416673,0.9999889491932252,0.9999111364866058,0.9999999106470245,0.9969280856160532,0.9999996138941921,0.7139405924633896,0.9999989032479197,0.9999926266034602,0.9999950067068907,0.9999946460911845,0.9998740040520415,0.9999357449769971,0.9999973463745715,0.9999989678985989,0.9999799286741988,0.9999999998815909,0.9999912793925756,0.9998728587099772,0.9995217458853493,0.9994831777419859,0.9999998080180166,0.999990137524093,0.08307960724667278,0.9999869972054513,3.556283317045885e-05,0.9999998242490216,0.999953138944596,0.9999999812810579,0.728649553906952,0.9999993572205014,0.9999622586400666,0.9999852893651837,0.9999910375430278,0.9999010033557046,0.9999999841879543,0.9999996937738019,0.07244281528433578,0.024046358620549727,0.9986163631603433,0.9949800274972105,0.999999068576404,0.9999123010209,0.9999909584949856,0.9991038064711435,0.9999996349952331,0.9999999391645334,0.9996227080733552,0.9999999476924822,0.9534626286662775,0.9999834866170323,0.9998263839859192,4.515594074385285e-05,0.9999575211131568,0.9972646296254534,0.9999999664935078,0.9999685282205621,0.9999999908318676,0.9999996981937116,0.9975410670744661,0.9999974693826956,0.9976574075934196,0.9999927046661368,0.9999999873006521,0.9999985561240452,0.999999998289463,0.9999188450504941,0.9999999977761447,0.9999836350299016,0.9999771232204177,0.9999983064557549,0.7421179407277652,0.9999993278841165,0.9999999904939755,0.999994867971876,0.9999397689002563,0.9999999930092143,0.9999683897219466,0.9999998866496587,0.9999779822186685,0.9999976338265949,0.9999999607540138,0.9962349666887518,0.9998691161042473,0.9999828340674706,0.9999988267382326,0.9994732353716411,0.9999999971541849,0.9999993971701054,0.9999951281562698,0.9999058611972188,0.9420936604868152,0.9999961371506816,0.9999168426430873,0.9999999931975136,0.9999967034468247,0.9998317227642392,0.9999948092556235 -इस,object,0.9999778897824019,0.9999999669315749,0.999999839999541,1.0,0.9999994599211787,2.412250266736026e-05,0.0009959075066162727,0.9999721602581108,0.9997575415254565,0.9999801684479583,0.9999999976141682,0.9999999981113261,0.9999999999189977,0.999999999887641,1.0,0.008444361024348849,0.9999999701086364,0.9999999881560689,0.9999988683566386,0.9999998323547915,0.9995651163415655,0.9999816569700125,0.0018944050407744375,0.9997529066042251,0.9998956711626121,0.9999999757388197,0.9998277246081657,0.9999481666998213,0.02876379890491944,0.9999296946514719,0.9874307175466066,0.9999995360196156,0.07621711341433045,0.9999147656149024,0.9999999999998497,0.972775792234058,0.9999999971968478,0.999999999985606,0.9999996707305482,0.979186460417652,1.0,0.9999999998681304,0.13238970481313359,0.9999965354547173,0.04930723622191967,0.9999987673122225,0.999998554751933,0.9999987982352118,0.3842600789232029,0.999994597316059,2.6034394845109728e-05,0.9999999999986349,0.999993736431903,0.9996123120646181,0.9997870966213795,0.9456425506299445,0.9999999415259176,0.9999999934290233,0.9999999999614604,0.9999999999845428,0.9999999999973512,0.9999062602192877,0.048454021712513215,0.9999999999436799,0.9999999926496272,0.9999909715799887,0.9999998721115183,0.9999922971619678,0.9999838519342495,0.9999826209075396,0.9988083653307764,1.0,0.9999999999999998,0.9999223632308498,0.9999996805294612,0.9999999993059647,0.9999987569309945,0.9999978665878242,0.9999998960539783,0.9997307095894746,0.9999891856966359,0.9999860362879749,0.9999999890304191,0.9999999957789412,0.9996456514931863,0.9999999945587144,0.024322260609149802,0.999999999938401,0.9999997064785187,0.9999832114044855,0.999980586946993,0.9958976441935589,0.9999995195252899,0.9999995302904788,0.99999982116206,0.9999999890379817,0.0038401164609820552,0.9999999557588282,0.9999964698767989,0.9999999897968143,0.9999994269975144,0.9957252152825733,0.9869771629926012,0.9999999999999993,0.9999882525598526,0.011522603620841365,0.9950903541094246,0.9998690902785082,0.9999999899882445,0.9987554542141974,0.9999999837422564,0.999999999999994,1.0,0.9999997017108923,0.9999975837466074,0.9999998984264383,0.9988040098099806,0.9999996266009088,0.999999999931094,0.9999999825385614,0.9999977691269469,0.9999989300557804,0.9999947344066179,1.0,0.9999979434990581,0.9999384085368335,0.9999997529665743,0.9950573000523033,0.9999995488966825,0.9999978297567225,0.999999999986402,0.9999733162377606,0.7219398515053507,0.999975876118849,0.9990713673291379,0.9999621610799841,0.9999998666332208,0.9998670505553422,0.9999997497165123,0.9999999915765442,0.9999999999999993,0.056969339395146375,0.9974678433694273,0.9999999999999989,0.9999988025122835,0.9997843418807159,0.9999625478051141,0.9999996492348366,0.9999999652510435,0.9999993105389322,0.9999999999999996,0.9999999424905226,0.00026491621811106954,0.9999999999023905,0.9976127607658822,0.9999999997971762,0.9999999975885421,0.9999056327916939,0.9999977421139828,0.9999992430266548,0.9999987842235434,0.9999364455353169,0.9849290825580733,0.9999970754278418,0.9999244343528636,0.9994047832867923,0.9983417788012838,0.9999999999625442,0.9999999991948858,0.9999999999949354,0.9999981545704227,1.9892346489656908e-05,0.999999948244777,0.15519593725547004,0.9999999950252063,0.1109847639514417,0.9952295296570091,1.0,0.9999611589603619,0.9999928597081749,0.9999689540057561,0.5323671521394625,0.9999999999999989,5.226960127561076e-05,0.000926012208933621,0.42788882252270355,0.9999999999999698,0.9999999868136276,0.999999997464601,0.9999999988629926,0.9999850188507609,0.9999986901769587,0.9999407436621649,0.9997380046196975,0.9999999274436161,0.05719761953840254,0.9981640232252403,0.9999998780620458,5.554185460076147e-05,0.9997137842564013,0.9999999999999598,0.9999999943597957,0.9999815967393895,0.9999361791137701,0.999999963119361,0.9922445245605941,0.9899282868194801,0.9999999999999987,1.0,0.9999840524068279,0.9999959220132093,0.9999999999766593,0.9998969541868883,0.9999999999996276,0.9999335700445512,0.999999737911112,0.9999999773246792,1.7051020015729574e-06,0.9999987356997593,0.9999999947864258,0.999991781299521,1.0,0.998058981875927,0.9999999999713958,0.9999990006598273,0.9999451082559951,0.9999999990584933,0.9999998029575623,0.01109005128535782,0.9999297169122897,0.9999999999999987,0.9999996942428822,0.9999999999999998,0.9996197295533887,0.9999976638432722,0.9999998479194585,0.9999998479174568,0.9999983413707264,0.9999807407570392,0.9999951523277932,0.9999999998981037,0.9999999999999953,0.9998415405858443,0.9999928031248954 -इसक,rgb,0.9999662513636975,0.07247146878835647,0.9999999949956357,1.463304277903172e-80,0.9249723168515641,1.0,0.005369611132680648,1.0,1.0,1.0,1.0,0.9999999999999867,0.9999999999999993,0.001074790119218105,1.2935963258022878e-89,6.857292342017226e-20,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999456,1.0,0.9999999999914784,0.6618617235726424,1.0,1.0984349478730401e-16,0.009663194399803484,1.0,0.9999958577320756,1.0,1.0,2.1145847814932768e-69,3.322303364776445e-19,1.0,1.0,1.0,1.0,3.754970475705897e-74,0.999813978757989,1.0,2.2529173800596526e-07,2.09070250274706e-10,0.9999999999329048,0.9999975139459557,0.9999999956011254,2.8790196389550206e-09,1.0,1.0,6.081823985558072e-75,1.0,1.0,5.657860525920658e-14,1.0,1.0,1.0,0.9999999999999953,1.0,1.0,1.0,5.269382607079572e-22,0.9999732006895766,0.028852796730144584,1.0,0.9999999999999238,1.0,1.0,1.0,1.0,7.753396015455258e-76,3.6479677562171895e-72,1.0,0.999999686476967,0.9999937414875734,0.9999999999956528,0.9999999999999996,1.0,1.0,0.9803896030844386,1.0,1.0,1.0,1.0,1.0,1.1782371374038645e-17,1.0,0.999999999953123,0.9892725350999688,1.0,9.190626196951382e-24,1.0,1.0,1.0,1.0,1.3017189701804464e-15,1.0,1.0,1.0,1.0,0.15312832451694278,1.0,2.435875394438401e-78,1.0,1.0,3.34345881397271e-09,0.999999999999986,0.9999999998244427,1.0,0.9999999999999971,2.622161299106291e-76,1.3468945542925287e-83,0.9999999999999716,1.0,1.0,1.0,1.0,0.9999999999999747,0.9999999999753317,0.999992978256312,1.0,1.0,3.238364830522684e-72,0.999999999999998,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0011319854352820394,4.0796021745225825e-68,1.427104109568244e-18,1.0,7.182809827023318e-69,1.0,1.0,1.0,1.0,0.9999999999992959,0.9999999999999973,1.6076679382323507e-71,1.0,1.1045376546445771e-17,1.0,4.855331778216724e-14,1.0,0.9999999999999978,1.0,1.0,1.0,1.0,1.0,2.1163774691867325e-21,1.0,1.0,1.0,1.0,0.9999999999999998,1.0,9.398073948901736e-78,1.0,1.0,1.0,6.6307124420360636e-21,1.0,0.004192192515556801,5.8979576145675375e-24,3.4078538441901614e-84,1.0,1.0,1.0,5.2858447861408e-21,1.166050100675764e-68,1.0,1.0,1.7335858209344894e-11,1.0243786996726046e-59,0.9651580694991346,1.0,0.9999999999999982,1.0,1.0,0.9998049724462696,1.0,1.0,2.797945752533174e-09,1.0,1.0,1.0,1.0,6.38779655776806e-71,1.0,1.0,0.9463389582168923,1.0,1.0,7.721810206244577e-14,2.88480900861707e-74,1.458922781171426e-88,0.9832578706412122,1.0,1.0,1.0,0.9999999999999996,1.0,1.0,0.9999999999999838,1.6796761092067124e-23,0.9999999993515425,0.9997908362736037,0.9998474615298121,1.8982551358606725e-69,1.0,0.9999924071214373,1.0,1.0,0.07630729685905696,1.0,1.5425224390549232e-23,0.9999934604232305,1.2135692781528079e-75,1.0,1.8312078690368846e-71,1.0,0.9999957179428277,0.9999999999999976,0.9999999999996567,0.000222169502560668,1.0,1.0,1.0,2.024806854290115e-66,1.0,1.0 -इसक,shape,0.9999999813281165,0.9828868200872715,0.9999999957775381,0.0002043324917028249,0.9999997056714407,0.005000083602703434,0.22901522740656335,0.9999981833230923,0.9999185787874842,0.9995374575552018,0.9999999989282413,0.9999999999999885,0.9999999999568494,0.9999990659637505,0.9999182827340851,4.097501521445487e-05,0.9999703266770544,0.9999693769813348,0.9999999999999982,0.9999999999985552,0.9998805743776192,0.9997609625855668,3.1942474012238566e-05,0.9993426642107652,0.9999982889045016,0.9994613746172172,0.9999564672557065,0.999999389063976,0.9967329000308861,7.36357705659351e-05,0.7682714464810696,0.9999999999750733,0.35501715975980747,0.9999999224474305,0.99998464864805,0.9999999957961281,0.999999617854172,0.9999983259617882,0.9999535796354265,0.9999999979401462,0.9997641438390611,0.9999805082953964,0.05680454714131204,0.00012434776463425502,0.001633235923823796,0.9999770221230817,0.9999999931500765,0.9999637126667186,0.008455392399674064,0.9999978449544153,5.911088566231879e-06,0.00019444157302026278,0.9999999824053084,0.9999999833562894,0.00010475775505299804,0.999999524641953,0.9999999999988822,0.9999999997534832,1.0,0.9999998171262362,0.9997943135734108,0.9999999914682655,0.9948933716855315,0.9604539251351365,0.0001510913556323652,0.9993341306730597,0.9999819635890468,0.9999885794408693,0.9999979808675278,0.9999986923769065,0.9999997725221186,0.9988541304570919,0.9999997688478844,0.9999216719147127,0.9945189194801204,0.999999265954871,0.9988213846351446,0.9998945373581732,0.9999996168427834,0.9991682404718591,0.9999994405367548,0.9999774229915678,0.9998427494355698,0.9999999999930687,0.9997947016884849,0.9999878981859306,7.680673784003685e-05,0.9999999851904351,0.9999563918210118,0.9999999779327595,0.9999044178192473,0.9999999998881364,0.9999999389673402,0.9999999999164602,0.9999998535547155,0.9999999999999998,0.002507225444127027,0.9999999998315092,0.9994345514828117,0.9999739879452741,0.9992225087014351,6.820412693626843e-05,0.9999719392145651,0.9831492038953965,0.9997699566159927,0.00026490922327751737,4.025273864184614e-05,0.9997680168767981,0.998827654609595,0.9999999728454839,0.9990807213729517,0.9995971704952418,0.9436646082639858,0.99989639008915,0.9999999099519502,0.9999978985197631,0.9998531327654093,0.9999017896040684,0.9999979997427684,0.9999999928693526,0.9999999791473533,0.9999291310955127,0.9999963742662316,0.9999854251015807,0.9999997100450068,0.9999999794350047,0.999999927229998,0.9998225882244582,0.9999761339259201,0.9999902756292942,0.9999999999859484,0.9999033344937444,0.01095314204250521,0.9999984466732893,0.9995144773118749,0.999929757109941,0.9999999554957864,0.9999584063587872,0.9999453375925265,0.00010894880226101973,0.9999999820690025,0.9999982967391711,0.9614077117104836,0.9994860637921982,0.9999999999999429,0.9991701175534401,0.9999999999977842,0.999996522450493,0.9993268530450347,0.999979639535222,0.9999973857337415,0.9999998631949422,0.019538621486844748,0.9999906707528707,8.006305733155352e-05,0.9999976017986378,0.9999999999999885,0.9999808269770712,0.9999831749586509,0.9995839108534721,0.9999965299866456,0.9999983224628398,0.9999999999999609,0.9999043279811833,0.9998484021170115,0.9999287438452636,0.998614499190679,0.9999997836692458,0.9994784263929941,0.00018902953429622283,0.999999985534894,0.11471657777413242,0.9999993907179767,0.0024847843628467274,0.9999426586889976,3.0794055184231586e-06,0.9999999036783713,0.9912785091977218,0.9999976872544318,0.9999972367996116,0.9999809895565421,0.9999966246501247,0.9999999991048962,0.0010239137580470826,9.795953313639636e-05,0.0011278047936558642,0.0002422611575087069,0.9998469222953392,0.9986503130713753,0.9999999998634528,0.9980609696417035,0.9999978717320708,0.9999999849944743,0.9992587825495873,0.9998483322956574,4.152934042924913e-05,0.9996799155962679,0.9998053131409081,1.3424906109806997e-05,0.9996338449319132,9.292334704061337e-05,0.999622607839964,0.9999484929635754,0.9999999999754967,0.999999996613933,0.9941025664432874,5.879734802629001e-05,0.9948738783525133,0.9997707122824436,0.9999998110096595,0.9999764883002499,0.9999914448545181,0.9997983502279013,0.9999999764779178,0.9999386305974329,0.9999998242841976,0.9998121410541553,0.9013661307876474,0.9999710705658321,0.9999999999773539,0.999999073444,0.7167452552856073,0.999992423565824,0.9999806259828058,0.99999999999635,0.9997697228122179,0.9999999049722327,0.9999999999999953,0.3465525361354468,0.9999980203224479,0.3307603457104738,0.9998951903280497,0.9999999753133525,0.9999999797982793,0.9999999791473533,0.9999999990233379,0.9999999815285515,9.510429920255049e-05,0.9999997890624414,0.9996183461962191,0.9999409692669524,0.999941530989325,0.9999060436366168,0.9999999110566592 -इसक,object,0.9999590827875863,0.02264325595809926,0.9999999689182727,5.6116260324848796e-08,0.9999998015286494,0.999077672579469,0.9991122018693535,0.9999980218996776,0.9997557245193913,0.9999357048035304,0.9999990957463817,0.9999999998159781,0.9999999403074187,0.8130636838068938,6.163947508595044e-09,0.0011539762834754785,0.9999639121893122,0.9999748852411663,0.9999999999998299,0.9999999999996958,0.9999979485639474,0.9999958899252613,0.9802394659957218,0.9999513884375942,0.9999963441801181,0.9999780730168513,0.9999555543235861,0.999998075256346,0.9570010564428016,5.5932507315615114e-05,0.9993963183907709,0.9999999739363918,0.9991138873655454,0.999999758657479,1.766280687795229e-06,0.9999962542315314,0.9999999995493773,0.999999904489957,0.9999998739843606,0.9999999913534982,2.081872902904856e-08,0.8828785197767212,0.968895073982881,5.752340568408123e-05,0.016922278672597265,0.9999995747271803,0.999999992356252,0.9999960301726332,0.9902518346391944,0.999999433950217,0.9890595971475138,3.0632977820901075e-06,0.9999996793134354,0.9999610805568068,6.660612814931983e-05,0.9999999976547489,0.9999999939008399,0.9999999686212709,0.9999999999997751,0.9999820670093141,0.999786751746176,0.9999999989180581,0.8249976461958498,0.13943409955235733,9.57531274742453e-05,0.9999413899452653,0.9998368616106421,0.9999864001459664,0.9999666046504977,0.9999981427877298,0.99805343631534,1.490186700496187e-08,1.9457953756727465e-06,0.9999977103219585,0.08027061101113908,0.8680563071385774,0.9999001072368189,0.9999364982241489,0.9999994509225798,0.9993798989564674,0.9999864568081985,0.9999960252009301,0.9999968060572907,0.9999999993784823,0.9999913225693209,0.9999976298105416,0.00011633741654070619,0.9999999133258837,0.999998394399185,0.9999412849433794,0.9999500774875998,0.9954601575100028,0.999998001513039,0.9999993389744508,0.99999152687961,0.9999999999873288,0.0037719723781028665,0.9999985833603293,0.9999504781953459,0.9999913607307083,0.9998245538069085,3.77616929379122e-05,0.9992759439307076,1.5874972896362674e-10,0.999906335441444,0.6559731182389461,2.9334660969395347e-05,0.9999891505114689,0.9998200301992933,0.999996532094455,0.9994637294088622,1.5281455427297636e-07,1.9330568677217633e-09,0.9999826619140979,0.9999982470537989,0.9999993107832984,0.9999997418278364,0.99991046068538,0.9999643955506992,0.9999795905878446,0.9999999503477339,0.9998786361852228,0.999999829450537,3.300045968208129e-09,0.9999978964880455,0.999999998903432,0.9999995259050659,0.9999998256246927,0.9999973342800434,0.999998907167812,0.9999999999998002,0.9999993687776018,0.9999796356753526,0.999999348208552,0.9999998439674124,0.9999643071761459,0.9999999764223387,0.9999638661808595,0.9999987347471603,3.825545376536754e-05,0.035357732761164135,0.8833933002706025,0.6686489235004253,4.828158412224218e-09,0.9999999999972888,0.9996255325858642,0.9999999999035714,0.999995415973056,0.9999297106496712,0.9999925641639892,1.2795499469242078e-08,0.9999997750451561,0.00027306800600691286,0.9998948960056447,5.869491888736285e-05,0.9999705448733301,0.9999999998443412,0.9999903091111317,0.9999851525745961,0.9999957500530136,0.9999917140206032,0.9999996127154237,0.9999999447378805,0.9999247573412117,0.9999650906812737,0.999983632625102,0.9999732744321685,0.9999979019043617,0.9999025631577727,4.374132612807531e-06,0.999999677299316,0.9996795800632315,0.9999994303697267,5.335483118631255e-05,0.9999972310369591,0.9551824222119515,0.9097537478370931,1.2612897492211192e-10,0.999926838073286,0.9999949534130784,0.9999781440755133,0.6151391381637608,0.2827433322885226,0.9992099964575335,0.6971328950242089,0.9668362757191882,3.3380392450231975e-05,0.23372346854082865,0.9990421664213859,0.9999998378715241,0.9999393034911914,0.9999986640177075,0.9999994426323211,0.9996966914047513,0.9999936672135074,0.9260320762960291,0.9999992320828834,0.9999096284071332,0.9943251868524395,0.998350550570881,9.478893783124832e-07,0.9999896082344372,0.9999865457304878,0.9999996761541415,0.9999998474010205,0.9999792013867932,2.748631943594823e-05,7.383294565359655e-08,3.851539919231079e-09,0.9999929655341532,0.9999997653685029,0.9999987122550055,0.9999751047675718,0.9999968350137779,0.9999808529906902,0.9999999929970778,0.9998124905213742,0.48487859568398944,0.9999983236580045,0.9999999997149629,0.9999998963244533,3.6647195607265163e-10,0.9612985975416231,0.9198630900242494,0.9999999987962453,0.999991280288894,0.9797608106100468,0.9999999999899005,0.00041383631343245707,0.9999935983003542,3.517071646670909e-08,0.9999910677203075,3.875646619137443e-06,0.999992180378069,0.9999999515845498,0.9999964766106524,0.9999999870851068,6.249921051071835e-05,0.9999999804131577,0.9999872158630699,0.9999929622682967,6.256464183470724e-05,0.9999917470634199,0.9999984044750432 -इस्तेमाल,rgb,1.5897289919035898e-19,1.0,0.0980736781431304,1.3077593313540005e-13,0.0009321249301465542,1.0,4.322471086747785e-25,0.999999999992073,0.9999999999971536,0.9999999999061842,0.9998039289217748,0.9829452143110782,0.9912719213264428,1.0,2.473926282983911e-13,3.81128292850396e-31,0.003199388799993719,0.009846616881915399,0.005006658922032888,0.9999999982512247,0.003881998887345794,6.788881320147066e-11,1.0,4.46958443709674e-15,1.0,9.60952301270406e-10,9.243795769221189e-21,1.0,1.0760545512983076e-29,1.0,1.0,0.14052913645785273,1.0,0.9999627125732302,0.001445231064773136,5.353149991417624e-31,0.999999989275217,3.1002035011608265e-07,1.0,1.0,1.4363717241292127e-11,1.0,1.0,1.0,3.005102171766429e-28,0.9903922630028508,0.33836981474339833,0.0950264253662705,1.7073481303196147e-27,0.9999999992991746,1.0,7.462686570218518e-12,0.9999999999806308,1.0,2.3697014103886841e-29,1.0,0.9999999999999996,0.999999999999998,0.9886702986843068,0.9961590552916977,0.9997414984308782,0.0014293570654059602,1.780469916358119e-31,1.0,1.0,4.784334615883317e-14,6.730451140428962e-11,0.9999999999180744,0.9999999999881581,0.9999999999974507,1.0,1.0582988458709175e-12,2.685016105228396e-11,0.999999999679295,1.0,1.0,1.6645533982748583e-10,3.8666062434604794e-14,1.813002020457702e-11,0.9999999999999931,2.9451110270940506e-20,0.9999999999999991,0.4707685766908647,0.9999999999999298,0.9999999999942575,0.10554460795522683,3.970976218376112e-30,7.97233659937096e-08,1.8212167418707404e-16,4.715767092663167e-20,0.9999999999848102,2.0562979295963607e-31,1.0,0.9999999999999953,0.9999999999999838,0.9999999999999514,1.7920049448738163e-29,0.9999999999999238,0.9999999999999996,0.9999999999999456,0.9999999999995701,1.1215796164129236e-24,0.9999999999999998,1.1388588375997675e-12,0.9999999999991132,1.0,5.784119357010319e-28,1.223284516864369e-14,1.7774993772412878e-08,0.9999999999999998,2.1127100995049126e-08,2.1016171204628962e-12,1.8203707658445288e-13,0.9979154534882222,0.9993228291443178,0.9998298677416962,0.9999999604949625,0.999999563832249,0.9719111031958217,0.0021162704642301924,0.0843292015982596,0.9999928094862597,0.9999999999106277,7.2020920820936675e-12,0.9995789954086621,1.0,0.9999915578292363,0.9999999900752784,0.9999999938671509,0.999930155629917,0.9999999999815505,0.9999304626728928,1.0,0.9999999997617381,0.9999999190496035,0.020614723000761937,0.0061308056305066335,0.009850082915103791,0.99999999895123,1.0,0.0010960458234077289,1.0367851647312788e-29,1.0,4.698366720647089e-11,0.9999999996909423,0.9999999940164062,0.9999999999999607,5.2489410086110485e-12,5.211154061435225e-11,8.885809699197991e-15,8.752227246950857e-12,0.9999954135264579,2.4314854947528325e-30,0.9998364513746674,2.3169250604029997e-29,0.9963698747958121,0.9935726677186575,1.0,1.0,0.00410051095408018,1.0,0.0035011873984618145,6.460235967690248e-33,1.0,1.0,1.0,1.0,0.9963345958283442,0.996833303199686,1.3402948576751935e-12,0.9999967700330987,1.0,0.9999984587349627,2.71480221949925e-31,0.9999989726679654,3.973100014873288e-25,2.6780534697318767e-31,4.1377094564438475e-12,1.0,1.0,1.0,1.1604873574981318e-31,0.0027375955535455317,1.0,1.0,2.970915889834317e-28,7.42689433765901e-10,1.0,0.9966911987975466,0.992229950150576,0.9998011756559596,0.9749907333086635,7.213552956089856e-20,0.9999999862551052,0.9999947501724877,2.2335777632691718e-27,0.9999999746219999,0.9996628783196938,1.0,0.9999999999999998,1.6894723040610185e-11,0.9999898305527913,1.0,3.582864164826044e-20,0.9999989694607558,0.9999999999999998,2.481348803617899e-29,3.886725000067511e-12,1.7298926474730291e-13,1.5562180734962352e-20,0.9973619935587453,4.799030744322972e-07,1.0,0.9943993564648166,1.0,0.9999454867189842,0.9955031815272647,1.3999022648619368e-31,0.7089482545612058,0.03631766324311684,0.16677847789058858,3.9447694852726797e-11,1.0,1.0,0.01541020638379169,0.016192789897617587,1.0,0.040127375144009034,1.481015810349513e-31,0.08498394175263155,9.732405077221516e-05,0.02225626032309678,2.1429657964184954e-11,0.9999999999999998,0.1784468699699243,0.9995369428789445,0.9824613003856575,1.0,0.9999955207770754,0.9999954689523576,2.529282543579229e-08,0.0031416609444763132,0.9999657751433891,0.9999799132862379 -इस्तेमाल,shape,0.9953398435264065,1.5162424385190426e-05,0.0003090678942298464,0.00031803768087247203,1.605242073778879e-08,4.999428887389734e-05,1.0390200564985683e-06,0.9988922144365179,0.9995708916955578,0.9952471637406421,0.04373181397324695,0.1128801266419651,0.2446552069130931,0.5466288986765866,1.8942701601051313e-05,1.4835680776241856e-07,2.165557651670002e-05,1.2971896849738054e-07,1.5910518621121097e-05,0.4226309984806683,0.02594233865726088,0.01533669211992949,8.953539066771911e-07,2.5219676374519984e-06,0.9996332534073489,7.359142411322943e-05,0.997636054040771,0.9999029967849076,0.0005397311322877177,2.735042143564155e-07,0.004590031380664099,1.6812546371771347e-05,2.9990249454301883e-06,0.9997963908337931,0.00013082228642244436,0.00043058536242992135,0.9999243618051089,0.9638088336827425,0.9726225492338619,0.4273811879105518,0.0037662305453427755,0.03376053179292737,0.003199534340091932,0.00038911604246036737,0.00019892560791111725,4.3339574174371066e-07,2.4605215397420926e-06,1.2217491070133054e-10,5.167128704437987e-05,0.9967431481792203,0.00015171869401891863,0.00025824015381597804,0.9999962550575944,0.021393714354327777,0.0006032129360525006,0.07178424078788437,0.7715532407419465,2.8373481759719045e-06,0.9699500741693922,0.03683947053218069,0.0007776210303654305,0.0011178665795354575,0.0003354458143081295,0.011555926893243668,0.0018801970168376928,0.0006692831191257847,0.0013951159503097534,0.9998783850169434,0.9999785865729808,0.9995184823834196,0.006310103268546107,0.29204914318210967,0.9967929906824085,0.9978955791823817,1.1592679105841542e-05,0.9817246775902877,0.0002542152727010389,0.0011162518009849441,0.993716452651326,1.2525901405959877e-05,0.9972737760352547,0.9928233942391409,0.981227942535892,0.00012791802343680936,0.9993908489101037,0.9973175786283832,1.96179944505586e-06,0.9608254726995833,0.9841700204526901,0.9999093591950016,0.9999755896568923,0.0008407680502936645,0.7304007158813655,0.9999828158110814,0.22518926544294324,0.13573927378850895,0.00024438823184834413,0.9997080929845942,0.0027024304977985203,2.6600529932658576e-07,5.99855788465805e-06,0.00010214042448597128,5.780497062474835e-05,0.0008133963795305353,0.06585208245919984,1.3477153986272243e-06,0.0004378542804696521,0.0001235124313090869,0.0014020825893886115,0.37069027576754054,0.0001452000004015573,0.0017212779723824424,0.0058119067502946835,0.9999993967416185,0.9997791436244745,0.9999933685344948,0.9965123393058151,0.9999146399379638,0.9991225748900682,0.0007772929126517852,1.456406275834677e-09,0.9994945638927756,0.9994105755516768,0.04240570966902183,0.9998350406123586,2.896496918809519e-14,0.9999540044538182,0.9958145881198619,0.9995116900147804,0.9997669102067819,0.9998930493428955,0.9469435908467592,0.016941090497450885,0.999955783917027,0.9963196061050419,6.309937243602682e-10,0.9975572674415325,4.377310579389038e-05,0.9937318669414748,0.0005225644491746164,0.0001449441307471001,0.0005346212095777498,0.9782095831361329,0.6264620213772296,8.587680779131806e-06,1.6833469387303707e-05,0.0014961803664886068,0.896034288072289,0.0023769757441873826,0.00025541076847249703,0.9974028253045547,0.7669199107259026,6.762894269742145e-07,0.5883575385291202,7.908355073738347e-05,0.000124953848797113,0.1128801266419651,0.9974126947522303,0.999497198350854,0.00020774157362344134,0.9998370639899177,0.9966872134271906,0.00043873326742939847,0.9999787571316268,0.9993798907436487,0.9996469357658583,0.9961597810178888,7.984243459378056e-09,0.28668364276960506,0.0006026085463121466,0.9930724185183066,0.00012559563745822563,0.9967477235695357,0.0002982259841643364,0.9989077840567993,4.262283704602118e-08,0.0018509373051287593,0.00431027454133872,0.9998329579017704,0.9999341090408236,0.9999607619762391,0.000320188152410241,4.001405013083477e-05,1.509386971168934e-08,1.1809712396436191e-07,1.6929257624917405e-05,0.001966167402880806,2.197027968126343e-05,1.6207726033644117e-05,0.4326064891169076,6.744496497548272e-08,0.999540285852918,0.9998604992084461,0.0007389219852690023,0.9960639386775911,8.629052836714216e-07,0.9930635454727352,0.9995118030410842,0.00013132469587815912,0.9991383921114225,4.324832969092087e-06,0.9372184560236634,0.9993673205581014,0.9998491847826442,0.9996924238543422,0.9996549792581195,0.0005430139017026378,0.8761467698333527,0.5373168784743152,0.9899265606685601,0.9996619102091491,0.990067983773724,0.9994009857291242,0.017612885217003348,0.9997434679399898,0.9998725248916408,0.9998255606722232,3.174272350074389e-08,2.193873394196867e-08,0.0001628221700604855,1.0555129799490943e-09,0.0001259792401471654,0.01961547119625763,0.29890286651498166,0.9358617075272233,0.00010341815411083552,0.9578538522611395,0.0012228448310711544,0.0007478886830121403,3.367599865472849e-10,7.481679659238985e-07,0.9992887003681771,0.9981544393811065,0.0023028398403600364,1.4564062758346562e-09,0.01384695963371223,9.995431843133368e-05,4.2494243095352497e-07,0.9990346628462049,0.9806743671454687,0.836920338118954,0.0002213451013969181,0.9991033172599546,0.9999604378769187 -इस्तेमाल,object,0.0022094050186230053,0.9999999133382602,0.0002923247574487118,2.0437730239913975e-07,5.9516192726444996e-05,0.9999518746263274,5.782575781460058e-07,0.9997856270693527,0.9999931756422548,0.9997558485851873,0.08886471720813151,0.004688652735638386,0.007868341906701408,0.9999998369350704,1.878333240863146e-06,1.2400903174742467e-05,7.502963794218229e-05,0.0005697126400428399,0.09665426682119248,0.9389335587445179,0.003914512214660212,0.0007593912772198188,0.9998175673165093,6.044522298863476e-06,0.9999949929953988,9.867253055527512e-05,5.4832936611146774e-05,0.9999818810304738,6.90704714575271e-06,0.9994177131459905,0.9999646592467798,0.0003377139905176071,0.9999031929156307,0.9925952262628182,3.43146135202343e-05,2.1818810521182738e-07,0.9916865053440436,0.001184093460674477,0.9999640339673991,0.9999961609344097,1.813904027792659e-06,0.9994600854614449,0.9999535835082116,0.9990494031282338,4.389054361494421e-07,0.00339759255431672,0.0009136677165649509,7.934985008129819e-06,5.883827350874959e-07,0.9991853446407878,0.9999366442712952,1.348865574984501e-07,0.9999845995181593,0.9999846333840533,6.987113111982453e-05,0.9999507134565954,0.9678824415082299,0.9998712927857615,0.01287406678743613,0.024151984322460004,0.17318226632413994,0.9363157709211551,4.361015772689404e-06,0.999929598485946,0.9999096814250995,7.877462205478579e-05,0.00014173437814746014,0.9999713921098933,0.9999303251826044,0.9999746872121713,0.9999896726155673,1.5989649870207082e-05,3.501607956597493e-05,0.9995443958541201,0.9999999437323129,0.9999079183071232,3.5053613588822314e-05,1.1736956868329384e-05,0.0003437339463698279,0.9986428466647796,0.00043107347116855477,0.9985730111471884,0.3639057518636241,0.99837115878135,0.9999080446974737,0.13042374146917532,3.433908562572973e-07,0.0016174762645427073,0.0007452447064910251,0.0005363706922840518,0.9999640755405106,1.7803104960338895e-05,0.9918545913403951,0.9991453037346448,0.9561097736861591,0.9670583667575541,5.854920454241084e-07,0.9931347136389809,0.9972315254582604,0.9987387562853468,0.9995616463951822,2.807614696850634e-06,0.9999214552839008,6.843477092052608e-07,0.994447828796785,0.9999753148325174,2.4189373444928808e-05,1.1811104646960106e-05,4.943468467405448e-05,0.9999777818644943,0.00021288730974932803,3.2128729429632074e-05,5.959757478729006e-05,0.9999716560668737,0.9999741080098635,0.9998882715884864,0.9977976091273418,0.9999985234113214,0.9997850586540117,0.00013175821960634276,0.00013931736626802843,0.9999890102411354,0.9995498313373696,4.7059392713025246e-06,0.9999341105374769,0.9999994914173715,0.9999956418518946,0.9991944119813526,0.997754817567267,0.9951879596341974,0.99918546587747,0.9859981014024618,0.9999785847348777,0.9997475074510496,0.9993375644057667,0.0004461470563418837,0.06601112151828302,0.0002226806234845954,0.9965792569657353,0.9997981972775211,3.5490341435940164e-05,7.594799069574031e-06,0.999994694904955,1.5116548672849637e-05,0.9999584825339465,0.9907658697868241,0.9336320140774035,0.0005503710886407327,1.4758859793485e-05,0.00011982352363383256,4.478706072971529e-05,0.8282324892889311,5.335149337451469e-08,0.16779493839833903,1.5342463190247065e-06,0.022293144756447374,0.00644735814094058,0.9999913859689282,0.9999484133352862,0.11372027372563569,0.999998708110419,0.01146568286160658,1.433819222225063e-07,0.999998611439422,0.9999917173426137,0.9999922995059186,0.9999557884226776,0.11532707353820108,0.0440552802347238,2.5746967978213004e-07,0.6226408092703265,0.9999597530408064,0.9544486684044685,8.885030607167468e-07,0.9733230722880388,4.22375898393076e-06,0.0001549510813386317,0.00012872858398702054,0.9999986893974843,0.9999931063965072,0.9999965109405977,6.011734200935658e-08,0.0001075043352009113,0.99978946305152,0.999957522908743,1.6483431444211505e-06,1.4718463876196428e-06,0.9999981749168185,0.015579760819914827,0.003422143758052683,0.005517425467032668,0.9198140364739433,0.00032969374210208604,0.45572207472884063,0.897687453588305,5.324141151591954e-07,0.9995936896093792,0.9998608451166532,0.9998943877096683,0.999998619365816,6.349185921930138e-07,0.7401261114182283,0.9999848030056018,0.00022787523997046732,0.9999651206182858,0.9999999744600903,7.496257456169706e-06,0.001826649521822982,2.053430065533082e-08,5.1643451605587466e-05,0.9255861322185082,0.01706277316029715,0.9999747539109801,0.03170214449289012,0.9999892293909663,0.9999966541703262,0.99991913007136,1.836144967624705e-08,0.00035370710161984175,0.0004298314714499945,0.0002972933037016293,2.6079473887507965e-05,0.9999933097606478,0.9999680408586145,0.039568728971684036,0.00019459297175144875,0.9999999975351432,0.0032447777842741325,0.00030718290962950543,3.67475112686522e-05,8.047015381004007e-05,0.321723679455756,5.230137911232913e-05,0.9999851040060702,0.00017574237524306503,0.020834338668015134,0.0007808648617338691,0.9971631516210585,0.9871312544183958,0.9825532581050048,0.0009601886909590316,0.00026491401976277317,0.9997102274699712,0.9999897152589119 -उपयोग,rgb,1.0,1.0,1.0,1.0,1.0,0.002092643309773181,1.0,0.8743346968465361,0.9899982808425956,0.9999993050708191,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0064938616974394075,1.0,0.9999999996976585,1.0,1.0,0.9999999999448133,1.0,1.0,0.0025348269814500788,1.0,0.07992026076513825,1.0,1.0,1.0,1.0,1.0,0.999999978407792,0.9999600703317039,1.0,1.0,0.01955729179758292,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.002824728948139898,1.0,0.9996879629563411,0.9666408873332538,1.0,0.9985194433851436,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999810136008896,0.9771391771960373,0.9582020640887894,0.7492537486166959,1.0,1.0,0.9999986503000022,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9209973665153725,1.0,1.0,1.0,1.0,1.0,0.9573409973901147,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999860631553509,1.0,1.0,0.0018776712949525904,1.0,1.0,1.0,0.9999938742119159,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999998,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999953,1.0,1.0,1.0,1.0,0.0008638610983024179,0.9999974639863326,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.803617626702608,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999986577,1.0,1.0,0.9999995850922946,1.0,1.0,0.9999999999933911,0.9999999721764629,0.9997433171464294,0.9999999620800454,1.0,1.0,1.0,1.0,0.003013339643159389,1.0,1.0,1.0,1.0,1.0,1.0,0.9973021437690326,0.9999999999915956,0.9999999999942002,1.0,1.0,0.020625390954636787,0.002001214320668948,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.026250686845112458,0.9864594957723565,1.0,1.0,0.999999968027052,1.0,1.0,0.9994785221108528,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999483133,1.0,0.9765540972424916,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.8228963234718515,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999481652036012,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -उपयोग,shape,0.9999999212206057,0.9999482798659332,0.9999714823974449,0.9999993835818126,0.9999994609185641,2.8610608229223587e-05,0.004618336126702677,0.9999999165701839,0.9999996974349791,0.9999993831380533,0.9999973024263494,0.9999998182407634,0.9999996325712395,0.9999998422273884,0.9999981777426006,0.9439704925472127,0.9999999998280389,0.9999999999982201,0.999999969722076,0.9999999967443949,0.9999477752623113,0.9999699680862464,0.7524255799807491,0.9997783573668014,0.9999939150488337,0.9999946326495092,0.9999999006651709,0.9999728705379807,0.9764782755187766,0.03818232081088591,0.9997704469133639,0.9999949376757975,0.9995825423474735,0.9999949240970405,0.9999842609786387,0.9999999997660673,0.9999999936037898,0.9999999977036742,0.9999999929767049,0.9994152119893964,0.9999999938326443,0.9999999974437483,0.9578215317468192,0.590932354040931,0.9345709050455525,0.9999616454502491,0.9999924761566564,0.999937985017479,0.9994115008820421,0.9999951068636481,6.0307400272837164e-05,0.6531379455721543,0.9999999743198689,0.999999992846107,0.9999983725356328,0.999991694580807,0.9999993029358959,0.9999999806969525,0.9999999957145029,0.9999996833138746,0.9999999908837046,0.9999913083499642,0.9999513031226653,0.9999876734942671,0.9994397463346242,0.9999828226864381,0.9999282248649676,0.9999999076071208,0.9999998104324359,0.9999999820539022,0.9999999937118229,0.9999937862007493,0.9999259718624169,0.9999997785790273,0.9999093327207318,0.9999601356801223,0.9991712430516935,0.9999538064108379,0.9999997206601235,0.999098063152273,0.9999999767019724,0.9998057372677739,0.999999258482743,0.9999998899160162,0.9999993942447837,0.9999994594891456,0.9917752243070334,0.9999999953447609,0.9999999996639757,0.999999867438341,0.9999998905237042,0.9999999820433999,0.9999987523586281,0.9999973726977367,0.9999988615231182,0.9999999504754586,0.8156010738446796,0.9999992333076447,0.999914209690287,0.9999995429892022,0.9999887039713224,0.9999999562078999,0.9999999899632014,0.9999999916863432,0.9997838492369833,0.23392904540097428,0.9986508246113918,0.9995386805600306,0.9994071183493572,0.9999999518734145,0.9998992300808539,0.9994380286804772,0.9999043709426538,0.9999657156426711,0.9999887156016051,0.9999999630132523,0.9999961162045965,0.9999884069338021,0.9999999839013087,0.9999993769549589,0.9999988724225415,0.9999890332960429,0.9999986931486297,0.9999999144310008,0.999933581996093,0.9999999866261999,0.9999928804116046,0.9999707715567585,0.9999978852411568,0.9999989514345428,0.9999999999844391,0.999998191397811,0.9981313865571879,0.9999998250807991,0.9999945121787479,0.9999205753147296,0.9999999577062948,0.9998741882020383,0.9999994963075659,0.9996827440149106,0.9999999701344067,0.9999548355837887,0.9999088900990687,0.997813519562152,0.9999999990143453,0.9976847862479995,0.9999880070610345,0.9999867727077734,0.9998967835087931,0.9999997935281908,0.9951750493960932,0.999999743432164,0.2731268923317577,0.9999992095918632,0.9999826110049649,0.9999966445801368,0.9999998182407634,0.9998488244104848,0.9999320972609098,0.9999996103746148,0.9999990377434411,0.9999383638743534,0.9999999998299909,0.999987830274146,0.9998775566822288,0.9995237670670888,0.9995231424678543,0.9999999848655545,0.9999853699287062,0.033614202426857906,0.999994711612175,2.922671602721309e-05,0.9999998766826764,0.9997653512946797,0.9999999957588002,0.6825805562638533,0.9999999319488744,0.9999699767086129,0.9999856748680689,0.9999894027097851,0.9999147573504118,0.9999999500794579,0.9999999429962921,0.07166218213074278,0.011398507426897605,0.9984807684819156,0.9973176875288642,0.9999960428683908,0.9998101238771717,0.999999232497131,0.9991259045420222,0.9999996093916494,0.9999999701401545,0.8835115793931064,0.9999999426033008,0.9614642936120267,0.9999766234985484,0.9998928127474145,4.436689511987693e-05,0.9999928141205222,0.996591960299767,0.9999999573592462,0.9999774568639263,0.9999999853114017,0.9999997655533251,0.9998359673270053,0.9999805117378266,0.999838805973076,0.9999964082943587,0.9999999681541935,0.9999986675111431,0.999999999016548,0.9999143655249311,0.9999999994653281,0.9999686276270598,0.9999925085939136,0.9999970245907788,0.4550725792573455,0.999992514256359,0.9999999816811095,0.9999883648904541,0.9999810162874985,0.9999999893007298,0.9999955980600637,0.9999993582935106,0.9999421743412278,0.9999997658088058,0.9999999420268282,0.9953710997439018,0.9997609668492992,0.9999515874916931,0.9999989219800365,0.9999375224193081,0.9999999980352541,0.9999988724225415,0.9999877966670069,0.9999211153317701,0.6907500704295271,0.9999982955507557,0.9999682666415053,0.9999999916425023,0.9999839935731348,0.9998545889888143,0.999986918607217 -उपयोग,object,0.9999970855852243,0.9999999706822957,0.9999993495789934,0.9999999999999998,0.9999971997820489,2.7918317215657793e-05,0.0012280679786728728,0.999993659233755,0.9999788201661483,0.9999928402290722,0.9999999992882167,0.9999999997278228,0.9999999999578153,0.9999999999534903,1.0,0.011748077452801112,0.9999999943269904,0.9999999983025871,0.9999997091765949,0.9999999587084526,0.9997178888210032,0.9999836941475059,0.0010425764616149229,0.9996974470587426,0.999906897111581,0.9999999620073411,0.9999178908826252,0.9999667283954665,0.15060621114460623,0.9995831616329433,0.9911450588073434,0.9999979029972911,0.7127899298618772,0.9999769947791227,0.999999999999851,0.9992678523626268,0.9999999987586934,0.9999999999792928,0.9999999323745586,0.9993171024892229,1.0,0.9999999999543225,0.3751505994209824,0.9999960287135763,0.3209503332350595,0.9999966321448537,0.9999953738716619,0.9999939077245794,0.5167652349029593,0.9999986898916415,2.0496397963706475e-05,0.9999999999881448,0.9999985396905766,0.9999790778749944,0.9999523742649572,0.9967607315231324,0.9999999863070022,0.9999999957294332,0.9999999999954867,0.9999999999581586,0.9999999999950273,0.9999587310377234,0.11000058217616451,0.9999999999087001,0.9999999347844037,0.9999925934917737,0.9999998009323173,0.9999982664679259,0.999996745928521,0.9999973960042621,0.9999526725282192,1.0,0.9999999999999996,0.9999872973200826,0.999999717102631,0.9999999991200081,0.9999979888104459,0.999998285685957,0.9999999430642942,0.9993173605348623,0.9999954759447167,0.9999854516681751,0.9999999927347212,0.9999999988632038,0.9999563867694741,0.99999999657441,0.018527570961519354,0.9999999999041613,0.9999998266954601,0.999989866123248,0.9999973746044859,0.9996430164047843,0.9999997809649843,0.9999994552867689,0.9999998930701904,0.9999999975978136,0.03822769689305293,0.9999999694056483,0.9999969952218236,0.9999999940546254,0.9999990845198939,0.9994939219435857,0.9993840612662211,0.9999999999999989,0.9999907857077387,0.011304842096977984,0.9990843508249193,0.9998660870492151,0.9999999913856757,0.9999303439611721,0.9999999613458012,0.9999999999999922,0.9999999999999993,0.99999974644836,0.9999962534692268,0.999999941909236,0.9998782018635441,0.9999997802934694,0.9999999999552751,0.9999999789339233,0.9999876009665154,0.9999989009785296,0.9999985066478102,0.9999999999999998,0.9999977315330747,0.9999225377947011,0.9999998508192942,0.999614077205366,0.9999998738879555,0.9999996907104463,0.9999999999441251,0.9999913665407143,0.8250953563590145,0.9999945368300165,0.9999009227818079,0.9999338120624648,0.9999999940998607,0.9997995958646966,0.9999999176591435,0.9999999405791327,0.9999999999999989,0.3334606697412357,0.9997837473283328,0.9999999999999971,0.9999991891829889,0.9988489680960638,0.9999946732663436,0.9999997915875553,0.9999999443046985,0.9999993997765099,0.999999999999998,0.9999999789006797,0.0002314382341199797,0.999999999784988,0.9996668383944626,0.9999999991824096,0.9999999996582243,0.9999268761702939,0.9999985332519332,0.9999991244332861,0.9999996195040617,0.9999415046015179,0.9993446954965185,0.9999989420303255,0.9999632473301237,0.9995446961475355,0.998331335128281,0.9999999999425409,0.9999999964372974,0.9999999999045261,0.9999996341873686,2.1892357864631967e-05,0.9999999766250028,0.15496676915405885,0.9999999982392496,0.16331281991631347,0.9995502032022506,0.9999999999999998,0.9999793850453187,0.9999954682282898,0.9999853649176264,0.9662513236165848,0.9999999999999982,2.8330796867395608e-05,0.0010016469385054332,0.6987067508863125,0.9999999999997478,0.9999999346632897,0.9999999842116922,0.9999999996806672,0.999953280017953,0.9999994605078397,0.9999925136574764,0.9996169020036119,0.9999999676154302,0.11857456802856965,0.9997742003583434,0.999999946372526,5.545644635686181e-05,0.9999761744226228,0.9999999999995133,0.9999999969655955,0.9999890800920006,0.9999779380014019,0.9999999808650754,0.9995098762028628,0.99698756172475,0.9999999999999989,1.0,0.9999932335537087,0.9999992885570653,0.999999999983493,0.9998976166934439,0.9999999999994438,0.9999615874398597,0.9999997777280673,0.9999999747776638,1.3359067215498842e-06,0.9999919310137184,0.9999999820911761,0.9999564492537978,0.9999999999999998,0.9999063990965081,0.9999999999756641,0.9999995155112975,0.9999595084193819,0.9999999992015034,0.9999999580654126,0.11925470301094802,0.9996935861468027,0.9999999999999947,0.9999998400943497,0.9999999999999998,0.9999879915053712,0.9999869953760785,0.9999995693877626,0.9999992612292392,0.9999798516880013,0.9999960950405417,0.9999989268901903,0.9999999998918143,0.9999999999999547,0.9998801810805555,0.9999912030942292 -और,rgb,0.9999999999995941,1.0,1.0,1.0,1.0,1.0,0.9959895872917635,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.002649574810895428,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999983904,1.0,0.06807459831843629,1.0,1.0,1.0,1.0,1.0,1.0,0.0019875665258166004,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0339968492958994,1.0,1.0,1.0,0.29798177079141336,1.0,1.0,1.0,1.0,1.0,0.007907447790410612,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.015989641181920037,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999993896,1.0,1.0,1.0,1.0,1.0,0.026633252176186246,1.0,1.0,0.9999999999997617,1.0,0.45535968851191805,1.0,1.0,1.0,1.0,0.04408911957171195,1.0,1.0,1.0,1.0,0.9993367641959827,1.0,1.0,1.0,1.0,0.04729744815121094,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.6804967562091083,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.007821669084386612,1.0,0.00819942728829199,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.3561936703828504e-06,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.006550575896894742,1.0,0.9954882966847457,0.7329061574411017,1.0,1.0,1.0,1.0,0.0008058596700934813,1.0,1.0,1.0,0.10032783364737134,1.0,1.0,1.0,1.0,1.0,1.0,0.999999999998795,1.0,1.0,0.4361837407628578,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.999999999999849,1.0,1.0,0.007362242618657642,1.0,1.0,0.9999999999955065,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.13661395608251067,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.16733122208824722,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -और,shape,0.9999997700721097,0.999999658160795,0.9999994510698651,0.9998653682725575,0.9999998232949631,0.9989635918772473,0.9999902315107392,0.9999997351045278,0.9999626254137113,0.9999864000187619,0.9999994764487702,0.9999999364409295,0.9999998467404301,0.9999999574814564,0.9999999964364878,0.9996064502613649,0.9999999999532871,0.9999999999604963,0.9999999998624953,0.9999999999958291,0.999993924354429,0.999998989473265,0.9991808198996789,0.9998598696562655,0.9999930783128161,0.9999998845092619,0.9999979063855337,0.9999995107351376,4.310481731087151e-05,0.00594597493287288,0.9999778298894665,0.9999998370263333,0.9997776965405476,0.9999939338277687,0.9999854972250055,0.9999995068808845,0.9999449110278265,0.9999989654776344,0.9999999977741203,0.99999999748555,0.9999987382484119,0.9999990755680265,0.15112396541625933,0.002541928111928188,4.513660420153431e-05,0.9999704311129439,0.9999926699745294,0.9998125341613585,0.9999931254252196,0.9999976900968625,0.8956614101468567,0.999794963021696,0.99998258168322,0.9999993385615836,0.999999980637673,0.9991188734638884,0.9999931728938353,0.999999998930057,0.9999999989806003,0.9999552772157987,0.9999979412409042,0.9999999952802385,0.9999978216084212,0.999999991312179,0.9662251616001245,0.9998841961891399,0.9999768702948144,0.9999720819014183,0.9999585242192696,0.9999999064606689,0.9999999464783522,0.9999988525918497,0.9999997869926037,0.9999896778211673,0.9999987230580268,0.9999850775187055,0.9999704406287265,0.9997796313276024,0.9999998003114309,0.9989257074153753,0.9999989202329095,0.9999998280065465,0.9999992789287976,0.9999999990769606,0.9998994288339778,0.9999996202207974,2.8361570482321056e-05,0.9999508425429188,0.9999999940841846,0.9999987514661502,0.9999660230696453,0.9999999662227159,0.9999323599892059,0.999989614795037,0.9998055318966883,0.9999999797046331,2.0195324770515818e-05,0.9999515347124083,0.9999999769770885,0.9999999883328684,0.9999917844932389,0.9999999986752586,0.9999999998393974,0.9999999963851858,0.9999999909495855,0.14043870529659422,0.9999999133607824,0.9997561349470749,0.9992266940895155,0.9999999163857508,0.9999969378493837,0.9999996145440664,0.999996320584455,0.9999991495941607,0.9999809825531526,0.9999999936578634,0.9999917082515619,0.9999993543030169,0.999999978285973,0.9999960242999089,0.9999857252952813,0.9999774280870429,0.9999996028037733,0.9999928546457704,0.9999987461798208,0.9999999972305171,0.9999999483580913,0.9999803977441843,0.9999991105243109,0.9999927558754259,0.9999981670758277,0.9999987178663069,0.9999999523415035,0.9999832033017809,0.9999969741846713,0.999717894709881,0.9999999648655792,0.9997128107910612,0.9999978606803691,0.03533206806503086,0.9915757180620846,0.999005161174713,0.9996525598378897,0.9999978517545909,0.9999999999417315,0.9840965791356456,0.9999999993409434,0.9999903988543195,0.9999493169707833,0.9999998121103617,0.9999976440707175,0.9999999356039594,3.599420901623069e-05,0.999858705915094,0.9993529129487111,0.9999992811082811,0.9999999364409295,0.9998692020302891,0.9999998033294888,0.9999998391335027,0.9999995694383534,0.9999331902148544,0.9999986882427309,0.9999947682285882,0.9999944332201092,0.9999979704756883,0.9998877748760863,0.9999999954397893,0.9999261072404755,0.9999991040587239,0.9999999739181069,0.9979460150640719,0.9999999504638775,4.965095882922158e-05,0.9999996035457632,0.9999989320497052,0.9999999543798294,0.9999614094802473,0.999999207824491,0.9999980446479884,0.9999695386169459,0.9999998664807229,0.9804222439033801,0.5920044124229571,0.0022638194599548973,0.9999973466298122,0.9999989020907781,0.9997305602226775,0.999796968819179,0.9999974747507729,0.9996969077817424,0.9999990784126458,0.9998719176564234,0.9989264574912553,0.999998967891809,0.9999941677876231,0.9999899822465501,0.999952614619356,0.9902145410189789,0.9999989832103937,0.9999981156372842,0.9999860260559348,0.9999988394678673,0.9999985900623396,0.9999999611236747,0.9999955362241149,0.9999275350230121,0.9999997786985276,0.999993120385263,0.9999954836510703,0.9999973038749739,0.9999986838984358,0.9999803631483775,0.9999998127691241,0.999986259050738,0.999999999763935,0.9998710249221627,0.9999744731510779,0.9999996455667792,0.9999986577396327,0.9999987919185944,0.9999996855199206,0.9999999084468746,0.9999999954541512,0.9999711340508087,0.9999993283152402,0.9999998977908513,0.9999999961694128,0.9998383600450577,0.9999997459119174,0.9999993151239571,0.9999948957309212,0.9999998613247775,0.9999998244406203,0.9999857252952813,0.9999814977804341,0.9999998259132793,0.0050343472947193,0.9999982234420683,0.9994418864219514,0.9999798492732387,0.9999942047739335,0.9999897465690006,0.9997223559592121 -और,object,0.9999998660004594,0.9999999999999809,0.9999999983485268,0.999999961453447,0.9999999868921674,0.9999977877901787,0.9968878614787702,0.99999999987726,0.9999999974516884,0.99999999540529,0.9999999999997526,0.9999999999997742,0.9999999999998466,0.9999999999999982,0.9999999999996685,0.9992490569429183,0.9999999998119997,0.999999999987224,0.9999999999929761,0.9999999999998721,0.9999999895493731,0.9999996974634862,0.9999996872802478,0.9998280738699376,0.9999999975917973,0.9999999862148867,0.9997609789680104,0.9999999980398837,3.4953102940132434e-05,0.999996137927742,0.9999999953270455,0.9999999823708329,0.999997295313345,0.9999993606752204,0.9999999907320928,0.8052362395163679,0.9999997523185055,0.999999995346045,0.9999999999994771,0.9999999999992195,0.9999999999314686,0.9999999999819467,0.9979292531874132,0.9999789945445805,3.2626178064259886e-05,0.9999991801270461,0.9999993942184154,0.9999994868839629,0.9880190944918606,0.9999999698910631,0.9997712467387627,0.9999998708314757,0.9999998524223246,0.9999999682654052,0.9999804494692657,0.9999598361750615,0.9999999999997602,0.9999999999999591,0.9999999999999933,0.9999999999875815,0.999999999996263,0.9999999998795446,0.9990734985672244,0.9999999999999964,0.9999999995163569,0.9999526623201268,0.9999991149027994,0.9999999653343702,0.9999999586454641,0.9999999987396699,0.999999999498085,0.9999999999996494,0.9999999999999454,0.9999996899974382,0.9999999999999756,0.99999999999995,0.9999983755492515,0.9997768212546763,0.9999998258558996,0.999929370901112,0.9999546293522052,0.9999999999998319,0.9999999965875579,0.9999999999999967,0.9999979420008863,0.9999999992330719,1.9844985447772004e-05,0.9999998214238605,0.9999997836683245,0.9999965932748951,0.9999999305251336,0.9999926888591174,0.9999999999976843,0.9999999999984894,0.9999999999924822,0.9999999999999893,6.858832995712122e-06,0.9999999999975724,0.9999999999999623,0.9999999999998517,0.999999971751583,0.9999971390157798,0.9999999999512421,0.9999999999970199,0.9999999999998612,0.999691787118512,0.9999984128875054,0.99976765903254,0.9997666930415953,0.999999993633991,0.9999999672478799,0.9999999999713607,0.9999999999979616,0.9999999996671625,0.9998954021113143,0.9999999999068798,0.9999988594090601,0.9999999999442595,0.9999999999967217,0.9999998909096356,0.9999986124433946,0.9999999967524282,0.9999999956341878,0.9999999980148286,0.999999997848934,0.9999999999289382,0.999999999980228,0.9999916408962044,0.9999999946232807,0.9999999473102924,0.9999999999905982,0.9999998070862249,0.9999999999175193,0.9999999090429886,0.9999997584203693,0.9999985072302734,0.9999998740601411,0.9998123477923914,0.9999999952929641,0.9999998406594514,0.9999999824212277,0.8724923852080565,0.9999999939976261,0.9999999999912219,0.9999999999861515,0.9998408310230362,0.9999999999998899,0.9999994571807296,0.9999913907810453,0.9999996891856466,0.9999999999960643,0.999999999996259,1.700251921148326e-05,0.9999999999864773,0.9888499027823274,0.9999999999981946,0.9999999999997793,0.9999998752901433,0.9999999999050393,0.999999992594808,0.9999999998079028,0.9999999923933897,0.15246161526857807,0.9999999960328558,0.9999999925156503,0.9999999951016336,0.9999999042901327,0.9999999999966458,0.9999999933954871,0.9999999984685768,0.9999999999988456,0.9999986230274693,0.9999999999308806,2.781680095529729e-05,0.9999999801034234,0.9999842022677962,0.9999857297710616,0.9999999999979425,0.9999999975521836,0.9999999948751426,0.999999955222928,0.6499315774984447,0.9999999902625955,0.9997625604906742,0.997016964932262,0.9972958944604938,0.9999999999302098,0.9999999999915021,0.9999999996942093,0.9999999999991902,0.9999992558846159,0.9999999871803728,0.9994256165339996,0.9999999967126441,0.999999999315796,0.9993136683846284,0.9999993840655087,0.9999999998516778,0.9999573113497331,0.9999999982985099,0.9999999999659601,0.9999999966007562,0.9999999988976656,0.9998579442530272,0.9999999992694655,0.9999999996906592,0.993979471750293,0.9999999999983067,0.9999999999995366,0.99994322656719,0.9999996386929433,0.9999999839738354,0.9999999937149162,0.9999999999995985,0.9999999714108349,0.9999999999969007,0.9999999937527893,0.9991544245842227,0.9999999942957569,0.9999999246172148,0.9999999400986255,0.9999999999997824,0.999999997852193,0.9999999999999569,0.9999999963140214,0.9999999999475113,0.9999999999999165,0.9999999999949569,0.9993950766366737,0.9999999737083551,0.9999999999982254,0.9999997924108921,0.9999999999999349,0.9999999960507391,0.9999987212006041,0.9999999504198667,0.9999999979288963,0.9999976433126037,0.9999999913623926,0.9999973090706209,0.9999999760628179,0.9999999999996834,0.9999999776491464,0.999029438843016 -ककड़,rgb,1.9616926796084704e-23,0.9999430310792901,0.3736408885244653,2.149063868315928e-07,0.18463358623581375,0.0005211142840482134,7.438206371225534e-24,2.1908958107784652e-08,1.1203228325029391e-07,4.073327280454702e-08,0.7598765444305687,0.7242009863196465,0.7165021299159611,0.9999497922293217,4.803773897453471e-08,2.1997648838234795e-31,0.000840744695602715,0.0019274245701051715,0.0008303062733485499,0.1289134800136274,4.355406800218053e-05,1.1604611070556995e-09,0.0002690351020520891,2.827132152076784e-11,0.8890236420900198,1.1472183630582409e-05,1.5501314264040935e-25,0.8721767549421142,2.1747277952851855e-30,0.9999777796645503,0.0005404991211505959,0.5320942578307796,0.0005061467855096767,1.601798503788505e-09,0.001533103621998167,4.737406078044984e-31,0.20358223968818565,1.147204499753981e-07,0.07747999481268451,0.0016933715763176955,3.1081827970017228e-06,0.9999760718800985,0.0008033767153755504,0.9999744153320838,5.1758198695246786e-27,0.8740819848193934,0.6368814295105596,0.3677305649426034,7.019113211035833e-27,0.00012131552510892784,0.0004748820159373285,2.191111430535299e-06,4.238779551136797e-08,0.00046060934655614577,8.964703509807419e-29,0.0019297638988537238,0.9995384837876945,0.9995245613181012,0.7362762517108372,0.722035497831375,0.7384065268010296,1.4424852515310932e-05,1.8568296514003467e-32,0.9999730122568266,0.9999779742199377,1.0925432270264847e-11,5.561059896165336e-07,2.0803468444939973e-08,2.3423814491151375e-08,8.706574766142196e-08,0.0005024877083934458,9.84486907215691e-07,5.3367302500047725e-06,1.038501778332456e-08,0.9998622597159995,0.9999747501739429,2.8958815084294117e-06,2.7388081361695036e-11,7.161617424919077e-10,0.9994843755740366,6.682196265397594e-25,0.9994148245759312,3.180153131122056e-07,0.9993304003828496,3.405503454578712e-08,2.987431002813081e-07,1.064704447621195e-30,9.597751532821562e-08,5.368522942184258e-21,7.756684411889225e-25,1.56184377910041e-08,1.7158583723431508e-33,0.9995629365169592,0.999591564864851,0.9994576406841343,0.9993839735003284,7.613561624769953e-30,0.9993236695783222,0.9994601302064882,0.9992896369330566,0.9990483446069041,1.3034487821343225e-22,0.0016084389202432345,6.538355261014505e-07,0.9990932621121785,0.000593210423082423,3.061023552171531e-26,5.0003965160352694e-11,0.00012883759771377065,0.001225637134927748,1.8673807709184108e-05,1.1411198053023596e-06,1.3827717296680698e-07,0.8674336105250028,0.786774540673781,0.8071534528482811,1.7163545933651593e-08,0.9398931208894831,0.6947066706757582,0.056859653603762925,0.481019937443048,0.925001525771603,0.0001279939894419167,3.4263149958832605e-06,0.9037747811101481,0.7815272625507665,0.9285609694821859,3.585879278986503e-08,0.0008404633202668666,1.9495168059206975e-07,0.7349445595825546,5.684740587343636e-09,0.0004723062346902928,1.193725327329954e-08,1.5407418664329282e-08,0.0005563685148003248,0.0006315591768319518,0.0010135385366533936,0.0003843966684751477,0.9999775460785315,0.0018238386190500128,1.5412828459943048e-31,0.00043620120857426717,1.1000370060682493e-05,0.0911553291686135,0.2547083312186906,0.8681019650267242,3.6065582123809893e-10,7.984634511147212e-07,9.919501778245292e-12,4.0989683920988536e-06,0.00010150816118535278,1.480068692668585e-30,0.7623847175402138,8.152043494022088e-29,0.7386186832342444,0.7650182084957718,0.9764160823570708,0.9955154030142226,0.0002820502104492197,0.9466387345911188,0.0003277368451062873,7.360468630910166e-31,0.9508935632565401,0.8759443019440575,0.6571322311516566,0.805980389176196,0.7659880282090079,0.7267582700385092,7.64841542984241e-07,0.00020889484114576472,0.00048048134413581283,2.0474700909246584e-05,6.461095213597848e-32,0.00043819880248928503,6.377842617853835e-24,1.1737691950275096e-33,3.3672918199216163e-07,0.8650268574405007,0.9687725925096282,0.9579495820885502,1.0390365355764924e-31,0.0020747666309828307,0.00031264830745907817,0.0006008090070467398,6.517101228692838e-28,0.00010972319240255146,0.9999337367669499,0.7249516436739676,0.7470312143511283,0.7432469875119428,1.0520095006618223e-09,9.184550746088216e-24,0.2875034622405221,1.2881165212491362e-06,5.149656936702945e-27,4.026286544680018e-08,0.878486879044401,0.0005122268815164365,0.00035523340216868984,5.6261383290751155e-06,6.204077608527835e-05,0.6991984287344875,3.1307912669612764e-25,0.9350487475459552,0.0007418085463703078,1.0885684045013936e-28,1.9823529915604136e-06,5.2777715150432234e-08,1.0538074138889834e-24,4.7321812345819225e-08,6.601997677537876e-08,0.9043443664076123,0.7421744620312658,0.42508637080418366,0.9025130624070412,0.821155169097613,2.966453058065568e-33,0.6523416171424572,0.4390383526274755,0.6034344902697961,9.461832244673028e-06,0.000442547568567102,0.9999705706498504,0.0024280539614175774,0.003010565951664703,0.9999430053102079,0.0021959566900934925,2.738891986264179e-33,0.48079056241158113,0.00022674247155426497,2.03455800869461e-09,5.567635124125869e-06,0.001172350819792524,0.5614749022150802,0.9019362776907065,0.7799665483984778,0.9999770688852745,4.1041998732382546e-07,2.7430481001977777e-05,9.562763553362106e-09,0.003273678833664655,0.7409120492992809,0.8273540671621648 -ककड़,shape,8.419429430762402e-05,0.10873455587836824,2.6346728068134584e-06,1.5241271064610888e-06,0.14802056126985608,6.458465795074886e-05,0.0005637203664845611,0.00036718021868644644,0.00015614509715159054,1.602126985788535e-05,0.9968269248109117,0.9999999625023065,0.9999131800696281,0.0005240218492379656,0.57577631141029,0.0004436078766703881,4.344194689198938e-05,0.0003005204061565813,0.999979137308707,0.29517578791240767,0.00388550016446546,3.5707468718748256e-06,0.0003348731927934089,1.5052366505976604e-05,1.4403871519754686e-06,2.0598803432780203e-06,0.00011930433547423583,1.963603656107777e-05,0.00017899780007302684,0.00097745943789317,5.066932642737159e-06,0.03404776395347298,5.4187402404000605e-05,6.928020274695989e-06,4.3377583845420837e-05,0.00011757504919222863,2.737990321834265e-07,0.00019475899795085326,5.793549484572555e-08,0.0005867920836585245,0.0028784094021206724,0.004570365806263405,0.007460189187546123,0.0007105613620940421,0.0013939317344756267,0.1204594098642189,0.02574620909449288,0.08639303432122608,1.2467840606217415e-05,9.340453620624903e-07,0.00023315798001091671,0.0002850071962358339,6.961108180895879e-05,0.00017872549065652213,1.621926732306161e-06,2.17363987295088e-06,0.9999607490842588,0.9999980868623762,0.9999949629266568,0.012579377170974472,0.00017300164832670858,0.3725181730621514,1.1628452809966117e-05,0.00307421179773362,2.046665839427705e-05,1.13242601542047e-07,6.359092784001149e-07,3.885068072025852e-07,6.662558994994346e-06,0.00015308086607274826,1.7214888836437575e-05,3.1670174331794585e-05,0.1708307673287525,9.569234741692768e-06,0.0438764724615549,0.05947565183945649,3.928380033356504e-05,2.2145405561446697e-06,3.881658690398734e-07,0.9994884471537365,3.1186647006069607e-06,0.999791376576153,5.1065345209615205e-06,0.9998980542122984,0.00017354781964871972,1.2049261034834106e-07,0.0031954207294342747,8.376420433007512e-05,0.002045147682559889,1.470916494572495e-06,2.751208898476168e-06,2.1662426488599967e-05,0.9999944294333054,0.9999965187102533,0.9999968694400965,0.9999987313530866,0.0003339845663161118,0.9999814516905878,0.9996350649232546,0.9997854222800491,0.9997956299086183,7.464023013872446e-05,1.0387755682104393e-05,0.000990484282072639,0.9996074296523407,8.719001315323722e-05,0.00035014582065925583,3.0997893358846974e-06,0.001044512612983464,1.3106270400770483e-06,6.941717489626138e-08,6.338666869835482e-05,1.6921204729023823e-05,0.022560479889019637,0.0786507566800744,0.0027500193452541606,2.3912700009495264e-06,0.045654017892856114,1.4487845094423244e-06,0.9712310463898138,0.9771451331782518,3.7916677201706164e-06,7.506959572104981e-06,0.015131582651016207,2.3423419608503484e-06,0.9949960171596999,0.0012817541285044566,4.682450558653558e-05,1.950087941247113e-06,3.3349374969086363e-07,0.0008577765850738809,9.402294674681665e-06,0.0002741580765362028,6.3310606349867e-05,4.148770253488253e-06,2.838863495160886e-06,0.8334128151320317,1.3712847699105017e-05,5.268794373654222e-06,0.0003560215912470367,2.3225353682065537e-05,5.036758507887888e-10,0.0002747826859185573,0.0005897607881005027,0.9999905658589342,0.7824334508247233,0.9999397310897087,8.82455687482975e-08,6.150965733832223e-07,1.7144770848991627e-07,5.511994509106593e-05,0.023452129543008238,0.004731584913947297,0.004450965244948172,8.20901247355233e-06,0.7128419941406653,0.9999999625023065,4.98218561251418e-05,8.380069416859164e-06,0.0016335058833417218,1.0444608806610043e-08,0.6126246931370563,4.986567020115469e-05,1.088462955516021e-06,3.059318625217405e-06,5.044301719372422e-06,1.8745346737923354e-05,0.9680984677012022,0.01803237320721687,0.00018138041443443138,0.9988279977176082,5.5833092810997236e-05,0.0012488565249371164,0.0004839374882707744,0.03427487210492271,1.1903753028323158e-05,4.749251041292766e-05,3.2193718688706056e-05,1.0809745498386899e-05,3.99343633891708e-06,4.852291796965478e-06,0.00023330100057110623,2.6779159932593043e-05,0.0006642988815159583,7.49439384615374e-05,6.896799412142856e-06,0.00010957552659383807,0.003160626330064984,0.005566359934007263,0.9999999163356065,0.0129586239045917,5.967482996048518e-06,0.0005052804719697797,2.75963541006622e-07,4.0752532735494206e-05,0.0004903671127568864,9.116922341285156e-06,0.002632319431487294,2.267702120148526e-05,0.0008598930158722025,0.0001119219953028824,8.317299705848085e-05,1.9126271160401377e-06,0.0002818327068950679,0.007910942519168216,5.3047059187862e-09,0.0066481297969075825,1.2243569002917083e-05,0.020830742918735906,0.0004122664562324209,3.00107023903752e-06,7.615019211424328e-05,1.723022375092859e-06,0.1896710213527099,7.935775758269747e-05,4.712688843855568e-06,1.1404764972609923e-06,0.0006076340155820103,0.8780583163939243,0.03781940871678254,0.5906859936330332,5.105991083068373e-05,5.043556776258459e-05,0.02902610151166012,0.9692010209628683,0.008948841754558968,1.668365700981494e-05,0.9997698810911129,0.00023602243312436302,0.8468394553247752,1.11831126975524e-06,8.102414788213758e-06,0.030016284427783792,0.00038346713578783895,0.977145133178252,0.8200570103659086,0.01670791278382457,0.0073605391600623325,4.6262746484309274e-05,0.0001408452223178177,2.7828448494431797e-05,4.55283666205053e-05,2.06302326661003e-07,0.01469098623364279 -ककड़,object,8.053189668754341e-07,0.9656015987158233,0.04910771904900732,0.01951092649300082,0.9993497982369192,0.00010929244065126326,1.1525379619240913e-06,0.00030088916185921173,7.331106246933835e-05,5.843360338257019e-05,0.9998650816559111,0.9999999738545948,0.9999976480227977,0.03569995870848802,0.9984297893300088,6.680570119252113e-05,0.0001702668376544575,0.004952007619193593,0.9997436519764139,0.041984307715945246,0.004639686132064498,2.849604050867126e-05,0.00019882306562163472,6.629325119311504e-05,6.30902202233751e-06,0.00046275815383748704,5.681147525725825e-09,2.899191353424807e-05,6.905406023379942e-09,0.7965789654806867,5.627449874156001e-06,0.9918873144899117,5.023327028175575e-06,7.008448334272673e-07,0.0003772474162410756,8.943748154393094e-11,1.3860143274504984e-06,0.0004656754964379655,5.690164163814181e-09,0.0003627713186006391,0.7858685259179596,0.3728702016778062,0.0005063559607326096,0.2996957183642766,1.0366466355731457e-07,0.9959266057975922,0.9776723463105063,0.9010246118044033,2.5470574250692082e-09,1.9466710760032353e-06,0.0001329543132774022,0.03261642838868202,7.411432415106112e-06,3.892239155178077e-05,3.194111771553473e-08,9.822736193480366e-09,0.9999852482653372,0.9999985651921924,0.9999964313227933,0.9940196173127859,0.5563629761558343,0.9336050985715023,7.2493510538059244e-12,0.978433518271333,0.42868883013835296,1.7815499656116284e-06,0.00021299771924860111,5.533809701081217e-07,1.4312517195947273e-06,5.862006270032297e-05,5.5249973530258265e-05,0.7568305206709742,0.9985290855890685,3.7528899846271815e-07,0.970075137600103,0.9959886414042636,0.002187659620223437,4.929309034083077e-06,8.917056004559337e-07,0.9997830044841278,1.086871392316219e-09,0.99981966140258,2.1069608795218777e-05,0.9999363082562789,1.6900353711527599e-06,2.7840951857576756e-06,1.4043724702744517e-06,0.0005941991999217767,2.472889814588826e-05,7.462215382039323e-09,4.2816689234140113e-07,3.3954544402045696e-10,0.9999887393123292,0.9999993444733525,0.9999969785387083,0.9999995596022827,7.456482409435392e-09,0.9999962625260496,0.9998146871190112,0.9999009162689867,0.9998947960845679,6.626119615944812e-07,1.1076732174234458e-05,0.8302396573744619,0.9998020672392545,0.00022386650634289296,2.6737948791402723e-06,1.0784382266583105e-05,0.029157967587544364,8.553683554817836e-07,0.00046752734701860734,0.07219560459608185,0.7973205985765491,0.12062652828021854,0.7493321670262534,0.2560998122252127,9.36444792419646e-08,0.34662995731649554,0.027915445045793616,0.9999249565417138,0.9999540733103446,0.008475090188621475,3.4601850897099177e-06,0.9888388444820208,0.00491717231689668,0.9999688953397744,0.01342645313810555,9.858151634352093e-07,1.1387876700162853e-05,4.863927816476242e-07,0.09924959812280476,1.119792049825932e-06,0.00012642054673260255,4.66465370146925e-06,1.5139865763206934e-07,0.0009249185645837191,0.7861892798083274,0.04317588568173258,7.302476044089174e-06,0.8357782360654246,0.00023262554229717074,1.147432410469389e-14,0.00015961306469431636,0.8676246641112085,0.9999977800131273,0.99886919395566,0.9996224693208495,9.840341703136096e-07,0.00011448367559621208,3.49950595745348e-06,0.6450827377910571,0.3507307617755208,1.7773423249540434e-06,0.9801926059327606,3.966315448649221e-09,0.9999577610440977,0.9999999723036771,0.00036468775837352103,1.5304706142764987e-05,0.4488787563427164,7.672125018709615e-08,0.8166686296796778,7.45837827483979e-11,2.1818402914940883e-05,2.3454100753959378e-05,2.1607292989379355e-05,5.4774215349945295e-05,0.9999628302712369,0.7285388752098313,0.6768504865646431,0.9862615679159313,5.990681950247509e-05,0.02195136314490778,1.6812946944215315e-07,0.04091471576136686,4.876479359685071e-07,1.2171097741260778e-09,0.7380039169660748,4.2300514462329134e-05,5.774830639454292e-05,3.550682510394149e-05,7.588651034366635e-11,0.0002244251435746339,0.0003907162071419155,0.00030469518674477807,5.0417938369110424e-09,0.4443645902926876,0.9900148535145815,0.9979764363288682,0.9999999576464258,0.9108227550347977,2.9280198939835927e-07,1.1794099424639477e-07,2.7871794894615087e-05,0.00019500781445592628,2.760974646364306e-07,1.2970855375802777e-06,0.04465930856128445,1.771717174628307e-05,0.00034664645791570475,0.5732723159047756,0.0009060309617504192,6.479443765358932e-05,7.37752969098979e-09,0.1520462152022344,2.9088252048252985e-08,3.835372071278644e-06,0.10041749146037919,0.9893980818947343,2.411634597854688e-07,1.0442688616746386e-06,0.0007178148973685371,1.8654654477099253e-05,0.9956984022769141,0.00028582051114301967,0.00401362780130733,0.001685675340290227,1.914304912936972e-06,0.9998963585786009,0.966933459615277,0.9996730351429296,0.9618908789994883,0.00014394337812277428,0.9912014672814627,0.9796814052427111,0.11352834367586281,0.003765139929331816,0.9958644877240771,8.090270703040368e-08,0.9998936350925692,0.0001256714924358327,1.6249770255043002e-06,0.9928641449086979,0.00021303179770547261,0.9999549134775515,0.9999232468783757,0.9079962618993486,0.9741211617280159,4.2925216501521715e-06,0.0001552750351850305,0.0005230131304855388,0.0004444815747169193,0.0002847398098402992,0.14722169866585766 -ककड़,rgb,4.275999156143418e-23,0.9999168125978612,0.4449896556935996,2.6144216782053343e-07,0.23643368286930094,0.0005166852200281215,1.795486122282268e-23,2.5521759605896353e-08,1.2918204963702782e-07,4.8772714921086316e-08,0.8001650260425899,0.7720711594409629,0.7651081368645503,0.9999265655247475,5.5827558512785475e-08,5.823246629594241e-31,0.0012596890496060801,0.0028467917180469483,0.0012410674887500946,0.15060936993616414,6.66382722841535e-05,2.105864259241942e-09,0.00027083644753926985,5.531763601511499e-11,0.8745306555786929,1.9206372140842717e-05,3.438494081753721e-25,0.8573538405779277,5.6254899009463214e-30,0.9999707197493026,0.0005359163417927068,0.6000540952510285,0.0005084745496303615,2.190737770558174e-09,0.0015274516893794682,1.2521793487271109e-30,0.2366680860487249,1.9296953679307454e-07,0.07541191376874883,0.0017341876890868439,3.6955094818522287e-06,0.9999704992217322,0.0007966031353426317,0.9999660939048439,1.3158148759633344e-26,0.897314976161105,0.6958565683183949,0.4389023639035818,1.7612631482858872e-26,0.00014767542810665088,0.00047209911596459006,2.614622201120912e-06,4.989019712550909e-08,0.00047229784418454306,2.315693012909254e-28,0.001949523375807256,0.9995177848169668,0.99951044712231,0.7822957175320097,0.7694540767968251,0.7817813519837647,2.236239011193697e-05,4.924912178180785e-32,0.9999676011358324,0.9999716396489579,2.1160205312118852e-11,9.703105352053293e-07,2.486284001911471e-08,2.7409345815567587e-08,1.0025624191929274e-07,0.0005107574113378965,1.1951134575956734e-06,6.356986504755804e-06,1.259063278407898e-08,0.999802589329677,0.9999690662682207,4.953313574620464e-06,5.2919631805121253e-11,1.3133332944788956e-09,0.9994751078974712,1.4708901101689807e-24,0.9993953288161024,4.7602719513346857e-07,0.9993334052849167,3.954312124797741e-08,4.548413305821694e-07,2.773146596448605e-30,1.630321148209975e-07,1.1086383301318842e-20,1.700865282342852e-24,1.8320169018670554e-08,4.524413691402566e-33,0.9995352639896802,0.9995810439733857,0.9994520234597952,0.9993841082700489,1.9650309612629613e-29,0.9993272276385886,0.9994393562558445,0.9992923252836068,0.9990709025730314,3.1237572936115614e-22,0.0016540209628886056,7.845710106681057e-07,0.9991181541435631,0.0005866070087401484,7.751240472520032e-26,9.70114900263568e-11,0.0002072903549271623,0.0012694860314402285,3.0749738460948654e-05,1.372266804388865e-06,1.6544545009311923e-07,0.8917227572781492,0.8239975115436969,0.8404859708433579,2.190328781030681e-08,0.949279091637812,0.7466871544411701,0.07882322939422766,0.5514006732655757,0.9376289245536832,0.0001526078745856346,4.138645542185148e-06,0.9211529560388951,0.7796550813519961,0.9406185505689424,4.511518576656393e-08,0.001039995580705341,2.6773536939442425e-07,0.7581017936757118,7.82312316515836e-09,0.000467665777314619,1.4427459639854156e-08,1.980826408521897e-08,0.0008274068065947533,0.0009451784939577666,0.0015063432410676967,0.0004686461355816861,0.9999705571075266,0.0018325338555941085,3.970292717940469e-31,0.0004448910734363382,1.321188239128524e-05,0.1060013325431849,0.29164744958281635,0.8748296514221315,6.685733170843215e-10,1.3898914181284223e-06,1.9421306931654406e-11,4.955671988082244e-06,0.0001343363080367074,3.871983428129411e-30,0.8021932763794942,2.1059269556098395e-28,0.7837567483350513,0.8066158930807056,0.9718596001977706,0.994709290247126,0.0004259161064636437,0.9352722279084024,0.0004947948984761617,2.01389488532824e-30,0.9430634145750387,0.858260499803171,0.623123649287463,0.7837838419930708,0.8071963119744938,0.7734331791288379,9.184852914535121e-07,0.00027498407643089897,0.00047767423415722983,2.6933079290135958e-05,1.7116202139675461e-31,0.000569570184605546,1.5404622403137792e-23,3.085730778467645e-33,3.8858674952858125e-07,0.8391165722966373,0.9629540817952222,0.9509097758872852,2.773336835227971e-31,0.0020596413042133052,0.00031518052898585233,0.0005941184056128723,1.6540839921087523e-27,0.0001331177602021099,0.999903994490535,0.7718939706270644,0.7913554288057288,0.7857795570685113,1.5333359702722825e-09,2.0136115650898635e-23,0.3283827073262144,1.7221744767961281e-06,1.2891597179235311e-26,5.115336095033324e-08,0.9003588567994474,0.0005124642470158613,0.0003668837423259114,6.771574594815127e-06,8.280996163875135e-05,0.6740844200573788,6.87146782674249e-25,0.9454554305516635,0.0007645171809132676,2.811476577438488e-28,2.3891535750155932e-06,6.185030802446608e-08,2.33397932727873e-24,6.734462159435833e-08,1.1100058666415124e-07,0.8917320281857257,0.7870402308471269,0.3920536567295303,0.9196203039024969,0.8536825758911217,7.855704399319359e-33,0.7100149008653903,0.5099708616468714,0.6653501761680815,1.135695077123702e-05,0.0004514385711598923,0.9999651543337725,0.003568765637989759,0.004413383367491209,0.9999167838251813,0.0032133176402430177,7.248557077413431e-33,0.5511873347180877,0.00022636265226063108,3.1717784089836417e-09,6.668339939357394e-06,0.0012073662901693055,0.627410833206732,0.9196689481924225,0.8195739823797286,0.9999701306448263,5.486025831372931e-07,3.642130776746557e-05,1.6538747449995996e-08,0.0032763349594948613,0.7822231931632652,0.8562929171988922 -ककड़,shape,9.809579768180028e-05,0.11518409219421881,3.0572043931661064e-06,2.0008714819073357e-06,0.14360672509345582,7.995303245869507e-05,0.0007576516729977778,0.00037842432181697236,0.00016247523721892013,1.8831928245311047e-05,0.9969757754847477,0.9999999650763481,0.9999156747579444,0.0005346918008175856,0.585706621801244,0.00047128648026943817,4.122518112760114e-05,0.0003157464735221839,0.9999801607305591,0.27254747275212354,0.0036432565083252544,4.205924252039119e-06,0.0003243168901248341,2.0163555794766584e-05,1.6569825280073238e-06,2.441499425078872e-06,0.00015834654570885575,2.4795509839245727e-05,0.00019825715875440903,0.0010258813119374223,5.485879683487845e-06,0.03650960915087792,5.1680960456367575e-05,9.434427150261974e-06,4.375764709357327e-05,0.00011537923803487726,2.8314101771298306e-07,0.00023897334772596387,5.146429814851367e-08,0.0006364846041209766,0.0029588704041193193,0.004720696786256594,0.007861351041923419,0.0007713740165102492,0.0015782277243187412,0.13399594712563762,0.02705140451889204,0.0870886082275464,1.4736699808843457e-05,1.3004245344760403e-06,0.0002440409502515059,0.00034367179356032697,8.387170091448449e-05,0.00017590268218681005,1.8511135646190934e-06,2.014626763594919e-06,0.9999632421843041,0.9999980791293028,0.9999953012130375,0.013103944662953983,0.0001833551491522678,0.3500876909566522,1.207383746177032e-05,0.0032493385527372957,2.171201062204324e-05,1.439070886023387e-07,7.711376475963878e-07,4.645738800161411e-07,7.245489685617262e-06,0.00016573860770837534,1.7152498190275482e-05,3.201604801793589e-05,0.18306584324444478,1.2023178957956315e-05,0.04746490261468623,0.06328699680835605,4.838788726631339e-05,2.9164062085453556e-06,4.989631734583093e-07,0.9994871843468529,3.6017124892928625e-06,0.9997669147631609,6.308973406852337e-06,0.9998910684841021,0.00018950040406869127,1.3977086219162023e-07,0.003249594384764186,0.00011292755712975952,0.0021769197319996586,1.7086782677406823e-06,3.063540147805726e-06,2.6251227215427984e-05,0.9999942786345897,0.9999961253774133,0.9999967339580194,0.9999989322799896,0.0003794965780997455,0.9999798615773006,0.9996503267716599,0.9997706478920566,0.9997865795626196,7.59521569753362e-05,1.034626982160236e-05,0.0009847247511105314,0.9996077679498158,8.925419709521157e-05,0.00039648951401630557,4.2076287551934034e-06,0.0014494561547728016,1.2803479119336407e-06,8.236327506190535e-08,7.422610315089077e-05,1.6845128920023978e-05,0.025945412433485193,0.09433118986649414,0.0030460983476151603,3.700400202298453e-06,0.05010381079103519,1.605151275309309e-06,0.9720737872580446,0.9760304103789043,4.034301292433557e-06,1.0506761912288405e-05,0.014444530213173929,2.5636429654430764e-06,0.996481199058796,0.001366435657650827,8.347316654377052e-05,2.7151504068539174e-06,4.6801691990091597e-07,0.0009925187679946997,1.2722840102958033e-05,0.0003012722573590616,7.682329504033071e-05,6.161691304081364e-06,2.569804209502377e-06,0.821685588911017,1.1242515358561932e-05,7.172604704300928e-06,0.00036741122720088354,2.615863565885147e-05,4.635933763466185e-10,0.00028168645239790447,0.0007098175962792169,0.9999916153496106,0.8395148407943184,0.9999464122160472,1.1197775620025626e-07,7.758019213928769e-07,2.2087328237152362e-07,6.15593056487544e-05,0.024623061141393638,0.0049534882850116695,0.004457772868947933,9.684976318453408e-06,0.7148363647429139,0.9999999650763481,6.52694529633954e-05,9.936597752344585e-06,0.0013564835784430236,1.3427222603743065e-08,0.596389118238484,4.7574845305968826e-05,1.4737200828772925e-06,3.836518178458515e-06,6.3372668536035315e-06,2.248313554200204e-05,0.971443343593593,0.020302571726570927,0.0002505438513671697,0.9988224992111056,6.851465298017388e-05,0.001359697484914348,0.00048717197062243117,0.0357696894922584,1.3653146756331696e-05,5.403168440622089e-05,3.675353981526086e-05,1.2871261707153452e-05,5.4236699047278e-06,6.474055256713758e-06,0.00022345195634427263,3.100809709313111e-05,0.0006374846345008236,7.761170934420067e-05,8.452285891846988e-06,0.00012789847891232314,0.003535706149055058,0.0057525962691039115,0.999999918674356,0.015154972534577872,7.0601023066051306e-06,0.0005734257671007035,3.1841226278110234e-07,4.106987666088122e-05,0.0005763923658546811,1.3214719303642017e-05,0.003023881517951691,2.6316788074603642e-05,0.0008333572541587265,0.00012701496434582734,8.937528544433148e-05,2.3752460475813403e-06,0.0003807627581499019,0.009077972306927036,4.86911373326513e-09,0.007201128288934358,1.166672976703201e-05,0.019573648489160222,0.0004889800492649883,4.482991265458235e-06,9.681443801401462e-05,2.1442960368906128e-06,0.19800401764211883,0.00010948501978272541,5.259853605842971e-06,1.1718718936301577e-06,0.0006078927216478417,0.8814893476617458,0.03798530232963323,0.5792012680178019,5.371767676006181e-05,5.096050894430432e-05,0.032470816483135684,0.9686201727786529,0.008598757153265729,1.7726872649177436e-05,0.999765289597325,0.00023856290584799085,0.8540428257233726,1.1468294342003136e-06,9.810552844884364e-06,0.03375944505724028,0.0003905273738915723,0.9760304103789045,0.8325287732205652,0.017458297898333232,0.007841384999276916,5.35326984519348e-05,0.00015800336804055925,3.5470988306712684e-05,5.22347757155422e-05,2.1501379228042506e-07,0.017498509265105062 -ककड़,object,2.387578185708174e-06,0.891836129540125,0.16689106406196816,0.012235425598776375,0.9998674889868483,0.000114287554539674,6.688946520824246e-06,0.00027664322272750807,7.100175338627694e-05,4.6557413689744416e-05,0.9999056482963273,0.9999999801998058,0.9999983328590207,0.015167904075890717,0.9978738273852006,0.0001192835589185466,0.00033965531419015145,0.007443300871352676,0.9998931313987596,0.06449882873339008,0.0134511209610082,8.163670703778265e-05,0.00021575278033816227,0.0002620001231411503,5.976938987773968e-06,0.001070770281407803,1.9240438497166153e-08,2.4701629794345834e-05,5.5963550572351815e-08,0.6189013897151864,4.267812768558181e-06,0.9982336686246615,7.213850561351296e-06,8.166411557309869e-07,0.0003724497284819874,2.290348477976455e-09,2.258738979860373e-06,0.0007273211963555666,6.304706805220784e-09,0.0003634902499959373,0.7610510590220694,0.2498719813024804,0.0005957528834433,0.16888818038482226,7.482240108908011e-07,0.998698961354984,0.9948601406347499,0.9760800575384686,1.7703514564926147e-08,1.4296624656628928e-06,0.00014673094934067261,0.03096319367071574,6.223424341236479e-06,4.227468602448961e-05,1.8077567923229543e-07,4.190804197939973e-08,0.9999832571869742,0.999998476969944,0.9999975758564182,0.9951455333620765,0.6231547293388875,0.9643156594021006,9.48723102745282e-11,0.9562555025725326,0.18499233144014318,4.993637914806994e-06,0.0005230072593540432,4.579722680179448e-07,1.23682148111665e-06,5.9729387708467616e-05,5.5159070971728946e-05,0.6427362872497706,0.9981688947429862,3.8724872814151895e-07,0.8893925899020869,0.9904882373562803,0.005356036333342952,1.828422424651733e-05,3.077640173194868e-06,0.9998005295727916,3.599473681508706e-09,0.9998169835792553,2.601778559309289e-05,0.9999209043468975,1.8575282012031917e-06,3.579163164348212e-06,7.202919666943233e-06,0.0009393864238828076,8.39570946929775e-05,2.398161041107802e-08,3.9177338627798485e-07,2.4636132163301034e-09,0.9999888122052585,0.9999993597663266,0.9999973066143363,0.9999994980118201,5.622781651057696e-08,0.9999970088065222,0.99981283927062,0.9998812309318265,0.9998945111236135,2.8120742855072494e-06,1.029257534067397e-05,0.7834733782830886,0.999810840205559,0.00020103834237542942,1.3785352967613265e-05,3.932747814773744e-05,0.055485330916649395,1.4180488803176957e-06,0.0007196905783424298,0.06184254758958913,0.6466107528768185,0.18190498532204705,0.7899431237226093,0.43358982202457585,9.426428403814118e-08,0.460882878562261,0.0583855291638534,0.9999603327271643,0.9999914049923792,0.008957092402895283,2.8378429904964825e-06,0.9861515990310612,0.0038853610109449237,0.999964436556095,0.016944622513058564,1.0993325713320205e-06,7.993840133784174e-06,4.5869308955975994e-07,0.08535835816926644,1.1491447495293727e-06,0.00013045562235014237,4.180524292641926e-06,1.7333579234888474e-07,0.003116841575107463,0.9350466156681595,0.1186165259552594,5.6939859939964796e-06,0.6017951608515865,0.00024068461941201784,1.5840734150924947e-13,0.00010325665382652426,0.7652813750455614,0.9999986469387032,0.9985040704197647,0.9996582811246917,2.5370682235243776e-06,0.00021763808241194438,1.049813812094726e-05,0.5071537593200857,0.397561159518253,1.3839201680829036e-05,0.9842933757434125,1.6432235432462028e-08,0.9999587220022097,0.9999999788299327,0.0002459331120489488,1.2364422925025835e-05,0.5421794111000057,4.732938017778154e-08,0.9141204023162075,2.326830203205657e-09,1.1515908953915388e-05,1.6102376691926843e-05,1.6259605922572673e-05,4.7370133876612353e-05,0.9999665707042873,0.7369526928806059,0.5934303080562883,0.9908460200034002,7.316125092511535e-05,0.021214417452920832,9.49911044110561e-07,0.05883167110989714,2.19401449058159e-06,9.80958102873567e-09,0.6076705787494108,2.765747362184582e-05,3.199785852162064e-05,2.1483810494080678e-05,1.14450788851e-09,0.00023057676822117596,0.000540124170979036,0.0003168863939356831,2.5033066545835897e-08,0.39692265536376925,0.9594320571890382,0.9973820894413945,0.9999999670736788,0.922288604792925,4.0734847133381067e-07,4.392358219207398e-07,3.871558783530985e-05,0.0002299310342664318,1.6877925722914362e-06,1.3026860211505847e-06,0.05839048501394164,1.7418693157491882e-05,0.00038938651425137,0.496830365673978,0.0008698202461607852,4.0832576421995765e-05,2.770175990472267e-08,0.19411859376249413,2.5973721236915935e-08,1.4886922544462851e-05,0.0764814904992874,0.9871001056778045,7.549237913859088e-07,1.1714906089560922e-06,0.0010950863870793504,1.282357773276787e-05,0.9967528398534757,0.00017318064454994528,0.006086070849254501,0.0019683929431906,4.554539685991185e-05,0.9999743721754788,0.9930479959742106,0.9999326386013957,0.9515689312900242,0.00012922674337495456,0.9793952737424778,0.9921363321497265,0.27237330670102927,0.0014081980841667652,0.9981818215688849,3.742715946053388e-07,0.9999765621047926,7.768873416824309e-05,2.4823177553736996e-06,0.991116675450931,0.00025006298129769903,0.9999914275030095,0.9999599115143298,0.9711748567749748,0.9274056383572971,5.180933171271278e-06,0.00020811458558959788,0.0007738741575596932,0.0004658428288079089,0.0005129344452468724,0.17498854056727073 -कर,rgb,5.708936406708881e-08,0.9999999999897615,2.0893883692249203e-05,2.9210175884266323e-09,1.7137762397033845e-06,0.9999999954931973,2.149777299375903e-11,0.9999990154829081,0.9999990030975153,0.999993240754331,0.008770473046754452,0.000600825386553097,0.0009130727353864733,0.999999999984051,1.16130723013959e-08,4.711278852186516e-12,1.784591489694235e-05,2.7133592324123627e-05,2.3773314445525608e-05,0.9778625476951582,5.932503654935569e-05,3.893948531079153e-08,0.9999999919270549,3.737128366377701e-10,0.9999999995436055,7.107505560965895e-09,7.359822056849184e-08,0.9999999991817041,1.505938679377499e-11,0.99999998345224,0.9999999954123235,2.3449324291027952e-05,0.999999990475367,0.9908371995388713,0.0002442193971522481,4.198962194959164e-12,0.9168343372812564,1.394080514029583e-06,0.9999999832123004,0.9999999476237423,1.7500834273783358e-08,0.999999730674017,0.9999999944843947,0.999999964445588,4.4577307839393226e-12,0.0006813456955512194,4.158446437332342e-05,2.0584073686803544e-05,1.1985825074936066e-11,0.9992579997548382,0.9999999949615928,1.3458508984041748e-08,0.9999976155881667,0.9999999696797834,4.9810196406517685e-12,0.9999999751476236,0.9999727538083921,0.9999190688628963,0.0007590808380810601,0.0014959113569595305,0.00765285516369847,4.7526368956316784e-05,8.496424814254945e-12,0.9999988536086027,0.999999934173443,2.418001407528586e-09,3.893509829896829e-09,0.9999953740185363,0.9999986726337016,0.9999991692288147,0.9999999811340597,5.266585552268157e-09,1.9727664109085782e-08,0.9999914259780889,0.9999999999969851,0.9999997305701653,3.853804364668526e-09,1.474582171117874e-09,2.0329763109995098e-08,0.9998219622650294,8.279731085377443e-08,0.9999564069339268,0.013331932091380056,0.9992624791415939,0.9999990416347287,0.003711119213634529,1.0786188472858559e-11,6.294170402118073e-07,4.962865526324448e-07,1.0549178092579244e-07,0.9999986821270048,2.6618870182262984e-11,0.9999918815441703,0.9998535595294871,0.9996945464813086,0.9994042708158779,1.2131355316726243e-11,0.9992250953552969,0.9999661825684192,0.9993836384822217,0.9978639687293233,1.1791224897373558e-11,0.9999999346535684,7.187871918790394e-09,0.9965740825663391,0.999999995900003,3.17144715305203e-12,5.653483693198311e-10,1.9262553120191135e-08,0.9999999119217786,4.0015768848232476e-08,7.96609885444412e-09,4.890839251248284e-09,0.0017093912129003156,0.0039219183372091355,0.008819588106849562,0.999734044087429,0.19874885981922066,0.00045856768644594225,3.575193013179357e-06,1.7553606855730096e-05,0.04418920098696594,0.999806740751364,9.87356354892349e-09,0.004092281262998044,0.9999994961503927,0.0396018667942952,0.9998551848673317,0.9932106589182874,0.9044176074028139,0.9965703134976918,0.9766295350924253,0.9999999960100439,0.9999925418062408,0.9995902264999593,6.764865598516103e-05,2.97820657741278e-05,3.400927476235361e-05,0.9984504014108794,0.9999999711027887,0.00018018357655646313,4.686518990013503e-11,0.9999999784137283,1.8796508179288597e-08,0.9937686320549209,0.935348808173842,0.9999170189722061,1.2097831653457873e-08,2.9335089949255053e-09,8.650794853546173e-10,1.017439216273457e-08,0.8148557337003194,6.800724901418375e-12,0.00976539779818326,5.115275754057351e-12,0.0015133663574286886,0.0010299940348155875,0.9999999998634348,0.9999999988919919,3.083611560183629e-05,0.9999999999782205,2.642400040718508e-05,2.005925729439071e-13,0.9999999996820845,0.9999999998100557,0.9999999998809865,0.999999999644559,0.0014465863318272327,0.0016723156396650852,7.347637381967828e-09,0.8058228554670156,0.9999999949294474,0.9450915449452653,6.463881528129352e-12,0.8674676224053752,2.1740093244385093e-11,3.7377682874282555e-11,2.7770875995243226e-08,0.9999999999890141,0.9999999998579543,0.999999999743959,3.0292004979906353e-12,0.00032112687140049037,0.9999999906319897,0.999999995877219,1.0808922420169214e-11,3.25552211435833e-08,0.9999999999918932,0.0016321080519595083,0.0009411715072084631,0.008928017150503923,0.6312058759522114,4.742555112343447e-08,0.8879560444420886,0.9597927786110835,1.6290941865852763e-11,0.9997154386553472,0.004999581390241685,0.9999999924674751,0.9999999588133489,1.3533510467277756e-08,0.7608472910373892,0.9999999992621702,1.3109814872534892e-07,0.1291543760178844,0.9999999486921525,4.717749826751466e-12,8.855156735909271e-09,8.463157646704432e-09,4.476383915425307e-08,0.6084719224545176,2.2813987302189853e-06,0.9999999994547986,0.0011562385247249841,0.9999999998747142,0.014135879827399488,0.001173022270594276,1.6287274767382333e-11,0.0001000194270165264,1.0967125499309248e-05,2.5237436156788463e-05,1.8190026222871975e-08,0.9999999780565438,0.9999976690091511,3.327248773137636e-05,3.187380661002242e-05,0.9999999999897575,6.386861478004566e-05,1.7498868834511404e-11,1.7638937400780665e-05,0.00011228968085106001,0.009683197832149637,1.625108943430139e-08,0.9999999387880214,2.6997035521649318e-05,0.0038844900482685046,0.000549399179778871,0.999999947066707,0.977068232182857,0.8826069274751649,7.406991577457805e-07,0.00026821962746353067,0.026394335104151855,0.03125033652081701 -कर,shape,0.9975363876661181,0.0008048068553446811,6.8377421364347474e-06,0.8912282765692785,2.0007538871065996e-06,0.00011960858526658003,0.0009171561876485735,0.999651025157069,0.9996169411201323,0.9996161898161477,0.8445269510515997,0.9999911560817835,0.8768845923650471,0.1537003056623226,0.00024600783055280087,0.0029717164072926407,3.808410726950327e-05,0.000989236179536243,0.9770744702715403,0.18632488090600596,0.000738805474579911,0.007514631652607637,0.005427061420342469,0.00027180859732205993,0.0003218214776549535,0.0006956544841226658,0.999480036841967,0.004196876469605282,0.3721378247597526,0.19398352434063054,0.4150158642126648,4.0606171276377764e-07,1.7683261630100224e-05,0.9903232896823908,6.168580261915997e-06,0.004307624349058108,0.9968330466950727,0.9997924165446868,0.018572656959676467,0.9088920996778965,0.026512770825601745,0.01995862006039027,0.00013461563277186262,4.2593009210698844e-05,0.00013410242346487155,7.913164719245573e-06,3.044547816706175e-07,8.277836177157931e-06,0.1454470093659236,0.9401875297399642,0.0012138506797691373,0.5910319554119237,0.9999261887346015,0.1793000435414576,8.453063852568544e-05,0.00044770120801630964,0.999808381167281,0.4799572814723239,0.9999990399326169,0.0004482382928177473,0.000340974418276388,0.0004020314135910988,0.0004145130263500692,0.00021375268677104622,0.16289393670173108,0.009032687128341632,0.001468098066189977,0.9998045160506749,0.9996982511783576,0.999617338873813,0.08568977554566341,0.0008295923668132688,0.08074804443187496,0.9998346118106491,0.0007574612611343796,0.011450903779657459,0.0022987935393863493,0.01841587105197323,0.002688212406548047,0.979618252743081,0.9870411573211956,0.9923686817728571,0.9789508530469335,0.99961311458285,0.99992097410549,0.9436685717923516,0.8916443997737852,0.9999890907062329,0.9997550157856344,0.8988557544637309,0.999829134947418,0.18109044773150523,0.9997930516521311,0.9969169420089015,0.9996901652913941,0.9998842412022736,0.00017170378260020195,0.9995742840370432,0.2469783097773421,0.37382291550585267,0.999479158366555,3.678899249831879e-06,5.612486383422265e-05,1.3149404482526861e-05,0.004838599707596957,0.05639279269255282,3.2534883958521755e-06,0.00035497537652323696,0.43526521596363177,0.0053604726300765255,0.0011061167696559502,0.00010581301984030226,0.0002971087607745238,5.418813039453191e-05,0.8915344846241131,1.4565188417513697e-06,0.9591313380006734,0.004569477479401803,0.00023911609970935762,0.00017774073561236103,8.09391959893497e-05,3.164897103712253e-05,0.9771606081311184,0.00014984166239210593,8.821422965631152e-05,0.00024176204169486788,0.008528529240847125,0.9890417540432523,0.991490906439457,0.990767191853413,0.9999952830384812,0.9698489271509944,0.006447263021010496,0.9999496712440917,0.9459386168004903,0.0006874727671208015,0.007117673781305619,0.026754969544317518,0.9813018894991937,0.4385064008795831,0.2945364776877571,0.004998487770955284,0.43652524061654313,0.37365396003546936,0.2283177336138728,0.9658857607000825,0.9990028790616765,0.014837015977123783,0.0007947101314848986,0.0016168109285608428,0.00013071360097882348,0.2799077239091579,0.5588637783764386,0.00013569910107330365,0.9619169005544473,7.292749179516198e-05,0.9999911560817835,0.011572820938061766,0.02328775642241165,7.219944416092816e-05,0.02840103512525668,0.005720879429258562,0.00015854936523322714,0.03932133699333014,0.0038079817772832866,0.0005105556094214525,0.0005398684291931397,0.2855446638661014,0.9772642360734468,0.014337049821614737,0.9154391051674854,0.0005219451459949967,0.999550274526064,0.7223435436817436,0.9998360689887621,0.0005656622459779151,0.46674472907743164,0.00021230185711325247,0.005340121603559567,0.06371013204497014,0.00865482823019315,3.7060832413293764e-06,0.6301511428754396,0.040115231906978466,0.00791317979729891,0.2745688729483548,0.0025578229973940913,0.00033385871068570075,0.00029444684935298017,0.9998852656767355,0.3919082970916742,0.9952477257198175,0.9999797098057622,0.0036735957560757983,0.9993196115498164,0.0012389958042936056,0.9265380081244626,0.009534444533755803,0.0029490238080018003,0.34085614111698964,0.004789748170803076,0.9999118983438839,0.01328018851909815,0.9996386826201057,0.003923238436826476,6.150076104840748e-05,0.01780687924903072,0.00011537894785601311,0.0009821065482665526,0.9999941340973896,0.9346122014159004,0.9997255200555129,0.002591472824670466,0.009966699496577814,0.3138966003062091,0.0029539833706369967,3.849653895191959e-05,1.0687103000618503e-06,2.6460333527682625e-07,5.542790433645738e-07,4.875234138346842e-07,1.575501333996557e-06,0.08297660397606312,0.020335199216122438,0.047394674966132616,0.0002425148879321057,0.1783816599210461,0.9992844030668092,0.0009960491527559031,1.69664897466221e-08,0.0009899697366723117,0.9893314825622231,0.11193198462224282,0.5369521374905539,8.093919598935027e-05,0.00013279225286662476,8.97367404207192e-05,0.8973746448031623,0.9999003683663319,0.9999614609672116,0.9999189365971306,0.00306803902784538,5.709651715246304e-08,0.9016482349985999 -कर,object,0.9999756146079002,0.9988913948532276,1.5496647905290523e-05,6.115903128843806e-08,2.652454169330575e-06,0.9940915205308751,0.8004633392668927,0.99999928694871,0.9999986469045626,0.9999962182432628,0.9992536100352981,0.9990809057093899,0.9966622347706204,0.9991142489203356,5.916125685658798e-05,0.9998937204696304,0.08372552484387892,0.129155344655673,0.9984841431348253,0.9999286362711917,0.9373963778756906,0.43960939300987767,0.9999938923107018,0.022076869231865356,0.9884101257310507,0.014012626761712412,0.9999092400633076,0.9797111553031677,0.9530747004874276,0.6892900711331966,0.9999875172367909,3.172887717962656e-06,0.9934483908014329,0.9999024311401804,1.63646552241632e-08,0.814665644733286,0.9968543672511125,0.992158944037508,0.9999953225379468,0.9999996939278106,1.7560613264522366e-07,0.08118329437339929,0.9840647611110211,0.0018567849771720377,0.4379269831098721,3.112930647454025e-05,1.4946458974024088e-06,0.0002282308382319472,0.9866134509341965,0.9995268319686377,0.9996364867748313,1.0414361342109725e-06,0.9999950184027772,0.9997408122955785,0.9993667825400055,0.9916126459775068,0.9999691474653735,0.9997465088885464,0.999450024473825,0.9310198890365625,0.9630101414639712,0.9981536455799905,0.9999872839319826,0.9779585053574784,0.9501494056995157,0.21544672603006548,0.009547284975621562,0.9999964798942949,0.9999960198141788,0.9999989503057912,0.9998312171653317,7.955531126532364e-05,0.0002745771449046859,0.999990763675793,0.9994744571158717,0.9860164696944688,0.009681663141719156,0.08254774545371701,0.22346807613555403,0.991839994361296,0.9999392281224839,0.9988643337950838,0.9995387441800728,0.9999275967226278,0.9999925431159398,0.9996086534196362,0.9999344561488341,0.9875319313787526,0.9999879610719052,0.9999679775516023,0.999997267504111,0.999972921043566,0.9999774558304206,0.999393524792907,0.9999272695281035,0.9999466244323009,0.6758137350770469,0.9998574649338097,0.612572104886227,0.9996980849439348,0.999752293740327,0.7352105313634368,0.9989450681282463,8.09690715822258e-08,0.3485095729182938,0.9999817623410107,0.9995145610231809,0.018983891412335037,0.0022206115007491847,0.9997462116168422,0.048952998662878014,3.1147563088712924e-05,5.115295598105051e-05,0.6601737194188253,0.8352741222398644,0.029452829218369003,0.999831653851357,0.9730402063590398,0.8077781400441917,9.011884724372633e-05,1.9410388242255028e-05,0.8618498804267269,0.99976067606532,1.7408451395840666e-07,0.6602100435445596,0.9998160297933446,0.8897469689700784,0.9998815781530815,0.9989938652379793,0.9997234338929197,0.9991261061137031,0.9998897768603698,0.9998173396007396,0.9999907451255139,0.9997034322442788,0.9808079386808645,0.3825045810224004,0.8643654450068287,0.9995569137873803,0.9732729149994891,7.435544352350078e-08,0.9999169096245331,0.9999692407798819,5.215172406729183e-06,0.9998890460903996,0.9518449242981083,0.9999948607299078,0.38929662327101794,0.009211946035781116,0.1961040783541963,6.463525706511602e-06,0.9999462557028842,0.9990302783269217,0.9775813696839311,0.9897641202140421,0.9380613461073245,0.999239140006451,0.9202821071146919,0.9510047380931801,0.9809832016727258,0.9924142950804353,0.9665645186559605,0.10534505704469194,0.9859004520948729,0.9829142525645987,0.9913327437450637,0.9889185301564001,0.9744068776633794,0.7107096624415481,5.042657281147363e-08,0.9999921266540465,0.99430779925516,0.9999477764745998,0.9999435276028616,0.9999241938531933,0.9909269491128794,0.9999899058582167,2.0582063387551776e-05,0.9923402471790367,0.9765392963991514,0.95675425033613,0.5239921092929197,9.610920133612728e-08,0.9999613214091678,0.9999261223575184,0.9938249792835171,7.631281666552845e-07,0.9915877681676714,0.8716769843496027,0.9987750485325175,0.437685812315967,0.9999731237044629,0.9998026048332028,0.9975520983172523,0.9999794947912296,0.9931561895814786,0.9997300697840509,0.917303966539655,0.9996333729139324,0.9999975663454107,1.2990832765441197e-06,0.9997520828490771,0.997468107047763,0.999935038365624,0.7981192226450853,0.9999941415296771,0.9849628061273036,3.26448524793468e-05,8.70265764379852e-05,0.9999388788669672,0.9993474002362606,0.9969857142139097,0.9935538628127362,0.9493308256956869,0.9973679754321716,0.9640927401160726,0.7291107262464496,0.8929165532381104,1.9543263909632814e-05,2.000120372807087e-06,1.6887025625841895e-06,4.470242229012196e-05,0.9998152679687661,0.9778340362613894,0.9921702855899579,0.45332814374916097,0.9984914483388556,0.9990767003194233,0.9999684471226303,4.992540850034471e-05,0.0006697446447419362,0.9997966986813563,0.0002643236895959671,0.999646349326119,2.056902342736101e-05,0.00015119792432248143,0.0005972504797647548,0.9051887793853789,0.9998646102018373,0.9998021786271928,0.9956556392924115,0.0020067948671833556,0.020579009118920546,0.9166476432579355 -कह,rgb,5.980517277386203e-08,5.170363795764795e-05,0.9999910357830026,1.023109529058104e-05,0.9999854762994765,0.00031565932967797257,1.8722713493188245e-06,2.8930833937741442e-05,9.098712763554398e-05,0.00019358720175471455,0.9999832260319386,0.9999891536453905,0.9999889380248185,4.9745633879062364e-05,1.9041875401406804e-07,2.851809354736597e-12,0.9999815053456322,0.9999842667281662,0.9999795403523711,0.9977862265104518,0.999893416510067,0.9984520311134073,0.00033838653982666577,0.9976045450113491,0.0071905399891708105,0.9999877137370505,9.945070251990883e-10,0.011070513375086547,1.05991336892905e-11,0.013858750574365345,0.00032751580174464204,0.9999871161550401,0.0005707325063408633,0.003635256616041452,9.722048017676603e-06,5.786660112396596e-12,0.9992165109098782,0.9995098469778698,0.0165466382071323,0.00460881058200803,6.438801013555e-05,0.2679650983828083,0.00048448618892029413,0.0075423418188334205,1.2262387090237656e-08,0.9999845662906586,0.9999858889702796,0.9999911080288029,9.524521471854777e-09,0.5187845183766555,0.0003267560135038366,5.221846404216338e-05,9.043601355280356e-05,0.0013664375882528265,4.1946463651066076e-10,0.002759518763913949,0.9896661009612467,0.9943995864798436,0.9999889007897641,0.9999882608331477,0.9999837185215015,0.9998315288066325,2.5520696503054325e-13,0.5357971351295802,0.04036955736136034,0.9915436457972502,0.9999684021816838,9.098892200693672e-05,3.8163380049065386e-05,6.642374161881906e-05,0.0009861017123366585,5.073047965911451e-05,0.0001301413029885528,8.893709180918065e-05,7.360143315312433e-05,0.3324559115605608,0.9999827820435268,0.9960009321471269,0.9984152090404622,0.9963600609475934,3.085549452029962e-09,0.9923502922473373,0.9738275221963325,0.9982863251350667,3.859859601136706e-05,0.9866086214472383,6.945644229125716e-12,0.9996118180867244,1.5275325985534772e-06,3.0260210550678016e-09,2.85445070130774e-05,1.7710420415290584e-14,0.9786579112240852,0.9957465271115821,0.99725501191529,0.9980683232082277,3.39877241372333e-11,0.9983291558534554,0.9910671280858963,0.9981593270553791,0.99902104271112,2.335820728197377e-05,0.005318518325486341,1.7782667643899486e-05,0.999189430302669,0.00031610694292393937,6.091959942463541e-08,0.9980172705378879,0.9999922721531124,0.005716233052904618,0.9999860386726476,3.7123642398192634e-05,2.6902175409108287e-06,0.9999858973996557,0.9999859587808254,0.9999833068920146,0.0015774024812582716,0.9999582783135723,0.9999895701433211,0.999993919342008,0.9999874690525143,0.9999746263606932,0.30508847181800114,0.00016036400608357662,0.9999838049769582,0.588668697732358,0.9999752811965654,0.0016959437884372347,0.9367037042808622,0.3315796865448064,0.9979787768011564,0.016647183001914236,0.0002689703220372747,8.83357836987894e-05,0.0019938801667411838,0.9999648938007119,0.9999753903602222,0.999978547415695,0.7796623432283247,0.01643319925761842,1.804965841095766e-05,6.103739633861466e-13,0.0010075776057240238,0.0004479279808167174,0.9942490543493033,0.999190859948215,0.9850839026685081,0.9980659802103943,0.9999740781008908,0.9939592637799519,0.00020564625471899286,0.9754902405950323,1.1699572474932276e-11,0.9999827628471529,3.825433108015762e-10,0.999988147422198,0.9999883545865577,0.004521654561006633,0.04292024189215502,0.9999652805379867,0.0006457350413179945,0.9999692250625805,3.940434091099407e-11,0.00734479365717359,0.0032039164250060458,0.001227464760844344,0.004440029988515817,0.9999879960318341,0.9999880518256415,2.2058491122918844e-05,0.9842685303317747,0.0003308249113010771,0.8669091173635921,8.542120251507319e-13,0.9863340580074761,1.6495389569904853e-06,1.0563854364478819e-14,1.1764805863676832e-06,0.00023551896463838644,0.004265743607515571,0.006445525029575178,1.9094888447982124e-12,1.1430019669375587e-05,0.000418981298199557,0.0003200188764713497,1.4410659587462738e-09,0.010121886358191312,7.201694431969463e-05,0.9999881022444304,0.9999886312462692,0.9999830754597321,0.04181870201502238,3.6017864300069245e-08,0.9994586049575809,0.48137062834952715,6.325310125025627e-09,0.0029827757978008163,0.9999843593171793,0.0004751543857670155,0.0014868425468200373,0.000233984814058936,0.9732554887373388,0.006446998469997788,1.2637603496195479e-09,0.999964594532905,0.002769222379688775,5.06259129611807e-10,7.728427279219896e-05,3.218605799665901e-07,6.40297655008469e-09,0.383000284823171,0.9991706200713238,0.008929957277267994,0.9999884772066255,0.0008304766831142676,0.9999808644492892,0.9999873447598521,3.721745644626067e-14,0.9999889730920386,0.9999860110447166,0.9999836793181519,0.00036598984787391213,0.001029966672852796,0.6727242240084775,0.9999844880012733,0.9999857682094838,5.1993208996598045e-05,0.9999799988537924,3.340443867220748e-14,0.9999875083221693,1.243293756503496e-06,0.6287982930490268,0.00018014834832527884,0.0041873805017165365,0.9999867109639443,0.9999839489670134,0.9999882466067053,0.021064528183706025,0.23140821994289137,0.9292746777741813,0.9984478317321918,2.8793620323932056e-05,0.9999766004833199,0.9999765412686669 -कह,shape,0.9999741420228312,0.9467872524367001,0.9997117123744779,0.0006019120789499574,0.9999999814664252,3.457404517441044e-06,0.00010752044048654363,0.9990784603200475,0.997640674182657,0.9856947159416025,0.9957542831473679,0.9999011960817776,0.9999816515854496,0.7559569151507204,0.18649493588199317,0.996296931106978,0.0007838691281855712,0.006753501424812298,0.9999912311819749,0.9997216835196193,0.9998951875866059,0.0001231210617844884,0.00045582144988753264,0.008928385401883376,5.3939902999970696e-05,9.37401752998458e-06,0.9762121853726788,6.581224814314053e-05,0.4175933952458881,0.004759916575159433,0.00059993506600146,0.9999987646752712,1.3362637982214038e-07,0.01841887157114826,1.227717067276109e-05,0.014486611472934731,0.9569291191256866,0.9999842503784249,0.9752088494245469,0.0005585786247555068,0.00018513503999074412,2.1370016893580634e-05,3.4567923112207907e-07,1.420083698571794e-07,4.49714397437304e-07,0.9996836508382086,0.9999991002157562,0.9999895898255302,0.0008709671353374793,0.002311301214721147,2.686407848925687e-06,8.972846109606176e-05,0.9545487027095001,3.8200077883406796e-05,0.9958253930367417,6.151344793396868e-05,0.9998515631049203,0.9999846480775053,0.9999829483430746,0.9999930210753707,0.9998236335956425,0.9998733688389141,0.9105941623976384,0.996893456335434,0.9631841946369062,1.636001370003855e-05,0.0013983561396305993,0.9269340969920773,0.8597103923187182,0.9781501414225934,6.3357574774127e-05,0.966852782493765,0.9980934056858002,0.43012342400318965,0.9260282604619504,0.9984374816622568,9.263606195510971e-06,4.871623651751605e-05,0.0006397861898067471,0.9992852064887671,0.9995550254490035,0.9921424375761905,0.9478870996050929,0.9857410677080419,0.2813479044119367,0.8369096610193358,0.9579469334752094,0.9999878413559,0.9999999854357673,0.9999789419600382,0.45537753643860823,0.9950025254735471,0.9999284700420841,0.9999989448359121,0.999848230075418,0.9999268481417964,2.9797900776651317e-07,0.9999988724201534,0.9993006155470232,0.9972622344390204,0.9995784962033629,1.0031899985134265e-05,8.921551102382246e-07,1.439594752305505e-05,0.4630579333495563,0.00044912253169609686,0.9918746364323786,0.002798239798397735,3.161992650184363e-05,9.624364260780715e-06,2.744672646255913e-05,0.005031705700383847,0.9837554567025418,0.9999392093643401,0.9961524358255638,0.49955184567174765,6.308856405126001e-05,0.9999793203574047,0.9969813356899268,0.9983599908801771,0.9999999931055406,0.99997558911535,0.04604752571841788,0.00033109572636484344,0.9998717475103813,0.999999494098719,0.9999359538050229,0.0012673167997408017,0.01603269010884854,0.02224269188658268,0.9999999999684619,0.15786570452415788,0.0002130341075225874,0.49388309672048286,0.0009112585066783167,0.9997154871399407,0.22720376524997715,0.21171328513145413,0.14055616364416665,0.9701698030959086,0.16947491548747728,0.00039427136802101516,0.0003361647110070389,0.0023325988617666055,0.9999966700542594,0.19359363816108902,0.9917607444616987,0.0005470743157051452,6.345086864605902e-07,0.0005860164525263663,0.03271185812621135,0.9999783348235924,0.3998259566326035,0.9998690601606407,0.028086919057049912,0.9999951093182695,0.9999011960817776,2.3345626994326962e-05,3.877045047176492e-05,0.9999483587249277,7.400837031653523e-06,0.9999968823212328,0.13027730622634717,1.1898700610541762e-06,1.076838674123872e-06,3.157299003150384e-06,2.1671104927724302e-05,0.999987016738988,0.9993315481854996,9.94429783941082e-05,0.9999634904708761,0.00013761094389060595,0.9978593087230317,0.9316257705133264,0.9986056066608265,0.0001085266745728023,0.9939799268957126,0.8143428034585768,4.133316271341473e-07,3.1237646936422507e-06,3.3431273652025034e-06,6.605818323450123e-05,0.7842325482581952,0.00032879027123937956,0.0001306187835563034,0.00028067460341691714,0.00011369339121362147,0.9949887209088757,0.9998455164360522,0.9999729510664223,4.411746037872381e-05,0.936358730311131,0.6948894166221259,0.11090653181006896,0.9982215297988704,4.0903410978393256e-05,0.0003547785391088096,0.9196878889090256,1.6820372720364763e-06,0.036209739901679715,4.156141923150015e-05,0.9939080027586067,5.075687118522935e-06,0.9994380835940261,0.9684877176087621,0.005039131405095518,0.04080514072661921,0.011078762082076764,0.9990706897806363,0.9967726856110948,0.0017728772973840136,0.9999619200039431,5.484882426137584e-06,0.9999995273425062,0.00019017816257809944,0.9992684196622932,0.9999341160274167,0.9053524530436107,0.9999320878911278,0.9999993477145876,0.9999999786509854,0.9189879166327181,5.486196254817615e-05,0.8681864624107725,0.9999992966661702,0.9999418044690098,0.9953599998943264,0.9999905914789543,0.7026556959024444,0.9852020823153859,0.1601655938492258,0.6783626550616735,0.9927967559482115,0.000201619922093466,0.9999999931055406,0.9998426042481007,0.9999996486172384,0.7397259688161757,0.8043528973351692,0.6502138034507683,0.9998282520280143,0.9897586912909784,0.27201931464928053,0.992349816735689 -कह,object,0.9999763641319218,0.006421524089126558,0.9998270521189309,0.00044946570047244743,0.9999999883081198,1.4645465697678004e-06,0.11388748115756403,0.8719486947787102,0.8947044436223734,0.6236937227840644,0.9997388777016809,0.9999596597110197,0.999994797632594,0.0016597106082438034,0.15071294008241182,0.9993595520640843,0.9057908688414679,0.9877735084476934,0.9999994858706797,0.9995138668904618,0.9999816366359624,0.17139839942299068,0.00023630391619953165,0.9141875413558027,1.0680042759349125e-06,0.07869638896339017,0.8835492774456928,9.783810426511113e-07,0.8295106629854666,0.00027449387468744195,0.0001698965251716668,0.9999983112597558,1.9905762037028578e-07,0.005522660172136037,1.206045007523419e-05,0.6954854930766536,0.9281556920919248,0.9999821687554578,0.3493318794862786,0.00038372921607568043,0.0007641756836254048,3.564082234070061e-06,1.8662392050874823e-07,1.791631697354837e-08,0.0009815317834426004,0.9999396161039339,0.999998419077013,0.9999943027123587,0.05944440084275515,0.0017397407254983338,8.550333441604345e-07,0.00013233342114564922,0.05544507530917705,2.116699899319597e-05,0.9996909962067266,4.038381986166166e-05,0.9886471032055674,0.9998841917518617,0.9999911592005478,0.9999968257288555,0.9999669730891955,0.9999830124830159,0.9834553298879382,0.7999040768505474,0.039526740179171904,0.04895697346889782,0.6731358266640071,0.16379407884576055,0.03191056850608585,0.5426171736307157,0.00010257256882220743,0.8870319353757026,0.9926949964420477,0.005598001933833827,0.005769634368883382,0.8866152813350361,0.06294423688238585,0.16038555921162642,0.2060933246535391,0.9992733753442463,0.9955306947184981,0.9833462873859226,0.9849810807114034,0.9886578639760354,0.003229770249281354,0.9800330102934315,0.998107701141667,0.9999917774709026,0.9999993021411601,0.9998921848893138,0.005383810977450107,0.995295766018996,0.9917638114718876,0.9999696619291899,0.9972829661648595,0.9991638194127123,0.00021082154057528474,0.9999558874553389,0.9993367514143481,0.9967953059800821,0.9993189585342863,0.23456286389045183,8.479879967350837e-06,0.0005472927010662819,0.9051420839203577,0.000135877339421583,0.999918429729118,0.7677696694950394,0.06814835354346462,2.849750343267368e-05,0.14766335263756897,0.047283753329636274,0.8872692198877736,0.9999902824197702,0.999880037005748,0.9696095970236801,2.4478587332464847e-05,0.999994860201271,0.9999897021641051,0.9997524843146707,0.9999999897465334,0.9999878248231808,0.006215333503346999,0.0030957397052461177,0.9999488438407294,0.9999905363014706,0.9999766623200875,0.00011996434556358673,0.022530147761849664,0.020131262516956346,0.9999999872109614,0.037435738210857036,2.5777926637242246e-05,0.01671720452651268,0.00014655237620801612,0.9999024505292933,0.9948090820559323,0.9996177680658259,0.02227728950056827,0.06287085176687075,0.016762169269820503,0.05887237374586208,0.00029993901285445295,0.09662605522839615,0.9999988940664762,0.7814148644434994,0.9461534379062638,0.21110549916748228,0.006353646883145105,0.6400954294685559,0.367894858195548,0.9999099645655842,0.9934719959947742,0.9999837496849546,0.9371540738298415,0.9999980389800365,0.9999549540207844,1.968662626267082e-07,7.266430829080344e-07,0.9999951019604146,4.208138499702472e-08,0.9999992307435257,0.9167966680376853,4.496952572847059e-08,4.321470444764602e-08,7.477350784101666e-08,3.704628449464776e-07,0.9999956808089745,0.9995419425375501,0.00012071491298406238,0.9999430299316827,1.9983063228308404e-05,0.9973580663177007,0.995118045364844,0.9967769214431614,0.08677650981694003,0.9965776990578347,0.4819526849665696,1.0111796054614464e-08,4.804953664570521e-08,6.01308526986475e-08,0.024582591840515557,0.09527372008774146,0.00033738809718350564,5.917160918366024e-05,0.01853674898298031,0.000265126018890942,0.03696606802642988,0.9999647640764749,0.9999852940010302,0.015064762225032656,0.7529969761998804,0.8457548319659354,0.6928145136592746,0.9938487552774568,0.013954001218643389,7.040009167353044e-05,0.9992029295641814,4.1419807714445327e-07,0.020321478064982603,0.00013734109152983446,0.9927192781910487,1.9527960273754658e-07,0.9852504168459476,0.9954235483350468,0.001047762732982738,0.9836457619761061,0.07390492119040656,0.9789787894416405,0.9895931861619218,0.0030962868323098137,0.9999731972352394,1.5880832319218636e-07,0.999999470241244,7.449171146154173e-07,0.9999430126067435,0.9999796518528655,0.9899262130403381,0.9999844342300145,0.9999984624774511,0.9999999798191417,0.9711872670260331,6.993205416786223e-05,0.30286860548140004,0.9999998095607082,0.9999964720725842,0.010247025020595393,0.9999995850658979,0.980199456171866,0.9999432702290687,0.012460815537707113,0.8445387915891055,0.9839692963291966,0.00013147977566224723,0.9999999885292502,0.999622151125975,0.9999988414739683,0.023501518493690397,0.5587662428238687,0.685953478690192,0.9999569480044769,0.532189185142533,0.9181649400769752,0.9993621970841492 -कहे,rgb,3.769211522928009e-09,0.5096042371411312,0.999974952775598,0.00039471378412302735,0.999954657204052,0.053836847352971395,2.2578514287347898e-08,0.0010953161593244764,0.0032973397656464332,0.004054377031364394,0.999978018621324,0.9999814251459813,0.9999812307407139,0.5076531553288574,2.2551526394532135e-05,7.930415349500765e-14,0.9998239254578466,0.999869842047013,0.9998129872040581,0.9991884190025052,0.9989748168720567,0.9305373698423401,0.04805886360935345,0.7949941431687305,0.7991589315267348,0.9995630789905903,9.149424552037848e-11,0.8333507575543758,3.186359829673791e-13,0.9749533560879978,0.05546354904244338,0.9999727417499794,0.07504709595964137,0.010622872834244733,0.0037813275646413937,1.481384972956057e-13,0.9996186896624801,0.9886131429989016,0.6902020530584919,0.28129811875775995,0.0024589984704722384,0.9965563623033239,0.07596188562243048,0.9613908132795786,1.6600701312605744e-10,0.9999813482375591,0.9999741779805358,0.9999749301677129,1.5509116832954675e-10,0.8483881258678968,0.05375299852501107,0.001973691764932155,0.002580687656998294,0.11906545023875567,7.618590143987789e-12,0.22793417695093007,0.9997878979699205,0.9998522841004804,0.9999815193844703,0.9999808671211439,0.9999777933514353,0.9982255972102785,9.773160226626518e-15,0.9982408427142553,0.9870356048031567,0.5925803001560299,0.9983898055372127,0.002169801819919072,0.0013180717598606916,0.0025585854663240687,0.10162814301132525,0.0015791786062057892,0.004371925898224,0.001799687291392428,0.5244610454750809,0.9971384082908511,0.9992479755066526,0.7414116628318723,0.9208607515736786,0.9998837326845538,2.641835624767302e-10,0.9998136139165454,0.9136183590155571,0.9999212424991565,0.0014567214527886712,0.939923346817781,2.049219784401059e-13,0.9895737990357543,1.134693803110067e-07,2.7152197816851205e-10,0.000998587655646173,1.0589736268869516e-15,0.9996741027186442,0.9998786435327998,0.9999005776041076,0.9999169777853472,8.889292290030374e-13,0.9999222405301591,0.9997989551558782,0.9999168137183242,0.999938867793387,2.1475519884583513e-07,0.2967366391919584,0.0007406014190126872,0.9999457830645024,0.05552246611528107,6.884403093195488e-10,0.8343087678596027,0.9998168132269727,0.29205487544357883,0.9995936550146931,0.0013504842284689253,0.00015350804212534012,0.9999825834653043,0.9999806584999668,0.9999794293288219,0.011601644972166565,0.9999747461218831,0.9999811605521308,0.999965734540945,0.9999717483733802,0.999979784462041,0.7670317006724017,0.004443529057860689,0.9999828482587417,0.9880497357879037,0.9999802968570874,0.014538518079692133,0.9777898781193383,0.41173455508535334,0.9996235165057995,0.03603360802649579,0.04795278061377185,0.0018556535356345901,0.013000958263496216,0.9997181530614704,0.9997773134478278,0.9998173945217461,0.9386013445728713,0.9771574329195916,0.0057954478185304505,2.8840829381503726e-14,0.09967645188212132,0.011299340940247989,0.9984147008762999,0.9996379458465768,0.9989758838326724,0.8963831358778386,0.9986833011779622,0.6327336707369874,0.005427907837391163,0.9792188562317475,3.049380603948853e-13,0.9999777625562349,7.033091394312431e-12,0.9999811165242313,0.9999817346658314,0.815025639083796,0.9637090552816764,0.999667085653463,0.5215011061104887,0.9997009731946398,5.188433143903661e-13,0.8324752465096041,0.701230667925419,0.48830387928132307,0.7166186302219806,0.9999815612041901,0.9999808075206654,0.000881616295854957,0.9866757652853727,0.05428635133479182,0.9140102534435143,2.7946903427290024e-14,0.989804549026035,2.0109452823661915e-08,7.035263188664412e-16,0.00011535629192363185,0.31553253754768545,0.7988734395568559,0.8265002099295031,5.115333378455786e-14,0.004521445182340659,0.05632335303382421,0.05608289949964331,2.6880462076497576e-11,0.1269271790459881,0.5556116110630772,0.9999808082409645,0.9999815714860676,0.9999774537085533,0.04143179898343693,2.281785328053859e-09,0.9997264213271894,0.6214748448146189,1.1206024026356105e-10,0.020959424245557905,0.9999823004982321,0.06781775015659408,0.11778993817464936,0.0063753130807039085,0.9752931784628915,0.7347437727597347,1.269533934049451e-10,0.9999765360816565,0.18961755674947567,8.969738484287058e-12,0.0024546247028043983,3.20139069437285e-05,4.60661015772697e-10,0.3591792949399384,0.9822543582622536,0.8255153547404734,0.999981403608124,0.3741721039902814,0.9999814554612331,0.9999822298737389,1.9066613334675677e-15,0.9999787843792083,0.9999681117595336,0.9999703422574976,0.009599638644741306,0.10121008678853986,0.998738414036352,0.9998782267448726,0.9998901316310354,0.5104733394559725,0.9998557845424033,1.7502161804921955e-15,0.9999718030086485,0.0006439004397803256,0.3153931043549005,0.005407068443834367,0.2521744236814063,0.999973026622976,0.999982842327095,0.999981678865125,0.9801244722574953,0.3844358342140433,0.9457872597960518,0.9587272851489941,0.008994664229445705,0.9999729427124093,0.9999759867113618 -कहे,shape,0.9999999021873707,0.9998645150327004,0.999998190463336,0.00048463585550808806,0.9999999822310582,3.4724760717147e-05,0.31127055935862225,0.9999415270434506,0.9998179207899072,0.9795691892957714,0.9999999904544458,0.9999999999715339,0.9999999996867153,0.9997001702390512,0.8221705261902291,0.9920779303935486,0.9998833514935934,0.9999874265836187,0.9999999990138448,0.9999908764151462,0.9997128408252921,0.9996187158503749,0.00010822429995636656,0.9998947749964591,0.9999870513259865,0.9988375088914819,0.9999995165478909,0.9999930012912129,0.8966962570258777,0.0006022989661965952,0.0003245328645197075,0.9999999997555991,3.354234773029093e-08,0.9999728208370396,0.008036397780341384,0.9446707438051722,0.9997476486249792,0.9999946509696995,0.9110184321836563,0.9904237649337908,0.0025565056362600543,0.03699975114246235,0.00027583643644360603,7.213117072710821e-05,0.00027048342185078214,0.9999916595530096,0.9999999826308063,0.9999679413593294,0.33230438801446666,0.9991585439071138,6.255986114150748e-05,0.0002707432855844473,0.9999977211670917,0.00014890501202644233,0.9983626262151237,4.7094411628016916e-05,0.9999999999971809,0.9999999383931557,0.9999999999982425,0.9999999874573934,0.9999901007602437,0.9998320812084206,0.9980183873235261,0.999990642135766,0.9970055533411863,0.9994869171760749,0.999916950301121,0.9989238421887867,0.9999245331188884,0.9682473573398874,0.0022547592103139237,0.9999544406947283,0.9999999402794688,0.9986008309377771,0.999918046192443,0.9999999959378161,0.998455919184472,0.9997182076027005,0.9999982614092577,0.9991835789676424,0.9999851695473727,0.9997156199740064,0.9397637807980967,0.9999950594185999,0.8214787379162214,0.9998784093909378,0.995560078837537,0.9999999949342759,0.9999998316599298,0.9999998402352881,0.9989426970772081,0.9999999890747654,0.999999999994549,0.9999999999903002,0.9999999999923526,0.9999999999808897,0.00027627023472523026,0.9999999999994855,0.9991286388296413,0.9995852218853948,0.9996390318123858,0.226614529000726,0.00010851105147351315,0.020716769965510265,0.9993881940680441,0.00017034706850635323,0.9995343089443602,0.9998474899479578,0.9988434720411284,9.269323687467904e-05,0.974102678319405,0.8233957529801658,0.9997276313544041,0.999953936001716,0.9999999686543638,0.999976599911928,0.9985842567431613,0.9999921705343888,0.9999493650207656,0.9999999886353182,0.9999999886310714,0.999996070855199,0.9995375679073298,0.8838251103296667,0.9999999937071256,0.9999999993469086,0.9999529860048817,0.9993990097056213,0.9996173225205969,0.9992483145776415,0.9999999999998423,0.999967784998153,7.009463027842099e-05,0.9999097729356541,0.9823277961677185,0.9999106032979321,0.9998850650904234,0.9995633379256276,0.9999599237292254,0.999787162572488,0.9866006805777197,0.9922018020611542,0.01835256719937042,0.9037263520345519,0.9999999069828702,0.9999298140061752,0.9999999768862152,0.9999779312790772,0.9996482235834468,0.9998997642392384,0.9799296223829639,0.9999995255622248,0.5575396250037337,0.9999999088527946,1.1892059060285224e-05,0.999999954331742,0.9999999999715339,0.9999830850114132,0.9993420135123838,0.9994955577216403,0.9997940058199889,0.9999999770994085,0.9999975995916123,0.9997891184933284,0.9994799298859668,0.9998609451133751,0.9987143483599786,0.999989901356673,0.9993962174339359,0.0003557791965548004,0.9999999739865582,0.00020133747009940756,0.9996473653231053,0.9997386544859761,0.9540056917874512,3.580607606357677e-06,0.9999950411891336,0.9999713465301884,0.9999561753085741,0.9999985450316058,0.9999817081523218,0.9376985052263314,0.9993430985304843,4.359667710149947e-05,6.175109419253337e-05,0.0033861816992397887,0.0005062409770115468,0.9999993674434002,0.9998532770137795,0.9999999999882438,0.997810424598574,0.9999892318054706,0.9999975328463413,0.9996852863762788,0.9874624668872731,0.0001643963935408421,0.9514324059572797,0.999950494795675,2.4082416289062786e-05,0.00025580767505531594,6.0862711182222136e-05,0.9367154068542569,0.9997170555298155,0.999999999900943,0.9999802263268103,9.777522910961755e-05,0.19334878552589607,0.0010679605834419453,0.9997564462979737,0.9999526103775406,0.999940137081366,0.9999997497638078,0.9998619749509201,0.9999999991371402,0.9999820725972088,0.9998191266374377,0.9999981573403846,0.6834652389033438,0.9999997931674364,0.9999999999402005,0.9999999283088137,0.9996319962532902,0.03499144561020081,0.99990452371728,0.9999999999999731,0.9995133689308151,0.9999426811609898,0.9999999999999936,0.9998440182894689,0.9999999917334012,0.012557736482707629,0.9983075322361442,0.999999962251031,0.00015135167891110847,0.9999999886310714,0.9999999978122234,0.9999996163209768,0.2973140070449659,0.983714937227996,0.746081552993378,0.9999969200865558,0.999989120614473,0.9997391117996701,0.999999984651186 -कहे,object,0.999826837773065,0.3545171354556934,0.9999999768647775,0.0002039557272328074,0.9999999943979834,5.057882929122319e-05,0.016025203586237585,0.9996364286990868,0.9927511605837402,0.9941386454090622,0.9999998480773342,0.9999999997225395,0.9999999957325507,0.21081216339076458,5.550473819449945e-07,0.0006870075319991417,0.9999333097666139,0.9999931826810515,0.9999999994356621,0.9999991879266097,0.9998397342691622,0.9998747325175784,5.2056129866193324e-05,0.9998997304384359,0.9998736347802281,0.9997402565722185,0.9999563063492329,0.999988876513095,0.002955297882857116,5.7693585318787346e-05,0.00024848785142356114,0.9999999997816498,1.4689905136956322e-07,0.9999909976068699,2.8739352709392854e-06,0.007746186840148222,0.9999997149786084,0.9999999979274921,0.9960112148832128,0.9670929674304921,4.308077569696142e-07,0.013974691300689117,0.0001880432628045492,3.6834061609454273e-06,9.285049806843966e-07,0.9999998647324743,0.9999999993283728,0.9999938388116865,0.017194276808372128,0.9999819564625057,7.576534414483042e-05,3.354952453204933e-05,0.9999972412483858,9.499908861177149e-05,0.06442772447067323,6.213778770253175e-05,0.9999999996354119,0.9999973601530084,0.9999999999886169,0.999999780451255,0.9999953519165049,0.9998741025632046,0.0002561877830764977,0.9986475253595051,0.3692046213575206,0.9998958095710547,0.9999875869161039,0.998887320222592,0.9997881085918014,0.9490109415438847,1.062339733892306e-05,0.00890210813028031,0.7255062762954425,0.9997990170252898,0.5529759812135903,0.9999758901661198,0.9994780571403094,0.999974279169175,0.9999998922815702,0.999442839402267,0.9996176069357452,0.9998053414138497,0.9999537738560323,0.9999921625236742,0.9736930980374188,0.999998112274474,0.0008506928507652913,0.9999999999520317,0.9999998789617284,0.999419574442252,0.999215368237992,0.16630661249623815,0.9999999992890893,0.9999999907956786,0.9999999989286412,0.9999999978681697,6.292937506543428e-08,0.9999999992697863,0.9994012003966692,0.9996098421219658,0.9997553470661045,0.0019591616068926785,7.790009628734631e-05,1.6655186177575124e-06,0.9994422670539599,0.0001306322498949251,0.16787856972218593,0.9999649086677119,0.999987222777697,4.34165849930183e-05,0.9987029901479701,0.00025050095436206037,0.0005700048892125243,0.9999865415065031,0.9999997145397586,0.9999933330907509,0.999955172220906,0.9999808085254857,0.9998801272319656,0.999999969536743,0.9999999927732548,0.9999688351348273,0.9999876484195905,9.560730732885194e-05,0.9999998336921835,0.9999999769562352,0.9999760988498474,0.9999780854893228,0.9999953651732041,0.9999839946263026,0.9999999999999996,0.9999980883824783,0.0001366973064206986,0.9999775063499534,0.9998505224735674,0.9999201759592369,0.999967450109493,0.9995833628560467,0.9999992901205917,0.7492606029542296,0.028923826189055885,4.052582126852234e-05,0.014715819623570124,0.0010750142796815995,0.9999994835771095,0.9999997150663472,0.9999999758757642,0.9999985399162543,0.9999970193479605,0.9999232465926264,0.0001572940146841659,0.9999998277152785,2.0210000386834063e-05,0.9999986404077095,5.322515953528393e-07,0.9999994281495658,0.9999999997286271,0.999982817536787,0.9996671653796181,0.9997821170828795,0.9997266810747095,0.9999998763324431,0.9677107036483356,0.9999051489384443,0.9995932891130251,0.9996385637251057,0.9984564636861651,0.9999926546149831,0.9999423178371358,9.611478021348195e-05,0.9999999480546962,0.00016705197931266057,0.9999874862351101,0.0003510685242324173,0.9998619050515887,3.6592292179384867e-06,0.004396807827648079,0.0015315584813926516,0.9995935147490431,0.9999987000003614,0.9999824077970023,0.00017073954025828976,0.24883435075351543,1.7957661073682033e-05,4.492781326806708e-05,0.00023593163998187366,0.0002298388679437245,0.8917115125078066,0.9998852798314866,0.9999999998500222,0.999256754500204,0.9999985651072244,0.9999744952550823,0.9999168923102082,0.9999006848809329,6.871346736286924e-06,0.9992686309296737,0.9999877559465676,9.29252132171499e-05,0.00021661354201277306,1.203938240116839e-06,0.9999525497273757,0.9997198924242304,0.9999998141801,0.9999660610260492,9.626660401399095e-05,0.0001856370039882773,4.368522108366129e-08,0.0010126503235906275,0.999930622652477,0.9999991058050712,0.9999999988899289,0.9997663745183333,0.9999999967527387,0.9999875891568185,0.9999014009204513,0.9999964412193323,1.4653473529669065e-06,0.9999999846859435,0.9999999999989417,0.9999999798397514,0.0016744976947245943,8.150614911531104e-05,0.9956225418618214,0.9999999999950209,0.9998224742884096,0.38420846205801706,0.9999999999999334,0.00010530296857968761,0.9999997153301559,1.1909801200371212e-05,0.9999859070159519,0.8522061532221566,7.017898612654089e-05,0.9999999926536234,0.9999999980544287,0.999999970722355,0.01629837522810157,0.9996171763263934,0.9993646615482517,0.9999999811248125,0.38568584785216914,0.99981655929843,0.999999950946876 -किय,rgb,1.0,1.0,1.0,1.0,1.0,0.0018967215741902822,1.0,0.872077004474917,0.9901517307289166,0.9999993891298767,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.005964187197584652,1.0,0.9999999997640587,1.0,1.0,0.9999999999578302,1.0,1.0,0.0023030872088764917,1.0,0.07609284254744011,1.0,1.0,1.0,1.0,1.0,0.9999999822596098,0.9999639096685743,1.0,1.0,0.018250587281249578,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0025694780598818773,1.0,0.999704748695828,0.9671913041648714,1.0,0.9986019676399135,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999826020562496,0.9771774849118627,0.9580954237993202,0.747324553501402,1.0,1.0,0.999998799975559,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9200405350222025,1.0,1.0,1.0,1.0,1.0,0.9570514241701499,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999875620283692,1.0,1.0,0.001699898218900093,1.0,1.0,1.0,0.9999945851038656,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999998,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999967,1.0,1.0,1.0,1.0,0.0007743913550467404,0.9999977287925409,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.8025684034992994,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999990168,1.0,1.0,0.9999996453638159,1.0,1.0,0.9999999999950719,0.9999999770500289,0.9997634734061217,0.9999999686247926,1.0,1.0,1.0,1.0,0.0027432954431287596,1.0,1.0,1.0,1.0,1.0,1.0,0.9974343397597446,0.9999999999937079,0.999999999995681,1.0,1.0,0.019235891693536223,0.0018132039195435004,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.02458080706800404,0.9868283486380711,1.0,1.0,0.9999999736140865,1.0,1.0,0.9995131579077021,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999605207,1.0,0.9771583530681835,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.8221560851749695,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999529764299614,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -किय,shape,0.999999995652183,0.999989990667926,0.9999951370189782,0.9999997116133953,0.9999999204948503,2.637442390819445e-05,0.003630374759297479,0.9999999965540336,0.9999999314440446,0.9999999746701094,0.9999996138152175,0.9999999498406958,0.9999999797380412,0.9999999511909495,0.9999997185240332,0.9979765037631578,0.9999999995878783,0.9999999999978442,0.9999999875442219,0.9999999992815634,0.9998873374441015,0.9999774187173138,0.86663524995507,0.9997910661234636,0.9999920283928082,0.9999960605647614,0.9999999769456386,0.9999642597572722,0.9861602259314448,0.17741633116979116,0.9999247106932819,0.999997550675302,0.9988127476407089,0.999998625348704,0.9999624170941277,0.9999999997076612,0.9999999975127969,0.9999999998855595,0.9999999986536292,0.9995048326375116,0.9999999972909099,0.9999999982417171,0.9195369951845799,0.3793545821611758,0.7749313723618767,0.9999599378854155,0.9999951253974146,0.9999783241879523,0.9996177315426522,0.9999981923479659,5.921248487232667e-05,0.6036241288610675,0.9999999961841683,0.9999999944002136,0.9999996533780464,0.9999720936927052,0.9999998192851878,0.9999999981158474,0.9999999991393871,0.9999999823432161,0.9999999994660271,0.9999983169444132,0.9999660847211664,0.9999985024005659,0.9998785533671886,0.9999901385809914,0.9999722973845843,0.9999999919706181,0.9999999757611625,0.9999999979917138,0.9999999975651164,0.9999988678262113,0.9999744455944211,0.9999999477218285,0.9999897634893321,0.999990843677465,0.9989863559393286,0.9999321323793594,0.9999997586498203,0.9994093901827359,0.9999999985876713,0.9996235769619339,0.9999999612619654,0.9999999828443419,0.9999998003479506,0.9999999674626123,0.9989675319449628,0.9999999994811946,0.999999999990125,0.9999999969640834,0.9999999770894729,0.9999999938406672,0.9999992063069516,0.9999979209038622,0.9999991017190197,0.999999993379403,0.5415062399367256,0.9999994796042259,0.9999602179343993,0.9999999423081976,0.9999969054213399,0.9999999750944186,0.9999999907851379,0.9999999941493787,0.999757390137833,0.5441910155096671,0.9997484024459735,0.9995027679867299,0.9994622374781154,0.999999960335898,0.9999658379397813,0.9991120147649085,0.9999871266064847,0.9999395013833705,0.9999894147247392,0.9999999874427662,0.9999968672577564,0.9999890444074809,0.9999999874615996,0.9999994563930059,0.9999997574702828,0.9999896040654396,0.9999995606226323,0.9999999739254395,0.9999209045316134,0.9999999986930741,0.9999949475848989,0.9999788754384559,0.99999937881491,0.999999688802049,0.9999999999998062,0.9999994485286089,0.9990258234157287,0.999999973158944,0.9999978429474267,0.9998796808729279,0.9999999512242616,0.9999008038658435,0.999999902938088,0.9999606900800717,0.9999999666254649,0.9999529332596839,0.9999757350788486,0.9997297258861723,0.999999999920171,0.9993812604383164,0.9999971337180458,0.9999958829176372,0.9998650210269955,0.999999936025784,0.99841258723649,0.999999986970074,0.6993866152602151,0.9999999470760773,0.9999975844872491,0.9999998671487237,0.9999999498406958,0.9998823983233561,0.9999443824197318,0.9999999518333048,0.999999398898972,0.9998426368714811,0.99999999944444,0.9999930586659144,0.9998627154403725,0.9994702776569012,0.9994626652876353,0.9999999988685375,0.9999983678480469,0.04597715920786578,0.9999994889151843,3.081583385089601e-05,0.9999999950626959,0.9999514152317033,0.9999999993478879,0.8454489884891365,0.9999999813183637,0.9999889670752241,0.9999863437540305,0.9999913677110752,0.9999117667881618,0.999999868783647,0.9999999648371053,0.07847719663104927,0.04046472162528213,0.9993895341130342,0.9981767831185437,0.9999997730508723,0.9999919987726398,0.9999998644080008,0.9991573916318088,0.9999999428075422,0.9999999896035919,0.8584015555041707,0.9999999960407873,0.969254828723876,0.999991031409788,0.9998018736467671,4.2892270383602405e-05,0.999996270850328,0.9982340863306507,0.9999999977813661,0.9999884178362684,0.9999999973559881,0.9999998563528294,0.9998915645410943,0.9999981152749312,0.9998782632177164,0.9999997291348385,0.9999999978183343,0.999999594376608,0.9999999999344558,0.9999301694362801,0.9999999999711204,0.999987649573362,0.999993588528676,0.999995821537111,0.8586766128353174,0.9999986296871682,0.9999999875725866,0.9999934022838516,0.9999963908981965,0.9999999954306404,0.9999992993689703,0.9999993270901862,0.9999034654725629,0.9999999326673407,0.9999999614994662,0.9974254048719253,0.9998270488219962,0.9999875072288694,0.9999997587260421,0.9999725374024137,0.9999999988037944,0.9999997574702828,0.9999951444577325,0.9999777207313459,0.9512827569145611,0.9999992477966035,0.999988485818265,0.9999999994844624,0.9999927601093509,0.9998566201611117,0.9999786596786253 -किय,object,0.9999993269480014,0.999999986309053,0.999999955135138,1.0,0.9999998074676983,1.5219463222941778e-05,0.001473306378477324,0.99999767446628,0.9999861746462742,0.9999971518426468,0.999999999917585,0.9999999999790585,0.9999999999972409,0.9999999999848879,1.0,0.028817285923684308,0.999999998989066,0.9999999997534865,0.9999999789773468,0.9999999963220607,0.9999682431819756,0.9999953847500856,0.0017671866136511553,0.9998860436805631,0.9999394062336053,0.9999999941569298,0.9999678702340608,0.9999735388344296,0.19295717261794015,0.9998182559785983,0.9947245056922353,0.9999997564239773,0.6309997346477266,0.9999877989178281,0.9999999999999785,0.9997650145521892,0.9999999997635469,0.99999999999804,0.9999999870983324,0.9995173068793147,1.0,0.9999999999901021,0.2951438650054825,0.9999970066731146,0.318750366420968,0.9999989512871883,0.9999992236923809,0.9999991859632528,0.7408602440691818,0.9999993057333307,1.3372950833598436e-05,0.999999999998588,0.999999274011102,0.9999875465537741,0.9999796733719633,0.9963549178187155,0.999999998188746,0.9999999994105957,0.9999999999997364,0.9999999999964073,0.9999999999994815,0.9999953649546409,0.2542107633938184,0.9999999999775377,0.9999999789650988,0.9999981667377611,0.9999999656582234,0.9999991207710052,0.9999983605305667,0.9999986912617678,0.9999749211273142,1.0,1.0,0.9999928504877823,0.9999998523933293,0.9999999997345814,0.999999466297155,0.9999994434182733,0.9999999865840519,0.9997330047635736,0.9999988766182993,0.9999964091679028,0.9999999985233528,0.9999999998640421,0.9999731195413422,0.9999999993129605,0.042754755269361934,0.9999999999885607,0.9999999769014362,0.9999977080021115,0.9999984301229294,0.9998355199005783,0.9999999670114283,0.9999999147651514,0.9999999844586398,0.9999999997450539,0.030559938978104682,0.9999999954816949,0.9999992902441351,0.9999999990430066,0.99999973487742,0.9998798415182997,0.999673054646806,1.0,0.9999978716899558,0.010248707192822538,0.9996053689282011,0.9999467523097797,0.9999999978979708,0.9999666658381379,0.9999999938231228,0.9999999999999991,1.0,0.9999999360837332,0.9999988212750995,0.9999999940963171,0.9999016424783461,0.9999999278418116,0.9999999999914115,0.9999999957619803,0.9999987845299364,0.9999995466065712,0.9999993391138946,1.0,0.9999992701538134,0.9999654114657992,0.9999999553480625,0.9996948617218716,0.9999999499035789,0.9999998499830206,0.9999999999973173,0.9999952752336976,0.8845661213572804,0.9999970164583942,0.9999433979055947,0.9999923119003284,0.9999999987962866,0.9999598423618838,0.9999999701184314,0.9999999817616035,0.9999999999999998,0.5573244010468066,0.9998535201096178,0.9999999999999998,0.9999998371861364,0.9995251078377334,0.9999990524342076,0.9999999595975645,0.9999999840901654,0.999999883866464,0.9999999999999998,0.9999999962315806,0.00047705855239546036,0.9999999999768601,0.9998903890773492,0.9999999999159888,0.999999999973149,0.9999432544189458,0.9999991803842442,0.99999994079668,0.9999997781907343,0.9999934526468504,0.9997192663408692,0.9999993133400066,0.9999668171279364,0.999624554622333,0.9988542835577273,0.9999999999939588,0.9999999996600115,0.9999999999874885,0.9999999319149637,1.299664082899579e-05,0.9999999953419718,0.29009657214655704,0.9999999996261519,0.31865735576597237,0.9997816921346356,1.0,0.9999821678284807,0.9999966369049546,0.9999876713108589,0.9820945712604736,0.9999999999999998,3.2307852491284407e-05,0.0008506325057111927,0.8502844657446502,0.9999999999999736,0.9999999793665544,0.9999999979532179,0.9999999999759388,0.9999901271074643,0.9999998103956349,0.9999973914190622,0.9998674001505623,0.9999999922216195,0.21241781733326606,0.9998588596119924,0.9999999846173706,3.184993830020402e-05,0.9999811164801939,0.9999999999999634,0.9999999994683801,0.9999924796550254,0.9999930687199595,0.9999999961940405,0.9996735431185528,0.9992197706383102,1.0,1.0,0.999998601840971,0.9999996903509534,0.9999999999981113,0.9999389214742981,0.9999999999999596,0.9999746612222231,0.9999999452250251,0.9999999919467911,4.846249525679723e-06,0.9999992248617853,0.9999999980923846,0.9999938141209639,1.0,0.9999485878612197,0.9999999999935894,0.9999999590604994,0.9999963167481628,0.9999999997020836,0.9999999965584312,0.11622101465679086,0.9999223086820619,0.9999999999999996,0.9999999490831769,1.0,0.9999938012470804,0.9999987132909601,0.9999999342738889,0.9999998948923163,0.9999939243105007,0.9999982603189792,0.9999995117740986,0.999999999987597,0.9999999999999967,0.9999638724085348,0.9999968086371868 -केल,rgb,0.8604086845934622,0.10282063805242966,2.6278318493385016e-07,3.0559296978504635e-29,1.218606437333898e-09,0.9999999997163864,0.0012075101386820402,0.9999999998801257,0.9999999998259474,0.999999999636223,0.00473654617242007,3.012845038343342e-05,8.554823097061443e-05,0.02682545560514787,7.28813011059014e-31,5.264612066650937e-05,0.012771085816104663,0.01026455451473812,0.020211141207374564,0.9998861062980229,0.504983314791957,0.025099030456335953,0.9999999997357909,0.000168829958565277,0.9999999200515315,9.981620319443312e-07,0.84425273086631,0.9999999199875125,0.00025941453540965603,0.0003978425833970959,0.999999999709922,3.871628877311485e-08,0.9999999996306899,0.9999999850884957,5.571593516808984e-25,5.190768261358514e-05,0.9992907065730346,0.23699559788345417,0.9999999928057506,0.9999999987061592,1.2325352790297888e-27,0.0019693716771496303,0.99999999962944,1.738126171955534e-05,0.00014761478855910897,2.441774715268677e-06,5.24147834160992e-08,2.7197506699350276e-07,0.000471175086951764,0.9999999109305927,0.999999999716582,7.674024808917378e-28,0.9999999997859756,0.9999999994381148,0.00011956861407712459,0.999999998994137,0.9228850253531702,0.8107548553597426,4.443942026831404e-05,0.0002316917827587934,0.004588018192285869,0.626276622920945,6.69239420249381e-05,0.0013468199341961015,0.0002176134507559052,0.004214452228838256,8.607842206492381e-06,0.999999999742895,0.9999999998594491,0.9999999998499267,0.9999999995189877,3.567341720962763e-28,3.3375367581646534e-27,0.9999999996924751,0.9691368570937071,0.004749581034229705,1.4751522599087145e-06,0.0013766616631707737,0.012857593551424027,0.6885160498436892,0.8741400130959027,0.929407523438117,0.9998766273091255,0.44134268917401404,0.9999999998699844,0.9995557037285951,0.0001634775087920511,0.10356228322126387,0.9841194708719369,0.8985970616667279,0.9999999998712621,0.00014311782173639906,0.9694186526894272,0.6012556536202867,0.5735922373953651,0.4538713504850057,0.00024244685393003893,0.43239955728453133,0.933381727856112,0.5342016799471688,0.3297296825172,0.0005624925691648574,0.9999999986097541,1.211402843832324e-28,0.18553965656528487,0.9999999997095903,0.00010895198383379473,0.00024039701312773655,2.9965327596016344e-07,0.9999999986063846,1.831873505988061e-05,3.3063664554441866e-28,8.785930782828665e-30,3.229634349854111e-05,0.0007683924752166528,0.0027972981859769822,0.9999999975472309,0.06192154545026588,2.29076043880504e-05,9.043373181035521e-07,3.082600136062148e-08,0.006223780894564513,0.9999999636097543,2.5337431984493548e-27,9.327741359197688e-05,0.9999993626815851,0.004545440069724526,0.9999999979905567,0.9999987782834476,0.9999996895825742,0.9996891768669667,0.9999999615829925,0.9999999997399527,0.9999999997061182,0.9999999968699111,0.12907457891908078,0.03707591824366593,0.028565362241822195,0.9999997384051091,0.0001622917525832831,8.990955640862988e-25,0.0005765956187460715,0.9999999995227533,1.6044742373662583e-26,0.9999738338494241,0.9992929254366789,0.9999674252106575,0.008616353509984541,3.481642689818403e-06,0.0009915927042979014,3.579848320314598e-27,0.9999924510137103,0.00010350811502956674,0.005594681655499364,0.00012203191126316783,0.000196837547150814,6.095946090713412e-05,0.9999996402909029,0.9999949879642808,0.07999815253067202,0.9999998934299912,0.05674354413497859,1.7000464322773295e-06,0.9999998188806604,0.9999999424491575,0.9999999842216425,0.9999999597097272,0.00012762459141775728,0.00027731504397126823,1.6134129032966928e-28,0.9999883737595483,0.9999999997144635,0.9999988907341472,6.139193029066145e-05,0.9999883531887187,0.001222545238832724,0.00018801040433976413,1.2666240808168158e-29,0.9999999657052389,0.9999997411161519,0.9999997940495899,2.8934508518116092e-05,8.941208383878884e-25,0.9999999997021605,0.9999999997073599,0.0003467811314824149,1.7136270694917722e-24,0.38638568042316973,0.000268974932846576,6.312044115752553e-05,0.005766214288116764,0.9999997086022571,0.8309665518105906,0.9984643631286708,0.9999997151557295,0.0006527700070849088,0.9999999968730202,0.0002789621314496689,0.9999999996602258,0.9999999994294617,5.293833581291959e-27,0.9999921568076371,0.9999999708539915,0.9092049668400355,0.03263863466762179,0.999999999130736,0.00011464742334849515,9.110358796476205e-28,1.0552406575328765e-30,0.7996305879391582,0.9999991433312172,0.4487281685825303,0.9999999014713438,0.00010586937414012143,0.9999999927408716,0.0013103570529148859,3.428597256792288e-05,9.557034660266726e-05,7.209609612128973e-07,1.0411991827676883e-08,1.4298339998686465e-08,1.1990334200821014e-26,0.9999999995165205,0.0012246830861016014,0.011027127375878677,0.008076165199437376,0.10412645001496389,0.033762982597724256,0.00010144455032674685,3.149689715893021e-08,2.07790467972724e-26,0.9999704890794371,4.355551764720058e-27,0.9999999988388986,3.985270719502113e-08,8.758318468877029e-05,1.0914495458624232e-05,7.366049051357704e-05,0.9999998761409694,0.9999974803955571,0.33357369721248364,2.4034112511184083e-24,0.03671980460500405,0.02033744931695536 -केल,shape,0.008423713125964962,1.2579035040430094e-06,1.956675913235242e-05,0.0002352682024856097,0.000160953652677494,3.929474093190889e-07,8.7314373576069e-06,0.10300087314136462,4.019199426111991e-05,0.05773649932272866,2.5075363572164705e-06,0.23237751415545654,0.0010995291035313772,4.843093984174264e-06,0.0005034261016770388,0.0002508367548550648,2.025513951468266e-05,5.979524861248873e-07,0.9999804751315768,0.9999972658499212,0.022988580372579046,9.037814484996646e-09,1.008473141863291e-06,1.575000155920628e-07,5.7504625040758055e-09,1.2558748171779075e-08,0.7380475612896369,1.3854144815168233e-07,2.215350114873649e-05,0.02541790711455719,2.573706187023981e-05,1.4582566989636662e-05,0.00023153868232034174,0.02170984631170058,5.355413280750445e-07,8.997063697731526e-05,0.9998219122761548,0.9761105730816892,0.9997491008304048,0.1107249952372444,0.00013056961524599074,0.00012652333049697128,4.461804786481225e-08,7.09616717829882e-08,5.909011214123762e-08,0.00017248123122339933,5.050752296218979e-05,5.834737752753574e-05,1.814845810517042e-06,0.0010907541347600271,1.4609381750580695e-07,3.362319203357141e-05,0.18595780927789043,0.0008107550308575545,0.0002544133197586048,0.09576725864238116,0.0018842772380609355,0.9635263020918711,0.5280183394548292,0.004730498821017204,0.000866382492174058,0.5091937658108365,0.0016388200277949164,6.008491330815367e-05,0.00025764839804686264,3.3474997023192884e-07,7.878409330131486e-07,0.019332004051988035,0.004533113724255044,0.19036379780095913,0.00024468633759136294,2.699931254295972e-06,6.54946868897605e-07,0.03217917546576707,6.880514632452234e-06,3.013036679646532e-05,2.516010431460776e-07,1.1930509066490358e-05,4.921956979577888e-08,0.9535626414169781,0.7641711470852482,8.964478048489551e-06,0.33100966948337956,0.9900409572555492,0.15263969129825192,0.14395559522211707,0.03502806854550037,0.998896752913489,0.9962096209980326,0.18029817640075468,0.007959919951107836,0.0001001565961575993,0.00010363512943005433,4.350065878146913e-05,5.2969016205822485e-05,0.20253514114301732,1.2547168336539653e-07,5.094085168639419e-06,2.9397238681625496e-08,0.19558167006413388,0.5866254306449642,4.470784313050753e-06,7.849816542586961e-05,2.455574432842907e-05,2.3901183013517793e-09,0.011642877792657172,1.8969925632061477e-06,2.166119984779245e-07,1.8927111205537624e-05,0.029443928576034558,8.812181677355247e-07,0.0003319096346938081,6.675985121254633e-07,1.153312638532162e-05,0.18697983152091113,2.3672970202388944e-08,0.0002742614191701274,1.923360526391151e-06,0.18754521933297333,9.815173855008848e-07,0.019413659031380506,2.811449641736834e-05,0.0005661432844959378,3.209860783914826e-05,0.0001744047290624894,0.9998525198737188,1.520358196263568e-05,0.018215180685463208,0.00012515087638437095,0.000813532559722294,0.9999640420237639,0.01826690923275087,5.6386719469441204e-08,0.040631408962605996,1.7366509569662375e-05,0.9985585688899352,0.02289537322679558,0.9996712181732249,0.0019249506180346637,0.0022855480701152193,1.911562975689611e-05,0.0006710945357409803,5.731372504205334e-06,1.7070356186463287e-05,0.9999454079400362,0.9999056085553765,0.9998973452542699,4.519215799273365e-07,4.976662790584797e-06,1.1786877107246698e-07,3.7863422198494074e-05,0.04682334873015464,0.30263315637973853,7.828686810936983e-05,0.00010194300737599628,0.0679337948202855,0.23237751415545593,9.023822886110863e-06,4.0406714863216993e-07,0.9634701872111244,5.511549056678705e-07,0.0052282522874306766,0.0006469961322251837,3.7001103956069945e-06,2.888619417877422e-07,2.747065591540727e-07,1.675806944957382e-07,0.7057652274600196,0.029662270566504133,3.523938137276799e-05,8.426719873395732e-05,1.1998643207396472e-07,0.3518385581875465,0.0015946711753613712,0.40816789765567624,7.250208350987149e-07,0.00017888126944762565,1.5089191837537955e-06,3.750352896949586e-07,8.608609352514115e-06,3.612096628223893e-07,6.774153337241501e-07,0.00016855780431585676,0.00018330178375658982,0.0012154428942463893,9.787259836813662e-06,1.7497939868727571e-07,0.07341363000736088,0.02268182235255986,0.000139896779010457,0.003405717879948208,0.059146389692761744,0.9073290946443038,0.9998097493452694,0.38824814976156047,9.049953497144442e-07,2.8681555760119517e-05,3.170572879088695e-06,3.540337769888021e-06,0.0015634609080572139,1.7718166572403175e-06,0.3748243264897711,3.250270654070528e-06,0.9881881530255325,0.01096690571117289,1.2870548761698626e-05,2.835421475878955e-05,1.0180333774465417e-05,0.00043394661906999746,0.966792982789542,0.0016481311461017704,0.8277095440669002,1.8429861368174003e-07,0.0011027145412189708,9.407520983828889e-05,0.2906010013879959,5.137856825137617e-07,1.1606170065318048e-07,4.329287426387355e-06,4.444205609155239e-05,9.235312862463987e-05,8.097760363144976e-05,0.00030208884261245024,0.00022849084899954675,0.9776829866651902,0.0006185853982410379,1.6114467884345924e-05,0.9929114606485511,2.5775260631884075e-08,5.9865774471981765e-06,0.0004770714890055539,0.15701083869803403,8.440715471170608e-07,0.0020667894430135766,0.019413659031380506,5.882773126512218e-06,0.00028297605148591205,0.19460335774321252,0.00010149645872403721,0.07428656540239904,0.9057981499995633,0.00047144323619250944,2.6329934398084275e-10,0.15595642227278786 -केल,object,0.004171674121660189,0.006573739095096297,0.00011083279281832985,2.3928399468697647e-09,0.00018989362404130727,0.11452896532488026,6.815394526747436e-05,0.8645676280803413,0.3861825976794779,0.8612230141978632,0.0015485087388116307,0.2574220419023999,0.0027356582819429765,0.009311581826822735,8.034367715916698e-09,0.0001851636905524306,0.00020480515071704807,4.214765360943655e-05,0.9998038591355267,0.9999717050908431,0.39171240695896975,7.439494692101143e-06,0.9171301358244845,1.4646052882625235e-05,0.02842044680617132,8.846638149530783e-07,0.6604895976155368,0.03186222687697106,5.574434426249555e-05,0.25763784421429897,0.9235243705779929,3.2383341146413796e-05,0.8409189841979171,0.9166736315727814,9.703304739559895e-10,0.0001611305912191171,0.9998682955722357,0.847712657146233,0.9999529545319885,0.9992185870388908,1.7112822048699448e-10,0.0002468972974629632,0.05010361477516868,8.325437971610849e-05,3.192929929344001e-06,0.00022896993112953704,0.00018445980491854993,0.0005112122250507583,0.00010595307885246172,0.6511800009775108,0.4171971395237342,1.734411651504548e-08,0.9937313309135328,0.7628701518866822,2.6037154203576444e-05,0.9987151688545146,0.8004845185118774,0.9403502348546878,0.5283335181880955,0.001573639922028653,0.004091479305761582,0.9739414946877121,0.47653006507465484,0.00021843456787569825,0.051883626551068984,2.9101424852753877e-05,5.773566134400069e-06,0.9346237206324599,0.9043820137732959,0.9435867598242352,0.3185876160225207,9.702812678600004e-11,5.3385136990706755e-11,0.9861750092618592,0.02059697758877389,0.00018848773391715487,7.805702034029833e-06,0.0002568186706222198,1.5574604193806247e-05,0.9775469860792932,0.3421366968483287,0.06406126472126573,0.7345063747739519,0.9901144833223482,0.994335407062881,0.30565359355382116,0.02889669687915516,0.9591899021639951,0.8357910567321954,0.035776304184035906,0.9447472658563575,5.2743058052796273e-05,0.8072874015501978,0.04381483718604293,0.5092281730146132,0.8732930187110479,5.085980829290667e-06,0.022379492859329653,0.00017352144751226075,0.8442434136620734,0.9145155744656289,1.3163239877547444e-05,0.5581941371878685,1.9077892060815165e-10,0.00011103824003034395,0.9965083251129323,3.7560190402944906e-06,2.1179883840819222e-05,5.128375548909338e-05,0.954202383364762,6.2085176884993155e-06,3.2502212048161638e-06,4.6448904819930807e-11,0.03892663090081915,0.9102643469062975,0.0007060855200020068,0.7565541334850207,0.008637298489426388,0.05026384401868179,2.0704069178954757e-07,0.012756265466223424,0.04834435450064121,0.8850431983561942,5.396416953976241e-10,0.16633909596462182,0.9999526468563203,0.2245842304873763,0.9902075002467129,0.37431829917786225,0.3877410348036637,0.9999631301727067,0.8990989858668099,0.08303641956948353,0.9485690524631122,0.4179825661605741,0.998807729685095,0.005411759415815202,0.9773492188147126,0.8552349155827491,0.11665881866748781,1.7931206935000184e-08,0.46618659512538846,0.49650973858788616,2.402941220983914e-09,0.999968755677181,0.9999350288435022,0.9999661058679575,2.9927492911718643e-05,1.2242261997278169e-05,7.010123980583523e-06,1.2712947252425247e-09,0.16861067064258944,0.021269567512734653,0.001072398854692099,5.111931595385681e-05,0.005374295359913132,0.29864453605222707,0.12888473179820245,0.032097223460170944,0.9829479633092363,0.07026877845722589,0.25108460256882525,0.00031941630253065574,0.12194586128064328,0.020880983674251476,0.08494124318440475,0.17630913793595795,0.10134538519038853,0.09378275958038294,7.853898517586001e-10,0.026421164354608055,0.09553720084235233,0.46077861202760023,0.005210122173506918,0.8831180084925945,2.7497311984396547e-05,7.356929962580096e-05,1.570934837513388e-10,0.03646014434288043,0.1262160706156783,0.05636286126882812,3.150879254657216e-06,1.4302060776386397e-07,0.9911833733382801,0.9849498352374126,8.876921005994885e-05,1.9864398510795466e-10,0.47894119025259124,0.006665263460737211,0.004428924704076956,0.06614148332952258,0.9599479556759848,0.3106538653825775,0.999934489557224,0.8162539043817844,4.314085801290244e-05,0.42551706327190864,0.010777980624675226,0.7796529589561882,0.8911565675433119,7.187848448065232e-10,0.5757281067761403,0.04564890530703885,0.9662381146586378,0.8586057653542627,0.9582815972249594,2.814003178984559e-05,1.4914620252243185e-08,2.875360427426486e-10,0.5383640887110311,0.5583091221402628,0.6647495417720808,0.15969465371368535,0.001346510832516091,0.5684637110839056,0.8852399781545884,0.01567469866168783,3.650815686889814e-06,4.776059121307232e-05,8.797760332741703e-05,0.0001382122304604916,1.6890868403086416e-10,0.3738524706352499,0.00039330387218049776,0.9991500733396174,0.024803266498521773,0.06880030000974284,0.9995722565905256,2.3531661938929246e-06,7.538472052023867e-05,0.00014580042810354932,0.8780727198793596,8.866124459762092e-11,0.7341991337478986,0.014033825216321627,1.9619214510583775e-05,0.0003561588363231018,0.613560650617279,0.1277294525173908,0.9212753084006207,0.5870588661527678,0.0002210336854991137,4.794136580613211e-05,0.9852372012295391 -कोई,rgb,0.0999464627786375,0.9999999999960927,0.2350121923336073,1.0,0.7856781460917104,0.9625835405806378,0.03526591961214601,0.5443209824031214,0.4529627453720309,0.198329154466928,0.021112903111485525,0.09757049288228828,0.06356108906991086,0.9999999999981752,1.0,0.9951856392116395,0.00014412341951689295,0.0002077126608344607,0.00013199643576328472,0.0029369728800365254,3.51309381753521e-05,1.396903716471544e-05,0.9399495134303465,2.8234788954162506e-05,0.9993032650530703,0.0005230493335735822,0.5828036980161543,0.9986706799776036,0.9858334219220529,0.9999999997704287,0.9619972339493208,0.6248675260506928,0.9304332538469555,0.0048860765459535094,1.0,0.9923928615555331,0.002419254098342329,1.4328774448504518e-05,0.9253684142958881,0.7637630259915656,1.0,0.9999999684870001,0.9555144353105735,0.999999999972202,0.47929842620980034,0.4769592484252274,0.6762898210184466,0.2278638803571291,0.47284667394181673,0.0045790145885760275,0.9589170667577956,1.0,0.34502049896086967,0.8338322769273331,0.8820664553222151,0.8571412120851091,0.9897527813610424,0.9856169014428595,0.08827621558195031,0.045373065456059486,0.01935597474856617,2.689046056253156e-05,0.9989907203119855,0.9999998768385464,0.999999999294205,1.9487225607936394e-05,0.00011858582119228529,0.2746230798983912,0.48345450879804613,0.5007180216508309,0.8817950149859162,1.0,1.0,0.22149571192398496,0.9999999998737801,0.9999999284265397,0.00030855491656091104,2.0804190395371496e-05,1.4856799651875357e-05,0.9806580637709951,0.40351255657255736,0.9821044568109253,4.393583117731601e-05,0.9635829767870032,0.5242838659513587,3.1537710350948954e-05,0.9898814895189566,1.4989898997427218e-05,0.015103313052883168,0.4035626394035404,0.5086032734195046,0.9998170254556425,0.9939619650195783,0.9882262566628335,0.9772249335107538,0.9693333288503168,0.970652070347384,0.9628131694797284,0.9855516704677149,0.9595307385203137,0.929090453867978,0.01038145102726802,0.7296188297840548,1.0,0.9373292014699796,0.9654471528085109,0.27267760650571216,2.6161569548717944e-05,0.001964923431608257,0.6783895250794634,0.00021982498082017072,1.0,1.0,0.19762059675224175,0.040812117045545625,0.03088511541917574,0.02389194362094211,0.04991215714104058,0.09684112819657749,0.02833747723953062,0.613220394500237,0.06551156653698206,0.009884380892663407,1.0,0.18307692482317703,0.7302622159680839,0.07451377176843045,0.030088410589102818,0.0015836013723587578,0.000558255899513503,0.021343005036110318,0.0021733921783153474,0.9663299007613033,0.23335674498598744,0.01868018989832185,8.630996057761484e-05,0.00010801984891799815,0.00013395568094230157,0.0031469257638834748,0.9999999998075271,1.0,0.997577994366715,0.8696609115179371,1.0,0.004124275015997919,0.0029679066986099704,0.1443202256613789,1.5558130330994057e-05,0.00016993091599411245,2.296541541851874e-05,1.0,0.00030533707411989743,0.9867511882427557,0.02044974026511868,0.887605343938663,0.05151717175967124,0.08881799306363727,0.9999231871032135,0.9998318917743478,7.346147974113772e-05,0.9999821619601982,8.094826415587156e-05,0.9853657230050045,0.9996997788089691,0.999692188497312,0.9996610729382817,0.9992582136862005,0.06796312376279354,0.043471463610374406,1.0,0.0003138008108386355,0.9586887079832849,0.0005225076867304916,0.9977706827424042,0.00039891744290497977,0.0376750047690257,0.999867237464954,1.0,0.999985381656231,0.9999026181233648,0.9997815458841899,0.9966166355298319,1.0,0.9319613196706564,0.9652793333185856,0.7478287076033054,0.9999999999999913,0.9999999999860241,0.04360314665502095,0.08091417401695182,0.018621140964835126,0.0006186721252671311,0.13230197179591047,0.0027683440645196833,0.0007067518379149618,0.5227108984982974,0.019252021121201963,0.10144259106399575,0.9424994130493,0.7964289753984856,1.0,0.000263170953430573,0.9980758501203921,0.5380871724945356,0.05208982045089938,0.7644230143248152,0.8700573320783406,1.0,1.0,0.3069487307522735,0.00029577543623542183,1.3286226540931963e-05,0.9992372448655004,0.06539140007993359,0.9994987058404932,0.07735868360697325,0.14581092390297012,0.999711671441283,0.3279568436424513,0.7296474195450879,0.8061705245508349,1.0,0.8680628154999933,0.9999997410796775,0.00022523969356168905,0.00026273410705533073,0.9999999999960387,0.0001761031275306015,0.9997300107533135,0.6098463888753756,1.0,6.727657392852542e-05,1.0,0.7385061657678825,0.646628409724435,0.18382312308718896,0.18316416045179149,0.9999999998113593,0.0010666278418124946,0.0003644088881656985,1.2265894690314038e-05,1.0,0.012078203276283235,0.02116117509035715 -कोई,shape,0.023170020533355807,0.9999998528344914,0.9999999999991418,0.998902080103555,0.9999999999999463,0.9999999035746605,0.9999997394477737,0.07807588835538168,0.8857180165494278,0.0017745351439307432,0.9999999997727314,0.9999999966323903,0.99999999926764,0.9999938740940343,0.9999999977514216,0.9999998612214286,0.9999991682830193,0.9999996409448725,0.9998127166772173,0.9904895210527072,0.9523777098649018,0.9999992841077399,0.999999999853546,0.9999999778275512,0.9999998210269682,0.9999995541655249,4.245608490936505e-06,0.9999900816305703,0.9999348974568678,0.9999615017867061,0.9999678992493028,0.9999999999999813,0.9999710962988765,2.6789756451161832e-05,0.9999999579116152,0.9999999993894466,0.00013328982813226866,1.5166885552112019e-06,0.26814030966585206,0.9999997747121571,0.9999895702610158,0.9999857722689434,0.9999999889913053,0.9999999921276747,0.9999999613011409,0.9999999999557962,0.9999999999995466,0.9999999999975573,0.9999997371581919,0.00010357920332650219,0.999999999667452,0.99997653269026,3.4819589844946564e-06,0.9997903420831848,0.9994039046068836,0.9999993056754466,0.9999999994102629,0.9999999559893592,0.9999999017342808,0.9999997917820634,0.9999891966789448,0.9999999933763377,0.9999584432656431,0.9999833015324454,0.9999748122081692,0.9999921486234026,0.9999978400972034,5.115793974005614e-05,4.143679462323716e-06,0.020377104564643783,0.9999996130573291,0.9998630561878273,0.9999760211466782,1.5911191624530023e-05,0.9999997025101782,0.9999976072829727,0.9999994417082313,0.9999971776943586,0.9999899145409203,0.9979853702018876,7.013051227515254e-07,0.9999641097624885,1.0456096764866669e-05,0.9999999938791211,0.0002608512605455171,4.385131833851268e-05,0.9999981853199976,6.811403463200297e-06,3.474436319272022e-08,2.476633742467517e-06,5.5126610347463414e-05,0.9997800703261257,0.9999999907290437,0.9999973882206681,0.9999999980368375,0.9999999987758572,0.9999999674541284,0.9999989048690385,0.9999999195659703,0.999999994175345,0.9964790255228394,0.9999999805594367,0.9999951869925082,0.9999999339722853,0.9999999779793374,0.9999991178499704,0.9999526310435745,0.9999995812435606,0.9935934622812961,0.9999998510326007,0.9999998951603449,0.9998919649181428,0.9999946426169506,7.093865961044133e-05,5.111064458519464e-05,0.9999999699519782,0.00019519708194954462,0.1629268693433396,0.00012857666154817717,0.9999999997853946,0.9999999999999625,0.007866115980961421,5.834554347690289e-05,0.9999997942286284,0.5631031354223738,0.9999999175692523,0.022665255021672645,1.2977143812484963e-05,3.399872301298436e-05,3.962866389735681e-05,0.0010552179306632305,9.009999787296491e-06,0.9999991479819897,1.1364472540533727e-06,0.00014282423298786593,0.9999985379873911,0.9998645184166489,0.9999932774213436,4.292838195125127e-05,0.9999730335130571,0.999999090402963,0.9999999997547739,0.9997397718893241,0.9999909415842024,0.99999999484502,0.725001980433204,0.9999999709259249,0.9988377684865515,0.9999901219202997,0.9999940172197613,0.9999806228548651,0.999544499047386,0.9999847981379922,0.9999998454739755,0.9996260828654722,0.9999999982589629,0.9999999966323903,0.9999762246958799,0.9999569249209344,0.999999777650476,0.9996960599655771,0.9259331879314078,0.9999985991414755,0.9991806643274158,0.9999980103295583,0.9999994049124237,0.9999999897978037,0.9999993262430315,0.9733998005275573,0.9996817082142452,0.9991535124178617,0.9999999078892863,0.0002918892866453742,0.9999959239333464,0.00023742865138496187,0.9999999066383857,0.9997180820311512,0.9998787870440068,0.999999900577664,0.9991888631665297,0.9996310515293141,0.9999999884734446,0.9999951912725615,0.9999999839444282,0.9999997344835913,0.9998787497911991,0.9999991231986923,0.999999603070196,0.999999996164632,0.9999999993222433,0.9999999977184559,7.345842550258531e-06,2.989375588098008e-06,0.9995634630436706,5.7775097644272e-05,0.9999997822732357,0.0002053226830302484,0.9925485233254308,0.9999999903158815,0.9999124206433296,0.9999968842498873,8.417268220270255e-06,0.9999899374474227,2.386786984395675e-07,0.9882876492213848,0.9998329009893586,0.9999856091424718,0.9999991392647459,0.9999998585176633,1.6599686462225174e-09,7.529554879812144e-06,3.2195766270329984e-06,0.9999991402066132,0.9999983820685379,0.9950525022868828,0.31386933596913863,0.000130992259627319,0.9999999999999998,0.999999999999998,0.9999999999986338,0.9999999999999811,0.9999999735505838,0.9999992496100154,0.9999742402992399,0.9958452024947192,0.9995999650852773,0.9990554173766091,0.9999983100882671,0.9999468535519797,1.0,0.9999967615845708,9.380053778429362e-05,0.9999459850378326,0.9998349908292581,0.9999999999999625,0.9999999999172664,0.9999999623543475,0.999995134517091,9.09401115208282e-05,0.04366491205151261,5.8727511334357284e-05,0.9999011323287904,0.9999999992112087,3.173345407921654e-05 -कोई,object,0.029629531260428766,0.9999998118149801,0.9999999076060947,0.9994133384900609,0.9999999796568035,0.9999990436053857,0.9999844398714536,0.13876209004725354,0.9381344778669155,0.0077832915022994316,0.9999985881536211,0.999986447187056,0.9999950825883566,0.999996922329072,0.9999999999601383,0.9999988775360609,0.9977216699030131,0.994590316634326,0.5461944644741185,0.517006823104239,0.1607176670056978,0.999328243447851,0.9999999922632311,0.9998601369841708,0.9999980752067608,0.999015920223098,2.138012613981841e-05,0.9999603300548475,0.9998958404576901,0.9999899013169025,0.9999451411484972,0.9999999943183371,0.9999881383075968,4.9237345644914284e-05,0.9999999972574236,0.999999971796884,1.1024978719463994e-05,1.307678408368605e-07,0.12844228391444726,0.9999967707553619,0.9999997458954992,0.9999824273348453,0.9999998995939793,0.9999999924862731,0.9999994925278823,0.9999987960858153,0.9999998851729884,0.9999999118094749,0.9999934831785963,0.00011569007237279127,0.9999999900270874,0.9999967765217841,3.361095261161136e-05,0.9998247091308002,0.999532644902799,0.999993489603478,0.9999994637412868,0.9999646611288538,0.9987512869091716,0.9997956335739228,0.9920454665456706,0.9996426314458803,0.9999808778992418,0.9999506635500636,0.9999865224171097,0.9973907210613484,0.9991099081433343,0.0006890118639128049,8.560259408747797e-05,0.09018066244187177,0.9999995452072737,0.9999934221539374,0.9999989480629975,4.4862839885543334e-05,0.9999995093908294,0.9999964804049339,0.9991303992408735,0.9983869739532174,0.9941962743890995,0.985879258911052,1.1768552609452741e-05,0.9990312539540521,5.763063128661773e-06,0.9999795677948135,0.0010390080152924,2.450406304677628e-05,0.9999982767135954,3.664361320257909e-07,7.538297095460817e-08,3.0084943083100446e-05,0.0007428769151087072,0.999853589541984,0.9999983007414814,0.999936402682448,0.9999993399729097,0.9999970450409602,0.9999998821528587,0.9999526898784996,0.9999732569866069,0.9999960251600726,0.9440043182179508,0.9999972560963525,0.9999825500865002,0.9999999956228303,0.9999932143076832,0.999997195158464,0.9999260133200011,0.9986064278430286,0.25474965425636426,0.9999983859356296,0.9999355724203114,0.9999948475758547,0.9999993772869816,4.759118308589222e-05,2.3841572835591615e-05,0.9999526419179717,0.00017357571757268734,0.016053544565688627,8.716022193549738e-05,0.999998906425549,0.999999984811121,0.0009506922819960923,4.728527274085725e-05,0.9999999887278491,0.008079377062211826,0.9994795209781945,0.0008834864778235769,2.1777747698747018e-05,2.6107447935823097e-05,3.283601489099953e-05,6.256797549101521e-07,1.4231962987316987e-05,0.999993257719407,8.961404568428203e-06,0.00011286654704113949,0.9985210772270778,0.9898262070816674,0.9902138721449714,2.119763519994012e-05,0.9999930301466959,0.9999996380485541,0.9999999952052496,0.9998117905643369,0.9999992417830785,0.9996684471780708,0.01596048695534185,0.9999904477297885,0.8624103600150775,0.9939675771816979,0.9964546190675269,0.9999985198584361,0.8659669472730909,0.99999100399769,0.9998702758777074,0.9996526667888942,0.9999945619421723,0.9999864546807125,0.9999414321032093,0.9997861539666476,0.9976749782475302,0.9997659192786625,0.11429476217692625,0.9999973444405298,0.9992544383651994,0.9999952974502571,0.9999980169289091,0.9999997807501536,0.9989115682646565,0.4578261022598915,0.9999790645813025,0.949335766341198,0.9999987591963996,0.00021382455370551727,0.9999989341735558,0.00015602496156296412,0.9999965062101245,0.9998261939736506,0.9999986182721148,0.9999998447603488,0.9989842442104979,0.9994720368941349,0.9999999821444366,0.9999971104452037,0.9999994469289716,0.9999991258414939,0.9997723200755353,0.9999997218861661,0.9999999132167396,0.99999448550197,0.9999966227412961,0.999987561684065,1.6125948903852262e-05,7.059100335759499e-06,0.9841728428843932,5.527986382889671e-05,0.9999976975571702,0.000233434481852052,0.356856976957544,0.999999747309077,0.9998897632369456,0.9999996724424622,9.559962311451409e-06,0.9999827389604453,1.2357523013381745e-06,0.38501265593245587,0.9997111740800334,0.9999527388707878,0.999999972412911,0.9999999991030033,2.327792434404063e-08,5.7242784993176725e-06,4.847776999198781e-07,0.9999916877889337,0.9961749730187258,0.9954532945237636,0.004177569388376131,4.4794217137055344e-05,0.9999999999999876,0.9999999995218678,0.9999997816073756,0.99999999011628,0.9999999931971815,0.9999991017811302,0.9999488443613831,0.2935692859467425,0.759004886723022,0.9994856364107609,0.9742852711945754,0.9999958506529933,0.9999999999999207,0.9999996723066576,4.174361523498874e-05,0.9999972215220762,0.9998572747957449,0.9999999852763894,0.9999990744762481,0.9996636653627835,0.9999971005158246,6.89070261634992e-05,0.00391673431850346,7.961292181905297e-06,0.9999900525355905,0.9999980997765088,1.496088602288838e-05 -क्षेत्र,rgb,0.9999999999811158,0.9991745886145803,2.1825074310597318e-16,0.9999999956489687,1.17709228171681e-15,0.833604596002711,0.9999999904585221,0.9992274190844119,0.9909330315917718,0.962649796529346,2.4247971369168425e-16,1.7387188565869485e-16,1.613761882491804e-16,0.9993474656639605,0.99999999999941,1.0,4.4046177623992047e-16,3.0533406800253435e-16,5.171433117297077e-16,1.672423046326435e-12,1.2871036336792735e-14,1.0470757196573246e-11,0.8171903875705934,5.843110657707886e-11,0.0071224096517490156,7.090048257248276e-16,0.9999999999999976,0.0028874900120253407,1.0,0.01596833490467997,0.8225949007888241,5.596176586648786e-16,0.5975515018701197,0.08990941953769187,0.9999999795135261,1.0,2.226271425137499e-13,5.27492979811197e-13,0.0012217540770108064,0.01899775337149101,0.9999996247054282,1.418079635846213e-05,0.6709609582086427,0.07852679431517043,0.9999999999998788,4.578783082139151e-16,6.377500583413963e-16,2.1405987949958445e-16,0.9999999999999174,3.8072607483495727e-07,0.8240780197456286,0.999999776074844,0.9917547286535573,0.1991395495237222,1.0,0.052316348099322736,5.1251711790932126e-11,1.5719598128046514e-11,1.7399186123544796e-16,1.6306800694435147e-16,2.3016458930469375e-16,3.415045715320647e-14,1.0,1.3282482848542294e-06,0.0017225636314571404,6.201792658938437e-10,4.887543102888633e-15,0.992166110701175,0.9986355326026823,0.9952996012406133,0.32588694739053875,0.9999998160815672,0.9999980878481495,0.9929829677802566,0.9968976352607389,6.730353351171511e-06,1.5022009308953079e-15,1.362286707695515e-10,1.22441659232736e-11,6.843907745822746e-12,0.9999999999999698,2.7149680993843293e-11,7.180204779736221e-10,1.5927934389863633e-12,0.9985575443690872,1.9774674456774885e-10,1.0,3.649716077892403e-13,0.9999999681631583,0.9999999999999698,0.9992703040894119,1.0,2.156993871788842e-10,9.794329501718806e-12,4.001225534528546e-12,2.0284680887503625e-12,1.0,1.5171441884535304e-12,3.728814964077548e-11,1.781876890172727e-12,5.273184794807876e-13,0.9999978788303586,0.014257918789833235,0.9999999825548543,3.854026880087809e-13,0.8324574877396616,0.9999999999961817,3.6367536898508997e-11,2.639067216749809e-16,0.012470483589863482,6.475018189678704e-16,0.9999999046800916,0.9999999997793749,2.835447696876982e-16,2.031057880975634e-16,2.505247467393585e-16,0.2886028976791109,1.1118219946401166e-15,1.6661904379650664e-16,9.640414939255999e-17,5.484794074828456e-16,5.170061888003812e-16,2.273862989171914e-06,0.9999971998627948,3.2906866435041706e-16,1.394586247369078e-07,5.055302483020125e-16,0.24548985318972502,1.8292643300158484e-09,3.3370311131348206e-06,1.2923748297808525e-12,0.0040010113176678856,0.8748763855315685,0.9929871616383863,0.20387749557403753,1.3212566459028847e-15,7.229029216026861e-16,5.4222461868134585e-16,3.28019244356157e-08,0.01233353381080639,0.9999999195371794,1.0,0.3176739844602216,0.9999677216576461,1.0906124744187027e-11,2.339811459603648e-13,6.565489672409797e-11,2.0351215265031463e-11,3.490967225082384e-15,3.602656974224e-10,0.9999950283649234,3.187163482871757e-10,1.0,2.5175468783520267e-16,1.0,1.686371177056132e-16,1.8399430438119943e-16,0.02013716092398423,0.00020112142499443416,1.4296014959669123e-15,0.5339909496424097,1.1456625835095764e-15,1.0,0.007077457119623118,0.03711323512619411,0.21449404297148106,0.018822999076384045,1.803000565041518e-16,1.6558603374397285e-16,0.9999999713548552,1.2351164826976298e-10,0.8202848413071399,1.2794713408326634e-08,1.0,8.737883491391443e-11,0.9999999927508705,1.0,0.9999999999574527,0.8997991095242088,0.02228683287955017,0.009357646126514314,1.0,0.9999999690350804,0.7411023265098977,0.8288247534042441,0.9999999999999987,0.9562078658132258,0.9980085312740653,1.6477914830620393e-16,1.7526441091893956e-16,2.429294072041278e-16,0.0007622745331251659,0.999999999993961,1.0845146629805994e-13,7.867494074148067e-07,0.9999999999999645,0.09350476666052131,2.7442493571334994e-16,0.6837986271825738,0.17478024845696752,0.9999930448482891,3.9838603255656505e-10,0.008624283049598924,0.9999999999999953,8.533898027989133e-16,0.054064405647107794,0.9999999999999998,0.9999994817959436,0.999999999998131,0.9999999999998641,2.546727081380934e-06,1.4819871133542774e-12,0.0045695060138746186,1.7029641484271556e-16,0.3765915987728416,3.4677257360719226e-16,2.2911968274825593e-16,1.0,2.8064101636036107e-16,7.903205393454746e-16,1.0127107537356249e-15,0.9999797838023156,0.30784181104333097,4.0034702781487664e-07,2.89795275521081e-16,2.4720373784668127e-16,0.9991635200622807,4.3750913681595336e-16,1.0,5.435673036685895e-16,0.9999999998350142,5.570716140714871e-07,0.9999960806531282,0.023405291113280654,5.91059545383103e-16,3.2567109200602884e-16,2.2683921529264723e-16,0.007962907455802883,8.22214109508258e-06,3.1466997556763014e-09,6.608925977142611e-12,0.9999997506463074,3.8846750291895967e-16,4.053760611156524e-16 -क्षेत्र,shape,2.3790487445261077e-11,7.531200844429454e-10,0.9966523092735895,0.9993906055429951,0.9999584442526337,0.9997532426304429,0.9999884515591131,7.855860704201794e-10,5.702783078735835e-12,4.1763667798983884e-08,1.5496390379569273e-10,6.137941716760445e-10,6.885337279074156e-10,5.755342651793905e-12,1.2436562484066062e-07,0.39909865411606466,6.976041483369275e-07,1.129464679286996e-05,6.953558567245039e-08,3.820777445689653e-08,8.91515794252386e-06,0.9047773054557242,0.9917169757614392,0.9969199907955786,0.0009970189770917225,0.9895738502679478,0.0029536412239555333,0.00040776886015956275,0.010172100186441962,0.6240553604345487,0.1448584014508718,0.9647980141943762,6.3022407496904495e-06,9.551236924181405e-06,4.657294168315631e-06,3.847137448590728e-05,9.255202170600812e-05,3.062445401246051e-05,1.2148355176833417e-09,6.373911236441746e-11,8.602695016900377e-07,6.064566794613572e-07,0.0008319229051147877,0.006193406846304321,0.006143234153416752,0.9992850737482971,0.9924991909162422,0.999847365302016,0.9999629285947375,6.37082738948144e-06,0.9999124855248548,0.9999251017236365,3.017103153727919e-08,4.343291060564442e-08,1.952702376509529e-08,1.0178847384314004e-06,6.066979312281511e-11,1.877449858674984e-07,5.032735834680466e-12,5.269566454466775e-07,2.8835481239622454e-07,2.2589694671438235e-05,2.178164206344143e-05,7.828675342712357e-10,0.1059520237171575,0.9586397080286428,0.04357237742648964,8.43681133793756e-09,1.2573179905708179e-08,2.681044426677657e-10,1.9464826908760065e-09,1.8482406691480776e-08,9.560282058505608e-12,7.929595772627695e-06,8.362682791944745e-09,2.8749203078634477e-11,0.9987866565761909,0.19197836445086183,0.002216176104582471,0.0003850439055363182,1.5442284733743738e-06,1.4682317771370096e-07,2.235477915737715e-06,1.043090566518742e-08,1.8610405508638978e-06,1.0762480359652308e-07,0.8675684633788765,0.0001053173236207757,7.075291843478917e-07,3.7826277308375754e-08,2.3351210084441045e-08,2.7648290221149396e-09,1.3728083944390404e-10,4.510135344442994e-10,2.8623609004926433e-10,6.444784466008951e-10,0.005590747969171093,1.771159551377661e-11,0.0005181553264919486,1.0005820709716448e-06,0.00012931055373615743,6.663560107932644e-07,1.7022309682128203e-08,1.2989675000949212e-07,0.00023295606901247432,0.22415695057637836,2.3408183131906436e-10,0.979244712007424,0.2774448552118588,1.439733844494986e-08,0.9223550644646851,5.536832292681869e-10,2.0109239747656432e-07,2.707094647943887e-08,3.804892955078336e-05,3.527869871425802e-05,0.00039929831753848354,1.705715935678255e-09,1.7211283945917415e-09,0.004539436035816671,0.999941545506855,2.0718194910382425e-07,1.866908437022647e-05,3.610612026762585e-07,8.670407318122846e-07,0.00016769874912272013,3.3052913257067575e-07,0.00037121479174312974,3.2912329659175438e-06,3.880495249159751e-07,0.0009240698089361489,7.49797551794644e-05,0.8977548286912619,6.6613412782431e-07,0.00020720061545500531,3.868598056073569e-05,8.978352800290717e-10,0.0027511652336336453,1.1971263745925684e-05,0.028289865225733516,0.0008822862908566556,1.3515102396857167e-06,1.0918247896454634e-10,9.041533056773071e-08,2.5023641951719025e-07,0.6726374084584428,4.541312566820818e-09,0.0010127289373528317,0.9008344551866234,0.6856381690234788,2.532723625011587e-09,3.15673292425465e-11,0.7303057560381454,4.548066346090535e-08,9.14460465784791e-05,0.00010868547786653593,6.137941716760489e-10,0.000913649935167759,0.0008589056568741544,0.005787607020763311,1.0245586420267678e-05,2.2866013753343467e-07,3.5222867857297607e-07,1.682670530637331e-05,0.0006432294009243836,0.01843512853802315,0.9231676565310989,0.00010536077492018994,0.9625504426041721,0.999914763109802,2.5686858430175886e-13,0.99960047531058,1.1560737489030191e-08,0.2911679315276355,1.2924672421214697e-07,0.9999755444161726,6.060605220523977e-10,2.435189717644448e-09,2.776065447559451e-05,0.00023432027149755498,0.00011276289816277265,1.2018541605369137e-06,0.005197671123286321,0.9999115218152907,0.4197922092050265,0.9998562344058112,0.9995710371214559,0.0006196849534174827,0.026475425644759337,1.5476374526280753e-10,0.9999975321502538,1.7237507135416737e-07,4.042078636613755e-06,6.116776171307674e-07,2.4595172971103903e-08,0.9999740980459415,0.00024358057208466585,6.072143199771193e-09,0.9998055347098815,2.165459876298816e-12,0.9998792707520029,2.662604314780821e-07,0.00048483309477448703,1.9203941420428588e-05,6.603317799027745e-06,8.359233569988629e-10,8.048356552697657e-06,4.908255301616608e-10,1.0510215652606796e-09,1.3990545616155246e-05,1.5523685981210265e-05,4.214162034467898e-07,0.1638663544377842,1.2351806200598372e-08,0.00032688155222163165,1.4026601182533203e-06,1.5285485366431356e-08,0.9996681627943391,0.999174411451687,0.3574255498456313,0.9999906261951088,1.202085309954832e-08,3.1316533766152714e-09,7.049301895571974e-10,3.799377117001361e-09,0.0001570199574031733,3.283239126434981e-10,1.4069481976966368e-09,6.116511385330222e-09,0.9999291826745564,9.468339361867637e-08,9.890362612182277e-06,1.2080603502602675e-12,4.5969783553486236e-08,0.999941545506855,0.017359047811140494,0.9860422906956731,0.9524724012611955,5.537558645767477e-06,1.1660192602545147e-06,1.7643787117066604e-05,6.883341966626885e-07,0.0002587060382634353,6.023680824002348e-06 -क्षेत्र,object,3.6573606004960095e-06,4.9624303795345285e-08,0.9986345404124294,0.9996920581868873,0.9997736675394245,0.9996633839833785,0.9999999838529141,9.840444885960823e-09,2.2299573753603517e-09,9.797476052924886e-08,3.576155345902996e-06,1.192739340835453e-05,5.987149332691873e-06,5.881173192361018e-10,0.030618132659860024,0.9996653832560722,1.6220858121240875e-05,1.0640042466620601e-05,2.355863527080042e-06,5.371071936072231e-09,0.0007241510872575763,0.9627799267129894,0.8214728284581512,0.9999446799340626,0.00052049388078037,0.9804731686365934,0.10910498517682711,0.00031752888494751216,0.9992898162543261,0.7725998885096164,0.002874516945377814,0.9982938909385043,6.322395095840596e-05,1.9408049408898364e-05,0.11919435919620516,0.31517183342804417,5.687137463630587e-07,2.296588816529215e-05,7.972173930277729e-11,1.9525143910670116e-08,0.0026939997174232227,2.056892089691013e-07,0.01671803635565855,0.3521805825181448,0.9998556407205469,0.9993900747801675,0.9988596194211778,0.9999595155880643,0.9999959593134002,2.7785379258965793e-06,0.9997649301583018,0.9999994553248976,1.9925058926289863e-08,2.4919385702695774e-08,0.0055490298774141505,7.750889292354905e-06,4.075271910285559e-07,2.0761783803166423e-07,7.935302393148274e-08,0.00013375278715247694,6.645320775671248e-06,3.4770231665971536e-05,0.9071530995035898,1.4996892870162782e-07,0.010885639211833931,0.9892632173543934,0.7158138288931384,1.2883220946780226e-08,3.8838963797109354e-08,1.7808352230820276e-09,3.352104616395014e-09,0.0064454765061433454,0.0007815301333469791,2.375038065461644e-06,1.3756008817536152e-07,1.846138380218425e-07,0.9997729212266443,0.9808346402095826,0.09405454664158523,0.0005295810353847686,0.0001798081584016173,6.288030669281736e-05,3.6832844042772035e-06,8.284657556379976e-08,8.955678753762968e-07,1.0718561278302766e-06,0.9999758397485125,0.00018034888146490423,1.5694105174326804e-05,0.0001118641732324129,2.7025407171964086e-08,0.004053714741549112,1.543150553918998e-06,3.843812181636644e-06,5.567796573127322e-06,2.9852696499938623e-07,0.9999475331080565,7.476405517069307e-07,0.0002579500480960023,7.675439802375593e-07,3.2755486517195455e-05,0.006398274045420915,1.542687732265988e-08,0.0034961849935631483,0.0002626204545121904,0.16963591172979325,0.006614498508613318,0.99983797439192,0.9673357946733547,1.7161570740309996e-08,0.9299622862304271,0.001842677823923083,0.04120029001748861,1.1055748313997476e-06,3.602341378365167e-05,8.410500990863856e-06,0.00022711385634682608,1.6225803206187828e-07,9.727097818312086e-08,0.6215528787179243,0.999848909141034,2.088428900833219e-06,3.1934757160622544e-06,0.008796198150113007,1.1840639026930999e-05,4.1847339201192565e-06,5.567047070899253e-07,0.00034396968509527886,1.5124583300559137e-06,1.0619377666025032e-06,3.1855408014161595e-07,2.1962033638277545e-05,0.0376751677096261,4.550776598489043e-07,6.325427924901268e-05,0.02050923074697218,1.8255586051699935e-07,0.041041424086459506,2.095612364670763e-06,0.006226331445201116,0.22660401767906302,0.6882733103000455,1.2852860924818879e-08,0.04833800945084964,2.8799911291108605e-07,0.26935664054614783,1.4119423264634052e-06,0.08667978179700132,0.9923266287153478,0.691211839521375,0.016642748420480368,3.226339510720058e-08,0.9999986646992876,4.4045471037559424e-05,0.33220198360466713,0.0036793452263812177,1.0496510504792776e-05,0.0006783360027439141,0.00030423251559493213,0.00015985401225687378,9.996063681567366e-07,0.0003551593377976532,0.04702736792875612,4.175042757200487e-06,0.0003304467909374376,0.004667595372418226,0.3341441915319271,8.928024540400708e-05,0.2761044584840892,0.9999998486215929,1.7222830037641387e-08,0.9996277169144449,6.335941989396113e-08,0.9998424589975344,5.812389259014967e-08,0.9999964798706195,0.001609034820194521,0.008620154395822458,1.9222960035324614e-05,7.815510241196502e-05,0.00012172028941792338,0.4192907301439773,0.3146191802521092,0.9954420346346312,0.6243052332868154,0.9999675626248252,0.9999303674514209,7.771084415757034e-05,0.10018759641715633,1.5764002688354737e-05,0.9999045220037502,1.3223978303973866e-06,0.0015493728411722437,0.0007486315893963369,1.1489334679287573e-07,0.9999992536605601,0.0001163698258544216,2.313599561340556e-06,0.9996047775093367,8.757357569775501e-10,0.9999762197413488,1.9381391694221852e-07,9.583850897178185e-05,0.008158019849873752,5.957440364379671e-07,2.227985117368231e-09,0.25883507382474025,0.00021011408882037376,0.020050863362774635,0.002847366421525438,2.412905411517091e-05,1.3704383323431745e-06,0.01401977444483752,1.9874179320140824e-06,0.00010682597724767366,1.435310641910166e-06,7.501453072436396e-07,0.9999999943543125,0.99934184971427,0.7842697542510871,0.9999696139064975,0.015022926856340674,5.38100486081639e-09,3.3568774649258915e-08,8.87244365739876e-06,0.0033268186141354058,1.1493666398561136e-09,3.1009609171213807e-06,0.21193846781292777,0.9999961343556459,0.0014227516046415535,3.231876218076545e-05,0.00020336087019585635,6.493832402190967e-09,0.9998344967694431,0.7654304714198599,0.9956379174495971,0.823487053683942,8.053743198884655e-06,1.0595958615023113e-05,4.76886269393629e-05,0.016720035420354853,0.0002825638217765304,1.0958956078330196e-05 -खंड,rgb,0.9984854231551461,0.9946570100672081,0.08128975664242373,0.9999999949966394,0.2564694342607835,0.2491008096503881,0.9987156527254824,0.41869459075456283,0.31746865035621485,0.2717335053756968,0.014907120302958318,0.03487024557538822,0.028336208710167638,0.9961339521346874,0.9999999996534612,0.9999984842930757,0.010935046428137354,0.010773664232131998,0.010388983604816016,0.006695191725413647,0.00941587115506815,0.05830649703605393,0.23803361330824857,0.17279849585654733,0.228061502812396,0.05989102050621041,0.9997716546620856,0.19317916020338446,0.9999961757836914,0.9777301136255689,0.246842321016668,0.138059401875772,0.20917716556645038,0.16117065975553935,0.9999999661052275,0.9999979116277041,0.006091552427419205,0.02230217560163917,0.09826550010052662,0.11528530972294207,0.9999999747494814,0.8682072227483616,0.22394689773367732,0.9913480150773254,0.9999149316258962,0.06923879511230215,0.13644615287616768,0.08042377726050853,0.9999038800288367,0.022351591162965763,0.24569817880431638,0.9999999792191561,0.32394364026382433,0.15998342740732494,0.9999824972556575,0.1365798935535996,0.06409899470768325,0.05972792015994336,0.03255970570959027,0.023685437539193912,0.014769679281205381,0.010318720907734133,0.9999994721628502,0.8048815233306329,0.9673459376908538,0.15882089904177946,0.05638440770201671,0.32912836966903725,0.3953345949617206,0.34262279982961513,0.17735610067956575,0.9999999823472546,0.9999999567339098,0.33728911723185945,0.9790314767712823,0.8247516542039014,0.06293582844513926,0.14553888705002255,0.0669942723287377,0.0561080787555581,0.9995977266834587,0.054664985139020086,0.017521174304857348,0.04891492289056455,0.39166560669138356,0.01663352719425483,0.9999971308348814,0.024515531795236734,0.9895848884050084,0.9995812719595798,0.42249825119796536,0.9999998183162743,0.07328804155112849,0.06523220304870747,0.0545551679075953,0.051188847911850605,0.9999935773456474,0.04870621382432366,0.057995051145037405,0.046794392466527966,0.04149590659804329,0.9965568034043636,0.10987526670907362,0.9999999914331229,0.04459579579459684,0.25035523480764676,0.9998342132853526,0.1516692205220687,0.06451018619588098,0.1061286733397482,0.0353851179755147,0.9999999850723986,0.9999999979555514,0.039389129319988114,0.020162875961173412,0.016703417915792305,0.1688289624561379,0.013520800657505598,0.03614819184279067,0.05142747404237472,0.14188733124739758,0.017497413150572638,0.028184358034175468,0.9999999545804282,0.03395151195575191,0.035251750408250564,0.018485941509274944,0.16003312292677363,0.011744028579866344,0.03709790108220672,0.008356361378449122,0.10375777868854662,0.25972465369826264,0.33640097370650063,0.1603480406779145,0.008769760599928313,0.009885496480707395,0.009891361006202193,0.016400257999511562,0.979983081527543,0.9999999497386772,0.9999987798505203,0.17525326575534844,0.9999998923337543,0.007659242957879988,0.006213062852451155,0.013597969062836241,0.0783810289380174,0.06226447914810649,0.17939733817481182,0.9999999451216636,0.010428356966074791,0.999996683219578,0.014579922303107376,0.9999831474460682,0.02465027270223301,0.03126574711589666,0.3438012385508067,0.24141815052878823,0.00964964581042031,0.5019870707589783,0.009880795684230285,0.9999975097630709,0.26133309498561164,0.28810310460185234,0.3216626459911664,0.24116157196051843,0.027205110343917527,0.02301110621036858,0.9999999899355804,0.009348070475742229,0.24493921700491242,0.0158529701948835,0.999999098705772,0.008856790075461,0.998784261848043,0.9999998484233662,0.9999999985329622,0.5568606038567359,0.33316144340657733,0.27968241216152856,0.9999988834485986,0.9999999597133787,0.2249476890896221,0.24960497292165093,0.9999618092965542,0.9999987558541548,0.9910050323830087,0.023109048769661723,0.030646624965284527,0.014337050217389635,0.09932715956852735,0.9988507912095973,0.006073835841189146,0.028205291402334486,0.9999147359744013,0.13810344832060814,0.02650402560575913,0.22095696393872039,0.15446238308737245,0.999999936909187,0.01087146628818833,0.19709783907607745,0.9997118311685169,0.014396627533463468,0.13079832127769242,0.9999810928922067,0.9999999739684424,0.999999999519172,0.9994980799226291,0.04024684615377679,0.02308171159456509,0.21827039876143955,0.027689290841629487,0.32243706967517866,0.021170398575311878,0.03679966444967106,0.999999764872362,0.07437078540285944,0.17969561599415954,0.18230012691162284,0.9999999078711121,0.1741784165708696,0.76148972542464,0.010582509684479635,0.010900868031254455,0.9946267573207394,0.009353718466220334,0.999999773490702,0.14114487204491508,0.9999999934808657,0.0497324886614108,0.999999946565441,0.11694894824171158,0.13933663515853842,0.03424220839685252,0.04478330736107413,0.9808997957580882,0.03911212362852546,0.013622134554817653,0.03302393170436773,0.9999999233402955,0.011222796647952667,0.012890447829961847 -खंड,shape,1.1308236654199258e-07,9.227040637994634e-07,0.9999387961940331,6.834425274650207e-05,0.9999995037770699,0.0157136934446092,0.0024042173603289647,3.636443413184803e-07,1.3812024234318223e-07,7.862710282310476e-08,6.742676378660592e-05,0.00010683324337807937,9.394428451429976e-06,1.7083972560282897e-05,0.0003384264624071915,3.964614913404832e-06,0.11408734425025208,0.00022917821836467218,0.025953571550383237,0.49880502693502266,0.9664965186453828,4.396543351990916e-05,0.999494624081867,0.06648409102745505,0.00020406373669653894,0.0008798991998919977,4.252440830460751e-06,3.465614116825084e-05,0.12861817886004207,0.5383073631015676,0.0017514460377338662,0.999609200936386,0.9998793208961737,1.1877483542241717e-06,0.9999913626308039,0.9998732502626194,0.20435614304910213,3.7200148389785426e-06,0.9966784374935875,0.00015707713793299265,0.0019532363370899715,0.0021255989609895065,0.01863649427641172,0.012619842429495178,0.012229693594451797,0.9930988431247569,0.9999939319024768,0.9999993835399931,0.028227723234246715,4.5515486255786104e-07,0.0597679196312603,0.19751764964894195,3.331055907597345e-08,0.007483967163843947,3.8931402447898246e-08,0.9999998288453082,0.0004787175430633158,4.443076837660575e-06,6.084349551006735e-05,1.1028325479374015e-06,4.7436943805267505e-05,0.0003967006690873928,0.9999407381028056,3.2121938476786946e-08,3.848083758740706e-05,0.00027958368651442573,0.006097596150632863,7.418173395678072e-08,7.602681188366833e-07,2.6910321526597264e-07,0.0006256938416241928,9.058591232478141e-07,4.3312590165971497e-07,4.7337556627607895e-06,1.5797388349758705e-07,8.634293225280952e-08,0.00014623126213371803,0.0009150517354723757,0.0008228353018313849,0.06761030933763083,6.268802129649516e-06,0.02286418503914001,3.7817694953426883e-06,0.0001294509415050098,2.559525051758673e-05,6.382412051909039e-06,0.06401371654129352,1.3317479777706888e-06,1.622329184285062e-06,2.2771779131676895e-06,5.200688839891002e-07,3.3598887089248964e-06,0.00038349356179688033,1.410291295971296e-05,0.00013817001750196118,9.008704778047778e-05,0.02034515988213953,1.546739760559989e-05,0.0030894483798744243,0.00012406295736495907,0.00019493011774253545,0.31134389285127234,0.658524639831768,0.22804344074698588,0.004714763317672714,0.6349359967194363,7.02389420926393e-07,0.00908514226934067,0.0016884385026435516,0.10774012856814137,3.625133048400301e-05,0.0004912813276970878,2.599682213124773e-06,5.757868017589571e-05,2.4276034318710155e-05,0.08434640334392707,2.8741414040080934e-06,9.528865875706195e-06,4.509552628425476e-05,0.0007154698140089229,0.9999998378722456,1.7936683225095144e-05,1.4545750335847407e-06,0.003602939487844538,0.00016707594592549641,3.044244024365585e-09,0.00020291150690993575,3.1811889171425693e-06,2.2700476396641692e-07,3.358007271402421e-07,0.0002611424047840494,3.8643845528998424e-07,0.001357497337491992,1.8286647853871386e-07,1.1178734597195072e-05,0.9996913075215997,0.0001266954326192739,0.9992014360070816,1.4185502453540866e-06,0.0007659340076197927,0.9997602904588353,0.9999894185079216,0.00032093495272947787,1.675000070750773e-05,2.51800587332756e-08,1.8488449623742653e-05,0.010527419530614047,0.0006072863089874522,1.3854219029475283e-05,0.0007553538408070074,7.499198137850613e-06,6.170440292616522e-08,0.964833446225298,9.308744783786942e-06,0.0019111760683666373,6.917454986655115e-07,0.00010683324337808011,0.0001805166023987693,0.0004155644101455566,0.37839759893292113,0.00024452052616879747,0.00019590973607361766,0.9999967618289667,4.722438205850998e-06,7.946245231179408e-06,3.067326519670689e-05,0.0005341812719715539,4.3941779038725725e-07,0.00032800857963562717,0.0030366694551691325,3.5928213314232705e-06,0.12233180053009725,8.197041870609334e-08,0.010105236832811995,1.340514190154377e-06,0.0064520448638787494,1.8294671415314504e-06,5.60249973167831e-07,9.484103739020008e-06,6.619068041224962e-06,3.284877184852846e-05,0.9999059344798782,0.9999538973628926,0.9997953743002602,0.9617873831753517,0.0011090251109797363,0.00011601927210499541,3.5617070350954506e-07,1.2927936649461747e-05,2.897232688771749e-05,0.00037718093899040547,4.596946432657418e-06,3.287376407483095e-06,0.8462663429558815,5.252865771155182e-06,0.011536809752887067,4.848252630092403e-07,0.0004452615562380068,0.017631720959547882,1.5061229432293788e-05,0.022851501462194133,2.0643786263262964e-06,1.2747306045810956e-06,7.06102298885793e-06,0.09214890088453068,0.0014201339894215448,0.00011223973338351499,0.00033440771915793557,0.0002408118643459381,8.338947899119476e-06,6.633548136253312e-07,2.63263382631765e-07,3.054374167185751e-05,3.145384789665466e-06,5.124280948417638e-06,0.00022431907413533855,1.920606310361605e-05,0.9999864248708656,0.9996151118165948,0.9999650684852591,0.9999925514829576,3.0235542772505586e-07,0.00020228548185468597,3.759445402384828e-09,0.00011894549578072703,0.9962565297845873,1.6542847341515804e-06,0.0021020449242171143,2.6269913893183357e-06,0.9999339263502812,0.9999566005447068,8.123659477904252e-06,1.1539179736817261e-07,0.0006509096743958828,0.9999998378722456,0.00596869102015756,0.9944427978579643,0.06158392508318687,5.148691415820293e-07,6.729324355268694e-06,6.484442361743389e-07,0.9998160114497788,0.2745047564687024,9.079563224717933e-05 -खंड,object,8.032982429242605e-07,8.546867493962594e-06,0.9978948815996862,0.0008581613628221987,0.9999862337512702,0.02098609147200526,0.004302992512175981,1.0981982393513698e-06,7.567186039290563e-07,1.4479860207455964e-07,4.709073818287102e-05,6.9642001299528e-05,6.9590532496993326e-06,0.00013318602713937092,0.010379737148933746,7.565655056687746e-05,0.04001992937938011,0.00015378478498195017,0.005833847336795187,0.1308582174651285,0.895450279375074,2.1183188058971103e-05,0.9995113840101237,0.014040675225775805,0.00018865584887719635,0.00030549471310174905,1.2256312213015023e-05,2.847167684775565e-05,0.37607171261490074,0.786066346282663,0.003196205119241209,0.9848117666966516,0.9998527024700934,1.1639943461557355e-06,0.999997180686752,0.9999068455975225,0.03224658765760887,1.1042076965442546e-06,0.9853582867311518,0.00021738374285769807,0.06023061784241038,0.006878886585596034,0.018713131177579525,0.033836643561730516,0.0328628316176803,0.9108349408967134,0.9997263962243207,0.9999870853270519,0.09631034484131301,3.129362837051616e-07,0.09719670989326094,0.7425095859410873,6.800039907647424e-08,0.013780105956848449,3.560676621955575e-07,0.9999991259468587,0.0004936217965273024,5.47722290997335e-06,2.8858469205010586e-05,8.940245151537255e-07,2.1243918307689584e-05,7.14443564896346e-05,0.9999789639194816,1.1635743100879492e-07,0.00014798494832209624,0.0001349517121373769,0.0015565427739686571,1.8197613830145435e-07,2.20953916432419e-06,7.749696649525646e-07,0.002454343535699106,3.695361563059142e-05,1.585556582221015e-05,7.510393929839416e-06,1.5543345038955393e-06,3.8001880595056e-07,6.010778739701282e-05,0.0002845305034737368,0.00016909556132543502,0.05369849153433249,1.1367280299741244e-05,0.01213337027535387,1.2600808142195351e-06,0.00011252767550724716,4.4978844571355365e-05,2.3760932641222583e-06,0.4566471460567236,3.7402691283851634e-07,2.3632969538335937e-06,7.377840693781134e-06,1.6676781114750811e-06,0.00010145726629574839,0.00046133306296406394,1.5974897860216117e-05,0.00015082043403866625,8.383729376562081e-05,0.08854048114688123,1.8621766925945168e-05,0.002854729945441459,8.50741879012794e-05,0.00021048624098716026,0.45664707617896333,0.6952731047303032,0.8556750819931089,0.0033147665216549916,0.6972656435816911,3.9659437947937536e-06,0.0019175258378511459,0.00024226137722344426,0.11692539989886845,1.5973892266227427e-05,0.01345529048466566,0.00014233838763168155,3.251675942941525e-05,1.471622528333703e-05,0.01305180858728619,2.1682807574187714e-06,7.762616331365865e-06,2.7734901391095292e-05,0.00019718530810043942,0.9999941546834145,1.0190076487625848e-05,9.648688594693887e-07,0.05759022729195294,0.00014393904205028238,2.8884598634382978e-09,0.00014507936785805096,2.6766661642736613e-06,1.2536552789412326e-07,2.5521080310746897e-07,2.751672688797681e-05,2.5832944714352207e-07,0.0029670891929814832,3.253901261750123e-07,7.837874950732601e-06,0.9989676698830572,8.446394374747235e-05,0.99122734630631,7.830531656630597e-07,0.00428666100243817,0.9998813627204385,0.9999963517481989,0.0008242598052751035,0.0002669599404659275,1.3797311384080998e-08,4.05636636752132e-06,0.006233247726534391,0.00022095194825357532,4.518586641793981e-06,0.00022624979886695898,0.00012897091455791354,6.500044134031563e-08,0.9940899735416038,6.251480025252215e-06,0.010268040020814039,4.966696990137735e-07,6.906840295211064e-05,0.000160730881558152,0.0003606445032444429,0.04639732806783049,0.0002699402898165913,0.00019694603357409986,0.9999962269641317,4.6507243815447705e-06,9.470456147686047e-06,3.421752858660641e-05,0.0005902078163438996,2.413699604544348e-07,0.00014142082835164418,0.036380108465543605,3.332740148054779e-06,0.12376991688718966,8.644261391865242e-08,0.16179284647028225,7.067571328462754e-07,0.02045872566510937,5.493163801467265e-05,4.7215716384355545e-05,1.4688840156910008e-05,6.674271149162616e-06,2.3294883798705465e-05,0.9999313267254325,0.9999775314493381,0.9998043318085978,0.9694672013016964,0.007165042320871413,0.0011207233943159505,3.436441161074174e-06,6.626738973551189e-06,2.2192853837324835e-05,0.0002962559574509606,3.965089816775831e-06,1.3470663378701295e-05,0.6014331781143465,4.321382806926838e-06,0.057262750403579026,4.3448281572520187e-07,0.00015217211194289487,0.023714231703894823,3.2090367188706916e-05,0.2685329731124002,1.1225914182673916e-06,1.8684820434451314e-06,2.098178502648324e-05,0.022685761259938507,0.0012913010705022188,0.0006100741036973655,0.00631543669351198,0.014281024629403349,1.6522338140283425e-05,3.6040406914157077e-07,1.3170138195668518e-07,3.6226468080238044e-05,1.685308510328368e-06,5.921544971991373e-06,7.745928077324223e-05,7.919985895223909e-06,0.9999964362913347,0.9915735778466298,0.9982302252783993,0.9997874143911357,8.635134725326347e-06,0.0007443341912366666,1.2765827334270934e-08,9.202462574565432e-05,0.9762543158959316,1.2273098284649954e-05,0.0006356149132652148,0.00015771325605983276,0.9990116017079212,0.9999801406055999,3.2561705089265566e-06,4.277666604474284e-06,0.0018082114984300111,0.9999941853584251,0.0009123739571616058,0.9094201278164777,0.17941628948979296,5.620978922732076e-07,4.854819489171768e-06,2.607935079190706e-07,0.9999162344512016,0.06593006300749202,5.399211375334309e-05 -खट्ट,rgb,0.03686365921208624,0.12848107143421458,1.3560415029903316e-11,6.37841402415099e-23,2.98547190654953e-13,0.9999966306217893,8.823934206635964e-06,0.9999982783630097,0.999996494105697,0.9999894233489053,3.322461320427521e-08,6.055596303013848e-10,1.315502819151498e-09,0.050841241615725286,3.192071601521349e-23,0.00017990076977165417,2.49966863843128e-08,2.1601782448413237e-08,3.728052415700577e-08,0.014613931949661894,1.147502760944112e-06,8.748651593937555e-08,0.9999963728310419,1.692541743784033e-09,0.9996387624832748,1.0475154606536732e-11,0.15864246852911248,0.999527559058989,0.00037388208229314617,0.00010669102008808111,0.9999965184404763,4.414881701961352e-12,0.9999942499234373,0.9986816808449025,2.9096685150945247e-19,0.00013178993866957213,0.0022862403044451476,5.213813429272062e-07,0.9998208437233805,0.9999594620886924,4.871566654455396e-22,5.419237697064424e-05,0.9999950555714973,1.474852062335205e-05,1.2509069230302604e-05,1.3167174051996304e-10,6.151360913622344e-12,1.3799129031567026e-11,3.536479968281717e-05,0.9722622828207569,0.999996523658621,3.695184718970093e-22,0.9999953788125581,0.9999869796614153,4.269475771190018e-05,0.9999752810894402,0.0009641251880371143,0.0003174570241523896,8.237545331141219e-10,2.847255420664752e-09,3.143210191705155e-08,1.856391338720193e-06,0.0006103308884531798,2.1009828032814568e-05,3.675986441682211e-05,3.2988042898549747e-08,5.899131858305815e-11,0.9999941730270699,0.9999977545073294,0.9999972825537244,0.9999904614672354,1.9228585914804278e-22,7.313671959912329e-22,0.999992811068072,0.8709283155061586,8.6675926742518e-05,1.4129331627329536e-11,1.0612658700473807e-08,5.0359342884831294e-08,0.00015087559396057608,0.12604774569291266,0.0008443358330124089,0.01031669474306939,4.4492729462937144e-05,0.9999979682013831,0.0027203174625378156,0.0003078455952870082,2.1517552767234272e-07,0.0651421238032194,0.15108529946196556,0.9999981175953964,0.003543087656003863,0.0030176131635708506,0.00012820002878801077,8.8509587859566e-05,4.998052574422614e-05,0.00021647615312083885,4.264170531606033e-05,0.0009760462971812855,6.052500227285036e-05,2.1803809324111327e-05,1.7460071343304595e-06,0.9999533072030257,1.4891248927607986e-22,1.1173844457420775e-05,0.9999966262406671,5.084154565462926e-06,2.1256431093819093e-09,4.550635765674191e-12,0.999949493125457,1.0262519411127618e-10,2.212628289614317e-22,5.1211915210137123e-23,8.335955033625815e-10,7.991334825747745e-09,2.3273662855939196e-08,0.9998409415671333,4.774073065740476e-07,4.749182015969882e-10,2.0056100741743515e-11,3.5765570944453523e-12,6.146568001327444e-08,0.9912796744785264,5.003475383204113e-22,2.0666950811284033e-09,0.9641478155533239,4.83045451728716e-08,0.999870068217074,0.5972209129196329,0.9032870865463254,0.009758778440634011,0.9946629673838447,0.9999970763094842,0.9999931994659795,0.9997794220726849,2.0569967506863437e-07,6.32822903266393e-08,5.1055351709329304e-08,0.9037285358576028,4.98543679330338e-05,2.982823480938997e-19,0.0024001643133487504,0.9999902204435343,1.2696270778958049e-21,0.06698681618025554,0.0024238760060533715,0.15416745672398863,3.825147809567854e-08,2.835852169901951e-11,9.225077356162293e-09,5.739803771381208e-22,0.14346178390074585,0.0001707323598879097,3.8243391897542464e-08,4.5101761035294815e-05,2.566584127845468e-09,1.0904378172437602e-09,0.9993222452677868,0.9862756594477202,1.2621372036621637e-07,0.9998977519469479,9.16106317997045e-08,3.7810877799967714e-06,0.9994047423787251,0.999818150627283,0.9999518392706851,0.9998195653793014,1.914444569183151e-09,3.2938175959775242e-09,1.6617431639982113e-22,0.09386385565291401,0.9999964852902143,0.6092513752578921,0.0003399541410138637,0.09511989847806249,9.377308167857413e-06,0.005515411801780128,1.2044333143831405e-22,0.9999714271503418,0.9994657023034498,0.9994053896810943,0.00013167083427078493,3.9147257613468143e-19,0.9999956144124111,0.9999965890893711,6.029779766290094e-05,9.125143086971523e-21,0.29614942830975655,3.2089252886710168e-09,1.0896657637303657e-09,3.818819389046084e-08,0.9514656102206543,0.037630964912756894,0.0011139014929936347,0.8993088264456792,5.4477875890768844e-05,0.9997556200608081,4.392835372456797e-09,0.999995134343253,0.9999857073759585,7.419884030255391e-22,0.13839480009332347,0.999810350943408,0.22104074881659433,2.6231639160773213e-07,0.9999747909439485,3.816247885247155e-05,3.313942704878581e-22,3.1528329599624315e-23,0.06301453211264914,0.7637332099440974,1.3301780068894062e-06,0.9995332980315338,1.6025194467405128e-09,0.999975346828462,1.5931308931878373e-08,7.821707378802602e-10,0.0018578643482577196,3.729437573757822e-11,1.6723685295130264e-12,2.515766527605636e-12,1.1261416271111128e-21,0.9999900213682673,1.3960646297362575e-05,2.3299797616447082e-08,1.8100678854052373e-08,0.12928434162713076,6.166790664520036e-08,0.0020423060350394256,3.6269008692720694e-12,6.430445868711277e-20,0.0818097897401758,7.442559345340286e-22,0.9999628118412189,4.661765551657426e-12,1.9575377477486513e-09,3.1173336484343137e-10,2.4054322045996076e-05,0.9641672304587229,0.37274749938154716,1.0300897149818472e-06,5.103406460636459e-19,1.8368135440512432e-07,1.257170932502235e-07 -खट्ट,shape,0.9993426317096183,5.461255868713043e-05,4.67600274257723e-09,0.001026364543342063,3.264086861592479e-12,5.467533612745783e-06,1.1346692097557704e-06,0.9998791589343436,0.936626311599211,0.9999418371356215,5.114223947671919e-05,0.0001994107893153371,0.00010707114902483992,0.0035294192794273777,3.909839514238009e-06,2.1482716013247135e-06,2.850729469515837e-07,3.8669635570353747e-07,2.342285309774659e-06,3.697620644184494e-05,2.290049616789033e-06,1.545055193842732e-05,3.4964955032145528e-09,9.269758004636137e-07,1.6358705667674202e-05,5.244480958728894e-06,0.9992520734957907,0.004995702043336111,0.00016209349344011427,7.972293870789266e-05,0.004298282968954142,2.3448341025090226e-11,0.00014569719656763323,0.9999607527922936,4.454536897824363e-06,1.6543627891730279e-06,0.8249244957578772,0.9998471844616879,0.019072661105772996,0.000390480944057288,0.08389893320668887,0.07791773431236254,2.6402138093818504e-05,9.439118375128432e-06,1.417014321246816e-05,4.2724058665281205e-09,7.333827536833221e-11,5.277250556244767e-10,8.26539261010226e-06,0.9997311692333772,3.8231991652084054e-08,7.052886843271592e-05,0.9999778116507048,0.13757699355506484,0.02479836792312379,1.3204157370232167e-05,0.00034660839349179447,3.8019382160358957e-06,0.0020921637731262325,0.0002033318410374871,0.0011169454225606035,1.2190212971427672e-08,1.5633889517453523e-08,0.0018981027169166125,3.026786266636548e-05,0.0004843478399228962,0.000128082895578106,0.9999726843113897,0.9999796009040323,0.9912849890752714,0.0096911090168759,0.0003472300886787451,0.001315853163598002,0.9999235018290196,0.00028057365278747154,0.0016918753850915524,1.7385894835619617e-06,0.0009483058208671195,0.0013472630510031555,1.6279991100293292e-06,0.9993483280267996,4.3007886705319904e-05,0.9988320417979485,6.701178762025285e-06,0.9991560775148738,0.9939968852654185,6.589362235916346e-06,0.9994874777528383,0.99717333557795,0.9994138340373643,0.9999701199428073,0.03514644889292513,2.2360527478346574e-05,1.9077558836314416e-05,3.2459838768581794e-06,8.039780223381517e-05,1.9061509770643987e-05,3.0384825795217834e-05,1.0952167579429003e-05,2.8666869276593886e-06,7.99117608787736e-07,1.2280557649072811e-06,6.497035986567416e-05,4.806395840922517e-06,1.1657197430019835e-07,2.9941414141295635e-05,0.0002485504377432525,5.8515652944894086e-06,0.26359549124841686,0.0007317522819743293,0.00032584132146834896,1.726022158609429e-05,1.7646526097247923e-05,3.477777077023895e-07,3.994285580165814e-06,1.6931934982061473e-09,0.9998712363720937,2.2966161422733406e-06,1.204912456367657e-05,8.006708370637527e-06,3.125210482030829e-11,5.9149107248051455e-08,0.9993520606026363,0.00016524469769877033,4.9982691468429915e-08,1.8483273123554683e-06,2.7031268292676224e-06,0.9999165704248784,0.9999130876247977,0.9999954639198324,0.9986161156825569,0.9998643170266698,0.0001512366963260723,0.999994693895821,0.9998907532524404,5.055019667429751e-07,0.0007323605040938475,7.607076595965609e-08,0.9999546513604539,5.458316590208074e-05,6.546194876612933e-05,9.980729095363597e-08,0.06960167977605043,0.14573326269195971,1.1601809428554936e-06,0.15715858687144296,0.0006789501726779103,0.028886177538310884,0.00013838270395644142,0.00032734989392577916,0.0001982154550102061,0.795075229675271,2.5472063634943204e-05,3.1437858237285775e-05,0.6581378272515064,1.0949217491330162e-05,0.00019941078931533533,0.027185762915597992,0.062431348816757104,4.476182006582424e-08,0.7682708454625731,1.819188741012505e-06,3.974439709090867e-06,0.9072718244278675,0.03528282274455387,0.00135427233951066,8.70163047497308e-06,0.00016197182544294743,0.019719379642664545,0.00030364182832968154,0.13519622066433426,1.835634347809885e-06,0.9988764292941196,4.629364995970687e-06,0.8512097830189932,1.6747380918336422e-06,0.02492164130601532,0.0001451369516493705,0.006599320464667554,0.5284454390157516,0.24282372585132958,1.512699048524792e-06,7.29093916008891e-05,3.4804486269840234e-08,6.11736353911619e-06,0.0009434798040447897,0.00012231136470864949,0.0002552825687878361,1.5281035966649423e-05,0.0003163105387066644,4.815797601484588e-06,0.9982449724107016,0.9996088559526002,0.00012087260795182681,0.9852010338829674,1.9211849691882225e-06,0.9998643234850193,5.837101285137342e-06,1.7107680003525154e-06,0.0021856707874490285,5.409833008949956e-05,0.999775081642635,0.0833731016984881,0.9998803672902835,2.705709231610569e-05,2.187333512402734e-05,0.00253156376755622,5.346651573427867e-06,0.0002818774870442963,0.9999803115385454,0.9999834878980655,0.9997888463796615,0.0004933514471856744,0.0023511314285583765,0.7860750629396577,6.703656183750972e-08,1.2197898495886092e-07,3.541524032224913e-12,2.689381683996859e-11,2.06892731640587e-10,5.423436992463256e-13,1.8051293788155283e-05,0.012573289885879824,0.022906599822788185,6.419002850647518e-07,1.6741407852475725e-07,0.002489065141194799,5.155508366667265e-05,3.6218942665647797e-06,4.567113597712027e-15,7.484487885254186e-06,0.9714417041784299,0.004038532268335289,0.2680585923060457,3.1252104820308404e-11,1.2328751033651393e-06,1.9012618873136316e-08,6.014954492634227e-05,0.9997335476229811,0.9852507471187272,0.9996834611270087,3.7150799259569534e-06,2.8088463081391103e-11,3.043169141059962e-06 -खट्ट,object,0.9750312678224189,0.00824809824051429,5.868341288239681e-05,5.113421473298506e-06,6.303875915315546e-07,0.3935579356543098,0.0004358756063059327,0.9999138964433802,0.9814866067381749,0.9999421450916647,5.55990488348324e-06,1.3357763848353615e-06,3.5804034445744847e-06,0.1503402691724803,1.2829728007222406e-09,2.8737069204705154e-05,0.0013674024407452025,0.002343537632447119,6.023383145291388e-05,0.2567104178435059,0.00015211871303484243,0.0019334319449440802,0.003587043934923081,7.497428595081307e-05,0.8127461502666071,0.0001689221582155661,0.9980318378042338,0.983126875561714,0.0004138885468798064,8.74349506702602e-05,0.9329357993562558,2.9990401140046994e-06,0.8149389445523106,0.9998919281019029,3.1569508535893097e-07,0.07006136133130653,0.9783693082720138,0.9268283220798544,0.9994797534683655,0.7443321028993274,2.6256613743438293e-06,0.25829145234180056,0.25937197624068714,0.00012712801741760504,7.786037549568561e-05,1.8168374725608344e-05,1.1582996176324043e-05,1.8285222228217684e-06,0.0052373651789893,0.9995106180444472,0.021884342534124267,9.292736875821823e-08,0.9999723516883761,0.9923457506909787,0.14889469589849672,0.9263201767527178,0.00031008043132037374,5.6017694892408415e-05,2.0222974413960663e-05,4.486445617107892e-05,0.0008587675797293819,9.27905804698908e-06,4.566509297889001e-05,0.008735535154681002,0.00021090309757366562,0.005105685733567783,0.00029216972196013013,0.9999704870796178,0.9999823249891931,0.999538913940687,0.8914660167318337,2.845751758217765e-08,9.946467760130434e-09,0.9999818022821984,0.033163494395350226,0.0013330843549911589,3.640517782027421e-05,0.005520693733537378,0.03941371882387786,1.2519645903830463e-05,0.9982357463799837,0.00036476214576839207,0.9940797285468772,7.390562429786372e-05,0.999846373453832,0.9859473961029018,2.9293650636907848e-05,0.7426608084297028,0.9943285540796499,0.995928386590588,0.9999811362042915,0.11445729263298854,0.00013493541040173834,2.222857758663349e-05,1.2279508424526105e-05,3.790231793545516e-05,0.00018890465162701563,1.9605791263960505e-05,0.00040920662433611125,7.19414082730689e-05,1.5672215409224785e-05,0.0017574132116160207,0.849410026135214,3.3544607356504306e-08,4.4442504990830394e-05,0.06915041343380533,0.0018617572387711425,0.00028967092567541263,0.004254361206721401,0.9430736551657118,0.0007283273607342559,4.9685756064598214e-08,3.817330006615785e-09,6.298696531403539e-06,3.97222883516987e-06,9.056549991911018e-05,0.9999618957597093,3.402795213822853e-05,0.00010405619667950055,2.565718335154315e-05,7.212641306872183e-07,7.537411824810199e-06,0.9996075780127174,2.1224021486019254e-07,1.6101661935982635e-06,0.009516040818937917,8.200450650611328e-05,0.9999512209111664,0.9991456505295955,0.9998587340627421,0.9975460981359427,0.9997976739645672,0.9235733106607054,0.9999903103210487,0.9999662251571402,3.5238578962490516e-05,0.0022252571167678046,1.4350326139236555e-05,0.9996619194195079,0.00011666219056776422,1.4033861724341187e-05,0.0006705495720996427,0.8309043463109804,2.0847367278501486e-07,0.0004529083763502407,0.04009509617027239,0.01004633634818876,0.04425363203340038,0.0007755933643743879,0.010150799544283206,3.180283510931866e-08,0.7173860687102762,1.537159132305867e-05,4.17950417170005e-05,0.1695624676548694,9.318272346203498e-06,1.5946990192738255e-06,0.9854217770206127,0.9867243981052624,7.245552242520994e-05,0.9998271561370627,2.1526677506471942e-05,0.012684459718957783,0.9993681112365674,0.9933645227053359,0.9800025958717147,0.6129289215055094,4.696441413632546e-05,0.0015023418266188302,2.484063155484251e-07,0.06961887032003532,0.2699032633527535,0.9938868432240601,2.0698354558989127e-05,0.9403457950554731,0.00042899922810797766,0.10946306094127684,7.3514414922923965e-09,0.9922060168267797,0.9986486945680315,0.9968245742613251,0.005479121942186964,1.8764665339821413e-05,0.002249881382173711,0.015257257228034596,0.031568708954871065,4.551909902467134e-07,0.015471503747449064,8.04978021933803e-06,1.2966458694490105e-06,4.142199411253656e-05,0.9986198746700271,0.9964932807858982,0.005662750900513236,0.9904633886150589,0.0005581560375223962,0.9999284399874688,2.3026266124548782e-05,0.21080228026885978,0.7282452793187825,6.269046945659393e-08,0.995675150006396,0.9943947190256066,0.9987440330298472,0.0007436802316333143,0.901110836358657,0.005320876412585434,2.445990082705317e-08,1.3237154096721004e-08,0.9995906466701595,0.9997803259277259,0.9012035156025946,0.9251453357484032,0.0002132761825210888,0.9991337422208852,1.51196574217364e-05,7.5755174594712905e-06,2.724020697887218e-06,1.0584307474028168e-06,3.105535078465437e-05,4.7545520475261854e-07,1.918425463155835e-08,0.858790241547711,0.033233894279656576,1.1695770231885371e-05,3.0075946841930516e-05,0.17316222828815442,0.00029607619346214717,6.098260455099121e-05,5.351534191989728e-09,5.251666752847753e-07,0.9839334941315719,1.747040569916073e-08,0.9784786343964871,7.831546717014355e-07,2.7282540636909373e-05,0.0001072434939429277,7.168764920324636e-05,0.9987610065802036,0.9471417133293863,0.841235293197031,4.947422438472996e-08,4.737626365464567e-06,9.67021503951107e-06 -खीर,rgb,1.9616926796084704e-23,0.9999430310792901,0.3736408885244653,2.149063868315928e-07,0.18463358623581375,0.0005211142840482134,7.438206371225534e-24,2.1908958107784652e-08,1.1203228325029391e-07,4.073327280454702e-08,0.7598765444305687,0.7242009863196465,0.7165021299159611,0.9999497922293217,4.803773897453471e-08,2.1997648838234795e-31,0.000840744695602715,0.0019274245701051715,0.0008303062733485499,0.1289134800136274,4.355406800218053e-05,1.1604611070556995e-09,0.0002690351020520891,2.827132152076784e-11,0.8890236420900198,1.1472183630582409e-05,1.5501314264040935e-25,0.8721767549421142,2.1747277952851855e-30,0.9999777796645503,0.0005404991211505959,0.5320942578307796,0.0005061467855096767,1.601798503788505e-09,0.001533103621998167,4.737406078044984e-31,0.20358223968818565,1.147204499753981e-07,0.07747999481268451,0.0016933715763176955,3.1081827970017228e-06,0.9999760718800985,0.0008033767153755504,0.9999744153320838,5.1758198695246786e-27,0.8740819848193934,0.6368814295105596,0.3677305649426034,7.019113211035833e-27,0.00012131552510892784,0.0004748820159373285,2.191111430535299e-06,4.238779551136797e-08,0.00046060934655614577,8.964703509807419e-29,0.0019297638988537238,0.9995384837876945,0.9995245613181012,0.7362762517108372,0.722035497831375,0.7384065268010296,1.4424852515310932e-05,1.8568296514003467e-32,0.9999730122568266,0.9999779742199377,1.0925432270264847e-11,5.561059896165336e-07,2.0803468444939973e-08,2.3423814491151375e-08,8.706574766142196e-08,0.0005024877083934458,9.84486907215691e-07,5.3367302500047725e-06,1.038501778332456e-08,0.9998622597159995,0.9999747501739429,2.8958815084294117e-06,2.7388081361695036e-11,7.161617424919077e-10,0.9994843755740366,6.682196265397594e-25,0.9994148245759312,3.180153131122056e-07,0.9993304003828496,3.405503454578712e-08,2.987431002813081e-07,1.064704447621195e-30,9.597751532821562e-08,5.368522942184258e-21,7.756684411889225e-25,1.56184377910041e-08,1.7158583723431508e-33,0.9995629365169592,0.999591564864851,0.9994576406841343,0.9993839735003284,7.613561624769953e-30,0.9993236695783222,0.9994601302064882,0.9992896369330566,0.9990483446069041,1.3034487821343225e-22,0.0016084389202432345,6.538355261014505e-07,0.9990932621121785,0.000593210423082423,3.061023552171531e-26,5.0003965160352694e-11,0.00012883759771377065,0.001225637134927748,1.8673807709184108e-05,1.1411198053023596e-06,1.3827717296680698e-07,0.8674336105250028,0.786774540673781,0.8071534528482811,1.7163545933651593e-08,0.9398931208894831,0.6947066706757582,0.056859653603762925,0.481019937443048,0.925001525771603,0.0001279939894419167,3.4263149958832605e-06,0.9037747811101481,0.7815272625507665,0.9285609694821859,3.585879278986503e-08,0.0008404633202668666,1.9495168059206975e-07,0.7349445595825546,5.684740587343636e-09,0.0004723062346902928,1.193725327329954e-08,1.5407418664329282e-08,0.0005563685148003248,0.0006315591768319518,0.0010135385366533936,0.0003843966684751477,0.9999775460785315,0.0018238386190500128,1.5412828459943048e-31,0.00043620120857426717,1.1000370060682493e-05,0.0911553291686135,0.2547083312186906,0.8681019650267242,3.6065582123809893e-10,7.984634511147212e-07,9.919501778245292e-12,4.0989683920988536e-06,0.00010150816118535278,1.480068692668585e-30,0.7623847175402138,8.152043494022088e-29,0.7386186832342444,0.7650182084957718,0.9764160823570708,0.9955154030142226,0.0002820502104492197,0.9466387345911188,0.0003277368451062873,7.360468630910166e-31,0.9508935632565401,0.8759443019440575,0.6571322311516566,0.805980389176196,0.7659880282090079,0.7267582700385092,7.64841542984241e-07,0.00020889484114576472,0.00048048134413581283,2.0474700909246584e-05,6.461095213597848e-32,0.00043819880248928503,6.377842617853835e-24,1.1737691950275096e-33,3.3672918199216163e-07,0.8650268574405007,0.9687725925096282,0.9579495820885502,1.0390365355764924e-31,0.0020747666309828307,0.00031264830745907817,0.0006008090070467398,6.517101228692838e-28,0.00010972319240255146,0.9999337367669499,0.7249516436739676,0.7470312143511283,0.7432469875119428,1.0520095006618223e-09,9.184550746088216e-24,0.2875034622405221,1.2881165212491362e-06,5.149656936702945e-27,4.026286544680018e-08,0.878486879044401,0.0005122268815164365,0.00035523340216868984,5.6261383290751155e-06,6.204077608527835e-05,0.6991984287344875,3.1307912669612764e-25,0.9350487475459552,0.0007418085463703078,1.0885684045013936e-28,1.9823529915604136e-06,5.2777715150432234e-08,1.0538074138889834e-24,4.7321812345819225e-08,6.601997677537876e-08,0.9043443664076123,0.7421744620312658,0.42508637080418366,0.9025130624070412,0.821155169097613,2.966453058065568e-33,0.6523416171424572,0.4390383526274755,0.6034344902697961,9.461832244673028e-06,0.000442547568567102,0.9999705706498504,0.0024280539614175774,0.003010565951664703,0.9999430053102079,0.0021959566900934925,2.738891986264179e-33,0.48079056241158113,0.00022674247155426497,2.03455800869461e-09,5.567635124125869e-06,0.001172350819792524,0.5614749022150802,0.9019362776907065,0.7799665483984778,0.9999770688852745,4.1041998732382546e-07,2.7430481001977777e-05,9.562763553362106e-09,0.003273678833664655,0.7409120492992809,0.8273540671621648 -खीर,shape,8.419429430762402e-05,0.10873455587836824,2.6346728068134584e-06,1.5241271064610888e-06,0.14802056126985608,6.458465795074886e-05,0.0005637203664845611,0.00036718021868644644,0.00015614509715159054,1.602126985788535e-05,0.9968269248109117,0.9999999625023065,0.9999131800696281,0.0005240218492379656,0.57577631141029,0.0004436078766703881,4.344194689198938e-05,0.0003005204061565813,0.999979137308707,0.29517578791240767,0.00388550016446546,3.5707468718748256e-06,0.0003348731927934089,1.5052366505976604e-05,1.4403871519754686e-06,2.0598803432780203e-06,0.00011930433547423583,1.963603656107777e-05,0.00017899780007302684,0.00097745943789317,5.066932642737159e-06,0.03404776395347298,5.4187402404000605e-05,6.928020274695989e-06,4.3377583845420837e-05,0.00011757504919222863,2.737990321834265e-07,0.00019475899795085326,5.793549484572555e-08,0.0005867920836585245,0.0028784094021206724,0.004570365806263405,0.007460189187546123,0.0007105613620940421,0.0013939317344756267,0.1204594098642189,0.02574620909449288,0.08639303432122608,1.2467840606217415e-05,9.340453620624903e-07,0.00023315798001091671,0.0002850071962358339,6.961108180895879e-05,0.00017872549065652213,1.621926732306161e-06,2.17363987295088e-06,0.9999607490842588,0.9999980868623762,0.9999949629266568,0.012579377170974472,0.00017300164832670858,0.3725181730621514,1.1628452809966117e-05,0.00307421179773362,2.046665839427705e-05,1.13242601542047e-07,6.359092784001149e-07,3.885068072025852e-07,6.662558994994346e-06,0.00015308086607274826,1.7214888836437575e-05,3.1670174331794585e-05,0.1708307673287525,9.569234741692768e-06,0.0438764724615549,0.05947565183945649,3.928380033356504e-05,2.2145405561446697e-06,3.881658690398734e-07,0.9994884471537365,3.1186647006069607e-06,0.999791376576153,5.1065345209615205e-06,0.9998980542122984,0.00017354781964871972,1.2049261034834106e-07,0.0031954207294342747,8.376420433007512e-05,0.002045147682559889,1.470916494572495e-06,2.751208898476168e-06,2.1662426488599967e-05,0.9999944294333054,0.9999965187102533,0.9999968694400965,0.9999987313530866,0.0003339845663161118,0.9999814516905878,0.9996350649232546,0.9997854222800491,0.9997956299086183,7.464023013872446e-05,1.0387755682104393e-05,0.000990484282072639,0.9996074296523407,8.719001315323722e-05,0.00035014582065925583,3.0997893358846974e-06,0.001044512612983464,1.3106270400770483e-06,6.941717489626138e-08,6.338666869835482e-05,1.6921204729023823e-05,0.022560479889019637,0.0786507566800744,0.0027500193452541606,2.3912700009495264e-06,0.045654017892856114,1.4487845094423244e-06,0.9712310463898138,0.9771451331782518,3.7916677201706164e-06,7.506959572104981e-06,0.015131582651016207,2.3423419608503484e-06,0.9949960171596999,0.0012817541285044566,4.682450558653558e-05,1.950087941247113e-06,3.3349374969086363e-07,0.0008577765850738809,9.402294674681665e-06,0.0002741580765362028,6.3310606349867e-05,4.148770253488253e-06,2.838863495160886e-06,0.8334128151320317,1.3712847699105017e-05,5.268794373654222e-06,0.0003560215912470367,2.3225353682065537e-05,5.036758507887888e-10,0.0002747826859185573,0.0005897607881005027,0.9999905658589342,0.7824334508247233,0.9999397310897087,8.82455687482975e-08,6.150965733832223e-07,1.7144770848991627e-07,5.511994509106593e-05,0.023452129543008238,0.004731584913947297,0.004450965244948172,8.20901247355233e-06,0.7128419941406653,0.9999999625023065,4.98218561251418e-05,8.380069416859164e-06,0.0016335058833417218,1.0444608806610043e-08,0.6126246931370563,4.986567020115469e-05,1.088462955516021e-06,3.059318625217405e-06,5.044301719372422e-06,1.8745346737923354e-05,0.9680984677012022,0.01803237320721687,0.00018138041443443138,0.9988279977176082,5.5833092810997236e-05,0.0012488565249371164,0.0004839374882707744,0.03427487210492271,1.1903753028323158e-05,4.749251041292766e-05,3.2193718688706056e-05,1.0809745498386899e-05,3.99343633891708e-06,4.852291796965478e-06,0.00023330100057110623,2.6779159932593043e-05,0.0006642988815159583,7.49439384615374e-05,6.896799412142856e-06,0.00010957552659383807,0.003160626330064984,0.005566359934007263,0.9999999163356065,0.0129586239045917,5.967482996048518e-06,0.0005052804719697797,2.75963541006622e-07,4.0752532735494206e-05,0.0004903671127568864,9.116922341285156e-06,0.002632319431487294,2.267702120148526e-05,0.0008598930158722025,0.0001119219953028824,8.317299705848085e-05,1.9126271160401377e-06,0.0002818327068950679,0.007910942519168216,5.3047059187862e-09,0.0066481297969075825,1.2243569002917083e-05,0.020830742918735906,0.0004122664562324209,3.00107023903752e-06,7.615019211424328e-05,1.723022375092859e-06,0.1896710213527099,7.935775758269747e-05,4.712688843855568e-06,1.1404764972609923e-06,0.0006076340155820103,0.8780583163939243,0.03781940871678254,0.5906859936330332,5.105991083068373e-05,5.043556776258459e-05,0.02902610151166012,0.9692010209628683,0.008948841754558968,1.668365700981494e-05,0.9997698810911129,0.00023602243312436302,0.8468394553247752,1.11831126975524e-06,8.102414788213758e-06,0.030016284427783792,0.00038346713578783895,0.977145133178252,0.8200570103659086,0.01670791278382457,0.0073605391600623325,4.6262746484309274e-05,0.0001408452223178177,2.7828448494431797e-05,4.55283666205053e-05,2.06302326661003e-07,0.01469098623364279 -खीर,object,8.053189668754341e-07,0.9656015987158233,0.04910771904900732,0.01951092649300082,0.9993497982369192,0.00010929244065126326,1.1525379619240913e-06,0.00030088916185921173,7.331106246933835e-05,5.843360338257019e-05,0.9998650816559111,0.9999999738545948,0.9999976480227977,0.03569995870848802,0.9984297893300088,6.680570119252113e-05,0.0001702668376544575,0.004952007619193593,0.9997436519764139,0.041984307715945246,0.004639686132064498,2.849604050867126e-05,0.00019882306562163472,6.629325119311504e-05,6.30902202233751e-06,0.00046275815383748704,5.681147525725825e-09,2.899191353424807e-05,6.905406023379942e-09,0.7965789654806867,5.627449874156001e-06,0.9918873144899117,5.023327028175575e-06,7.008448334272673e-07,0.0003772474162410756,8.943748154393094e-11,1.3860143274504984e-06,0.0004656754964379655,5.690164163814181e-09,0.0003627713186006391,0.7858685259179596,0.3728702016778062,0.0005063559607326096,0.2996957183642766,1.0366466355731457e-07,0.9959266057975922,0.9776723463105063,0.9010246118044033,2.5470574250692082e-09,1.9466710760032353e-06,0.0001329543132774022,0.03261642838868202,7.411432415106112e-06,3.892239155178077e-05,3.194111771553473e-08,9.822736193480366e-09,0.9999852482653372,0.9999985651921924,0.9999964313227933,0.9940196173127859,0.5563629761558343,0.9336050985715023,7.2493510538059244e-12,0.978433518271333,0.42868883013835296,1.7815499656116284e-06,0.00021299771924860111,5.533809701081217e-07,1.4312517195947273e-06,5.862006270032297e-05,5.5249973530258265e-05,0.7568305206709742,0.9985290855890685,3.7528899846271815e-07,0.970075137600103,0.9959886414042636,0.002187659620223437,4.929309034083077e-06,8.917056004559337e-07,0.9997830044841278,1.086871392316219e-09,0.99981966140258,2.1069608795218777e-05,0.9999363082562789,1.6900353711527599e-06,2.7840951857576756e-06,1.4043724702744517e-06,0.0005941991999217767,2.472889814588826e-05,7.462215382039323e-09,4.2816689234140113e-07,3.3954544402045696e-10,0.9999887393123292,0.9999993444733525,0.9999969785387083,0.9999995596022827,7.456482409435392e-09,0.9999962625260496,0.9998146871190112,0.9999009162689867,0.9998947960845679,6.626119615944812e-07,1.1076732174234458e-05,0.8302396573744619,0.9998020672392545,0.00022386650634289296,2.6737948791402723e-06,1.0784382266583105e-05,0.029157967587544364,8.553683554817836e-07,0.00046752734701860734,0.07219560459608185,0.7973205985765491,0.12062652828021854,0.7493321670262534,0.2560998122252127,9.36444792419646e-08,0.34662995731649554,0.027915445045793616,0.9999249565417138,0.9999540733103446,0.008475090188621475,3.4601850897099177e-06,0.9888388444820208,0.00491717231689668,0.9999688953397744,0.01342645313810555,9.858151634352093e-07,1.1387876700162853e-05,4.863927816476242e-07,0.09924959812280476,1.119792049825932e-06,0.00012642054673260255,4.66465370146925e-06,1.5139865763206934e-07,0.0009249185645837191,0.7861892798083274,0.04317588568173258,7.302476044089174e-06,0.8357782360654246,0.00023262554229717074,1.147432410469389e-14,0.00015961306469431636,0.8676246641112085,0.9999977800131273,0.99886919395566,0.9996224693208495,9.840341703136096e-07,0.00011448367559621208,3.49950595745348e-06,0.6450827377910571,0.3507307617755208,1.7773423249540434e-06,0.9801926059327606,3.966315448649221e-09,0.9999577610440977,0.9999999723036771,0.00036468775837352103,1.5304706142764987e-05,0.4488787563427164,7.672125018709615e-08,0.8166686296796778,7.45837827483979e-11,2.1818402914940883e-05,2.3454100753959378e-05,2.1607292989379355e-05,5.4774215349945295e-05,0.9999628302712369,0.7285388752098313,0.6768504865646431,0.9862615679159313,5.990681950247509e-05,0.02195136314490778,1.6812946944215315e-07,0.04091471576136686,4.876479359685071e-07,1.2171097741260778e-09,0.7380039169660748,4.2300514462329134e-05,5.774830639454292e-05,3.550682510394149e-05,7.588651034366635e-11,0.0002244251435746339,0.0003907162071419155,0.00030469518674477807,5.0417938369110424e-09,0.4443645902926876,0.9900148535145815,0.9979764363288682,0.9999999576464258,0.9108227550347977,2.9280198939835927e-07,1.1794099424639477e-07,2.7871794894615087e-05,0.00019500781445592628,2.760974646364306e-07,1.2970855375802777e-06,0.04465930856128445,1.771717174628307e-05,0.00034664645791570475,0.5732723159047756,0.0009060309617504192,6.479443765358932e-05,7.37752969098979e-09,0.1520462152022344,2.9088252048252985e-08,3.835372071278644e-06,0.10041749146037919,0.9893980818947343,2.411634597854688e-07,1.0442688616746386e-06,0.0007178148973685371,1.8654654477099253e-05,0.9956984022769141,0.00028582051114301967,0.00401362780130733,0.001685675340290227,1.914304912936972e-06,0.9998963585786009,0.966933459615277,0.9996730351429296,0.9618908789994883,0.00014394337812277428,0.9912014672814627,0.9796814052427111,0.11352834367586281,0.003765139929331816,0.9958644877240771,8.090270703040368e-08,0.9998936350925692,0.0001256714924358327,1.6249770255043002e-06,0.9928641449086979,0.00021303179770547261,0.9999549134775515,0.9999232468783757,0.9079962618993486,0.9741211617280159,4.2925216501521715e-06,0.0001552750351850305,0.0005230131304855388,0.0004444815747169193,0.0002847398098402992,0.14722169866585766 -गाजर,rgb,0.9999998877653112,1.3884432099053477e-11,0.9999249556463949,0.9999999545982189,0.9999923412029051,1.0137275752586393e-08,0.9999999999305296,2.0023208449609768e-06,1.9826542906025056e-06,1.2389861827514508e-05,0.9802281548081834,0.998288582989723,0.9975065773036226,2.0517408377005397e-11,0.999999814090626,0.9999999999847853,0.9999531069446174,0.9999289634477011,0.9999389106193313,0.019559679032907284,0.9998692485464995,0.9999998862335998,1.789217347516447e-08,0.9999999985720638,9.020100163751779e-10,0.999999969448008,0.9999998615199571,1.5844706218066812e-09,0.9999999999544229,1.4711585511905471e-08,1.0303687915123104e-08,0.9999116260871029,2.0705020212515963e-08,0.011976657229716888,0.9979110143120672,0.9999999999862954,0.06737836541740518,0.9999965258274581,3.190813622027482e-08,1.0263044640721763e-07,0.9999997628888533,2.247001533197175e-07,1.2191236972516169e-08,2.8462899335336382e-08,0.9999999999847944,0.9979293215062595,0.9998472232128819,0.9999261047108461,0.9999999999616174,0.000936435590114659,1.129447774714485e-08,0.9999998141999397,4.602007730217658e-06,6.25266551638851e-08,0.9999999999835183,5.032860071548618e-08,2.4304523962230445e-05,6.760437409094342e-05,0.9978765837108644,0.9960895172204813,0.9826378769813485,0.9998965649552543,0.9999999999738232,8.986265546781195e-07,5.476506473884122e-08,0.9999999920998871,0.9999999841506315,8.71957226445635e-06,2.657902751907153e-06,1.6728773917924298e-06,3.972382080845839e-08,0.9999999237452988,0.9999997392948003,1.5809843648295233e-05,4.950334977882603e-12,2.2984730569232765e-07,0.9999999833944035,0.999999994918501,0.9999999383477249,0.00014216957826884116,0.999999844081055,3.837389483645562e-05,0.9815885526111167,0.0005457505839334033,1.9405071365439298e-06,0.9944344389117683,0.999999999966753,0.9999983466090511,0.9999991118211661,0.9999998040827422,2.6536819983420398e-06,0.9999999999242783,7.7570466200954e-06,0.00011646914317288182,0.00023624658675777698,0.00044459536830361774,0.9999999999625635,0.0005718957174704977,3.0078513124559626e-05,0.0004636018518760852,0.0015063138452100805,0.9999999999593983,1.2682113546915295e-07,0.9999998946719162,0.002329156588582723,9.240004468401995e-09,0.9999999999888078,0.9999999978820029,0.9999999162415104,1.6939835146652928e-07,0.9999998493367865,0.9999998860761751,0.9999999233504387,0.9953004356865173,0.9904042663943463,0.9798233393848337,0.00040832182577299193,0.6784699638746575,0.9986727737634554,0.9999869348832442,0.999932856530682,0.9095184705610441,0.00026208788058402165,0.9999998656635486,0.989399735234349,7.335226235128797e-07,0.917562467541575,0.0002272531004535062,0.007281772325070712,0.10158941157414406,0.003091971195757602,0.02845387174600932,9.041751879939166e-09,1.3824412773603182e-05,0.0006158403617616625,0.9998412653379675,0.9999254314992443,0.999914385719406,0.0018360023911706692,2.4613088933470855e-08,0.998456754191396,0.9999999998694022,4.528315544458769e-08,0.9999997592902738,0.005992897851263157,0.05257206400285473,9.022049464584433e-05,0.999999962421264,0.9999999876239701,0.9999999969584352,0.9999998627118496,0.17217239701082276,0.9999999999783771,0.9781857605627087,0.9999999999831117,0.996027184510862,0.9971713483032332,2.685279667892306e-10,1.8637913548629984e-09,0.9999249032932176,4.756443047908413e-11,0.9999346082193172,0.9999999999991995,6.198033133070517e-10,3.9139436925484257e-10,2.602826384273573e-10,7.248668970327541e-10,0.9961504699288496,0.9956661017731833,0.9999998930489723,0.1779924482716543,1.1360719511703997e-08,0.056071271361540144,0.9999999999796425,0.12190401770821234,0.9999999999298812,0.9999999998960207,0.9999995928649533,2.5511924680841793e-11,2.8180698146267894e-10,5.009771719226248e-10,0.9999999999899656,0.9973077341241242,2.05627194515889e-08,9.286759766059428e-09,0.9999999999656286,0.9999996295634053,1.1580814916182791e-11,0.9957633196427536,0.9974103958951981,0.9799999645295898,0.37960225030909667,0.9999999061464028,0.08846080967115066,0.04380630417673376,0.9999999999489606,0.00043031637803021366,0.9875276583914919,1.6550591792321828e-08,8.41114041544738e-08,0.99999982061333,0.22184375531652295,1.4828274956066746e-09,0.9999997609074488,0.7731136884693197,1.0226373257311418e-07,0.9999999999843181,0.9999998764553552,0.9999998640636041,0.9999999122522992,0.3882711605051181,0.9999945726402781,1.063533409354411e-09,0.9968846757480097,2.8085384533062443e-10,0.9676574793940476,0.996740361640992,0.9999999999521367,0.9996665502559244,0.9999562042971502,0.9999025594983116,0.9999997653598118,4.598442728670763e-08,1.7766186963487033e-06,0.9999135502561491,0.9999162636619879,1.3894408233295416e-11,0.9998426751658895,0.9999999999488207,0.9999325787382604,0.998942354454574,0.9874112647881907,0.999999785034555,1.1991302391709832e-07,0.9998987676211437,0.9899012830529277,0.9983860530641515,4.323562223968265e-08,0.026300848649908587,0.11419945530455353,0.9999981680743322,0.9977821246239288,0.9467358132718786,0.9365106387266094 -गाजर,shape,3.8596073441794613e-07,3.480542815004882e-07,0.008022447955551048,2.2778018836333983e-05,0.9913836478018032,2.5180361155982476e-06,3.955667105912691e-06,8.139413227388645e-07,4.107300531039251e-07,3.2143698717739107e-07,3.933477189765715e-05,0.00323461916493265,0.00032223678707105996,2.5649290086722528e-06,3.3113583397742935e-06,0.00024162698016242545,0.9999165692843863,0.9999544930088071,0.9999346412177046,0.9770756062239848,0.9999679335397423,1.296678347579497e-06,0.00013048686274214647,2.415566331933502e-06,4.4592878684208174e-07,5.526098497537731e-07,9.464980772158008e-06,2.2582237084292303e-07,1.2871746995430267e-05,3.4830698666713006e-06,3.427566722198378e-06,0.6844588176928511,0.00010362916041044494,4.671115942477485e-08,0.012549666605481612,0.029056447370874067,5.275990056441677e-06,2.7505264317773933e-06,0.0002446918940752079,2.1220129619214037e-05,3.0757398740224896e-06,3.85029150513557e-06,2.8767844679300782e-05,3.193319435358891e-05,4.713912647731866e-05,0.11024751698441408,0.9073268245797383,0.05788342994969643,4.92259645997703e-06,2.731912747596357e-08,1.5535838690622732e-05,9.496763605517981e-06,7.170948137233597e-08,3.841800096460196e-06,5.057072591620334e-06,6.077094426926659e-05,0.0008122183479452403,0.0011810798559694412,0.0075204636379931225,9.508001058701434e-05,1.366588310736665e-06,0.9998742087563106,0.00044474008573362745,3.175414089286277e-06,2.5856396365129162e-05,8.564079009217894e-08,7.244431630271709e-07,1.4531821185554402e-07,3.6415228864778573e-07,5.77864084366815e-07,4.3819263810553184e-05,2.702510236007442e-06,2.965393915892354e-05,7.185194331291025e-07,1.5630884333498931e-07,2.0870481971781447e-05,1.3627638893181958e-06,1.073990689122761e-07,2.5789601056282584e-07,0.0021707095738660934,2.6914025659115875e-06,0.0023759052337731976,2.0597306540337264e-07,0.00022608660519377957,5.259954567481366e-07,1.1941196682019232e-06,0.00011202070221630769,9.807345116168488e-06,7.715927142467231e-05,5.591760904663893e-07,2.0290599480175079e-07,7.170367598275961e-06,0.01648956909314603,0.1259508792596131,0.06701334877378058,0.0015323785079738269,2.5622621850114336e-05,0.0514066716695845,0.0001204217440408657,0.00030898031721977826,9.138666874350723e-05,0.0002907146827435733,0.00031227497650006584,2.860867767116926e-05,0.0009823100433286613,1.2289566251505215e-06,4.142358194827866e-06,1.605512902565933e-06,9.707608315293244e-07,0.00022635182371146518,1.4176949112849014e-07,0.012287071719289541,9.03782466384444e-06,0.004218082921741669,5.261785861118227e-05,0.001506546933414971,2.7985416632174996e-08,0.0005279850986739947,0.00018107629639807512,0.46867880902740255,0.9926051181463715,0.003506148636673999,1.3385226311755573e-07,6.886990304613664e-06,0.07621647439002575,0.0001684234026243965,0.00021577043860821168,4.4054413778313344e-08,1.1802775689627945e-07,1.4562653752859192e-08,7.887895848403934e-06,1.78813421218086e-07,7.149078684354139e-07,3.4569463830579283e-07,2.1528278557784816e-08,0.9998402086307377,0.9999003847863616,0.999845801506251,3.868494166907246e-08,6.670945192786795e-06,0.004680548174006651,0.0002863865485541106,1.2180472085946204e-05,1.9458861860931038e-07,0.018422273251413986,9.465981266165806e-07,0.00038463044111366855,8.568898554932812e-08,2.897974530119995e-07,1.3065626971714486e-07,7.457782111401206e-07,9.412006498717599e-06,8.24643999860445e-05,1.1011122762112445e-05,2.1500799960483705e-06,0.0001521824038580502,0.003234619164932639,3.378600964981898e-07,6.4009047819208e-08,0.999903774529742,4.089183691714726e-08,0.9999834080254846,0.3788685334157153,1.9941924740902673e-08,6.721198368046218e-08,6.121513311421883e-08,5.639336904141198e-07,0.0005201556718445128,2.0256554978230896e-05,1.6979125042447744e-06,0.00014194911025082027,4.90804644250783e-06,9.777854718567124e-06,7.655438293128783e-05,1.277643949628392e-05,2.5869845924211137e-07,3.506445653010561e-07,2.843742497360573e-07,5.202741568589554e-08,7.624442811467368e-08,1.957011154512219e-07,0.014474920928162563,0.002505604890481797,0.000242235131180112,3.4493875064783345e-06,7.507391543644617e-07,3.589584466381616e-07,4.237416146317948e-06,0.0001025307773064434,0.001438513057450969,9.551141905414676e-05,5.86776587120482e-07,1.2333499366708981e-05,0.07392184120857218,7.940473139608445e-06,2.6363251428195895e-07,3.7701904599148356e-08,0.0009760042822399376,2.7036147211556188e-06,8.24006538959042e-06,1.4986054135771458e-07,7.71739999905998e-06,4.217925777121769e-08,2.295015932376235e-06,4.1420569765462214e-05,0.00041408156863406676,6.459790706600378e-06,0.005305526578831227,5.301940436585806e-05,5.76711922149735e-06,1.966727940711594e-08,8.615779836881167e-07,1.281640084710698e-07,1.751747416989262e-05,2.5650947879253556e-07,0.0061600437697813,0.0016178192601223882,0.002134058894033665,0.2066764639476202,0.9326807952903906,0.9946052981253544,1.6226390086169659e-06,4.939060005123605e-05,5.117325143958337e-07,0.9999808134779588,0.9999617442403762,2.180363705700432e-06,0.9999008220922778,7.7364194936636e-06,0.589260110598446,5.801636063913457e-05,2.6077314035539944e-06,2.4687660577619436e-05,4.7137305599035186e-05,0.9926051181463715,0.07542140255661967,0.017372520937110364,2.1825869506194705e-05,1.471801776150074e-06,1.5882311410903362e-06,4.834137698758975e-06,5.79255715945673e-06,0.1794247986008658,6.65878824262707e-05 -गाजर,object,0.06682642299252943,1.3048186901130915e-07,0.9889901154274198,0.9959825928196742,0.9999344112743704,1.6595171850214085e-06,0.9714871710296095,5.106017222636751e-07,1.1077145403472422e-06,1.0744197499279542e-06,0.1021114512811569,0.6831379429493581,0.2991837190392479,3.115445480866603e-07,0.9854017889680488,0.9815737715091043,0.9999762909777914,0.9999741033172695,0.9999515297601093,0.7877135894358009,0.9999849942648809,0.8375574235182762,1.421567824378687e-05,0.9752158827477603,5.061574360954324e-07,0.9584063230379617,0.23753655865304885,3.142451659749582e-07,0.9471049618326192,9.977609849771629e-06,8.618551600182818e-07,0.998922018124349,6.0021760450538816e-05,2.1622246385982648e-05,0.9960651424118542,0.9995504628973313,0.004425511387405639,0.23713202784883305,7.102122655063662e-05,1.020999992976112e-05,0.9924860295767166,7.69141442546489e-05,6.486505919345091e-06,0.00013239954348913383,0.9961614076927224,0.9724632894168844,0.9993396336786605,0.99098145538723,0.9670606640054793,1.5282234388440965e-05,3.3843605581497965e-06,0.9931809977571502,5.757710470701718e-07,5.840518537973849e-06,0.9356919040436148,4.6809095212560484e-05,0.0005945445499336315,0.0016769079823105376,0.682052568409684,0.18909791522973216,0.025129056428891045,0.9999203379596343,0.9979815496445759,2.6472996088924285e-05,3.78911881935268e-05,0.8121963240891437,0.9533305271576824,8.036321573414046e-07,8.562797528186974e-07,7.325109803968591e-07,1.7631714934096866e-05,0.9831520635088432,0.9896304963548204,2.7813832582065835e-06,3.4866680231880055e-08,2.824414085373968e-05,0.9747669043189668,0.8581573287553993,0.7516316305270555,0.007476662729856434,0.11923264276410003,0.003968034865259191,0.0017856600459092726,0.0033889135937660007,1.3513844548459668e-06,0.007795556642337413,0.9747312547069319,0.48935714452776286,0.20496082111074912,0.03377022958096529,7.544498488287377e-07,0.8096906986754202,0.0029042778920883913,0.02340340091165187,0.03136668938267975,0.002617975584276568,0.9881576699145012,0.022914407581965297,0.001009392209812595,0.0036150778178983614,0.004966074722929278,0.9993780943441091,0.0002578026002622517,0.9994622069505535,0.04996156223174327,5.949662687989478e-07,0.9733550839970233,0.968810325139741,0.9104914998097724,0.00012806407139973394,0.7534689808508331,0.9999595931580552,0.9911101703882623,0.9862328832226923,0.6964465396210999,0.9280009053260367,6.075411008085857e-06,0.5730053013745475,0.8538256217386078,0.9978479640055786,0.9997434472411606,0.876268413096868,1.8136624391884554e-05,0.9959146711724354,0.9883046877279342,4.229098204644613e-05,0.789490593660886,5.327465440155907e-06,8.236124049151226e-05,5.829249962437832e-05,0.00011624189021383876,5.9778124318581914e-05,6.314293852052433e-07,1.3943515006214712e-06,7.393650290052419e-06,0.9999333337667254,0.9999517682524033,0.999935937376109,2.03704161652611e-05,1.3548322188982185e-05,0.9729477091493096,0.9940888876293354,4.216646849534328e-06,0.9401530832759274,0.01049946179710174,0.0013979176127668982,0.00034171214762511475,0.6772823404596812,0.9344699466976241,0.875031679623146,0.982559941232662,0.0007525192156500315,0.9794621601760208,0.05114748087284331,0.9350771961506718,0.21004130282429392,0.6295066886038577,1.6199202159605236e-07,3.156665575511941e-07,0.9999524393922347,3.262404157083293e-08,0.999990855571623,0.9999826792027598,7.584696266587403e-08,9.027409442440209e-08,7.446195827240012e-08,3.6037341337215635e-07,0.3588397606359814,0.23917750953634045,0.9891715929314657,0.0038240180852890907,2.2073901240485977e-06,0.00038123329743092085,0.9754707149018741,0.0018707481370143122,0.9181028625252089,0.5101371425022798,0.9479813621110982,2.5917509671431013e-08,7.771720448121176e-08,1.9985356917806973e-07,0.9997357740268259,0.9534245220105986,1.7710298183489207e-05,1.0405328821192693e-06,0.9198106426459391,0.9529636163246725,1.573975239644189e-07,0.24958782416452804,0.534887050732783,0.26530300871249346,0.00037993298947319536,0.33361507652882455,0.4494046109683019,0.0003173724022446271,0.9008454748994812,8.653020548565665e-06,0.9328841974137665,1.5516895788113868e-06,3.6969365598596426e-06,0.9669506918933862,0.0009327675088823793,7.884700990535906e-08,0.09852325758866766,0.447081625065378,0.00019262401425699564,0.9697243189992765,0.9999276079530683,0.9879576916814832,0.13806617365028181,0.0001280367452515311,0.1514776962509784,2.2081284730234598e-07,0.08804516480040024,6.354908650661209e-08,0.9303755976849811,0.9691162266729875,0.9947625733971948,0.9937302572308121,0.9996559617460605,0.9998558248612841,0.9649206523274422,1.91382223105238e-05,1.8906573342875046e-05,0.9999883749991364,0.9999904297794836,3.874417237894071e-07,0.9999287251370451,0.9483682615258562,0.9988583285593394,0.9681871485595874,0.009315216577563573,0.990761290392299,2.8995909593118825e-05,0.999695165049513,0.905776194784325,0.9117271953680898,2.781553994378433e-05,0.0002157144793789256,0.0006427402984800788,0.29274913769995026,0.8059355130548159,0.9869361996805679,0.5318841346632409 -गोब,rgb,4.2725631565415056e-10,0.30409358821899657,0.9999714995258793,1.0,0.9999991977021743,1.4094931938393088e-10,3.4994860175325236e-07,3.16225178143567e-12,8.137609892106575e-12,1.2512180694196427e-11,0.9736211246994512,0.9993585876971453,0.9986058451066336,0.5594620164345211,1.0,2.1081923651016543e-09,0.6637594381423999,0.7493874696566014,0.5779743850058139,0.00015446773350878188,0.02498872948207755,0.013085846161071522,1.140165126631332e-10,0.15149857230388705,2.154199735119923e-07,0.9985751912402214,5.510821312775301e-11,2.2641424561232318e-07,1.587247805890188e-09,0.9913348556915307,1.4580912729741075e-10,0.9999936030038791,1.9216525542504342e-10,1.4888181885817565e-10,0.9999999999999978,3.027995642116328e-09,0.0008455921729714571,0.009135132216226983,1.3256527099389474e-08,1.0274181103717821e-09,1.0,0.9857387826692989,2.103090124523558e-10,0.9989540341716786,8.262214450985993e-08,0.9999148295933378,0.9999927440386208,0.9999706278203746,3.634524574198213e-08,3.5505602948294074e-08,1.3846118809583032e-10,1.0,7.31060822406803e-12,3.0613881094826126e-10,1.6209783407132674e-08,7.939911457991655e-10,0.1490193029670722,0.295385194036385,0.9991576363457987,0.9971008512324269,0.9736068374655817,0.011945383965447658,5.536984730975271e-10,0.9911974199298988,0.9955655946519535,0.00999397618957205,0.9816266353927194,6.9341498423907246e-12,3.832656842363454e-12,6.393361818502801e-12,2.6105934217080015e-10,1.0,0.9999999999999998,6.545906466688276e-12,0.00612035023528696,0.9744411265663288,0.997075621684114,0.033108993757029,0.018750957419590604,0.42163579357096015,8.586080787088799e-11,0.1405160588338086,3.0734457805267725e-06,0.6285048258007362,4.006616873228406e-12,8.906703550531252e-06,1.6850629137537784e-09,0.01867755974000723,6.896067915910779e-10,7.443675195881204e-11,3.037708623969828e-12,9.652804753542543e-11,0.06946760138987172,0.4980673480924972,0.5232767411857474,0.6190668169908209,2.9682663520384892e-09,0.6353107853241307,0.13376571398984394,0.555432863094193,0.710332468136536,2.219239421515874e-06,1.1010202948396194e-09,1.0,0.8193982095101103,1.4845642133906422e-10,2.3126775109856708e-07,0.1429990997126947,0.9997167767200789,1.0421557620775516e-09,0.98930577420296,1.0,1.0,0.9994397695077645,0.9934312390929525,0.9832060345949448,6.248067594225026e-11,0.8717988168392513,0.9994591694491392,0.999881180833001,0.9999943170138917,0.9754067303814822,1.549537621863272e-08,0.9999999999999998,0.9988624587001342,2.4141428709997134e-06,0.980747910379141,6.66354104086539e-11,6.971075273594406e-07,1.3705003796668332e-08,0.0007115928707959741,5.740838624711799e-10,1.2462182155483475e-10,6.560568655130468e-12,7.624440240825257e-11,0.20644444759754127,0.4370884171548884,0.5245120669081671,1.359552855541169e-07,0.995631574685558,0.9999999999999973,2.4108903460349514e-10,2.511662476963031e-10,0.9999999999999998,3.887899693636957e-05,0.0009047795505969056,0.0001126587645451392,0.020129470374355432,0.9916513297737779,0.029599713238313383,0.9999999999999998,1.8578154898824e-06,2.8654706990002967e-09,0.9702300567268353,1.52746175969911e-08,0.9974772380390302,0.9989707882859953,9.050951251141313e-07,1.566926888858043e-05,0.24340150823410317,1.9723472047544517e-07,0.31008306071256275,6.199840047622602e-08,4.968223063230385e-07,1.381018339057425e-07,3.103116341712941e-08,9.908791633099745e-08,0.9982261682281701,0.996703382674956,1.0,3.390975086130246e-06,1.4001360064103913e-10,2.0462512737590526e-07,1.057452596779974e-09,4.256415455067447e-06,3.242161634548296e-07,6.415148115430925e-11,1.0,5.32015891323688e-08,6.513138690556635e-07,5.541561384693641e-07,2.46115588593215e-09,0.9999999999999973,1.3545372447889517e-10,1.501808690481331e-10,1.6303181478696576e-08,0.9999999999999978,0.11471317843108104,0.9967710755434421,0.9989221747346158,0.9688856972828892,1.9723773274742297e-09,3.7068765502865285e-10,0.0018131585529530486,2.4192219686910328e-08,2.4206492918313833e-08,1.0693064097397057e-10,0.997308533063995,1.7451310914532628e-10,2.942072338704823e-10,0.9999999999999998,1.6459278636900963e-06,7.258061625700215e-08,4.4565871481049046e-11,0.9183540417144571,5.544643083109911e-10,1.8306431346853937e-08,1.0,1.0,1.6932332428190398e-10,2.0750876227064822e-08,0.003513882092602246,2.745384243475991e-07,0.9984126354112278,1.2595467751339117e-08,0.9918890436236496,0.9993717921946691,1.7522239738745253e-10,0.9999540213863828,0.9999972489723155,0.99999699446758,0.9999999999999998,2.5571152184385573e-10,0.992549342812071,0.751489822774078,0.8040092659126049,0.30214309590063115,0.5477324939843826,1.6054938004620247e-10,0.9999942292782961,0.9999999999999996,1.4826087972871864e-07,0.9999999999999998,8.439076406352197e-10,0.999993626615718,0.9989096118616523,0.999713033644984,0.9976573349278234,7.674910585877986e-09,4.6677530118080464e-07,0.0026382325240549755,0.9999999999999958,0.8798219083389868,0.9289681356302927 -गोब,shape,2.6212466968706524e-06,3.588986136090844e-07,0.9999694910941174,0.00020543826239745154,0.9999999835950699,0.0001035015964263917,0.00018963453286178973,6.1339582465219345e-06,3.4393460858524346e-07,2.1370448268889956e-06,1.5230657876912916e-05,0.00029461986592600335,0.00012320369960358083,2.9475230004768414e-07,1.8981588294124031e-06,1.9013895943442414e-05,0.01917277438810815,0.02446970905283389,0.0007880474164690332,6.434674891864025e-05,0.0007697028284459571,5.6707264227950844e-05,1.5352232289034936e-05,0.012091014330540096,0.000318277564250642,0.0001021987387254816,4.325239358687539e-06,0.0002136171720473404,0.006354170281704598,2.0479730680718115e-05,1.4104258724277643e-06,0.9999997014235916,0.0017907312387107292,3.679605854692003e-07,0.07297492292366524,0.0402712386999476,2.4829244651074005e-06,1.4070208278228298e-05,5.296622802450137e-06,2.3269928188901166e-07,4.647156638476158e-05,6.0803292880483375e-05,0.0002280237229029021,0.00020699369099145404,9.966683388876542e-05,0.9999488317611451,0.9999999715449607,0.9999520244364463,0.00014660305038715162,1.2058915185186918e-07,0.00010527228471600037,5.388284580863497e-05,5.303561514485457e-07,1.778527245711053e-06,6.714038584585941e-07,0.0025973967236629144,9.120183969097609e-05,0.00010650396783502591,0.00019901747873458532,5.437460939979274e-05,1.657768831165663e-05,8.724786520722783e-05,8.664004273810444e-07,1.3657002478376765e-06,1.458964750630254e-06,0.0001010560570383183,0.0009731904352703164,4.1654947371403115e-07,5.57965043074025e-07,1.3485080824466142e-06,3.974136516655128e-06,3.944807701444464e-07,1.6667516966491446e-06,1.8565213552275054e-06,7.731319144032293e-07,1.959279418546695e-06,8.46491784836499e-05,0.0003088913886798856,0.0003623383779558447,1.8444670689712367e-05,1.7380840146217092e-06,1.700910619749585e-05,6.138088974740582e-07,3.0589008786043495e-05,1.3925797541576344e-06,3.171340460262883e-07,1.4205571972860309e-05,1.5920662000102323e-05,0.00010161628485155426,3.8979279678590616e-06,2.1370827135933666e-07,2.0569738746757356e-06,6.23759090303868e-05,8.553517809691787e-05,7.506527402370823e-05,0.00024964457268093944,9.565410349560525e-05,6.0425532436148723e-05,0.00024859769930903053,1.4991411285699848e-05,4.745616506807368e-06,0.001084696773619661,5.3467832627604594e-05,0.0007275162951384226,5.464603752726128e-05,5.007325419758391e-06,2.3997556513588443e-07,0.005841286975140053,0.0007565717428987283,2.948141324461522e-06,1.952606849046629e-05,1.8782802228020518e-07,3.363666467237063e-07,1.718061871332976e-06,1.3744093083739502e-06,0.0018383943665077696,9.564781319751762e-07,7.60402383344144e-07,1.4202799813407665e-06,0.9998060072562788,0.9999999089714361,3.8994344423763113e-07,3.9908737404542247e-07,5.100435079164074e-05,4.542559411372096e-07,0.00016476081334373,7.216237994863395e-07,1.6997721895825973e-06,1.5757487398830292e-07,1.4172088557929008e-07,0.005923425690111237,2.897720683554686e-07,1.0101982211608364e-05,1.0676554256104576e-06,1.9817498563730914e-06,0.00018873554643477453,0.0004568133176998733,0.00018626339248530577,3.7813154948561e-07,3.0272789284153854e-06,0.10666067139178985,2.214137141832612e-06,6.555585505606357e-08,2.7657001864409164e-07,0.00036837364684386397,5.4518475418985154e-05,7.075284137838786e-05,7.020389435480199e-05,7.938137040612896e-05,0.00010598604016174365,6.46935512811482e-08,1.2372351261082315e-05,0.0001847252697969028,1.700883589726185e-05,1.502147806107826e-06,9.326722689001674e-05,0.0002946198659260044,0.0014537955995383444,5.753402152153822e-05,0.0003148742529989899,1.2649469628175953e-05,0.00048464301840182037,0.9142972927510228,8.167011504089705e-06,3.874757430409755e-05,6.7193503708085e-05,0.00048533832087162575,7.097698342090964e-05,2.813237223018174e-05,0.00020031637802839328,8.721724794709265e-06,0.0006130736232800161,4.902896901034769e-06,4.1194285920293635e-06,3.255270920653639e-06,2.865993604228211e-06,5.124787472625736e-07,1.8419131729449268e-07,3.038179136899608e-05,7.725184829717728e-05,0.0001350145202890226,0.05824639557541715,0.16675942941891161,3.9341331082627095e-05,3.512598061530745e-05,9.409685807915246e-06,8.027717182075152e-05,1.8491723353903902e-05,3.282385266544027e-05,0.00018538035586554747,0.00011379418195602765,2.3055243261253457e-07,1.4499124122818141e-05,1.6392081795519407e-06,2.8049748508296386e-06,5.741953255881342e-06,1.3881026888281402e-06,9.7805581959115e-07,2.069379029075372e-05,7.527308358095619e-08,8.218348995348777e-06,4.190446119349516e-06,1.0055760049890852e-05,6.70960198364565e-06,1.6303489432141558e-06,5.116861288500628e-08,3.771814049486856e-06,9.658017261536712e-08,8.291916253113897e-06,2.3780397177202124e-05,3.147355224715564e-07,5.009522602775958e-06,4.235733775148352e-05,9.157583603740924e-05,5.874943060582937e-05,6.386794874700257e-07,1.6902713490632343e-07,0.9049392112204706,0.9999844779482537,0.9999999737485841,0.9999999888224101,7.25133158177013e-07,4.388770906845263e-06,6.612599855855659e-07,0.00028330013428987886,0.003347873546665211,2.813429126487765e-07,0.0007066881575086544,6.844651733915185e-08,0.9999789938428045,4.5546578387263594e-07,3.0073123843153905e-07,6.371678558030787e-07,5.240413807127363e-06,0.9999999089714361,0.9998270526851377,0.9999342453522396,2.0069343450214236e-05,1.2257514979856017e-06,5.889213555353789e-07,8.061837158760369e-06,2.7624847108589516e-06,0.015134991709461263,5.438975159871604e-07 -गोब,object,1.3943897861679844e-06,3.143651582202213e-05,0.9999881113986171,0.9990112971322336,0.9999999244944716,9.05733723640287e-05,0.0027339203330832723,1.967291198389892e-07,9.386104832181638e-08,1.8113595791830057e-07,0.0017479709886277658,0.023045245096715516,0.01056005041770121,4.076751786031126e-05,0.9200896825738024,1.139571999527637e-05,0.37862399889357656,0.4858334241619822,0.006690404978225239,8.963746080454374e-05,0.009797318956392716,0.010349224673883075,3.877779399873733e-06,0.4511968355000787,0.00048022079381415125,0.22146906316157786,1.8044552307631878e-06,0.0003843357618848886,0.0028625994878807622,0.005624102380968913,5.96589925074606e-07,0.9999994825524445,0.00029772518227577893,4.840194154282252e-07,0.9999521984296048,0.0213216533570747,0.00010539260372332183,0.0002591617462099895,1.6670569489160841e-06,1.7758797569191504e-07,0.9952797191325566,0.018307460474730447,0.0001749837573235863,0.2914609966207105,0.0027167118897291,0.9999631800496778,0.9999998678661249,0.9999665595151959,0.0005201685299237196,1.177628722216584e-06,4.3077565894248935e-05,0.9977114403422002,1.1404537003939941e-07,2.0035567617881425e-06,3.2947631423182583e-06,0.0009737792017325605,0.0006886646454580674,0.0007253101555301284,0.016263749370258613,0.006878131257425008,0.001830439266201133,0.0007892548170929382,1.7924141651679387e-06,0.0004079655378519007,0.0006468375574035361,0.015150294547701204,0.29954388068500915,8.193174885481442e-08,1.0405764092774949e-07,1.2057324990245458e-07,2.7201903162874777e-06,0.8112600366672303,0.8840683109569556,3.1211809511599925e-07,1.395220336728182e-05,0.0004496945078666443,0.23955810155462054,0.049891613246973096,0.02804315676117075,0.0011564351715344506,8.515095937169995e-07,0.0009245684541114636,5.200050478002202e-06,0.000622329849959943,2.7402552687581163e-07,5.492038553048475e-06,8.873446813384954e-06,0.00037134013824268044,6.940667754833792e-06,1.0360818169323724e-06,6.200832948505144e-08,1.594484015108162e-06,0.0005327973865315352,0.002394412096054756,0.0014330547985117335,0.0018888089796977924,0.0010598258511517213,0.0018708602140514654,0.014650601141863734,0.00044360682090245775,0.0003924726780349109,0.004455662703979912,2.780591548732707e-05,0.9994063785239842,0.02397950044818692,1.615805033119748e-06,4.041164391549137e-06,0.39199916299201903,0.6173953755545375,5.04382940572709e-06,0.03154886110662547,0.739277781515694,0.8845376600182177,0.007133390608498608,0.0035279193039446603,0.33001527229632543,1.1799147299524694e-06,0.0006823292526352124,0.002564969972458639,0.9998601415386373,0.9999994875732993,0.0010438774760364539,1.6000600880745944e-06,0.995754921569855,0.004287420311073847,5.063848431258005e-05,0.0018466808746094542,1.3859300275077811e-06,3.1700630843255697e-06,9.230130050757356e-07,0.002046004049073528,5.181168131385576e-07,6.432855454719639e-06,2.0511926453740784e-07,2.067202350613974e-06,0.0034948773531271516,0.0567651839817756,0.019062346962412702,2.4659307005081685e-06,0.0007851885151247886,0.9999643747847233,7.4332300792893505e-06,1.7738571483570843e-07,0.8395105003093916,0.00015177316125095685,0.0002661316065738139,6.829511391379032e-05,0.009494253371745788,0.14520651799342396,0.015197163503895966,0.6794579617101657,1.3029584952085667e-05,0.00010814580884218063,0.001960532653821952,1.285418184912246e-05,0.008437148578068291,0.020048800048829106,0.0015953768038247207,0.0004852797381152664,0.003956506039896961,4.512663406811798e-05,0.012681383016436334,0.5141258892384128,4.166373880092264e-05,0.00011713732460030754,0.00011305301936556535,0.0004935488712112506,0.0068342774366823116,0.01028422582886547,0.9993850187070031,1.5369861554421543e-05,0.00027900855957410745,4.637918574194025e-06,4.755371313968645e-06,8.982364265308214e-06,7.617825646722856e-05,5.411616256355851e-07,0.7956970108726744,6.22424648630618e-05,0.0002023868361785281,0.0003659457093429342,0.014253646703007439,0.9999690662343566,1.1502678742766538e-05,8.963730017551418e-06,6.135132229607174e-05,0.99614954325303,0.00015559363109961567,0.005871728799677139,0.016929826068246084,0.032776733659211396,4.808774287644866e-07,7.6271135986199135e-06,4.558378243533749e-05,2.1989752895019014e-06,7.407451214941952e-05,1.5681033659010145e-06,0.002296372993186465,1.617249749039288e-05,9.437111480258468e-08,0.988325032983177,9.506011692674488e-06,2.52531029108542e-05,1.921568065149426e-06,0.001525893868622211,1.3045739176121208e-07,2.8241932414562992e-05,0.7244601537090043,0.9657918016958253,3.891830605919736e-06,2.2263724043638496e-06,0.0001119450261582252,0.00012204974252791087,0.010332364433020774,4.238550067760847e-05,0.0013272883024504636,0.0019290998211446654,0.14290121532089795,0.9999872345349066,0.9999998596519794,0.9999999374152694,0.7826069781542806,2.658297492562566e-06,0.0002871226416358026,0.008664100911653235,0.13358107345234857,3.5574397229203485e-05,0.008403801525043124,4.4473945725482847e-07,0.999991039941529,0.5788974842445551,2.302846379326927e-06,0.8125810078644553,4.294844178795049e-06,0.9999994643162108,0.999787121769119,0.9999212140828119,0.00329493561125184,2.98268229510287e-06,4.418120709093746e-06,0.00014027864566774773,0.6920817997206531,0.6126062105212509,0.0010473534158198122 -गोभ,rgb,3.891090851460351e-10,0.2363406951432988,0.9999571136082387,1.0,0.9999987669458846,1.186305170368633e-10,3.0523826689705724e-07,2.7817259592301993e-12,7.089797757567445e-12,1.0887388067712071e-11,0.9623634206572207,0.9990518707940179,0.9979503962261171,0.4717522005319963,1.0,1.973938284955935e-09,0.5859370013833299,0.6809544321205154,0.4959999966974034,0.00011685682558275019,0.01865925914524987,0.009983532449037413,9.620827532325216e-11,0.11852858279889984,1.6962991364141244e-07,0.9979525109983487,5.1405518881045526e-11,1.7824812919264162e-07,1.4817828436295187e-09,0.9873144193255704,1.2268361804030297e-10,0.9999902703890504,1.6137880033607565e-10,1.280827931785196e-10,0.9999999999999962,2.8236581592791487e-09,0.0006318814049770833,0.006917310822528191,1.071433511013277e-08,8.508209487534755e-10,0.9999999999999998,0.9792163653082214,1.7637537769143082e-10,0.9984428473096106,7.388580121841084e-08,0.9998722027364338,0.9999889645886311,0.9999558124413063,3.26607696036035e-08,2.880637277978861e-08,1.165679597361828e-10,0.9999999999999998,6.385123949533319e-12,2.5626448701180797e-10,1.4781136817133297e-08,6.586056002747042e-10,0.11067347438945223,0.22849876587883994,0.9987570128851512,0.9957608569829456,0.9623505432324904,0.008952347789655072,5.258879100090835e-10,0.9870951442698099,0.9934637322904041,0.007703380721583723,0.974363265715408,6.066316106606342e-12,3.366438573494333e-12,5.582211515582893e-12,2.1875109248060474e-10,1.0,0.9999999999999998,5.73618215340411e-12,0.004469939222234665,0.9630818090839404,0.9958309549116307,0.02541068896857278,0.01430437145963465,0.3391414569770989,7.960813962234173e-11,0.10416040492488186,2.445361893695439e-06,0.5422599290195083,3.515787936468038e-12,7.036589681613358e-06,1.574850214598159e-09,0.014113870040016593,6.187779020124199e-10,6.906150408176346e-11,2.674544966389365e-12,9.323923871872421e-11,0.05065578091797527,0.41068183478951026,0.4352241156574387,0.5323012581403453,2.7520628800482384e-09,0.5494683094439298,0.09898136216802479,0.46714392418200196,0.6314940677585636,1.9005272187360916e-06,9.113922181347717e-10,1.0,0.7594656098438023,1.248770650344434e-10,2.04624895341308e-07,0.11156664004312951,0.9995865955546224,8.633773308674792e-10,0.9848780535251386,1.0,1.0,0.9991698191397105,0.9904564833681647,0.9758553757070766,5.383967848152879e-11,0.8261136719543077,0.9991998247734823,0.9998235734203418,0.9999913528914627,0.9647890985055577,1.2643131522532757e-08,0.9999999999999998,0.9983214892275248,1.8698878759688922e-06,0.9723244225068455,5.731632828888501e-11,5.521679155947241e-07,1.1324918758475203e-08,0.0005302191074618574,4.881166139966353e-10,1.0499847727623269e-10,5.7474918837798405e-12,6.562149531957446e-11,0.15906160726105445,0.3591185754753504,0.44243576536790225,1.0905943724059859e-07,0.993562993102893,0.9999999999999956,2.2923334579218248e-10,2.1056676157265819e-10,0.9999999999999996,2.9709327043936982e-05,0.0006754730090373887,8.487925061257442e-05,0.015374437320617421,0.988235012330514,0.0227603984991973,0.9999999999999998,1.4672941572809265e-06,2.666632375200265e-09,0.95762035366263,1.393675358377613e-08,0.9963066926056772,0.9984830073327394,7.041283648209285e-07,1.1918174950347144e-05,0.1895426048106895,1.553373628058339e-07,0.2458091378286025,5.6601509134105113e-08,3.8847112686368127e-07,1.091245832964347e-07,2.4828199614626088e-08,7.85304898780166e-08,0.9973956008914728,0.9951843947112671,1.0,2.663692862504792e-06,1.1786321253906338e-10,1.645516068643516e-07,9.973187186329272e-10,3.3338431304239156e-06,2.830292097479638e-07,6.218749977622048e-11,1.0,4.23553458236737e-08,5.08059877547397e-07,4.328905498248705e-07,2.3057018130322957e-09,0.9999999999999953,1.1412746698451553e-10,1.2631452812842853e-10,1.4803548854740179e-08,0.999999999999996,0.08467629432858963,0.9952825678055425,0.9984121327068547,0.9557526809535067,1.668144974541789e-09,3.3844934713824206e-10,0.0013472154566451105,1.9842915512421774e-08,2.1826262593419997e-08,9.165255975451656e-11,0.9960553651945264,1.4665477720882347e-10,2.464487051005809e-10,0.9999999999999998,1.3021959943924768e-06,5.7690665409109826e-08,4.1570523000339826e-11,0.8867921069925166,4.6180322245478794e-10,1.667251672262018e-08,0.9999999999999998,1.0,1.56122679878767e-10,1.7144064604112562e-08,0.0026769969295097336,2.1575633437035423e-07,0.9976680065905679,1.0156231285142982e-08,0.98822207016196,0.9990703677578417,1.68375421691645e-10,0.9999308885051845,0.9999957958923155,0.9999954042865631,0.9999999999999996,2.1434464972852606e-10,0.9890573533056659,0.6832791418447525,0.7448712464043074,0.2346886721898744,0.46506802427885807,1.5439317225005535e-10,0.9999912202689021,0.9999999999999991,1.2158937939164886e-07,0.9999999999999998,7.002477724871187e-10,0.999990304087457,0.9983906451799434,0.9995733018420602,0.9965304652154432,6.35858822749364e-09,3.730474468794166e-07,0.002020923056648213,0.9999999999999929,0.8367864110730016,0.9011443911325209 -गोभ,shape,4.0872234665704834e-05,8.015249322651898e-06,0.9999374679063522,0.00030198342583076244,0.9999999728700247,8.605745234431659e-05,0.0001822266801937829,9.956532702530758e-05,3.4882747399690596e-06,2.386865569795579e-05,0.0004138547855088277,0.007170083360120596,0.004973088041265649,1.0653209304451168e-05,7.865571301970286e-05,0.00015016040491750392,0.026617407306532257,0.04229131800839857,0.029790908286926217,0.0035413631998450316,0.0022907394723052747,7.548717851807192e-05,4.311874820989203e-05,0.007995211763033855,0.00039602146935966315,0.0001264132613979567,1.2181859279002179e-05,0.0002624830020276189,0.008646214849723895,3.683803031381512e-05,7.082538619207399e-06,0.99999929150103,0.0012190761422587197,1.1334836510802747e-06,0.03884583721024129,0.04624471333322224,7.534906765437554e-06,9.128233734723524e-05,8.418005153649584e-05,7.331195434902171e-06,6.784196156028873e-05,8.273489095540076e-05,0.000177512459173555,0.00015418972731113623,7.857434614461923e-05,0.9999196617369542,0.9999999178692681,0.9999382615165742,0.00019326939253476585,3.8187791089014096e-07,9.894053644918497e-05,6.970034271879617e-05,2.9866521886807882e-06,3.5309449680301573e-06,1.0301583942983281e-05,0.002277590373692297,0.0015981557457465472,0.008040375313264627,0.009518285447433408,0.0010549155645191346,0.00028892801750270776,0.0037905414537023527,5.858283879548215e-06,3.8449820217751964e-05,7.2750088261382665e-06,8.777716553553505e-05,0.0009641913170567834,3.930459148695412e-06,2.6198221872143718e-06,2.714128025042804e-05,1.0020516493333851e-05,5.124519398660589e-06,3.0791912293918595e-05,7.245624111618325e-06,1.3632874883001871e-05,3.329944379463196e-05,8.307941796839197e-05,0.00023769528505503893,0.0004883643827569679,9.041739478139552e-05,1.2699290245030479e-05,8.276769892485479e-05,5.4470377377334176e-06,0.0021795915778896674,5.381481729170069e-06,3.153459473815771e-06,4.187946531974686e-05,7.85643343005099e-05,0.0015343325716259968,3.9580596214869254e-05,1.0867635702348159e-06,3.256429827275505e-05,0.0006249682834014189,0.0005644363910295071,0.0006791963119988173,0.00969387290941769,7.483017376598514e-05,0.0005872060735884916,0.0005449611132020168,0.0006681365494468794,7.086726038627404e-05,0.0011650549910311044,6.57062859374931e-05,0.0007728759008258338,0.00010701479684793639,1.1312098691477614e-05,3.826258488255996e-06,0.0038210339965808536,0.0006644823501835619,6.417399043992346e-06,3.4975266224303205e-05,2.528923145946484e-06,4.514830589978792e-06,5.242493952472866e-06,4.513788151105326e-06,0.004478449547515708,1.7535783049404182e-06,4.352881254644965e-06,2.9824064796502464e-05,0.9997907217129413,0.9999998645540372,1.1995672055884273e-06,1.2507452505163036e-06,9.26072966160084e-05,1.1716831331303487e-06,0.0035756352414866455,2.2542229799534796e-06,3.0977345569842425e-06,5.685834030631253e-07,5.071235032306657e-07,0.05026736935014363,1.035063677696589e-06,2.3979389919638246e-05,4.276561760027791e-06,3.7988320534487785e-06,0.0007660969569316354,0.0009390146744838541,0.0005048159094838283,1.1994652327262755e-06,1.4399356178571814e-05,0.12166870456191305,8.683318156459357e-06,2.9037341861872346e-07,1.3126908965842058e-06,0.05585857272268757,6.510626934214209e-05,0.0017966847922344627,9.95496593212021e-05,8.301248075347034e-05,0.00013841845647005665,5.593643202014282e-07,0.00029488389642454534,0.0003214788427895871,0.00032994502778341223,5.489748378864648e-06,0.001957408595143971,0.0071700833601206285,0.0014372029702362113,7.794705337372328e-05,0.00453407512284107,2.1348136173020606e-05,0.0016907973713182203,0.8368079304097723,1.3790517445485524e-05,5.0663256676008274e-05,8.619753074150759e-05,0.0005390192848705037,0.002458887060013002,8.437099885336742e-05,0.0001804273177882783,0.0001834257422372779,0.0004450956643408208,8.477451011310255e-05,1.4109553891888801e-05,4.539286198384541e-05,6.68609457974297e-06,1.1672498188994272e-05,2.208281245030315e-06,5.037045819332225e-05,9.932579999275295e-05,0.000162211006015353,0.040562478380390656,0.202315472037206,6.81967776611507e-05,5.846281073775866e-05,1.544252617146537e-05,0.00012534114431486069,0.00018260991683018574,0.0003403538477394335,0.0033699901213880335,0.00020055219987696874,1.346804791115151e-06,5.2036323737472256e-05,7.3734019143252636e-06,3.372557247876263e-05,1.1196381464613985e-05,2.646069608194118e-06,5.307712236532636e-06,2.251200260127562e-05,1.984389687064883e-06,1.522917891702507e-05,3.612983056996561e-05,2.3197399930310967e-05,2.175936377525473e-05,6.493195307039747e-06,9.569324227923576e-07,1.6263665836273104e-05,2.263458531686303e-06,0.00020141852515344352,0.00011061667400487371,9.198011339358232e-07,4.333388082093169e-05,5.7968410601554626e-05,0.0020371046723374427,8.840641981222216e-05,8.412920286278422e-06,5.527240493603436e-07,0.9084702862394018,0.9999691887638711,0.9999999397694911,0.9999999734371827,1.6486561691289994e-05,9.943451249527834e-06,1.678641002278653e-05,0.0019420692471693556,0.008466609600571811,6.230346712635614e-06,0.007124001063167059,4.3560361816300175e-07,0.9999761218128487,5.464533189257581e-06,1.577192813119642e-06,1.3058700698273298e-05,9.989314033323231e-06,0.9999998645540372,0.9997966552222542,0.9999331772262259,5.366441761191083e-05,5.1535638420677465e-06,2.9874102475497375e-06,5.944999160492201e-05,2.4441550258638617e-05,0.017159018131466773,1.2770462795373773e-06 -गोभ,object,5.290367206792367e-06,0.000140402586600159,0.9999770781329776,0.9983779510252307,0.9999998844830424,8.033439814395237e-05,0.002797976795117044,7.647328972414946e-07,2.5735831067318556e-07,5.753416778773807e-07,0.01037755653893192,0.12087464094935593,0.07741733740312416,0.0002206249973800503,0.9837694529532856,3.790520222768694e-05,0.4055229192523462,0.5646113794321681,0.063436409636486,0.0010117075836863787,0.014557826335725483,0.010497443683742376,7.1447576504216455e-06,0.3697157955876167,0.000455625579547939,0.2064910215402671,2.684542658309624e-06,0.00036192253994982415,0.003031596030844359,0.006089250484213939,1.3565704291541463e-06,0.999998937740584,0.0002428655897601038,7.5947312093022e-07,0.9998837874864501,0.020847046312135655,0.00012671597105624017,0.0005596629879465132,6.526745668594858e-06,1.204556219480515e-06,0.9924835403154335,0.015110040171976405,0.00014189068574301645,0.2000306750903395,0.0021877629821635785,0.9999459208117077,0.9999997161702423,0.9999569455528202,0.0005667259170089116,1.8399506253802372e-06,4.3377661162600297e-05,0.9965570109600479,2.395401534255305e-07,2.3861841268845005e-06,1.2861718016637459e-05,0.0007839917013610624,0.002916473543768844,0.009505662630113416,0.12199746564037442,0.030341393817803777,0.007413093259093284,0.008564422247714533,4.8630315944073965e-06,0.0020924738221337535,0.0010888686946129798,0.01197368600086824,0.24760375137903215,2.276397332434436e-07,1.8608694887274245e-07,5.485672754809374e-07,3.9552370602199076e-06,0.905678870083161,0.9574006055661918,5.40929827694399e-07,5.825683102387236e-05,0.0016431040346704426,0.2087137864729412,0.036372380243174116,0.027050155958143175,0.0025338974948226354,2.2035562103098024e-06,0.0017191959228574916,1.4657710001428019e-05,0.007285109354401967,4.6937656984964444e-07,1.5937279163400892e-05,1.4957276673881026e-05,0.0006790211344109913,2.6785494757173936e-05,3.291848601308407e-06,1.1544528156356806e-07,6.566872597433509e-06,0.0015373443919617887,0.005239024122045059,0.0038800591113174487,0.015410275006654841,0.0008440990890465538,0.00514233046758893,0.017220567717804277,0.003651496944075341,0.0016335885510925727,0.0046353398284390375,3.154895447187586e-05,0.9990263433700172,0.027015674448608057,2.5000618548321433e-06,1.7497337493708038e-05,0.3103266805650186,0.5520255297453119,6.527508788414528e-06,0.03539255467078618,0.863135619252924,0.9456398211563056,0.01020804313267075,0.005541547905328975,0.389831723956649,1.4618115177553883e-06,0.0014338247801507086,0.011124579552835856,0.999839271837638,0.9999992435325573,0.0015363899550660117,2.4824565157007002e-06,0.9940134634709317,0.005656754498246418,0.00033781758339542514,0.002887709842630686,1.7167791312302058e-06,5.1590224199159655e-06,1.5306569071070741e-06,0.005555213069301609,9.12410445457368e-07,1.009371873471899e-05,3.536290900041016e-07,2.525794602538061e-06,0.005890789739337732,0.07294178112194435,0.02761135998324082,3.7255132230588382e-06,0.0012988731965999003,0.9999360032789385,1.3894142426550203e-05,3.2065204554308275e-07,0.8665205756712858,0.003644270759618503,0.00025998990150626864,0.00042601538446016083,0.009285600248047466,0.12787778023471935,0.014650532200583525,0.796495697732361,6.629416799542047e-05,0.00014756304626903125,0.00892715290067933,2.0973244015601027e-05,0.04321254730091129,0.10687145257636545,0.0013596794917233239,0.00045260407018060515,0.017523403502010333,4.5604853455284125e-05,0.019948224661350135,0.3914627428623239,4.493559877783423e-05,0.00011381618803383944,0.00011391853949079731,0.00047465549957744516,0.04606823964416907,0.015230162549116865,0.998869564894013,7.616718329102958e-05,0.00022769145349655593,1.9277297286558206e-05,8.432148122039504e-06,3.1586690858065714e-05,0.00012059557767907662,2.6993817536598426e-06,0.8902532119884564,6.868683218528876e-05,0.00019271010272976742,0.00033884451617591986,0.010859846273198536,0.9999465814325322,1.699270567709581e-05,1.2513066012942942e-05,7.337196904016404e-05,0.99504026630131,0.00046060520696600764,0.019053011954679785,0.07333404835864397,0.04248700439887495,1.0268603260008675e-06,1.2700560660897144e-05,7.360362694070255e-05,6.840407235065285e-06,0.00010875246147368509,1.9165868919908875e-06,0.004904486144734183,1.7098264154124628e-05,4.98699863427916e-07,0.9857095523294811,2.394046815481339e-05,3.452274365305433e-05,3.074658934846542e-06,0.0028009943290840493,6.083325623304283e-07,5.4583515080374e-05,0.8992812407400335,0.9887661222314005,7.471761195948068e-06,3.4639326074325452e-06,0.0002905009445788828,0.00012619448619523012,0.04622005732986254,4.4773226766660333e-05,0.004850848480246625,0.0027492622702418386,0.15571661419428118,0.9999782495748196,0.9999997217317865,0.9999998823573707,0.9240885881511037,3.6771360079711103e-06,0.0013330368072157817,0.01912355960415669,0.17210398264329593,0.00014188537348441084,0.024999284704711047,1.1069101573813925e-06,0.9999906031170007,0.7353608771153181,4.709197144092076e-06,0.9303590502643331,5.322920562852635e-06,0.9999992092774475,0.999727811210048,0.999909580547437,0.004173335558249846,5.184278025850486e-06,8.507569229079115e-06,0.00032338460766069733,0.8103728671707361,0.5885750177108886,0.0013182998691140502 -घन,rgb,0.20428602599144147,0.9999999979804297,0.3224894888109567,0.9999999999999998,0.8159928743147974,0.7441692649403132,0.14201483228210232,0.2327577431481969,0.1831987032873251,0.08396585924063225,0.03411861372798156,0.1389231324446292,0.09615106173586137,0.9999999989625656,1.0,0.9958938588719809,0.000767393100379915,0.0010173214967171273,0.0007002124243526882,0.003858550065648836,0.00021649958998636086,0.00015403330527680116,0.6651350783515405,0.0003681177769143655,0.986853901946938,0.00364243172537456,0.6755544759793439,0.9783903459032214,0.9891424404354121,0.9999999615224574,0.7418152683238656,0.6611823485277105,0.6379553585271367,0.005327965446809899,0.9999999999999998,0.9940280549720191,0.0035827960393021658,0.0001272333932511751,0.6345816976609773,0.37444302855635414,0.9999999999999987,0.9999980029561433,0.7171509448268807,0.9999999937447452,0.7279529902442314,0.4892639768863026,0.6949906024210818,0.31536414893397313,0.7112235720780642,0.004438440190397826,0.7296756007323164,0.9999999999999989,0.1392378143323112,0.45449234274432393,0.9383211352530162,0.48961981673495175,0.9405997597385728,0.9270910399354325,0.12661287196248136,0.07107838672265111,0.03200988012154928,0.00017497971687822572,0.998842163574546,0.9999942840001798,0.9999999095767007,0.00023941906602027672,0.00108463426043093,0.11317911489711013,0.2012821671918795,0.20646097729580035,0.5300048913210393,0.9999999999999989,0.9999999999999967,0.09439216596599082,0.9999999598044021,0.9999960285044726,0.002426062519743196,0.0002614941581033654,0.00016872922744719918,0.912108697449885,0.530519462134803,0.9103086679942763,0.00018340001669835953,0.867984748736944,0.2208314821771516,0.00015058912850140745,0.991969598825114,0.000138826844200882,0.04150102779661303,0.5268732679450528,0.21492433251848667,0.999700694364777,0.958239894064075,0.9399355333754318,0.9032222729251734,0.8827838471166958,0.9802667700456561,0.8662426066495261,0.9230066055973433,0.8556845718412567,0.7957977955119195,0.05734947396322701,0.34278769019420635,0.9999999999999998,0.8177184530999456,0.7560898427277444,0.564050654048327,0.0003369884908364788,0.010379619006771902,0.3016897959382176,0.0015856270240388309,0.9999999999999993,1.0,0.23188382606304597,0.06164680658740259,0.04672244348775285,0.016305494835715757,0.05720536958805524,0.14007810848375582,0.06846372625310576,0.6558412037759855,0.07902421514390581,0.007782495982614789,0.9999999999999958,0.20903046981224604,0.3775566365555982,0.08847749471104967,0.019124503979006526,0.002105912525414359,0.0010215165256056554,0.018223612015920224,0.002878590373889488,0.759786563338796,0.0985929448950918,0.013604969756996146,0.000458960961983291,0.0005832768341983819,0.0006935304304421248,0.003404593308291004,0.9999999679454173,0.9999999999999996,0.9973320599482827,0.5086877303766656,0.9999999999999847,0.004727265167310604,0.004182774843096625,0.07557569553297375,0.00018085692943187,0.0014933528294013248,0.0002929509033627749,0.9999999999999942,0.0006571595075698738,0.9902215261162064,0.03301328566806007,0.9407988045870315,0.07878811962765309,0.12516722410125047,0.9977512635415378,0.9962209124023279,0.0004205024338242316,0.9992548612038571,0.00046073067778256604,0.9914433055185501,0.9933322037485746,0.9929517787554041,0.9921117734416083,0.9859150499011934,0.09895330143998639,0.06819671565118565,0.9999999999999996,0.0006761364744087361,0.7288039325169021,0.0009422252495244379,0.9977963006866097,0.0008049507182497917,0.1490216192930918,0.9997660789993124,1.0,0.9993398626253124,0.9972626515577291,0.9948166082653025,0.9970224459961724,0.9999999999999998,0.6420307756944889,0.7553838248671982,0.870296710676466,0.9999999999991287,0.9999999940355948,0.0684612412681086,0.11667466465141624,0.03071170647837805,0.001222490582565814,0.25267574210231436,0.004099057056117705,0.0011802882910120621,0.7404952891253521,0.013677286029811137,0.1280172897537939,0.6730964631851065,0.40792141163337675,0.9999999999999931,0.0005914093826730921,0.9704906163675578,0.6333988166147937,0.06108574726592028,0.37435409221074034,0.9329756558846541,0.9999999999999982,1.0,0.4519192174121108,0.0006695113723761815,0.00011563009984559272,0.9859926864886145,0.0971059542645502,0.9890899457902752,0.09682500195760785,0.18510151001238828,0.99957578998793,0.38940032368213356,0.7539186752964999,0.8071278695994559,0.999999999999988,0.5060170153021468,0.9999898084304857,0.0010755333661120541,0.0012274909137921395,0.9999999979571412,0.0008399880211690425,0.9995966208247252,0.6530806261922131,1.0,0.00026394661165915733,0.9999999999999951,0.3503110325500614,0.6767322999063892,0.2102568433497489,0.2302961719200274,0.999999969653806,0.001601879300939011,0.0007344254305036609,0.00011546587233135824,0.9999999999999993,0.020048252232793037,0.03163605307469008 -घन,shape,0.007177805597604734,0.9999936737017739,0.43150983539408516,0.9977932585194141,0.9999981321165612,0.9998705582317257,0.9997400497610408,0.2578220803078901,0.36515421768247786,0.001137152516215906,0.9999999990631507,0.9999999999939158,0.9999999998880809,0.9973391686228879,0.9999999915237708,0.9999999903404485,0.9996909569556524,0.9813486949878482,0.9999999991312045,0.9999999106213682,0.9999999926771104,0.012629298845292397,0.9999999962134383,0.0007908408223694816,0.0032815185657597687,0.00094167377479349,6.676263867380924e-05,0.008283764774905349,0.17503868801629283,0.9995590596836885,0.9993082120954259,0.998873987515567,0.9977571822217387,0.00019413615971184274,0.992540610598771,0.4915800033848545,1.2433688949387012e-06,6.309192639419518e-06,0.31018110449283015,0.9999999910412863,0.9998933560107004,0.9994380213425283,0.8099768953272076,0.8284490133851043,0.6246062980939123,0.9999969145047797,0.9926192342964866,0.9999770160360717,0.9998240606777216,0.00019161987405833525,0.9999972625578388,0.9995801111026079,4.674438479714721e-06,0.2825780840444925,0.45914987406468677,0.025574953178065,0.9999999978089058,0.9999999998583982,0.9999999993750994,0.9999458368551244,0.9892462546730895,0.9999999999992741,0.9990985632120943,0.9998585931188237,0.9983409073735559,0.00012104322870305937,0.0005653595241982432,7.851523792526166e-06,2.8682522665025813e-05,0.13576436591821958,0.980054163670386,0.9990459800185832,0.9999743256437635,0.0005830509211022282,0.9999979912072674,0.9998670673907041,0.001301872098418283,9.946366769145274e-05,0.0005643196997712881,0.9999893029174726,3.5655075877876543e-06,0.9999990161071818,0.00036805700305740907,0.9999999999890603,0.005037173814941654,7.857252774292697e-05,0.9999562203627776,2.410851395315323e-06,0.0004432744467942054,1.9022289068724033e-06,0.0006476125317072716,0.42251835947824895,0.9999998906087721,0.9997649831417865,0.9999999650685168,0.9999999999891456,0.32157511283058327,0.9999618605505702,0.9999999871225672,0.9999999998398887,0.9999992623730797,0.9998617899124458,0.9827239931084726,0.9994795674368275,0.9999998489985568,0.9998337870255561,0.9993380585453119,2.1891156399778227e-05,0.0003278253362058773,0.958424845351394,0.12084472964050684,0.9999981504723204,0.9998312924195571,0.0003042514527258475,5.314339799051709e-06,0.7395069729216747,0.00013456875541072527,0.00650023088034229,0.000285081347502715,0.9998863423288488,0.9999933479126148,0.01949845667716311,0.00016605413334100757,0.7306267387640409,0.13769640603488534,0.9999965068455493,0.00041942584114925096,7.120940148250518e-05,2.294538079025029e-05,5.381640466016488e-05,2.1634781803100374e-07,0.000355880736032331,0.9999614234679024,3.715372919601915e-05,0.00018985504333634922,0.9999997601293369,0.9988032348391577,0.9884999661368679,4.364043913478096e-05,0.993297168354524,0.000653059288788068,0.41215017310533536,0.9988361802437908,0.999918215222503,0.9999999875138569,0.988857395542743,0.9999999999922597,5.7461621344609056e-05,0.0007943072906188893,0.00010611228411485364,0.9995286594448713,0.9998876727423298,0.9988705774654594,0.9998795152447263,0.9966689043738873,0.9999999424322494,0.9999999999939158,0.001016480956735321,0.04114652612935743,0.9999999999706626,0.0022002264313819896,0.9999995056765011,0.004745057433491792,0.013271560957350364,0.2593437992126906,0.11886323088376997,0.6483553531497935,0.9999999133363497,0.9929099011931484,0.9991872622762299,0.9999970133087074,0.9993916753160129,0.46981242629882797,0.9979768599353008,0.21475502306516836,0.9999999008917524,0.6201756021587597,0.9995158023431144,0.10238214042872015,0.0009391304712034462,0.000329800714223942,0.9987270917293102,0.00010724495027203206,0.9999999560071705,0.9999406803365828,0.999817297005758,0.9992739807433716,0.9994777175267038,0.9999997408352345,0.9999999999240605,0.9999999378729286,3.196374410463477e-06,0.0006032333562011912,0.9999906311780943,0.042295838463022026,0.9999975489399214,0.0007246303453685898,0.3594507015234351,0.9999431392576104,0.9999726579391127,0.9999589043650129,0.004158314466398674,0.29736050585758056,2.288867940597584e-07,0.04143140398745101,0.9995940361189433,0.9925832641731648,0.9999816325988683,0.9999975529808431,2.682037617963191e-05,8.888930796228767e-05,1.0466699918248866e-06,0.04730935388612638,0.9990454703623439,0.006669220461987659,0.40102210051511916,0.0002121675103081716,0.9999999965223532,0.9999986834820948,0.9661979092372485,0.9999974702260122,0.9999003406053495,0.9793369659743205,0.9997917221818886,0.9996417778464836,0.999999999927419,0.4056464202900058,0.9999973019423405,0.9999760040607089,0.9999999981376881,0.999797846660482,0.00045487901149985266,0.9999663967089931,0.9853689454076393,0.9999933479126148,0.9994404121893887,0.9844694564564561,0.9999566837849372,0.007973653049481723,0.23801820758692166,9.594104431711275e-06,0.9950316157099725,0.9512609352985892,8.479059474880115e-05 -घन,object,0.00023350986404116754,0.9999953211779898,0.10119928774960428,0.9994504755207977,0.9947769350474068,0.9998107608415485,0.9993547410347455,0.009004797383990596,0.006589959397795199,0.0004559332527917748,0.9999753714327049,0.9999931644783384,0.9999834368232011,0.9998129395740536,0.9999999999314475,0.9999362889783672,0.0026796887128666264,0.00018119304511131853,0.9613746294465196,0.9588577149050018,0.6566281540523085,0.0013538704860299507,0.999998989451933,0.0002688439493434473,0.2931998063716909,0.0006029473203696913,0.00014790741523743793,0.3630363837743426,0.0064732981385686224,0.9999924416915354,0.9952363853106929,0.7595617566643313,0.4591318805336569,0.00010450630806305718,0.9999521890187325,0.02293879025016944,1.2405461145467816e-06,3.2089955867383076e-07,0.01028804802120115,0.9999804963378994,0.9999942203425172,0.9993989792696061,0.6162870594517309,0.99716135152544,0.01546380732502536,0.9939876416270889,0.3868997077386614,0.9863450047014091,0.9990703174669809,0.00011173343001136869,0.9999843279508102,0.999999742043091,6.118977420271084e-06,0.026559582173838803,0.004546951077500639,0.010119255795590127,0.9999903533897507,0.9999950221925157,0.9987493189504794,0.700886463723193,0.0379713321849781,0.9998659658212917,0.9911806683412459,0.9998757054690972,0.9998852075632626,9.649711845489817e-05,0.0003589592780419873,1.3641018388493499e-05,5.016776809084916e-05,0.0028726513815806,0.21588762915119308,0.999921770615646,0.9999998743278875,0.00026395942639125154,0.9999929901222451,0.9998068775358906,0.0008487836831137958,3.681168901945614e-05,9.022294049856514e-05,0.9988226622844014,3.005697261138134e-05,0.9951639387073745,4.5452039152228305e-05,0.9999933984201141,0.001080653583664037,1.138538349984226e-05,0.9943875217899989,3.869347684025057e-07,5.765697436435174e-06,9.572924376164921e-06,0.00032093388339564204,0.032818058151312494,0.9999385806031775,0.9203267847179686,0.9999298760806983,0.999999028979628,0.02249368811497558,0.991028637828278,0.9999816240090087,0.9999970108011513,0.9997875706590402,0.08930281717917356,0.0572025653587322,0.9999245668071194,0.999890543383315,0.9993830677569658,0.6780541271054042,1.375262399604727e-05,6.206956326205084e-05,0.17604314915083857,0.024139541775428985,0.9999994058539707,0.9999954386748158,0.0001399485579953952,7.982766288680426e-06,0.014872655182634193,0.00011514946764741036,0.0014554385090234702,0.0001747174524233069,0.418061352182254,0.9606116547013623,3.6198954218432725e-05,0.0001065566682904176,0.9996347094221767,9.753443558698309e-05,0.9089176545403332,0.00011673797368479839,7.480917146763957e-05,9.648915587945341e-06,2.055177803714434e-05,2.615679717129989e-09,0.0002510057873199388,0.9996578214535677,4.4084336023010645e-05,8.92392028377677e-05,0.9135779260700613,0.0011673824288983888,0.0010038047212912655,3.157529945455236e-05,0.99989845286441,0.672924935470056,0.010130055918541839,0.5715046214277836,0.9999922200401696,0.9611893479474541,0.07538256603904615,0.9999991337784793,2.693897472342497e-05,0.000522600225812525,4.8771658469503354e-05,0.9998352569607969,0.0767171952001666,0.988748012976981,0.5524978183913011,0.13153386981275877,0.9987760515009518,0.9999931533630411,0.14746298078145179,0.6231061422026605,0.9808663157892252,0.2766437822724646,0.45788836505804137,0.00026490637859953456,0.208387762588687,0.8845732462686235,0.8995216628352843,0.9623060937373851,0.9968347337501778,0.6397364211865922,0.9999996345760988,0.9493610451164446,0.9995971440502367,0.0010796492543713424,0.9456986601686139,0.0005064963718810292,0.9999464914783729,0.11329751753159446,0.9999867228445101,0.9375045177282438,0.1530404734369568,0.03135233740281162,0.5252128610483038,0.3704408308518938,0.9999953943097052,0.9997942850065563,0.9993924965690418,0.9999973130940417,0.9999728996762914,0.9982513363974578,0.999984752002767,0.9998216565273296,3.308204363828717e-06,2.196266898113756e-06,0.9384509354686446,0.0002050707040282184,0.9998110498736532,0.00038590258404735766,0.0024780721205711507,0.9998601515770582,0.9089953261285509,0.9999999330775855,5.657084991650545e-05,0.9125091781096728,5.739192786107914e-07,0.0006324963686857228,0.5874977999790556,0.03135578707920067,0.9999922246866481,0.999999992167579,1.1036709608806217e-05,2.893270513157674e-05,5.2778484393573826e-08,0.6401865763309079,0.11293286897572924,0.21452168811757405,0.0077614007928825885,1.0555990205841924e-06,0.9999992682239397,0.995708892658435,0.18829050640261966,0.9948114708557914,0.9999961211644396,0.2972548043665442,0.9996268948227056,0.028611352467303196,0.9708598569121273,0.9806577724170067,0.08885838369207764,0.9903795288389425,0.9999979953679832,0.9999992297675286,4.9230295269936805e-05,0.9999994879115444,0.22721953960799993,0.9628165144813052,0.48371361526467527,0.5939122513965674,0.9999975374238077,0.00041395142868661856,0.00014098894057608144,4.352089131020898e-07,0.9999989417153432,0.0941679424539843,9.609930898030907e-06 -घनक्षेत्र,rgb,0.9990321402842303,1.0,1.8098551487392058e-06,1.0,0.00043763334420877307,0.9729186343885854,0.9801490972385166,0.6667660518331584,0.3025607120560832,0.036758816469755456,5.991794932171288e-09,1.5111348066003587e-07,5.908983607761709e-08,1.0,1.0,0.9999999999999265,1.934833506383841e-12,3.1246136858571604e-12,1.6702406130783094e-12,9.751757538194056e-10,3.97268843105579e-13,2.228972245051131e-12,0.938129814675611,2.909162938466048e-11,0.9997558800665287,7.632876467009116e-11,0.9999995638435225,0.9989982953513645,0.9999999999981273,0.9999999999999998,0.9714625014824341,5.435687135171983e-05,0.8881295436488172,1.2255636976402819e-05,1.0,0.9999999999997133,4.153018667050228e-10,4.874012656466284e-13,0.38790156960104116,0.14365062240191234,1.0,0.9999999999905369,0.9511177574032122,1.0,0.999999131273807,1.0260930992106934e-05,7.912540221137022e-05,1.6739654632736678e-06,0.9999990777085326,9.778134954498766e-08,0.9675959230360728,1.0,0.18232900528825685,0.4568745543563301,0.9999999985347836,0.40145301105582815,0.17796638780199545,0.08246774401546962,1.193497741690262e-07,2.8742624741957674e-08,5.1053398193468934e-09,3.535913130199695e-13,0.9999999999999993,0.9999999997890343,0.999999999999998,2.5539989456159085e-11,1.0816959064502407e-11,0.12033769204608728,0.523269190760211,0.430136091874464,0.6712617706804296,1.0,1.0,0.08453282793623988,1.0,0.9999999999450178,4.130334615458375e-11,1.8261820597645842e-11,2.898760808096491e-12,0.04173409673338723,0.9999960053633536,0.0620296178831665,1.209938899275415e-11,0.009741053995164091,0.5804718476131269,5.090145003756801e-12,0.9999999999993217,5.233640952875116e-13,0.6019703473698673,0.9999958681815581,0.6211096600518875,1.0,0.44206112288252103,0.10756342664768141,0.028017292875288716,0.014151592746438674,0.9999999999829783,0.009276057952432937,0.09575981416539903,0.0080850626668018,0.0021605673689785955,0.45589496366929544,0.10111593290744754,1.0,0.0026442834013081585,0.9762400935950577,0.9999857991057186,2.0186066037683325e-11,5.270834829950821e-10,0.06668930748513686,1.1745900651969472e-11,1.0,1.0,6.92262420287471e-07,2.1983019794314965e-08,1.2365558994428538e-08,0.00022442323666088315,3.176741859286407e-08,1.5258983695753907e-07,2.381098928832212e-08,5.146174073173755e-05,5.280019736728159e-08,6.164887906526094e-07,1.0,5.393850821876517e-07,0.00273179787737535,6.862725227876988e-08,0.0002931187134513471,3.0138020879932785e-09,9.133401737029839e-09,2.6289807895979296e-08,1.0452614996690844e-06,0.979760367604919,0.09286740372483716,0.00012867350077584738,9.128272409438236e-13,1.2583771323135211e-12,1.654907800442304e-12,2.3312388535763313e-08,1.0,1.0,0.9999999999999898,0.6263427999880039,1.0,2.892189580503794e-09,5.906057832791904e-10,2.5148343780979357e-06,4.062882921989659e-12,1.936708038051968e-11,3.32024412801913e-11,1.0,1.3499815896228535e-10,0.9999999999984868,5.628872114414338e-09,0.9999999987567798,3.705558941471127e-08,1.1778643261050033e-07,0.9999964203573765,0.9999448082762499,7.842660306991838e-13,0.9999999199441412,8.870081552799946e-13,0.9999999999977882,0.9999446919626779,0.9999653023158136,0.999977582376901,0.999798334393266,6.543092762783612e-08,2.6189574434497016e-08,1.0,1.029083869337485e-10,0.9670053509257215,1.067718394093562e-09,0.9999999999999925,1.3233927574414086e-10,0.9839978000158559,1.0,1.0,0.9999999699622486,0.9999947019795618,0.9999710624175964,0.9999999999999742,1.0,0.9122584099744788,0.9758341813509304,0.9999999760219621,1.0,1.0,2.6391147084684298e-08,9.741580906466829e-08,4.730722859649684e-09,9.396030141589823e-08,0.9996451802913536,4.3452732792781407e-10,7.421069557504141e-09,0.999999500783641,9.399467244325343e-05,1.4029044700865655e-07,0.9269069438516073,0.3454843862132124,1.0,1.166093684131255e-10,0.9986352856739618,0.9999991793892983,3.392871254212528e-08,0.1970578904323817,0.9999999979520799,1.0,1.0,0.9999866395145902,3.3917895427154077e-09,5.65773826333904e-13,0.9996721520570035,6.14686736794757e-08,0.9999654677827137,7.571241880941771e-08,3.475034691016376e-07,1.0,3.6575807818264644e-06,0.00016565827737113448,0.00035227319296875497,1.0,0.6171322711553158,0.9999999988770352,3.4532131902201505e-12,4.3576179672746765e-12,1.0,2.308720382772509e-12,1.0,4.994992627808561e-05,1.0,2.805891591870731e-10,1.0,0.12615363067572016,6.444171699992676e-05,5.465469668408785e-07,6.376534797953196e-07,0.9999999999999998,3.2771928312526134e-08,3.8274508058312785e-10,9.707662409059715e-13,1.0,2.1205975928987504e-09,5.9497805309488955e-09 -घनक्षेत्र,shape,4.255615378995653e-07,6.0047685969561415e-06,0.49415496983231494,0.9993576538119698,9.651571240798802e-06,0.9999755087840514,0.9999875375918217,1.690688924696573e-05,3.1178030346432126e-05,6.076519741690845e-05,3.1839470137378065e-07,1.5755643913610717e-07,6.913205136860555e-07,2.4364957794477683e-07,1.7400150471194277e-05,0.050044668771136225,7.748826079879163e-05,9.67361234633988e-05,1.4093081816843676e-06,3.1828004342779767e-06,4.8180412462346676e-05,0.9998201374268232,0.9993342538193842,0.998959313924005,0.9534118506148702,0.9997731510422548,0.00010926121758647264,0.4441148938627738,0.010062879083827117,0.580393242924146,0.9986033380371679,0.000406269396782045,5.6795051598137175e-05,0.0003290440438866653,0.00017925191824226267,0.005714116734086365,6.272184617599055e-05,6.897292108109166e-06,3.742224016485253e-07,5.069690426032503e-07,0.0013405800316129714,0.0007526728547714833,0.8128249973684241,0.7879050634974852,0.8095682315922239,0.004072711170950629,5.747419730671286e-06,0.00217105501746075,0.9999915883846127,0.0003880253275813189,0.9999962085387998,0.9999554478104306,9.160175792041053e-06,0.00129694610848523,8.720665546303844e-07,2.1361348067212545e-05,5.100779046856899e-08,3.857158373016644e-06,1.0757694728745783e-08,0.0013343676557519123,7.981691858859922e-05,6.008694699235908e-06,0.0008657826981130644,3.129430653170796e-07,0.7522278918462691,0.9997086603342794,0.7975478105862016,6.951489858126583e-06,1.6993535437419454e-05,8.760470508707207e-06,0.0005418370664605883,5.740559910817625e-05,2.746768109056733e-08,9.697745298300305e-05,4.285247288369295e-05,7.104989575532897e-07,0.9999764883069651,0.9905859046531731,0.35493087742450274,0.00566132407407522,1.1852803062422045e-05,0.056853035616921635,3.688958679730442e-05,2.119140730170119e-06,0.0005353757874576411,2.4416570718204576e-05,0.9125958217657183,9.208246043341665e-06,4.0162676341315285e-07,7.467235134601374e-06,1.1151236035686283e-05,2.3542991593610142e-05,3.8674695454968506e-07,7.665380946125101e-05,8.064112649330196e-07,2.022141249000432e-07,0.7702976132460765,1.695563190361865e-06,0.9993143919800401,4.865278498364032e-06,0.0001966829885271271,0.0003279965177793481,3.336309098321697e-05,8.899314130186277e-05,0.9681711465915575,0.43721305979591096,1.4481958299653033e-07,0.997487670717955,0.26852568252547093,9.255880114480318e-05,0.9998489575110312,9.283088526514412e-08,3.532029288823107e-05,2.951824958974985e-07,5.757891326355e-05,3.14034686874786e-05,0.0009346643483551963,1.8282016446597368e-06,4.492079679341804e-06,4.138413138940404e-05,1.216781695957504e-05,1.4341751508967403e-05,0.00022382247659657578,0.007512432540814686,8.241905080410562e-06,9.234308474431118e-06,4.960111208070077e-06,0.00019936160987501684,0.00019271825751722335,7.637934458744269e-06,0.007959937063243069,0.00022547269345602285,0.9999587383425289,4.674466001852714e-05,0.0006161182270298255,0.0003160938120686791,1.998167057670045e-07,7.317541899350537e-05,6.171408340332121e-05,0.055865817732910994,0.020040091063134088,6.633959534273102e-05,0.0008440676754703157,0.025619221038621274,2.8251613380443086e-07,0.15954548440950989,7.231042399197118e-07,0.10383458938701251,0.9976901067139257,0.9908195527247472,0.0006756237649347134,6.305726387847493e-07,0.5158934540766106,0.0007790473178005217,0.5745797852649217,0.00502267099448868,1.5755643913610744e-07,0.23185818362594515,0.6357665411665069,0.0001562497598388353,0.009566938137059363,1.765017276397187e-05,1.306966532555138e-06,0.003727463514521475,0.6762081298141058,0.9696866561955778,0.9998118091337507,0.00011757664329045122,0.99674119420176,0.9998512157929093,2.562275314590007e-08,0.999676778321306,4.920414870984568e-05,0.8269387614573345,3.25856394509535e-05,0.9999966171341715,1.785708191064575e-05,2.549237408404688e-05,0.29875667592923394,0.060840063946707275,0.009423595990032682,0.0004459239301214008,0.010890730445286516,0.9999415902908924,0.4019500075142612,0.9999278172956438,0.9999537103347668,0.07288832936751259,0.20876608119759527,9.507320432527234e-08,0.9999965665499413,5.722762791503353e-06,0.00020559803308838496,0.0004991398338609917,3.3394667118353105e-05,0.9999977773133523,0.0003096277105083185,3.379019753316732e-07,0.9999562163126042,1.457989331998859e-06,0.9999813746225827,0.0003050467491206763,0.43871683841466375,2.787910847319713e-06,9.686599816199768e-05,4.185256093714018e-06,0.5713258820407874,2.5978940056081026e-06,2.4925788744539364e-05,1.0604593889521403e-05,7.285385172146683e-05,4.4766080888257317e-07,0.9937108187191187,1.287538863843133e-05,0.030508305677365753,1.3984778453342938e-05,7.962528337584921e-07,0.9966569271247819,0.008489066739310127,1.127564136690666e-06,0.000260368644247376,5.709780173866918e-05,0.0006927233047949588,2.589046172334852e-06,5.747204419347049e-07,7.768947911179083e-05,4.40082906032064e-06,1.0613204497449656e-07,0.00016219579572364584,0.0005069338916054699,4.480218309580362e-07,0.00010888373970320091,1.2254001520516465e-08,0.000421420619066168,1.2167816959575018e-05,0.0014943104334211772,0.0026362652404178484,0.9525958218643205,0.03643486707132161,0.0004493914229730826,2.1192789772486636e-05,4.2173183630719935e-05,0.0002824927200077793,3.414855514135094e-05 -घनक्षेत्र,object,8.070845184983478e-07,0.002340218354308428,0.15582075677956428,0.9998369803140759,6.613489598907808e-06,0.9999382253873509,0.9999368126364722,4.503428091798752e-06,2.2399035948733905e-05,8.81308079912711e-06,2.264662871561232e-06,5.590458594330044e-07,1.1686862934506642e-06,0.00020670221109679837,0.2670527762783153,0.04878456338162948,6.59717336399783e-05,2.64051795175068e-05,3.781563056087166e-08,5.933312395209831e-08,2.297942297596813e-05,0.9911178939530768,0.9971383590935882,0.951698325151313,0.9680746133237784,0.9963002807704229,0.00011619364332846983,0.6754368271994893,0.006444505455978839,0.986754787495836,0.9860357795272965,0.0002264590560248908,0.00039382660827197235,0.00019305305661076336,0.95408316467225,0.0040992714642236056,8.407225492118653e-06,1.8633674214160508e-06,2.390393768267146e-07,1.074988137556832e-06,0.9241374653159576,0.036465886774227206,0.7562565769972523,0.9963411374508503,0.7203486699323932,0.0005868837716418116,5.440226675171694e-06,0.0026262182023835947,0.99989047162429,0.00021875153605947076,0.9999737711293499,0.9999998943730168,4.035764132698451e-06,0.0016913322690655444,1.7532939852369192e-06,3.851745781440042e-05,1.3150111974212822e-06,1.959611422500047e-06,3.820617867274493e-08,0.0002662204176276601,2.5669701793610368e-05,8.338457694363175e-08,0.01523094560635806,2.899466896686876e-05,0.9668473821418941,0.98706419992593,0.5278814878715934,4.263129522810716e-06,1.6941310500370345e-05,2.0119390750143455e-06,0.00115986089745011,0.6929895188713683,0.0056768099461405475,2.8014837103909864e-05,0.004502683806560042,0.00010745733443882582,0.9992347088597857,0.8190636977760324,0.08098847224811849,0.005421669130809658,1.1184554218629585e-05,0.07063800771472073,4.833970150748531e-06,1.7925105275280848e-06,0.00015402188760809174,6.142229860900573e-06,0.6790803223031416,1.2030871630397755e-06,4.752242273094091e-08,8.46937142823524e-06,1.4623368684503058e-05,0.0003350794628888072,1.133887366908391e-05,0.00038716957912704697,1.3598495687013944e-05,8.054524357077835e-07,0.7984060493912735,2.3094359584206106e-05,0.9890023785219457,5.908551738074223e-06,0.0001376741664145978,0.00033663884431544275,0.00019893498457123238,0.7742878470157538,0.9347353102740859,0.38166469567970623,1.9712781183119225e-06,0.9024798021924267,0.033026257219541576,0.00020138670868904152,0.9963417352056273,0.006116367824863049,0.7397949033549611,2.4821749249683554e-06,3.744800848228674e-05,7.667209051733203e-06,0.0005545696699666835,5.18372903683831e-06,4.289005918134435e-06,4.7003607715262496e-05,2.765601558068245e-06,1.7559288569758308e-05,0.00022447715673018035,0.9812969206675504,2.9313248412908095e-05,1.775814013017152e-07,1.3728554493091337e-05,0.00011090266311209573,0.0001224902689142547,1.0073643324617107e-05,5.744284017405494e-06,0.00012839211118950716,0.9995852617236426,1.7814759057233588e-05,0.00037164355390770736,8.907597707431615e-05,4.5891640604641944e-07,4.004430509393678e-06,6.056557394676668e-05,0.7050065895663072,0.9099695475648628,0.0015927839480152392,0.0010378821109976934,0.986289630891173,2.373108089025503e-09,0.0008632696754125934,9.730143713518666e-07,0.053325616670749025,0.9500867879845293,0.7456946399782497,0.7488535492215099,2.3179879795026932e-07,0.6759683031521817,0.0002190774363889131,0.08585887776481528,0.0005702199067552413,5.367428089191151e-07,0.3478983450549536,0.8970978746690559,1.2905958830988886e-07,0.12036252531083205,1.8474521196627933e-05,1.0358981117957486e-05,0.015732357258980447,0.7989186262459531,0.9814262342835047,0.9992022628849077,1.3036450131615672e-05,0.8686971278108035,0.9999998199900506,7.384490780775126e-08,0.999627948745631,1.9755991675381207e-06,0.7024760153068025,5.005124577034613e-07,0.9999638937170299,0.00018502169156582176,0.7738705739517601,0.6223124862580114,0.17905370097356077,0.040008673511732644,0.004838841477690041,0.7604467347491561,0.999455301268225,0.5182545285481557,0.9997981660977042,0.9999997746979133,0.3420730530608305,0.028551853967084727,7.631583449092282e-07,0.999635915084961,5.703765088098884e-06,1.246762486317469e-05,0.0003998710038433471,2.6814678268997735e-06,0.9999800661544347,0.00024021615425177118,2.4838788965967658e-06,0.9998493347031462,8.850168951826265e-07,0.9999999721946996,1.2020683768178014e-05,0.5520643302975027,5.692837446356288e-06,3.35365014022442e-05,1.1692878734865778e-06,0.07441224122395777,0.012652612137771945,0.6359911415656931,2.0388523241685366e-06,6.271855875369187e-05,2.4848119128231274e-07,0.9933028999325576,5.334847469858447e-06,0.06217188233593599,1.52379006667553e-05,2.638689490720894e-06,0.9982669605442354,0.001528834968758996,9.301642043628587e-07,0.00010933846140277629,0.18953790256371023,0.0016314582716796195,2.8958507446805654e-05,3.0602010955416316e-07,4.7969262635826865e-05,0.0011508611734335945,2.5506077099647856e-08,0.00951083754217415,0.00045593016916919033,0.02834503226819609,1.4007344452538857e-05,0.0022572807523533237,0.0005976378671979725,2.8113258987580104e-06,0.0008872051705487476,0.0010606322128083557,0.991801506409752,0.0034902626202336635,1.6081062290814763e-05,3.9443750261499694e-06,0.7164008056306778,0.00033580733933501325,1.7281194072726174e-05 -घनाभ,rgb,0.9999999999979272,0.9999392665013043,6.119535989833675e-08,0.9999999999999989,7.066881828594842e-07,0.8995298026342613,0.999999999977585,0.9989087765973433,0.9934657959732583,0.9862362924330883,6.549243569441775e-09,1.605557637313215e-08,1.216312175522489e-08,0.9999618603254218,1.0,1.0,1.7185291702772246e-08,1.2927259995567932e-08,1.7371094766812525e-08,1.754403699192565e-07,9.157096562026e-08,5.898567215224633e-05,0.8964660004090944,0.0008344471272248395,0.11510212922652698,2.8600385717398306e-07,0.9999999999999976,0.06551300326386769,1.0,0.9540078196815248,0.8946878558983691,1.6930529075099073e-07,0.8027794691166983,0.8182786444083868,0.999999999999938,1.0,6.096868564224241e-08,2.76290191390947e-06,0.03298317167283529,0.18800956803773455,0.9999999999999309,0.09720790477538352,0.8296102536625077,0.9925389497251023,0.9999999999999973,5.0051711909145894e-08,1.666715532956545e-07,6.00603630953841e-08,0.9999999999999971,0.0003884678614221644,0.8960082464176904,0.999999999999958,0.9946593615815044,0.5639640313976751,1.0,0.3101928114816398,3.3303163362029864e-06,1.833781045304085e-06,1.4665304633304198e-08,9.819270148892855e-09,6.427905261576821e-09,1.7989107707447907e-07,1.0,0.022162833257438647,0.8319327425571702,0.002334552550215111,9.0946350922218e-07,0.9953660486790495,0.9984229196739808,0.9958347636746322,0.6635446700789225,0.9999999999999714,0.9999999999997184,0.9961323826142934,0.9995160222712174,0.05031717840902631,5.040785204821148e-07,0.0009528914886592826,7.992613486103493e-05,1.1957300452875538e-06,0.9999999999999827,2.1398149727179912e-06,4.1502760978669466e-05,5.5507129559734e-07,0.9982731826401082,2.2484432999205183e-05,1.0,2.699199379478207e-06,0.9999999989614132,0.9999999999999816,0.9989997237722701,1.0,7.29609699933297e-06,1.6343071505664432e-06,9.21110460624894e-07,6.448249097532569e-07,1.0,5.413377793252141e-07,2.6144353156863104e-06,5.561737625323013e-07,2.941894059668666e-07,0.9999999989236894,0.16163281550363093,0.9999999999999958,2.7862952070633644e-07,0.8983810718924585,0.9999999999999665,0.0005259953505433326,1.491267814332195e-07,0.15251768057401238,1.354172121605022e-07,0.9999999999999818,1.0,2.0431168780997842e-08,8.512535707097887e-09,7.331085653152075e-09,0.8668491715872674,9.17107446010507e-09,1.677389212508249e-08,3.265608183499896e-08,1.7889089367586442e-07,9.214412712062704e-09,0.0011049250646348603,0.999999999999668,1.7364321966535068e-08,0.00011373723778078004,9.675295388337531e-09,0.8329796302179605,1.3881441403366122e-05,0.004220450800526442,1.3901514199459147e-07,0.3449884321356792,0.9179540580241616,0.9960446000167772,0.8342195990436008,2.2511103435200425e-08,1.9631447895148206e-08,1.6304143282536033e-08,7.984764127619783e-05,0.954662465887097,0.9999999999998184,1.0,0.6602323393784922,0.9999999999969418,4.876244537507116e-07,6.139445115566641e-08,1.212755963265713e-06,0.0001327571084489825,8.48066554524469e-07,0.0022170539792331673,0.9999999999994564,7.446774841029133e-06,1.0,6.472217847076658e-09,1.0,1.0337099784008867e-08,1.4024019794514553e-08,0.24455566451992242,0.01915732613068094,2.8487456967573176e-08,0.8162332176032661,2.6096239416106796e-08,1.0,0.12489774244239026,0.2836732906060824,0.5690376513059275,0.1912058846426251,1.1750130677466306e-08,9.519694985334649e-09,0.9999999999999936,3.949356216263011e-06,0.894359625300745,7.470635739402671e-05,1.0,2.895778432292094e-06,0.9999999999817111,1.0,1.0,0.9412674505490292,0.24958359222210835,0.14966558358416318,1.0,0.9999999999999059,0.8652629259263763,0.8967690562093434,0.9999999999999998,0.9999999983239296,0.9998389009459895,9.559215963479982e-09,1.3575752553654366e-08,6.3314730208676716e-09,0.23171740222597056,0.9999999999991709,4.190985476285106e-08,0.0012703630541567854,0.9999999999999984,0.7091510174358446,1.2323242469065614e-08,0.8384615501301548,0.5431060944359964,0.9999999999992286,9.187442718445346e-06,0.11803053782395473,0.9999999999999953,8.903506670485564e-09,0.3278823514062554,1.0,0.9999999999999223,1.0,0.9999999999999543,0.004979839403438113,4.842269246928253e-06,0.08941136777804869,1.1905915438506466e-08,0.6792974516498342,1.0093491709362164e-08,1.7960747937910007e-08,1.0,5.251751183026037e-08,2.9763089397281565e-07,3.1022796686750465e-07,0.9999999999979594,0.6533725300362008,0.009999777399702623,1.2005887352263957e-08,1.1283710391483478e-08,0.9999385115309221,1.2572887855205078e-08,1.0,1.7694774758023098e-07,0.9999999999999991,0.005027355737980088,0.9999999999995053,0.21355335906399472,1.7285493528865414e-07,1.751326101648276e-08,2.3491845248153565e-08,0.9485405935493085,0.006028387454753495,3.269730894110074e-05,1.8318746551894993e-05,0.9999999999994758,5.817994405610388e-09,6.527287901937679e-09 -घनाभ,shape,1.048163236827365e-05,0.005839514269303155,6.329352340276385e-07,0.010268379984137837,6.806304813884518e-07,0.9522934188119908,0.04502218740436225,0.0019281500375332794,0.04455920265100157,0.004230221354719906,0.037645213668207236,0.0016193140021904123,0.0326792034276148,0.00015215726251049252,0.011731417445158954,0.9200978499897579,0.018004667841158603,0.0190731195239149,2.2957782188660978e-08,5.017353841131605e-08,0.6276871853781356,0.003222032659755178,0.9999793421462695,0.2991927592892872,0.00024255562660671602,0.0053567635774507735,1.1587395831037487e-05,1.5513498020390415e-05,0.9996304444356895,0.9999873714030835,0.9996943390946619,3.6308381335157877e-08,0.999956026264508,0.0002327187964562221,0.9641449851481588,0.6263116382225777,0.00015513561286538416,7.151709728485951e-06,1.5406808624836957e-08,1.3056693453647727e-07,0.9950206535781453,0.958094911227368,0.9998213251769149,0.9999251956570344,0.9999180446354701,2.434801630925693e-05,3.2632194696725885e-08,0.00030597651842945975,0.2942642756874706,0.00010841204180477316,0.9999785302247256,0.8658838995239458,9.759702410542132e-05,0.996813129714649,1.8955764365607688e-05,0.9998639993788978,0.002677144790680771,0.0023353302507875735,1.5456563662104906e-06,0.802722268312781,0.14204377498178583,0.00040840654179504957,0.007301246602263468,0.0004727115510396701,0.9996599278749139,0.057254059937502606,0.005375169436640033,0.0008182261995127731,0.0012126232141079641,0.0007604028355626721,0.9999722752185832,0.028717522886623322,8.86463240619175e-05,0.0011970577990241527,0.031527765005790916,0.008892637171040682,0.06364011318073182,0.022168308921514838,3.1832271484334218e-06,0.9581729604897185,1.34634570318098e-05,0.8751063699261971,6.806966315430399e-05,4.605891133453362e-05,0.13548916871333694,5.0026926384032864e-05,0.9999973330844144,2.22199451684626e-05,3.642260244128309e-07,3.0035553448522152e-05,0.0009026935147593196,0.00017027233004419503,0.02287782428680736,0.8261421612939238,0.2133769679981598,0.0007420876482064946,0.9999250107893218,0.23032487835830956,0.8194097886066166,0.044549202137743216,0.07911132121006119,0.18829509814942869,0.956768854844883,0.6674730471057182,0.48776573956386204,0.9999373604106628,0.00012039590909898826,0.022081364829269094,0.20390538648576254,0.9830849621039579,0.4540003851895958,3.227647941632266e-05,0.033645535970099505,1.4071009695413996e-05,0.00014618620697292873,1.4370693030346203e-06,0.00011455344344838462,6.636097435052116e-05,0.00012141657063804706,0.00012265391659643395,8.35991622950894e-05,0.00016196325141671017,0.00010859217518708613,0.8679748053116427,0.00018067123546608078,0.0962190552288752,1.613373904697729e-05,0.00029637653993949995,0.0003593539726088405,0.00011002971686910489,1.9720672190563988e-06,3.932966154866859e-05,0.9993857451930254,0.0002830720169452079,0.00019228847974306942,0.9871185610688709,0.9762009202734073,0.9828482785874254,0.0001426645589129179,0.9998527597355257,0.5722345087286346,0.07841292784351596,0.9924825825027204,0.2561743126226278,0.001756303067316703,0.5923427736521738,3.080974861939683e-06,0.00019156335635507225,0.000251795010282766,0.0015863064274211282,0.05723764331727901,0.00028438308765163923,0.9999802556387516,0.8940689253636374,0.9938730945350145,0.8519942750969078,0.0016193140021904182,0.0007270665878196343,0.0002099267778626926,0.006312624633065954,4.4391674364370216e-05,0.8118385353053499,0.07816794846273317,0.00010399441322567447,0.00034140309837494637,0.0004950746394087945,0.17193231623196858,0.1847935447605483,0.9967749978117544,0.011937803139401147,7.329608478246134e-05,0.7374359922707018,0.00031724672496181696,0.9999983606732903,0.0002910369023488362,0.9899222213247019,0.00012380603535143753,0.008082348726009807,5.2448786961863164e-05,5.874186129062896e-06,3.838796250775434e-05,0.06865581012607543,0.32478322919640995,0.9999997122559368,0.9999966268169682,0.7538659423971572,0.5371505477381256,0.9870447289099183,0.999103980458398,0.02695169497850423,0.9999082648174364,1.4922743833769002e-05,0.0005926712470625737,0.013598483707938782,0.00035771048881941665,0.9926533220837686,0.00035367038522154807,1.488986811101171e-05,0.9993359116516042,0.01069747060789586,0.9838671919980714,0.004165720296068996,0.0004607986188313519,1.8980136272394703e-06,0.00032777234874377387,6.217258735095062e-06,0.8388730278827434,2.9387640344038697e-05,0.13223406612101749,1.5774047700324025e-06,1.9284111585951407e-05,2.189927781082631e-05,0.0010398276496293329,0.025856804124398645,0.0010693078673084688,1.5685797429145426e-06,3.98324794854271e-05,0.9620641530015974,0.00011963946923476637,8.903149208032988e-10,6.347308563381024e-07,0.045286797064359285,0.9999195043540948,5.298666389356402e-05,0.0030700607590606814,0.6940560453147396,1.77651872105409e-05,4.1482616806286635e-07,0.5618268623913508,7.115654777983998e-05,2.8421549000421415e-06,0.00015419388814220006,6.006939741599148e-05,0.9998783138759115,8.359916229508926e-05,0.00010344872050535239,3.8720619140292255e-07,0.999991559642078,0.00028369679399226826,0.14013458428426925,0.00022018512802180637,2.9649848545597814e-05,0.00016097300814144443,8.082217844684303e-05 -घनाभ,object,0.000312583732565029,0.1404164185667127,3.783966087910518e-07,0.08901952288745552,1.1201043088943523e-06,0.9490210439009628,0.26512953134407985,0.006792158776069263,0.1291665953080742,0.016840086005448614,0.0026852163096767966,0.00011651708714460126,0.0010223493999860214,0.0058939216931501275,0.8402583092075988,0.9994437227866472,0.002667405220786065,0.0006122748969466659,1.2590399672024365e-08,6.441724282546739e-08,0.16613788622834982,0.000562580712065588,0.999969080566551,0.02923184630744308,0.00035497082798662205,0.0005950128829788447,0.0003302643383139577,4.4845188857987695e-05,0.9996895519059903,0.9999706672578837,0.9996465191681426,3.7795258540108545e-08,0.9999546607649566,0.0001945148896165665,0.9981557502057643,0.9791391242471323,1.0417567199301299e-05,2.809566688370524e-06,1.5510741757438285e-07,1.0892624533139248e-06,0.999796009334667,0.9611451310561387,0.9997011760290985,0.9999042861446236,0.9999456811922184,1.1748221700000218e-05,3.859518652051396e-08,0.00024572199069671093,0.78710570299211,5.36930089538693e-05,0.9999066482791447,0.9628680823060601,0.00021406164461693823,0.9976822110407683,0.003097265958719852,0.9998381540106558,0.0002671466515432569,0.0013108235816023368,3.000385883757511e-07,0.09146420663687033,0.020618896194654738,9.70350044458986e-05,0.9185080360134373,0.0008201215308244379,0.999674771345478,0.004101765588738521,0.0011828591552960955,0.003501367308500796,0.003087151683110371,0.006534370913608775,0.9999878399921395,0.7976126039996181,0.004417086688922018,0.0017499862453833513,0.34860745201382143,0.006701260996732209,0.004383207937664019,0.0019395967200176063,1.8033788126505801e-06,0.8044789830980953,0.0005704745873950387,0.4376289806272836,5.073558259283571e-05,2.6695062567047454e-05,0.13558728709918763,2.7559168879047284e-05,0.9999994034863356,2.5678860105573437e-06,8.785287193985248e-06,0.0022188566315278786,0.0031315218836375776,0.18534075452829518,0.0025242314845448297,0.20667846555329092,0.012552206476711533,0.00015583250728957643,0.99998171171023,0.01323756788280408,0.5895232324414662,0.017517148002524775,0.05335780987395968,0.44845780561536014,0.9686356053760368,0.9847444490459106,0.23080324607764588,0.9998833101961216,0.005176992773324551,0.0014888586972026123,0.0016915745400417506,0.9901621642079198,0.03402452252060327,0.00610091893489822,0.9033830795982357,7.669959909911903e-06,9.145798983921927e-05,1.8677777793985126e-06,6.499440914724134e-05,5.53556246896354e-05,6.675571108242167e-05,6.882902842974746e-05,5.661006469535217e-05,0.00012758424616043118,0.00014006132027052844,0.9944064837328375,0.0001277326952583576,0.01658867400245172,9.315730776113762e-06,0.00024891128208913855,0.00014420270020574824,7.4954979051475e-05,2.5194888640191742e-08,4.6126269961862515e-05,0.999482863089664,0.0004438849624436958,0.00014515725280013595,0.5233693552504874,0.7850075058306101,0.41460754848497683,6.914027853333497e-05,0.9998162902355637,0.6692509478230508,0.9036637805674759,0.9927273907510281,0.7669042563169782,0.0003048286127014466,0.031032169820859493,2.437178326004818e-06,4.41131215661691e-05,9.510191018107042e-06,0.0005105106035998207,0.6712172597952845,0.00010913271864717261,0.9999954810772915,0.18351923448744645,0.999526669896711,0.18680003115145516,0.0001163024718649879,0.0005664616829937758,0.000446618342505492,0.0003816383265278994,9.223943606854492e-05,0.1142553255492337,0.8032739914551332,0.00010973431638728856,0.00031132356448635654,0.0008092494821065254,0.11001931552596068,0.03375597437464958,0.8441311349558297,0.3920414310902852,3.3627845273422743e-05,0.7613480302902134,0.000256477676807422,0.999999864200789,0.00019720273812984132,0.998450275634846,0.19813011606323708,0.7189517146841939,0.0001552933639332505,8.14713208118637e-06,4.435915729694006e-05,0.9700083517869049,0.28578800437968843,0.9999981850284131,0.9999865533640135,0.980393136112025,0.8673218816547439,0.9959260755594855,0.9723046460782055,0.0008526655223189133,0.9748225074028608,2.8827728917276026e-05,0.000576998205894463,0.001887148299472855,0.00036577457903759215,0.9992572507523643,0.0002451105864704697,8.71712331758519e-06,0.9978449256321803,0.037948218515238726,0.9989489009736205,0.0011653817014327132,0.0005014615859589038,6.411951323555035e-05,0.00019831738860014666,2.5029402857179067e-05,0.9821266137207147,0.00408991353756891,0.8902455543723407,3.0050107588524114e-05,1.0428561845061592e-05,9.883247932425406e-06,0.000888231466939194,0.0017021708147524166,0.0013860803957471486,4.747125672754233e-06,1.991179238480262e-05,0.9998628076200378,6.85127440619745e-05,1.4809564231189678e-09,1.0138363505792152e-06,0.4441116582744061,0.9999636971694756,0.00014735460812645535,5.3756290822571955e-05,0.1824345690527961,0.0022287581122153897,2.4266232166312558e-08,0.99872952123741,7.473665696658309e-05,0.003027730367722349,7.897069274546848e-05,0.0031335740237746494,0.9999161345090022,5.7201113178096686e-05,4.6541208911052656e-05,4.77689185624946e-07,0.9999563563070121,0.00021522726372176582,0.010881003476692293,9.451576731098691e-05,0.00960254750158354,0.00010622430744926428,3.92850742772114e-05 -चीज़,rgb,0.9998217626512854,1.0,0.018674200086083656,1.0,0.8097022190418508,0.9998756355151447,0.9978902167000598,0.9941877046446052,0.9799672333749347,0.8215054044994725,5.7117718553737665e-05,0.0016007575905262262,0.0006169326044524478,1.0,1.0,0.9999999999998355,1.1202349026593649e-08,1.9505247477349925e-08,9.468585878854758e-09,3.1506509757022135e-06,1.4129539015439553e-09,2.948303999232738e-09,0.9996970715618039,3.048059180979383e-08,0.9999996368791852,4.036999410403919e-07,0.999999798894051,0.9999985942258476,0.9999999999969662,1.0,0.9998698113775607,0.3634704729827785,0.9994877364260149,0.0020108647734654247,1.0,0.9999999999994513,1.658930779007037e-06,9.813324979373188e-10,0.9972707109475978,0.9841490701482137,1.0,0.9999999999999962,0.9997911264220987,1.0,0.9999997034023995,0.10044182961342872,0.4558345403397696,0.017287377732287737,0.9999996744251151,7.607224600863264e-05,0.999850385964294,1.0,0.959681495150777,0.9957936152083073,0.9999999989306347,0.9956745590741063,0.9990171934590217,0.9978710790657416,0.0012598145974454214,0.00029498812893998856,4.859019307248276e-05,1.0931831756493609e-09,0.9999999999999971,0.9999999999999303,1.0,2.0130973813762067e-08,4.059528367546336e-08,0.9335784093705015,0.9899518317465595,0.9876144967467859,0.9981782324350961,1.0,1.0,0.9009794086417514,1.0,0.9999999999999791,1.9070209775946278e-07,1.7263748848628794e-08,3.740355652080156e-09,0.995909740579066,0.9999985782508963,0.9968933819515939,1.2495551060322139e-08,0.9840230119220927,0.9921889595008798,5.90270312985725e-09,0.9999999999987821,1.0923006499650062e-09,0.9485359703709707,0.9999985340447054,0.9927662580098376,1.0,0.9996964961155809,0.9985072627121073,0.994110081508273,0.9888374400600465,0.9999999999786346,0.9832895079806165,0.9980177006230541,0.9804347041946989,0.9357797713209294,0.9340152539695963,0.9770053280883912,1.0,0.9488973693188872,0.9998921149470835,0.9999966044214911,2.2435693810427172e-08,3.485910083989074e-06,0.9641236096089001,6.086723017747704e-08,1.0,1.0,0.007369601570714303,0.00022125795049505158,0.00012049237694238353,0.035173411362120224,0.0002804740205573588,0.0016172953935864405,0.0002303233717468172,0.349722980104908,0.000508549871196802,0.00041419489427115057,1.0,0.0056875755748119795,0.8041430147207453,0.0006676605672446054,0.04775479123633744,4.05240556468797e-06,4.399622156633647e-06,0.00010297775904487028,0.00023716689387211643,0.9999047399654233,0.910343907189082,0.02114278771077153,4.558259663353195e-09,6.780602477334468e-09,9.387262693059296e-09,2.3593251471369125e-05,1.0,1.0,0.9999999999999694,0.9977709390605449,1.0,7.752192949969609e-06,2.3867774014793667e-06,0.007337466130204597,4.9039822216258105e-09,7.722877273233462e-08,2.7835345354258793e-08,1.0,1.9102765522328098e-07,0.9999999999975542,5.338494378056534e-05,0.999999999074241,0.00038215270032411144,0.0012411370926436042,0.9999999948656861,0.9999999510554054,3.792371517478284e-09,0.9999999998344344,4.4247814691531294e-09,0.9999999999970441,0.9999999227006287,0.9999999407831854,0.9999999514517045,0.9999996616648824,0.0006818453877766303,0.0002679451876962378,1.0,1.6362327923625969e-07,0.9998479753767748,1.018624450654888e-06,0.999999999999978,2.245532341532803e-07,0.998255779129842,1.0,1.0,0.9999999999219984,0.9999999921775441,0.9999999591516621,0.999999999999936,1.0,0.9995769788382851,0.9998905260569899,0.999999986995832,1.0,1.0,0.00027012527947968963,0.0010244663632176132,4.471709576819411e-05,2.289338179304846e-05,0.999926302837216,1.9024718403349066e-06,4.391959361659103e-06,0.9999998081221493,0.017451987122454587,0.0014557180726894228,0.9996698606360178,0.9933028820621407,1.0,1.5822422589060625e-07,0.9999977579367747,0.9999996478953853,0.0003079016471481031,0.9876000926304512,0.9999999985654342,1.0,1.0,0.9999958904073741,1.5754161496544467e-06,1.0066796052967855e-09,0.9999995341126097,0.0006411199348589248,0.9999999153745837,0.0007610457651269871,0.003698225397065731,0.9999999999999998,0.03788539667934498,0.6300886098758501,0.7855446104643833,1.0,0.9976922702480104,0.9999999999996596,2.1878409410060515e-08,2.841977975722765e-08,1.0,1.3820208362519015e-08,1.0,0.34302374877310476,1.0,1.3173633458091526e-07,1.0,0.9809436937400805,0.4040927896681149,0.005767291641243282,0.00681836246483434,1.0,1.5101758322984954e-05,4.1780069581967884e-07,1.4076415350595122e-09,1.0,1.8693403798213862e-05,5.432797547108254e-05 -चीज़,shape,0.9452730500329214,0.9999997655010696,0.8463789166068189,0.9988052807786205,0.9999993330188856,0.9999892915738404,0.9995490824973181,0.9999990118640859,0.9996838372127875,0.9992747832990156,0.9999999999907765,0.9999999999999396,0.9999999999985951,0.9999982035076784,0.9999999999999936,0.9999999994101625,0.01671562314554656,8.72199783945153e-05,0.9999999999998848,0.9999999999999984,0.9999747744951261,0.00017318218313750096,0.9999999988797081,0.0003921037245136712,0.00023777528617765996,4.817402289093276e-05,0.00024160141704477277,0.008005822305400305,0.999738847953731,0.9999987821929093,0.9999841942728455,0.9780020500330611,0.9999989836665437,0.0018612886324303073,0.9999650107523127,0.9993535915794877,0.20862957276969632,0.00016958093331361176,0.999999743630132,0.9999999999999092,0.9999944326870535,0.99993442103152,0.9999070716019731,0.9999002544789312,0.9998462570251001,0.9999952840008609,0.9978894153388782,0.9999993340471939,0.9997529691961601,0.000259634669755684,0.9999902999169372,0.9996936248563734,0.025344886963946007,0.999936055913924,0.999408715548542,0.9999963532147085,0.9999999997604154,0.9999999999999687,0.9999999999990445,0.9999982047179784,0.9999907052421333,1.0,0.9998391254662707,0.9999988912163832,0.9998732218829673,1.42380737317289e-05,0.0004485716963906527,0.3522939049689838,0.21546137571538762,0.9999993458449798,0.9999855798137018,0.9999466663107028,0.9999853681184206,0.7806400766487853,0.9999999448057041,0.9999770531772272,0.0006779512173644271,0.00017229846948549625,4.8140101922971836e-05,0.9999999834147388,0.055119529610754295,0.999998554611215,0.9815018413413853,0.999999999999996,0.9967297158423759,0.7479590443403268,0.9999976158161545,3.633463166282111e-05,0.9910279095436677,0.05210296543616738,0.3524045635993628,0.984128275842013,0.9999996574847768,0.9796343175609697,0.9999991264464468,0.9999999999998848,0.9997128743158032,0.9999472490910882,0.9999999980415348,0.9999999999999938,0.9999999999559541,0.999941154325364,0.9995884820544965,0.9999950814792318,0.9999998491251058,0.9999998734451621,0.9999932630002772,1.8910047560532922e-05,0.000633140127751346,0.9999445808314411,0.0006874001580886809,0.9999416628648973,0.999994340163368,3.9793965804287345e-06,1.4088813733602529e-05,0.8284695671898661,5.8572036400613e-05,0.00013014681579718418,0.0002064727057971988,0.9999732695494058,0.999999970876478,0.00014976329824003637,3.849717133274467e-05,0.9998872684369395,4.015487298679961e-05,0.9996436736445309,0.0001053822894877313,4.122066215256265e-05,4.85755719356445e-05,0.00017268557263742937,0.0002680850123802596,0.00028704123442760984,0.9998861623072878,0.05170271971572618,0.00021774048422113418,0.9999995349909125,0.00030917223198806816,0.9999822166970005,0.00011781834651383214,0.9999858940212658,0.9995780454374837,0.9985477796478802,0.999999980435735,0.9999986383113898,0.9999999987903492,0.9750467581501694,0.9999999999999998,6.35359092843145e-05,0.00044961182923794414,2.281739961852782e-06,0.9999887509613308,0.9999994475195154,0.9999834153934914,0.9999744386388877,0.9999992403500373,0.999999999384009,0.9999999999999396,0.014077058971863076,0.22423119450864795,1.0,0.004167466569723105,0.00027536050117371293,0.05581979697569092,0.051401641658620545,0.22649164559796525,0.06859139505342735,0.48011578442444675,0.9999999999968612,0.9923296964198399,0.9987170061633015,0.9999999983389158,0.9998840634759034,0.9999979293836239,0.9999384584931789,0.9999989479415258,0.9999988503022941,0.9997873077786553,0.9996714422373351,0.5410723152402148,0.0020218781340396444,0.0018592252917561578,0.9999438041340936,0.9997282822684788,0.999999998256373,0.999999988844179,0.9990739488405159,0.9989471070404293,0.999999275615518,0.9999999983971266,0.9999999999949836,0.9999997023750617,0.0016889321042727425,0.578026174090461,0.999889096417323,0.9999965871680235,0.9999955083586638,0.00024568276381102506,0.0006880765267669107,0.9999200055505383,0.999999999994208,0.9998837841404049,0.9992350912090048,0.5947649331341114,4.3425714524796e-06,0.9955486661453088,0.9999999976994896,0.9999850203242984,0.9999999995626623,0.9999999997994298,0.4063965622939806,7.3969011165128e-05,9.662339450835045e-05,0.0012069019598645772,0.9999977875261515,0.03279274710406386,0.007044119216017453,5.697910319679865e-07,0.9999999998034732,0.9999833660913304,0.9908104098698148,0.9999975154916543,0.9999964086293579,0.9999571828181147,0.9999999473878528,8.15689197829156e-05,0.9999999324847152,0.9995585866659057,0.9697902065063697,0.9997623450283782,0.9999999930801016,0.9999999995462665,0.8944125141258262,0.9999843768409377,0.9998399391174031,0.999999970876478,0.9997610743135825,0.9997371547621335,0.9999991866871085,0.035837740299544486,0.9994817371159584,0.00020104113527730854,0.9999409802240119,0.06347299004263979,8.41755337450854e-05 -चीज़,object,0.9258485864134738,0.9999999037130027,0.053285973027523276,0.999321543097354,0.9820403724757323,0.9999781984636216,0.9993008257352475,0.9999508997408985,0.9995649957991307,0.9962022829602389,0.999987777408303,0.9999925684220843,0.999994004394938,0.9999995766288716,0.999999999999744,0.9999999771181413,0.005754255507815078,0.00010565095370571086,0.999583663825538,0.9999994936421498,0.2416850204019532,0.00014871075701034965,0.9999999333958842,0.00022908842803855896,0.3660842709485701,3.329644763018181e-05,0.039102237946366254,0.6989167732341324,0.9998135021460344,0.9999994743192359,0.999982095866846,0.15715111738454937,0.9999964461933669,0.0030759793003391086,0.9999993711829394,0.9999772691586748,0.0006150469171837861,3.5114526406059696e-05,0.999877656157646,0.9999999953150767,0.9999996864345881,0.9999370190918073,0.9999726437406606,0.9999955169886146,0.9996962474415055,0.924491030247675,0.24393000733692624,0.9942191625003778,0.9996176077340176,0.00023171340781253448,0.9999943417569472,0.9999684551206135,0.14579496362253935,0.9999385037812839,0.9996253809563991,0.9999818000354154,0.9999897377685356,0.9999998849869866,0.9998190162381405,0.986286760164378,0.9498575349471173,0.9999998552599049,0.9999925949654501,0.9999925042968161,0.9999792615869608,4.37530853218264e-05,0.0001757316558694861,0.7878222709643281,0.7678252518311218,0.9999652407271025,0.9999985549828658,0.9999965593656267,0.9999992213080067,0.678397201583457,0.9999999434723609,0.9999831296810094,0.00027401493092064807,0.00015541865388122997,2.335392882785085e-05,0.9999325230894809,0.6641323369131695,0.9956155042371712,0.17962138366363783,0.9999998150415794,0.9902034339270054,0.12709948755938333,0.9999992928071156,5.9802786862389075e-06,0.8598823241322626,0.7868285456327406,0.831069226306696,0.999819062438251,0.9997679059045818,0.8345262122116242,0.9992100084469445,0.9999995536362226,0.9999431583585846,0.9930257750281304,0.9999937246494603,0.9999999619892627,0.9999957202506645,0.9998538869517419,0.9997665722006684,0.9999998411311347,0.9999187708458911,0.9999994850908063,0.9999647124222194,2.4236699266418952e-05,9.064085644297624e-05,0.999942833393725,0.00039415733016749503,0.9999939864740003,0.9999993900582392,1.4845503218564626e-06,4.1184772072374314e-06,0.011497668630301786,0.00014008774797153112,6.73360523266773e-05,0.00012125797725927374,0.8672613012067764,0.9944377082191,2.5971612957411806e-05,7.035603272510416e-05,0.9999975979015558,4.674088977939132e-06,0.8179420948099633,1.0634184839477215e-05,0.00012022565678265721,2.4615235959488565e-05,6.696142387054443e-05,6.631801549317983e-07,0.0005751896629066929,0.9999139207530214,0.15196013871820035,0.00017296075649405972,0.9851565785786905,0.00017816365536908586,0.5276238680763459,0.00011956804902862425,0.999998426698759,0.9999635601519536,0.9998862295729237,0.999999679059504,0.9999995476924063,0.9987085915906077,0.010898316672829356,0.9999999937374426,2.679498950236453e-05,0.00013117942895671364,5.1189830416529585e-06,0.9999960201793029,0.994201131066131,0.9999956482597303,0.9673768472570651,0.9999836286375229,0.999914433138206,0.9999928488367973,0.8677536479818829,0.9653413923472027,0.9999995595163986,0.7724550051193242,0.00012908996967396353,0.97879125522574,0.7001687164280262,0.9780348589806582,0.966942478204356,0.9919316002358058,0.9999688823598547,0.1423846388899022,0.9997819113581623,0.9999674749106618,0.9999429274516614,0.9932524889279541,0.9999981607290979,0.9911310037236756,0.9998849867060474,0.999981264075736,0.9999954827579186,0.9989172105810182,0.4474781580505984,0.33096997231913816,0.9999965621237847,0.9999320573627839,0.9999996224029153,0.9999998752952446,0.9993554776646191,0.9998240495773105,0.9999999458427229,0.9998466337966295,0.9999711097155596,0.9798433993773081,0.011353692563207776,0.13358014075251212,0.9561491120746991,0.9976430259018854,0.9999669263211045,0.0002702384847777688,1.6243206839866e-05,0.9999584865828894,0.9999999867094389,0.999977865075753,0.8082083328374553,0.9864045964905732,0.0012884759730172489,0.014189617207733634,0.9999962078546955,0.9999525428396409,0.9999999886170124,0.9999999999776459,0.2549333958987927,3.0388478211155663e-05,1.85798573161192e-05,0.47332325665127023,0.9503261218741436,0.8658387177255654,0.00012258254494788257,2.1711937329832138e-07,0.9999999997580205,0.9276760961875594,0.10804468037646912,0.9725148095020038,0.9999997570420796,0.9999969577475362,0.9999922686526381,3.9937124790844176e-05,0.8110845053002113,0.9999400797067792,0.011501957492927525,0.9999981507929595,0.9999617111425704,0.9999999971379103,0.14757177766162474,0.9999983424604474,0.9999062746827461,0.9947752202141404,0.5912861533014395,0.7446589588490552,0.999999280950359,0.007238982132791852,0.5731389590490589,9.45792717282658e-05,0.9999953005241575,0.004784120749370249,7.4662338856487135e-06 -चौकोर,rgb,0.9995111194241202,0.9999999999999971,8.244620140349303e-05,1.0,0.0029470527964264373,0.9936538375054728,0.993080459504622,0.967456180924825,0.9032000852308799,0.622298811851478,2.5375573847626617e-06,1.824835228672242e-05,1.003630556998685e-05,0.9999999999999989,1.0,0.9999999999615179,1.1945299865745119e-08,1.6097029448179275e-08,1.1089039829348051e-08,1.9195417833895683e-06,5.643805701901665e-09,2.1410045090212866e-08,0.9886704958765464,1.0860838764009063e-07,0.9995639766107132,1.0221916546565661e-07,0.9999981994455617,0.9988218814905997,0.9999999996291555,0.9999999999939755,0.9933916943790796,0.0007951628709985661,0.9814626054237382,0.004858481528236346,1.0,0.9999999998966125,9.186108923291905e-07,7.347277758025191e-09,0.8613589754154596,0.7541347353974549,1.0,0.9999999865080547,0.989934552574057,0.9999999999997087,0.9999949210619618,0.0002989013601369487,0.0010420953509415025,7.824818377976804e-05,0.999995024735813,9.897140889484654e-05,0.9927947322444555,1.0,0.8558102156290414,0.9134902924844757,0.9999999508903621,0.8921940041892921,0.42881984773849413,0.27438250430087074,1.5791169365592414e-05,6.409352065289263e-06,2.269563049660475e-06,5.558501017865265e-09,0.9999999999986435,0.999999876095726,0.9999999999596909,1.2507515960766559e-07,3.239573603068495e-08,0.8094989219243878,0.9504930742056238,0.93357049360051,0.9521975090688161,1.0,1.0,0.7649365595249787,0.9999999999997242,0.999999955723619,7.094077510889745e-08,8.921495944287387e-08,2.5098196495438713e-08,0.17883187561392755,0.9999910835361306,0.24742314031663834,1.3075395255602942e-07,0.06701023567902091,0.9573635942928991,6.549394933669294e-08,0.9999999998182354,7.3040139563546785e-09,0.9509877541928763,0.9999909626993899,0.962943081681932,0.9999999999999636,0.666214394413955,0.30251564983099305,0.13634682256389963,0.08583730166580082,0.9999999981494523,0.06473901268123726,0.3147893223501864,0.06058040302758463,0.023585445301271258,0.8743012201115787,0.6974314600389352,1.0,0.025835430078789783,0.9941929411053867,0.9999603563950439,8.415440162869048e-08,3.4394304832445326e-07,0.6277523374708996,3.2110134989283856e-08,1.0,1.0,5.224550026800676e-05,5.6511223891506065e-06,4.062298540219382e-06,0.038131273322705383,9.253562531269905e-06,1.8145412635881234e-05,4.476868133383439e-06,0.000759146221367311,1.1524531302441006e-05,0.00038468239459825377,1.0,4.62540961334909e-05,0.08084375434484911,1.3578763577052564e-05,0.04520568156668974,6.714418432467482e-06,2.1075690151819473e-05,1.6867168362277654e-05,0.0007722034450089796,0.9948994329374486,0.7775215238540414,0.025744292163118587,8.29121039592377e-09,9.522477799465014e-09,1.1191843018167282e-08,3.228823045141731e-05,0.9999999999948952,1.0,0.9999999999918645,0.9456853058155141,1.0,4.603015686084478e-06,1.167778661495516e-06,0.0004766755264111825,3.1777048944512426e-08,4.568103152379421e-08,1.3792552726943572e-07,1.0,7.120751240735757e-07,0.9999999996663649,2.452321049935205e-06,0.9999999564733354,7.573036991308925e-06,1.587836327192243e-05,0.9999745411778161,0.9997800205404305,7.362656679689732e-09,0.9999984427331995,7.81094901239392e-09,0.9999999994477424,0.9998348292613604,0.9998930808443457,0.9999306558099987,0.9996428880275868,1.0968813713641572e-05,6.064385069158463e-06,1.0,5.585741862594162e-07,0.9926934029585239,3.6582042767338027e-06,0.999999999992659,6.514205930022442e-07,0.9941041482382663,0.9999999999999816,1.0,0.9999992990972871,0.999967393226022,0.9998941683772989,0.9999999999814109,1.0,0.9850713160630189,0.9941163431122999,0.9999996455903376,1.0,0.9999999999999831,6.0875046928073e-06,1.3956086816272614e-05,2.1798344263760056e-06,0.00013062076374566355,0.999762287818451,8.901957049189082e-07,1.7201125617282496e-05,0.9999968751445957,0.020093668093532528,1.926386618811268e-05,0.9866871738446943,0.884387807623926,1.0,6.507904305386027e-07,0.998671062889713,0.9999972271357219,9.319863131083288e-06,0.8087748239390548,0.9999999371948283,1.0,1.0,0.9999779746388897,1.0271277701432242e-05,8.832225905956653e-09,0.9994527452942112,1.0415447127234993e-05,0.999913072202363,1.3609952309433979e-05,3.2571137664942966e-05,0.9999999999999045,0.0001392296446553264,0.0016299593474673204,0.0027727791917068435,1.0,0.9441758035802118,0.9999995940456121,1.7225989936967234e-08,1.977273114378818e-08,0.9999999999999971,1.3963523694642236e-08,0.999999999999917,0.0007443292211434517,1.0,1.561314317221506e-06,1.0,0.737562547903605,0.0008950460615209822,4.653543958865213e-05,4.697660077034279e-05,0.9999999999945315,5.383414966235724e-05,1.664791506871523e-06,1.337057014394949e-08,1.0,1.3908662992273616e-06,2.732441195140907e-06 -चौकोर,shape,4.982948299537712e-05,0.0005280567805933631,0.6658435575992201,0.0005717467287758611,9.603610813200134e-07,0.9999540777436139,0.99996241608694,0.0003998514685269966,0.0010059450892190226,0.0001305291533135037,4.243438078188143e-05,2.1516787377528007e-05,1.0593943787456225e-06,0.00014498253480622832,2.6956404136404566e-05,0.0018613037394250925,2.1348778004358e-05,3.244620096809007e-07,4.0544675576046916e-06,6.587452099818729e-05,0.0003115645172234968,0.9986546787734211,0.7971404012924979,0.9585350554734319,0.9879366841340932,0.9971471577679611,2.0825994427275843e-05,0.9620227423910737,0.0016405917490297374,0.05615939924978073,0.8691062189473352,0.00028669415324505157,0.14999511542974694,0.00027986077438916406,0.032351210289531945,0.047898273273917845,0.0029473337927304797,1.6667255964626723e-05,0.2590832493895574,0.031122317690141205,0.000712079282739287,0.0007876219300863358,0.9644815065166059,0.9545621453690608,0.9379620672602392,0.0007478311904751261,3.709063021698156e-05,0.0004899093450378488,0.9998713710071686,0.0010957368721783401,0.9999615880017677,0.9995745617151376,1.06901631208853e-06,0.001263009504786661,8.026379613794817e-07,0.5524549430993274,0.00015872206427892295,6.920086573681599e-09,2.361946041723261e-06,3.469216033280274e-06,3.958588926390576e-06,6.6318409163517105e-09,0.6157567852480021,8.282377351119108e-07,0.012817621269673849,0.9966435295542201,0.8023307056140238,3.943141728320101e-05,3.562317062000669e-05,0.00014396844428082178,0.00015686319706235824,0.0015091088520862246,1.0984247466260756e-05,6.5711269937534185e-06,0.00016204736850737163,1.4836457801101218e-06,0.9992327346694668,0.9938499724274751,0.8669758805139326,0.00027796046023065144,4.4700752364710486e-05,0.17524177354900503,0.00018071639726790033,1.5033924183803735e-05,3.375170864143978e-05,0.0017218387090167948,0.015360354583897297,9.648601864216383e-08,1.6199560659271836e-07,0.0002864872077422047,6.407032952228954e-05,0.00015207984428144037,0.002222919005928113,4.080312456631511e-05,0.00044740048612668327,2.5748246748573873e-06,0.9253219501868695,4.263837707410805e-05,0.9533140649438079,2.1259156641024164e-06,0.00010157758866302091,0.0011200156668189766,0.0002310118466518858,0.00015744865705923526,0.8715359851648689,0.07275909310657117,2.5138019128705353e-05,0.9809198847390355,0.04436508000276329,0.0019267635463239912,0.9972642202434444,0.004508300115847018,0.0023683633453777182,1.1459267864011628e-05,5.211107138718114e-05,4.540848788457727e-05,0.0007947161388053307,1.381096956115941e-05,3.534557267064822e-05,4.806562743648762e-07,1.6504188542167916e-08,9.958798841958581e-06,0.001278548237528502,0.019945818841630294,2.2551482574025677e-05,4.61897193371044e-12,3.4120308593628406e-05,9.590396047411209e-05,0.0010021480750510682,0.0001650430397145133,5.31730194590979e-05,0.0007925842703312266,0.9996165711255538,7.319164176727498e-06,0.0008535822534806817,0.035848700559873055,1.5174734376889131e-05,9.543781101359418e-06,0.00031004447974312943,0.0022303579641776107,0.006773100927178454,0.012517557100740255,0.0010369411206337458,0.017153058737890935,4.796999829702115e-13,9.010273476991738e-07,0.005463626693954483,0.6622979183447341,0.9867440972195668,0.9354859813673696,0.00010920213866010802,1.3037924637954397e-05,0.013184099625964217,2.487023451886178e-05,0.038594938603882904,6.790137350851331e-07,2.1516787377528197e-05,0.3746542416814642,0.9942595807915924,3.7546181795632135e-08,0.5631944767021155,3.124326557542752e-05,0.001960740524152518,0.027404556786530265,0.9661433825318462,0.9966546600853048,0.9972359198939913,2.0577892353091573e-08,0.0005098981402435593,0.9983694103514055,0.00024025475593814798,0.9998180934863078,5.0420643041426105e-05,0.001632424285348349,8.494749606422745e-06,0.9999838707582661,0.0007993350101994744,0.00040728226987082937,0.9175382713006098,0.305704595706185,0.09440084476441282,0.05655581020619987,0.002673095249623098,0.9002033727522321,0.21262108129327856,0.9998409322537111,0.9997709447698157,7.096269860469547e-06,8.568647872394149e-05,1.440327226621848e-05,0.0012560688456192193,0.00010580067205817526,6.97679357151759e-07,0.731744193661342,4.840314820116375e-05,0.9999268164262096,0.0001693239441196613,7.68473742926492e-05,0.9998729886439166,7.35103631688794e-05,0.9992999252025256,0.00018224451495513192,0.7879968944894233,2.125349123604827e-07,0.00012020281845953365,0.008525837869074175,0.001674563980209985,0.001387832568254916,0.0011852885767528211,2.442537643056323e-07,0.001960553378785581,2.0962750196671298e-06,0.9934660984426207,2.2338350000769312e-07,0.03169475608819753,0.0001313590923240387,2.230025837833056e-05,0.8815020475726085,0.0006170566554250859,3.607790238020514e-05,5.989453617617586e-05,2.2220245419167167e-05,0.00016865083815776642,1.0918104722997312e-05,2.6572249405587473e-05,5.9211281695087605e-05,0.0011967905087739475,3.421624175159576e-05,0.01778935935885647,0.0004924072723649736,0.6754078978113902,2.572221801868776e-05,2.5550476685521196e-06,9.942610014093673e-05,1.65041885421678e-08,4.640402280721399e-06,0.003091551726673068,0.019076929804336763,0.19941436559287928,8.659696867602275e-06,4.433843505805378e-05,0.5703817973017746,0.0004788336913931604,1.6895867465068307e-05 -चौकोर,object,8.226205763601549e-05,0.23709672200433254,0.012326037996487767,0.004346789722522756,4.2624738255442296e-07,0.9999652884619429,0.9998964851311033,0.0018131022296225539,0.00602226800375767,0.0006714831017000583,1.1538226338767673e-05,3.19927266185789e-06,3.4299991843166584e-07,0.05359120492580189,0.005993965377425164,0.13095184873813076,2.9529872804109105e-06,9.406411197033166e-08,2.1969679456340577e-07,9.514580045243874e-06,6.060647244040488e-05,0.9033000970436018,0.9984085902998633,0.09376471721480116,0.9985701551999941,0.679828375689107,0.00018935020366237456,0.9845475095493509,0.002054925524266563,0.3010813331392912,0.9962781022944971,1.9697955783020415e-05,0.029804418804894116,0.000310117604614304,0.059667248120499415,0.013109347132739552,1.9884522310881454e-05,7.737233639780553e-07,0.08075838335806367,0.12753620766012555,0.000386792564735767,0.0004350152985321122,0.940456245195377,0.9508538786933908,0.4386328061998554,9.090425838599276e-05,2.0898363036185386e-06,8.815415540435816e-05,0.9998590019925687,0.0005323981945652846,0.9999844691010134,0.9992017839172489,1.8045362395683043e-05,0.001118297335667071,1.0815987013864382e-05,0.025299568983958316,0.0002512617605460443,2.8433553052802875e-07,3.145479971885149e-07,1.3968104152939758e-06,1.5442025562584174e-06,6.635207777050709e-09,0.9934539144743295,3.495374365051369e-05,0.6740391655786748,0.5482697927608249,0.0237384099520667,0.0004416087636880048,0.00023030155149720064,0.0009427430515521357,0.0006108850229751209,0.036381180685714,0.0003571423895287879,6.0830398383350965e-05,0.11785342070377153,6.006025066511173e-05,0.8079342412017544,0.22171515911614273,0.06629176097825489,0.00024292646916924726,0.00026750732642094653,0.24855550072062357,2.451643375259367e-05,3.2790234258275405e-05,0.00018995127632966195,0.0001243725852472799,0.2547410103991028,1.3849403215764782e-08,6.545651263445232e-07,0.0010361121059555617,0.0005792832944949427,0.03498881537828768,0.00402058873695897,0.0002191127663167335,0.0006437862903693779,8.742987850304489e-06,0.6993285712769436,8.320716956270323e-05,0.9504892573247105,1.3365663604321103e-05,0.0002831100859742534,8.25050288327469e-05,0.0004520137105455376,0.000372982322664041,0.9033425622874413,0.4310488521525481,7.735562636169632e-05,0.0831111276930666,1.8754570193472547e-05,0.000681409542622979,0.6374803716346227,0.035228311535641536,0.08516465195877031,1.1196914366441957e-05,1.4436965505699517e-05,1.9784401345064668e-05,0.0007430676115439026,1.5137958332958202e-05,6.647638071379143e-06,1.0638779527954865e-07,1.0772353189139261e-08,7.691560474761926e-06,0.0015713664431718372,0.007282890348392101,1.2925968174299047e-05,1.95861255279695e-09,3.7374900065466174e-05,0.00010681690668619329,0.00030123679698947813,6.361967126536467e-05,2.0614239982260747e-06,0.000889063089448249,0.9999703739987013,3.9519689534264e-05,0.0006814434988640817,0.0002545982709340134,1.0901184802515425e-07,1.071770765754607e-08,0.00015689833084619288,0.20059753207820158,0.008861383959292604,0.07757440417038211,0.009798151470660104,0.03443760940452774,2.0922549974337994e-11,1.6868198454958134e-07,0.0022771827030362533,0.012657312943557491,0.12142903544559482,0.14551417641775002,0.0013503947181278898,4.337599327630402e-06,0.03581468467793218,7.600623437966338e-06,0.03143409400082905,6.959892619926281e-07,3.3828295627625612e-06,0.5662942880744817,0.9927227813328915,2.2023845972656894e-09,0.8653446828347842,1.1942678817896012e-05,0.0007033683215682227,0.07279200139273642,0.9801787406040965,0.9990328573888303,0.9994371272592281,3.8012519295867344e-08,0.00034198792960627307,0.9993369083688876,3.525393988505292e-05,0.999889519013244,1.5152031658770071e-05,0.18126534043271478,1.8341471676363227e-06,0.9999743159042108,0.08565920515404925,0.06473946423608591,0.982070920795013,0.5281444515244981,0.20472473482857098,0.08066594110726927,0.003132590575847407,0.9950536251521606,0.573360617092068,0.999848046550754,0.9996484774611799,0.016069583893941097,5.1409991814802645e-05,2.154346797828984e-06,0.0009003402346208535,0.00011055088412049287,5.762333786130729e-07,0.10796957092466754,3.194695148976017e-05,0.9999583706783388,0.000204975839812399,3.847980102994645e-05,0.9999072375875088,0.00044921783857972196,0.9998483618940579,2.424911117891849e-05,0.9188495384044334,2.716004330702974e-06,5.52465639724993e-05,0.015485076189889192,0.0022664573667174554,0.003842675737539942,0.02926412847054189,7.523254610261035e-07,0.000229566291308622,2.43037602030707e-07,0.9981214264065082,9.151158619698978e-08,0.1432340176057792,0.00017317406470013864,6.315042395209e-06,0.9979894872159544,6.658761543981779e-05,2.5915335739690525e-06,1.9662569885124804e-05,0.0003859517109728194,0.0007119827841577855,9.112267842734417e-05,2.8759492271044745e-06,2.29180898469743e-05,0.31821214272459947,8.031787979336298e-07,0.7624841674341336,0.00039966874358008465,0.9259355423150544,1.1345330644341515e-05,8.964249230471111e-05,0.00016480069071404346,1.1404342527378997e-08,1.1039405540767127e-06,0.00023665642738642794,0.28783789194722076,0.038837538220952705,1.8346295640801658e-06,2.303746043488794e-06,0.9858466540069004,0.0003999097429701765,4.572158182289983e-06 -छिल,rgb,2.2556709833857674e-33,5.529694623834426e-18,0.11956329253787702,2.4966896386705477e-46,0.00035532870864675556,3.8221311136756594e-10,5.969292939364743e-33,6.291674399055091e-14,1.3409038722865997e-12,3.171088662537616e-12,0.9942904351734791,0.8787085099728237,0.941503437672138,1.6291684272080047e-18,4.261455177716463e-52,6.851279395311025e-51,0.9419523047949335,0.9642774292742224,0.9489054262049924,0.983603322392077,0.7447873781834976,4.824337972414985e-06,3.781405141405478e-10,6.982561783511184e-09,2.3429878525072132e-07,0.0038097246389284835,1.7199246929784171e-38,6.355817201414952e-07,1.4037558641088957e-48,5.873639499034781e-14,4.157269399230297e-10,0.014455405756225491,1.2809327736937084e-09,5.764279853037529e-11,1.7351154026932512e-41,4.965852616339732e-50,0.9950660957415146,0.0031840211245737376,2.555995342510545e-06,1.1288806133062589e-07,1.1892748964697092e-42,5.814925577173244e-10,1.0134784842356887e-09,9.528896311549394e-16,3.897201706505842e-40,0.35529828631367855,0.017335780453684668,0.12371296277873234,6.1301866044337295e-40,0.0007388938978279497,4.022066656694676e-10,4.270242443211547e-43,7.857109187569611e-13,7.299231954899643e-09,2.1183599093546047e-44,4.1767361369348854e-08,0.16112684138379305,0.2671389611184725,0.9060706703432647,0.9696781870926033,0.9943177613937093,0.49293512144318413,9.834505789091756e-54,6.5989770702399914e-09,5.122373937441154e-13,3.256611691877955e-09,0.0007676880962707439,5.307996552027155e-13,1.1068349450325479e-13,6.449477141076841e-13,3.87617490896349e-09,1.5885800846887567e-43,1.8093353139774385e-41,3.375541843067275e-13,9.661535150663957e-16,2.4914606161010295e-09,0.0014163284972492749,1.118521891654872e-08,2.185203554023693e-06,0.369704881461545,5.5615277336546865e-37,0.2848574018361514,0.0012110449676274978,0.5883293036797954,1.387849592293486e-13,0.0021586625480559314,2.6622454562127692e-49,0.002330723458207515,2.9450956357204312e-28,6.8411208493155965e-37,5.0843124188939975e-14,1.2080349727437218e-56,0.06822178293599786,0.24156768555764688,0.4319050169981833,0.5343927877113259,3.5185152324812104e-47,0.5950839420974862,0.22801206326292778,0.6151742512275327,0.7685934837520216,4.05951255884969e-30,1.4809226781824816e-07,4.428378087512498e-45,0.7392150801327931,3.940696974127695e-10,2.808432517802375e-38,1.8162680285290986e-08,0.010321283385733022,1.5979379255706416e-07,0.03542602389822026,7.377017836884013e-44,2.986917864613216e-48,0.8492758627146526,0.9844032974467419,0.9921292447477158,7.85335391535777e-11,0.9966323741031525,0.8579103653707775,0.29711826614429643,0.011937902052314231,0.9923937557555502,0.00017823136927213885,2.0407139801362852e-41,0.9166020759724821,0.011623956892288996,0.9909255743209352,1.4384630714935076e-10,0.08977804825245062,3.979455336847108e-06,0.9894584926255919,1.7251761265905604e-09,2.6871764449151153e-10,3.62395605025539e-13,1.0920630651466945e-10,0.9565700180186181,0.9473135926298186,0.9597081695671831,0.008169221895094185,4.252665000686825e-14,1.2290098946278611e-40,1.0293477895332433e-51,3.906921557572319e-09,1.716820247303689e-39,0.9448755947046448,0.9952054375788375,0.8618656120225161,7.54150657256661e-07,0.0006706287192411289,2.1668201771625353e-09,5.290507828532789e-41,0.10184129740099193,7.286334864280712e-49,0.994710060328815,1.6648970186640375e-44,0.9657006441120376,0.9217016234215231,3.9506260984543346e-08,2.1321934563402596e-06,0.9194921966350306,6.99860608270188e-10,0.9226229810426688,3.653250308841939e-49,1.72803069954081e-07,4.09042144068161e-08,7.21469681124184e-09,1.003590785664565e-07,0.9527006210588103,0.9728512490971599,1.0006215600316168e-44,0.23581244741549995,4.13674376657463e-10,0.003820527852802745,2.6876859154967077e-52,0.3625689697495694,4.196636990070791e-33,3.767342170165809e-57,7.47646875505638e-49,1.0681462561039276e-10,4.051569163156605e-08,1.197877918855648e-07,1.2075481772050772e-51,4.2304795268817985e-41,6.073165385800775e-10,4.05309277693301e-10,2.07503878202796e-42,3.6306512368518784e-34,4.761758672916097e-17,0.9723672605674809,0.9253695630523958,0.9948779757926562,1.762883970989269e-09,4.1651075318751054e-34,0.9967667631211532,3.8499523725999484e-05,2.6581652369618246e-40,4.11132810681597e-10,0.964085487106683,8.831206494566312e-10,8.059781005703115e-09,1.1193208975702547e-40,0.06896427001191521,2.6410429636491017e-07,6.565704569469257e-38,0.9959534287924184,3.3672980055988216e-08,3.4627210910890193e-44,1.2281969116675322e-42,2.1362663768767388e-51,2.4390223679469916e-36,1.7856022676981618e-06,0.0016127758055441903,3.556051283686816e-07,0.9479390040452791,3.760124270966844e-09,0.9847067703686148,0.8714113968402796,6.389472353808217e-56,0.22174738445887682,0.00354745952003431,0.004023357114962987,7.835379726208067e-40,4.098516190501309e-09,2.3982272980735427e-08,0.9699047342016092,0.9706963744598404,5.669578924335749e-18,0.9772680161199858,5.01728238669369e-56,0.012236657192873712,3.9562744238525523e-45,3.562495511349336e-07,5.034958644722403e-41,8.55851751798816e-08,0.014332786466972596,0.9136693639811083,0.7420903369148372,4.0671495500367285e-14,3.3015275550249597e-06,0.011751069264787589,0.00011789901683579477,1.059109210153728e-39,0.9976001000589562,0.9966943304722755 -छिल,shape,1.8179801831315707e-06,1.887402272080818e-06,1.7935628952556978e-07,9.261119790167044e-07,0.00024748906126341306,9.807440393313636e-09,2.644082554318334e-07,1.3537292011015602e-05,3.010430205152988e-07,1.868362723340553e-06,0.9998908666367307,0.9999851402258545,0.9999998151535165,4.943379049410275e-05,0.000285871397747163,0.0002636055313909117,2.33403018754407e-08,2.9386921653104297e-06,0.0012569076516506393,3.5060645764891025e-07,3.5337806080347944e-09,6.38157217650052e-07,0.47266182224418335,6.462407997624744e-05,1.953729123891167e-07,1.0450648403121743e-06,9.687872349573955e-05,3.209860177823948e-08,5.7356158700117635e-08,0.0015914189661173164,0.06403800127240086,1.5024755908937815e-06,5.187961433889591e-11,3.1757607110779504e-06,2.3978704138871274e-10,7.858492679105893e-07,5.989237260144694e-07,0.00024147232504357298,1.9494740361720816e-12,1.7278732185116348e-10,4.6301529352155196e-07,5.399083673288123e-07,6.788364125498765e-10,1.7051099322639485e-10,3.6710811951374564e-10,3.5590936278038053e-06,1.4824750248666417e-07,0.03798302615842476,0.00017932164434134414,1.394773368033983e-07,0.0006405296448961895,0.0022150571990906913,1.8185153854447415e-06,7.713949866981088e-08,1.0811590877725127e-07,3.576381003975896e-08,0.9864131939657239,0.9991327580503636,0.9999791243650377,0.9999003489764772,0.9997395381001705,0.0030216737189991596,4.086217199375917e-06,0.00018717782503049332,0.023414563256356796,1.8481417182741316e-07,6.93184261721228e-09,1.1261656505741329e-07,2.053170305384353e-07,2.433943663672332e-07,9.534796426465267e-07,0.00012157019836445674,2.4324908171882365e-05,1.8095324734299823e-05,7.79478366102564e-06,7.36459875039795e-05,1.1684485484431491e-07,1.168465270661821e-08,2.2131395103022478e-08,0.00025016298591816786,2.0474653936191016e-05,0.004779704755852918,2.3912228119641737e-06,0.3916941531968695,8.046816591802136e-06,5.556524714583627e-07,0.20265822026338873,0.00038950967978240253,0.0006728946817701848,1.1907067689759784e-05,1.7856081065869158e-07,0.0002722684057498294,0.014762559479016628,0.33329660822140744,0.025644658393314666,0.9999994826154887,2.534096492688645e-10,0.5962142876085471,2.5446449034132052e-06,0.2263748839285035,0.002401067293485075,1.5906603271156472e-09,1.9609962199507893e-08,2.57984918162917e-08,1.0868782751370202e-08,0.0007263634398391389,4.862679978752723e-09,2.151204957477842e-06,6.607453697249266e-06,5.247274958218127e-07,1.4812369413192637e-05,8.209344315776636e-14,6.417937105816489e-05,2.479562951752904e-12,2.2825185123599917e-09,1.2400802404716753e-12,3.339010118217934e-07,2.1996720282359313e-09,9.730174096572057e-05,2.7397225950734945e-05,0.11892864648680745,6.819044647520191e-10,4.1818242259430336e-06,1.3839073872495519e-09,7.377725952478296e-09,0.9965398992109087,5.483316021813976e-10,7.834332427829387e-06,1.25670192565177e-06,5.131372275689767e-08,0.9994042231232975,1.6834979480970977e-06,0.00014039637641654476,2.248092703300571e-05,1.0157365322593175e-07,3.746347423556113e-07,2.4712353867292924e-06,0.00015016759658747345,4.374454152503948e-06,0.0061616915044906285,2.769435945233696e-07,0.0003458159704141375,1.4263402938132554e-09,2.644863081025347e-07,0.9999922296969798,6.751898968972174e-05,0.005763438359672444,2.436729612576113e-08,9.01438837002262e-09,1.026808300602929e-06,5.767869886962652e-07,0.00033554197244928735,0.022641607970803793,0.9996529941823814,7.915390672096419e-08,0.999903730035068,0.9999851402258545,7.708016933229652e-08,3.03601560312905e-08,5.010482356378702e-05,3.36389470299867e-09,1.3485549966967122e-06,4.2900431663143954e-10,2.09318826370337e-09,1.2566027663242832e-08,8.07033584081425e-08,0.00011867653078068874,0.999782310562343,0.9996367786204874,5.949154738331142e-07,4.243371390606308e-05,4.227440193683981e-09,5.071613090515287e-06,0.7105278262424217,2.566745527442304e-06,8.082276811509604e-05,3.390212320063643e-05,4.01398213322512e-06,2.550769024841985e-09,2.7421788673427104e-08,2.7253675433497554e-09,1.0814101376802667e-11,2.789114546365272e-07,0.4002315500644207,0.00013605045373110287,3.3928676769195804e-05,2.630421603835301e-05,0.0014509989942639596,0.9996110208318124,0.9999840658822036,0.9996882742925115,3.2697863219175775e-06,5.148443718069541e-05,5.9174424444325705e-12,3.0927515021485356e-06,0.00031512604189171795,2.3945708870566293e-08,2.1192028766191524e-11,5.48366759342314e-05,2.7801597055825302e-09,0.0003141371833712572,7.3865845639480295e-06,4.7082735806904344e-07,0.0008059440279124284,2.4401414768980195e-08,2.2947238206909116e-14,3.1056519013270075e-08,7.988929628912661e-13,0.0006922352245678268,0.00011320711949689297,3.6578890019925304e-07,1.8190743062425118e-05,1.034209399118948e-05,0.9999951750030036,1.6090286665927553e-06,4.1445073644503363e-07,9.733575072305685e-11,0.0002577968240130678,4.9723402325664894e-05,1.5713415441944993e-07,1.6189780108752706e-06,5.126985330130187e-05,7.88056282150459e-07,1.8384224511683658e-07,8.927628580705439e-05,1.2299008192542355e-08,1.1798354442201087e-07,8.536442655473842e-05,4.179929258739403e-08,0.005372008365449426,1.0281236072952761e-12,1.8347341960740666e-06,2.690035088654499e-05,5.952507605588042e-06,0.1189286464868083,4.3643096403751297e-05,5.87913479590307e-05,0.19803056100023778,2.4874574196998006e-05,7.918089205518365e-06,0.00017738178515841414,3.606336311487275e-05,3.575525587719701e-11,9.876011371313695e-09 -छिल,object,1.5691832833775164e-06,2.691969380377625e-06,3.201258980394793e-05,1.4900440317354528e-07,0.01711474799061539,3.49815442007216e-08,5.834369457566991e-07,9.196997751777577e-06,6.121277689590579e-07,7.915431130565956e-07,0.9999283901674771,0.9999939878543257,0.99999931084005,2.18205537071304e-05,0.00018772395292884997,0.0001215880925004171,9.311752899432952e-05,0.005963247462927761,0.9404775267690818,0.009328245584686201,0.0004686236422101995,3.0624049031535075e-05,0.4625322273257454,0.0012537222754546967,2.8980487060082434e-07,0.00013679782774699646,1.6375780169162255e-06,2.538831023586784e-08,1.1849477489680833e-08,0.0010178385601405532,0.015440067077758145,5.0652747725683754e-05,4.753335564789695e-08,1.9798807217413357e-06,2.473904713605291e-09,1.983337692439434e-06,0.00026093399800781477,0.00025163443910369284,4.04680336505119e-08,1.2054031543060465e-07,8.497846043719538e-07,5.110567871909822e-06,5.046940770365669e-09,1.832922689091439e-09,3.889999647301729e-09,6.0257914744084606e-05,1.3021042013655565e-05,0.3019207892777546,7.714245687124518e-05,5.247774406431604e-07,0.0004386356196829174,0.0004902362909423853,3.6048634441810864e-07,1.4030174225168363e-06,1.6640262670677025e-07,8.109563082894388e-06,0.9940397434882903,0.9993724115950906,0.999987440219049,0.999917916651342,0.9998086195141187,0.9001313198691084,0.00015576499369297675,0.00023269780991330932,0.010255804397834481,6.9596152283741285e-06,6.866121081127774e-07,5.0057254260313174e-08,1.0111238781387661e-07,5.756141945680537e-07,2.126908073964338e-05,6.34937426627105e-05,1.5591524785362203e-05,4.094930787357122e-06,7.196993895950332e-06,8.826346745673394e-05,2.5665074996819274e-05,1.0278402958387626e-06,9.183889112435098e-07,0.010461240782893736,1.3813165411652955e-06,0.20071493680616093,1.361514203566536e-05,0.952067539318263,2.8470745681905484e-06,1.1320757751484142e-05,0.013990477155316787,0.0003516843439404225,0.00023750901821042712,2.2952568735687695e-06,6.424996894128442e-08,4.509618237897012e-05,0.5379203392739037,0.8938102455992538,0.7499550133096535,0.9999971339067153,7.815628453806319e-10,0.9624244168932345,7.238608201012473e-05,0.8805786990933515,0.16746180219875484,9.891572098040328e-07,7.126216569074432e-06,6.464013267336791e-07,1.0697030386044588e-05,0.0007813794087826252,9.596812929990554e-08,7.015519244340094e-05,0.00016817443767460933,6.284492163808585e-05,0.00022102413986131988,2.2507347187074457e-10,4.441626002733362e-05,2.26041403298317e-06,0.00010284103059680161,1.0778125913622346e-07,3.8074999304356226e-07,4.100719314032807e-05,0.10654713655885696,6.617058655868755e-05,0.6967773848969634,5.947297012646157e-05,5.35969820257022e-06,1.2828979318175944e-08,0.0015837480265575145,0.9981070122375163,6.173327554602717e-05,6.633006961114535e-06,4.418124598487623e-06,2.461631417187896e-07,0.9990605617706853,1.112182714351226e-06,0.00011343407701281,1.9599847839951246e-06,1.7725422282729887e-07,0.049208892405000516,0.010658991628426432,0.5045113865260636,6.9734870483506935e-06,0.0030037051381326626,1.791168214564702e-07,0.0013543131969221583,3.974662841327704e-08,4.850919867490485e-07,0.9999790385558881,0.0013674846775478746,0.4848063981084117,9.85089447610875e-07,1.291217484787949e-06,3.393670722502664e-05,1.2804431903515983e-06,0.0024430072301395325,0.002522145283675448,0.9997712976397364,4.165604130523015e-08,0.9999426331847008,0.9999938721114514,2.8915824187371274e-08,4.051600146607721e-08,0.655809696523452,3.1206873911016595e-09,0.033103095487592785,7.1180234223014805e-09,3.808618138458292e-09,1.1417217752428245e-08,4.861815226785671e-08,3.214084653583379e-05,0.9998585495120357,0.9996722857262322,1.2882615428844314e-07,0.0018799779967241046,1.699350686263539e-08,4.881289827924533e-05,0.059362192702838414,6.0452990824737466e-05,0.00016161769883376575,4.07278108412798e-06,1.8689485812321886e-06,1.7649159421304978e-09,1.3077112845121407e-08,3.2157899113619938e-09,1.1896647008544623e-10,2.532005504447036e-07,0.4694997328295303,0.000251242647345802,8.297287764229514e-06,9.195211119824172e-06,0.0010236877620387389,0.9997126014344262,0.9999871235578444,0.999718067705333,3.3190017859785686e-06,1.6578085278501796e-05,3.8273074461774006e-07,1.786554250382654e-05,0.00020545753434909444,5.6281938986609055e-08,2.0468635993854652e-06,4.800212407204195e-05,8.590630582408703e-08,0.00011837847312243698,2.5083748307960705e-05,1.7850152654442838e-07,2.0212188587222497e-05,0.002182553304079452,4.3899620450710937e-10,9.669680985175835e-08,8.657376646586819e-10,0.00036391307164516587,4.4464222157526855e-06,1.6348322901667639e-06,5.8812144528070615e-05,3.865293787758478e-06,0.9999914949421342,2.1643688910459715e-07,0.010075209089463442,9.72092210479526e-06,5.825360702053477e-05,0.0029268927569386363,7.810567524231966e-06,0.00015935090000453465,3.848378004052646e-05,1.5139737985470282e-05,4.5564902360857325e-06,0.8206376618569775,0.0013871517841020978,8.186820742530569e-07,0.6392545027245842,6.182384340476168e-08,0.19032761050553368,3.2790279599024986e-09,8.189598267958124e-06,1.5215996050333475e-05,4.77305745049241e-05,0.6913176394621932,9.830986091883833e-05,0.0010382080270766667,0.056410167136890184,2.777517809504973e-05,5.770375663062418e-05,0.00017480386304488533,0.0009082702052938119,4.960690632945758e-07,0.0001342369919773024 -छोट,rgb,0.00021339449467882673,0.9999947989687469,0.00043372648225163907,6.343577565439692e-08,7.407737401292235e-05,0.9999886811262286,1.6336567463791749e-06,0.99985096169472,0.999840520980173,0.9995433691333744,0.023306045656499852,0.0037272342107808423,0.005085738050247039,0.999992545777506,9.688503570937465e-08,7.566493327112834e-07,0.0011534962875721817,0.0013892530013542208,0.0013969757441382419,0.8864929040223352,0.003340437037508714,6.21174451000388e-05,0.999984897123824,3.71676224835366e-06,0.9999934041076484,8.888818346052649e-06,0.00026234423558174055,0.9999910614523095,1.5393319947321567e-06,0.9995794589409204,0.999988545003904,0.00038526062182534876,0.9999828478951618,0.9741528484324479,4.942554144131781e-05,7.019194217344596e-07,0.7606907573941272,0.0004668697278405815,0.999967238812711,0.9999521362861558,2.1440587072990145e-07,0.9984219942304116,0.9999870180817231,0.9991754225043211,6.749865317056111e-07,0.0031427566608604445,0.0005304227922916064,0.000431827318882723,1.2496815207085996e-06,0.9900614431806081,0.9999880186386139,1.8027569191099993e-07,0.9997476007086991,0.999967363913782,7.538904985116329e-07,0.9999682772261722,0.9921585281539996,0.984918477669065,0.004353258202635553,0.0071765070605255415,0.02170096491163038,0.0031663887133454426,1.099668828494081e-06,0.9965226241096821,0.9990846411059906,1.3363649152977177e-05,8.251300480458226e-06,0.999641240235555,0.9998229862515509,0.9998575785809407,0.9999748683641037,1.0442914811538364e-07,2.4682599404692263e-07,0.999502207590562,0.9999983525268078,0.9985404602839479,6.8316641387830035e-06,9.192795941684469e-06,4.194578805830263e-05,0.9760690251915434,0.0002780349683346658,0.9901082320670085,0.12193842978459067,0.9466436948121211,0.9998508615044633,0.05939978030496467,1.2561241468750787e-06,0.0002828694636225146,0.000737221092588542,0.0003217233230665014,0.9998262364164684,2.2321659109736595e-06,0.9961691681932066,0.9775419523862152,0.9671409964869312,0.9521718268801451,1.33643814758823e-06,0.94515970899611,0.9913673060529209,0.9527526711068485,0.9073147689097075,1.0601475676482314e-06,0.9999459474317256,1.1265255557511389e-07,0.8769804295279793,0.9999891829587365,5.328587844148578e-07,4.71765376827813e-06,1.2945684413727046e-05,0.9999370586942227,2.8191438761014695e-05,1.2858819904063643e-07,7.512469829481418e-08,0.006378378319833107,0.013083909204466001,0.02223241914710687,0.9963522299487318,0.1440559588036367,0.003166785360992502,0.00019908325807660408,0.00032553487340993334,0.05382551274805004,0.9954395236755467,1.6880103539794926e-07,0.010965187460339292,0.9996907642173644,0.049483152381253115,0.997358969908569,0.9597711796315093,0.8807971821981114,0.9481248220705193,0.9536887168697311,0.9999894810787577,0.9995380568847457,0.9953367854586672,0.0028920182210243972,0.001668432386684679,0.00173263520233725,0.9836907307440848,0.9993905192841839,4.380051445437785e-05,3.1387497790058415e-06,0.9999731110690961,2.726882708442579e-07,0.9461105165864233,0.7848987021591398,0.9935982804396598,3.1195234042604967e-05,6.527422396015498e-06,6.8704729489066245e-06,1.7620688541538482e-07,0.770142667609682,9.417308322269263e-07,0.02498777473540276,7.671339359999782e-07,0.007107988830381598,0.0052357423438072264,0.9999958907552292,0.9999839931734462,0.0018504954953770206,0.9999986123675568,0.0016481183933117049,1.0448576385030129e-07,0.9999940485737524,0.9999959649849939,0.9999972453618365,0.9999946150164788,0.0066683207596110365,0.00772338150895508,1.1654105301607948e-07,0.7554316300427337,0.9999879682395344,0.8929681613892542,9.250531435817972e-07,0.794788465790161,1.649506905583964e-06,2.7505567399876047e-06,1.90147654087434e-07,0.9999991384285649,0.9999959446535844,0.999994612685463,5.768230551948445e-07,5.917311959930048e-05,0.9999834538783209,0.9999891417385508,1.2010212329803106e-06,5.264756172715387e-07,0.9999960479046902,0.0076068334463105,0.005018195967368466,0.023959562443018743,0.7682654300404688,0.00019232037522460494,0.7124603012276404,0.921335188542845,1.5190219943393082e-06,0.9960822021447754,0.01344347352739113,0.9999849439369717,0.9999617901115652,2.1066643043613434e-07,0.7396009341144106,0.9999923958541233,0.0003703019982381275,0.10817407076955159,0.9999549282265418,7.275300773314228e-07,1.471442106349089e-07,8.461806628060523e-08,0.00019024401164095762,0.7284827141629703,0.0006642439827840738,0.9999926032735802,0.005848749979350979,0.9999973998078926,0.026247421093331714,0.005298190702792508,1.6487441056678529e-06,0.0010565561863262714,0.00023190137835977582,0.00036508448255736077,2.619606701626124e-07,0.9999728405896641,0.9949254280200482,0.0015496756130134943,0.0014685042137503183,0.9999948043861208,0.0024147271503133167,1.7234380823429666e-06,0.00032698645929839226,2.546619674790728e-05,0.12668764987446873,2.280271392226688e-07,0.9999488727108925,0.00041503196206564514,0.010616839403959211,0.0032377589983062904,0.9991029415344866,0.9457244634346669,0.8333254666412768,0.0003647349258746249,5.8241570204182285e-05,0.04911649595896428,0.0504908176903521 -छोट,shape,0.9711804948641274,0.0011652661014392243,1.470537881526973e-07,0.0013261894859855643,4.282044797259752e-12,0.00013310261469829537,1.3355094309214826e-06,0.9999413960211717,0.9997819173101509,0.9818970742917441,0.9895303364902412,0.9999582061902915,0.9994152348030788,0.2761754848929127,0.007506487769510052,4.451234192037542e-10,0.0006208532865494149,5.409331636163914e-07,9.210567583253438e-07,0.0007703922622671508,1.7119979756417793e-08,3.078753129255425e-05,3.400197916383789e-05,7.63614749793847e-08,0.7050780847138673,1.6787672102799912e-06,0.0005242635410542642,0.9980344589187105,9.085520644570855e-05,2.2404987047283276e-06,0.31101935423057975,2.4346817280599647e-09,0.0006090900604694852,0.9502924850998017,9.745642885445089e-05,0.00016680230094511192,0.0001732508644801334,0.0042950871772896365,0.0004385524707445017,0.8993251262749071,0.01760019290484086,0.03573999489081342,0.05274421647761308,0.005752813971088463,0.00038697315582637343,1.670839179730966e-08,6.7548590293487e-12,8.845064957945755e-09,5.318165554566147e-05,0.27998245596008464,0.015396109589617383,0.007150562980980909,0.9994541445122748,0.026667956245175956,0.00017069333936508202,0.0010003414035200317,0.9999903969261484,0.00014166514697334294,0.9999637083786529,0.37519865233194666,0.015450101136116223,6.367017238940692e-10,3.0725594312283795e-09,0.011273529668621473,4.677419556446943e-05,9.66667722862085e-05,1.2854732015737082e-06,0.9944631678234758,0.9976158217889594,0.9998045942134589,0.05490490481679187,0.00342240390367989,0.043095995823566734,0.9862755573459565,0.0021046493050506324,0.7676089822504294,4.351243247489027e-05,0.3861455847531032,0.0019701426282301864,2.869220420618746e-07,0.00039762961050440846,0.8963765327223582,0.05941614832536035,0.012616687177640072,0.9995659972168555,0.17111983230217176,1.6991968417849495e-06,0.0008019117053348892,0.913149437581124,0.00042464675527816964,0.9997673536569253,0.0002580189802250172,0.9986765636786706,0.9660106562714017,0.9881964846098311,0.9989139319848688,0.0003545053569884709,0.998066432019334,0.0019945130043138516,8.125682904834958e-05,4.5766617819701427e-08,4.555206419825223e-05,0.0008818129679905122,0.0005972400726165705,6.561595041984881e-05,1.7087182983338643e-05,3.284687068570829e-05,9.477047693860679e-07,0.0013770285284818188,0.008482334989713099,0.000525995643497616,3.269457017448342e-05,6.378071807844429e-06,1.4311876010733057e-13,4.859548257028115e-14,6.048085681053726e-11,0.7575050766452908,7.315129101538521e-13,3.691908056603057e-11,0.0077432007986245575,1.2812113153032587e-11,5.351727203426437e-15,0.09538855499035863,0.0012127085983473273,7.373088534212938e-14,6.306521496427754e-11,1.1404851935824545e-14,0.8613720852972373,0.8561246537283116,0.7152124740530936,0.020337208137112643,0.08653448986478857,0.527772521313077,0.9932670001565723,0.5067039132993129,1.7788706628332164e-08,0.049706160941064725,1.3840873555860498e-09,0.29515175797168447,0.0001837108490302094,1.954149654135695e-06,0.00013839323715981406,0.936343628646373,0.4356370098175576,2.481518082981709e-07,1.9768133666650392e-07,0.9996412306446729,0.0006111884533705496,0.001968927090901124,3.3871059433482996e-08,0.042836040782107336,0.9991349470967831,4.673827791335999e-07,0.6114471537240563,0.0001878170992720855,0.022400509794692186,0.9999582061902915,0.9791787941039859,0.9999292321868328,7.326003859114754e-10,0.9997081902936562,5.605499139447981e-06,3.328608940768521e-05,0.9999084736637988,0.9999728294493017,0.9998709860503043,0.9988015138507312,0.0007650168075244159,0.0014258521945636183,5.7025649999439415e-05,0.999609387892146,9.601974524626366e-05,0.9983499896130259,4.7631576475812126e-05,0.9068358959167019,1.522490987147227e-06,0.00046843743354367745,0.00011849211130681628,0.9999885718945012,0.9996633824297091,0.9995144036902492,0.000188867172865905,4.868646688046388e-08,4.4469605786776773e-07,4.346738169230431e-06,8.436520533362868e-06,0.2306243638302124,0.004405777344270563,0.0019686446354274176,0.9999886502368366,0.1052939491413916,0.15127476350612887,0.9958522348535502,0.00015981048006881245,0.9991305715200709,0.0002647143313510294,0.5742694663837893,1.5822542755520987e-11,0.04111661922118246,0.9965371727758882,0.0007093202882670437,0.9580828496354765,0.9999117247819354,0.0009129243961895902,5.844187350147123e-13,2.480238458686506e-05,0.0004086779442759456,4.618285360695349e-06,0.9996646418946702,0.3190083725574203,0.8979915804664437,0.4342960291694763,0.9993424023026455,0.6379416954799254,0.9997327849761499,6.933021306226078e-15,1.993079999577998e-14,1.975929487667018e-06,1.1655227421444697e-07,9.78136390219565e-10,7.968812490130681e-13,9.375945238979379e-05,0.06367381744916042,0.26055312662498775,9.753826883136236e-07,5.8277405926143245e-09,6.178866918886854e-06,0.009532059927628895,1.8461980310035505e-06,7.617480903517553e-10,3.168121666968217e-07,0.14739517717013723,0.2737251574016009,0.016418289714137654,1.2812113153032404e-11,0.00383288064439179,1.1540795134688817e-06,1.0069645127874794e-05,0.7845182033277518,0.9981718652434456,0.018979234996729977,9.558937150987252e-08,1.0254021447621115e-14,3.0046236446057127e-12 -छोट,object,0.0019429238109453626,0.9999942111069281,5.1537813692708595e-05,1.930753689786543e-06,5.184248143450159e-06,0.9998412786663208,6.951962785123968e-07,0.9999492657688861,0.9999593991079254,0.9996771689542144,0.08921739221731113,0.03229065003374611,0.0369753861957871,0.9999930906503386,6.3146015844498544e-06,1.0506507758116484e-06,0.001017087342602058,0.0007739649428558378,0.0024830092763451195,0.7754677143689215,0.0015705587298572882,5.3166637279227685e-05,0.9994835633681152,1.9815168447050555e-06,0.9999153748522843,8.982254570191236e-06,0.00014274319210452185,0.9999543238122127,3.860714097985394e-06,0.9982227017728061,0.9998962877121564,4.390180590004945e-05,0.9998877565792442,0.9740536062006536,9.46180165245749e-05,4.21674569007824e-07,0.5725134167196306,0.000591102687023902,0.9995961529503522,0.9999423896165015,1.1240326821661642e-05,0.9990014318081591,0.9999505072167171,0.9991827162715409,3.298290392217387e-06,0.0005352973572764726,3.217021813261738e-05,2.5148640342721495e-05,7.641598372997899e-07,0.9874833648853172,0.9997647157012409,9.861413944059886e-07,0.9998621484611355,0.9999411648550849,1.0951168479477845e-05,0.9992577395220188,0.9945539288942846,0.991265017332947,0.03278573475705238,0.020897464109899757,0.047261550207851624,0.0039806647039890685,1.7568601190479082e-07,0.9986850087706447,0.9971151111783967,1.3456498686848302e-05,9.059044679643702e-06,0.9997770224525131,0.9998684330270616,0.9999639140099807,0.9999711665029347,4.270244654965641e-06,1.4277852762683853e-05,0.9992940388122499,0.9999977538149482,0.9993548425525877,9.58832441105438e-06,1.8344816284027052e-05,4.276834557279577e-05,0.9712707712375261,0.00018909740342195827,0.9785957898220103,0.11476108944183679,0.9641062110623146,0.9998962305685832,0.07423153570909194,1.1378075707932757e-06,0.00038388035074087695,0.004012496565718939,0.0002241126083684977,0.9999025133022769,1.0097300198295354e-05,0.9931914842461512,0.9722196265572747,0.9535082977381918,0.9796837237590366,5.463766664049209e-06,0.9568925722989238,0.9844275089351686,0.9676847435115865,0.9219188741842045,4.138044230161246e-06,0.9998212429570916,4.693594102941849e-06,0.7885068285031471,0.9998554046103459,3.0239417495064432e-06,3.139618122357051e-06,3.8867288744271086e-05,0.9998264696430796,5.028378426953344e-05,5.3608070971544745e-06,2.173641023457263e-06,0.0018966605266915468,0.011762154463929895,0.004742170880715801,0.9914136518208333,0.06488223809315061,0.0072461259953207555,0.0007038285291550402,2.4796044715934204e-05,0.014932016199554107,0.9880819805165307,9.243945553132768e-06,0.003227835571481438,0.9992984173341625,0.007150188671382426,0.993555906009283,0.9682363498398987,0.8903393169765965,0.8095807880705087,0.9170855027101399,0.9998938633207282,0.9996253120116126,0.9894921503729555,0.00161997540695176,0.0033296901550206605,0.0025157808900003876,0.9714738981686948,0.9985158139658842,4.282438909546708e-05,1.834215192700895e-06,0.9999740720692621,2.2010532429050065e-05,0.9766543265267967,0.7639664913802687,0.9953281878245561,3.699960676778658e-05,2.158227523963748e-05,4.790568507159205e-06,1.1633585360794401e-05,0.9449630918752278,7.874564231049008e-07,0.05054964245627599,5.160431856116848e-06,0.018316411364417272,0.04265665902162236,0.99998149075371,0.9999505864094205,0.0020023468704923053,0.9999940267430963,0.0011910427732926673,4.8024683077805935e-08,0.9999893964234247,0.9999903728070668,0.9999849133622699,0.999937275306459,0.0482787720944596,0.00522324550263792,5.835647387341013e-07,0.9058256849633326,0.9997671018157183,0.9782395704838998,1.2142016769702135e-06,0.9469375130745592,9.850960844128147e-07,2.1524738136036135e-05,7.501479238581896e-06,0.9999983659479965,0.9999888605448771,0.9999827760316129,6.838398968978412e-07,3.9350102960905455e-05,0.9994372901936635,0.9998110355493702,1.0503292873915236e-06,4.189658581627014e-06,0.9999913085233181,0.012966482919485968,0.03770544659282961,0.023935022477997312,0.6750855478944904,0.0025042224673158687,0.49972088554749716,0.9770309741300336,1.1699375265226778e-06,0.9937932452465401,0.005557926845774853,0.9997766198291576,0.999990953489921,1.259005508536033e-06,0.9096784422446677,0.9999860349290112,0.00020672065840452383,0.04856391761968671,0.9998800179244436,1.1890339028058219e-05,7.556032096609423e-06,5.4121367654003074e-06,0.0007773553142265051,0.7421348349203356,0.0024214070132540146,0.9999484321716028,0.024587034634020306,0.9999916952107778,0.008440194217962672,0.001289919337801429,2.987291907023483e-07,0.00014932223703593807,2.6798864796751713e-05,2.033854692374551e-05,1.429066600227866e-05,0.9999706147990711,0.9993677799542103,0.0010083298311636243,0.0004150268986995174,0.9999905784269288,0.0035017715508955747,6.013617546220344e-06,2.1321190175092723e-05,3.7360179458834574e-05,0.12609906200835336,1.825161973200369e-05,0.9999160966108862,3.0684063622157143e-05,0.019955703461829687,0.0005814607752317359,0.9961662042770002,0.9543459631348382,0.9561281003764714,0.0007726604286651856,3.267270932159792e-05,0.0034323986530855775,0.033994031753578687 -जा,rgb,1.0,1.0,1.0,1.0,1.0,0.002033722788662249,1.0,0.8685466067306032,0.9886942615642007,0.9999990866686204,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.006209449832987414,1.0,0.9999999994965867,1.0,1.0,0.9999999999047717,1.0,1.0,0.002454348097302568,1.0,0.07312565491512116,1.0,1.0,1.0,1.0,1.0,0.9999999653480297,0.999944526472296,1.0,1.0,0.01822004902106838,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.002731751772083738,1.0,0.9996305955082764,0.9595513744568744,1.0,0.9980707613484848,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999766834270917,0.9751768977222077,0.9542486288438454,0.7180203767481236,1.0,1.0,0.9999982856880002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9159172322679114,1.0,1.0,1.0,1.0,1.0,0.9545430901949215,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999802793004656,1.0,1.0,0.0018270624533252972,1.0,1.0,1.0,0.999991220080491,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999993,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999913,1.0,1.0,1.0,1.0,0.0008537127632008327,0.999996805971036,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.7763315877374762,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999976268,1.0,1.0,0.9999994164230401,1.0,1.0,0.9999999999884004,0.9999999574517475,0.9996630098422491,0.9999999417109445,1.0,1.0,1.0,1.0,0.0029105299683545712,1.0,1.0,1.0,1.0,1.0,1.0,0.99673234108982,0.9999999999855305,0.9999999999898419,1.0,1.0,0.01930814943982832,0.001944873302557576,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.02439876969699314,0.9832725860637743,1.0,1.0,0.9999999502113985,1.0,1.0,0.9993115042204807,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999112847,1.0,0.9715448804412801,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.7972300392879752,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999284791459231,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -जा,shape,0.9999999958024515,0.9999923466677677,0.9999956828423984,0.9999997171083318,0.999999870541347,2.9613055773224024e-05,0.005747557840822625,0.9999999959946477,0.9999999376294256,0.9999999769439377,0.9999996786477066,0.9999999617564866,0.9999999809196066,0.9999998925497593,0.9999997560000233,0.9983408204528622,0.9999999998100293,0.999999999997458,0.9999999902563045,0.9999999984420198,0.9999835592638913,0.9999736971878705,0.8806180665885858,0.9998228091199033,0.9999919959206715,0.9999940612441404,0.9999999872567217,0.9999709874421527,0.9704207153276402,0.18593123782614285,0.9999378831783828,0.9999986702523121,0.9994029698799675,0.9999992147793764,0.9999782848775354,0.9999999992030602,0.9999999884100398,0.9999999998827693,0.9999999978209051,0.9997553883001646,0.9999999964595987,0.999999997351547,0.9380730855896648,0.5066442213304426,0.837013101794684,0.9999719659743411,0.9999952805918036,0.9999746844384566,0.999503942791468,0.9999984597354709,5.329366965383435e-05,0.49445084671719797,0.9999999960869612,0.999999987726666,0.9999996305159045,0.9999557261258382,0.9999999044714389,0.9999999968286835,0.999999998260551,0.9999999874072324,0.9999999995102509,0.9999948607839931,0.9999957810841744,0.9999985775660787,0.9999304021267869,0.9999885603188954,0.9999736626130507,0.9999999896874224,0.9999999758018329,0.9999999966555659,0.9999999957130952,0.999998117014588,0.9999790340601061,0.9999999456777092,0.999994417998105,0.9999953977920046,0.9989663565018049,0.9999493191822066,0.9999997849287497,0.9985527390435522,0.999999998351756,0.9998333117300875,0.9999999590632559,0.9999999781295932,0.9999997488325241,0.9999999653096857,0.9993564005025044,0.9999999996646549,0.9999999999880902,0.9999999970440259,0.99999997825888,0.999999993674521,0.9999997374854454,0.9999988454359657,0.9999997730840737,0.9999999942842641,0.6453330263383553,0.9999995944953642,0.9999685299081437,0.9999999033482041,0.9999924743961808,0.999999991571695,0.999999994470864,0.9999999975059848,0.9998744397980455,0.5621455498208862,0.999836078451774,0.9995073432085729,0.9993909810699202,0.9999999243571889,0.9999679257809971,0.9999418051742446,0.9999594541268235,0.99997148890134,0.9999888780530106,0.9999999795206809,0.9999975402785926,0.9999911410152147,0.9999999940983224,0.9999993055273424,0.9999994533742201,0.999990941649055,0.999999690994654,0.9999999755042684,0.9999434398641894,0.9999999994753266,0.9999946977839896,0.9999863941956076,0.9999994901127076,0.9999997584535871,0.9999999999989435,0.9999995696117798,0.9987778157625327,0.9999999716860598,0.999998071743549,0.9999957013597588,0.9999998784690428,0.9996774419829939,0.9999999262709373,0.9999699600877594,0.9999998784676739,0.9999510163204441,0.9999935829492252,0.9999300951331683,0.9999999999336255,0.9999701081265226,0.9999994617416492,0.9999949181778355,0.9998711961062188,0.999999937413539,0.9997550093468484,0.9999999914896435,0.7227289279424346,0.9999999674576079,0.9999985478687606,0.9999998954532934,0.9999999617564866,0.9998895794482914,0.999961949523887,0.9999998455365086,0.9999994482743453,0.9999741192328638,0.999999999577857,0.9999951045117268,0.9998873746896766,0.9995524820639062,0.999448623748574,0.9999999976298029,0.9999981323385431,0.07101177910634432,0.9999996188496997,3.36712203224e-05,0.9999999934237134,0.999968777079668,0.9999999983839141,0.8878445236632323,0.999999969726878,0.9999963830731835,0.9999889798700174,0.9999928706676671,0.9999219238034441,0.9999999515255938,0.9999998869368595,0.06005219382997674,0.03880096752156782,0.9992899470383034,0.9975051983911378,0.9999999050769285,0.9999940345452349,0.9999998979034923,0.9990753892615666,0.9999999609783461,0.9999999857028701,0.9995386486010532,0.9999999962448747,0.9780233248884497,0.9999933638000076,0.9998246874787159,3.9451415826399354e-05,0.9999972596043216,0.99849367903815,0.9999999974481906,0.9999871312563462,0.9999999982087109,0.9999999139576318,0.999756005142532,0.9999993127158538,0.9997667811667599,0.9999997796724706,0.9999999985674404,0.9999996966574333,0.9999999999128493,0.999932025315634,0.9999999999592761,0.999991195650387,0.999994076388334,0.9999966035409461,0.8266941207603201,0.9999990381723326,0.999999989619062,0.9999927269484159,0.9999972039074454,0.9999999937329733,0.9999989388653441,0.9999999675948746,0.9999741475322694,0.9999998282089977,0.9999999951246439,0.9989366667133569,0.9998819017494529,0.9999968444311177,0.9999998137197427,0.9999766079439975,0.9999999975911755,0.9999994533742201,0.9999972518664523,0.9999565908865001,0.9704725786142627,0.9999991940249106,0.9999848279745511,0.999999999561207,0.9999994530028152,0.9997749836807175,0.9999834166077614 -जा,object,0.999999358425836,0.999999988086736,0.9999999504757446,1.0,0.9999997597590138,1.4539019689279918e-05,0.0019189805745983618,0.9999975402091482,0.9999848953727851,0.999997464928958,0.9999999999378253,0.9999999999845508,0.9999999999978644,0.9999999999780018,1.0,0.05161058527149889,0.9999999986416668,0.9999999996038091,0.9999999863356113,0.9999999952185128,0.9999412287764351,0.9999955006197001,0.0016179769508028814,0.9998940094729422,0.9999305769506311,0.9999999939329225,0.999974213398119,0.9999730315900063,0.20353671688062855,0.9998576394250585,0.9942499600276559,0.9999997803230934,0.6055552510269478,0.9999901389285951,0.9999999999999774,0.9996686374274091,0.9999999996105238,0.9999999999981857,0.9999999768634286,0.999589534005604,1.0,0.9999999999903804,0.3035061841872168,0.9999969222071312,0.35495441983139336,0.9999990926785337,0.9999991924148359,0.9999990440461447,0.7524249687027819,0.9999993755446013,1.3167790768523524e-05,0.9999999999983231,0.9999993446643527,0.9999871670826078,0.9999827708150562,0.9941837404111389,0.9999999983131802,0.9999999995319324,0.9999999999997469,0.9999999999968523,0.9999999999995286,0.999996607345562,0.31648122927175515,0.9999999999776767,0.9999999814306032,0.9999983972849401,0.9999999714535895,0.9999990772405176,0.9999982473192811,0.9999985783967532,0.9999737512234264,1.0,1.0,0.9999920369500147,0.9999998922386951,0.9999999997622921,0.9999995209625093,0.9999995703727657,0.9999999870012068,0.9997828513654893,0.9999989947950115,0.9999958019474708,0.9999999986931238,0.999999999878314,0.9999701055058773,0.999999999291626,0.0738851019073287,0.9999999999909333,0.9999999776582074,0.9999980794599553,0.999998271302082,0.9998256624942864,0.9999999665443626,0.9999999063258186,0.9999999853131296,0.999999999809154,0.03466911356296767,0.9999999950804654,0.9999991910698667,0.9999999991029342,0.9999997850610687,0.9999290455453587,0.9996905839157944,1.0,0.9999976878679735,0.013571219487048782,0.9997179167878116,0.9999467438497137,0.9999999982144374,0.9999617989212877,0.9999999951210923,0.9999999999999993,1.0,0.9999999387504779,0.9999991183675446,0.9999999922112764,0.9999032251274558,0.9999999356452459,0.9999999999913973,0.9999999963139292,0.9999985331586851,0.9999995834103265,0.9999993880017839,1.0,0.9999992114238833,0.999980524732727,0.9999999566146859,0.9997019008694382,0.9999999503956545,0.999999863894221,0.9999999999962566,0.9999958105800804,0.858275602445974,0.999997017817266,0.9999428924616557,0.9999932047439081,0.9999999982677774,0.9999513241156905,0.9999999718373355,0.9999999851731307,0.9999999999999998,0.5221625460950093,0.999876924898066,0.9999999999999998,0.999999911533006,0.9999118975952285,0.9999993762646227,0.9999999602634746,0.999999987002568,0.9999998968864965,0.9999999999999998,0.9999999963295145,0.0008013366203000577,0.9999999999809881,0.9999148869252691,0.9999999999402744,0.9999999999801501,0.9999421309542568,0.9999991691455514,0.9999999472157125,0.9999997095970072,0.9999898045633553,0.9997151666537188,0.9999993691379888,0.9999667014421035,0.9996303171899478,0.9988011454563706,0.9999999999952565,0.9999999996942501,0.9999999999892042,0.9999999386880039,1.1993591834234446e-05,0.9999999955820669,0.39057104968437534,0.9999999996319788,0.3841891169058017,0.9997840593092018,1.0,0.9999835978639432,0.9999967157564793,0.9999876544263672,0.9867617460021658,0.9999999999999996,3.0213724629175732e-05,0.001048438928104161,0.868155488845138,0.9999999999999716,0.9999999865603522,0.9999999985903187,0.9999999999813509,0.9999922705752253,0.9999998158504976,0.9999973996165658,0.9999167395897361,0.9999999915915404,0.25691202149398557,0.9998779556815043,0.9999999862038877,3.140170216651136e-05,0.9999812061604345,0.9999999999999662,0.9999999994291446,0.9999923096770552,0.9999946057297298,0.9999999970235296,0.9995539060163556,0.999543271728926,1.0,1.0,0.9999989514593756,0.9999997162746953,0.9999999999982003,0.9999344606872186,0.9999999999999565,0.9999758316579986,0.999999939897476,0.999999991669002,5.04253129076667e-06,0.9999993261472164,0.9999999980233156,0.9999929450500027,1.0,0.9999529367915153,0.9999999999944111,0.9999999516530521,0.999992625614882,0.9999999995859441,0.9999999963917001,0.16115596317829944,0.999932740731039,0.9999999999999998,0.9999999527749466,1.0,0.9999937129367101,0.9999984437118443,0.9999999541707855,0.9999998643946155,0.9999959653764986,0.999997860414369,0.9999995225225706,0.9999999999888531,0.9999999999999973,0.9999492457622124,0.9999976395011365 -जो,rgb,6.913151761355771e-09,0.7874715701567232,0.458711666115638,1.4136037241930716e-07,0.21341932804075123,0.38783917449278105,2.732869588382037e-09,0.01972987106258873,0.037207682271519466,0.027944573328067983,0.8361773849954883,0.7179072685891981,0.743674665708816,0.7582744863992561,2.6882897530874465e-08,8.056275830201074e-13,0.30219986990424424,0.3590643627286973,0.3117006858055808,0.8670298956243346,0.19026095752076105,0.00325059855765857,0.34456571223141413,0.0004651584203185758,0.9095913443014589,0.030816343131016735,7.473880000492829e-10,0.9113844422322801,2.579349557625222e-12,0.8515278515020483,0.3912851627676543,0.4276267920632992,0.40040011511530554,0.009964661394261618,9.058779313941376e-06,1.1517893900102392e-12,0.8769467016735328,0.02323069691842316,0.7945364753972384,0.5373871905124732,7.479648339745037e-07,0.9235426026023091,0.42895484145490304,0.761450521284065,8.926189686822635e-11,0.6961101004023963,0.4680772835636633,0.4582640967911242,1.1084400105445293e-10,0.40979068943955343,0.38230018121778075,6.054290212972923e-07,0.026877844906707127,0.41420426164781976,1.3772879511810974e-11,0.5350653819433635,0.9761034129563886,0.9748974360695039,0.7318565606131907,0.7691675219213875,0.8312574458140505,0.14150401518413128,2.5589744626074604e-13,0.9303287641222916,0.863845820593885,0.00043860443972522617,0.01397590038741117,0.021084544440731715,0.020617553536852278,0.033428074560346445,0.4129265553946477,4.2069348272937925e-07,1.1465862879413345e-06,0.016537133211444715,0.8673751391539372,0.9339957957430151,0.02017045121788237,0.0005673742584172981,0.0025298955803733396,0.9737424920205481,1.4802850505674814e-09,0.9758510995331691,0.06541039820220101,0.9710432392907341,0.02342637526087563,0.060374765226042716,1.7995083510341944e-12,0.019943560081515283,9.59290100193358e-08,1.600127698854749e-09,0.01755935314837728,8.62257419543843e-14,0.9768145019405461,0.9735798320980213,0.9727436460062262,0.9714165830225034,4.603012465504354e-12,0.9709299939819706,0.9760394679224392,0.9716476898705334,0.9685960224872592,9.209253017100374e-09,0.5368163485491935,2.6688441502470265e-07,0.9666792140388415,0.396831361317805,1.9551877089543983e-10,0.0006035814635643972,0.058490377217605735,0.5183978498057374,0.05174341352577747,4.13905918652513e-07,8.267908197113835e-08,0.7662795732556964,0.8103720767623059,0.8381776917601733,0.023231194263591604,0.912909674960243,0.7020642380270847,0.343257111403286,0.405347597192663,0.8836701074289232,0.40799848363739677,9.93539320963115e-07,0.8064097430884622,0.9337240299332344,0.8812392468275883,0.030271469650458505,0.5778923893265849,0.06332316355384958,0.9353293676863872,0.016678010310734553,0.37709334540957457,0.01735445188976031,0.02258163723059132,0.32480732395900197,0.30541855936653123,0.334578085705449,0.5113273573907372,0.8384057831914505,1.1344873405126318e-05,7.792417566340941e-13,0.40330228418103947,2.2051545156324142e-06,0.858027533279365,0.8859763212052263,0.9490457503310766,0.0018644246458021415,0.014253098310981852,0.0003673813505772624,1.1501405029987395e-06,0.39131964815841647,2.0422106194183516e-12,0.8393402827056753,1.3200969332646936e-11,0.7695284827883606,0.7481460238203272,0.9266861384802142,0.9559669471899904,0.26530383304592586,0.8924042696269381,0.2683764617439078,1.1279898350988854e-12,0.9223924400765767,0.8983978187776284,0.8569637280732982,0.8925659929210394,0.7665660377532596,0.7744012764996097,3.025629240540536e-07,0.4502321323138607,0.383413266935914,0.2731832210316836,4.578628807674259e-13,0.5142630491626292,2.5537554517326248e-09,7.293528259348022e-14,1.0032728326337022e-07,0.856417934408236,0.922899453084449,0.9231901570700648,5.471548165120759e-13,1.0940193907354226e-05,0.3596508212817865,0.398025603865291,3.6678018565233977e-11,1.475058589429224e-05,0.825833407998412,0.7732749644749753,0.7440151867200148,0.83593112140688,0.008714482805310559,4.8467828574403785e-09,0.8870279811304075,0.12096600383283813,9.831135513811771e-11,0.032358122685518464,0.8181628667194539,0.39677306554950026,0.3973688101954214,1.3715601916446635e-06,0.35045827046005723,0.8851809579363213,1.0576869777305819e-09,0.9052466795134617,0.46512836860807344,1.501834634550815e-11,6.415401502865656e-07,3.183421401770036e-08,1.7853964917441971e-09,0.0375205293842156,0.02052590561085815,0.9143467956912981,0.755690020048507,0.8226198446085178,0.8538639828241501,0.7507044222119091,1.0955936153389501e-13,0.5749621484648163,0.35273837922410695,0.40636575914097117,1.95194916795112e-06,0.4048426455006347,0.9338494491033043,0.3789328314174016,0.3879469220635689,0.7879336436998791,0.3993986620176693,1.0581463594459756e-13,0.40613210698082386,2.2202776300721957e-06,0.010313881327993905,1.273394972993448e-06,0.5082638563496771,0.43651370894229574,0.8042238927109925,0.7053177605008721,0.8279540669139384,0.0820943417091879,0.2922415484812777,0.009506666678236454,1.6930080958306017e-05,0.8622917844423863,0.8711639019910034 -जो,shape,0.012538969934053311,0.9988419594421009,0.02394379260664655,0.017934363767197703,0.004832736330119282,0.9854812193205368,0.9949929339558805,0.001502605130884423,0.026540624991724437,0.0011279016996174796,0.9999931955082095,0.9999991359187869,0.999929417560947,0.998584626785496,0.9999992269653909,0.9999991271620521,0.3965110107706086,0.47124075369177776,0.9999923746016007,0.9997669930081114,0.9997876446027625,0.9955095959102687,0.9999997750852987,0.9948754559801273,0.9864490880786863,0.998534065717912,0.0003610676915191811,0.10210624842475133,0.0037530976726466553,0.9997660272391083,0.999852847829996,6.747267596005157e-05,0.9984768370211502,0.004874723677477976,0.18574997317384,0.9121771361250379,0.9546963115838684,5.545700449276069e-05,0.9997553491519685,0.9875435746617881,0.4660255161579276,0.677941608769647,0.9881810192401203,0.9993298677870203,0.9995018790093025,0.00015946657329716504,7.234608949086357e-05,0.7460044301344663,0.999519634891653,0.047442582765722885,0.9999733261457191,0.9994850256218029,0.0001584776818923952,0.6713383482295054,0.9401020100493658,0.9996131657489677,0.999930015566263,0.9999984660548533,0.9999318043060796,0.9987299433172577,0.9999697236784797,0.9999988899721926,0.9999999999238878,0.9480220634525081,0.9999819656497899,0.9959866110575211,0.3555150802513115,0.0005334885811694642,7.738466906579119e-05,0.012823974619528694,0.8783645388321711,0.9996433160084734,0.5564310487620664,0.00014089105360385028,0.9967260385825807,0.14103907614794942,0.999210019210668,0.9133296691976911,0.5475022594781846,0.9991171519178627,0.00842418338462395,0.9909550513150812,0.00765382815646526,0.9999987875547124,0.0005550710118135243,0.009888371270914739,0.9999799440449588,3.876762073196824e-05,7.73867228631195e-05,0.012297552910477981,0.0001267063491872856,0.996893726749779,0.9998824667251954,0.9898886236240697,0.9999289822636812,0.9999992797325806,0.9993041127966786,0.9890076320253453,0.02315933211890453,0.9999991874444599,0.9999054342137554,0.9969747415687807,0.9921785231087215,0.9943843244938634,0.7871436142885369,0.9999264830217052,0.8136879093629414,0.971190148165518,0.0767436741404801,0.9985443647025887,0.9983879391390958,0.9994568784767625,0.9999875240001718,0.9999965506019938,0.9999962519905989,0.9997508939485317,0.10140541585075342,0.9999986824165877,0.9999974689014224,1.8396495262416393e-05,0.0820374413212397,0.9999999607421295,0.030930107529925206,0.9254474953680893,0.9999998820152493,0.9999962142646885,0.9999997735076482,0.1476396238650744,0.05034886107919016,0.021211100021919,0.9996002908810058,0.021836285641223162,0.9992285242555453,0.00013670863911584364,0.05098135813064245,0.9999691959957174,0.8929022577200247,0.9999673030435263,0.005889544886711943,0.9999101911104663,0.0128532772476329,0.9999999944563764,0.03819627572124815,0.024841907281986673,0.9993217001965758,0.6396121057548911,0.9998559205899396,0.5063432340787595,0.9706034581863616,0.9960808166735915,0.5931651725646114,0.00033502109170721167,0.9999130168725892,0.9995125303906854,0.041039852964829864,0.9999202153772727,0.9999991359187869,0.06544038923966108,0.035672520664763896,0.9999993184391589,0.05979905317879797,0.9976377201416073,0.05000581691848189,0.12123549816107705,0.3315711521851231,0.8515715960146959,0.99842221321807,0.9999189231767851,0.9978067824830245,0.8661395911732037,0.0002979213028686353,0.6135269253742962,0.0014288927423900056,0.9999984276374495,0.0027621127760318847,0.9999959336957788,0.9995000402743144,0.9998751043227253,0.18652497003203503,0.0905717428794467,0.08794462658086717,0.17086264177276456,0.01036211272807842,0.9999998321281001,0.9999364661408279,0.9986033366601291,0.9947935335691285,0.9999166051551789,0.999993099563018,0.9999831582235337,0.9999935423250946,0.0007963300029336208,0.00010802462513882728,0.9891770962843294,0.00014471053754796257,0.9999975459852456,0.04399211499078117,0.9999989500634471,0.9997289609602626,0.27975075299867885,0.9999896248223217,0.00013401822910260697,0.6298971306006607,0.0004201913918079566,0.9999998770055885,0.9997236038681542,0.4436056838672299,0.9997987595622263,0.6043317494929765,1.44303912339594e-05,0.08344746875920495,8.53111363641971e-05,0.9972022296643118,0.999627326040291,0.015307584203146901,0.9999999963196244,0.9999999608098331,0.998798541932251,0.20680307226321304,2.416367834779961e-05,0.0002671468486991823,0.9964543603967445,0.9075071092341096,0.928772023922326,0.9999895882545223,0.9926204641297409,0.9999179629349414,0.9999499100233521,0.9999271320917669,0.9995029381574551,0.9999987982065027,0.001982600726188895,0.47492649654436525,0.5158861641294484,0.08203744132123997,9.459140136979248e-05,0.0003760526606986447,0.9997619862032948,0.008682493608755545,0.00022068477373308437,0.0001803474394179084,0.9999999955956569,0.9984721537117219,0.9999953055676473 -जो,object,2.768547125979266e-09,0.9999998828570738,0.0009613801833032912,0.9996104192475472,0.001478385619332654,0.0007410649800418329,1.0776694624425311e-09,1.9859311872640713e-05,0.00037481411485546743,1.2524316837373868e-05,0.9999550395955962,0.9999981487774803,0.9999261451895588,0.9999999903237219,0.9999999999894151,1.0751265845810339e-07,0.057635808235373884,0.08379446203187106,0.9999758146675711,0.9999414750091126,0.9997453175334192,0.0001148673842536068,0.9806259235404384,3.4633443176598227e-06,0.3759496679885886,0.05892444751423159,2.6159698442777956e-11,0.007329365670814167,5.792204930065982e-14,0.9999679362781922,0.9404914921778428,3.456643419977865e-05,0.007471353761860532,1.293890950970046e-06,0.9999136978548752,8.357333048806798e-12,0.6403691073417344,3.034293799269036e-05,0.9998564819818778,0.9709327414840561,0.9999517317715815,0.9975259075679346,0.00016795064061142522,0.9997487403054657,1.2237661251667128e-10,0.00010705552648124747,2.4957557275253787e-05,0.02401727794389238,4.701593861536998e-09,0.0003250070900612074,0.031113349349535763,0.9999994722171096,3.4568780997476465e-06,0.0028067610408339188,1.1281074277128942e-07,0.018906008442687937,0.9999978176541278,0.9999998570333937,0.9999909975032094,0.9994192362685987,0.9999145725028186,0.9999339330149071,0.001989918715046023,0.9999986831883729,0.9999999869783618,8.600101780167469e-06,3.7075637735356365e-05,1.6366379656956625e-05,1.1114428879210699e-06,0.00025975051175947605,0.01568160462020352,0.9999999972100271,0.9999998806749866,8.974821481878881e-07,0.9999969497204463,0.999957124175613,0.011450488582154802,2.3001802194989815e-06,6.253375573905781e-06,0.9979466885237827,6.235598440756289e-10,0.9999698731741625,9.915187301769115e-05,0.9999999315029393,2.1267382110005494e-06,0.000277795725924373,8.920511991043008e-09,2.4021559516451324e-05,2.2120545276837302e-09,5.634808273770421e-10,2.3155268995058214e-06,2.85124743437902e-08,0.9999986437588175,0.9999822199348117,0.9999990592746654,0.9999997477199717,1.4881931799350212e-11,0.999968388833531,0.7420373805570607,0.9999998381632298,0.9999541171524369,5.121434773049569e-08,0.09783456733348306,0.9999991379644552,0.9946216674937194,0.054820543512642414,4.726850434414394e-08,1.3743801025557247e-06,0.00011117039904694912,0.11940108410374894,0.06527678918936124,0.9999999999229909,0.9999999995454001,0.9999996596671495,0.99991914312137,0.997374005241897,4.2862624959148015e-06,0.999998770717781,0.9999994090523322,1.2774918306545367e-05,0.010254985583150248,0.9999996547725222,0.0005694479470824671,0.9999763381569197,0.9999997074278798,0.9999258096108311,0.9999996858061125,6.485067462445521e-06,0.0025262119387162237,2.0857153570771426e-05,0.9997364006513089,8.14806963068099e-06,0.26875490199639124,6.690647511945029e-07,2.6737522185757366e-06,0.9999286526371619,0.02368622508796517,0.9210736741119461,0.00028324885315955325,0.9999997858896456,0.9999181592338461,3.281334967662632e-05,0.0023881325350411675,0.9999688546091157,0.9946408772536461,0.008860765639760591,0.999868126712773,3.2402246339911355e-06,0.0005304040364347887,3.7013921469024835e-05,0.9999993982769076,0.00023948192213197282,1.2555628625916116e-10,0.9989775086729616,7.578328500666612e-11,0.9998548131381497,0.9999980828665117,0.005251981426048452,0.0952033476055095,0.9999733014201843,0.1449193032137652,0.9991693116065633,5.050185083188976e-13,0.050549207661712114,0.019934195041099848,0.05034917109518851,0.39212663762278616,0.99996817010297,0.9975377641973316,0.9999583671905385,0.00020581844795562482,6.689382024873968e-05,0.00028576995513498045,7.793812742451967e-08,0.002262281553933965,1.3017563592053711e-06,6.269861641838051e-08,0.9999999994638029,0.0249761974130379,0.016868785413764673,0.010617953740207025,3.0483941651420634e-13,0.9999580794160835,0.8844830097416924,0.014194750722845526,2.9094185012091052e-09,0.9999906240525458,0.999999905814053,0.9998578462719108,0.9999766121314134,0.993527014112868,6.160376093532185e-06,1.974097060657633e-11,0.9978236738606647,3.375288905465797e-05,1.4501700784314573e-07,3.170113218579509e-06,0.9999997327581459,0.014887897423158936,0.1430253862141386,0.9999999707702074,8.043863947850672e-05,0.05008737397420646,4.140081552235358e-11,0.9999996884592985,0.9980471349211522,9.521104899320477e-11,0.9999999999400206,0.999999924237934,3.793778873337887e-12,8.854081225753505e-06,4.9542026266829357e-05,0.6817774177532109,0.9998432658354925,0.0009114206590921595,0.9999999921851307,0.9999999218382684,3.716743539229784e-12,0.003794893291065842,4.043790450006868e-05,0.0002149049609623624,0.999999988260856,0.010945247994821578,0.9999976154679454,0.9999912974702286,0.999277536585953,0.9999999972395026,0.9999611038611065,1.7406895568809393e-08,0.7486852632325084,0.9999999999988138,8.929486797221979e-06,0.9999998937732384,0.0031441381570492264,0.011531921175363577,7.29289544111617e-05,0.000337141373790817,0.9999964175542289,6.403567352681748e-05,5.332099811841891e-05,4.392205266696892e-05,0.9999999999999238,0.8751419535995287,0.9998631213440352 -टमाटर,rgb,0.9999999999745504,1.5499411873469345e-09,0.19503248360355127,4.973610892025101e-06,0.13687719436343596,0.14397127906816332,0.9999999999939484,0.9912068364967042,0.9835773422097206,0.9945867953912768,0.18529361309907988,0.12971529285566136,0.15260004092350576,1.0863446800812481e-09,7.699213138212478e-07,0.9999999999999509,0.9933587939197089,0.9881708826675024,0.9935227148716662,0.5754353442589617,0.9990518623950759,0.9999975050971048,0.2286302673645768,0.999999583365832,0.00025190224969043654,0.9991166283256829,0.999999999992712,0.00037130841293139523,0.999999999999899,8.793083094901763e-09,0.14278105477423245,0.07927516651809748,0.1908554716587114,0.9998624973286514,2.4807072896815054e-08,0.9999999999999418,0.5522921337467027,0.9999709245384967,0.020924017060367426,0.21085931345515957,3.505317045198402e-06,8.730519090609413e-08,0.12979144452180202,4.041310713694348e-09,0.9999999999993594,0.0361338885878317,0.05767106045187041,0.19981681257554046,0.9999999999992186,0.9655334177695084,0.15583345962012582,3.745819987971807e-06,0.9919064095186305,0.28683248759476754,0.9999999999997793,0.15553961419889967,0.00010565208642422066,0.00013275363425268154,0.12997919518931061,0.1668752002031554,0.20109620743412673,0.9995102209039091,0.99999999999997,1.8054671060667948e-07,1.5368214315821698e-08,0.9999997469044383,0.9998947891230012,0.9951985816266481,0.9919562359655503,0.9840422586833021,0.24036656301653014,6.0356537119731316e-06,4.158273865062204e-06,0.9970691608015109,9.571228644724875e-09,1.2680884830927808e-07,0.999650289673776,0.9999996068453938,0.9999980532630733,0.0001648396160895497,0.999999999989059,0.0001550603828802416,0.999863556512171,0.0002694015066396997,0.989483791112674,0.9998939331177705,0.9999999999999192,0.9999741414865149,0.9999999998101841,0.9999999999880596,0.9930877615776634,0.9999999999999789,7.607772390857284e-05,0.0001175257216379897,0.00018756172922341165,0.0002367891429161789,0.999999999999867,0.00027406066798138935,0.00013386016667963548,0.0002871112592545424,0.0004597513497377989,0.9999999999863016,0.23069659712224597,3.6784786622627453e-06,0.0004375533635659079,0.1316719261368767,0.9999999999989886,0.9999994545975094,0.9947203551290826,0.2789282075234691,0.9991364257986146,4.399610919719231e-06,2.539599760820598e-06,0.05957273647819725,0.14287503585415384,0.14410572480865788,0.998933214643016,0.05520586916452845,0.14018754941799608,0.6894999533686434,0.08994898398785563,0.06057499279337715,0.947542267402583,6.359796147055846e-06,0.04978330955966775,0.008168660305396919,0.05635296371794524,0.9982518012283115,0.9520358741230438,0.9995223078963366,0.11125662864147022,0.9998307429500289,0.14317667731739725,0.9967467981256284,0.9991139901927758,0.9952287695642658,0.9947060168225743,0.9926647539608228,0.9517238980604924,8.49587249635595e-09,3.41144558031408e-08,0.9999999999999358,0.26375068161453435,6.495785916967724e-06,0.5662929851793055,0.49143481106036047,0.026685473213221466,0.9999986207467663,0.9998566730782275,0.9999997573135784,6.810597986435055e-06,0.9928119235846435,0.9999999999999181,0.18533719329977166,0.999999999999784,0.1537025620374115,0.11946515048841089,4.1509002906954e-05,2.932398165238478e-05,0.9969406838638168,3.000520166077277e-05,0.9966068961012944,0.9999999999999551,0.00011255302747746428,0.00017925014273388867,0.00034030932237732656,0.0003496577321395831,0.13025576876215839,0.16694386426493973,3.890434008207367e-06,0.9897640450253522,0.1554632879464756,0.9954495718010414,0.9999999999999616,0.983425446543683,0.9999999999942122,0.9999999999999796,8.194120102799372e-07,4.319619620661586e-05,5.289174864277531e-05,8.971603873593919e-05,0.9999999999999614,2.3379126365751858e-08,0.2274463395080602,0.13125198631332247,0.9999999999995914,1.56367114389917e-05,2.8179873466194684e-09,0.16758255683198678,0.129930657235904,0.2002487185977646,0.999964041888215,0.9999999999800622,0.4882573098177698,0.9986079875959224,0.9999999999992537,0.9985399544457115,0.07276227612307933,0.17492221052868187,0.3406110248045991,6.143538015311181e-06,0.9947767145686446,0.0007257225050443174,0.999999999990171,0.05805527122921195,0.2842626755732569,0.9999999999997695,5.280420968692647e-06,1.0453656375372693e-06,0.9999999999890377,0.9998355954802411,0.9999777558252593,0.0002443494943228392,0.14124660785265283,0.0006382208533951403,0.06883640158929592,0.08248866392245367,0.999999999999978,0.09398099768072893,0.0810561213418757,0.04811069492825678,6.157624467359464e-06,0.2637492002873624,2.6966003401262816e-07,0.9861610208806277,0.9836923240589068,1.559341435589121e-09,0.9876054942742903,0.9999999999999782,0.09045371775273814,1.831886402592126e-08,0.9999860488521735,5.119274302532374e-06,0.25449259567824906,0.07187696653211362,0.050321501727333184,0.08693894496712742,8.841182413800688e-09,0.9990103731911185,0.9957287683968749,0.9999921231698453,3.376580009998529e-08,0.22057879293098145,0.14629316073000279 -टमाटर,shape,0.999643465807073,4.710131188396002e-07,1.4303664159173445e-09,0.0005325122764476026,6.123258302672396e-11,8.50111529311637e-08,4.246625355654899e-07,0.8653377612049965,0.17866671551120789,0.9941675817311125,7.827652584141175e-07,1.7346045409004318e-06,8.957907607329178e-06,0.0001382048231152473,8.103116626813115e-08,4.0688414166326167e-07,1.9351249726063572e-08,8.626773847048637e-08,1.268908743157889e-05,0.0022659726340928522,3.906211316381487e-06,1.0652912463575737e-06,3.72643985409619e-08,5.923332710643986e-08,1.1952181023171156e-06,3.0593199403760786e-07,0.9999816130817566,5.1628111634958345e-05,5.396950645058996e-05,5.2408177941867374e-05,0.002653568268228412,4.95529682517131e-12,8.167953308674851e-08,0.9996559078333416,2.923284040392973e-09,2.7550656575154306e-08,0.9965988850325245,0.999999042755857,0.3083513575627737,8.259912400622325e-06,0.00021464459172128062,6.438970096335057e-05,7.415521430914712e-08,6.535542403177842e-08,8.552859908926659e-08,3.5087522688749333e-09,2.505161486422036e-11,5.4852498881198156e-09,7.785873246805693e-06,0.9953205205616569,8.407080010873525e-09,3.0570080984857445e-05,0.9999750219307066,0.00042509280374012173,0.0007625146786695147,2.515948297007207e-07,1.592204474993571e-05,2.5734332983116866e-07,0.00038428762390346944,0.00032355359044125857,0.0013452041399004322,2.5282839873736194e-08,4.5746862603277623e-07,4.307098208029867e-05,9.456309619245035e-05,2.000242593483467e-05,5.810053367409294e-06,0.9997446518083914,0.9999352986807357,0.640047408347879,1.023770605953436e-05,0.00019045467279111753,2.580825991804283e-05,0.9998813798058067,1.6276685597356482e-06,7.674337667923347e-05,1.4536220142058356e-07,0.00011769714674898457,2.27521347626122e-05,2.237412377835838e-06,0.9999974667046537,5.603644641087999e-06,0.9999246314993747,7.636477454552767e-07,0.9987317249098792,0.9998840827980756,4.510662902522335e-05,0.9999957648068649,0.9999034896743559,0.9999761997775259,0.9998975665676139,0.0016816856529415776,2.386567757230575e-06,4.246687430673599e-06,3.3933933908738056e-07,1.942996765720936e-06,2.255989501028008e-07,3.3854196363773077e-06,4.186810718847705e-06,1.1538671214126246e-07,6.363489077205607e-07,7.281137000240511e-09,2.0622152441374817e-07,2.6200097563205095e-08,1.2869486254958645e-07,2.8608524234444542e-05,1.0790124317216777e-05,2.5912264108520797e-07,0.0025078723331103045,1.284251232898044e-06,1.6992963299168598e-05,1.8563750827728982e-06,1.014662619574457e-05,3.454231204279859e-07,3.4391283817079567e-06,5.972234315561102e-10,0.8941085377562141,7.815030262734106e-08,1.447468283673338e-06,1.272426208675916e-08,3.0329740036428654e-10,7.63999316898968e-08,0.992919383344447,4.686357833315594e-06,5.424178069312781e-07,6.805512254850053e-08,2.7961176628598165e-06,0.9865054070523485,0.9978570416603574,0.9997554807084856,0.999997097718202,0.9999243648886497,3.634492744365458e-05,0.9999681079364098,0.842813659324559,6.241548141641369e-07,1.899597153537164e-06,6.868663080592657e-07,0.999812061059012,7.694290351190826e-05,1.4174006787736174e-05,5.075610642765173e-06,0.0024754429344749493,0.00017047574633191365,1.3120124873277314e-07,0.005128932252699462,8.404752579883846e-06,0.0009050091402490399,1.4174824936702568e-05,9.23365661965058e-06,5.487275016636917e-05,0.10168355943572617,5.276198977877314e-05,6.0688101143308436e-05,0.17159388300550696,6.574688960114349e-06,1.7346045409004227e-06,0.00018481163259822004,0.0005655228713401654,1.000178320083343e-06,0.021882247116670025,4.708073394871527e-05,5.238799761447153e-08,0.016497896713523166,0.00012366280094875198,2.2673862205949193e-05,9.95137292536006e-07,1.49402780244806e-05,0.4096706615459634,4.967020121856498e-05,0.002663985884992195,1.2257890474278254e-07,0.9688917653791929,4.096915630167876e-05,0.8310716939518412,7.174254329397522e-07,0.0004938140085751512,2.305331175148298e-05,3.859034013349702e-05,0.0035445602310847676,0.0005254655961161386,1.269361765216319e-09,5.071405798658382e-05,2.2174455853539144e-07,3.4929731419507895e-06,0.00023713330072860263,1.4769737054605668e-05,4.176188371508127e-05,1.6832086862167464e-05,4.16547376003689e-06,4.668551710423672e-06,0.9999740532845259,0.9997683805355141,1.8793047083528e-05,0.9880917868722588,6.447743500979394e-07,0.5448240732453336,1.0187009910061266e-06,3.234608343411511e-07,2.9335613916846456e-05,1.57710940794597e-05,0.999485963238729,0.0008136276673578903,0.9999978172180956,1.526172319249027e-05,6.575124275333426e-06,9.123600144668326e-05,3.3337812390585833e-07,0.0002607439017566085,0.9999957613195691,0.9995933327989636,0.9999866473522463,5.699886589487621e-05,0.0019277613263946878,0.0457524090211801,3.161496744984678e-08,2.8546951920234246e-06,7.2387915715628644e-12,8.140954982767927e-12,1.976117040185862e-10,1.1342292389560013e-11,1.1391596178390609e-06,1.2221684658570878e-05,3.640591418819733e-05,1.9933789216781544e-05,1.0740969743718022e-06,0.0001608463906276635,5.744981164903684e-05,1.3735859455347993e-07,1.058152082364475e-14,3.495962364066363e-05,0.9997862602650288,4.617958505620622e-05,0.0006521828512653702,3.0329740036428654e-10,1.8381623762337586e-09,3.314524339737993e-07,0.00010245867803162327,0.9904206080543628,0.9868042913066857,0.999986934966565,2.0538268308769908e-05,1.6214139417706593e-11,3.243332805977839e-05 -टमाटर,object,0.9999999467416978,2.897515492997082e-07,0.00011455175768322697,4.757801454337115e-05,3.5797580462158404e-05,0.005316027196477602,0.9999773070261522,0.9934271324673752,0.9755570847535668,0.998858363203054,0.003184685701871365,0.0008310150086958708,0.005206086069673845,8.484359346209143e-07,8.974389109735388e-07,0.9999998920963876,0.06685148130681211,0.07653318827877423,0.1201187464654245,0.18058321233651176,0.6998671437922414,0.9633485136838787,0.019205981922616647,0.9605913109383908,9.17474041519588e-05,0.29500808173931753,0.9999999972311575,0.00024729220928406494,0.9999996670232713,2.5717684927227255e-06,0.4181138106773406,7.5116918239012245e-06,0.002890381695388875,0.9998411121307236,8.813069606529238e-09,0.9999955473246074,0.9079566992298789,0.9999901394689877,0.20332742796871822,0.017656518478613333,1.6390086022890072e-05,2.9811077227595857e-06,0.0020126780636688935,2.5064621948294656e-08,0.9999838155031863,8.450344093817528e-05,8.58127611609353e-06,0.00044776216511957235,0.9999983417644276,0.9917900096421639,0.0032289960670929254,5.818443957354441e-06,0.9993962471113181,0.16997259161150247,0.9999999692831605,0.002039300536055166,5.384999192259306e-05,7.684899231432043e-05,0.0035846439019610833,0.08532746354336379,0.2004136557759797,0.5395100927297806,0.9999997888181709,1.5097769915045925e-05,1.3650871200243307e-05,0.9955565901509187,0.7756999883223317,0.9995671494201582,0.9993239491297633,0.9873887007298191,0.07403785761911089,6.495851813665286e-05,8.526691784833224e-06,0.9995851088424131,1.7912658293434623e-06,1.1210779789331425e-05,0.27915575201132514,0.9926030257454259,0.9792824835229936,0.00023743788822618155,0.999999998737741,0.00015753702495622743,0.9999500998325583,5.4896443500589156e-05,0.9978236263663572,0.9999251672079136,0.9999999624023767,0.9999842736116012,0.9999999673264521,0.9999999973974063,0.9993885359464003,0.9999999889343875,2.9793192471526504e-05,9.794670707292983e-05,2.8824915379638415e-05,3.741006747363724e-05,0.9999958257483218,9.184778984811922e-05,0.0002466938346509512,0.00012771192879571292,0.00022170326988239103,0.9998572536612712,0.008269211462349345,3.881707181055399e-07,0.00011001827336971158,0.10212431381180609,0.9999995398899005,0.9538912088004152,0.48787836911716703,0.021738411060791857,0.7331801153153741,4.027877741522505e-06,1.6395518512413396e-05,0.004079997805121519,0.009429208508732311,0.0004909079599528624,0.9961617520760728,0.005371629297605305,0.01366347643748786,0.0009779702298470516,8.09136698488377e-05,0.009565317125203001,0.9892343147788191,4.3893851961402195e-06,0.005845335080642444,0.003999583867934683,0.009107464420416532,0.9973989676826575,0.9911786525672831,0.999754424127923,0.9670936676569954,0.9999242533204185,0.06405877800529262,0.9996591474273087,0.9956535835319926,0.3049942169182917,0.21033867420605637,0.29039453361142437,0.9967228779103983,6.141311474385204e-06,2.734028586740196e-07,0.9999996737000943,0.4504162372092002,5.993628586479342e-05,0.02520732931213772,0.32764834915870444,0.0016720528621715631,0.9955972698391158,0.6656439508382959,0.9973252729271164,4.242206177328105e-05,0.9663265900188093,0.9999999085762358,0.05622015844096802,0.9999999925134196,0.0360733755450271,0.0008039280183072669,0.00011665648681306867,0.0001330389608486186,0.6800883480237676,0.0009562265763200873,0.5806540444382176,0.9999923071358796,0.001617725674424373,0.0003186497201571137,0.00027803403498459836,0.0001580112319867886,0.03259019870484064,0.4837460102655194,4.8786344996374584e-06,0.7344830302231999,0.004814485882581696,0.9957499137524931,0.9999999781035058,0.9840377265490138,0.9999955511234948,0.9999999839301335,8.749878172883186e-06,7.922238014976726e-05,0.0003423334972093055,0.0002619291296887507,0.9999918827334756,3.500732133429343e-07,0.0285178773903531,0.03670948968496793,0.999999802362687,1.22661003701751e-05,3.847382252053069e-06,0.07286656226551988,0.001600663676603509,0.013166434421493171,0.9999750771466199,0.9999999609619832,0.07915935138019714,0.9990167250807392,0.9999979356276644,0.9930341023080618,0.006215145196786933,0.012750582388247,0.15661768190358571,1.305659811008542e-05,0.9990677205770033,0.00218164384794304,0.9999999976063851,0.008323075447065098,0.08696152672154317,0.9999998556246315,4.21271702573444e-06,1.1166069261539855e-05,0.9999999965945545,0.9997350609940832,0.9999795705380139,0.00044156443469503477,0.11844175176623933,0.006573599854005922,0.0036175443125945695,0.020199291931169712,0.9999834143863019,1.9771910073356523e-05,1.1353145370292784e-05,9.395405027147367e-06,1.823872922824596e-05,0.07343452848352376,1.2211825269973499e-05,0.213815560627104,0.23284517725736562,1.5351651320403978e-06,0.16693215702426628,0.9999998776150344,2.3795722142963487e-06,7.760375209741524e-07,0.9999756388733078,1.2952466790278183e-05,0.21618491208011986,7.068058157385477e-05,6.207248411295408e-05,0.0004593251486319352,5.342786615603455e-06,0.9985295442508016,0.9969935845411774,0.9999915577307248,7.693855006439534e-07,0.0002668511065762532,0.01755474402434454 -टुकड़,rgb,0.9990863602733041,0.0027717457305605772,2.6572630034924266e-09,1.1655501994311153e-18,1.2794007893123596e-10,0.999977862591822,0.6672345705460121,0.9999984456036494,0.9999964418602855,0.9999936755693173,1.1285706883517483e-06,4.371952212179456e-08,8.432076130270951e-08,0.0011462063685998955,5.338190196223852e-19,0.995991281101636,6.385708021602227e-06,4.731062448659825e-06,8.828075020651613e-06,0.06070213566638147,0.00025185742818681876,0.000253107395273419,0.9999801190852665,2.1345146362197616e-05,0.9927239704394949,2.8087142959560898e-08,0.9998668125379425,0.9917634115290571,0.9968628246101954,1.137585896637755e-05,0.9999771640435309,8.434852716360973e-10,0.9999683500665881,0.9998904692119812,1.590282296054332e-16,0.9943426544935491,0.013521712780820497,0.0004390028635811303,0.9987973711596471,0.9998378896800508,4.361032640829812e-18,1.0393691717542396e-05,0.9999680938143634,2.0541163281119006e-06,0.8841679915622392,9.156247946201863e-09,9.905659619145697e-10,2.7160475167070834e-09,0.942386654098622,0.9903919390791588,0.9999778867451368,3.653850079791316e-18,0.9999964489481087,0.9999457343254361,0.9724496590865227,0.9998811589140998,0.0005199448723304618,0.00022507591336699226,5.557473152402468e-08,1.586882859868281e-07,1.112073629525452e-06,0.00046121470742214196,0.9988824608969648,5.684869751854863e-06,5.4232312688105745e-06,0.0002706631090033766,2.1724007797778002e-07,0.9999963705002047,0.9999981019093259,0.9999971729073818,0.9999552947217876,2.5524237196934215e-18,5.9430946049934345e-18,0.9999963276092416,0.08186426365843627,1.630248767609223e-05,4.797076863823481e-08,9.321559457581767e-05,0.00017838882541591392,0.00013076445307515688,0.9997978411979386,0.0005141373381377126,0.44051825995313076,5.5659518508585924e-05,0.9999980927425643,0.22243251760392627,0.9967013886560114,0.00022558758394475802,0.9986455468059451,0.9998238159751396,0.9999984531801888,0.9997904774051033,0.0012050703666735406,0.00010548663698899761,8.809312199099898e-05,5.912855115578784e-05,0.9943204631192424,5.403434098432699e-05,0.0005570098156634516,7.234094878553827e-05,3.6062088675910766e-05,0.26949888802506544,0.9998233737683816,1.9612767002048362e-18,2.0900902671482662e-05,0.9999771391422402,0.7455792949057011,2.312762401095448e-05,8.317996628870626e-09,0.9998251384918121,1.661535803609259e-07,2.6513412330988205e-18,8.932367424140749e-19,4.418951056487538e-08,3.377099453998827e-07,7.833149957350786e-07,0.999962945061955,6.304926721671698e-06,3.7118899151536154e-08,6.772773616865925e-09,7.456428447724624e-10,1.2843235431586017e-06,0.9958569400239955,4.954607469132315e-18,8.502734334901904e-08,0.8777448469186747,1.0400507002233593e-06,0.9999630237414379,0.8683416913439916,0.9930971599506618,0.02240777222034269,0.9996121635207216,0.9999803676237026,0.9999963714504542,0.9999540559782265,3.7720274573940466e-05,1.431782381534295e-05,1.0877732047036861e-05,0.9683374390841233,6.175238410066093e-06,1.6990068031584108e-16,0.9994780970137478,0.9999560155299053,9.436104518416454e-18,0.18872369101130046,0.013186282535616836,0.1391852822698691,0.00016251068307387718,1.1079106923371295e-07,9.987455444549131e-05,5.5138733018516755e-18,0.6698966079983075,0.9945719995880041,1.2607649487330352e-06,0.973908470759805,1.4234771021880074e-07,6.728966566344133e-08,0.9806618644942534,0.7877262675366619,2.9553481558661572e-05,0.9956860604865214,2.216194293547813e-05,0.9134289650891666,0.9864418396609659,0.9955361730999356,0.9987707505659442,0.9962712749725098,1.0726234878333274e-07,1.7784011110274914e-07,2.1342461037418697e-18,0.5484998953680957,0.9999776581558453,0.9375483342741705,0.997922193102938,0.512082389120991,0.6826386375910085,0.9998583239764666,1.3135575259265107e-18,0.9986599471738536,0.9850355041161373,0.9856603921628404,0.9954037385504116,1.9393951213544614e-16,0.9999765461917236,0.9999768974436833,0.9720466663244604,4.400733910667792e-17,0.007223875579896208,1.744749579051486e-07,6.908451874593682e-08,1.2942121810895522e-06,0.9985093784208646,0.9991971993966152,0.007022727895679953,0.9896910524299555,0.9598388311072441,0.9999403760854725,1.712494961320735e-07,0.9999716827073318,0.9999455410519079,6.4516299962314285e-18,0.6854103461455349,0.9967926748661713,0.9998917055460379,3.984535231592687e-06,0.9999041378878424,0.9692138365042926,3.610837484113409e-18,5.561414078028975e-19,0.9996141822889316,0.988484412632743,0.0010205740702801949,0.9909139670728108,9.586489443493768e-08,0.9994107478697362,4.617691421533847e-07,4.633132074617975e-08,0.9996296012280197,4.571465783989161e-09,4.043354877409284e-10,4.746008756569e-10,8.600646468131401e-18,0.9999552490720011,4.470141839601953e-06,4.776812151323658e-06,3.7145110165704004e-06,0.002790868841384058,1.067778849297499e-05,0.9996592662572874,7.549330441789232e-10,5.323680457414891e-17,0.9123204521625651,6.249655420796517e-18,0.9998601221315847,8.542201427130961e-10,8.176077702195724e-08,2.3044889371204142e-08,3.491453611822238e-06,0.9963376313076932,0.8730990728106096,0.0012012032467500326,2.471183691716883e-16,4.626920609565016e-06,2.971769347092776e-06 -टुकड़,shape,0.998516327868674,0.6593330449932533,0.00028106550430167485,0.9998545596385608,2.269187964815849e-09,0.9999626990170001,0.9985540731855684,0.9994771147880112,0.997596573733291,0.9999965231307034,0.06376225786205554,0.0006124886454929563,0.014440200134245662,0.9171721470528196,0.9654631814372896,0.2859683570798464,9.29854799825011e-05,3.2629666717960255e-05,2.853154650861596e-06,0.0025548698566078606,4.382821548042349e-05,0.9997277700085307,0.5884391985545947,0.9946845680672249,0.9997994364899261,0.9994477969515728,0.9999940225236824,0.999993173967917,0.9978865712687107,0.9994833082021484,0.9999796137225822,2.4582424835056493e-07,0.9998373104120647,0.9999999401346138,0.8956835976220089,0.0265286995264851,0.9956825174085389,0.999924521835179,0.7974824575376568,0.9995100834928571,0.9999924020859452,0.9999897923284266,0.999951549594897,0.9999756669160124,0.9999156630543752,6.964150913108165e-05,2.395044860751112e-07,1.639951953344235e-05,0.9981657469368445,0.9999999514793628,0.9996818077454543,0.9993932966776847,0.9999994107505435,0.9999982702740678,0.9915171654359712,0.9479528010348637,0.013815015215930492,4.333027517731334e-05,0.0002968996376591543,0.7670719422080395,0.8615598045767506,0.00010807467828347979,0.002648758181747703,0.9110718324641895,0.9945390333585887,0.9999968574496407,0.9999067073335695,0.9999989535450313,0.9999991307672274,0.9997593752345132,0.9999563692025301,0.9663259946342515,0.6944092421495799,0.9999988784417975,0.9601574642490727,0.9490662251744163,0.9998403439103929,0.9999966131781148,0.99994377580193,0.0004989830017390498,0.9999833018103702,0.002503946332853941,0.9999977366113503,0.00025147254689506334,0.9999978548763954,0.9999971776610184,0.9739458749561865,0.9999489939607286,0.6768497245357405,0.9998528145616324,0.9999994627186739,0.8434709378436442,0.00033866703340123026,7.020677339393602e-05,0.0001459101028302576,0.00014450660202688212,0.999981145063536,7.940417460838268e-05,0.0007599188771547637,0.0011710269387818508,0.00024741828531771353,0.9949678936192649,0.999691938077078,0.9995268002403137,0.037007932457235604,0.9999252323738993,0.9505807239680776,0.9988232725242155,0.9999971232300942,0.9998110156373983,0.9999986042062894,0.9124504194792948,0.3872706149736181,6.961838094381485e-05,3.908485617260297e-05,0.010961962667980142,0.9999999107331132,1.8511896741000967e-05,0.00015115438568576167,0.05037696621856535,1.053390364923081e-08,1.6181245614580242e-05,0.9999984000251279,0.9999822529567424,2.2857181420451917e-06,3.749775655885089e-05,9.454882274910767e-05,0.9999996665637473,0.9999994903137728,0.9999998983689572,0.1612746450583687,0.9999996788613578,0.9997899306000646,0.9999996186171087,0.9999994928829199,0.00017174728775448233,0.00025993319406181686,0.00015028399840978936,0.9999997824122793,0.9952599544373939,0.7832479692910018,0.9474894599118907,0.9999783255431852,0.9999850220418254,6.0397906806842206e-05,0.9999757873210501,0.10153803959194979,0.9999931750817026,0.9999991982556891,0.9999246479036291,0.9998846532342979,0.922648941458103,0.9324997871232591,0.7504354807268955,0.9999878239133176,0.45495537522097684,0.0006124886454929585,0.9999992803006476,0.9999959889576303,0.00013881399590323895,0.9999998765957031,2.9867825325306233e-05,0.007267740850251416,0.9999999919954855,0.99999985755228,0.9999991530207071,0.9999701503723358,0.03089032439465981,0.9992851970053607,0.9999468014287042,0.21907178327373225,0.9996539409699269,0.9997121387862543,0.9686037582609265,0.9993919348711996,0.9994881944160374,0.7649317229602152,0.9660334618508402,0.9999998971907361,0.9999999068159378,0.9999997557773296,0.402681204161928,0.6496246083865118,0.6272584678244442,0.9998090769107753,0.9999567733294558,0.9999727711978581,0.9986553200182006,0.9600504672626093,0.0023990454025462757,0.9995702822607565,0.9999982737408645,0.9999883983853424,0.9526372299355345,0.9994189445709105,0.9996553028787194,0.9999998438011106,0.015556215165798309,0.9999835289870318,0.99959625973479,0.9999297637746449,0.9999747260397178,0.9999999480882202,0.9999789085755336,0.605492009942328,0.9997445616454405,0.9977149241862004,0.9947674595438452,0.9534523635538994,0.9999777311309472,0.9999999343526681,0.9998431258361513,0.9999979290609593,0.05966350226589129,0.9999998081367887,2.5240359860183067e-06,6.920149897884926e-05,0.0014241437344604175,1.3463548355426363e-05,4.1105762216427244e-07,1.0225095078040283e-09,0.9935470924766885,0.9999662795062986,0.9966602139466028,6.932164873270815e-06,4.727165649971435e-06,0.49133167235520536,1.2460896776282085e-05,0.3624020631286137,2.9080731592223393e-06,0.6608686959937075,0.9999988364286206,0.7781416712747149,0.9999709363692582,1.053390364923081e-08,0.003024057033209818,3.778255868135428e-05,0.9979630694866655,0.9999711176709148,0.9999945525628049,0.9999794994933442,0.04243159182183039,0.000869377600557074,0.00013192920819448764 -टुकड़,object,0.9998535834163571,0.018451189145596392,1.4592254763841268e-05,3.8143212678146166e-11,4.185698624606067e-08,0.9999861248745168,0.9907523555601325,0.9999945891484943,0.9999862777447525,0.9999969814028052,2.5410971815385328e-05,5.136252441239724e-07,1.8443313966509897e-06,0.01979179973525166,1.4931067249608182e-12,0.9970562643785746,3.089565173823614e-05,1.5220242530474772e-05,4.059787620285809e-06,0.020184874914162675,4.915404045096011e-05,0.20866450642082301,0.9992944390449101,0.047333654603214995,0.9994432552164202,0.000339613657942894,0.9999916513959319,0.9996977646429781,0.9999103951201482,0.005048357496838937,0.9999815667584917,5.358952758451963e-07,0.9999897543705374,0.9999941937133904,2.4267464216445476e-10,0.9986579211388433,0.6409283836757536,0.23001852867122258,0.9978383128142397,0.999739159503755,2.1257634432777563e-10,0.023099765598945218,0.9999849752239,0.006394877816155064,0.9988720057949754,3.954829756109308e-06,7.496634045247907e-07,1.8795664143743971e-06,0.9985013051985605,0.9998542369037225,0.9999692494840673,3.447150204815728e-11,0.9999988544216917,0.9999913515882504,0.9980678791436404,0.9999377221405867,0.0007109515648646271,6.317262600008072e-05,6.045843637001838e-07,3.209280906163349e-05,0.00034887268566975786,0.00010189560911620119,0.9967455730778435,0.0003242405457396532,0.0013880862127185437,0.665511974339628,0.005880497427065593,0.9999989521905718,0.999999131044412,0.9999938823418547,0.9999821042300248,7.34576362919126e-12,2.362473877260491e-12,0.999998860178041,0.3011221822047108,0.0006073717626595104,0.0006664617370348338,0.5356869582885068,0.3827396048258626,0.00021280302820056947,0.9999854338701323,0.0004098757599652391,0.9897901886626241,7.1749094304165e-05,0.9999989988193516,0.9806299279889807,0.999266522838375,0.16809367201900893,0.9988140961712908,0.9999812467353091,0.9999994104697318,0.9998911240402205,0.00043222257305840483,3.904829231554521e-05,5.104175266382729e-05,4.121375196443544e-05,0.9999334702626514,2.917803710285578e-05,0.0003829243337121669,0.00012892518902215104,8.655240371262886e-05,0.9663796377835914,0.9999065892348721,4.2544367939031345e-11,0.00015525723409940068,0.9999802315694785,0.9626534577367283,0.07026623176914687,0.0007496323201900646,0.9999333841651408,0.00602111188139102,3.676573994895414e-12,1.2735363213241618e-12,7.373632668110439e-07,7.475163613313387e-06,9.899396405940313e-05,0.9999973570482891,1.7650592561162046e-05,4.3696867896238754e-06,7.472752473557902e-06,1.42552124048449e-07,8.90955799423869e-06,0.9998124592504142,1.9172422480615872e-10,5.548662885284941e-07,0.1757317126162427,1.1370586353403671e-05,0.9999968910055859,0.9980913432879177,0.9999063935914164,0.16805693997907908,0.9999778091431798,0.9999620801104946,0.9999987331054764,0.9999956568514462,7.181423139694661e-05,0.0001312101857345947,6.362668195390168e-05,0.9995463366933485,0.001696174928135712,2.2867951129136945e-10,0.9999292614780633,0.9999585394543397,1.0318564140723322e-10,0.012266542761422755,0.6510132323772831,0.06567146990896194,0.5247950624581519,0.006783809059275959,0.29577272643582325,3.662713935574496e-11,0.7937867707158388,0.9990169341576338,0.00016088064819241656,0.999593161497597,1.3308639498943485e-05,6.833191670036445e-07,0.9997765235179132,0.9964729174351321,5.0029462024399064e-05,0.999943860346481,8.38959716259287e-06,0.9943197367368061,0.999923009458451,0.9999192037179528,0.999950353046592,0.9997223037537517,6.517954551282487e-06,0.00026618799556054067,6.058220133511574e-11,0.3036107644204468,0.9999789743623045,0.9904973482058952,0.9995553970679931,0.9464179216344869,0.991075742457689,0.9999181429123206,5.7799767554746265e-12,0.9999676026431866,0.9998487037232691,0.9998235730199067,0.9993572622770408,2.3830390741406206e-10,0.9993278895382186,0.9999777182913355,0.9997089581684471,5.166506642146574e-10,0.1950046714804733,5.926268782163218e-05,8.903869026770757e-07,0.0008636754647330969,0.9999183422982025,0.9999525646620753,0.06104299247842854,0.9975280437117201,0.9985457107709664,0.9999958539002705,9.013217136226156e-06,0.9999861012064305,0.9998570702962569,8.216225848246312e-11,0.9850678947745101,0.9999439812527988,0.9999917393360519,0.0005244914545788635,0.9998943916492629,0.9975340873191888,8.291502692874116e-12,1.1013413914381294e-12,0.9999691572724464,0.999881503796606,0.35635005093535094,0.999731446178401,1.1031642730183388e-05,0.9999772768625652,3.202667453729466e-06,1.8831785684979639e-06,0.9994309205706227,1.5426975382717922e-06,4.5643210424446814e-07,6.726171577485228e-08,1.828570815506446e-11,0.9999825643150639,0.0009085901561665591,4.2070037659079275e-06,1.6590779471968448e-06,0.029284645642120202,8.60009319473773e-06,0.9996027397859503,2.5244245771200713e-07,4.780881563349503e-11,0.9984608009826254,2.778724137781426e-12,0.9999614199387189,1.5476838893189364e-07,2.750046114218017e-05,9.216918659196e-06,0.001109237511521973,0.9994122455621832,0.995953375266394,0.5075123361984673,2.84634848821193e-11,0.00021063116194801354,4.217724316103337e-05 -तैयार,rgb,0.9999999999999711,1.2280540840418172e-57,0.9999997440864907,1.0,0.9999999999995048,6.30759103826281e-54,1.0,6.705809072902196e-45,7.70152572356664e-45,1.9453008904338216e-41,5.376332223366206e-07,0.2988467307658414,0.04177491309700262,1.6854062097131052e-56,1.0,1.0,0.9998966552936054,0.9995285234719556,0.9995825278333489,4.674106223365926e-25,0.8802261103128394,0.9999999999999962,5.822270743124101e-53,1.0,1.8650864060338777e-56,1.0,0.9999999999999569,1.726507476765638e-55,1.0,6.869055281403232e-44,6.825009636267342e-54,0.9999998830653919,1.2810071882789554e-52,2.3558071464204106e-28,0.9999999999999978,1.0,2.8818422168203587e-22,0.9999999763704052,4.8621768985314016e-51,1.668355363182126e-49,1.0,9.091263577376086e-40,1.5534245742373638e-53,1.0240622627616897e-41,1.0,0.5644804418751135,0.9999986944716324,0.9999997531266621,1.0,1.8764187415586422e-32,9.701006721048071e-54,1.0,2.634954605939629e-43,1.369037434281693e-50,1.0,8.288203408406911e-51,1.3705163032590572e-34,1.6828377125335654e-32,0.11874988181219523,0.003425814222431296,9.342704028935778e-07,0.9314172229632459,1.0,2.8485994679979633e-37,1.910175519741296e-41,1.0,1.0,3.9194816463044685e-42,2.295772341371611e-44,3.5853760964620186e-45,2.0317479915982818e-51,1.0,1.0,4.88241294660537e-41,3.0539426207072333e-61,5.06603372022038e-40,1.0,1.0,0.9999999999999998,5.219881497349491e-31,0.9999999999999083,7.789447365575314e-34,3.4815759805081956e-11,2.314646326743287e-28,6.126500914309694e-45,1.0829428183513809e-08,1.0,0.9999999994090862,0.9999999991663322,0.9999999999997262,2.1913246150876556e-44,1.0,7.270769144423877e-37,3.1474173584669402e-31,5.6430534953051265e-30,9.888589047187881e-29,1.0,2.8628297154684327e-28,2.836123920420067e-34,9.19315837750042e-29,1.8488625547671183e-26,1.0,4.063908853581429e-49,1.0,1.8502169401971702e-25,4.4240503838701994e-54,1.0,1.0,1.0,1.2932924748321287e-48,1.0,1.0,1.0,0.0070434358483868345,3.843166136189754e-05,7.297417450932994e-07,8.23800820509859e-35,2.6326976635335945e-13,0.5908642679722104,0.9999999994116373,0.9999999671036772,7.517362360536178e-10,6.296081015988006e-35,1.0,0.00012262514172756218,2.6456063666425796e-44,1.4246961128010605e-09,6.723984873037694e-36,3.9907380907255654e-28,1.136705174052956e-23,5.5272397953984245e-28,1.433213812435598e-26,3.789829832762711e-54,2.757024701500999e-41,5.033726970634639e-34,0.9270369713458133,0.998553042570457,0.9979113342211721,5.616287080298122e-31,1.033541305068639e-42,0.9999999999999989,1.0,3.411209442366298e-51,1.0,1.408099770326907e-27,9.995850006828184e-23,8.485244459362723e-35,1.0,1.0,1.0,1.0,9.497743686309216e-22,1.0,3.184156652971187e-07,1.0,0.0036262388441458686,0.03271050923873881,4.5295892288608645e-58,6.189142562787324e-54,0.9973697693137961,2.0950558231634958e-61,0.9988357147171512,1.0,7.535752380450686e-57,5.493698900385332e-58,4.470020254834135e-59,4.878496321698348e-57,0.005658204198982977,0.001988951699562064,1.0,1.4769187437699475e-21,9.975594341783747e-54,1.763621670098626e-24,1.0,2.4536410018732655e-22,1.0,1.0,1.0,8.124416672344725e-63,4.3374420191597766e-58,3.5640768529940305e-57,1.0,0.9999999999999909,1.0916665976746855e-52,4.5353881140653874e-54,1.0,1.0,1.6460560596172174e-58,0.0022276456720222194,0.04482711862405332,4.438285611307354e-07,1.1683062140579402e-20,0.9999999999999887,1.6132112629673793e-21,2.6933469025817705e-25,1.0,1.1524271240544108e-34,2.821090868568693e-05,4.979694729325514e-53,4.520323046583819e-50,1.0,3.490172159028372e-21,6.5887577656914685e-56,0.9999999999993809,2.912517030647271e-12,1.281213620799513e-49,1.0,1.0,1.0,0.9999999999999936,2.39396814619717e-20,0.9999997247329391,4.13674048932223e-56,0.015030853713120134,3.540802904101899e-59,1.847636305398405e-07,0.028543888485729477,1.0,0.9997894811672839,0.9999999973613936,0.9999999184773374,1.0,3.6562945385288125e-51,4.489285703733701e-36,0.9989055467537244,0.9992301352164767,1.2183376269183615e-57,0.9732387221608155,1.0,0.99999996601089,1.0,7.421213407976554e-11,1.0,2.9008148967378787e-49,0.9999997944653901,0.000156224094852419,0.5341535656353789,1.736429784419815e-41,1.9243611799524628e-26,6.819518165926345e-23,0.9999999976657279,0.9999999999999907,1.9480704214135074e-09,1.4415524335309471e-09 -तैयार,shape,0.0018254812836089153,1.9922619804892496e-05,0.9999967589216542,0.6869768615689611,0.9999999907671447,0.0003372297785182784,0.03170019014685801,2.092339668804437e-05,5.533510185508021e-06,3.568257964765093e-05,1.1356728454659176e-05,1.2247150945275129e-05,2.5728951440311277e-05,0.0008943221450470964,2.8364866146123077e-05,7.470673873054275e-05,0.999849737185947,0.999984894904269,0.9989010567050696,0.996408500795405,0.9983771836955015,0.8182691631957775,0.00012730943352200246,0.9947995440187676,0.9636172478795878,0.6253962771929625,0.25264119822001063,0.8623521773534601,0.15708425281357746,7.804219642502064e-06,0.00013968370661253995,0.9999999550416867,0.4397645520724044,0.001956665782779457,0.9926660442611087,0.9999772153242757,0.852423668624386,0.013023350332610904,0.9948852289139791,7.80226745616773e-05,0.0018919506704028791,0.021220216357587838,0.0004390250298147295,0.00018562648875261262,0.0013616105433326736,0.9999975072620467,0.9999999977968244,0.9999178202694247,0.5268679100563232,0.005347902002947122,0.00044223248556037774,0.1685679732801622,8.202642067853093e-05,0.0003800879449239952,0.004462438451144668,0.9959619026450348,7.48165963340114e-05,0.0003522764870241701,0.000145993713737269,0.0008387311203069608,0.00034786478775766734,0.13221339480056127,0.11457671399166254,0.000684315813765566,0.00046759975601687163,0.8794219275087795,0.8507661492125924,9.781245506578282e-05,8.226755656287076e-05,1.0932132157950852e-05,5.615554342337183e-05,9.455752485329014e-05,0.002038491508140734,0.0009239987352626897,5.6581338950140725e-06,0.0009382469496926451,0.1421866566314719,0.4455406394838137,0.9987749611370473,8.365452748594789e-05,0.01377994088674795,0.0005278249466751666,0.0005038543587358822,0.00044149589558728177,8.397276706495275e-05,0.0031164993394502175,0.00023610515039219698,0.06633653076192085,0.005690231980822754,0.007343951747170959,0.0001008607818778429,0.01163780156949495,0.001494395804227111,0.0026227453413738212,0.0013617488685592866,4.6274912089272244e-05,0.000838523986708272,0.0010241934673962624,0.0026783106674473584,0.00018804206713670218,6.184039378414958e-05,0.3138553270435914,0.46239000218459125,0.328251911015467,0.005073137354833196,1.2124236605401248e-05,0.002115913974853445,0.9958866145197196,0.4928425757103733,0.008634210492155368,0.061850854106631444,0.05614503562399526,0.00017793014717918073,0.995691166843756,0.006128585627518482,0.999991836685284,0.4988400849997191,0.745940129971449,0.8813255123916395,0.993813469123138,0.9999990236535392,0.4550748610970537,0.03866338554073904,0.0008859749709879694,0.6099620426605561,0.009589620168217898,0.994693925886952,0.06360206338398064,0.00482591646028262,0.006744590013618807,0.976697899668845,0.029317381964261167,0.00033039687520757525,0.0005843664451901749,0.34473932274818475,0.10460202944256697,0.9979853427105777,0.9996604240599651,0.0027511503272009577,3.5557244793479715e-05,0.999987865606077,0.11658375153018617,9.498437483904427e-07,7.81928692411233e-06,0.002008680326555594,0.00018538450373584053,1.6686264029360135e-05,0.9313002871589985,0.8322338129997088,0.9842332506421747,7.663845818364396e-05,3.151920478392084e-05,0.000124660474615455,0.0005229975069416906,0.00036487446241680635,0.00010102424571444937,1.2247150945275129e-05,0.7690880064697698,0.1476727254897328,0.8851393561515528,0.8047713952866279,0.9910806975406128,0.9999999525564545,0.22358445165615065,0.436502421549367,0.4210308652373626,0.3207027310779223,4.709513759098086e-05,0.013862950913611413,0.12012102952442126,2.6145875725054306e-05,0.0006279939898802161,0.00011591908796774303,0.00014201771119931147,0.00026519059617589424,0.0014476275888713926,0.0005079394244956746,0.0001674010779460802,0.12414073692717112,0.7113653542919198,0.7534429221943378,0.9983468951512107,0.999992990113289,0.00012159580929895191,1.605990416047246e-05,0.057543393369649386,0.1624429559608462,6.44022999694965e-05,0.0001228812630100088,9.025095663069842e-06,0.00011702521289459036,0.002189641892451061,0.03420066918427197,0.06037782508604769,5.163587966027023e-05,0.002661100115665672,0.048415445244086155,0.9881130250769834,0.00027623154903721445,1.571194460957201e-06,0.0029014077004863195,0.00015119272095398515,0.09210684561827287,0.11459888741683054,0.8344356088158026,0.45115712423003324,0.00020204523819586248,0.3151322714602495,0.00010152875359795263,0.00812352132150877,0.06397627153124687,0.004503732447667757,0.27276766045480827,0.00015904015577690043,0.05885084610336002,0.9465070036705111,0.8963772095493125,0.35527643817891014,0.9999983145800131,0.999999999683536,0.9999999693989752,0.0017889013535246601,2.579645639725716e-05,3.67191674814094e-05,0.9826417113039324,0.9998034707139817,0.0012340178992954753,0.2921765719451404,0.00012822287606034264,0.9999918411750239,0.03946943119527893,0.0009028780091798483,0.0009362590908164289,0.0002471197192715014,0.9999990236535392,0.9141143676409972,0.9998832096432314,2.5041756293753507e-05,0.00989567444073141,1.9455739738115e-05,0.008287360001417877,0.12718112611710206,0.9999967797530188,0.00813073519092403 -तैयार,object,0.018700758456734176,3.4546541910596983e-09,0.9999988786433722,0.9999829674634476,0.9999999815321171,8.653532752773932e-05,0.9995587325927605,2.735347917827259e-08,8.349812065493115e-08,2.671593410364767e-07,3.719705782943135e-05,5.2613430705972846e-05,7.024800455612758e-05,2.3017037906051264e-08,0.3113621182002392,0.19530847541383695,0.9999591933556162,0.999936900744127,0.9992180752588604,0.570520301498938,0.9998087619721018,0.998535241016138,3.6895627881178866e-06,0.9999541044050619,0.0003173997617975893,0.9997629422038113,0.7232011110867897,0.00019920622499380213,0.9981379685731859,2.2702527021721346e-05,6.533539427976768e-07,0.9999995913573099,0.011688692516964003,0.0005573030281832646,0.9999860972391753,0.9999981766984809,0.44999224834930057,0.3379033976745218,0.002636741380672362,3.44506665863541e-07,0.9998342059102578,0.00715902017957911,0.0001396285183920691,0.004993638468254619,0.9997419642504135,0.999983464068596,0.9999999404385427,0.9999589805990399,0.9994186160590041,0.0005612311323609842,5.0981086367298904e-05,0.999958015903242,1.4395660940121507e-06,5.502025504279759e-05,0.4759338315977328,0.11042508157296699,2.8491097160953084e-07,1.7172917987231956e-06,0.00018973045452123807,0.0017954912066751154,0.000411178599862086,0.8899995944994982,0.9932866801910184,8.067439787710575e-07,1.0849340743566821e-05,0.9997200008571057,0.9998867678537311,7.451502820564881e-07,1.7691781446634043e-06,7.604928169433447e-08,2.0018082762748837e-05,0.7733031204478114,0.761264940668178,1.6971301615655243e-05,9.327191502382113e-10,1.0443073942143887e-06,0.9998382634275876,0.9998328621531778,0.9995897444885821,0.0010873589080219142,0.2523140342047631,0.00016628785061943076,0.002962311800524435,7.208424687710278e-06,6.2048002061852745e-06,0.013252362008259203,0.834201700965078,0.7397329648563601,0.024025093645782588,0.07324296737853707,1.883820820339122e-06,0.1608090223254192,4.9693949637083515e-06,9.617517898993124e-05,2.6813573710959313e-05,1.607450863787095e-07,0.9993431106136832,2.9062990125956956e-05,0.006607516871153474,4.825468240391182e-06,0.00020773426992029765,0.9999642614918717,0.0065536238031417135,0.9999930090396628,0.2861813691502985,7.736254056032365e-07,0.6672070478695146,0.9999693699489053,0.999719968569291,0.0008966701287614025,0.9938251882937154,0.9997937996324382,0.8534267706288273,0.9992929055062855,0.8961166459605364,0.999902339537806,0.0009719086232598292,0.786118035965214,0.87795814467475,0.9996325853763061,0.9999986752128638,0.8777764152534785,0.00048242944364704015,0.9997832522848755,0.9818151025980943,9.108466232536705e-08,0.9958640478457909,0.0004004199039007818,0.0009823118715742267,0.0010985520889538506,0.0033515820990380023,0.001470812647314495,7.783327465371388e-06,6.968881098719879e-06,0.0012356552261746216,0.9863322869926316,0.9998136703369082,0.9998877578303609,0.0002997871206416932,2.612127667360032e-06,0.9999865667715497,0.996318798932387,5.84866650680824e-07,0.9631795583356927,7.856586590597775e-06,0.011266705552393855,9.572349451960531e-07,0.9988719712607701,0.9999090499807003,0.9996769524321116,0.9773422953375178,5.599534079699179e-06,0.9641394593708578,0.0008457257001127528,0.9732595122732337,0.0003763683764017842,4.154292606584402e-05,0.00013333394391493034,0.000163449642992966,0.9918232527108408,2.6006040793794423e-05,0.9995549292735504,0.9999999888821779,3.030636385162528e-05,4.269212567115583e-05,4.2049054598985716e-05,7.016350876628587e-05,0.00019570321785907305,0.5569872665883916,0.9999725118946852,8.728185045584895e-06,0.00017899227621479032,3.834649751296387e-05,0.7291088631368953,0.0004894289051650395,0.9867505567129279,0.048397927797108824,0.7472361570955546,8.872169620065705e-06,5.177291429063895e-05,0.00011840911884393999,0.9999966028715732,0.999987615016813,2.560466751977832e-05,2.0429530883292394e-06,0.9971276681982182,0.9996631320308732,9.594407897925298e-09,0.0020854123871721446,4.044915198243823e-05,0.2714671751424248,0.0012885967210983689,0.7860924556573532,0.19449658333550177,2.952389975447782e-05,0.9882425339512135,0.0005474888617425822,0.9903680628587065,3.6990728031922044e-05,6.403135625656956e-08,0.9992616475387519,0.00028370787254171164,6.643327561415403e-06,0.5058182364924001,0.9694717852453145,0.0006882794766738723,0.9291828641140046,0.999924631486806,0.6418895786360107,0.3736046928569591,0.00815832221907911,0.13430077820145878,4.4498226613798344e-05,0.00014908643257789526,5.242945335822496e-06,0.9610679226622406,0.9906869178887898,0.9995907366533423,0.9999944973453974,0.9999999716966802,0.9999999613584286,0.7176370141415634,1.6711322797698215e-05,8.346287517517626e-07,0.9987339262102612,0.9999539223629086,1.5352945265536823e-07,0.7516452452705129,0.35909105969729427,0.999989697593308,0.9851016222893724,0.022213465141753142,0.7351713202079241,0.00010060484025491117,0.9999984366439079,0.9870862058051215,0.9998740741797368,1.5638853731972763e-05,0.0010965475729479508,0.0005668177019392171,0.25115886070404325,0.8568401319152419,0.9999585368768598,0.883068376496661 -त्रिकोण,rgb,0.364091236821702,0.9973457551456386,0.12067014782599958,0.9990099247265022,0.16438801604018305,0.8098322105289585,0.2080848576435297,0.6944594005752975,0.6636143917240691,0.5815481166465771,0.10477957340001305,0.11832631750116201,0.11195063620815522,0.9976402336415362,0.9997496069621745,0.7345396483483475,0.03536688106052946,0.03794185743887973,0.035501404897576264,0.14267018315479588,0.03271505342188867,0.024098616040736796,0.7908363288918145,0.022856425363285127,0.8867223784437621,0.03062396301987154,0.5436272381954149,0.8685097643356462,0.6877196985056582,0.9890463603646412,0.8088892478826606,0.16020142286582825,0.7790197880157735,0.2921393448845246,0.9994758094379028,0.7076451098888574,0.12357930929057688,0.026269483516470002,0.7304268686504655,0.6884129352338756,0.9983950068555043,0.964015995451488,0.7988972397174925,0.992493306860057,0.37736075468963437,0.16787555551005443,0.17011481779391988,0.11978782649649462,0.39071840692610205,0.23851779169522144,0.8060206873979808,0.9984763367064942,0.636562058035004,0.7263308777752451,0.5249775757119864,0.7251247708530257,0.6122397684767171,0.5759288625552283,0.11753746646593034,0.10830705719355446,0.10256085638915173,0.031870290934340385,0.8149230068920782,0.94809175403781,0.9847693717201945,0.02524534854704862,0.02453633695358769,0.615794385591766,0.6783029520230708,0.677540557862711,0.7482681250967332,0.9983931124537088,0.9979895616681451,0.5974572926043487,0.9952425476349561,0.957789204107099,0.027823451764535625,0.02379857473082536,0.023710940510879977,0.5470025434232707,0.4941005753586766,0.578151038895003,0.06082090379333135,0.4898317025887516,0.6875819989268017,0.0522047200535196,0.7032938067626683,0.02518951226353766,0.2636366026980989,0.4971455451867226,0.6864186419744523,0.8822313955148331,0.6580188539225824,0.573756154844194,0.5289610300666285,0.5021044657835941,0.6388682656837041,0.48789416289304116,0.5927982936252354,0.48816081672822526,0.4377386820341956,0.14774255047659912,0.6772504269365169,0.998884873579439,0.43521689328661906,0.8127118915143924,0.31393315468979116,0.022688128764856222,0.038951833189475205,0.6635712609403657,0.028666562190375233,0.9985901097286797,0.9993805184100738,0.14210675551913055,0.11178418419827024,0.11145551101820725,0.40484403299624583,0.14462579670361445,0.11664840255702943,0.07523040989799355,0.1570538129618786,0.13771477619083278,0.2883544690417719,0.9977451782325352,0.14600634130329065,0.5694442106996724,0.139832690111775,0.4204752327017679,0.16478953411466024,0.15370538926537994,0.20432319540504243,0.23618789520923233,0.8152385866020029,0.6019425194114806,0.385825278195988,0.03574938669974576,0.035050360945027025,0.03625549087087919,0.20759097455722186,0.9889903996297112,0.9993498543516821,0.7933648100709438,0.7430958553919295,0.9969540487187187,0.16634695886441567,0.12917655456638164,0.3326958246126773,0.02366849843026022,0.02546422091629168,0.024294759198774708,0.9975554375646319,0.10545181116935277,0.6812175600261663,0.10486200687058252,0.5292035237977389,0.11073072797075416,0.11942391301165231,0.9265114891104839,0.8956305821884583,0.033589628438606065,0.9528038629015841,0.033664934372759456,0.623185479400152,0.9022094431413779,0.9085407818176816,0.9140042810339606,0.8899185485083395,0.11586481832487323,0.10813499368776908,0.9988051257885004,0.10286041831330318,0.8056870857359132,0.1345250950041501,0.7771344233054737,0.107909824858128,0.21157945375744705,0.8928480050384259,0.9995766088358276,0.958433547403618,0.9237401552201893,0.9086201084105805,0.7479056952182628,0.9994531963806362,0.783375564661239,0.8124141021715215,0.47218253355031675,0.9914996032094164,0.9966356135243025,0.10805680182862817,0.11695193140516826,0.10279356158268613,0.16756263712274044,0.383187701363798,0.12192988686785357,0.15922402189602156,0.4090340826378546,0.38464715937315797,0.13223840977548695,0.7889728187005712,0.7135240622406689,0.997495548811097,0.10219595522653625,0.8656320125915496,0.538095486090792,0.1414466014031366,0.695970919776954,0.516353788337848,0.998217073488308,0.9996978504813752,0.45641972209418674,0.12848132830347855,0.027406817548663365,0.8827938374968438,0.1138215544781944,0.9103280745901324,0.133104844014389,0.13157924722263076,0.8654974579619543,0.13942861717802119,0.16803233228203016,0.18614003184124067,0.9971473231745503,0.7422005784784785,0.9372027545078678,0.03877490745481074,0.039516230243389426,0.9973382750669015,0.038863208488285936,0.8680441115218966,0.15672146171992593,0.9997226412427949,0.0779131011202181,0.9977317784469591,0.6831114017521672,0.1636007770831995,0.14575071145183358,0.13267113281631493,0.988542583853054,0.18388205187921455,0.11824307340720008,0.02680092837495271,0.9992535859407518,0.10213125174068467,0.11258508544384462 -त्रिकोण,shape,0.00010300344547928222,0.017302075359368153,2.0741848934421146e-07,9.787511506303245e-05,5.739151266907503e-08,0.02417764348552429,4.749329797186398e-06,5.460710400604738e-05,0.0379869614368548,0.0002383822361002059,2.8608736078916953e-05,1.3969640436529045e-05,3.921054981549305e-05,0.005585698683783796,0.7700231687557142,2.393715951684989e-06,0.9937711064886239,0.9267998519233788,0.06379656878329336,0.01937434938099975,0.86544140439873,2.033518006727795e-06,1.0125289116389519e-06,1.344898110948772e-07,8.130049678297739e-07,7.262362641640468e-06,1.178945086083812e-07,0.00012067065059468161,6.066712873753551e-05,4.5530765865838684e-07,1.1163903281363859e-05,4.688241673818801e-05,0.9980036286762767,0.00011448212379458395,0.9977485921020977,0.9217966503965892,1.5155790643570598e-06,4.863382757302563e-09,0.011753162105739554,0.9272001393074817,0.9996272892976718,0.9986643553130491,0.9625527894637852,0.9488066843061049,0.9077513361541398,3.634693242383705e-06,3.6151343960697923e-06,9.614339058205871e-10,6.9423503270236335e-09,0.00010909698695139965,3.707195067723166e-07,3.811519542331545e-09,1.4855862266015526e-05,0.999891594005397,0.9996781715849192,0.9679853349225451,4.783111892386081e-06,0.0010821401492283093,2.7469240436482293e-07,1.4937741454336848e-05,2.4665517896746347e-05,0.9101974188438229,2.011627093943171e-07,0.5115234879360244,6.985309121517028e-08,7.228101967749455e-06,0.0001279780902478349,5.1626571307763985e-05,8.946068322685458e-05,0.005167289757190269,0.999981643908687,2.2177020158401923e-05,0.020087800669682722,1.6964960523649855e-06,0.005705733293961907,0.04917521397298761,4.198250225648296e-06,4.1816285885253995e-05,7.4306738102063545e-06,1.2767549245642626e-05,1.957785487322906e-06,1.8637324015543068e-06,1.844239145623647e-05,0.00023488855232403703,4.214961339926909e-05,2.4942837042002957e-05,1.2363192787133291e-08,8.790367018537812e-09,1.287688130336019e-08,1.4895095097228434e-07,0.00016680808161008455,1.2458686277591489e-06,1.1490302473335077e-05,6.647870757320935e-07,3.7500028103485295e-05,5.690767239624313e-07,0.8350515732922521,8.812704410393086e-07,0.1064320344317355,0.0024422218833511033,6.246461393822759e-07,0.9999796421619285,0.9999841949458144,0.999963705321767,0.3486741257679903,1.7805729274395441e-06,0.999772219245522,7.669208215560454e-07,2.1830607610246723e-05,0.9999932333993413,0.00022082001324382776,0.9999332959879089,1.6726093497918103e-05,4.299615476404778e-05,6.347306942721217e-06,0.41099365478463645,1.2300077441060269e-05,0.00017869825299544307,0.0002763204858091111,0.00576256233032936,4.820726466767699e-09,0.00012591526128605197,1.8198363349457784e-06,0.999989322056932,2.5718752435611487e-06,0.021760781829004,4.69151560562727e-05,2.9377033458679966e-07,4.6712018280242957e-05,5.714360079761151e-05,6.355286590784242e-13,1.409799766069595e-05,2.096018943160262e-05,1.835299745524195e-05,6.504001170993225e-05,0.9920377080252695,0.9938041703794932,0.6040958440279026,2.5576841058840685e-06,1.602489512045945e-07,0.0038054816763939243,0.0003295519667556435,0.9994696205210628,0.986923255652052,0.9079197342992311,0.013488640379923025,0.006595439684184844,4.77388826287476e-06,4.282515409700577e-05,1.4150315358569592e-05,0.9998332952550786,0.00020945719968534624,7.883939190379622e-08,1.4920628173976897e-05,0.9997663712978078,9.084261250214686e-05,1.3969640436528894e-05,5.575740832190365e-05,0.0008278437697704306,0.9331008095654505,0.002959437074714497,0.01587568108980374,0.2009480870266912,0.02836929892351529,0.008160513016881315,0.0002424841324777157,9.781955631123057e-07,0.00018326949593838585,1.8449783472552723e-08,1.7389704068509801e-06,0.00047339200398107924,0.0005869195399759718,0.00023664246183988514,2.207155081290528e-08,0.00026501502462118737,4.286237384111455e-06,2.20762049824615e-05,0.0013213872783257913,0.09969887647498485,0.00022945330677094533,0.0011265071032164448,0.9996748802987381,0.0006824873423505888,5.7537350752309776e-08,3.348959438059347e-06,2.5858912962225767e-07,2.0334351392074146e-06,0.0003670407403124125,2.2334769596377613e-05,2.2377469106859328e-05,7.653225314215764e-08,1.7449927520391148e-05,4.541883391741459e-06,0.7546785387294804,2.4637316536927466e-05,8.750095387173275e-07,0.0003004597994597328,0.010465793505868523,2.086406186867619e-06,0.9999791434632915,1.3669931303627394e-06,3.812994007486328e-05,0.0006038335473219267,7.141942573586924e-09,0.7782750321839296,0.9998903891917599,0.999893080457334,0.9999977634033778,0.003697075573302,4.497353935410071e-08,5.506405482956176e-06,1.3621778533330922e-08,1.8600648425824666e-06,1.415932428454508e-06,8.890709220527e-05,7.764906266754945e-07,8.206779316163449e-05,7.63563427712202e-06,1.8881731473493136e-05,5.698576522619044e-06,1.13926423174956e-06,0.9872466549020976,0.9999860592556703,0.8907569507329444,0.0055753786872722606,0.9777079470414983,0.00012585423332696718,0.02697925823746678,0.00016175212411751296,1.4050091637883675e-05,0.01711874177698041,0.00012688998937749292,0.054057520247666,0.9995842880795287,4.820726466767647e-09,0.0029233317865938685,7.810410708182552e-10,4.435873469484e-08,1.2031936131160139e-05,0.00016510892232830286,7.410475970357676e-08,5.15515523564003e-08,0.02764186195226895,3.1512513501489586e-05 -त्रिकोण,object,0.0003067408740602466,0.0012172603304936396,1.0993284782079783e-07,0.00887287563980643,1.794816621607627e-08,0.002498966116199072,1.5634829001587154e-05,2.3898072686051965e-05,0.007343552315387802,5.9211902234272156e-05,7.630823373435726e-06,5.73012314655564e-06,1.3319211425969813e-05,0.003725250871435073,0.9890520924848253,4.1103787518025885e-06,0.9967030843139938,0.9218026027271355,0.017893412085240024,0.026367136876249028,0.7937345872861594,2.5525464380404304e-06,1.0621291238323152e-07,1.0551230732222522e-07,2.989751699379423e-07,1.0991581897563793e-05,1.4734292614975e-06,4.18124199281616e-05,0.0011010051807054822,2.1644209623086008e-07,1.0910055751487085e-06,9.017756601596504e-06,0.9968791112729974,7.455243746071251e-05,0.9999665080988266,0.9961532547227886,3.175934667883355e-06,1.11822469923162e-08,0.015652698240170262,0.7260259508858179,0.9999964163939349,0.9992296143337625,0.7999889322027077,0.908535060738457,0.9852633233147836,4.464315316159396e-07,8.434508123342402e-07,3.959443107762242e-10,9.964008970308758e-08,6.215930741844953e-05,5.922440215277558e-08,5.461835874891467e-07,8.785719804675657e-06,0.9998464405537115,0.9997445678882734,0.9232872591465355,1.4668157686104271e-06,7.928844826388428e-05,3.6541042025440886e-07,2.1791569535613955e-06,2.3469083631413477e-06,0.756195392168922,4.586181657303847e-06,0.1158868652983303,1.646808266147917e-08,9.730757739191607e-06,0.0001396611840328983,2.3846140616142294e-05,8.312181509916913e-05,0.0023627832194350507,0.9999527791888771,0.0006279582025868339,0.3851703655843577,1.5551628084754147e-06,0.00020822444012861424,0.00719189547039381,6.8058871056035e-06,5.2421030893359036e-05,1.1729307559103952e-05,2.5933643566987576e-06,1.7892125638393516e-05,6.073497341306276e-07,9.12898266650821e-06,4.0562233480435054e-05,5.166461663923957e-05,2.2079075555393776e-05,6.151086956795063e-08,1.0305935229512945e-08,3.237700230614281e-08,1.2760342658143502e-06,0.00014650509423488924,1.2826117238066264e-05,3.469313132567138e-06,1.8284924471003303e-07,1.0148668422822102e-05,1.3057818317271308e-07,0.9804302787022592,4.4349471122670376e-07,0.01729707116972723,0.0002413782671363367,1.803149940525764e-07,0.9999971166745121,0.9999787426304383,0.999999582208063,0.09318975174448392,3.000137244121103e-07,0.9997987663421625,6.792531097413553e-07,3.027036198566981e-05,0.999989712368033,0.0001292582320452533,0.9999910500802917,0.0004168426552337024,5.955397276513452e-05,2.785952626215768e-06,0.24707295825083686,6.7118418331422485e-06,0.00011420230620594728,0.00018606679822318693,0.0035876771929158123,1.3588466601817123e-09,8.48446484833471e-05,8.621783364719091e-07,0.9999997057800545,1.229226715387999e-06,9.322017625424588e-06,2.4293220169902132e-05,2.0151364044788522e-07,1.6321741708356305e-05,2.7999628189541344e-05,9.69121552849344e-14,7.30025266000751e-06,4.421687794026288e-06,1.5326032061252245e-05,3.812288841765206e-05,0.9690761800768253,0.9971661042676107,0.5557586543293701,1.4903215645715724e-06,3.589416089508472e-08,0.10241902228100169,0.009839220414751815,0.9951631997001786,0.9981663663803281,0.08507825013810387,0.00028913076558468356,0.001431742503258932,1.0028323006163198e-05,7.313894944467202e-05,1.3842949217923771e-05,0.9999002510681824,5.152369746094761e-05,7.200263906331582e-07,2.082532728871812e-06,0.999817364875845,6.632792342947872e-06,5.458357998818844e-06,1.5829743125698944e-05,0.0004947729533325521,0.843719398411783,0.0013919760000718148,0.009969376680026225,0.9130296015545967,0.006221709942499639,0.002001949489920574,5.525736700588194e-05,2.361973903522321e-07,1.2487089597745187e-05,7.71442185131083e-09,6.437186185617452e-05,0.00036978169641701516,8.866042565803482e-05,0.0001157761481339747,1.4535754320952475e-07,0.0002673174989187633,1.1245247925803019e-05,0.0002433589627055801,0.016203225382822276,0.03484455094790709,7.449050703397283e-05,0.0003037995974591823,0.9999925901644067,0.017265812823588415,7.51169874741627e-09,4.3895710548456086e-07,3.6187001225312794e-06,5.189047657884585e-05,1.2209776841399611e-05,1.0059133674647035e-06,7.934967762301061e-06,2.1537936727731675e-08,2.2152862445884735e-05,0.00010516943935439067,0.3003066854339409,1.560831191319092e-05,5.555080413485935e-06,0.0001801598039796299,0.0019519289535795197,4.799174421267684e-07,0.9999317350588449,4.9696596261798216e-05,2.865293705785616e-05,0.00019109157483786386,8.020552794821817e-08,0.11272409453543529,0.9998680894035725,0.9999043127489299,0.999999967856196,0.2904533967913356,7.931372336757528e-07,5.710833183809144e-06,1.713314754721195e-08,5.903909400857219e-07,3.2373323981307497e-07,2.120223723178167e-05,3.5251903217703335e-07,8.243676035936332e-05,4.2659310883984516e-05,2.5286235987200357e-06,2.033473930785054e-06,1.783799613531195e-07,0.9973987797821557,0.9999629623502452,0.581820874738524,0.00422940607498793,0.9311321855925159,0.0001029278717161179,0.007401757376460085,0.0004525647358587028,9.124932987184323e-07,0.34319877149081196,0.00010847138843511345,0.597194299071531,0.9994331615780148,1.3263501964193338e-09,0.0006248859546531582,3.973881200997806e-10,1.597779285466623e-08,1.1862336018827322e-05,9.053310583962646e-05,9.26587259428802e-08,8.763336471586406e-07,0.011399902660433423,1.7953436008021905e-05 -त्रिकोणीय,rgb,0.9993417064064862,0.9824473428567104,4.121571005150361e-05,0.9973832096791657,6.216282150522564e-05,0.8844392045158586,0.9945426197069688,0.968342713466011,0.9369953520173187,0.9000356495516908,5.262992740861765e-05,4.357843568164096e-05,4.3195184843420574e-05,0.9833978524383723,0.9998206127638846,0.9999990022037528,4.761779937580815e-05,4.361431307817324e-05,5.0413241663582144e-05,0.0009386597591627495,0.00013165881482357568,0.0006916223999065076,0.8782709920498725,0.0009579213622918104,0.561717351990043,4.084175409550466e-05,0.9999522959149839,0.489389571261587,0.9999976423984239,0.611059560649609,0.8820384922310498,5.50757214918313e-05,0.8386748770000299,0.5684840857251718,0.9973577130821113,0.9999984289852691,0.0004948032654443046,0.0003331777782347244,0.39228679105473724,0.5773321546329768,0.9909798409509823,0.14975317058680368,0.8538237069286239,0.7148645547903053,0.9997848232913285,5.889138901367217e-05,5.857391268303667e-05,4.094910033880594e-05,0.9998145640573627,0.037298944129645545,0.8819129441362193,0.9921641489241899,0.9364720065454458,0.7460637740010468,0.9999752781489525,0.6568387509033823,0.003524781023400783,0.0023946764121344334,4.394692258819301e-05,4.4047240728242916e-05,5.153369061636627e-05,0.00017301178177327642,0.9999997875829618,0.07656740970625793,0.43524844581601124,0.0020371973270049536,6.921494998569144e-05,0.9357070192394121,0.9623831011099317,0.9478476447915994,0.7844763782536264,0.9923228516800924,0.9855623719772092,0.9360986067585593,0.9749637454335578,0.12358872898934484,4.943598399627075e-05,0.0012882686530219076,0.0007062351319278552,0.001821665335128254,0.9999012401577493,0.0028685531108947285,0.0038771185729507386,0.0011247680174023827,0.9622919765398862,0.002534125047729198,0.9999982113582995,0.00029045097154292086,0.9947024145393306,0.9999022761408739,0.9684772731722369,0.9999999614306735,0.005616075017734678,0.002043642349697452,0.0015252222589362202,0.0012179953579515214,0.9999950250387278,0.0011067192739750327,0.003180346936924236,0.001169138665965121,0.0007794446750060866,0.973480582436865,0.5541009623532888,0.9962017077630694,0.0006994323284210416,0.8846247603805529,0.9994022256348329,0.0008476360622082976,3.213981669437803e-05,0.5410585311416009,4.225341044599516e-05,0.9937712131765795,0.9989348858243456,5.259730336210111e-05,4.868777399293041e-05,5.328831801912339e-05,0.6971569765297021,9.370412869562219e-05,4.2594818751576485e-05,2.9875847631790936e-05,5.4130194514012236e-05,7.046348621995443e-05,0.06450940453437931,0.9834252162024514,5.6764686504683566e-05,0.038507100762446546,6.976579101417424e-05,0.6888399074739575,0.007429161503625499,0.05597596713599513,0.000949490741312734,0.3324254371068983,0.8944940362543862,0.9364569201638038,0.6641225088261266,6.872125997563993e-05,5.597187927551692e-05,5.182544496653962e-05,0.018088738187960987,0.5879365886047865,0.9960016673930632,0.999999619508275,0.7816062487616825,0.9672986729860286,0.0017033071428768677,0.0005080009120409235,0.003471628183802778,0.0008026217172275437,6.224417276326369e-05,0.0016748614803671605,0.9804470565491572,0.0038767433017831386,0.9999975131077439,5.341723196515776e-05,0.9999766902034785,4.454061779131518e-05,4.519618908576623e-05,0.6492648846677012,0.3068961219914833,6.814512094241425e-05,0.8658952556686004,6.356370750232932e-05,0.9999948320273634,0.5661276728222424,0.6848563887158885,0.7961610964816479,0.632551314086925,4.542933481688846e-05,4.442015366988865e-05,0.9956095395416424,0.0029399001508720714,0.8810955739446898,0.011895639599896474,0.9999995390017833,0.0027107376154230957,0.9949639056872337,0.9999999722525145,0.9993881628316111,0.923519701152237,0.6553754037152637,0.5886634839029389,0.9999992337942261,0.9970477016082285,0.8629456053520439,0.8838311024534317,0.99994484434129,0.7799901386350563,0.9774365732172241,4.431658626080535e-05,4.4376293607905854e-05,5.264743532804361e-05,0.21221623261279407,0.999524952328071,0.00039683081913034123,0.03886839310418531,0.999856794704004,0.6062767330673734,5.4005209990185026e-05,0.854223249147607,0.7345026915269555,0.9786924531022683,0.004080093584932665,0.5692039556506829,0.9999441040974956,8.509938636863779e-05,0.6518468522947072,0.9999721251286803,0.9898171090047758,0.9997447509111584,0.9998430550101904,0.04844606425176875,0.000458132444482422,0.5277053887991526,4.428560919577191e-05,0.8304060450436829,6.005707455476386e-05,4.8602481087048616e-05,0.9999999381026013,4.7243062707406353e-05,5.93343352409367e-05,6.60422787979425e-05,0.9713612146646604,0.7792030281412495,0.05360958501445562,4.3319901910145285e-05,4.134056679480948e-05,0.982378492802583,4.9981735988697824e-05,0.99999994221958,5.39935669669355e-05,0.9993421816081157,0.025970006709211776,0.9820804300714655,0.5906944185063815,5.6298383037141354e-05,5.648203398456785e-05,4.715786978834665e-05,0.550795321808537,0.07580188030008511,0.007678611235542572,0.0006769675818733633,0.9945111491795436,6.275897705334974e-05,6.422237223301863e-05 -त्रिकोणीय,shape,0.0001318409299034298,0.08195484980426546,1.0033229129224082e-08,2.5324870078473395e-05,4.048988186439769e-09,0.0039033769293636542,4.784828764419672e-07,9.103190949342074e-05,0.07243673142733975,0.0002696431874311773,4.2433606565608944e-05,1.3258808592224506e-05,4.466225677762588e-05,0.008163723484938394,0.8474014617275906,4.4238743442702466e-05,0.9787801385886409,0.8708332625169183,0.018779711282912517,0.008709770284351779,0.9364803478121655,4.910200844099992e-07,3.5763879125310985e-06,1.845383917041978e-08,6.152725070532549e-08,2.654952122332981e-06,2.9068667399978484e-08,2.6939563528053657e-06,2.6997432589478245e-05,9.656063104895433e-07,2.31421097065073e-05,1.468720897121807e-06,0.9910445146703017,3.585834832158695e-05,0.9664384995207905,0.23339512810392288,1.238456694007199e-06,3.880275384754878e-09,0.011701683331667358,0.8173069842924903,0.9990860618033427,0.9898297077752302,0.4194953841565658,0.3426794270394915,0.1997817197283742,6.02413980906518e-08,5.966412495633721e-08,1.0948648058764724e-10,2.007197901185106e-09,5.925926856778814e-05,9.694262008655803e-08,1.0111848790371209e-09,1.1381594279871647e-05,0.9998896993828155,0.9997820861570634,0.2669025449362997,3.11424200554715e-06,0.001509962950693195,2.128246626116976e-07,3.408410172802036e-05,6.806633033258474e-05,0.868967784248359,2.46417717855992e-07,0.5637633777534926,3.212419818591657e-07,2.2490720657556614e-06,6.484104326766831e-05,5.105573311010986e-05,0.00010678416280343137,0.004534828066160014,0.9999913906352496,7.251077718796498e-05,0.023471714743039062,9.396237271606268e-07,0.02801631389420203,0.04931258096299662,7.259387885075934e-07,2.334141628872103e-06,8.370627866071822e-07,4.98923280072027e-05,9.278010018683731e-07,1.9934058159735037e-06,1.3019873830878023e-05,0.0003282228241861242,2.4556211288856576e-05,1.3955939186718182e-05,8.391348977888238e-08,6.867393625545299e-09,2.023877955734057e-08,9.610040436193117e-08,0.0001547219441551756,4.4096686867876394e-06,6.414615483461872e-06,9.127528953085866e-07,2.279163836937211e-05,4.975400259559109e-07,0.11665067916539096,8.52407500890836e-07,0.032660339196219496,0.00734415312460092,2.2383971618010575e-06,0.9999631261539838,0.9999902181441747,0.9999648130692377,0.14092582721251629,3.4863574628256876e-06,0.9998486771088017,7.462989122786981e-08,9.57311976194648e-07,0.9999746399206129,0.00020467137600749607,0.9999442050399951,0.00013437169773841307,5.430909574003643e-05,1.7794943736910833e-05,0.14227381511939027,3.5098423269345944e-06,0.00018514209586962445,0.0003111970947860534,0.0005350463239447409,4.2452673183796755e-10,0.00016421133544467436,2.163383969399019e-06,0.9999554278953694,1.1735306226637908e-05,0.09499540575103037,8.697029729086273e-05,8.180269379178127e-08,4.072853617689176e-05,4.0493534992014434e-05,9.150533390197317e-13,5.579702451458397e-06,7.612973900251307e-06,9.046117561991984e-06,2.9763697172613425e-05,0.9871368016785625,0.9618558200516462,0.8148976253729479,1.7739799570187797e-06,1.0978712920417076e-06,0.00023921495248822047,0.000236158927958853,0.9996569256064157,0.9797087729877709,0.8746516939723649,0.008219635603106394,0.001379800767502414,1.9235494751387943e-06,1.8239725586989352e-06,7.993455817651317e-06,0.9998840132123917,0.0002750421129306634,2.2372498409054176e-07,3.0081345374146764e-05,0.9998562855411722,0.00018940678572438067,1.3258808592224435e-05,1.3753208791306534e-06,2.245418987749441e-05,0.9803373374767599,0.0001242561159377424,0.02239924091821559,0.003947553958006001,0.000865708752994498,0.00010299097697403718,8.210754546121876e-06,8.649579806833674e-08,0.0006736342022758623,5.795280667813604e-08,2.930359374924442e-07,0.0004243910859350952,8.453765286303386e-05,0.00025379386916751047,1.2604055034803212e-07,0.00025246885017083726,6.790124823863195e-06,4.525643185688318e-05,0.0039955207811742605,0.0005606633894222438,3.307489752518765e-06,2.914274354939592e-05,0.9932374106161251,5.742578013121839e-05,9.414806632035521e-08,3.934421765836849e-06,2.2320657525349419e-07,3.526689666809173e-07,0.0011938823817963715,0.00012168693641982098,2.31737169998943e-05,3.6012414520681355e-08,1.1510591595056373e-05,2.1011805410236592e-06,0.4635089393341198,3.494595259669867e-05,5.113639470039872e-07,0.00016498298842785924,0.022734726891140488,4.563166832364434e-07,0.9999597139145123,1.0825313270621814e-06,5.109503292644819e-05,2.1361067094963196e-05,4.1085038207197275e-09,0.9071755184024174,0.9998869162548006,0.9999203395458423,0.9999960632928072,0.0030833640644870853,3.904764989181715e-08,1.0470748827215834e-06,2.1204913294337483e-08,1.5031738406548155e-07,2.874306293840723e-06,3.5716125754376206e-06,2.5771967275371453e-06,0.0001265049629519529,2.0886053654006145e-06,4.4303810961851283e-07,8.24251791343603e-08,4.030838268458199e-08,0.9916422701364717,0.9999921968122998,0.91016448485571,0.002814974528785868,0.9936032618989775,0.00019882544498429303,0.015633539046246793,0.0016785063072939268,2.5188536729403297e-07,0.02582395219739075,7.070260640495002e-05,0.07604053325238902,0.9997012725715924,4.2452673183796755e-10,0.00019310191657247557,6.020785381073754e-11,2.1290359794243216e-07,8.822334225162547e-06,0.00016290027967371615,8.020640714833278e-08,5.206237874452996e-08,0.020752953201694766,4.410529714218123e-05 -त्रिकोणीय,object,0.027927178966913258,0.00040702231494435683,1.1749785295952602e-09,8.149545671049157e-05,6.820625914915747e-11,0.00014325579200969235,0.0002663390249192183,8.355584858949195e-05,0.026185501220834302,7.535362204134504e-05,3.3241471630301825e-05,2.137921817108964e-05,1.1078532821266427e-05,0.0009228636284902134,0.9621123683333147,0.053725402968056786,0.9003169068021355,0.1368471354085291,0.025128435613416763,0.018048154133695028,0.5356252972787975,1.1746734906021648e-05,2.9489106806968315e-07,1.5224920848670899e-07,2.4388877060205446e-08,7.1077853924611395e-06,1.802173174644571e-05,5.893055837865207e-07,0.1633464232471029,1.5417628928490842e-08,8.459690896900597e-07,2.53767288644381e-08,0.985758614649108,9.508537475405036e-05,0.9892183217540819,0.9997931703039108,2.4260802793305373e-06,1.0964869103637006e-08,0.006148473053678382,0.8148840302861302,0.9998200620307726,0.8143430083696864,0.08260569792561288,0.010438754583054589,0.9989642497296316,6.91627129250535e-10,1.172833996729881e-09,2.0398925493224343e-11,1.6008124913132294e-05,3.282427698863737e-05,3.72789033399959e-08,3.633436053607888e-08,2.022635047868548e-05,0.9998573586877245,0.9998996701329415,0.4204859963473709,6.073443540698379e-07,3.564716369155513e-05,3.3296811555142447e-06,1.0842879925170857e-06,9.974687663281166e-07,0.8890146109491374,0.13014894018637266,0.0007467499834916911,4.938068062701597e-09,2.3310920859448128e-05,0.00013075841623803666,6.728589333243461e-05,0.00018233364664509833,0.007573122567558835,0.9999592458413671,0.0025704820167805195,0.08552772316490019,1.7466388682569567e-06,0.00010462863990116667,0.00013574022952991574,6.175212113029861e-06,3.371589537266291e-05,2.1345185634007006e-05,2.567044782930056e-06,0.0008165800177595383,2.6983787054014866e-07,1.0331012132986157e-05,0.00014069357180792295,4.904767084882365e-05,2.6329116204165863e-05,0.00044243673595798405,1.1515904525694754e-08,7.198570606444239e-07,9.138969338750879e-05,0.00033082938530348057,0.319580279505495,4.5767131484118037e-07,1.0084974572937355e-07,1.1806838025789204e-06,3.2586108294065914e-07,0.9993703200298149,1.2739199101945142e-07,8.521434003107758e-05,0.0003072044913385303,7.776963433139591e-07,0.9999991982580685,0.9999568056551399,0.9999856411223585,0.002735177327845498,6.779899314174688e-07,0.9999334889044269,5.998172585041924e-07,9.561564424053112e-07,0.9999831549397262,6.714638761137645e-05,0.9999565732002192,0.005943200522480849,2.982981485688874e-05,5.4190549414259376e-06,0.014812175277639826,3.4278263681768422e-06,9.932270255410855e-05,0.0002026973682424821,8.002456407863433e-05,1.4425038377583692e-11,8.83970498422836e-05,1.0013997487366351e-06,0.9999764910893916,1.5383683478893207e-05,5.053953004995599e-07,5.447553217206646e-05,1.2188294231229902e-07,7.260413862491654e-06,4.966500126593522e-05,6.190253783842367e-15,4.267913213140594e-06,1.1106054568685858e-06,1.243063457608784e-05,2.129975292235708e-05,0.6198949162525939,0.9960559925926546,0.6272590594600534,5.607973649496698e-07,9.503586374679087e-09,0.00015116643167091478,0.9862250610469588,0.9913819649843287,0.918060807971967,0.005863010036473809,4.481820850921749e-06,0.0002741383072310127,5.0585647353918596e-05,1.825002446316715e-05,4.52883649477334e-05,0.9998685675471529,0.00011896146506616093,0.0012993658293270192,1.77908486321706e-06,0.999966832929503,1.4772628485259881e-06,1.9921190711979877e-05,7.256868661558354e-08,3.4725400947478015e-06,0.8068569836331576,1.47854500374251e-05,0.0031421406068466826,0.9978030366396378,6.387872972817779e-05,1.5058652686787769e-05,7.569376677473642e-07,7.607761592845582e-09,1.0298437191122963e-05,2.1976618611646005e-09,8.564568312302771e-07,0.00036671510235728556,6.2084245737876845e-06,0.00011949951522426077,0.0017427655353408089,0.0002831764013073933,0.004102945862913304,0.8782913739085197,0.02698212317385527,0.00023407808949901533,3.8589515739458187e-07,2.3105931000047615e-06,0.9999997912240727,2.2138098083515922e-05,1.5607586732595418e-08,7.61105648387779e-07,0.0013615887411142537,2.3930532290319358e-06,1.986914880039344e-07,9.645002586671468e-07,9.018211209200907e-06,4.717482652206936e-09,3.355355204016079e-05,0.006445317897594084,0.017119595901439286,4.546684015794539e-05,0.00239719094083264,0.00012805602970101542,0.0027399448903373405,1.4729336032161113e-07,0.999886870897101,7.500219253259345e-06,1.9016722915937835e-05,5.354438432763796e-06,8.347178185698874e-06,0.1278116953854169,0.9998751079949314,0.999976058505457,0.9999993565789672,0.029907683565167868,4.356809360087272e-05,4.953676191727577e-06,5.3609226232130597e-08,1.9357973364827422e-08,1.3670279714513357e-07,2.4605572714526645e-07,1.73051865224838e-05,9.637951899515251e-05,0.014149193145978728,6.554516130927101e-09,2.9916654250687727e-09,2.954810451829787e-10,0.8941272186157894,0.9999436137712553,0.034281929229394964,0.0008427473462554115,0.6135093013331356,4.4220120446144425e-05,0.0025147739210868176,0.9932658994485496,5.303915091043731e-09,0.15603065504825983,0.00012139397368196196,0.26144839940482606,0.9994443479775683,1.3424532920717588e-11,2.4799985329739224e-06,9.69407388205746e-12,1.2453541484702075e-09,1.971229241435104e-05,0.0001778661656345349,1.086641654782287e-07,3.1378258541297684e-07,0.002194569336447757,2.1972171148576355e-05 -त्रिभुज,rgb,0.364091236821702,0.9973457551456386,0.12067014782599958,0.9990099247265022,0.16438801604018305,0.8098322105289585,0.2080848576435297,0.6944594005752975,0.6636143917240691,0.5815481166465771,0.10477957340001305,0.11832631750116201,0.11195063620815522,0.9976402336415362,0.9997496069621745,0.7345396483483475,0.03536688106052946,0.03794185743887973,0.035501404897576264,0.14267018315479588,0.03271505342188867,0.024098616040736796,0.7908363288918145,0.022856425363285127,0.8867223784437621,0.03062396301987154,0.5436272381954149,0.8685097643356462,0.6877196985056582,0.9890463603646412,0.8088892478826606,0.16020142286582825,0.7790197880157735,0.2921393448845246,0.9994758094379028,0.7076451098888574,0.12357930929057688,0.026269483516470002,0.7304268686504655,0.6884129352338756,0.9983950068555043,0.964015995451488,0.7988972397174925,0.992493306860057,0.37736075468963437,0.16787555551005443,0.17011481779391988,0.11978782649649462,0.39071840692610205,0.23851779169522144,0.8060206873979808,0.9984763367064942,0.636562058035004,0.7263308777752451,0.5249775757119864,0.7251247708530257,0.6122397684767171,0.5759288625552283,0.11753746646593034,0.10830705719355446,0.10256085638915173,0.031870290934340385,0.8149230068920782,0.94809175403781,0.9847693717201945,0.02524534854704862,0.02453633695358769,0.615794385591766,0.6783029520230708,0.677540557862711,0.7482681250967332,0.9983931124537088,0.9979895616681451,0.5974572926043487,0.9952425476349561,0.957789204107099,0.027823451764535625,0.02379857473082536,0.023710940510879977,0.5470025434232707,0.4941005753586766,0.578151038895003,0.06082090379333135,0.4898317025887516,0.6875819989268017,0.0522047200535196,0.7032938067626683,0.02518951226353766,0.2636366026980989,0.4971455451867226,0.6864186419744523,0.8822313955148331,0.6580188539225824,0.573756154844194,0.5289610300666285,0.5021044657835941,0.6388682656837041,0.48789416289304116,0.5927982936252354,0.48816081672822526,0.4377386820341956,0.14774255047659912,0.6772504269365169,0.998884873579439,0.43521689328661906,0.8127118915143924,0.31393315468979116,0.022688128764856222,0.038951833189475205,0.6635712609403657,0.028666562190375233,0.9985901097286797,0.9993805184100738,0.14210675551913055,0.11178418419827024,0.11145551101820725,0.40484403299624583,0.14462579670361445,0.11664840255702943,0.07523040989799355,0.1570538129618786,0.13771477619083278,0.2883544690417719,0.9977451782325352,0.14600634130329065,0.5694442106996724,0.139832690111775,0.4204752327017679,0.16478953411466024,0.15370538926537994,0.20432319540504243,0.23618789520923233,0.8152385866020029,0.6019425194114806,0.385825278195988,0.03574938669974576,0.035050360945027025,0.03625549087087919,0.20759097455722186,0.9889903996297112,0.9993498543516821,0.7933648100709438,0.7430958553919295,0.9969540487187187,0.16634695886441567,0.12917655456638164,0.3326958246126773,0.02366849843026022,0.02546422091629168,0.024294759198774708,0.9975554375646319,0.10545181116935277,0.6812175600261663,0.10486200687058252,0.5292035237977389,0.11073072797075416,0.11942391301165231,0.9265114891104839,0.8956305821884583,0.033589628438606065,0.9528038629015841,0.033664934372759456,0.623185479400152,0.9022094431413779,0.9085407818176816,0.9140042810339606,0.8899185485083395,0.11586481832487323,0.10813499368776908,0.9988051257885004,0.10286041831330318,0.8056870857359132,0.1345250950041501,0.7771344233054737,0.107909824858128,0.21157945375744705,0.8928480050384259,0.9995766088358276,0.958433547403618,0.9237401552201893,0.9086201084105805,0.7479056952182628,0.9994531963806362,0.783375564661239,0.8124141021715215,0.47218253355031675,0.9914996032094164,0.9966356135243025,0.10805680182862817,0.11695193140516826,0.10279356158268613,0.16756263712274044,0.383187701363798,0.12192988686785357,0.15922402189602156,0.4090340826378546,0.38464715937315797,0.13223840977548695,0.7889728187005712,0.7135240622406689,0.997495548811097,0.10219595522653625,0.8656320125915496,0.538095486090792,0.1414466014031366,0.695970919776954,0.516353788337848,0.998217073488308,0.9996978504813752,0.45641972209418674,0.12848132830347855,0.027406817548663365,0.8827938374968438,0.1138215544781944,0.9103280745901324,0.133104844014389,0.13157924722263076,0.8654974579619543,0.13942861717802119,0.16803233228203016,0.18614003184124067,0.9971473231745503,0.7422005784784785,0.9372027545078678,0.03877490745481074,0.039516230243389426,0.9973382750669015,0.038863208488285936,0.8680441115218966,0.15672146171992593,0.9997226412427949,0.0779131011202181,0.9977317784469591,0.6831114017521672,0.1636007770831995,0.14575071145183358,0.13267113281631493,0.988542583853054,0.18388205187921455,0.11824307340720008,0.02680092837495271,0.9992535859407518,0.10213125174068467,0.11258508544384462 -त्रिभुज,shape,0.00010300344547928222,0.017302075359368153,2.0741848934421146e-07,9.787511506303245e-05,5.739151266907503e-08,0.02417764348552429,4.749329797186398e-06,5.460710400604738e-05,0.0379869614368548,0.0002383822361002059,2.8608736078916953e-05,1.3969640436529045e-05,3.921054981549305e-05,0.005585698683783796,0.7700231687557142,2.393715951684989e-06,0.9937711064886239,0.9267998519233788,0.06379656878329336,0.01937434938099975,0.86544140439873,2.033518006727795e-06,1.0125289116389519e-06,1.344898110948772e-07,8.130049678297739e-07,7.262362641640468e-06,1.178945086083812e-07,0.00012067065059468161,6.066712873753551e-05,4.5530765865838684e-07,1.1163903281363859e-05,4.688241673818801e-05,0.9980036286762767,0.00011448212379458395,0.9977485921020977,0.9217966503965892,1.5155790643570598e-06,4.863382757302563e-09,0.011753162105739554,0.9272001393074817,0.9996272892976718,0.9986643553130491,0.9625527894637852,0.9488066843061049,0.9077513361541398,3.634693242383705e-06,3.6151343960697923e-06,9.614339058205871e-10,6.9423503270236335e-09,0.00010909698695139965,3.707195067723166e-07,3.811519542331545e-09,1.4855862266015526e-05,0.999891594005397,0.9996781715849192,0.9679853349225451,4.783111892386081e-06,0.0010821401492283093,2.7469240436482293e-07,1.4937741454336848e-05,2.4665517896746347e-05,0.9101974188438229,2.011627093943171e-07,0.5115234879360244,6.985309121517028e-08,7.228101967749455e-06,0.0001279780902478349,5.1626571307763985e-05,8.946068322685458e-05,0.005167289757190269,0.999981643908687,2.2177020158401923e-05,0.020087800669682722,1.6964960523649855e-06,0.005705733293961907,0.04917521397298761,4.198250225648296e-06,4.1816285885253995e-05,7.4306738102063545e-06,1.2767549245642626e-05,1.957785487322906e-06,1.8637324015543068e-06,1.844239145623647e-05,0.00023488855232403703,4.214961339926909e-05,2.4942837042002957e-05,1.2363192787133291e-08,8.790367018537812e-09,1.287688130336019e-08,1.4895095097228434e-07,0.00016680808161008455,1.2458686277591489e-06,1.1490302473335077e-05,6.647870757320935e-07,3.7500028103485295e-05,5.690767239624313e-07,0.8350515732922521,8.812704410393086e-07,0.1064320344317355,0.0024422218833511033,6.246461393822759e-07,0.9999796421619285,0.9999841949458144,0.999963705321767,0.3486741257679903,1.7805729274395441e-06,0.999772219245522,7.669208215560454e-07,2.1830607610246723e-05,0.9999932333993413,0.00022082001324382776,0.9999332959879089,1.6726093497918103e-05,4.299615476404778e-05,6.347306942721217e-06,0.41099365478463645,1.2300077441060269e-05,0.00017869825299544307,0.0002763204858091111,0.00576256233032936,4.820726466767699e-09,0.00012591526128605197,1.8198363349457784e-06,0.999989322056932,2.5718752435611487e-06,0.021760781829004,4.69151560562727e-05,2.9377033458679966e-07,4.6712018280242957e-05,5.714360079761151e-05,6.355286590784242e-13,1.409799766069595e-05,2.096018943160262e-05,1.835299745524195e-05,6.504001170993225e-05,0.9920377080252695,0.9938041703794932,0.6040958440279026,2.5576841058840685e-06,1.602489512045945e-07,0.0038054816763939243,0.0003295519667556435,0.9994696205210628,0.986923255652052,0.9079197342992311,0.013488640379923025,0.006595439684184844,4.77388826287476e-06,4.282515409700577e-05,1.4150315358569592e-05,0.9998332952550786,0.00020945719968534624,7.883939190379622e-08,1.4920628173976897e-05,0.9997663712978078,9.084261250214686e-05,1.3969640436528894e-05,5.575740832190365e-05,0.0008278437697704306,0.9331008095654505,0.002959437074714497,0.01587568108980374,0.2009480870266912,0.02836929892351529,0.008160513016881315,0.0002424841324777157,9.781955631123057e-07,0.00018326949593838585,1.8449783472552723e-08,1.7389704068509801e-06,0.00047339200398107924,0.0005869195399759718,0.00023664246183988514,2.207155081290528e-08,0.00026501502462118737,4.286237384111455e-06,2.20762049824615e-05,0.0013213872783257913,0.09969887647498485,0.00022945330677094533,0.0011265071032164448,0.9996748802987381,0.0006824873423505888,5.7537350752309776e-08,3.348959438059347e-06,2.5858912962225767e-07,2.0334351392074146e-06,0.0003670407403124125,2.2334769596377613e-05,2.2377469106859328e-05,7.653225314215764e-08,1.7449927520391148e-05,4.541883391741459e-06,0.7546785387294804,2.4637316536927466e-05,8.750095387173275e-07,0.0003004597994597328,0.010465793505868523,2.086406186867619e-06,0.9999791434632915,1.3669931303627394e-06,3.812994007486328e-05,0.0006038335473219267,7.141942573586924e-09,0.7782750321839296,0.9998903891917599,0.999893080457334,0.9999977634033778,0.003697075573302,4.497353935410071e-08,5.506405482956176e-06,1.3621778533330922e-08,1.8600648425824666e-06,1.415932428454508e-06,8.890709220527e-05,7.764906266754945e-07,8.206779316163449e-05,7.63563427712202e-06,1.8881731473493136e-05,5.698576522619044e-06,1.13926423174956e-06,0.9872466549020976,0.9999860592556703,0.8907569507329444,0.0055753786872722606,0.9777079470414983,0.00012585423332696718,0.02697925823746678,0.00016175212411751296,1.4050091637883675e-05,0.01711874177698041,0.00012688998937749292,0.054057520247666,0.9995842880795287,4.820726466767647e-09,0.0029233317865938685,7.810410708182552e-10,4.435873469484e-08,1.2031936131160139e-05,0.00016510892232830286,7.410475970357676e-08,5.15515523564003e-08,0.02764186195226895,3.1512513501489586e-05 -त्रिभुज,object,0.0003067408740602466,0.0012172603304936396,1.0993284782079783e-07,0.00887287563980643,1.794816621607627e-08,0.002498966116199072,1.5634829001587154e-05,2.3898072686051965e-05,0.007343552315387802,5.9211902234272156e-05,7.630823373435726e-06,5.73012314655564e-06,1.3319211425969813e-05,0.003725250871435073,0.9890520924848253,4.1103787518025885e-06,0.9967030843139938,0.9218026027271355,0.017893412085240024,0.026367136876249028,0.7937345872861594,2.5525464380404304e-06,1.0621291238323152e-07,1.0551230732222522e-07,2.989751699379423e-07,1.0991581897563793e-05,1.4734292614975e-06,4.18124199281616e-05,0.0011010051807054822,2.1644209623086008e-07,1.0910055751487085e-06,9.017756601596504e-06,0.9968791112729974,7.455243746071251e-05,0.9999665080988266,0.9961532547227886,3.175934667883355e-06,1.11822469923162e-08,0.015652698240170262,0.7260259508858179,0.9999964163939349,0.9992296143337625,0.7999889322027077,0.908535060738457,0.9852633233147836,4.464315316159396e-07,8.434508123342402e-07,3.959443107762242e-10,9.964008970308758e-08,6.215930741844953e-05,5.922440215277558e-08,5.461835874891467e-07,8.785719804675657e-06,0.9998464405537115,0.9997445678882734,0.9232872591465355,1.4668157686104271e-06,7.928844826388428e-05,3.6541042025440886e-07,2.1791569535613955e-06,2.3469083631413477e-06,0.756195392168922,4.586181657303847e-06,0.1158868652983303,1.646808266147917e-08,9.730757739191607e-06,0.0001396611840328983,2.3846140616142294e-05,8.312181509916913e-05,0.0023627832194350507,0.9999527791888771,0.0006279582025868339,0.3851703655843577,1.5551628084754147e-06,0.00020822444012861424,0.00719189547039381,6.8058871056035e-06,5.2421030893359036e-05,1.1729307559103952e-05,2.5933643566987576e-06,1.7892125638393516e-05,6.073497341306276e-07,9.12898266650821e-06,4.0562233480435054e-05,5.166461663923957e-05,2.2079075555393776e-05,6.151086956795063e-08,1.0305935229512945e-08,3.237700230614281e-08,1.2760342658143502e-06,0.00014650509423488924,1.2826117238066264e-05,3.469313132567138e-06,1.8284924471003303e-07,1.0148668422822102e-05,1.3057818317271308e-07,0.9804302787022592,4.4349471122670376e-07,0.01729707116972723,0.0002413782671363367,1.803149940525764e-07,0.9999971166745121,0.9999787426304383,0.999999582208063,0.09318975174448392,3.000137244121103e-07,0.9997987663421625,6.792531097413553e-07,3.027036198566981e-05,0.999989712368033,0.0001292582320452533,0.9999910500802917,0.0004168426552337024,5.955397276513452e-05,2.785952626215768e-06,0.24707295825083686,6.7118418331422485e-06,0.00011420230620594728,0.00018606679822318693,0.0035876771929158123,1.3588466601817123e-09,8.48446484833471e-05,8.621783364719091e-07,0.9999997057800545,1.229226715387999e-06,9.322017625424588e-06,2.4293220169902132e-05,2.0151364044788522e-07,1.6321741708356305e-05,2.7999628189541344e-05,9.69121552849344e-14,7.30025266000751e-06,4.421687794026288e-06,1.5326032061252245e-05,3.812288841765206e-05,0.9690761800768253,0.9971661042676107,0.5557586543293701,1.4903215645715724e-06,3.589416089508472e-08,0.10241902228100169,0.009839220414751815,0.9951631997001786,0.9981663663803281,0.08507825013810387,0.00028913076558468356,0.001431742503258932,1.0028323006163198e-05,7.313894944467202e-05,1.3842949217923771e-05,0.9999002510681824,5.152369746094761e-05,7.200263906331582e-07,2.082532728871812e-06,0.999817364875845,6.632792342947872e-06,5.458357998818844e-06,1.5829743125698944e-05,0.0004947729533325521,0.843719398411783,0.0013919760000718148,0.009969376680026225,0.9130296015545967,0.006221709942499639,0.002001949489920574,5.525736700588194e-05,2.361973903522321e-07,1.2487089597745187e-05,7.71442185131083e-09,6.437186185617452e-05,0.00036978169641701516,8.866042565803482e-05,0.0001157761481339747,1.4535754320952475e-07,0.0002673174989187633,1.1245247925803019e-05,0.0002433589627055801,0.016203225382822276,0.03484455094790709,7.449050703397283e-05,0.0003037995974591823,0.9999925901644067,0.017265812823588415,7.51169874741627e-09,4.3895710548456086e-07,3.6187001225312794e-06,5.189047657884585e-05,1.2209776841399611e-05,1.0059133674647035e-06,7.934967762301061e-06,2.1537936727731675e-08,2.2152862445884735e-05,0.00010516943935439067,0.3003066854339409,1.560831191319092e-05,5.555080413485935e-06,0.0001801598039796299,0.0019519289535795197,4.799174421267684e-07,0.9999317350588449,4.9696596261798216e-05,2.865293705785616e-05,0.00019109157483786386,8.020552794821817e-08,0.11272409453543529,0.9998680894035725,0.9999043127489299,0.999999967856196,0.2904533967913356,7.931372336757528e-07,5.710833183809144e-06,1.713314754721195e-08,5.903909400857219e-07,3.2373323981307497e-07,2.120223723178167e-05,3.5251903217703335e-07,8.243676035936332e-05,4.2659310883984516e-05,2.5286235987200357e-06,2.033473930785054e-06,1.783799613531195e-07,0.9973987797821557,0.9999629623502452,0.581820874738524,0.00422940607498793,0.9311321855925159,0.0001029278717161179,0.007401757376460085,0.0004525647358587028,9.124932987184323e-07,0.34319877149081196,0.00010847138843511345,0.597194299071531,0.9994331615780148,1.3263501964193338e-09,0.0006248859546531582,3.973881200997806e-10,1.597779285466623e-08,1.1862336018827322e-05,9.053310583962646e-05,9.26587259428802e-08,8.763336471586406e-07,0.011399902660433423,1.7953436008021905e-05 -दिख,rgb,0.9999993390498848,0.8381984671357654,0.9992410142996413,1.0,0.9999998127260634,4.5356685224470565e-14,0.9999999999715188,6.498576877039552e-13,3.4297978456729596e-13,7.196084969376709e-13,0.0010354141839656764,0.539351751839938,0.20994355735459425,0.9758861378682798,1.0,1.0,0.0015682329849219944,0.0016035470635635137,0.0008631115031203792,6.152604607337415e-11,1.92903441934183e-05,0.20767294593830435,4.497248591311892e-14,0.9991184295805265,2.017543322934168e-12,0.9996074518316265,0.9999999898618327,1.530068406702959e-12,1.0,0.9962606746151972,4.527035309991538e-14,0.9999574764921914,4.365860839444415e-14,3.742589166338286e-11,1.0,1.0,3.625645316938629e-10,0.0011635916029745573,9.192353671229569e-14,4.560205429299705e-14,1.0,0.7214660692261087,4.463576282847679e-14,0.9999744127756843,0.9999999999999925,0.9786334904075153,0.9999322526110623,0.9992022119426719,0.9999999999999636,7.237724821214721e-13,4.510263650334407e-14,1.0,5.732531072161863e-13,4.3595092603725776e-14,0.9999999999999998,4.4606523596042916e-14,3.165910999539988e-07,9.00276419271662e-07,0.401390148442193,0.06146089283491134,0.001088013217822953,1.6649379525047168e-05,1.0,0.6687391885338223,0.9965526008362751,0.9707586873431944,0.9976945065703117,8.678953193853266e-13,6.60459533963988e-13,3.666871803086708e-13,4.322024060853221e-14,1.0,1.0,1.3282812150401981e-12,0.0014811317038691133,0.3701787042324498,0.9995986547217831,0.9876309098681658,0.44165850753936975,1.7443386311274967e-06,0.9999999551227869,2.3362570595417856e-07,7.042926061772646e-09,4.735751770695768e-06,5.397625463183146e-13,2.776727196571796e-08,1.0,0.0042472997273118205,0.9993613896977462,0.999999935038167,7.827438232806628e-13,1.0,1.3023549155797518e-07,3.221082472603597e-06,2.946336959930819e-06,4.711660766499014e-06,1.0,4.911361216187471e-06,2.3479591765102785e-07,2.9498281340380016e-06,6.769112283341372e-06,0.9999999998922275,4.6130955362771527e-14,1.0,1.7755561178610622e-05,4.558315139894156e-14,0.9999999999999771,0.9980984196934383,0.9998367357406651,4.662038725974738e-14,0.974198728622426,1.0,1.0,0.5119110014347208,0.012083853531805145,0.0020793068916889895,3.0179489736724453e-12,3.1735435775481964e-05,0.6355181293190758,0.9963858315210243,0.9999701300556673,0.0006982022227529296,3.748632506446147e-13,1.0,0.18823568428922496,1.0796613066425101e-12,0.0010681685996189363,1.8310421825116933e-12,3.167896167117813e-12,3.09423149109523e-11,1.2979709656928693e-10,3.6990456573245636e-11,4.5866270027423986e-14,1.212937910633018e-12,3.710844630800225e-12,8.076320848510268e-05,0.0004253029652857413,0.000512952473418689,1.135496993301839e-12,0.9988385351816751,1.0,1.0,4.339006230505733e-14,1.0,1.5960653399649493e-11,3.4680126732672116e-10,1.7606015454680194e-11,0.6550515127441288,0.9992197497831068,0.9953769873466923,1.0,3.4092357346396725e-11,1.0,0.00082707839678014,0.9999999999999998,0.07571091002798203,0.2984842247121117,1.7277064550699553e-11,1.0362480883694664e-10,0.00020037238790180861,1.4564829113880012e-11,0.00030257116155010165,1.0,5.335767216084787e-12,2.3124838478841706e-12,9.465956555494775e-13,1.2264276897333484e-12,0.1301280999061279,0.04844202831808233,1.0,3.92717055401006e-11,4.507145084495318e-14,1.1132485014313127e-11,1.0,3.0251766382819676e-11,0.9999999999743947,1.0,1.0,7.305254210695121e-12,1.1936757604609899e-11,6.813220184954684e-12,1.0,1.0,4.438134978982355e-14,4.555754332958335e-14,0.9999999999999964,1.0,0.26547014436719907,0.050462814141027455,0.28887574015094375,0.0007989712684695958,5.02664714988677e-10,0.999999718935948,7.681155465037838e-10,1.1568510095708708e-11,0.9999999999999594,2.250963178383887e-12,0.046969896546455635,4.404471186849687e-14,4.4377196901446473e-14,1.0,4.275336520256645e-11,6.663015614619031e-13,0.9999999660029268,7.560668498218127e-05,4.4377319637181185e-14,0.9999999999999998,1.0,1.0,0.9999999623743593,1.5492511788287731e-10,0.0004772752732619054,2.2491395564557606e-12,0.1636002301834945,5.030078587815504e-13,0.005754529465465938,0.4901575633515165,1.0,0.9964126279456597,0.9999944405108979,0.9999909137813708,1.0,4.338075814733747e-14,0.6092913465837099,0.001360095535466209,0.0019191176680341674,0.8348873448114867,0.0003215104244999887,1.0,0.999969124533173,1.0,2.4618583584447178e-08,1.0,4.528298872131853e-14,0.9999555077726133,0.20221509507027477,0.834086049161062,0.9995560775114689,1.0010149069033699e-11,2.061511215495825e-11,0.0022932248278968066,1.0,6.690252955117349e-05,0.00014394636821220147 -दिख,shape,0.9180791874109008,0.9395294651642457,0.9999999180869854,0.9998619920670001,0.9999505782662707,0.9999986872003223,0.9999751659052691,0.7361847881786033,0.9958842251768716,0.7777891567386224,0.00023689382972204756,1.1074750878370606e-05,1.6184759372724476e-06,0.9027480875459493,0.0018468547954268526,0.9993635762690436,0.9991559704529451,0.9986564326680069,0.005480418522881833,0.006229465146928962,0.9501690608923489,0.999995604884334,0.1437439633097156,0.9999985828727557,0.9999918454237007,0.9999961414976872,0.07065623072321167,0.9999762656830535,0.999990347189357,0.7428957440685134,0.5164219295026704,0.9999988735524935,0.9999865057214045,0.9710058753713283,0.9999988645708753,0.9999854250610228,0.9925088783155602,0.06972958574116753,0.8731023865035905,0.26647687433621486,0.9994618924889713,0.9997964008807183,0.9999993722821855,0.9999996742812267,0.999999800785717,0.9999177229623787,0.9999997694461543,0.9915025011689785,0.9992714427155434,0.9980285517391849,0.9981501982324122,0.9879531481544997,0.8543384143305244,0.9992363878812074,0.9947368255290528,0.9999774788226964,5.121442056503336e-05,4.2405429239646585e-05,1.9619010838583276e-05,0.0001020530717175125,0.04113039347300652,0.048855434898399816,0.7144641217490828,0.09425738574777605,0.4862113362841208,0.9999966999222963,0.9999993025399923,0.9787119100360232,0.8868150757940585,0.8528669762257449,0.9974317105473162,0.9867588101847753,0.06040861071478167,0.8663535096486531,0.8923891088347692,0.026727721143122513,0.9999970370952204,0.9999930853008087,0.9999981860091617,0.19606445387519217,0.06021106087579483,0.3227673888387966,0.19400833341371237,0.00012016167945154977,0.7743912143583833,0.24274897839199538,0.0034054310320661566,0.0560954718836293,0.0055751500251882205,0.11349238986974322,0.933601510053019,0.9997342273427559,0.00013535934886099526,0.0008783742777055626,7.654233745970399e-05,1.4768122687881162e-05,0.9999998191827599,6.44233794543793e-05,0.9994751170474389,0.000531242513258592,0.00026528463189233714,0.9998857298895747,0.9991101863779133,0.9990952960345518,0.9997439406805142,0.7228093912301154,0.881367171150146,0.9999990467458254,0.9999174034679174,0.998359970281466,0.999867539238533,0.9955027132137669,0.9995252208605924,0.9994199218641691,0.9999881522196922,0.9999999788719822,0.9994329394377399,0.9998168086290657,0.9998442921051179,0.9999323690808848,0.9988328565328182,0.9999978310128635,0.9975705662940364,0.999952877096557,0.9999999799078547,0.05464564661432224,0.9997286454824703,0.9985606345141629,0.9983786557762905,0.9991039252658869,0.47596803751364813,0.9620405343637976,0.9978018235991635,0.8062092972471162,0.999944085063291,0.048893215085460476,0.9956825903778832,0.9087057765937737,0.9845904424799115,0.025547224656617903,0.9999970107103441,0.9993151751043737,0.9894662391314029,0.9784099673632493,3.007618686366412e-05,0.7246466221492088,4.582536813670234e-05,0.9999976474201702,0.9999774503836637,0.9999978804361088,0.7936647827585356,0.08227992436462038,0.1189067394893072,0.0004950823157872797,0.9986024745202813,1.1796149896591157e-05,1.1074750878370665e-05,0.9999805886565684,0.9999285880334715,0.3614232783438639,0.999986714989121,0.15925748549367238,0.9999992884748585,0.9999754626715132,0.9999690593754255,0.9999187166556627,0.9996839661387901,0.0013420564998434588,0.00018767823672230036,0.9999523765346082,0.000694789551096902,0.9999986022982101,0.397446267901249,0.010450640276142708,0.01133272286263435,0.9990485623405051,0.9994152411575891,0.9972260819003037,0.9999462416669507,0.9999585496756792,0.9999948487364168,0.9999972377934826,0.999997641094329,0.8656268490781048,0.9701273854706347,0.9990294674861353,0.9995769968299756,0.0027743274756747284,0.00022322148065011819,1.1895212399121917e-05,0.4648826846070856,0.36638184170202237,0.6527258129407679,0.9074620815222764,0.10101224090215988,0.9952039737153734,0.9999121586537038,0.9990377323579345,0.9989055797057853,0.6086782884891149,0.9982136805032565,0.3228559816220134,0.9987007717139494,0.28319653761972946,0.998874890460158,0.999307608247092,0.998791273343244,0.9970187656676268,1.3027441266278057e-05,0.04804490895184059,0.9972361289632968,0.26910137680420226,0.9997639826079383,0.009156199242270537,0.9986358495510852,0.9999926114723363,0.999990268820269,0.9997517965532157,0.9999847508855587,0.9999991988602638,0.9999963235507368,0.31389485193364713,0.9976583076471914,0.6145621531170465,0.036323901911792404,0.9848603994289811,0.9997215754356944,0.02611562972486355,0.9998818292120357,0.9960156830467382,0.9858057009612023,0.0904329254471464,0.26251148449557454,0.9938913731805857,0.9988328565328182,0.9999882210440716,0.9953679510609973,0.003693214330298203,0.9968671991117808,0.7041868148047588,0.2749609201369519,0.3612530071595356,0.9999999989347581,0.9999848712632143 -दिख,object,0.9982979539062217,1.247743952344291e-06,0.9999907270035417,0.40797586517292017,0.9999095505734323,0.9996423457682394,0.9999999832450069,0.1041976927750047,0.38235746032291684,0.1580234103560811,7.72731709488935e-05,0.00012354217507416985,1.660749207163571e-05,7.693633897581062e-07,9.364513772882642e-07,0.9999371610852203,0.9996124790634807,0.9992264992761789,0.04974431505812426,0.002208131832370417,0.8890900562520325,0.9999853683680134,0.024047854896000278,0.9999994215822923,0.9555962513365515,0.9998877315730988,0.999895975687451,0.9832705414838778,0.9999999985642558,0.00011189645674649916,0.009128452317462885,0.9999947142718636,0.999943160286618,0.9883973371730163,0.9807520572289024,0.9999999999672136,0.5563919635323953,0.31104381293903355,0.0023330481254210697,0.013500157743803292,0.4086145306639089,0.49028909826039135,0.9999731974212546,0.9365452660973667,0.999999999952478,0.9998803462246934,0.9999979669916519,0.9923348811330321,0.9999998537293423,0.9169186348656545,0.9710009655868668,0.041564426763505434,0.583862545728239,0.9860667485534869,0.9999174128113585,0.999945463665392,9.088435188451502e-06,2.8327078323160924e-06,9.380416511213845e-05,3.247241117826938e-05,0.00011717591472711066,0.08769955258402694,0.999802753365124,1.9414173383245447e-06,8.23311980974662e-07,0.9999981787911872,0.9999831806954889,0.39030216657704236,0.6106302364019481,0.179772077859857,0.9219798728557512,1.5680051105532697e-05,1.023576563354951e-05,0.8692086089727185,2.440382724680084e-06,2.7805623138733643e-06,0.9999701917672392,0.9999988758846237,0.9999960545684072,0.002168268884370122,0.9988334253533162,0.0002949098757220099,0.26764274132648,1.0333975546641703e-05,0.8767614349661431,0.2121161027803822,0.99922159344479,0.4046467163455157,0.9550463438487476,0.9949193896458363,0.7091623235120658,0.9999690811483523,1.4192015733830538e-05,2.561171436598251e-05,2.0857086799084776e-05,5.115721094851828e-06,0.9999999999782061,1.3017073571012154e-05,0.3329114701790053,7.705859858098406e-06,3.983965296121896e-05,0.9999999843914607,0.9957592887548287,0.5988846514982131,0.5065571710011156,0.11749324272595443,0.9995635753585862,0.9999997200824344,0.9999418688616176,0.9839751321784999,0.9972090917945661,0.0005862569330291692,3.4187323753198366e-05,0.07002943882377145,0.7003255690737094,0.9988701218189541,0.9988494660619157,0.02584426076005052,0.014730211723766914,0.9999256271482954,0.9990274446142767,0.19073501746570984,0.8330239169432554,0.5451249128460048,0.5263746820702018,0.0005306309251772198,0.07185267791812201,0.9970641827103235,0.8052310386574818,0.9778698568428732,0.0007719154534052634,0.9653851726904781,0.7415042399325088,0.8522775794623446,0.9995955990672085,0.32862719866721096,0.9989690782153184,0.8952178628526519,0.6612352414299942,4.827988067868621e-07,0.8530789429949808,0.9999986876382893,0.38892971528901754,0.002175850481711425,0.001937462277103036,0.7634001993854103,0.00024051260783398976,0.9999886405803995,0.9999781968249188,0.9999946563023382,0.00017850996561997047,0.02016622227491758,0.9999886592053779,5.683677438510831e-05,0.9999993419824831,1.1811825357312302e-05,0.00012002837897009171,0.9868786570028122,0.9012758741713154,0.06654829800724327,0.8610645902860239,0.19106282001542102,0.999999999998076,0.9263092624470665,0.9771718209603798,0.9612441988612827,0.9170785029765084,7.416258978967619e-05,0.0001821149260498527,0.47532470026883505,0.008184448057223424,0.9996716610591518,0.06944847445614144,0.9992330913929803,0.03303839864565439,0.999994037471583,0.9999528219344799,2.302103429123765e-05,0.9612930302793194,0.9615591306333878,0.9885449152887567,0.9999999999919598,0.7884893390969866,0.28925248523554226,0.5597596003540071,0.9999996433197906,0.1883636504567125,1.0415860947098814e-07,5.0823445141746954e-05,8.433867143486419e-05,0.3305991503826778,0.6915156550891698,0.9999821611852422,0.08511795252925498,0.08248111268209968,0.9999988287383671,0.9993358988701778,0.02053136013086523,0.9710593959095091,0.06680036694420949,0.011603274682028835,0.1293932572857727,0.7298848652867616,0.9998417106233586,0.13974140827584772,0.1610679053389142,0.9999995194238334,0.00046679684830080315,1.7224519365113834e-07,0.9997592265461794,0.9953076653400142,0.3215866347585274,0.8035806568908024,8.057833181995635e-05,0.8839343870462472,0.0505360858132594,0.14546985796921388,0.9999999972394322,0.9999266590221715,0.9999965355899632,0.9999844853705577,9.6981933342712e-06,0.9397605511468876,1.2895310923349936e-05,0.042021561807221545,0.8527609933760799,6.95240452965583e-06,0.06542764650099446,0.9999906706198332,0.9984155688097983,6.3950109060552335e-06,0.7429769006457098,1.696431507867719e-05,0.9696497764181593,0.9989249955600983,0.9998983078839881,0.9925126483611765,1.3802580183464205e-06,0.9588835042501406,0.5564910525500094,0.4292454325416976,5.427761486719744e-07,0.999852371297731,0.7810248149622034 -नारंग,rgb,0.6046595004570303,0.12234814718290583,1.6118993260782882e-13,4.5991797821751506e-32,5.777893119149922e-16,0.999999999542122,1.8326649005970324e-05,0.9999999998835873,0.9999999997095383,0.9999999989005084,1.1079877809296094e-08,3.517037825807322e-11,1.0976066668365971e-10,0.029906151149685787,7.028942991141977e-33,0.0002828456503275495,1.5960671407354196e-08,1.2369302502207371e-08,2.8016867222424386e-08,0.4624852592071924,3.7768752505006985e-06,1.2300064086781664e-07,0.9999999995301663,4.828845644522106e-10,0.9999994886905993,2.9557361002335454e-13,0.900628431207771,0.9999993313479044,0.0009219646822567434,1.284458839321828e-05,0.9999999995223177,2.656171725809717e-14,0.9999999991385373,0.9999995440925691,4.493783244115919e-27,0.00019870588626985671,0.06397793433514712,1.4428384392406253e-06,0.9999999057184135,0.9999999899488133,1.1163987769321303e-30,1.0921962857613945e-05,0.999999999247194,6.095721773039289e-07,1.747613896530581e-05,3.11037972967329e-12,4.048910434739308e-14,1.6612574260049848e-13,7.319749830268801e-05,0.9999703501637826,0.9999999995291082,7.301334661303646e-31,0.9999999996032574,0.9999999977281107,6.714546625576292e-05,0.999999994390788,0.004086751643027615,0.0009397085146230429,5.4612158567585427e-11,3.351205849144371e-10,1.0406615676913331e-08,7.597335292074116e-06,0.0011760998507331965,3.675928744733494e-06,3.542410105705542e-06,3.0139244932331456e-08,3.9634429908871245e-12,0.9999999994807414,0.9999999998386322,0.9999999997889062,0.9999999984240318,3.0039783965225427e-31,2.2978996431782018e-30,0.9999999993358646,0.9785612744478934,2.3658617365767367e-05,4.82013514947712e-13,6.302518106255412e-09,5.6968333194759425e-08,0.00035461778174913824,0.8758840056710252,0.0037182535331013464,0.49514185299421254,7.33149833792981e-05,0.9999999998558773,0.14074089713364657,0.0006680102501855045,4.2464171468231166e-07,0.8284610474432822,0.9040641662518737,0.9999999998711757,0.009960012760604535,0.01782635912156647,0.00026229098892425524,0.0001749548854178501,8.368027818646475e-05,0.0004909451666696648,6.939153403199217e-05,0.004384851222226225,0.00011378753381089826,3.068635888388057e-05,2.42846745579791e-06,0.9999999881327882,1.647461527476961e-31,1.200317530014699e-05,0.9999999995355422,5.872108719394287e-06,6.694268979341714e-10,7.70653996973385e-14,0.9999999872691084,7.786188323049486e-12,3.3619326181526515e-31,2.48057921173071e-32,4.811037296390628e-11,1.40847331107866e-09,6.39915402395748e-09,0.9999999682013058,3.767093625568375e-07,2.52112915771993e-11,3.956256187317778e-13,2.003173855244902e-14,2.1548680855623493e-08,0.9999933510947747,1.448996300921006e-30,1.701009643464911e-10,0.9998882346990052,1.514902925568488e-08,0.9999999750654955,0.9980817203819922,0.9998661137865277,0.2660102841653718,0.9999972555069433,0.9999999996165798,0.9999999993783959,0.9999999520730368,3.121849008981563e-07,5.973763099449565e-08,4.30773255891186e-08,0.9998299135052534,4.394530391786418e-06,5.3589639888786856e-27,0.008856758809444254,0.9999999983965273,6.580377294301183e-30,0.8766723941649425,0.06700081220664544,0.9355554238920053,3.868377573155072e-08,1.3717759029464952e-12,5.103070906714693e-09,1.8550210045674683e-30,0.9709665710420845,0.00031058860174498895,1.351061151971499e-08,7.176485264437938e-05,2.8468636596811085e-10,8.022926053805852e-11,0.9999982958900814,0.9999049137197342,1.633298181498589e-07,0.9999998403438826,1.036491315860612e-07,1.6807489737076784e-06,0.9999988448698375,0.9999997736485439,0.9999999639019015,0.9999998044838327,1.8186250939984812e-10,4.1226107494134603e-10,2.0127114496434054e-31,0.9452111709912915,0.9999999995224047,0.9984760565175933,0.0005984501571497095,0.9444308064224283,1.9701537337167027e-05,0.017294091745050012,6.473157763277176e-32,0.9999999713197881,0.9999988146112706,0.9999987885023593,0.00017392358346445729,7.026379468779757e-27,0.9999999994030451,0.9999999995288917,0.00012542462160573958,2.0994118739212166e-28,0.4178781076178752,3.975308999735473e-10,8.141065614298633e-11,1.3682009270187101e-08,0.9999500298597291,0.5992613200522245,0.024318352492876897,0.9998531734858056,0.00012830386520388848,0.9999999447319687,5.328330668618949e-10,0.9999999992930422,0.9999999975141369,2.7089444091641155e-30,0.9699389647994856,0.9999998192899504,0.9424707263986951,1.6431033689065818e-07,0.999999994748846,5.859403907972491e-05,6.939613839554645e-31,7.811142199485118e-33,0.7258702944028292,0.9994772387452919,5.274965909381705e-06,0.9999992835882355,1.433132442794988e-10,0.9999999864226452,3.277490601071015e-09,4.6626124201269635e-11,0.0044280215463271145,6.039173734319962e-13,6.48637152680725e-15,1.064516858736664e-14,5.320557539484817e-30,0.9999999983552097,2.3540934684603722e-06,1.3561390925939334e-08,9.365973029551407e-09,0.12363882790782964,5.3630216891669844e-08,0.004988436058236714,2.0465286705350736e-14,3.50865901028548e-28,0.9450492221654822,2.5493606276552057e-30,0.9999999912479082,2.8216427463707177e-14,1.5775158514653112e-10,1.2620281884067891e-11,1.6099224787462977e-06,0.9999654409752161,0.9946074608901192,3.7365793430829885e-06,1.2530562380347832e-26,1.2670559176151933e-07,6.8975499020112e-08 -नारंग,shape,0.8794213247957395,1.3905855963802467e-05,1.7664415805248874e-09,0.0006747595756804093,8.724974035486707e-13,3.0558936928304627e-06,2.5098856877510533e-06,0.14495749220680712,0.030772168922242316,0.93552298048499,8.119326626902817e-07,9.770738607028207e-07,8.145876507692786e-07,0.000531295030094393,3.588702611431561e-07,2.40059301056017e-06,1.3828664187069715e-09,1.4915405652668465e-09,1.9674757701391388e-07,9.284942231741661e-07,1.7013849684896223e-07,6.159321044275466e-05,1.698526879401976e-08,3.358040198338632e-06,0.00015008680823544186,2.8216795367524103e-05,0.9991190135049156,0.006479410651951007,0.00010066940818618931,3.705278502167172e-05,0.0025843757444071413,1.2835717660654682e-11,2.071814784866732e-07,0.9999498917101903,1.029000688590563e-07,2.5322132973275856e-07,0.956206468018203,0.9998237668361042,0.0009378437196120781,7.056354114300545e-06,0.00013105159922563344,0.00011435278964421,2.937890479147455e-06,1.8447924753780334e-06,7.464359785580292e-06,2.1780692565445482e-09,2.545511072647119e-11,4.242543371052487e-10,3.509897828725297e-05,0.9999207616711199,1.0415185418542473e-07,0.00018602586884717084,0.9998266915796442,0.002134092508458466,0.005277395959662559,9.407470824213762e-07,6.655910265941986e-06,3.41355871561218e-07,5.346287822013535e-05,4.23048666129129e-05,0.0005760449036609803,9.220461099054727e-09,1.970826424476426e-06,7.787921387166368e-05,9.611296555487183e-05,0.0015273442566480122,0.0003225136175423391,0.9989554674759513,0.9979376084066395,0.10042796817332267,4.592592518551352e-06,0.001565051373724567,2.5968714914462583e-05,0.9975010728748941,2.5071854678054113e-05,3.246342155063246e-05,6.092099257542941e-06,0.002635743587324372,0.00956699634397993,5.107456065674212e-07,0.999420851952106,6.286470178032944e-07,0.9987007571156863,1.1886808851387198e-06,0.9361276349183247,0.9716940008978016,8.761031370325255e-06,0.9990979658323841,0.794988594044671,0.9967001721295718,0.9985310316806308,0.01363267983447991,3.0190327873826012e-06,1.839096439059167e-06,6.926156186977332e-07,9.820721034079016e-07,1.2322385714768039e-05,2.969372363785189e-06,1.9138253976242448e-07,2.8622611980513424e-07,3.048036787437488e-07,2.534399414363494e-09,2.511243946994183e-07,1.2596824181722166e-08,1.6839802125799914e-08,3.048730256601856e-05,0.0001255566460590718,2.2501581479438774e-05,0.048308282330951656,9.919052896470821e-06,0.0013778132863456912,7.812968294595349e-06,0.0002551482479908771,3.015842109240434e-05,0.000513898001062519,1.6791278273044697e-07,0.9998698826567235,1.4624738158169769e-05,1.4676624365310423e-05,1.801782731813861e-08,5.037159782820833e-12,4.258332250591387e-05,0.9999332417823147,1.7815541313562494e-05,6.98338140834829e-05,4.743542813233624e-06,0.0003357720519552396,0.9999417591295858,0.9999676601099795,0.9999962903136815,0.9987037480614575,0.9999707980663202,0.0001946927695479374,0.9994620940168233,0.9998811944890406,6.565208012837071e-08,1.0164661837446145e-05,1.7578525584328642e-08,0.9999801690897485,6.211066433850553e-05,3.752513969665765e-05,3.672020217643083e-05,0.00035366668651714704,0.0002668359668759935,2.321599126697793e-07,0.019338447838562936,1.4306411468175855e-06,0.1065617250107183,0.0004028516455233201,0.004051328279241571,0.00011181213458843929,0.007756980416923675,1.574408429002807e-05,9.503213389600439e-06,0.12126015273023631,1.4463863629774018e-06,9.77073860702812e-07,0.0064896452781298625,0.009108710125639534,1.2707869338415545e-08,0.7475391084050309,6.070549846379502e-07,5.79244046039494e-07,0.8461757290208716,0.01431196667962854,0.0031089865290545833,2.547267966977805e-05,1.0453573556593797e-05,0.0457816503294447,0.00029906901093804887,5.5386683602474304e-05,1.2783697795563883e-06,0.250215589459186,2.5601868167929102e-05,0.03173802285676461,2.47526625311239e-05,0.008602875530961793,0.0008257825574849678,0.0019767601771883176,0.317804777872365,0.2073184192990153,3.1330890050016266e-08,7.901500805179481e-05,1.527798509878829e-07,6.074987910951328e-06,0.00652669787517409,0.0001362474793470257,3.529558195974928e-05,3.4898101568836756e-06,1.3344348659690904e-06,4.527938731135224e-06,0.9984239715402697,0.8970689701592935,5.148926179513355e-06,0.09253918131618653,1.3675665770171473e-05,0.9998158427068852,0.00021357433348747934,4.450699163161481e-06,1.0527960019273224e-05,0.00022244596128628193,0.8815346231153521,0.03601393546617461,0.999938508523713,0.0027723103158113207,1.558854865588785e-05,5.513011403498444e-05,1.4448454449183476e-06,6.145870275085549e-06,0.998066077004618,0.9999920146701301,0.9998414704740215,0.004433670577444115,0.0003002311845700289,0.48925384238617,2.5306803781755992e-05,0.0017925449469452747,6.040669096909229e-12,1.4194553530355055e-11,1.2239892393971302e-10,1.6670782118812077e-13,2.2336061114901622e-06,7.305596669955751e-06,0.00012645479823440297,6.461659569564576e-07,1.5724016181073132e-08,0.007030560713557654,2.461534969638881e-06,9.62088167661598e-06,4.6038045338257186e-15,4.5369917248984624e-05,0.9771632608327174,8.62580032887441e-05,0.0013932286434283775,5.037159782820833e-12,1.7591120828584246e-08,5.489017025430489e-09,2.60535296924039e-05,0.9828862872127602,0.8065964518740057,0.9993317375049092,8.349860195867776e-05,3.744078235969606e-09,0.0020373267401343448 -नारंग,object,0.7751593752628995,0.0001699079932583157,4.71879961657717e-06,1.112035573472367e-05,1.6348818355314457e-08,0.10415165368572736,0.003776201785762432,0.9341567399390566,0.539020370610705,0.9957817857918764,1.7426294814109054e-06,8.795952000458912e-07,1.05594801159699e-06,0.004761420921950471,5.130922547936807e-10,4.8311869960996584e-05,1.6421169706617724e-05,6.541381462532207e-05,4.984182012049905e-05,0.01577370816284515,2.3427426971129938e-05,0.009376537068788583,0.006561194100799884,0.000188053170004789,0.6033337338962494,0.0008298829660442614,0.9998384856390277,0.9124868167652177,0.00033105015461658873,2.587609496273056e-05,0.9726395993615882,6.753372434447981e-08,0.0039545390251166405,0.9999742416259177,6.3513218728020485e-09,0.004985178820677534,0.9860869818452053,0.9965053843157107,0.933153645768048,0.1054159080343737,6.984154555913287e-08,0.00047139413995176874,0.01229535321270335,1.0122219042661151e-05,8.260889929471066e-05,1.7338996474580982e-06,9.315573788319052e-08,2.1565538013708586e-07,0.08388235540444472,0.9999307462762352,0.012025948990222001,1.8678660407965892e-06,0.9999607876188419,0.46191710035745753,0.010000754012846717,0.034677876137612466,6.176987929039784e-05,1.9641750204990032e-05,3.834850511582671e-05,1.0992847450794032e-05,0.00021699445932093483,8.295636993364434e-06,0.0020129838673591484,0.00010998291276830803,0.00024274597200402446,0.02968405742141258,0.0006300066236425251,0.9998470139676372,0.9997171939494108,0.9336537070505775,0.012988078862409722,2.84519986985923e-08,3.5791848998839304e-09,0.9999420568771323,0.0006343858186973896,3.236776192454181e-05,0.00016051197077529582,0.023505689198120988,0.11192231376120308,2.898603663399955e-06,0.9996283818912255,0.00011481209356033587,0.998392049398717,0.00011288845010949839,0.9990513920851692,0.9859180522123889,8.14361037888007e-05,0.9825871042931501,0.9573603004117208,0.9961655791855025,0.9999006409556566,0.11215705686988252,2.8384359389674875e-05,5.6204075151400915e-06,3.629871901294822e-06,2.153855265143647e-05,0.0001885725264093291,4.5576116990522945e-06,0.00032849090358713715,1.557240483154476e-05,6.3194473493203755e-06,1.7283190852407473e-05,0.015139613991824388,3.551254350306062e-10,9.190816701171711e-05,0.019286332571923064,0.00023531146256702755,0.0006826274011930031,0.007143063346607089,0.030884187096057964,0.006316553449636058,1.3621822703291839e-08,5.81742606766655e-09,5.9969150257232723e-05,0.00020099910359478728,0.00015789270182945496,0.9999837286279744,6.634901688163965e-05,2.0292452073779976e-05,9.118308809191347e-08,1.2652748720078857e-08,5.8132147804820275e-05,0.9999730314314035,9.414721276192391e-09,8.917913031730535e-05,0.003295514267112088,0.003264881021609588,0.9999812014519259,0.9999421764295178,0.9999799803256697,0.9996283270074413,0.9999869054438492,0.9424157837817234,0.9999388432398041,0.9999723926119396,3.4832078382522814e-06,4.911922863465242e-05,5.830131228903571e-07,0.9999740631143789,3.8827892845351884e-05,7.921828378963372e-06,0.011108149464918227,0.2676655828318683,1.1291472849878102e-06,0.00018971478957521067,0.036969230437107196,0.0011368739724222047,0.1310059539562693,0.003095445449310123,0.08792213000393152,5.756682099844721e-08,0.02898827311267066,3.201099643521131e-05,7.210524561499928e-06,0.5752122095197998,1.7184675967919082e-06,1.017210283594831e-06,0.7857074257279153,0.9155767344512,6.893820354376635e-06,0.9992459082807209,6.626439540148907e-06,0.0008166922689507448,0.9966566070225682,0.9448616723891822,0.936123883145847,0.3772392313086697,1.2186326527020152e-05,0.06128337711560353,1.7919665996904799e-06,0.0008897794212510934,0.055099080841296624,0.6899784528235484,0.00012592183346454334,0.32756950489935993,0.019486268749595977,0.045394248960259335,1.390127383534951e-08,0.8771997294556249,0.9895642519069484,0.9757784697544926,0.000108663639559313,1.8363784507695412e-05,0.006344252020991939,0.0033352169572701904,0.5626270262800519,3.3552946835602765e-06,0.0005614130037383412,3.3156906673737584e-06,4.4814171466367627e-07,0.00040445230115665243,0.9996626110296173,0.9547265440226479,0.0008905631245623273,0.7157928754143955,0.013090044309182015,0.9999241606489039,0.00023704776094339466,0.15611013495417764,0.01701016600096218,1.9236477232463524e-06,0.9433447674536197,0.9568196931151586,0.9998846568736814,0.021714024935815722,0.15030498494043948,0.0044801874003340715,5.497894437982977e-09,8.95174434410538e-10,0.9988076758986822,0.9999763767685153,0.992583912896741,0.9285918319513239,4.9526889688015114e-05,0.993183521838764,0.0003200216996943621,0.00025607882348394225,1.0261392977865168e-06,4.984807358394935e-08,2.6765125910595917e-07,9.162974734133437e-09,1.278604380287156e-09,0.011768023617986748,0.00014085858846628834,7.686144040320943e-06,7.949467021450258e-06,0.023457675095493267,9.635071849007223e-05,9.185949163235083e-05,5.164915325934011e-10,7.712732875368139e-07,0.9970665118113891,7.562928457604522e-09,0.3544033010042211,1.3425520335760699e-08,3.5095806640234524e-07,3.536483696134116e-06,3.1436343602064846e-05,0.9982961548882976,0.9252780922157281,0.9845483476593094,1.211582992218694e-06,5.579969245704469e-06,0.0007004474037728313 -निम्ब,rgb,0.0020097302433110683,0.9999534989835801,3.7138904007609956e-05,9.59680371837874e-10,4.9711769999849765e-06,0.9999920502460006,9.69538776813346e-06,0.9999502815646966,0.9999387318699386,0.9998276101757255,0.003239695914995617,0.0003826982805762299,0.0005570370742095943,0.9999270111899837,1.3524749790828344e-09,1.3469890352032513e-05,0.00028893221453475605,0.00032459629262198976,0.00036024310557181946,0.7595785974717361,0.0013372912267328773,4.147960987399811e-05,0.9999898857088616,2.3835765400443485e-06,0.9999874042763213,1.701863745215724e-06,0.0035130611326334715,0.9999830434926436,2.549230944048481e-05,0.9941700411262187,0.9999919216664725,2.8362831966536703e-05,0.9999877235411975,0.98981471598465,7.321246660868416e-07,1.1784912694432634e-05,0.5247168134057371,0.00026244948802239457,0.9999595605080827,0.999959274447999,3.3081591568333126e-09,0.9798309050041618,0.9999904298994996,0.9865892026635663,6.032376533462279e-06,0.0002620402963976943,3.8648769004527205e-05,3.71101205404306e-05,1.1735376919050894e-05,0.9904566531816832,0.9999916346365468,2.7752025029314343e-09,0.9999080231422555,0.9999760208950975,9.000687102110406e-06,0.999973294735341,0.9491234641408954,0.9003664442180997,0.000455677064770466,0.0008333865268553647,0.00302884752407335,0.0014101887074499581,2.3939999300885166e-05,0.9554885507400814,0.9868071512743878,1.1142676348134536e-05,2.210637814579948e-06,0.9998739749097993,0.9999399789541675,0.9999468151326232,0.999981649820582,1.6223093156108527e-09,3.867266554771895e-09,0.9998313285011962,0.999989947227503,0.9822503333615238,1.4713606163206988e-06,6.706957041426177e-06,2.7808677957253994e-05,0.8446845182733727,0.003391112138123833,0.9376363496210698,0.12025446970595678,0.6924716140099906,0.9999483821519123,0.054437520719162635,2.132271855453768e-05,0.00015158573926398356,0.0052843659056138505,0.003939274888659429,0.999943098189702,6.102485072214061e-05,0.9760218450058159,0.848410241559892,0.7923479832307655,0.7161389418867521,2.0059754078264877e-05,0.6858993021686042,0.9451883662434396,0.724323806394975,0.5517610932077331,4.8566814789332545e-06,0.9999539131315418,1.7054978438865969e-09,0.4603100891561796,0.99999232603919,4.094387288326286e-06,2.967773535790747e-06,1.9582418361602102e-06,0.999947257233083,6.195608557271195e-06,1.9750196508613146e-09,1.1021549842137056e-09,0.0006217064799626638,0.0016023860328596127,0.002939035900981155,0.9985161758895791,0.023641617080289227,0.00032280631399480333,2.1262779693666158e-05,2.396776744289552e-05,0.007165982480059424,0.9958625255097499,2.6756614788925617e-09,0.0011157198413238544,0.9993371728823836,0.006419167867703753,0.998884530462567,0.9482099515267289,0.9171947388481377,0.8514277865564538,0.9785092162491913,0.9999927081768745,0.9998424441647145,0.998084557080583,0.000864209161521648,0.0004552287732886321,0.00045038173893708044,0.981835170233092,0.9911160593143074,6.556436259514756e-07,6.67067021454495e-05,0.9999805562388965,4.40963222605667e-09,0.8890174138173181,0.5542920208027071,0.9816046529733231,2.1185645398376118e-05,1.6165870026836686e-06,5.282804011365699e-06,2.809396953281332e-09,0.7252025322882809,1.5154968913749615e-05,0.0035101876111846104,9.235864432438313e-06,0.0008130908232410364,0.0005532050032057903,0.999990484921921,0.9999506443815169,0.0005604902549899582,0.9999972215169205,0.00048314044289551173,1.3717678897524291e-06,0.9999873560105234,0.9999925600360495,0.9999957198474261,0.9999905843554658,0.0007363722960043877,0.0009054713542241357,1.7718051034964457e-09,0.6924575713424271,0.9999915882666528,0.8926229667689036,1.8233203829937473e-05,0.7284954438199694,9.909167994994255e-06,7.873435133376641e-05,2.7059687208867463e-09,0.9999985050309944,0.9999909682032933,0.9999883571093373,1.0465111973724266e-05,8.816039377995246e-07,0.9999887069366699,0.9999922859384115,1.3211992556413217e-05,9.307890007310256e-09,0.9999682215692606,0.0008906381542617012,0.0005345379215938448,0.00339117753814589,0.878465346715006,0.0018894666875634992,0.44299710278946264,0.9392702635575688,1.4897647175486187e-05,0.9982788509062762,0.0014862546476729647,0.9999892855256544,0.99997236199551,3.360234372459961e-09,0.6977601354753801,0.9999874043350495,0.004886355185245082,0.016571269031437078,0.9999647042963192,8.538368888746217e-06,2.2948738362794087e-09,1.1935634305355893e-09,0.002167307066551912,0.8061407432339761,0.0004117707535942553,0.9999855141531,0.0006436723974529024,0.9999963890517608,0.003164823697917257,0.0005295549295276671,4.215930496791869e-05,8.909771145349528e-05,1.622662314770622e-05,2.493079466520996e-05,4.214968363474963e-09,0.9999803228607038,0.9359447501997112,0.0003580345329246925,0.00032809692912320545,0.9999535844240095,0.0006020178132377144,4.4502943001648836e-05,2.4105610920681282e-05,3.6075917583175065e-07,0.18279343645075707,3.607348768249299e-09,0.9999578572525928,3.0374351731167427e-05,0.0010774043711143876,0.0003072686923047531,0.9863585509603503,0.9634233250238022,0.8223073523531905,0.0002514629806887515,8.838701915905887e-07,0.007955241660189247,0.007640238031035792 -निम्ब,shape,0.9828801510606487,6.177222130859959e-07,9.31933293981947e-07,0.0007090458675810428,1.8011211603353816e-10,0.00041718022058383084,1.1653722575003398e-05,0.9998054158380969,0.999354671251671,0.9997893743102131,0.006863089328239712,0.14264647588219764,0.05009846536572053,0.014901813841310282,1.0663677034493807e-06,3.391520968152209e-11,4.442847983731194e-05,1.5714201364527288e-08,2.7976247264299738e-08,4.411467756455498e-05,2.1839459521272694e-08,9.676600063374817e-05,7.394000634838412e-07,4.929668615564308e-08,0.9982413601449519,1.6939505301992492e-06,0.9997402709507583,0.9992997437570034,4.430995397148259e-05,9.807481494369928e-07,0.8644998297213649,2.0008808004585904e-07,5.129300677102956e-05,0.9995095192372372,6.0509827364731454e-05,0.0001276178113541503,0.049428269345330025,0.9992965372280924,0.0005598918862063474,0.00021667415732627384,0.17714298719927737,0.14402353111344476,0.050468013228356604,0.009257522748888103,0.0002060936111717463,1.1554146923696904e-06,1.4786527289170181e-09,4.733381023692917e-08,3.9209296376898945e-05,0.9526255418029405,0.001789890675358194,0.0004883056669368702,0.9999644837561296,0.0014891324885595184,0.00010241635704280816,0.04072306503554341,0.5644017539975313,3.122544835287526e-08,0.7532523388556457,0.005587943085651818,0.00747614208477519,4.869393202597124e-11,6.962239515906709e-08,9.482095235848673e-05,0.0010046809890533299,5.3160846719069945e-05,5.225633469974007e-06,0.9998724424055649,0.9999680862601064,0.999461685480188,0.0021793103283930322,0.0004289101235644645,0.0002387801460425328,0.9997602593956341,4.0045090223405575e-06,0.01765396130435877,2.1869603466783916e-05,0.001350159989533166,0.0028571577826788847,2.464309550123037e-08,0.9919342700761322,0.9969495689271768,0.9975852894341034,3.1097340433845605e-07,0.9997378778390004,0.9904058011747345,5.478163499701495e-07,0.9990011742088524,0.985601859508607,0.9340585601894077,0.9999688209286244,0.00021157186404360375,0.11020609086294744,0.8936055960159275,0.022400390052637893,0.021525357161759233,0.00025452599058378597,0.2618300482451443,0.0016163191482422223,3.581983913315284e-09,1.770099009634355e-11,1.1186244946211607e-06,2.726534824345391e-06,2.1864523435308944e-05,1.4734989117368795e-05,9.896848086767065e-07,1.1739188539228373e-06,3.970181105879313e-07,0.0017148656760232533,0.0011637622877984203,0.0003662666316296071,5.607278646752057e-09,2.927648774847092e-07,1.3694697024543509e-11,1.9103285691066038e-13,2.6481778121859948e-11,0.9350376355133481,1.0226239427785581e-08,1.0328636788880177e-09,0.015333501279412815,1.7567861214044662e-09,1.230001011453507e-11,0.9804615441410464,0.0005196143306105639,3.767257771013513e-12,1.3743385251799226e-13,4.39423993911641e-11,0.9785959120379022,0.994326566111342,0.995375340107883,0.9992789582781748,0.9934831523725628,0.48050610593028603,0.9999950985349647,0.8354923311793675,1.9611276744576669e-10,0.28762347645104824,1.5678414830315197e-10,0.9940872098816178,9.25854623385395e-06,2.1296766588273634e-05,3.802069512277112e-05,0.936026790988015,0.12921502256347647,2.6542595636779867e-10,9.052310207823282e-05,0.0008374208258288505,0.001005711594249694,0.0021970203278703095,8.49749053485626e-08,0.027023396134153235,0.9282794732375486,7.541896936704855e-07,0.010949567481384094,0.00023512016474139044,4.554022676783716e-05,0.1426464758821972,0.9983698794830113,0.9999339427329403,9.284774012152999e-10,0.9993221262186722,1.1204028099746532e-05,0.0001364147119387127,0.9998979501787941,0.9998886074542873,0.9994633592773152,0.9980535685368931,5.590374943825878e-07,0.045175219150440045,0.023273876234513855,0.39759594780949337,0.00013119920600385116,0.9995631192733371,3.565532515957696e-05,0.8697583440021345,5.78846177300159e-07,0.0004434526332668718,5.707873251378055e-05,0.9998216921908045,0.99989894155691,0.999457913893033,8.408607831964552e-05,2.55209909508766e-07,2.1756007732788287e-07,1.143036982427579e-06,1.264892733770777e-05,0.45328409993466695,0.00015710910562384005,0.0004619021178407383,0.6141711645896394,0.06300659921656424,0.9982750663382091,0.999793333120889,0.00033068973403801077,0.9999142178554002,8.785776107441655e-05,0.9054010843288015,7.031366309412097e-09,0.004891016254897987,0.3313491388638431,0.00136428019681553,0.9996124132178731,0.9995302946314769,0.9994526835228037,2.522956769629232e-13,2.3553539083858312e-07,0.00018915103015750947,3.106860743714601e-08,0.001258407092521394,0.9998668087140902,0.9973503191439222,0.9838362678586342,0.9992862461950451,0.03386251558489556,0.999849744692502,6.205187998779787e-12,7.681145490944546e-11,4.2642581906097245e-08,2.357607415541176e-07,2.2914179599606238e-07,8.074107358089316e-11,3.3533559636657044e-07,0.004425157968660286,0.00013257566663730082,1.9550689957049975e-08,4.913554473244465e-08,1.3016989834984743e-05,1.4981000900548426e-05,5.626126771840312e-07,5.488593681173035e-09,5.665417784182608e-09,0.9975056580140363,0.005729713416503786,0.00683259281067383,1.7567861214044602e-09,0.03429640106207118,8.091810528493067e-06,2.4508500616453507e-06,0.9996924329032196,0.9949518889701505,0.9969136482965488,2.8954466559686175e-06,3.761352797093398e-15,2.741209996453778e-10 -निम्ब,object,0.02855621477094329,0.999947407816676,2.8906838704386168e-05,1.760931793700869e-06,2.4737585489604446e-06,0.9995524837830049,4.827044242843629e-06,0.9999778796598727,0.9999359288527989,0.9999557988458394,0.04372652036035214,0.007876220600584006,0.025576984940459152,0.9999647044118454,1.6423336909502058e-06,6.102586262719265e-06,6.849678284202869e-05,9.875365537629107e-05,0.0008669533641749417,0.7552431558138988,0.0002099193702490103,7.31014445037708e-05,0.9985002593242667,3.330828408255324e-06,0.9998629389742392,6.736930806342853e-06,0.03901582959858121,0.9999453000453029,1.627372388673985e-05,0.996299706497816,0.9999410910526668,1.3290782274472589e-05,0.9987526903306492,0.997429612464173,1.0868078989345658e-05,1.0526123268136543e-06,0.7753582714635157,0.0458315017290858,0.9997318552921594,0.9997968399176121,3.459640220749031e-06,0.992986786062539,0.9997361299509127,0.9895229588678841,4.006231791048768e-06,0.0004477608843364176,1.704635684874775e-05,4.4953344589696866e-05,6.6342011687165525e-06,0.9972680981858986,0.9994874816357836,1.229161790151164e-06,0.9999795852302493,0.9997465598441921,3.0990106803096565e-05,0.9972400180565957,0.9848495345232565,0.9539344513260131,0.018862879118836155,0.037054550466961246,0.06934082795806579,0.001419165188626767,1.6328223765741604e-06,0.9959829451031449,0.995531506583865,2.7341107792300843e-05,1.0136849746197876e-05,0.999961784094795,0.9999822029001912,0.999967456363271,0.999618402656844,2.7573241216555544e-06,7.585341275527642e-06,0.9999335103207427,0.9999873596934189,0.9985008213715968,8.130269567720314e-06,3.691038537336114e-05,9.731597119913538e-05,0.8140373176196821,0.05676963086376621,0.9489059158189589,0.8173984590647861,0.8544732048801686,0.9999687177187025,0.6155941861273556,1.8420850623947246e-05,0.02402964602444602,0.1207021780054714,0.05425674888305085,0.999979268468058,6.226299527195225e-05,0.981123193377654,0.9360129511883413,0.8623313827020641,0.9232583768006046,9.500234413109274e-06,0.901172916240696,0.9456519313461149,0.7964394798413043,0.6300940677919167,1.2863985880577779e-06,0.9955402253246072,2.0045766714483156e-07,0.32895528218940284,0.9998485274652786,1.1004464969076803e-05,5.958993185998857e-06,9.697070967092847e-05,0.9983561159223471,5.188441003064778e-05,4.7236310066108e-07,8.351826017747456e-07,0.0003018729147586354,0.0010351501731012997,0.00036836509382592647,0.9983682437444615,0.011607992323700772,0.0011314545397211686,0.00019630151794370248,1.6235965078247297e-05,0.00197014234009758,0.9977828115941877,1.4148481651444063e-06,0.00032251914057264023,0.9951496556690954,0.0020737438774944337,0.9989519391255747,0.9901037009986374,0.984833404404427,0.9920060224029498,0.9948171326294477,0.9998790956710651,0.9999713596315799,0.9973548344165362,0.00045428761246386613,0.0005927988556480259,7.569612638233698e-05,0.997112286759383,0.9972112054166214,3.198704153130101e-05,3.936350318576961e-06,0.9999320508214534,1.1583480084006177e-05,0.8896084750926693,0.8526814618354158,0.9861937162336147,9.485204341763003e-05,3.3429893136729465e-05,9.267341881693004e-06,5.364172397843384e-06,0.9711283150429056,8.897259234574643e-06,0.08341017043524897,4.0278146460486015e-05,0.026555787345201698,0.01040233650264178,0.9999785608466788,0.9999383025553079,0.0006983961863529361,0.9999924250449892,0.00038482601087208194,1.3903404184124127e-07,0.9999871813659671,0.9999843415636248,0.9999778497065528,0.9999099596024187,0.017738031413188856,0.02630509391706669,9.623709277981841e-07,0.9400305602657603,0.9994515547564491,0.9929431827946124,1.4365304736441057e-05,0.9743377677768679,4.343858395022265e-06,0.00011291611302450223,3.1299489225845693e-06,0.9999961945679373,0.9999900094973729,0.9999764086860825,8.354088923606822e-07,3.634314399206768e-05,0.998640155199887,0.9997356918768576,1.1054166204100742e-05,4.26544606197005e-06,0.9999832751314502,0.017483239701525585,0.015117176316481074,0.02008837869109883,0.981656131463728,0.04020241753389807,0.32653610891843543,0.994604401861726,7.2638284853172305e-06,0.997787212456269,0.0013927044271776008,0.9996638099505774,0.9999286832890254,1.1096892786034898e-06,0.9861375664402092,0.9999832110701644,0.052912858589149604,0.007620755145933502,0.9992458234828132,1.9260721974943912e-05,6.797067049681103e-07,8.463635470664571e-06,0.08301402658770793,0.9672432328682915,0.04465718085785645,0.9999378348660453,0.03566701084950652,0.9999952999890446,0.000982849711635155,0.0003728355289315121,7.656940577502247e-07,5.701784419926207e-05,1.4662800487717686e-05,7.71991921709169e-06,5.570020344740154e-06,0.9996454288463996,0.9952950008760765,0.0004318812298519245,4.506003148670292e-05,0.999944469828789,0.0014164681047027707,1.3251238613399942e-05,6.758103766314433e-06,2.8053697382088835e-05,0.7632216698489249,8.165175326092786e-06,0.9996136104679972,1.9803298657214326e-05,0.0034358488986882007,0.0009016386624414237,0.9958397467579131,0.9903568866069322,0.9795309025201135,0.028560933398734008,5.228208185559713e-05,0.0002079863802223512,0.005337399130078614 -नींब,rgb,0.010550226418150377,0.9999963341821164,1.1597255329412535e-05,1.2047899774784174e-12,7.569290414068072e-07,0.9999999526255188,1.2122180700077185e-05,0.9999996992839829,0.9999995958316398,0.9999986271290572,0.0041891353040600324,0.00024070462072646372,0.00040345229504653354,0.9999930741267287,1.3254745834706706e-12,1.783861037853559e-05,0.0003339643430644262,0.0003691090558943613,0.0004466648692976264,0.9741884395173104,0.002899068471634818,4.8467974582563525e-05,0.9999999387393148,1.3024329713927892e-06,0.9999998488386788,4.652932357095924e-07,0.021100324259628128,0.9999997885839961,4.067956991144726e-05,0.9985265874252248,0.9999999516320054,7.17382694379087e-06,0.999999920624962,0.9998131750064017,4.5641803776304074e-09,1.5117317068294071e-05,0.9064010996632968,0.0004532821526241411,0.9999995692804698,0.9999996478459329,6.459990687208689e-12,0.9946692503529554,0.9999999397322684,0.9950232971624419,6.6427359343890355e-06,0.00012431720262034217,1.0392676098224454e-05,1.162583433409899e-05,1.5552842343834017e-05,0.9997579173523943,0.9999999498779878,5.109610731844278e-12,0.999999357275919,0.9999998241474161,1.097888936822016e-05,0.9999997862276229,0.9928382940032981,0.982373511862336,0.0003031416369600024,0.0006941519758352413,0.0038774195552414782,0.003269511449725049,3.6436894668169486e-05,0.9862084191095903,0.9960501952866381,1.0052223086572857e-05,7.905661221953145e-07,0.9999990766808725,0.9999996219832835,0.9999996615941923,0.9999998717974781,2.63346104018909e-12,8.326447610118112e-12,0.9999987086237317,0.999999607622225,0.995735799813343,4.168650525101678e-07,5.053605232154403e-06,2.9252355394284653e-05,0.9673303114063159,0.020235196566070004,0.9909732836768858,0.56569850704904,0.9090411035959454,0.9999996817476131,0.30425450255976877,3.229122030006345e-05,0.00022386545765748603,0.034495353647298596,0.024351095158524017,0.9999996491970358,0.0001170623469212926,0.9972709916266221,0.9672102096722954,0.9499621904194182,0.9193993825299767,3.0182162538055484e-05,0.9058648586074073,0.9922967415598508,0.9248525148536876,0.8292963599984982,4.9412562067058675e-06,0.9999995925250182,2.5589602406854313e-12,0.7497092855310387,0.9999999543019719,4.048426732827536e-06,1.706442662437962e-06,4.7365257929674216e-07,0.9999995269662182,2.5711741757989503e-06,3.264461666979508e-12,1.2768993861441173e-12,0.00041426668881436833,0.0016077470184524766,0.0035694832581769217,0.9999815583603402,0.0479113451604955,0.00019421845759697403,7.093320671379696e-06,5.829139148382816e-06,0.01032758930746751,0.9999137243332925,5.388662012872928e-12,0.0008766720163039639,0.999983861666201,0.008868505932015375,0.9999867411225029,0.9977594762229725,0.9969192491855089,0.9848544040987455,0.9995106661129889,0.999999957441603,0.9999988068866947,0.9999748604083224,0.0014379327046782735,0.0006173781887952699,0.0005915144686139185,0.9994325135521296,0.9974265504763191,4.182144230983463e-09,0.00013566989657228928,0.9999998634802978,1.092386282586514e-11,0.9920003526261751,0.9169359318047139,0.9989831829440212,2.0973256252733284e-05,5.097180747994736e-07,3.807991996413752e-06,5.8494374582269375e-12,0.9775857591573843,2.0953080758823227e-05,0.004653244311194748,1.1342690095250368e-05,0.000664738026420481,0.0003873062127677562,0.9999998717077216,0.999998927433831,0.0008492843040215954,0.9999999718567231,0.0006935083059295373,9.72211999238226e-07,0.9999998348710781,0.9999999193853969,0.9999999623011643,0.9999998986639025,0.0005709903651248033,0.000774306972527521,2.7315958360497345e-12,0.9719785436068594,0.9999999495203774,0.9948795186051129,2.6010529671755356e-05,0.9766521513436944,1.2470594650593678e-05,0.0001610606699414033,3.605440075123133e-12,0.9999999875780817,0.99999988298272,0.99999984759633,1.2876872851512509e-05,5.84118988720957e-09,0.9999999296753671,0.9999999539908998,1.801482869095545e-05,3.666187492226756e-11,0.999997948830464,0.0007580347398635271,0.0003741772545140031,0.004493480109809519,0.9954311531268918,0.009772705764530126,0.861075837775898,0.9978408830932094,2.1080250892635624e-05,0.9999773977471518,0.0013392053428828246,0.9999999324720065,0.9999997939312129,7.375537189087691e-12,0.9741184187054956,0.9999998640534569,0.03169409982800052,0.03054810856463075,0.9999997145413819,1.0270774509656078e-05,4.184194474871827e-12,1.1849800881855198e-12,0.011602276088837335,0.9900668908524637,0.0008284136805968762,0.9999998191238836,0.0004832400541167445,0.9999999713628166,0.003593581050047203,0.0003489384167370554,7.362386149037632e-05,3.355877494805155e-05,3.419576360895401e-06,5.663841554058644e-06,1.0147190650079956e-11,0.999999861430149,0.9786631933063761,0.00041364207461462967,0.00036337338445936637,0.999996346257153,0.0008244919855915042,7.879524164575731e-05,5.8781456087593624e-06,1.590168936785276e-09,0.7365032058121583,7.86457574284287e-12,0.9999996393966669,7.759320810982529e-06,0.0008382878119610781,0.00017114073689065523,0.9955028474465455,0.9989210963864352,0.9893204673042352,0.0004681095238661868,6.327112049829531e-09,0.013855143927909007,0.012473052501644186 -नींब,shape,0.9971820010616422,2.878248000939358e-07,2.286918680293711e-06,0.0006613580798317472,4.3979739142462876e-13,4.864233399578565e-05,4.475812068939661e-07,0.9996730430943366,0.9995540882117924,0.9997985142365023,9.244012154547595e-06,3.869217421672793e-06,1.3861069987723784e-05,0.0022375231154846188,1.4638616202156015e-08,1.9380247504993963e-12,2.21521551822062e-07,2.6288499318954803e-10,3.789634467516728e-12,2.1007649267959868e-08,2.5866368351705726e-09,0.0010369411505432842,5.593117952294007e-09,2.4756017621743824e-06,0.9990369456588135,3.820530437953978e-06,0.9996819759514103,0.9999119565336085,6.31006829758463e-05,8.184236706845657e-07,0.17076673412593754,2.0955240533130166e-09,2.226571256522055e-06,0.9999834495845167,0.00010954953546424704,0.00013391330846821561,0.8483001539657167,0.9995165916878409,0.004948103221630381,3.916735133305496e-06,0.024033551544491816,0.10073097318465238,0.01392140126784216,0.000733294482549552,0.00014768680867924798,4.293348813174137e-09,1.7823704068073161e-10,1.8948287220352447e-09,1.5678803570261504e-05,0.9996971585773491,2.400244154634832e-05,0.00013904259804654106,0.9999925070100455,0.0749201225195904,0.00011689682011964667,0.011902872783816219,0.0016662967153875763,6.833409991824111e-12,0.0001468950232095194,0.00021303703392305787,0.0007677727817311442,1.015967655988963e-15,1.9483630476803087e-08,2.4583123888464366e-05,0.0003161418493803241,0.01942667089728825,0.0010429838291754153,0.9999743082220482,0.9999926427563998,0.9993357458055361,0.0033817555697490177,0.00027613418954199336,0.00020627199358227313,0.9998799012578508,1.2186790588001301e-06,0.00567188557236167,0.00024921472259535187,0.9950744988101216,0.9642853655821889,3.0216940359453008e-09,0.9935263907582942,0.0032086292946809595,0.9961675435253532,5.013812560932904e-10,0.9997673887279283,0.995191031091326,8.593869379355059e-07,0.9995241958380718,0.9649762908557531,0.9971403000677382,0.9999831817511612,0.00036197192670026036,0.0019256974287008275,0.003933817749226518,0.0003223330624183069,1.2058229123035358e-06,0.00018052401786342485,0.0012289338053455803,8.093074164333434e-06,5.741744093773293e-12,2.458800695800438e-12,3.042198975766637e-06,7.360511656481628e-06,2.155984309588474e-05,6.647902771684672e-08,1.6272512336630691e-06,2.836674802052013e-06,7.975114004628337e-05,0.0015420925930539416,0.002587611394167652,0.006477363321423583,2.7521807286519116e-07,1.4133266792505879e-07,6.158505812357496e-11,4.767121370612776e-11,5.686121989017101e-10,0.9997860682626166,2.9723229113065854e-09,2.6471460473555643e-09,2.927120125933116e-05,2.1492762653283165e-12,1.7639914216276238e-11,0.9999248417884248,0.020843046726834437,5.986595826949783e-12,1.6123499504820438e-14,2.4709767769355525e-10,0.9998525509362949,0.9999394569842024,0.999982410450107,0.998871620304399,0.999538507215705,0.02387379562475715,0.9999922508551886,0.9997644616725704,8.587378722048836e-10,0.00011229788652778017,9.729432714181262e-11,0.9999031363949511,8.815650819372311e-05,2.9593697214817462e-05,0.00015204204066655472,0.4609357398511117,0.013808570853492717,5.677346476420324e-13,0.002931669616644162,9.190997264711663e-07,0.795787492521597,0.002188723902888437,0.00022396768774936973,0.017738846967182285,0.45666032874299345,1.504280397323551e-06,0.000905132098076395,0.0003453008478615054,1.399755362200904e-07,3.869217421672793e-06,0.9983945365830668,0.9999635893579618,1.9835546543977186e-13,0.9999718713119289,1.7339116559624715e-06,0.00014266361440502128,0.9999482132717837,0.9996822195091833,0.9998024432745982,0.9972596267452114,2.2061887753937287e-09,0.01963263537203612,0.00036051783171690556,0.017064304814083178,2.2856959473557448e-05,0.9962335593143755,3.9623990421719264e-05,0.7948534648193105,1.7729776348155673e-08,0.0004885060784736323,7.82404781141311e-05,0.9996901414660799,0.9999345623359462,0.9998328241151488,7.356306822796703e-05,3.4803358265737874e-06,1.3638988428521277e-09,2.547405900664459e-07,2.1245175562946546e-05,0.0014194123503962507,0.0001206358464118741,3.8096037528274593e-06,0.00012130595068175957,2.0911570454415788e-05,0.9998268287342489,0.99981555586417,0.0003512261648151177,0.9981056174347938,2.8455496651711313e-06,0.999673262218785,1.3095265496431764e-08,0.00018012447983798113,0.0069564155248718835,2.475213094294202e-05,0.9966288395270062,0.9995083618073978,0.9999928157637323,7.923008131145012e-10,1.4899118928309655e-07,0.00010341950381406457,5.409965319568342e-09,0.000626457052005322,0.9992421769732523,0.999950956869462,0.9993735832529893,0.9997943300888581,0.00021773502835810941,0.9998996834788337,8.459699701555575e-13,2.5023422772897147e-09,4.2691742929054093e-10,1.1188581510984458e-09,2.370829941122424e-08,1.0805469907885177e-13,4.087502717210242e-07,0.004447719179618889,8.703102685292504e-05,1.4075829723935267e-08,6.761481033912039e-10,4.199965882306207e-05,2.671134941995077e-07,1.6098371402333775e-07,2.691862930782415e-13,5.470443961082811e-08,0.9944440427248968,0.002189195749613849,0.0028509229326868406,2.149276265328301e-12,0.0006928635752982523,8.325916198866892e-07,3.2175869837010915e-06,0.9994231119478125,0.9973168652137285,0.9992867193040045,5.884056199652185e-06,2.421079299944921e-13,1.708479971627842e-08 -नींब,object,0.014904199155459806,0.9993195667244031,1.4025877660029837e-05,3.955403087052097e-06,2.1114822019938225e-07,0.9999082094123302,1.3374616335325864e-05,0.9999332043083654,0.9999106851776903,0.999955457082692,0.0002105450459881178,1.3867794555961445e-05,4.8230838738553956e-05,0.9996106550703324,1.0398341136162973e-08,1.456391961041229e-06,0.0005127476767033436,0.00035679294731130414,2.5454497792216367e-05,0.262198247480709,0.001396568921476336,0.0004239314789501026,0.9989733454235922,7.210093066121724e-06,0.999964864392194,3.072170654671683e-05,0.23298216838105273,0.9999870567799782,2.735513547387598e-05,0.9925708155210945,0.9999609725848161,2.709143215681636e-06,0.9998185485225766,0.999841510154334,1.8921249618140293e-05,2.7768411708782955e-06,0.9815743385384833,0.06239007902477791,0.9998658905729737,0.9983644639368476,5.531939630779744e-06,0.9980823709075825,0.9999107824649558,0.9918094498442841,1.1951507906172e-05,6.262284557528916e-05,2.3106268436824964e-06,2.494217854748877e-06,2.2663034046236333e-05,0.9998933094331452,0.9997157607637751,1.007658502955749e-06,0.9999952136441054,0.9999778870213485,1.8344106298985506e-05,0.9994248155821203,0.31765860251226835,0.09046728087249875,5.916796167920275e-05,0.0006194904541315569,0.002163483679298355,5.982971741543812e-05,1.9497326950322765e-06,0.9020584436470316,0.9916038228560634,0.0002669292777333548,7.124416802959326e-05,0.9999857945139147,0.9999957283412577,0.9999270351175034,0.9999430040088,2.1374612920501697e-07,1.8885637050939886e-07,0.9999855825810088,0.9998331706920928,0.9716442208831535,2.8331239153444458e-05,0.0002729961904599862,0.0006815653777629205,0.6810503765149287,0.12739329137264344,0.8446454243794616,0.8809600059237868,0.05261295827129398,0.9999910099284633,0.7259578440304485,1.4306290543225173e-05,0.04292393442732643,0.033002112532269395,0.06638977704056984,0.9999962026948952,2.6638831223700647e-05,0.586602679473307,0.5644591483299786,0.14523729460413848,0.018807476436045138,2.76581114486048e-05,0.22632179931491953,0.9556169532252705,0.0654926152819546,0.1946230867427721,9.04560549706667e-06,0.9997841576131671,3.8942148406895456e-07,0.5362405751773953,0.9998494598865021,4.2353275491756905e-06,1.891606189430786e-05,0.00019174299365930567,0.99981724545691,0.00024187179699731607,1.654543170992511e-07,7.756757448148491e-08,0.0029006470999541783,0.010078724936145596,0.002648145599301147,0.9999398876494366,0.03247882141211357,0.0003198961770063994,1.996984885963712e-05,6.28468849327611e-07,0.013273186125849021,0.9999301121916884,1.658592372522457e-06,0.003981609343912376,0.8561151487010474,0.0328877673822129,0.9999415350736128,0.9996889089770084,0.9993005063461765,0.9844529371428627,0.9996611030839734,0.999963110133024,0.9999935580804555,0.9999225644003493,0.0004078594606166385,0.0014499632870684236,0.000613115470986426,0.9998389573626028,0.9913578023378284,2.546520664169414e-05,1.7544294738257113e-05,0.9999794487523391,6.342245105187939e-06,0.048523019389880476,0.9494933925115057,0.3853662932858164,0.0009994017665154,0.00011770458537405742,0.00012300729510381005,2.5941831792269787e-06,0.6866017234701214,7.213202525092085e-06,0.0018484010791000552,0.0001646468686470907,0.00019547561369755853,1.8573233453953434e-05,0.9999900773152065,0.999985274869745,0.00018834515428026066,0.9999994195467047,0.0006068058267479705,7.345172023510975e-07,0.9999984048114638,0.999995662406958,0.9999942657275379,0.9999441830552454,0.0001474419591035542,0.03739433209142581,1.3273279518760663e-06,0.3680277722376793,0.9998688223246547,0.9819498375367386,1.266250450046163e-05,0.9498116229768885,1.3662102837317633e-05,3.207476647775679e-05,3.10532577943687e-07,0.9999986003189574,0.9999975976312006,0.9999956060188534,4.746805566922885e-06,3.0667891109728734e-05,0.9992482281211915,0.9997088183479877,8.248881687042432e-05,2.630960370715099e-06,0.999713305665351,0.0006484829371426745,3.4575929753499695e-05,0.009664423250867835,0.996627437767642,0.11587120228792216,0.5217701657775641,0.98905113643805,1.4214469907464988e-05,0.9999339557357364,0.005432420507936774,0.9998813772336146,0.9997315166803818,1.0247890046721448e-06,0.9864242718282612,0.999992689561105,0.26096010112634405,0.09484000333933369,0.9997417577128732,3.6368634077408866e-05,1.735125330001517e-07,5.6090422362269947e-08,0.17412259800891353,0.9980917191519412,0.06451550878813515,0.9999831446032048,0.0002835576686339463,0.9999984400524335,0.002450694678327014,0.004749224574386877,2.5047722257532414e-07,8.253097879942277e-06,2.20775442834501e-06,7.05523382106136e-07,1.2673598479841847e-07,0.99994663695199,0.9481453502583397,0.00011948394582601333,0.00033418482306719064,0.9998761914242581,0.00013993018736521942,1.16561478362073e-05,1.326284178130583e-07,1.315028876963413e-05,0.9257222018610343,2.728527835748041e-07,0.9999625193269496,7.682423964637797e-07,0.00048789168965253783,7.421489721571785e-05,0.9872380259803741,0.9985282920583145,0.9907778179462429,0.043196213858100435,8.706977868204582e-06,0.002137113087737242,0.07361697016216076 -नील,rgb,4.712174811945612e-08,0.07799370621524483,0.10745292988433786,0.9999881871625416,0.3379407337187002,1.1274812981850516e-06,4.0879244551501543e-07,1.1038827940239441e-07,1.6472731232933007e-07,1.5745910018431895e-07,0.009180169576572646,0.03855877551655339,0.02820983671512646,0.11833111947157214,0.9999958579647117,5.376670375756672e-08,0.001130749910308472,0.0014358305558960236,0.0009853055095898047,8.095007314539344e-05,0.0001754525745201084,6.258387955753394e-05,9.504654947239562e-07,0.0001304485353170745,4.2505360088307215e-05,0.007515466745573407,2.180613924973833e-08,3.996012382993182e-05,5.0566937091825983e-08,0.29036749098713827,1.1417418544889477e-06,0.20209181176631835,1.1700830878511487e-06,1.9899243312271723e-07,0.9999671864610468,6.116770991772608e-08,0.00014895670956468953,7.51108592687465e-05,7.16319116416905e-06,1.96016423110759e-06,0.9999774419522373,0.16863756957279302,1.3094054677606004e-06,0.5153655116912068,2.1379488892391242e-07,0.09793309624689076,0.2035296009989215,0.1058838957192527,1.633368912746338e-07,2.830863190378921e-06,1.1021527330529556e-06,0.9999791700541406,1.4175723859741653e-07,1.2332912848715281e-06,1.1524942346171827e-07,1.929347139998593e-06,0.00535261648899646,0.006976303655213244,0.034922206380848586,0.02121590574857011,0.009024960397446736,0.00012186894921802846,3.373033461089046e-08,0.1712012560746368,0.31509690652867633,4.3165199371432725e-05,0.002147410231014675,1.2814792448187512e-07,1.1556178545489296e-07,1.5193899182047102e-07,1.2236297289669236e-06,0.999980349544549,0.9999717098738053,1.1633219107042997e-07,0.01230830449388063,0.13084696358059011,0.005053175570395311,7.080060608290985e-05,6.929924069990637e-05,0.008144036033988406,2.5994354597721953e-08,0.004847336260028341,5.526346268680359e-06,0.010005738614526947,1.2243545084248543e-07,7.704992442111884e-06,5.103645093122517e-08,9.605920277051727e-05,6.57017450398461e-08,2.497792034269724e-08,1.0481626656768204e-07,1.8729736775928182e-08,0.004224959547865479,0.009701698861876027,0.009190019550359215,0.010108672297832891,6.32355956115201e-08,0.010077840849234054,0.0048883564406814505,0.008871719267977656,0.010325525787968949,8.266682821192797e-07,1.9633014609192913e-06,0.9999854692095972,0.012988187866745745,1.1682464726874497e-06,3.1359918934612855e-07,0.00013128039477123778,0.017689360748395437,1.8426484089384875e-06,0.0035062715234831336,0.9999817622420075,0.9999917830948352,0.04649103653678284,0.016194190466332407,0.011425822575240427,2.0404448797803249e-07,0.0062346878874124856,0.040423375467398756,0.046626821820420286,0.20573673729696085,0.011648934100845167,2.3084303234962416e-06,0.9999709473046859,0.03717230054745441,4.823410568842068e-05,0.012929220624356594,2.2477218654401306e-07,8.14149433961205e-06,1.0570725842466734e-06,0.00020744300405818779,3.183584865907684e-07,1.085448667970042e-06,1.1835345494882851e-07,2.1146525089661307e-07,0.0005137004668732861,0.000777037074198153,0.0009273585566724579,4.695790510921993e-06,0.34639159726286817,0.9999620720796492,2.6484023885715438e-08,1.1818420529445596e-06,0.9999580932219871,5.050674581182277e-05,0.00015891474539687537,0.00014333155550818265,6.822307533758278e-05,0.0030181481968686082,6.420820877317071e-05,0.9999685067798849,8.36310900721005e-06,6.101383965631594e-08,0.008771223165953081,1.1281548712783228e-07,0.022684721991352283,0.03298547101478307,9.8882991171767e-05,0.00027556950426623617,0.0005197632198634174,6.405596772668472e-05,0.0005960807541243525,1.6859477984602977e-07,6.598967206572953e-05,3.9346643431712843e-05,2.1194718512740886e-05,3.081328911567074e-05,0.0266263085876196,0.020238325523912543,0.9999844832060182,1.0859699437206765e-05,1.1066422941160721e-06,3.6817347225825374e-06,4.225105971309473e-08,1.2671099833737668e-05,3.9683548673888106e-07,1.6379218522953123e-08,0.9999928231172149,3.867726426433953e-05,8.432333336590987e-05,7.167450812200766e-05,5.6042752106132e-08,0.9999642138285817,1.0052963951062953e-06,1.1733424738045007e-06,1.1954165437218844e-07,0.9998737929663084,0.04567712271703433,0.020377558060635178,0.03193582559330788,0.00848985978709812,3.8316816065613126e-07,4.408044108672451e-08,0.00020338832331634303,1.4993081043669543e-06,1.4178504634529595e-07,2.5456913200418017e-07,0.025440293043761195,1.156895147985731e-06,1.1642936712486618e-06,0.9999666606811984,7.636470206639595e-06,2.403436743118777e-05,2.0816542424765195e-08,0.0074181473737727705,1.4960550360830796e-06,1.2040142723435314e-07,0.999977024296985,0.9999953123312569,3.248055170673154e-08,1.0393713446035054e-06,5.133947260975427e-05,4.633010904789142e-05,0.027305937056408654,1.392712975753785e-05,0.017161379600732406,0.04215421035614522,2.2800028089223792e-08,0.10353186016995845,0.25875631664601867,0.27028162756574714,0.9999608325864722,1.1886505352253059e-06,0.16758657051282352,0.0014764587432140762,0.001693217097719749,0.0776559884168517,0.0010384585740266666,2.2150181239048587e-08,0.20460911048042105,0.9999837557100922,1.4312837267511622e-06,0.9999690040721209,1.7601871731754765e-06,0.2051981416430134,0.03767406933389688,0.055304514222362766,0.39750165852996167,9.716793300948386e-07,4.819999489325318e-06,4.047227896939583e-05,0.9999537726073472,0.004901543803470193,0.006588107916193975 -नील,shape,1.6087103900026147e-06,0.9987641636270966,0.9999999987960724,0.9988981721907183,0.9999999999671647,0.9999998637345248,0.9999995913678381,1.9764099372535207e-05,0.0007288845800610469,2.923926784766651e-05,0.9998776906795749,0.049574198120593806,0.9716728230953144,0.8849978638612718,0.9994703800923179,0.9999879753982499,0.9999999565976859,0.999999892982251,0.00010386971192605091,0.0001841412863554456,0.9999990857326367,0.9999990591719049,0.9999999994951305,0.9999998770723175,0.9999998425240849,0.9999992927449314,5.321953153789687e-05,0.9996852588395906,0.9998615838039921,0.999971645402262,0.9970275102785879,0.9999999999960729,0.9999996642984613,7.444672566246618e-05,0.9999999819855655,0.999998070539065,0.0031491568411222046,1.5768108924528976e-07,0.0005762146135636578,0.5945539177231858,0.999697992061891,0.9982884844024098,0.9999997556134814,0.9999999386698815,0.9999998456908841,0.9999999919557142,0.9999999999323383,0.9999999976203537,0.9999973223196204,0.00016614466808459306,0.9999999994182442,0.9999525069761889,1.0689019497637514e-06,0.9916556361799488,0.439713300452888,0.9999922234885953,0.9678155442319349,0.05435748025481484,0.0006939438754638015,0.993416326668274,0.8851338338687582,0.9985120464649673,0.9999999011365057,0.9927490703513412,0.9999893753054251,0.9999760544680887,0.9999928421758328,3.821799754141231e-06,6.197078220227424e-05,1.7326744348845103e-05,0.9992383245444374,0.9994182189016482,0.9999389630220364,5.308486800629156e-05,0.9978614087524187,0.9996333028914386,0.9999996067763924,0.9997030456438821,0.9998894920626062,0.9920418935826189,1.6352698665589884e-06,0.9999840241488985,7.762594221053645e-06,0.023087552357729444,0.00013461367888814064,0.00010737689106636627,0.9999970073123046,1.6032711841242067e-07,1.005432351703354e-07,2.22856300519787e-05,4.324420449368275e-05,0.5061860310841546,0.9997213511392355,0.999988411050294,0.999992263589807,0.2687938543649979,0.9999998164699536,0.9999973779690768,0.9999989171356487,0.9901155396435579,0.97911332339827,0.9999999958824171,0.9999978577626318,0.9999999428877843,0.9999999987995636,0.9999902568088188,0.9998418916413967,0.9999994610312819,0.9659319291140005,0.9997190836067433,0.9999650848061469,0.9998447152921491,0.9999133777679883,0.9999999529481192,0.9979363507237691,0.9999999987283925,0.0005848175965458174,0.9999986357041865,0.9891438609430314,0.9999973641740854,0.9999999995435453,0.9999995316503973,0.0001391687719027259,0.9999645384011784,0.999999749468322,0.0005930604641251465,0.999950915443789,8.172835332418389e-05,6.983991606630282e-05,1.1869880406432663e-05,6.0273001967494024e-09,9.53899887727706e-06,0.9999804861301818,5.3205781721310025e-06,0.0004078994917595933,0.9999995679438928,0.9978041316896218,0.9999764935491515,4.269183161885886e-05,0.9999350240141667,0.9999495293306057,0.9999977222874091,0.9996986282397969,0.999606508447752,0.0003634926157139262,0.30637457719245986,0.0004217672842140977,0.9987048666930056,0.9999571609696071,0.9999635994424211,0.9998616708283476,0.004561442845122014,0.999973436031128,0.9998948949187382,0.36741207374667856,0.9970746795426156,0.04957419812059441,0.9974262076877337,0.9990258642810345,0.9999636822157685,0.9706391600715928,0.9999992281324459,0.9999992545570678,0.7659494885028768,0.9995180120841444,0.9999400442489147,0.9999990843707519,0.015542424792653109,0.6450647370628482,0.9997630149011489,0.9301430021490077,0.9999999512317331,2.217449824535578e-05,0.9999985151739315,0.00025792732245671375,0.9999996053710442,0.11118299304692356,0.9997276178429569,0.9997795591024161,0.9054957575812592,0.9898319646766036,0.9999999959291908,0.9998072451247396,0.9999999609145629,0.9999989736026685,0.9997155583684344,0.9999796893217114,0.9889947700426414,0.9996091343412112,0.9702719706975124,0.9999792718204199,5.52209167679497e-05,3.4772564829428866e-05,0.9999826189864621,9.803951342567597e-05,0.9999989436185421,0.0006046102550609848,0.9999568156981361,0.9999998818986628,0.9178079989802858,0.9999580648854504,6.589052961727352e-06,0.9951919169086545,6.233011962760615e-07,0.9968009434768708,0.9999695300728274,0.9963891270532728,0.9999414946843144,0.9993314207633205,3.48244219233739e-07,4.703006003892144e-05,1.4673490299893326e-07,0.9999513511413499,0.3189930364703725,0.5292816529838282,0.9996885246869279,0.9999993125359429,0.9999999999993985,0.9999999999944489,0.9999999997938853,0.999999999997278,0.9999480541294956,0.999183876750505,0.41878961820664345,0.9997032860178003,0.9999999513001746,0.6403749364263428,0.06290890117551685,0.9999998016999807,0.9999999999999933,0.9997741795238682,0.0003182672448260645,0.9996809898120925,0.9686034352997541,0.9999999995435453,0.9999995933960456,0.9999995185637769,0.9999574223999524,9.68838867045978e-05,0.0007771779996434885,6.234145537488098e-07,0.9999223958775084,0.9999999999997768,0.9986475456149122 -नील,object,1.819366855855548e-07,0.1281447298247229,0.5853377042238352,0.9999853611903602,0.769698658908139,4.8035022223991016e-05,1.6925095755982084e-05,2.2505779556111388e-07,1.1416768396738411e-06,3.347348683333464e-07,0.017982231325358908,0.030044923104028842,0.02470455440348486,0.13203568834709029,0.99998525554083,5.683246731163898e-07,0.023909824964506464,0.02083205605871354,0.0010341733334199433,6.533026537882905e-05,0.0039923804206005945,0.0016506931178262958,1.9934626247640922e-05,0.0034836916889692503,0.0009358841027139912,0.11501923222406184,1.1212778631136686e-07,0.0005799457961233552,1.6557305664956521e-06,0.4649352288018732,8.936563849172648e-06,0.7954865689821933,7.973387964040131e-05,1.2855524904282728e-06,0.999995588382451,5.340399881832782e-06,0.0004974443144939108,4.979474554625963e-05,1.7525945104811583e-05,9.089952357411027e-06,0.9999887258004378,0.577255954789952,6.943423235760428e-05,0.9259340570899711,2.3336820713606462e-05,0.4534997527799613,0.7469712808243946,0.37062755422652144,5.819318159735113e-06,1.5233746368318003e-05,3.989229030020168e-05,0.9999847145372674,4.0030876117950663e-07,2.6284797975291057e-05,1.1151263638666699e-06,0.0001026600821541931,0.007388956040127253,0.004254455592557082,0.016749254303265054,0.02468933314259365,0.012029623635385926,0.00034543610162446017,1.402505716612656e-06,0.21682441993317464,0.4339982016641194,0.001105132568710625,0.03420529530581423,3.3039612283420147e-07,4.804333231788453e-07,3.605066897207e-07,2.556573516685531e-05,0.9999575270214602,0.9999688141145555,4.7086868868120474e-07,0.022689516588929665,0.22287193526482213,0.07886100045114022,0.001407327516675316,0.0015004269971056162,0.017330304827911935,7.796452518369238e-08,0.028809928946225773,7.607945925451207e-06,0.007031429963972264,6.144343000452664e-07,1.2707140957535402e-05,6.477229985161352e-07,7.47484374057639e-05,8.174861787744454e-08,6.634300067920523e-08,4.7172289078013745e-07,2.1026099546690694e-07,0.011994669784481764,0.036235630072687264,0.031538141278123134,0.007403093546318344,7.360500921788956e-06,0.033375727612203476,0.04706111290404366,0.010305591986554173,0.01475065414415735,7.434120187450116e-05,9.31564511114354e-05,0.9999966820760907,0.19135664672082806,1.1626829047611186e-05,5.291189707652249e-06,0.003542667953626207,0.10853708366258706,5.401826240840557e-05,0.037169373702487074,0.9999868795129301,0.9999835033830525,0.47531059608263565,0.11225275478330443,0.2561169073454595,2.2534325159384577e-06,0.09156031971908998,0.14662927245805255,0.23145896247065856,0.5329065556184681,0.14886367028328482,1.1408586099501426e-05,0.9999885039041853,0.3639924198338047,8.468313977138648e-05,0.1681332700382617,1.6595841711632379e-06,3.62368301659206e-05,6.136846245317099e-06,6.455362958477863e-05,1.4965973683647358e-06,1.9996000290253793e-05,4.243699442090236e-07,2.9240642587772635e-06,0.00736936238200293,0.012493611011267109,0.006277853823071545,1.5838040521871808e-05,0.40174490742324015,0.9999799399414108,1.2810323671804937e-06,1.8665829270147812e-05,0.9999671506521038,5.140880855705674e-05,0.0007454314355525418,0.0001320811890756397,0.0011400457878960777,0.036416064290871436,0.001481185894740333,0.9999768950309037,1.339874880322724e-05,9.6525505310839e-07,0.016012185835751834,2.0696401584555265e-06,0.020963094349864705,0.02602300179339739,0.0009959506316384492,0.0030639619876814276,0.0014301476602767236,0.0007351050546480383,0.008066074569723329,1.9787774740653235e-05,0.0006527037546186396,0.0006196206685100112,0.0003508476897129688,0.0005056947732851656,0.01416966806823169,0.03439995841253256,0.9999899241170284,3.08539259639509e-05,4.50504391233657e-05,4.631143936240561e-06,6.881527124594199e-07,1.7489127228879445e-05,1.5264353605759997e-05,1.6028991097241913e-07,0.9999901767353339,0.000551939597281573,0.0007354489750513468,0.0008728292530061011,1.0267791359346891e-05,0.9999777556428171,1.8355570368492324e-05,1.5477945023339067e-05,3.536468199995335e-06,0.9999371519520142,0.04539213003229714,0.029263289150210002,0.0388743984682409,0.038783642055064495,1.251204558070575e-06,2.4572204152314475e-07,0.0023037325625913417,2.5964666248314277e-06,5.8811103510668e-06,3.533915422160106e-06,0.23926063683943716,2.954406366880287e-05,8.348804099008476e-06,0.9999800089092921,9.938898467614385e-06,0.00021397642247241193,7.652149524170213e-08,0.08755005104079559,2.2561746418193885e-05,3.342825257153093e-06,0.9999823039524943,0.9999786308012354,7.948510194525008e-08,5.879654926290606e-06,3.815187216758748e-05,0.0005762670504701009,0.021962829750668537,9.432711102834513e-05,0.10777077965406329,0.3709515357327333,2.0461524165412678e-06,0.6167459304824707,0.7756544323753543,0.7848695144370704,0.9999505390330076,2.5686259314389417e-05,0.1623118933523049,0.008418650150263877,0.03435916195441457,0.11243832075529588,0.0024321051064110713,1.1622193235796723e-06,0.772353337984751,0.9999740284213772,4.723550429187181e-06,0.9999628757912616,3.0395495447296612e-05,0.5312459976891206,0.2428209278498138,0.1643854822931494,0.44440893266411946,6.285074329592495e-06,1.6966791534342797e-05,3.180431102863121e-05,0.9999489270468462,0.21181243163036118,0.0588465695564903 -पत्तागोभ,rgb,4.2725631565415056e-10,0.30409358821899657,0.9999714995258793,1.0,0.9999991977021743,1.4094931938393088e-10,3.4994860175325236e-07,3.16225178143567e-12,8.137609892106575e-12,1.2512180694196427e-11,0.9736211246994512,0.9993585876971453,0.9986058451066336,0.5594620164345211,1.0,2.1081923651016543e-09,0.6637594381423999,0.7493874696566014,0.5779743850058139,0.00015446773350878188,0.02498872948207755,0.013085846161071522,1.140165126631332e-10,0.15149857230388705,2.154199735119923e-07,0.9985751912402214,5.510821312775301e-11,2.2641424561232318e-07,1.587247805890188e-09,0.9913348556915307,1.4580912729741075e-10,0.9999936030038791,1.9216525542504342e-10,1.4888181885817565e-10,0.9999999999999978,3.027995642116328e-09,0.0008455921729714571,0.009135132216226983,1.3256527099389474e-08,1.0274181103717821e-09,1.0,0.9857387826692989,2.103090124523558e-10,0.9989540341716786,8.262214450985993e-08,0.9999148295933378,0.9999927440386208,0.9999706278203746,3.634524574198213e-08,3.5505602948294074e-08,1.3846118809583032e-10,1.0,7.31060822406803e-12,3.0613881094826126e-10,1.6209783407132674e-08,7.939911457991655e-10,0.1490193029670722,0.295385194036385,0.9991576363457987,0.9971008512324269,0.9736068374655817,0.011945383965447658,5.536984730975271e-10,0.9911974199298988,0.9955655946519535,0.00999397618957205,0.9816266353927194,6.9341498423907246e-12,3.832656842363454e-12,6.393361818502801e-12,2.6105934217080015e-10,1.0,0.9999999999999998,6.545906466688276e-12,0.00612035023528696,0.9744411265663288,0.997075621684114,0.033108993757029,0.018750957419590604,0.42163579357096015,8.586080787088799e-11,0.1405160588338086,3.0734457805267725e-06,0.6285048258007362,4.006616873228406e-12,8.906703550531252e-06,1.6850629137537784e-09,0.01867755974000723,6.896067915910779e-10,7.443675195881204e-11,3.037708623969828e-12,9.652804753542543e-11,0.06946760138987172,0.4980673480924972,0.5232767411857474,0.6190668169908209,2.9682663520384892e-09,0.6353107853241307,0.13376571398984394,0.555432863094193,0.710332468136536,2.219239421515874e-06,1.1010202948396194e-09,1.0,0.8193982095101103,1.4845642133906422e-10,2.3126775109856708e-07,0.1429990997126947,0.9997167767200789,1.0421557620775516e-09,0.98930577420296,1.0,1.0,0.9994397695077645,0.9934312390929525,0.9832060345949448,6.248067594225026e-11,0.8717988168392513,0.9994591694491392,0.999881180833001,0.9999943170138917,0.9754067303814822,1.549537621863272e-08,0.9999999999999998,0.9988624587001342,2.4141428709997134e-06,0.980747910379141,6.66354104086539e-11,6.971075273594406e-07,1.3705003796668332e-08,0.0007115928707959741,5.740838624711799e-10,1.2462182155483475e-10,6.560568655130468e-12,7.624440240825257e-11,0.20644444759754127,0.4370884171548884,0.5245120669081671,1.359552855541169e-07,0.995631574685558,0.9999999999999973,2.4108903460349514e-10,2.511662476963031e-10,0.9999999999999998,3.887899693636957e-05,0.0009047795505969056,0.0001126587645451392,0.020129470374355432,0.9916513297737779,0.029599713238313383,0.9999999999999998,1.8578154898824e-06,2.8654706990002967e-09,0.9702300567268353,1.52746175969911e-08,0.9974772380390302,0.9989707882859953,9.050951251141313e-07,1.566926888858043e-05,0.24340150823410317,1.9723472047544517e-07,0.31008306071256275,6.199840047622602e-08,4.968223063230385e-07,1.381018339057425e-07,3.103116341712941e-08,9.908791633099745e-08,0.9982261682281701,0.996703382674956,1.0,3.390975086130246e-06,1.4001360064103913e-10,2.0462512737590526e-07,1.057452596779974e-09,4.256415455067447e-06,3.242161634548296e-07,6.415148115430925e-11,1.0,5.32015891323688e-08,6.513138690556635e-07,5.541561384693641e-07,2.46115588593215e-09,0.9999999999999973,1.3545372447889517e-10,1.501808690481331e-10,1.6303181478696576e-08,0.9999999999999978,0.11471317843108104,0.9967710755434421,0.9989221747346158,0.9688856972828892,1.9723773274742297e-09,3.7068765502865285e-10,0.0018131585529530486,2.4192219686910328e-08,2.4206492918313833e-08,1.0693064097397057e-10,0.997308533063995,1.7451310914532628e-10,2.942072338704823e-10,0.9999999999999998,1.6459278636900963e-06,7.258061625700215e-08,4.4565871481049046e-11,0.9183540417144571,5.544643083109911e-10,1.8306431346853937e-08,1.0,1.0,1.6932332428190398e-10,2.0750876227064822e-08,0.003513882092602246,2.745384243475991e-07,0.9984126354112278,1.2595467751339117e-08,0.9918890436236496,0.9993717921946691,1.7522239738745253e-10,0.9999540213863828,0.9999972489723155,0.99999699446758,0.9999999999999998,2.5571152184385573e-10,0.992549342812071,0.751489822774078,0.8040092659126049,0.30214309590063115,0.5477324939843826,1.6054938004620247e-10,0.9999942292782961,0.9999999999999996,1.4826087972871864e-07,0.9999999999999998,8.439076406352197e-10,0.999993626615718,0.9989096118616523,0.999713033644984,0.9976573349278234,7.674910585877986e-09,4.6677530118080464e-07,0.0026382325240549755,0.9999999999999958,0.8798219083389868,0.9289681356302927 -पत्तागोभ,shape,2.6212466968706524e-06,3.588986136090844e-07,0.9999694910941174,0.00020543826239745154,0.9999999835950699,0.0001035015964263917,0.00018963453286178973,6.1339582465219345e-06,3.4393460858524346e-07,2.1370448268889956e-06,1.5230657876912916e-05,0.00029461986592600335,0.00012320369960358083,2.9475230004768414e-07,1.8981588294124031e-06,1.9013895943442414e-05,0.01917277438810815,0.02446970905283389,0.0007880474164690332,6.434674891864025e-05,0.0007697028284459571,5.6707264227950844e-05,1.5352232289034936e-05,0.012091014330540096,0.000318277564250642,0.0001021987387254816,4.325239358687539e-06,0.0002136171720473404,0.006354170281704598,2.0479730680718115e-05,1.4104258724277643e-06,0.9999997014235916,0.0017907312387107292,3.679605854692003e-07,0.07297492292366524,0.0402712386999476,2.4829244651074005e-06,1.4070208278228298e-05,5.296622802450137e-06,2.3269928188901166e-07,4.647156638476158e-05,6.0803292880483375e-05,0.0002280237229029021,0.00020699369099145404,9.966683388876542e-05,0.9999488317611451,0.9999999715449607,0.9999520244364463,0.00014660305038715162,1.2058915185186918e-07,0.00010527228471600037,5.388284580863497e-05,5.303561514485457e-07,1.778527245711053e-06,6.714038584585941e-07,0.0025973967236629144,9.120183969097609e-05,0.00010650396783502591,0.00019901747873458532,5.437460939979274e-05,1.657768831165663e-05,8.724786520722783e-05,8.664004273810444e-07,1.3657002478376765e-06,1.458964750630254e-06,0.0001010560570383183,0.0009731904352703164,4.1654947371403115e-07,5.57965043074025e-07,1.3485080824466142e-06,3.974136516655128e-06,3.944807701444464e-07,1.6667516966491446e-06,1.8565213552275054e-06,7.731319144032293e-07,1.959279418546695e-06,8.46491784836499e-05,0.0003088913886798856,0.0003623383779558447,1.8444670689712367e-05,1.7380840146217092e-06,1.700910619749585e-05,6.138088974740582e-07,3.0589008786043495e-05,1.3925797541576344e-06,3.171340460262883e-07,1.4205571972860309e-05,1.5920662000102323e-05,0.00010161628485155426,3.8979279678590616e-06,2.1370827135933666e-07,2.0569738746757356e-06,6.23759090303868e-05,8.553517809691787e-05,7.506527402370823e-05,0.00024964457268093944,9.565410349560525e-05,6.0425532436148723e-05,0.00024859769930903053,1.4991411285699848e-05,4.745616506807368e-06,0.001084696773619661,5.3467832627604594e-05,0.0007275162951384226,5.464603752726128e-05,5.007325419758391e-06,2.3997556513588443e-07,0.005841286975140053,0.0007565717428987283,2.948141324461522e-06,1.952606849046629e-05,1.8782802228020518e-07,3.363666467237063e-07,1.718061871332976e-06,1.3744093083739502e-06,0.0018383943665077696,9.564781319751762e-07,7.60402383344144e-07,1.4202799813407665e-06,0.9998060072562788,0.9999999089714361,3.8994344423763113e-07,3.9908737404542247e-07,5.100435079164074e-05,4.542559411372096e-07,0.00016476081334373,7.216237994863395e-07,1.6997721895825973e-06,1.5757487398830292e-07,1.4172088557929008e-07,0.005923425690111237,2.897720683554686e-07,1.0101982211608364e-05,1.0676554256104576e-06,1.9817498563730914e-06,0.00018873554643477453,0.0004568133176998733,0.00018626339248530577,3.7813154948561e-07,3.0272789284153854e-06,0.10666067139178985,2.214137141832612e-06,6.555585505606357e-08,2.7657001864409164e-07,0.00036837364684386397,5.4518475418985154e-05,7.075284137838786e-05,7.020389435480199e-05,7.938137040612896e-05,0.00010598604016174365,6.46935512811482e-08,1.2372351261082315e-05,0.0001847252697969028,1.700883589726185e-05,1.502147806107826e-06,9.326722689001674e-05,0.0002946198659260044,0.0014537955995383444,5.753402152153822e-05,0.0003148742529989899,1.2649469628175953e-05,0.00048464301840182037,0.9142972927510228,8.167011504089705e-06,3.874757430409755e-05,6.7193503708085e-05,0.00048533832087162575,7.097698342090964e-05,2.813237223018174e-05,0.00020031637802839328,8.721724794709265e-06,0.0006130736232800161,4.902896901034769e-06,4.1194285920293635e-06,3.255270920653639e-06,2.865993604228211e-06,5.124787472625736e-07,1.8419131729449268e-07,3.038179136899608e-05,7.725184829717728e-05,0.0001350145202890226,0.05824639557541715,0.16675942941891161,3.9341331082627095e-05,3.512598061530745e-05,9.409685807915246e-06,8.027717182075152e-05,1.8491723353903902e-05,3.282385266544027e-05,0.00018538035586554747,0.00011379418195602765,2.3055243261253457e-07,1.4499124122818141e-05,1.6392081795519407e-06,2.8049748508296386e-06,5.741953255881342e-06,1.3881026888281402e-06,9.7805581959115e-07,2.069379029075372e-05,7.527308358095619e-08,8.218348995348777e-06,4.190446119349516e-06,1.0055760049890852e-05,6.70960198364565e-06,1.6303489432141558e-06,5.116861288500628e-08,3.771814049486856e-06,9.658017261536712e-08,8.291916253113897e-06,2.3780397177202124e-05,3.147355224715564e-07,5.009522602775958e-06,4.235733775148352e-05,9.157583603740924e-05,5.874943060582937e-05,6.386794874700257e-07,1.6902713490632343e-07,0.9049392112204706,0.9999844779482537,0.9999999737485841,0.9999999888224101,7.25133158177013e-07,4.388770906845263e-06,6.612599855855659e-07,0.00028330013428987886,0.003347873546665211,2.813429126487765e-07,0.0007066881575086544,6.844651733915185e-08,0.9999789938428045,4.5546578387263594e-07,3.0073123843153905e-07,6.371678558030787e-07,5.240413807127363e-06,0.9999999089714361,0.9998270526851377,0.9999342453522396,2.0069343450214236e-05,1.2257514979856017e-06,5.889213555353789e-07,8.061837158760369e-06,2.7624847108589516e-06,0.015134991709461263,5.438975159871604e-07 -पत्तागोभ,object,1.3943897861679844e-06,3.143651582202213e-05,0.9999881113986171,0.9990112971322336,0.9999999244944716,9.05733723640287e-05,0.0027339203330832723,1.967291198389892e-07,9.386104832181638e-08,1.8113595791830057e-07,0.0017479709886277658,0.023045245096715516,0.01056005041770121,4.076751786031126e-05,0.9200896825738024,1.139571999527637e-05,0.37862399889357656,0.4858334241619822,0.006690404978225239,8.963746080454374e-05,0.009797318956392716,0.010349224673883075,3.877779399873733e-06,0.4511968355000787,0.00048022079381415125,0.22146906316157786,1.8044552307631878e-06,0.0003843357618848886,0.0028625994878807622,0.005624102380968913,5.96589925074606e-07,0.9999994825524445,0.00029772518227577893,4.840194154282252e-07,0.9999521984296048,0.0213216533570747,0.00010539260372332183,0.0002591617462099895,1.6670569489160841e-06,1.7758797569191504e-07,0.9952797191325566,0.018307460474730447,0.0001749837573235863,0.2914609966207105,0.0027167118897291,0.9999631800496778,0.9999998678661249,0.9999665595151959,0.0005201685299237196,1.177628722216584e-06,4.3077565894248935e-05,0.9977114403422002,1.1404537003939941e-07,2.0035567617881425e-06,3.2947631423182583e-06,0.0009737792017325605,0.0006886646454580674,0.0007253101555301284,0.016263749370258613,0.006878131257425008,0.001830439266201133,0.0007892548170929382,1.7924141651679387e-06,0.0004079655378519007,0.0006468375574035361,0.015150294547701204,0.29954388068500915,8.193174885481442e-08,1.0405764092774949e-07,1.2057324990245458e-07,2.7201903162874777e-06,0.8112600366672303,0.8840683109569556,3.1211809511599925e-07,1.395220336728182e-05,0.0004496945078666443,0.23955810155462054,0.049891613246973096,0.02804315676117075,0.0011564351715344506,8.515095937169995e-07,0.0009245684541114636,5.200050478002202e-06,0.000622329849959943,2.7402552687581163e-07,5.492038553048475e-06,8.873446813384954e-06,0.00037134013824268044,6.940667754833792e-06,1.0360818169323724e-06,6.200832948505144e-08,1.594484015108162e-06,0.0005327973865315352,0.002394412096054756,0.0014330547985117335,0.0018888089796977924,0.0010598258511517213,0.0018708602140514654,0.014650601141863734,0.00044360682090245775,0.0003924726780349109,0.004455662703979912,2.780591548732707e-05,0.9994063785239842,0.02397950044818692,1.615805033119748e-06,4.041164391549137e-06,0.39199916299201903,0.6173953755545375,5.04382940572709e-06,0.03154886110662547,0.739277781515694,0.8845376600182177,0.007133390608498608,0.0035279193039446603,0.33001527229632543,1.1799147299524694e-06,0.0006823292526352124,0.002564969972458639,0.9998601415386373,0.9999994875732993,0.0010438774760364539,1.6000600880745944e-06,0.995754921569855,0.004287420311073847,5.063848431258005e-05,0.0018466808746094542,1.3859300275077811e-06,3.1700630843255697e-06,9.230130050757356e-07,0.002046004049073528,5.181168131385576e-07,6.432855454719639e-06,2.0511926453740784e-07,2.067202350613974e-06,0.0034948773531271516,0.0567651839817756,0.019062346962412702,2.4659307005081685e-06,0.0007851885151247886,0.9999643747847233,7.4332300792893505e-06,1.7738571483570843e-07,0.8395105003093916,0.00015177316125095685,0.0002661316065738139,6.829511391379032e-05,0.009494253371745788,0.14520651799342396,0.015197163503895966,0.6794579617101657,1.3029584952085667e-05,0.00010814580884218063,0.001960532653821952,1.285418184912246e-05,0.008437148578068291,0.020048800048829106,0.0015953768038247207,0.0004852797381152664,0.003956506039896961,4.512663406811798e-05,0.012681383016436334,0.5141258892384128,4.166373880092264e-05,0.00011713732460030754,0.00011305301936556535,0.0004935488712112506,0.0068342774366823116,0.01028422582886547,0.9993850187070031,1.5369861554421543e-05,0.00027900855957410745,4.637918574194025e-06,4.755371313968645e-06,8.982364265308214e-06,7.617825646722856e-05,5.411616256355851e-07,0.7956970108726744,6.22424648630618e-05,0.0002023868361785281,0.0003659457093429342,0.014253646703007439,0.9999690662343566,1.1502678742766538e-05,8.963730017551418e-06,6.135132229607174e-05,0.99614954325303,0.00015559363109961567,0.005871728799677139,0.016929826068246084,0.032776733659211396,4.808774287644866e-07,7.6271135986199135e-06,4.558378243533749e-05,2.1989752895019014e-06,7.407451214941952e-05,1.5681033659010145e-06,0.002296372993186465,1.617249749039288e-05,9.437111480258468e-08,0.988325032983177,9.506011692674488e-06,2.52531029108542e-05,1.921568065149426e-06,0.001525893868622211,1.3045739176121208e-07,2.8241932414562992e-05,0.7244601537090043,0.9657918016958253,3.891830605919736e-06,2.2263724043638496e-06,0.0001119450261582252,0.00012204974252791087,0.010332364433020774,4.238550067760847e-05,0.0013272883024504636,0.0019290998211446654,0.14290121532089795,0.9999872345349066,0.9999998596519794,0.9999999374152694,0.7826069781542806,2.658297492562566e-06,0.0002871226416358026,0.008664100911653235,0.13358107345234857,3.5574397229203485e-05,0.008403801525043124,4.4473945725482847e-07,0.999991039941529,0.5788974842445551,2.302846379326927e-06,0.8125810078644553,4.294844178795049e-06,0.9999994643162108,0.999787121769119,0.9999212140828119,0.00329493561125184,2.98268229510287e-06,4.418120709093746e-06,0.00014027864566774773,0.6920817997206531,0.6126062105212509,0.0010473534158198122 -पा,rgb,0.000152734098938924,0.9999918153096288,5.115001740877667e-05,4.4249200898301544e-09,7.4363974947307236e-06,0.9999902907728545,7.209829137442505e-07,0.9998840411367018,0.9998675288330537,0.9995920787030179,0.00407864634029597,0.0005275695127574292,0.0007471355626905449,0.9999877277790736,7.348885800690388e-09,5.633291630404674e-07,0.00019573547161712236,0.00023316995972284037,0.00024218201496335062,0.7367661694093054,0.0007111863376446689,1.2640682283878727e-05,0.9999869725810514,6.389111803683321e-07,0.9999923440078595,1.0421842400199217e-06,0.00022723741382449364,0.9999893623694571,1.1413349354155878e-06,0.9989166952795622,0.9999901488103128,4.362437414838787e-05,0.9999846608245143,0.9687876220556227,5.087996304336167e-06,5.048034351247461e-07,0.5036922184537569,9.984529863290752e-05,0.9999622159347095,0.9999502744703083,1.5569042259114312e-08,0.9954010702302594,0.9999885263186119,0.9977176179575972,3.496849262883702e-07,0.00041903532155879587,6.115594173398587e-05,5.095429757031553e-05,6.839915806480998e-07,0.9837635990386872,0.9999896971981297,1.3004053984565239e-08,0.9997876605719799,0.9999689212406455,4.5524657291102566e-07,0.999968260292371,0.9767250533668385,0.9528741160000562,0.0006256742072888265,0.0010960028683784275,0.0037796611563175415,0.0006980528501092814,9.28127055688036e-07,0.989105417526733,0.9974465843370526,2.7295930663716456e-06,1.0753372875162905e-06,0.9996948492196845,0.999859465878943,0.9998841258215039,0.9999766293336534,7.3158198227780275e-09,1.789206939687402e-08,0.9995727041171252,0.9999978004272105,0.9957980550646018,8.197429457562005e-07,1.7445393664675925e-06,8.327422961585932e-06,0.9233877280861327,0.0002302793417049015,0.970330668234038,0.04986190504833394,0.829059384871278,0.9998821100017108,0.021529253976694702,9.343488197555967e-07,5.769115241760447e-05,0.0004943565481161608,0.00026920267875433227,0.9998642910266242,2.205419985623243e-06,0.9893439807583749,0.9276730185759785,0.8938237848439474,0.8459268864427893,9.345380837924716e-07,0.8245220071850476,0.9743229232857312,0.8485337926439463,0.7181508576644863,4.040142812846864e-07,0.9999432428609016,8.040773573010052e-09,0.641552870231851,0.9999907206181183,2.529677500994762e-07,8.150772198022412e-07,1.4423875320613703e-06,0.9999335269359358,3.6831975140668735e-06,9.149367120265987e-09,5.392788115588096e-09,0.0009254523926155674,0.0021163361124024076,0.0038244351590223775,0.9960793990558667,0.032432056953568836,0.0004425543143788145,2.3615103516883142e-05,3.6474771146530384e-05,0.010064784979004909,0.9930943853244936,1.1951343870851397e-08,0.0016717381115785833,0.999482604745316,0.009111554419021305,0.9971819035108307,0.9208943075041869,0.8120219521419376,0.8651660883741958,0.938334008133309,0.9999910767438109,0.9996045763930895,0.9948784408125603,0.0005512782774687975,0.0002979667741400989,0.0003052430015836386,0.9709100359001439,0.9983667773139576,4.433750641830514e-06,2.751458810168633e-06,0.9999749499923954,1.9559615133965322e-08,0.8742579961151327,0.5390297446751734,0.9850821054731203,6.150161248875947e-06,8.180009192306384e-07,1.3108600770499014e-06,1.2464369983697683e-08,0.5896472022026076,6.716492441862676e-07,0.004410812751980623,4.656418580595655e-07,0.001080665805326805,0.0007638923644606181,0.9999951591790184,0.9999768685378869,0.0003444892636531882,0.9999985831716146,0.0003012559108163074,6.041877414768875e-08,0.9999929295717302,0.9999955670734348,0.9999972297399332,0.9999940286794308,0.001000362700412563,0.0011885697001667323,8.308273276163376e-09,0.5612505500312905,0.9999896449686605,0.8067571619891998,7.341178262161405e-07,0.6151916266538305,7.326706335423527e-07,2.8151294623900865e-06,1.4543023290291963e-08,0.999999193918497,0.9999952820727066,0.9999936247628494,4.2824374290004514e-07,6.146210979423704e-06,0.9999855139938584,0.9999906772863467,7.111871186439394e-07,3.775821414824438e-08,0.9999940143651138,0.0011689757160745246,0.0007314623448569848,0.004223015681115123,0.6824352245177436,0.00013980352789192278,0.43096471439381884,0.8703496806228611,8.580903159987504e-07,0.9956269197982105,0.0021235641536533852,0.9999867088887495,0.9999633654773522,1.5022683625295868e-08,0.5493012450816374,0.9999914547159245,0.0003245947886696254,0.022857604150149525,0.9999548478525593,4.347171648623821e-07,1.044140613048374e-08,6.317772720939357e-09,0.0001489842845283921,0.5974190942967282,0.0001505608736622766,0.9999912582732653,0.0008686388224072226,0.9999974920024037,0.004471534095309555,0.000763304446253764,1.5479037948762406e-06,0.0001314009858253383,2.517293306957478e-05,4.057026845791085e-05,1.879676841869323e-08,0.9999746585673852,0.9835924062633532,0.00026093958707861095,0.00024381888881252787,0.9999918251813685,0.00042855203239190823,1.630145238263878e-06,3.665753777634603e-05,2.596102457197116e-06,0.061974765013195106,1.6387057216272206e-08,0.9999472360142099,4.715771761367576e-05,0.0016137145181940834,0.00044546957889572794,0.9974977669487295,0.9156135620012101,0.7011086426038637,8.31551863849789e-05,5.961646501644091e-06,0.009586409063416778,0.009700125834381738 -पा,shape,0.9475711925205782,0.0009430398216660567,3.006679715252793e-08,0.0062378543353968745,1.7652629536498597e-10,0.001261313521015246,2.463090551728233e-05,0.9999343378685167,0.999611727296754,0.9828289236664557,0.9571362998712802,0.9851145448257478,0.9983553476866094,0.596892652674892,0.0074134999233792164,2.7705449680787504e-10,0.00017559876290146163,6.55827812988724e-07,8.574808412302622e-07,0.00019782335230288594,6.678212046794292e-10,0.00035105144848692355,1.1714515390766848e-05,1.5095106267160504e-06,0.9985223110088213,2.9863149376333617e-05,0.0008481209023248278,0.9992460230935383,0.0003331383695878905,1.1586533417873613e-05,0.41690220073237977,9.234084379709462e-09,0.03660982460900689,0.9912960571893754,4.8954043812688245e-05,0.0001048763353616431,0.00149606543910032,0.01452685938740903,0.0005621976304944259,0.8592629915911525,0.03705343079616567,0.055968752484122336,0.0757990219907057,0.022918857023615413,0.00035373341861214973,2.4643342302428724e-06,1.8990302295338706e-10,1.071614904454198e-08,0.00012131969379766932,0.8818801719551439,0.05568932334249185,0.08841531662841927,0.9994174644958643,0.010237426421653888,0.00017977447342288228,0.004433394100297143,0.9995450985454719,2.5732863768911398e-05,0.9996047505599085,0.07528581516480778,0.001158484250653657,9.603831500921995e-11,1.518758056223544e-08,0.040395424552107644,1.1905277560084732e-05,0.0001243677833900427,1.1512553569930336e-06,0.9979619480888297,0.9999642517419652,0.9995555061773725,0.0017907460213602699,0.0020409508930392052,0.06759008690899657,0.9971436237174253,0.0005757022585238149,0.6875381058139955,0.00026438180063763486,0.0009784156342307476,0.0022358761080273244,6.588083468734201e-07,0.0007137270151559835,0.9928554198466298,0.3336005187025359,0.0020376401210724974,0.99961136183083,0.7434328744505213,2.795820056259216e-06,0.0008902245186855163,0.2596697339993183,0.00044077648363535993,0.9999836275084097,0.00019656840986961675,0.9589786432629412,0.9887521327188751,0.8107976194531963,0.9794084101947663,0.0006977941345760694,0.9988760692072814,0.0009848323749598392,2.6763776958233517e-05,1.537527149497269e-07,3.02179847830065e-05,0.00015658021567358332,0.00015896583937477428,2.635206006865101e-05,3.833199736380503e-05,9.289742864836531e-05,1.4941443338849649e-05,0.8694284106568198,0.0005708094772934598,0.0006853864985484354,2.216788984427058e-06,3.1695803126421345e-05,2.3859617231029896e-12,2.2999401301332954e-13,1.88309260204287e-11,0.9664849014138739,2.8492633507750128e-11,1.2053009310341248e-09,0.038888988459652135,1.1217602370501689e-10,5.28050431065416e-13,0.21011665790142248,0.00028263614722823986,1.1583681136216592e-11,9.119418180305077e-12,3.510747503923092e-12,0.9655877288749278,0.9515932004551613,0.8145852411387108,0.08004144845894337,0.5295719339678314,0.1401619872278807,0.999977009951995,0.5133885429395845,1.5791229373023902e-08,0.03374188173572738,2.633842588213086e-07,0.6008864828827558,1.4386283725069612e-05,5.9875956074672724e-05,3.680112313115528e-05,0.9091676799719595,0.8694819410029256,7.365078007531948e-07,4.491543920120746e-07,0.9936173867866919,0.0007243813046242244,0.9472348742968825,5.551986962739916e-08,0.019647955226576638,0.9984424973665078,2.9076881405486384e-06,0.34437190293925035,0.00018436410977775079,0.000767279871146621,0.9851145448257478,0.9992931224845718,0.999897205087828,1.5148629382223917e-09,0.9991531256194093,1.9544205124261365e-07,5.9400654049145844e-05,0.9999384222653305,0.9999953910073315,0.9998045455010725,0.9984605608773701,9.141418213590353e-06,0.0006786530529231067,0.001815707977611356,0.9995227812715045,0.0009742842875209119,0.999226048733294,2.7695080937191755e-05,0.8980987541879067,7.553667649991802e-07,0.0007094330768902409,3.282299829718233e-05,0.9999965753959152,0.9999806551774671,0.9998571477753425,0.00015533732583356756,9.365997987606327e-07,5.319566974671278e-06,3.722208091675308e-05,8.178461203858031e-06,0.44247804162677584,4.8698268056533025e-05,6.363129401806425e-05,0.9981420721156876,0.2804302928934606,0.6666561823574343,0.9999895593476711,0.00029186021298863125,0.9996983129921084,0.00022471453264734294,0.7790834684466437,1.5005833008493966e-11,0.17035972079689618,0.9993463267046946,0.0004885164336577041,0.9993435729637502,0.9999830750881147,0.0007803031825360775,1.478905635597305e-13,0.001049951144070099,0.00030958541463005677,6.276983920113708e-05,0.9990348358158936,0.999642250706163,0.9960667632209336,0.14722936846249082,0.9993789012749162,0.1623060034496291,0.9996281825561055,6.653969327649505e-12,1.8606922014699842e-12,3.823027428480894e-08,7.05021828295424e-08,8.15909902374333e-09,1.3330432573074158e-11,0.0005344066420669695,0.002663388370943846,0.6347128444733183,6.376147722745036e-07,4.0605156962020886e-11,5.042236581176341e-05,0.00525402687152784,1.4366257767651361e-05,3.1864439680243337e-08,4.923865935286551e-07,0.2728371310069919,0.3433944659317405,0.003386656135488071,1.121760237050149e-10,0.001008240323979011,2.0908110559529e-05,1.6072007380939885e-05,0.9958249456019684,0.9941017105904381,0.02315283660916568,8.8016402904062e-08,1.5617672993517305e-14,3.7175575558232426e-11 -पा,object,0.0021121095037984886,0.9999963331279887,1.6044363864904252e-05,2.9963950994996668e-06,1.2661269617218634e-06,0.9997999457821609,5.415132354556156e-07,0.9999582724071263,0.9999632891664596,0.9997948082234023,0.07266630108174556,0.016224827758174472,0.02731072356376082,0.9999949381386526,8.047248767865942e-06,7.361987231161857e-07,6.110280022710225e-05,7.488827444670557e-05,0.0006996066555745165,0.38430191396754443,0.00015219958331044554,4.9289204014096695e-05,0.9985835467018214,1.3071819044966003e-06,0.9999240001247172,7.412263808443071e-06,0.00017131901424769072,0.9999601889347803,2.6817883619402433e-06,0.9984148593226458,0.9999088120589655,1.0959141770124279e-05,0.9996048607925292,0.9839822460358468,5.7519912059672174e-05,8.302086428565875e-08,0.38200937129156914,0.0008825497442081977,0.9986213840521978,0.9999090981927061,1.2216840177264852e-05,0.9986179339726557,0.9999188741963415,0.9991123611999349,1.5508324299363588e-06,0.00033500709685926287,1.0161567751391476e-05,1.0255641998639752e-05,5.672407144938652e-07,0.9924793950849581,0.9996527844242102,1.4554673598844122e-06,0.9999086760727607,0.9998685229215966,6.675804883052137e-06,0.99618482057805,0.9919077632583686,0.9863856956003467,0.019883928092099785,0.01648270601182964,0.03851734696859436,0.0009115444704238209,7.38629769105308e-08,0.9989007345603731,0.9975447936072481,1.0874171786760043e-05,7.70477192854352e-06,0.9998696733743792,0.9999353371726308,0.9999602030258337,0.9998667668744184,7.1393799461051325e-06,2.0070054672825335e-05,0.9995140629989897,0.9999987062560158,0.9993848649186367,7.814844913806849e-06,9.336608740809357e-06,4.00251953980099e-05,0.9299488376791671,0.00021432387881809305,0.970051111522473,0.1601750313321216,0.9414181316514234,0.9998952185989233,0.07234697326322923,7.51559391698756e-07,0.00046373815446130795,0.0025594627781826236,0.00023419234243862903,0.9999496808210324,8.38349080951991e-06,0.9883630885409513,0.9586576100332195,0.919371157788113,0.9707762666950633,2.909722595405476e-06,0.9373136030164777,0.9800945237805724,0.9380945764394645,0.8646884673863272,6.354285805110707e-07,0.9986391091717574,1.5420395476469195e-06,0.6345034173052155,0.9998039582944549,1.807432524219054e-06,2.14049978062289e-06,4.465089652662187e-05,0.998988481561715,4.917388577442328e-05,4.0576764721171865e-06,3.5228985214830894e-06,0.0007280115664609758,0.005173220573288863,0.001485131435480638,0.9940950801240459,0.0387215103481295,0.004484814163165498,0.0003792657350413626,6.398962639461089e-06,0.007159982172337946,0.9926928272684615,9.068019132766945e-06,0.0011967624327184389,0.9988741368384715,0.004353773153072715,0.9956087412517436,0.9792501909059104,0.9391004465540709,0.8572412209153921,0.9493168484708123,0.9998745808845547,0.999846467085971,0.9932057627387333,0.0003380093607919757,0.0006101709840536577,7.33054932619372e-05,0.9834126103365857,0.9986726981695406,4.358478942602252e-05,3.5969572438886073e-07,0.9999662232864936,4.54545953444314e-05,0.9598816398602215,0.8171892328217688,0.9911536278706862,3.463832071246683e-05,1.9760548625880403e-05,4.339026141172385e-06,1.5214624764045207e-05,0.9433011691806579,4.2073231485949737e-07,0.044637322278192,6.000095113317168e-06,0.012408048341914113,0.021511397073258588,0.9999862608473858,0.9999547368913606,0.0002502883299055803,0.999994583291064,0.00017056944389300162,1.1370844775839626e-08,0.99999244674515,0.9999916528604568,0.999985242225838,0.9999316406578617,0.029599449116973573,0.005404030505065569,1.2231074208811589e-06,0.8656115472912048,0.9997010272463177,0.9793310333425825,7.710275945821943e-07,0.9251979385295361,8.42770062071489e-07,2.1677624607975712e-05,1.787982827037904e-05,0.9999985188037154,0.9999925474911998,0.999986575964863,1.8477225503888022e-07,4.50524116093217e-05,0.9987582096982326,0.9997347523913,1.08341607755233e-06,7.48397517068863e-06,0.9999928317043624,0.00900047137591977,0.022522444236203545,0.018977404849164027,0.72561382385228,0.0031253051825480467,0.31376704555644197,0.9730736896094581,9.459595204962156e-07,0.9959584652300905,0.002417143582107201,0.9996843488234092,0.9999846642566818,2.384524915224653e-06,0.9334893616119769,0.9999888187854321,0.00022217874528835868,0.020930926876742268,0.9997155143074586,6.752553244301979e-06,6.186809862219964e-06,7.015873916978686e-06,0.0015496308558898798,0.8251843685838727,0.0030243807973075886,0.9999519269163698,0.020181412017934993,0.9999934835229207,0.004302032643960933,0.0007207443201188813,7.026983691176382e-08,4.617533924608732e-05,9.01396823865796e-06,4.979001930540514e-06,1.999716010361688e-05,0.9998823452740474,0.9994814354277634,0.0002485679391197882,2.868977137314823e-05,0.9999937149884449,0.0009353585357161047,5.263277132484642e-06,5.42005411900624e-06,3.495102375168916e-05,0.1192779983689615,2.582342630077974e-05,0.9997867961465928,7.939178701362811e-06,0.010234832702565626,0.0002609407974853747,0.9969827111895214,0.9753681520812154,0.9507908432067825,0.001027295209389726,4.4294578583913385e-05,0.0010806864044231607,0.018700674790805283 -पील,rgb,1.0,3.064897639642974e-05,7.269163405931874e-12,5.157769656436842e-35,1.075215428476131e-14,0.9999999999999978,0.9999999999983151,1.0,1.0,1.0,1.5712913424324084e-06,1.7035004041874417e-09,7.222219851397311e-09,4.1129572892626385e-06,2.1544178187753713e-36,1.0,0.0016960645508894373,0.0006897775559439524,0.003285238878428125,0.9999116738579031,0.8742131186727109,0.9910956701687557,0.9999999999999987,0.6288214632135162,0.9999999935100663,7.76493541175106e-08,1.0,0.999999993597934,1.0,2.2205229898810336e-09,0.9999999999999976,3.7830053592938437e-13,0.9999999999999964,0.9999999999999998,7.319728636810862e-32,1.0,0.9980863733226175,0.9910422372821327,0.999999999986638,0.9999999999999309,8.392205773093058e-34,1.0065327978332738e-08,0.9999999999999953,4.015059195111216e-11,0.9999999999999312,3.1496550334076885e-11,4.3296966492185824e-13,7.734828688903367e-12,0.9999999999999833,0.9999999999884188,0.999999999999998,5.865325821096178e-34,1.0,0.9999999999999929,0.9999999999999973,0.999999999999952,0.003004360176533174,0.000668009153360192,2.780312198402529e-09,2.770497549531055e-08,1.615969838520526e-06,0.969640034701263,1.0,5.082638169751573e-09,7.677639457850363e-10,0.9970277746131038,1.3895021064448662e-05,1.0,1.0,1.0,0.9999999999999944,3.6058399255779038e-34,1.9216985247315538e-33,1.0,0.09429651399463494,3.2312758458527993e-08,3.6244370465438536e-07,0.9708474901481755,0.9840628051181246,0.0002622567399972749,1.0,0.0037602856141024394,0.9999999921359485,6.59829707120102e-05,1.0,0.9999999503640458,1.0,0.9688396328576524,1.0,1.0,1.0,1.0,0.012593979302783458,0.00013786675633057374,0.00013024549502572218,6.852969963634283e-05,0.9999999999999998,6.289407571031559e-05,0.004005159334632301,0.00011561432372568254,3.9074292566811366e-05,0.9999999999421714,0.9999999999999241,1.3851488940815046e-34,1.2785635954867959e-05,0.9999999999999976,0.9999999999995057,0.6402270639706988,2.6454148292314054e-09,0.9999999999999358,2.9533889856054263e-06,3.1483281150950117e-34,1.719861176942169e-35,1.0636617677403858e-09,1.1518685291926636e-07,6.338552686977354e-07,1.0,2.2748522958372112e-05,1.284619849200661e-09,1.699826476300304e-10,3.1741360575808186e-13,9.870127496703554e-07,0.9999999999970617,1.70989276998501e-33,3.606407424818429e-09,0.9999998031467044,6.171767614330603e-07,1.0,0.9999999973397213,0.9999999999993374,0.9974192477356238,0.9999999999999982,0.9999999999999982,1.0,1.0,0.06582062782965017,0.009540022572433506,0.004677256396869567,0.9999999998583236,6.388973924621896e-10,1.0869936303416266e-31,1.0,0.9999999999999949,7.532212595409978e-33,0.9999925009920788,0.9976946458776854,0.9998583547415059,0.9834658113034533,3.0511589437798814e-06,0.9790133362873538,2.2899801444368e-33,0.9999999907909168,1.0,1.9644296736468263e-06,0.9999999999999976,2.1017641013675742e-08,3.882919238559807e-09,0.9999998621889515,0.9999747340247914,0.051440101726193704,0.9999999902597781,0.028132998731880778,0.99999999999998,0.9999999639684538,0.9999999968027691,0.9999999998152265,0.9999999985247074,1.0599066356920193e-08,3.4915939573039835e-08,1.7514243621123847e-34,0.9999999701704148,0.9999999999999978,0.9999999998447315,1.0,0.9999999488931965,0.9999999999985485,1.0,1.8425474584350865e-35,0.9999999991589372,0.9999999284183363,0.9999999534445905,1.0,1.0910895256005673e-31,0.9999999999999982,0.9999999999999976,0.9999999999999967,4.4644624809941555e-31,0.00031793014753599754,3.367729279882195e-08,4.327714556620614e-09,2.1868999675017634e-06,0.9999999999999898,1.0,0.991978958809006,0.9999999999975531,0.999999999999992,0.9999999999999998,1.8880244228285864e-08,0.9999999999999969,0.9999999999999938,3.048917437573252e-33,0.9999999931993753,0.9999999993051321,1.0,9.354262239354532e-06,0.9999999999999793,0.9999999999999964,7.275823404820068e-34,2.976720687307502e-36,1.0,0.9999999999989508,0.9985026069675617,0.9999999898878796,8.901086320088563e-09,0.9999999999690268,1.3577190072194094e-07,1.4341774659193274e-09,1.0,1.3671191629501797e-11,8.381844174431739e-14,8.468094376009945e-14,5.87727539123765e-33,0.9999999999999947,4.1806279628650044e-09,0.0006479371328335904,0.0003586688418061562,3.1210874414233946e-05,0.003437887602254824,1.0,3.2679180461314184e-13,4.888569158047984e-33,0.9999999999814975,2.495269291088582e-33,0.9999999999999545,3.6533126921603014e-13,3.3524730341719232e-09,3.5693927080142626e-10,2.1031929805423622e-10,0.9999999999997158,0.9999999993291273,0.9993225966121192,2.495833455104639e-31,3.0341534209621004e-05,9.373069876444112e-06 -पील,shape,0.9994475928999722,0.00032310180804030324,0.0002690553572450956,0.9999799998429231,7.851307903021822e-09,0.9999070569642717,0.9998908061690055,0.9999247911791729,0.9992394965102399,0.9999904098420749,0.0001271388041564992,0.001198335280960061,0.0005311669712570454,0.8798439380265027,0.7270197308375591,0.7473831113530128,0.00031717242921327246,1.4611367745015329e-05,0.000438136195451861,0.9997675831648745,0.027414048881981356,0.999606424831426,0.9991225566674089,0.9997224632366285,0.9990383601238544,0.9998567061348024,0.9998811987976091,0.9998201080505431,0.9994400332379592,0.9982479510295935,0.9999963994496167,6.548605317108716e-10,0.9999932326068209,0.999996874383583,0.9332561357123588,0.07958764470576482,0.9999938530088934,0.9999981741765506,0.9861240935324854,0.9991596544209856,0.0006650065657566324,0.3566246887586513,0.999638168501177,0.9999903348279461,0.9999791271374923,0.00010449112087798496,4.549766660261358e-08,8.594636075658192e-05,0.9999340193606125,0.9999994112282917,0.9997540522260655,0.9999973117457656,0.9999992082762397,0.9998902254857645,0.9944170870389852,0.9999345281660469,0.08958985535061924,0.0003796625009471461,0.06970813069678297,0.9124880698569345,0.9763650914738466,0.11689347137205951,0.9996353998279573,0.0017696645911659697,0.9998088186337803,0.9999643802886848,0.9882604009994569,0.9999998528807602,0.9999968892864491,0.9999965071880466,0.9998739637807295,0.9850691671464489,5.264126427855758e-05,0.9999993677776766,0.0016785739477264074,0.0005153122501344204,0.999984109978297,0.9999947115012778,0.9994717640727816,0.000776909268778884,0.9999993273545448,0.31703466887104714,0.9999993757323156,0.0004905051571037025,0.999999843276851,0.9999997791644505,0.7353445966274869,0.999995311395693,0.9994505593528595,0.9999944931423029,0.9999933905197564,0.9956339781595991,0.0009586677287647206,0.00023656643407814833,0.00021811412231750727,0.00017140502729960115,0.9999981176928553,5.211859436137735e-05,0.00038097206522898957,0.0006989004744817691,0.0008485380772242821,1.2596297097679918e-05,0.9992598588450694,0.0003999471486441117,0.017026161550080462,0.9998546581153402,0.0021050388952540797,0.9997392491018995,0.9999835357837935,0.9996886122926419,0.9995842017078161,0.00047929402286683837,0.952118691173778,0.00023032971204312998,0.9974921641184068,0.022902131755485944,0.9999988097419975,1.433359775159924e-08,0.15361765395734134,0.00012680093831894847,8.915778472801731e-06,0.9851606415955175,0.9999936660444009,0.0005591947428079553,0.9998704936141127,3.620451584487951e-05,0.0022685502426571893,0.9999999739467174,0.9999971371027986,0.999993647615657,0.9999991504906862,0.9999972538029708,0.9999964178735908,0.9999978669134385,0.999996598017355,0.9996809650191822,0.9247933594487132,0.000431125358793605,0.9999980777924357,0.9778433798789499,0.9858304426737121,0.9999999341055313,0.9994444623393092,0.0011007886387431277,0.9992587272731109,0.9996556191105278,0.9399969530685207,0.9992141366708488,0.9999716500519885,0.9989838038385489,0.0007827622820558062,0.8797558636860555,0.6030141233110515,0.5758353614450938,0.9986305814478831,0.26515434332948096,0.001198335280960061,0.9999748068837827,0.9998663569950582,0.919072115525785,0.999947131599436,0.0008104567763674686,0.9945642774267615,0.9999693257045886,0.999813801120409,0.9999028636831088,0.9999810517572151,0.6800542694789574,0.9991517164233755,0.9999941429027784,3.436741383369591e-05,0.9995497253468195,0.999963644985346,0.9992812051738104,0.9997246531710909,0.9996365825518364,0.9895102684746723,0.14127362560662948,0.999707114106189,0.9999882042465006,0.9999401946172624,0.07792100915655942,0.9966410668832648,0.9997670120276895,0.9997197304245569,0.9998999118855753,0.9999746378904092,0.9884226093165311,0.9756970870083589,3.8414805437036906e-05,0.9999987214468671,0.9999994892652622,0.9999998474593563,0.999712313256525,0.9999916184221923,0.9999882720306261,0.9999785000562833,3.2406870054549073e-09,0.9999896514483912,0.9996470525210241,0.9999873414479536,0.999996229985362,0.9999834503319991,0.999998715309554,0.9633093969307606,0.9990473665750237,0.3631070715577847,0.0011241174439130786,0.48206848049988094,0.9999882576333634,0.9999997541184068,0.9999966722080715,0.9999824626082745,0.9265305656640825,0.999980751478887,0.9998911254125834,0.9646630130770881,0.007208264005715265,1.6821273827035921e-06,1.3234282653792373e-08,4.316203834004466e-10,0.0006297066972943457,0.9997874695328945,0.8362406425400764,0.1568211868000377,0.00019662741402456916,0.9999306193206255,0.0004870065271592985,0.0008558588320036974,5.061344106370404e-07,0.9995187116615883,0.9999933685510041,0.00012379311718812175,0.9999441524097684,8.915778472801684e-06,5.208600853009584e-05,8.863672742439373e-05,0.9341752513842606,0.9999816332427118,0.9999968637625821,0.9999996576707095,0.9640589197465308,0.003295463094296439,0.9996966937953161 -पील,object,0.9999999945856488,0.0003668566563060685,7.443682093637864e-05,7.231312131578514e-11,1.3934850808145373e-07,0.99999338603619,0.9999998508610903,0.9999996571886917,0.9999987470192971,0.9999999599281295,0.00011386051902368728,1.0153763909616606e-06,4.8156581585032626e-05,0.0003313381026638495,6.2970374422207486e-12,0.9999999600705773,0.00014523872147291175,6.331972949983117e-05,0.4373818075408429,0.9994773309165581,0.18892670259564467,0.9964213176271339,0.9997525118650158,0.993106011210548,0.9988231365238712,0.12525933619277974,0.9999999999885323,0.9995044311701994,0.9999999926538321,9.07752057767743e-05,0.9999991507528692,1.5771819549017838e-06,0.9999954748532623,0.9999999978914869,4.295985700321409e-12,0.9999999450558045,0.9995868813858103,0.9998768219276498,0.999930548520158,0.9999848641802642,8.353840537569425e-11,0.0017163387654830654,0.999988942855895,0.00016228722221867952,0.9999999744909545,0.00015391132136059028,3.422727946403354e-06,6.1205553543768915e-06,0.9999999791637146,0.9999995643562597,0.9999815771403393,8.63183766679684e-11,0.9999999935372141,0.9999943562137632,0.9999999985180237,0.9999958255741462,0.00026260972905270554,0.000388263625186609,5.327920891731808e-06,0.008280817098581283,0.08531062422450765,0.9847765021139787,0.9999999997969289,0.00032182736443970265,0.000545014306205674,0.9996916923693101,0.6375359464463473,0.999999985672219,0.9999999690827074,0.9999998572567654,0.9999332316893573,4.866135039197034e-12,3.2801667635084966e-12,0.9999999964613926,0.011536714805964724,0.0003097038739920889,0.28123719331875563,0.9996667168435095,0.9991526455092624,0.00029690388544052553,0.9999999999845424,0.0011489432413464295,0.9999975648481693,0.0001756412502972657,0.9999999924277306,0.9999876759658483,0.9999999763320596,0.9998957641310064,0.9999999970934217,0.9999999998512759,0.9999999880728846,0.9999999995995519,0.00039453215178568543,5.5964453928633554e-05,9.462273796984539e-05,3.7501343675800904e-05,0.9999999985146384,3.93177234338616e-05,0.00031138410147787076,0.0002985098009760545,0.00027112584293727016,0.9999889903118879,0.9997445282020174,1.935220094386549e-12,0.00020676108928844312,0.9999888667868208,0.9999998415520144,0.9943346802399866,0.2775538165228623,0.9999648963309734,0.6790428678609682,1.2952265607609047e-10,6.354471171927289e-13,0.0005825844088161279,0.08536225312771899,0.008079325124648037,0.9999999930230086,0.005736765973787241,0.05257337192525189,1.0159886341231997e-05,7.079395182846566e-07,0.00925020393957803,0.9999995837960511,9.212462214156242e-11,0.0022445803415442997,0.9964777895262653,0.0038672460445820663,0.9999999969414968,0.9999941286645323,0.9999999212661048,0.9962022394299059,0.9999999969720774,0.9999960217622965,0.9999999886664303,0.99999999079864,0.957896499940303,0.045409882224458305,0.00029395047666528305,0.9999988617747336,6.832411539503869e-05,7.320962316424787e-12,0.9999999996341793,0.9999831425282781,3.869276224616865e-10,0.9997188116711102,0.9999281294267907,0.6531388443358811,0.9986871135957555,0.8965047698895424,0.9994859527610936,3.0663412209077355e-10,0.9990227187366367,0.9999998800094063,0.032248996289431786,0.9999999965758499,0.005249342155753049,1.2881419989226619e-06,0.9993955496853338,0.9924523418895471,0.7517760809688244,0.999792682643122,0.04876105474888597,0.9999999199076788,0.9999224369413605,0.9998133105599998,0.9999228416640246,0.9995558199507489,0.002975612225316465,0.0397396005878863,2.4284371564263927e-10,0.9129014947477835,0.9999791173589887,0.9999628000149012,0.9999999935590209,0.9997814791577466,0.9999998634714129,0.9999999996088285,5.2362050782627464e-12,0.9998247872841352,0.9997412430793315,0.9996000497141143,0.9999999371129453,1.674493664456145e-11,0.9998611044383674,0.9999759401991227,0.9999999977950622,8.569744503499721e-10,0.11733573226523131,0.014620851950635632,1.6557086135227092e-06,0.15879545968435174,0.9999999823284152,0.9999999991458848,0.9996821544049035,0.9999900479465058,0.9999999871857302,0.9999999847146586,0.0003757269934577268,0.9999969671676868,0.9999883106670838,2.459462922177978e-10,0.9999135635127687,0.9999348663626331,0.9999999999873723,0.6144885195281896,0.9999975246693129,0.9999999832201502,1.1592984248023818e-10,7.009657845208416e-13,0.9999999997837361,0.9999999623300221,0.9997310332937224,0.999673593088615,0.0021305653740342615,0.9999800343415594,0.06001251276877846,0.00183892612776172,0.9999996939337703,8.41615361384308e-06,3.4567454339406985e-06,1.6776439236814658e-07,1.5040785971481587e-10,0.9999579360685278,0.0006355818259519002,0.1977310986618727,0.00019548939674514745,0.009677120586998957,0.01864633608464766,0.9999999744636903,1.197512547691409e-06,5.138914809208522e-10,0.9999998791969603,4.54046259075174e-12,0.9999765647333226,7.06355884792423e-07,6.83357195289521e-05,3.5475221369470337e-05,3.7406725410793026e-05,0.9999983248955169,0.9999826321062086,0.9999115446073014,8.205101477936478e-10,0.0013986465272378232,0.39319315515885156 -प्रकार,rgb,5.366726135245025e-20,1.0,0.0004706931835319849,0.9999192745321526,0.0004037094941722091,0.9986877546005933,2.163367190175472e-22,0.008473141315453937,0.01812427528896964,0.001513008732424218,0.004770478080834623,0.0032942310468928255,0.0028721258486466552,1.0,0.9999984816377475,7.516310744330624e-25,2.8561963843796953e-08,7.815009170606781e-08,3.090520685808148e-08,0.013795196584083711,2.9755314528025773e-09,4.1937007776504054e-14,0.9961544073057343,5.801677007952019e-16,0.9999999503284605,7.902339294705759e-11,1.7114566590230478e-20,0.9999998818684437,2.722021662934179e-24,0.9999999999999676,0.9986909859644806,0.002504067559844401,0.9968614210883997,2.767341172515315e-07,0.9999999995266564,8.307882871982842e-25,0.008298323243280987,5.106014191372219e-12,0.9998268417638364,0.9903483107534043,0.9999658133528612,0.9999999999951763,0.998741338754502,0.9999999999999882,9.313811006590454e-24,0.0290007232360896,0.005208408182480841,0.00044663267218196696,1.857643129181416e-23,0.0012412830449854526,0.9984192660004549,0.9999599301736201,0.004558357263269339,0.9878720342390728,3.3265504973076535e-24,0.9960986487885397,0.9999970392716176,0.9999932084994835,0.0035757441109631138,0.0029335550739917633,0.0038805490889647887,1.085568080045644e-09,6.4710284176130685e-25,0.9999999999707869,0.999999999999853,6.438214443594137e-16,2.9313713750858227e-12,0.0016276813378815127,0.006374207441283176,0.01943227802721175,0.9932047525078583,0.9998855041237517,0.9999523087128767,0.0006198770607970892,0.9999999999999993,0.9999999999910487,1.6443796387678635e-11,9.351005066028779e-16,2.2981240920685344e-14,0.9999866386254905,2.7495832011106944e-20,0.9999934229758755,2.5832114234481503e-09,0.9999474398804706,0.010716147655940377,1.00220994641883e-09,1.8514019800882026e-24,3.1110658334364866e-12,1.433259087593081e-18,3.42997985943295e-20,0.005317538234466035,8.70643792602851e-25,0.9999989584426,0.9999927312856889,0.9999794160483158,0.9999607052919245,3.1769786394768464e-24,0.9999448780803345,0.9999953107169017,0.9999462620645655,0.9998112735918703,4.0181758741811497e-22,0.987311450855496,0.9999592753291215,0.9997868425677341,0.9989151029029466,1.2740679032738636e-23,9.796229898775451e-16,1.5873120065770704e-09,0.9791728880872628,1.4292377492874056e-10,0.9999418254177348,0.9999805187779528,0.01797417571684452,0.005590999648574186,0.0075252617298791164,2.4893235295184155e-05,0.12400052578579862,0.002599010384757219,8.183521083503606e-06,0.0018268628051517888,0.058660377822978914,0.004479045143910928,0.9998799480812932,0.03285654819192061,0.9997230945823853,0.06278316964775059,6.460531865660971e-05,0.0006273471540476333,3.5064966766531107e-07,0.4998817580019971,2.1158386059638184e-07,0.9987870021742167,0.0007640313141536875,1.5515394010279623e-05,3.052299523643201e-08,2.5318173048648253e-08,4.272557809489751e-08,0.0013464580350807621,0.9999999999999616,0.9999999990539323,3.239794997627319e-24,0.9913812897065297,0.9998829803144449,0.02644915248142251,0.013238426189973073,0.9810179473495556,1.171724015122661e-14,4.112741793754861e-12,3.9844745339644626e-16,0.9998626906421507,8.170175251432554e-06,1.478500804295015e-24,0.00497438531224422,3.300486321719207e-24,0.003422279676506236,0.004639862620285747,0.9999999980595982,0.9999999965334077,1.1733910214999361e-08,0.9999999995478297,1.276379537737222e-08,1.4086289778803577e-25,0.9999999871094597,0.9999999809438161,0.9999999633462555,0.9999999307752055,0.004521121492669347,0.0030568657402914004,0.9999544151375026,1.2784354844782848e-05,0.9984193112066431,8.805923015958564e-06,7.048078418720475e-25,3.080067885089295e-05,2.0720498650950419e-22,1.0255616927652654e-24,0.9999983439446927,0.9999999994750857,0.9999999971827731,0.9999999917179915,4.769725412220968e-25,0.9999999995965465,0.9958482264442438,0.9989168766281886,9.098779747798334e-24,0.999387856721687,0.9999999999999998,0.003007839718857337,0.0038726458042941353,0.004156121690357588,5.598514174760259e-09,3.7691599791072725e-20,0.01026341524716036,2.230837966323276e-06,2.0633491533106306e-23,3.5316941335402475e-05,0.0192305219152451,0.9976131805310858,0.980123235133854,0.999891524654769,4.538618484528491e-06,0.9999997110798426,3.176029601321083e-20,0.09591310613059821,0.9839981347655172,3.3814636969947695e-24,0.9999165848265477,0.9999970563053627,1.9724558912991874e-20,3.539545151170626e-08,4.401311550256481e-12,0.9999999476890674,0.003602913812967942,0.9999999088502413,0.031060990126458188,0.009164243484610674,6.906815892217895e-25,0.00305689866240634,0.0018751764935367237,0.005984423102536854,0.9998944189340886,0.9913010878186389,0.9999999999241957,1.0666028129454834e-07,1.3348452598861607e-07,1.0,1.1792714052927984e-07,7.141524816186293e-25,0.001812029468114717,0.9999999997199895,1.1909422033451805e-10,0.9999261403387719,0.9855056602174093,0.0031049222554456646,0.03169998303929168,0.006375270174669215,0.9999999999999474,1.9545885040464853e-06,5.330190348067269e-06,6.776079120447564e-13,0.9999999991256299,0.005347246584575794,0.0121126245729303 -प्रकार,shape,0.5458028194110828,0.9999996385227435,0.8380240215118466,0.000404253504947854,0.9995039370967186,0.9999366495516503,0.9800778770993395,0.9493700326977498,0.9987102437545007,0.07699038200815442,0.9999999998961071,0.9999999999972702,0.999999999465278,0.999999062291695,0.9999999781830424,0.9997294986952637,0.9999962752731534,0.9994666014870787,0.9999999999794302,0.9999999828174128,0.9999999999930704,0.19597131415098604,0.9999991447344686,0.0007363993743992793,0.8009009346457272,0.5737415117376637,1.4893139316931803e-06,0.2488345996978463,0.9750334101321589,0.9992645489401413,0.9991790099889993,0.999604793961229,0.999999454246591,0.0014011438442291634,0.9999999049777161,0.9999804216342286,0.0012609026356724855,1.21070327009408e-06,0.9996353646440863,0.9999999998835698,0.9999754756750737,0.9998756278823941,0.9999087546170286,0.9997891088801681,0.9998157385489382,0.9991910595927251,0.9993509845684364,0.9995251463363607,0.9003773062941657,0.00038703704553067235,0.9999875322302945,0.992522900557194,0.00032029603932841425,0.999898994420024,0.8668331996947787,0.9999986699529739,0.9999999997985383,0.9999999968646094,0.9999999998946805,0.9998557661614612,0.977452099851827,0.9999999999025944,0.9999991154594529,0.9999866402759263,0.8861365522413502,0.0007158720404874662,0.07600908187725484,0.005926285146266501,0.012559905372995972,0.9820461759934908,0.9999301645444898,0.9996748022244417,0.999999967917424,0.0014775918562283906,0.9999979297999622,0.9999993888445093,0.17872092779974344,0.00040253330977439207,0.023028942699834944,0.9999363967872971,5.343809461103329e-06,0.9999999997904212,0.00023691792694219272,0.9999999999335498,0.02037680745530927,0.0003269635052155898,0.9946198911038743,5.70731392473444e-07,8.76957518498901e-06,4.662464091181112e-05,0.012640648913474675,0.9992196131678681,0.9999999996337465,0.9999999985575183,0.9999999998034568,0.9999999999909925,0.9997400732269439,0.999999999455202,0.9999920599152617,0.9999999919960997,0.9999855942183946,0.9999433461361382,0.999794666280145,0.9998959278125753,0.9999997106546703,0.9996538785861752,0.999987997191192,0.0002787757830820429,0.01636335942705887,0.9999983631475328,0.2609943397850839,0.9999999902851152,0.9999135343012705,0.9999983014251349,0.7393492069150976,0.9999857727196652,0.0006514380034230563,0.9999958910553391,0.9999836960143695,0.9999619200953088,0.9996790484149288,0.9998194867336958,0.00024089615415743946,0.99991812071406,0.9999249921544031,0.9975829124916783,0.9996678671798567,0.00021519442854164614,0.00013996725566064832,0.0014154457863331462,1.4422627947893575e-06,2.3127537054404916e-05,0.9990446250898593,0.0006122653221386353,0.0030159185236592477,0.9999999983835894,0.9999999908267981,0.9993173444694672,2.0606509888275247e-05,0.9023933574489664,0.9998906401762054,0.9998696124915505,0.9999957900919101,0.9999339672419162,0.999999310783937,0.014287849350827728,0.9999999999816569,0.007378552211977205,0.006474659085207555,0.00048055730773251314,0.9999811208206636,0.9998181875168338,0.997052403771821,0.9999752218254507,0.9928851855400493,0.9999543621695942,0.9999999999972702,0.06190984116789457,0.5247991069414873,0.9999995487518034,0.09820063984407876,0.9999999999212839,0.9999346521771575,0.24234855205761027,0.8102812609764949,0.674509716506936,0.8467365785913729,0.9997390849935088,0.3575326057770393,0.8740388894118233,0.9999999798626347,0.9997637503420972,0.559961873925112,0.9711880797863707,0.31477001501483304,0.9999337400286077,0.9995353919671189,0.9999655827872387,0.7572218372755039,0.020875954946510546,0.11138402461954647,0.999999652298098,0.9996541924527538,0.9999978713020264,0.99995589473686,0.7616751396513732,0.97617432339835,0.9742629790555062,0.9970377055456464,0.9999999999747087,0.9973510272292746,5.016898529018585e-05,0.014454485816164086,0.9999999590703755,0.07589097494526083,0.9994184145875724,0.005812285331031166,0.9999987555015208,0.9995635348849826,0.9999999949503733,0.9974390588415676,0.011115809767396349,0.2761058803208041,1.9917896813698466e-06,0.999840138538535,0.9999999803096452,0.997915042842752,0.9999999986836492,0.9999998480745664,1.0390525829141467e-05,0.0001258742768945916,2.762318520685354e-06,0.095175540042639,0.9978862173524382,0.01098487602410669,0.9999970547693078,0.9926169568490386,0.9999997307744196,0.9999333047416776,0.9974903848391603,0.9999473572827815,0.9999953558300577,0.9998882683143749,0.9999508840215862,0.9999999965062458,0.9999999999968443,0.9997165384220115,0.9999999972866487,0.9999998939319358,0.9999999704364222,0.9999671939275947,0.0002506216213693764,0.9999999638437049,0.9997575379301883,0.9996790484149288,0.9997137119028594,0.8208763221672999,0.992697906694508,0.6857389090228941,0.6414830064720503,2.7808119054514144e-06,0.9999807605216003,0.9999876373868865,0.8707996402590685 -प्रकार,object,1.3355437937588277e-09,0.999999967597541,0.9981357911534158,0.9988075032949791,0.9997784310517441,0.9997899617484756,4.2488094844487665e-06,0.0028585965072047384,0.015116640847809157,0.000534279867705979,0.9849481875074321,0.9920759780286998,0.9677830644392716,0.9999997831281817,0.9999985517095481,1.370674184795067e-08,0.42448213893131637,0.18978305280564858,0.4933769488784696,0.7385922355218714,0.3898029517961775,0.00038761066558641214,0.9982743101633017,0.00020520501958925906,0.9997366312949368,0.024598693408719546,4.232054500072454e-11,0.9991068579360812,2.3020836688379976e-08,0.9999999693600028,0.8160962038989356,0.9998854395742169,0.999444777903303,1.4301771442056104e-05,0.9999999906363018,3.11798459419038e-08,0.007068440616979335,1.2049460495135547e-07,0.8472162071579673,0.9957437202544112,0.9999335510113889,0.9999967581545439,0.9992608651902989,0.9999999972410332,8.586684117355363e-07,0.9997469596355194,0.9999293132810054,0.9991239789060903,3.0844285976133967e-08,0.00039047645683430883,0.9998695379212431,0.9999896590360988,0.00010377028520528616,0.7871025499516012,1.29566972674808e-09,0.9983827510385794,0.9999135748224639,0.9998396206156565,0.9199501306956364,0.7137083176844342,0.31206423523402904,0.33511263807651925,1.8975934703474478e-08,0.9999968952348781,0.999997716999889,2.9493427144537975e-05,0.0036353083279809964,0.000134538668205942,0.0003124608244284915,0.006726398335205174,0.9389877075387538,0.9997808190667448,0.9999918265662496,0.00014105042332795972,0.9999998359128378,0.999998786894779,0.0493036587591984,4.61284822068133e-05,5.392846312470405e-05,0.99996712905902,4.517618884704695e-11,0.9999587162061411,4.373709796417894e-06,0.9997926807595646,0.0014083659077739577,7.238972183651584e-06,7.233620058306324e-09,2.1658133768766661e-07,6.165056454521208e-10,1.0334659246923663e-10,0.00021739483038936956,1.3774200923292036e-10,0.9999630803785751,0.9999346625989523,0.9999507394533866,0.9998842923180121,3.473894933437304e-07,0.9998633269609362,0.9997970697375775,0.9997945605391718,0.9995815798477956,2.153049280974153e-06,0.9850078795314942,0.9999969262426127,0.9999351113380439,0.9965794259379224,7.578718986621099e-08,0.00020290790880861514,0.025060727552706004,0.9827002138526556,0.007027317023663541,0.9999973114514503,0.999954606095955,0.9872065436077262,0.8725840076175002,0.9923419109570377,0.00019543247942717954,0.9848848224176848,0.895642300039186,0.9861738620162628,0.9998005175105831,0.975092948890894,0.0002920561951082532,0.9999771860314792,0.9743918011651187,0.9924963430670093,0.9236744773335029,0.00026074088168071853,0.00019234598247165087,1.2489746247018793e-05,0.0005653610702204971,5.542024199961836e-06,0.9648911332370115,8.345686075381769e-05,0.00019777117665577818,0.7483209247978198,0.5288867276405154,0.6674687651075444,0.00011122479943188689,0.9999990366202463,0.9999970370273803,1.4040650893378156e-08,0.8434730991309587,0.9998703389912159,0.843574257025656,0.5129406944417967,0.998618441433148,2.510736340574594e-05,0.004801832537312399,5.046616029481329e-06,0.9999477555386569,0.008089557002067819,7.650709246804427e-08,0.8250865219534849,2.2203796617214845e-10,0.9178417542661658,0.9926407166719542,0.9998351912279978,0.999798905757994,0.17068317775147765,0.9978581206500647,0.4545953527999622,3.4024977278619945e-08,0.9970423089789245,0.9996376738774193,0.999685925332525,0.999873989090608,0.756317949579337,0.10990085190755453,0.9999949938330669,0.16389522058192393,0.9997689109319362,0.000676459474298962,2.1976304107579286e-09,0.001970139622387428,3.9878581787615924e-07,2.389513378341325e-10,0.999983076648802,0.9998974775049781,0.9990727754417569,0.9993685303544976,2.3494755766033413e-07,0.9999961866353445,0.9990289168816069,0.9991686478850654,3.8458443110483555e-09,0.9999421091433174,0.9999997060270307,0.8810413815480677,0.9891156829556046,0.9769845079583207,1.8519838255374861e-06,5.733077407935618e-10,0.9770824246368093,0.00020745106217866853,1.4237846821527724e-07,0.0005165454139300027,0.984871786355594,0.9995043013260067,0.9607687712668648,0.9999628034146357,0.00010388134824101063,0.9964094145525959,3.240829270501399e-11,0.8811528361016602,0.9820847561646046,4.011616024642433e-09,0.9999965342980518,0.9999894051023257,5.096006688899999e-11,8.512575988133717e-06,1.7638052827256176e-07,0.999152010825867,0.311475462923623,0.9902950461763226,0.9797889496983748,0.868492295256161,7.702542093710902e-06,0.9998961105260872,0.9995344402700427,0.9999759875868575,0.9999832098480615,0.9408210359976283,0.9999904765078077,0.4121433764630411,0.872494172716913,0.999999254265289,0.23235084193474162,2.3766135356595182e-08,0.999997317905236,0.9999993662511215,2.1630759037111414e-06,0.9999856584947093,0.749397813877809,0.9998327736557931,0.9992533934908157,0.9977235231409508,0.9999998134444771,0.0001395564895729521,0.0012250328438507643,9.334474047004741e-08,0.9999987022909701,0.9985339235852866,0.8513614664686882 -प्लास्टिक,rgb,0.9996942073225429,1.0,0.3334902556697556,1.0,0.9998963196497874,0.999949326024323,0.9977814038796565,0.8914533381866802,0.6031651632070387,0.0346475646452623,5.03908886021468e-06,0.0035902874129569227,0.0005991357226045299,1.0,1.0,1.0,1.4326214088309487e-12,4.1308017470958686e-12,9.730736420154496e-13,8.882896014014748e-10,1.1653547296649944e-14,2.18025672100173e-14,0.9997644830789241,1.9094423443368377e-12,0.9999999997156652,2.5737263855020414e-09,0.9999999890377479,0.9999999974557359,1.0,1.0,0.9999460474073428,0.9951449996877593,0.999539183818634,2.3787620908435148e-07,1.0,1.0,5.394208113347655e-10,3.8211196314003726e-15,0.9984113334798247,0.9331034251319046,1.0,1.0,0.999897481411149,1.0,0.999999997575002,0.8734920355272384,0.9973278668078799,0.3035579730065187,0.9999999964016542,9.251646695212683e-09,0.9999309550145713,1.0,0.30583411920674203,0.9877824046182282,0.9999999999995084,0.9909079300198278,0.9999986622886261,0.9999963989666677,0.0022421258853782913,0.0001440160362040855,3.857897652816977e-06,5.858271162362182e-15,1.0,1.0,1.0,3.8745204206028084e-13,2.496437354983632e-11,0.1522057865908438,0.7807828453879522,0.7558358753998325,0.9967018867892188,1.0,1.0,0.07823992917229355,1.0,1.0,5.80048963412434e-10,4.543825876103732e-13,3.534246299977553e-14,0.9999911692790628,0.9999997813993948,0.9999910159784761,2.0916302589968025e-14,0.999935765705601,0.8468606136308007,8.56259935920928e-15,1.0,5.654468932925514e-15,0.29657753809202403,0.9999997611215135,0.8485647037636636,1.0,0.9999997432155636,0.9999984604912917,0.9999858530475082,0.9999640898510267,0.9999999999999984,0.9999314165258649,0.9999956166055981,0.9999011486506338,0.9993959559472563,0.7450546406507156,0.8847392806090547,1.0,0.9996637017877815,0.9999606027056485,0.9999999125934841,1.1588128209653498e-12,1.5363471475869123e-07,0.7801802459213626,6.457700846901057e-11,1.0,1.0,0.04479142788566579,7.08533354383695e-05,1.9755683658090537e-05,2.1909798967582588e-05,4.203603374131705e-05,0.0038284896345099923,0.0002267983263044084,0.9948051315834817,0.0001892157218125347,1.1295222631502054e-07,1.0,0.024355082247783356,0.7072120954752957,0.00031888599776870374,3.851456088797854e-05,2.1075588163309103e-10,5.3507271152700436e-11,4.57584859603653e-07,1.1630791752543047e-08,0.9999657641502373,0.09257444810077331,9.909401179139879e-06,1.749851372472665e-13,4.699674770054077e-13,9.03749285101694e-13,2.172077862908921e-09,1.0,1.0,1.0,0.9953464518505185,1.0,2.4745934141336593e-09,1.0053306922015026e-09,0.000278126702008066,5.482061555798989e-14,9.207843593814426e-11,9.203372694804242e-13,1.0,1.8449770298935585e-12,1.0,4.346456740841367e-06,0.9999999999996028,0.00022974649377443529,0.0020682157024539192,0.9999999999998306,0.9999999999974101,1.353048046606839e-13,0.9999999999999989,1.938026860649166e-13,1.0,0.9999999999827889,0.999999999982838,0.9999999999793827,0.9999999996704023,0.0006603067462839756,0.00011845803060658637,1.0,1.771083000647816e-12,0.9999294090615798,1.3428427740217954e-11,1.0,3.2619694008673212e-12,0.9983241332873518,1.0,1.0,0.9999999999999996,0.9999999999996245,0.9999999999941354,1.0,1.0,0.999617616805385,0.9999598161755839,0.999999999973382,1.0,1.0,0.0001207655906527587,0.0014877383628771144,3.201380361802651e-06,3.584175931160737e-10,0.9999219748388085,8.669877151660198e-10,6.790742980513321e-11,0.9999999982546579,8.2751002806041e-06,0.0020476599553103055,0.99976774231303,0.9736836400417808,1.0,1.286031965040917e-12,0.9999999919811694,0.999999971598798,5.6987842093235436e-05,0.9438064648116625,0.9999999999992417,1.0,1.0,0.9999990197818212,1.0898361672614638e-11,2.9036364188101834e-15,0.999999999606628,0.0006154949519764515,0.9999999999304967,0.0005109968088951066,0.014274422002677969,1.0,0.5944131042249579,0.9993564415267733,0.9998138527836962,1.0,0.9951066443500345,1.0,5.036436534953148e-12,8.53162604198379e-12,1.0,1.792372606317837e-12,1.0,0.9945245515037441,1.0,3.170149151820302e-13,1.0,0.9052518679116366,0.9963438288472021,0.02520384961715138,0.04734269525726441,1.0,3.411132153823613e-10,4.10816641672931e-12,4.285323582560643e-15,1.0,4.954010245023625e-07,3.420421151800949e-06 -प्लास्टिक,shape,0.0006075227902946261,0.9999999748056225,0.9554149753636701,0.998310304540754,0.9999999867752016,0.9999892110315007,0.9999147421330989,0.9226674040037451,0.7661672235612228,0.0006849475776629948,0.9999999999992819,0.9999999999999845,0.9999999999998952,0.999997822310761,1.0,0.9999999985352093,0.09272604411786434,8.246057774894903e-05,0.9999999999999991,0.9999999999999918,0.9998860225220161,0.0002861012094192831,0.9999999998465086,0.0006080067955890386,0.008821353077891392,0.004980611615947346,2.8909332365462735e-05,0.03661339003128438,0.9999300093418649,0.9999944723556896,0.9999583376951968,0.999920531854486,0.9999997840875379,5.0656621227705824e-05,0.9999904381784817,0.9998970936817955,0.0023098723152313277,3.28797113598445e-05,0.9999601647010515,0.9999999999999745,0.9999803791532769,0.9998857330491212,0.999953546406096,0.9999448934599169,0.9999022970842983,0.9999994262240236,0.9999243036990837,0.9999999756609302,0.9998567793464024,8.798600261067545e-05,0.9999984373982277,0.9998392838948641,3.972596211779968e-05,0.9999202602247291,0.9992983552875263,0.99999921011773,0.9999999997082731,1.0,0.9999999999998275,0.9999997801749235,0.9999960246439831,1.0,0.9999923314588877,0.9999962706869278,0.9996186160007989,4.3952040310815363e-05,0.0009704539270227997,1.8935599633373856e-05,2.7617986116657064e-05,0.9970152033640797,0.999974567571825,0.999870855455624,0.9999873409258256,0.0005915583503956431,0.9999999786195091,0.9999618384675821,0.052607635384815686,0.00026394436911442105,0.0002326396618998222,0.9999999636185273,1.2339681538481438e-05,0.999995512593233,0.15076282842593647,1.0,0.267447911135417,0.002868866360292444,0.9999957280607569,3.388599552007138e-05,0.08342405414857929,1.956238745121627e-06,0.0002188883951970296,0.9993901408565539,0.9999998872511652,0.9974534438797669,0.9999999492355115,0.9999999999999918,0.9998169154189671,0.9999944105014221,0.9999998517665236,0.9999999999999998,0.9999999999934839,0.9999611945027013,0.9997933885788112,0.9999940856392623,0.9999997545087308,0.9999997681817159,0.9999982024727102,2.8935395789054776e-05,0.15372221630089264,0.9999663801334777,0.0007914599135511923,0.9999868457151336,0.9999895579476547,1.0618515978851136e-05,5.97058454767994e-05,0.9994089438893535,4.272229970453047e-05,0.00011976112302479591,0.00017970702367391044,0.9999972046059328,0.9999999993552118,7.77772168376177e-05,2.3650305127872075e-05,0.999819912389866,6.7732359260571e-05,0.9999999912079492,5.072150622121419e-05,2.3906791612050448e-05,5.829734148155482e-07,5.115018780619006e-07,5.412082241822371e-07,3.89642428862925e-05,0.999625380089721,1.6499042661603985e-05,5.2943219232201496e-05,0.9999999949178795,0.0002587315435955197,0.9999792394380738,4.285077408652789e-05,0.999964125459975,0.9996719259715025,0.9999901349135806,0.99999492541768,0.9999987016391059,0.9999999999999702,0.998861810867129,1.0,4.2441234332155435e-05,0.0318661657371356,7.903570511841915e-06,0.9999801695490165,0.9999430788996393,0.9999213235359938,0.9999964902635624,0.9998203508257298,0.999999999807178,0.9999999999999845,0.042877057268826756,0.24804023433173997,1.0,0.0008697503849598886,0.00018108994051647297,0.9994671197376946,0.14070963061906056,0.33593070211131987,0.5294949805099635,0.9858162424509204,0.9999999999998574,0.9886743634327924,0.9985906327409051,0.9999999359676127,0.9998741071224627,0.9721461309898669,0.9999360397829596,0.9995851904852079,0.9999994362756397,0.9997850951651616,0.999752828171882,0.7149929281589739,0.006134803151784066,0.02846965471023916,0.9999954556556175,0.9996618777836369,0.9999999998767384,0.9999999847079764,0.9992335258427245,0.999479571349273,0.9999998332705777,0.9999999928361762,0.999999999997228,0.999999994370756,4.9669540249908254e-05,0.001250282882038111,0.9984475353840447,0.9700361551376611,0.9999998549019082,0.00017854286019918053,0.048664575938214535,0.9999723700256323,0.9999999999396603,0.9999714638414224,0.0894532493774497,0.2613150698006489,4.417457712521207e-06,0.9999644813714453,0.9999999976539147,0.9999623351814385,0.9999999999858908,0.9999999993322914,0.0008394473490051341,1.5303240626749895e-05,1.5103198881356048e-05,0.021797128549191146,0.9999981736721543,0.02126430071155732,0.19324257358214478,3.610215851595798e-07,0.9999999999914904,0.9999999659144092,0.9994218719549419,0.9999999174981075,0.9999992028639225,0.9998933885513414,0.9999999441101306,5.159392346618393e-05,0.9999985956272172,0.9992579607926677,0.9952176677231214,0.9997670727063556,0.9999999999984428,0.9999999997058782,0.35397900743037225,0.9999960436975905,0.9997611226172175,0.9999999993552118,0.9999911537310222,0.9998305997253083,0.9999977960907296,5.675967781075686e-06,0.859388265400238,2.3674490261767192e-05,0.9999960155816653,0.3301891918690366,0.00010212238661137208 -प्लास्टिक,object,0.0021827751677164046,0.9999993695623841,0.038088149384317725,0.9994422212800528,0.9899895918182481,0.99996879776691,0.9995100495604294,0.24880574178814066,0.9060722688972129,0.00043844558693921997,0.9999842000466493,0.9999906642135322,0.9999956537786604,0.9999972254096451,0.9999999999999909,0.9999997196483641,0.003295139163819794,3.9309006416627266e-05,0.9988831800904956,0.9999791297916851,0.34266741623191577,0.0001599891100670325,0.9999999825796703,0.000264071989410803,0.7574049670466412,0.00041602680046203374,0.002519784493890859,0.7083128321359774,0.9998158039875137,0.9999826898611441,0.9999340171591514,0.7933884446618112,0.9999889178779874,8.900573994464874e-05,0.9999999321899157,0.9999873150656123,1.4392607288944825e-05,1.1742106213439915e-06,0.8641549187568407,0.9999999338160138,0.9999998797970509,0.9999185638310326,0.9999271101743015,0.9999936630583096,0.9998288688802913,0.9360171408073847,0.24389755233794896,0.9971036244235599,0.9998024645886788,4.7988890866816245e-05,0.9999922051029494,0.9999965831766356,0.00012619250599897277,0.9998913618117685,0.9994621590870444,0.9999652927766441,0.9999853639462194,0.9999999796856149,0.9997699297619312,0.9962390972872479,0.8958500490589744,0.9999999601805654,0.999999039124015,0.999914971731252,0.9999280888605064,5.262685313485983e-05,0.0001731357396438536,9.577874114287548e-05,0.000269518094291702,0.7828698651455767,0.9999962599932306,0.9999884911620046,0.9999998008995911,0.000435329210880126,0.9999988698192405,0.9999760471102005,0.0013085371315723863,0.00014123806753679863,7.82381326725699e-05,0.9982609036441679,0.0006707158980867667,0.9975269053034135,0.00031312054584912394,0.9999999511417712,0.08998677818441057,3.999978569261437e-05,0.9999936336893099,1.5170307588988428e-06,0.00031733595505638697,0.0002972395436712112,0.001984087499619925,0.9998474152870507,0.9999497273055069,0.9865719376430733,0.9999671552712824,0.9999994906083657,0.9999561693212705,0.9994842288009659,0.9999815293124368,0.999999976906253,0.9999797986934561,0.9998281321792567,0.9998192596257672,0.9999999715527689,0.9999664322194568,0.999988597212952,0.9999749123489688,1.6233426661189403e-05,6.461259894430092e-05,0.9999239525793768,0.0004239966742687522,0.9999843686583324,0.9999987122144928,1.0100149499640233e-05,2.0869871766633192e-05,0.5189865854398329,4.528554553622578e-05,6.934430038025731e-05,7.977950160709621e-05,0.8640752619465696,0.9977490037462511,4.1385186122978396e-05,3.9673451832952615e-05,0.999998339811075,2.7259312413605498e-05,0.9964129882723918,1.9653013539383112e-05,2.0331600042776716e-05,6.793883405562739e-07,6.280376537192577e-07,2.7293733896269623e-09,3.466104870117851e-05,0.9998169616010466,3.926781899256679e-05,5.967924334924755e-05,0.9991226250823921,0.00011874872037050567,0.10490918614981927,2.0443957061043207e-05,0.9999797591376244,0.9999931021517647,0.9999992919765149,0.9999818935935857,0.9999999373726195,0.9999934370291792,0.012521324279886883,0.9999999863919307,1.175019062026337e-05,0.00031464153379452524,1.566719471699788e-05,0.9999989857391207,0.36791530359825786,0.9999169010869738,0.9826362683172536,0.9998104141158528,0.9999388228789572,0.99999083586644,0.43965830043207205,0.9165277922537147,0.9999998206759493,0.4119142612100897,8.854665669111012e-05,0.9997617091158392,0.48023006108521343,0.9452396861190003,0.9839423030763128,0.9984522959858319,0.9999832648886107,0.29449798121150506,0.9998444842274814,0.9951536246397652,0.9998864596383809,0.007583118216411796,0.9999959535795595,0.04248091667161841,0.9999468580335451,0.9998797778020015,0.9999972590189604,0.9953525002944406,0.1439348126269891,0.22910480255512608,0.999998620271071,0.9999845423405841,0.9999998105412616,0.9999970368030517,0.999539131865782,0.9999753290430349,0.9999999389787397,0.9993874070381747,0.9999600775870087,0.9986337485283739,0.0002516435620705529,0.00010283687680934024,0.8446469124071339,0.02219439236336861,0.9999970093531614,0.00016796754960332505,8.018960845189106e-05,0.9999275519187111,0.9999997918734866,0.9999985876710782,0.00019749543863788917,0.8605331501195366,0.0002695417646039403,0.44031156600834714,0.999964699164276,0.999913370926248,0.9999999979814662,0.9999999999828433,5.118489733542685e-05,2.757330474189397e-06,1.6920671237851682e-07,0.7442935024186192,0.9531349247947246,0.27512271706686175,0.000738597895207385,1.0355310509353516e-06,0.9999999999863791,0.9977991520889098,0.08189124425947897,0.979225569713042,0.9999999311219642,0.9999879144502395,0.9999686940723849,2.5809818100135897e-05,0.8958008307968679,0.9997306244128616,0.004768510721427063,0.9999831378373355,0.9999994983535728,0.9999999947436689,0.005187278842789044,0.9999997115965827,0.9998321733452123,0.9978703834805457,0.8932187162393391,0.14980126941126276,0.9999933416356448,1.9148638859451042e-05,0.0044002584567337955,2.0798260327156056e-06,0.9999998312255464,0.03520909603139708,3.336992924909464e-05 -फल,rgb,0.2524336110796271,3.633124939275568e-10,0.21429348375652882,2.2908541056589595e-38,0.00041913644410409163,0.9999998741131436,0.003981422161501707,0.9999999776935937,0.9999999871167168,0.9999999933783543,0.9997707005225931,0.9631704909929939,0.9884817445014185,6.32577769179961e-11,1.823930609986723e-42,5.700595629752461e-10,0.999997289592061,0.9999960902225637,0.9999981759245055,0.9999999953667775,0.999999934637106,0.9999973036952866,0.9999999203409741,0.9996488072030378,0.9999505103305067,0.9866542072495705,0.00580139807246469,0.9999753213366385,9.191138741837699e-09,1.2072822467912726e-09,0.9999998756406315,0.013436586514100388,0.9999999284888912,0.9999999982360941,4.220231705225277e-35,1.134158412328873e-09,0.999999989394963,0.9999998031653955,0.9999998628634644,0.999999975754935,7.586001616353406e-36,8.777924896015816e-07,0.9999998896754638,1.4336721619732935e-11,5.09146384295773e-06,0.3676031405682083,0.01392856224443485,0.22488578434366363,1.1833760428143919e-05,0.9999999996039088,0.9999998848913286,3.757138126616107e-36,0.9999999890012762,0.9999999685226427,1.6387687640036516e-07,0.9999999596432948,0.9953339418410623,0.9938568716575705,0.9747233114221695,0.9959356482867854,0.9997827273474316,0.9999999548036969,6.405382452944012e-11,3.136902391513469e-06,2.9342477961434458e-09,0.9999636721241256,0.9987410676944503,0.9999999899905055,0.9999999815490813,0.9999999845807872,0.9999999562197522,2.0826806273408424e-36,5.274520829717959e-35,0.9999999904817777,5.582117378478326e-07,3.871306874918323e-06,0.9921371412252905,0.9999348860406152,0.999995002625781,0.993205717554625,0.021264565118912157,0.9975531562844869,0.9999999991828177,0.9933237107827549,0.999999980606756,0.9999999987051107,3.946565652717636e-09,0.9999995931310014,0.9805496745878296,0.025602138998381537,0.9999999785561631,8.729369693366872e-12,0.9954835683046993,0.9855343152137461,0.9921859262966192,0.9922516114651664,2.7227064046510626e-08,0.9933172039207516,0.9970479411287989,0.9952855307216211,0.9955706163035606,0.019013898468383823,0.9999999790696144,1.5641933822338205e-37,0.9916937035617552,0.9999998637378597,1.7406776547963366e-05,0.9997745499896342,0.9296895739762059,0.9999999831270211,0.99929973486437,1.1422120256696683e-36,9.49696317492462e-40,0.929810763606641,0.9984628154416536,0.9995301193512915,0.999999998007504,0.9999191157356662,0.9554229164244379,0.8373879864584809,0.011738000248229019,0.999463988772093,0.9999999994695812,6.249899563646875e-35,0.9693368346081623,0.9999998160227564,0.9992413920549146,0.9999999980615601,0.9999999995918114,0.999999999648731,0.9999999563027412,0.9999999990355783,0.9999998621431417,0.9999999903319275,0.9999999982042251,0.9999996513290726,0.9999989632190818,0.9999985882325886,0.9999999996036348,5.548911422952424e-10,1.6662819502716065e-34,1.1169025500296699e-09,0.9999999603540033,1.4214501599087463e-33,0.9999999970990661,0.9999999875051643,0.9999999142083293,0.9999920171080372,0.9968915168090098,0.9998866218811328,1.2372299447302326e-34,0.9999999996712727,4.323548073701341e-09,0.9998021255735874,1.5275986345153344e-07,0.9948562486105756,0.9798159438415616,0.9989139912988036,0.9983515343101731,0.9999995225040781,0.9968451145977354,0.9999993476742964,2.9634084229158276e-10,0.9998224480754467,0.9998958123054522,0.9999451272002916,0.9999654908355493,0.9908662503761977,0.9965739557269778,2.78297937015264e-37,0.9999999996206985,0.999999885403104,0.9999999997452527,1.9811326627363986e-10,0.9999999995791138,0.0035862868033707347,6.6279003587323505e-12,3.0180484223418416e-40,0.9975872574599508,0.9992818825937123,0.9997336134362181,2.190085856445992e-10,8.101301670680089e-35,0.9999999285480616,0.9999998642399268,1.4564717773634565e-06,1.0859325116006348e-29,4.438160928196733e-09,0.9964866690626397,0.9819779235692513,0.999821716427149,0.9999999987509149,0.14635899967768315,0.9999999817139112,0.99999999971777,1.083860561917736e-05,0.9999999985077848,0.9924126621925595,0.9999999148677371,0.9999999745614059,2.050179285754106e-34,0.9999999996814781,0.9999891475543239,0.012324067326969479,0.9998666157125071,0.9999999772167242,1.890405939548941e-07,8.414773168717245e-36,5.737411644880368e-42,0.026587434853993223,0.9999999995471607,0.9999998894910846,0.9999508319857274,0.9898917613226113,0.9999734023474688,0.9980925446032838,0.9505833189978892,1.2785837694842009e-11,0.2860025882838755,0.003107572372452694,0.002716228252732955,8.080660900450702e-34,0.9999999607829384,6.717144302171679e-06,0.999996119246147,0.9999946183127121,3.72310614359764e-10,0.9999985558914,1.2107813282647997e-11,0.012087534396433881,1.085503717332551e-37,0.9999999983222381,1.126881068808524e-34,0.999999978892393,0.012652686867716537,0.9677893767125115,0.8646453286064404,3.2523257128656487e-10,0.9999999996573121,0.9999999997320164,0.9999997856527059,7.951475623766213e-34,0.9999675219150964,0.9999186747814024 -फल,shape,0.9993950467626952,2.6241563553744274e-05,0.9493213598809712,0.0013982973763739192,2.038457737556749e-05,0.00025916904372454873,0.00907879663266953,0.9994980725353562,0.047621003358130666,0.9970258005297821,0.0018923779524125958,0.9948675801530125,0.29321146685802585,0.048716803675350376,0.000404159328540433,1.844200126247107e-06,0.9997605694608556,0.9998659650387848,0.9999995829322467,0.999999993336899,0.9997669359524269,0.9992245339243014,1.5732560145174498e-07,0.9988144017201482,0.999716889127274,0.999037596718579,0.9999964639387977,0.9999887357043922,0.0040987831618451275,3.411196755174995e-06,0.1394966948712889,0.2435748044115345,0.00019243249043406475,0.9999995779732309,0.00032779881833261914,0.05423063414277487,0.9998323527003604,0.9999777193767302,0.9994889801294257,0.4560515511491949,0.01937836855234963,0.7470748017775404,0.0038387676658128557,0.0004957830397481827,0.0021636633542701073,0.0022675556685111354,0.00024188524526314628,1.2630852121226929e-06,0.01642307434011927,0.9999860392974166,2.1310018802836964e-06,0.0007777221313324026,0.9999989674563124,0.9102230058038441,0.00045640107755137884,0.003717664808947007,0.9779292805277725,0.5415919167092268,0.9999963122121913,0.9511560344143848,0.038956846315887875,0.9994028067103518,0.0003189998844557196,0.008167364035393735,0.0002883474860866894,0.9999262416525622,0.9996092892377854,0.9999117461487026,0.9997758731456828,0.9976882042744273,0.9881210187717163,0.0006041154108557238,0.19440467825317356,0.9994627114134971,0.00017800693241043475,0.2597715348733085,0.9991716243602322,0.999971713425213,0.9999949682839943,0.0024358327709603305,0.9999907639450913,2.203053605040084e-05,0.9764431091376781,0.9865894326100818,0.9910504231676027,0.9989781761939194,4.470178559156504e-06,0.9999999675587271,0.9999782637755373,0.9999944377099634,0.9995466013976118,0.9999881985417399,0.1705393982124306,0.43293890164419824,0.06267147730966299,0.9997923336220483,0.0014456730893595568,0.2677019558905804,2.7639925113532246e-07,1.5210246956883076e-05,1.0189193850872033e-06,0.0001300651635152619,0.8917003902820323,0.00022851479821483402,3.612896108966227e-06,1.4466141687241933e-06,6.26192581293545e-07,0.9995609334313372,0.9991423081706918,0.9853150732042363,0.9995187296591295,0.00026858373310689157,5.256964092439248e-05,5.141580122799602e-05,0.999973877701961,0.032656898166552616,0.999998024079264,8.140176214479422e-07,0.8448322157560357,0.9875370775112835,1.0338339585253163e-05,2.8443277559206235e-05,0.9999953960040291,0.0004202340314074435,0.9818905472287407,0.9991953864680101,3.545398352011611e-05,0.9999933385011137,0.9999927197174936,0.9999934067410142,0.9999999832625436,0.9999686071968603,0.001690347848263551,0.9998968924039073,0.9997235197923297,0.9999319293390014,0.9998987978800349,0.9998943981567141,0.9999666765692931,0.00016000317966101163,0.0003920590117707698,0.06711201236122596,1.1212592209558353e-05,0.00451067135219697,0.9997748002598216,0.9994561932237169,0.9996769231276428,0.9998312761740091,0.9999220668919794,0.9997145941945046,0.0002956009410900215,0.9962872135287361,0.001246309709191706,0.042899804468006605,0.00013961643182232864,0.17224050078409514,0.9948675801530122,0.9998425035855999,0.9997829146935717,0.9992944113346958,0.9999148843892807,0.9997523671854367,0.999991388772702,0.9998773323712069,0.9995986019837584,0.9998638010639153,0.9980438578276999,0.7016708476995877,0.6879535071710073,0.0013830626478981917,0.13781459406589797,6.662800640709096e-05,0.9998733485102025,7.735238326543739e-05,0.9709132868606465,3.258758197463618e-07,0.9623159382060497,9.699565198579936e-05,0.9999384676461509,0.9999973426120854,0.9999664301727333,0.02178479063506274,0.00027784216448111714,4.047931994669637e-06,4.3145446842322845e-08,0.008267797804836125,0.0013197070480589935,0.9425478827122451,0.005230655346120727,0.22390844101375973,0.40819818034009214,0.9991457648417531,0.9999937252743069,0.9992762498017896,0.7064005238857384,3.159354861409356e-05,0.9998351552588182,0.0005805620913030855,3.080978236705954e-05,0.00015601129448885033,9.267047551195335e-05,0.960448091823857,0.9998691006175221,0.9999999964279886,0.9991720138160367,0.001458260934149822,6.608006126740058e-05,0.00014053604341862376,0.0004767247062229525,0.9999586955150924,0.9999989786088662,0.9999989435949017,0.9998913224959595,0.7199779974400273,0.9999365395044677,0.8739853954378587,2.7558343705241316e-06,1.1137249945689097e-07,0.0008778186325163549,0.04852706861053418,5.181055674282943e-07,0.0009950267256762452,0.982969580215333,0.2421652724597544,0.9999939171102654,0.9992990105851217,0.8282003697244004,0.9999447511057048,3.653150442438991e-08,1.6369945686192646e-05,1.5503746942574436e-05,0.9891857033610153,0.6115000567660661,0.9963015732125405,1.0338339585253309e-05,0.9877819387380415,0.0024635058668448814,5.1016367552973044e-05,0.9999658912899301,0.830763096858064,0.9999941953934669,0.0004305329691124506,0.008458564081015316,0.997885137504969 -फल,object,0.9673150990328996,0.0005202578978100548,0.6965603891528912,3.6684221854693615e-06,8.687019750993237e-06,0.9991827310776568,0.9998985091060644,0.9994322247034312,0.8447787670780298,0.9978964700154497,0.9165165470197497,0.999423774874434,0.8836119003975107,0.05985569718048631,5.025862973035515e-10,0.0020494219070494885,0.9998656532417113,0.9999320426400113,0.9999997391888499,0.9999999475799396,0.999984198832721,0.9999931462028893,0.9939026159406271,0.999640545402488,0.9999903306742386,0.9999726915752128,0.9999978334385453,0.9999924636107821,0.6602988576283909,0.0001664703908604339,0.9994029411298853,0.004010641559283331,0.9967817451600327,0.9999998849822339,2.3502006891081133e-07,0.9994216369895146,0.9999999440117038,0.9999819009441588,0.9999853754753889,0.9999990295320907,6.212531060268518e-08,0.7760705917027532,0.9788884698752711,0.0002416726487778146,0.42114890053165543,0.0032128300827884045,0.00028303075151045053,0.00016772325516819324,0.9996635023496167,0.9999997658810458,0.9981742693886924,0.00012633543513921558,0.9999982606360418,0.9999624645272548,0.0003769118877632879,0.9999949059732811,0.9994536989431644,0.972338226648134,0.999991862358389,0.2081232560051727,0.038422542838708135,0.9999734110923798,0.8172994943036004,0.0009050989963773754,0.000327231314392705,0.9999908830989104,0.9993913672500072,0.9998531270476939,0.9999317249431031,0.9989331832417211,0.9980736236377036,8.339825736134352e-10,1.9369793379632743e-08,0.9999986536246932,0.001001035319506863,0.003880501711133424,0.9999571395071883,0.999960737860334,0.9999980708322471,0.3208221824066894,0.9999057173347978,0.9673936817665464,0.9997340257421041,0.9999457640273263,0.9999844266420616,0.9997680017061727,0.006462190384251216,0.9999957566649748,0.9989144010385084,0.988699926102265,0.9999772946149773,0.9790374955728592,0.9965082381794393,0.936590399150521,0.9881827197272139,0.9999396270893457,0.216010837788199,0.9135951568991452,0.3822807854721044,0.8782907713314891,0.22837055928066113,0.0002729705932363744,0.9998159591255338,6.88550182410695e-10,0.6524889996746633,0.8835704448969476,0.00010502379139553851,0.9999408559158193,0.9996079988038239,0.9999973333038717,0.999581465669922,9.057526785178438e-05,1.4013810831419392e-10,0.9569643620706788,0.9996550108810325,0.9976415387511802,0.9999999953061403,0.2521506376820322,0.9007758815040942,0.004217360056684363,2.773719475351812e-05,0.057042041222822436,0.9999999556316117,1.4830926440514026e-08,0.9957821516236893,0.9997773610713359,0.9862226480628453,0.9999999934624053,0.9999991140662841,0.9999995218029811,0.9999984677172808,0.9999997392686322,0.999936104661435,0.9999955225704538,0.9999999609699253,0.9999499686226997,0.9999634618937192,0.9998431164872074,0.9999995413884604,6.648413245365692e-05,2.0796684186742016e-05,0.9970673548095901,0.2949347235676003,1.0298989210671675e-09,0.9999776695642982,0.9996817695642832,0.9999914941217982,0.9999912560889213,0.9999680340833436,0.9999829029497564,1.831768155336623e-09,0.9962438921911873,0.0024709850734010194,0.10896235442286933,0.00035842800906946517,0.04828783181223734,0.9995100888605124,0.9999629439273429,0.9999607537096288,0.9997505423577818,0.9999938734575294,0.9999641089489444,0.9998751525090641,0.9999662785346802,0.999959684983778,0.9999899292830966,0.9999837348113022,0.7424991386146138,0.9940110451428853,4.892529561251517e-05,0.9917637674834371,0.9973644061897983,0.9989852118579376,0.00242526706827008,0.9995716829069299,0.9962986538899298,0.607214168192229,2.917616297127106e-11,0.9999138609065066,0.9999946040325128,0.9999798187069705,0.5395559585080348,4.2648555655690136e-05,0.998961379216804,0.6837953109936504,0.9996979826593227,0.00014518685137232255,0.0005225892341054443,0.003722532880356848,0.933379374216856,0.9998233383427075,0.9999951729543719,0.9999975992633997,0.9998366441678426,0.9973746357921863,0.9978030214555784,0.9999999202885116,0.969771709984744,0.9997676720558071,0.6221012051378898,1.3860654531568428e-05,0.9989766069805475,0.9999879844766941,0.99999977835347,0.9999551890034789,0.9999499707862648,0.00011810999372966125,2.146863736512836e-07,3.27722913428917e-11,0.9999723480093051,0.9999999548645109,0.9999750774094548,0.9999952081816745,0.12152111070287594,0.9999821316456116,0.9999382054727585,0.1925223717939757,0.002359482195504619,0.0027470478444086366,0.015186807831348284,9.293571231611008e-06,7.383732941506336e-11,0.9835222546220281,0.038386652790368056,0.9999996733990347,0.9998492460558187,0.19172636008430716,0.9999997082219237,0.0003377451136086286,4.491043436331124e-05,1.2248851951723774e-07,0.9999615615225106,5.715112860197636e-08,0.9999865611731632,2.8470737028286665e-05,0.012976919168767797,0.009429128372922535,0.00016748465237944585,0.9999995245976563,0.9999115500160268,0.9999065539414984,1.3510130427388801e-06,0.9964723133100705,0.9996947839311427 -फिर,rgb,0.9990170260825048,2.578337878676683e-12,1.7056148606218752e-05,1.293716666589067e-06,2.232785531934806e-05,2.3688938689466587e-07,0.9998691284485605,3.086663513307911e-05,1.9776938025169253e-05,5.0193041686139965e-05,5.552544986994256e-06,7.005187324054643e-06,7.214695474480483e-06,2.3006272993925797e-12,4.787175083331909e-07,0.9999977480243613,0.0006954347045398859,0.0004570917247647598,0.0006737634485801709,4.520332576636136e-06,0.0019144102697433037,0.211139448055966,3.6174999973252634e-07,0.6452986989135886,3.0734813815090963e-09,0.009087798677220588,0.9996318373829679,4.123281172896856e-09,0.9999953360552708,1.7602019465922684e-11,2.35695638761799e-07,9.588330419544976e-06,3.1473319318959753e-07,0.0012256423078463332,7.78487428540895e-09,0.9999974365040475,5.122522729477496e-06,0.03029885202062717,6.912494165559625e-08,3.93834842923367e-07,6.555642519110319e-07,8.366390190421135e-11,2.222449900986666e-07,1.3768963166666212e-11,0.9999815825078893,3.2320331591771563e-06,7.1544994793406e-06,1.7386486669164592e-05,0.999975687301956,2.1183769258996126e-05,2.5424157906484777e-07,7.269775464189248e-07,3.4896839792083604e-05,4.930455403048663e-07,0.9999921116315831,2.891907612401268e-07,6.99313265852486e-09,9.291794881512334e-09,6.7250627858347995e-06,7.014341112714933e-06,6.018738038227855e-06,0.0030009728052077596,0.9999984280086196,1.5098617087775194e-10,2.86451772311055e-11,0.6523279922502526,0.03543989810225143,5.312146783720197e-05,3.359678661260251e-05,1.9920109160876053e-05,4.0432931295171697e-07,1.1372244974193452e-06,6.673627096263277e-07,7.901028582470702e-05,5.559283996155618e-12,1.0076519335808057e-10,0.01751046094558135,0.6020688893653293,0.25840862619777866,1.176235730366812e-08,0.9994822520102074,9.25702590601455e-09,0.003192688414911181,1.908585433641421e-08,2.7109064936496607e-05,0.004434325983414141,0.9999962621680083,0.03665258638828263,0.9941040130332278,0.9994316905266509,3.742171327085327e-05,0.9999987099589609,4.907990856899912e-09,9.486893615267213e-09,1.3689713436545994e-08,1.7211830430993095e-08,0.9999942577701186,1.9412092946287317e-08,8.225393402975014e-09,1.9236184302739194e-08,3.013845083417711e-08,0.9997735936220509,4.331509858676391e-07,8.819520685909669e-07,3.15598334040639e-08,2.194960668271168e-07,0.9999746129557673,0.5875402901187027,0.0026619360597723287,5.257928565123594e-07,0.006736624268077924,9.025446414340448e-07,8.94060432308624e-07,3.627685268733338e-06,5.3501150736714606e-06,4.680130629160063e-06,0.00021204414901066323,1.4835191243607308e-06,7.72848585092013e-06,8.031515180515053e-05,1.0919114295024996e-05,2.0668970172900103e-06,1.379692560828946e-05,9.498098687532716e-07,2.7957722183079314e-06,5.375459676312881e-08,2.0182187559601423e-06,0.00014232095273067818,2.149721467391095e-05,0.0006499991787215863,8.227093201665112e-07,0.0011538042342776225,2.336422413661682e-07,7.259755034240984e-05,0.0002506601957414856,0.0006871509807322285,0.0007347485851973624,0.0005892538043670921,1.8160563468203888e-05,1.8908810498250856e-11,9.390658570152038e-09,0.9999964382660885,4.439768979434037e-07,7.849012851892875e-07,3.752808205917329e-06,4.252481963894832e-06,2.0371252508516148e-07,0.32155285858643273,0.0310488948699015,0.6940559347650294,9.624191319897514e-07,0.00011453723398246322,0.9999963979486227,5.453220879775398e-06,0.9999922234926559,6.628322874743034e-06,6.0372881566976625e-06,9.201664951778684e-10,9.34515574560841e-10,0.0010229072473798978,6.337822984339852e-10,0.0009836956391273746,0.9999985429324391,1.8203632413874173e-09,2.2952896590452313e-09,3.2571484029036074e-09,3.6665572986242404e-09,6.002403553521174e-06,6.880287772202595e-06,8.910990441908428e-07,9.138201359828394e-05,2.5389183453721327e-07,0.00013264823662302648,0.9999981084322447,6.298181099740108e-05,0.9998733856873078,0.9999986996596821,3.641887108391816e-07,7.415207812275341e-10,1.0676245214687487e-09,1.554250357357308e-09,0.9999982466644339,7.060051837949371e-09,3.6435544391694943e-07,2.1905540472250863e-07,0.9999857609776898,9.058750671924212e-07,3.366522364657015e-12,6.927429946102305e-06,6.4693390913975385e-06,5.846137495124896e-06,0.004654250057881041,0.9992052271014129,4.578911977362591e-06,0.0002843901141583458,0.9999757031907976,0.00017100601877991813,3.371122640157963e-06,2.8774901374747093e-07,5.973317421917047e-07,8.519144303875334e-07,0.00014694224437434027,6.162286967353578e-09,0.9995050288823852,1.6620805456200088e-06,5.108519945120677e-07,0.9999918773365971,9.25109188800032e-07,5.789487113248569e-07,0.9995106440891267,0.0016342153234821578,0.03338671870299873,3.0700559123691386e-09,6.578984611058466e-06,4.83643394187046e-09,2.719966728072134e-06,4.702895926902454e-06,0.9999987230676662,8.009405860531087e-06,1.128509774280473e-05,7.136987706606061e-06,7.78719933527957e-07,4.44568030071735e-07,2.065961769870509e-10,0.00040177723350983606,0.00036621730318425,2.5861764188824874e-12,0.000386274117104812,0.9999987212844095,1.094432138271257e-05,8.942097118135567e-09,0.015488627867764946,7.583108953658004e-07,4.691588035978216e-07,8.818128254549722e-06,2.83944406376702e-06,5.569405393532828e-06,2.1235997203389465e-11,0.00033813500353316057,0.0001519228832130632,0.07451809991381725,8.348159797450748e-09,5.225460100015295e-06,3.812627571666634e-06 -फिर,shape,0.9641765648976276,0.9689730623008508,0.0014361494505363143,0.798331600650051,0.02555347940683423,0.9999208311373762,0.9990302907883427,0.9997623108468394,0.999972621805521,0.9976326949192553,0.09125515170651823,7.497587932719434e-05,0.06552506504113423,0.8628704943866026,0.22979309306330195,0.9999836882904273,0.03879010528710926,0.8950277923812882,1.8413323702266018e-07,3.186813875909117e-05,0.9310224964688009,0.93859121789347,0.9998795357472465,0.894515556549711,0.00013155719511099512,0.9882752672444993,0.00030238681773090824,1.6816919414538717e-05,0.9993291557409472,0.9999112804955465,0.9992039662666244,1.0474185855539824e-05,0.7858939524891738,0.0001586666848843892,0.007629911547462245,0.002246532236772349,6.717795811840963e-05,0.0029700564732609994,0.00024125663445235667,0.0013586635432584443,0.9998768282591001,0.9970879216865502,0.9780951630535397,0.9978752702179128,0.9995633375397186,0.005460797128679084,4.389628868359939e-05,0.14090668488768798,0.9981417207632629,0.00041665935560157645,0.9977822344600459,0.7346512549113058,0.002650948455896923,0.9948600404707114,0.9996519206987377,6.919637108953283e-06,0.00027582249623333746,0.027488812253519877,1.906421215713057e-06,0.993846330064368,0.9968069756840457,0.8881154491364018,5.248918711871735e-06,0.988222223477861,0.9993406902356284,0.627357456146968,0.22705227588567847,0.7573393100830031,0.3516891081254779,0.9939343188052095,0.9999890071580052,0.9979452905546774,0.8784644831233549,0.1071690011982858,0.9991021426103446,0.9950866599058193,0.872301432878165,0.002867688259690875,0.00017871536349425816,0.914705094842132,0.009940625122384097,0.6091818737811893,0.042085405873484215,5.419776230292458e-05,0.547526859631885,0.1313329929854228,0.9997170999067675,0.00774789243701485,0.01660174614053696,0.16808619385978787,0.274953120464627,0.9996241070297978,0.00017923722340393885,0.014418435575034593,0.00021402696828449748,0.00012253175537814206,0.9995349421985021,0.0005075119581113957,0.999999991956796,0.5056874019116873,0.0013439678381134041,0.9996079852545492,0.6884823103415404,0.9854979901947852,0.9999999048687294,0.9990030145851728,0.9997094691035655,0.25668964068796096,0.006958424547074082,0.028617497915270136,0.9474253266990108,0.00023080351457729117,0.9995798123282555,4.565851369550148e-05,2.3292026969994817e-05,0.0001010288956397162,4.751623637411404e-05,0.8043917712987525,0.0005989687358348712,0.9315083117410976,0.2536729619129974,0.2951728681865954,9.244608060606428e-05,0.987575019710861,0.003942961046518091,0.0004757459948738119,0.0003693703602604427,1.4120830283578805e-05,0.0003071431742162602,0.0009021403059556164,0.00028568467612149015,0.000656191182575221,0.9999092921376483,0.30460116930865616,0.0003503425589131937,0.06890517647800437,3.3516836047875714e-05,0.2761278349493318,0.0002955745587575619,0.9993200879378483,0.4638484918610113,0.00024380320348332772,0.9998941169271036,0.999615896259778,7.290562691091446e-05,0.0003294327311055095,9.166675503027458e-06,0.009522201992872844,0.0034137218253017434,0.7708896466599812,0.3896264226634627,0.9940307217098999,0.9997081869335537,0.9778816034827247,0.9999610373165022,0.9967291919262127,7.497587932719514e-05,0.00016029730152673172,0.0005823783935167404,0.9976011637600255,0.0001643857610354221,0.32708053202265264,9.879545769358994e-09,2.653782766374655e-05,0.0002846249355935927,5.824597858478355e-05,0.0018499536830313813,0.994672890464725,0.19773419672786777,0.5337541842272698,0.6873054835507304,0.9998988341656148,0.9925172817694824,0.9995050239303851,0.290887066809839,0.9999193699743328,0.9987245336881718,0.993808686430829,9.26986778948564e-05,6.19673485860372e-06,4.67510206691372e-06,0.0028136213864485638,0.39457332873906786,0.9999986925428991,0.9999019996090726,0.9991099796261528,0.9859478751969637,0.9997681047452511,0.9999538940412753,0.006082644598955243,0.9987734222948859,0.000991196872676046,0.02383789421708595,0.0004442441489259761,0.9926571475784361,0.9994760870608328,0.00031818413786808354,0.00011637156796645257,0.9826422758351427,0.9710298082582639,0.9979037034746382,0.9918920910023443,0.000949044004673479,1.5036500871465507e-06,6.0924958632133596e-05,0.7917056961394024,0.9999059108288297,0.8736832628454363,0.9662081486905856,0.0029405571604469833,3.315277216567317e-05,0.0004797169631486416,0.0001375110892961649,0.9949794665193966,7.691932383259935e-05,6.717699748298398e-05,0.00011680429737472042,0.9998220624709279,0.018657658749733526,6.302016150146816e-07,0.11160400748547035,0.9993282556793236,0.9999651598675031,0.9959101787436955,8.744490300450481e-07,0.9968230684421288,0.897082723753502,5.437961928861476e-08,0.9998582034430129,0.042819305471204806,0.00012209205394180404,0.010847525185548051,0.6422316621651134,0.9983066162689285,0.25367296191299665,0.021184788639582078,0.004085599051406981,0.9992529018108098,0.9917337579060168,0.7188403175623926,0.09197300421198924,1.6230052984630713e-05,0.0008165811062973007,1.4006532130031424e-07 -फिर,object,0.9975770561841242,4.925295468059298e-10,0.00012324551684790775,4.2897499863974136e-07,0.0002830802510936194,2.1281670217092892e-05,0.999844913981063,0.0006232978461077259,0.00047199826375111606,0.0005303944616425818,7.700738012653476e-05,5.367152748728587e-05,7.004443094483365e-05,1.9288141994816962e-10,1.162366064589447e-06,0.9999974039993662,0.01559815547720842,0.012305060600627443,0.001896934384434279,3.6697759544480816e-05,0.011848368382485092,0.2889880429160589,4.431177868394329e-05,0.621998057152942,1.4807253692861555e-07,0.015156688905156875,0.9960572851909865,1.234176639090849e-07,0.9999728331980042,1.155502298748983e-09,1.246094824894048e-05,9.841457476177468e-05,5.673410845399495e-05,0.0012760094578177946,7.617901336137144e-08,0.9999953146381907,6.280708362971484e-06,0.0105254123028564,1.679509395450762e-06,1.2556928224900248e-05,2.539451276365651e-06,7.078499140290347e-09,2.2974397097127018e-05,1.681290364903239e-09,0.9999690131015009,3.4809724845390597e-05,6.399492061532564e-05,0.00017457830920184696,0.9999253391073103,3.5419666204551615e-05,2.2582590215382154e-05,4.3836801641143617e-07,9.158241408092206e-05,2.755960331958944e-05,0.9999742053764498,1.5879125640068832e-05,2.416661280257896e-07,3.473391980996862e-07,2.3493066396677565e-05,6.711516546708143e-05,5.278675039958665e-05,0.014595990807671322,0.9999939465484617,8.341506553224622e-09,1.793258679743353e-09,0.5998007254947781,0.036471802996939744,0.0002848012178347917,0.0001788673344540311,0.00035443505851220165,9.990713369967942e-05,1.8738391100558804e-06,1.3172542115246021e-06,0.0001873219228032984,1.4689035281838222e-09,7.670830886349007e-09,0.02783580601367612,0.48383605801289736,0.14724260750490745,3.2613493249533504e-07,0.9970235913848385,4.93102565004884e-07,0.0038978359816519057,3.8089413910061925e-07,0.0001191677916280783,0.007236870351562572,0.9999929081187289,0.008802095669629901,0.984545134439819,0.998352590017571,0.00017201344770985966,0.999993500049395,2.0323453712955082e-07,3.9581294427907997e-07,4.920275899535974e-07,5.153006588032509e-07,0.9999892179722946,5.870783681309539e-07,9.014903775537229e-07,6.789047174339492e-07,7.388888072079821e-07,0.9999583530240995,0.00010684817159007723,1.2013732599088334e-05,2.6932159093882366e-06,1.1807652452781487e-05,0.9999627417834198,0.494710270619462,0.0010823183037426225,4.508839203219373e-05,0.014598362407861113,1.1680436554573147e-06,1.5302482188067963e-06,1.1051454096889468e-05,1.0235247983724543e-05,2.106411837933671e-05,0.00022118076098066595,1.4422734046259229e-05,3.1287554599804036e-05,0.0007046578692151944,0.00010256544135674268,1.9021380499984456e-05,2.2028920790945004e-05,3.530613480641273e-06,1.0118927960099252e-05,2.6293938350205727e-06,8.380119993591148e-06,0.00011561241288769641,3.0144718401024217e-05,0.0005477370904094906,1.8772731319985852e-06,0.0012384801018662031,1.858984689543698e-05,0.00021102857453951626,0.00025721603307930205,0.006814941399764612,0.005447310542347891,0.0028893301468151467,2.5774924259239162e-05,1.5483889480324636e-09,2.0403784558337582e-08,0.9999786266245444,3.515029529293698e-05,1.560048817660229e-06,5.8505131277264765e-05,1.9751988315994383e-05,5.835389592371739e-06,0.1738884890369081,0.02690625198194224,0.609522851904551,1.5511371485917198e-06,0.0010789890579231574,0.9999916479366495,7.559993474576223e-05,0.9999718824502847,0.00010659547359539289,4.872739358418e-05,2.844831132543995e-08,3.4983172475041996e-08,0.00409505894741522,1.529532762256624e-08,0.004870295309506363,0.999995474304644,2.783633240882308e-08,9.011241280360098e-08,1.448446814892954e-07,2.232239500072847e-07,4.725657682076305e-05,1.7137351425296932e-05,8.350014586568314e-07,0.0014677023444962596,1.951144151202911e-05,0.0008821153554625244,0.9999957170889174,0.00024914303364569166,0.99987287249876,0.9999939756971751,7.22402665242635e-07,4.670320466512016e-08,2.1224765366274233e-08,2.7218115372442673e-08,0.9999981543543432,1.125919045102727e-08,2.656070166555299e-05,1.5080020880224356e-05,0.9999479239084152,1.953367321202718e-06,8.891551814333405e-10,0.00012080557589192576,6.228668453969506e-05,4.2689608240404594e-05,0.005318004533799052,0.9926104747628142,5.751598082927829e-05,0.0018476534242913303,0.9999631133077622,0.00022939555834539327,1.1564516298113676e-05,1.4979932861201335e-05,3.0450171075648203e-05,1.6064661403603411e-06,0.0005978979301971953,2.1168853291613038e-07,0.9909050422545373,4.4765836205148376e-06,1.4295003884873117e-05,0.9999850284306505,1.5031339045504507e-06,1.7265018149217499e-06,0.9954931873146968,0.0009691025095479787,0.01229950658633033,1.1165907373795727e-07,4.1530137152525086e-05,9.238977540411297e-08,8.163403207377793e-06,1.574809321633595e-05,0.9999994052323429,0.00014034258671947068,7.785817813432116e-05,0.000165622927694922,2.7070588016580894e-06,0.00010382827778126436,8.148242398938333e-09,0.0011259984461602613,0.003910216576523306,1.4399502804792234e-10,0.0011314850316056053,0.9999983002802095,0.0004955300961634249,2.2227120029661657e-08,0.011996729422709174,1.1568279395476476e-06,4.3418456051492153e-05,8.653330242367456e-05,3.5886066842847475e-05,4.628743594005646e-05,1.36668999375612e-09,0.0009624110162125551,0.0002445988761284087,0.03306444082203134,1.9998405715064005e-08,5.76470029177004e-05,6.148437654403352e-06 -बंद,rgb,4.2725631565415056e-10,0.30409358821899657,0.9999714995258793,1.0,0.9999991977021743,1.4094931938393088e-10,3.4994860175325236e-07,3.16225178143567e-12,8.137609892106575e-12,1.2512180694196427e-11,0.9736211246994512,0.9993585876971453,0.9986058451066336,0.5594620164345211,1.0,2.1081923651016543e-09,0.6637594381423999,0.7493874696566014,0.5779743850058139,0.00015446773350878188,0.02498872948207755,0.013085846161071522,1.140165126631332e-10,0.15149857230388705,2.154199735119923e-07,0.9985751912402214,5.510821312775301e-11,2.2641424561232318e-07,1.587247805890188e-09,0.9913348556915307,1.4580912729741075e-10,0.9999936030038791,1.9216525542504342e-10,1.4888181885817565e-10,0.9999999999999978,3.027995642116328e-09,0.0008455921729714571,0.009135132216226983,1.3256527099389474e-08,1.0274181103717821e-09,1.0,0.9857387826692989,2.103090124523558e-10,0.9989540341716786,8.262214450985993e-08,0.9999148295933378,0.9999927440386208,0.9999706278203746,3.634524574198213e-08,3.5505602948294074e-08,1.3846118809583032e-10,1.0,7.31060822406803e-12,3.0613881094826126e-10,1.6209783407132674e-08,7.939911457991655e-10,0.1490193029670722,0.295385194036385,0.9991576363457987,0.9971008512324269,0.9736068374655817,0.011945383965447658,5.536984730975271e-10,0.9911974199298988,0.9955655946519535,0.00999397618957205,0.9816266353927194,6.9341498423907246e-12,3.832656842363454e-12,6.393361818502801e-12,2.6105934217080015e-10,1.0,0.9999999999999998,6.545906466688276e-12,0.00612035023528696,0.9744411265663288,0.997075621684114,0.033108993757029,0.018750957419590604,0.42163579357096015,8.586080787088799e-11,0.1405160588338086,3.0734457805267725e-06,0.6285048258007362,4.006616873228406e-12,8.906703550531252e-06,1.6850629137537784e-09,0.01867755974000723,6.896067915910779e-10,7.443675195881204e-11,3.037708623969828e-12,9.652804753542543e-11,0.06946760138987172,0.4980673480924972,0.5232767411857474,0.6190668169908209,2.9682663520384892e-09,0.6353107853241307,0.13376571398984394,0.555432863094193,0.710332468136536,2.219239421515874e-06,1.1010202948396194e-09,1.0,0.8193982095101103,1.4845642133906422e-10,2.3126775109856708e-07,0.1429990997126947,0.9997167767200789,1.0421557620775516e-09,0.98930577420296,1.0,1.0,0.9994397695077645,0.9934312390929525,0.9832060345949448,6.248067594225026e-11,0.8717988168392513,0.9994591694491392,0.999881180833001,0.9999943170138917,0.9754067303814822,1.549537621863272e-08,0.9999999999999998,0.9988624587001342,2.4141428709997134e-06,0.980747910379141,6.66354104086539e-11,6.971075273594406e-07,1.3705003796668332e-08,0.0007115928707959741,5.740838624711799e-10,1.2462182155483475e-10,6.560568655130468e-12,7.624440240825257e-11,0.20644444759754127,0.4370884171548884,0.5245120669081671,1.359552855541169e-07,0.995631574685558,0.9999999999999973,2.4108903460349514e-10,2.511662476963031e-10,0.9999999999999998,3.887899693636957e-05,0.0009047795505969056,0.0001126587645451392,0.020129470374355432,0.9916513297737779,0.029599713238313383,0.9999999999999998,1.8578154898824e-06,2.8654706990002967e-09,0.9702300567268353,1.52746175969911e-08,0.9974772380390302,0.9989707882859953,9.050951251141313e-07,1.566926888858043e-05,0.24340150823410317,1.9723472047544517e-07,0.31008306071256275,6.199840047622602e-08,4.968223063230385e-07,1.381018339057425e-07,3.103116341712941e-08,9.908791633099745e-08,0.9982261682281701,0.996703382674956,1.0,3.390975086130246e-06,1.4001360064103913e-10,2.0462512737590526e-07,1.057452596779974e-09,4.256415455067447e-06,3.242161634548296e-07,6.415148115430925e-11,1.0,5.32015891323688e-08,6.513138690556635e-07,5.541561384693641e-07,2.46115588593215e-09,0.9999999999999973,1.3545372447889517e-10,1.501808690481331e-10,1.6303181478696576e-08,0.9999999999999978,0.11471317843108104,0.9967710755434421,0.9989221747346158,0.9688856972828892,1.9723773274742297e-09,3.7068765502865285e-10,0.0018131585529530486,2.4192219686910328e-08,2.4206492918313833e-08,1.0693064097397057e-10,0.997308533063995,1.7451310914532628e-10,2.942072338704823e-10,0.9999999999999998,1.6459278636900963e-06,7.258061625700215e-08,4.4565871481049046e-11,0.9183540417144571,5.544643083109911e-10,1.8306431346853937e-08,1.0,1.0,1.6932332428190398e-10,2.0750876227064822e-08,0.003513882092602246,2.745384243475991e-07,0.9984126354112278,1.2595467751339117e-08,0.9918890436236496,0.9993717921946691,1.7522239738745253e-10,0.9999540213863828,0.9999972489723155,0.99999699446758,0.9999999999999998,2.5571152184385573e-10,0.992549342812071,0.751489822774078,0.8040092659126049,0.30214309590063115,0.5477324939843826,1.6054938004620247e-10,0.9999942292782961,0.9999999999999996,1.4826087972871864e-07,0.9999999999999998,8.439076406352197e-10,0.999993626615718,0.9989096118616523,0.999713033644984,0.9976573349278234,7.674910585877986e-09,4.6677530118080464e-07,0.0026382325240549755,0.9999999999999958,0.8798219083389868,0.9289681356302927 -बंद,shape,2.6212466968706524e-06,3.588986136090844e-07,0.9999694910941174,0.00020543826239745154,0.9999999835950699,0.0001035015964263917,0.00018963453286178973,6.1339582465219345e-06,3.4393460858524346e-07,2.1370448268889956e-06,1.5230657876912916e-05,0.00029461986592600335,0.00012320369960358083,2.9475230004768414e-07,1.8981588294124031e-06,1.9013895943442414e-05,0.01917277438810815,0.02446970905283389,0.0007880474164690332,6.434674891864025e-05,0.0007697028284459571,5.6707264227950844e-05,1.5352232289034936e-05,0.012091014330540096,0.000318277564250642,0.0001021987387254816,4.325239358687539e-06,0.0002136171720473404,0.006354170281704598,2.0479730680718115e-05,1.4104258724277643e-06,0.9999997014235916,0.0017907312387107292,3.679605854692003e-07,0.07297492292366524,0.0402712386999476,2.4829244651074005e-06,1.4070208278228298e-05,5.296622802450137e-06,2.3269928188901166e-07,4.647156638476158e-05,6.0803292880483375e-05,0.0002280237229029021,0.00020699369099145404,9.966683388876542e-05,0.9999488317611451,0.9999999715449607,0.9999520244364463,0.00014660305038715162,1.2058915185186918e-07,0.00010527228471600037,5.388284580863497e-05,5.303561514485457e-07,1.778527245711053e-06,6.714038584585941e-07,0.0025973967236629144,9.120183969097609e-05,0.00010650396783502591,0.00019901747873458532,5.437460939979274e-05,1.657768831165663e-05,8.724786520722783e-05,8.664004273810444e-07,1.3657002478376765e-06,1.458964750630254e-06,0.0001010560570383183,0.0009731904352703164,4.1654947371403115e-07,5.57965043074025e-07,1.3485080824466142e-06,3.974136516655128e-06,3.944807701444464e-07,1.6667516966491446e-06,1.8565213552275054e-06,7.731319144032293e-07,1.959279418546695e-06,8.46491784836499e-05,0.0003088913886798856,0.0003623383779558447,1.8444670689712367e-05,1.7380840146217092e-06,1.700910619749585e-05,6.138088974740582e-07,3.0589008786043495e-05,1.3925797541576344e-06,3.171340460262883e-07,1.4205571972860309e-05,1.5920662000102323e-05,0.00010161628485155426,3.8979279678590616e-06,2.1370827135933666e-07,2.0569738746757356e-06,6.23759090303868e-05,8.553517809691787e-05,7.506527402370823e-05,0.00024964457268093944,9.565410349560525e-05,6.0425532436148723e-05,0.00024859769930903053,1.4991411285699848e-05,4.745616506807368e-06,0.001084696773619661,5.3467832627604594e-05,0.0007275162951384226,5.464603752726128e-05,5.007325419758391e-06,2.3997556513588443e-07,0.005841286975140053,0.0007565717428987283,2.948141324461522e-06,1.952606849046629e-05,1.8782802228020518e-07,3.363666467237063e-07,1.718061871332976e-06,1.3744093083739502e-06,0.0018383943665077696,9.564781319751762e-07,7.60402383344144e-07,1.4202799813407665e-06,0.9998060072562788,0.9999999089714361,3.8994344423763113e-07,3.9908737404542247e-07,5.100435079164074e-05,4.542559411372096e-07,0.00016476081334373,7.216237994863395e-07,1.6997721895825973e-06,1.5757487398830292e-07,1.4172088557929008e-07,0.005923425690111237,2.897720683554686e-07,1.0101982211608364e-05,1.0676554256104576e-06,1.9817498563730914e-06,0.00018873554643477453,0.0004568133176998733,0.00018626339248530577,3.7813154948561e-07,3.0272789284153854e-06,0.10666067139178985,2.214137141832612e-06,6.555585505606357e-08,2.7657001864409164e-07,0.00036837364684386397,5.4518475418985154e-05,7.075284137838786e-05,7.020389435480199e-05,7.938137040612896e-05,0.00010598604016174365,6.46935512811482e-08,1.2372351261082315e-05,0.0001847252697969028,1.700883589726185e-05,1.502147806107826e-06,9.326722689001674e-05,0.0002946198659260044,0.0014537955995383444,5.753402152153822e-05,0.0003148742529989899,1.2649469628175953e-05,0.00048464301840182037,0.9142972927510228,8.167011504089705e-06,3.874757430409755e-05,6.7193503708085e-05,0.00048533832087162575,7.097698342090964e-05,2.813237223018174e-05,0.00020031637802839328,8.721724794709265e-06,0.0006130736232800161,4.902896901034769e-06,4.1194285920293635e-06,3.255270920653639e-06,2.865993604228211e-06,5.124787472625736e-07,1.8419131729449268e-07,3.038179136899608e-05,7.725184829717728e-05,0.0001350145202890226,0.05824639557541715,0.16675942941891161,3.9341331082627095e-05,3.512598061530745e-05,9.409685807915246e-06,8.027717182075152e-05,1.8491723353903902e-05,3.282385266544027e-05,0.00018538035586554747,0.00011379418195602765,2.3055243261253457e-07,1.4499124122818141e-05,1.6392081795519407e-06,2.8049748508296386e-06,5.741953255881342e-06,1.3881026888281402e-06,9.7805581959115e-07,2.069379029075372e-05,7.527308358095619e-08,8.218348995348777e-06,4.190446119349516e-06,1.0055760049890852e-05,6.70960198364565e-06,1.6303489432141558e-06,5.116861288500628e-08,3.771814049486856e-06,9.658017261536712e-08,8.291916253113897e-06,2.3780397177202124e-05,3.147355224715564e-07,5.009522602775958e-06,4.235733775148352e-05,9.157583603740924e-05,5.874943060582937e-05,6.386794874700257e-07,1.6902713490632343e-07,0.9049392112204706,0.9999844779482537,0.9999999737485841,0.9999999888224101,7.25133158177013e-07,4.388770906845263e-06,6.612599855855659e-07,0.00028330013428987886,0.003347873546665211,2.813429126487765e-07,0.0007066881575086544,6.844651733915185e-08,0.9999789938428045,4.5546578387263594e-07,3.0073123843153905e-07,6.371678558030787e-07,5.240413807127363e-06,0.9999999089714361,0.9998270526851377,0.9999342453522396,2.0069343450214236e-05,1.2257514979856017e-06,5.889213555353789e-07,8.061837158760369e-06,2.7624847108589516e-06,0.015134991709461263,5.438975159871604e-07 -बंद,object,1.3943897861679844e-06,3.143651582202213e-05,0.9999881113986171,0.9990112971322336,0.9999999244944716,9.05733723640287e-05,0.0027339203330832723,1.967291198389892e-07,9.386104832181638e-08,1.8113595791830057e-07,0.0017479709886277658,0.023045245096715516,0.01056005041770121,4.076751786031126e-05,0.9200896825738024,1.139571999527637e-05,0.37862399889357656,0.4858334241619822,0.006690404978225239,8.963746080454374e-05,0.009797318956392716,0.010349224673883075,3.877779399873733e-06,0.4511968355000787,0.00048022079381415125,0.22146906316157786,1.8044552307631878e-06,0.0003843357618848886,0.0028625994878807622,0.005624102380968913,5.96589925074606e-07,0.9999994825524445,0.00029772518227577893,4.840194154282252e-07,0.9999521984296048,0.0213216533570747,0.00010539260372332183,0.0002591617462099895,1.6670569489160841e-06,1.7758797569191504e-07,0.9952797191325566,0.018307460474730447,0.0001749837573235863,0.2914609966207105,0.0027167118897291,0.9999631800496778,0.9999998678661249,0.9999665595151959,0.0005201685299237196,1.177628722216584e-06,4.3077565894248935e-05,0.9977114403422002,1.1404537003939941e-07,2.0035567617881425e-06,3.2947631423182583e-06,0.0009737792017325605,0.0006886646454580674,0.0007253101555301284,0.016263749370258613,0.006878131257425008,0.001830439266201133,0.0007892548170929382,1.7924141651679387e-06,0.0004079655378519007,0.0006468375574035361,0.015150294547701204,0.29954388068500915,8.193174885481442e-08,1.0405764092774949e-07,1.2057324990245458e-07,2.7201903162874777e-06,0.8112600366672303,0.8840683109569556,3.1211809511599925e-07,1.395220336728182e-05,0.0004496945078666443,0.23955810155462054,0.049891613246973096,0.02804315676117075,0.0011564351715344506,8.515095937169995e-07,0.0009245684541114636,5.200050478002202e-06,0.000622329849959943,2.7402552687581163e-07,5.492038553048475e-06,8.873446813384954e-06,0.00037134013824268044,6.940667754833792e-06,1.0360818169323724e-06,6.200832948505144e-08,1.594484015108162e-06,0.0005327973865315352,0.002394412096054756,0.0014330547985117335,0.0018888089796977924,0.0010598258511517213,0.0018708602140514654,0.014650601141863734,0.00044360682090245775,0.0003924726780349109,0.004455662703979912,2.780591548732707e-05,0.9994063785239842,0.02397950044818692,1.615805033119748e-06,4.041164391549137e-06,0.39199916299201903,0.6173953755545375,5.04382940572709e-06,0.03154886110662547,0.739277781515694,0.8845376600182177,0.007133390608498608,0.0035279193039446603,0.33001527229632543,1.1799147299524694e-06,0.0006823292526352124,0.002564969972458639,0.9998601415386373,0.9999994875732993,0.0010438774760364539,1.6000600880745944e-06,0.995754921569855,0.004287420311073847,5.063848431258005e-05,0.0018466808746094542,1.3859300275077811e-06,3.1700630843255697e-06,9.230130050757356e-07,0.002046004049073528,5.181168131385576e-07,6.432855454719639e-06,2.0511926453740784e-07,2.067202350613974e-06,0.0034948773531271516,0.0567651839817756,0.019062346962412702,2.4659307005081685e-06,0.0007851885151247886,0.9999643747847233,7.4332300792893505e-06,1.7738571483570843e-07,0.8395105003093916,0.00015177316125095685,0.0002661316065738139,6.829511391379032e-05,0.009494253371745788,0.14520651799342396,0.015197163503895966,0.6794579617101657,1.3029584952085667e-05,0.00010814580884218063,0.001960532653821952,1.285418184912246e-05,0.008437148578068291,0.020048800048829106,0.0015953768038247207,0.0004852797381152664,0.003956506039896961,4.512663406811798e-05,0.012681383016436334,0.5141258892384128,4.166373880092264e-05,0.00011713732460030754,0.00011305301936556535,0.0004935488712112506,0.0068342774366823116,0.01028422582886547,0.9993850187070031,1.5369861554421543e-05,0.00027900855957410745,4.637918574194025e-06,4.755371313968645e-06,8.982364265308214e-06,7.617825646722856e-05,5.411616256355851e-07,0.7956970108726744,6.22424648630618e-05,0.0002023868361785281,0.0003659457093429342,0.014253646703007439,0.9999690662343566,1.1502678742766538e-05,8.963730017551418e-06,6.135132229607174e-05,0.99614954325303,0.00015559363109961567,0.005871728799677139,0.016929826068246084,0.032776733659211396,4.808774287644866e-07,7.6271135986199135e-06,4.558378243533749e-05,2.1989752895019014e-06,7.407451214941952e-05,1.5681033659010145e-06,0.002296372993186465,1.617249749039288e-05,9.437111480258468e-08,0.988325032983177,9.506011692674488e-06,2.52531029108542e-05,1.921568065149426e-06,0.001525893868622211,1.3045739176121208e-07,2.8241932414562992e-05,0.7244601537090043,0.9657918016958253,3.891830605919736e-06,2.2263724043638496e-06,0.0001119450261582252,0.00012204974252791087,0.010332364433020774,4.238550067760847e-05,0.0013272883024504636,0.0019290998211446654,0.14290121532089795,0.9999872345349066,0.9999998596519794,0.9999999374152694,0.7826069781542806,2.658297492562566e-06,0.0002871226416358026,0.008664100911653235,0.13358107345234857,3.5574397229203485e-05,0.008403801525043124,4.4473945725482847e-07,0.999991039941529,0.5788974842445551,2.302846379326927e-06,0.8125810078644553,4.294844178795049e-06,0.9999994643162108,0.999787121769119,0.9999212140828119,0.00329493561125184,2.98268229510287e-06,4.418120709093746e-06,0.00014027864566774773,0.6920817997206531,0.6126062105212509,0.0010473534158198122 -बन,rgb,3.470747364563598e-33,0.9999999999205622,0.9972340846285996,1.0407848173407757e-06,0.990185866502402,0.004701603744187545,8.251536311217567e-34,6.329532140074388e-10,7.833193840663547e-09,1.5366319698431543e-09,0.9997163958637735,0.9996814783798734,0.9996469935093495,0.9999999999389211,1.5268744034633388e-07,3.0096151997940226e-45,0.007306090242322693,0.02664395173403998,0.007078931089766319,0.9558737281152221,6.405271168520876e-05,5.153125424190558e-12,0.0016401712210641999,1.8257057348014545e-14,0.9999509115935883,1.1752298049767682e-05,2.2116260408131263e-36,0.9999346067640354,9.627316964330018e-44,0.9999999999785629,0.004971501878661919,0.9991046082790153,0.004343981459252284,8.548479884335796e-12,0.46972495855589214,9.63151572674612e-45,0.9809314390300138,6.173967042335407e-09,0.9265970348993225,0.026003444666454108,5.3551393223703744e-05,0.9999999999670999,0.009106059023112782,0.9999999999775497,1.3030531327602932e-38,0.999940151789237,0.9995464984506173,0.9971152273617168,2.0496724955322435e-38,0.0003244084674216097,0.004049766255911391,3.1886595451066756e-05,1.694533084099073e-09,0.0035690982122591752,2.737535676574747e-41,0.03267979319823425,0.9999999921737258,0.9999999917703576,0.999706717446649,0.9996491417535532,0.9996598023150528,1.127003363053483e-05,7.10199130336348e-47,0.999999999957303,0.9999999999776255,3.8877866896038575e-15,9.521530107237047e-08,5.525767214901848e-10,6.938674888845433e-10,5.345194423075778e-09,0.004168646643153728,9.288272082751257e-06,0.00011474948301749377,1.8547461249244715e-10,0.9999999995818931,0.9999999999619569,1.3385089719743054e-06,1.6522490170645206e-14,2.4721919284023983e-12,0.9999999905969627,2.036546736069818e-35,0.9999999882886751,2.7367029475270854e-08,0.9999999855785613,1.2503149379732531e-09,2.4850468983638415e-08,3.2670246650038366e-44,4.766781133251272e-09,1.7991110500245818e-29,2.556842226336672e-35,3.7170704076366317e-10,1.9290296281782743e-48,0.9999999929225931,0.999999993679145,0.9999999898086299,0.9999999874509963,6.444143631669201e-43,0.9999999853425519,0.9999999897865893,0.9999999839984526,0.999999974254187,6.592411164074946e-32,0.023831904640679417,5.495650360786266e-06,0.9999999765830939,0.005772789123163446,1.956615270589049e-37,4.377937169677414e-14,0.0005510958978246614,0.015531497476201203,2.27293074405816e-05,1.2052281096553102e-05,6.02582587183595e-07,0.9999262706437618,0.9997912378714429,0.9998218151343428,3.616897135679318e-10,0.9999764692546415,0.9996037930830499,0.8979771891385475,0.9987715422188039,0.9999677717390663,0.0003637961303721928,5.6631274294536846e-05,0.999956973354673,0.9997602779799133,0.9999706753385524,1.1465476841569227e-09,0.006360494035459703,1.3546835873498276e-08,0.9995713042208927,5.900876446775813e-11,0.004059204118638876,2.3096211016348009e-10,3.0259873075890626e-10,0.0036093526527111097,0.00454250940732903,0.009578834205538152,0.0019284769610600542,0.9999999999787355,0.5219903137218942,1.7387055486527427e-45,0.0033275051792982487,0.0003080902125891243,0.9219550510106763,0.9879062179809635,0.9998969352992002,8.607118845023258e-13,1.7285408307998353e-07,3.4563481612910267e-15,7.278289229743034e-05,0.00022490264213422345,5.397641909248197e-44,0.9997211425829788,2.3691279965874587e-41,0.9996952713594857,0.9997678643640867,0.9999967028817537,0.9999997551141733,0.0012592289160079637,0.9999885153396713,0.0016072502160513703,1.9356028339729357e-44,0.9999882666012023,0.9999427956051901,0.9995564256272659,0.9998620944711455,0.9997631427665238,0.999659939640415,6.850367001879796e-06,0.0006944967412683903,0.004122891499152864,1.880255385839869e-05,4.696651593984875e-46,0.002220129760290908,6.52506717527778e-34,1.0861015897373103e-48,2.586534055906249e-06,0.9999439463051986,0.9999947420377349,0.9999910674389357,9.688931579620378e-46,0.58105236613537,0.002057603875365029,0.005886264163478309,5.5335241856817275e-40,0.00761577726993455,0.9999999998888738,0.9996553459642843,0.9997281862839725,0.999670913636395,4.130707433213101e-12,1.0934224454633543e-33,0.9907016074634608,2.5662781045207306e-07,1.2761981562065554e-38,1.3451456757168055e-09,0.9999316242138715,0.004471935587212886,0.002353836069094984,0.00011711934057905399,0.00010394606576850841,0.9996393170871758,6.449105149230463e-36,0.9999735971059736,0.0073114071504050936,3.6781007241695153e-41,2.623275923723154e-05,1.6779062155928482e-07,4.0620955799902346e-35,1.4748016306880643e-09,2.56974486236846e-09,0.9999619562835985,0.9997110542911151,0.997990140178056,0.9999514309656051,0.9998693784774328,4.418729503575999e-48,0.9995367068028405,0.9984784888438965,0.9994679752958109,0.00024939661776647516,0.003400577426816972,0.9999999999490643,0.037847667861865865,0.05278978286485745,0.9999999999204252,0.03155279670765082,3.9156054473770205e-48,0.9987683563813569,0.05416329778610082,1.0841304809757447e-11,0.00011843618634909654,0.014715964851892405,0.999258713347837,0.999955607856491,0.9998113741244751,0.9999999999783244,4.401833190462351e-08,2.9350288111881925e-05,1.2868675716454156e-10,0.7193199058452104,0.9996456441449645,0.999847559932961 -बन,shape,0.999999990127418,0.9999997046583342,0.9995719021161656,0.0006131450869831388,0.9999259663425462,0.41291279768582434,0.00021129591677072448,0.9999998672835345,0.9999999252934129,0.9999987677929634,0.9999992262165113,0.9999899820485008,0.9999998631296038,0.9999999221264703,0.9999804592369027,0.9926058815260825,0.0004944301090414095,0.001966583422763092,0.9498356158996717,0.9945525170994579,0.00011390625659407192,0.6871153308585742,0.00011119118281864058,0.6399044351522188,0.9999426038769086,0.16326578864647504,0.6790703051844249,0.9999920203871321,0.9998151447731596,0.0469928799027259,0.6471451706783691,0.9999980559127605,1.8684410570055106e-05,0.997534758264425,0.001430746214689641,0.00014680198038490103,0.5023373581840259,0.9926594568045786,0.9998120633842377,0.9999869233453872,0.005430550936435519,0.046079668003374846,0.9831488212018351,0.9623793076378867,0.958920808736101,0.9996520026148105,0.9999986340624061,0.9937600376147727,8.343296970546562e-05,0.9883003886568829,0.028500517465852613,8.149005363216455e-05,0.9999887527264539,0.12276619594499871,0.9999999842352938,0.00013348979040235105,0.9999989886867844,0.9999919215115636,0.9999990181082015,0.9999999586199994,0.9999998050423196,0.9925152717120016,0.0003258400057087583,0.999999981512604,0.9752721497855633,0.7801048746962023,0.9963597263881508,0.9999992523442055,0.9998493692070172,0.9999999228413643,0.0871787973851055,0.9999998027151015,0.9999999909375924,0.9839234885142343,0.9999998016492784,0.9999999956575807,0.12271525195057717,0.9981003383977264,0.9992851702043292,0.902892085930857,0.9725289607391064,0.8400484239598119,0.9995933816740918,0.9999342050560641,0.9287152380192557,0.9999809857743238,0.13313177047285166,0.9949321653635421,0.9999519156989579,0.9999995882419749,0.9995007872508965,0.999999974964406,0.9999868279489703,0.9999735230199642,0.9999450386540568,0.999996996950498,0.9743049035776284,0.9999998109640085,0.005863552869024915,0.9993123523439974,0.9836202880773357,0.3639378867265997,9.353305548160552e-05,0.0270144015942557,0.2218802807395346,0.02315948521120455,0.9999998213324035,0.9613027098082615,0.9723980172198198,0.00878326211310952,0.8790121718825628,0.971320931694133,0.9999994366683338,0.999911494906044,0.9999741204979712,0.9999188188072616,0.9460069690022698,0.9999956702027823,0.9999737952187203,0.9999999490925503,0.9997755597228963,0.9999238478051872,0.9928033473605439,0.9962004471214486,0.9998290953116395,0.9999362051231383,0.9998194377820486,0.903192864504669,0.9989696278097739,0.9993674305069313,0.999992572737611,0.9369070083444951,0.004098102817139546,0.9977369805564388,0.9495467221836476,4.5979310446807836e-05,0.010456702013449976,0.884804771362613,0.994120564753464,0.9969039791579785,0.7347343438952342,0.00036151872541666924,0.9962835144850283,0.9999005092691386,0.9999949245092286,0.1510929627631187,0.9999265996409191,0.9994532684863914,0.9753366755055071,0.7445162128766974,0.9999958749559327,0.9999999827182428,0.6404548118184004,0.9999999422687458,0.4129314096903984,0.9999985584266253,0.9999899820485008,0.9997705304046094,0.9990334957510721,0.9357715667417995,0.9995755128007773,0.43879801228455767,0.0001431075219351281,0.9999407037045461,0.9998970038445318,0.9999610008295021,0.9980812818462325,0.9998637394184695,0.03053928826122672,0.00041806759206118474,0.9999999739522527,0.8150407728441489,0.999999645090139,0.8191990077454356,0.9999895188102118,5.324894988664143e-06,0.9999999524854049,0.9999993500274186,0.9999892361546977,0.9999531281806312,0.9999934959867774,0.00021962167956600569,0.7752524340638066,2.0242041756986717e-05,0.07487099021864478,2.3974063893631967e-05,0.001093661635357979,0.9999993136465194,0.9996634888146535,0.9999996360281195,1.090775141207583e-05,0.9990756916700979,0.9908160334941081,0.07703666169835106,0.9999310377833042,5.153354661266611e-06,0.9785248455233877,0.9999849151098608,0.011037090991043353,0.9999999745616379,1.1247070979944726e-05,0.9975273253697025,0.9998406075091939,0.9988519163989538,0.9998745975135376,0.9999909412427211,0.9999158964620958,0.9999898872348449,0.9999992100270337,0.9304176638289471,0.9850040566238315,0.9999775773338445,0.9995853209722816,0.9999999760155523,0.9998054914387531,0.9998035263070687,0.9999323569092722,0.20534933232938973,0.9846229683360752,0.9999990647053273,0.99993647125891,0.9999999624173345,0.22285478664107614,0.9999999989920247,0.9800426325441172,5.2545762690202905e-06,0.9999999828101117,0.929699867046449,0.9999652392385856,0.9999218864636692,0.2670784877046247,0.9966699605144232,0.9999999971880453,0.00010092989592645004,0.9997755597228963,0.9999999025977931,0.999998050013632,0.15711366307407315,0.996408508478412,0.9983956476410053,0.9996603230585305,0.4634692234635237,0.9997505449778527,0.9997977336680127 -बन,object,0.9930601259302958,0.9999999287158823,0.9994015555564341,0.00017579665277435067,0.9999264066289741,0.9776186907781819,6.243192438915517e-05,0.9999890242964948,0.9999987054089869,0.9999806854627259,0.9999637586552936,0.9999807680856128,0.999965597575018,0.9999998158909101,0.6506444672644887,0.03836005033054514,0.003817770630667556,0.05176762068174148,0.9999843816507228,0.9999103346852914,0.008051578956069479,0.2974409123191264,0.0003273338265283281,0.022720852481528876,0.9999507185002657,0.039718901252905496,0.0068171748869203285,0.9999869380588854,0.00887370910640844,0.513778417246736,0.9761190707514862,0.9999953703744962,0.00020073605246305614,0.9846191631070925,0.002035513374619447,5.6922172573011275e-06,0.8297039303022374,0.9700023455833376,0.9999455799654566,0.9999998227822099,2.7949197230159833e-06,0.2509532815416359,0.9901111799421167,0.9606313145348663,8.501471119440645e-05,0.999925077950218,0.9999984390929632,0.9775863952497269,4.24647555470383e-06,0.9965361130501214,0.38999360982629494,3.001511752628047e-06,0.9999567177585563,0.6883923329688056,0.8981795745868526,0.0002560257965727979,0.9999992666208968,0.9999995964764418,0.9999928813277463,0.999902261856396,0.9999289099146591,0.9999560439710361,3.914793905418825e-05,0.9999997462605723,0.9988174878088184,0.026187624432528887,0.5728573161368186,0.9999913297717898,0.9993896834977047,0.9999970028329783,0.19221101328864965,0.6355883744217901,0.992047029479317,0.9915522499848604,0.9999999600315501,0.9999998415658806,0.03746434830321312,0.149982264647047,0.8969190096777004,0.9171478643479526,0.06162714877391627,0.9932540943286607,0.9952907361676856,0.9999965290306367,0.9839769583189274,0.9903212369083663,1.420994363566542e-06,0.9842140990853929,0.9480807478214118,0.8505505529179258,0.9985635025429661,0.4519168675447938,0.9999978971020473,0.9999731961702961,0.9999938282868047,0.9999995437136736,5.2081452754271416e-05,0.9999961687965099,0.9882557575642933,0.9999330377163146,0.9973278945359658,4.5865949343867206e-05,0.019705894722737767,6.1749757046521e-06,0.9942476593014395,0.6699895092647116,0.7533110164337388,0.06738281135907827,0.18677231145080778,0.19208321611717669,0.24233300676321945,0.6607786078504173,0.6118923761105616,0.9999575683197431,0.9999483822996617,0.9999939501101522,0.97998771986672,0.9999969140511754,0.9999777475878787,0.9999500448438808,0.9999116072762907,0.9999923115983614,0.9984361787306713,0.012044559716952046,0.9998670663334157,0.999999997511263,0.9999130444100326,0.9878089878040163,0.9984435819706241,0.9963390318260072,0.9999997583802533,0.989750716110776,0.6876033932885436,0.9985390807374944,0.9930478314035658,0.01174079313031327,0.7574549131254558,0.00018664431547753353,0.9979476408041662,0.997349212726555,0.07750262204779644,3.5661322624353143e-06,0.9993528491270465,0.4824286974081339,0.9999999775676992,0.9979553832834743,0.9999988755621951,0.5248407734624381,0.1461839013799173,0.22526682350123836,0.2680326383406735,0.9999950596398651,2.4282234484669464e-07,0.9998609133736814,0.000358247944006491,0.9997895898063884,0.9999834659701661,0.999973074183615,0.9997451582661598,0.9784063035138448,0.9999588787754738,0.2714475484292623,3.059011413891888e-05,0.9999870007888734,0.9999546946892818,0.9999713075330335,0.9993619677986102,0.9998969139694196,0.06254916837467538,8.125643216127645e-05,0.9999832078407802,0.9955277839367135,0.9999448673476149,3.0373182031877984e-06,0.9997251871866563,5.885518841363418e-06,0.5836477340233303,0.955230109675923,0.999991836379628,0.9999818736964173,0.9999931109426087,1.8218595384251592e-05,0.35643224734468243,0.0002354040220987311,0.4930736296359534,4.349140510231963e-06,0.00026764392895498924,0.9999997252229673,0.994849408377315,0.9999817819446537,0.002704676436643956,0.9921706596783195,0.02766917460722513,0.9865714211518248,0.9982612774036089,7.479184140491987e-07,0.9974157767596417,0.9999906262708257,0.6435883025382576,0.9999990492793459,4.2891089445038385e-06,0.9950411646838782,0.9999337506609361,0.14061939820094327,0.9999074147150719,0.9999989450628759,0.0643577812223277,0.9526581082343911,0.08662974849837506,0.016546018582414872,0.969956910982304,0.998152891275828,0.9998016260466741,0.9999830120378148,0.9999542091296681,0.9999742314765956,0.9999863396264966,4.279767588837495e-06,0.9993767177949494,0.999999440159841,0.9999904259488532,0.971883658423805,0.470619216620394,0.9999999400025168,0.9983845121338424,0.00601019464039911,0.9999999814674151,0.999911788388994,0.05663991246656701,0.9998760157146893,0.26791859048693745,0.9558042519206432,0.9957256279128072,0.04091384325141284,0.9999211109447603,0.9999982806078163,0.9999511555667296,0.7308760810635063,0.9922991958993791,0.9943592557483865,0.9854193627785058,0.5868514239082141,0.9999034885228633,0.9999225414697721 -बहुत,rgb,0.9999999999999996,1.5116547001378809e-12,0.9999999999999998,1.0,1.0,1.783078961087318e-08,1.0,3.257968002279007e-05,4.904721234940764e-05,0.001236144020219499,0.9999999999958378,0.9999999999999505,0.9999999999999023,3.0736360443673774e-12,1.0,1.0,0.9999999999999998,0.9999999999999996,0.9999999999999996,0.9999840246777185,0.9999999999999962,1.0,4.4841758178739226e-08,1.0,1.6959861703884007e-09,1.0,0.9999999999999973,4.8314358301828e-09,1.0,1.0243227521666127e-06,1.8564299885493583e-08,0.9999999999999998,6.947362453467779e-08,0.996081113835444,0.999999999992405,1.0,0.999998737908046,1.0,5.53791963519392e-07,2.0033046469434563e-06,1.0,0.0002158948116439755,2.828370803996259e-08,2.9576271213143702e-06,1.0,0.9999999999999369,0.9999999999999993,0.9999999999999998,1.0,0.9727017499719122,2.1428324269539227e-08,1.0,0.0001894155666136897,5.620020856898567e-07,1.0,5.300415610538217e-07,0.5776647126992656,0.9027076463484628,0.9999999999999278,0.9999999999997806,0.9999999999966702,0.9999999999999967,1.0,0.00298587658679753,1.2649834463876247e-05,1.0,1.0,0.0005310171064306691,5.6913596033509646e-05,3.320767574564539e-05,2.4123720768922694e-07,1.0,1.0,0.001373104753758755,2.2167700153254328e-13,0.0002337643030897194,1.0,1.0,1.0,0.9735916499451531,0.9999999999999978,0.7572736926742578,0.9999999998651925,0.9977226371396186,3.4460702979277226e-05,0.9999999999858167,1.0,1.0,0.9999999999999953,0.9999999999999969,5.100024649095288e-05,1.0,0.13847209710024522,0.96315328123434,0.9895304467735827,0.9967019322801959,1.0,0.9979095893475809,0.6663703039842976,0.9968941633175895,0.9996391301656888,1.0,2.9635585379804967e-06,1.0,0.9998402380894145,1.5422021784113326e-08,1.0,1.0,1.0,4.8158493982023015e-06,1.0,1.0,1.0,0.9999999999997278,0.99999999999893,0.9999999999958658,0.43250495494764213,0.9999999989573642,0.999999999999968,1.0,0.9999999999999998,0.9999999999380573,0.7634376328815936,1.0,0.999999999998866,0.0005218544354611694,0.9999999999489686,0.2328045363636096,0.9996445143292039,0.9999834992566307,0.9997224957811269,0.9994695984914488,1.3975170649359924e-08,0.0011034068195759836,0.6179754697330294,0.9999999999999969,0.9999999999999993,0.9999999999999991,0.9941481596625761,2.6290238157625264e-06,0.9999999999960854,1.0,2.991439401133195e-07,1.0,0.9998340704233561,0.9999980580663476,0.846262805914699,1.0,1.0,1.0,1.0,0.9999989140300307,1.0,0.9999999999950115,1.0,0.9999999999997768,0.9999999999998814,2.341141976245582e-10,1.3631067742699348e-08,0.9999999999999991,6.9561115905394405e-12,0.9999999999999993,1.0,9.979366058686811e-10,3.312990558263954e-10,1.1303251399256958e-10,9.63759164129261e-10,0.9999999999997933,0.9999999999997364,1.0,0.9999991561052523,2.173327228264964e-08,0.999982869636254,1.0,0.9999983723469836,1.0,1.0,1.0,1.6777995570231488e-12,2.419170548621754e-10,6.860094652550257e-10,1.0,0.9999999999888716,6.077163294750107e-08,1.562141707530193e-08,1.0,1.0,1.1248014681409031e-12,0.9999999999997466,0.9999999999998976,0.9999999999956857,0.9999973667015143,0.9999999999999996,0.9999993431626961,0.9999438431197762,1.0,0.5127510133034311,0.9999999999984255,4.538851290218751e-08,9.283267316068871e-07,1.0,0.9999993232573482,3.3461852057489625e-09,0.999999999999994,0.9999999995618756,1.6208761075088284e-06,1.0,1.0,1.0,0.9999999999999993,0.99999908573325,1.0,2.4132759317177055e-09,0.9999999999998566,1.0531961428375623e-10,0.9999999999911349,0.999999999999853,1.0,0.9999999999999971,1.0,0.9999999999999996,1.0,3.091811358442854e-07,0.010770879207963078,0.9999999999999993,0.9999999999999993,1.5147889140118142e-12,0.9999999999999978,1.0,0.9999999999999998,0.999999999995854,0.9999999997634952,1.0,2.4619849867303426e-06,0.9999999999999996,0.9999999999989588,0.9999999999999569,7.43941207368433e-06,0.99979588333612,0.999996306987996,1.0,0.999999999993636,0.9999999999722933,0.9999999999642935 -बहुत,shape,0.3291715675345123,0.003477040411037708,0.9999999938355189,0.7877523616629124,0.9999999997874656,6.014983144684875e-05,0.2361604891954735,0.018832057082379984,0.00034894777927168896,0.00041715845560122596,0.9774832075172822,0.999992840782763,0.99953411643308,0.014887302403166387,0.039273750444107206,0.9991866423882517,0.9998815691842569,0.9999998031075891,0.9999958347584151,0.9999931345845126,0.9997761365114748,0.9945107336076011,0.0008827364513879424,0.9997710945177595,0.9264610391268171,0.9566391334521124,0.9995613537077207,0.6467776287979026,0.15026384185773015,0.0003970268949995761,0.000296124511779372,0.9999999992495501,4.217100618031662e-05,0.001542650628689034,0.03622608752449321,0.9989474024760837,0.9993282295100094,0.9999755743684333,0.9994275498605129,0.0004003133967820972,1.332238422345525e-05,0.0001272238346709318,0.00012755464809686084,7.213031086856153e-05,0.0018703751699270191,0.9999505993359439,0.9999999993502886,0.9999999913029162,0.9948773235288092,0.0027368309863839433,0.0005290562443530251,0.4112284309916698,0.007435354148653685,9.91726739630378e-05,0.007253376625165698,0.0004308039855140417,0.9999413308127744,0.9994601519177236,0.9999990885745225,0.9982365631776767,0.9902132588445935,0.9998736794387698,0.9993784437041983,0.0004057488681712116,0.8947899473772577,0.9990530911639703,0.9393499230089131,0.00039815891753302766,0.00011917156335412767,0.001754182623281697,0.00011030762019098568,0.5422122780131478,0.015805728423191667,0.0007568034659996412,0.0018376035871475358,0.0003636194527038732,0.9731496370119435,0.9991110354387268,0.995870164524432,0.2538611408537736,0.9994434833353165,0.0037719781263717512,0.45235670022878877,0.999869001478131,0.00031163840012215013,0.560671742656737,0.6228672296623605,0.9999371260844634,0.9999825211248429,0.9995702667261885,0.00012069639835886897,0.8682979763334154,0.9999773673446597,0.9690625613797725,0.9999787602805642,0.9999620005071156,0.0005757675151048541,0.9997369337098716,0.002305474710160801,0.9972026189002272,0.9994439375937261,0.3748414505665447,0.09772470417741674,0.1850280572742529,0.0061659517120865835,0.0002812091109504271,0.0010509674764265801,0.9998538631755313,0.0676546246351849,0.005396789772248786,0.5713584116579055,0.015469178581740524,0.8446213285190322,0.9770512082193744,0.9998371078168423,0.9987426222167366,0.044640008794966816,0.20645372557761776,0.10069645020072937,0.9984377378328181,0.9999999985370658,0.999888668873811,0.2468475435792852,0.003423002035863057,0.9999577538280665,0.9998611214570007,0.9979241008673468,0.03510576871305921,0.010042125634942924,0.0015181891395227472,0.9999999998405649,0.16165056627603913,0.0004682008589734471,0.00023029368625685507,0.03417634046628578,0.99988418353542,0.9997192397025964,0.9996893240993268,0.33598587398294466,0.7369756908053606,0.9967140767432187,0.989040654596491,3.84989870998268e-08,1.921044110912091e-06,0.9988764291325182,0.005966269666970557,0.9990752368769932,0.983121399196569,0.6929400181704054,0.9995708542265767,9.244496164806391e-07,0.3052212257302815,0.05253898465499676,0.9085958114166136,1.4649843355755719e-05,0.9982832891986321,0.999992840782763,0.04403568730256786,0.12432218137188504,0.9999286462957686,0.06677014109591337,0.9998723009766952,0.9998806970921793,0.0003295547160139452,0.003882507146535221,0.15695362331613485,0.8291678937717742,0.9998254765683041,0.9516809996575853,0.014789565611566233,0.5194549083074488,0.0003128771726130199,0.01784372706195736,0.7214992204742902,0.2838524588688445,0.03830699174357344,0.21627244529732184,0.02230947033982145,0.0018783191349810388,0.02615956644343724,0.01310503951160343,0.16657177700250278,0.9995862569735625,8.640951155619123e-05,7.851618204545295e-05,0.8366540689063683,0.34091234096428724,0.6914433905232771,0.9932729109675653,0.9999524623866821,0.05470617266438165,0.7180311721468499,0.0036876935538001565,0.022070408040745434,0.04622300606871475,0.13389560923397228,0.014920608548404485,0.49106846954599187,0.00027254674910033946,2.494953356563199e-07,0.021652115184393073,0.015365206535709766,0.007535123824192091,0.9999312853801212,0.9325430734899179,0.0005691964447565719,0.00026810390880055516,0.00010450603888478689,0.41276875792224177,0.15054836928879928,0.11137978754198251,0.999286437754682,0.8944608228137032,0.9999136162043483,0.06788734788629097,0.9931755655905449,0.9999991527462726,0.9894058389078585,0.9999989958349944,0.999999999949474,0.9999999993092181,6.217062103227401e-05,0.00015195507493719098,0.00031319311937793855,0.999999925950063,0.9998776907290317,0.8989027012549649,0.999999846276917,0.0005155657177100017,0.9999986908493791,0.9920676206514197,0.2257448650347855,0.005765583045261247,0.00011663908237300922,0.9999999985370658,0.9998837337279911,0.9999999321928102,0.08574049621344682,0.010587188295494966,3.1881825782793926e-05,0.999292879644789,0.999967560461529,0.9999837498110897,0.998767162221392 -बहुत,object,0.9997145654998993,9.244390472021314e-06,0.9999924203603061,0.9999856899025522,0.9999999552047429,1.7893816279214475e-07,0.9999855650492976,0.0002221289452519833,0.00011754896891253023,9.858219064143195e-05,0.9999851817281523,0.9999999813917825,0.9999970693243205,1.584575837214041e-05,0.9999991066015502,0.9999999861297486,0.999956096964454,0.9999866206449958,0.9999999868983955,0.9969543019473689,0.9999657896404334,0.9999484828874009,0.0003397859395689515,0.9999982438877348,5.44386230539729e-06,0.999987341653512,0.9999154916101943,1.3063647062102848e-06,0.9999807121700881,0.0003891494090324266,1.3111135881650568e-05,0.9999976539328119,5.004205114934783e-06,0.0027360871490525545,0.9959124501195911,0.9999994958545001,0.9227637310982685,0.9999967730039679,0.0031355121962631798,0.0002665000635563907,0.9998886722428202,5.440776679633077e-05,4.456987142728286e-07,5.713773389104435e-06,0.9999312687706258,0.9996582943974335,0.9999978259367505,0.9999997122581985,0.9999995929408652,0.0008924159620015413,1.7046794900737704e-05,0.999998923745565,0.00011753542764152541,5.0123282692295775e-06,0.9999002574935331,4.261780702323588e-05,0.9957805042920189,0.9827584226991807,0.9999999918843981,0.9998407312875751,0.9992549801668703,0.9999988768856236,0.9999999980430936,0.0002331843109510803,0.013990943161751609,0.9999639156272345,0.999971425974769,6.223410674807292e-05,3.231165704302632e-05,0.0001252126491062234,7.60637305810906e-06,0.9999998231450673,0.9999956115533171,0.0001637444341126968,1.8693250826885177e-06,0.00018936180853465384,0.9999912125231218,0.9999708669514538,0.9999248973830541,0.6602188430799483,0.9998387707681141,0.708454605081056,0.9459885787565513,0.9997570786931654,5.865267142791784e-05,0.9668244267467668,0.9999999556046801,0.9999947172433012,0.9999906653674059,0.9998826595616942,3.468703190550052e-05,0.9999981002958074,0.9983547062935015,0.9925437333711984,0.9998530326608436,0.999819411231738,0.9997199508633581,0.9996495126768721,0.002428822884027136,0.9927972661391927,0.9994944253551471,0.9999976494185595,6.770907124802629e-05,0.9999947863669721,0.08966314932991316,3.0821061166812746e-05,0.9999890122868835,0.9999954453893993,0.9999274605338027,7.20276694330787e-05,0.9997943060199914,0.9999972194182881,0.9999999331275686,0.999947139831084,0.9999703529029222,0.9964213130088564,0.00032727389175155644,0.9955297357339042,0.9988989405004802,0.999960064349236,0.9999999131727129,0.9998967909571749,0.0059095360055695075,0.9999609053777218,0.9999925955549523,0.016676266847882905,0.9998916816967983,0.001054858470073922,0.010242456624487476,0.015492483582060557,0.9981004351340893,0.01140192350797292,2.8013857282908985e-06,5.423134397125926e-05,0.0005061651168508555,0.9999911727200285,0.9999830982401684,0.999959641870987,0.018664754789620014,0.012984092366421425,0.9991873801334207,0.9999999282801972,1.473441508513042e-06,0.9998123366499913,0.9764244666951012,0.2248930318449013,0.9886372462413651,0.9999464418838196,0.999910350964599,0.9999844150717482,0.9997157060200367,0.7958977454812699,0.999999620276497,0.9992763297522819,0.9998132477088322,0.9999055343674677,0.9999999743926378,1.5071952596532093e-07,2.2911518527619278e-06,0.9999959487190301,3.844800351591979e-08,0.9999971504067544,0.9999999475266718,6.476149268119813e-08,5.46298543446145e-08,1.608864658184086e-07,3.833945415564911e-06,0.9999829362560791,0.9998119356804129,0.9999573438568773,0.9825115388771576,6.92729356450244e-07,0.21359812160407385,0.9999999582777936,0.742595871969084,0.999997170563084,0.9999970631468971,0.9999965749780486,1.1849689811191197e-08,1.1306383704351939e-07,1.325504092716064e-07,0.9999921586174442,0.9993296646342485,7.671320046001218e-05,1.5823877029741614e-05,0.9999984493893145,0.9999795330658688,3.47781049807368e-06,0.9998260017687306,0.9999998599976575,0.996636289727072,0.5237547426499389,0.9988398522206665,0.7077045051432935,0.23994222333921314,0.9999968539942876,0.0003859308909220938,0.9997262157776708,8.4465903172464e-06,5.22656704639263e-06,0.9999937763921977,0.3490842169523191,2.1498394732067697e-07,0.999966824806471,0.9921562569960926,1.7709922468750755e-05,0.9999273847419887,0.9999898432252071,0.9999997648331289,0.9997668910440558,0.10230104759750101,0.9999906305689399,4.220238450162005e-06,0.9999736174661406,2.6468224384170045e-07,0.9999610828599789,0.9999971689582557,0.9999989334500237,0.9999794315606103,0.9999991695494994,0.9999992415785478,0.9997848191183736,9.336284948636001e-06,0.0002540402392950727,0.9999999201028632,0.9999809603786548,7.163843958310423e-05,0.9999999923612725,0.9999971350505533,0.9999980327743465,0.9999986476507577,0.9095710838837036,0.9999935369931555,2.038875237483754e-05,0.9999998895351878,0.9990550239764551,0.9999839083208996,0.009649873613471931,0.03325904899416516,0.09539805955552846,0.9999918313115311,0.9999997168184853,0.9964729512174174,0.9998563790303338 -बीट,rgb,0.9999999980874641,2.297158851717668e-15,0.3777075441982132,0.0002255497063651151,0.5350475034715915,1.629110790815702e-07,0.9999999999855738,0.0002575612655131969,0.00017512275142052608,0.0010760740841470227,0.04088568523929062,0.08871455872892729,0.08703627200819444,2.0511649301057715e-15,1.703859956423301e-05,0.9999999999993308,0.9918643471807311,0.9846982573524236,0.9909191517475393,0.0030007337263803307,0.9967130799505102,0.9999984713082658,3.350800630097016e-07,0.999999947726948,4.1159307690250126e-10,0.9999446468506381,0.9999999987868022,7.621217105668586e-10,0.999999999998304,4.070527514139751e-13,1.6351263337722963e-07,0.1905842242419124,3.1575023344080145e-07,0.3950420048651262,2.4252053026156716e-08,0.9999999999993245,0.005581704738617395,0.9999543128082287,8.106365545319668e-08,9.101839280638163e-07,9.8751884254995e-05,1.2761184371175825e-11,1.686558382453681e-07,2.7428299502906067e-13,0.999999999997919,0.027497432070948003,0.12141037313824006,0.38530308009761854,0.9999999999961791,0.004379500018862432,1.8511463369781972e-07,0.00011365972540040084,0.0004559179142022554,8.822484506624827e-07,0.9999999999986668,4.61306983559065e-07,5.988926263780796e-08,1.2256209326024804e-07,0.0810571640039107,0.07756069139717818,0.04696346153070134,0.9981700996139021,0.9999999999992477,4.8765610575981405e-11,1.3075528597941622e-12,0.9999999124898412,0.9999917623220715,0.000929812515328973,0.0003246206342331891,0.00016028912680745384,5.710874595846876e-07,0.0002489746602920036,0.00011737045277211114,0.001807981507496001,6.477830456362715e-15,1.8016116387483407e-11,0.99997932450384,0.9999999060905397,0.9999990490201869,2.1441813566708926e-07,0.9999999984348735,1.037526490378383e-07,0.9879797831262936,6.37237227776361e-07,0.0002267320468709154,0.9947059743545724,0.9999999999987113,0.9999710669786555,0.9999999828450356,0.9999999981336916,0.00035513522732924974,0.9999999999987692,2.524622644768974e-08,1.4662677395304024e-07,3.0906976434119656e-07,5.164549740137857e-07,0.9999999999982976,6.618135803535793e-07,8.111799827243419e-08,6.179700811718952e-07,1.6529443784565975e-06,0.9999999999835194,1.1170147091417312e-06,0.00012851030866193954,1.9771411758404338e-06,1.4374280863171766e-07,0.9999999999978115,0.9999999239963757,0.9996489031509457,1.575832147682482e-06,0.9998863827118276,0.00015545435719677766,8.928996048325819e-05,0.029132973299544646,0.04508297436244106,0.03210762321754063,0.024006646558262106,0.0030765362999432442,0.10550855679930661,0.8927188660563335,0.23013070943646005,0.0071125051331798,0.0015671571392336478,0.00022834543540671437,0.01719401163282769,2.554981913217413e-07,0.007023785543477822,0.01260833122598468,0.011209131328549239,0.5324909394132232,0.00019234817852332913,0.49429567240063044,1.5116283493384546e-07,0.0015630734833295156,0.03412110439815655,0.9884209351844019,0.9913783627825598,0.9882655861018032,0.005110379997505346,5.096774393217966e-13,3.85195834987514e-08,0.9999999999973952,6.71267399111803e-07,0.0001999101843035325,0.0015240103073996805,0.004060641882142661,9.120466682991624e-06,0.9999994112407204,0.9999907616579113,0.9999999471397992,0.0002456159580952388,0.2153843003454547,0.9999999999989875,0.039033141507978625,0.9999999999986611,0.07155726211069166,0.06653059278061392,5.2875545280376006e-11,1.241100226777521e-10,0.9942132352153669,1.4959589034324135e-11,0.9941702112507012,0.9999999999998777,1.820018614515295e-10,1.9586079066669471e-10,2.450602322230951e-10,4.5986127299180337e-10,0.06266435293812361,0.07417106094909594,0.00013674508280833874,0.18077963615778717,1.8544096705753218e-07,0.155502832703977,0.999999999999283,0.1101097240211038,0.9999999999858249,0.9999999999985263,1.537762195544678e-05,1.3517194062139211e-11,6.525527705716349e-11,1.3569793600697058e-10,0.9999999999995224,2.0979412927789477e-08,3.6350271250729686e-07,1.4384304053331117e-07,0.9999999999973388,0.0004720048505872172,3.5513356643574955e-15,0.07517204245067499,0.07438155275308397,0.043764975682133264,0.9374160863278426,0.999999998466752,0.005407813603565986,0.25521892559124776,0.9999999999956142,0.02057018764152165,0.02206436812430988,2.565216070410846e-07,1.2459364478440952e-06,0.00020316376380860642,0.28878408824642754,1.1937812375237926e-09,0.999999998075237,0.0040601041337157435,1.180923683576266e-06,0.999999999998678,0.0001882906309259333,2.662480830992792e-05,0.999999998886216,0.8575963782684616,0.9999521983767389,4.4340876614197666e-10,0.07384749294074622,4.0289735504039845e-10,0.013346906530980333,0.04538733201048379,0.9999999999990488,0.1322739083223433,0.24643309358805782,0.1250531494451779,0.0001894171605918437,6.776114916590332e-07,9.780227976695532e-11,0.9810910775223252,0.9789375467795378,2.310549108259624e-15,0.9767794198728524,0.9999999999990123,0.2307383505614253,2.0587823357412003e-08,0.9977062826431972,0.00015699324873498976,1.176819344689481e-06,0.16847054889909943,0.017748422138644807,0.06462705167376759,6.987755459999651e-13,0.23851735377382338,0.22941203026887244,0.999986410415498,3.413010308609704e-08,0.02984899388987572,0.01852820737724153 -बीट,shape,7.089899974593101e-09,8.435607862810894e-11,0.9999961322404196,0.9977499434014093,0.999999900192668,0.9442443636242237,0.9999520262392066,1.5986254850486624e-11,6.417481426306105e-10,3.533435538275456e-09,1.0478833594054745e-16,4.2304693301378494e-18,1.451166553482784e-17,5.797703789785821e-13,5.930737884327587e-13,9.313528084164553e-05,4.0283480341186226e-05,0.5960299963163423,3.9781983925032863e-10,1.253072399112539e-12,2.2662646963018178e-07,0.9994815026767334,6.765038351312678e-06,0.9999998751735417,0.07383987871234196,0.9999277658760112,0.0004943064766895893,0.0028804784706015917,0.9836512388723149,0.00025899821882555563,5.242728915059104e-06,0.9999820740453453,0.0015871656919448605,5.33613237560609e-05,0.0067572672505266645,0.1943128262660866,0.0032846459444572755,8.813202799866531e-07,5.960319393000429e-11,4.984212056127677e-13,6.976198940301405e-05,0.00012880456073327713,0.00041124443054416326,0.0003129368177889858,0.008901987713283299,0.9999994274134444,0.9999999340270526,0.8340631347811173,0.9903761929385676,0.0006529475115656791,0.05674003532687209,0.9241901846305739,1.3456707685659995e-07,1.6381599513344182e-05,5.072160032229044e-08,0.0007032928399094182,1.4497367683742395e-17,3.464798654812956e-13,1.3535842461460641e-17,2.0431148773597716e-12,6.397501839672892e-12,5.846097815907759e-09,9.953743953488463e-09,6.255574472259802e-12,2.174458476496469e-05,0.9999811225925145,0.9998631826235386,2.7859047875656225e-08,3.361786359347937e-08,1.2734068241125483e-11,3.043124609824636e-07,2.7335746880115724e-10,1.3849060109095754e-11,4.900469572304386e-06,1.767037440298967e-10,5.69567392750519e-12,0.9998471209509838,0.9996672814254974,0.9339478871049448,5.3397651707772163e-05,1.33746552970454e-06,6.486959726374951e-09,4.337133785226988e-08,1.197672370901258e-13,1.6168573491223822e-06,5.917299610549461e-09,0.0009172237986174672,0.00019787270888411797,5.771810362570071e-10,2.0172953630209877e-08,2.2562969155455257e-08,1.7218021519432945e-08,1.5600045972212342e-15,1.4602961581175713e-10,5.790839765145415e-15,3.6216394736069367e-17,0.0096446263852374,1.3727367153664797e-13,0.21061174771481078,3.903322378890524e-12,2.1647428170749027e-06,5.5064581782893914e-05,2.4637115674597405e-05,2.3997492899708906e-05,0.05461818616296477,2.2968780843576163e-05,7.217784705438413e-10,0.9999995769254555,0.9996227351318924,1.0262865720037287e-08,0.9463148178436507,2.605651459909594e-09,1.869164586203913e-08,0.6818412608270487,0.999643421618494,0.999862276200176,0.1153535169399356,0.03080332657231345,0.0006261686112619949,0.03931734619468238,0.9999936885267594,0.8993102341481197,0.0017291663742529332,1.2003381031820037e-05,0.6871439553234738,0.047452740698617164,0.9997990900545881,0.03679371133887883,0.00028499425464406056,0.00010184586803601729,0.16134485204188925,0.002460837340863553,0.0017952741761776254,3.226007062208288e-06,0.13843950855893544,2.3565734198146493e-09,3.01197936953284e-06,0.0011348222333991186,4.727901109855977e-05,9.008164099536808e-07,0.9999604817252709,4.475533878949655e-08,1.453858111338457e-11,1.54245246711615e-06,2.3457513709082016e-08,0.9693892753961324,2.8866494196086344e-17,0.9424345220662985,0.9994437467556446,0.999997930371075,5.285892559594858e-09,4.136191007807491e-15,0.000425204839904619,1.9206691628345813e-12,0.027871109758041395,3.883472009997542e-12,4.2304693301379095e-18,0.22861243186069882,9.337569001961194e-05,1.9393083581485253e-08,0.00013922956833720455,8.512029683895854e-09,0.9963233358263359,9.644448167127658e-05,0.00044175542513017575,0.0008893252641229922,0.0020470574932250135,1.1488377546936165e-10,0.019639039556207757,0.9996715621814559,7.311870371473994e-17,0.991928036209224,1.1438408747859188e-10,2.0635325941765482e-05,3.6078311572310027e-09,0.6537388570005268,7.903426750465627e-09,2.897961508563389e-09,2.2877953196599025e-05,0.0012086546836667744,0.0009293487252932977,0.00027624080897963277,0.9999993803562979,0.018603003121787285,0.00015050247749892086,0.985512045262651,0.477097330177731,3.5149083045056014e-08,2.3292299574966326e-09,2.543680663499119e-18,0.005287129927646171,2.057606601558204e-07,0.0001379693029991426,5.167252975318896e-10,1.5682454453348574e-11,0.18036325244946724,0.029260042329112206,0.001610256619576957,0.03731869404361017,5.968381552408721e-15,0.20774408722994717,2.7827464885903955e-08,2.2968126205165592e-05,3.1521792071399394e-05,0.991901926628695,1.824078653288278e-07,7.35471161190133e-05,1.8015899869645098e-06,1.2569045224468543e-16,2.9431499314103535e-05,0.00023282811865042784,5.269308083016573e-07,0.0005663955953118996,3.4571096972733975e-13,5.797676666665892e-05,0.5033394286301348,0.8923626060433417,0.27505843089942733,0.9999715781694829,0.999993549791672,0.9999999922660071,1.1876233558933226e-09,1.2068152270529435e-07,1.5678872205641406e-10,9.023138934183176e-09,1.1428013170458148e-06,1.9761076152410562e-07,6.526081282329083e-11,5.709097780306819e-07,0.9969833506710485,9.068615661420386e-10,1.3153481217151589e-07,1.475136396255343e-12,2.9496863706710638e-05,0.9999936885267594,0.01922358438700097,0.9947529865554424,0.00015757280964975222,0.0011407244470743954,1.8746538511729428e-07,2.3505853337226526e-06,9.943766966799495e-10,0.9999996773518969,0.9929619041731019 -बीट,object,0.9796988211514229,1.5815842965565535e-11,0.999661634593855,0.43169106710912974,0.9999031193387008,0.006315428660155093,0.9999999942089373,2.3391599559177243e-06,1.7819170430413804e-06,2.415000383044508e-05,2.691207930261898e-05,4.017485753169508e-05,4.0482689236513575e-05,7.725517592154437e-12,4.6895849559146166e-06,0.9999952179416347,0.16851246502577932,0.5070959401417133,0.010109113661320427,6.820363440254886e-06,0.05138411697435555,0.9999751735877165,0.00011696761820578326,0.9999998947503506,0.00024200889092540923,0.9999445536397458,0.9999476986536803,0.0001381666709055679,0.9999999575252283,1.9268038886888974e-07,1.5601069955192408e-05,0.9995499961012072,2.736719353885727e-05,0.050368138072193126,0.00042803489710073115,0.999999976952742,0.017365957587897305,0.7653661989130186,5.5566744367153785e-08,4.85630768940263e-08,0.0001464363937197142,5.073764043643341e-08,0.0004373188933253194,9.781820501310147e-07,0.9999998921317951,0.9987149098288137,0.9998872674995527,0.9969497513414673,0.9999999879301441,0.005550579365474568,0.006124569425483169,0.6835179099696093,7.361853236005064e-05,1.6516613435326694e-06,0.9998526944606911,0.0012710152451596327,3.0346274442850484e-08,1.421276599112207e-07,3.270193404627182e-05,0.0004699803516824058,0.0003696682486050046,0.01556843583084373,0.9999859798985268,2.696769535597812e-09,3.6593499670658366e-08,0.9999980273677447,0.9999324275172189,3.532426786508434e-05,2.153909693954363e-05,1.3595872386640678e-06,1.498729776537543e-07,6.735638538323067e-05,1.43921298830105e-05,0.0009401613067066998,2.532197867790395e-11,1.4040570162134759e-09,0.9999649209692504,0.9999946211464616,0.9999765350695672,1.3099364732054593e-05,0.9986526384587412,1.3233016482625545e-06,0.043514236770293035,2.0103217028678355e-07,0.00011255832359103587,0.02891075116058199,0.9999977781278127,0.9389727968751227,0.9597472008911438,0.9957486111258943,2.423698404326407e-05,0.9999373654482491,5.0589422561868466e-08,7.977867679741294e-07,2.4084072530876936e-07,1.2252841939694778e-07,0.9999999221147707,4.742700289542473e-07,6.243299788441192e-05,3.516607880465594e-07,6.297269514980602e-06,0.9996068971258186,1.1075240111066825e-06,8.655599586880745e-05,0.00023923417022972494,3.9260651241162336e-05,0.9994435571511695,0.9999998868374645,0.9999099226862904,1.8341886380969326e-06,0.998398106215038,1.284394616690211e-05,0.00016906621240320863,0.021213625749323915,0.1981096830664274,0.7450650564598146,0.31718941533598743,0.0014136361842122585,0.006340947363371695,0.9193743928048402,0.9995709201140206,0.009389031586925082,0.005911917514361877,0.00017305034068736258,0.038928024942979596,5.491518464636853e-05,0.029715578351233046,0.24207880506649093,0.007307248407959024,0.05027511663643872,0.01583851140745856,0.11626186810379727,0.00023339072090365544,0.0005060018603205952,0.2735607738679922,0.011574930238750118,0.15242864579462162,0.3785826934159962,0.004235589123817458,1.3249972648366667e-08,0.07875583532531548,0.9999916893101315,5.240790958340229e-08,0.00013907125604319107,0.00010650310821458476,0.04689670619343286,1.3707570669666067e-07,0.9999424630206376,0.9999531066446087,0.9999980690838998,3.701025933766669e-05,3.009148038483198e-05,0.9999995822303998,0.0002387427161126906,0.9999834426077296,0.0004734360016483547,3.3813789093700114e-05,0.00011448561999476671,8.762910422641513e-06,0.02525208192861834,2.1818737469704965e-06,0.03402354449920941,0.9999999976501279,7.578996595200776e-06,2.380351029880361e-05,7.254790455581855e-05,0.00037553161328838695,0.00041988018715177587,0.107055502962185,0.8859754880158585,7.846706415364632e-06,0.012214745030600167,0.00010694503514051445,0.9999973131326433,0.0001236441963660149,0.9999996598551986,0.9998483762592154,2.266370974421387e-05,1.7360979849123772e-06,3.75369091810497e-05,6.206828208999228e-05,0.999999407275453,0.1285110349091035,0.0020646975005780468,0.00013049349494998602,0.9999999443577166,0.4797137742452198,2.4514665380879474e-10,0.001882777710368575,3.175854821600808e-05,0.5802256077057458,0.020613523167631542,0.999489347506992,6.054538610822023e-05,9.802414105287945e-05,0.9999999142732503,0.08401428423685829,0.003973789153810391,0.0034706561340518078,8.792196237495842e-09,0.1803832952980367,0.0005010634425395484,1.2357611490092e-05,0.9999048025163967,0.017880795204531563,2.5293724749411064e-07,0.9999721956275661,1.4107425307024964e-05,1.798696600243805e-06,0.9993293986573202,0.41149823199403107,0.5578824520745337,9.771840414346787e-05,0.00030827854504791126,2.2552624834142282e-05,0.031030641229296694,0.03511598635060647,0.9999999963636546,0.9990479270411157,0.9996908423777066,0.9998246670059618,3.4633068260784265e-05,1.5128409215668498e-07,2.600370417144906e-09,0.021283706944892955,0.06420838777484272,8.82878259308841e-11,0.007243951293264254,0.9999084558334538,0.9991598717794887,5.943748302335024e-07,0.13723047336852182,9.30826665816358e-06,1.2025514283954523e-06,0.9994735935655773,0.576603570537555,0.9867924687709997,1.187948132456388e-07,0.01980333379150815,0.0017746779831999695,0.8404957526407024,6.4917589076012565e-06,0.9264106415534046,0.0885654859101451 -बेंगन,rgb,7.6277714241652745e-06,1.2574378746212106e-06,0.9998810006816374,1.8510216649449205e-05,0.9998443085530114,5.724993985781655e-05,0.00028415036145761427,2.1591428735731386e-05,5.3320271426183475e-05,0.00012949274489214285,0.9996856042169079,0.9998129996537346,0.9998077061851743,1.2128162748711183e-06,4.826885050130796e-07,6.369414672623783e-09,0.9998861102994793,0.9998914253915241,0.9998737099534236,0.9709175643824791,0.9995525767002018,0.9986109745749002,6.701513001010448e-05,0.998799244290593,0.00035524854042238204,0.9999625765935557,2.680550966734203e-07,0.0005560808522958478,1.6491301013385038e-08,0.00028822472794730065,5.907743276298445e-05,0.9998192836238714,0.00010303260194098404,0.003738265000041099,4.5989692478246224e-06,1.1470429127520043e-08,0.9887517034408926,0.9991283599167342,0.001462133603132583,0.0006890148498112324,7.410323387547067e-05,0.006891115817416294,8.238947457752325e-05,0.00016779597731076315,5.738366993961295e-06,0.9997082780060497,0.9997895599548275,0.9998822938417344,4.232251318069241e-06,0.1785512178942664,5.9976512054860396e-05,6.371259638272215e-05,6.0695507559176235e-05,0.00024690483273133456,3.6750354057066945e-07,0.0004075920168129028,0.6833002837186571,0.8007829342067615,0.9998061263179051,0.9997926990025616,0.999699499869378,0.9993937143335108,8.374657644265244e-10,0.021360451332571768,0.0008485897197152252,0.9962025856788876,0.9999357744211077,6.745702403442946e-05,2.8120008328659677e-05,4.047419355596229e-05,0.00017685546063933382,6.979266565438308e-05,0.00013529078836291018,7.270653928949245e-05,1.8606346170036036e-06,0.009252800592237513,0.9999566251000965,0.9979679000497198,0.9986811706331269,0.8623450290875107,6.631329973754466e-07,0.7497555156105048,0.9452917656222991,0.9323789420239837,2.6989090365059475e-05,0.971912919357737,1.2093543339513452e-08,0.9993318002184967,8.204974967198951e-05,6.354256373438974e-07,2.2338469336823487e-05,8.420288152629601e-11,0.5068740405695819,0.8395670075273866,0.8933670829455949,0.9237398392520215,4.3533628071399364e-08,0.9340415585294224,0.7175538652516628,0.9280302900061141,0.9618428373070576,0.0022933205720980492,0.000799581487335761,2.6824605417535924e-05,0.9681928386992951,5.634084819532077e-05,2.1716035318070744e-05,0.9989166109076548,0.9999674521771862,0.0008908843670600613,0.9999528825076891,5.0430991794990925e-05,5.40393369169974e-06,0.9997258335883559,0.9997366884992342,0.9996771831624769,0.0011661662450675593,0.9990122859284637,0.9998241587310026,0.9999395108981808,0.9998294922588241,0.999430285412607,0.08128187968347911,0.0001769881252093969,0.9996655111767435,0.06732838350479019,0.9994430281624298,0.0011292251161560804,0.6918803571791261,0.19927068108080626,0.9612253453738595,0.014159760502301472,4.954823330392037e-05,7.082123615514145e-05,0.0014936310710079986,0.99979176550584,0.9998530205336403,0.9998634146852485,0.3762077769491104,0.0003459952209719827,8.178966372152224e-06,1.4315528374521325e-09,0.00018413544556682612,0.00040265491852196726,0.9310826712707707,0.9879307048958005,0.7488597888410587,0.9985480951254265,0.9999450779575073,0.9973587556943411,0.00021932176072757688,0.8899951023892485,1.938170063360507e-08,0.9996757797691279,3.400945745627875e-07,0.9997887757423789,0.9997916073692443,0.00018341419742480056,0.0014197552586633414,0.9998135951467079,3.0023584389597288e-05,0.9998317475760637,7.394912584891321e-08,0.00032508455639479033,0.00016245548890317092,7.444382973357866e-05,0.00023954932133015,0.9997830505867434,0.9997878979870534,3.230032298908271e-05,0.9198845062970874,6.061674283504188e-05,0.6251895718568282,2.308022169564514e-09,0.9226886713271684,0.0002563019642250945,5.3277504323209434e-11,2.1187421578250487e-06,1.2654560722577752e-05,0.0001793792449188776,0.00028002126054965735,4.80256817095938e-09,5.137793770397517e-06,8.106373936191179e-05,5.69303356054396e-05,9.252559786341576e-07,0.005876767768854789,1.735992777772461e-06,0.9997891215505897,0.999799056123899,0.9996858529809176,0.04485594443104301,5.1652084794293805e-06,0.9917256740409537,0.2618311632136349,2.9444441954323794e-06,0.0019442713788149104,0.9996834995156816,8.586405774218459e-05,0.00027796118683725163,0.00023710512972417605,0.8880297005624911,0.00037270940010373745,3.054017355435752e-07,0.9991756425381565,0.00046520380793687135,4.304897332195908e-07,9.46006067013682e-05,7.927937189998798e-07,1.282979560839738e-06,0.27599167004941066,0.9986300336444709,0.000431273071169256,0.9997957013150764,5.72194366282245e-05,0.9995929015797735,0.9997648690343036,1.625481022834816e-10,0.9998272582288849,0.999817084411785,0.9997660836226553,0.0003385575118077674,0.00018780573126635282,0.03745482794874296,0.9998893758438413,0.9998957201580604,1.2641752522549348e-06,0.9998579167155442,1.477092007500691e-10,0.9998299881221095,8.327390178534564e-07,0.621381589516818,0.00018428669259357768,0.000658420105258939,0.9998106068030114,0.999669646811702,0.9997920638664582,0.00044918199162797775,0.11986780285105324,0.7630852991500102,0.9980686239462749,1.1771807320250456e-05,0.9995584490094827,0.9995288448432541 -बेंगन,shape,5.961480827134565e-07,0.00015041995305836858,0.0043294275741750194,1.2121913824117284e-06,0.01872401698601565,1.613164116723969e-05,3.082026956591316e-05,2.177769309548578e-09,4.5789703714982535e-06,6.4849112635273474e-09,1.0056096506930735e-06,6.623555889207817e-07,3.818361510545583e-08,5.735701489564021e-05,2.053654180390419e-06,0.0001398122937442355,3.659286355180579e-05,7.035169119135393e-05,0.00033723037676948697,1.480722338185943e-07,0.09106807531895662,0.000975245748649019,7.618039150397382e-05,0.0005511904913946883,0.0003983389788702547,0.000980280313314991,5.3644039877241434e-08,5.26848097034727e-06,6.248433692562285e-05,1.2669750653864198e-06,2.090190035648396e-06,0.041493151629803396,4.839754010799117e-06,2.701757017321194e-07,0.00026424601459441676,0.000371084444446853,9.69110050869405e-05,2.387321369585895e-08,1.990781958566184e-06,3.817860392360158e-06,5.51355219124113e-07,4.988532956881995e-07,3.1837444075297775e-06,5.296356389749041e-06,2.5353126920995408e-05,0.0006523967538555787,0.042024584951531586,3.332708819897892e-05,6.462967885235914e-05,1.2385680634180296e-06,1.5592600873727174e-05,5.09436654267288e-06,2.67464573408502e-07,1.5543142772858403e-06,0.00015518141954447357,0.00018901247885449107,3.6444068454081777e-07,2.2366573318391502e-05,3.433603916908005e-07,2.539185914357133e-07,4.0946393491911525e-06,0.00032870527595591864,0.6044772621603933,3.948862062474707e-06,6.477875644628305e-05,0.00012262293257566653,0.0006188316091799008,2.2541347347510364e-07,2.4077677155886665e-08,4.204711898418185e-08,2.5615376340017427e-06,6.532068218817703e-05,8.328729824679215e-05,3.4526912763571344e-08,2.8287187050112936e-05,3.4631364902973454e-06,0.00014238886947888848,1.7516170467015927e-05,0.0006096288799585211,6.554365646287853e-05,6.47776460820648e-08,0.0013427938219426375,1.9863409428654475e-08,6.653600705924394e-06,2.9110252431904123e-08,2.562598548585966e-08,2.404423953440347e-06,1.979683890986477e-07,1.9202887552098564e-08,9.511754952810087e-08,7.764708198201627e-08,0.0020928950591331294,1.8278580671468896e-05,0.0014244821451611044,4.1293403659360683e-05,7.981705597153453e-07,1.9359514358509603e-05,7.955975055809722e-05,3.3561807275405336e-05,1.6769553828427575e-05,0.00042248718069359744,9.950896200950335e-05,3.3644255463612455e-05,7.573583782638893e-05,0.01204211284168159,1.927511026723402e-06,6.012596716401455e-05,0.0003088597532052801,9.406681059217239e-07,2.588776183126701e-05,2.3427316041529784e-05,0.023361430349613785,0.0016674125288246926,0.9999987181474805,0.9999869761942394,0.999945486070268,1.556756513555983e-06,0.9999829829433803,0.999783611488916,1.0871664711681286e-06,0.0026136267824970996,0.9999617972951479,1.5299058054074972e-05,1.1708789058367489e-05,0.99999668381915,0.11434033907457264,0.9999949298532158,2.7740430259586144e-06,5.158240811394471e-06,3.7905410477651993e-06,1.2578241302342752e-05,3.985737531558625e-07,1.1365263446119983e-05,8.51193294617506e-09,1.1449970935222389e-05,0.00016647986916753434,0.0004368779183803021,9.106884292641773e-05,4.808221216880061e-07,4.151415235076282e-06,0.00011269753960783348,0.09859917661967302,4.9693151705238016e-06,1.4227059940887307e-05,0.0010730802776541888,2.884926708061869e-05,3.577140999990937e-08,0.00020206644553346834,2.380999200340764e-06,0.003947300732558042,0.0002724403309576546,9.067501921251124e-09,1.1027372907563056e-06,1.183586750404043e-06,1.4405877117872864e-06,7.083909724986429e-08,6.62355588920784e-07,6.6259363331534e-07,7.946229502705367e-07,6.3233571811398094e-06,5.456358329432023e-06,0.03866886480714403,0.020181295811598738,2.200440222874675e-06,6.15820178134132e-07,2.9270783199196035e-06,3.757186749221391e-06,8.635316442290467e-07,3.2571328863727256e-06,2.612152509860383e-05,6.3956273938024925e-09,5.1714548487137266e-05,1.828010281520192e-09,3.7566457316230145e-05,1.652868355048355e-08,0.00023736793454855624,0.0018658098469042847,0.0074734277919820775,4.310592598245366e-07,4.0387525734560214e-07,3.3064203070965197e-06,0.00013747004116856478,0.0005102487514018932,4.4021343168365284e-05,2.395398965925423e-06,3.872905940447658e-05,4.782935920060366e-06,6.936284636838501e-07,1.559987232452024e-07,1.9117913717656226e-07,1.7114997057817918e-07,2.934076771584826e-07,1.3016527153503397e-08,0.00025175213887891504,2.8593656305236202e-09,2.957921501572584e-05,7.191890023327908e-06,0.9998912042627169,2.7373846816376422e-06,2.4165541809891504e-06,3.2409721194364246e-05,7.915764171050792e-10,1.122630417220295e-07,4.792018608647617e-07,0.9999112602534802,0.00036751624395106293,4.508867114505186e-05,0.0013679641905440768,2.1470024638733894e-09,1.4376527224788297e-09,3.8991922187995e-07,6.019417137502025e-07,4.431134150435614e-06,9.044447614717262e-07,1.0078315721196224e-07,0.9999990732776425,0.9999724397309678,0.0005939200861007411,0.0021420435262372198,0.029119794092477808,0.045004299470140625,1.6844065370883582e-05,3.4572840819981835e-06,3.331300074029395e-06,0.07256265488349307,0.05018365467371668,0.022241084659872474,0.00023725584328597695,0.14927531904042107,0.007519102390003262,0.0004437332006359538,1.3095133594188461e-07,0.00010691053008103609,1.0913097061861671e-06,0.0026136267824970996,6.606565011099435e-05,2.3374460559141155e-05,1.9903317768841715e-07,6.849819947801493e-07,2.030774179954354e-07,3.3018929311266496e-08,0.07923822048273037,0.9998577246160542,0.9999583767537532 -बेंगन,object,5.504726200882667e-07,0.00038344140510723665,0.038846889105070184,2.0217099459387503e-05,0.35682438534096983,2.2138840122797056e-06,4.534867163393388e-06,5.090812254842886e-09,3.1907859295581097e-06,8.743979255764196e-09,0.00013531451651824277,0.0002364593251639427,1.6816809366320983e-05,0.0002115960210066684,0.00031142320347817367,2.2056170246811674e-05,0.0014165824805234069,0.002781636499811137,0.030617079304172744,1.0119065428631543e-05,0.47814899395381605,0.0007556552396968769,1.8573534701747776e-05,0.0005632342413464676,4.882732008734352e-05,0.0028685897728423656,7.909271031877878e-09,1.3910132966361673e-06,7.896005228389794e-06,4.8587656271631825e-06,5.12701016913983e-07,0.40288281663650505,3.067165452881112e-06,9.852767291446181e-08,0.004604011508235438,5.792155899200274e-05,0.0004115755640278849,2.9311933579121527e-07,9.609574873336376e-06,1.47803248088363e-05,2.8118139214006216e-05,3.0745782475923947e-06,8.69481246143684e-07,1.5647011314545026e-05,4.74732687167718e-06,0.00822892494096749,0.41562370232852736,0.0007733177269198717,3.5264236017325477e-06,8.175789666198204e-07,1.4592579047362941e-06,4.5244692362756275e-05,9.369489819786427e-08,1.0498579968064978e-06,9.848267583855688e-05,0.0001459785752923428,3.320537078909847e-05,0.000726876525766667,0.00011935813589700324,2.4629036050853096e-05,0.00015794126393582996,0.013773286499303202,0.03797984731375809,0.00010595622876632121,0.0001494736349249602,0.00010393858038728914,0.0018863017040388172,1.2153515859455066e-07,1.3956980567984857e-08,6.292404932628561e-08,2.8131035660486174e-06,0.002974256224433688,0.009185268897531887,1.1587805347959467e-08,5.559908508272915e-05,7.09858238772453e-05,0.00044250784019184277,2.9808675490605728e-05,0.0005559940705794405,0.0006595515162894593,1.95470486988478e-08,0.00724931751841344,1.1416132801882001e-07,0.000381944978347495,1.099939067320724e-08,2.464220876246647e-07,3.9357934972308564e-07,1.6501926286453729e-06,3.3304443397009435e-08,4.435465474091509e-08,3.254550094494168e-08,0.00010072090140495098,0.0006453528406969634,0.015810938246023004,0.0019723796070677075,8.21345768783571e-05,1.7471661994878934e-06,0.0024281202727042153,0.0001509121658046491,0.0006338084242579889,0.00447971622995136,0.00011039717277158178,3.269305011195326e-05,0.0033744754024600723,0.03718212632477691,6.30258060683929e-07,8.377541572019724e-05,0.0003951231160114136,1.0922871252635375e-05,2.763032475874606e-05,0.0001305334986289017,0.5599455977505772,0.051211598906229845,0.9999990017586669,0.999987261205049,0.999932286285154,2.2570216089405573e-07,0.9999803785504878,0.9998589414049713,5.49634938005399e-05,0.07073168064596708,0.9999698209077162,4.882748434299934e-06,0.0005729491143499245,0.999997609260346,0.19371057397445327,0.9999942537028582,3.6120950792681207e-07,4.758017247554429e-06,2.154932809298356e-06,0.00011654596464341627,1.513645200757575e-07,1.3515681196806695e-06,4.3751256916253495e-09,1.4776316241519628e-06,0.014522159427872059,0.008401731922660926,0.0073707033852816635,4.6525244571016993e-07,2.1396592635575288e-05,0.0025782538406720667,0.005348556131463607,4.768169061333479e-06,0.0007491597360828633,0.017307999730064937,7.65900844205906e-05,3.284093043244653e-06,0.00025557946671033913,1.2373489513310419e-05,0.002782694516386531,0.009887822754499707,2.336055748903545e-07,2.4000528331820437e-07,6.462487776399018e-05,5.689861219662776e-07,9.192432459692544e-06,0.00022604180672867162,2.3105835723091188e-07,5.112548606082247e-07,0.0008586597378077064,1.493696967826604e-06,0.41093679910411013,0.003010097876459076,7.795758420025596e-07,2.106153979766956e-07,5.824370875546088e-07,7.129037036705699e-07,8.537587715140984e-05,3.182709279181671e-05,0.0001366752750034004,3.22557412117011e-07,6.9126294830132095e-06,2.4662087281153278e-08,3.2612783720133263e-06,1.9964099438921777e-07,2.8105503698271585e-05,9.041011809425513e-05,0.09819055391745098,1.4423769652639003e-07,1.4483700720689943e-07,9.981778325631599e-07,1.5170547798558883e-05,0.011021326776175008,8.144071710848021e-06,8.592441770802213e-07,1.8477173955762632e-06,4.431607418713338e-05,2.4921237382815467e-06,1.0432208524993608e-05,7.819466854023919e-05,1.4440241668076756e-06,3.1154165001726735e-07,8.846138647125096e-09,0.003327635756694818,2.1790151228770437e-08,1.763699207354757e-06,1.0994001861404171e-06,0.9999120228683335,3.399732535659768e-07,7.627957358765405e-06,0.00020112065395602982,9.666501422191798e-09,5.6302304990227025e-08,5.698604600847148e-08,0.9999119912663444,0.000616747262041948,2.0189186388968773e-05,0.12818268362547292,1.1288736068087581e-06,8.862793101079759e-10,2.3925855284138295e-07,4.8420817546566465e-06,9.563424737980912e-07,8.636964178144099e-05,3.1612785985307225e-08,0.9999987598754214,0.999982930765526,2.0446914927780717e-05,0.025617173145576936,0.3929411012171647,0.5168134442572813,0.0021600518189749535,3.2605907255720254e-06,9.543215357420713e-05,0.7904771590358877,0.5002572706439855,0.020581270533095296,0.030693119175799977,0.004196596326701718,0.1480960831864627,0.01933842604556665,2.717760265855067e-07,0.011260044116936074,1.0910436843085922e-06,0.06964575490774559,0.0012920590790955317,0.0005048234043751051,1.320749900229642e-06,6.871151400291599e-07,6.511797408169653e-07,3.762697745078055e-07,0.45662183244433563,0.9998415394349294,0.9999523118442278 -बेर,rgb,0.9999999974636513,2.8869458254313295e-15,0.33943538327857187,0.00022062549879293147,0.4921505148927781,1.7062536301226694e-07,0.9999999999796947,0.0002526639296061199,0.0001718418417113885,0.0010347055951141146,0.03582035484020811,0.07749489660724958,0.07603602077703052,2.5806807758786757e-15,1.7301557684767374e-05,0.9999999999990679,0.9899241450233857,0.9811891339862863,0.9887721277801917,0.0027289584542567755,0.9959110444843542,0.9999979627621162,3.483814392155523e-07,0.9999999280389068,4.5278064548921146e-10,0.9999276857635871,0.9999999984039036,8.321875661158905e-10,0.9999999999976499,4.775622998380113e-13,1.7122955939763784e-07,0.16764245005517797,3.279441132293883e-07,0.36864434043270305,2.5991021800732453e-08,0.999999999999057,0.005029648054141477,0.9999409313501118,8.443624405652901e-08,9.294350696840103e-07,9.687230391266278e-05,1.43288555180202e-11,1.763468288783007e-07,3.2357536613352415e-13,0.9999999999970592,0.02412381911701571,0.10623594792334481,0.3466130229993568,0.9999999999946376,0.004044385234053468,1.9361510603709532e-07,0.0001114083638137799,0.00044316718943381077,9.046090098354942e-07,0.999999999998127,4.749958503719077e-07,6.085558633711053e-08,1.2341752517818243e-07,0.07080164887237968,0.06776434673248621,0.04111724094364592,0.9977128338511925,0.999999999998961,5.384444645843878e-11,1.5113042328567217e-12,0.999999880637221,0.9999890669028113,0.0008974446933655557,0.0003174481973080133,0.0001575770117549044,5.886795411288443e-07,0.00024216481931524153,0.00011470293379638035,0.0017337595520264572,8.053039260758048e-15,2.014301673556621e-11,0.9999727535758928,0.9999998716913345,0.9999987267168081,2.1442853626174377e-07,0.9999999979390126,1.0475916437222126e-07,0.9855209122757624,6.289358238099926e-07,0.0002225039624515857,0.9935480087946523,0.9999999999982114,0.9999623932882968,0.9999999775208165,0.9999999975468794,0.0003472906179161655,0.999999999998322,2.5933969310299528e-08,1.4725154176150793e-07,3.076905605939392e-07,5.109765837391409e-07,0.9999999999976323,6.528951409997274e-07,8.214411477318393e-08,6.102571834347017e-07,1.6132803585868788e-06,0.9999999999766529,1.1378264451394289e-06,0.00012620694272428413,1.925049647890462e-06,1.5073493435842282e-07,0.9999999999968936,0.9999998956997591,0.9995489795221097,1.5993852533829466e-06,0.9998527159331825,0.00015205181402521976,8.84952810510179e-05,0.025547824472098777,0.039454432752878514,0.028164141657277507,0.022272730421635224,0.002760888680252684,0.09220933331202046,0.8727313577092682,0.20322689025069535,0.006322034996474125,0.0014658415438020172,0.00022154634502927702,0.015142232800071034,2.594824483309062e-07,0.006243230781442626,0.011760551512942669,0.010178265270892325,0.4993819619989854,0.0001796376489868886,0.4642012676717412,1.5851662278826823e-07,0.001501086441844209,0.03154822685630448,0.9857514565846403,0.9893397776547772,0.9855393860611065,0.004695001762703938,5.962762064734804e-13,4.101725514893402e-08,0.9999999999964371,6.907954972861639e-07,0.00019363447360522422,0.0013993698276899512,0.0036703730585173964,8.834108495896417e-06,0.9999992084093228,0.9999877443827435,0.9999999274553096,0.0002379571373362503,0.19388350043393937,0.9999999999985891,0.0342081218154031,0.9999999999981197,0.06251918824732752,0.05812174719253408,5.943622173886726e-11,1.3734355554671182e-10,0.9928198106581305,1.7130391057131842e-11,0.9927641668576372,0.9999999999998253,2.0180966545738648e-10,2.1759318895682336e-10,2.724768545393456e-10,5.061019543977258e-10,0.054756235351706574,0.06480592378048951,0.00013412664657176378,0.16212066448901585,1.9394559711104907e-07,0.14007767469585217,0.9999999999990055,0.09834100908720704,0.9999999999800522,0.9999999999979974,1.5547833344622355e-05,1.5543478663159496e-11,7.321466205314558e-11,1.5096276084572627e-10,0.9999999999993332,2.250573460898742e-08,3.7737817474283085e-07,1.5083324113055942e-07,0.9999999999962732,0.0004491933402193018,4.4400792269370624e-15,0.06567974547787449,0.06497316200695434,0.03833289838289306,0.9279721387840165,0.9999999979653165,0.004868612333755405,0.23261273180827247,0.9999999999938609,0.01907200808995769,0.019394719353291415,2.6712733303068234e-07,1.272831640006937e-06,0.00019712681267213116,0.2617103080078217,1.3000316542405549e-09,0.9999999974775751,0.00363191634833028,1.2047186179476371e-06,0.9999999999981415,0.00018342538917149646,2.6874379238545766e-05,0.9999999985250556,0.8382972845865607,0.9999383294002243,4.870877806913119e-10,0.0645116666764257,4.46336821889285e-10,0.011786772883355891,0.03969775070677934,0.9999999999986966,0.11576668522673696,0.21805389096931488,0.10948042350394449,0.0001836774538083919,6.97211714277508e-07,1.070580175676465e-10,0.9768216505547467,0.9742147477007017,2.903560998723412e-15,0.9716459469067049,0.999999999998648,0.20377553603341897,2.2232918016629058e-08,0.9972123155392939,0.00015283632830932336,1.1990242985228342e-06,0.147904357339808,0.01562612361716346,0.056454488261151195,8.142742990300116e-13,0.2177070771361252,0.2073189282733629,0.9999822812537793,3.6337790198555213e-08,0.02622624960019192,0.01633316543640647 -बेर,shape,9.79742137333309e-08,1.049972631645839e-09,0.9999993674780634,0.9990104543744782,0.9999999429317973,0.9548398725395395,0.9998155391731616,3.650786836493589e-10,1.2178652390320421e-08,4.943572260143099e-08,4.717911094268633e-16,1.323290004298232e-17,7.367991305728694e-17,2.6821809984244273e-11,3.5485438091829196e-12,0.0009398359633915744,5.697280759767378e-06,0.07421219473671298,9.330835115048187e-10,3.1736538768362797e-12,1.2107324622914741e-06,0.9999772863877124,3.2781595449095375e-05,0.9999999430015681,0.2832585116023688,0.9999966471597207,0.00017534300518525268,0.006353312492024297,0.9993411831567586,0.00034076789794921386,2.8015558421515296e-05,0.9999950698302181,0.00010441989564232016,0.00020983329364968414,0.008966495684001497,0.06126753263085927,0.05013036739545185,5.552052495816897e-06,5.389785725380747e-10,1.1568181599708576e-12,5.894556342851085e-05,0.0001130432299305258,0.00021270741921257939,0.00011202324348659994,0.0026296920118661785,0.9999963886101693,0.99999997883064,0.8487348981547553,0.9982879206644543,0.0055158108248916544,0.04700426569343598,0.9154668972252078,2.2792797770991017e-06,5.1212578437080396e-05,1.0486095219691979e-06,0.0001404163249705337,2.4291572885380424e-17,6.505097295868013e-12,1.319751083419375e-16,6.690483707741662e-12,6.146091251407706e-11,1.1058578997722525e-08,1.729074772397344e-08,8.51387093872848e-11,8.906367821799461e-05,0.999998724454798,0.9999977797356865,1.040479182360985e-06,3.58724918265669e-07,4.3276500509073336e-10,1.0712777702672972e-06,1.0984065371099774e-08,8.03277479853807e-11,1.1826938873574946e-05,1.2182722034459437e-09,1.0840165613503211e-11,0.9999047922636674,0.9995353629725436,0.9993277830174211,0.00018443567725817233,6.370929820183106e-06,2.1241630462069256e-09,1.5378803398961378e-07,2.5670558001251234e-12,5.419019152464282e-06,5.991447734725345e-08,0.00101624033869811,0.00028524246737681754,4.114120482098037e-09,1.7677716625455157e-07,2.487180414297696e-07,1.7846557904706168e-06,8.340839763024563e-16,3.4426844629756264e-11,2.9419167621191854e-15,2.339859138268754e-16,0.00398158172804393,8.30326717357846e-14,0.1652029381561031,8.932167583021631e-11,1.8782876769998967e-05,7.07413584771756e-05,1.3694426290379577e-05,2.224711309483074e-05,0.03738230969183013,5.539849516153992e-05,1.5702126871522952e-09,0.9999998187424812,0.9993743785822962,3.4031175495850925e-08,0.9996286465763734,8.192415394313272e-09,8.002098422475507e-07,0.8219998364785195,0.9999726644671785,0.9999942033334899,0.1784784851976094,0.05112606659563777,0.0215987917191371,0.16757027946645664,0.9999969705540053,0.9556157908368329,0.02074188038271886,8.248575835727451e-05,0.9121974808651523,0.06815688810964593,0.9999644138241057,0.02937561282009487,0.006184498359197138,0.0007746014005920084,0.800751116789065,0.005372013825316897,0.005974251231837986,1.651516966340605e-05,0.665791708259304,8.746720807588968e-10,4.613145183111784e-07,0.010718598456846726,0.00019612317830273483,3.0286588677473743e-06,0.9999898665474303,1.0838905161502033e-06,1.9823660363092926e-11,1.3868422724056062e-06,1.8410139654240927e-07,0.8016268351655745,2.1403462061019246e-17,0.9996016061226718,0.9991304651712818,0.9999999844013931,1.0201359790902082e-08,4.8603568529828125e-14,0.0004216028154889668,3.3766119358552164e-12,0.23626999695810302,6.86679319189369e-12,1.3232900042982414e-17,0.24826622380124658,0.00011027797436515185,1.007518997706015e-07,0.0007303956653922688,1.292322049473398e-08,0.9918397381218328,0.00013490317445818221,0.00020699063522238258,0.0009741118702883324,0.002013525120692534,2.8788064305292876e-09,0.06418072538573895,0.9995836231310442,1.0276982298724716e-16,0.9940408187936606,1.6227406928171407e-09,4.610571397697542e-05,2.8918983830698324e-08,0.9420706433479444,7.149113707181762e-07,4.3741110177536104e-08,2.0668379412592692e-05,0.0012296232658020087,0.001018775501658997,0.00022531988952272257,0.9999999368670673,0.04064202549216097,0.0002973160588783076,0.9987496476549019,0.6881501691775537,4.730299688404951e-08,6.905565717220172e-09,4.277010124279848e-18,0.0018276260264187708,1.4727568554784487e-06,0.0006625055871829263,2.715026701029681e-10,1.1013135976404649e-10,0.25962217900446677,0.16421584439102696,0.004517521943457076,0.018163522478000592,5.5343497986159374e-14,0.6032695411828818,3.3660071762484365e-07,6.16061269629449e-05,3.659945847190306e-05,0.9998713530870961,2.203639035357465e-06,0.0003110563545290228,5.721971436320096e-06,1.6063258520962508e-16,7.790507185647886e-05,0.00045477599199377394,6.156694192766457e-06,0.0010083950207898167,2.734519855315372e-12,4.9526830484195905e-05,0.981832351516261,0.9743142265595347,0.6953834635130001,0.9998640170859572,0.9999994363830947,0.9999999913166749,1.2207839879840192e-08,3.563361917003996e-07,2.6278640418562945e-09,1.0565044353491967e-08,5.260195851348193e-06,1.807603625010094e-05,1.2472100551922896e-10,3.200535045913142e-06,0.963024285138633,7.876305504822814e-10,2.413765674197517e-07,7.546392553426375e-12,3.259834080286363e-05,0.9999969705540053,0.1256730153049475,0.9983109045709716,0.00015884872286503916,0.0210292964918967,1.4145688322896844e-06,2.8161575171079086e-05,2.8447413043236605e-09,0.9999999984303416,0.9988250398662942 -बेर,object,0.9933053903930922,1.729508571831139e-11,0.9995482300668037,0.3387903768743157,0.9998278457978874,0.0061302282881378276,0.9999999967697766,4.444373388884868e-06,2.6646224304951193e-06,5.330491068263342e-05,4.649122817418131e-05,6.233801713456315e-05,7.435034059489104e-05,8.140318250520356e-12,6.360428573399605e-06,0.999999111160057,0.19610958649966678,0.5408609597720849,0.01522725011317146,7.470327351318181e-06,0.06373030306027443,0.999990141790778,0.00030514883592304827,0.9999999051778768,0.00026908044538853155,0.9999761225829061,0.9999702713959844,0.00010775409680477013,0.9999999696229678,1.6397379648684374e-07,4.747382333136126e-05,0.9992467727379284,1.0045084436934249e-05,0.08592011205335086,0.00014842968178738834,0.9999999832159928,0.018613073962142648,0.8584288506866332,5.507666114537811e-08,5.267160169023436e-08,0.00011511011988121688,3.151832594698164e-08,0.00026072901190763044,3.148197379584571e-07,0.9999998906146543,0.9968322568533868,0.9997088199138151,0.9950685823960748,0.999999996225968,0.01005570208835418,0.008156322374199035,0.6258914331849591,0.00011037592596788073,1.7989344724541004e-06,0.999958289539012,0.00048775612896885285,3.5778476953022654e-08,2.4254487119873573e-07,4.444406811825242e-05,0.001137719250855151,0.0008413867431450731,0.024778906457565742,0.9999961135317735,3.526366099548243e-09,6.422519790456382e-08,0.9999992971724315,0.9999644011336551,7.571911016639047e-05,2.895950334687593e-05,2.462385773305507e-06,2.117338997882286e-07,0.00010601888443425848,1.4254434859043824e-05,0.000961294408146926,3.0675830000888955e-11,1.5115806121930846e-09,0.9999742191598197,0.9999964831768375,0.9999864087926257,1.3151166674069213e-05,0.9995195919005836,1.4286915148258843e-06,0.08682568830296765,3.0574414414158434e-07,0.00010318323787435073,0.06337048377631938,0.9999994716805811,0.9594180210934222,0.9794890188506824,0.9987982262444861,3.524104551601595e-05,0.9999855413588822,5.0312544953085736e-08,8.147267727615243e-07,2.518747824854438e-07,1.8213257647026603e-07,0.9999999202033364,5.055724955869422e-07,5.685389659200114e-05,5.799828646678865e-07,8.1014162565783e-06,0.9998326257834197,1.2168288872431014e-06,7.904460289046583e-05,0.00022535395342476809,5.633938031189e-05,0.9998069733495238,0.9999998919251,0.9998629154521097,2.0623004345365283e-06,0.99977356314533,9.867001503693373e-06,0.00025575261983454316,0.023878890736406366,0.25154277525227703,0.765754286325672,0.3634736984958612,0.0016910217131210939,0.010521555149334085,0.8879406806916479,0.9991129157140152,0.012433640652333013,0.010216080641260979,0.00019277038006715707,0.05202472452616568,0.000101024160486677,0.041278226978854464,0.2290637940478732,0.016881925434354992,0.10200439414940626,0.03532649939203868,0.19030685775769943,0.0005111301223959371,0.0006432421821145382,0.35391846520686726,0.01576253081092306,0.11240066757772026,0.44542301557922714,0.006635781991342341,1.891318092916264e-08,0.03231614882365165,0.9999971667113969,6.08029267791862e-08,0.00015308979123437996,0.0001947205357827763,0.048221381249763426,1.5193194199068805e-07,0.9999756233806983,0.9999632583848217,0.9999994938252745,4.158302918987815e-05,5.149485790377257e-05,0.9999998454866453,0.0005238700831238009,0.9999951792959317,0.0011849476815900865,5.236377050377952e-05,6.597978342341594e-05,6.9305227788233256e-06,0.03609162884794132,2.7383128940536783e-06,0.03986427303031294,0.9999999975528144,6.9140227274371615e-06,1.9526542013769742e-05,7.758428347743123e-05,0.0003641015929969395,0.000917885950023527,0.21723657083650133,0.8568879932477457,9.16593222776896e-06,0.010098099687664721,0.00020796010251240938,0.9999994696936793,0.0001516347381655947,0.9999999444453767,0.9999620545310892,3.143397461979347e-05,1.4222192949651062e-06,2.5593000885641248e-05,4.058219541125936e-05,0.9999994898654536,0.053215361964506575,0.003354677262746176,0.0001520698632476426,0.9999999881072291,0.5270844755460189,4.2430129506197537e-10,0.005755606572725726,4.659328324839928e-05,0.706717516266159,0.034981523304915246,0.999569215066967,7.594771822861197e-05,0.00014350036357567008,0.9999999767390143,0.13227021501235536,0.005569932776726966,0.004177757220983276,9.904767547734423e-09,0.29671245514905337,0.0008339726450754663,1.57293838672168e-05,0.9999349227825625,0.027541908016910567,3.1939646417788385e-07,0.9999912633843839,1.2137945596721583e-05,1.9091063328488055e-06,0.9996174508717663,0.507173939040913,0.7132396045366929,0.00012389100696361856,0.0005701183125973918,1.6436351465378716e-05,0.05704633208528296,0.0480240640916037,0.9999999984999917,0.998339405225567,0.9994210408587475,0.999612373194005,5.0853402913059195e-05,2.1366291033310795e-07,2.9058886528224087e-09,0.02127731241493,0.08681158427816203,9.91512454187079e-11,0.006953118509513513,0.9999745890122141,0.9988842492086373,3.604236439478342e-07,0.202611377154415,9.37202812571462e-06,1.4186886010183888e-06,0.998905609767596,0.5025492117133622,0.9774797487329415,1.4000578048728997e-07,0.039805053965633976,0.0021426191262953033,0.9256213790559803,6.907826438312691e-06,0.932078768248515,0.09922689526382272 -बेलन,rgb,0.9971779637736816,0.9999999999965894,3.3179674520175957e-12,0.9999999999999905,2.3701012961986766e-11,0.997669340989519,0.3670945752226071,0.996647202443452,0.9826547003628983,0.8679363197340484,2.9592062726695492e-12,3.5432173071349716e-12,2.772710321444068e-12,0.9999999999979934,1.0,0.9999999996448847,2.6434489941179186e-14,3.075919683009044e-14,2.947367961338412e-14,1.1570647475752381e-09,9.577191191138503e-14,3.2472085360773107e-13,0.9959356942821305,3.9946680764148933e-13,0.9965642955055831,1.0138804403563738e-14,0.9999970600055496,0.9896383747767145,0.9999999968540934,0.9999997681539285,0.9975262130002146,1.8371953498469613e-11,0.9911927399340877,0.00279589575022513,0.9999999999999993,0.9999999988013735,2.2178144804204437e-10,1.5767129276060213e-13,0.6174085834849576,0.69733023951998,0.999999999999599,0.9992446861571384,0.9953736193473409,0.9999999734747731,0.9995160441117922,2.6940923330595258e-11,2.6907940350267166e-11,3.1806767040271513e-12,0.9996960621737481,4.38192941281741e-06,0.9973359040794845,0.9999999999997349,0.9721054570839721,0.9388703435029846,0.999998294688955,0.885908857938259,5.6344460723410406e-05,1.701659382097285e-05,3.5027096164787544e-12,2.502330966511783e-12,2.6072793497885675e-12,1.311988425214331e-13,0.9999999999945797,0.9893142036766066,0.9999974272644135,1.9679020733964855e-12,9.471282786513979e-15,0.9600278028116838,0.994089867425654,0.9899689600887167,0.9708554067202758,0.9999999999996794,0.9999999999980194,0.9469881658515106,0.9999999999450524,0.9979906976869961,9.223597468814926e-15,7.602610287784435e-13,3.108136643080538e-13,6.9953977133476355e-06,0.9999806689393632,2.3592993134947202e-05,2.405506282292726e-10,1.3410491229271483e-06,0.9949915439386782,6.527291618561284e-11,0.9999999984413646,1.0647521455567487e-13,0.7067010123889341,0.9999819326886134,0.996134377408591,0.9999999999999505,0.0002534807053852707,1.2718129280603095e-05,3.982057536331664e-06,1.8382603382181245e-06,0.9999999768106159,1.2684148383891117e-06,3.505639525419624e-05,1.3926691683530476e-06,3.337186869009129e-07,0.009693273458283328,0.6193415776690807,0.9999999999999738,2.6888397370836505e-07,0.9978409064769511,0.9931034150380644,3.236996737749436e-13,1.8520287301616838e-14,0.5405490899717034,8.513492748374275e-15,0.999999999999861,0.9999999999999996,1.0825195212717537e-11,3.4099398857251364e-12,3.932862183575294e-12,0.04598814109366077,3.1484126862828234e-11,3.198118537089931e-12,2.634067861563273e-13,1.6251330264618714e-11,1.5767714063598705e-11,2.9386785274258857e-05,0.999999999996128,1.3981793128684576e-11,0.0013157626213261002,1.6580187496786123e-11,0.0555077409123813,5.62802397347501e-08,9.547545289232405e-07,6.4276423775004945e-09,0.0002024272823655892,0.9982663123136074,0.9510269650743781,0.027107921887904035,4.992169727064142e-14,3.307831243347633e-14,3.3669305302214805e-14,6.903579568988913e-07,0.9999997225833638,0.9999999999999971,0.9999999999781719,0.9668426094818223,0.9999999999644043,5.979748819608541e-09,2.819604209764165e-10,6.528130872178569e-07,3.7247801595227444e-13,9.247614006118112e-15,1.225124382303254e-12,0.9999999999931553,2.6635302095204885e-09,0.9999999961067232,3.0445109096280746e-12,0.999998541555923,2.8005499411381728e-12,3.9429266356220945e-12,0.9996924389028363,0.9873963228725969,3.790831449877551e-14,0.9999929072548376,3.424088557602832e-14,0.9999999655500112,0.9982280074536795,0.999398660190465,0.9998141275886839,0.998082018352299,3.5084382255339036e-12,2.5233530494125066e-12,0.9999999999999571,1.5572531995094345e-09,0.9972811811234663,4.5199062957336145e-08,0.9999999999558846,1.7004649329408487e-09,0.4160785105874825,0.9999999999999802,1.0,0.9999984017776392,0.9996559100547471,0.9988508456787266,0.9999999998176925,0.9999999999999991,0.9940446586476085,0.9977983034844177,0.9999869453310912,0.9999999513416985,0.9999999999874591,2.5052880129855245e-12,3.494060445950842e-12,2.729290841189985e-12,1.4229566768139715e-05,0.9987472437334879,1.4771522764254953e-10,6.31115279130862e-07,0.9998487263902822,0.018358055217989905,8.365979870045184e-12,0.9941650194930448,0.9160295579652893,0.9999999999914448,2.506317491828823e-09,0.9930509608391087,0.9999959542608561,2.43198606137212e-11,0.8113052521632912,0.9999976539532752,0.9999999999992653,1.0,0.9999285724620398,3.2775404644431126e-07,3.0781180019018834e-13,0.9950674830073714,3.109498661898704e-12,0.9998436384937932,1.0355194853544017e-11,6.7604732402103865e-12,0.9999999999998139,7.97509092378838e-12,2.5278062440316206e-11,4.8797968380282954e-11,0.9999999999775899,0.9655381521473928,0.95898463678261,3.3318156386453177e-14,3.3394561527584017e-14,0.999999999996531,4.2477483043322175e-14,0.9999999999998466,1.6034468731333714e-11,1.0,1.2980147987796663e-08,0.9999999999955644,0.6947670415424207,2.0976639328968308e-11,1.3751843005477921e-11,6.594566954293252e-12,0.999999585967124,3.7049745972760965e-06,1.275997868353692e-08,5.047548871395521e-13,0.9999999999999918,3.558834203303313e-12,5.6199727187498535e-12 -बेलन,shape,0.095790030788253,0.9999963136266208,0.0004096941030859222,5.207292528764967e-07,1.3397344451389833e-06,0.5233209164276228,0.00010499561542371384,0.14212077965235806,0.9945190898965277,0.012421740191784499,0.0010201441939075159,4.2976385792740605e-06,7.424741492967554e-06,0.9995560521561803,0.9993470830968229,0.9990944518115844,1.696631726798857e-05,1.468399735510524e-06,2.1879169918324235e-06,4.4260625526328224e-05,0.0006589491482191346,0.002298482558933741,0.015982632196425612,5.417106959854622e-05,0.024196098027881034,0.0026937332498374643,9.984943481533502e-10,0.002639678335580834,0.027296049747995443,0.39570607821743775,0.0061498263154900435,0.00020413869785484626,0.996497552573452,1.1043162307153146e-05,0.5425121891358571,3.11090837666196e-05,3.225944576322344e-07,1.206002237733591e-09,0.0005705465454457891,0.9999640814025763,0.9999883552734229,0.9997224966113901,0.9565773219222222,0.9872417058114293,0.7251860244611354,1.823965083522968e-05,3.268617435055245e-05,1.969415337772917e-06,4.042126594926571e-05,0.0001200038283075885,0.06467838235532539,8.683739297180175e-07,9.981390035841323e-05,0.9998934417738143,0.9769814433839903,0.0008039487376212706,0.004578370099053317,0.022767457596667238,3.270404676495623e-06,0.0003473676710170322,0.00019597285055394803,0.7903622454911099,0.0006843592372499956,0.9996605255987874,0.019146515009344865,0.00032716374874783966,0.37165811776216257,0.0031259840299589013,0.007574385149422335,0.4655792063432395,0.999998165091597,0.9993320846827313,0.9999085200844813,1.1514574580341482e-05,0.9999983561737112,0.9999249176779089,0.0005864619270817056,0.0002304368255051501,0.003815317441520834,0.00889084443604753,2.986436397811878e-07,0.0721957728590978,1.7243344628317248e-05,0.6933330744539299,0.0002816416644297912,2.0866768294418116e-05,0.0026394154113988525,4.139764234094079e-10,5.345492268078144e-09,1.0402590607576472e-05,0.004248317007289049,0.9991568887832712,0.36666236033438626,0.0627311672828999,0.7092040014436338,1.777607141794349e-05,0.8450392792263063,0.6736398533406819,0.4155259455480167,0.9629467851938954,0.013650335771977783,0.9967855695727292,0.9725931678250853,0.9983345155922574,0.8808063836861412,0.8251515382887171,0.9999948419718139,1.4726920465132494e-05,4.04298628269572e-06,0.9994017987334652,0.009701220644721158,0.9994042833496406,0.9999182323716216,0.00036625180424397415,0.00019293957599189382,0.9434490729084172,5.257137876611229e-06,0.6793331278414861,0.00039588320119843056,0.1020951072482267,2.84330778959373e-06,0.01632800191637389,5.418289172055255e-06,0.9999934467408921,0.30378155091044545,0.0003336945237524414,0.0005977199741068296,1.4714182449333563e-07,1.9617155986539276e-05,0.005861788522099075,2.0519952738819144e-14,2.402060511928169e-06,0.009499793158196908,5.139009374447504e-06,1.969525799802506e-05,0.09992526534404558,0.0001790224933824432,6.208787737636452e-05,9.711803202762475e-06,0.1199550855336956,1.5327791247885362e-05,0.6654958311038629,0.9999591732196508,0.9996443528421174,0.00013718944980553789,0.0001214653775502014,0.00035840566014657993,0.013432347273315737,0.0006202886947472824,0.0005091808358554347,0.9995018480932125,0.9268452971651244,0.017943299113676016,0.0010098626898927899,0.16560276577193125,0.0009714475888894221,4.2976385792741215e-06,0.0023240367855567475,0.0013869282790197274,0.24977284625610435,0.02682759926494784,8.137483530055031e-05,6.455218467615228e-06,0.18699901515988507,0.09155509461926403,0.0035859921174062116,8.635266020022938e-05,0.0007678087171036995,1.332684752402637e-08,8.22416236147629e-06,0.9916313841261165,0.573030010938943,0.0011278968005004905,0.0012986669958966628,0.00029641245863546795,0.029691866833722692,0.9991569934416973,0.9997921983953079,0.6163404316267699,0.0018663911442564321,0.00965072966227973,0.6306574853022274,2.775791239095468e-06,0.015097947251336124,0.9867310119877442,0.00044811382270890267,0.0005923046313042441,0.9982294736921967,0.0007021822740988057,7.03918923263473e-05,1.430941656525855e-05,2.106179475084891e-06,1.674279605314319e-07,0.5282206261643833,0.00025401133737399474,0.00036563990739719255,0.00039327448248470116,0.9961802861328354,0.028236084475265124,0.9997216533214001,0.0011352930469836155,1.0698460131510776e-05,0.06336880174431793,4.0290339036092147e-10,0.49822282145059904,0.9999809876172209,0.8783545804831461,0.9999986250779948,0.9985457456753808,7.443890809492997e-09,6.005395171625292e-06,5.825904143071512e-08,0.00019901992630041564,3.4010147194517705e-05,0.0003004771416920371,0.012881042452993563,0.0003707382567212917,0.9990926485282747,0.0006370713906578189,2.462205692193177e-06,1.4342209516270574e-05,0.9999956368746157,0.9999961369800991,0.9999637771201052,1.2929096430945556e-06,0.000227771882603354,0.9997450788142652,7.276584819782323e-05,0.9999984169549512,0.0003283994720198361,0.9983598562164496,2.030356178435143e-05,0.9997249510620035,0.9996517718086799,2.8433077895937e-06,0.03028524573012075,2.427400417090873e-06,0.002199149247850359,2.8340038906729692e-05,0.011005480314069907,6.437455911959956e-09,0.0008541175434876204,0.8894213536165578,3.829747278013809e-05 -बेलन,object,0.20640497457472548,0.9999966113546647,8.576804428827316e-07,0.01640354116321328,8.243036169379241e-09,0.8662737769932713,0.005801335495761021,0.21125687670334284,0.9798494999693887,0.07294669459827023,0.00042533897696829244,3.7571679939422298e-06,9.991289599203503e-06,0.9998596297628639,0.9999933983056652,0.9995820400812117,1.8564040249494632e-05,2.0252467855072405e-06,1.0744646926418943e-07,5.205539199088804e-06,6.336841938939633e-05,0.00024840127285788937,0.10494036404217369,5.61051615615346e-06,0.05758638263913494,5.229903808182956e-05,4.036572130560698e-06,0.04632310432527756,0.6065882939403363,0.7265888269112081,0.019462140449182663,2.240348932273192e-06,0.992447845231375,8.738143765036432e-05,0.999253859269019,0.052986242033424114,2.4188242257849137e-08,3.873857729277706e-10,0.0002471770204098663,0.9996177055927017,0.9999994216748539,0.9997747808131231,0.9627232119560747,0.9970100778495619,0.9028183206168153,3.5184591731995645e-07,9.156056112281608e-08,1.4876235897650586e-08,0.00125740961486415,0.00014370341685808637,0.2017625701463038,0.0017404291065362752,0.0020474418343966595,0.9997790111583462,0.9990215370555761,0.006830034321368346,0.0008166659246585655,0.005565247092533028,1.1118730533632281e-06,6.909507100309793e-05,1.9386578639840748e-05,0.0060828400564522135,0.20917995102491382,0.9993848223558077,0.36872823329751714,6.010458663581944e-05,0.0036474053677518236,0.022783573512155774,0.029148628581590452,0.6149230452735278,0.9999986025800182,0.9999246926593301,0.9999889575517392,0.00018722347073173008,0.99999721514683,0.9998552198068785,3.313039947509347e-05,1.844320705535879e-05,0.00011149847118141468,0.009467024937874664,0.0002753101999398799,0.00700130619406301,2.281047318297279e-06,0.011621853093773123,0.003913556582735366,1.1170476930914536e-05,0.2560264060052346,4.978586680213466e-10,4.972165182583167e-07,0.001794913052322513,0.029826187725945644,0.9996385602420489,0.0032239041029772384,0.008743460775534064,0.0034401835227615457,4.534195705668917e-05,0.9888224406847904,0.007127012427904881,0.14713291164388642,0.18635027989157574,0.005071864334350565,0.9968342151971977,0.9986853138210018,0.9999992052950725,0.468559989545251,0.7256919282768411,0.9999504070591544,2.280120799324243e-06,8.997824423037642e-08,0.9991670333047592,0.0003904482948223227,0.9999366490319856,0.9999898294688334,0.00012172131709062751,4.540597747870352e-05,0.0230267212398584,3.7353915129064635e-05,0.04141397262022859,0.00019079501206649638,0.001536256292832854,6.590999522280312e-09,0.002030834975413295,1.0656505541128376e-05,0.9999985835196428,0.0007734640030332126,0.00023378008287221682,8.444386941963163e-05,1.6636631870240886e-06,1.2876230560398688e-05,0.0005583017177995739,3.120772790034276e-14,2.0250756055860822e-05,0.10509953432275693,0.00025353985427727387,7.00900895702536e-05,5.3954714537163235e-05,9.923264691601853e-05,8.417863200470181e-06,3.2729623639542595e-06,0.6219613244992969,0.011514806768287107,0.8671423757251085,0.9998907847291039,0.9998954985222033,9.415406219269843e-05,2.799192841408404e-05,0.0002072738357552451,0.00028086192523192746,2.490097921747599e-05,0.00010002679534579757,0.9999968547913051,0.03447144721431232,0.39240238589302534,0.00025352515279531833,0.8687186858229978,0.00033080203447838477,3.8139762256044295e-06,0.045212267045740724,0.024363787704271875,0.00012032954005514818,0.30149564954566754,9.406496024792991e-06,0.0054546077158427325,0.3798734947588582,0.5379062791750925,0.10481514211782315,0.0029985322527389777,0.00012197592670936525,1.6306785214086296e-08,0.21086573403494416,0.1796391521097541,0.7571125581855087,0.0005896487407222536,0.4600940103933551,0.0001363246800905324,0.14491304185058523,0.9999038609679323,0.9999972182700259,0.9735249447690884,0.036728435512326435,0.054046424334795916,0.9987259422859603,0.0017340157749755538,0.01576654363101728,0.8965734737184694,0.029390221585497804,0.1363167421001822,0.9992699822658769,0.00027685504248427164,2.1211314690124166e-05,1.2568212165469015e-06,1.5842165503251137e-05,3.7759030142536066e-05,0.004031915231592672,0.00018352419214752542,0.040649081394700685,0.000579618943095898,0.0457417398520383,0.12752122291820583,0.9996345999693083,0.41642617035889434,7.301608590875729e-06,0.5252174805096871,7.608249297967123e-07,0.0028891690454091344,0.9992597946761833,0.9721329472014497,0.999999485888834,0.9998348447265575,3.572143790471882e-06,2.696466763906872e-06,8.371934445685621e-09,0.0043164859715390125,5.0453502747755474e-06,0.01447440334298558,0.0002977018328936662,9.451452179680613e-05,0.9996485178244572,3.904173770432728e-06,4.3555874892579447e-08,7.573137700398882e-08,0.9999988279239658,0.9999976458635238,0.999837460555623,9.758199743245047e-08,3.9203832744132186e-05,0.9997879948112998,1.9007494605032398e-07,0.9999998400091706,9.636261106823485e-06,0.9960202921890179,1.686820194652391e-05,0.9999813953598409,0.9997772020872432,6.874914014624778e-09,0.0005383016372334162,4.1421371847053726e-08,0.05166244674715816,4.589196055220642e-05,0.0006667554353448847,5.260693719573401e-09,0.04439991363418857,0.06331931986154365,2.3376611279373356e-05 -बैंग,rgb,1.0239124703194144e-07,1.0322381790993317e-07,0.9999993063323647,0.9999999978256848,0.999999944812365,1.903697152501446e-11,0.00037733774689549857,4.567304653589184e-12,1.4090208289784092e-11,5.212971991798413e-11,0.9996802328261639,0.9999867435469041,0.9999764669012939,2.0920019682437952e-07,0.9999999865269735,3.1098918351407176e-08,0.9998168911000435,0.9998443117796622,0.9997399615622796,0.01475342553186181,0.9927177482749839,0.9966526021816567,2.1645888961694606e-11,0.9997935549640999,2.3303812028759783e-09,0.9999995949536129,3.4586284662960685e-09,3.7124528734936086e-09,3.596973321693176e-08,0.0005540225746040081,1.9897797768052187e-11,0.9999996057307248,4.018796047111384e-11,1.2010891342280476e-08,0.9999984062910038,5.750261789435222e-08,0.0958660346680618,0.992339274665192,2.918509787804675e-09,5.527104639949361e-10,0.999999996408415,0.00645542100648238,3.188103478704011e-11,0.0016214104433550142,2.029219707022441e-05,0.9999943235140418,0.9999994583803726,0.9999993017765801,8.062939650280276e-06,1.9785976031462287e-06,1.9976610643641215e-11,0.999999996724136,1.801072568668966e-11,1.2386389025504383e-10,1.3295670611474398e-06,2.81009115710921e-10,0.025924557236078304,0.07983157550551181,0.9999831371073801,0.9999571860995529,0.9997000417951474,0.9871853101127591,3.376351587849839e-09,0.025351900221186385,0.002322940585326991,0.9963507588617224,0.9999978369697695,2.2166853601926306e-11,6.5252697257995754e-12,9.807304235819784e-12,8.078286267163044e-11,0.9999999980075738,0.9999999967566553,2.636690278063102e-11,8.283056378703378e-09,0.00554390238831305,0.9999994237885258,0.9989336133152407,0.997778897879561,0.1626309763240926,7.733440778511719e-09,0.034389800342718234,0.008167522442696596,0.42979061188013656,5.996643793858213e-12,0.031988172571329146,3.327280089721409e-08,0.9965187031941858,3.533398073132223e-07,6.511380646724339e-09,4.916305245944185e-12,2.1146752320707559e-10,0.007363009467737876,0.16434423619270797,0.2539124456451805,0.3908520802969089,1.0150792309424918e-07,0.4412644757264197,0.028229586838418794,0.36664227920521186,0.6436589892512938,0.004843468383828796,6.697675575064288e-10,0.9999999969499502,0.766514019392712,1.894860138020301e-11,9.39329035633144e-05,0.9997764191583992,0.9999998115599698,7.509002711944817e-10,0.9999976452043571,0.9999999973168234,0.9999999959428219,0.9999794983102667,0.9998972378274805,0.9997503898739607,1.3840826981202948e-09,0.9958539021270598,0.9999892263428349,0.9999993490363003,0.9999996706778805,0.9993134794720404,4.881685966189625e-07,0.999999997877294,0.9999561008093543,1.7051539790550555e-06,0.9994312475206697,1.2033076375384543e-09,8.685813959946996e-05,4.463745585270291e-06,0.01807189656784019,7.883768537345891e-08,1.5667968924962553e-11,2.5045952227450715e-11,2.0332738212791203e-09,0.9987795268115973,0.9995788340494071,0.999660379704063,9.966174090063807e-06,0.0010691481288450605,0.9999988727712247,1.8973951523356083e-09,8.3927201032352e-11,0.9999999976173266,0.0027151454960614753,0.08943855750726393,0.000628350131497161,0.9980172874212417,0.999998852375871,0.9988245392468567,0.9999999979630569,0.0008543973880489897,6.880836819646731e-08,0.9996397043118138,1.2142986247795626e-06,0.9999598985605228,0.9999785527580209,2.5616987572250045e-09,8.424945609217205e-08,0.9991779252617239,2.0843630519137636e-10,0.9993897431546833,2.3635878586896016e-06,3.2486577040079923e-09,8.723985779178823e-10,1.9846862244305366e-10,1.0850892145951105e-09,0.9999671061041655,0.999951837455312,0.9999999970764788,0.0015342665804684418,2.0275652935992475e-11,6.143239053251604e-05,1.0060769852178658e-08,0.0015945022988712344,0.0003370607745165496,1.1424222728684009e-10,0.9999999869983955,4.723643928592815e-11,2.1101557917233577e-09,2.9745158763955204e-09,3.180405488242611e-08,0.9999981792272793,2.8055971616134435e-11,1.9230057953961058e-11,1.9722772099403755e-06,0.9999999982994234,5.92538366774171e-08,0.9999528845712078,0.9999789745811436,0.9996458475625374,7.800201552290198e-07,7.71165122237425e-08,0.17942736714660784,6.12403597422413e-06,4.673156838676189e-06,2.6638256575828405e-09,0.9999265966520372,3.184936080250288e-11,1.4129807006748546e-10,0.9999999976928886,0.0008552031019907469,1.4518251031108021e-09,2.866809850666921e-09,0.9975757662794218,2.9959122939856814e-10,1.600236649615266e-06,0.9999999976224374,0.9999999902238296,2.044196911410563e-08,1.1856846257758157e-05,0.9800297378245205,3.176357017307854e-09,0.9999719791329011,1.0103359112883441e-10,0.9997859457292765,0.9999819830974596,5.154477389570078e-10,0.9999982640708812,0.9999997991833863,0.9999996934898205,0.9999999975517104,8.624072071623356e-11,0.04743173603889188,0.999835019219377,0.9998682221208962,1.0303700964916117e-07,0.9996118609348161,4.5255352903544114e-10,0.999999667958693,0.9999983290701597,0.00034549158555460124,0.9999999972943068,4.988947710941897e-10,0.9999995796203536,0.9999580690190117,0.9999912840604744,0.0021152792512042756,1.4751390726054201e-06,0.00018632409738105718,0.9780560654385805,0.999998705947157,0.9986535867368465,0.9989494366935715 -बैंग,shape,5.3066153094372896e-05,0.0014033739450362306,0.9999025773809839,5.285360030144748e-05,0.9999999945430071,0.00010406529057249917,0.00012162339620771778,1.04931062248724e-06,2.4248157740710087e-05,1.7890092023338083e-06,1.9519333564570842e-05,0.00027010815963395907,1.4903321974758488e-05,0.000141145865732904,3.727550374321052e-05,0.057203530131403585,0.00010130250002244026,0.0007742778864133237,0.5451732508826225,5.172726912457619e-05,0.08024880842232268,0.0033591139802285415,6.137121286544597e-05,0.03647688797485686,0.001879857313473198,0.0037279325304291006,3.5657623833327686e-07,3.946193983093671e-05,0.016054931342739866,1.5502530567880068e-05,2.360177816006011e-06,0.9999998878302764,2.332483457531059e-06,3.0151145745364855e-07,0.00011259523570748615,8.696305427253505e-05,2.5498739856427864e-05,3.630810820965549e-06,1.595416953788829e-06,2.5016970134795708e-06,4.397777987746033e-06,2.5508169056809412e-06,1.1119992743870113e-05,3.1045999377706416e-05,6.306215604648938e-05,0.9999776122602174,0.9999999931484875,0.9997360753545453,0.00013996433705176106,7.803185058870801e-07,5.363819431217486e-05,7.553579856584763e-06,6.354138696157409e-06,7.069518660064254e-07,0.0003912160637181363,1.0125601343691483e-05,3.86641321615469e-06,0.17663890506064708,0.0006167616614887052,0.00016458667963939753,0.0002912185214726161,0.4363256693200609,0.00030387151755846846,5.18266775512945e-05,0.00021819601915506462,0.00036953504887555263,0.021428534713167954,6.088508388922863e-06,1.793917835340941e-07,7.202689016952715e-06,2.4581000451368863e-06,0.0006566430957155903,0.00037821031785358213,2.848726314461063e-07,0.001834370856948966,5.754927900343823e-05,0.0003588109398975076,9.69360222410789e-05,0.002526066630118143,0.005407282014198054,1.8247452836675966e-06,0.0012055723589915236,6.881174991415446e-07,0.00655175728622604,1.3482672849654174e-07,1.7926705805449795e-07,6.442210527704038e-05,3.407381893191548e-05,4.0746677518121825e-05,1.8954460611440006e-05,1.663715787703556e-07,0.021373097980159433,1.7870658558419274e-05,0.011791099383402733,3.037488430251351e-05,0.0010373889130107171,5.0624381580370994e-05,0.0007271846837275297,0.0004855848143300751,0.003617955174861878,0.12950653964502998,0.00015397793260740124,1.9567758647031756e-06,0.0001969282859285118,0.010853297160545403,4.486923172405377e-06,5.319652667762495e-05,0.015313184744740053,3.364296999929406e-05,1.7201145239586803e-06,6.213762317718987e-05,0.00016718912450415315,0.009437809633528572,0.9999792343811081,0.9999836544441367,0.999951140845496,1.0198850857630121e-06,0.9999652055460372,0.9997106629179788,0.9996099423882339,0.9999999315687829,0.9999262747795012,1.6734494948125615e-05,9.195804709410476e-05,0.9998667042852865,0.9949742371027646,0.9999633471663348,4.220649762120317e-06,3.1485225692258834e-06,3.4778076237991533e-06,0.18301786422478342,5.35169937428812e-07,1.1323437703806823e-05,2.05723776698998e-07,9.139192483473091e-06,9.339724568010745e-07,0.00010526816120880142,0.0012505132677909398,6.066340538445379e-07,4.919483662087129e-05,0.0073326386735766075,7.711481968902521e-05,1.397381049508375e-07,2.6500680444417344e-06,0.9692546745774805,0.0025282569820294005,1.5883793271642517e-06,0.0008805386050338872,2.579244997477912e-05,0.01166276333892299,8.800786796968155e-05,4.930754054518543e-06,0.00010917223994539328,8.117450444693582e-05,2.0641000060544596e-06,0.00026388698805014855,0.00027010815963396194,2.759959114864441e-05,4.0151496211674703e-07,0.007478454406052624,8.97029331880158e-07,0.12747286310009462,0.0003919166371194173,3.0631899287467193e-06,1.4734877592249033e-06,6.716430011248596e-06,3.292194780708624e-05,0.008558798180777974,0.00041707797121838134,0.00047608575172605186,4.401606306424206e-07,0.0005645545555258576,1.8028098756663998e-06,0.0001965016059991864,5.594617598819412e-06,0.00013035275867272192,0.019488212021742918,0.01604953525030079,6.709800372548093e-07,3.643619787672194e-06,2.8617608140178742e-05,7.050647542055686e-05,0.03784390875372359,0.00011754664856922039,1.6460719695787427e-05,4.674537738623961e-05,5.6116849855469136e-05,0.0006084789080573901,6.60288870011804e-05,1.5707062635726037e-05,7.423599265925892e-06,2.878372217910966e-07,1.097151299269757e-06,4.863899625522527e-07,2.8251904657152e-07,1.4924386605636263e-05,1.375876185704883e-05,0.9998175755518859,2.4991489335657895e-06,1.8896158760904615e-06,4.6594381414727e-05,1.2668911607163202e-07,4.5350653196620646e-07,9.772083689545381e-06,0.9997885921560731,0.00013191732773790136,9.599483907318106e-05,0.0008155639077025448,5.1796184294376886e-08,7.801591141955838e-07,3.9947989777876005e-07,8.183433566189741e-05,8.075575346838119e-06,0.0006106123696698969,1.3402591668656459e-06,0.999988641833632,0.9997941112260126,0.7916976221986012,0.9999220396661616,0.9999999827882963,0.999999999179763,7.854997150385331e-05,5.212526667693594e-06,0.0002688536862659458,0.029244843261842922,0.04895656285934985,0.17757362326987924,0.003017234318028873,0.028261894502931328,0.9999875432707858,3.049848761987715e-06,3.475780047077998e-07,0.00017979237291126859,1.1573848343729668e-06,0.9999999315687829,0.9998667824385303,0.9998743890586733,1.0085499226451486e-05,7.748316122471845e-06,1.1677797625622536e-06,4.9561398873743846e-06,0.0013248205279767834,0.9999298549136209,0.9998085415783508 -बैंग,object,2.244190092977818e-06,0.0009441945272038762,0.9999791007390108,0.9817638975184163,0.9999999566435479,9.565350875391705e-06,0.00018354518687521855,2.4802943797772577e-08,4.935232086407902e-07,2.375332228596652e-08,0.03941852545345166,0.7017651675911059,0.11455648237613995,0.002023618426322778,0.9842645952388868,4.255815888856865e-06,0.23477712445169932,0.40386152901778827,0.9936926645319191,0.012449824784129501,0.951076091076926,0.07096724170539308,3.2445979572042776e-06,0.1589763492837789,0.00017641490983815833,0.8525563845653241,3.4875129427362596e-08,2.2236295745078646e-05,0.00014597684268987727,8.98934276233139e-05,1.7038893313679074e-07,0.9999998187709418,3.9922494311943173e-07,2.1863132705859196e-07,0.995581657944781,4.067737554740023e-05,0.003738685030552979,0.00029172207646078146,1.646254433276246e-05,1.8339014442698412e-05,0.8985570884574702,0.0006897304162617463,1.8202915558048036e-07,0.0005632062688708385,4.779358279573765e-06,0.9999632618928667,0.9999999300685141,0.9997224768402394,2.0951771854898206e-05,2.788960143710812e-06,4.341655330332558e-07,0.9662449644928038,1.3653355384414096e-07,2.554212217183389e-07,8.797287460473155e-05,7.049863660431368e-06,0.004978147242707649,0.31825842375643554,0.8862135904636633,0.03616271430308368,0.02457267995611637,0.8403237318019264,4.4171416042314573e-05,0.009030484820702117,0.00042082762708835046,0.007865107515447473,0.6741158930647817,7.698108361318705e-08,1.4029707599521926e-08,1.4331952372683744e-07,2.634873637901922e-07,0.9879299764531103,0.9985808057329852,2.110922672960792e-08,0.00012713997819971287,0.005205691006042578,0.315330291521249,0.00565575213335872,0.1029154674026749,0.01294365944781228,6.851212102389235e-08,0.2770452488042615,5.107131382113889e-06,0.3177420540655444,1.3722029399746704e-08,6.2343256186693036e-06,3.935400965338089e-08,0.001088425884663218,1.059256103197436e-06,1.2892677624832902e-07,1.5701046238338565e-08,3.350213956223202e-05,0.008997351219392295,0.3536172011216571,0.028262798488103674,0.12937191653494937,6.927173330597946e-07,0.13105287381364672,0.12074280920788567,0.06387137391043157,0.10520964618146311,0.00024101427747181926,2.9302523836573343e-06,0.9961930504190802,0.8085858405800492,2.6672871223075006e-08,5.586700630482602e-05,0.15987184713108657,0.08667627970634963,2.170974585841976e-06,0.06819614472840096,0.9988787387253824,0.9981479764828352,0.9999981547160484,0.9999803541950711,0.9999764844523199,3.703469064173553e-07,0.9999405580070286,0.9998420521178596,0.9997070128973172,0.9999991242114871,0.9998831482867712,1.1596724680284396e-05,0.9792973116980875,0.9999825151663988,0.09465261152922864,0.9999882497267883,4.1760694919026206e-07,2.1558694666332337e-05,4.203676387971822e-06,0.15183089641747433,3.306932275646505e-07,2.15166686454029e-06,2.380848297082127e-08,2.5591874443311e-06,0.02482588324414612,0.0547828675033909,0.338661060940342,2.7350528001003715e-06,8.883243475893544e-05,0.9994717145680907,2.305359221433254e-05,5.891342587185188e-08,0.9617752236815259,0.5876895619480096,0.0008706924507469844,0.0010357971636094682,0.032633177520671686,0.03752706257096178,0.14113432177404492,0.9904170457115851,2.954689361352829e-05,2.009767370935035e-07,0.010933494067100672,1.765670312959459e-06,0.02899339951135055,0.6680024177241164,6.0967796602408734e-06,1.3455808753918115e-05,0.4620467999812992,3.014821950866912e-06,0.9703240091853428,0.0002999066277820168,2.9898910546635117e-06,1.560969859471875e-06,2.8501284586390954e-06,5.570152783130673e-06,0.32563872759442314,0.059609963381891735,0.9980053441998208,3.2818648835542114e-05,4.537829573111881e-05,3.6304121811331384e-06,7.275542056054517e-08,2.0911387069435115e-05,9.81997297653595e-05,1.8770428417800755e-05,0.9973368875562462,5.636783879491823e-07,2.826854496689877e-06,1.097628143815899e-05,2.1958491564495992e-05,0.9998857940077469,3.94240139238319e-06,6.97821178356274e-08,5.541072197182106e-06,0.9724673441435966,3.53225200451736e-05,0.004107627269360764,0.20733388330937125,0.0046961145901042904,8.487675750544113e-07,1.0070774064464934e-06,0.001206792397208655,5.171973544748629e-07,7.290311993110689e-06,1.9867340658878745e-06,0.9999120579148647,1.2534253777587352e-07,2.1146717293240423e-06,0.9864087394384411,1.2225128565224986e-06,3.972206881210025e-07,3.0324913114057744e-07,0.9999007526913157,0.00013411489339099306,1.8083042032530576e-05,0.9998166932518265,0.5324984841199784,9.782208984553789e-08,1.132103364420492e-06,0.0008149556514860254,4.354545592204254e-06,0.2057585873291318,1.824419007460266e-07,0.999995687811606,0.9999253434295023,0.0007300700272069627,0.9999447418202334,0.9999999559180133,0.9999999862161033,0.9824903029227385,2.836407022145094e-07,0.04038577261411786,0.9838776951512829,0.9916509921101965,0.0765579895229241,0.9472440061821694,7.5983330004041635e-06,0.9999892843314764,0.9360912558679628,2.806699609915112e-06,0.9982454003710763,3.9668269016812513e-07,0.9999990751906349,0.9998083865438977,0.9999060346007229,5.409994532696895e-05,2.2894322489720764e-05,9.013087595210336e-06,0.00013066782397815543,0.9978925094950023,0.9999411972716735,0.999841790163247 -बैंगन,rgb,4.7106851465724226e-08,5.503196036453944e-08,0.9999997010437452,0.9999999999584563,0.9999999836479014,2.0698861109518975e-12,0.00034633301066290783,4.633913852014269e-13,1.496043231476372e-12,5.964092567288163e-12,0.9997173562693695,0.9999919090133617,0.99998452815952,1.2321559294842823e-07,0.999999999784857,2.8322744417867392e-08,0.9998324905491879,0.9998597701008625,0.9997535415427103,0.005479773202822817,0.9906897276275245,0.9966551314410885,2.352874861728157e-12,0.9998566563601065,3.8866924972815447e-10,0.9999998163357808,1.4933813145514754e-09,6.259967175830766e-10,2.9836595755962325e-08,0.0005008197508135123,2.168434956487092e-12,0.9999998499567601,4.514762522369769e-12,1.9445277399151465e-09,0.9999999362206043,5.310040483566806e-08,0.04342523265770053,0.9909249867766277,4.27526186818383e-10,7.08547018840791e-11,0.9999999999134457,0.005625990735422865,3.5609830810246216e-12,0.0018051619817284878,1.990354049923734e-05,0.9999970639243755,0.9999997885231265,0.9999996984380811,7.229917738717568e-06,3.9372441139708377e-07,2.174649335472465e-12,0.9999999999234179,1.9492178348272946e-12,1.4636928788983507e-11,1.2473253432512285e-06,3.4942706087361927e-11,0.014214443267281992,0.04879521819600603,0.9999894112510821,0.9999697434799314,0.9997357935819173,0.9829744723739249,2.8913133358724862e-09,0.0233562729377529,0.002248403308898549,0.9967335613029288,0.999998848304776,2.43896817927373e-12,6.736826351940662e-13,1.0240979645475445e-12,9.365975406205813e-12,0.999999999956023,0.9999999999172653,2.946277826262121e-12,3.001971257004179e-09,0.004572534588621868,0.999999731012486,0.9991302442717305,0.9978887713433624,0.10843620727890801,3.3454760084897677e-09,0.018956591322464536,0.003048682724181481,0.34098760837938896,6.147681539377476e-13,0.013475378875860176,2.8335105591181966e-08,0.9961754577844809,1.4492802898836882e-07,2.765321793468612e-09,5.019761921230377e-13,1.630638579427493e-10,0.0036720851977373532,0.11185959027324653,0.18185826436933478,0.30434186684075515,8.642014471004557e-08,0.3522862278417941,0.015388130349135222,0.27874799330362254,0.5654780370222333,0.0049102190426377505,8.661071027572689e-11,0.9999999999362283,0.7149770976966475,2.0625485311565553e-12,9.690586290224771e-05,0.999841088416939,0.9999999214991244,9.740825262326099e-11,0.9999986803863375,0.9999999999406237,0.999999999926954,0.9999872932767013,0.9999204628024354,0.9997872351498787,1.9118106542968656e-10,0.9954564246887447,0.9999935612403141,0.9999996997522191,0.9999998768824018,0.9993712108670537,8.925230531526311e-08,0.9999999999472684,0.9999705195072345,3.741274776533631e-07,0.9994908085557862,1.6358328399629209e-10,2.1923290394484446e-05,9.825413808174364e-07,0.007136401295738634,1.4062661200882664e-08,1.6876012026373544e-12,2.7874004625354483e-12,2.8746804188543495e-10,0.9986554049463207,0.9995814987805538,0.9996692400095578,2.1889157083945765e-06,0.0010341853414572333,0.9999999539605261,1.4089523351111428e-09,9.736492180101451e-12,0.9999999999337585,0.0008834099889000705,0.04026610613489515,0.0001987939000499507,0.9981660549833504,0.9999994286333824,0.9990587744087179,0.9999999999483984,0.0002537808585552322,6.117353111003953e-08,0.9996775019082492,1.135610117363177e-06,0.9999719690358746,0.9999862016235942,4.666026384468371e-10,1.9359608438928973e-08,0.9991309012524247,3.3412667711254176e-11,0.9993727851500812,2.903047826949624e-06,5.720958813241767e-10,1.3956561949305114e-10,2.8498421083158365e-11,1.7097778736784586e-10,0.9999776814470123,0.9999655084726388,0.9999999999378841,0.00047348494779750854,2.2088843818650864e-12,1.5375309472696995e-05,8.86343058307644e-09,0.0004920724183233332,0.00030840621644569855,8.552287877927003e-11,0.9999999997540578,6.857266193401056e-12,3.7548777540915654e-10,5.265961592535047e-10,3.0047030673003603e-08,0.9999999248222408,3.088838035902517e-12,2.0947960972465137e-12,1.7491595562589805e-06,0.999999999938098,2.822945936297618e-08,0.9999663361899621,0.9999864533567046,0.9996826065650611,1.6554868918996903e-07,3.5757462890062435e-08,0.09052933188620679,1.3474306904863629e-06,4.061550871968276e-06,3.7842854504457897e-10,0.9999468286330904,3.5415328435542207e-12,1.6768745518511104e-11,0.9999999999399996,0.0002547709985742037,2.2614753219524188e-10,1.1877691662437964e-09,0.9974768164635364,3.703944858837746e-11,1.5109620022552161e-06,0.999999999944275,0.9999999998416123,9.33545670179755e-09,2.838443244028454e-06,0.9745304818056002,5.399984661738694e-10,0.9999812675811791,1.3666661549316038e-11,0.9998259186417854,0.9999888327877284,4.1508315333362576e-10,0.9999991880331163,0.999999930367413,0.9999998905650824,0.99999999993306,1.0018552479339575e-11,0.044646771302191274,0.9998505204666873,0.9998833537638058,5.488477438568971e-08,0.9996165566747129,3.621196468333416e-10,0.9999998756856378,0.9999999449515818,0.0001104945986482727,0.9999999999301807,6.343431491436746e-11,0.99999983948592,0.9999719754806151,0.9999950338511348,0.0021768947680355522,2.99632895269404e-07,5.0178563482384294e-05,0.9728069661734596,0.9999999437848728,0.9986105700454541,0.9989589854023199 -बैंगन,shape,2.1970492255876965e-05,0.0010811884487124878,0.9958276287586851,2.512586616657228e-05,0.9999996521739565,0.00012893728717341079,0.00014084630400862375,4.0377430420377873e-07,3.013907541974611e-05,9.350123651465524e-07,3.059079394687937e-05,0.0008223994742700364,2.288586059646819e-05,9.030419564324731e-05,3.469455901349107e-05,0.04697369889017925,0.00021595451104208498,0.0009635960435188579,0.657983742461913,7.941913645579762e-06,0.2575126431386819,0.0026583949770719053,7.71055053304638e-05,0.01565994858512472,0.0011490190888434812,0.0037765752508225146,1.6844829238848843e-07,2.3174130317469705e-05,0.0049736700109012716,8.394288025923498e-06,3.1188528148458853e-06,0.999998214714632,2.8753104748039142e-06,3.092190043820975e-07,0.00013410124004822893,5.5735643159282065e-05,1.8272122736135667e-06,4.987365500919152e-07,4.5952763675723176e-08,6.740768917787889e-06,9.002788821159865e-06,5.720118649948191e-06,1.665459953701451e-05,4.386202165861928e-05,7.342573630604449e-05,0.9998875136897026,0.9999997720820071,0.8945808193925395,8.107285329928967e-05,7.970485346001547e-07,5.5403726872564096e-05,3.077615140491197e-06,3.295344934644286e-06,1.7865568323300236e-06,0.00031405874683682956,3.979267191219203e-06,1.2762125504030278e-05,0.10878357377965617,0.00043338275657524,7.569290915882451e-05,6.249588194423293e-05,0.6149257236935065,0.0002634683350764322,5.591885459358514e-05,0.00019833590285945439,0.00028150867571580403,0.01486185401950513,3.3553963373535666e-06,1.1278637312851927e-07,3.264008562941343e-06,6.48018636408229e-06,0.0004006378607841374,0.0006583320516833969,1.1304291096158917e-07,0.0015633639437280765,9.033329133685977e-05,0.0003047869755243744,2.8669594772618495e-05,0.0013477408916215488,0.0029887542900392874,3.3977964315482186e-07,0.0027570064100785933,1.4587650218973607e-07,0.003216315886222324,5.05186267932414e-08,3.957139536001921e-08,6.353908860047857e-05,8.108020126247258e-06,2.457498280568392e-06,1.6772610783635523e-06,1.1322771884787192e-07,0.008830456084348261,9.695949720212041e-05,0.03397527908780414,0.0002726104160056667,0.0016809193599027906,5.660749353884793e-05,0.0019424261099737627,0.0007664993443495707,0.0015411284606866777,0.0422858661468815,0.0001880973166184564,4.303944990816247e-06,0.00032534607020538985,0.02009296471519359,2.389785321269068e-06,5.5970953042585355e-05,0.005795549680033424,1.489391801600568e-05,3.1230027353232475e-06,9.903759380603954e-05,0.0006573206098858216,0.005089753111124943,0.9999889810204713,0.9999832473271489,0.9999544067630055,8.951534406408684e-07,0.9999716418434033,0.9996805002353982,0.9994867972096191,0.9999949451376098,0.9999450285099827,1.12670162799076e-05,0.00021562832771276132,0.9998881870337496,0.9964383930269872,0.9999645669073789,2.4024439669792956e-06,3.2953437659129896e-06,2.5954896044410026e-06,0.0070194598538958685,4.033811153887414e-07,1.091322286868647e-05,1.5738364373370473e-07,7.988161796401948e-06,1.4456630554591168e-05,0.00011500948315891692,0.00046472215163649783,3.2627261074211184e-07,4.1137652681768863e-05,0.0022359271301772158,3.560840157098629e-05,4.438404745768112e-07,1.0238252288067777e-05,0.9888632236502979,0.012630928720908641,3.229207102277509e-06,0.0004105695971673027,2.068545393217427e-05,0.008357171814752248,0.0001713733028425174,1.8142862766601024e-06,5.052438145390181e-05,4.550978132951525e-05,5.88653335412643e-06,0.00011556291457090332,0.0008223994742700364,1.8355054379761307e-05,2.1645208541661866e-07,0.002141473698972884,6.056741881412274e-07,0.37056382876576605,0.0003777215027673857,3.715034965647888e-06,1.496747371279188e-06,4.513058867393748e-06,1.6977202321153456e-05,0.003149630481435634,0.00014444241905810963,0.0005299125090171408,2.750968584306793e-07,0.0004863071950353063,7.987202570165387e-07,0.00024688030547151695,1.2863475535601337e-06,0.000207510447446447,0.00913031731414381,0.01860528124655921,8.293612618227934e-07,3.5525008193943764e-06,2.2939003049699567e-05,9.365508629217818e-05,0.008901992296190856,0.00011459676492218854,9.770645029905055e-06,5.189451589116537e-05,3.488808940886609e-05,0.00044629804440060155,3.800848909618974e-05,5.281480785949052e-05,1.1225551073605595e-05,1.4173351139924283e-07,5.512253018129661e-07,3.89485806364889e-06,7.567313194355488e-08,1.7730169430416807e-05,1.7682225066031975e-05,0.9998248524300095,1.813305551977754e-06,4.247213731608539e-06,4.2971119989596064e-05,5.4852154584877696e-08,4.7415427757199664e-07,1.8484484592209315e-06,0.9998132489736752,0.00014412213962838118,0.00012612981382674124,0.0023869847637515377,1.851724726509337e-08,2.3512735285592964e-07,2.5018831620816303e-07,1.1028137954115115e-05,5.547771849563134e-06,0.00014002490786062846,1.0235863737656829e-06,0.999992095328197,0.9997948093000163,0.3845024352578077,0.9994445097754517,0.9999996535275645,0.9999999562438756,0.00011534280804847657,1.4619456220702955e-05,0.00030395267257563393,0.1407032973988482,0.16110744136226104,0.10193767594213758,0.007694068125480196,0.06254855933273049,0.999962049841922,4.731280578889585e-07,1.53870587620212e-07,0.0003783052889765551,3.3130227618068846e-06,0.9999949451376098,0.9997964579519143,0.9783904241129293,7.110324937460666e-06,8.449191339229828e-06,5.930262362282758e-07,1.1505406831112734e-06,0.00040623308752041283,0.9999276675203184,0.9998488636644227 -बैंगन,object,1.6523532658120518e-06,0.0011539559073551328,0.9998142811888906,0.9739960903973227,0.9999993738913106,8.213437322068193e-06,0.00013492651870649489,1.7700217294643365e-08,5.930740278572918e-07,2.01670252745195e-08,0.03585772137751036,0.7091649749384443,0.0990406117243019,0.0018050991906179731,0.9861515695708023,6.116476190518e-06,0.2079604674965154,0.3033394149027539,0.993540329464873,0.0044166878250583245,0.955878658063172,0.04598097991822087,2.6454562995554557e-06,0.08015298171636662,0.00010878727315773409,0.7871319999634206,2.0052518185875944e-08,1.3784488000426773e-05,9.542671713153888e-05,6.778393375793046e-05,1.555962987036579e-07,0.9999989612278765,2.8746736732677414e-07,2.02122183065423e-07,0.9942346741672107,1.9656062668577077e-05,0.0007831503697943662,8.654459542909645e-05,2.7498403379275066e-06,2.9103276433494038e-05,0.8980670742266927,0.0007078075584015585,1.9453531140863186e-07,0.0005824124995005308,4.761247571572762e-06,0.999867122086118,0.9999994185616247,0.9911008583905456,1.292020032357206e-05,2.677402611326019e-06,3.5378444772486255e-07,0.9345144949613028,1.0896767379973748e-07,3.1254334754788154e-07,9.931079236627853e-05,2.354432803296139e-06,0.0051858138494550775,0.2813241186329006,0.8117723675197331,0.021447142003478907,0.010298438446886608,0.9013768456894188,2.8492994398937366e-05,0.010220301205736467,0.00042931496074186636,0.005237660699990919,0.5834491022602226,6.594933922888221e-08,1.110267264082744e-08,1.1078872242202958e-07,3.0705031013036965e-07,0.9871160400958631,0.9989511592877849,1.3095617031755726e-08,0.00016854088653634622,0.006742114661656551,0.219050722155488,0.0022357205554364616,0.05938546457055055,0.010089481549003736,3.064652216611241e-08,0.2492033528771721,2.2746252879766325e-06,0.24024175662737676,8.277927510644026e-09,2.6312415446100097e-06,4.09934480761541e-08,0.0004369305219929485,2.861640312541075e-07,4.314463262295625e-08,1.2860640687056306e-08,2.6697785241370342e-05,0.011174178267177454,0.3695219901865859,0.04289922960627513,0.11526082627544447,7.047823805739158e-07,0.13923723936066423,0.09083820787236381,0.04626015052059566,0.06877333615108057,0.00019686320697803302,2.7851847886969717e-06,0.9959211499255363,0.758230138369471,2.024503364630129e-08,6.889367632459518e-05,0.07944279314720053,0.04533558914765496,1.715169530913174e-06,0.06474151794156043,0.9994348128487767,0.9979970031820069,0.9999986423458365,0.999981491569098,0.9999728484258016,3.203032008355877e-07,0.9999488727802921,0.9998453832560632,0.9996169460340292,0.9999876229925059,0.9999012517671843,8.839092111808525e-06,0.9846059378448421,0.999983498945993,0.12433948810228028,0.9999883441303512,2.9480307046277427e-07,2.040465966992344e-05,3.6724477247528315e-06,0.025749380354086505,2.6109675776260543e-07,1.3927531007928427e-06,1.8937978798367033e-08,2.264721782913149e-06,0.044756975658242694,0.032085733788225525,0.17952303720861848,1.8065349511730425e-06,8.722585794636337e-05,0.9987763896289433,1.0984515545207035e-05,1.01488431367043e-07,0.9779825987843833,0.7042331753665563,0.0017431927605840532,0.0008788940997230725,0.019469892510206303,0.02526960390454204,0.09408297631333797,0.9939124966377235,1.7924576398406648e-05,1.3934552839234496e-07,0.006835548894751255,2.849345107179718e-06,0.017807373540394883,0.6760531120852269,4.395851447230256e-06,7.089248338854955e-06,0.3406012610968286,2.1250489504705894e-06,0.9739869113873468,0.00023316791699972206,3.162830010855323e-06,1.3100322298118217e-06,1.9244088263552894e-06,3.0610761751492462e-06,0.2340024174699372,0.02650320940201423,0.9973870625919513,2.2176987781696352e-05,2.861674858652488e-05,2.5385365162051703e-06,8.438142737750198e-08,1.0568957633817144e-05,9.62552635282834e-05,1.709504569331483e-05,0.9981265146150128,5.295937284070512e-07,2.3771909763861125e-06,9.42001207158163e-06,2.000640722188481e-05,0.9996902928896381,2.7312389250049135e-06,5.130264227386501e-08,5.020505528573324e-06,0.9551727357410543,3.75331199356563e-05,0.0028737391586533853,0.21991830651912497,0.0034048358087648677,5.000909294707824e-07,6.640934695580257e-07,0.0020465576045955447,2.647156778496519e-07,5.79228208822602e-06,2.2346967549250077e-06,0.999921401912681,8.81526619323645e-08,3.3018762391924594e-06,0.9806597855855675,7.633964363032525e-07,3.412633395755989e-07,1.2325573875690462e-07,0.9999060360518576,0.00019512992872324316,2.5658311907830327e-05,0.9999206161475781,0.38566254267328903,4.860155781638941e-08,8.061082354878289e-07,0.00029118957917308755,2.7253437287617695e-06,0.09240261662941911,1.4028067807794596e-07,0.9999961767503162,0.9999257694684138,0.00019599122760143275,0.9996859779841157,0.9999997024147913,0.9999998330612142,0.9870148238627842,3.668534622293619e-07,0.05084539139996805,0.9854676700607482,0.9911806220838182,0.07381954161019687,0.9297295958851864,1.5945996893335355e-05,0.9999528062397367,0.8424785791468681,1.647768509703764e-06,0.9988705636753402,4.390166407608391e-07,0.9999869421766978,0.999748909038007,0.9981816370625926,4.479033325601551e-05,2.0017275327229726e-05,6.327628547767303e-06,5.4522491695592205e-05,0.995060276274934,0.9999403588470918,0.9998576520618112 -बैगन,rgb,7.6277714241652745e-06,1.2574378746212106e-06,0.9998810006816374,1.8510216649449205e-05,0.9998443085530114,5.724993985781655e-05,0.00028415036145761427,2.1591428735731386e-05,5.3320271426183475e-05,0.00012949274489214285,0.9996856042169079,0.9998129996537346,0.9998077061851743,1.2128162748711183e-06,4.826885050130796e-07,6.369414672623783e-09,0.9998861102994793,0.9998914253915241,0.9998737099534236,0.9709175643824791,0.9995525767002018,0.9986109745749002,6.701513001010448e-05,0.998799244290593,0.00035524854042238204,0.9999625765935557,2.680550966734203e-07,0.0005560808522958478,1.6491301013385038e-08,0.00028822472794730065,5.907743276298445e-05,0.9998192836238714,0.00010303260194098404,0.003738265000041099,4.5989692478246224e-06,1.1470429127520043e-08,0.9887517034408926,0.9991283599167342,0.001462133603132583,0.0006890148498112324,7.410323387547067e-05,0.006891115817416294,8.238947457752325e-05,0.00016779597731076315,5.738366993961295e-06,0.9997082780060497,0.9997895599548275,0.9998822938417344,4.232251318069241e-06,0.1785512178942664,5.9976512054860396e-05,6.371259638272215e-05,6.0695507559176235e-05,0.00024690483273133456,3.6750354057066945e-07,0.0004075920168129028,0.6833002837186571,0.8007829342067615,0.9998061263179051,0.9997926990025616,0.999699499869378,0.9993937143335108,8.374657644265244e-10,0.021360451332571768,0.0008485897197152252,0.9962025856788876,0.9999357744211077,6.745702403442946e-05,2.8120008328659677e-05,4.047419355596229e-05,0.00017685546063933382,6.979266565438308e-05,0.00013529078836291018,7.270653928949245e-05,1.8606346170036036e-06,0.009252800592237513,0.9999566251000965,0.9979679000497198,0.9986811706331269,0.8623450290875107,6.631329973754466e-07,0.7497555156105048,0.9452917656222991,0.9323789420239837,2.6989090365059475e-05,0.971912919357737,1.2093543339513452e-08,0.9993318002184967,8.204974967198951e-05,6.354256373438974e-07,2.2338469336823487e-05,8.420288152629601e-11,0.5068740405695819,0.8395670075273866,0.8933670829455949,0.9237398392520215,4.3533628071399364e-08,0.9340415585294224,0.7175538652516628,0.9280302900061141,0.9618428373070576,0.0022933205720980492,0.000799581487335761,2.6824605417535924e-05,0.9681928386992951,5.634084819532077e-05,2.1716035318070744e-05,0.9989166109076548,0.9999674521771862,0.0008908843670600613,0.9999528825076891,5.0430991794990925e-05,5.40393369169974e-06,0.9997258335883559,0.9997366884992342,0.9996771831624769,0.0011661662450675593,0.9990122859284637,0.9998241587310026,0.9999395108981808,0.9998294922588241,0.999430285412607,0.08128187968347911,0.0001769881252093969,0.9996655111767435,0.06732838350479019,0.9994430281624298,0.0011292251161560804,0.6918803571791261,0.19927068108080626,0.9612253453738595,0.014159760502301472,4.954823330392037e-05,7.082123615514145e-05,0.0014936310710079986,0.99979176550584,0.9998530205336403,0.9998634146852485,0.3762077769491104,0.0003459952209719827,8.178966372152224e-06,1.4315528374521325e-09,0.00018413544556682612,0.00040265491852196726,0.9310826712707707,0.9879307048958005,0.7488597888410587,0.9985480951254265,0.9999450779575073,0.9973587556943411,0.00021932176072757688,0.8899951023892485,1.938170063360507e-08,0.9996757797691279,3.400945745627875e-07,0.9997887757423789,0.9997916073692443,0.00018341419742480056,0.0014197552586633414,0.9998135951467079,3.0023584389597288e-05,0.9998317475760637,7.394912584891321e-08,0.00032508455639479033,0.00016245548890317092,7.444382973357866e-05,0.00023954932133015,0.9997830505867434,0.9997878979870534,3.230032298908271e-05,0.9198845062970874,6.061674283504188e-05,0.6251895718568282,2.308022169564514e-09,0.9226886713271684,0.0002563019642250945,5.3277504323209434e-11,2.1187421578250487e-06,1.2654560722577752e-05,0.0001793792449188776,0.00028002126054965735,4.80256817095938e-09,5.137793770397517e-06,8.106373936191179e-05,5.69303356054396e-05,9.252559786341576e-07,0.005876767768854789,1.735992777772461e-06,0.9997891215505897,0.999799056123899,0.9996858529809176,0.04485594443104301,5.1652084794293805e-06,0.9917256740409537,0.2618311632136349,2.9444441954323794e-06,0.0019442713788149104,0.9996834995156816,8.586405774218459e-05,0.00027796118683725163,0.00023710512972417605,0.8880297005624911,0.00037270940010373745,3.054017355435752e-07,0.9991756425381565,0.00046520380793687135,4.304897332195908e-07,9.46006067013682e-05,7.927937189998798e-07,1.282979560839738e-06,0.27599167004941066,0.9986300336444709,0.000431273071169256,0.9997957013150764,5.72194366282245e-05,0.9995929015797735,0.9997648690343036,1.625481022834816e-10,0.9998272582288849,0.999817084411785,0.9997660836226553,0.0003385575118077674,0.00018780573126635282,0.03745482794874296,0.9998893758438413,0.9998957201580604,1.2641752522549348e-06,0.9998579167155442,1.477092007500691e-10,0.9998299881221095,8.327390178534564e-07,0.621381589516818,0.00018428669259357768,0.000658420105258939,0.9998106068030114,0.999669646811702,0.9997920638664582,0.00044918199162797775,0.11986780285105324,0.7630852991500102,0.9980686239462749,1.1771807320250456e-05,0.9995584490094827,0.9995288448432541 -बैगन,shape,5.961480827134565e-07,0.00015041995305836858,0.0043294275741750194,1.2121913824117284e-06,0.01872401698601565,1.613164116723969e-05,3.082026956591316e-05,2.177769309548578e-09,4.5789703714982535e-06,6.4849112635273474e-09,1.0056096506930735e-06,6.623555889207817e-07,3.818361510545583e-08,5.735701489564021e-05,2.053654180390419e-06,0.0001398122937442355,3.659286355180579e-05,7.035169119135393e-05,0.00033723037676948697,1.480722338185943e-07,0.09106807531895662,0.000975245748649019,7.618039150397382e-05,0.0005511904913946883,0.0003983389788702547,0.000980280313314991,5.3644039877241434e-08,5.26848097034727e-06,6.248433692562285e-05,1.2669750653864198e-06,2.090190035648396e-06,0.041493151629803396,4.839754010799117e-06,2.701757017321194e-07,0.00026424601459441676,0.000371084444446853,9.69110050869405e-05,2.387321369585895e-08,1.990781958566184e-06,3.817860392360158e-06,5.51355219124113e-07,4.988532956881995e-07,3.1837444075297775e-06,5.296356389749041e-06,2.5353126920995408e-05,0.0006523967538555787,0.042024584951531586,3.332708819897892e-05,6.462967885235914e-05,1.2385680634180296e-06,1.5592600873727174e-05,5.09436654267288e-06,2.67464573408502e-07,1.5543142772858403e-06,0.00015518141954447357,0.00018901247885449107,3.6444068454081777e-07,2.2366573318391502e-05,3.433603916908005e-07,2.539185914357133e-07,4.0946393491911525e-06,0.00032870527595591864,0.6044772621603933,3.948862062474707e-06,6.477875644628305e-05,0.00012262293257566653,0.0006188316091799008,2.2541347347510364e-07,2.4077677155886665e-08,4.204711898418185e-08,2.5615376340017427e-06,6.532068218817703e-05,8.328729824679215e-05,3.4526912763571344e-08,2.8287187050112936e-05,3.4631364902973454e-06,0.00014238886947888848,1.7516170467015927e-05,0.0006096288799585211,6.554365646287853e-05,6.47776460820648e-08,0.0013427938219426375,1.9863409428654475e-08,6.653600705924394e-06,2.9110252431904123e-08,2.562598548585966e-08,2.404423953440347e-06,1.979683890986477e-07,1.9202887552098564e-08,9.511754952810087e-08,7.764708198201627e-08,0.0020928950591331294,1.8278580671468896e-05,0.0014244821451611044,4.1293403659360683e-05,7.981705597153453e-07,1.9359514358509603e-05,7.955975055809722e-05,3.3561807275405336e-05,1.6769553828427575e-05,0.00042248718069359744,9.950896200950335e-05,3.3644255463612455e-05,7.573583782638893e-05,0.01204211284168159,1.927511026723402e-06,6.012596716401455e-05,0.0003088597532052801,9.406681059217239e-07,2.588776183126701e-05,2.3427316041529784e-05,0.023361430349613785,0.0016674125288246926,0.9999987181474805,0.9999869761942394,0.999945486070268,1.556756513555983e-06,0.9999829829433803,0.999783611488916,1.0871664711681286e-06,0.0026136267824970996,0.9999617972951479,1.5299058054074972e-05,1.1708789058367489e-05,0.99999668381915,0.11434033907457264,0.9999949298532158,2.7740430259586144e-06,5.158240811394471e-06,3.7905410477651993e-06,1.2578241302342752e-05,3.985737531558625e-07,1.1365263446119983e-05,8.51193294617506e-09,1.1449970935222389e-05,0.00016647986916753434,0.0004368779183803021,9.106884292641773e-05,4.808221216880061e-07,4.151415235076282e-06,0.00011269753960783348,0.09859917661967302,4.9693151705238016e-06,1.4227059940887307e-05,0.0010730802776541888,2.884926708061869e-05,3.577140999990937e-08,0.00020206644553346834,2.380999200340764e-06,0.003947300732558042,0.0002724403309576546,9.067501921251124e-09,1.1027372907563056e-06,1.183586750404043e-06,1.4405877117872864e-06,7.083909724986429e-08,6.62355588920784e-07,6.6259363331534e-07,7.946229502705367e-07,6.3233571811398094e-06,5.456358329432023e-06,0.03866886480714403,0.020181295811598738,2.200440222874675e-06,6.15820178134132e-07,2.9270783199196035e-06,3.757186749221391e-06,8.635316442290467e-07,3.2571328863727256e-06,2.612152509860383e-05,6.3956273938024925e-09,5.1714548487137266e-05,1.828010281520192e-09,3.7566457316230145e-05,1.652868355048355e-08,0.00023736793454855624,0.0018658098469042847,0.0074734277919820775,4.310592598245366e-07,4.0387525734560214e-07,3.3064203070965197e-06,0.00013747004116856478,0.0005102487514018932,4.4021343168365284e-05,2.395398965925423e-06,3.872905940447658e-05,4.782935920060366e-06,6.936284636838501e-07,1.559987232452024e-07,1.9117913717656226e-07,1.7114997057817918e-07,2.934076771584826e-07,1.3016527153503397e-08,0.00025175213887891504,2.8593656305236202e-09,2.957921501572584e-05,7.191890023327908e-06,0.9998912042627169,2.7373846816376422e-06,2.4165541809891504e-06,3.2409721194364246e-05,7.915764171050792e-10,1.122630417220295e-07,4.792018608647617e-07,0.9999112602534802,0.00036751624395106293,4.508867114505186e-05,0.0013679641905440768,2.1470024638733894e-09,1.4376527224788297e-09,3.8991922187995e-07,6.019417137502025e-07,4.431134150435614e-06,9.044447614717262e-07,1.0078315721196224e-07,0.9999990732776425,0.9999724397309678,0.0005939200861007411,0.0021420435262372198,0.029119794092477808,0.045004299470140625,1.6844065370883582e-05,3.4572840819981835e-06,3.331300074029395e-06,0.07256265488349307,0.05018365467371668,0.022241084659872474,0.00023725584328597695,0.14927531904042107,0.007519102390003262,0.0004437332006359538,1.3095133594188461e-07,0.00010691053008103609,1.0913097061861671e-06,0.0026136267824970996,6.606565011099435e-05,2.3374460559141155e-05,1.9903317768841715e-07,6.849819947801493e-07,2.030774179954354e-07,3.3018929311266496e-08,0.07923822048273037,0.9998577246160542,0.9999583767537532 -बैगन,object,5.504726200882667e-07,0.00038344140510723665,0.038846889105070184,2.0217099459387503e-05,0.35682438534096983,2.2138840122797056e-06,4.534867163393388e-06,5.090812254842886e-09,3.1907859295581097e-06,8.743979255764196e-09,0.00013531451651824277,0.0002364593251639427,1.6816809366320983e-05,0.0002115960210066684,0.00031142320347817367,2.2056170246811674e-05,0.0014165824805234069,0.002781636499811137,0.030617079304172744,1.0119065428631543e-05,0.47814899395381605,0.0007556552396968769,1.8573534701747776e-05,0.0005632342413464676,4.882732008734352e-05,0.0028685897728423656,7.909271031877878e-09,1.3910132966361673e-06,7.896005228389794e-06,4.8587656271631825e-06,5.12701016913983e-07,0.40288281663650505,3.067165452881112e-06,9.852767291446181e-08,0.004604011508235438,5.792155899200274e-05,0.0004115755640278849,2.9311933579121527e-07,9.609574873336376e-06,1.47803248088363e-05,2.8118139214006216e-05,3.0745782475923947e-06,8.69481246143684e-07,1.5647011314545026e-05,4.74732687167718e-06,0.00822892494096749,0.41562370232852736,0.0007733177269198717,3.5264236017325477e-06,8.175789666198204e-07,1.4592579047362941e-06,4.5244692362756275e-05,9.369489819786427e-08,1.0498579968064978e-06,9.848267583855688e-05,0.0001459785752923428,3.320537078909847e-05,0.000726876525766667,0.00011935813589700324,2.4629036050853096e-05,0.00015794126393582996,0.013773286499303202,0.03797984731375809,0.00010595622876632121,0.0001494736349249602,0.00010393858038728914,0.0018863017040388172,1.2153515859455066e-07,1.3956980567984857e-08,6.292404932628561e-08,2.8131035660486174e-06,0.002974256224433688,0.009185268897531887,1.1587805347959467e-08,5.559908508272915e-05,7.09858238772453e-05,0.00044250784019184277,2.9808675490605728e-05,0.0005559940705794405,0.0006595515162894593,1.95470486988478e-08,0.00724931751841344,1.1416132801882001e-07,0.000381944978347495,1.099939067320724e-08,2.464220876246647e-07,3.9357934972308564e-07,1.6501926286453729e-06,3.3304443397009435e-08,4.435465474091509e-08,3.254550094494168e-08,0.00010072090140495098,0.0006453528406969634,0.015810938246023004,0.0019723796070677075,8.21345768783571e-05,1.7471661994878934e-06,0.0024281202727042153,0.0001509121658046491,0.0006338084242579889,0.00447971622995136,0.00011039717277158178,3.269305011195326e-05,0.0033744754024600723,0.03718212632477691,6.30258060683929e-07,8.377541572019724e-05,0.0003951231160114136,1.0922871252635375e-05,2.763032475874606e-05,0.0001305334986289017,0.5599455977505772,0.051211598906229845,0.9999990017586669,0.999987261205049,0.999932286285154,2.2570216089405573e-07,0.9999803785504878,0.9998589414049713,5.49634938005399e-05,0.07073168064596708,0.9999698209077162,4.882748434299934e-06,0.0005729491143499245,0.999997609260346,0.19371057397445327,0.9999942537028582,3.6120950792681207e-07,4.758017247554429e-06,2.154932809298356e-06,0.00011654596464341627,1.513645200757575e-07,1.3515681196806695e-06,4.3751256916253495e-09,1.4776316241519628e-06,0.014522159427872059,0.008401731922660926,0.0073707033852816635,4.6525244571016993e-07,2.1396592635575288e-05,0.0025782538406720667,0.005348556131463607,4.768169061333479e-06,0.0007491597360828633,0.017307999730064937,7.65900844205906e-05,3.284093043244653e-06,0.00025557946671033913,1.2373489513310419e-05,0.002782694516386531,0.009887822754499707,2.336055748903545e-07,2.4000528331820437e-07,6.462487776399018e-05,5.689861219662776e-07,9.192432459692544e-06,0.00022604180672867162,2.3105835723091188e-07,5.112548606082247e-07,0.0008586597378077064,1.493696967826604e-06,0.41093679910411013,0.003010097876459076,7.795758420025596e-07,2.106153979766956e-07,5.824370875546088e-07,7.129037036705699e-07,8.537587715140984e-05,3.182709279181671e-05,0.0001366752750034004,3.22557412117011e-07,6.9126294830132095e-06,2.4662087281153278e-08,3.2612783720133263e-06,1.9964099438921777e-07,2.8105503698271585e-05,9.041011809425513e-05,0.09819055391745098,1.4423769652639003e-07,1.4483700720689943e-07,9.981778325631599e-07,1.5170547798558883e-05,0.011021326776175008,8.144071710848021e-06,8.592441770802213e-07,1.8477173955762632e-06,4.431607418713338e-05,2.4921237382815467e-06,1.0432208524993608e-05,7.819466854023919e-05,1.4440241668076756e-06,3.1154165001726735e-07,8.846138647125096e-09,0.003327635756694818,2.1790151228770437e-08,1.763699207354757e-06,1.0994001861404171e-06,0.9999120228683335,3.399732535659768e-07,7.627957358765405e-06,0.00020112065395602982,9.666501422191798e-09,5.6302304990227025e-08,5.698604600847148e-08,0.9999119912663444,0.000616747262041948,2.0189186388968773e-05,0.12818268362547292,1.1288736068087581e-06,8.862793101079759e-10,2.3925855284138295e-07,4.8420817546566465e-06,9.563424737980912e-07,8.636964178144099e-05,3.1612785985307225e-08,0.9999987598754214,0.999982930765526,2.0446914927780717e-05,0.025617173145576936,0.3929411012171647,0.5168134442572813,0.0021600518189749535,3.2605907255720254e-06,9.543215357420713e-05,0.7904771590358877,0.5002572706439855,0.020581270533095296,0.030693119175799977,0.004196596326701718,0.1480960831864627,0.01933842604556665,2.717760265855067e-07,0.011260044116936074,1.0910436843085922e-06,0.06964575490774559,0.0012920590790955317,0.0005048234043751051,1.320749900229642e-06,6.871151400291599e-07,6.511797408169653e-07,3.762697745078055e-07,0.45662183244433563,0.9998415394349294,0.9999523118442278 -भी,rgb,0.00016955001292785304,0.9999971108422009,0.00043341627337887406,5.395459566628897e-08,7.111903643766798e-05,0.9999927158368284,1.1470455588175455e-06,0.9998928864723662,0.9998858467571571,0.9996623635750641,0.025579850288914192,0.0039344404609025834,0.005401010910800639,0.9999958334730997,8.39888700432066e-08,4.969252217030788e-07,0.001127041445717899,0.0013693200207644221,0.0013708532951441368,0.9065535295392917,0.003296632693158602,5.3257715658594684e-05,0.9999901745981898,2.939246438114297e-06,0.9999960111753683,7.619503410963971e-06,0.0002067324012434013,0.999994542456441,1.035047760884786e-06,0.9997387035231801,0.9999926269125422,0.0003865463545964127,0.999988831519918,0.9783519412531219,5.121308311899225e-05,4.6104735586363924e-07,0.794699250016544,0.00042805543070529347,0.9999787739463721,0.9999680985953889,1.886166647277467e-07,0.9989745151230934,0.9999916289570866,0.9994817188284079,4.5421607340951777e-07,0.003334916165081205,0.0005375387120584363,0.0004313849329334931,8.54455927263474e-07,0.992244698138246,0.9999922741616533,1.5782245451721007e-07,0.9998163999625046,0.9999783568486651,5.030294171795208e-07,0.9999791080840155,0.9944548438433232,0.9891325063214711,0.004612095836505668,0.007677465680702015,0.023765361628082106,0.0031048594766533953,7.243091564722254e-07,0.9976863495207638,0.9994188111235706,1.084538612699885e-05,6.94821218938064e-06,0.9997358331162751,0.999872209365769,0.9998982785173942,0.9999834601445212,8.992445595219585e-08,2.1777648515988355e-07,0.999629245761229,0.9999990986391927,0.9990511436476948,5.779164429068998e-06,7.422659249605744e-06,3.5561901699935056e-05,0.9825007494091066,0.0002203009495188033,0.9929448136818763,0.1281407790240765,0.9597995321245533,0.9998929822770171,0.061484376774428987,8.388044750634134e-07,0.0002560944833937718,0.0006142746361022606,0.0002559682298009858,0.9998744375362846,1.487475046246088e-06,0.9973445830439125,0.9836453858779667,0.9757135564926127,0.9641393958359562,8.984460139401512e-07,0.9586341130373768,0.9938705487035605,0.9645462087745621,0.928291120341883,7.429315132474644e-07,0.9999638443270399,9.74124273283574e-08,0.903481163559082,0.9999930514585275,3.5830837904171026e-07,3.7601095569200634e-06,1.1345809453552862e-05,0.9999576715460563,2.4838576699601016e-05,1.1149420377101268e-07,6.436888999255937e-08,0.006858381594748373,0.0142095077439615,0.02442704342617529,0.9971362150711068,0.1636924319871471,0.0033279055246905305,0.0001923063923937359,0.0003249945603984293,0.06054418126142749,0.9965191599758286,1.4717165785377042e-07,0.011954355569259504,0.9997909294508294,0.05560949386204752,0.9979503898217771,0.967492386705198,0.8962712490469361,0.9592942297887218,0.9606501156582283,0.9999932417067632,0.999656817891693,0.9963126274172313,0.002880177664599385,0.0016415770949635327,0.0017104923729303837,0.9871504421607777,0.999618050286366,4.5181544400003755e-05,2.1335495091346777e-06,0.9999822597257584,2.4073533780149195e-07,0.9569335434814981,0.8170469663668442,0.9953160912104084,2.6190501149173407e-05,5.478772175303806e-06,5.48766090669338e-06,1.5375421847581452e-07,0.797449162016655,6.24934470346261e-07,0.02746603816675735,5.119531696072603e-07,0.007607576561513325,0.005574892480133896,0.9999975728846106,0.9999902791467746,0.0018175286463671997,0.9999992016714921,0.0016156374712452996,6.557301135668759e-08,0.9999964302081367,0.9999975921937505,0.999998362183551,0.9999967501197753,0.007135803992092549,0.008276605533905216,1.0084071283833508e-07,0.7841722005928096,0.9999922411371872,0.9088345816992084,6.086245288900742e-07,0.8213357461789101,1.15792205612535e-06,1.8407867008228066e-06,1.6778698005003765e-07,0.9999995081789063,0.9999976012367271,0.9999967809965987,3.755624697645561e-07,6.16156065705096e-05,0.9999892150066699,0.9999930246148799,8.150038136441203e-07,4.7086390880223286e-07,0.9999978106490548,0.008148574564778903,0.005334430333447812,0.026295258418051054,0.7883301019082355,0.0001520787046346668,0.7503721582096269,0.9331668224807937,1.042705621331465e-06,0.9969276493970207,0.014683992361323825,0.9999902324487769,0.9999745216064447,1.847739515774195e-07,0.768324117315914,0.9999953505851407,0.0002949372914438126,0.12275356991678016,0.999969902424114,4.852721112863385e-07,1.279340986636767e-07,7.300011938761989e-08,0.00014948710005034018,0.7524574127323138,0.0006127124644326403,0.9999955165463841,0.006235610020015255,0.9999984486446856,0.0291007404161363,0.005658760184468612,1.0919036939809404e-06,0.0010848609712984004,0.00022979273758920161,0.00036711120321814895,2.3107847511058624e-07,0.9999820773837689,0.9965834790777784,0.0015332005107903661,0.0014528488698053901,0.999997113818253,0.002412132100791583,1.1424049151472753e-06,0.0003264656262667058,2.596780893155453e-05,0.1309928593769504,2.005833827262626e-07,0.999965806771335,0.0004174606480657759,0.011565172899811132,0.003416735721997318,0.9994325143763825,0.9543300733805845,0.855132504721549,0.00032897697963843865,6.052577863889217e-05,0.0546244759883388,0.056368419985175784 -भी,shape,0.9998644558114295,0.986698370695288,1.2203345659150026e-07,0.0003739760392882124,5.615522242172711e-11,0.004175660777419771,1.4662797995248915e-05,0.9999993380005258,0.9999992490254737,0.9997403691920085,0.9999936332184324,0.9999989696921728,0.999999294769937,0.9999382584770243,0.9189455230353509,8.7438293974546e-09,0.13883287252390453,0.0002144901290129766,0.0002007623162035886,0.0077869896688299925,4.303332131726368e-05,0.0001168144345557043,0.001884730236890116,2.8385621847822034e-07,0.9986924630725957,3.080147634995792e-06,0.0005770582023567742,0.999385838795045,0.00012799584199124875,2.1149347572805746e-06,0.9945171153568027,5.054183899092607e-08,0.0009524429478964557,0.9753342574718155,0.00012094345229200713,0.00010833809266441002,1.3745894941377654e-06,0.017087175597429498,0.0022274614492676023,0.9995912862157558,0.03008432563680092,0.01650637084446536,0.1764630114334393,0.014294335387277814,0.0004952487074740274,8.417620931830088e-07,6.945652956101265e-11,1.5920878840747064e-08,2.6664009399749538e-05,0.528509781511825,0.0418056747948183,0.0010004440323735432,0.9995450539463832,0.004845522588890876,0.9682318353131287,0.00044563460467040764,0.9999999016918119,0.7083422686362297,0.9999991074064738,0.999634677656078,0.9891895977668441,5.1492536877021766e-08,7.445460926274481e-06,0.9994478317026141,0.0033160021407070625,1.5905415077402287e-05,2.711725502727705e-06,0.9997609773937762,0.9998797545853663,0.9999941702594856,0.04567499600745941,0.9364131564669831,0.9985169044624308,0.9952002429014057,0.9838325802149114,0.9999746177870468,4.0553804271088194e-05,0.12782834083291564,0.0026543379163628494,4.4594390126533413e-07,0.0005073559519147092,0.9999996298056997,0.6514293045287136,0.8566957001473067,0.99945678049182,0.8366466269831208,1.6567916943964846e-06,0.002511143173409151,0.9685232665841668,0.0006507735841489043,0.9999787708646686,0.9887526725993501,0.999998901505981,0.9999996835878129,0.9999965262923921,0.9999935597459094,0.0004659581414352645,0.9999999080144655,0.6167322051114793,0.10037472335450154,1.1056619145406677e-06,0.00018075099149068868,0.0006423945291727812,0.001034260309315236,0.06919386093048381,8.380255003948863e-06,0.8529533951797391,1.676438866116198e-06,0.0013487241445236005,0.0006755478994055229,0.0008440905164153475,0.05440541323881546,0.01296769229341058,4.692468258108818e-08,1.2162079363391033e-12,2.240725875710043e-09,0.6275090829163295,8.035247005034583e-06,0.0002883841342207992,0.4372238663428621,7.805016828608655e-11,7.782735528317496e-11,0.4264194638039489,0.0013442091487740984,1.4633919587130909e-10,2.5038481385924757e-05,4.3398376358431213e-10,0.8840537794809272,0.9586586934974942,0.8985611841650016,0.1062653880637215,0.21491078074012324,0.9843823052281993,0.9998223889452958,0.42677994406885,3.724773885751094e-05,0.24054756264636792,3.096469619690316e-10,0.43313152977339336,0.0001460986904466697,4.254842356228897e-05,0.0001516142826618118,0.9999302934216248,0.9994653499998893,0.028823079950849848,1.3088722532457375e-06,0.9999834586456469,0.0008155505353790491,0.0019424522588218957,5.594205533920459e-08,0.992569379941403,0.999999794129883,1.1635801560253938e-06,0.9999158191897273,0.12097256138264594,0.9766188092827299,0.9999989696921728,0.9983303780272093,0.9999152909228133,4.817006758955743e-10,0.9994198538899476,0.042593027400602605,4.14005518332243e-05,0.9999205664222138,0.9999793491230102,0.9999037012135673,0.9984368392052735,0.4328955107973898,0.005979238141503411,0.0005636726269679768,0.9999995895989878,0.002573352807241891,0.9999903183978005,0.00013835749626206595,0.9709135271665958,3.9353019186395136e-05,0.9945766394215889,0.8829732785451982,0.9999862758480818,0.9996880979511683,0.9996463832771991,0.00018204668593727532,4.20590289483799e-07,6.03412206113093e-06,6.524334076490784e-06,5.901964452488946e-06,0.5622875483134662,0.5536447020754159,0.20009781410280586,0.999999933702391,0.10407739646588796,0.6373305044827993,0.9996857873728483,0.7403065572521753,0.99997974107496,0.003831000084661723,0.5942958980302687,1.081255110723917e-06,0.0256869492054371,0.9999993335375895,0.004572942617007364,0.9992861531208501,0.9999366737701735,0.0007748411747269853,2.0190631001954078e-11,0.003742609510459367,0.9513253446647879,0.008228056491329532,0.9999992404488318,0.9586826219161738,0.8154022435426568,0.7893143282336368,0.9991210265578869,0.9999394774662557,0.9996213880079036,2.199270963321501e-09,2.474269432506341e-11,3.7341153967396545e-05,1.970024272959768e-06,2.7352019621905637e-08,2.1569505808044185e-11,0.9632689881077386,0.04030409448009,0.9998544240202114,0.0028051447474205502,9.691248509042946e-06,0.08748643564455207,0.5598148031731128,0.08167349805792369,1.807014587438146e-07,9.285433068090867e-07,0.5578188803391659,0.9998986327729575,0.0041686005741973006,7.805016828608544e-11,0.3714072882006697,1.8532972792740263e-05,1.6382721923170552e-05,0.99652857611852,0.9989784728084936,0.16213084556445162,0.00016276732399336883,4.326186931603179e-13,1.4399680804576758e-11 -भी,object,0.0029937026241596302,0.9999972846864003,2.29982681261717e-05,1.4415326834908818e-06,2.8791999262921292e-06,0.9998907573761558,6.745965238221677e-07,0.9999755836823498,0.999982863591186,0.9998251670613647,0.13591164288676394,0.04456811956375942,0.04836955222180608,0.999996831256352,6.622813019589831e-06,1.2674464490503184e-06,0.001972989181115626,0.001430445357696785,0.0027433348725732732,0.7658689954832221,0.003778726938244964,5.875972935480781e-05,0.9996440215996355,1.2462961649141829e-06,0.9999373591321523,8.095008087554065e-06,0.0001322540764071269,0.9999597697298155,3.0199556896128368e-06,0.9979035924322799,0.9999439941117878,2.2947573197995052e-05,0.9999208199775212,0.981812584791986,8.850884675355554e-05,3.131355863002957e-07,0.5065277866838722,0.0006039102573872545,0.9996876382784753,0.9999725200358199,1.2763059232790398e-05,0.9991935542697785,0.9999593579399173,0.9992169061604852,2.916350846600188e-06,0.00037123134254340913,1.6445218017585853e-05,1.312950433421436e-05,6.314685004967331e-07,0.9917541770065136,0.9997497715124409,5.557548974322258e-07,0.9998973224932954,0.9999615349835138,1.912031112355496e-05,0.9991103887358307,0.99686662437139,0.9924630964220381,0.04134430755403197,0.02242780652305693,0.0507002294213818,0.0035114172723270777,2.3393917515098223e-07,0.9992703890837161,0.9976258359492673,1.0949941520117978e-05,8.452923431013567e-06,0.9998906511284835,0.9999466413091814,0.999977209980429,0.9999803315518363,5.687975755272842e-06,2.168377106528551e-05,0.9994957674941581,0.9999989601300936,0.9996185605396786,8.059029970033556e-06,1.1288393594687109e-05,4.228980926683604e-05,0.9638421662099537,0.00015871836517152469,0.991338987178033,0.14501662421093026,0.9707507902672982,0.9999042171608276,0.09265905357982554,1.0083383127682295e-06,0.00032985010728609155,0.0030663494482910097,0.00018294106436917042,0.9999616177465702,1.9577874370935087e-05,0.9963401871626719,0.9862038436137323,0.9743181374083218,0.9860863235264171,4.938917985818121e-06,0.9766960443287518,0.9922343949344048,0.9751445425405807,0.9197570764340648,5.519631728667474e-06,0.9998824225813874,4.5367235593274355e-06,0.8695470979109653,0.9998466967223576,5.342197904280742e-06,2.038779144001252e-06,2.2571582355948127e-05,0.9998492865328414,5.432459370549849e-05,9.463319182588782e-06,2.8534529858822313e-06,0.0038207763959093436,0.010533134658012044,0.005373516662734811,0.9930962578424005,0.13396032758505122,0.01204979602096304,0.0007865146441608469,1.1251418674205672e-05,0.02611521640019642,0.9926522750067936,9.80529994325784e-06,0.0055667935780163835,0.9993883131896746,0.015363474028876225,0.9939629044511734,0.9807937571846627,0.9332458787597155,0.7678915939938261,0.9377534309494425,0.9999283613642584,0.9998299198804755,0.9923851785854287,0.003272171250543375,0.00398851065061618,0.0022017736721593835,0.9793791029023791,0.9985119070695754,3.925106501799145e-05,1.3908562789880924e-06,0.9999909829608568,3.3993956770856855e-05,0.9794516169987417,0.7607933783679222,0.9971602104068091,3.683232117853071e-05,1.625259335807854e-05,4.737785797861693e-06,1.5090441807140812e-05,0.9692711310595241,6.297436556049892e-07,0.05983350436805408,1.2225504242173577e-05,0.01647759520148941,0.058871721935659815,0.9999793872431831,0.9999549196667781,0.0015840846704184624,0.9999950434535594,0.002338361130054309,3.8749084053291216e-08,0.9999907951892295,0.9999911869048129,0.9999853172615611,0.9999293339312462,0.044983270169062686,0.004720050437330101,4.4083507785356585e-07,0.9462021345039047,0.9998269254845209,0.9869601138501735,1.18977686686813e-06,0.9508544957350333,1.2345700310705716e-06,4.015409526988878e-05,1.2396045918871073e-05,0.9999984974774643,0.9999892105948781,0.9999838281013047,8.429010571486835e-07,3.359558925080362e-05,0.9994848950817299,0.9998014935379642,1.120125818869225e-06,3.4329095778763607e-06,0.9999916364140026,0.012124081299849383,0.05690248768076114,0.017681534742868165,0.7545126920577317,0.0035470765091389703,0.7217265590862885,0.9853655970348771,1.2163790953900095e-06,0.9959378944235688,0.009624987169343789,0.9997445312633266,0.9999965260861783,1.14471706760376e-06,0.9486370810592227,0.9999878691186108,0.00016190082300970914,0.055436037121176035,0.9999471411776767,1.8679982921877193e-05,1.2838930847923298e-05,5.645079794133796e-06,0.0012913067797926993,0.7727734833961962,0.0027264852322153887,0.9999491075606998,0.02741629543829597,0.9999909845996385,0.014624634867667276,0.002040607271730625,2.118816462552747e-07,8.215485014799004e-05,1.5674606178559093e-05,1.217995437435608e-05,2.0123834090555454e-05,0.9999803445797513,0.999661746058736,0.0017387702876918087,0.0009479087181360337,0.9999949737684908,0.005271114687625854,1.5267189721282746e-05,1.3473026962323693e-05,3.7421118652691215e-05,0.14095034814345928,2.9862960028932398e-05,0.9999472276466347,1.3956824324488509e-05,0.017932111906429817,0.00029966369406830926,0.9959850342563444,0.9813298454571612,0.9613136687987458,0.0009174488780938862,3.5570218015555146e-05,0.0049422576656544944,0.03243046712002251 -भुट्ट,rgb,2.2556709833857674e-33,5.529694623834426e-18,0.11956329253787702,2.4966896386705477e-46,0.00035532870864675556,3.8221311136756594e-10,5.969292939364743e-33,6.291674399055091e-14,1.3409038722865997e-12,3.171088662537616e-12,0.9942904351734791,0.8787085099728237,0.941503437672138,1.6291684272080047e-18,4.261455177716463e-52,6.851279395311025e-51,0.9419523047949335,0.9642774292742224,0.9489054262049924,0.983603322392077,0.7447873781834976,4.824337972414985e-06,3.781405141405478e-10,6.982561783511184e-09,2.3429878525072132e-07,0.0038097246389284835,1.7199246929784171e-38,6.355817201414952e-07,1.4037558641088957e-48,5.873639499034781e-14,4.157269399230297e-10,0.014455405756225491,1.2809327736937084e-09,5.764279853037529e-11,1.7351154026932512e-41,4.965852616339732e-50,0.9950660957415146,0.0031840211245737376,2.555995342510545e-06,1.1288806133062589e-07,1.1892748964697092e-42,5.814925577173244e-10,1.0134784842356887e-09,9.528896311549394e-16,3.897201706505842e-40,0.35529828631367855,0.017335780453684668,0.12371296277873234,6.1301866044337295e-40,0.0007388938978279497,4.022066656694676e-10,4.270242443211547e-43,7.857109187569611e-13,7.299231954899643e-09,2.1183599093546047e-44,4.1767361369348854e-08,0.16112684138379305,0.2671389611184725,0.9060706703432647,0.9696781870926033,0.9943177613937093,0.49293512144318413,9.834505789091756e-54,6.5989770702399914e-09,5.122373937441154e-13,3.256611691877955e-09,0.0007676880962707439,5.307996552027155e-13,1.1068349450325479e-13,6.449477141076841e-13,3.87617490896349e-09,1.5885800846887567e-43,1.8093353139774385e-41,3.375541843067275e-13,9.661535150663957e-16,2.4914606161010295e-09,0.0014163284972492749,1.118521891654872e-08,2.185203554023693e-06,0.369704881461545,5.5615277336546865e-37,0.2848574018361514,0.0012110449676274978,0.5883293036797954,1.387849592293486e-13,0.0021586625480559314,2.6622454562127692e-49,0.002330723458207515,2.9450956357204312e-28,6.8411208493155965e-37,5.0843124188939975e-14,1.2080349727437218e-56,0.06822178293599786,0.24156768555764688,0.4319050169981833,0.5343927877113259,3.5185152324812104e-47,0.5950839420974862,0.22801206326292778,0.6151742512275327,0.7685934837520216,4.05951255884969e-30,1.4809226781824816e-07,4.428378087512498e-45,0.7392150801327931,3.940696974127695e-10,2.808432517802375e-38,1.8162680285290986e-08,0.010321283385733022,1.5979379255706416e-07,0.03542602389822026,7.377017836884013e-44,2.986917864613216e-48,0.8492758627146526,0.9844032974467419,0.9921292447477158,7.85335391535777e-11,0.9966323741031525,0.8579103653707775,0.29711826614429643,0.011937902052314231,0.9923937557555502,0.00017823136927213885,2.0407139801362852e-41,0.9166020759724821,0.011623956892288996,0.9909255743209352,1.4384630714935076e-10,0.08977804825245062,3.979455336847108e-06,0.9894584926255919,1.7251761265905604e-09,2.6871764449151153e-10,3.62395605025539e-13,1.0920630651466945e-10,0.9565700180186181,0.9473135926298186,0.9597081695671831,0.008169221895094185,4.252665000686825e-14,1.2290098946278611e-40,1.0293477895332433e-51,3.906921557572319e-09,1.716820247303689e-39,0.9448755947046448,0.9952054375788375,0.8618656120225161,7.54150657256661e-07,0.0006706287192411289,2.1668201771625353e-09,5.290507828532789e-41,0.10184129740099193,7.286334864280712e-49,0.994710060328815,1.6648970186640375e-44,0.9657006441120376,0.9217016234215231,3.9506260984543346e-08,2.1321934563402596e-06,0.9194921966350306,6.99860608270188e-10,0.9226229810426688,3.653250308841939e-49,1.72803069954081e-07,4.09042144068161e-08,7.21469681124184e-09,1.003590785664565e-07,0.9527006210588103,0.9728512490971599,1.0006215600316168e-44,0.23581244741549995,4.13674376657463e-10,0.003820527852802745,2.6876859154967077e-52,0.3625689697495694,4.196636990070791e-33,3.767342170165809e-57,7.47646875505638e-49,1.0681462561039276e-10,4.051569163156605e-08,1.197877918855648e-07,1.2075481772050772e-51,4.2304795268817985e-41,6.073165385800775e-10,4.05309277693301e-10,2.07503878202796e-42,3.6306512368518784e-34,4.761758672916097e-17,0.9723672605674809,0.9253695630523958,0.9948779757926562,1.762883970989269e-09,4.1651075318751054e-34,0.9967667631211532,3.8499523725999484e-05,2.6581652369618246e-40,4.11132810681597e-10,0.964085487106683,8.831206494566312e-10,8.059781005703115e-09,1.1193208975702547e-40,0.06896427001191521,2.6410429636491017e-07,6.565704569469257e-38,0.9959534287924184,3.3672980055988216e-08,3.4627210910890193e-44,1.2281969116675322e-42,2.1362663768767388e-51,2.4390223679469916e-36,1.7856022676981618e-06,0.0016127758055441903,3.556051283686816e-07,0.9479390040452791,3.760124270966844e-09,0.9847067703686148,0.8714113968402796,6.389472353808217e-56,0.22174738445887682,0.00354745952003431,0.004023357114962987,7.835379726208067e-40,4.098516190501309e-09,2.3982272980735427e-08,0.9699047342016092,0.9706963744598404,5.669578924335749e-18,0.9772680161199858,5.01728238669369e-56,0.012236657192873712,3.9562744238525523e-45,3.562495511349336e-07,5.034958644722403e-41,8.55851751798816e-08,0.014332786466972596,0.9136693639811083,0.7420903369148372,4.0671495500367285e-14,3.3015275550249597e-06,0.011751069264787589,0.00011789901683579477,1.059109210153728e-39,0.9976001000589562,0.9966943304722755 -भुट्ट,shape,1.8179801831315707e-06,1.887402272080818e-06,1.7935628952556978e-07,9.261119790167044e-07,0.00024748906126341306,9.807440393313636e-09,2.644082554318334e-07,1.3537292011015602e-05,3.010430205152988e-07,1.868362723340553e-06,0.9998908666367307,0.9999851402258545,0.9999998151535165,4.943379049410275e-05,0.000285871397747163,0.0002636055313909117,2.33403018754407e-08,2.9386921653104297e-06,0.0012569076516506393,3.5060645764891025e-07,3.5337806080347944e-09,6.38157217650052e-07,0.47266182224418335,6.462407997624744e-05,1.953729123891167e-07,1.0450648403121743e-06,9.687872349573955e-05,3.209860177823948e-08,5.7356158700117635e-08,0.0015914189661173164,0.06403800127240086,1.5024755908937815e-06,5.187961433889591e-11,3.1757607110779504e-06,2.3978704138871274e-10,7.858492679105893e-07,5.989237260144694e-07,0.00024147232504357298,1.9494740361720816e-12,1.7278732185116348e-10,4.6301529352155196e-07,5.399083673288123e-07,6.788364125498765e-10,1.7051099322639485e-10,3.6710811951374564e-10,3.5590936278038053e-06,1.4824750248666417e-07,0.03798302615842476,0.00017932164434134414,1.394773368033983e-07,0.0006405296448961895,0.0022150571990906913,1.8185153854447415e-06,7.713949866981088e-08,1.0811590877725127e-07,3.576381003975896e-08,0.9864131939657239,0.9991327580503636,0.9999791243650377,0.9999003489764772,0.9997395381001705,0.0030216737189991596,4.086217199375917e-06,0.00018717782503049332,0.023414563256356796,1.8481417182741316e-07,6.93184261721228e-09,1.1261656505741329e-07,2.053170305384353e-07,2.433943663672332e-07,9.534796426465267e-07,0.00012157019836445674,2.4324908171882365e-05,1.8095324734299823e-05,7.79478366102564e-06,7.36459875039795e-05,1.1684485484431491e-07,1.168465270661821e-08,2.2131395103022478e-08,0.00025016298591816786,2.0474653936191016e-05,0.004779704755852918,2.3912228119641737e-06,0.3916941531968695,8.046816591802136e-06,5.556524714583627e-07,0.20265822026338873,0.00038950967978240253,0.0006728946817701848,1.1907067689759784e-05,1.7856081065869158e-07,0.0002722684057498294,0.014762559479016628,0.33329660822140744,0.025644658393314666,0.9999994826154887,2.534096492688645e-10,0.5962142876085471,2.5446449034132052e-06,0.2263748839285035,0.002401067293485075,1.5906603271156472e-09,1.9609962199507893e-08,2.57984918162917e-08,1.0868782751370202e-08,0.0007263634398391389,4.862679978752723e-09,2.151204957477842e-06,6.607453697249266e-06,5.247274958218127e-07,1.4812369413192637e-05,8.209344315776636e-14,6.417937105816489e-05,2.479562951752904e-12,2.2825185123599917e-09,1.2400802404716753e-12,3.339010118217934e-07,2.1996720282359313e-09,9.730174096572057e-05,2.7397225950734945e-05,0.11892864648680745,6.819044647520191e-10,4.1818242259430336e-06,1.3839073872495519e-09,7.377725952478296e-09,0.9965398992109087,5.483316021813976e-10,7.834332427829387e-06,1.25670192565177e-06,5.131372275689767e-08,0.9994042231232975,1.6834979480970977e-06,0.00014039637641654476,2.248092703300571e-05,1.0157365322593175e-07,3.746347423556113e-07,2.4712353867292924e-06,0.00015016759658747345,4.374454152503948e-06,0.0061616915044906285,2.769435945233696e-07,0.0003458159704141375,1.4263402938132554e-09,2.644863081025347e-07,0.9999922296969798,6.751898968972174e-05,0.005763438359672444,2.436729612576113e-08,9.01438837002262e-09,1.026808300602929e-06,5.767869886962652e-07,0.00033554197244928735,0.022641607970803793,0.9996529941823814,7.915390672096419e-08,0.999903730035068,0.9999851402258545,7.708016933229652e-08,3.03601560312905e-08,5.010482356378702e-05,3.36389470299867e-09,1.3485549966967122e-06,4.2900431663143954e-10,2.09318826370337e-09,1.2566027663242832e-08,8.07033584081425e-08,0.00011867653078068874,0.999782310562343,0.9996367786204874,5.949154738331142e-07,4.243371390606308e-05,4.227440193683981e-09,5.071613090515287e-06,0.7105278262424217,2.566745527442304e-06,8.082276811509604e-05,3.390212320063643e-05,4.01398213322512e-06,2.550769024841985e-09,2.7421788673427104e-08,2.7253675433497554e-09,1.0814101376802667e-11,2.789114546365272e-07,0.4002315500644207,0.00013605045373110287,3.3928676769195804e-05,2.630421603835301e-05,0.0014509989942639596,0.9996110208318124,0.9999840658822036,0.9996882742925115,3.2697863219175775e-06,5.148443718069541e-05,5.9174424444325705e-12,3.0927515021485356e-06,0.00031512604189171795,2.3945708870566293e-08,2.1192028766191524e-11,5.48366759342314e-05,2.7801597055825302e-09,0.0003141371833712572,7.3865845639480295e-06,4.7082735806904344e-07,0.0008059440279124284,2.4401414768980195e-08,2.2947238206909116e-14,3.1056519013270075e-08,7.988929628912661e-13,0.0006922352245678268,0.00011320711949689297,3.6578890019925304e-07,1.8190743062425118e-05,1.034209399118948e-05,0.9999951750030036,1.6090286665927553e-06,4.1445073644503363e-07,9.733575072305685e-11,0.0002577968240130678,4.9723402325664894e-05,1.5713415441944993e-07,1.6189780108752706e-06,5.126985330130187e-05,7.88056282150459e-07,1.8384224511683658e-07,8.927628580705439e-05,1.2299008192542355e-08,1.1798354442201087e-07,8.536442655473842e-05,4.179929258739403e-08,0.005372008365449426,1.0281236072952761e-12,1.8347341960740666e-06,2.690035088654499e-05,5.952507605588042e-06,0.1189286464868083,4.3643096403751297e-05,5.87913479590307e-05,0.19803056100023778,2.4874574196998006e-05,7.918089205518365e-06,0.00017738178515841414,3.606336311487275e-05,3.575525587719701e-11,9.876011371313695e-09 -भुट्ट,object,1.5691832833775164e-06,2.691969380377625e-06,3.201258980394793e-05,1.4900440317354528e-07,0.01711474799061539,3.49815442007216e-08,5.834369457566991e-07,9.196997751777577e-06,6.121277689590579e-07,7.915431130565956e-07,0.9999283901674771,0.9999939878543257,0.99999931084005,2.18205537071304e-05,0.00018772395292884997,0.0001215880925004171,9.311752899432952e-05,0.005963247462927761,0.9404775267690818,0.009328245584686201,0.0004686236422101995,3.0624049031535075e-05,0.4625322273257454,0.0012537222754546967,2.8980487060082434e-07,0.00013679782774699646,1.6375780169162255e-06,2.538831023586784e-08,1.1849477489680833e-08,0.0010178385601405532,0.015440067077758145,5.0652747725683754e-05,4.753335564789695e-08,1.9798807217413357e-06,2.473904713605291e-09,1.983337692439434e-06,0.00026093399800781477,0.00025163443910369284,4.04680336505119e-08,1.2054031543060465e-07,8.497846043719538e-07,5.110567871909822e-06,5.046940770365669e-09,1.832922689091439e-09,3.889999647301729e-09,6.0257914744084606e-05,1.3021042013655565e-05,0.3019207892777546,7.714245687124518e-05,5.247774406431604e-07,0.0004386356196829174,0.0004902362909423853,3.6048634441810864e-07,1.4030174225168363e-06,1.6640262670677025e-07,8.109563082894388e-06,0.9940397434882903,0.9993724115950906,0.999987440219049,0.999917916651342,0.9998086195141187,0.9001313198691084,0.00015576499369297675,0.00023269780991330932,0.010255804397834481,6.9596152283741285e-06,6.866121081127774e-07,5.0057254260313174e-08,1.0111238781387661e-07,5.756141945680537e-07,2.126908073964338e-05,6.34937426627105e-05,1.5591524785362203e-05,4.094930787357122e-06,7.196993895950332e-06,8.826346745673394e-05,2.5665074996819274e-05,1.0278402958387626e-06,9.183889112435098e-07,0.010461240782893736,1.3813165411652955e-06,0.20071493680616093,1.361514203566536e-05,0.952067539318263,2.8470745681905484e-06,1.1320757751484142e-05,0.013990477155316787,0.0003516843439404225,0.00023750901821042712,2.2952568735687695e-06,6.424996894128442e-08,4.509618237897012e-05,0.5379203392739037,0.8938102455992538,0.7499550133096535,0.9999971339067153,7.815628453806319e-10,0.9624244168932345,7.238608201012473e-05,0.8805786990933515,0.16746180219875484,9.891572098040328e-07,7.126216569074432e-06,6.464013267336791e-07,1.0697030386044588e-05,0.0007813794087826252,9.596812929990554e-08,7.015519244340094e-05,0.00016817443767460933,6.284492163808585e-05,0.00022102413986131988,2.2507347187074457e-10,4.441626002733362e-05,2.26041403298317e-06,0.00010284103059680161,1.0778125913622346e-07,3.8074999304356226e-07,4.100719314032807e-05,0.10654713655885696,6.617058655868755e-05,0.6967773848969634,5.947297012646157e-05,5.35969820257022e-06,1.2828979318175944e-08,0.0015837480265575145,0.9981070122375163,6.173327554602717e-05,6.633006961114535e-06,4.418124598487623e-06,2.461631417187896e-07,0.9990605617706853,1.112182714351226e-06,0.00011343407701281,1.9599847839951246e-06,1.7725422282729887e-07,0.049208892405000516,0.010658991628426432,0.5045113865260636,6.9734870483506935e-06,0.0030037051381326626,1.791168214564702e-07,0.0013543131969221583,3.974662841327704e-08,4.850919867490485e-07,0.9999790385558881,0.0013674846775478746,0.4848063981084117,9.85089447610875e-07,1.291217484787949e-06,3.393670722502664e-05,1.2804431903515983e-06,0.0024430072301395325,0.002522145283675448,0.9997712976397364,4.165604130523015e-08,0.9999426331847008,0.9999938721114514,2.8915824187371274e-08,4.051600146607721e-08,0.655809696523452,3.1206873911016595e-09,0.033103095487592785,7.1180234223014805e-09,3.808618138458292e-09,1.1417217752428245e-08,4.861815226785671e-08,3.214084653583379e-05,0.9998585495120357,0.9996722857262322,1.2882615428844314e-07,0.0018799779967241046,1.699350686263539e-08,4.881289827924533e-05,0.059362192702838414,6.0452990824737466e-05,0.00016161769883376575,4.07278108412798e-06,1.8689485812321886e-06,1.7649159421304978e-09,1.3077112845121407e-08,3.2157899113619938e-09,1.1896647008544623e-10,2.532005504447036e-07,0.4694997328295303,0.000251242647345802,8.297287764229514e-06,9.195211119824172e-06,0.0010236877620387389,0.9997126014344262,0.9999871235578444,0.999718067705333,3.3190017859785686e-06,1.6578085278501796e-05,3.8273074461774006e-07,1.786554250382654e-05,0.00020545753434909444,5.6281938986609055e-08,2.0468635993854652e-06,4.800212407204195e-05,8.590630582408703e-08,0.00011837847312243698,2.5083748307960705e-05,1.7850152654442838e-07,2.0212188587222497e-05,0.002182553304079452,4.3899620450710937e-10,9.669680985175835e-08,8.657376646586819e-10,0.00036391307164516587,4.4464222157526855e-06,1.6348322901667639e-06,5.8812144528070615e-05,3.865293787758478e-06,0.9999914949421342,2.1643688910459715e-07,0.010075209089463442,9.72092210479526e-06,5.825360702053477e-05,0.0029268927569386363,7.810567524231966e-06,0.00015935090000453465,3.848378004052646e-05,1.5139737985470282e-05,4.5564902360857325e-06,0.8206376618569775,0.0013871517841020978,8.186820742530569e-07,0.6392545027245842,6.182384340476168e-08,0.19032761050553368,3.2790279599024986e-09,8.189598267958124e-06,1.5215996050333475e-05,4.77305745049241e-05,0.6913176394621932,9.830986091883833e-05,0.0010382080270766667,0.056410167136890184,2.777517809504973e-05,5.770375663062418e-05,0.00017480386304488533,0.0009082702052938119,4.960690632945758e-07,0.0001342369919773024 -मक,rgb,2.2556709833857674e-33,5.529694623834426e-18,0.11956329253787702,2.4966896386705477e-46,0.00035532870864675556,3.8221311136756594e-10,5.969292939364743e-33,6.291674399055091e-14,1.3409038722865997e-12,3.171088662537616e-12,0.9942904351734791,0.8787085099728237,0.941503437672138,1.6291684272080047e-18,4.261455177716463e-52,6.851279395311025e-51,0.9419523047949335,0.9642774292742224,0.9489054262049924,0.983603322392077,0.7447873781834976,4.824337972414985e-06,3.781405141405478e-10,6.982561783511184e-09,2.3429878525072132e-07,0.0038097246389284835,1.7199246929784171e-38,6.355817201414952e-07,1.4037558641088957e-48,5.873639499034781e-14,4.157269399230297e-10,0.014455405756225491,1.2809327736937084e-09,5.764279853037529e-11,1.7351154026932512e-41,4.965852616339732e-50,0.9950660957415146,0.0031840211245737376,2.555995342510545e-06,1.1288806133062589e-07,1.1892748964697092e-42,5.814925577173244e-10,1.0134784842356887e-09,9.528896311549394e-16,3.897201706505842e-40,0.35529828631367855,0.017335780453684668,0.12371296277873234,6.1301866044337295e-40,0.0007388938978279497,4.022066656694676e-10,4.270242443211547e-43,7.857109187569611e-13,7.299231954899643e-09,2.1183599093546047e-44,4.1767361369348854e-08,0.16112684138379305,0.2671389611184725,0.9060706703432647,0.9696781870926033,0.9943177613937093,0.49293512144318413,9.834505789091756e-54,6.5989770702399914e-09,5.122373937441154e-13,3.256611691877955e-09,0.0007676880962707439,5.307996552027155e-13,1.1068349450325479e-13,6.449477141076841e-13,3.87617490896349e-09,1.5885800846887567e-43,1.8093353139774385e-41,3.375541843067275e-13,9.661535150663957e-16,2.4914606161010295e-09,0.0014163284972492749,1.118521891654872e-08,2.185203554023693e-06,0.369704881461545,5.5615277336546865e-37,0.2848574018361514,0.0012110449676274978,0.5883293036797954,1.387849592293486e-13,0.0021586625480559314,2.6622454562127692e-49,0.002330723458207515,2.9450956357204312e-28,6.8411208493155965e-37,5.0843124188939975e-14,1.2080349727437218e-56,0.06822178293599786,0.24156768555764688,0.4319050169981833,0.5343927877113259,3.5185152324812104e-47,0.5950839420974862,0.22801206326292778,0.6151742512275327,0.7685934837520216,4.05951255884969e-30,1.4809226781824816e-07,4.428378087512498e-45,0.7392150801327931,3.940696974127695e-10,2.808432517802375e-38,1.8162680285290986e-08,0.010321283385733022,1.5979379255706416e-07,0.03542602389822026,7.377017836884013e-44,2.986917864613216e-48,0.8492758627146526,0.9844032974467419,0.9921292447477158,7.85335391535777e-11,0.9966323741031525,0.8579103653707775,0.29711826614429643,0.011937902052314231,0.9923937557555502,0.00017823136927213885,2.0407139801362852e-41,0.9166020759724821,0.011623956892288996,0.9909255743209352,1.4384630714935076e-10,0.08977804825245062,3.979455336847108e-06,0.9894584926255919,1.7251761265905604e-09,2.6871764449151153e-10,3.62395605025539e-13,1.0920630651466945e-10,0.9565700180186181,0.9473135926298186,0.9597081695671831,0.008169221895094185,4.252665000686825e-14,1.2290098946278611e-40,1.0293477895332433e-51,3.906921557572319e-09,1.716820247303689e-39,0.9448755947046448,0.9952054375788375,0.8618656120225161,7.54150657256661e-07,0.0006706287192411289,2.1668201771625353e-09,5.290507828532789e-41,0.10184129740099193,7.286334864280712e-49,0.994710060328815,1.6648970186640375e-44,0.9657006441120376,0.9217016234215231,3.9506260984543346e-08,2.1321934563402596e-06,0.9194921966350306,6.99860608270188e-10,0.9226229810426688,3.653250308841939e-49,1.72803069954081e-07,4.09042144068161e-08,7.21469681124184e-09,1.003590785664565e-07,0.9527006210588103,0.9728512490971599,1.0006215600316168e-44,0.23581244741549995,4.13674376657463e-10,0.003820527852802745,2.6876859154967077e-52,0.3625689697495694,4.196636990070791e-33,3.767342170165809e-57,7.47646875505638e-49,1.0681462561039276e-10,4.051569163156605e-08,1.197877918855648e-07,1.2075481772050772e-51,4.2304795268817985e-41,6.073165385800775e-10,4.05309277693301e-10,2.07503878202796e-42,3.6306512368518784e-34,4.761758672916097e-17,0.9723672605674809,0.9253695630523958,0.9948779757926562,1.762883970989269e-09,4.1651075318751054e-34,0.9967667631211532,3.8499523725999484e-05,2.6581652369618246e-40,4.11132810681597e-10,0.964085487106683,8.831206494566312e-10,8.059781005703115e-09,1.1193208975702547e-40,0.06896427001191521,2.6410429636491017e-07,6.565704569469257e-38,0.9959534287924184,3.3672980055988216e-08,3.4627210910890193e-44,1.2281969116675322e-42,2.1362663768767388e-51,2.4390223679469916e-36,1.7856022676981618e-06,0.0016127758055441903,3.556051283686816e-07,0.9479390040452791,3.760124270966844e-09,0.9847067703686148,0.8714113968402796,6.389472353808217e-56,0.22174738445887682,0.00354745952003431,0.004023357114962987,7.835379726208067e-40,4.098516190501309e-09,2.3982272980735427e-08,0.9699047342016092,0.9706963744598404,5.669578924335749e-18,0.9772680161199858,5.01728238669369e-56,0.012236657192873712,3.9562744238525523e-45,3.562495511349336e-07,5.034958644722403e-41,8.55851751798816e-08,0.014332786466972596,0.9136693639811083,0.7420903369148372,4.0671495500367285e-14,3.3015275550249597e-06,0.011751069264787589,0.00011789901683579477,1.059109210153728e-39,0.9976001000589562,0.9966943304722755 -मक,shape,1.8179801831315707e-06,1.887402272080818e-06,1.7935628952556978e-07,9.261119790167044e-07,0.00024748906126341306,9.807440393313636e-09,2.644082554318334e-07,1.3537292011015602e-05,3.010430205152988e-07,1.868362723340553e-06,0.9998908666367307,0.9999851402258545,0.9999998151535165,4.943379049410275e-05,0.000285871397747163,0.0002636055313909117,2.33403018754407e-08,2.9386921653104297e-06,0.0012569076516506393,3.5060645764891025e-07,3.5337806080347944e-09,6.38157217650052e-07,0.47266182224418335,6.462407997624744e-05,1.953729123891167e-07,1.0450648403121743e-06,9.687872349573955e-05,3.209860177823948e-08,5.7356158700117635e-08,0.0015914189661173164,0.06403800127240086,1.5024755908937815e-06,5.187961433889591e-11,3.1757607110779504e-06,2.3978704138871274e-10,7.858492679105893e-07,5.989237260144694e-07,0.00024147232504357298,1.9494740361720816e-12,1.7278732185116348e-10,4.6301529352155196e-07,5.399083673288123e-07,6.788364125498765e-10,1.7051099322639485e-10,3.6710811951374564e-10,3.5590936278038053e-06,1.4824750248666417e-07,0.03798302615842476,0.00017932164434134414,1.394773368033983e-07,0.0006405296448961895,0.0022150571990906913,1.8185153854447415e-06,7.713949866981088e-08,1.0811590877725127e-07,3.576381003975896e-08,0.9864131939657239,0.9991327580503636,0.9999791243650377,0.9999003489764772,0.9997395381001705,0.0030216737189991596,4.086217199375917e-06,0.00018717782503049332,0.023414563256356796,1.8481417182741316e-07,6.93184261721228e-09,1.1261656505741329e-07,2.053170305384353e-07,2.433943663672332e-07,9.534796426465267e-07,0.00012157019836445674,2.4324908171882365e-05,1.8095324734299823e-05,7.79478366102564e-06,7.36459875039795e-05,1.1684485484431491e-07,1.168465270661821e-08,2.2131395103022478e-08,0.00025016298591816786,2.0474653936191016e-05,0.004779704755852918,2.3912228119641737e-06,0.3916941531968695,8.046816591802136e-06,5.556524714583627e-07,0.20265822026338873,0.00038950967978240253,0.0006728946817701848,1.1907067689759784e-05,1.7856081065869158e-07,0.0002722684057498294,0.014762559479016628,0.33329660822140744,0.025644658393314666,0.9999994826154887,2.534096492688645e-10,0.5962142876085471,2.5446449034132052e-06,0.2263748839285035,0.002401067293485075,1.5906603271156472e-09,1.9609962199507893e-08,2.57984918162917e-08,1.0868782751370202e-08,0.0007263634398391389,4.862679978752723e-09,2.151204957477842e-06,6.607453697249266e-06,5.247274958218127e-07,1.4812369413192637e-05,8.209344315776636e-14,6.417937105816489e-05,2.479562951752904e-12,2.2825185123599917e-09,1.2400802404716753e-12,3.339010118217934e-07,2.1996720282359313e-09,9.730174096572057e-05,2.7397225950734945e-05,0.11892864648680745,6.819044647520191e-10,4.1818242259430336e-06,1.3839073872495519e-09,7.377725952478296e-09,0.9965398992109087,5.483316021813976e-10,7.834332427829387e-06,1.25670192565177e-06,5.131372275689767e-08,0.9994042231232975,1.6834979480970977e-06,0.00014039637641654476,2.248092703300571e-05,1.0157365322593175e-07,3.746347423556113e-07,2.4712353867292924e-06,0.00015016759658747345,4.374454152503948e-06,0.0061616915044906285,2.769435945233696e-07,0.0003458159704141375,1.4263402938132554e-09,2.644863081025347e-07,0.9999922296969798,6.751898968972174e-05,0.005763438359672444,2.436729612576113e-08,9.01438837002262e-09,1.026808300602929e-06,5.767869886962652e-07,0.00033554197244928735,0.022641607970803793,0.9996529941823814,7.915390672096419e-08,0.999903730035068,0.9999851402258545,7.708016933229652e-08,3.03601560312905e-08,5.010482356378702e-05,3.36389470299867e-09,1.3485549966967122e-06,4.2900431663143954e-10,2.09318826370337e-09,1.2566027663242832e-08,8.07033584081425e-08,0.00011867653078068874,0.999782310562343,0.9996367786204874,5.949154738331142e-07,4.243371390606308e-05,4.227440193683981e-09,5.071613090515287e-06,0.7105278262424217,2.566745527442304e-06,8.082276811509604e-05,3.390212320063643e-05,4.01398213322512e-06,2.550769024841985e-09,2.7421788673427104e-08,2.7253675433497554e-09,1.0814101376802667e-11,2.789114546365272e-07,0.4002315500644207,0.00013605045373110287,3.3928676769195804e-05,2.630421603835301e-05,0.0014509989942639596,0.9996110208318124,0.9999840658822036,0.9996882742925115,3.2697863219175775e-06,5.148443718069541e-05,5.9174424444325705e-12,3.0927515021485356e-06,0.00031512604189171795,2.3945708870566293e-08,2.1192028766191524e-11,5.48366759342314e-05,2.7801597055825302e-09,0.0003141371833712572,7.3865845639480295e-06,4.7082735806904344e-07,0.0008059440279124284,2.4401414768980195e-08,2.2947238206909116e-14,3.1056519013270075e-08,7.988929628912661e-13,0.0006922352245678268,0.00011320711949689297,3.6578890019925304e-07,1.8190743062425118e-05,1.034209399118948e-05,0.9999951750030036,1.6090286665927553e-06,4.1445073644503363e-07,9.733575072305685e-11,0.0002577968240130678,4.9723402325664894e-05,1.5713415441944993e-07,1.6189780108752706e-06,5.126985330130187e-05,7.88056282150459e-07,1.8384224511683658e-07,8.927628580705439e-05,1.2299008192542355e-08,1.1798354442201087e-07,8.536442655473842e-05,4.179929258739403e-08,0.005372008365449426,1.0281236072952761e-12,1.8347341960740666e-06,2.690035088654499e-05,5.952507605588042e-06,0.1189286464868083,4.3643096403751297e-05,5.87913479590307e-05,0.19803056100023778,2.4874574196998006e-05,7.918089205518365e-06,0.00017738178515841414,3.606336311487275e-05,3.575525587719701e-11,9.876011371313695e-09 -मक,object,1.5691832833775164e-06,2.691969380377625e-06,3.201258980394793e-05,1.4900440317354528e-07,0.01711474799061539,3.49815442007216e-08,5.834369457566991e-07,9.196997751777577e-06,6.121277689590579e-07,7.915431130565956e-07,0.9999283901674771,0.9999939878543257,0.99999931084005,2.18205537071304e-05,0.00018772395292884997,0.0001215880925004171,9.311752899432952e-05,0.005963247462927761,0.9404775267690818,0.009328245584686201,0.0004686236422101995,3.0624049031535075e-05,0.4625322273257454,0.0012537222754546967,2.8980487060082434e-07,0.00013679782774699646,1.6375780169162255e-06,2.538831023586784e-08,1.1849477489680833e-08,0.0010178385601405532,0.015440067077758145,5.0652747725683754e-05,4.753335564789695e-08,1.9798807217413357e-06,2.473904713605291e-09,1.983337692439434e-06,0.00026093399800781477,0.00025163443910369284,4.04680336505119e-08,1.2054031543060465e-07,8.497846043719538e-07,5.110567871909822e-06,5.046940770365669e-09,1.832922689091439e-09,3.889999647301729e-09,6.0257914744084606e-05,1.3021042013655565e-05,0.3019207892777546,7.714245687124518e-05,5.247774406431604e-07,0.0004386356196829174,0.0004902362909423853,3.6048634441810864e-07,1.4030174225168363e-06,1.6640262670677025e-07,8.109563082894388e-06,0.9940397434882903,0.9993724115950906,0.999987440219049,0.999917916651342,0.9998086195141187,0.9001313198691084,0.00015576499369297675,0.00023269780991330932,0.010255804397834481,6.9596152283741285e-06,6.866121081127774e-07,5.0057254260313174e-08,1.0111238781387661e-07,5.756141945680537e-07,2.126908073964338e-05,6.34937426627105e-05,1.5591524785362203e-05,4.094930787357122e-06,7.196993895950332e-06,8.826346745673394e-05,2.5665074996819274e-05,1.0278402958387626e-06,9.183889112435098e-07,0.010461240782893736,1.3813165411652955e-06,0.20071493680616093,1.361514203566536e-05,0.952067539318263,2.8470745681905484e-06,1.1320757751484142e-05,0.013990477155316787,0.0003516843439404225,0.00023750901821042712,2.2952568735687695e-06,6.424996894128442e-08,4.509618237897012e-05,0.5379203392739037,0.8938102455992538,0.7499550133096535,0.9999971339067153,7.815628453806319e-10,0.9624244168932345,7.238608201012473e-05,0.8805786990933515,0.16746180219875484,9.891572098040328e-07,7.126216569074432e-06,6.464013267336791e-07,1.0697030386044588e-05,0.0007813794087826252,9.596812929990554e-08,7.015519244340094e-05,0.00016817443767460933,6.284492163808585e-05,0.00022102413986131988,2.2507347187074457e-10,4.441626002733362e-05,2.26041403298317e-06,0.00010284103059680161,1.0778125913622346e-07,3.8074999304356226e-07,4.100719314032807e-05,0.10654713655885696,6.617058655868755e-05,0.6967773848969634,5.947297012646157e-05,5.35969820257022e-06,1.2828979318175944e-08,0.0015837480265575145,0.9981070122375163,6.173327554602717e-05,6.633006961114535e-06,4.418124598487623e-06,2.461631417187896e-07,0.9990605617706853,1.112182714351226e-06,0.00011343407701281,1.9599847839951246e-06,1.7725422282729887e-07,0.049208892405000516,0.010658991628426432,0.5045113865260636,6.9734870483506935e-06,0.0030037051381326626,1.791168214564702e-07,0.0013543131969221583,3.974662841327704e-08,4.850919867490485e-07,0.9999790385558881,0.0013674846775478746,0.4848063981084117,9.85089447610875e-07,1.291217484787949e-06,3.393670722502664e-05,1.2804431903515983e-06,0.0024430072301395325,0.002522145283675448,0.9997712976397364,4.165604130523015e-08,0.9999426331847008,0.9999938721114514,2.8915824187371274e-08,4.051600146607721e-08,0.655809696523452,3.1206873911016595e-09,0.033103095487592785,7.1180234223014805e-09,3.808618138458292e-09,1.1417217752428245e-08,4.861815226785671e-08,3.214084653583379e-05,0.9998585495120357,0.9996722857262322,1.2882615428844314e-07,0.0018799779967241046,1.699350686263539e-08,4.881289827924533e-05,0.059362192702838414,6.0452990824737466e-05,0.00016161769883376575,4.07278108412798e-06,1.8689485812321886e-06,1.7649159421304978e-09,1.3077112845121407e-08,3.2157899113619938e-09,1.1896647008544623e-10,2.532005504447036e-07,0.4694997328295303,0.000251242647345802,8.297287764229514e-06,9.195211119824172e-06,0.0010236877620387389,0.9997126014344262,0.9999871235578444,0.999718067705333,3.3190017859785686e-06,1.6578085278501796e-05,3.8273074461774006e-07,1.786554250382654e-05,0.00020545753434909444,5.6281938986609055e-08,2.0468635993854652e-06,4.800212407204195e-05,8.590630582408703e-08,0.00011837847312243698,2.5083748307960705e-05,1.7850152654442838e-07,2.0212188587222497e-05,0.002182553304079452,4.3899620450710937e-10,9.669680985175835e-08,8.657376646586819e-10,0.00036391307164516587,4.4464222157526855e-06,1.6348322901667639e-06,5.8812144528070615e-05,3.865293787758478e-06,0.9999914949421342,2.1643688910459715e-07,0.010075209089463442,9.72092210479526e-06,5.825360702053477e-05,0.0029268927569386363,7.810567524231966e-06,0.00015935090000453465,3.848378004052646e-05,1.5139737985470282e-05,4.5564902360857325e-06,0.8206376618569775,0.0013871517841020978,8.186820742530569e-07,0.6392545027245842,6.182384340476168e-08,0.19032761050553368,3.2790279599024986e-09,8.189598267958124e-06,1.5215996050333475e-05,4.77305745049241e-05,0.6913176394621932,9.830986091883833e-05,0.0010382080270766667,0.056410167136890184,2.777517809504973e-05,5.770375663062418e-05,0.00017480386304488533,0.0009082702052938119,4.960690632945758e-07,0.0001342369919773024 -मकई,rgb,2.2556709833857674e-33,5.529694623834426e-18,0.11956329253787702,2.4966896386705477e-46,0.00035532870864675556,3.8221311136756594e-10,5.969292939364743e-33,6.291674399055091e-14,1.3409038722865997e-12,3.171088662537616e-12,0.9942904351734791,0.8787085099728237,0.941503437672138,1.6291684272080047e-18,4.261455177716463e-52,6.851279395311025e-51,0.9419523047949335,0.9642774292742224,0.9489054262049924,0.983603322392077,0.7447873781834976,4.824337972414985e-06,3.781405141405478e-10,6.982561783511184e-09,2.3429878525072132e-07,0.0038097246389284835,1.7199246929784171e-38,6.355817201414952e-07,1.4037558641088957e-48,5.873639499034781e-14,4.157269399230297e-10,0.014455405756225491,1.2809327736937084e-09,5.764279853037529e-11,1.7351154026932512e-41,4.965852616339732e-50,0.9950660957415146,0.0031840211245737376,2.555995342510545e-06,1.1288806133062589e-07,1.1892748964697092e-42,5.814925577173244e-10,1.0134784842356887e-09,9.528896311549394e-16,3.897201706505842e-40,0.35529828631367855,0.017335780453684668,0.12371296277873234,6.1301866044337295e-40,0.0007388938978279497,4.022066656694676e-10,4.270242443211547e-43,7.857109187569611e-13,7.299231954899643e-09,2.1183599093546047e-44,4.1767361369348854e-08,0.16112684138379305,0.2671389611184725,0.9060706703432647,0.9696781870926033,0.9943177613937093,0.49293512144318413,9.834505789091756e-54,6.5989770702399914e-09,5.122373937441154e-13,3.256611691877955e-09,0.0007676880962707439,5.307996552027155e-13,1.1068349450325479e-13,6.449477141076841e-13,3.87617490896349e-09,1.5885800846887567e-43,1.8093353139774385e-41,3.375541843067275e-13,9.661535150663957e-16,2.4914606161010295e-09,0.0014163284972492749,1.118521891654872e-08,2.185203554023693e-06,0.369704881461545,5.5615277336546865e-37,0.2848574018361514,0.0012110449676274978,0.5883293036797954,1.387849592293486e-13,0.0021586625480559314,2.6622454562127692e-49,0.002330723458207515,2.9450956357204312e-28,6.8411208493155965e-37,5.0843124188939975e-14,1.2080349727437218e-56,0.06822178293599786,0.24156768555764688,0.4319050169981833,0.5343927877113259,3.5185152324812104e-47,0.5950839420974862,0.22801206326292778,0.6151742512275327,0.7685934837520216,4.05951255884969e-30,1.4809226781824816e-07,4.428378087512498e-45,0.7392150801327931,3.940696974127695e-10,2.808432517802375e-38,1.8162680285290986e-08,0.010321283385733022,1.5979379255706416e-07,0.03542602389822026,7.377017836884013e-44,2.986917864613216e-48,0.8492758627146526,0.9844032974467419,0.9921292447477158,7.85335391535777e-11,0.9966323741031525,0.8579103653707775,0.29711826614429643,0.011937902052314231,0.9923937557555502,0.00017823136927213885,2.0407139801362852e-41,0.9166020759724821,0.011623956892288996,0.9909255743209352,1.4384630714935076e-10,0.08977804825245062,3.979455336847108e-06,0.9894584926255919,1.7251761265905604e-09,2.6871764449151153e-10,3.62395605025539e-13,1.0920630651466945e-10,0.9565700180186181,0.9473135926298186,0.9597081695671831,0.008169221895094185,4.252665000686825e-14,1.2290098946278611e-40,1.0293477895332433e-51,3.906921557572319e-09,1.716820247303689e-39,0.9448755947046448,0.9952054375788375,0.8618656120225161,7.54150657256661e-07,0.0006706287192411289,2.1668201771625353e-09,5.290507828532789e-41,0.10184129740099193,7.286334864280712e-49,0.994710060328815,1.6648970186640375e-44,0.9657006441120376,0.9217016234215231,3.9506260984543346e-08,2.1321934563402596e-06,0.9194921966350306,6.99860608270188e-10,0.9226229810426688,3.653250308841939e-49,1.72803069954081e-07,4.09042144068161e-08,7.21469681124184e-09,1.003590785664565e-07,0.9527006210588103,0.9728512490971599,1.0006215600316168e-44,0.23581244741549995,4.13674376657463e-10,0.003820527852802745,2.6876859154967077e-52,0.3625689697495694,4.196636990070791e-33,3.767342170165809e-57,7.47646875505638e-49,1.0681462561039276e-10,4.051569163156605e-08,1.197877918855648e-07,1.2075481772050772e-51,4.2304795268817985e-41,6.073165385800775e-10,4.05309277693301e-10,2.07503878202796e-42,3.6306512368518784e-34,4.761758672916097e-17,0.9723672605674809,0.9253695630523958,0.9948779757926562,1.762883970989269e-09,4.1651075318751054e-34,0.9967667631211532,3.8499523725999484e-05,2.6581652369618246e-40,4.11132810681597e-10,0.964085487106683,8.831206494566312e-10,8.059781005703115e-09,1.1193208975702547e-40,0.06896427001191521,2.6410429636491017e-07,6.565704569469257e-38,0.9959534287924184,3.3672980055988216e-08,3.4627210910890193e-44,1.2281969116675322e-42,2.1362663768767388e-51,2.4390223679469916e-36,1.7856022676981618e-06,0.0016127758055441903,3.556051283686816e-07,0.9479390040452791,3.760124270966844e-09,0.9847067703686148,0.8714113968402796,6.389472353808217e-56,0.22174738445887682,0.00354745952003431,0.004023357114962987,7.835379726208067e-40,4.098516190501309e-09,2.3982272980735427e-08,0.9699047342016092,0.9706963744598404,5.669578924335749e-18,0.9772680161199858,5.01728238669369e-56,0.012236657192873712,3.9562744238525523e-45,3.562495511349336e-07,5.034958644722403e-41,8.55851751798816e-08,0.014332786466972596,0.9136693639811083,0.7420903369148372,4.0671495500367285e-14,3.3015275550249597e-06,0.011751069264787589,0.00011789901683579477,1.059109210153728e-39,0.9976001000589562,0.9966943304722755 -मकई,shape,1.8179801831315707e-06,1.887402272080818e-06,1.7935628952556978e-07,9.261119790167044e-07,0.00024748906126341306,9.807440393313636e-09,2.644082554318334e-07,1.3537292011015602e-05,3.010430205152988e-07,1.868362723340553e-06,0.9998908666367307,0.9999851402258545,0.9999998151535165,4.943379049410275e-05,0.000285871397747163,0.0002636055313909117,2.33403018754407e-08,2.9386921653104297e-06,0.0012569076516506393,3.5060645764891025e-07,3.5337806080347944e-09,6.38157217650052e-07,0.47266182224418335,6.462407997624744e-05,1.953729123891167e-07,1.0450648403121743e-06,9.687872349573955e-05,3.209860177823948e-08,5.7356158700117635e-08,0.0015914189661173164,0.06403800127240086,1.5024755908937815e-06,5.187961433889591e-11,3.1757607110779504e-06,2.3978704138871274e-10,7.858492679105893e-07,5.989237260144694e-07,0.00024147232504357298,1.9494740361720816e-12,1.7278732185116348e-10,4.6301529352155196e-07,5.399083673288123e-07,6.788364125498765e-10,1.7051099322639485e-10,3.6710811951374564e-10,3.5590936278038053e-06,1.4824750248666417e-07,0.03798302615842476,0.00017932164434134414,1.394773368033983e-07,0.0006405296448961895,0.0022150571990906913,1.8185153854447415e-06,7.713949866981088e-08,1.0811590877725127e-07,3.576381003975896e-08,0.9864131939657239,0.9991327580503636,0.9999791243650377,0.9999003489764772,0.9997395381001705,0.0030216737189991596,4.086217199375917e-06,0.00018717782503049332,0.023414563256356796,1.8481417182741316e-07,6.93184261721228e-09,1.1261656505741329e-07,2.053170305384353e-07,2.433943663672332e-07,9.534796426465267e-07,0.00012157019836445674,2.4324908171882365e-05,1.8095324734299823e-05,7.79478366102564e-06,7.36459875039795e-05,1.1684485484431491e-07,1.168465270661821e-08,2.2131395103022478e-08,0.00025016298591816786,2.0474653936191016e-05,0.004779704755852918,2.3912228119641737e-06,0.3916941531968695,8.046816591802136e-06,5.556524714583627e-07,0.20265822026338873,0.00038950967978240253,0.0006728946817701848,1.1907067689759784e-05,1.7856081065869158e-07,0.0002722684057498294,0.014762559479016628,0.33329660822140744,0.025644658393314666,0.9999994826154887,2.534096492688645e-10,0.5962142876085471,2.5446449034132052e-06,0.2263748839285035,0.002401067293485075,1.5906603271156472e-09,1.9609962199507893e-08,2.57984918162917e-08,1.0868782751370202e-08,0.0007263634398391389,4.862679978752723e-09,2.151204957477842e-06,6.607453697249266e-06,5.247274958218127e-07,1.4812369413192637e-05,8.209344315776636e-14,6.417937105816489e-05,2.479562951752904e-12,2.2825185123599917e-09,1.2400802404716753e-12,3.339010118217934e-07,2.1996720282359313e-09,9.730174096572057e-05,2.7397225950734945e-05,0.11892864648680745,6.819044647520191e-10,4.1818242259430336e-06,1.3839073872495519e-09,7.377725952478296e-09,0.9965398992109087,5.483316021813976e-10,7.834332427829387e-06,1.25670192565177e-06,5.131372275689767e-08,0.9994042231232975,1.6834979480970977e-06,0.00014039637641654476,2.248092703300571e-05,1.0157365322593175e-07,3.746347423556113e-07,2.4712353867292924e-06,0.00015016759658747345,4.374454152503948e-06,0.0061616915044906285,2.769435945233696e-07,0.0003458159704141375,1.4263402938132554e-09,2.644863081025347e-07,0.9999922296969798,6.751898968972174e-05,0.005763438359672444,2.436729612576113e-08,9.01438837002262e-09,1.026808300602929e-06,5.767869886962652e-07,0.00033554197244928735,0.022641607970803793,0.9996529941823814,7.915390672096419e-08,0.999903730035068,0.9999851402258545,7.708016933229652e-08,3.03601560312905e-08,5.010482356378702e-05,3.36389470299867e-09,1.3485549966967122e-06,4.2900431663143954e-10,2.09318826370337e-09,1.2566027663242832e-08,8.07033584081425e-08,0.00011867653078068874,0.999782310562343,0.9996367786204874,5.949154738331142e-07,4.243371390606308e-05,4.227440193683981e-09,5.071613090515287e-06,0.7105278262424217,2.566745527442304e-06,8.082276811509604e-05,3.390212320063643e-05,4.01398213322512e-06,2.550769024841985e-09,2.7421788673427104e-08,2.7253675433497554e-09,1.0814101376802667e-11,2.789114546365272e-07,0.4002315500644207,0.00013605045373110287,3.3928676769195804e-05,2.630421603835301e-05,0.0014509989942639596,0.9996110208318124,0.9999840658822036,0.9996882742925115,3.2697863219175775e-06,5.148443718069541e-05,5.9174424444325705e-12,3.0927515021485356e-06,0.00031512604189171795,2.3945708870566293e-08,2.1192028766191524e-11,5.48366759342314e-05,2.7801597055825302e-09,0.0003141371833712572,7.3865845639480295e-06,4.7082735806904344e-07,0.0008059440279124284,2.4401414768980195e-08,2.2947238206909116e-14,3.1056519013270075e-08,7.988929628912661e-13,0.0006922352245678268,0.00011320711949689297,3.6578890019925304e-07,1.8190743062425118e-05,1.034209399118948e-05,0.9999951750030036,1.6090286665927553e-06,4.1445073644503363e-07,9.733575072305685e-11,0.0002577968240130678,4.9723402325664894e-05,1.5713415441944993e-07,1.6189780108752706e-06,5.126985330130187e-05,7.88056282150459e-07,1.8384224511683658e-07,8.927628580705439e-05,1.2299008192542355e-08,1.1798354442201087e-07,8.536442655473842e-05,4.179929258739403e-08,0.005372008365449426,1.0281236072952761e-12,1.8347341960740666e-06,2.690035088654499e-05,5.952507605588042e-06,0.1189286464868083,4.3643096403751297e-05,5.87913479590307e-05,0.19803056100023778,2.4874574196998006e-05,7.918089205518365e-06,0.00017738178515841414,3.606336311487275e-05,3.575525587719701e-11,9.876011371313695e-09 -मकई,object,1.5691832833775164e-06,2.691969380377625e-06,3.201258980394793e-05,1.4900440317354528e-07,0.01711474799061539,3.49815442007216e-08,5.834369457566991e-07,9.196997751777577e-06,6.121277689590579e-07,7.915431130565956e-07,0.9999283901674771,0.9999939878543257,0.99999931084005,2.18205537071304e-05,0.00018772395292884997,0.0001215880925004171,9.311752899432952e-05,0.005963247462927761,0.9404775267690818,0.009328245584686201,0.0004686236422101995,3.0624049031535075e-05,0.4625322273257454,0.0012537222754546967,2.8980487060082434e-07,0.00013679782774699646,1.6375780169162255e-06,2.538831023586784e-08,1.1849477489680833e-08,0.0010178385601405532,0.015440067077758145,5.0652747725683754e-05,4.753335564789695e-08,1.9798807217413357e-06,2.473904713605291e-09,1.983337692439434e-06,0.00026093399800781477,0.00025163443910369284,4.04680336505119e-08,1.2054031543060465e-07,8.497846043719538e-07,5.110567871909822e-06,5.046940770365669e-09,1.832922689091439e-09,3.889999647301729e-09,6.0257914744084606e-05,1.3021042013655565e-05,0.3019207892777546,7.714245687124518e-05,5.247774406431604e-07,0.0004386356196829174,0.0004902362909423853,3.6048634441810864e-07,1.4030174225168363e-06,1.6640262670677025e-07,8.109563082894388e-06,0.9940397434882903,0.9993724115950906,0.999987440219049,0.999917916651342,0.9998086195141187,0.9001313198691084,0.00015576499369297675,0.00023269780991330932,0.010255804397834481,6.9596152283741285e-06,6.866121081127774e-07,5.0057254260313174e-08,1.0111238781387661e-07,5.756141945680537e-07,2.126908073964338e-05,6.34937426627105e-05,1.5591524785362203e-05,4.094930787357122e-06,7.196993895950332e-06,8.826346745673394e-05,2.5665074996819274e-05,1.0278402958387626e-06,9.183889112435098e-07,0.010461240782893736,1.3813165411652955e-06,0.20071493680616093,1.361514203566536e-05,0.952067539318263,2.8470745681905484e-06,1.1320757751484142e-05,0.013990477155316787,0.0003516843439404225,0.00023750901821042712,2.2952568735687695e-06,6.424996894128442e-08,4.509618237897012e-05,0.5379203392739037,0.8938102455992538,0.7499550133096535,0.9999971339067153,7.815628453806319e-10,0.9624244168932345,7.238608201012473e-05,0.8805786990933515,0.16746180219875484,9.891572098040328e-07,7.126216569074432e-06,6.464013267336791e-07,1.0697030386044588e-05,0.0007813794087826252,9.596812929990554e-08,7.015519244340094e-05,0.00016817443767460933,6.284492163808585e-05,0.00022102413986131988,2.2507347187074457e-10,4.441626002733362e-05,2.26041403298317e-06,0.00010284103059680161,1.0778125913622346e-07,3.8074999304356226e-07,4.100719314032807e-05,0.10654713655885696,6.617058655868755e-05,0.6967773848969634,5.947297012646157e-05,5.35969820257022e-06,1.2828979318175944e-08,0.0015837480265575145,0.9981070122375163,6.173327554602717e-05,6.633006961114535e-06,4.418124598487623e-06,2.461631417187896e-07,0.9990605617706853,1.112182714351226e-06,0.00011343407701281,1.9599847839951246e-06,1.7725422282729887e-07,0.049208892405000516,0.010658991628426432,0.5045113865260636,6.9734870483506935e-06,0.0030037051381326626,1.791168214564702e-07,0.0013543131969221583,3.974662841327704e-08,4.850919867490485e-07,0.9999790385558881,0.0013674846775478746,0.4848063981084117,9.85089447610875e-07,1.291217484787949e-06,3.393670722502664e-05,1.2804431903515983e-06,0.0024430072301395325,0.002522145283675448,0.9997712976397364,4.165604130523015e-08,0.9999426331847008,0.9999938721114514,2.8915824187371274e-08,4.051600146607721e-08,0.655809696523452,3.1206873911016595e-09,0.033103095487592785,7.1180234223014805e-09,3.808618138458292e-09,1.1417217752428245e-08,4.861815226785671e-08,3.214084653583379e-05,0.9998585495120357,0.9996722857262322,1.2882615428844314e-07,0.0018799779967241046,1.699350686263539e-08,4.881289827924533e-05,0.059362192702838414,6.0452990824737466e-05,0.00016161769883376575,4.07278108412798e-06,1.8689485812321886e-06,1.7649159421304978e-09,1.3077112845121407e-08,3.2157899113619938e-09,1.1896647008544623e-10,2.532005504447036e-07,0.4694997328295303,0.000251242647345802,8.297287764229514e-06,9.195211119824172e-06,0.0010236877620387389,0.9997126014344262,0.9999871235578444,0.999718067705333,3.3190017859785686e-06,1.6578085278501796e-05,3.8273074461774006e-07,1.786554250382654e-05,0.00020545753434909444,5.6281938986609055e-08,2.0468635993854652e-06,4.800212407204195e-05,8.590630582408703e-08,0.00011837847312243698,2.5083748307960705e-05,1.7850152654442838e-07,2.0212188587222497e-05,0.002182553304079452,4.3899620450710937e-10,9.669680985175835e-08,8.657376646586819e-10,0.00036391307164516587,4.4464222157526855e-06,1.6348322901667639e-06,5.8812144528070615e-05,3.865293787758478e-06,0.9999914949421342,2.1643688910459715e-07,0.010075209089463442,9.72092210479526e-06,5.825360702053477e-05,0.0029268927569386363,7.810567524231966e-06,0.00015935090000453465,3.848378004052646e-05,1.5139737985470282e-05,4.5564902360857325e-06,0.8206376618569775,0.0013871517841020978,8.186820742530569e-07,0.6392545027245842,6.182384340476168e-08,0.19032761050553368,3.2790279599024986e-09,8.189598267958124e-06,1.5215996050333475e-05,4.77305745049241e-05,0.6913176394621932,9.830986091883833e-05,0.0010382080270766667,0.056410167136890184,2.777517809504973e-05,5.770375663062418e-05,0.00017480386304488533,0.0009082702052938119,4.960690632945758e-07,0.0001342369919773024 -मक्क,rgb,2.2556709833857674e-33,5.529694623834426e-18,0.11956329253787702,2.4966896386705477e-46,0.00035532870864675556,3.8221311136756594e-10,5.969292939364743e-33,6.291674399055091e-14,1.3409038722865997e-12,3.171088662537616e-12,0.9942904351734791,0.8787085099728237,0.941503437672138,1.6291684272080047e-18,4.261455177716463e-52,6.851279395311025e-51,0.9419523047949335,0.9642774292742224,0.9489054262049924,0.983603322392077,0.7447873781834976,4.824337972414985e-06,3.781405141405478e-10,6.982561783511184e-09,2.3429878525072132e-07,0.0038097246389284835,1.7199246929784171e-38,6.355817201414952e-07,1.4037558641088957e-48,5.873639499034781e-14,4.157269399230297e-10,0.014455405756225491,1.2809327736937084e-09,5.764279853037529e-11,1.7351154026932512e-41,4.965852616339732e-50,0.9950660957415146,0.0031840211245737376,2.555995342510545e-06,1.1288806133062589e-07,1.1892748964697092e-42,5.814925577173244e-10,1.0134784842356887e-09,9.528896311549394e-16,3.897201706505842e-40,0.35529828631367855,0.017335780453684668,0.12371296277873234,6.1301866044337295e-40,0.0007388938978279497,4.022066656694676e-10,4.270242443211547e-43,7.857109187569611e-13,7.299231954899643e-09,2.1183599093546047e-44,4.1767361369348854e-08,0.16112684138379305,0.2671389611184725,0.9060706703432647,0.9696781870926033,0.9943177613937093,0.49293512144318413,9.834505789091756e-54,6.5989770702399914e-09,5.122373937441154e-13,3.256611691877955e-09,0.0007676880962707439,5.307996552027155e-13,1.1068349450325479e-13,6.449477141076841e-13,3.87617490896349e-09,1.5885800846887567e-43,1.8093353139774385e-41,3.375541843067275e-13,9.661535150663957e-16,2.4914606161010295e-09,0.0014163284972492749,1.118521891654872e-08,2.185203554023693e-06,0.369704881461545,5.5615277336546865e-37,0.2848574018361514,0.0012110449676274978,0.5883293036797954,1.387849592293486e-13,0.0021586625480559314,2.6622454562127692e-49,0.002330723458207515,2.9450956357204312e-28,6.8411208493155965e-37,5.0843124188939975e-14,1.2080349727437218e-56,0.06822178293599786,0.24156768555764688,0.4319050169981833,0.5343927877113259,3.5185152324812104e-47,0.5950839420974862,0.22801206326292778,0.6151742512275327,0.7685934837520216,4.05951255884969e-30,1.4809226781824816e-07,4.428378087512498e-45,0.7392150801327931,3.940696974127695e-10,2.808432517802375e-38,1.8162680285290986e-08,0.010321283385733022,1.5979379255706416e-07,0.03542602389822026,7.377017836884013e-44,2.986917864613216e-48,0.8492758627146526,0.9844032974467419,0.9921292447477158,7.85335391535777e-11,0.9966323741031525,0.8579103653707775,0.29711826614429643,0.011937902052314231,0.9923937557555502,0.00017823136927213885,2.0407139801362852e-41,0.9166020759724821,0.011623956892288996,0.9909255743209352,1.4384630714935076e-10,0.08977804825245062,3.979455336847108e-06,0.9894584926255919,1.7251761265905604e-09,2.6871764449151153e-10,3.62395605025539e-13,1.0920630651466945e-10,0.9565700180186181,0.9473135926298186,0.9597081695671831,0.008169221895094185,4.252665000686825e-14,1.2290098946278611e-40,1.0293477895332433e-51,3.906921557572319e-09,1.716820247303689e-39,0.9448755947046448,0.9952054375788375,0.8618656120225161,7.54150657256661e-07,0.0006706287192411289,2.1668201771625353e-09,5.290507828532789e-41,0.10184129740099193,7.286334864280712e-49,0.994710060328815,1.6648970186640375e-44,0.9657006441120376,0.9217016234215231,3.9506260984543346e-08,2.1321934563402596e-06,0.9194921966350306,6.99860608270188e-10,0.9226229810426688,3.653250308841939e-49,1.72803069954081e-07,4.09042144068161e-08,7.21469681124184e-09,1.003590785664565e-07,0.9527006210588103,0.9728512490971599,1.0006215600316168e-44,0.23581244741549995,4.13674376657463e-10,0.003820527852802745,2.6876859154967077e-52,0.3625689697495694,4.196636990070791e-33,3.767342170165809e-57,7.47646875505638e-49,1.0681462561039276e-10,4.051569163156605e-08,1.197877918855648e-07,1.2075481772050772e-51,4.2304795268817985e-41,6.073165385800775e-10,4.05309277693301e-10,2.07503878202796e-42,3.6306512368518784e-34,4.761758672916097e-17,0.9723672605674809,0.9253695630523958,0.9948779757926562,1.762883970989269e-09,4.1651075318751054e-34,0.9967667631211532,3.8499523725999484e-05,2.6581652369618246e-40,4.11132810681597e-10,0.964085487106683,8.831206494566312e-10,8.059781005703115e-09,1.1193208975702547e-40,0.06896427001191521,2.6410429636491017e-07,6.565704569469257e-38,0.9959534287924184,3.3672980055988216e-08,3.4627210910890193e-44,1.2281969116675322e-42,2.1362663768767388e-51,2.4390223679469916e-36,1.7856022676981618e-06,0.0016127758055441903,3.556051283686816e-07,0.9479390040452791,3.760124270966844e-09,0.9847067703686148,0.8714113968402796,6.389472353808217e-56,0.22174738445887682,0.00354745952003431,0.004023357114962987,7.835379726208067e-40,4.098516190501309e-09,2.3982272980735427e-08,0.9699047342016092,0.9706963744598404,5.669578924335749e-18,0.9772680161199858,5.01728238669369e-56,0.012236657192873712,3.9562744238525523e-45,3.562495511349336e-07,5.034958644722403e-41,8.55851751798816e-08,0.014332786466972596,0.9136693639811083,0.7420903369148372,4.0671495500367285e-14,3.3015275550249597e-06,0.011751069264787589,0.00011789901683579477,1.059109210153728e-39,0.9976001000589562,0.9966943304722755 -मक्क,shape,1.8179801831315707e-06,1.887402272080818e-06,1.7935628952556978e-07,9.261119790167044e-07,0.00024748906126341306,9.807440393313636e-09,2.644082554318334e-07,1.3537292011015602e-05,3.010430205152988e-07,1.868362723340553e-06,0.9998908666367307,0.9999851402258545,0.9999998151535165,4.943379049410275e-05,0.000285871397747163,0.0002636055313909117,2.33403018754407e-08,2.9386921653104297e-06,0.0012569076516506393,3.5060645764891025e-07,3.5337806080347944e-09,6.38157217650052e-07,0.47266182224418335,6.462407997624744e-05,1.953729123891167e-07,1.0450648403121743e-06,9.687872349573955e-05,3.209860177823948e-08,5.7356158700117635e-08,0.0015914189661173164,0.06403800127240086,1.5024755908937815e-06,5.187961433889591e-11,3.1757607110779504e-06,2.3978704138871274e-10,7.858492679105893e-07,5.989237260144694e-07,0.00024147232504357298,1.9494740361720816e-12,1.7278732185116348e-10,4.6301529352155196e-07,5.399083673288123e-07,6.788364125498765e-10,1.7051099322639485e-10,3.6710811951374564e-10,3.5590936278038053e-06,1.4824750248666417e-07,0.03798302615842476,0.00017932164434134414,1.394773368033983e-07,0.0006405296448961895,0.0022150571990906913,1.8185153854447415e-06,7.713949866981088e-08,1.0811590877725127e-07,3.576381003975896e-08,0.9864131939657239,0.9991327580503636,0.9999791243650377,0.9999003489764772,0.9997395381001705,0.0030216737189991596,4.086217199375917e-06,0.00018717782503049332,0.023414563256356796,1.8481417182741316e-07,6.93184261721228e-09,1.1261656505741329e-07,2.053170305384353e-07,2.433943663672332e-07,9.534796426465267e-07,0.00012157019836445674,2.4324908171882365e-05,1.8095324734299823e-05,7.79478366102564e-06,7.36459875039795e-05,1.1684485484431491e-07,1.168465270661821e-08,2.2131395103022478e-08,0.00025016298591816786,2.0474653936191016e-05,0.004779704755852918,2.3912228119641737e-06,0.3916941531968695,8.046816591802136e-06,5.556524714583627e-07,0.20265822026338873,0.00038950967978240253,0.0006728946817701848,1.1907067689759784e-05,1.7856081065869158e-07,0.0002722684057498294,0.014762559479016628,0.33329660822140744,0.025644658393314666,0.9999994826154887,2.534096492688645e-10,0.5962142876085471,2.5446449034132052e-06,0.2263748839285035,0.002401067293485075,1.5906603271156472e-09,1.9609962199507893e-08,2.57984918162917e-08,1.0868782751370202e-08,0.0007263634398391389,4.862679978752723e-09,2.151204957477842e-06,6.607453697249266e-06,5.247274958218127e-07,1.4812369413192637e-05,8.209344315776636e-14,6.417937105816489e-05,2.479562951752904e-12,2.2825185123599917e-09,1.2400802404716753e-12,3.339010118217934e-07,2.1996720282359313e-09,9.730174096572057e-05,2.7397225950734945e-05,0.11892864648680745,6.819044647520191e-10,4.1818242259430336e-06,1.3839073872495519e-09,7.377725952478296e-09,0.9965398992109087,5.483316021813976e-10,7.834332427829387e-06,1.25670192565177e-06,5.131372275689767e-08,0.9994042231232975,1.6834979480970977e-06,0.00014039637641654476,2.248092703300571e-05,1.0157365322593175e-07,3.746347423556113e-07,2.4712353867292924e-06,0.00015016759658747345,4.374454152503948e-06,0.0061616915044906285,2.769435945233696e-07,0.0003458159704141375,1.4263402938132554e-09,2.644863081025347e-07,0.9999922296969798,6.751898968972174e-05,0.005763438359672444,2.436729612576113e-08,9.01438837002262e-09,1.026808300602929e-06,5.767869886962652e-07,0.00033554197244928735,0.022641607970803793,0.9996529941823814,7.915390672096419e-08,0.999903730035068,0.9999851402258545,7.708016933229652e-08,3.03601560312905e-08,5.010482356378702e-05,3.36389470299867e-09,1.3485549966967122e-06,4.2900431663143954e-10,2.09318826370337e-09,1.2566027663242832e-08,8.07033584081425e-08,0.00011867653078068874,0.999782310562343,0.9996367786204874,5.949154738331142e-07,4.243371390606308e-05,4.227440193683981e-09,5.071613090515287e-06,0.7105278262424217,2.566745527442304e-06,8.082276811509604e-05,3.390212320063643e-05,4.01398213322512e-06,2.550769024841985e-09,2.7421788673427104e-08,2.7253675433497554e-09,1.0814101376802667e-11,2.789114546365272e-07,0.4002315500644207,0.00013605045373110287,3.3928676769195804e-05,2.630421603835301e-05,0.0014509989942639596,0.9996110208318124,0.9999840658822036,0.9996882742925115,3.2697863219175775e-06,5.148443718069541e-05,5.9174424444325705e-12,3.0927515021485356e-06,0.00031512604189171795,2.3945708870566293e-08,2.1192028766191524e-11,5.48366759342314e-05,2.7801597055825302e-09,0.0003141371833712572,7.3865845639480295e-06,4.7082735806904344e-07,0.0008059440279124284,2.4401414768980195e-08,2.2947238206909116e-14,3.1056519013270075e-08,7.988929628912661e-13,0.0006922352245678268,0.00011320711949689297,3.6578890019925304e-07,1.8190743062425118e-05,1.034209399118948e-05,0.9999951750030036,1.6090286665927553e-06,4.1445073644503363e-07,9.733575072305685e-11,0.0002577968240130678,4.9723402325664894e-05,1.5713415441944993e-07,1.6189780108752706e-06,5.126985330130187e-05,7.88056282150459e-07,1.8384224511683658e-07,8.927628580705439e-05,1.2299008192542355e-08,1.1798354442201087e-07,8.536442655473842e-05,4.179929258739403e-08,0.005372008365449426,1.0281236072952761e-12,1.8347341960740666e-06,2.690035088654499e-05,5.952507605588042e-06,0.1189286464868083,4.3643096403751297e-05,5.87913479590307e-05,0.19803056100023778,2.4874574196998006e-05,7.918089205518365e-06,0.00017738178515841414,3.606336311487275e-05,3.575525587719701e-11,9.876011371313695e-09 -मक्क,object,1.5691832833775164e-06,2.691969380377625e-06,3.201258980394793e-05,1.4900440317354528e-07,0.01711474799061539,3.49815442007216e-08,5.834369457566991e-07,9.196997751777577e-06,6.121277689590579e-07,7.915431130565956e-07,0.9999283901674771,0.9999939878543257,0.99999931084005,2.18205537071304e-05,0.00018772395292884997,0.0001215880925004171,9.311752899432952e-05,0.005963247462927761,0.9404775267690818,0.009328245584686201,0.0004686236422101995,3.0624049031535075e-05,0.4625322273257454,0.0012537222754546967,2.8980487060082434e-07,0.00013679782774699646,1.6375780169162255e-06,2.538831023586784e-08,1.1849477489680833e-08,0.0010178385601405532,0.015440067077758145,5.0652747725683754e-05,4.753335564789695e-08,1.9798807217413357e-06,2.473904713605291e-09,1.983337692439434e-06,0.00026093399800781477,0.00025163443910369284,4.04680336505119e-08,1.2054031543060465e-07,8.497846043719538e-07,5.110567871909822e-06,5.046940770365669e-09,1.832922689091439e-09,3.889999647301729e-09,6.0257914744084606e-05,1.3021042013655565e-05,0.3019207892777546,7.714245687124518e-05,5.247774406431604e-07,0.0004386356196829174,0.0004902362909423853,3.6048634441810864e-07,1.4030174225168363e-06,1.6640262670677025e-07,8.109563082894388e-06,0.9940397434882903,0.9993724115950906,0.999987440219049,0.999917916651342,0.9998086195141187,0.9001313198691084,0.00015576499369297675,0.00023269780991330932,0.010255804397834481,6.9596152283741285e-06,6.866121081127774e-07,5.0057254260313174e-08,1.0111238781387661e-07,5.756141945680537e-07,2.126908073964338e-05,6.34937426627105e-05,1.5591524785362203e-05,4.094930787357122e-06,7.196993895950332e-06,8.826346745673394e-05,2.5665074996819274e-05,1.0278402958387626e-06,9.183889112435098e-07,0.010461240782893736,1.3813165411652955e-06,0.20071493680616093,1.361514203566536e-05,0.952067539318263,2.8470745681905484e-06,1.1320757751484142e-05,0.013990477155316787,0.0003516843439404225,0.00023750901821042712,2.2952568735687695e-06,6.424996894128442e-08,4.509618237897012e-05,0.5379203392739037,0.8938102455992538,0.7499550133096535,0.9999971339067153,7.815628453806319e-10,0.9624244168932345,7.238608201012473e-05,0.8805786990933515,0.16746180219875484,9.891572098040328e-07,7.126216569074432e-06,6.464013267336791e-07,1.0697030386044588e-05,0.0007813794087826252,9.596812929990554e-08,7.015519244340094e-05,0.00016817443767460933,6.284492163808585e-05,0.00022102413986131988,2.2507347187074457e-10,4.441626002733362e-05,2.26041403298317e-06,0.00010284103059680161,1.0778125913622346e-07,3.8074999304356226e-07,4.100719314032807e-05,0.10654713655885696,6.617058655868755e-05,0.6967773848969634,5.947297012646157e-05,5.35969820257022e-06,1.2828979318175944e-08,0.0015837480265575145,0.9981070122375163,6.173327554602717e-05,6.633006961114535e-06,4.418124598487623e-06,2.461631417187896e-07,0.9990605617706853,1.112182714351226e-06,0.00011343407701281,1.9599847839951246e-06,1.7725422282729887e-07,0.049208892405000516,0.010658991628426432,0.5045113865260636,6.9734870483506935e-06,0.0030037051381326626,1.791168214564702e-07,0.0013543131969221583,3.974662841327704e-08,4.850919867490485e-07,0.9999790385558881,0.0013674846775478746,0.4848063981084117,9.85089447610875e-07,1.291217484787949e-06,3.393670722502664e-05,1.2804431903515983e-06,0.0024430072301395325,0.002522145283675448,0.9997712976397364,4.165604130523015e-08,0.9999426331847008,0.9999938721114514,2.8915824187371274e-08,4.051600146607721e-08,0.655809696523452,3.1206873911016595e-09,0.033103095487592785,7.1180234223014805e-09,3.808618138458292e-09,1.1417217752428245e-08,4.861815226785671e-08,3.214084653583379e-05,0.9998585495120357,0.9996722857262322,1.2882615428844314e-07,0.0018799779967241046,1.699350686263539e-08,4.881289827924533e-05,0.059362192702838414,6.0452990824737466e-05,0.00016161769883376575,4.07278108412798e-06,1.8689485812321886e-06,1.7649159421304978e-09,1.3077112845121407e-08,3.2157899113619938e-09,1.1896647008544623e-10,2.532005504447036e-07,0.4694997328295303,0.000251242647345802,8.297287764229514e-06,9.195211119824172e-06,0.0010236877620387389,0.9997126014344262,0.9999871235578444,0.999718067705333,3.3190017859785686e-06,1.6578085278501796e-05,3.8273074461774006e-07,1.786554250382654e-05,0.00020545753434909444,5.6281938986609055e-08,2.0468635993854652e-06,4.800212407204195e-05,8.590630582408703e-08,0.00011837847312243698,2.5083748307960705e-05,1.7850152654442838e-07,2.0212188587222497e-05,0.002182553304079452,4.3899620450710937e-10,9.669680985175835e-08,8.657376646586819e-10,0.00036391307164516587,4.4464222157526855e-06,1.6348322901667639e-06,5.8812144528070615e-05,3.865293787758478e-06,0.9999914949421342,2.1643688910459715e-07,0.010075209089463442,9.72092210479526e-06,5.825360702053477e-05,0.0029268927569386363,7.810567524231966e-06,0.00015935090000453465,3.848378004052646e-05,1.5139737985470282e-05,4.5564902360857325e-06,0.8206376618569775,0.0013871517841020978,8.186820742530569e-07,0.6392545027245842,6.182384340476168e-08,0.19032761050553368,3.2790279599024986e-09,8.189598267958124e-06,1.5215996050333475e-05,4.77305745049241e-05,0.6913176394621932,9.830986091883833e-05,0.0010382080270766667,0.056410167136890184,2.777517809504973e-05,5.770375663062418e-05,0.00017480386304488533,0.0009082702052938119,4.960690632945758e-07,0.0001342369919773024 -मेहराब,rgb,1.0,0.9999996908414926,0.004992267258634039,1.0,0.42316337033162954,0.8484330580086941,1.0,0.999854064970474,0.9987204191895613,0.9983502256009378,6.194857433589904e-06,0.00012628315402406058,6.264180651640577e-05,0.9999998896841074,1.0,1.0,9.143922525906772e-05,5.987685345618595e-05,7.70690355939537e-05,1.4253764288888077e-06,0.00020074586308637632,0.9224863802045196,0.8610750649771086,0.9997331939745191,0.04948392205698287,0.18798158429666387,1.0,0.02730354539613089,1.0,0.999949600452864,0.8410821120986431,0.026308795449280577,0.7301241389965549,0.9968152303195943,1.0,1.0,8.349338245464472e-07,0.050963120931163425,0.014823003198063246,0.1344917821836321,1.0,0.975277464241769,0.7448851617042165,0.999998064223903,1.0,0.0009017426656640634,0.02069577505384987,0.004858657213946195,1.0,0.0017918410707371433,0.8461230702840664,1.0,0.9992552571465741,0.4912187630437676,1.0,0.21621251444002076,4.0860035562291784e-05,3.2810188586531156e-05,9.675415167027525e-05,3.332625976011461e-05,6.329172692563175e-06,0.00044599831507379623,1.0,0.8999870688777997,0.9998172989653824,0.9997472699831254,0.41828491094393844,0.9995022298956224,0.9997937137310391,0.9992127633179096,0.5818819767907082,1.0,1.0,0.9996789099751636,0.999978928661561,0.9296997948746725,0.33846872049633103,0.999470521542995,0.9605347268579961,2.7629134444295573e-05,1.0,2.6066813260082057e-05,0.012884848911980275,1.9615977418324003e-05,0.9997425811523345,0.01136120250003417,1.0,0.07507948284312446,1.0,1.0,0.99988122123946,1.0,6.307167281476304e-05,4.2321930206105025e-05,2.5821246204646472e-05,2.2084930094358652e-05,1.0,1.942634614311326e-05,3.084731250419517e-05,1.7202233734240915e-05,1.315486099642102e-05,1.0,0.11760163987858131,1.0,1.6659203227202615e-05,0.843675376994438,1.0,0.9994209401362192,0.09245136278141232,0.11716876163167725,0.028233105044054265,1.0,1.0,0.0001263174044471713,1.6270277315195626e-05,8.03642457258381e-06,0.9920515716236782,2.0879837639232242e-06,0.00015292545503533297,0.0027843051346672994,0.031963568366559274,5.682054662525057e-06,0.0037651557451505798,1.0,6.364242980866732e-05,8.0535240226743e-05,6.6978859603284935e-06,0.9863347989791702,9.008179798090906e-05,0.15842054254004112,7.95977667948141e-07,0.9712534429720419,0.875428698267995,0.9996532394920933,0.990774824540784,5.1258841840309434e-05,7.335883423693928e-05,5.951453993690771e-05,0.0003825201816661624,0.9999653711319922,1.0,1.0,0.5859078549989816,1.0,2.600028406467893e-06,7.811482373931365e-07,2.624078493161376e-06,0.9831303656356046,0.4663292166389952,0.9998535608368733,1.0,0.00016262732016997212,1.0,5.703627139257521e-06,1.0,3.6775117280681524e-05,7.828549803482895e-05,0.14212244263800466,0.01535355707073889,9.653414466262691e-05,0.672526068707648,9.804549794026672e-05,1.0,0.05995049162880903,0.1336740884061355,0.31552952037464493,0.08112725859829563,4.82680693694083e-05,2.9842240879419357e-05,1.0,8.202816751743931e-05,0.8436742082163183,0.001318498459655789,1.0,4.899420761770187e-05,1.0,1.0,1.0,0.8687875493744027,0.1385364041220427,0.07455027643702956,1.0,1.0,0.8199484481773193,0.8411770701430323,1.0,1.0,0.999998343417476,3.0409590432059513e-05,7.642831491093455e-05,5.648475066274303e-06,0.9845541798711215,1.0,6.794870674371584e-07,0.03050230015506632,1.0,0.975008456724494,3.0506446506645475e-05,0.7717033554085798,0.48654430859878656,1.0,0.00023360762076073897,0.04669061501352783,1.0,2.6973751821740727e-06,0.26514782075405463,1.0,1.0,1.0,1.0,0.3241823901827755,0.07099250727481152,0.03867221448674309,5.445167929250475e-05,0.41550702601518313,1.252608648007145e-05,0.00011751238827339152,1.0,0.002137061808461075,0.08359116694804987,0.06641629341373201,1.0,0.5783993031381176,0.8015418165171572,5.074329158717212e-05,5.0995693597056426e-05,0.9999996850241661,3.4705210904564165e-05,1.0,0.03135161486837624,1.0,0.8132875447833808,1.0,0.16206938166330281,0.025823402088251395,6.619979002050475e-05,0.0002630478170274104,0.9999710095363495,0.13701541564217617,0.0007048010632926187,0.3829114584433262,1.0,2.4486636409614076e-06,3.0968709958184967e-06 -मेहराब,shape,7.445386554227297e-08,7.696587733679644e-07,0.9999539889840053,5.451918437172474e-05,0.9999996605530799,0.011750901640806293,0.0019990114517594868,2.532728250478762e-07,9.390500474820622e-08,3.26395965820505e-08,8.367939121204104e-05,0.00016662881939323335,9.932223958064764e-06,2.106839327545092e-05,0.00037071181019043473,2.3687964514553798e-06,0.13302622354694552,0.00022046980881388812,0.03863638582615428,0.6827695540898101,0.9686202679290008,3.1691588584754115e-05,0.9994292603609009,0.05436595114933728,0.00020023523730571837,0.0008181081966952026,2.53593093093164e-06,2.7923302750357675e-05,0.14215390832716893,0.4307730015465715,0.000788089183397228,0.9996627329939267,0.9998829748840499,5.986735042907235e-07,0.9999927175727842,0.9998847160346297,0.31130470277502753,1.923349810758577e-06,0.9982786409811378,0.00022325516693296683,0.0016452183973250402,0.0023219686155743924,0.01767721126293058,0.01206264146515582,0.013420313466959814,0.9920609554398826,0.9999955188566293,0.999999473685872,0.027553734097608674,2.2497848805728049e-07,0.05299378369376179,0.21936717737461017,1.8149642177104573e-08,0.0057585756692761884,2.988161497245892e-08,0.9999999182529762,0.000738098633791725,4.620742559392891e-06,0.0001135954170045621,7.021385945331388e-07,3.414251658847388e-05,0.0006031941361812193,0.9999551194685137,2.4936533447931335e-08,1.8707617669636486e-05,0.00019248166749188887,0.004558111006949089,3.507673694301613e-08,4.6401682874988126e-07,1.8856252220653245e-07,0.0004216915517043582,7.864770178527184e-07,3.8855836089667026e-07,3.892453960590598e-06,9.772717391892338e-08,5.619101853954795e-08,0.00013524574494194774,0.000791469009223356,0.0006961479304367535,0.060748047318601776,3.1912915208802006e-06,0.017999077167858996,1.6067558619389996e-06,0.00018562082736755224,2.70711460143754e-05,3.491496456229129e-06,0.031451308921477135,6.153330282815496e-07,1.2721123935337553e-06,9.780483839977591e-07,3.6930506970932225e-07,3.3319785126181456e-06,0.000561117498891903,1.0501568692986274e-05,0.00018676030794605598,0.00013303022068981648,0.021813872284642932,1.4443885158982006e-05,0.0021051942560668118,0.00016951912060796172,0.00019576715295989002,0.33044731000902916,0.6381486926205807,0.22294190706368688,0.0036967720012829977,0.5557437304066009,4.647154079409041e-07,0.00830598449127587,0.0013038770959679345,0.12631083109427896,1.941481289267473e-05,0.0007476561469241102,2.882720182426336e-06,5.49277622664094e-05,2.0092773498063418e-05,0.10953544087690423,1.6982068137781691e-06,5.376133177973092e-06,3.839055893911024e-05,0.0005865654980235377,0.999999888540883,1.0140512568714228e-05,7.467423362772349e-07,0.002773946977911518,0.0001947736689150404,1.1739711888279305e-09,0.00021286368344703894,2.3212622937832463e-06,1.0346042682975605e-07,1.6845938977580414e-07,0.0001425654020234742,1.811902389190398e-07,0.0009474867341336365,1.0772250145251615e-07,6.974371140551575e-06,0.9997252677288553,0.00011025494882410548,0.9995988074350819,7.300351505072601e-07,0.0004146292925387142,0.9997585212330405,0.9999962159581981,0.00015868969988268498,6.868039284049864e-06,1.9454542051513908e-08,5.808119885155624e-06,0.014821414937119552,0.0005291907588163082,1.0948804999854264e-05,0.0004250724308768701,3.078021814612735e-06,5.726501529217773e-08,0.9412209408726034,5.851973166489573e-06,0.0006672504905072153,3.7585559310694726e-07,0.00016662881939323395,0.00014304094861674046,0.0004399413745000101,0.546285084275787,0.00020649554672877435,0.0002594569863274878,0.9999978983226779,3.073471929540462e-06,5.545283584370115e-06,2.420916894324081e-05,0.0005481911868453533,3.6428986403242625e-07,7.804032613749276e-05,0.0018776409373071883,3.7055545014314186e-06,0.10749858380544722,4.66828751965432e-08,0.004725449273053465,1.0432863428508391e-06,0.003902732448844254,1.7698490372162052e-06,3.569143621770664e-07,7.895011610074091e-06,4.559362309150659e-06,2.34005924464529e-05,0.9999173773296935,0.9999611444688317,0.9997829678268045,0.9514071575509739,0.0006708703248456535,8.533102027909894e-05,1.2411516733023344e-07,5.998164061303957e-06,3.881329493487121e-05,0.0003493470932852805,2.8870855173347065e-06,3.321523924692743e-06,0.8153781280074548,3.734687170151422e-06,0.00833665178920749,2.869063421054745e-07,0.0002775705677433732,0.015379653596442822,1.7505084791912162e-05,0.015242599783921017,1.0136575970223953e-06,8.346078570256868e-07,4.825488304299481e-06,0.063843879114876,0.0022279116485829343,5.00358447646648e-05,0.0004590536809024895,0.0002060953110517348,5.0486989831243155e-06,3.739104796520688e-07,1.4269700629871135e-07,2.5096532573413397e-05,2.8121088881091226e-06,3.241224200376267e-06,0.00025513100576227284,1.3664696122839834e-05,0.999986142106659,0.9995971846424211,0.9999751411590284,0.9999948229991855,2.0313290992514975e-07,0.00013119090117636326,3.1975631555072184e-09,0.0001529487807829096,0.9962490687950502,1.8557744809628465e-06,0.0036136936922645984,1.8826716816426321e-06,0.999942332784245,0.9999737489321933,4.748319247944651e-06,1.1344943618112744e-07,0.00040489878728611114,0.999999888540883,0.00508379945219649,0.9954901895553969,0.029322525580329096,3.205171960148161e-07,4.8762024150444506e-06,2.962146175825377e-07,0.9998144052527336,0.335940617817005,7.909109121867353e-05 -मेहराब,object,6.992895404415087e-07,8.879575660113481e-06,0.9977528756187714,0.0008500150742185871,0.9999852919208627,0.017875997934871008,0.004364036159530254,8.526632675116106e-07,6.541502164109663e-07,8.595517417034877e-08,4.6962482394756175e-05,7.046506417601357e-05,5.279310672545197e-06,0.00016509329046085887,0.009360611608234783,5.939225680424084e-05,0.04488872077540778,0.00015329234335121787,0.005964337151732554,0.16477339535365748,0.8801236231595055,1.7285017057378304e-05,0.9995111766992942,0.013249763382959669,0.00020066968779533083,0.0002871695225675135,1.4706028183067302e-05,2.9256002529114267e-05,0.4617763013004738,0.7555308808210816,0.00201698309033377,0.9818148157041251,0.9998588644870561,1.1184913916487067e-06,0.9999971332028512,0.9998933895675016,0.04830798984206261,8.483887105536518e-07,0.9899894134049666,0.0003203153132528827,0.04584359999263633,0.007019560338907459,0.02004735359054146,0.032765374220790816,0.0402034650240517,0.894235922651711,0.9997219039702001,0.9999846418988838,0.11045238370309958,2.9484048547041094e-07,0.10405800188739167,0.7595221836865921,6.9382044191496e-08,0.012251925876116348,4.1250443922486986e-07,0.9999992890370871,0.0005612846518808572,4.940863197201825e-06,3.382535073628644e-05,5.255651238667326e-07,1.6285337650179572e-05,8.507065963434516e-05,0.9999802386855704,1.0580501205720076e-07,8.965068934624011e-05,0.00011296615696101693,0.0014416041285630103,1.3635477959460908e-07,2.221349908057111e-06,6.434622405032799e-07,0.001782350476024726,3.159951704017136e-05,1.3416792832104793e-05,1.2015854737014601e-05,1.2905217876269866e-06,2.817920666541981e-07,5.2850830382147494e-05,0.0002936261216590593,0.00016744060150822513,0.05350446948429758,1.065804575770108e-05,0.00894174336092523,8.558799306124922e-07,0.00011977917774052554,8.593706879114252e-05,1.802389066745562e-06,0.37046773467664607,3.036881323485572e-07,2.634969902931981e-06,4.616234867504475e-06,2.0375329017394985e-06,0.00011633548661371887,0.0005117670904968532,1.043648249290354e-05,0.0001620912553735997,8.489458148732418e-05,0.10999665678317802,1.4446346179563827e-05,0.0018501227780396445,9.725655568189583e-05,0.00021738325707754185,0.4555140769036235,0.7056125430695589,0.8217731103185575,0.00271477347439869,0.7014138681630767,3.941905625978971e-06,0.001899735378604729,0.0002631026820355851,0.11684416248640485,9.840112280564346e-06,0.01906481951045258,0.0001377860291987258,3.191664145880409e-05,1.3180355212414125e-05,0.015438774855547295,2.2945971238575314e-06,5.458964103066565e-06,2.717424712274241e-05,0.0001461324876266685,0.9999939613020253,7.795731457111202e-06,8.927700282920047e-07,0.04048830379835709,0.00014943513601124367,1.8164447267090588e-09,0.00014302679906962653,3.6503399877065478e-06,1.027034737075203e-07,2.3820087382923932e-07,1.5071577694622493e-05,2.5525278993165156e-07,0.00229299154705913,3.3889727082799243e-07,8.520100949055938e-06,0.9987278276724456,7.694321044201135e-05,0.9929169593937286,7.548147992153333e-07,0.0028621030320720576,0.9998516406954593,0.9999987050092188,0.000656597355374367,0.00015605154711525787,1.18239105445325e-08,2.647769331329209e-06,0.006540719493742462,0.00023373118754229055,4.409779564889605e-06,0.00016053844904326787,7.119470660744901e-05,6.32070240302312e-08,0.9928666247009734,3.909304686194047e-06,0.006080662399180389,2.6292783980948703e-07,7.000960704457215e-05,0.00018489769671739908,0.0003894580811554744,0.05847774813441934,0.00029503792146373615,0.00017798464865964724,0.9999978674498263,4.75528651289334e-06,9.154055751350845e-06,3.3658409398465116e-05,0.0006465051563095218,1.922286382246063e-07,5.37866831146471e-05,0.027690631162758453,3.1066180842427164e-06,0.12209164428889176,5.7057098706426945e-08,0.11681965673274622,6.937491387845369e-07,0.016155175644200284,6.433238916391165e-05,3.843660598644012e-05,1.6404239661622817e-05,7.128827980485131e-06,2.505442070803376e-05,0.9999389879337973,0.9999734429040972,0.9998111151494986,0.9703684321141502,0.006511348084702174,0.0008035283648881876,1.5669920556879465e-06,3.202222054804777e-06,2.1105029536334047e-05,0.00029189175442117886,4.22458659523062e-06,2.0771496061157993e-05,0.5487680053964268,3.852600130535703e-06,0.05076829093942718,4.645118973604742e-07,0.0001234244372300674,0.02699408578430288,4.062014688433198e-05,0.20173735825534742,7.875349991074951e-07,1.7014277889759765e-06,2.646143868536634e-05,0.015602494895368696,0.0019491803187562174,0.0004198648682224497,0.007216625372988631,0.009764437353414592,1.8555473087735417e-05,3.594501427380065e-07,1.0875788538680317e-07,3.708336996892045e-05,1.407519120046995e-06,6.338099874691416e-06,7.60194582657594e-05,7.695044432833897e-06,0.9999962199609744,0.9886614757669903,0.9982166328959877,0.9997671525897075,6.084546709995518e-06,0.0005488620171868913,1.1735862385741473e-08,8.965353942098737e-05,0.9706035906628785,1.3931229767660458e-05,0.0008732860883628438,0.00016114694465031997,0.9986182207189472,0.9999878041549602,3.6078587712156654e-06,3.889504666541118e-06,0.001427254905283964,0.9999939954275605,0.0006860516413281057,0.9049607593993438,0.1169815971044141,4.723472008510273e-07,6.13187941022624e-06,1.777819209478161e-07,0.9999022707432265,0.08567766246028852,5.4663746768594385e-05 -या,rgb,0.0972869724940598,0.9999999999961726,0.14175454595064294,1.0,0.660166822357976,0.9629818660356394,0.030277771671534382,0.5533931023686792,0.45599483708414057,0.19611108568143784,0.01221481601679739,0.056559175852395484,0.03643895829906333,0.9999999999982043,1.0,0.9956519383316687,8.059582325186933e-05,0.00011594458595019105,7.414767229531722e-05,0.002005746785080908,2.0688187321890278e-05,8.322446949544602e-06,0.9403490844118996,1.641109097107314e-05,0.9992636004454366,0.0002734660052387514,0.5960953564451228,0.998578564362292,0.9869682936714452,0.9999999997353184,0.962369250890921,0.4733262977167055,0.9300973637025473,0.0043490682698876125,1.0,0.9930241191832508,0.001599743762719941,8.529357583665582e-06,0.9193480595613885,0.7529443581898393,1.0,0.999999960788521,0.9555465429901808,0.9999999999680045,0.46261688533860285,0.33626260745669523,0.5312081612643481,0.1369166021220143,0.45931037113396594,0.0036569380388451855,0.9593046420053691,1.0,0.34677401228186716,0.8296994240975415,0.8822994383725529,0.8516196458704886,0.9857449513844578,0.9796249658127589,0.05107120894387873,0.025946246058403056,0.011175124160040156,1.598644034829127e-05,0.9991356404181702,0.9999998418834583,0.9999999991611435,1.1816134260388226e-05,6.333760796770256e-05,0.27543362174494934,0.49074457359112855,0.5056891783878144,0.8796691187444687,1.0,1.0,0.22170243021167563,0.9999999998777913,0.999999910562005,0.00016210285944289518,1.2360078015861234e-05,8.814455505404399e-06,0.9722790449383912,0.4114463348961319,0.9749805927328751,3.0359922254472286e-05,0.9469761443719494,0.5319267659418888,2.1295517375363057e-05,0.9907503449441948,8.82664572967643e-06,0.013948446882305421,0.41200834176221207,0.5174395687312573,0.9998527114784777,0.9917768361974161,0.9831229972282153,0.9671068773153347,0.9553800519708245,0.9723028912390822,0.9458320811150499,0.9798617807559207,0.9413648678321689,0.8967926492814622,0.008398247416667079,0.7169702307812109,1.0,0.90775423311358,0.9658280553443016,0.2529001095574111,1.5189288231448337e-05,0.0010202599642237088,0.6637990781851945,0.00011695130543572779,1.0,1.0,0.12126832670024904,0.023542764845710766,0.01792102375685043,0.022120807254662426,0.03041259834572998,0.055973468384614415,0.015234944939405304,0.46041885834266927,0.03927428430219294,0.008115813516546506,1.0,0.11250208116229359,0.6887457050729264,0.0447665386191063,0.027921244679429094,0.0011782739658085033,0.0004408527369348552,0.014729569945150789,0.0018616897394668087,0.9668201772741555,0.23373305548182424,0.017162911860712612,4.949207906764679e-05,6.106217528729914e-05,7.551139619766222e-05,0.002437571611218202,0.9999999997762474,1.0,0.9979154329935365,0.8672275733422085,1.0,0.0029007077984346034,0.0019667381373400304,0.10974265394094405,9.236938156803358e-06,9.008493545741583e-05,1.3715342796477392e-05,1.0,0.00021797196983332497,0.9877176858306514,0.011844856498378747,0.8880338980721737,0.029537437420762157,0.051552063906092155,0.999919760289409,0.9998129832882284,4.1906448355065865e-05,0.9999823010167258,4.5990366465780436e-05,0.9857304416663846,0.9996824786030901,0.9996815941444774,0.9996580364364543,0.9992258844838959,0.039220824257080386,0.024869359277646125,1.0,0.0002216631396259165,0.9590665265246983,0.0003913648723840538,0.9980397606747247,0.0002815760273611579,0.03244146824930109,0.9998944936825704,1.0,0.9999858756983936,0.9998984546602926,0.9997697446995881,0.9969591529227713,1.0,0.9320715108516344,0.9656521987090019,0.7446276544649033,0.9999999999999871,0.9999999999862865,0.02493952097023084,0.046756819680416756,0.010769432145776919,0.0005094512757794117,0.12991734248956258,0.0018109113277896486,0.0005535462101646524,0.5117742571828183,0.017575724995085997,0.060182619655809254,0.9424930965561454,0.7910672386846663,1.0,0.00018790823865013406,0.9979711829246651,0.5515221122969427,0.03154234890258853,0.7557540510005974,0.8698347883935353,1.0,1.0,0.3098713822339996,0.0002299685373361422,8.031174773705331e-06,0.9991891367852394,0.03760814163585582,0.9994990361046028,0.045952990204347205,0.08699066272437289,0.9997635718085178,0.21015153460747604,0.5916547700631282,0.6923503646805069,1.0,0.8655392505851657,0.9999996624347416,0.0001258350824891239,0.00014638869535835828,0.9999999999961193,9.946523128316945e-05,0.9997792060069335,0.45689463359051485,1.0,4.961654978147371e-05,1.0,0.7272398664923041,0.49714076624795106,0.11294257666316844,0.11047182285606565,0.9999999997785236,0.0008589648150404114,0.0002674776739060819,7.462061733097907e-06,1.0,0.007078990322125019,0.01244318844891674 -या,shape,0.05018738866938937,0.9999999425036545,0.9999999999746207,0.9982959519509766,0.999999999967566,0.9999996299173515,0.9999991470183213,0.031181809074349757,0.941624274224759,0.0043583998856352515,0.9999999991965876,0.9999995442146742,0.9999999969439861,0.9999922825053171,0.9999999991456103,0.9999982113705441,0.00011222626943206161,0.08531687141315135,0.998389426450243,0.7671937192297205,5.552325535125346e-06,0.9999988609117477,0.9999999065776989,0.9999999872401827,0.9999995048278613,0.9999981879614203,1.4976039023287657e-05,0.9999914195110956,0.9999531325008945,0.9999439149895772,0.9999455057084291,0.999999999993247,0.9999816171896907,0.0006611750459291858,0.9999888109748689,0.9999998809830293,3.1980544651874486e-05,1.6079039637055258e-05,0.0231219663696235,0.9999999120854293,0.9999934982204263,0.9999843477007823,0.999999964577187,0.9999999940557334,0.9999999590307266,0.9999999992722521,0.999999999916841,0.9999999998558615,0.9999996493358767,0.0012638571837544333,0.9999999987292554,0.9999694249205716,9.96387612459087e-05,0.9997396215993727,0.9994310265659107,0.9999863766616232,0.999999966325497,0.9999998730651466,0.9999932124625515,0.999999878643339,0.9999975430746644,0.9999997793001464,0.9999306662932974,0.9999910390630977,0.9999363487103013,0.9999953779987626,0.9999975269592334,0.00021882851201575367,2.8163041893234346e-05,0.04398652299101313,0.9999912438382913,0.9998806165503925,0.9999667970830945,0.00016884444094509462,0.9999999099303193,0.9999954366807624,0.9999991746533652,0.999996520726917,0.9999929086422324,0.8841991373371352,1.3881775138903383e-05,0.9939849537752025,0.00010773198247301819,0.9999999641275363,0.0049508030425984605,0.0002220998838492005,0.999995510566357,2.2780828757618795e-05,8.126463011528772e-08,1.2681552632147635e-05,0.0005414021701626628,0.9995682994948781,0.9999996017360623,0.999823104571845,0.9999999499821438,0.9999999512400427,0.9999999885454242,0.9999785682107429,0.9999985454045597,0.9999998055549945,0.9863179062726697,0.9999982080880156,0.9998124161496442,0.9999997040620753,0.9999995959204285,0.9999991272939668,0.9999539363322822,0.9999996535526127,0.9963653134591524,0.9999642132416449,0.9999997832663693,0.9998528203254521,0.9999874997816294,1.1350877688903814e-05,1.9220465099094304e-05,0.999999004861307,0.00024171952735141584,4.976538973398658e-05,0.00011946579224910209,0.999999919189256,0.9999999999710605,4.8963874668424506e-05,0.00011027154480010148,0.9999995514003802,6.238165767321192e-05,0.9999998137462298,3.3203197203944154e-05,5.265917059654811e-05,6.333520943647313e-05,0.00022203295903320047,0.004085463538832718,0.00027298290102549544,0.9999977471852329,1.8547679171411928e-05,0.00019410805995899528,0.9991595994707841,0.636027345512226,8.505636261452396e-05,0.0006571743033771393,0.9999756143827575,0.999984503395796,0.9999999990635626,0.9998046312910167,0.999997298306818,0.9999999945568165,0.9911517946409257,0.9999997901184393,0.9991166719443155,0.9999975200817803,0.9999961312207849,0.9999869744782205,0.9992194852088806,0.9998208673996133,0.9999999459817246,0.9996868472388276,0.9999999961976915,0.9999995442146742,0.9999979396622922,0.9999826987884376,0.99944356223215,0.9997693636840083,0.0002663573886757342,0.9999887823809043,0.9998457167737557,0.9999993972055846,0.9999993750301999,0.999999986518062,0.9999986077243843,0.9304494222930243,0.9996047115304483,0.9979935563240638,0.9999995660243546,0.0002857136253313588,0.9999903777165231,0.0002557042306428583,0.9999998914241994,0.9998532294852994,0.9999880980120649,0.9999999910788068,0.9998535838071309,0.9997320719121553,0.9999982565645176,0.9999803844289679,0.9999970878361066,0.9999996749805015,0.9999486569901191,0.999999430562562,0.9999999194552485,0.999999984760455,0.9999999534959335,0.9999999950370355,0.0002888244893622548,5.053025474700242e-05,0.9870825617907408,5.565755810681679e-05,0.9999998020376989,0.00023728466759799865,0.2002925379794128,0.9999999783595341,0.9999463024586887,0.9999964495633791,3.083893442730179e-05,0.9999982057164605,1.5082085210421584e-06,0.9130343518296687,0.9997070944054803,0.9999135136911168,0.9999976385455083,0.9999999295287997,3.7142943227494755e-08,0.00012085717398586026,8.48553679356894e-06,0.9999992625231976,0.9999986790384535,0.9990161840153479,0.004418728410161822,7.890268029192673e-05,0.9999999999999851,0.9999999999997484,0.9999999999490596,0.9999999999813802,0.9999999938289548,0.9999825573888461,0.9999871507017952,0.5961881725471745,4.2651902695998444e-05,0.9990990139770326,0.9993037243411913,0.9998955542691967,1.0,0.9999986726852318,0.001695947057073851,0.9999094678577417,0.9996881934794296,0.9999999999710605,0.9999999843844871,0.9999988962317237,0.9999880373012205,7.601660780650132e-05,0.18763446240813336,0.0002097916890205674,0.9999543936403282,0.9999995660606107,5.094107407444885e-05 -या,object,0.0502890157586042,0.9999999216255572,0.9999899701803611,0.999221034981641,0.9999804928771426,0.9999969740757624,0.9999238813848008,0.09398800288082729,0.977270656128408,0.011501662647904625,0.9999929779284615,0.9994140550280678,0.9999730041633644,0.9999980695530816,0.9999999999937295,0.9999909085217714,7.169755119867305e-05,0.0008464903614561491,0.0839303251872803,0.04670339646556295,9.253754942956686e-06,0.9974737735037924,0.9999994532058049,0.9994071922233908,0.9999962182781106,0.9949937975151036,3.364708467857245e-05,0.9999677669181495,0.9999147640228714,0.9999869515623977,0.9999140700318413,0.9999972276811072,0.9999771620068221,0.0006016443527410995,0.9999999747552413,0.9999990883913904,3.5385488400829133e-06,3.1594290698835146e-07,0.014740215830883585,0.9999975671589262,0.999999967687036,0.9999908921117248,0.9999996596741,0.9999999928052727,0.9999989911916013,0.9999140241731079,0.999953682137594,0.9999842740285737,0.9999854422530107,0.0005641705714589664,0.9999999513935752,0.9999985295639807,0.0004585786408356959,0.999872324261963,0.999560215801284,0.9999531506638049,0.999989500360075,0.9997963278392009,0.967346623959392,0.9995836934862042,0.9912946926970645,0.9795477719034764,0.9999658883556456,0.9999623197169653,0.9999805309356187,0.9954093532545768,0.9980321264487271,0.002333008221707571,0.00041561291884785684,0.16617852967767213,0.9999976689071949,0.9999986635449225,0.9999997349333164,0.00017738257958970342,0.9999997980065563,0.9999962312789501,0.9965528364075307,0.9951701191761357,0.989442699896379,0.7798901273781149,3.5817807168157975e-05,0.9800793974045898,1.1549282181257262e-05,0.9998214060171062,0.005977455925745811,3.536521500981953e-05,0.9999953518080555,3.8037733640641207e-07,6.665152761530244e-08,4.19416462205037e-05,0.004896598757517637,0.999799519384036,0.9999747312248736,0.9991540074258236,0.9999911990339997,0.9999538757337946,0.9999998867297246,0.9997091765231102,0.9997671224703797,0.9998982383464862,0.7944692633584732,0.9999648109713847,0.999816174379243,0.999999997128193,0.9999560979995944,0.9999947964791862,0.9999218071024666,0.9945577355102598,0.1299145741448145,0.9999668232698053,0.9997977625371413,0.9999978637274649,0.9999997835308394,1.6257394456232713e-05,1.250743843407937e-05,0.9992455913563122,0.00018001226646026787,4.162440940605369e-05,9.09837944401038e-05,0.9997763615465212,0.9999822412932078,2.5435491981841594e-05,0.00010045170988676206,0.9999999973131539,3.0613917066674105e-05,0.9934668943909436,1.7485095462110926e-05,4.2997750991565066e-05,4.840269720501921e-05,7.64569690904976e-05,3.6430495023211086e-07,8.778130899410608e-05,0.9999852605147433,5.295550034609673e-05,0.00014351222043032627,0.7872031307736153,0.2084884817258433,6.892125869188417e-05,0.00011950970980672002,0.9999954577293094,0.9999992425800118,0.9999999910876846,0.9998848891741945,0.999999948249066,0.9975004081707904,0.03374606611190943,0.9999505377262428,0.8226397476070333,0.9924171187928801,0.9916652371339548,0.9999998139313089,0.6807704341194873,0.9999111198062647,0.9998404207905929,0.9996689335686775,0.9999610097566252,0.9994113898536807,0.9999799226343258,0.9999184018405288,0.4048476706051239,0.9998582329604622,9.320108311136317e-05,0.9999824129371176,0.9997633435323622,0.9999976143378175,0.999998329547046,0.9999995872830174,0.9932356554506556,0.21006648583935597,0.9999914818763704,0.88799214239149,0.9999953743297196,0.00016595748253312416,0.9999980877184078,0.00013286386506275167,0.9999938861457771,0.9998838385940684,0.9999999378750567,0.9999999727364645,0.9996066284318659,0.999567309516582,0.9999994221343906,0.9999973533886055,0.9999750691003906,0.999997884278493,0.9998126369956735,0.9999999154787187,0.9999999619939678,0.9999513357643564,0.9999080507151007,0.9999133824130377,0.00021551628053638022,4.5319041262950926e-05,0.8149126705915912,4.4436150118704014e-05,0.999996974101481,0.0002501541798951688,0.003715800488284274,0.9999992305459359,0.9999430511255764,0.9999999048852938,1.447051568601442e-05,0.9999932535720338,5.217712749493305e-06,0.21555390049461082,0.9996643301385639,0.9998902024709212,0.9999999911323542,0.9999999998812314,1.1234261042708736e-07,2.7342390987509e-05,7.683935623128523e-07,0.9999910792328097,0.9905900877660981,0.997916396189396,0.00014292753393892142,2.3455357655578366e-05,0.9999999999992377,0.9999998777390596,0.9999724113118964,0.9999838587141427,0.9999999987574191,0.9999958978598729,0.9999684962638374,0.007654992005115895,2.4483719223405278e-05,0.9997011572350254,0.17146207594820698,0.999997044925733,0.9999999999414411,0.999999924785841,0.00013422751655831357,0.9999992040741974,0.9997618202014744,0.9999828681796428,0.9998629538684914,0.9761697230441392,0.9999941531058193,5.414725062844003e-05,0.0074252664922227415,1.0983177990216124e-05,0.999996913483042,0.9997729167228627,3.0065855310120663e-05 -रंग,rgb,1.0,1.0,0.9999085201726242,1.0,0.9999999995776145,1.0,1.0,1.0,1.0,1.0,0.049784007684646116,0.8875821933591068,0.6515047517078224,1.0,1.0,1.0,0.9503813773790512,0.8213101827940006,0.9489002523470562,0.9999587468204316,0.9999696707596822,1.0,1.0,1.0,1.0,0.9999999888017065,1.0,1.0,1.0,1.0,1.0,0.9999992758598263,1.0,1.0,1.0,1.0,0.9959122345762811,0.999999999998662,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9994401827427388,0.9999991033344182,0.9999002942812679,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999998610767,0.9999999982584047,0.8281674217501761,0.37037792104592826,0.0471981465294825,0.9999987791206544,1.0,1.0,1.0,1.0,0.9999999999544906,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.999999999314195,1.0,1.0,0.9999999893252988,1.0,0.9999999989918684,1.0,0.9999997224614159,1.0,0.9999999999999993,1.0,0.9999999999987956,1.0,1.0,1.0,1.0,0.9999999999953026,0.9999999974766438,0.9999999682603543,0.9999998560165942,1.0,0.9999996915581587,0.9999999995837012,0.999999709761053,0.9999957260286712,1.0,1.0,1.0,0.9999951753420825,1.0,1.0,1.0,0.9999997119584486,1.0,0.9999993776450516,1.0,1.0,0.9509243372463786,0.187756661510896,0.08321477155882571,1.0,0.09899815873255043,0.912399944676452,0.9987599197282946,0.9999994809044487,0.1516172916665687,1.0,1.0,0.8767601689956134,1.0,0.18928198928354983,1.0,0.9999999999999272,1.0,0.9998183917771234,1.0,1.0,1.0,1.0,0.978854852934406,0.9684510002807601,0.9261769154961367,1.0,1.0,1.0,1.0,1.0,1.0,0.9999995292928237,0.9957951018019731,0.9999999831388099,1.0,0.999999999942591,1.0,1.0,0.9999999999994176,1.0,0.04585779240150875,1.0,0.4292119242774172,0.7827523926856104,1.0,1.0,0.994178415244038,1.0,0.991637438063676,1.0,1.0,1.0,1.0,1.0,0.5853308266383254,0.3299798520502531,1.0,0.9999999999887754,1.0,1.0,1.0,0.9999999999463649,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.33578016281165807,0.7590936834389813,0.04230411947173943,1.0,1.0,0.978802232344644,1.0,1.0,1.0,0.5648536150025628,1.0,1.0,1.0,0.999999999999799,1.0,1.0,0.0990684790553751,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999998899,1.0,0.6139679409548002,1.0,0.27446804261776686,0.9197834284859551,1.0,0.9997226449199738,0.9999999592251853,0.9999999590790923,1.0,1.0,1.0,0.7555490201467057,0.7021223103674477,1.0,0.7608235801895843,1.0,0.9999994524658531,1.0,1.0,1.0,1.0,0.9999993214627901,0.8825095442452876,0.9804859554602872,1.0,1.0,0.9999999999999993,0.9999999999999998,1.0,0.021143759621499676,0.03524007655994242 -रंग,shape,0.9999877959874526,0.9999983933729997,0.9999999407257567,0.9999993553574312,0.9999999520291089,0.9999997486660673,0.9999997001661662,0.9999996940673818,0.9999987815769618,0.9999999283827203,5.405276007797294e-05,0.9999961126642316,0.003939019578958585,0.9999837823654,0.9999997493491251,0.9999998324005926,0.9999993893375229,0.9999762104801889,0.9999999987733048,0.9999999990594755,0.9999999999423677,0.9999954364111363,0.9999250269490887,0.9999628669409605,0.999995158677856,0.9999670720226242,0.9999914260673071,0.9999994625642441,0.9999999979657082,0.9999719248874338,0.9996633002068629,0.9999999990730208,0.9999997106988705,0.9999986231133147,0.9999999418526906,0.9999994495161492,0.999999824676595,0.9999816141378429,0.9999999997559892,0.9999999999203686,0.9999199130674047,0.999708215541746,0.999998674174864,0.9999982369752728,0.99999574686385,0.9999999774766749,0.999999999503075,0.9999710782485814,0.9999403706866811,0.9999996805773396,0.9999294138242844,0.9998688755942448,0.9999999313303822,0.9999907420393616,0.9999999184062205,0.9999999244990184,0.9997061082182885,0.9999709964949297,0.9976929937729277,0.0005723934853179794,2.0944923059612186e-05,0.9999903076493263,0.9999999806918657,0.9999676599691228,0.9999905602136824,0.9999972001049539,0.999999975711907,0.9999999758511292,0.9999997642299056,0.9999999291191436,0.9999889995418327,0.9999491726971208,0.9999829449165198,0.9999844129953985,0.9999951630217171,0.9997727020911551,0.9999956473832378,0.999999913769655,0.9999998805134033,0.9999999876926108,0.9999999068826262,0.9999970298821934,0.9999999140645356,0.999999116531417,0.9999968536661468,0.9999999647942278,0.99993784155109,0.9999911493296253,0.9999987576295011,0.999998544677671,0.9999997859907092,0.9998147534239084,0.9999939147338613,0.9999945945194445,0.9999825407083069,0.9993326227676715,0.999995782945673,0.9995224904088837,0.9999992772512377,0.9999999689360567,0.9999999980119956,0.9999984680774072,0.9999766814846952,0.9999716802631182,0.9999999767797162,0.9999749180867764,0.9999998952491885,0.9999958416031882,0.9999953109407455,0.9999948373715086,0.9999882683655529,0.9999999999350524,0.9999982327434499,0.9999999999997347,0.9999999999989817,0.9999999999844673,0.9999984471471917,0.9999999990547106,0.9997897553575292,0.9999998247860385,0.9999997056979428,0.9999999988246344,0.9999988182875814,0.9999994037062415,0.999999999797401,0.9999007839759443,0.9999999999999369,0.9999904207256717,0.9999998215686591,0.9999999470854785,0.9997354838111415,0.999999145687962,0.9999521632971897,0.999992706086473,0.9999997867556327,0.9999989584085034,0.9999934898803667,0.9999999879925651,0.9999940857367513,0.99997291103855,0.9999999694843584,0.9997881467623488,0.9999999223119622,0.9999997512121579,0.999662016443301,0.9999974581407458,0.9999999836867115,0.9999998517221012,0.9999975229879469,0.999996142976369,0.9999999219233743,0.9999187002222949,0.9999844047879943,1.848489784097703e-05,0.9999999903338742,0.3188117175781291,0.9999961126642316,0.9999994266413118,0.9999981654459759,0.9999999238024304,0.9999996841323283,0.9999999994878519,0.9999999291922551,0.9999998753137629,0.9999993118395009,0.9999981812718384,0.9993829084702669,0.9999175333328801,0.9998600701800314,0.9999996921774429,0.9999903027946618,0.9999999836046716,0.9999998636397572,0.9998388030539059,0.9999999896893198,0.9999800399922733,0.9999907024949091,0.9998668486537768,0.9999994067567834,0.9999992257132262,0.9999999535452503,0.999999960982138,0.9999999913471783,0.9996206280822807,0.9999934078799286,0.9999898568582024,0.9999769962093777,0.9994514653949496,0.9968639753206006,0.9243880660661518,4.533169654169603e-05,0.9999989078544487,0.9999852728087042,0.9999999999696518,0.9999998127549257,0.9997838141082064,0.9999999260215552,0.9999999999983704,0.9999683414758901,0.9999999922443225,0.9997578013590035,0.999999755006349,0.9999881404453795,0.999856366565052,0.9999999999999429,0.9999999999840334,0.9999999326726846,0.9999999999221021,0.9995912480319861,0.9999975565048468,0.9999948546251372,0.999999708078783,0.9997181233429295,0.00024214785865944204,0.9999967401377957,0.9999999999995663,0.9999999991500339,0.9999958757438911,0.9999986877406873,0.9999999997123648,0.9999999992348794,0.999981631682003,0.9999883150285216,0.9999999985438015,0.9999999847830203,0.9999999996068996,0.9999999626401329,0.9999999999233222,0.999999710750457,0.9999822909493243,0.9999999999781894,0.999999915172563,0.9998593595370449,0.9998815988616132,0.9999997056979428,0.9999997222110287,0.9999999787220823,0.9999268532106267,0.9999981641112617,0.9999999383825684,0.9999940244149315,0.9999990461311811,0.9999999985460077,0.9999999997510813 -रंग,object,0.9999931849016651,0.9999997781290054,0.9999998347788874,0.999999582647123,0.999999940765804,0.9999999349754405,0.9999995508840563,0.9999999060185427,0.9999996274922061,0.9999999577766607,4.604136022951138e-05,0.9999414257586263,0.0022907282226520245,0.9999992321671272,0.9999994104301156,0.999999819104563,0.9999876713679476,0.9998432523825277,0.9999999599714666,0.9999999927764567,0.9999999937136583,0.999975614714595,0.9999672091632726,0.9998475014377582,0.9999993012884313,0.9997677094413813,0.9999983107328986,0.9999998817950513,0.9999999993903474,0.9999784973062903,0.9998683473873371,0.9999999963892385,0.9999997961532086,0.9999986969096523,0.9999999300750821,0.9999998212421828,0.9999989800714995,0.9999277021094269,0.9999999996510562,0.999999999872984,0.9998767952367061,0.9998679670315347,0.9999995488213083,0.9999991299781394,0.999994005305701,0.9999999321594534,0.9999999986295947,0.9999523022788595,0.999973149843527,0.999999437344562,0.9999787671360862,0.9998553522621443,0.9999999769829374,0.9999936918330651,0.9999999434351566,0.9999999185793036,0.9996455873260736,0.9999677372299051,0.9891325280637083,0.0003245641050883631,2.6601791267766246e-05,0.9999205455619103,0.999999977434399,0.9999853607669381,0.9999918068247972,0.9999759535837888,0.9999995884498551,0.9999999894740735,0.9999999316222812,0.9999999708084706,0.9999878661599925,0.9999235571348936,0.9999771985115772,0.999997366732034,0.9999990635122257,0.9998705222771305,0.9999397925986248,0.9999979349462705,0.9999991298491182,0.9999998954493778,0.9999999619200951,0.999991885227285,0.9999995033304534,0.999996609707213,0.999999385956438,0.999999698005415,0.9999382373545618,0.9999555753334087,0.9999991030728479,0.9999990895253511,0.9999999534914726,0.9999732892410371,0.9999897499553948,0.9999890693319206,0.9999544342637814,0.9991502900735146,0.9999975457760655,0.9995041495201613,0.9999991536550787,0.9999997808829746,0.9999999753430585,0.9999912863712151,0.999979782421035,0.9999338935995777,0.9999999055181672,0.9999869679598136,0.9999997727006086,0.9999751006301334,0.9999337382646574,0.9999898385766886,0.9997826076285237,0.9999999991845352,0.9999979552131476,0.9999999999475695,0.9999999999032141,0.9999999998734259,0.9999991862357817,0.9999999681907138,0.9997389882632567,0.9999991900902849,0.9999995907176827,0.999999951594348,0.9999988599835337,0.999997894449693,0.9999999883674352,0.9999004114471053,0.9999999999895435,0.9999963626434435,0.9999994764241665,0.9999998670000042,0.9997796696681669,0.9999992966814032,0.9999907803520633,0.9999989010671224,0.9999998958507303,0.9999636819195792,0.9998119180584212,0.9999985941556586,0.999993401029861,0.9999783407890823,0.9999999919856027,0.9999472000602437,0.9999998728677977,0.9999978720670339,0.9996586752153623,0.9999621162003318,0.999999897355632,0.9999987651798563,0.9999539474350033,0.9999797553340761,0.9999991205769247,0.9998700640885273,0.9999806240453603,2.1737740410042178e-05,0.9999999792918246,0.07081104641496766,0.9999439660264001,0.9999999254573226,0.9999994803670773,0.9999971184648738,0.9999999567917187,0.9999999441119374,0.9999999694679427,0.9999999548191496,0.9999998240847615,0.999999600646226,0.9999074638559806,0.9991641989463006,0.9972309946398403,0.9999995642512509,0.9999717107114596,0.99999999688994,0.9999994494530597,0.9998862855552644,0.9999999460530387,0.999962057005936,0.9999989718852368,0.9998882246938338,0.999999929060338,0.9999998697700699,0.9999999871484776,0.9999999784389908,0.9999999984521628,0.9998477769672632,0.9999966650510977,0.9999939483975729,0.9999573368038002,0.9997947571180623,0.9366952188315872,0.7023373232577788,3.613364503595714e-05,0.9999990780834841,0.9999951174182252,0.9999999982780834,0.9999995438856224,0.999827222137445,0.9999999497255921,0.9999999996362596,0.9999893551433038,0.9999999951633616,0.9996347669656094,0.999999265973473,0.9999976051326407,0.9999654475877157,0.9999999999858566,0.9999999999757163,0.9999998081318975,0.9999999994172428,0.9996567239430462,0.9999994229969612,0.9999916248843711,0.999997903241132,0.999952636673012,0.00031762723720906555,0.9999995255193996,0.9999999999830556,0.9999999730658918,0.9999996578908388,0.9999974363184938,0.9999999992028057,0.999999998414882,0.9999656096127394,0.999985749588395,0.9999999958725885,0.9999995599909719,0.9999999644304068,0.9999999952308132,0.9999999944774562,0.999999872444855,0.999957773030737,0.9999999998800122,0.999999669141407,0.9998247348416237,0.9999334746146747,0.9999996053168582,0.9999991014549521,0.9999999414136581,0.9999298553251705,0.9999985015168981,0.9999997326575072,0.9999689939501759,0.999997954017049,0.9999999934776245,0.9999999935548236 -रबर,rgb,0.9996942073225429,1.0,0.3334902556697556,1.0,0.9998963196497874,0.999949326024323,0.9977814038796565,0.8914533381866802,0.6031651632070387,0.0346475646452623,5.03908886021468e-06,0.0035902874129569227,0.0005991357226045299,1.0,1.0,1.0,1.4326214088309487e-12,4.1308017470958686e-12,9.730736420154496e-13,8.882896014014748e-10,1.1653547296649944e-14,2.18025672100173e-14,0.9997644830789241,1.9094423443368377e-12,0.9999999997156652,2.5737263855020414e-09,0.9999999890377479,0.9999999974557359,1.0,1.0,0.9999460474073428,0.9951449996877593,0.999539183818634,2.3787620908435148e-07,1.0,1.0,5.394208113347655e-10,3.8211196314003726e-15,0.9984113334798247,0.9331034251319046,1.0,1.0,0.999897481411149,1.0,0.999999997575002,0.8734920355272384,0.9973278668078799,0.3035579730065187,0.9999999964016542,9.251646695212683e-09,0.9999309550145713,1.0,0.30583411920674203,0.9877824046182282,0.9999999999995084,0.9909079300198278,0.9999986622886261,0.9999963989666677,0.0022421258853782913,0.0001440160362040855,3.857897652816977e-06,5.858271162362182e-15,1.0,1.0,1.0,3.8745204206028084e-13,2.496437354983632e-11,0.1522057865908438,0.7807828453879522,0.7558358753998325,0.9967018867892188,1.0,1.0,0.07823992917229355,1.0,1.0,5.80048963412434e-10,4.543825876103732e-13,3.534246299977553e-14,0.9999911692790628,0.9999997813993948,0.9999910159784761,2.0916302589968025e-14,0.999935765705601,0.8468606136308007,8.56259935920928e-15,1.0,5.654468932925514e-15,0.29657753809202403,0.9999997611215135,0.8485647037636636,1.0,0.9999997432155636,0.9999984604912917,0.9999858530475082,0.9999640898510267,0.9999999999999984,0.9999314165258649,0.9999956166055981,0.9999011486506338,0.9993959559472563,0.7450546406507156,0.8847392806090547,1.0,0.9996637017877815,0.9999606027056485,0.9999999125934841,1.1588128209653498e-12,1.5363471475869123e-07,0.7801802459213626,6.457700846901057e-11,1.0,1.0,0.04479142788566579,7.08533354383695e-05,1.9755683658090537e-05,2.1909798967582588e-05,4.203603374131705e-05,0.0038284896345099923,0.0002267983263044084,0.9948051315834817,0.0001892157218125347,1.1295222631502054e-07,1.0,0.024355082247783356,0.7072120954752957,0.00031888599776870374,3.851456088797854e-05,2.1075588163309103e-10,5.3507271152700436e-11,4.57584859603653e-07,1.1630791752543047e-08,0.9999657641502373,0.09257444810077331,9.909401179139879e-06,1.749851372472665e-13,4.699674770054077e-13,9.03749285101694e-13,2.172077862908921e-09,1.0,1.0,1.0,0.9953464518505185,1.0,2.4745934141336593e-09,1.0053306922015026e-09,0.000278126702008066,5.482061555798989e-14,9.207843593814426e-11,9.203372694804242e-13,1.0,1.8449770298935585e-12,1.0,4.346456740841367e-06,0.9999999999996028,0.00022974649377443529,0.0020682157024539192,0.9999999999998306,0.9999999999974101,1.353048046606839e-13,0.9999999999999989,1.938026860649166e-13,1.0,0.9999999999827889,0.999999999982838,0.9999999999793827,0.9999999996704023,0.0006603067462839756,0.00011845803060658637,1.0,1.771083000647816e-12,0.9999294090615798,1.3428427740217954e-11,1.0,3.2619694008673212e-12,0.9983241332873518,1.0,1.0,0.9999999999999996,0.9999999999996245,0.9999999999941354,1.0,1.0,0.999617616805385,0.9999598161755839,0.999999999973382,1.0,1.0,0.0001207655906527587,0.0014877383628771144,3.201380361802651e-06,3.584175931160737e-10,0.9999219748388085,8.669877151660198e-10,6.790742980513321e-11,0.9999999982546579,8.2751002806041e-06,0.0020476599553103055,0.99976774231303,0.9736836400417808,1.0,1.286031965040917e-12,0.9999999919811694,0.999999971598798,5.6987842093235436e-05,0.9438064648116625,0.9999999999992417,1.0,1.0,0.9999990197818212,1.0898361672614638e-11,2.9036364188101834e-15,0.999999999606628,0.0006154949519764515,0.9999999999304967,0.0005109968088951066,0.014274422002677969,1.0,0.5944131042249579,0.9993564415267733,0.9998138527836962,1.0,0.9951066443500345,1.0,5.036436534953148e-12,8.53162604198379e-12,1.0,1.792372606317837e-12,1.0,0.9945245515037441,1.0,3.170149151820302e-13,1.0,0.9052518679116366,0.9963438288472021,0.02520384961715138,0.04734269525726441,1.0,3.411132153823613e-10,4.10816641672931e-12,4.285323582560643e-15,1.0,4.954010245023625e-07,3.420421151800949e-06 -रबर,shape,0.0006075227902946261,0.9999999748056225,0.9554149753636701,0.998310304540754,0.9999999867752016,0.9999892110315007,0.9999147421330989,0.9226674040037451,0.7661672235612228,0.0006849475776629948,0.9999999999992819,0.9999999999999845,0.9999999999998952,0.999997822310761,1.0,0.9999999985352093,0.09272604411786434,8.246057774894903e-05,0.9999999999999991,0.9999999999999918,0.9998860225220161,0.0002861012094192831,0.9999999998465086,0.0006080067955890386,0.008821353077891392,0.004980611615947346,2.8909332365462735e-05,0.03661339003128438,0.9999300093418649,0.9999944723556896,0.9999583376951968,0.999920531854486,0.9999997840875379,5.0656621227705824e-05,0.9999904381784817,0.9998970936817955,0.0023098723152313277,3.28797113598445e-05,0.9999601647010515,0.9999999999999745,0.9999803791532769,0.9998857330491212,0.999953546406096,0.9999448934599169,0.9999022970842983,0.9999994262240236,0.9999243036990837,0.9999999756609302,0.9998567793464024,8.798600261067545e-05,0.9999984373982277,0.9998392838948641,3.972596211779968e-05,0.9999202602247291,0.9992983552875263,0.99999921011773,0.9999999997082731,1.0,0.9999999999998275,0.9999997801749235,0.9999960246439831,1.0,0.9999923314588877,0.9999962706869278,0.9996186160007989,4.3952040310815363e-05,0.0009704539270227997,1.8935599633373856e-05,2.7617986116657064e-05,0.9970152033640797,0.999974567571825,0.999870855455624,0.9999873409258256,0.0005915583503956431,0.9999999786195091,0.9999618384675821,0.052607635384815686,0.00026394436911442105,0.0002326396618998222,0.9999999636185273,1.2339681538481438e-05,0.999995512593233,0.15076282842593647,1.0,0.267447911135417,0.002868866360292444,0.9999957280607569,3.388599552007138e-05,0.08342405414857929,1.956238745121627e-06,0.0002188883951970296,0.9993901408565539,0.9999998872511652,0.9974534438797669,0.9999999492355115,0.9999999999999918,0.9998169154189671,0.9999944105014221,0.9999998517665236,0.9999999999999998,0.9999999999934839,0.9999611945027013,0.9997933885788112,0.9999940856392623,0.9999997545087308,0.9999997681817159,0.9999982024727102,2.8935395789054776e-05,0.15372221630089264,0.9999663801334777,0.0007914599135511923,0.9999868457151336,0.9999895579476547,1.0618515978851136e-05,5.97058454767994e-05,0.9994089438893535,4.272229970453047e-05,0.00011976112302479591,0.00017970702367391044,0.9999972046059328,0.9999999993552118,7.77772168376177e-05,2.3650305127872075e-05,0.999819912389866,6.7732359260571e-05,0.9999999912079492,5.072150622121419e-05,2.3906791612050448e-05,5.829734148155482e-07,5.115018780619006e-07,5.412082241822371e-07,3.89642428862925e-05,0.999625380089721,1.6499042661603985e-05,5.2943219232201496e-05,0.9999999949178795,0.0002587315435955197,0.9999792394380738,4.285077408652789e-05,0.999964125459975,0.9996719259715025,0.9999901349135806,0.99999492541768,0.9999987016391059,0.9999999999999702,0.998861810867129,1.0,4.2441234332155435e-05,0.0318661657371356,7.903570511841915e-06,0.9999801695490165,0.9999430788996393,0.9999213235359938,0.9999964902635624,0.9998203508257298,0.999999999807178,0.9999999999999845,0.042877057268826756,0.24804023433173997,1.0,0.0008697503849598886,0.00018108994051647297,0.9994671197376946,0.14070963061906056,0.33593070211131987,0.5294949805099635,0.9858162424509204,0.9999999999998574,0.9886743634327924,0.9985906327409051,0.9999999359676127,0.9998741071224627,0.9721461309898669,0.9999360397829596,0.9995851904852079,0.9999994362756397,0.9997850951651616,0.999752828171882,0.7149929281589739,0.006134803151784066,0.02846965471023916,0.9999954556556175,0.9996618777836369,0.9999999998767384,0.9999999847079764,0.9992335258427245,0.999479571349273,0.9999998332705777,0.9999999928361762,0.999999999997228,0.999999994370756,4.9669540249908254e-05,0.001250282882038111,0.9984475353840447,0.9700361551376611,0.9999998549019082,0.00017854286019918053,0.048664575938214535,0.9999723700256323,0.9999999999396603,0.9999714638414224,0.0894532493774497,0.2613150698006489,4.417457712521207e-06,0.9999644813714453,0.9999999976539147,0.9999623351814385,0.9999999999858908,0.9999999993322914,0.0008394473490051341,1.5303240626749895e-05,1.5103198881356048e-05,0.021797128549191146,0.9999981736721543,0.02126430071155732,0.19324257358214478,3.610215851595798e-07,0.9999999999914904,0.9999999659144092,0.9994218719549419,0.9999999174981075,0.9999992028639225,0.9998933885513414,0.9999999441101306,5.159392346618393e-05,0.9999985956272172,0.9992579607926677,0.9952176677231214,0.9997670727063556,0.9999999999984428,0.9999999997058782,0.35397900743037225,0.9999960436975905,0.9997611226172175,0.9999999993552118,0.9999911537310222,0.9998305997253083,0.9999977960907296,5.675967781075686e-06,0.859388265400238,2.3674490261767192e-05,0.9999960155816653,0.3301891918690366,0.00010212238661137208 -रबर,object,0.0021827751677164046,0.9999993695623841,0.038088149384317725,0.9994422212800528,0.9899895918182481,0.99996879776691,0.9995100495604294,0.24880574178814066,0.9060722688972129,0.00043844558693921997,0.9999842000466493,0.9999906642135322,0.9999956537786604,0.9999972254096451,0.9999999999999909,0.9999997196483641,0.003295139163819794,3.9309006416627266e-05,0.9988831800904956,0.9999791297916851,0.34266741623191577,0.0001599891100670325,0.9999999825796703,0.000264071989410803,0.7574049670466412,0.00041602680046203374,0.002519784493890859,0.7083128321359774,0.9998158039875137,0.9999826898611441,0.9999340171591514,0.7933884446618112,0.9999889178779874,8.900573994464874e-05,0.9999999321899157,0.9999873150656123,1.4392607288944825e-05,1.1742106213439915e-06,0.8641549187568407,0.9999999338160138,0.9999998797970509,0.9999185638310326,0.9999271101743015,0.9999936630583096,0.9998288688802913,0.9360171408073847,0.24389755233794896,0.9971036244235599,0.9998024645886788,4.7988890866816245e-05,0.9999922051029494,0.9999965831766356,0.00012619250599897277,0.9998913618117685,0.9994621590870444,0.9999652927766441,0.9999853639462194,0.9999999796856149,0.9997699297619312,0.9962390972872479,0.8958500490589744,0.9999999601805654,0.999999039124015,0.999914971731252,0.9999280888605064,5.262685313485983e-05,0.0001731357396438536,9.577874114287548e-05,0.000269518094291702,0.7828698651455767,0.9999962599932306,0.9999884911620046,0.9999998008995911,0.000435329210880126,0.9999988698192405,0.9999760471102005,0.0013085371315723863,0.00014123806753679863,7.82381326725699e-05,0.9982609036441679,0.0006707158980867667,0.9975269053034135,0.00031312054584912394,0.9999999511417712,0.08998677818441057,3.999978569261437e-05,0.9999936336893099,1.5170307588988428e-06,0.00031733595505638697,0.0002972395436712112,0.001984087499619925,0.9998474152870507,0.9999497273055069,0.9865719376430733,0.9999671552712824,0.9999994906083657,0.9999561693212705,0.9994842288009659,0.9999815293124368,0.999999976906253,0.9999797986934561,0.9998281321792567,0.9998192596257672,0.9999999715527689,0.9999664322194568,0.999988597212952,0.9999749123489688,1.6233426661189403e-05,6.461259894430092e-05,0.9999239525793768,0.0004239966742687522,0.9999843686583324,0.9999987122144928,1.0100149499640233e-05,2.0869871766633192e-05,0.5189865854398329,4.528554553622578e-05,6.934430038025731e-05,7.977950160709621e-05,0.8640752619465696,0.9977490037462511,4.1385186122978396e-05,3.9673451832952615e-05,0.999998339811075,2.7259312413605498e-05,0.9964129882723918,1.9653013539383112e-05,2.0331600042776716e-05,6.793883405562739e-07,6.280376537192577e-07,2.7293733896269623e-09,3.466104870117851e-05,0.9998169616010466,3.926781899256679e-05,5.967924334924755e-05,0.9991226250823921,0.00011874872037050567,0.10490918614981927,2.0443957061043207e-05,0.9999797591376244,0.9999931021517647,0.9999992919765149,0.9999818935935857,0.9999999373726195,0.9999934370291792,0.012521324279886883,0.9999999863919307,1.175019062026337e-05,0.00031464153379452524,1.566719471699788e-05,0.9999989857391207,0.36791530359825786,0.9999169010869738,0.9826362683172536,0.9998104141158528,0.9999388228789572,0.99999083586644,0.43965830043207205,0.9165277922537147,0.9999998206759493,0.4119142612100897,8.854665669111012e-05,0.9997617091158392,0.48023006108521343,0.9452396861190003,0.9839423030763128,0.9984522959858319,0.9999832648886107,0.29449798121150506,0.9998444842274814,0.9951536246397652,0.9998864596383809,0.007583118216411796,0.9999959535795595,0.04248091667161841,0.9999468580335451,0.9998797778020015,0.9999972590189604,0.9953525002944406,0.1439348126269891,0.22910480255512608,0.999998620271071,0.9999845423405841,0.9999998105412616,0.9999970368030517,0.999539131865782,0.9999753290430349,0.9999999389787397,0.9993874070381747,0.9999600775870087,0.9986337485283739,0.0002516435620705529,0.00010283687680934024,0.8446469124071339,0.02219439236336861,0.9999970093531614,0.00016796754960332505,8.018960845189106e-05,0.9999275519187111,0.9999997918734866,0.9999985876710782,0.00019749543863788917,0.8605331501195366,0.0002695417646039403,0.44031156600834714,0.999964699164276,0.999913370926248,0.9999999979814662,0.9999999999828433,5.118489733542685e-05,2.757330474189397e-06,1.6920671237851682e-07,0.7442935024186192,0.9531349247947246,0.27512271706686175,0.000738597895207385,1.0355310509353516e-06,0.9999999999863791,0.9977991520889098,0.08189124425947897,0.979225569713042,0.9999999311219642,0.9999879144502395,0.9999686940723849,2.5809818100135897e-05,0.8958008307968679,0.9997306244128616,0.004768510721427063,0.9999831378373355,0.9999994983535728,0.9999999947436689,0.005187278842789044,0.9999997115965827,0.9998321733452123,0.9978703834805457,0.8932187162393391,0.14980126941126276,0.9999933416356448,1.9148638859451042e-05,0.0044002584567337955,2.0798260327156056e-06,0.9999998312255464,0.03520909603139708,3.336992924909464e-05 -रब्बर,rgb,0.9999999999993305,1.0300597547950617e-16,2.209929075883927e-33,7.953170365581458e-50,2.0876230081755037e-36,0.9999963056891497,0.9999876910582295,0.9999999999856461,0.9999999996039428,0.9999999986068195,5.0854355836036226e-27,1.328807602268493e-30,7.10311214511984e-30,1.0664831869688237e-17,1.1104347958683728e-49,1.0,2.1434612356237164e-23,6.35096992114588e-24,5.063309604097275e-23,1.3713139769211017e-13,1.816680748274867e-18,8.348146061909995e-16,0.9999978902398703,1.1835218095413029e-17,0.00035712784898484905,1.722607795431824e-28,1.0,0.0002372420305469164,0.9999999999999998,7.152205123913808e-24,0.9999958753339359,1.0474736281636674e-34,0.9999886951879486,0.9999987837638011,2.641095067722902e-46,0.9999999999999996,1.420943833799057e-15,2.3266185856818233e-16,0.17596127144243084,0.9972065160610502,2.9303176631515224e-49,1.6267485803172974e-24,0.9999865002715873,1.324262555176356e-25,0.9999999982159973,1.886257425292259e-32,1.3205775001604977e-34,2.3558407972976536e-33,0.9999999997245861,0.005013931581426238,0.9999964281544348,2.4143355217259493e-49,0.9999999997535014,0.9999408493563692,0.9999999999985716,0.9988858562091202,1.3854533088527334e-20,1.3424471789067734e-21,2.379095487994286e-30,3.514159751404809e-29,5.1166170700687666e-27,1.693368826365462e-17,1.0,2.403226822059028e-25,7.177803104815142e-25,1.8230667332955104e-14,1.8269305970947526e-25,0.9999999998145412,0.9999999999726821,0.9999999998261484,0.9999666904396485,1.4562612929416684e-49,3.723547655870827e-49,0.999999999864408,8.323921576550957e-13,4.578756813403707e-24,1.4632458560869411e-27,5.977106062051657e-16,4.4109172671237205e-16,3.005284356390708e-22,0.9999999999999991,1.33886313751508e-20,1.0362121627478403e-07,2.9558201038473306e-23,0.9999999999667564,6.40412340855882e-09,0.9999999999999998,4.3370876103210943e-17,0.9999999999038478,0.9999999999999993,0.9999999999880123,1.0,1.4948467044905045e-19,1.6661855339489266e-22,1.0204438528267003e-22,3.466191407702507e-23,0.9999999999999971,2.7294605401153206e-23,1.6757638337258968e-20,6.044183752619158e-23,9.423107649789523e-24,0.9907940232995854,0.9964242657482452,1.3844389351511776e-49,2.1702951348844528e-24,0.9999957351353278,0.9999999125016769,1.0213673572132612e-17,2.110333753862862e-30,0.9968502317976939,1.2472698242060884e-26,1.688798545026342e-49,8.5443821599599965e-50,9.767549655614536e-31,2.1250852660288057e-28,1.7731969584423573e-27,0.999999820793115,2.550649894760924e-25,9.290310519890556e-31,5.97801536393361e-32,8.385088507317879e-35,4.312689943079334e-27,0.05552186570337356,2.685529960647715e-49,4.489902661095276e-30,3.983503352472213e-08,2.4498743629815877e-27,0.9999997386718696,7.064482796965633e-07,0.2580668758788052,2.3951806973517524e-15,0.999901682928023,0.9999975538646645,0.999999999859712,0.9999996795403777,2.9192347082475677e-21,2.0934969252054353e-22,7.920203426596185e-23,8.547868247305082e-05,1.446526848789525e-24,2.2457334472615486e-46,1.0,0.999969868647828,5.153356161677867e-49,6.0302467469515375e-12,1.1742681631117407e-15,4.743773581032982e-13,5.249984874387406e-16,2.6157395366651126e-26,1.3640430669040858e-15,2.9214078255056474e-49,6.826578887524724e-08,0.9999999999999993,6.744994717892496e-27,0.9999999999988567,2.578362790119329e-29,3.641673605702722e-30,1.6244560204575724e-05,4.112695654326051e-09,2.182236824097852e-21,0.002370736067378234,9.393389472220036e-22,0.9999999999988403,4.777458795600529e-05,0.0017957418085749015,0.11244312715060761,0.003199903102712264,1.1860562258893774e-29,4.6583904789416457e-29,1.4580067556338073e-49,1.1120242780718517e-08,0.9999962958698645,4.596453279781179e-05,1.0,5.098125202959581e-09,0.9999908847338468,1.0,2.0365129931974732e-49,0.09890807360567412,3.677420092235313e-05,4.0354621518162044e-05,1.0,3.526078214887587e-46,0.9999962621860679,0.9999955725863183,0.999999999993735,2.371492683864698e-48,1.0900851637601694e-15,4.452051534311252e-29,4.038666449256213e-30,7.513879281572916e-27,0.9981258283345967,0.9999999999997251,1.8700905754917956e-16,0.03816427206969704,0.9999999999221352,0.9999988521820292,2.915629885325365e-29,0.9999920043053511,0.9999455292227012,3.537678418890963e-49,1.0709957948707033e-07,0.005318771954219313,1.0,7.852361131322796e-26,0.999589111294646,0.9999999999977487,2.1057319590827358e-49,9.5583886213222e-50,0.9999999999999922,0.14652186655091187,3.114911184227316e-15,0.00017237048945884716,9.360792494660135e-30,0.597482659343594,3.388859621597528e-28,1.2494341519097456e-30,1.0,5.405815276839909e-33,2.041598277223069e-35,2.3582841412004662e-35,4.7543563814421995e-49,0.9999680360321742,1.0900357866856231e-25,5.789481453906527e-24,2.68188458387638e-24,1.0459711692175443e-16,5.0692621543663285e-23,1.0,8.643103526664552e-35,9.551415690434477e-47,0.0026011432693313157,3.6402132085209315e-49,0.9984427077881045,1.03400829852725e-34,4.095746494853607e-30,2.376954375743312e-31,3.1557284394961635e-25,0.5949434302271023,4.262057917074855e-06,1.521339065208371e-14,3.610506077367333e-46,2.1088406155076496e-25,5.416891419980895e-26 -रब्बर,shape,0.9896216054535949,0.9905914250711871,0.3128824393647012,0.32221318842671104,5.2236601105639876e-06,0.9999900136107466,0.9990358639503899,0.9999613588816775,0.999935594300893,0.9999700651774798,0.5943280415577499,6.615442667181145e-05,0.31023914622354815,0.6689550449714828,0.9996852686232636,0.9999984059419236,4.819172177948662e-05,1.2474219468501813e-05,1.845503533509896e-05,0.2649663484180594,0.03186706652613021,0.7875867471782515,0.9972410753260871,0.980901190204127,0.0044730031531305834,0.9653302425151398,0.0002984209489932017,0.002405872547960331,0.999541322018467,0.9999990318748841,0.9999251290742138,3.0808463179067373e-06,0.9999983265767666,0.001631131580241865,0.9452726251676837,0.00023719159619227167,0.00016575000854178782,0.015739368390601974,0.8468270155499595,0.9992611106500041,0.9998596907619158,0.9981121838728964,0.9994020262328901,0.9999762196573246,0.9996307673209957,0.0001427795506742778,1.3597911898572728e-05,0.013851369506986195,0.9981833791754474,0.0007580814887532179,0.999917814572669,0.9334048338087279,0.045591090927419226,0.9999767198784346,0.9998075256266661,0.28901483971416503,0.00028029417982777994,0.00021663737114152874,3.086775879841653e-06,0.9999318815186391,0.9999511087368216,0.9997909701779389,0.3333919376113874,0.9974359824103892,0.9999874951872181,0.9700049757229164,0.9910968445815528,0.9910101470383259,0.9635986062628855,0.9997954145567362,0.9999999450536409,0.9993650965615883,0.955434774488048,0.7577910451157339,0.9999279824760048,0.9981301043313084,0.9964312220014058,0.8113267094846623,0.006865767145662233,0.001134824609308965,0.2698203468787057,0.0003301872428635516,0.7881760077401941,0.0002703151329115468,0.9629173665238348,0.938378472716948,0.9999718407200261,0.06138044612798543,0.5324686789901999,0.9407085069576605,0.771552443071567,0.9996481384264242,7.973921097386353e-05,4.3904211965429745e-05,0.00012722117554868757,0.0002131774582661237,0.9999006955541764,0.00025977517532277313,0.0010340092577470145,0.0006186756894857908,0.0008309007027521426,0.9997986331735208,0.9997345545565615,0.999751419599868,0.0006579109934425894,0.9999995010821032,0.9999071527183637,0.9064873551563714,0.11307639549251487,0.9996195016409714,0.9991849733381685,0.963846247562342,0.9986841151441034,2.4496903311039832e-06,1.7070292759715895e-05,4.687554186501243e-06,9.638766053702103e-05,0.00015070932171163878,0.0007229658681573808,0.2596840939807026,4.767423109641851e-05,0.0003069120169942327,0.00043454298490041394,0.9999554856338252,1.813175482337049e-05,0.3391189762433237,6.030359788912961e-07,0.0018670735813034408,6.589474072959627e-05,0.0013610584649146852,5.629112912664402e-06,0.0001646700955571677,0.9989919566734604,0.2434474020137926,0.0028863112314270797,0.9999980180216439,0.0001524124992091769,0.0002131807744650945,0.0006451794324458144,0.9999936335048636,0.001697760738698184,0.7758507099992767,0.9999478539416602,0.998659345607256,0.0013803692268517659,0.9983735039194163,0.5761959191398861,0.3088402191013525,0.075357166989899,0.7624589802464004,0.9198810712350931,0.9996295533985012,0.9995898278603467,0.9997580300386009,0.999937056350135,0.9999796913826204,6.615442667181286e-05,0.10888140839849811,0.13679330950922308,0.9987213181572752,0.0004474748755965487,0.00014014860045228193,0.00016305411529246927,0.0007607311463061667,0.001223590361531972,0.025101681635024305,0.8327999251823163,0.9974516681240645,0.39316874156206516,0.9886578846120675,0.7888959614235304,0.9999177295603762,0.9991337087824641,0.9998129661977747,0.9665607451603343,0.9999738706368744,0.9991687691555342,0.9995075156433492,0.003315482482260414,0.00022439304329298698,0.0003016369828559399,0.16138033330943363,0.001694012201267007,0.995920545596007,0.9999997032575322,0.9993685198068591,0.9930715144603701,0.9999999849744481,0.9999995145697445,0.00034341020655028886,0.9995150717898372,0.07477418085207714,0.1241161031300985,0.9999892803986835,0.9996188867877694,0.9997439098486169,0.006153721674259511,1.1927794882636247e-05,0.9999003820212291,0.9992808763071005,0.999035609804822,0.9983140141739703,0.0872049835152376,0.0003226135980649185,0.00017540353448987188,0.9999191371004013,0.9997501824809879,0.9999727552372861,0.9999699995459848,0.19118475656666192,6.642238869140244e-05,0.0859618383821213,0.0022283903250853642,0.9884237707578226,0.03019859680956346,1.4651821141869277e-05,4.50239884498111e-06,0.9993181758364199,6.57662173972619e-05,1.1642346387642097e-06,1.5698646251319817e-05,0.9999957510979988,0.999999892579742,0.9990644800617015,3.451670985764322e-06,0.00016011869811695826,0.9707484504064781,2.0206864522697765e-08,0.9995463562033763,0.00016563514761652425,0.9952474883748892,0.1868376901072672,0.9340542043025264,0.9999236693776278,4.767423109641817e-05,0.0404939499474362,0.0016138974386827084,0.9999944285977869,0.37458689540026874,0.92122823343921,0.7288668255930123,0.768345457767111,0.0005199587908223142,4.435870237410873e-07 -रब्बर,object,0.9999689833020599,4.839304734201858e-06,3.5782197738146255e-08,8.251245118718072e-22,3.4411712263482237e-07,0.9998940680766971,0.9999460943128916,0.9999685992645936,0.9999758010697682,0.9998768622104404,3.375232024391783e-05,1.670405256735967e-06,1.2831070932204546e-06,8.075182405851698e-08,1.4112086131725175e-16,0.9999999998325075,2.11499312277036e-05,4.891662321995422e-06,0.0032321733071955815,0.2991653453355627,0.007577684065158975,0.0008229201851770808,0.999996629755841,0.0015354491989393352,0.003986679897314165,3.0598366269947294e-08,0.9956557085154693,0.0008190975301153165,0.9999950888693356,1.6557646067095515e-06,0.9999022088412084,1.0218731146108241e-08,0.9999957893179722,0.18310434638027828,4.067272709319298e-17,0.9999961233737816,3.959470406204933e-07,2.319984478067066e-06,0.7384294882303456,0.9998746728201503,3.3071817788205306e-18,1.0709537170794338e-08,0.9996579617377471,1.711402154692301e-08,0.9999792222448672,1.5860370677485534e-07,3.6067986761027734e-08,8.728039814054203e-07,0.9999231788875005,0.0004839730362508036,0.9999701637252632,1.13105108200762e-19,0.9082955496054114,0.9998602072970397,0.9999864543396499,0.998007372342359,2.5134358066247127e-05,0.00015018461052256432,4.5363350322192526e-08,2.8231690216413417e-06,6.8207278941647694e-06,0.975727194679507,0.9999999986185772,3.135112232672141e-08,5.504252455465168e-07,0.001047713722961272,1.0752452500136024e-06,0.9983283450979239,0.9931241877088606,0.9999583564154285,0.9999992348927628,5.554540202422813e-18,1.063722308166886e-17,0.950431622352632,0.001218267834920253,2.66597831072918e-07,5.688794133224996e-07,0.00024128131220410302,1.1582707829086753e-05,9.172131430006992e-05,0.9997214045093965,9.447341733721252e-05,0.01187181492832047,3.771346281910253e-05,0.9947043369030613,0.010151230761530258,0.999999999034968,1.8107215908255639e-06,0.9994217870585975,0.9999821751164862,0.9816113660706326,0.9999999113654466,3.9577298414235716e-05,1.8142183736009317e-05,1.2304351470068798e-05,6.354106159723424e-05,0.9999993932959118,6.96057656909273e-06,4.9517332918932785e-05,7.286969740304769e-05,6.693703470286704e-05,0.9999861474983311,0.9999629711041155,1.9694244994311187e-16,2.7115610603381588e-05,0.9999951753820103,0.9999877141297807,0.00027442234699818157,1.30994628382303e-10,0.9998852525810633,6.379513426359345e-07,7.202800637490244e-18,1.1399480478848479e-18,4.564165677215285e-08,2.4282268481271694e-07,4.362321342638293e-07,0.06118576966353493,7.655670079129194e-06,3.6220467974777925e-07,5.03570935547537e-07,2.771939431740957e-06,4.371580723964849e-06,0.0005518050423536054,3.202984269758812e-17,2.0407405373186443e-08,0.72623611181505,3.0706865928919946e-07,0.18454987194890485,4.248515359179284e-05,0.0027000616871532936,4.2344437160204954e-07,0.04262046936171771,0.9995837376211593,0.9251609325534053,0.08681744093307311,0.10443399588869375,0.00010090009323323275,0.00011640266804133806,8.841887058268666e-05,9.536104607374613e-07,4.379691128377626e-20,0.9999999275831074,0.9999029392881613,5.845520138151633e-18,0.673764466250765,0.015302694172649843,0.5150091127375517,2.0112473299845395e-05,1.2036450463760766e-08,0.0002741674568157449,5.736368724518815e-18,0.27655806756548007,0.9999999955409753,3.116385359045848e-05,0.9999890850072554,4.3215135965710525e-05,2.3435630853962557e-06,0.0003058991402309777,2.713587781735106e-05,0.18732090481063038,2.0782880400451928e-05,8.07586838240193e-05,0.9999895174593374,3.458830974163722e-05,0.0005075704357694945,0.010903810535912996,0.08155881843208934,5.262884165204173e-06,5.2931863402443604e-08,1.8394749762872443e-19,0.5442357758538967,0.9998659466661245,0.7430496514863545,0.9999999992449802,0.11246855908328686,0.999985818987057,0.9999999636815706,2.9893601611699436e-18,0.003837303464479666,2.2158845555328436e-05,3.1638523005588786e-05,0.9999999226288327,2.793350038704023e-20,0.9999935185170553,0.9999952684110871,0.9999656294527927,4.689299913908199e-18,0.0032087158448294594,0.00010840563059387125,7.093274224456106e-07,5.302078796368146e-06,0.5123655527547525,0.9846168221486716,0.0737477225678974,0.9196374301618117,0.9999986763234106,0.1687314327098909,3.894864674534448e-08,0.9997147901733329,0.9998921063298463,4.18023681239571e-18,0.06555405912613384,0.0051002670534700395,0.9911038152128534,2.910430705175617e-06,0.999874918729751,0.9999956718479242,3.7955179999454305e-16,5.1248877739426285e-18,0.9971066882253747,0.0007025923983385921,1.5751111046817665e-05,0.0006453241077161038,1.2221874175959385e-07,0.004082623395655056,6.520292419755816e-07,1.0420140291568551e-08,0.9999999999906177,5.598573633613961e-07,1.626225777822895e-09,7.157634763874137e-07,1.6327548958922668e-16,0.9999990811831432,1.2793323981844524e-08,2.1197660640534127e-05,6.292029570706502e-05,3.0829688401449914e-07,4.345058859335133e-06,0.9999999997223701,0.00013943382832541014,1.9911969699764284e-17,0.07580620371831442,3.630256060416501e-18,0.9998962993746945,2.8505193738021287e-06,2.715020655920169e-07,1.0464198409271911e-07,1.4433882325871123e-06,0.15457195485888853,0.038005048752161,0.00013809768834987165,8.064916912701652e-17,1.1462017354421876e-05,3.3931077200995537e-07 -रह,rgb,0.036486292705692154,0.9840015080671126,0.9909186831151753,1.0,0.9999107046049545,5.816079927798471e-09,0.9120555665593976,2.5456314627455046e-09,2.5580072899390373e-09,3.0760545414246605e-09,0.04225265673655265,0.7192109079257764,0.516120912364006,0.9952819260692495,1.0,0.9998487404845653,0.007826287926347672,0.009635732256012835,0.005519184387849268,1.3250865747863803e-06,0.0003019669544627726,0.0065014634299652985,4.938562923480891e-09,0.26565344007603076,5.184253174777336e-07,0.9233391559999513,0.12486091947289418,4.2265664714249997e-07,0.999210587201911,0.9986326427369022,5.858420762921663e-09,0.9985510206752511,5.615991206885091e-09,1.3915945370281873e-08,1.0,0.9998141089035992,4.216481254662384e-06,0.0008159152396427839,2.8459516223994057e-08,7.534044391044713e-09,1.0,0.9788582971353664,6.363130901443574e-09,0.9999238289549663,0.9957608539708943,0.965106212207817,0.9982864119769438,0.9905954250877765,0.9902679097010271,1.9169885268713723e-08,5.667884714391401e-09,1.0,2.7389483944878887e-09,5.440044292033123e-09,0.9986854975129418,7.711906910940064e-09,0.001960977437081819,0.0035602425683467723,0.6523745712122296,0.32140087533139133,0.04231040198236828,0.00021377251014469302,0.9999133992587153,0.9746562017401493,0.9986851152598979,0.035717121898603904,0.6767438698237839,2.9449367168390515e-09,2.604189091417934e-09,2.5122042602295774e-09,5.54383275903625e-09,1.0,1.0,3.2003679296933297e-09,0.29623682067171747,0.9503624802148315,0.8956906646975195,0.07106183151283235,0.011004689352868087,0.005111212675179762,0.0773351172427375,0.0015473232823719047,9.621951359090797e-07,0.008518594582405848,2.5303599282435256e-09,2.10020239948566e-06,0.9995168139097769,0.0016648226046959017,0.0025113751150184173,0.06540022398683908,2.6182077680032216e-09,0.999931761571144,0.0011912186382165189,0.007726118872499853,0.006830408204751321,0.008672850057432667,0.9989312328447019,0.008677603572782869,0.0015843511374170084,0.006386454979670984,0.009589060079733253,0.9020429101193954,7.481812421855492e-09,1.0,0.01689128625037829,6.016341832931265e-09,0.9946516605298203,0.20873753936223172,0.9727395458515462,7.04951638550065e-09,0.5358963331859379,1.0,1.0,0.7496454198888687,0.1620821460139928,0.06624085869231601,5.670195877426202e-09,0.008417428755244153,0.7574653248630695,0.961847400613491,0.9987618228539151,0.04640957187045512,1.3331774833512022e-08,1.0,0.5749172819143805,2.819014078343687e-07,0.05943322345058162,5.044318136161e-09,7.035042817567724e-08,3.736126512527249e-08,4.1235999929503665e-06,1.8425762734159715e-08,5.727151483158506e-09,3.1376528147389278e-09,6.221604877487726e-09,0.001266738453051018,0.0034303852386841924,0.004276480381514648,3.247797298743139e-08,0.9993074877847856,1.0,0.9993887757246523,5.3708108616866425e-09,1.0,5.537305721503687e-07,4.404625287925999e-06,1.6072311788236365e-06,0.015547860151649972,0.8111764759632739,0.0971805787160918,1.0,1.6873191151202e-07,0.9996037365879024,0.03736864526935076,0.9987008239510043,0.35519697159894653,0.5988559507033246,2.7056766230672334e-06,1.1263152348888224e-05,0.001831023146388514,2.0381540514593486e-06,0.002410941501391322,0.9999774360446736,1.1299886269935184e-06,5.491107579268018e-07,2.408109544373741e-07,3.328367218033722e-07,0.4479631719670734,0.29136667517079706,1.0,2.1679589665767209e-07,5.6807978008881395e-09,6.089720235388659e-08,0.9998823262278652,2.2183349930869537e-07,0.9141776102447832,0.9999282132442121,1.0,1.0781840280518433e-06,2.0356614597647885e-06,1.3568970679359694e-06,0.9999164198776755,1.0,5.069024408894617e-09,6.0319620098788734e-09,0.9956207157916914,1.0,0.9257391649013712,0.29612374303523803,0.586639788127008,0.03578409602578326,5.611630799015301e-08,0.04973905191592511,7.2671697235877265e-06,3.279001579623317e-08,0.9888884596621048,5.819215746699198e-09,0.3393124051486336,5.671161977812126e-09,5.1619705851469595e-09,1.0,1.7139688443882608e-07,2.0207977726226737e-07,0.07662289858298962,0.013617122729170796,6.117630286390181e-09,0.9986541373631107,1.0,1.0,0.09326771654487999,6.818951570820514e-08,0.0004268379786838274,5.735057828914994e-07,0.4792138235853403,1.3304800310974506e-07,0.1349698634392944,0.7231634773799732,0.9999371903928711,0.983013622984728,0.9995177981235038,0.9994525306753899,1.0,5.387549380388744e-09,0.9698904911309159,0.009249399272224328,0.011872203156814668,0.9837744903618633,0.003913520851725509,0.9999363800836036,0.9987373344231564,1.0,6.169219553575093e-07,1.0,6.878106511120522e-09,0.9985541303347107,0.5863494194186321,0.8658738742110406,0.9996024526941085,2.3181453358457428e-08,9.298970822582637e-08,0.0006784178787771097,1.0,0.008627588798427063,0.01517529992688839 -रह,shape,0.00016734691321716808,0.41630124661725076,0.9999719156219766,0.9576305915907636,0.9999843253191891,0.9999008550141937,0.999995057680203,2.3345761641385534e-05,9.332946267912723e-05,0.0014343893482756298,0.03585567312157796,0.0014530519550891895,0.010877365749342022,0.00026729903139281085,0.11836341568018559,0.9999408063649778,3.681463026258821e-05,0.00019252599022313754,0.000901649163938554,5.205820272696606e-07,0.00022831211802791065,0.9988503987180979,0.9988071579244556,0.9999990127898886,0.9991636983856849,0.9987854382171977,0.1959478368732982,0.9927432905977049,0.9996145455179162,0.9999358965144816,0.860671781751206,0.9999916762276623,0.25490553907295016,0.08422698332460374,0.5675191948442788,0.1721453442825247,0.0014511067461711637,0.007589298179726809,3.7563192284562197e-07,4.9439081187276166e-05,0.001074137352982005,0.004218732030316112,0.9988262826052792,0.9998294247055833,0.9998813867978394,0.9999989328343784,0.9999984453504058,0.9999958489582671,0.9998781885729336,0.1499670518383805,0.9999984907075388,0.9998135927702154,0.0003696259522213069,6.475137365151575e-05,0.01704177149045104,0.3599367270045584,0.002795391896486974,0.08245909481012607,2.2583518518634215e-05,0.5446806389503243,0.43514268982537413,0.028909700153582484,0.9932865567200144,0.020508085646814687,0.9996692202943088,0.9998851287542528,0.9991857475669115,0.00043007632800832086,3.587428355340193e-05,3.4357186972334564e-05,9.320669678514918e-06,0.143865895830318,0.006803421131389942,0.002504790315463103,0.6949584597250011,0.02279775460020906,0.9999246912758942,0.9996989362846459,0.9943493340405434,0.9874393235362251,0.0018794738550073663,0.02024063003454647,0.005092864316120394,0.0024544287332801287,0.00032580536039613067,0.0004005898065188507,0.9999799393600101,0.06105353093665057,0.0002168068120857508,0.007750271418179212,4.262497706104697e-05,0.01413259457472242,0.028572222260015646,0.05234924007838003,0.10270402705946519,0.006966233153937183,0.9998913064379393,0.017599271369144784,0.026160292482124863,0.05735662578960332,0.9406346700354044,0.009011385650549666,4.8801878856514984e-05,0.003512691419777762,0.054847493026770805,0.9997223993638201,0.1408662445229581,0.9999974287562189,0.999761746927248,2.182972012271167e-05,0.9986264996170842,0.005129199550114769,0.6283699666039981,0.9160270407957802,0.9995111037330598,0.953025291495972,0.8924194758591166,0.8685439097538109,0.21531370287615514,0.9822956445355564,0.9999894199647658,0.9971364016377463,0.2515162653860272,0.03271798669851545,0.9905022977068427,0.9999009459908699,0.8281143320117389,0.957600082308622,0.07997613018167402,0.05708298072641611,0.11524134191190512,0.1987487760419006,0.9137255377774597,0.0005560351238006828,0.7229418420103427,0.08592965424519314,0.00013358791930905415,0.00020555731684835792,0.09668364357034097,0.9997848350007618,0.6004448199719388,0.19713744518562318,0.00011467202523139404,0.058613050719769244,0.465175190537672,0.9999867973152456,0.0003262245077855072,0.9883081932955877,0.9998221332635261,0.9992490693055277,0.0618286411331679,0.00011274671125263072,0.9999749637279423,0.6926844115219836,0.011543614858395994,0.9192048962397861,0.0014530519550892023,0.9993705482322877,0.7287586315846782,0.003703143315282155,0.43647661721912434,0.0028753325969781557,0.8743821508175442,0.9308964873939392,0.9876006923519454,0.9986346769508662,0.9999397629551868,0.32995824789356687,0.9661230076263623,0.9999774132812945,1.9775110095914417e-05,0.9998924057012347,5.808609388611046e-05,0.9999714939260324,6.071042558572729e-05,0.9998632643228643,0.01518546801770034,0.8569155459427216,0.9118080507586894,0.9912554857442131,0.9967284557781424,0.16140037294139906,0.7153024613171667,0.999936201998146,0.9999741015715483,0.9992752346145226,0.9992726393009632,0.9973576281132283,0.99744395530499,0.005335506087685339,0.9999526700442595,0.0007306775849380741,0.00019682629595343148,0.20449884391324905,2.2858193510413148e-05,0.9999256492486543,0.8045442284077371,0.801534327268184,0.9999870727994976,4.35849577536772e-06,0.99939281796208,5.380754057668605e-05,0.9335595053199319,0.05779954393084832,0.6311598437745758,5.5537131651518165e-05,0.11327295184968572,0.0001499195090242423,0.0011000211735384532,0.00028830703450638355,0.4661488593082189,0.00660933453755093,0.9992507644984676,0.03952365743995243,0.9820043441433304,0.9497083767819926,0.9950663417355556,0.9999771258004506,0.9999988732241663,0.9999744244168023,0.999994048819077,0.1319384487172698,3.415336816309679e-05,0.002020619898200969,0.00508998486164352,9.63499616391446e-05,0.028726132900644873,3.5309970025432805e-05,0.964043493217988,0.9999999545291433,0.0884302195383096,0.0026631854110564655,0.003053054498374241,2.277190061365973e-05,0.9999894199647658,0.9996222930352634,0.9995773221552867,0.9999385233797432,0.001021909322767272,0.0008444319573735715,0.024665496951348467,0.9881924904646046,0.9990230295190321,0.9993460328969255 -रह,object,0.006023637604928659,0.6411638202778824,0.9999851785275663,0.9999999129255519,0.9999910189551124,0.9505779887404702,0.999989566302268,1.5426280653506214e-05,5.274011399101663e-05,0.0007000182270061045,0.5221245998854576,0.11211370898046095,0.4686895604341307,0.0050196615769176976,0.9999963161248983,0.9999356682798984,6.920132586548427e-05,0.00037909135888628074,0.006444197943762363,1.401236190971597e-06,0.00012525383112184688,0.9995622110519116,0.5268063345514792,0.999999158006061,0.9306820523452319,0.9999208481516726,0.5091128467549835,0.8281620204673433,0.9997179204045479,0.9999469577445536,0.11448368612425237,0.999989927620783,0.0014739017285950735,0.0400475660357549,0.999934122310488,0.2823116503048419,0.0029192197949934433,0.3652049209345263,9.691644920092587e-08,1.43496982666184e-05,0.9993836107724443,0.06825889511155306,0.7878703860405473,0.9998916217247671,0.9999062903795966,0.9999986265464355,0.9999970310149311,0.9999978327149732,0.9999157470110566,0.09629809251820713,0.9982507541800643,0.9999999971946527,0.0002981696556187327,1.2345428459848121e-05,0.3104278399254686,0.0015227904861810206,0.008974434149593683,0.21524356328920566,0.007090594612199025,0.9728202120962192,0.9438543854116285,0.061521300457377324,0.9863597148720901,0.31286050756356626,0.9997594939425207,0.9999496167555545,0.9999458642585883,0.000262185629490904,3.356145920519631e-05,2.143672718415161e-05,1.4110205483695293e-06,0.9999943917544583,0.9998352476330552,0.001153888190953443,0.669934609437796,0.25993748733777744,0.9999918785805614,0.9999131270208158,0.9989401860845063,0.9800640951813201,0.03311750184712377,0.024728023482920403,0.046375459949669635,0.019983548311935644,0.00021688353937989444,0.005527313521132365,0.9999742896168213,0.7531236111378278,0.0033388880003251786,0.06829331523164364,3.819547368492871e-05,0.2484027882310357,0.023097429877781277,0.08229100382922097,0.11000969142333086,0.03995330230686054,0.9998942943882073,0.05569210327715708,0.07896371144947684,0.17265373438062304,0.9584457842370492,0.029567657711836805,1.2525473976990694e-06,0.9987067382455205,0.17552392874313,0.9492010257758361,0.7257174935658153,0.9999980321281271,0.9999928144519274,1.4814178563291524e-06,0.9998967504477277,0.9994576497725826,0.9999991461020648,0.9154659398809619,0.9992274272429459,0.9536444921652097,0.36237544953545664,0.8251522241147312,0.7971800230313256,0.9989481291290818,0.9999933720504879,0.9895144284410922,0.0986050787580761,0.9999425843584507,0.9801292121583376,0.9819449289333301,0.8115671931292688,0.5966505593144772,0.09117611894659093,0.068989529334334,0.09467001282925891,0.10594463499641668,0.12256850053048561,0.00040460919319320286,0.20551476956300646,0.03508656724961043,0.0011186213092197071,0.00018708341724258708,0.09836259829237402,0.9998533253180202,0.9999719520097201,0.3134876917040725,4.653415457492485e-05,0.9999860181422456,0.1525556888995986,0.9998575545561006,0.0004246029046313117,0.9985769985173387,0.9999868611922065,0.9998237322182996,0.9999799819514723,0.0007777396885811483,0.9999711486070281,0.9672950614048238,0.4441162939745762,0.9952289509873211,0.0980082899555118,0.9819303686686361,0.35589840852130383,0.008339070675200951,0.07351689300122473,0.003058107633198554,0.8791645259285421,0.5997285572726194,0.7661087148286823,0.9081327628392225,0.9915220207550391,0.9580875831196872,0.9981538914049255,0.9999999995413624,0.00012191368639450765,0.949692953966411,0.00037509503590768897,0.9999659081099209,0.000535680073829541,0.9998934677341567,0.3246092128067918,0.9999997878940269,0.3680833722410665,0.8824084996648136,0.9218264607120356,0.3504738827067647,0.9999805795559988,0.9433392615549047,0.9893176269521705,0.9997623589291379,0.9999999780828492,0.9947209104150632,0.9996662030180852,0.2591568189084029,0.9999755801641832,0.0018027911520631112,0.005722049409879977,0.05277327914029275,0.00011534426398797456,0.9999355061420278,0.26558015253212336,0.8752962487430321,0.9933362660141316,2.523658315159305e-06,0.9999999911907641,0.0007392328608652034,0.5244986589126932,0.2670577161449587,0.6749618733748945,3.947460965821352e-06,0.7469857896290701,0.9932941460177938,0.9998763301351626,0.0106870505425229,0.40422721679974394,0.264141761008776,0.961658254130096,0.7952657924483576,0.7256397294506417,0.9316658894228397,0.9950632289852936,0.9998794930926844,0.9999978692833158,0.9999796508930405,0.9999907093379041,0.9999827825542358,4.312854170819154e-06,0.08973719506786905,0.010105332992043168,0.00010201270980437119,0.10652562097597622,0.00032109108639225177,0.9893276588404339,0.999999795509258,0.9998587195711188,0.014666708397383217,0.9997013968454301,5.469278408878708e-06,0.9999929487552817,0.9998391515921291,0.9998686621477806,0.9999598809612226,0.0017188787498299187,0.004924300396419743,0.5191423718283533,0.9999984846930718,0.9937654456977332,0.9985346103124161 -रूप,rgb,0.9995929327539789,0.9999999999766871,0.13806420661585767,0.008327043357111128,0.027239841852036453,0.9999999999732738,0.8468403866304574,0.9999999998740932,0.9999999997995821,0.9999999992893642,0.9296190072527725,0.6143384328380379,0.6928197812043378,0.9999999999655194,0.03778669289053532,0.9951578483263024,0.4631298960656716,0.490009241366133,0.521744836137669,0.9999664412772721,0.8379294438400634,0.20691808499865544,0.9999999999643727,0.01697708801554237,0.9999999999389655,0.005124394406965628,0.9999141645325595,0.9999999999063718,0.9964021711410522,0.9999999881274914,0.9999999999726095,0.12847895544432933,0.9999999999514402,0.9999999010845273,0.8699480855531562,0.9934274976656285,0.9998801842369227,0.5661634177410265,0.9999999996818698,0.9999999997301787,0.016574870520464448,0.999999888388061,0.9999999999644995,0.9999999789248533,0.9219719130207006,0.5746678210962308,0.17190607213514614,0.13745979661379257,0.9601874956009007,0.9999997056467622,0.9999999999714981,0.014813440076748223,0.9999999996905671,0.999999999879325,0.9756761168822318,0.9999999998468767,0.9999979138472328,0.999995014794017,0.6541078085476242,0.7692230120332582,0.9242501890639923,0.8545634832127121,0.998487403680961,0.9999996516037429,0.9999999636439276,0.09212929232113423,0.007280936547010835,0.9999999995663309,0.9999999998366658,0.9999999998387852,0.9999999999157667,0.00873094201383594,0.015689437123765318,0.9999999994114954,0.9999999999931553,0.9999998898313339,0.0045836591875936085,0.05008488288964931,0.15010781331874562,0.9999907844272381,0.9998826324224804,0.9999971431790888,0.9993850935111281,0.9999729674650675,0.999999999860691,0.9982910319348459,0.9961424095563631,0.41924216118149094,0.9996599942810739,0.9998993853236696,0.999999999854956,0.9996904705327949,0.9999992037514026,0.9999916099693638,0.999985945542288,0.9999767230017378,0.9939353911486312,0.9999719430171589,0.9999976208183133,0.999976991468823,0.9999420280428373,0.6049334463683538,0.9999999996819036,0.012566789295978207,0.9999139027411742,0.9999999999743332,0.8453205926091527,0.020164326094213553,0.005857096427463765,0.9999999996245752,0.017791561837386147,0.011679567768738769,0.014242564638037823,0.7423076230316416,0.8682932679084969,0.9247270718468585,0.9999999891208374,0.9920656918539916,0.5713128734995143,0.06764867405497299,0.1099349944656193,0.9717847470136536,0.9999998993276761,0.010200088870555953,0.8407429768927758,0.9999999858869038,0.9687086293342262,0.9999999918284975,0.9999969670059274,0.999997300613947,0.9999834852674729,0.9999996964062232,0.9999999999764355,0.999999999453423,0.9999999850257477,0.7391882827970749,0.5853316348301536,0.5794571656527505,0.9999992638010973,0.9999999814414314,0.8326897246588175,0.9993113630550348,0.9999999999096987,0.012334363852772237,0.9999893216935423,0.999895731673282,0.9999989652068259,0.12327805173924636,0.005253346982692027,0.043507925016298146,0.009937100501503088,0.9999714288717331,0.9938759124820503,0.9348983519033207,0.9767899503872316,0.7667660001798086,0.6986653313605798,0.9999999999637583,0.9999999996862097,0.6448290293152042,0.9999999999935132,0.6059123883207121,0.9198001793935539,0.9999999999418225,0.9999999999710043,0.9999999999861651,0.9999999999584428,0.7527528050474901,0.7837023128392083,0.012242011766547715,0.9999633795802713,0.9999999999712574,0.9999939188838363,0.9973305774879077,0.9999688582165962,0.853460834822046,0.9997883594210281,0.04392488904838726,0.9999999999971885,0.999999999965459,0.9999999999489206,0.9943949231024757,0.8845973706610435,0.9999999999581004,0.9999999999741265,0.9773172505550634,0.010059627514676331,0.9999999999814388,0.7807822300839693,0.6889100965412107,0.9321302326732747,0.9999974907334038,0.9996174279488401,0.9998224868158525,0.9999978380274107,0.9711734565669213,0.9999999854278636,0.8696175027701731,0.9999999999597011,0.9999999998561875,0.011434076439092307,0.9999676168080907,0.9999999999361262,0.9999344755806769,0.988301928816584,0.9999999997891378,0.9732368937571007,0.010894184509248657,0.0287373263248832,0.9997809770926609,0.9999921668532192,0.6936736670514764,0.9999999999262108,0.7247124481784453,0.999999999988928,0.9355065642441317,0.7008765562432385,0.9994637832202169,0.29205115027840345,0.08144030880150105,0.12626746028518848,0.012531439773642442,0.9999999999081235,0.9999993960348874,0.5151035775487038,0.4915214158992644,0.9999999999766822,0.6489232033681724,0.9995051129114016,0.1103408906861909,0.8595309269322601,0.9998043082218916,0.013278709855355682,0.9999999997237248,0.13781350160428057,0.8358104948435279,0.5771989742084399,0.9999999699283821,0.999999015521301,0.9999871186127277,0.6098739882199524,0.8533869961187216,0.9710170887851993,0.9709560661872947 -रूप,shape,0.999999826512015,0.9999998048346249,0.00035356630776322694,0.556205586218207,0.9998882460733237,0.8993303428246726,0.5115572703262553,0.9999999547862386,0.9999994127821912,0.9999993728135758,0.999999999978477,0.999999969284862,0.9999999999951705,0.9999999994608135,0.9999999996331708,0.9968310599360817,0.9999985060878571,0.9999831538034526,0.9999735042170421,0.9999999999999094,0.9999167530621256,0.00013238064550843246,0.9997934875971736,2.898286619390996e-05,0.9983152980569007,0.000541986520100594,0.999999988360721,0.9982383187440498,0.26724752203194413,0.9999273600872494,0.9999959923367172,0.00018231801319941785,0.999999696238698,0.9997037784300827,0.9946793385716857,0.9999999683060038,0.9999999119785532,0.9999999771429503,0.9999999999999925,0.9999999996329674,0.9999755898087559,0.9997194357469564,0.9999888889495478,0.9999979758522419,0.9999847817261289,0.00021690307924667347,0.997565776850532,0.9999885609729502,0.6366861069746511,0.9993274441134095,0.9990118250241247,0.999482663486751,0.9999836834780502,0.9958548463383261,0.9999879580499978,0.9999999999961848,0.9999999999507116,0.9999993366371982,0.9999999995521673,0.999999982664903,0.9999999797706938,0.9999999110312549,0.999999997102784,0.9999999970680895,0.9999198341733141,1.1001991189589299e-05,2.89003443995361e-07,0.9999988033786799,0.999999956022651,0.9999997958865802,0.9996108856616172,0.9999962021153834,0.999999998664004,0.9999998088929031,0.9999945814050165,0.9999999993057473,0.0025730295810753867,0.00026614272459048123,0.00029978758262857433,0.999849163394745,0.9999999975343994,0.9999999999903844,0.9999999998286346,0.9999999744834493,0.9999999149960893,0.9999999998290126,0.9999443117373591,0.9999998872999585,0.999999997981827,0.9999999985916279,0.9999994491321939,0.9988283972144509,0.9999999999237354,0.9999999997751887,0.9999999997888769,0.9999999933443453,0.9999936010103844,0.9999999999736626,0.999868925456836,0.999999986902699,0.9999497097184541,0.9998283202087836,0.9902938750239735,0.9936909515963127,0.9999904104355453,0.9999430198966965,0.9999999998716933,5.660539248450409e-05,0.9999695135085984,0.9999998798409642,9.475245241912806e-05,0.9999986114951874,0.9999994943291718,0.9993967594161266,0.000171919224380577,0.5419716698342312,0.9938501274800161,0.9999071840767287,0.999884641284842,0.0001379315010324108,0.9999659539268304,0.9589041083577382,0.9584979741856327,0.9895996407333121,0.9986057271213122,0.9413565842844756,0.9991246052092719,0.9997186484692266,0.992644508289387,0.9986067516770601,0.9999979756787836,0.999968902765762,0.9997022560647942,0.999999914782976,0.7872447971209618,0.9999906348157445,0.999999999457049,0.999999624984634,0.9999699624463315,0.9998841189870206,0.99988146549938,0.9999953789402845,0.9999999990731434,0.9999995294092207,0.9994380898584434,0.006783294342725833,0.9999999997249278,0.0002353428312086843,0.9843968436621686,9.158142738651961e-08,0.9999980823447493,0.9999999998049605,0.9999123953554466,0.9999999998524618,0.9996151545241577,0.9999999860398641,0.999999969284862,0.9991585176191605,0.9999778758195759,0.9999999999819946,0.9993345681715965,0.9999998787053778,0.989703810325926,0.9999882866902677,0.9999921319808258,0.999632553167552,0.9996537757705353,0.9999457449731568,0.9998664445232883,0.78219021899374,0.9999999999999458,0.9008841169769009,0.9999999369055916,0.9999096750332935,0.9999999952367691,0.13021989794271954,0.9999241872118451,0.9997597813227249,0.9999944330927303,0.9999615153504062,0.9999206244205782,0.9992581947750799,0.9920022296333548,0.9998651899819061,0.9999450708023513,0.03593089647244192,0.9924634989662355,0.9999632317193624,0.999999013210619,0.9999999998645119,0.9988899307749962,0.9999998990795262,0.9999941286716543,0.9999999524048342,0.999999999528504,0.986636150122734,0.884302354606117,0.9983748412526916,0.9999382592548672,0.9999999999923144,0.8782903085541005,0.9999999885611929,0.9999324891759129,0.9999992013001673,0.05424772545341828,0.9999999995536655,0.9999932464850746,0.9999999967626041,0.9999999999999962,0.9999999897394704,0.9999935623458603,0.9999987848267538,0.999437287565006,0.9999999967841127,0.9999836719031124,0.8541971030615179,0.9851403436331738,0.8474845356746816,0.3723264054557351,0.00014503576564019028,0.9987477085175512,0.9999998861354834,0.9990097121163274,0.9999996843365453,0.9999999567754313,0.9999581308780789,0.9999008917646348,0.9999999931210213,0.9999886444252751,0.9999048653164291,0.9999999999998399,0.9999999993726272,0.999999998059045,0.9991707021653948,0.9999659539268304,3.1810739619233936e-05,0.9999708338276216,0.999938395529601,0.999537410934943,0.9999980839507547,0.9999987130371457,0.9999999897278472,7.963739692075714e-07,0.03678391650256766 -रूप,object,0.9999989677907607,0.9999999997476112,0.0005205724546052384,3.4285512498717896e-09,0.9999520730905431,0.9999992009550481,0.007791605634338466,0.9999999999870994,0.9999999999875118,0.9999999998762175,0.9999994167344459,0.9999162094898313,0.9999982129197382,0.9999999999060172,0.24835109751448084,0.9999702571267384,0.9999579942602645,0.9999897894154817,0.9999993264312387,0.9999999999996432,0.9999957989697725,6.455910410503815e-05,0.9999999999157139,1.8656737823790456e-05,0.9997110482374367,2.3251351675014496e-06,0.999985589610215,0.9996423329608017,0.37970053012052124,0.9999997474160683,0.9999999998470108,0.00015000234177087662,0.9999999999969529,0.999957603232452,0.0006378749932222281,0.9999893753054497,0.9999995978622392,0.9998252896455535,0.9999999999999998,0.9999999999995215,0.0012459123688541459,0.9999914706954997,0.9999999687321611,0.9996765911968478,0.44619120631590137,0.00018543396123900645,0.997692284066182,0.9996520191781892,0.05410929485837778,0.9999443381540831,0.9999999173167675,9.365237261322608e-08,0.9999999838222777,0.99999999991724,0.9998906999616575,0.9999999999999813,0.9999999912336998,0.9999999945672529,0.9999560984394252,0.9998910320285442,0.9999950020371899,0.9999999916025913,0.9999996666402612,0.9999999611125394,0.9999991711455429,9.23457760595543e-06,1.1788166373686272e-06,0.9999999997258671,0.9999999998014115,0.9999999999834392,0.9999999999998719,0.000295698050065915,0.036292254016157245,0.9999999984931571,0.9999999998351774,0.999999966657501,3.167460033259706e-06,7.556692243153704e-05,1.9423368481050363e-05,0.9999999122253579,0.9999995695806071,0.9999999915375507,0.9999999307753399,0.9999999888885588,0.9999999997916658,0.9999999195598213,0.9999867410414156,0.9996843201990063,0.9999998424581347,0.9999999088760939,0.9999999986846595,0.9990002805897649,0.9999999915000782,0.9999999009628762,0.9999999232007816,0.9999999725882623,0.8491105838210833,0.9999997514587813,0.9999963648883183,0.9999999989121959,0.9999999324721615,0.9999159735545116,0.9999999999781615,0.00048345816708496477,0.999998444134341,0.9999999999836193,0.9999988498380715,6.834416258602374e-06,0.002391118468107929,0.9999999999999118,1.1580313479599722e-05,0.03898225385715663,0.0034318562002029116,0.9998530369203,0.6835964207980102,0.9990980770328536,0.9996883925520578,0.9999964236390411,0.9999479303162337,9.128986258681129e-05,0.9999980396774839,0.9999273570339853,0.9998353054625032,3.637054246550599e-05,0.9997517264944487,0.9999999999321856,0.999999272741354,0.999992803432006,0.9993836141880885,0.9998248073787194,0.9999997310024762,0.9999928152619507,0.9999999851647801,0.9999999981818259,0.9996503106911735,0.9999715053017271,0.9999998348550123,0.9999999868658789,0.9999866215961989,0.9999998305611847,0.0017491231637670405,0.9999962751583882,0.9999999999995692,0.000726422708055632,0.9999999966956898,0.9969798715356033,0.9999999998995626,0.00010409222564234723,6.047934045975378e-06,8.38401987579741e-06,0.00041962495373767,0.9999999858922817,0.9999245090047837,0.999997430835443,0.9996878988625616,0.9999873447706923,0.9999400737385468,0.9999498460377257,0.9999518203137092,0.9999999997763225,0.9999907241983564,0.9999976965298212,0.8528102434705382,0.9999953907266499,0.9999785730318532,0.9999419150614922,0.9999804780240878,0.9999710838768673,0.9994368853113728,1.2952879132467765e-09,0.9999999997977926,0.9999997291740333,0.9999999726236729,0.9999431198978885,0.9999999975449936,0.12631775626476072,0.999826228901968,6.507696261732722e-05,0.9999979771024673,0.9999324108605021,0.9999432037794957,0.9820376312947248,0.0013771330179505625,0.99999999988327,0.9999999999542135,0.04970233297561082,2.3994238600213038e-08,0.9999999996429967,0.9999731037558169,0.9999826797485898,0.6359069450239764,0.9999999374324996,0.9984090812484936,0.9999995710975439,0.9999999983944707,0.4049578187772262,0.999758366669291,0.999702560582992,0.9999999726769248,0.9999999999999505,3.935988124457944e-08,0.9999999349592461,0.9999870777542397,0.9999549629450382,0.9999807087534369,0.9999999999999776,0.9998650374919726,0.8411276104195148,0.5723025509275439,0.9999729333387899,0.9995927255348559,0.9996812801728048,0.9999012318288385,0.9999638133226535,0.9999992519601915,0.9993755304722578,0.9986753542472464,0.9991332057034316,0.4604172057515093,0.00017573076338311518,0.9993271499480247,0.025511623024611896,0.9999999999993383,0.9999997449310281,0.999999518835362,0.9999958601648444,0.9999999854814114,0.999999898516038,0.999991587273423,0.9995346045740776,0.9999095863464074,0.9999998839801297,0.007802466063723869,0.9999999999937108,0.9999983614824453,3.54110842648828e-05,0.9981517227120841,0.9999998562570593,0.9999804788489806,0.9999997920080415,0.9995831950689075,0.5468100881210485,0.46746157801613153,0.9761952759507738 -लाल,rgb,0.9999999999997871,2.040421751120321e-15,0.9999300092410216,0.9999936342781963,0.9999912001801282,1.3013013804375805e-08,1.0,6.473972548493555e-05,4.61799174423778e-05,0.0004932753222959401,0.9814222427534911,0.9979961165593999,0.9973436066436003,2.529230972679905e-15,0.9999384747457707,1.0,0.9999981739196019,0.9999963095756619,0.9999976555302615,0.05318474752119909,0.9999981081151955,0.9999999999135281,3.028836078968016e-08,0.9999999999995479,4.5204400665878063e-11,0.9999999995491449,0.9999999999998663,9.539871918221642e-11,1.0,4.6038018893271104e-12,1.3156089638206812e-08,0.999863526293067,3.1073164821365323e-08,0.735635395679765,0.20499941554007803,1.0,0.16011762859466658,0.9999999910828666,1.3956143203962816e-08,1.5825703313488126e-07,0.9999596444638645,2.0649109923996602e-10,1.4652648413635162e-08,6.1136178308550016e-12,1.0,0.9952506830634623,0.9997216590036847,0.9999320882077309,1.0,0.012743574567486739,1.516735492188444e-08,0.9999694643960128,0.0001521842233668596,1.2018060859453917e-07,1.0,6.521206526186336e-08,6.734812827990282e-07,2.072189941885334e-06,0.9975190861277183,0.9960547591246817,0.9844596225694227,0.9999989258294931,1.0,1.1576887525136443e-09,2.213455827901032e-11,0.9999999999980882,0.999999999919025,0.0003727978036931565,8.939894787487691e-05,3.972614241635958e-05,6.824311473026862e-08,0.9999900722593523,0.9999588128608483,0.0008613178660722593,1.780907585759025e-15,2.5276175883042937e-10,0.9999999998453126,0.9999999999984537,0.9999999999584739,4.80883436606499e-06,0.9999999999998133,1.2775423410650939e-06,0.9999049350238907,2.3186221602397075e-05,5.71659076773753e-05,0.9999746116265268,1.0,0.9999999959726937,0.9999999999952787,0.9999999999997551,9.663421774893639e-05,1.0,1.853511713956583e-07,3.3436203561909163e-06,8.470412395917649e-06,1.7763457984316015e-05,1.0,2.449175669472238e-05,9.340836003439782e-07,2.0352822695627637e-05,8.246465131294199e-05,1.0,2.0645361287095768e-07,0.9999827714007113,0.00012404580047699687,1.1273687853373846e-08,1.0,0.9999999999992331,0.9999999969988267,3.1205499308941465e-07,0.9999999978154088,0.9999827636037663,0.9999853357436346,0.9916937537994753,0.9894655734896581,0.9780786096050805,0.03371393778603076,0.5405173352266519,0.9985110962344906,0.9999958678490264,0.9999030127391314,0.8532660380855418,0.0029475042416967183,0.9999827027285942,0.9796433693208458,1.86559419129375e-07,0.8610305063712264,0.014995943374738802,0.07547682370119335,0.9286562309287292,0.0027029654443663934,0.8555446995399155,1.1599975717416875e-08,0.0007157269550933603,0.05430430028530913,0.9999948184239599,0.999997418848943,0.9999965107355789,0.020477265209175075,7.543153544580882e-12,0.28809937632503785,1.0,8.264460975728641e-08,0.9999689286890359,0.016670451807379486,0.11502670831814664,3.877178505401938e-05,0.9999999999786731,0.9999999999261009,0.9999999999992735,0.9999828499306803,0.8546873300128276,1.0,0.9795170289653576,1.0,0.9957952887539021,0.9965405323044555,5.588857711769084e-12,3.146201888574577e-11,0.9999980281324681,8.716474043779035e-13,0.9999981889447757,1.0,2.0896668545817847e-11,1.6818564334746844e-11,1.557142623213668e-11,4.302381961901742e-11,0.9955216823947974,0.9956310372193953,0.9999829309195731,0.8361497540003332,1.5232207995489497e-08,0.6845413080135965,1.0,0.7198791406348166,1.0,1.0,0.9998662201714162,5.686064813092625e-13,6.6139982845942245e-12,1.5141525573320925e-11,1.0,0.16240553213191808,3.457486465061332e-08,1.1308069737304172e-08,1.0,0.9999676179320423,2.2755090607338275e-15,0.9957381066889699,0.9969767616050298,0.9820645939725607,0.9961642251107976,0.9999999999998432,0.18317381860650767,0.7556167480492837,1.0,0.03026110201180896,0.9803216123279581,2.364284318306976e-08,1.8251573183626067e-07,0.9999763979579632,0.9042984906642051,1.25234888544623e-10,0.999999999999732,0.6602117684825435,1.9311271920371553e-07,1.0,0.9999827409008418,0.999960982319882,0.9999999999998934,0.9919106721881715,0.9999999878988383,5.23176941835477e-11,0.9965343363971327,2.3033296906311146e-11,0.9484073132744283,0.9951295703229921,1.0,0.9995310252618929,0.9999331095463865,0.9998050632187656,0.9999689903656765,8.389421234165084e-08,2.761022768727405e-09,0.9999951444935262,0.9999948875474951,2.047815578464274e-15,0.9999916810075755,1.0,0.9999029030641444,0.31091809741445114,0.9999798803286319,0.9999691874835704,2.0882888445862702e-07,0.9998354257839092,0.9806982856481563,0.9976465020929962,1.3442877692634449e-11,0.6870503495845908,0.8276053700167529,0.9999999975656015,0.2177833180304329,0.9550703372042468,0.9323597118870323 -लाल,shape,0.998513172140103,0.002859861496018923,0.9999999521255004,0.9999997964064077,0.9999999999804514,0.9973542643896195,0.999999975600189,2.527295833569473e-05,0.0004765123424338578,0.8855385871271151,1.6567147982174014e-07,3.4235508955230985e-09,1.0620010611108908e-09,0.04246148304282047,6.35974026383952e-07,0.9999991689276674,0.9998894206723129,0.999999998447821,0.9999350694371634,1.703374582194284e-05,0.9999999999534526,0.9999990734164433,0.9928961279697979,0.9999999944186535,0.0014489755247960765,0.9999998512341713,0.999999972597403,0.0012107102589119945,0.9999600472591892,0.9999287001071799,0.9145130994479902,0.9999999562689098,0.6935883298867151,0.021527278548954056,0.8167246444440939,0.9995647687728297,0.630468293947561,0.9999960139529076,0.0005437376535810742,6.37882256935233e-05,0.8912901159445075,0.0007729369531536998,0.4686060243976028,0.9900291697919861,0.9996216216510796,0.9999999997842386,0.9999999999521627,0.9999999344299669,0.999997551459186,0.43940226751963407,0.9604335871362303,0.9915835943628057,0.0006917854922382404,0.0004065823468697013,0.9997966883721057,0.14745414824688613,1.4327553954104676e-08,3.512504183683198e-05,1.8459199997739543e-10,0.12762869612568115,0.9721098734087876,0.9998072473278276,0.999999980307244,0.00040184451848328847,0.9999987585240988,0.9999898569454246,0.9999967192389667,0.23890868869939655,0.0008892827281409541,0.0002744631436898675,0.35940950321121,0.5492310050270062,0.00020455516086104015,0.450897515438838,0.03371145956079038,0.00038027701370528034,0.9999916521635066,0.9987764882833335,0.9983279729681656,0.7127590583449407,0.9999266752121333,0.22326747155875934,0.9985904908490553,7.760999174657611e-10,0.001157664226806032,0.9997755422776551,0.9999267833438664,0.9999999421025445,0.9990277066291905,0.9999708620421637,0.0007852061511941165,0.999978807651908,6.744246175821818e-05,0.002228399134189636,0.00015176608561776595,1.0253457946623808e-09,0.9996946612057496,4.4410086090410296e-05,0.999997113416187,0.00017070178775505993,0.0008470631087072912,0.9992877071957554,0.0005320533417327108,0.03085052194669421,0.9999999882643159,0.9966112482322657,0.9993044437727148,0.999999934174233,0.998722790800729,3.5612512901548006e-05,0.9989712918745769,0.9999999801811543,0.9859255743047156,0.9999999968879656,0.999999999364509,0.9999999991794477,0.8805050595847831,0.9999999999984486,0.9999999999997014,0.8787389540000475,0.9999999999821563,0.9999999999967455,0.999187066527631,0.009988897678857528,0.9999999999992648,0.0010749273010986816,0.9999998269544885,0.9954740353426218,0.9114885328649278,0.4402557971906758,0.0008350093247703924,0.9973098791135758,0.8249001030835619,0.34033631843655066,0.9748725494931755,0.999999999933926,0.9993789260578266,0.9999820598933544,0.8467487198774175,0.9970997150725347,0.9999998185136382,0.9992228230150184,0.9423680074207393,0.9648534966073722,0.6586546249627281,0.9999999906306319,9.3574024977869e-07,0.9990251654984412,0.9960646524810304,0.9999999969491318,0.38151491516662056,1.635720805733065e-05,0.9998028541540832,0.05856469173892651,0.9999703459996031,0.000286698274265184,3.423550895523147e-09,0.0013534853199077173,0.0005565709870547373,0.9996262431589255,0.0008227399126906232,0.9999999987261603,0.9995022647031276,1.0093499179776532e-05,9.619221593064726e-06,4.4272622581476735e-05,0.0006952118953630408,0.0025650705385206005,0.6186644735993897,0.9999873148274036,4.081745174489089e-07,0.9999859140874601,0.020219102722399285,0.9999626993435561,0.37908743932026234,0.9999986408277092,0.9966388633296447,0.9999663554147599,2.5234052714375065e-07,4.032772779748028e-05,0.00044668980624204725,0.9993934466602569,0.9999999988835011,0.9999531082807577,0.9987128163146016,0.9999989357931821,0.9421070800030619,0.6603065629106291,0.3152544135427792,1.7460372335655502e-09,0.5767035755776238,0.9999363092770076,0.9978459351157565,0.9999999999959559,0.6563569318878527,0.9998353560215218,0.7923437087813523,0.9999997842274261,0.9795829130940193,5.399121605244052e-06,0.9995814020032904,0.9115759339881858,3.2022408980071684e-06,0.9999460163434333,0.9999994752243611,0.0009445053539564966,0.9996764182662624,0.44050871435738903,5.9212844243816606e-08,0.9998211764455217,0.2668591524181122,0.9989349249589019,0.00046671214905757833,0.0015170009400898405,0.0006430543433058679,0.999999999999809,0.9999999999834412,0.9997729681703469,0.9999999951269343,0.999999999585734,0.9999999999999738,0.005406775896156238,0.09317918053668395,0.0005376117901689411,0.9999999999937472,0.999999999992448,0.9966867996354515,0.9997274974169004,0.9999828470992917,0.9999999821719389,0.9999911692359819,0.9991896235448612,8.545697661785697e-05,0.8081689179017207,0.9999999999821563,0.9741706972552205,0.9999995482660387,0.9990747000289661,0.99173396481528,0.01766209315202662,0.9999997983119435,0.9999998439899164,0.9999999999778899,0.9999999823998925 -लाल,object,0.9997460154206532,1.9230696947130146e-10,0.9999755876366968,0.9999931638882139,0.9999993383484623,8.16379886479232e-05,0.999999994885693,3.527282231472448e-06,2.4979917909111264e-06,0.0005845349176560015,0.05382161594758689,0.141468465524597,0.3777782117561668,6.417369821483085e-10,0.9986631840380784,0.9999988447445846,0.999987202831158,0.99997769245726,0.999904414292208,0.8506758522411133,0.9999784740296982,0.9999797275909054,1.3527475804338342e-05,0.9999994201104726,2.0121843425025588e-06,0.9999855343222217,0.999999942895552,1.2428757620776643e-05,0.9999993000347472,7.916622640084961e-06,1.3586415145336565e-05,0.9999880971265259,1.274444026418808e-05,0.20940362694943626,0.990099828095029,0.9999999483559574,0.2696485590480417,0.9999990406460333,5.349618800732438e-05,5.86986665138399e-06,0.9998185009923404,1.4312600787918514e-05,2.2285270752465096e-05,3.8149094040461375e-05,0.9999999449322307,0.9999525673297223,0.9999958601763738,0.9999886880553389,0.999999896952458,0.05732439381519572,1.2435396896576447e-05,0.9999571766330116,0.00027392291904215863,3.826964960374686e-06,0.9999998285785326,0.00017985459493811634,3.7544870928749206e-06,3.6948680766048235e-05,0.0688864835009527,0.9320016540718057,0.8307117857645767,0.9999227643650992,0.9999999456141896,1.638941308989644e-05,1.217997861698757e-05,0.9999967792273762,0.9999984600704934,0.0003225399817821965,0.00012849904082440198,5.521761653607995e-06,3.529388965021687e-06,0.9988789626926821,0.9993031733991374,0.002478694880897923,2.2086860774842083e-10,7.573504089598242e-06,0.9999972511096986,0.9999994466454316,0.9999937177141478,0.0011209365568994297,0.9999999460013886,0.00011047335506120446,0.9995767436088244,2.981571576686495e-05,0.00012860148793347634,0.9998698336759959,0.9999995611282276,0.9999993480261619,0.9999796071004003,0.9999978737945859,0.00012334600516974967,0.9999885246984993,7.180798222868829e-06,0.00011895190283732682,8.146251804592853e-05,1.3250145974559214e-05,0.9999999002432374,6.432280110667324e-05,0.002813693072128495,7.868377032148934e-05,0.00016472849166571896,0.9999995938636277,2.124280102416941e-05,0.9997318569732262,0.19786953464276194,3.906411451214645e-06,0.9999998869324259,0.999999668876755,0.9999961297297478,2.0127345884840964e-05,0.9999724650046331,0.9999926538302193,0.9958258464957884,0.9944897479708739,0.7123333601052501,0.9917601956770666,0.017755650890267614,0.4134993520655642,0.9554756828281087,0.9999310894042797,0.9999936911427536,0.5804251187845946,0.033159468349259306,0.9997812630975185,0.9474025860456017,1.0737216844136638e-05,0.8534748764526182,0.02116285936379203,0.18267726153139224,0.2734072384298805,0.00031841776867640864,0.8679357932350771,1.0426875062930616e-05,0.002094666103443099,0.01771992767437124,0.9999369824954881,0.9998622993706671,0.9999440184702858,0.24141521652448458,2.904177076096241e-06,0.9973143681908632,0.9999989497175894,1.351178880067843e-05,0.9997974738696676,0.0023592951123418216,0.45001413897700504,0.00013403232304208098,0.9999951665498165,0.999999133566321,0.9999981925700142,0.9999231181948011,0.012576468741001637,0.9999998939973772,0.5433407608319928,0.9999999091388228,0.9358644094092948,0.10679519519135218,3.0341108029908273e-06,7.76354844858006e-06,0.9999469124675131,5.612997254264694e-07,0.999987718914976,0.9999999979841416,3.208650080110253e-06,1.8663089193439446e-06,1.8328438036216212e-06,2.429591491804676e-06,0.7208814863504206,0.9963837593108854,0.9999987506772684,0.030497152848036245,0.0001152333663702741,0.08294081752178227,0.999999658145439,0.12405895932603599,0.999999708340856,0.9998433781294155,0.9974148369723105,2.367639388675424e-07,3.832292111992389e-06,4.938712615068137e-06,0.9999999461018454,0.9958129773606821,1.7942997833025295e-05,1.0423292642721079e-05,0.9999999131199968,0.9999624644019296,2.73950961966088e-08,0.9626148771025863,0.15210193686965984,0.9562366481597582,0.9989808558912242,0.9999403004600592,0.980632915931391,0.2618738395855829,0.9999998291167501,0.01239597563494581,0.9586110906850528,1.749761495851008e-05,1.4944243466299632e-06,0.9999245392719566,0.7606615696013093,2.8371780195846773e-06,0.9999996932726488,0.802710262724961,2.2632162567597275e-05,0.9999994341160898,0.9999078072064896,0.9994531754542416,0.9999987273141427,0.8239335679517309,0.9999350341008283,2.6797858931909247e-06,0.7019531835536313,5.66896808524257e-06,0.7945891091905581,0.9742617235686821,0.9999999628284084,0.9999670093134743,0.9999975707949078,0.9999987139961073,0.9993982040651932,3.596515278308558e-06,1.972573977214417e-06,0.9999933360163391,0.9999946235688517,2.338823193498616e-10,0.9998158166274794,0.9999954420116237,0.9999978251826672,0.9852515405396447,0.9998852104073009,0.9993784292951463,2.198622100674189e-05,0.9999917747202035,0.9878120769171105,0.9998996451403349,9.402471305020944e-06,0.1063733376653089,0.10781432049356558,0.9999985362973834,0.9857591791900403,0.9903446818961845,0.7557736654758715 -लिए,rgb,1.0,1.0,1.0,1.0,1.0,0.0031118626775064693,1.0,0.9584897572983707,0.8883787634656422,0.9969451144287799,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999976,1.0,1.0,0.004280607557144075,1.0,0.9986374799495009,1.0,1.0,0.9983169087531212,1.0,1.0,0.0032061293494625694,1.0,0.006201812078846592,0.9999999999234361,1.0,1.0,1.0,1.0,0.46496935978628257,0.07072329079583843,1.0,1.0,0.004470586700778915,1.0,1.0,1.0,1.0,1.0,1.0,0.9999994435550471,0.0033191538545564486,1.0,0.9826480377396939,0.020536855523167082,1.0,0.03261810664235847,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.996344696783369,0.971761497988866,0.8758364851533332,0.012541584542602815,1.0,1.0,0.9992293121183866,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9417224463370595,1.0,1.0,1.0,1.0,1.0,0.9787473108471257,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.08902440405843302,1.0,1.0,0.0030138764089861357,1.0,1.0,1.0,0.10999030536217907,1.0,1.0,1.0,1.0,1.0,1.0,0.9999985109002009,1.0,1.0,1.0,1.0,1.0,0.9999851759901789,1.0,1.0,0.9999944358406757,1.0,0.9999915233378497,0.9999999996583488,0.9999999999988631,0.9999999999999993,0.9999999999837976,0.0026958603171231077,0.998911926273607,0.9999994531776218,1.0,1.0,1.0,0.9999999572904426,1.0,1.0,1.0,0.013779614188866716,1.0,0.9999999999995013,1.0,0.9999999999933356,1.0,1.0,1.0,1.0,0.9999999999999756,1.0,1.0,1.0,1.0,1.0,0.9999940123685254,0.9999999980495755,1.0,0.9998972847603312,1.0,1.0,0.9999101193524834,0.9974590024244573,0.9161337525156097,0.9904633502844121,1.0,1.0,1.0,0.9999999999999887,0.0033527025010183587,0.9999999999949958,1.0,0.9999999999999722,1.0,1.0,1.0,0.9976730867580125,0.9999816474211188,0.9999466332467577,1.0,1.0,0.005172258223211654,0.0030440938501607446,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999993,1.0,1.0,0.9999999999785367,1.0,0.9999978310272448,1.0,0.004959125379198954,0.026702488077418304,1.0,0.9999999999999887,0.9698710368907941,1.0,1.0,0.04585059840138446,1.0,1.0,1.0,1.0,0.9999999999999967,1.0,0.9992290804583687,1.0,0.5640929188305235,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.014103092164968613,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0699815013467283,1.0,1.0,1.0,1.0,0.9999999999004319,0.9999999999996816,1.0,1.0,1.0,1.0 -लिए,shape,0.9999999902767792,0.9999991663655179,0.9999787130364759,0.999999909876882,0.9999463618748775,0.9997722898770149,0.9998264930927522,0.9999999874744961,0.9999999927352026,0.9999999973952929,0.9999551788698663,0.9999919918347911,0.9999785118433714,0.9999909460053333,0.9999881872029529,0.9999999785683102,0.9998689312470943,0.9999894490557579,0.9999997796452059,0.9999989396007858,0.9999171554263546,0.9999957540847683,4.642880240565673e-05,0.9995032098939078,0.9999566408150228,0.999497740041851,0.9999990943453896,0.9999961540192982,0.9999932781898085,0.9991158475882563,0.9988889729755192,0.9999998068385316,3.091164200781177e-05,0.9999990944363935,0.9390116792418074,0.9988708430158924,0.9999698804789096,0.9999998673954493,0.9998911584118365,0.9999998919728063,0.9957191332321732,0.9944541884965022,0.9999032008247174,0.9998091092043593,0.99995697621807,0.9999967029922098,0.9999993339358701,0.9967253409635062,0.9987286754612443,0.999999412137743,0.9617263476678825,0.9833950181862702,0.9999999778286197,0.9997977344910468,0.9999999900179001,1.733775818872673e-05,0.9999923886619445,0.9999899122619238,0.9999825585588308,0.9999996496199741,0.9999887551924378,0.9999997871901944,0.815027039560205,0.9999999135862055,0.9999973606761171,0.9999823396591414,0.999996456775834,0.9999999952964684,0.9999999480916131,0.9999999774901439,0.996298137971065,0.9999959346519461,0.9999999348541302,0.9999992689847704,0.9999998711232156,0.9999999962023274,0.9999790243542619,0.9999855943297319,0.9999943913676702,0.9997150988696577,0.9999996808501236,0.9997586737628797,0.999999936873383,0.9997743987436474,0.9999972189430055,0.9999997267002029,0.9997675154908942,0.9999999941343791,0.9999999749540724,0.9999999350833249,0.9999996405467404,0.9999996508638789,0.9999953027195234,0.9999995225292667,0.9999956925194617,0.9999539701236317,0.9999545624338686,0.9999991624893962,0.9999454988591605,0.9998863722870377,0.9999483106060254,0.961045930636379,0.15205911230128527,0.7900340720813464,0.9999514047548831,0.9967542872894822,0.9999999700143203,0.9999325641279789,0.9999257433751121,0.9973054876285405,0.9999932782442886,0.9999999105553232,0.9999935173586797,0.9999974566988801,0.999997497237932,0.9999997117316841,0.9999982369535066,0.9999996016450051,0.9999975420927475,0.9999999683899866,0.9999679283827358,0.9999998667588279,0.9999983700535766,0.9999924958324826,0.9999776594961262,0.9999999981001908,0.9999049083576266,0.9999941154924981,0.9999994311764862,0.9999995049973248,0.9999993003631827,0.9999997209258555,0.8649184606085386,0.9999999308447337,0.9999974144119874,0.999878831425725,0.9999996285406837,0.9994022248673862,0.9999989235755787,0.9999877652368773,0.9999794588939243,0.08755754084797168,0.9999998132253269,0.999999883933265,0.9999997986202299,0.9999999668346109,0.9999983656760152,0.9999907823154717,0.9999976582388483,0.9999935991274238,0.9999991465189687,0.9999999878810862,0.9935974882580891,0.999992375522246,0.9999996843491997,0.9999993781077545,0.9999919918347911,0.9999935369267111,0.9998927409428049,0.999995983661799,0.9999918354400507,0.9999709560742931,0.9644875899078369,0.9999993934016735,0.999997796374103,0.9999902225359945,0.999775292219856,0.9999995982894565,0.9993581298756764,0.9996316822535456,0.9999998891186851,0.9997433787101034,0.9999999962621426,0.9991123171135828,0.9999999680264585,0.9925782224259883,0.9999992343334334,0.9999998623535008,0.9999976375711919,0.9999984938115221,0.999998708742567,0.9988940275079163,0.9999839570749013,4.710852360951611e-05,0.9494444511758917,0.9998123887272848,0.999314712661679,0.9999999828439728,0.9999986537687955,0.9999958166687949,0.9990205651300519,0.9999992605022741,0.9999997432811036,0.9999994162441957,0.9999999538378593,0.9562357670173938,0.9999998844712585,0.9999991003334858,0.9974156411821834,0.9999998475908586,0.9216970419844603,0.9999999873944717,0.999998377850618,0.9999998956420908,0.9998966763182379,0.9999998549272533,0.9999999838029539,0.9999998575098853,0.9999966634342409,0.9999999316794286,0.9999980757993461,0.9999999331919214,0.9999473561267923,0.9999984928537196,0.999999250371348,0.999881127826103,0.9999996396252402,0.49664589367104073,0.9999658137092216,0.999999788749931,0.9999987484955339,0.9999999079611408,0.9988228265360428,0.9999999931496686,0.9999990016067322,0.9998952591828854,0.999998748556064,0.9999993302947607,0.9999997635324529,0.99978211118219,0.9984471249691267,0.9999998493506812,0.9999999705279008,0.9952041204485667,0.9999679283827358,0.9999999910485867,0.9999954581790585,0.9999237718902517,0.9999995710583082,0.9999996805987436,0.9999999816227075,0.9783013710650851,0.999996484024583,0.9999890408171848 -लिए,object,0.9999996163832614,0.9999997051575641,0.9999999306808504,0.9999999999999996,0.999998271381945,0.7563563259661088,0.9987814219184599,0.9999841063234581,0.9999699257499283,0.9999966112424283,0.9999998852105177,0.9999999358631902,0.9999999901974307,0.9999999604118359,0.99999999999998,0.9980351174556235,0.9999486813734069,0.9999927920167812,0.9999990974201791,0.9999976059683862,0.9995499343591687,0.999999771729393,3.072736921924915e-05,0.9999964570751199,0.9997071632914167,0.9999999749601929,0.9999835543387158,0.999981157271989,0.9990966174868735,0.9999133569510333,0.9559674103114845,0.9999999169729525,1.541020910315299e-05,0.9999875625529788,0.9999999982637031,0.8052300444018602,0.9999993363198406,0.999999999685401,0.9999078935403523,0.9998192037453065,0.9999999999925979,0.9999856879691601,0.8270591889020265,0.999997384450651,0.9979094279046565,0.9999998593485511,0.9999997968938441,0.9999943962768346,0.9965343141871249,0.9999988233847628,0.05942113386755846,0.9999999999981068,0.9999938636439897,0.8493730023561116,0.9999995345846208,3.075270467908008e-05,0.9999981959577183,0.9999986369416974,0.999999994654551,0.9999999993550954,0.9999999964262603,0.9999937818360681,0.037386439401867276,0.9999999994354352,0.9999998031699281,0.9999995368641448,0.9999999883824701,0.9999967746015543,0.9999814990586754,0.9999815654687292,0.13003489607742058,0.9999999999999956,0.9999999999999984,0.9999506212279736,0.9999987892942804,0.999999999199847,0.9999999869400487,0.9999998668102235,0.9999999721865801,0.9997376217936823,0.9999963479995104,0.999913526050979,0.9999999839736968,0.9999985005581576,0.99973152686447,0.9999999807377921,0.7837066069960449,0.9999999998504103,0.9999996948926169,0.9999975278857736,0.9999620927609035,0.9998981061238897,0.9999923516193973,0.9999978792105884,0.9999961328401851,0.9999970523695347,0.9899545377610481,0.9999996092489215,0.9999976392754654,0.9999968162771973,0.9999872848059046,0.8597274769493536,0.003142239499490844,0.9999999994081934,0.9999956909691134,0.12247807668719388,0.9999984802793486,0.9999994936834607,0.9999999986467367,0.22600311506848844,0.999999994652718,0.9999999999999829,0.9999999999999893,0.9999986601803016,0.9999971636252897,0.9999998258651032,0.9999549113359096,0.9999992669647169,0.9999999940782274,0.9999999972379718,0.9999950943623785,0.9999983209933843,0.999996305261252,0.9999999999995921,0.9999880743289966,0.9999154603188546,0.9999815788013846,0.9998716591690996,0.9999997824557847,0.999999121267734,0.9999999930226846,0.9999971601067957,0.6501580528782887,0.9999913799778661,0.9999574259446269,0.9995219182319635,0.9999949300444815,0.9994777483982817,0.9999995092283632,0.9999993235045523,0.9999999999993627,0.02067440248983758,0.9981991621728988,0.9999999999999964,0.9999770122029951,0.9999885822770089,0.9999621421844741,0.9999999526455474,0.9999999990508965,0.9999998468246748,0.9999999999999896,0.9999999648256445,0.25062661591808494,0.9999999898678874,0.9999891029447255,0.9999999959605421,0.9999999197757288,0.9999722895232945,0.9999911552526323,0.9999966737418982,0.9999864323705615,0.9999617176775168,0.4156208494530895,0.9999962314943086,0.9999781342673261,0.9998933740982431,0.998936098791492,0.9999999976067244,0.9999998966540293,0.9999999999997062,0.9999993962155176,0.7584405075308394,0.9999999681720538,0.7035706302329012,0.9999999634890895,0.990338200020782,0.9999194905210392,0.9999999999999978,0.9999627393381089,0.9999950482139607,0.9999933446584535,0.6959797840924473,0.9999999999995488,3.066452875579449e-05,0.017760796230701564,0.9984744607089586,0.9999999999996054,0.9999996573850417,0.9999999844434877,0.9999999734155762,0.9999884244501526,0.9999982930422715,0.9999969327023263,0.9999845680275772,0.9999996889988158,0.9600112586957027,0.9999782585139363,0.999999941649608,0.5187829611545345,0.9998923231053368,0.9999999999923597,0.9999999862096645,0.9999867437293743,0.9999925388514247,0.9999857904386309,0.9998222301503635,0.9999885772845233,0.9999999999999949,0.9999999999999989,0.9999989546596703,0.9999988683194361,0.9999999995158033,0.9999039040677504,0.9999999996523223,0.9999756005860284,0.9999951585280129,0.9999999285388059,0.0033374569879273826,0.9999979359172241,0.9999999860603621,0.9999992277216887,0.9999999999999987,0.18131664613300136,0.9999999999004114,0.9999981220741222,0.9998968445821459,0.9999999284316579,0.9999995262198063,0.9900223477872632,0.9999590210839909,0.9999999999967388,0.9999998500269508,0.9999999999999993,0.32498596517063805,0.9999947362438705,0.9999999891968548,0.9999999780095901,0.9999945262345016,0.9999980792276878,0.9999993349256102,0.9999999996493008,0.9999999999122582,0.9999937656079488,0.9999903417471434 -वर्ग,rgb,0.9990321402842303,1.0,1.8098551487392058e-06,1.0,0.00043763334420877307,0.9729186343885854,0.9801490972385166,0.6667660518331584,0.3025607120560832,0.036758816469755456,5.991794932171288e-09,1.5111348066003587e-07,5.908983607761709e-08,1.0,1.0,0.9999999999999265,1.934833506383841e-12,3.1246136858571604e-12,1.6702406130783094e-12,9.751757538194056e-10,3.97268843105579e-13,2.228972245051131e-12,0.938129814675611,2.909162938466048e-11,0.9997558800665287,7.632876467009116e-11,0.9999995638435225,0.9989982953513645,0.9999999999981273,0.9999999999999998,0.9714625014824341,5.435687135171983e-05,0.8881295436488172,1.2255636976402819e-05,1.0,0.9999999999997133,4.153018667050228e-10,4.874012656466284e-13,0.38790156960104116,0.14365062240191234,1.0,0.9999999999905369,0.9511177574032122,1.0,0.999999131273807,1.0260930992106934e-05,7.912540221137022e-05,1.6739654632736678e-06,0.9999990777085326,9.778134954498766e-08,0.9675959230360728,1.0,0.18232900528825685,0.4568745543563301,0.9999999985347836,0.40145301105582815,0.17796638780199545,0.08246774401546962,1.193497741690262e-07,2.8742624741957674e-08,5.1053398193468934e-09,3.535913130199695e-13,0.9999999999999993,0.9999999997890343,0.999999999999998,2.5539989456159085e-11,1.0816959064502407e-11,0.12033769204608728,0.523269190760211,0.430136091874464,0.6712617706804296,1.0,1.0,0.08453282793623988,1.0,0.9999999999450178,4.130334615458375e-11,1.8261820597645842e-11,2.898760808096491e-12,0.04173409673338723,0.9999960053633536,0.0620296178831665,1.209938899275415e-11,0.009741053995164091,0.5804718476131269,5.090145003756801e-12,0.9999999999993217,5.233640952875116e-13,0.6019703473698673,0.9999958681815581,0.6211096600518875,1.0,0.44206112288252103,0.10756342664768141,0.028017292875288716,0.014151592746438674,0.9999999999829783,0.009276057952432937,0.09575981416539903,0.0080850626668018,0.0021605673689785955,0.45589496366929544,0.10111593290744754,1.0,0.0026442834013081585,0.9762400935950577,0.9999857991057186,2.0186066037683325e-11,5.270834829950821e-10,0.06668930748513686,1.1745900651969472e-11,1.0,1.0,6.92262420287471e-07,2.1983019794314965e-08,1.2365558994428538e-08,0.00022442323666088315,3.176741859286407e-08,1.5258983695753907e-07,2.381098928832212e-08,5.146174073173755e-05,5.280019736728159e-08,6.164887906526094e-07,1.0,5.393850821876517e-07,0.00273179787737535,6.862725227876988e-08,0.0002931187134513471,3.0138020879932785e-09,9.133401737029839e-09,2.6289807895979296e-08,1.0452614996690844e-06,0.979760367604919,0.09286740372483716,0.00012867350077584738,9.128272409438236e-13,1.2583771323135211e-12,1.654907800442304e-12,2.3312388535763313e-08,1.0,1.0,0.9999999999999898,0.6263427999880039,1.0,2.892189580503794e-09,5.906057832791904e-10,2.5148343780979357e-06,4.062882921989659e-12,1.936708038051968e-11,3.32024412801913e-11,1.0,1.3499815896228535e-10,0.9999999999984868,5.628872114414338e-09,0.9999999987567798,3.705558941471127e-08,1.1778643261050033e-07,0.9999964203573765,0.9999448082762499,7.842660306991838e-13,0.9999999199441412,8.870081552799946e-13,0.9999999999977882,0.9999446919626779,0.9999653023158136,0.999977582376901,0.999798334393266,6.543092762783612e-08,2.6189574434497016e-08,1.0,1.029083869337485e-10,0.9670053509257215,1.067718394093562e-09,0.9999999999999925,1.3233927574414086e-10,0.9839978000158559,1.0,1.0,0.9999999699622486,0.9999947019795618,0.9999710624175964,0.9999999999999742,1.0,0.9122584099744788,0.9758341813509304,0.9999999760219621,1.0,1.0,2.6391147084684298e-08,9.741580906466829e-08,4.730722859649684e-09,9.396030141589823e-08,0.9996451802913536,4.3452732792781407e-10,7.421069557504141e-09,0.999999500783641,9.399467244325343e-05,1.4029044700865655e-07,0.9269069438516073,0.3454843862132124,1.0,1.166093684131255e-10,0.9986352856739618,0.9999991793892983,3.392871254212528e-08,0.1970578904323817,0.9999999979520799,1.0,1.0,0.9999866395145902,3.3917895427154077e-09,5.65773826333904e-13,0.9996721520570035,6.14686736794757e-08,0.9999654677827137,7.571241880941771e-08,3.475034691016376e-07,1.0,3.6575807818264644e-06,0.00016565827737113448,0.00035227319296875497,1.0,0.6171322711553158,0.9999999988770352,3.4532131902201505e-12,4.3576179672746765e-12,1.0,2.308720382772509e-12,1.0,4.994992627808561e-05,1.0,2.805891591870731e-10,1.0,0.12615363067572016,6.444171699992676e-05,5.465469668408785e-07,6.376534797953196e-07,0.9999999999999998,3.2771928312526134e-08,3.8274508058312785e-10,9.707662409059715e-13,1.0,2.1205975928987504e-09,5.9497805309488955e-09 -वर्ग,shape,4.255615378995653e-07,6.0047685969561415e-06,0.49415496983231494,0.9993576538119698,9.651571240798802e-06,0.9999755087840514,0.9999875375918217,1.690688924696573e-05,3.1178030346432126e-05,6.076519741690845e-05,3.1839470137378065e-07,1.5755643913610717e-07,6.913205136860555e-07,2.4364957794477683e-07,1.7400150471194277e-05,0.050044668771136225,7.748826079879163e-05,9.67361234633988e-05,1.4093081816843676e-06,3.1828004342779767e-06,4.8180412462346676e-05,0.9998201374268232,0.9993342538193842,0.998959313924005,0.9534118506148702,0.9997731510422548,0.00010926121758647264,0.4441148938627738,0.010062879083827117,0.580393242924146,0.9986033380371679,0.000406269396782045,5.6795051598137175e-05,0.0003290440438866653,0.00017925191824226267,0.005714116734086365,6.272184617599055e-05,6.897292108109166e-06,3.742224016485253e-07,5.069690426032503e-07,0.0013405800316129714,0.0007526728547714833,0.8128249973684241,0.7879050634974852,0.8095682315922239,0.004072711170950629,5.747419730671286e-06,0.00217105501746075,0.9999915883846127,0.0003880253275813189,0.9999962085387998,0.9999554478104306,9.160175792041053e-06,0.00129694610848523,8.720665546303844e-07,2.1361348067212545e-05,5.100779046856899e-08,3.857158373016644e-06,1.0757694728745783e-08,0.0013343676557519123,7.981691858859922e-05,6.008694699235908e-06,0.0008657826981130644,3.129430653170796e-07,0.7522278918462691,0.9997086603342794,0.7975478105862016,6.951489858126583e-06,1.6993535437419454e-05,8.760470508707207e-06,0.0005418370664605883,5.740559910817625e-05,2.746768109056733e-08,9.697745298300305e-05,4.285247288369295e-05,7.104989575532897e-07,0.9999764883069651,0.9905859046531731,0.35493087742450274,0.00566132407407522,1.1852803062422045e-05,0.056853035616921635,3.688958679730442e-05,2.119140730170119e-06,0.0005353757874576411,2.4416570718204576e-05,0.9125958217657183,9.208246043341665e-06,4.0162676341315285e-07,7.467235134601374e-06,1.1151236035686283e-05,2.3542991593610142e-05,3.8674695454968506e-07,7.665380946125101e-05,8.064112649330196e-07,2.022141249000432e-07,0.7702976132460765,1.695563190361865e-06,0.9993143919800401,4.865278498364032e-06,0.0001966829885271271,0.0003279965177793481,3.336309098321697e-05,8.899314130186277e-05,0.9681711465915575,0.43721305979591096,1.4481958299653033e-07,0.997487670717955,0.26852568252547093,9.255880114480318e-05,0.9998489575110312,9.283088526514412e-08,3.532029288823107e-05,2.951824958974985e-07,5.757891326355e-05,3.14034686874786e-05,0.0009346643483551963,1.8282016446597368e-06,4.492079679341804e-06,4.138413138940404e-05,1.216781695957504e-05,1.4341751508967403e-05,0.00022382247659657578,0.007512432540814686,8.241905080410562e-06,9.234308474431118e-06,4.960111208070077e-06,0.00019936160987501684,0.00019271825751722335,7.637934458744269e-06,0.007959937063243069,0.00022547269345602285,0.9999587383425289,4.674466001852714e-05,0.0006161182270298255,0.0003160938120686791,1.998167057670045e-07,7.317541899350537e-05,6.171408340332121e-05,0.055865817732910994,0.020040091063134088,6.633959534273102e-05,0.0008440676754703157,0.025619221038621274,2.8251613380443086e-07,0.15954548440950989,7.231042399197118e-07,0.10383458938701251,0.9976901067139257,0.9908195527247472,0.0006756237649347134,6.305726387847493e-07,0.5158934540766106,0.0007790473178005217,0.5745797852649217,0.00502267099448868,1.5755643913610744e-07,0.23185818362594515,0.6357665411665069,0.0001562497598388353,0.009566938137059363,1.765017276397187e-05,1.306966532555138e-06,0.003727463514521475,0.6762081298141058,0.9696866561955778,0.9998118091337507,0.00011757664329045122,0.99674119420176,0.9998512157929093,2.562275314590007e-08,0.999676778321306,4.920414870984568e-05,0.8269387614573345,3.25856394509535e-05,0.9999966171341715,1.785708191064575e-05,2.549237408404688e-05,0.29875667592923394,0.060840063946707275,0.009423595990032682,0.0004459239301214008,0.010890730445286516,0.9999415902908924,0.4019500075142612,0.9999278172956438,0.9999537103347668,0.07288832936751259,0.20876608119759527,9.507320432527234e-08,0.9999965665499413,5.722762791503353e-06,0.00020559803308838496,0.0004991398338609917,3.3394667118353105e-05,0.9999977773133523,0.0003096277105083185,3.379019753316732e-07,0.9999562163126042,1.457989331998859e-06,0.9999813746225827,0.0003050467491206763,0.43871683841466375,2.787910847319713e-06,9.686599816199768e-05,4.185256093714018e-06,0.5713258820407874,2.5978940056081026e-06,2.4925788744539364e-05,1.0604593889521403e-05,7.285385172146683e-05,4.4766080888257317e-07,0.9937108187191187,1.287538863843133e-05,0.030508305677365753,1.3984778453342938e-05,7.962528337584921e-07,0.9966569271247819,0.008489066739310127,1.127564136690666e-06,0.000260368644247376,5.709780173866918e-05,0.0006927233047949588,2.589046172334852e-06,5.747204419347049e-07,7.768947911179083e-05,4.40082906032064e-06,1.0613204497449656e-07,0.00016219579572364584,0.0005069338916054699,4.480218309580362e-07,0.00010888373970320091,1.2254001520516465e-08,0.000421420619066168,1.2167816959575018e-05,0.0014943104334211772,0.0026362652404178484,0.9525958218643205,0.03643486707132161,0.0004493914229730826,2.1192789772486636e-05,4.2173183630719935e-05,0.0002824927200077793,3.414855514135094e-05 -वर्ग,object,8.070845184983478e-07,0.002340218354308428,0.15582075677956428,0.9998369803140759,6.613489598907808e-06,0.9999382253873509,0.9999368126364722,4.503428091798752e-06,2.2399035948733905e-05,8.81308079912711e-06,2.264662871561232e-06,5.590458594330044e-07,1.1686862934506642e-06,0.00020670221109679837,0.2670527762783153,0.04878456338162948,6.59717336399783e-05,2.64051795175068e-05,3.781563056087166e-08,5.933312395209831e-08,2.297942297596813e-05,0.9911178939530768,0.9971383590935882,0.951698325151313,0.9680746133237784,0.9963002807704229,0.00011619364332846983,0.6754368271994893,0.006444505455978839,0.986754787495836,0.9860357795272965,0.0002264590560248908,0.00039382660827197235,0.00019305305661076336,0.95408316467225,0.0040992714642236056,8.407225492118653e-06,1.8633674214160508e-06,2.390393768267146e-07,1.074988137556832e-06,0.9241374653159576,0.036465886774227206,0.7562565769972523,0.9963411374508503,0.7203486699323932,0.0005868837716418116,5.440226675171694e-06,0.0026262182023835947,0.99989047162429,0.00021875153605947076,0.9999737711293499,0.9999998943730168,4.035764132698451e-06,0.0016913322690655444,1.7532939852369192e-06,3.851745781440042e-05,1.3150111974212822e-06,1.959611422500047e-06,3.820617867274493e-08,0.0002662204176276601,2.5669701793610368e-05,8.338457694363175e-08,0.01523094560635806,2.899466896686876e-05,0.9668473821418941,0.98706419992593,0.5278814878715934,4.263129522810716e-06,1.6941310500370345e-05,2.0119390750143455e-06,0.00115986089745011,0.6929895188713683,0.0056768099461405475,2.8014837103909864e-05,0.004502683806560042,0.00010745733443882582,0.9992347088597857,0.8190636977760324,0.08098847224811849,0.005421669130809658,1.1184554218629585e-05,0.07063800771472073,4.833970150748531e-06,1.7925105275280848e-06,0.00015402188760809174,6.142229860900573e-06,0.6790803223031416,1.2030871630397755e-06,4.752242273094091e-08,8.46937142823524e-06,1.4623368684503058e-05,0.0003350794628888072,1.133887366908391e-05,0.00038716957912704697,1.3598495687013944e-05,8.054524357077835e-07,0.7984060493912735,2.3094359584206106e-05,0.9890023785219457,5.908551738074223e-06,0.0001376741664145978,0.00033663884431544275,0.00019893498457123238,0.7742878470157538,0.9347353102740859,0.38166469567970623,1.9712781183119225e-06,0.9024798021924267,0.033026257219541576,0.00020138670868904152,0.9963417352056273,0.006116367824863049,0.7397949033549611,2.4821749249683554e-06,3.744800848228674e-05,7.667209051733203e-06,0.0005545696699666835,5.18372903683831e-06,4.289005918134435e-06,4.7003607715262496e-05,2.765601558068245e-06,1.7559288569758308e-05,0.00022447715673018035,0.9812969206675504,2.9313248412908095e-05,1.775814013017152e-07,1.3728554493091337e-05,0.00011090266311209573,0.0001224902689142547,1.0073643324617107e-05,5.744284017405494e-06,0.00012839211118950716,0.9995852617236426,1.7814759057233588e-05,0.00037164355390770736,8.907597707431615e-05,4.5891640604641944e-07,4.004430509393678e-06,6.056557394676668e-05,0.7050065895663072,0.9099695475648628,0.0015927839480152392,0.0010378821109976934,0.986289630891173,2.373108089025503e-09,0.0008632696754125934,9.730143713518666e-07,0.053325616670749025,0.9500867879845293,0.7456946399782497,0.7488535492215099,2.3179879795026932e-07,0.6759683031521817,0.0002190774363889131,0.08585887776481528,0.0005702199067552413,5.367428089191151e-07,0.3478983450549536,0.8970978746690559,1.2905958830988886e-07,0.12036252531083205,1.8474521196627933e-05,1.0358981117957486e-05,0.015732357258980447,0.7989186262459531,0.9814262342835047,0.9992022628849077,1.3036450131615672e-05,0.8686971278108035,0.9999998199900506,7.384490780775126e-08,0.999627948745631,1.9755991675381207e-06,0.7024760153068025,5.005124577034613e-07,0.9999638937170299,0.00018502169156582176,0.7738705739517601,0.6223124862580114,0.17905370097356077,0.040008673511732644,0.004838841477690041,0.7604467347491561,0.999455301268225,0.5182545285481557,0.9997981660977042,0.9999997746979133,0.3420730530608305,0.028551853967084727,7.631583449092282e-07,0.999635915084961,5.703765088098884e-06,1.246762486317469e-05,0.0003998710038433471,2.6814678268997735e-06,0.9999800661544347,0.00024021615425177118,2.4838788965967658e-06,0.9998493347031462,8.850168951826265e-07,0.9999999721946996,1.2020683768178014e-05,0.5520643302975027,5.692837446356288e-06,3.35365014022442e-05,1.1692878734865778e-06,0.07441224122395777,0.012652612137771945,0.6359911415656931,2.0388523241685366e-06,6.271855875369187e-05,2.4848119128231274e-07,0.9933028999325576,5.334847469858447e-06,0.06217188233593599,1.52379006667553e-05,2.638689490720894e-06,0.9982669605442354,0.001528834968758996,9.301642043628587e-07,0.00010933846140277629,0.18953790256371023,0.0016314582716796195,2.8958507446805654e-05,3.0602010955416316e-07,4.7969262635826865e-05,0.0011508611734335945,2.5506077099647856e-08,0.00951083754217415,0.00045593016916919033,0.02834503226819609,1.4007344452538857e-05,0.0022572807523533237,0.0005976378671979725,2.8113258987580104e-06,0.0008872051705487476,0.0010606322128083557,0.991801506409752,0.0034902626202336635,1.6081062290814763e-05,3.9443750261499694e-06,0.7164008056306778,0.00033580733933501325,1.7281194072726174e-05 -वस्त,rgb,1.0,0.9999999992463555,0.858718512738908,1.0,0.9990783051661752,0.9999999467007865,1.0,0.99999999999969,0.9999999999932083,0.9999999999936233,0.006628760289790546,0.09485512010868954,0.05327346766369397,0.99999999969273,1.0,1.0,0.8164983574187259,0.6587823285094558,0.7969660826432781,0.026128375432266582,0.9837885610527858,0.9999999979954024,0.9999999641721147,0.9999999999985216,0.9990448350134109,0.9999771877450234,1.0,0.9982563239089689,1.0,0.9999994525596095,0.9999999423282318,0.9582922615819254,0.9999998804803388,0.999999999994831,1.0,1.0,0.00953125558843472,0.9999963775343231,0.9995934528185898,0.9999948896300817,1.0,0.9996254196808981,0.9999998662866675,0.9999999782832731,1.0,0.30429254749467255,0.9382643835050205,0.8569048907741614,1.0,0.999650059699476,0.9999999477473861,1.0,0.9999999999974318,0.9999996309583296,1.0,0.9999971873011405,0.00824380845960585,0.005844888184125291,0.07413634715756688,0.030573115343536517,0.0070891269481264995,0.9959110518948358,1.0,0.9981522454105659,0.9999976144943562,0.9999999999993603,0.9999985512279361,0.9999999999987441,0.9999999999995273,0.9999999999964582,0.9999997471918842,1.0,1.0,0.9999999999994049,0.9999999738065213,0.9989204993696451,0.9999948359657829,0.9999999999976024,0.9999999991842923,0.004649098479976869,1.0,0.005672315383349138,0.9999921943605682,0.0031759693378515586,0.9999999999993026,0.9999898504867087,1.0,0.9999975887455538,1.0,1.0,0.9999999999997833,1.0,0.01438001089018123,0.006388187392868495,0.004164639077838695,0.0035068986001246727,1.0,0.00314258428162246,0.006623986214792621,0.0029508944000345137,0.0022601621619373325,1.0,0.9999940429286456,1.0,0.0026127482296897085,0.9999999412730839,1.0,0.9999999999958198,0.9998228403583681,0.9999946620087401,0.9998110454235203,1.0,1.0,0.06713640969510996,0.014187404870803966,0.007339100487315693,0.9999999999692499,0.0014243776486034855,0.11711716556369633,0.9071018503623275,0.9680546235337708,0.0035275450649636967,0.9998563186572492,1.0,0.03221272204413584,0.5068964987165169,0.00397235304425743,0.9999999999258091,0.9731131571510069,0.9999998262101741,0.0036782796985521515,0.9999999998898395,0.9999999604506746,0.9999999999993179,0.9999999999644074,0.7900917849310828,0.8179503157361103,0.7397566925815949,0.9965589377109932,0.9999995969064763,1.0,1.0,0.9999997662697357,1.0,0.0672624077976241,0.007863102190496895,0.01205619745494919,0.999999999751432,0.9999984812067494,0.999999999999597,1.0,0.9926490296932196,1.0,0.006148145138856522,1.0,0.03215920584591369,0.05829760548421805,0.9993516091697241,0.9772526462834493,0.9033963238738251,0.9999743514854381,0.8952831285217188,1.0,0.9987770126926244,0.9997316915859599,0.9999593856203081,0.999622910133069,0.038340385759787175,0.02751323030146264,1.0,0.9782991919036252,0.9999999463665121,0.9996892994238293,1.0,0.9496586298398922,1.0,1.0,1.0,0.9999958926905157,0.9994293965301405,0.9989679314636396,1.0,1.0,0.9999999459205426,0.9999999396853775,1.0,1.0,0.9999999964239008,0.02807145826856638,0.059355182703595154,0.0063741538587198925,0.999999999965479,1.0,0.005765205221237004,0.9999973480529851,1.0,0.9999999998400588,0.018680303898621478,0.9999999065790216,0.9999996618018236,1.0,0.9959349059676357,0.9994613039069298,1.0,0.0017986666986713425,0.9999986189207397,1.0,1.0,1.0,1.0,0.9999999608798091,0.9999982517492211,0.9986122481036958,0.04481833335400765,0.9999844799555764,0.0077743462592033,0.07217113909701157,1.0,0.6265749651360042,0.9885374615068105,0.9810159581139815,1.0,0.9999997564648404,0.9957140528903243,0.5961489913462373,0.5663843057133426,0.9999999992323774,0.5384259240748437,1.0,0.9674700466379759,1.0,0.99999999855904,1.0,0.9999965920607996,0.9555199658772789,0.03361808955918269,0.15378440255114198,0.9999996384464428,0.999999743322716,0.9992363937801099,0.9999999153544051,1.0,0.0032387708418897604,0.003130977497006913 -वस्त,shape,0.9999998492310928,0.9999983275168781,0.9999970578858227,0.9999978098629542,0.999987692181939,0.9999937725471584,0.9999964713168601,0.9999999973043283,0.9999982575407783,0.9999999847205496,0.9999999988554544,0.9999999997025237,0.9999999997358817,0.9999988366221225,0.9999999492252988,0.9999978831650517,0.9999901543059728,0.999978761810993,0.9999976327388826,0.999999970752941,0.9994235635106044,0.9999723682118729,0.9999973451870933,0.9999567855620712,0.9999868028277531,0.9999272831257175,0.9999997071290038,0.999999595467929,0.9999840373119133,0.9999985365402523,0.9999994087435141,0.9999824414839362,0.9999947055115403,0.9999992605336866,0.9999939358388849,0.999978096233622,0.9998618491733541,0.9999999040231667,0.9999999252474336,0.9999999927984995,0.9999972481620014,0.9999980768792511,0.999998737506762,0.9999970805883713,0.9999879939921784,0.9999927736995031,0.9999773988426328,0.9999998465213864,0.9999963874795154,0.9999981415246835,0.9999964263304668,0.999997630896575,0.9999990277641762,0.9999943947574115,0.9995965979282956,0.9998885708995324,0.9999999999110523,0.9999990903891451,0.9999999998744582,0.9999999071517645,0.9999990566012749,0.9999984147916674,0.9995662759974966,0.9999985833792799,0.9999831316631521,0.9999771123702692,0.9999773222785212,0.9999995313943861,0.9999998847471454,0.9999998385436283,0.9999956660270068,0.9999951476481252,0.9999992468721964,0.9999998286913492,0.9999995649150833,0.999999565853525,0.9999860304451977,0.9999951448868853,0.999994654812876,0.9998880509434726,0.9999997176820326,0.9999808956457319,0.9999999304965093,0.9999999901952613,0.9999997461455512,0.9999999307949033,0.9999980485770101,0.9999987888470986,0.9999999573679803,0.9999997836564651,0.9999997922248537,0.9999874111636802,0.999999991334871,0.9999904857142006,0.9999999607943131,0.9999999993833513,0.9999905585893768,0.9999991750589738,0.9999986792456625,0.9999998457015402,0.9996745041680002,0.9999674002925182,0.9999811477054394,0.9999733106883402,0.9999393104090424,0.999999242379302,0.9999793812303274,0.9999598521085029,0.9999974559663192,0.9999882304928407,0.9999956514247177,0.9999772830023689,0.9999586693007012,2.914385428283052e-05,1.2044791070253716e-05,0.853509966829399,0.999998396079335,0.004002036847525192,2.3279937341212242e-05,0.999999961176778,0.9999966087640056,0.00012479096972172426,0.9999952257918766,0.9999926791196948,0.0008730181943015491,0.9873213489975002,0.008144226774895331,0.9999914011181569,0.9999960958548381,0.9999984736367876,0.9999863274536105,0.9999990677895582,0.9999986221124234,0.9999998497911536,0.9999961939146583,0.9999922822482679,0.9999595993903763,0.9998979590290149,0.9999994956750208,0.9999985343601419,0.9999874332834828,0.9998202999197812,0.9999990041114232,0.9999987423456987,0.9998328260329538,0.9998526087781313,0.9999999999303466,0.9999920376169925,0.9999979198028588,0.9999067617699496,0.9999878290691925,0.9999999979380922,0.9999982152061946,0.9999996779099496,0.999999312152547,0.9999999850118699,0.9999999997025237,0.9999996660570041,0.9999998916448796,0.9999980378963231,0.9999994462472388,0.9995455140156657,0.9997690994986353,0.9999994384424205,0.9999998059263077,0.9999995809288516,0.9999994278819255,0.9999995471010714,0.9999978562564538,0.9999941831214219,0.9999999996580959,0.9999950048446854,0.9999999952473178,0.9999697378565257,0.9999998941941558,0.9999882751101503,0.9999503654348163,0.9997721557209088,0.999999910321363,0.9999997751282993,0.9999993450474185,0.9999956907175513,0.9999757998921591,0.9999867189052893,0.9999989834321543,0.999993880996464,0.9999990051764858,0.9999996598930387,0.9999999723542922,0.9999999998957723,0.9999996093117801,0.99999932973957,0.9999994701099874,0.9999938598008056,0.9999999855126727,0.9999964471865179,0.9999957292803733,0.7902301770408117,0.999998916102256,0.9999964643660014,0.9999969188905453,0.9999999914326557,0.9999999398516349,0.9999990930812823,0.6850524372315445,0.9999703576941982,0.999985897854448,0.9999849100868219,0.9999999992751218,0.9999999511015847,0.9999991072778815,0.9999992142169125,0.999999357464619,0.9999997613258848,0.9999999241509687,0.0002225491566703745,3.615909911916604e-05,0.9999995259472809,0.9999980761667081,0.9999925610032179,0.9999694011994633,0.9999918193003202,0.9999939764377089,0.9999985311581702,0.9998906071039264,0.9997861396725178,0.9994154382889089,0.9999999166986621,0.9993425174129531,0.9999965354922182,0.9999998251682499,0.9999993694310955,0.9999988774035494,0.9999953550367328,0.9999966087640056,0.9999987812927229,0.9999996789788068,0.9999997370008847,0.9999988382321153,0.9999994204296947,0.9999998796294122,0.9999741155181457,0.868946647289674,1.2329266627364703e-05 -वस्त,object,0.9999998047873028,0.9999956390711108,0.9999876847272686,0.9999985788811888,0.9999319620671141,0.9999974884338866,0.9999988894140397,0.9999999902824411,0.9999962764288995,0.9999999619048457,0.99999994259689,0.9999999693167294,0.9999999813061716,0.9999974834565265,0.999999870321124,0.9999986218213661,0.9999123896589183,0.9998125796188606,0.9999179336078103,0.9999992988199027,0.9962782759900205,0.999962539387572,0.9999959112432817,0.9999401147682108,0.9999919552341839,0.9998635689895695,0.999999864137443,0.9999996852008856,0.9999976009088993,0.9999960958920789,0.9999991563095402,0.9999365015366208,0.9999909743365674,0.9999992221577569,0.9999940067065539,0.9999954728104018,0.9993153974276172,0.9999991016642059,0.9999994583211679,0.9999999616918153,0.9999968390454338,0.9999963273238773,0.9999991584456035,0.9999969668205346,0.9999972986220533,0.9999753282368924,0.9999112806388835,0.9999987045301202,0.9999991169707348,0.9999970119665085,0.9999974910700211,0.9999978367468042,0.9999988321305712,0.999994175493899,0.9998637293581196,0.9998428617596254,0.9999999948435729,0.999988197446003,0.9999999876323707,0.9999977435069943,0.999982898402626,0.999975229436165,0.9997183764970757,0.9999924365839833,0.9999491652050977,0.9999718960592385,0.9999583939561082,0.9999993098582183,0.9999998117040086,0.9999997076725964,0.9999925422177004,0.9999885869624807,0.9999974684370423,0.9999997780533012,0.9999986204483298,0.9999967980294795,0.999970294917941,0.9999922646820684,0.9999924793104258,0.9994620392515496,0.9999997963223592,0.9997556531287135,0.9999996081625485,0.9999997335469032,0.9999996912323171,0.999999522061752,0.9999990168093219,0.9999910023566194,0.9999998714871824,0.9999998239284164,0.999999724949422,0.9999968371173696,0.9999997357097518,0.999786340730187,0.999998783581967,0.9999999665710828,0.9999986918138415,0.9999801158336963,0.9999956955050511,0.9999973995210497,0.9983838238807738,0.999970268665409,0.9999603148415513,0.9999618923097993,0.9998291449993127,0.9999986953257123,0.9999841076505905,0.9999420290045389,0.9999905394979438,0.9999792081546169,0.9999864728275868,0.9999673845332394,0.9999174631330612,2.462498116561939e-05,1.3232872857024406e-05,0.8414807482217581,0.999998728576523,0.0020297838896371737,2.11570696859324e-05,0.9999997832622335,0.9999731801846877,6.832053676243646e-05,0.999993434849523,0.999992843064843,0.0001784267185042343,0.9472872930121662,0.0032428369354578004,0.9999929584549108,0.9999918314963582,0.9999971624069441,0.9997614275468444,0.9999986774257069,0.9999988876243634,0.9999997894734708,0.9999972578460911,0.9997644183372161,0.9995507060082028,0.9987318084144764,0.9999986937597126,0.9999943350015953,0.9999897345209049,0.9999263292756512,0.9999977403398713,0.9999970327441462,0.9989100973241033,0.9994561796957341,0.999999996723504,0.9999866562275155,0.9999948741386127,0.9998947313341883,0.9999767126167218,0.9999999647841483,0.9999993063969849,0.9999929850251332,0.9999997544350433,0.9999995280702123,0.9999999695629715,0.9999997210240122,0.9999998617680548,0.9999459936292641,0.9999995589653123,0.9960138888110234,0.9999175516389144,0.999999479838611,0.9999998378806155,0.9999997113143605,0.9999995382275019,0.9999916547668642,0.9999842001880425,0.9999966492002679,0.9999999921196486,0.999997803174031,0.999999963989672,0.9999904319581505,0.9999994555784559,0.9999950867002502,0.9999917241906889,0.9997504422022478,0.9999999345938347,0.9999997987533699,0.9999994992848233,0.9999992770739538,0.9999798930110081,0.9999855785855413,0.9999985079328753,0.9999987643467446,0.9999988889128457,0.999999003737186,0.999999180654649,0.9999999890365073,0.9999972631533404,0.99999845606615,0.9999995863927537,0.999927398591579,0.999999895458733,0.9999990344805011,0.9999969567735718,0.45169124554789586,0.999999151573105,0.9999938905466292,0.9999970458193248,0.9999999333577672,0.9999999312862883,0.9999994901575674,0.42708096994222067,0.9999569651933835,0.9999942100774764,0.9999778483860765,0.9999999960240189,0.9999999527533523,0.9999985251238254,0.9999939760418004,0.9999994338749506,0.99999366426208,0.9999999222701648,7.426200374496239e-05,2.8344133393646296e-05,0.9999999454481917,0.999989203789978,0.9999680729513865,0.9998701389671225,0.9999811231980599,0.9999903083659365,0.999994287155223,0.9978200518971696,0.9982439071687144,0.9994971758174835,0.999994753485775,0.9997875709654097,0.9999775439001679,0.9999991324169109,0.9999983168017815,0.9999960444040559,0.9999921778938802,0.9999733039604853,0.9999950989034733,0.9999980086452758,0.9999989676913522,0.9999976617711229,0.9999977036450521,0.9999990673465403,0.9999160854335576,0.8673208601020849,1.3921898153797415e-05 -विभिन्न,rgb,1.0,5.155884913900975e-36,1.0,1.1850920760703376e-11,1.0,2.6242680141553837e-07,1.0,0.8878381976072134,0.9688577111310104,0.9999733591111247,1.0,1.0,1.0,2.2513043226512074e-36,1.5644186184446962e-19,1.0,1.0,1.0,1.0,1.0,1.0,1.0,2.848653130834534e-06,1.0,8.94531665897049e-13,1.0,1.0,1.6097298005799016e-11,1.0,3.447712989702607e-24,2.8724918539704647e-07,1.0,7.26226441041942e-06,0.9999999999999998,1.1703408261289154e-22,1.0,1.0,1.0,0.0001257353210979819,0.016283615994148327,1.8555279169270703e-10,3.7825644954651725e-16,7.304425864100946e-07,1.0487690285142867e-25,1.0,1.0,1.0,1.0,1.0,0.9999999999999964,4.201615381941503e-07,1.5411775548007573e-10,0.9981519576414131,0.0011276724112708404,1.0,0.0006752832888417491,0.9963499955277537,0.9998693620749235,1.0,1.0,1.0,1.0,1.0,2.920956561634753e-13,1.3056362316395066e-21,1.0,1.0,0.999782903870017,0.9668557105361616,0.922718517410411,0.00014648151762838366,1.2825139206116401e-09,2.1096045439754683e-09,0.9999685768541396,1.3055511104169687e-33,2.8228456355321254e-15,1.0,1.0,1.0,0.999989574366987,1.0,0.9996703994637556,1.0,0.9999999135514029,0.9108206397349068,1.0,1.0,1.0,1.0,1.0,0.9525836634186299,1.0,0.8226210218420598,0.9999468513342938,0.9999979683559062,0.9999997861178473,1.0,0.9999999266484729,0.9990136597303321,0.9999998988869057,0.9999999985378278,1.0,0.04061507273032316,1.1152104130280885e-11,0.9999999993243804,1.7841621883962993e-07,1.0,1.0,1.0,0.12528876763869776,1.0,1.4450336281117984e-10,2.24943377796659e-14,1.0,1.0,1.0,0.9999999999752969,1.0,1.0,1.0,1.0,1.0,0.9999999999994813,2.4242836410862958e-08,1.0,0.9726120706749578,1.0,0.9999999998533917,1.0,1.0,0.9999999999999996,1.0,1.4763418751928684e-07,0.9999507782110927,0.9999999999949227,1.0,1.0,1.0,0.9999999999999998,7.985969296676328e-24,2.2984929893027794e-21,1.0,0.000252863191642958,2.8938805395746964e-07,1.0,1.0,0.9999999997883635,1.0,1.0,1.0,5.925530230608842e-08,1.0,1.0,1.0,1.0,1.0,1.0,3.790572792381089e-16,4.968628393069572e-13,1.0,1.227974074861137e-19,1.0,1.0,6.193303788433474e-14,1.545220958232041e-14,4.73767654683743e-15,4.940119676308329e-13,1.0,1.0,2.4023784226597584e-11,1.0,4.338103707492279e-07,1.0,1.0,1.0,1.0,1.0,1.698104446322038e-17,1.193128392040664e-20,6.895361735117873e-16,1.797609323203423e-14,1.0,1.2450287709622482e-22,5.7953688773503626e-06,1.8357107177063308e-07,1.0,0.01974845874390401,6.724724376470927e-35,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999902256,1.0,2.5767393239002286e-06,0.003910933099330302,4.981977092084287e-08,1.0,2.3743367335603222e-11,1.0,1.0,0.012391319217680408,1.0,1.872720043768315e-09,2.283363887330954e-18,1.0,1.0,1.0,1.7571965492720631e-12,1.0,1.0853939172268186e-14,1.0,1.0,1.0,1.0,1.0,1.0,1.4188486716228119e-07,0.0002728424629728898,9.071917743928757e-12,1.0,1.0,5.3372354854338866e-36,1.0,1.0,1.0,2.4573861276268758e-25,1.0,1.1721657070914793e-08,0.029060844794509384,1.0,1.0,1.0,3.025024605203576e-23,1.0,1.0,1.0,6.136190460830118e-21,1.0,1.0 -विभिन्न,shape,0.9999980415795613,0.9977587774294407,0.9999915178793185,0.0005389038213455119,0.9999997966268978,2.8476220090736048e-05,0.08975740762261293,0.9997377893660259,0.9855673061932951,0.8991869895779708,0.9999141171531253,0.9999999880056737,0.999982103256857,0.9999408715213748,0.09797667429237723,0.01115708155741275,0.9999587812072741,0.9999998359942681,0.9999999453210694,0.999833675519538,0.9868408259480986,0.9996384043401791,7.926692427178837e-06,0.9995419996386438,0.9998536423342056,0.9993259934727862,0.99898510496484,0.9996770405848259,0.9988959957197174,7.268085456882757e-05,0.00020859897510586842,0.9999998655115957,0.00041352737358245215,0.9900882457286421,0.2865378672006889,0.9998840754558156,0.9995440527581544,0.9999723053904017,0.9992702244787004,0.9308260775844001,0.004368310929530785,0.012195791647730537,0.0004373871636358799,5.607315795248546e-05,0.00046064820508162375,0.9999212622058287,0.999999976671811,0.9999276141872031,0.007359287286195962,0.9703606951060887,4.524728608933737e-06,0.0003672589886923239,0.9999511376964518,0.00032513375499461334,0.9883892421534064,0.7557552925847305,0.9999998142995422,0.9999919487657444,0.9999999988867008,0.9511288183226427,0.9662276291197864,4.544909468140456e-05,0.6141315959427177,0.9918797894311351,0.0002717504451297147,0.9992735860047032,0.9998231316281444,0.9988757530768823,0.9998293922512846,0.9778373388586376,0.001270695245813145,0.9968486716093897,0.999848874010072,0.9747520784978022,0.9836713938622565,0.9988424884455732,0.9983758429146988,0.9995023000227314,0.9999945473766513,0.07386274992977919,0.9998428341572594,0.9995933391708025,0.9785628163508474,0.9999956569408395,0.5953572146569347,0.9999555428169666,4.8731441031519686e-05,0.9999692643717919,0.9999696300039631,0.9999823740265583,0.9989625210544649,0.9999998971770522,0.9999997425024919,0.9999995995210677,0.999997864765082,0.9999999689819522,0.0004898802220168147,0.9999994758438916,0.7482963973854683,0.9995341582059033,0.9991891640576196,0.002768075791201738,0.00020759894952852251,0.0012225475093865599,0.999088460503189,3.782396334457959e-05,0.7139485783224807,0.9999281955260324,0.9992737712738534,6.138335500019967e-05,0.6156705129991408,0.28691405777017376,0.9922910878898985,0.9999711888526294,0.9999996887450392,0.9999991186147404,0.9941664158462437,0.9999851552071625,0.9999796200871542,0.9999952479743696,0.9999990604037159,0.9998649200858614,0.9974493651816163,0.16946563681421445,0.9999982058461034,0.9999859849488526,0.9999998560789923,0.9769309074170842,0.9962441469946468,0.9984472327351539,0.999999999984285,0.9978228212484406,0.00013406604431210055,0.999525907432109,0.9774379468955305,0.006917149717709646,0.9985199218629272,0.9994406243213618,0.9967600079994744,0.00026881350288699704,0.999999942768611,0.7183211758984185,0.002949780728212561,0.00942909866682594,0.9999814182657051,0.001709793516075991,0.9999932586553585,0.9999886563614676,0.99853487843678,0.9999090982124476,0.02689157481494761,0.9990623046397296,0.0016996178152977066,0.8589057214849896,0.0006126492873355696,0.6325931063325916,0.9999999880056737,0.9995702002979756,0.9892694787014277,2.2477170648585907e-08,0.994355721387138,0.9997928758156939,0.9999997007873347,0.8525445857797905,0.9223464612624157,0.9562488416509314,0.4831596579860607,0.9850875524859374,0.33741084776033187,0.0004724446589111238,0.9999866427097165,0.0004185820441796627,0.9969391001403988,0.00033416930147866304,0.8767082908638313,4.178560181739772e-06,0.9999954957580607,0.9781567859388458,0.9547467670726352,0.9991322576960219,0.9992661086040846,0.7415379142649766,0.9999999987474639,7.120735931454562e-06,3.665023940683087e-05,0.0008310874051217527,0.0007661313834409939,0.04810262468320085,0.0005517442088670493,0.9999998674919839,1.6677488806842643e-06,0.9999618938818056,0.9999862473627856,0.0032570878200318676,0.9592864968685049,3.802533310528353e-05,0.764234232821044,0.9999776963273004,2.975969599385877e-06,0.0004842870542151551,4.687198896035467e-05,0.9719459299456515,0.8706009922110586,0.9999994023490214,0.9999918133627016,0.00019096808812953594,0.026962124623924315,0.0007852833419512616,0.4441262494510101,0.9999919253611209,0.9968390165060822,0.9999985861409996,0.9385682785875409,0.9999782606028585,0.9659191965103532,0.9999790761197235,0.9999812814373595,0.07986839806838503,0.9999752968895514,0.9999999998560511,0.9999997185838013,0.6279517594788544,0.0014717569322516854,0.9995538552233726,0.9999999580417982,0.9994523166932694,0.9999756771280497,0.9999999999497062,0.8333500018858585,0.9999913569343998,0.025686926651109443,0.9185968283551222,0.9997093389460707,0.0005549936361278241,0.9999990604037159,0.9999771290474073,0.9999994915678607,2.373970881716297e-05,0.9991021969478793,0.49170306773683,0.9999170295573993,0.9985293323900251,0.9999041283885206,0.9999371822679707 -विभिन्न,object,0.9999999999884162,0.00013704109252878137,0.9998519531726102,0.00012237592434203218,0.9999999519791635,4.694073043476403e-06,0.9999965414017802,0.9999646301487635,0.999567650609032,0.9995680501580358,0.999999950165527,0.9999999999368225,0.9999999960044967,2.0992629259829673e-05,0.0013597614305427724,0.9999999994618531,0.9999937601183764,0.9999993676063652,0.9999999998960645,0.9999696061105212,0.9999971805959719,0.9999864233598741,8.913972036425054e-05,0.9999986593004329,3.457166753953199e-05,0.999753489874817,0.9999999983481351,0.0001736658685024971,0.9999999925883931,4.3908933064239863e-07,0.00019859350668587953,0.9999910696635043,0.00018693344764135312,0.9998610014017052,6.78393064918797e-06,0.9999998578677984,0.9991488134545035,0.9999999999402496,0.11502906840292511,0.464461749527027,0.0014839862340554004,3.940545767817559e-06,0.00015144113576276641,1.3525925289042043e-08,0.9999671425398173,0.9999543992788731,0.999999523282077,0.9999954349602443,0.9999773855977822,0.9944371531219147,4.218983981076402e-06,3.377381720371583e-05,0.9999608500665552,0.00019785253330665311,0.999999988534454,0.002014384325085941,0.9999972186821952,0.9999502611174248,0.9999999999522806,0.9999924681498363,0.999988152205282,0.9999991784545149,0.9999998218696642,0.028776818493935905,3.5693952301758275e-05,0.9999674753396423,0.9999966557614162,0.9995726314907037,0.9998656316890556,0.9854552313839325,0.0017714316655139026,0.8842822609089571,0.9728715227400825,0.9994529066490835,0.0006008835074256118,0.1448184491273138,0.9998273311158623,0.9999914152469436,0.999998143806474,0.48093934697893526,0.9999999997213711,0.9997338482130487,0.9999996113602203,0.9999675063553627,0.9851327157238242,0.9999999089776569,0.9999999110841905,0.9999999998292093,0.9999999999980032,0.9999999997109961,0.9995827131305307,0.9999999997434876,0.9999980802617435,0.9999995299166333,0.9999990320099432,0.9999995074946445,0.9999069971518686,0.9999995880719537,0.9574138960958808,0.9996752025269425,0.9996073748642643,0.9999952767866975,8.873276151553217e-05,0.00013092668892497437,0.9992283072217184,0.0001498677136273656,0.9999999961042059,0.9999973907148632,0.9999990513378474,4.2581806229973175e-05,0.9974918363654927,0.026165431168511166,0.5702936124398794,0.9999992957648728,0.9999995351124068,0.9999461245600372,0.9516645809080405,0.9999992522936731,0.9999078078753594,0.999999976824198,0.9999999879101745,0.9999761989495985,0.9989644225540887,0.0041138534423612715,0.9999995950337116,0.9999442472244721,0.9999998562529209,0.9977109476003729,0.9997829922861271,0.999983864429119,0.9999999997995299,0.9999673520430258,9.768003132683575e-05,0.999943581864236,0.9925760409713001,0.9998549768385536,0.9999999795781467,0.9997798608725097,0.9999220592981273,4.133549538694526e-05,0.006610977883657828,0.9998469890523074,0.3805070869405385,0.06974205980332454,0.9999992425198099,0.9998813708064599,0.9999961499857403,0.9999994942843637,0.9995274429747205,0.9999980351696051,0.013370045508028644,0.999999928273638,0.9999993553367957,0.9999861362087619,0.9999996538854968,0.9999972333357275,0.9999999999259963,0.00038521206233366504,5.859259826805912e-05,0.9999006602244106,2.9333071538468804e-06,0.9999999979094216,0.9999999996585107,7.536260845041868e-05,4.534378914075207e-06,2.573773502059686e-06,2.5716214669188556e-06,0.9999986718277226,0.9999797479119382,0.00016024647760690103,0.9999999944248366,7.907748817198271e-05,0.9999993951442462,0.9999998929412773,0.9999832054721708,0.9999102539369858,0.9999999991592674,0.18531567313631794,9.110602977013474e-07,9.50513969527652e-05,0.00024333876931294506,0.9999978132206796,0.05886754561808727,3.643780009001322e-05,0.0001391867285754273,0.9999890956433314,0.0002588777925481134,7.173762575531735e-06,0.999763070660127,0.99999999994161,0.37354156389326904,0.9999998050652055,0.9999999998625797,0.9565625361775816,0.9999958058893135,0.9998744580692271,0.9793533879690428,0.9999957322563905,3.1442216262600313e-06,0.00048446455129811836,4.081210898498117e-05,0.9999989414428158,2.847568053315218e-05,0.9999999999673885,0.9999935073179576,0.00011531363031879591,0.9999999663068946,0.0004975379600811023,0.028849867978709417,0.99999999998968,0.9999615099082098,0.9999999999844502,7.383553387080449e-06,0.99999997182727,0.0013306856360376922,0.9999435935402713,0.9999955298754811,0.9999890447500955,0.9999794416379914,0.9999999455073941,0.999999557554213,0.012005703311312066,0.0036655792178208967,0.10843667062662057,0.999999999997149,0.9999842827259104,4.8404100595526015e-05,0.9999999999998177,0.9999999986919013,0.9998532164806133,5.871761656004951e-05,0.9999989241828781,0.9679659718670093,0.01085729714640239,0.9999999849586731,0.9999978353870294,0.9999971701571757,7.728382202078235e-06,0.9999736724820252,0.9999740228554794,0.9999999999029561,0.011314858344975564,0.9996769672658296,0.9999967929490577 -वृत्त,rgb,1.0,0.999999126336398,0.0059622461306070166,1.0,0.33118451211404226,0.8758510345821963,1.0,0.9997341818717208,0.9981255359862891,0.9975392118932865,1.704866499408415e-05,0.00023848813780719182,0.0001285007211693671,0.9999996494126501,1.0,1.0,0.00016802204275698102,0.00011580403926329088,0.0001451717632385874,5.703943679063915e-06,0.00035413063266912155,0.8541463529569993,0.8841979908445624,0.9989147874934404,0.09807613563456441,0.1369078497559362,1.0,0.05802759246456242,1.0,0.999898179857784,0.8702131018449608,0.026467846161214552,0.782911701686362,0.994747114580803,1.0,1.0,3.403210270573417e-06,0.04722084359849234,0.032072690466900054,0.20957954287849184,1.0,0.9718460147346111,0.7962842956126115,0.9999944298951033,1.0,0.001390582374232952,0.021612881077840224,0.005817351381943459,1.0,0.0038340549763508746,0.8738265349175612,1.0,0.998824820334869,0.5816604110572366,1.0,0.31124371592382577,0.00013260866423953175,0.00010599939048801238,0.00018885980910462026,7.384733987321785e-05,1.7327054397391487e-05,0.0007234014634817562,1.0,0.8984080025164467,0.9996653233673514,0.9990165518814949,0.30383810669561756,0.9991695578273196,0.9996345973072779,0.9987940141566574,0.6613279484110406,1.0,1.0,0.999432199358106,0.9999626893042628,0.9283145532986036,0.24226742962192782,0.9980619962095592,0.9164306799931131,8.910353168451405e-05,1.0,8.763617895603602e-05,0.01716604373619818,6.329626770374158e-05,0.9995573506599047,0.0148643399370517,1.0,0.06579788932718919,0.9999999999999984,1.0,0.9997776539988416,1.0,0.00020173400323803773,0.0001311672206933943,8.274433901527402e-05,7.075671417326889e-05,1.0,6.267154901221455e-05,0.00010254896313389777,5.652664187640726e-05,4.311708676420906e-05,1.0,0.18685632963817417,1.0,5.265715918568244e-05,0.8724572655057561,1.0,0.9978449368377681,0.07168908413530302,0.18529816315244882,0.02504294986969146,1.0,1.0,0.00024411192108528344,3.971268284736855e-05,2.151555398376002e-05,0.9890074546004246,6.946574739957623e-06,0.00028140029557505256,0.0034068476809959313,0.03132125824683971,1.6367009858446546e-05,0.0077022626224461386,1.0,0.00013473027467567726,0.0002752481391877639,1.891210897652441e-05,0.9823776693150406,0.00024682627548489505,0.18428634504121624,3.5097941465925343e-06,0.9615169272712316,0.8967096777862461,0.9993934724261097,0.9873107526051561,0.00010349763309282442,0.00013980070610046505,0.00011608122391440636,0.0009395867559926094,0.9999262705409928,1.0,1.0,0.6640059612891204,1.0,1.0113719565784088e-05,3.2245225881664835e-06,1.1201827709605933e-05,0.9595960354561069,0.3401783430750662,0.9993816330892455,1.0,0.00038691915400514864,1.0,1.5872870836533984e-05,1.0,8.066910690659798e-05,0.00015729034534717746,0.23947108886533772,0.03442499870506439,0.00017949200394444374,0.7598570233996359,0.0001812172298099878,1.0,0.11602135080010022,0.22765572627364228,0.4443595107753856,0.1497759324502702,0.00010279266658183303,6.706367313215489e-05,1.0,0.00020858269351881206,0.8719440879106607,0.0026287502546529307,1.0,0.00013253678522486396,1.0,1.0,1.0,0.9022793002339883,0.23464677627926403,0.1398905344729239,1.0,1.0,0.852204522696308,0.8705458612095347,1.0,1.0,0.9999960853482129,6.816701899403444e-05,0.00015364243653626377,1.5705018069495278e-05,0.9761928016344477,1.0,2.8012666720161114e-06,0.04411031765200576,1.0,0.9692762510621968,7.00675646153597e-05,0.8158316005399644,0.5759166299994516,1.0,0.0005320048461791812,0.0926788162136535,1.0,8.63159847434698e-06,0.3616332319836963,1.0,1.0,1.0,1.0,0.3343326463572428,0.06453675962394903,0.07906392229638466,0.00011394213651146,0.5416779967949725,3.233716242576459e-05,0.00022691661340415507,1.0,0.0028862791956876504,0.0737061007260021,0.060908306035262955,1.0,0.6576957217792031,0.8089833679259192,0.0001002552617074516,0.0001005207480283165,0.9999991115935686,7.249627048774026e-05,1.0,0.03078607406294731,1.0,0.7639943064205412,1.0,0.24347859780357672,0.026108579351314682,0.00013940500630949267,0.00045914075937670423,0.9999361832397645,0.16724879888062966,0.0014673389823722455,0.30655554267487883,1.0,7.6265481182154e-06,9.439855149927708e-06 -वृत्त,shape,1.4313791285316477e-07,8.738781987178526e-07,0.9999772197190367,0.00016661005809031994,0.9999995237187768,0.03943460959782589,0.012427373494271652,4.884379054497331e-07,1.608401471976719e-07,5.3459464072682803e-08,6.870536461901987e-05,0.00012764461432867964,9.427502474012371e-06,2.1562859315687337e-05,0.0003013656258686832,2.471631043440936e-06,0.11847415701110044,0.0002367283715895066,0.014287925868680433,0.5851079797638343,0.9554565848226773,0.00010651178788301341,0.9995180418926396,0.17158911541822058,0.00047779097753739306,0.003325212298115024,7.100623408100318e-06,0.0001622082673096081,0.2099905557439155,0.34617991088314465,0.0017529333214722346,0.9995554331118777,0.999880576129802,1.1260837075413781e-06,0.9999922511143569,0.9999093169332504,0.27983361797699385,5.06483764899123e-06,0.9988163643332784,0.00014600342298285075,0.0005947755143658262,0.0010609086011461766,0.03439822484206757,0.023380153113001383,0.039919317953508664,0.9952905891237975,0.9999939558208033,0.9999995538975985,0.09965383894081771,2.559568550370111e-07,0.17283211125550088,0.6080563076207588,3.27274328212432e-08,0.0038478770522403513,6.550117378365616e-08,0.9999998486692376,0.0005815545053564941,3.8447466582015696e-06,8.437545410372635e-05,1.4883343686245281e-06,6.161072518950553e-05,0.0003350935471392032,0.9999447492918775,2.82697561313483e-08,3.1570518290760744e-05,0.0006054356319788489,0.0063894746014314255,5.2079398682680114e-08,6.870788544616257e-07,2.895689219611282e-07,0.00030522728615262686,1.2371056254019819e-06,3.79170211247303e-07,8.498497988883687e-06,1.2463805684107208e-07,6.265608374222268e-08,0.0011444507053918233,0.004634972187420959,0.0018677809816598267,0.03095236743936936,3.4632672255454544e-06,0.019890614573483383,1.9455561976595434e-06,0.00013875659939984714,5.816122058315155e-05,5.227962849950699e-06,0.030249287922338785,1.1722109103750384e-06,4.424616716659562e-06,2.1170412926893536e-06,6.617669490175036e-07,5.045065120871568e-06,0.0004656014924882824,9.443321847750065e-06,0.00012966312198238347,8.99593915519895e-05,0.051493619668349484,1.1494717922948682e-05,0.0122443900184004,0.00016552135700677754,0.000200757565366863,0.27576251835302995,0.532110008079361,0.13914783187726495,0.022169280389652633,0.48023394346860987,6.082720432838986e-07,0.047819562458708144,0.00374513241471893,0.06772131764107991,4.1852105168502e-05,0.0005916431146447614,3.725294162591205e-06,4.487244519307625e-05,1.9962441394999164e-05,0.11165130450749292,4.175349688634e-06,4.815848134569491e-06,2.5910664608965597e-05,0.000739641351963709,0.9999997889645312,7.489059019965227e-06,1.4844328547417564e-06,0.0010084415179357708,0.00014833818851288524,5.776011385023219e-10,0.00017721263047743122,6.503603275183368e-06,1.8881565857327348e-07,1.7926960125880417e-07,0.0002565692369858331,2.5399632949863273e-07,0.003561259327509103,1.8562185335830948e-07,1.8223568688128464e-05,0.9995436032162291,8.928117832574215e-05,0.9991580344209744,1.4871713563223792e-06,0.0006359770682693443,0.9997723152881612,0.9999927924412101,0.00016227900231175225,1.6972577629445783e-05,1.422067308427281e-08,5.550137030796065e-06,0.017590437587898196,0.0008837350683938722,3.247190565411932e-05,0.0006315166531814859,4.31966799640375e-06,1.2562946855064746e-07,0.8924730490777335,1.0151253530674078e-05,0.0009413872965161134,6.970843202307487e-07,0.00012764461432868075,0.00022877337486424434,0.010346381918800636,0.4591934825099124,0.0002620957317167061,0.00019013192056604214,0.9999966582076648,3.2710152676557586e-06,1.248344128883574e-05,0.0001676919942212852,0.007219427832179179,4.530182381206303e-07,0.00013104739713804372,0.005711948843409189,6.071087635210998e-06,0.2996184521919462,8.726370740162352e-08,0.005025454405590328,2.027028344281598e-06,0.00944604745772997,2.3070315088998895e-06,4.329019673596743e-07,1.673053515383092e-05,6.533682263921594e-06,5.482765331488566e-05,0.9999388493397803,0.9999612408076927,0.9998109747792292,0.9068124136454667,0.0012677288262350549,0.0005011622880680262,1.9627682018537114e-07,1.0663191098802802e-05,3.27275946561602e-05,0.0004951321333816873,7.366852599766016e-06,3.883197603857007e-06,0.8169696154006144,7.495911580461968e-06,0.03523879633510145,4.944544172679619e-07,0.00023512123979302197,0.06709882388481385,2.4348736152913318e-05,0.03386655394999736,1.4452562075753486e-06,1.0595312129999174e-06,1.7461317750536943e-05,0.05714531536428877,0.001677501890630811,9.164295050611802e-05,0.00035940665987903867,0.0003001184350202226,8.306324425024542e-06,6.487250900705854e-07,3.5444458657033587e-07,0.00011884647141721765,4.931544839882617e-06,6.2931470471244935e-06,0.0002316578032040894,1.2257814453570334e-05,0.9999888234548311,0.999776454579949,0.999957671026775,0.9999947829921436,2.426941567473485e-07,8.986709652622467e-05,4.27312998003249e-09,0.00011290703972973783,0.9955596808315456,2.8278026353724444e-06,0.001995831218488015,1.5215156679247081e-06,0.9999570755433604,0.9999727899539802,8.300013001359467e-06,1.2232198943451852e-07,0.00020965488420176295,0.9999997889645312,0.005955312797577074,0.9981824844269677,0.026999988240028878,7.07599670778466e-07,6.848972145107809e-06,7.993855108683507e-07,0.9998095262522934,0.24379889010415437,5.8758377702230625e-05 -वृत्त,object,6.36451620445295e-07,1.2690964045490076e-05,0.9986716688491607,0.001730289169480884,0.9999807649882883,0.04394372138321239,0.011276193415081246,1.2242085504491214e-06,9.409529011851268e-07,1.0293294937883305e-07,4.553555840214726e-05,6.071408603744044e-05,6.1044421399355e-06,0.00023947025695055625,0.0072725729814086685,2.9010452436436767e-05,0.037541688130165195,0.00014251892094568867,0.0023730641570738884,0.15267775761330385,0.8220050966456488,2.7638138712390795e-05,0.999533987721733,0.023637488766065282,0.0005159336507663558,0.0006088595902300157,2.483415111947101e-05,0.00015317929403480375,0.3637547194360712,0.7050285132485926,0.004436075796180519,0.9764015670442493,0.9998467483824164,1.3879403699114942e-06,0.999997340835907,0.9999115500712453,0.053754032146163984,1.6423847188431906e-06,0.9946907221646826,0.00021388841818680061,0.01936306554221398,0.00488757110123932,0.03714755748297411,0.06579532333277797,0.04922846005342113,0.9238626273223123,0.999651977881871,0.9999864732912296,0.18431656105994143,2.433796239973601e-07,0.27551913060086847,0.9250838129650454,1.0839901323645648e-07,0.01087263306937174,4.0125982331675917e-07,0.9999994518493946,0.0005739879460309643,5.559847691781123e-06,3.113869031967338e-05,9.309801466328837e-07,2.8773278839541165e-05,5.5430070067090127e-05,0.9999661239622425,1.371310921489069e-07,0.0001815422641437703,0.00015825107599734547,0.001033183148764578,1.565830263149871e-07,2.9235013988794906e-06,7.697575670182204e-07,0.0016678038746908864,3.7110039578075127e-05,1.063641224179454e-05,2.399738487871288e-05,1.9443703336889116e-06,3.200319252559653e-07,0.00022825602680514809,0.0007937443486125559,0.00023967101571244434,0.025956084816955168,7.033487430744917e-06,0.009948398901113317,7.26239509704521e-07,0.00011926103859919804,0.0001700859564786332,1.6643761747173796e-06,0.2073606289953644,4.3501634611934813e-07,5.5218163204443765e-06,5.048922462182805e-06,3.031172673083667e-06,8.785768407269712e-05,0.0005517929732572984,1.1283001587823708e-05,0.000140603665150583,8.754422358762037e-05,0.10757581404157288,1.403979716410702e-05,0.009657313880962573,0.00011979563425450374,0.00020792243588196115,0.25130049527876264,0.6146958986109243,0.6659535378669907,0.012458577686194619,0.6353646644722686,2.3101509606075906e-06,0.00547248458812426,0.00043334771865932015,0.11094726463559884,1.0681815309728784e-05,0.013114783995672815,0.00014316121712078933,3.083127772509297e-05,1.0153712435435762e-05,0.015952769496208944,3.8040733183771907e-06,4.782320582798713e-06,1.891810491447145e-05,0.0001357712648318145,0.999990583615718,5.9617137775577995e-06,1.4485063638716565e-06,0.014325657478716983,0.00013964838925766278,1.1854781190490643e-09,0.00013992674328362845,8.464280994125482e-06,1.24982832883307e-07,1.6769302898056336e-07,2.9565202418924405e-05,2.5042049412235336e-07,0.007799742996320012,4.816302785396985e-07,1.4374872421923974e-05,0.9975046827184492,7.019793901583592e-05,0.9844211275130188,1.205421082772657e-06,0.004766156300411509,0.9998569672346885,0.9999961838437555,0.0005553066156101595,0.00018841890262718937,1.0335130319020962e-08,2.0586821294546993e-06,0.008726298320689427,0.00018377766380580328,5.985994156965882e-06,0.00010580740769172393,5.9054047149138876e-05,1.0044914970794524e-07,0.9684772682403843,5.8076094740507935e-06,0.0033063494244594833,4.176955675552852e-07,6.074456546347837e-05,0.0002843099475801394,0.00804085844440673,0.055086633134653624,0.0003586919638671453,0.00016224498981348587,0.9999953948443178,4.6365362796358376e-06,1.8065196079176483e-05,0.00020931556486001926,0.00934539855269417,2.3643040101241285e-07,8.926626054596606e-05,0.049330184606990464,4.191267264029759e-06,0.26985959153972455,6.909231248392239e-08,0.06223760562256311,1.2346214610435498e-06,0.016968280278532505,4.036567470600885e-05,3.166238087084979e-05,3.2280720927504444e-05,9.290344933073909e-06,5.349762413741548e-05,0.9999381010967003,0.9999731032039061,0.9998160726762518,0.9385572659948042,0.005381257300587075,0.002999867344606961,2.899010515761418e-06,4.419424453538342e-06,2.0234609401553247e-05,0.0003871764190895384,7.796449039356369e-06,1.343362335765241e-05,0.46993370112146066,5.6591393921997764e-06,0.09375346559484628,5.483701944102785e-07,9.310898314315714e-05,0.10041184567196233,4.99608022333354e-05,0.2743662034405225,7.80292314824372e-07,1.9380545068134833e-06,6.349067080186104e-05,0.01438981350400293,0.001673923115452071,0.0002577478473007682,0.004956055914045413,0.011033491490158176,1.6323162635942487e-05,3.972194353372796e-07,1.8682727274137873e-07,0.00016663059932101162,2.465387648629815e-06,1.1768343497315334e-05,8.219675831959517e-05,6.529229686443781e-06,0.9999933401265185,0.9929250979190918,0.9971764755651227,0.9997819299947918,5.432559529763897e-06,0.0004720922130304726,1.595897768756484e-08,8.293891114714537e-05,0.9638286307894764,2.8826804495354243e-05,0.0005804656907484828,5.968888913670065e-05,0.9989001634240101,0.9999882080369368,4.517116534422689e-06,3.5430075476108354e-06,0.001082323825430896,0.9999907029003363,0.0007040162463344112,0.9561129296971074,0.12422899941405421,7.270247184726874e-07,6.8402338054199275e-06,2.9608686110396874e-07,0.9999100190676113,0.052112765177159,3.5680100158020634e-05 -व्यंजन,rgb,9.300087066707845e-07,0.5326400751419297,0.9997839759162592,0.0022425973906081086,0.9996471210853441,0.16483665869736555,3.5586645752546675e-06,0.010813409146132004,0.024435986378455815,0.028936884448539448,0.9998148973405155,0.9998311835149689,0.999831409138185,0.5275762111930691,0.00023975200328245236,2.627146348915448e-10,0.9991972061967578,0.9993550269038025,0.9991620669603211,0.997413145478253,0.9971033292634961,0.9342798142099735,0.1539985549446231,0.8470169584537475,0.8132230047862526,0.9983650454346302,5.570054470763119e-08,0.8391891993215571,7.563142834332493e-10,0.9474831003033776,0.16812826738837755,0.9997627806973561,0.20626618904421726,0.06121534378768361,0.012027195011579608,4.218636332001232e-10,0.9985272535591254,0.9828949940855624,0.7540452210941415,0.46202355171914994,0.009140482433827903,0.9887087970215659,0.20658393707233216,0.9255566999285926,8.623065976404718e-08,0.9998239937524749,0.9997714035606595,0.9997839840718987,8.212903688865185e-08,0.8737276622468674,0.16488905384716565,0.007725469521410094,0.02057142227364965,0.27861464736336344,8.364077551115576e-09,0.407965149022975,0.9988595881397968,0.9991328030573738,0.9998322169895583,0.9998302119488193,0.9998137497070614,0.9956649369423445,5.373365532182539e-11,0.9932845598051703,0.9680388059612083,0.7291839637035398,0.9957991818746332,0.018208323963192885,0.012443409925684336,0.020239711876996826,0.2515415692662962,0.006548836499332687,0.014248566931217873,0.015941176264369895,0.5597463375604526,0.9902977547676974,0.9975726752832857,0.8166862653907628,0.9273964620324774,0.9992774732150869,1.2435533192951462e-07,0.9989740502761237,0.9224596289353351,0.999464582974574,0.01336131580752167,0.9411444367712686,5.407670513975472e-10,0.9839443721721233,1.2212980186607906e-05,1.269638845813416e-07,0.0101222015671552,9.968029493675959e-12,0.9984177198324513,0.9992474054360636,0.9993583749438698,0.9994415156117646,1.6455634838590896e-09,0.9994698133857369,0.998910694328938,0.9994435850024961,0.9995615645165606,1.9470670848112092e-05,0.47670073818683767,0.0036296138106544466,0.9995978044651648,0.16801705834907077,2.527249117595944e-07,0.8707855954856513,0.9991241706844355,0.4735232496822781,0.9984790420758327,0.005780967017552841,0.0010717659470535332,0.9998369088647721,0.9998294223335242,0.9998225632513389,0.06369510622531607,0.9997924101767158,0.9998293539110925,0.9997379634365632,0.9997564878877081,0.9998227479890689,0.8215903174562176,0.01450824216564711,0.9998392429694246,0.978849250217291,0.9998256365548648,0.07440137350854767,0.9703098921028294,0.6027872520915123,0.9984889939174219,0.1433598031507381,0.15247650521639758,0.01628721636391001,0.06926593075548866,0.9988734002826466,0.9990495777875957,0.9991770229331207,0.9363522654115276,0.9506840756986237,0.016742830450190302,1.2254974921869612e-10,0.24887278470597488,0.02958930555693986,0.9957269472233944,0.9985782319914472,0.9967175462518588,0.910924632554367,0.9963573511427144,0.7525196699739862,0.016925709785404686,0.9724082701726555,7.302037844901306e-10,0.9998134344356289,7.872977305999741e-09,0.9998314568334009,0.9998337290827713,0.818860398439996,0.9457142003090033,0.9987270416326417,0.6092826012445004,0.9988224326280631,1.0812154668075266e-09,0.8350437833587653,0.7435163198539642,0.5978381343834519,0.7567564226271428,0.9998335202672768,0.9998299848911778,0.004154866726833889,0.9801279120718737,0.16597557337295613,0.9202230029104979,1.1918051463630956e-10,0.983639160505521,3.26055517934282e-06,7.311503243413885e-12,0.0008468767556539113,0.45036757684063,0.8077793888938511,0.8298924025436445,1.8817964127133875e-10,0.013790384496568695,0.17126564801777505,0.16913912214198856,2.1780096948406523e-08,0.18120641775173407,0.5724969424251214,0.9998299737605809,0.9998329119417809,0.999811810714385,0.15958762488095643,6.360776901105015e-07,0.9988462499321729,0.7406201719336595,6.426796469931882e-08,0.09653637937249195,0.9998375243969314,0.1927591261194093,0.27760714177859386,0.019115119726992796,0.968708556493095,0.7719075735936375,7.138628811770955e-08,0.9998031595146102,0.3692544458998861,9.463890652591251e-09,0.009177663820760145,0.0003155380840764696,1.894415781239792e-07,0.5647741079462174,0.976292377968565,0.8322173283606115,0.9998325325422072,0.5138136756532302,0.9998329484428247,0.999835459342454,1.5563565235066463e-11,0.9998079270402741,0.9997307318719462,0.9997431847205785,0.026120391737470126,0.2512870822221673,0.994816552908086,0.9993854978790575,0.9994291710157088,0.5333468307051059,0.9993068175271889,1.458617938347525e-11,0.9997569032378754,0.0030627060164763573,0.5334534275395768,0.016812340478427504,0.43512853969410487,0.9997642751049056,0.9998391746128436,0.9998306478047783,0.9553646647814412,0.5799644359214801,0.9437350164951963,0.9556822123783124,0.023437461218477906,0.9997864978820572,0.99980266754181 -व्यंजन,shape,0.9999541563267278,0.9715631432937235,0.9999998525868405,0.000742095209410847,0.9999999708522955,1.0460338570260555e-05,0.21695815849942593,0.9928179166421601,0.402121204439478,0.7920418864237767,0.9999997242674946,0.9999999995093403,0.9999997644902823,0.9998692289011161,0.16270562550199927,0.8248198848061,0.999923088990992,0.9999979195133543,0.9999999146695855,0.9999721692738841,0.999717030838003,0.9998832889297208,0.009221468318553167,0.9997630496692647,0.9999988572561851,0.9991019704879504,0.999997912337226,0.9999967716380913,0.8232608938634892,8.368176040520683e-05,0.00046777219507412746,0.9999999993727593,1.3970971396978817e-06,0.999708891257982,0.12417858616737208,0.9996905300956686,0.9998706278555688,0.9999944315795172,0.9989288220123816,0.9976020076762279,8.486804931985946e-07,7.594008336261574e-05,0.0005157266864435462,0.00021241778263522516,0.0011761711909211458,0.9999698207520027,0.9999999944765514,0.9999926570143104,0.45621497361871793,0.9927550097788091,9.621457700573486e-05,0.0005127129091860048,0.999979597681743,9.605197544441063e-05,0.00023167333457468635,0.7034699152323811,0.9999999999373803,0.9999692753537044,0.999999999997782,0.9999278104997336,0.9785663866655397,0.999609578133063,0.9999993744460857,0.9213511147831248,0.982183022199854,0.9993221713023935,0.9996928535593357,0.9987452719686802,0.9990344280290026,0.7522627823450202,8.942788617779333e-05,0.9995298326904789,0.9999878660176027,0.9934779618080816,0.9441516629792238,0.9999432525948909,0.998431949764993,0.9997816318918731,0.9999997999600292,0.11211477237865851,0.9999984268465308,0.99966405861487,0.9935760045302263,0.9999991819009768,0.24469395963212093,0.9999961138559901,0.4352703918667279,0.999999753171788,0.9999981192293904,0.9999998678700143,0.9981871596132542,0.9999999305204453,0.9999999994761124,0.9999999973173803,0.9999999963339521,0.9999999999225564,0.0013997174301262072,0.9999999993076769,0.006942823789601652,0.9996417460542867,0.9993317427333381,0.00010842402174035477,0.00013154995160997543,3.965619202432732e-05,0.999073327782351,0.00013777443504518189,0.00015379663746304246,0.9999105453594386,0.998939371789941,0.00022424646383970565,0.7532872071941229,0.8966263687705934,0.9998335017699708,0.9999618014975077,0.9999999839226541,0.9999910096142446,0.9968866887329547,0.9998688229357533,0.9997897199110141,0.9999857581474023,0.9999999051036165,0.9999193802822104,0.999367352609023,0.0029516308681529243,0.9999999999740787,0.9877138169114831,0.9999981621600363,0.9869051560405553,0.9991247250824585,0.9982238160177328,0.9999999999646445,0.9993659724837558,0.00015445889161686864,0.9987554148039348,0.9668690512044321,0.9998192165432919,0.9997114352135775,0.9996591148690674,0.9994278473872658,0.9639290459444667,0.9999823591392973,0.9999597018112528,0.005821459166371403,0.03221073986967329,0.9998289490255128,0.012099925275115747,0.9999995610263053,0.9999944269587453,0.9996460929286286,0.9999270139349992,0.669493925588778,0.9994939878697326,0.0273494240768042,0.9998614330145985,1.910443670775585e-06,0.9969107683974564,0.9999999995093403,0.9999215833802081,0.9998051021911064,0.9991760286873539,0.9999593775650946,0.999997567737019,0.9999999941134685,0.999653422078344,0.999219170695277,0.9998233905588864,0.9983838123921459,0.9867867386079898,0.8080152766474085,0.0005371668004929495,0.9999839657909847,0.00031963338119224183,0.9864646010279889,0.9723032415982291,0.8491547623016239,1.1006821245506024e-05,0.9999721310544267,0.9888878414209458,0.9999268351764664,0.9999948483517975,0.9999939649593061,0.9009232943995819,0.9999980862362693,7.092321016083799e-05,6.75131928673081e-05,0.004901700924414294,0.0009110823403096481,0.8804922706939069,0.7264231561140511,0.9999999951689715,0.000922765190708963,0.9999815659522033,0.9993414319836171,0.9862378002151109,0.9795099191753459,0.00032115586612058036,0.7864054820637487,0.999988513167905,1.8321870090022214e-05,0.0003190240400023983,5.22096081718816e-05,0.649904410398083,0.9993884426468093,0.9999999969192128,0.9999991392814117,0.00035404038970885825,4.2262648552644636e-05,7.017926195085721e-05,0.9647703656739041,0.9999529020803758,0.9998095367734091,0.999999164558283,0.9998963016826703,0.9999919753770693,0.9998730544887672,0.9999999499949997,0.9999971065584351,0.8218244918778853,0.9999963988763297,0.9999999999836513,0.9999997218216964,0.06224007291053318,0.00010076660450406327,0.8719002516590113,0.9999999998977638,0.9996164373560655,0.9999915838879139,0.9999999996451048,0.9920331218845705,0.999999983003426,0.9467190452254203,0.9993451381291306,0.9999676391055758,1.1131586699016171e-05,0.9999999051036165,0.9999915802412677,0.9999998727206716,0.0024363045104748952,0.928410576158074,0.20869262211566902,0.9999861760091395,0.9999995286824536,0.9998837251765674,0.9999997583586349 -व्यंजन,object,0.9979459340783331,0.022438061713506516,0.9999999782987343,0.0003113770567292009,0.9999999803244043,4.1753768447073855e-05,0.10914468834082942,0.9909424580495496,0.4381281250362031,0.9568314141176419,0.9999990108614659,0.9999999990358368,0.9999998392283055,0.3414090622481711,7.157003801153483e-08,0.0003059886272845881,0.9999606097263627,0.9999992274819053,0.9999999973965386,0.9999987902840145,0.9998357394149651,0.9999238336248355,0.0021488079908214444,0.9998955223804766,0.9999756824124137,0.9997087590667105,0.9999930820853301,0.9999940135758315,0.0013350590288929067,7.789480162618544e-06,0.00040585045556461725,0.9999999991686386,2.4741695807857274e-06,0.9999778036979641,1.3441338578417585e-06,0.7012447104000737,0.9999999683067057,0.9999999980259076,0.9997502364582599,0.9947875254796044,1.6317658260666769e-09,0.00025888674272652465,0.00031959123882098494,7.286779782310021e-06,6.776878756467422e-06,0.999999629400722,0.9999999991970019,0.99999560579638,0.1738378183752336,0.9999523189310976,0.00015326634366356052,4.651329099543636e-05,0.9999937872961836,4.218655946502576e-05,0.00010383263114895376,0.8425128476650594,0.9999999990567376,0.9999497913099089,0.9999999999853593,0.9999629981915897,0.9992255792947592,0.9996356901041022,0.24449974769093263,0.8699076563811701,0.2094965619668103,0.9998502625532253,0.9998674450829481,0.9985235066586707,0.9990681657128255,0.6406265094134919,2.5176456646727977e-06,0.0005463278566138637,0.19360876267909982,0.9997792945462247,0.025330073237452795,0.9980390465594593,0.9992816948886408,0.9999677884183843,0.9999999265355711,0.4210679666666511,0.999971682869272,0.9997242833296374,0.9999814918096191,0.9999974536816232,0.9127247448706087,0.9999997375224549,0.00010672395621303554,0.9999999998690885,0.9999997213523409,0.9998075542529448,0.9994537675580046,0.3387284227496838,0.9999999954101197,0.9999998472775482,0.9999999827089007,0.999999998195078,7.339299491891758e-07,0.9999999734899532,0.6569952974113648,0.9997334562727762,0.9996210056934316,4.46050107902593e-05,9.352590050413615e-05,1.486451018334595e-08,0.9992433420961228,0.00014565818104614428,8.314409810001527e-05,0.9999901132360373,0.9999620635372872,0.00016894405317104276,0.98547831939448,0.0003568591307731545,0.0002771389722356803,0.9999966457754991,0.999999780193484,0.999994655314989,0.9999806763477109,0.9999250950086237,0.9998294367290093,0.9999671624663091,0.9999998668649022,0.9999178246626725,0.9999872537243564,6.228439176430109e-08,0.999999996560579,0.9999830467191694,0.9999973631068854,0.999967301164484,0.999991969504911,0.9999747026372252,0.9999999999999858,0.9999949462352362,0.00029175606205357436,0.9999359870592592,0.9998503790768946,0.9999308544473765,0.9998565773309118,0.999708594617378,0.9999981640361469,0.15086259290543177,0.8386184241263195,0.02890572484761212,0.00644981669646956,2.9747259367343515e-05,0.9999874717213562,0.9989586511437053,0.99999997084948,0.9999984828816059,0.9999958201658683,0.9999294608584275,1.984776638887763e-05,0.999982972257514,1.6439976789670805e-06,0.9998198733176893,1.576970169918921e-07,0.9997541375737771,0.9999999990735347,0.9999514718607307,0.9999080920118105,0.999622915980774,0.9999428427743866,0.9999991118761392,0.9996856005907733,0.9998660844864777,0.9995941713755042,0.9996953739106337,0.9985358603038551,0.999601439078754,0.9993779913792595,9.756342427906634e-05,0.9999977151263733,0.0003047121379509922,0.9995033356925314,0.00012854221833778548,0.9981522401053724,1.9978131543864174e-05,0.004955998224855059,4.198203967191261e-05,0.9995755144553734,0.9999980458537345,0.9999889192122201,9.822711094019114e-05,0.9755696864383837,2.3737317638711926e-05,3.557396476553468e-05,0.0009691753854757046,0.0003459902134926387,0.01607188437352502,0.975882317886835,0.9999999954738308,0.7686082403706569,0.9999993597530838,0.9994688457424136,0.9999335434424457,0.9998373778482624,3.673799123834811e-05,0.9982568452851208,0.9999974431749891,0.00015939320673178842,0.00024887439023364607,5.194373508363111e-07,0.9995345277402978,0.9995749567587283,0.9999998948518876,0.9999888772305422,0.00024112607815417636,2.007390661599461e-06,3.34067938039741e-09,8.211506097332587e-05,0.9999795844198134,0.9999989842183905,0.9999999962241932,0.9998329700986719,0.9999989786376207,0.9999699715948631,0.9999995961364695,0.9999976351383986,5.664016992477307e-06,0.999999684802423,0.9999999999985159,0.9999999381610232,5.828490042598787e-06,3.183364210870517e-06,0.621810978578886,0.9999999998302003,0.999851123135073,0.5071619412000359,0.9999999999916258,4.34135401025167e-05,0.9999996077096021,0.0008126342852570755,0.9999955538626091,0.13923394203712078,1.9147711671800096e-05,0.9999998659752758,0.9999971734956863,0.9999999521833859,0.0005241014758301796,0.999082980376658,0.9912981608631359,0.9999999573948244,0.9620918969780029,0.9998125340180687,0.9999998029583408 -संतर,rgb,0.6046595004570303,0.12234814718290583,1.6118993260782882e-13,4.5991797821751506e-32,5.777893119149922e-16,0.999999999542122,1.8326649005970324e-05,0.9999999998835873,0.9999999997095383,0.9999999989005084,1.1079877809296094e-08,3.517037825807322e-11,1.0976066668365971e-10,0.029906151149685787,7.028942991141977e-33,0.0002828456503275495,1.5960671407354196e-08,1.2369302502207371e-08,2.8016867222424386e-08,0.4624852592071924,3.7768752505006985e-06,1.2300064086781664e-07,0.9999999995301663,4.828845644522106e-10,0.9999994886905993,2.9557361002335454e-13,0.900628431207771,0.9999993313479044,0.0009219646822567434,1.284458839321828e-05,0.9999999995223177,2.656171725809717e-14,0.9999999991385373,0.9999995440925691,4.493783244115919e-27,0.00019870588626985671,0.06397793433514712,1.4428384392406253e-06,0.9999999057184135,0.9999999899488133,1.1163987769321303e-30,1.0921962857613945e-05,0.999999999247194,6.095721773039289e-07,1.747613896530581e-05,3.11037972967329e-12,4.048910434739308e-14,1.6612574260049848e-13,7.319749830268801e-05,0.9999703501637826,0.9999999995291082,7.301334661303646e-31,0.9999999996032574,0.9999999977281107,6.714546625576292e-05,0.999999994390788,0.004086751643027615,0.0009397085146230429,5.4612158567585427e-11,3.351205849144371e-10,1.0406615676913331e-08,7.597335292074116e-06,0.0011760998507331965,3.675928744733494e-06,3.542410105705542e-06,3.0139244932331456e-08,3.9634429908871245e-12,0.9999999994807414,0.9999999998386322,0.9999999997889062,0.9999999984240318,3.0039783965225427e-31,2.2978996431782018e-30,0.9999999993358646,0.9785612744478934,2.3658617365767367e-05,4.82013514947712e-13,6.302518106255412e-09,5.6968333194759425e-08,0.00035461778174913824,0.8758840056710252,0.0037182535331013464,0.49514185299421254,7.33149833792981e-05,0.9999999998558773,0.14074089713364657,0.0006680102501855045,4.2464171468231166e-07,0.8284610474432822,0.9040641662518737,0.9999999998711757,0.009960012760604535,0.01782635912156647,0.00026229098892425524,0.0001749548854178501,8.368027818646475e-05,0.0004909451666696648,6.939153403199217e-05,0.004384851222226225,0.00011378753381089826,3.068635888388057e-05,2.42846745579791e-06,0.9999999881327882,1.647461527476961e-31,1.200317530014699e-05,0.9999999995355422,5.872108719394287e-06,6.694268979341714e-10,7.70653996973385e-14,0.9999999872691084,7.786188323049486e-12,3.3619326181526515e-31,2.48057921173071e-32,4.811037296390628e-11,1.40847331107866e-09,6.39915402395748e-09,0.9999999682013058,3.767093625568375e-07,2.52112915771993e-11,3.956256187317778e-13,2.003173855244902e-14,2.1548680855623493e-08,0.9999933510947747,1.448996300921006e-30,1.701009643464911e-10,0.9998882346990052,1.514902925568488e-08,0.9999999750654955,0.9980817203819922,0.9998661137865277,0.2660102841653718,0.9999972555069433,0.9999999996165798,0.9999999993783959,0.9999999520730368,3.121849008981563e-07,5.973763099449565e-08,4.30773255891186e-08,0.9998299135052534,4.394530391786418e-06,5.3589639888786856e-27,0.008856758809444254,0.9999999983965273,6.580377294301183e-30,0.8766723941649425,0.06700081220664544,0.9355554238920053,3.868377573155072e-08,1.3717759029464952e-12,5.103070906714693e-09,1.8550210045674683e-30,0.9709665710420845,0.00031058860174498895,1.351061151971499e-08,7.176485264437938e-05,2.8468636596811085e-10,8.022926053805852e-11,0.9999982958900814,0.9999049137197342,1.633298181498589e-07,0.9999998403438826,1.036491315860612e-07,1.6807489737076784e-06,0.9999988448698375,0.9999997736485439,0.9999999639019015,0.9999998044838327,1.8186250939984812e-10,4.1226107494134603e-10,2.0127114496434054e-31,0.9452111709912915,0.9999999995224047,0.9984760565175933,0.0005984501571497095,0.9444308064224283,1.9701537337167027e-05,0.017294091745050012,6.473157763277176e-32,0.9999999713197881,0.9999988146112706,0.9999987885023593,0.00017392358346445729,7.026379468779757e-27,0.9999999994030451,0.9999999995288917,0.00012542462160573958,2.0994118739212166e-28,0.4178781076178752,3.975308999735473e-10,8.141065614298633e-11,1.3682009270187101e-08,0.9999500298597291,0.5992613200522245,0.024318352492876897,0.9998531734858056,0.00012830386520388848,0.9999999447319687,5.328330668618949e-10,0.9999999992930422,0.9999999975141369,2.7089444091641155e-30,0.9699389647994856,0.9999998192899504,0.9424707263986951,1.6431033689065818e-07,0.999999994748846,5.859403907972491e-05,6.939613839554645e-31,7.811142199485118e-33,0.7258702944028292,0.9994772387452919,5.274965909381705e-06,0.9999992835882355,1.433132442794988e-10,0.9999999864226452,3.277490601071015e-09,4.6626124201269635e-11,0.0044280215463271145,6.039173734319962e-13,6.48637152680725e-15,1.064516858736664e-14,5.320557539484817e-30,0.9999999983552097,2.3540934684603722e-06,1.3561390925939334e-08,9.365973029551407e-09,0.12363882790782964,5.3630216891669844e-08,0.004988436058236714,2.0465286705350736e-14,3.50865901028548e-28,0.9450492221654822,2.5493606276552057e-30,0.9999999912479082,2.8216427463707177e-14,1.5775158514653112e-10,1.2620281884067891e-11,1.6099224787462977e-06,0.9999654409752161,0.9946074608901192,3.7365793430829885e-06,1.2530562380347832e-26,1.2670559176151933e-07,6.8975499020112e-08 -संतर,shape,0.8794213247957395,1.3905855963802467e-05,1.7664415805248874e-09,0.0006747595756804093,8.724974035486707e-13,3.0558936928304627e-06,2.5098856877510533e-06,0.14495749220680712,0.030772168922242316,0.93552298048499,8.119326626902817e-07,9.770738607028207e-07,8.145876507692786e-07,0.000531295030094393,3.588702611431561e-07,2.40059301056017e-06,1.3828664187069715e-09,1.4915405652668465e-09,1.9674757701391388e-07,9.284942231741661e-07,1.7013849684896223e-07,6.159321044275466e-05,1.698526879401976e-08,3.358040198338632e-06,0.00015008680823544186,2.8216795367524103e-05,0.9991190135049156,0.006479410651951007,0.00010066940818618931,3.705278502167172e-05,0.0025843757444071413,1.2835717660654682e-11,2.071814784866732e-07,0.9999498917101903,1.029000688590563e-07,2.5322132973275856e-07,0.956206468018203,0.9998237668361042,0.0009378437196120781,7.056354114300545e-06,0.00013105159922563344,0.00011435278964421,2.937890479147455e-06,1.8447924753780334e-06,7.464359785580292e-06,2.1780692565445482e-09,2.545511072647119e-11,4.242543371052487e-10,3.509897828725297e-05,0.9999207616711199,1.0415185418542473e-07,0.00018602586884717084,0.9998266915796442,0.002134092508458466,0.005277395959662559,9.407470824213762e-07,6.655910265941986e-06,3.41355871561218e-07,5.346287822013535e-05,4.23048666129129e-05,0.0005760449036609803,9.220461099054727e-09,1.970826424476426e-06,7.787921387166368e-05,9.611296555487183e-05,0.0015273442566480122,0.0003225136175423391,0.9989554674759513,0.9979376084066395,0.10042796817332267,4.592592518551352e-06,0.001565051373724567,2.5968714914462583e-05,0.9975010728748941,2.5071854678054113e-05,3.246342155063246e-05,6.092099257542941e-06,0.002635743587324372,0.00956699634397993,5.107456065674212e-07,0.999420851952106,6.286470178032944e-07,0.9987007571156863,1.1886808851387198e-06,0.9361276349183247,0.9716940008978016,8.761031370325255e-06,0.9990979658323841,0.794988594044671,0.9967001721295718,0.9985310316806308,0.01363267983447991,3.0190327873826012e-06,1.839096439059167e-06,6.926156186977332e-07,9.820721034079016e-07,1.2322385714768039e-05,2.969372363785189e-06,1.9138253976242448e-07,2.8622611980513424e-07,3.048036787437488e-07,2.534399414363494e-09,2.511243946994183e-07,1.2596824181722166e-08,1.6839802125799914e-08,3.048730256601856e-05,0.0001255566460590718,2.2501581479438774e-05,0.048308282330951656,9.919052896470821e-06,0.0013778132863456912,7.812968294595349e-06,0.0002551482479908771,3.015842109240434e-05,0.000513898001062519,1.6791278273044697e-07,0.9998698826567235,1.4624738158169769e-05,1.4676624365310423e-05,1.801782731813861e-08,5.037159782820833e-12,4.258332250591387e-05,0.9999332417823147,1.7815541313562494e-05,6.98338140834829e-05,4.743542813233624e-06,0.0003357720519552396,0.9999417591295858,0.9999676601099795,0.9999962903136815,0.9987037480614575,0.9999707980663202,0.0001946927695479374,0.9994620940168233,0.9998811944890406,6.565208012837071e-08,1.0164661837446145e-05,1.7578525584328642e-08,0.9999801690897485,6.211066433850553e-05,3.752513969665765e-05,3.672020217643083e-05,0.00035366668651714704,0.0002668359668759935,2.321599126697793e-07,0.019338447838562936,1.4306411468175855e-06,0.1065617250107183,0.0004028516455233201,0.004051328279241571,0.00011181213458843929,0.007756980416923675,1.574408429002807e-05,9.503213389600439e-06,0.12126015273023631,1.4463863629774018e-06,9.77073860702812e-07,0.0064896452781298625,0.009108710125639534,1.2707869338415545e-08,0.7475391084050309,6.070549846379502e-07,5.79244046039494e-07,0.8461757290208716,0.01431196667962854,0.0031089865290545833,2.547267966977805e-05,1.0453573556593797e-05,0.0457816503294447,0.00029906901093804887,5.5386683602474304e-05,1.2783697795563883e-06,0.250215589459186,2.5601868167929102e-05,0.03173802285676461,2.47526625311239e-05,0.008602875530961793,0.0008257825574849678,0.0019767601771883176,0.317804777872365,0.2073184192990153,3.1330890050016266e-08,7.901500805179481e-05,1.527798509878829e-07,6.074987910951328e-06,0.00652669787517409,0.0001362474793470257,3.529558195974928e-05,3.4898101568836756e-06,1.3344348659690904e-06,4.527938731135224e-06,0.9984239715402697,0.8970689701592935,5.148926179513355e-06,0.09253918131618653,1.3675665770171473e-05,0.9998158427068852,0.00021357433348747934,4.450699163161481e-06,1.0527960019273224e-05,0.00022244596128628193,0.8815346231153521,0.03601393546617461,0.999938508523713,0.0027723103158113207,1.558854865588785e-05,5.513011403498444e-05,1.4448454449183476e-06,6.145870275085549e-06,0.998066077004618,0.9999920146701301,0.9998414704740215,0.004433670577444115,0.0003002311845700289,0.48925384238617,2.5306803781755992e-05,0.0017925449469452747,6.040669096909229e-12,1.4194553530355055e-11,1.2239892393971302e-10,1.6670782118812077e-13,2.2336061114901622e-06,7.305596669955751e-06,0.00012645479823440297,6.461659569564576e-07,1.5724016181073132e-08,0.007030560713557654,2.461534969638881e-06,9.62088167661598e-06,4.6038045338257186e-15,4.5369917248984624e-05,0.9771632608327174,8.62580032887441e-05,0.0013932286434283775,5.037159782820833e-12,1.7591120828584246e-08,5.489017025430489e-09,2.60535296924039e-05,0.9828862872127602,0.8065964518740057,0.9993317375049092,8.349860195867776e-05,3.744078235969606e-09,0.0020373267401343448 -संतर,object,0.7751593752628995,0.0001699079932583157,4.71879961657717e-06,1.112035573472367e-05,1.6348818355314457e-08,0.10415165368572736,0.003776201785762432,0.9341567399390566,0.539020370610705,0.9957817857918764,1.7426294814109054e-06,8.795952000458912e-07,1.05594801159699e-06,0.004761420921950471,5.130922547936807e-10,4.8311869960996584e-05,1.6421169706617724e-05,6.541381462532207e-05,4.984182012049905e-05,0.01577370816284515,2.3427426971129938e-05,0.009376537068788583,0.006561194100799884,0.000188053170004789,0.6033337338962494,0.0008298829660442614,0.9998384856390277,0.9124868167652177,0.00033105015461658873,2.587609496273056e-05,0.9726395993615882,6.753372434447981e-08,0.0039545390251166405,0.9999742416259177,6.3513218728020485e-09,0.004985178820677534,0.9860869818452053,0.9965053843157107,0.933153645768048,0.1054159080343737,6.984154555913287e-08,0.00047139413995176874,0.01229535321270335,1.0122219042661151e-05,8.260889929471066e-05,1.7338996474580982e-06,9.315573788319052e-08,2.1565538013708586e-07,0.08388235540444472,0.9999307462762352,0.012025948990222001,1.8678660407965892e-06,0.9999607876188419,0.46191710035745753,0.010000754012846717,0.034677876137612466,6.176987929039784e-05,1.9641750204990032e-05,3.834850511582671e-05,1.0992847450794032e-05,0.00021699445932093483,8.295636993364434e-06,0.0020129838673591484,0.00010998291276830803,0.00024274597200402446,0.02968405742141258,0.0006300066236425251,0.9998470139676372,0.9997171939494108,0.9336537070505775,0.012988078862409722,2.84519986985923e-08,3.5791848998839304e-09,0.9999420568771323,0.0006343858186973896,3.236776192454181e-05,0.00016051197077529582,0.023505689198120988,0.11192231376120308,2.898603663399955e-06,0.9996283818912255,0.00011481209356033587,0.998392049398717,0.00011288845010949839,0.9990513920851692,0.9859180522123889,8.14361037888007e-05,0.9825871042931501,0.9573603004117208,0.9961655791855025,0.9999006409556566,0.11215705686988252,2.8384359389674875e-05,5.6204075151400915e-06,3.629871901294822e-06,2.153855265143647e-05,0.0001885725264093291,4.5576116990522945e-06,0.00032849090358713715,1.557240483154476e-05,6.3194473493203755e-06,1.7283190852407473e-05,0.015139613991824388,3.551254350306062e-10,9.190816701171711e-05,0.019286332571923064,0.00023531146256702755,0.0006826274011930031,0.007143063346607089,0.030884187096057964,0.006316553449636058,1.3621822703291839e-08,5.81742606766655e-09,5.9969150257232723e-05,0.00020099910359478728,0.00015789270182945496,0.9999837286279744,6.634901688163965e-05,2.0292452073779976e-05,9.118308809191347e-08,1.2652748720078857e-08,5.8132147804820275e-05,0.9999730314314035,9.414721276192391e-09,8.917913031730535e-05,0.003295514267112088,0.003264881021609588,0.9999812014519259,0.9999421764295178,0.9999799803256697,0.9996283270074413,0.9999869054438492,0.9424157837817234,0.9999388432398041,0.9999723926119396,3.4832078382522814e-06,4.911922863465242e-05,5.830131228903571e-07,0.9999740631143789,3.8827892845351884e-05,7.921828378963372e-06,0.011108149464918227,0.2676655828318683,1.1291472849878102e-06,0.00018971478957521067,0.036969230437107196,0.0011368739724222047,0.1310059539562693,0.003095445449310123,0.08792213000393152,5.756682099844721e-08,0.02898827311267066,3.201099643521131e-05,7.210524561499928e-06,0.5752122095197998,1.7184675967919082e-06,1.017210283594831e-06,0.7857074257279153,0.9155767344512,6.893820354376635e-06,0.9992459082807209,6.626439540148907e-06,0.0008166922689507448,0.9966566070225682,0.9448616723891822,0.936123883145847,0.3772392313086697,1.2186326527020152e-05,0.06128337711560353,1.7919665996904799e-06,0.0008897794212510934,0.055099080841296624,0.6899784528235484,0.00012592183346454334,0.32756950489935993,0.019486268749595977,0.045394248960259335,1.390127383534951e-08,0.8771997294556249,0.9895642519069484,0.9757784697544926,0.000108663639559313,1.8363784507695412e-05,0.006344252020991939,0.0033352169572701904,0.5626270262800519,3.3552946835602765e-06,0.0005614130037383412,3.3156906673737584e-06,4.4814171466367627e-07,0.00040445230115665243,0.9996626110296173,0.9547265440226479,0.0008905631245623273,0.7157928754143955,0.013090044309182015,0.9999241606489039,0.00023704776094339466,0.15611013495417764,0.01701016600096218,1.9236477232463524e-06,0.9433447674536197,0.9568196931151586,0.9998846568736814,0.021714024935815722,0.15030498494043948,0.0044801874003340715,5.497894437982977e-09,8.95174434410538e-10,0.9988076758986822,0.9999763767685153,0.992583912896741,0.9285918319513239,4.9526889688015114e-05,0.993183521838764,0.0003200216996943621,0.00025607882348394225,1.0261392977865168e-06,4.984807358394935e-08,2.6765125910595917e-07,9.162974734133437e-09,1.278604380287156e-09,0.011768023617986748,0.00014085858846628834,7.686144040320943e-06,7.949467021450258e-06,0.023457675095493267,9.635071849007223e-05,9.185949163235083e-05,5.164915325934011e-10,7.712732875368139e-07,0.9970665118113891,7.562928457604522e-09,0.3544033010042211,1.3425520335760699e-08,3.5095806640234524e-07,3.536483696134116e-06,3.1436343602064846e-05,0.9982961548882976,0.9252780922157281,0.9845483476593094,1.211582992218694e-06,5.579969245704469e-06,0.0007004474037728313 -सबज,rgb,0.9999998877653112,1.3884432099053477e-11,0.9999249556463949,0.9999999545982189,0.9999923412029051,1.0137275752586393e-08,0.9999999999305296,2.0023208449609768e-06,1.9826542906025056e-06,1.2389861827514508e-05,0.9802281548081834,0.998288582989723,0.9975065773036226,2.0517408377005397e-11,0.999999814090626,0.9999999999847853,0.9999531069446174,0.9999289634477011,0.9999389106193313,0.019559679032907284,0.9998692485464995,0.9999998862335998,1.789217347516447e-08,0.9999999985720638,9.020100163751779e-10,0.999999969448008,0.9999998615199571,1.5844706218066812e-09,0.9999999999544229,1.4711585511905471e-08,1.0303687915123104e-08,0.9999116260871029,2.0705020212515963e-08,0.011976657229716888,0.9979110143120672,0.9999999999862954,0.06737836541740518,0.9999965258274581,3.190813622027482e-08,1.0263044640721763e-07,0.9999997628888533,2.247001533197175e-07,1.2191236972516169e-08,2.8462899335336382e-08,0.9999999999847944,0.9979293215062595,0.9998472232128819,0.9999261047108461,0.9999999999616174,0.000936435590114659,1.129447774714485e-08,0.9999998141999397,4.602007730217658e-06,6.25266551638851e-08,0.9999999999835183,5.032860071548618e-08,2.4304523962230445e-05,6.760437409094342e-05,0.9978765837108644,0.9960895172204813,0.9826378769813485,0.9998965649552543,0.9999999999738232,8.986265546781195e-07,5.476506473884122e-08,0.9999999920998871,0.9999999841506315,8.71957226445635e-06,2.657902751907153e-06,1.6728773917924298e-06,3.972382080845839e-08,0.9999999237452988,0.9999997392948003,1.5809843648295233e-05,4.950334977882603e-12,2.2984730569232765e-07,0.9999999833944035,0.999999994918501,0.9999999383477249,0.00014216957826884116,0.999999844081055,3.837389483645562e-05,0.9815885526111167,0.0005457505839334033,1.9405071365439298e-06,0.9944344389117683,0.999999999966753,0.9999983466090511,0.9999991118211661,0.9999998040827422,2.6536819983420398e-06,0.9999999999242783,7.7570466200954e-06,0.00011646914317288182,0.00023624658675777698,0.00044459536830361774,0.9999999999625635,0.0005718957174704977,3.0078513124559626e-05,0.0004636018518760852,0.0015063138452100805,0.9999999999593983,1.2682113546915295e-07,0.9999998946719162,0.002329156588582723,9.240004468401995e-09,0.9999999999888078,0.9999999978820029,0.9999999162415104,1.6939835146652928e-07,0.9999998493367865,0.9999998860761751,0.9999999233504387,0.9953004356865173,0.9904042663943463,0.9798233393848337,0.00040832182577299193,0.6784699638746575,0.9986727737634554,0.9999869348832442,0.999932856530682,0.9095184705610441,0.00026208788058402165,0.9999998656635486,0.989399735234349,7.335226235128797e-07,0.917562467541575,0.0002272531004535062,0.007281772325070712,0.10158941157414406,0.003091971195757602,0.02845387174600932,9.041751879939166e-09,1.3824412773603182e-05,0.0006158403617616625,0.9998412653379675,0.9999254314992443,0.999914385719406,0.0018360023911706692,2.4613088933470855e-08,0.998456754191396,0.9999999998694022,4.528315544458769e-08,0.9999997592902738,0.005992897851263157,0.05257206400285473,9.022049464584433e-05,0.999999962421264,0.9999999876239701,0.9999999969584352,0.9999998627118496,0.17217239701082276,0.9999999999783771,0.9781857605627087,0.9999999999831117,0.996027184510862,0.9971713483032332,2.685279667892306e-10,1.8637913548629984e-09,0.9999249032932176,4.756443047908413e-11,0.9999346082193172,0.9999999999991995,6.198033133070517e-10,3.9139436925484257e-10,2.602826384273573e-10,7.248668970327541e-10,0.9961504699288496,0.9956661017731833,0.9999998930489723,0.1779924482716543,1.1360719511703997e-08,0.056071271361540144,0.9999999999796425,0.12190401770821234,0.9999999999298812,0.9999999998960207,0.9999995928649533,2.5511924680841793e-11,2.8180698146267894e-10,5.009771719226248e-10,0.9999999999899656,0.9973077341241242,2.05627194515889e-08,9.286759766059428e-09,0.9999999999656286,0.9999996295634053,1.1580814916182791e-11,0.9957633196427536,0.9974103958951981,0.9799999645295898,0.37960225030909667,0.9999999061464028,0.08846080967115066,0.04380630417673376,0.9999999999489606,0.00043031637803021366,0.9875276583914919,1.6550591792321828e-08,8.41114041544738e-08,0.99999982061333,0.22184375531652295,1.4828274956066746e-09,0.9999997609074488,0.7731136884693197,1.0226373257311418e-07,0.9999999999843181,0.9999998764553552,0.9999998640636041,0.9999999122522992,0.3882711605051181,0.9999945726402781,1.063533409354411e-09,0.9968846757480097,2.8085384533062443e-10,0.9676574793940476,0.996740361640992,0.9999999999521367,0.9996665502559244,0.9999562042971502,0.9999025594983116,0.9999997653598118,4.598442728670763e-08,1.7766186963487033e-06,0.9999135502561491,0.9999162636619879,1.3894408233295416e-11,0.9998426751658895,0.9999999999488207,0.9999325787382604,0.998942354454574,0.9874112647881907,0.999999785034555,1.1991302391709832e-07,0.9998987676211437,0.9899012830529277,0.9983860530641515,4.323562223968265e-08,0.026300848649908587,0.11419945530455353,0.9999981680743322,0.9977821246239288,0.9467358132718786,0.9365106387266094 -सबज,shape,3.8596073441794613e-07,3.480542815004882e-07,0.008022447955551048,2.2778018836333983e-05,0.9913836478018032,2.5180361155982476e-06,3.955667105912691e-06,8.139413227388645e-07,4.107300531039251e-07,3.2143698717739107e-07,3.933477189765715e-05,0.00323461916493265,0.00032223678707105996,2.5649290086722528e-06,3.3113583397742935e-06,0.00024162698016242545,0.9999165692843863,0.9999544930088071,0.9999346412177046,0.9770756062239848,0.9999679335397423,1.296678347579497e-06,0.00013048686274214647,2.415566331933502e-06,4.4592878684208174e-07,5.526098497537731e-07,9.464980772158008e-06,2.2582237084292303e-07,1.2871746995430267e-05,3.4830698666713006e-06,3.427566722198378e-06,0.6844588176928511,0.00010362916041044494,4.671115942477485e-08,0.012549666605481612,0.029056447370874067,5.275990056441677e-06,2.7505264317773933e-06,0.0002446918940752079,2.1220129619214037e-05,3.0757398740224896e-06,3.85029150513557e-06,2.8767844679300782e-05,3.193319435358891e-05,4.713912647731866e-05,0.11024751698441408,0.9073268245797383,0.05788342994969643,4.92259645997703e-06,2.731912747596357e-08,1.5535838690622732e-05,9.496763605517981e-06,7.170948137233597e-08,3.841800096460196e-06,5.057072591620334e-06,6.077094426926659e-05,0.0008122183479452403,0.0011810798559694412,0.0075204636379931225,9.508001058701434e-05,1.366588310736665e-06,0.9998742087563106,0.00044474008573362745,3.175414089286277e-06,2.5856396365129162e-05,8.564079009217894e-08,7.244431630271709e-07,1.4531821185554402e-07,3.6415228864778573e-07,5.77864084366815e-07,4.3819263810553184e-05,2.702510236007442e-06,2.965393915892354e-05,7.185194331291025e-07,1.5630884333498931e-07,2.0870481971781447e-05,1.3627638893181958e-06,1.073990689122761e-07,2.5789601056282584e-07,0.0021707095738660934,2.6914025659115875e-06,0.0023759052337731976,2.0597306540337264e-07,0.00022608660519377957,5.259954567481366e-07,1.1941196682019232e-06,0.00011202070221630769,9.807345116168488e-06,7.715927142467231e-05,5.591760904663893e-07,2.0290599480175079e-07,7.170367598275961e-06,0.01648956909314603,0.1259508792596131,0.06701334877378058,0.0015323785079738269,2.5622621850114336e-05,0.0514066716695845,0.0001204217440408657,0.00030898031721977826,9.138666874350723e-05,0.0002907146827435733,0.00031227497650006584,2.860867767116926e-05,0.0009823100433286613,1.2289566251505215e-06,4.142358194827866e-06,1.605512902565933e-06,9.707608315293244e-07,0.00022635182371146518,1.4176949112849014e-07,0.012287071719289541,9.03782466384444e-06,0.004218082921741669,5.261785861118227e-05,0.001506546933414971,2.7985416632174996e-08,0.0005279850986739947,0.00018107629639807512,0.46867880902740255,0.9926051181463715,0.003506148636673999,1.3385226311755573e-07,6.886990304613664e-06,0.07621647439002575,0.0001684234026243965,0.00021577043860821168,4.4054413778313344e-08,1.1802775689627945e-07,1.4562653752859192e-08,7.887895848403934e-06,1.78813421218086e-07,7.149078684354139e-07,3.4569463830579283e-07,2.1528278557784816e-08,0.9998402086307377,0.9999003847863616,0.999845801506251,3.868494166907246e-08,6.670945192786795e-06,0.004680548174006651,0.0002863865485541106,1.2180472085946204e-05,1.9458861860931038e-07,0.018422273251413986,9.465981266165806e-07,0.00038463044111366855,8.568898554932812e-08,2.897974530119995e-07,1.3065626971714486e-07,7.457782111401206e-07,9.412006498717599e-06,8.24643999860445e-05,1.1011122762112445e-05,2.1500799960483705e-06,0.0001521824038580502,0.003234619164932639,3.378600964981898e-07,6.4009047819208e-08,0.999903774529742,4.089183691714726e-08,0.9999834080254846,0.3788685334157153,1.9941924740902673e-08,6.721198368046218e-08,6.121513311421883e-08,5.639336904141198e-07,0.0005201556718445128,2.0256554978230896e-05,1.6979125042447744e-06,0.00014194911025082027,4.90804644250783e-06,9.777854718567124e-06,7.655438293128783e-05,1.277643949628392e-05,2.5869845924211137e-07,3.506445653010561e-07,2.843742497360573e-07,5.202741568589554e-08,7.624442811467368e-08,1.957011154512219e-07,0.014474920928162563,0.002505604890481797,0.000242235131180112,3.4493875064783345e-06,7.507391543644617e-07,3.589584466381616e-07,4.237416146317948e-06,0.0001025307773064434,0.001438513057450969,9.551141905414676e-05,5.86776587120482e-07,1.2333499366708981e-05,0.07392184120857218,7.940473139608445e-06,2.6363251428195895e-07,3.7701904599148356e-08,0.0009760042822399376,2.7036147211556188e-06,8.24006538959042e-06,1.4986054135771458e-07,7.71739999905998e-06,4.217925777121769e-08,2.295015932376235e-06,4.1420569765462214e-05,0.00041408156863406676,6.459790706600378e-06,0.005305526578831227,5.301940436585806e-05,5.76711922149735e-06,1.966727940711594e-08,8.615779836881167e-07,1.281640084710698e-07,1.751747416989262e-05,2.5650947879253556e-07,0.0061600437697813,0.0016178192601223882,0.002134058894033665,0.2066764639476202,0.9326807952903906,0.9946052981253544,1.6226390086169659e-06,4.939060005123605e-05,5.117325143958337e-07,0.9999808134779588,0.9999617442403762,2.180363705700432e-06,0.9999008220922778,7.7364194936636e-06,0.589260110598446,5.801636063913457e-05,2.6077314035539944e-06,2.4687660577619436e-05,4.7137305599035186e-05,0.9926051181463715,0.07542140255661967,0.017372520937110364,2.1825869506194705e-05,1.471801776150074e-06,1.5882311410903362e-06,4.834137698758975e-06,5.79255715945673e-06,0.1794247986008658,6.65878824262707e-05 -सबज,object,0.06682642299252943,1.3048186901130915e-07,0.9889901154274198,0.9959825928196742,0.9999344112743704,1.6595171850214085e-06,0.9714871710296095,5.106017222636751e-07,1.1077145403472422e-06,1.0744197499279542e-06,0.1021114512811569,0.6831379429493581,0.2991837190392479,3.115445480866603e-07,0.9854017889680488,0.9815737715091043,0.9999762909777914,0.9999741033172695,0.9999515297601093,0.7877135894358009,0.9999849942648809,0.8375574235182762,1.421567824378687e-05,0.9752158827477603,5.061574360954324e-07,0.9584063230379617,0.23753655865304885,3.142451659749582e-07,0.9471049618326192,9.977609849771629e-06,8.618551600182818e-07,0.998922018124349,6.0021760450538816e-05,2.1622246385982648e-05,0.9960651424118542,0.9995504628973313,0.004425511387405639,0.23713202784883305,7.102122655063662e-05,1.020999992976112e-05,0.9924860295767166,7.69141442546489e-05,6.486505919345091e-06,0.00013239954348913383,0.9961614076927224,0.9724632894168844,0.9993396336786605,0.99098145538723,0.9670606640054793,1.5282234388440965e-05,3.3843605581497965e-06,0.9931809977571502,5.757710470701718e-07,5.840518537973849e-06,0.9356919040436148,4.6809095212560484e-05,0.0005945445499336315,0.0016769079823105376,0.682052568409684,0.18909791522973216,0.025129056428891045,0.9999203379596343,0.9979815496445759,2.6472996088924285e-05,3.78911881935268e-05,0.8121963240891437,0.9533305271576824,8.036321573414046e-07,8.562797528186974e-07,7.325109803968591e-07,1.7631714934096866e-05,0.9831520635088432,0.9896304963548204,2.7813832582065835e-06,3.4866680231880055e-08,2.824414085373968e-05,0.9747669043189668,0.8581573287553993,0.7516316305270555,0.007476662729856434,0.11923264276410003,0.003968034865259191,0.0017856600459092726,0.0033889135937660007,1.3513844548459668e-06,0.007795556642337413,0.9747312547069319,0.48935714452776286,0.20496082111074912,0.03377022958096529,7.544498488287377e-07,0.8096906986754202,0.0029042778920883913,0.02340340091165187,0.03136668938267975,0.002617975584276568,0.9881576699145012,0.022914407581965297,0.001009392209812595,0.0036150778178983614,0.004966074722929278,0.9993780943441091,0.0002578026002622517,0.9994622069505535,0.04996156223174327,5.949662687989478e-07,0.9733550839970233,0.968810325139741,0.9104914998097724,0.00012806407139973394,0.7534689808508331,0.9999595931580552,0.9911101703882623,0.9862328832226923,0.6964465396210999,0.9280009053260367,6.075411008085857e-06,0.5730053013745475,0.8538256217386078,0.9978479640055786,0.9997434472411606,0.876268413096868,1.8136624391884554e-05,0.9959146711724354,0.9883046877279342,4.229098204644613e-05,0.789490593660886,5.327465440155907e-06,8.236124049151226e-05,5.829249962437832e-05,0.00011624189021383876,5.9778124318581914e-05,6.314293852052433e-07,1.3943515006214712e-06,7.393650290052419e-06,0.9999333337667254,0.9999517682524033,0.999935937376109,2.03704161652611e-05,1.3548322188982185e-05,0.9729477091493096,0.9940888876293354,4.216646849534328e-06,0.9401530832759274,0.01049946179710174,0.0013979176127668982,0.00034171214762511475,0.6772823404596812,0.9344699466976241,0.875031679623146,0.982559941232662,0.0007525192156500315,0.9794621601760208,0.05114748087284331,0.9350771961506718,0.21004130282429392,0.6295066886038577,1.6199202159605236e-07,3.156665575511941e-07,0.9999524393922347,3.262404157083293e-08,0.999990855571623,0.9999826792027598,7.584696266587403e-08,9.027409442440209e-08,7.446195827240012e-08,3.6037341337215635e-07,0.3588397606359814,0.23917750953634045,0.9891715929314657,0.0038240180852890907,2.2073901240485977e-06,0.00038123329743092085,0.9754707149018741,0.0018707481370143122,0.9181028625252089,0.5101371425022798,0.9479813621110982,2.5917509671431013e-08,7.771720448121176e-08,1.9985356917806973e-07,0.9997357740268259,0.9534245220105986,1.7710298183489207e-05,1.0405328821192693e-06,0.9198106426459391,0.9529636163246725,1.573975239644189e-07,0.24958782416452804,0.534887050732783,0.26530300871249346,0.00037993298947319536,0.33361507652882455,0.4494046109683019,0.0003173724022446271,0.9008454748994812,8.653020548565665e-06,0.9328841974137665,1.5516895788113868e-06,3.6969365598596426e-06,0.9669506918933862,0.0009327675088823793,7.884700990535906e-08,0.09852325758866766,0.447081625065378,0.00019262401425699564,0.9697243189992765,0.9999276079530683,0.9879576916814832,0.13806617365028181,0.0001280367452515311,0.1514776962509784,2.2081284730234598e-07,0.08804516480040024,6.354908650661209e-08,0.9303755976849811,0.9691162266729875,0.9947625733971948,0.9937302572308121,0.9996559617460605,0.9998558248612841,0.9649206523274422,1.91382223105238e-05,1.8906573342875046e-05,0.9999883749991364,0.9999904297794836,3.874417237894071e-07,0.9999287251370451,0.9483682615258562,0.9988583285593394,0.9681871485595874,0.009315216577563573,0.990761290392299,2.8995909593118825e-05,0.999695165049513,0.905776194784325,0.9117271953680898,2.781553994378433e-05,0.0002157144793789256,0.0006427402984800788,0.29274913769995026,0.8059355130548159,0.9869361996805679,0.5318841346632409 -सब्ज,rgb,0.2411459222020144,0.028543856527268235,0.9903318026575629,0.024398560419284298,0.9879234407304326,0.2686702386029104,0.48947950737989204,0.25512833718778033,0.31122882797607965,0.38577764759906064,0.9891037017927112,0.9896441018522181,0.989850121570533,0.027011816737431145,0.006143489374584424,0.026904551452114366,0.9940650063392527,0.994003573258108,0.9939204479960422,0.9655340011470189,0.9920114939369583,0.9898215065078263,0.2839949203761988,0.9898970697652854,0.3219840888715857,0.9953717470158411,0.0956534744644456,0.35964332729742615,0.037135161479766206,0.15081033440795014,0.27061666499783044,0.9879410198138618,0.31139485617762785,0.6775495593568104,0.015524200904783134,0.03248998930602165,0.9739195801546039,0.9909750356087806,0.4896137517975054,0.45842690500918726,0.04120698736573651,0.3728145663536386,0.2916656262840613,0.11809513367252567,0.20797103115953647,0.9866289098357177,0.9872267518655742,0.9903854414779195,0.19412900613601777,0.8678354402467938,0.27250175450853464,0.038920720796362086,0.32569570853328367,0.3813079397657779,0.09613552608615321,0.4122508685953784,0.8696229480607204,0.8905579124537507,0.989605278450009,0.9898503580283878,0.9893019763085715,0.9914520905758597,0.013956760274435612,0.47264069621772553,0.2056685229151039,0.9863374473227109,0.9950982363762348,0.3371810571157234,0.27264261126909783,0.2922962718890399,0.35350405483383374,0.04015001292490467,0.05150415453579369,0.3462503894995845,0.03906160579611699,0.4048299767981198,0.9953389116032678,0.9884862131701865,0.9899438586199991,0.9039404588883725,0.12490209360471372,0.8835328783274139,0.9685901385852457,0.9246608071554974,0.26820545490014785,0.9746074470508178,0.03346976818615849,0.9916113094822931,0.4110152104064346,0.12353584026910677,0.2587904039590816,0.006608026361232307,0.839313807293516,0.8965325240206139,0.911747857323289,0.9212472566651699,0.05042631821885409,0.9252831824760835,0.877157601938054,0.9237936274880888,0.9383909964256415,0.6513267922689597,0.47177657384659377,0.028111396044446315,0.940987257540282,0.2667341712970732,0.28778428891296,0.9902196522182272,0.9951557475349274,0.4833753511071251,0.9953046186175901,0.035614884265187746,0.015342360262107797,0.9878521626594254,0.9892026833376972,0.9887550618452485,0.5758877783241901,0.9840655642894904,0.9898312940869389,0.9931087451930536,0.9881780430996981,0.9861261191400125,0.8288938043821578,0.05670921572339796,0.9872120528658824,0.7607825949994477,0.9860983007336411,0.5697101487740358,0.9314985229107269,0.8872547457298695,0.9576957550855892,0.7636530172916138,0.25939640021296223,0.34355682734244725,0.5968286859215853,0.9931750129443575,0.993732523351926,0.9937751537051454,0.8997117227744322,0.15621759668141888,0.01925447340227887,0.017021802979184934,0.3577709536788543,0.07660115813854926,0.954963636142504,0.9730560375456773,0.9159083753773346,0.9896533921304305,0.9952050723533875,0.9875534560209791,0.06133926554396069,0.956107985527607,0.038701867413360694,0.9890295096542037,0.09396405197624313,0.9897124150027385,0.9893826585200983,0.2551874602140283,0.391309108883117,0.9934603231329987,0.15771594398464556,0.993608633872437,0.05616238440801486,0.30510971170416,0.26546997806067313,0.2258048555962312,0.2989885051218407,0.9894461031412265,0.989811204816166,0.030141798059719633,0.9599968920279521,0.2731685045474685,0.9308990802005357,0.019406727905428328,0.9597980376536621,0.481158227451266,0.0056957296181589555,0.010812766243573664,0.12650940643888753,0.25683803018274304,0.29205827167614734,0.024394639283719603,0.016242169716020657,0.29680642656114187,0.26737075625186363,0.1272715617388036,0.19205196680587855,0.033648149078730975,0.989826161859923,0.9895577247804538,0.9891916197952659,0.8308540011582908,0.21833538597267513,0.9758636541564192,0.8952732979799498,0.17674457079616973,0.6139079904664845,0.9879232807030495,0.2977378967044166,0.39306749007537467,0.06316644355042149,0.956293361956813,0.33927639176723606,0.09977132650156544,0.9848192188366309,0.43108409749394466,0.10070533444686673,0.04501047214432963,0.00741295732194687,0.1501505040275533,0.9026197774825333,0.9897994049953196,0.3353536020072734,0.989652752780282,0.21728815388995174,0.9872546081660593,0.9886299284260008,0.008175496689107187,0.9889252657689556,0.9875557072475231,0.9862910824166305,0.07195248941063329,0.3592572791329588,0.5252353846741972,0.9939389553750038,0.9939814279102429,0.02860936793432639,0.9935892025363781,0.00792650192906602,0.9881978344383648,0.00802821998990231,0.9394078526717833,0.05765082292250635,0.45744070050489954,0.9877079542589682,0.9872537153428964,0.9888440375423705,0.1661539534940872,0.8640850479310033,0.943212026825685,0.9888587227042803,0.022202627920920683,0.9884083652529178,0.9877698113150215 -सब्ज,shape,0.9999997912434159,0.9950192010242385,0.9999999990645838,0.00047603329419313654,0.9999999850476469,1.41718530710201e-06,0.005012825800029472,0.9999630285638492,0.9986911323389864,0.9915800844313672,0.9999997339624734,0.9999999999870746,0.999999961094046,0.9999144682379312,0.12738367368948814,0.00048400907622593543,0.9992824313724997,0.9998787411730111,0.9999999938300195,0.9999913926156928,0.01788371402504025,0.9990959557225598,3.812850915115851e-06,0.5483004160350358,0.9999985357624074,0.9900016999107608,0.9994107042321314,0.9999970994689297,0.9996986949528306,0.00013491123048374777,0.0003958039216312894,0.999999999994551,7.558558884895017e-09,0.9996541976719824,0.9229602265601182,0.9998035189806949,0.9980399588023628,0.9999985134233781,0.9970978742687876,0.9995579740337547,0.0021715508869190815,0.004320192315427195,0.00031287765865028116,2.7888372736412665e-06,3.88845227737907e-06,0.9999053903080152,0.9999999996757929,0.9999882975007021,0.045506558541751875,0.9992419328627739,2.684440571714822e-05,0.0003322045053759597,0.9999999033456053,0.00030304967712875,0.00022872466321303047,0.0001387698447054219,0.999999998652084,0.9999997930977766,0.9999999999999631,0.9968475811508977,0.9448239977818818,0.02865326413112602,0.7685117960082893,0.911903737884399,0.0002966526781140469,0.9970073003156619,0.9999826461887962,0.9999515751473955,0.9999892220221617,0.9995910815249326,0.00014930253112821538,0.9969249583732854,0.9999900855290406,0.9977680235736457,0.9905781597915438,0.9998119720593139,0.6555347119803485,0.9987881526577026,0.9999993054372635,0.9990297715154615,0.9999996973623845,0.9996066570067486,0.9996727585719518,0.9999999774907901,0.9867069537744598,0.9999653184732364,4.770461300438767e-05,0.9999988248671587,0.9999999362861992,0.9999996907394396,0.9998758469775387,0.9999993722916,0.9999998930136339,0.9999999746738237,0.9999985265583983,0.9999999999954832,5.643562618877423e-06,0.9999999921232742,0.9991711709733676,0.9994965214425313,0.9995463677291412,6.635915465044754e-05,7.762495191907739e-05,0.00178519221843777,0.9994041110118513,8.709269536869017e-05,0.0001554581917042591,0.8059511953607027,0.8331448878537757,5.939424771263451e-05,0.9979587831738745,0.15201066391799337,0.7847345680584948,0.9998561509714116,0.9999971841784886,0.9999957310661263,0.8501009470641234,0.9999331215497907,0.9996633885724239,0.9999999533479631,0.9999999338737403,0.9996480554817216,0.9994332591080216,0.901898593074861,0.9999773910956727,0.99729984044073,0.9999943436966623,0.8205518766759027,0.9996607722046429,0.9996432008253687,0.9999999999992399,0.9984572195782003,0.0003622470584551633,0.9998699400872172,0.9667063980255537,4.022687926445945e-07,0.9999410652664955,3.963042484903176e-05,0.9994717493046152,0.0002873054330591257,0.9999748332315065,0.14599927402533894,0.09605117799402013,0.06163225210191221,0.9997941573557547,0.0002181862775494966,0.99999911887369,0.9999982330577598,0.9890784126343106,0.9996121216396492,0.4664071201502404,0.9999788425095427,0.015368602274081603,0.9852926219436785,5.652370482425291e-05,0.9225096134988428,0.9999999999870746,0.9999935740435992,0.9996147956640102,2.897492954810456e-08,0.9999914434201582,0.9997208322906146,0.9999999965010713,0.9994357975055682,0.9994668593292401,0.9997998109404405,0.9975382780853743,0.965136680156274,0.9392523251397747,0.0004336520841847433,0.9999999535550205,0.0003119857958578507,0.9999169188284605,0.00024373879730002612,0.9997157073140025,2.925437993604906e-06,0.9999805879805362,0.9784145455457911,0.9999772083117695,0.9999873667025697,0.9999790497970611,0.9890804534137843,0.9999968967099836,5.362291336071049e-07,7.866714508187087e-05,0.006982836005274736,0.000918200466147882,0.1040421535758532,0.0011470857587123839,0.9999999995903917,1.577149474734167e-05,0.9999826860143728,0.999996656718016,1.8502187754794205e-05,0.999683025805322,2.6905616434112163e-06,0.9486277663198623,0.9999195588322337,5.550919082310059e-06,0.0005180318043850862,6.769274599702579e-05,0.9994986029099804,0.9996961312266874,0.9999997559103447,0.9998034385331389,0.00015680847013891584,0.00018441603387047743,5.889517134686147e-05,0.8883656325701724,0.9999975324814183,0.9918903114279701,0.9999997518926185,0.9997523691607718,0.9999958424944123,0.9998813390668068,0.9999434317694971,0.9998626982235297,0.9577644483087708,0.9999975227205619,0.9999999999999956,0.9999999865889193,0.0038716288168766065,0.00018626374871358255,0.9980034009576176,0.9999999017558406,0.013549289728329417,0.9999560377416888,0.9999999999163993,0.9432139599143532,0.9999582617943653,0.0005143381314300055,0.9994100838719224,0.9999957223806234,0.0012851589034005623,0.9999999338737403,0.9999999961677788,0.9999999998000251,8.87232956602484e-05,0.9998971496073258,0.9993664032462548,0.9998627981324197,0.997653088728692,0.9998884204586395,0.9999896359506933 -सब्ज,object,0.9998607294279165,0.27923606601427553,0.9999999946124498,0.00023015241870266476,0.9999999728668342,2.4823385184811546e-05,0.00463151468236614,0.9992107098824309,0.9554491074174497,0.9750078646338414,0.9999993523970212,0.999999999877248,0.9999999761958837,0.5561029782987185,5.502735868986551e-07,1.0780938027274754e-06,0.9987373662146778,0.9999875455969408,0.9999999997794549,0.9999979753855951,0.33360961802498584,0.9997363714958792,5.41365327810772e-06,0.9964211927548637,0.9999496072482614,0.9997873688532389,0.9979000233930181,0.9999919216926378,0.08700010541388402,4.237947634182912e-05,0.0003384654257188586,0.9999999997500935,3.7175358724945535e-07,0.9999519113166259,0.00012627439418044583,0.14460749002742856,0.999995526747249,0.9999999744823487,0.9918664588133379,0.9942295706004137,6.620193611495444e-07,0.021858792944938473,0.00032556609045133447,1.6197499633737681e-06,2.169870739209698e-07,0.9999985255562831,0.9999999990972821,0.9999614399736816,0.006441582028509,0.9999686604561807,0.00010246565628747608,5.818187528115512e-05,0.9999986810023098,0.00019191280344549162,6.784081819973102e-05,0.00014077949590021448,0.999999994143467,0.9999995200540176,0.9999999999985794,0.9998013139753862,0.9985647425420836,0.9729132519285054,2.4368926772437946e-06,0.9590995087959093,0.00016819978456686786,0.999795964752996,0.999977728397942,0.9985052553327725,0.9997019502621274,0.9876286486834919,5.059603629352135e-06,0.0002702004274264281,0.2971781260275951,0.9996224931947685,0.3063121040200431,0.9981424223107808,0.9946648519690044,0.999828282721515,0.9999997420135439,0.9991497481785399,0.9985906331994509,0.99969959409922,0.9999141653601844,0.9999998092777911,0.9927076061290712,0.9999713456638901,7.786868290856489e-08,0.9999999920573802,0.9999993457623982,0.9948783629056561,0.9989308079030939,0.03661575342877779,0.9999998630399972,0.9999995286922502,0.9999994903615467,0.9999999997591962,2.0134866800681794e-08,0.9999999227587861,0.9995627792246682,0.9996954424696165,0.9997321365881354,3.3309708630857196e-05,0.00011062974562080621,5.663480624126804e-07,0.9994729921421797,0.00012312739236865143,6.871074992063152e-05,0.9995402862457295,0.9999906879904398,2.6982073371783445e-05,0.9991018768916995,1.3138717513215052e-05,8.363917848616065e-06,0.9999320000088062,0.9999994667381519,0.9999985918001211,0.9999026746351974,0.9999330557849643,0.9996799791434334,0.9999997004514256,0.9999999068019898,0.9997586986005027,0.9999665331679507,7.181556833424957e-05,0.999985681848133,0.9999994568565566,0.99998750173498,0.9998987932765521,0.9999869860427949,0.999970681372533,0.9999999999999984,0.9999685938134076,0.0003476276814830054,0.9999681193543254,0.9999296646375788,0.005429680356722372,0.9999412635610008,0.005575662858515901,0.9999922066079607,0.00017966035405158804,0.7015269255122645,6.959561675838014e-07,0.010185374919083062,0.0002841590304127264,0.9999998727938268,0.9995168060128454,0.9999999045648527,0.9999983966843049,0.999982877006401,0.9998932786354531,2.1601573718423184e-05,0.9999960031850228,8.390725625799101e-07,0.9990832258270493,8.697174449638372e-07,0.9992509230606514,0.999999999881767,0.9999965938890834,0.999761452049588,0.01655816845010465,0.9999204651633166,0.9997593504937392,0.9980763532124629,0.9998843565117774,0.9996609082839748,0.9997742536890776,0.9982070045356142,0.9997279556733667,0.9991432832999156,0.0001313504466559872,0.9999998393312673,0.0003120441380251199,0.9999656390851299,3.043086250015429e-08,0.9999153726122625,2.645570739694334e-06,0.0024925425952890506,4.258632758539532e-05,0.9997175549356534,0.9999982885325308,0.9999916531079429,0.0002932015407672603,0.9706933567718468,4.06356885442892e-06,5.592713989652435e-05,0.0003718307269540532,0.00040248726111867316,0.014207266439195872,0.4479775755847833,0.9999999991560002,0.6810187085542775,0.9999751878997735,0.9999848489296084,0.04802101254323947,0.9997325024412789,1.4295414030998669e-06,0.9995754075731547,0.9999461781111904,0.00012268560765242215,0.00038322391411618566,1.582560880617902e-06,0.9999189231523613,0.9996863806936712,0.9999836671216444,0.9998840416147908,0.00014441394114548853,5.8251646727356654e-05,2.2563455076542775e-08,2.6456257219926913e-05,0.9999686355289088,0.9999890989811396,0.9999999745414963,0.9997236271423643,0.9999995019013551,0.9999762638080352,0.9999334697117139,0.9999418744266538,2.555296564492746e-06,0.9999998534186254,0.9999999999997742,0.9999999329060817,6.9726479142786195e-06,1.403214607629901e-05,0.9911542820859548,0.9999999390007597,0.5180066412385507,0.6933906014068711,0.9999999999787859,1.8316931221827973e-06,0.99996822884385,3.4215980506428516e-07,0.9998495785651724,0.40987556561049254,0.00032964737040104867,0.9999999065831541,0.9999999892853216,0.9999999940262012,8.559004068217888e-05,0.9999213981144394,0.9998044689792204,0.9999964747749192,0.012695471484635205,0.9997998816862407,0.999999574681054 -सलाद,rgb,0.0001390328408809383,0.9999999970291134,0.0067515089767563995,4.6733862006616706e-08,0.0007365675680287089,0.9999999818213158,3.543018781411895e-07,0.9999992616726077,0.9999992731669207,0.9999972503757791,0.4986996892447666,0.09288532734739564,0.1302559463878891,0.9999999954098531,6.892886232353798e-08,4.7586787934559736e-08,0.015731798330940683,0.02056137928089565,0.019776505650744992,0.9989598947102497,0.04718282897477767,0.0002107958516588785,0.9999999732544715,5.504434126712193e-06,0.9999999944984057,3.322141336126195e-05,0.00013238388831934066,0.9999999919980606,1.2995374404537627e-07,0.9999994290510292,0.9999999815966113,0.006008934904721941,0.9999999699469859,0.9995485129149506,0.0002560495317553728,4.556921532037813e-08,0.9970054810456194,0.0031946148392883408,0.9999999511086839,0.9999999034180698,2.4409162844087603e-07,0.9999972247253311,0.9999999790877663,0.999998676238619,7.738154691393175e-08,0.07989101234777024,0.009051748820189406,0.006707658302218434,1.6658280969722998e-07,0.9999282894497947,0.9999999804259029,1.933439768864369e-07,0.9999986593786521,0.9999999343650764,6.884500828701741e-08,0.9999999416342295,0.9999784968332779,0.9999519800026178,0.11055300027590038,0.1863936013123165,0.47500668308626004,0.041739548021967235,6.419833734818374e-08,0.9999927450016005,0.9999985409789331,2.4723930326630325e-05,2.5661997107502946e-05,0.9999978611599342,0.9999990949192026,0.9999993563286176,0.9999999523464314,9.504987481786439e-08,3.0100572078010147e-07,0.9999966884373471,0.9999999992437574,0.9999974817447177,2.2331436051522307e-05,1.655091903429909e-05,0.00012710050772205851,0.9999146654977722,0.0001554993692942988,0.9999711156502935,0.7741210032980618,0.9997626846422553,0.9999992803001448,0.5676639403967936,9.712221582682743e-08,0.0017209923901506442,0.0008829732822722029,0.00018731726734839052,0.9999990932220051,1.305683977918428e-07,0.9999910395358189,0.9999219658657781,0.9998728990295995,0.9997944571784837,1.1834780777200126e-07,0.9997540618358085,0.9999756397293994,0.9997963199642759,0.9995032865352149,2.4974369642717097e-07,0.9999998878253683,1.007084716888904e-07,0.9992712685060757,0.9999999829173404,6.480157902519944e-08,7.608948391052179e-06,5.993833559992411e-05,0.9999998630684342,0.00013981470192132392,1.2305892620915953e-07,5.5209091976854035e-08,0.17158279414900557,0.32848474851570286,0.487499111015956,0.9999642387861701,0.9210847229859412,0.0768456591436493,0.0023357994161056664,0.004844871501590079,0.7545283056169938,0.9999723098962565,1.852784248949212e-07,0.2914337371139018,0.9999994047608397,0.7344411967266177,0.9999768625805817,0.9996388530833743,0.9975699512885928,0.9996840553341233,0.9991310134174866,0.9999999832628749,0.999996999436659,0.9999515122766028,0.04575197049681336,0.02408359928313934,0.0258431549545337,0.9998769646636536,0.9999991018494925,0.00022466360439411063,2.6153910945640776e-07,0.9999999478728954,3.588111012646971e-07,0.9996013410838704,0.9975060133664774,0.9999773928458027,8.516304186473151e-05,1.966812481921595e-05,1.0938997926746281e-05,1.9774241216009953e-07,0.9956208810893293,6.988711423996928e-08,0.5206398222015806,6.990269974833506e-08,0.18523223317515597,0.13579165861458847,0.9999999971483529,0.9999999865725009,0.026071783980404446,0.9999999991915369,0.022902384494549063,4.636655802955755e-09,0.9999999953642043,0.9999999969340123,0.9999999979204517,0.9999999955337153,0.17469018092018013,0.2006880975819129,1.0613501040347688e-07,0.9953664426272566,0.9999999803400245,0.9984032258352136,5.626172405627502e-08,0.9966205637756462,3.5511022152496e-07,1.6425343326173595e-07,1.7822298883236798e-07,0.9999999995185704,0.9999999971502886,0.9999999959232531,3.266954687783518e-08,0.0003248869419975592,0.9999999704040969,0.9999999828515406,1.3702607223930287e-07,9.422961205754482e-07,0.9999999978710392,0.19762932166228694,0.12925083759273648,0.506209619812654,0.9913070896851174,0.00011695448829904,0.9960537780775572,0.9987538419271397,2.071199013593517e-07,0.9999629376247977,0.3433112650388241,0.9999999743345647,0.99999991940868,2.505564231030276e-07,0.9945016551060255,0.9999999930144101,0.00020999567192742942,0.8863424361919623,0.9999999057662805,6.673234970071931e-08,1.5078807742286847e-07,5.9093029208956614e-08,0.0001009681027838864,0.9910502367530754,0.004743938598612093,0.9999999937409094,0.1518174774478219,0.9999999979552348,0.5490980207618523,0.13947043963631708,9.356602335772701e-08,0.020958483213867216,0.0031704028807459607,0.005693234231431267,3.3805636668043993e-07,0.9999999472842714,0.9999884887636629,0.023718393006528712,0.022502650647339223,0.99999999703306,0.03986403371180624,9.824079880019479e-08,0.004871211262182105,0.0001002626722420935,0.7282903154296663,2.7496169777728273e-07,0.9999998931661543,0.0066160112500972664,0.2830539888378837,0.08033638159249583,0.9999985607471173,0.9991752658582527,0.9970857773663213,0.0020499316651823407,0.0003302437620146532,0.7173350345292854,0.7297068584584216 -सलाद,shape,0.994680150212995,0.7143822014430172,3.8469413970476446e-08,0.0004923030088246871,5.245789341297347e-08,0.014605127588423663,5.374012980367216e-05,0.9999988217345125,0.999924489903626,0.9997141267541161,0.999999983975665,0.9999999999914546,0.9999999995357813,0.9982635991149448,0.9971894595618155,2.2221813069030195e-07,0.07671739765471086,2.657629751193406e-05,0.2816683044679869,0.6703912294605986,5.401183408589836e-06,5.01131781361597e-05,0.43315112205731854,4.097715744746748e-09,0.9978456605981649,8.678826673233578e-07,0.0008384757735350152,0.9998219838750835,0.0063270087669084875,0.0044430226183895805,0.5153855604143348,1.790876458757844e-05,0.0004687613599588969,0.9986525631076661,8.799276965146438e-05,0.0002891437908500818,0.0008208018892140645,0.017334308986234705,3.442521197440629e-05,0.9999891583603537,0.5645985958372998,0.8444800919014915,0.993769802312841,0.9500385068659182,0.5250394537808689,3.546799429814235e-05,1.5480972109603356e-08,8.877578180195446e-06,5.826041583029053e-06,0.7696544555611815,0.17366254509397605,0.000767703664557356,0.9999107722713881,0.392124567870011,0.00010273781263318166,0.0053584292675749046,0.9999999999695939,0.999770726803642,0.9999999999981184,0.9593430823519344,0.004994674618566242,7.953354097074675e-07,1.730066463646893e-07,0.8052686438820927,0.0003642479694561177,3.600924135522353e-06,2.938657681886957e-05,0.9996006587026082,0.9999318436441829,0.9999989978093539,0.6727470774296116,0.10592727005513419,0.9981688007934083,0.9989787372762479,0.33810052315507033,0.9998150238090558,5.6546550410639054e-05,0.0010709748518539569,0.001805649916286757,0.999257494329128,0.0005051029642764818,0.9999813776030193,0.3925238110640257,0.9999344234532179,0.9997982582161467,0.8650932306404405,0.013171618495085663,0.0008230487741846404,0.7416908246372701,0.0005551087248462675,0.9999936652226338,0.00046819501229607933,0.9999999151459763,0.9999997728396787,0.9999994418134315,0.9999999998715599,0.4625817781351009,0.9999999575211334,0.9992375788526786,0.9997886837182208,0.9990943344006835,8.455187867884842e-05,0.001795807023701307,0.007905713723381487,0.9994000723570584,0.005348781416795526,0.0002559933476062051,7.010662778174496e-08,0.0013272321443098705,0.14070947224603952,0.000191176402438377,0.02136313932975084,0.004147925746532215,4.865177753376754e-11,5.53111956461922e-08,9.324558045525854e-09,0.31844759943238377,1.9202040940719198e-11,1.660918695837216e-10,0.9947629052741213,8.250279948610781e-07,1.8175978669066633e-14,0.32152141292141156,0.20802667161924807,2.263331139679476e-11,5.905365496785053e-10,8.2451628349723e-13,0.24966254124823578,0.9921230724513337,0.6867955487357256,2.0781687403768794e-05,0.11881339686265315,0.3047454029001168,0.9999454271814604,0.06106591349321086,4.888825362605917e-08,0.9534090858351235,0.0016857901031413838,0.2461088411063573,0.17933551636727,3.018359078868907e-05,0.00010254397335096452,0.9999992151407235,0.9996570639745281,0.9372934205963593,3.198070080725823e-05,0.999999999752408,0.0009048352221099487,0.0024779093757447317,5.039165117845906e-09,0.9934769707819275,0.9999995856425443,0.09751344348180621,0.984496964565665,0.0003426915350652755,0.6548511114573684,0.9999999999914546,0.9982364459666075,0.9999507501597359,1.1637151329328537e-06,0.9989114426314516,0.008165318264077612,4.222193416233671e-05,0.9998615116340571,0.9999620682816422,0.99977336085199,0.9977188589840925,0.832837482521852,0.00431728411215692,9.376457665464586e-05,0.9999999998698657,0.009170073534467763,0.9999984514450942,0.1181332341984899,0.9999477325537008,1.0994640802233616e-07,0.001367416057621211,0.000784729519965383,0.9999994803086446,0.9998264987688023,0.9996758495619441,0.0006806338872378806,7.01776408130567e-08,0.015507334163434052,0.01961880071241035,2.9215893850780425e-07,0.0018256711478685087,0.002179938468780287,0.14742498630691292,0.9999999999931672,0.8215112219493206,0.6560173704639163,0.9998007678146813,0.013600487884653758,0.999995051821456,7.303396593976333e-05,0.4455766324158151,8.793397434405595e-12,0.02514430540249707,0.9999999994712039,9.291377613779547e-05,0.9998106914220606,0.9999750007329111,0.0007650375807098864,1.5552893477550034e-11,4.101566554884113e-05,0.00073200253491739,1.1416087698357095e-05,0.999999753252113,0.9880784194181478,0.8508432705555666,0.23097290995604672,0.9988215772643068,0.9523290435390586,0.999859205849674,2.5251221885636827e-11,1.0461039895545115e-13,0.0004810762771720098,1.610213129636783e-05,2.1289413787161323e-05,9.113690240610388e-09,0.0007422704492791622,0.6739321718878892,0.9998179103960652,0.017179070365673527,1.0577064469919782e-05,0.0014987505265998426,0.9374245406186958,0.0003561486183033774,0.00019818059447119685,4.204445573929399e-05,0.7197601179925596,0.9995951991757334,0.3258958468876275,8.250279948610723e-07,0.9673055877227854,0.0006605035094050346,0.020792474815441272,0.9931657590447664,0.9997903297606011,0.12293332413401653,5.945135052432011e-07,2.749877225607682e-12,1.939125759645055e-06 -सलाद,object,0.0054470328975345485,0.9999999375994105,0.0001256223533591077,1.4454991071271051e-06,0.0002225833278678956,0.9999884211410289,1.1829332861436009e-06,0.9999979709029126,0.999998030282391,0.9999774674522828,0.9802984781918617,0.9864668698360393,0.9617654789078792,0.999999870575785,0.00015134667116264395,7.035700764328568e-06,0.04828240196122855,0.07115756096994107,0.6174464124760137,0.9981173419685435,0.3494945383609865,9.679259967426213e-05,0.9999946976734186,1.5620360954079747e-06,0.9999656468253274,1.9173890316827347e-05,0.00011837995670850769,0.999981716690328,2.117030146586441e-06,0.99995120997599,0.9999934559233018,0.0005671499003615553,0.9999927795420451,0.9910223503928981,0.000188887784119239,2.673645227034008e-07,0.767216169875921,0.002385284292027103,0.9999498828441964,0.9999997675615878,5.8489758992149554e-05,0.9999563362141218,0.999994494587378,0.9999094596851426,2.5946496386403353e-06,0.010293526181409118,0.0003392585649548066,0.00034512416751272893,3.578572172064908e-07,0.9963460636928546,0.9999766129356744,9.404854060159645e-07,0.9999712291784447,0.9999980494766878,1.3802538441092417e-05,0.9997905661647728,0.9999948854847911,0.9999909380157912,0.9684993417675462,0.5765918950264237,0.45909260492269766,0.5949829194991905,2.444802841321356e-07,0.9999842824300678,0.9998860209938425,8.014824496179607e-06,1.6487850179809487e-05,0.9999655134944051,0.9999834111159047,0.9999981626034992,0.9999995485459026,2.298856971281733e-05,0.0006570083312302915,0.9998513710369273,0.9999999787921261,0.9999961365261514,2.0469836439395533e-05,8.137952977000937e-06,2.840324143932073e-05,0.999904206036061,0.00011970538756208417,0.9999651254787474,0.42573006007440595,0.9999532549336232,0.9999791561598452,0.31090579055227613,5.358640708680376e-06,0.0016933312785701634,0.009646509978500901,0.0001860113069581452,0.9999871909613688,1.1441775052061753e-05,0.9999933516774767,0.9999814583272592,0.9999601690646598,0.9999894644819749,3.007035744672319e-06,0.9999589922970212,0.9999600236288612,0.9999511063358545,0.9998451530692074,1.7512629213947785e-05,0.9999962160693144,4.19049934225204e-05,0.9997619820129456,0.9999935840983444,1.359503147984403e-05,1.878736353162739e-06,5.0843807094975184e-05,0.9999929160126981,9.808421127617126e-05,0.00011127742325381944,1.2272191776357177e-05,0.15998555738271783,0.3141307673730739,0.1431559802372084,0.9937065458950052,0.8530578432092644,0.18025577895777323,0.03358699969032819,0.001438746557505843,0.2888436076478181,0.9967737937125629,4.444017223662406e-05,0.08799376108133249,0.999996195665214,0.2425092275655499,0.9960186300830101,0.991987259828224,0.9491083836068587,0.9365526073724366,0.9618070347736478,0.9999928058560875,0.9999551211831605,0.9924358980613295,0.2071049145553934,0.18096519643995065,0.22958450374979608,0.9908212406609194,0.999963448879648,8.199923812169406e-05,4.85710595804256e-07,0.9999997732163347,0.00025838736596256565,0.9999761037993795,0.9926070626839202,0.9999965350961056,2.9894301958726353e-05,1.8346623916734033e-05,4.537932298794737e-06,0.00010992962348556851,0.9990375890686625,3.7187954241032044e-06,0.7589259717929645,1.070657516624631e-05,0.6972193359916327,0.990014123938347,0.9999918412809341,0.9999783110009385,0.19524520431573547,0.9999953383086453,0.39774416405889673,1.712294142878976e-08,0.9999951113916181,0.9999954677293386,0.9999925681617171,0.9999748822783561,0.8883420323459089,0.0971145655914546,7.316346140823924e-07,0.9997382519180459,0.9999822056101181,0.999356975030784,3.477938845344975e-06,0.9983886735669516,2.2104495203812187e-06,2.556903413933354e-05,3.9992298692671175e-05,0.9999994845294408,0.9999943065750626,0.9999911114020377,5.416090264394944e-07,7.215640345016605e-05,0.9999922656701266,0.9999922781942585,6.778341108256273e-07,5.228365224505425e-06,0.9999998167031757,0.4190496092800973,0.9834022091871889,0.3556135419587926,0.8976768357817037,0.004787113080050271,0.983602863323093,0.9988270048532419,1.6397433960168676e-06,0.9973118592133751,0.20415741667296033,0.9999600164524769,0.9999999499987574,2.7635674320482086e-06,0.9948105097062794,0.9999957147705973,0.00012262241422367047,0.7178584293544468,0.9999962182954897,2.9088839146420445e-05,0.0001235775753921281,0.00010396526288814535,0.0018298293619482757,0.802927419062255,0.009494074573295893,0.9999710076032963,0.5120159501020138,0.9999974438652799,0.3101161994893578,0.01727933763294652,1.0770492896130483e-06,0.00416872793320356,0.00024352343339330865,0.0008849232314191874,0.0001629193748382062,0.9999995098177143,0.9999939111125167,0.34794510174639354,0.2013890281404501,0.9999995722531634,0.5323071822242779,3.229528638754885e-05,0.0022378834904660918,9.498199616921261e-05,0.42597962106597076,0.0006656822034588557,0.9999986709365765,0.0018054365817951144,0.3771974417837218,0.006079793650084989,0.9999389278095179,0.9943871354231865,0.9959526505076421,0.00397819541411728,9.249885663284064e-05,0.062276850986968696,0.4825762982589751 -साबुन,rgb,0.8495868104425925,0.9934627112757686,0.000405111067528022,0.9999949859497819,0.0010521870441908881,0.18511517896426538,0.6603810247127632,0.22538672065616996,0.15202897086560188,0.09947385310262949,0.0001809733547635884,0.0002757903982228393,0.0002398535385622111,0.9948513593839209,0.9999997144537747,0.9994905735299938,6.61755156094177e-05,6.771794896962776e-05,6.591419146152568e-05,0.00035897668178066496,7.689485746804665e-05,0.0002131231611387245,0.16655661890747397,0.0003763476672052505,0.17232857698377574,0.00012057965828099711,0.9777123112942336,0.13458991553758257,0.9988741599053516,0.9173156933094007,0.182729584268601,0.0007173767028937077,0.13936484242353173,0.020077925416602683,0.9999928246382284,0.999272402096325,0.00025716842890465794,0.00012179768493976159,0.04960371003098492,0.05608227750382425,0.9999800778554441,0.530336312069802,0.15908970249220114,0.9615928966076833,0.9646646853317563,0.0005479640293316398,0.0007640477313371872,0.0003999586771774835,0.9656342477479806,0.0026033729784462087,0.18029423027466218,0.999983014670514,0.14245846158655637,0.08937475682385643,0.9933274315328359,0.07443901691665565,0.0070679212082159285,0.005534214432813565,0.0002666729031495235,0.0002169030641233892,0.0001761416539991396,8.442116130221507e-05,0.9998473913998849,0.3634688984165511,0.8585579080256498,0.0004755664856134811,0.0001145386292622392,0.1355264792683016,0.20122135355267626,0.17218401871372233,0.10639301463157766,0.999983625339153,0.9999663984769341,0.13108358462168768,0.9803098967530215,0.44938317191513116,0.00012083070170225183,0.0003849104373830464,0.00022561232500897422,0.0045916526283819046,0.9607758019183927,0.005617945495962001,0.0004014486688629267,0.0032120609611522156,0.20509596950256603,0.00031105127104225896,0.9991236967938186,0.00011857617555616165,0.49956805286574807,0.9605692685948773,0.2219972836333443,0.9999584970044635,0.009817282059677218,0.005485184468199387,0.004101392363479731,0.0034705304656786804,0.9979865192532547,0.0031741088968780403,0.006196452139059322,0.0031663636798720915,0.0023226844116711436,0.3794769899472132,0.051692823035293115,0.999992388492922,0.002312539780848424,0.18770009383725558,0.9270181708212112,0.00033882673905827587,0.00014020668038002527,0.04809739636010747,9.143648223954322e-05,0.9999869080584521,0.9999980932849855,0.0003569240193201974,0.00021310145496552916,0.00020065078510808483,0.03388744965666054,0.00026474323274561673,0.00027525489055924967,0.0002059298829163838,0.0007115149637093145,0.00026314198033209913,0.0040536111583492004,0.9999612648092746,0.00034899180664747597,0.009100406900547591,0.000272288984242231,0.03418398135333303,0.0009046461631507988,0.002455005511002473,0.0005432107224918356,0.010185920787604536,0.19706644109001825,0.13263034470248303,0.030018457461214555,6.693368713005219e-05,6.571692139513324e-05,6.605084254564678e-05,0.0016366202413724189,0.9185949465231161,0.9999888892751257,0.9997177058245464,0.10351908806720218,0.9999158274062002,0.0005096478597444383,0.000271025590748502,0.0015399198600407249,0.000250722880213309,0.0001197260463054858,0.00046677738269547506,0.999953384683826,0.0004955870447473042,0.9989015635694694,0.00018006916232023913,0.9936151365872742,0.00022543750452442274,0.00026740809477207594,0.29355564849898125,0.14724973072123226,6.640441699770854e-05,0.5201473341035833,6.595445057808549e-05,0.9985750619366108,0.20300384523406642,0.2461844186186729,0.30062108102721524,0.19229416625534587,0.0002456428931326395,0.0002143827042980284,0.9999910818666246,0.00042994577323496053,0.1794958499626693,0.0009842741215668838,0.9997199447369798,0.00042727975593308455,0.6738359839858422,0.9999674696096353,0.9999989200344924,0.6082899775690978,0.2848769412598987,0.222967111132733,0.9996042430711173,0.9999917905447414,0.15306482079858844,0.1869052945560811,0.9866044373741946,0.9991010419212374,0.9896166888582,0.0002145205613317297,0.000259241471126081,0.0001752063170179101,0.006212135956797526,0.8804705218660307,0.00023936122145048658,0.002023470739503617,0.9710304128585864,0.026047029787489774,0.0002839169623704164,0.15242395753228924,0.08305510491222523,0.9999484331549761,0.0004987373315226367,0.14404235284462927,0.9739845788515235,0.0002601417016453762,0.06592930158631792,0.9927001718632261,0.9999774789597271,0.999999585827189,0.946294580197966,0.0020999695070273573,0.00013904325045845236,0.159984813963799,0.00024229562583438237,0.3067344338814005,0.0002661930589118453,0.00031771457248247194,0.9999412083188266,0.0004550434277271838,0.0008722402075809924,0.0009900789744420047,0.9999276508748904,0.10256045401507868,0.2850567653252002,6.818475295921029e-05,6.918698554933341e-05,0.9934265308800966,6.729257178524334e-05,0.9999441061835631,0.0007078805313911798,0.9999984674322067,0.0012949629500494996,0.9999573943328782,0.05628518492375021,0.0007382614993576689,0.0003493208096721958,0.00034638687959200515,0.914804751290574,0.003206125252367615,0.0007350350165493646,0.00017782785080227128,0.9999839643552483,0.00016431717882129,0.00019008208939494403 -साबुन,shape,7.713557531257972e-05,0.9999945445213061,0.2443636643202475,0.0003930650557535907,0.9997146350869314,0.9887769082965243,0.8648456061846543,0.00046721848685248995,0.0004990069817607059,0.0003667790795037019,0.9999996270518928,0.9999816224545094,0.9999994535981306,0.9869547105892851,0.999999103567031,0.9999997416140854,2.022014476336727e-06,3.970802486704577e-06,0.7508521955502837,0.026221699385269817,0.03931464734301077,0.009121943126193861,0.9999998319934924,0.9364187369155881,0.0007643081059345916,0.033423124795721196,3.3011844489989867e-07,0.00012749446351039125,0.9994125723960303,0.9999807960078057,0.9995493173579855,0.8373479949342075,0.1833379288947694,5.5981186415970515e-06,0.2256138028696797,0.0004850061094134117,1.0871914246708105e-07,8.268881345834861e-06,9.389478991036556e-06,0.15237411305778534,0.0017732635162532422,0.00033813682606363026,0.9992457536963731,0.9997770240542676,0.9999191255486287,0.9991278667231264,0.9701852068250324,0.9999992760830383,0.6551129433226272,8.975045056571477e-06,0.999983306573889,0.7680414839948665,4.2679164177856925e-06,0.001048241566191295,0.07964549022710908,0.03911037014289124,0.9997731219300219,0.9999999951235028,0.999682544386051,0.9999990299827651,0.9999967616827738,0.999999930920585,0.9985196883140407,0.9975238392457306,0.9997429335161264,0.0013091149782566195,0.014838410541703156,5.458163757867053e-05,3.3588453345316697e-06,0.0004366215179673559,0.0030963262841293307,0.9996767982787242,0.9598968124683134,3.3565536400800745e-05,0.9999980894141612,0.9849802384677483,0.08137817338972154,0.0024389941537463836,9.904657181499019e-05,0.9961940794189235,1.0589535202063375e-05,0.932475047316993,0.0009978764221162911,0.9999998165224796,0.00016252795495193362,4.558544079033979e-05,0.9999829588822415,4.971492565333577e-06,4.306014064770524e-05,0.00047821949347654733,5.444760566610634e-06,0.9997508315028094,0.990558326527836,0.960481362392174,0.9972027059963233,0.9999994385213689,0.9999141078938502,0.9957100479349608,0.8748895260219294,0.9999999699555935,0.9996252121537972,0.00035652600313234396,4.072335220782049e-05,0.00015952832090494618,0.9676383114219621,0.9999776406388344,0.9197491508215889,0.17754047409947452,0.09622099452400164,0.00017947945059635842,0.22951901756392337,0.0028302721379730826,0.999973434254109,0.00024887348224363986,0.00028864383249972036,0.04073168660941869,5.336368766653986e-06,0.25958179021576233,0.0004639506472073922,0.9815653675846581,0.9999966269524391,0.03840709526512622,3.5522638339984614e-05,0.02534215229645217,0.33172484495256854,0.9999999925538976,0.0267639391553687,2.479743312013739e-05,1.3902619716502556e-05,2.955902605872433e-05,5.074521904561564e-05,8.890796845471471e-06,0.998994463547667,9.096029680703078e-07,8.062829958696146e-06,0.9882038133054288,0.0001260245280635428,0.48775043553736486,4.793758973827611e-05,0.9999252575910995,0.09993782356882948,0.9287358368702738,0.2228799336413276,0.41802470488324656,0.9999997802721047,0.0801385496430311,0.9910557385748827,0.0003900972548767772,0.0002751038885989082,0.010209524151468651,0.9059962546092128,0.8942516408020046,0.9999852060541818,0.9999959945747076,0.5454590791452821,0.9999999872329007,0.9999816224545094,0.0006576587213671614,5.886073180613773e-05,0.9999546802702088,7.516604890989284e-06,0.00029369429822317987,0.00017363000439538337,4.50152974497946e-05,0.00014856795806601493,0.0016266314153846944,0.37504301229084036,0.9999999547839955,0.9824410311952545,0.05869458147732848,0.5420561364161648,0.9915952735550503,0.00033382853145338167,0.9999800335695931,0.0001802905025486701,0.9999369407360105,0.9989578898241911,0.9997164959853094,9.089476933430155e-05,5.687500911636582e-06,0.00014591544870866619,0.003166906929905235,0.2939891917279554,0.9999999952369372,0.999999478249459,0.6114852625863204,0.8024451545084613,0.999997459202426,0.9999998978349596,0.9999880528727909,0.9999758900953976,7.442367186176734e-07,1.7546605309204723e-07,0.0016042494483386738,7.257010445815205e-05,0.9997691393502006,1.6273154601978197e-05,0.5913254268124292,0.9988884881673945,0.2831623603584334,0.9984022833001561,2.1020113759966974e-05,0.0004266659830324691,7.08860481772754e-07,0.9971822168363512,0.009337474248337876,0.8211063025302928,0.2313352043570955,0.9994759875743544,1.5151985444691343e-07,2.614061164723929e-06,0.00013509035016728106,0.001138570415474773,0.9999923170362655,0.0004162676059104829,0.11943245730213818,0.0002470977802361025,0.9999999782706126,0.9998680083353993,0.34215971174871035,0.9997067246828635,0.9998703232677614,0.0021405901517141837,0.7379018596988747,8.144894475452137e-05,0.21940951954045357,0.9220809666588192,2.246625290190783e-05,0.9998017789456126,0.9999998077126452,0.7828740510839498,6.746734888146457e-05,0.9052511685242828,0.0007748518768427565,0.9999966269524391,0.980045620976388,0.9804974822014406,0.9999848850863907,1.0067841630879794e-05,0.0033714390776750066,7.051057233237645e-05,0.9977575581085691,0.6228508858774264,1.0840507508956624e-05 -साबुन,object,0.004994842692665213,0.63702321301957,0.2536661912680538,0.9540507660538349,0.995820717175287,0.9827207935449814,0.9999926978976053,9.836762722543752e-05,0.00017579145367215113,0.0005711071992683043,0.947725910325092,0.48805695399179966,0.9149493335069773,0.0007337160717028489,0.9999997699401827,0.9999999994635445,0.00018574831198538982,4.148133048566187e-05,0.0012106923997004385,2.206651314447396e-06,0.016162704207539364,0.6836178580180983,0.9999968927210545,0.9989392694913949,0.00047380731520748,0.8044082048963241,0.00849893604596598,0.0001100776956533911,0.9996896385011149,0.9999496876308825,0.9993534563916068,0.2784469942844199,0.03410468847771819,3.386644074197761e-05,0.9806922241209414,0.7006344464562156,4.888962818531698e-09,9.064704276641967e-05,3.174179314628837e-09,7.584823039075204e-06,0.9869765955372608,0.0019502551115514453,0.9989074740440614,0.9997937279738731,0.9999999585277649,0.9912164498163578,0.3406266965763443,0.9999413441025353,0.9999890756473433,1.3889631370553199e-05,0.9999536434936535,0.999947909697966,1.8545531669568386e-06,0.0019690571712101565,0.8000627903649401,0.0002816189805020899,0.0034730732710276492,0.9800087827508385,0.002947302933508814,0.9940983198006632,0.9872871366899285,0.9894635880097659,0.9999993234481098,0.019665845366767815,0.9995495147669193,0.7153691307370595,0.6898526475421743,4.232483597787663e-05,4.80636456644307e-06,0.00011413527590651685,0.02019883168331463,0.9999192706621391,0.9373872528831272,2.266221711332367e-05,0.9444883124585425,0.015529415585233278,0.9708647489432429,0.7719333544229791,0.007978056037932283,0.9473735415017004,0.012779069190625889,0.15321713870769135,0.0017217796302011145,0.31877808563562077,0.00010536645939094592,0.00012304117976190206,0.9999999992951936,6.779308963468034e-05,0.0022147572432018566,0.27012856261735035,3.736348548954148e-06,0.9998687418049039,0.0010216101185372107,0.024706965646593824,0.006901590835817987,0.4714768475005556,0.9999999737084142,0.005408695558741206,0.8605034661253628,0.9768415648403986,0.8747462518803758,0.9518603615292647,0.00024674403212293313,0.9741013906833415,0.962765610449974,0.999765490213158,0.9808515158431391,0.945992241796695,0.31018090475763277,0.00011228350494817767,0.9878493909715315,0.14363132189128652,0.9999733780277832,9.235668173157837e-05,0.00022015120081689341,0.0022379632035479944,1.644645380462454e-05,0.004184503172576723,0.00017981305963504787,0.9275984455017176,0.9995111882904838,0.005717325318618817,3.494199079292248e-05,0.9993881212895225,0.0045980180499433625,0.9932779172577854,0.0011861299309335758,2.5592766160114855e-05,3.987939991660374e-05,3.107755574031279e-05,3.290807689447504e-08,6.862704022258488e-05,0.9990473400815231,3.4746502442470726e-06,1.2596451027508716e-05,0.5510142725546833,0.0001312303111661704,0.10079140733794315,2.8555757004368787e-05,0.9996720693345174,0.15735429815073115,0.9976432966399467,0.1312625763732812,0.9996624485860881,0.8267064641754133,0.812158797224123,0.002632237641312704,0.017177588506095784,0.15494948124602428,0.8699375943720231,0.9995083985667733,0.0015233152568432018,0.9999999993331643,0.9870966943911299,0.9999743972576571,0.9999426027097637,0.4607676672588696,0.0002637378767359802,5.527922362586112e-05,0.7420452772320216,1.8219555923688106e-06,0.00019177044795352585,0.6256950197755352,2.095113611470753e-05,0.00013500343204734999,0.0018379358374025915,0.20231053938571747,0.9994164492509626,0.9962268717121504,0.9999345758562527,0.00038692816765233367,0.9360005791861351,0.00016452283648915388,0.9999999996484421,4.647349243655563e-05,0.9999999847969494,0.9996597802168089,0.9999735018846769,9.227750322647622e-05,9.384400966765882e-06,3.14655149741166e-05,0.9980734505375012,0.05314021840611237,0.9999998670146039,0.9999716799239536,0.9999928608284343,0.9999682673904462,0.9998348249535893,0.9999968310532926,0.5677692332374814,0.9999868680857491,3.4266052360645556e-06,2.373627839171019e-05,0.0014232553111350231,0.0001003595458359556,0.9999999895407671,3.7738879044557844e-05,0.0023673063908596355,0.9964065232490208,0.0005300347952655754,0.9999999325230108,9.40632294212722e-05,0.0003709712047838867,0.0006381079017910505,0.4250825581650238,6.625191626830665e-07,0.9999966108139349,0.44266599012493646,0.999833712674735,0.0010172273310983335,1.658627673869796e-05,0.00016866247332317423,0.0012355389543055957,0.7837892802169609,0.0004191939381126252,0.001135638699846787,7.47692234278472e-05,0.999999999989589,0.9994037684226382,0.014040263936344966,0.9937680626291342,0.9997312234081392,0.02557174305667361,0.0005969231812836746,1.7673930931401628e-06,0.07535660818397848,0.0006821624041931219,5.0707523041825795e-08,0.9999997494394209,0.999998250168917,0.8361731475288993,0.0004076633214023577,0.8150267439767241,0.002381467856884682,0.999473676657954,0.8946316448742333,0.5768314419530839,0.9999628213413989,2.841255165356085e-05,0.00021019485843668326,0.0013756751825849218,0.9991281174615448,0.015846379523330352,1.2498326586919187e-05 -सिलेंडर,rgb,0.9926880587131582,0.9999999999922291,2.8330740803693066e-11,0.9999999999997948,1.5638526592774754e-10,0.998649716188331,0.21947890224235592,0.9975964957010711,0.9891614534637775,0.9214148849509256,3.2096386329343614e-11,3.427300042679079e-11,2.7785704591069823e-11,0.9999999999951483,1.0,0.9999999947720335,3.241530970185552e-13,3.7970532184411106e-13,3.6198135066742097e-13,1.0369014384913208e-08,1.0897855270063833e-12,2.4357823267050976e-12,0.997693477402051,2.4425103362285164e-12,0.9983010334491726,9.895533447973082e-14,0.9999863798988337,0.9951996321142089,0.9999999632810241,0.9999997233017117,0.9985730151884834,1.3726812768193746e-10,0.9952848973505419,0.007101201408332366,0.9999999999999885,0.9999999840191907,2.168390764409074e-09,1.4611014245303609e-12,0.8112484505897651,0.8488644553919061,0.9999999999941138,0.9994858310198661,0.9974501808375067,0.999999961068492,0.9978646011927371,2.2257692362081785e-10,1.9937323248324045e-10,2.723487999846132e-11,0.9986574076140151,2.1922351938908048e-05,0.9984663038278727,0.9999999999959288,0.9825595558288104,0.9701489529457749,0.9999878436239286,0.9462875124451574,0.00027793939345424287,8.898415392469587e-05,3.4215532857637084e-11,2.5755371081268776e-11,2.841646134199851e-11,1.43589840516474e-12,0.9999999998886815,0.9938038551873047,0.9999973492553694,1.1257523445140537e-11,8.970643837268945e-14,0.9749657271438764,0.9959098345147607,0.9934958027594141,0.9853662904621502,0.9999999999949645,0.9999999999746698,0.9665824011526569,0.9999999999043652,0.9987370070065916,8.81637650303397e-14,4.636769591490503e-12,2.2797014922732357e-12,3.821539581146479e-05,0.9999241129556662,0.0001227526246315056,1.7185122188326398e-09,7.954347109242586e-06,0.9965347119031185,4.949026701301582e-10,0.9999999804270129,9.888729933228251e-13,0.6075801056964912,0.9999293580327862,0.9972270951309664,0.9999999999985498,0.0011548554248624028,6.669341402733663e-05,2.233174706506385e-05,1.071240954292899e-05,0.9999997697547299,7.543945026294118e-06,0.00017826964423606746,8.287304185735928e-06,2.1305116839952073e-06,0.0065314507591554185,0.8018779693400089,0.9999999999994977,1.717532446513209e-06,0.9987464033558495,0.9758242411412966,2.0498179540811317e-12,1.8038701473111858e-13,0.7480646867333427,9.001848450706662e-14,0.999999999997697,0.9999999999999893,9.96836295895231e-11,3.550890816716171e-11,4.1732281061843415e-11,0.10078817424823182,3.2013219355043574e-10,3.0868181257861616e-11,2.569058671529471e-12,1.2124373052017752e-10,1.5936528202970014e-10,0.00013213955370896104,0.9999999999518341,1.3040639634701608e-10,0.005615208029360861,1.662251315452637e-10,0.12121524960730407,3.7433577313758157e-07,4.383932976578611e-06,5.432555338516834e-08,0.0006220323921191757,0.9989752383457106,0.9691437105692734,0.06250293280361177,6.0906627017013e-13,4.052725292181704e-13,4.148028520118427e-13,3.932761644873559e-06,0.9999996669884638,0.9999999999999549,0.9999999996280378,0.9834047123152769,0.9999999996414775,4.900142181962106e-08,2.733615876103236e-09,4.345454189290935e-06,2.6327241637970076e-12,8.699141623313258e-14,7.0133935279113255e-12,0.9999999999189024,1.9822879573764405e-08,0.9999999539431567,3.307829174197368e-11,0.999989474823459,2.858233818413404e-11,3.860017524256454e-11,0.9998241384708195,0.9942726236072854,4.582161207661298e-13,0.9999948140740759,4.1527518172179604e-13,0.9999996109586587,0.9990912357442159,0.9996679694246097,0.999888274704387,0.9990119169050349,3.511484134366926e-11,2.606340969625265e-11,0.999999999999214,1.2124842318598703e-08,0.9984370958674926,2.7828905191143406e-07,0.9999999992339004,1.3410833488953671e-08,0.25349132670197455,0.9999999999993852,0.9999999999999989,0.9999987062270445,0.9998045210077378,0.9993947542990843,0.9999999971089168,0.9999999999999847,0.9967064825973241,0.9987235095028005,0.9999241573295806,0.9999997373097145,0.9999999999745266,2.5867853367189304e-11,3.441777390357205e-11,2.980785895649073e-11,4.8012137796377994e-05,0.9964862313505324,1.4782587189478646e-09,3.1281050300975507e-06,0.9992989749431078,0.04494782814640864,8.189971039786012e-11,0.9968005454153184,0.9590981139978678,0.9999999999016542,1.8483343598349392e-08,0.9966754909894476,0.999982181932306,2.477637410347652e-10,0.9084987154810573,0.999983690291414,0.9999999999894562,1.0,0.9997429438648398,1.5278591179161128e-06,2.7424643355476543e-12,0.9976168284606861,3.115611081360205e-11,0.9999040835123633,1.036419762671152e-10,6.371694660935354e-11,0.9999999999950389,6.746153938672424e-11,1.78613672027366e-10,3.378316478341587e-10,0.9999999997650977,0.9827866458097294,0.9778608643493548,4.1210343398625217e-13,4.127154828351426e-13,0.999999999992107,5.272750394520428e-13,0.9999999999958509,1.1977878776716535e-10,0.9999999999999998,6.456401388190383e-08,0.9999999999465417,0.8464766194963096,1.5591903806708436e-10,1.2817772898845015e-10,6.049617261868256e-11,0.9999995082083633,1.6137743805424853e-05,8.46606254094647e-08,4.107598228645953e-12,0.9999999999998876,3.9599447771622686e-11,6.075611774753676e-11 -सिलेंडर,shape,0.956797899527085,0.9998481631521662,2.87828951524737e-07,4.751052413943544e-05,1.2603162843760512e-07,0.01488598390134086,3.514011148524651e-05,0.99682685490517,0.9999864130147188,0.9981895968212341,0.0010626840439275239,5.1710531835798225e-06,3.059436221395739e-05,0.9997806841134097,0.9993728581761041,0.9998264712498519,1.0842215544259513e-08,2.3528280801702646e-08,9.532766063404654e-08,0.0002228231396253164,0.0003261842748047942,0.00012619877336199597,0.26788406638678136,3.883804051777469e-06,0.00039395972631984253,7.280483461573808e-07,5.973759161882501e-06,2.6170052652054922e-05,0.0177945032667485,0.999883213419181,0.8771974532273984,4.2686915505881573e-08,0.8440040446086918,0.0008338113286021083,3.194745383780707e-05,5.518483501578965e-07,4.865310408893612e-05,8.087864209927991e-05,0.0005801930707340353,0.999901790822238,0.9999926594486775,0.9994373951557995,0.021884636325692288,0.058826214159304294,0.0005761372273644734,7.509961569187031e-07,1.0198150288539815e-09,7.362009624658971e-08,0.00044552495990206467,0.0007056308546826579,0.15147964688245208,1.6384546481730617e-05,0.3026525697617259,0.9999768932019315,0.8130167238021939,2.1771741764403402e-05,0.006475869679386568,0.031079906218873538,4.7525633255053236e-05,0.0003214865679638296,0.0002900712935449108,0.3828582284859902,0.0018056826230899888,0.9996188562699551,0.9996081324495081,2.016922747597653e-05,0.0014372783386556616,0.9886644028225468,0.9884764102073854,0.9996050166364214,0.9999998151862963,0.9997079320117197,0.9999353023734778,0.08626386466298328,0.9999820988394476,0.9999712014453886,7.908524097127097e-05,0.00011671100084339243,4.823364278244313e-05,0.9897917818479458,0.0017461185949664002,0.5080006267817748,0.2313249752351868,0.9894310990676182,0.3046394833893795,0.06623326562520748,0.9998260292085868,0.0011452247594285299,0.00025006158728344463,0.02430397454827734,0.9470253030540745,0.9992250042898456,0.6872880414490826,0.22826863176579668,0.9526664156666591,0.00016310738990433788,0.0016790022574449922,0.8669201018406048,0.4548301049393983,0.9751418887738783,0.975822560960014,0.209158498089869,0.03648726069627514,0.4872285770388336,0.29606885450183207,0.9999794062712807,0.9999640312918422,8.622207907734806e-08,9.313471587773374e-06,0.996242708908481,0.0003705762212702653,0.9720459174977355,0.9994878715623117,0.00023297194549890633,0.00029796533986205893,0.3384064664577748,2.7194639261284777e-06,0.8811443901506045,0.00030979797383536803,0.0006405130591566004,1.1092524508977319e-05,0.010562310494828656,0.00017987709186805255,0.9999737665068366,0.0006193894161412732,2.967886193984419e-05,0.0010159396189755481,5.686473436155837e-06,0.0002887887951230096,0.03127503296783816,6.984118136320445e-08,0.0001000284868574759,0.010166243007129597,0.011856845220828832,4.583594056439441e-06,0.09686148339046652,0.0001352388905968162,0.00018559691106347412,0.000222414188987737,0.9996526417019752,2.7439688291658535e-07,0.25674735425441775,0.9999973637245827,0.9996649556457514,0.00680918049933373,0.6169577012680159,0.0004765943734633994,0.00017061734396417056,3.8560065802677655e-06,2.550014459291823e-05,0.9967170041285585,0.8974410961518795,0.9980223675646112,0.0012096843027098712,0.9835207967562081,0.0008525290285875899,5.17105318357986e-06,0.00022856712118392858,1.3084656036478153e-05,0.14213392285777154,0.0002810952738712792,0.00015898907215076486,1.5610920199265196e-09,0.01540819815240554,0.001005954189769824,2.121013253314777e-05,1.3028372743078595e-05,0.0012089521464910835,0.0007122949444514732,2.277226174973011e-06,0.9925599642493315,0.0988477957362828,0.9971185508857558,0.997158328556696,0.9972047554286914,0.0039141752059858705,0.9997658613707638,0.9998048148931826,0.009048250688157941,5.24687000626572e-05,0.00013158641711861558,5.0788918556346385e-05,1.903024147229853e-07,0.45924625281017945,0.9999577780742789,0.002462204788837305,0.00024783065802238305,0.9987052981405835,0.0014655503067118006,8.412955442454664e-05,0.0003747242773960557,0.013728484402570181,0.00022425107964690785,0.9634402140289039,0.9400987907947832,0.00035354573203428695,0.0002508869484326861,0.8365504282567859,0.06937627927067364,0.99994328898759,0.0005689757846411303,0.8894587380148382,0.014205051973654249,1.7786457134884328e-06,0.02859279682231914,0.9998896085681903,0.5640926820178048,0.9999951997141447,0.9990331578744878,0.0008282679709946747,3.765575228778913e-05,0.0034316620611469606,1.6592830345056405e-05,0.00013021927685296587,0.0005628855106685597,0.014736590845693114,0.0003271989746633363,0.9986171901457159,5.8173953355381735e-06,4.80482487078564e-11,4.257966713061487e-08,0.9999930064805828,0.9999994807130658,0.9998579178455911,3.9045879050308984e-07,0.0002152349677316759,0.9999053613545446,4.166263719884634e-06,0.9999933449712415,1.891375196355454e-05,0.989779754951191,0.1065440903950915,0.9995815851919575,0.9999009141994264,1.1092524508977358e-05,2.9228640209250714e-05,8.24682070157715e-08,0.9995129774081158,0.002643885953191062,0.996763253476917,0.01050447366028465,0.005966199804109537,0.0008588478036832965,7.930457128236824e-05 -सिलेंडर,object,0.86121484001636,0.9999906761350382,4.231603198724344e-09,0.019024943701016078,1.2357454460616709e-09,0.8649397597700458,0.0020591505975743798,0.9985972768971426,0.9999909304898355,0.9977004370946628,0.00044744554849437073,1.5508500865803305e-06,2.3452509113922063e-05,0.9999924523906503,0.999861423697056,0.9998988932478309,6.091316523719586e-07,1.7762937126150102e-07,1.463388106077171e-09,5.687099386583476e-06,0.00010619670960466447,6.969082040509021e-05,0.9973896958223326,8.675947022019177e-07,0.1722899234157037,7.464731930686441e-07,0.005801211343404381,0.05118736217244678,0.8450641947405921,0.9998374393614129,0.9960232524214269,6.8261569768895926e-09,0.9532236000370259,0.0037702370792482443,0.1634085741088927,0.003278902777313964,1.8766267899831736e-06,7.78559289356536e-07,0.0003516564414502025,0.999660643196143,0.999991518696826,0.9996908885008667,0.8042337865438564,0.8513185259708843,0.02233755497306546,2.6907550071759722e-08,1.74557914726828e-10,5.726468414928211e-09,0.0591548012199942,0.0006174878033459617,0.9785280417896167,0.008499373041789767,0.7977641471262736,0.9999913300900373,0.9967229587830563,0.0026442866372235903,0.005398102355831915,0.025999630606921814,1.6762495144903124e-06,0.00011494941673587194,4.20972230162306e-05,0.0004565151116172286,0.5284312503867518,0.9995877998849423,0.9999533538229494,1.1524667579860558e-05,0.00027146320693290175,0.9942614290234485,0.9949481624937159,0.999740174716741,0.9999999806309093,0.9998424573423855,0.9999650546158457,0.5569403046144745,0.9999963766690443,0.9999743433725241,2.746193571616275e-06,4.203205530053965e-06,7.330991405567983e-06,0.932842174022193,0.11963246127448078,0.4216478362608639,0.0010182457364915675,0.05738224201911601,0.9445391894844682,0.00407835091071058,0.9999629571146452,4.76906096758153e-06,0.0018528145046809985,0.23995774603379347,0.9945409434679344,0.9998494400674067,0.055819298863514596,0.3802809665369486,0.10389327525302092,0.0002362713167598491,0.31176642381042946,0.3549524631050617,0.4442249854978327,0.6041649922321779,0.9173448100969516,0.40325407896795196,0.9766842221100067,0.9979998982101133,0.20964345244851418,0.9999661236080264,0.9996379983112796,1.0234517403578906e-07,2.53251339718917e-08,0.9996260048436679,5.996092592679313e-05,0.9782790781420878,0.9998245189310913,4.880976959579192e-05,5.673586203780715e-05,0.00013222996888785922,5.908965318365802e-05,0.04504124751993981,0.00013594755628604103,0.0001468012499521896,3.5735707240776804e-08,0.0005989994736244849,0.0002968981266266443,0.9999455970279965,1.1877228163853135e-05,7.594352472719362e-05,3.57619609385141e-05,3.518639753128794e-05,0.0001703229698353985,0.0010809520844413361,3.726149713828193e-10,0.0006570567194556871,0.7744850009120778,0.4887880744529041,5.911691465410873e-05,6.939322283307472e-05,3.192914731444364e-05,4.9465375938749255e-05,9.252871479616583e-05,0.9999487244988512,0.0011380112065873928,0.9674439124953861,0.999997766056674,0.9997077445295193,0.0032306097148174515,0.00202100548158071,0.0002898889136787108,2.871544519194861e-05,3.322791911807091e-07,9.067220546778031e-06,0.9996891958704126,0.10250774047214906,0.9990444170943289,0.0004253071291208313,0.9956007583552773,0.00027172354263002883,1.6740242618039658e-06,0.11421804365196932,0.02180720300858817,5.913447742115696e-05,0.29096995297020883,6.375666517976307e-05,2.460856610219237e-05,0.2579078776140063,0.3985466586162995,0.08562161777608314,0.042691592885215277,0.00046079945125743356,0.00011186115327324825,0.008335739206305247,0.5992033339095689,0.9048294820726118,0.6905479329177711,0.9999791318823352,0.7899850167122022,0.06761935355526405,0.9999768383313403,0.9999559099829117,0.9614981082306214,0.034099804135123354,0.020722679863076153,0.4849594133919418,0.00024035338305491549,0.9674138023453064,0.9998822624873254,0.28797196926844637,0.02251142154509885,0.9998881991119841,0.000658496890881585,1.8109510359224454e-05,8.941198627340901e-05,0.05703037905451377,0.01309635051975242,0.03873840240277023,0.7568498471002815,0.04907558633758147,0.0006183107463028678,0.000505526060615182,0.9031336776335356,0.9999948174182746,0.06878688346737083,0.18167718704488436,0.8025995266840841,0.00042461427699508797,7.485095782941965e-05,0.9994172947873335,0.9345296797433037,0.9999366095815503,0.9998233861047288,0.01031570700600823,6.382500215662819e-06,1.3329481471225358e-05,0.019219474866744125,2.5065634469142116e-05,0.21871729920525224,0.00019381498179720056,4.5315573669521265e-05,0.999646936567518,6.016086540378523e-08,9.9610020469976e-11,2.938579471619506e-09,0.9999858612803006,0.9999999471724702,0.9997181614685005,3.54141195939653e-07,2.312977820356851e-05,0.9999845243505393,5.6088794955655255e-08,0.9999998261604932,6.133613785896779e-07,0.7973356492584307,0.017721062459686944,0.9998600656704525,0.9999896482596475,3.863513026691403e-08,1.092248605391044e-05,1.0194768476484559e-08,0.9996144515973167,0.026701041785591035,0.6638502435986589,0.0001020870962085645,0.03481581798419531,0.0008178901213023816,3.6714934086350993e-05 -सेब,rgb,0.9999999999989237,2.189127198900703e-19,0.025951874561940782,4.4293925461312345e-05,0.061814231507924686,2.2031974585877374e-09,0.9999999999999964,4.385682297820127e-05,2.2091795228219997e-05,0.00020354476819889697,0.0009560703148947346,0.0025817472813570953,0.002520857022581954,1.9037311838190761e-19,3.0344588868162154e-06,1.0,0.9656481268389294,0.9230816406718875,0.9611917397712811,6.94956136775124e-05,0.9918267470289657,0.9999997356263794,5.525093191428779e-09,0.9999999968477804,5.859636037037577e-13,0.9999400313152381,0.9999999999996942,1.2084027915038884e-12,1.0,6.977792148919256e-17,2.200369263059265e-09,0.008262565299667715,4.697130291758536e-09,0.3294971172751353,3.3672325493543837e-10,1.0,0.00013102271394392593,0.9999743755265594,4.667080597015426e-10,1.3073476842177343e-08,1.1277321321949995e-05,3.489797794818178e-15,2.1477850088440473e-09,4.638186035812391e-17,0.9999999999999998,0.0005559225702661823,0.004232647054356926,0.026988135440318837,0.9999999999999998,0.00030459870467538765,2.5835324158499477e-09,1.3994565157564414e-05,7.60579387813565e-05,1.5333070072199895e-08,1.0,5.916730638698807e-09,7.670666814942219e-11,1.747282244764171e-10,0.00228230482159092,0.002165114318482345,0.001146927011042013,0.9964295355064375,1.0,1.6313794074556437e-14,2.629355575047829e-16,0.9999999950178549,0.9999956048048371,0.00019072800847243056,5.6503262856805764e-05,2.0749109917482577e-05,9.227164542016565e-09,3.869578092227418e-05,1.255726651136545e-05,0.0004520375918563202,7.869590647674763e-19,5.177830969987325e-15,0.9999840808706321,0.9999999938264972,0.9999998572970513,3.3504833077150216e-10,0.9999999999994889,1.483379470007638e-10,0.9823441505208651,1.2076922108516107e-09,3.548513106237432e-05,0.9931335441720326,1.0,0.9999852384557493,0.9999999999689264,0.9999999999993605,6.654417857124876e-05,1.0,2.8378491360050435e-11,2.1049054106798074e-10,5.127918399327148e-10,9.390579928991175e-10,1.0,1.2628901849880527e-09,1.107710866780771e-10,1.1744208193607049e-09,3.770243722809348e-09,0.9999999999999938,1.6631494092556376e-08,1.956882812522946e-05,4.606321658664061e-09,1.8740726567245205e-09,0.9999999999999998,0.999999994728529,0.9992981555831236,2.562505914560916e-08,0.9998513853899472,2.2173554430700876e-05,1.6672210615572656e-05,0.0005912507871962644,0.0010595533662913147,0.0006913663258500566,0.008117154102694226,3.748272367171084e-05,0.003284288217325971,0.4231580519548153,0.011159620744473013,0.00010246288349076511,9.334227438765618e-05,2.8651802013194572e-05,0.000301480672085427,9.920673811562947e-10,0.00010037775099967565,0.0034576748525389916,0.0006728800481194271,0.31065297643065176,1.9679234479850903e-06,0.3914442670548444,2.0534738249462253e-09,0.0003749392576607206,0.012409220106861235,0.9517012102479557,0.9646785386539386,0.9469958688175462,0.0003062830725280537,9.067387430664437e-17,5.527814197218346e-10,1.0,1.1327391917967417e-08,2.0387770574498595e-05,3.38446314908409e-05,8.718999730326704e-05,5.3456755613681655e-08,0.9999999256211691,0.9999947363870544,0.9999999972528417,3.022088460791523e-05,0.03383687469511683,1.0,0.0009023389304721846,1.0,0.001938553371587154,0.0017478920243277774,4.475919578602825e-14,9.25391304455628e-14,0.9798043874265825,1.2074771791607279e-14,0.9792156750510151,1.0,2.036969059497641e-13,2.566840008109451e-13,4.0120663141924183e-13,7.319807142405072e-13,0.0016173884783541087,0.0020402200742372385,2.0465997744555034e-05,0.02394824281679343,2.5841668671022727e-09,0.027363712159394732,1.0,0.011231356684485527,0.9999999999999967,1.0,1.9716578884224524e-06,1.2496710263093017e-14,5.928533293117214e-14,1.4249030604884416e-13,1.0,2.719405187650204e-10,5.926158656728097e-09,1.8719831849863495e-09,0.9999999999999998,3.700402816979141e-05,3.6374167026689577e-19,0.002077218286153559,0.0020320665576962034,0.0010493169671649378,0.9491483089801678,0.9999999999992555,0.00011836761545926812,0.07943813346211348,0.9999999999999998,0.005975124693487814,0.00041615623653939895,3.701977040763933e-09,2.360975210826049e-08,2.3158474198256607e-05,0.05562800933410207,2.357889857832795e-12,0.9999999999994231,5.226681524682184e-05,1.9893997816634584e-08,1.0,2.5178489328847978e-05,4.9535002479960504e-06,0.9999999999996285,0.7884681917906079,0.9999750763726811,6.224068807420196e-13,0.002016102114635559,8.125452655713548e-13,0.00022226239783823545,0.001051590304437693,1.0,0.004610693405714423,0.012741127630680504,0.004526959455948808,1.9658100627652685e-05,1.1424511170390247e-08,3.644002679121875e-14,0.9006717527075551,0.8858047868817766,2.2035893114877725e-19,0.8781926879471518,1.0,0.011202801190854074,3.8194590623345106e-10,0.9987401875800003,1.7329981414608357e-05,1.850357462202609e-08,0.006850049575428575,0.00031385355576076673,0.0016822034968937138,1.3073637943294367e-16,0.08458716927064251,0.04454956414600339,0.9999955649246902,4.3797006039662126e-10,0.000662862151473243,0.0003531598059711231 -सेब,shape,0.004578458796318776,2.269236797089151e-08,0.9999512292626689,0.0019289968604075663,0.9997964474827954,4.2626301578578884e-05,0.11819167581014271,3.852596944459317e-08,9.002893575320451e-07,1.9741596415757584e-05,3.644150060708223e-13,8.828332466842182e-16,8.709034615864554e-14,1.2212733621905812e-07,1.8333222043223727e-11,2.7363060815233693e-06,5.328674130059116e-10,0.0003030129916089247,1.1957099751538926e-09,1.5433310585169631e-13,1.2903072376052517e-12,0.9997407912623261,1.6106870292774868e-11,0.9999991888260008,0.4685478370968459,0.9999048163585061,0.9188668632128368,0.01544161749543091,0.9977337310635636,0.00021647242613197335,1.9188143042511897e-05,0.9996386103391899,4.919111698673396e-06,0.014720001638065016,2.177184071937293e-05,0.03727551448757829,0.9551316873463175,0.8473959639057834,9.21200585296401e-09,1.228692236319779e-14,0.00014322051735837083,0.00016093247007711254,1.5742876071175076e-06,1.3498209854211058e-06,3.75335405760309e-05,0.9997344825575275,0.9999981217149926,0.26071380962773877,0.08694155389944572,0.017466655302746107,7.615164019542129e-06,0.0007364675371428191,0.036285796068582364,0.00021311064245695076,0.0011243852950441216,9.903331299597107e-05,1.3640779356164397e-14,7.949231277742696e-10,2.730651992772411e-14,1.7395820331852846e-07,7.845494055129873e-06,4.651020885855128e-12,2.997038002644024e-09,9.825987597567055e-07,0.0003189090464928067,0.9999977291839496,0.9999928471103647,0.0018912683545703598,0.0007042179315938199,1.2293990705520772e-07,2.802786460998088e-07,4.23932997108538e-06,9.904317218995541e-08,0.02270624713642504,1.6042301828183022e-08,1.1657237633053654e-07,0.9993211757946335,0.9996733163507054,0.9994077739796118,4.070749158503083e-06,0.7609535599732805,2.429203765364805e-12,0.00010213350062152749,8.751922655133204e-12,0.0015930379933076348,0.00017690889516390687,0.00044359583812073137,0.9985970018083381,0.028999690767738586,0.09882174513016102,0.00041383673925089075,0.013246420728473247,4.8097541579624385e-14,7.109720642253826e-10,1.5405493532353022e-13,2.777928028129774e-13,0.00015489822934380135,2.9424433670903544e-11,3.958918011889431e-08,4.2511096181934196e-10,1.2152672611165881e-06,8.106949540693213e-08,9.400051626013545e-08,1.522282941638868e-07,2.1179331434977538e-08,1.488347148350918e-05,1.0534809165770573e-07,0.999999462837973,0.999272803608167,1.4894982101146859e-09,0.999327154092849,6.225957822691958e-10,8.898553424407343e-06,0.02682957809070824,0.999812185802944,0.6568667461640387,0.12467584838432938,0.21155456953486096,0.999182823517065,0.003659895676128389,0.9985697011519111,0.6536247478070195,0.30417473779108534,0.00012960724329502424,0.0787320644468014,0.8694909026666444,0.9931122521125109,0.14169274783231145,0.05438622238846367,0.10032779354840303,0.9999996235932394,0.794452142381328,5.966259322432243e-07,0.015081392504580238,0.1804557158521065,4.181074920132207e-11,2.8783926596567694e-06,2.5633802524479735e-05,0.02048014047528427,0.00012256836124151306,0.9999701467466644,7.99208939929308e-06,2.795087324896289e-12,3.0245788790631204e-08,0.0011355373625901992,0.6259451589389845,8.361749350356644e-18,0.99967742698628,0.9986581887833423,0.9999999417083195,3.382486098298766e-09,2.0632838333451644e-11,0.0007132159190569732,1.1974944620741574e-07,0.000629567665723072,3.268857751208788e-09,8.82833246684212e-16,0.5136533074341715,0.00017868237442666523,8.906716941932191e-13,0.0007778023192556263,1.2358475986111514e-11,0.9994929809897376,1.390820276805171e-05,6.154269680494607e-05,0.0006535546147570762,0.0015790654737524081,3.402040816826294e-07,0.0443222257113252,0.0015075349692657604,1.4903236335062162e-14,0.0006400473286540267,1.8324009827209541e-07,0.0003707873904662679,5.538207469477592e-05,5.606177400374855e-05,0.0009219971990717451,8.929516945108734e-06,1.5292269201306617e-05,0.0014545935925640062,0.0006521294061126018,3.9312119975464275e-07,0.9999998992643339,3.887767964103153e-07,2.5378642535921072e-05,0.19609001392572115,0.0013711515827319928,2.1145339832589547e-05,9.278210153209098e-08,1.2816195659095963e-15,8.646132613219305e-07,0.04324264561975397,0.008532245182844084,4.311029172141296e-12,1.2714198156382232e-07,5.924519492956116e-06,0.011924918198542057,0.017175101898242087,3.0164272886893014e-06,9.766378936080243e-14,4.815708525514902e-05,7.467559754125534e-05,0.00012427096783394024,0.9687219693791789,0.9823950751416602,1.377524216450887e-09,5.757902282365596e-08,1.894386065256145e-08,2.908974912636894e-14,0.8721012859701159,0.005700456974836119,0.7903001132226778,0.0017405963203905792,1.6947942815846472e-07,0.00022205622832243622,0.9823571801135474,0.9919611545033962,4.358579166066341e-06,0.6479483851580616,0.9999976190582595,0.9999929679487184,4.2880076709148314e-05,6.134620555782173e-08,2.710974072199341e-08,4.935349854383968e-08,2.0522602247241714e-13,0.0014698856171518194,2.330184497898494e-10,1.4223111302869128e-06,0.055772038922575644,2.5659354270146833e-11,0.0002948572065553084,3.713931780843915e-09,6.899753880965124e-05,0.9985697011519111,0.001215790489295345,0.9966251981423497,4.758831997406819e-05,0.47235407849047895,0.0001206216592498187,0.7999039749975614,3.581479821259958e-08,0.9998233893063665,0.9965325610763631 -सेब,object,0.9999989514920222,2.5000114147390285e-14,0.9983206320892464,0.0001822814465597927,0.9962523482899353,6.139380076655484e-05,0.9999999996845468,5.085650249878418e-05,4.4970575350989126e-05,0.0014747126036212521,8.2914847832932e-06,9.648625139447457e-06,1.3157786872325271e-05,4.335991008272288e-14,7.73768525757279e-09,0.999999993366558,0.5795904772274297,0.8479029273297258,0.09855237587289636,3.308792636885015e-05,0.19802085391839297,0.9999953361498636,4.6083957889940165e-07,0.9999999561607585,3.116911806479181e-06,0.9999225611598425,0.9999999911048721,3.796509675319153e-06,0.9999999999870859,1.6402294853417792e-11,1.7569353117482265e-06,0.9970882927677515,3.2053198186577216e-05,0.6201387079564135,4.7103705940374496e-07,0.9999999999995737,0.15813161327202319,0.9989828929667973,6.378670632962151e-07,6.988503492550537e-08,8.004737834254257e-06,1.1869794778062725e-09,6.961315922390129e-05,2.088838424665616e-10,0.9999999998508764,0.8957863246759447,0.9988458007799077,0.7920587023512247,0.9999999997513715,0.02399419436187212,3.104788904701674e-05,5.992063099559911e-05,0.0028583614901868735,1.308070310851628e-05,0.9999999978451775,0.007644119156012634,1.5298333185452263e-09,7.21124274869339e-09,2.0689992503406526e-05,0.00019028022964057847,0.0003315163770311434,0.21730810911472567,0.9999999952375609,9.067845353040339e-11,2.3402394279063306e-11,0.9999999083812345,0.9999888606957806,0.0021043847816632874,0.00034072973189266367,6.723441194003371e-05,1.4410675022798194e-06,5.389016051879951e-07,2.3651474425613161e-07,0.01170328162208626,5.057629818688267e-14,2.209007979061714e-11,0.999921881658127,0.9999999015916242,0.9999990482018613,1.2239858094788196e-07,0.9999999736301108,8.15174611345296e-09,0.8371333606030683,2.0461831711631224e-08,0.0010838831385145391,0.8596920190104561,0.9999999914155905,0.9994844155243745,0.9999989933478773,0.9999999052622194,0.000515622306765169,0.999999995608446,2.0843949407497637e-09,2.2259593282888985e-08,1.1962654913091493e-08,4.245250064913242e-09,0.9999999999209299,2.8473575950789558e-08,3.2798389608578247e-07,3.966886259801493e-08,1.481124749019867e-07,0.9999999843220584,7.164892006400522e-06,4.552308128277877e-06,2.705014504512536e-06,1.487174231880005e-06,0.9999999743931998,0.9999999755735384,0.9998995450050926,1.991056731047454e-05,0.9997477822350012,2.623807910793914e-07,5.407610891744821e-07,0.04436098450990831,0.1838830900560668,0.6693979946822461,0.5347025737300845,0.006962131672344465,0.02814824600365699,0.7261179743107276,0.9746861627956187,0.008116828362876131,0.022182112307784954,1.8786949787243807e-05,0.01224306477148253,8.277834606759923e-06,0.061179441262242916,0.4354174902915716,0.05641238268037621,0.696926154012982,0.1528692432915354,0.828088588435297,1.0721187878815507e-05,0.00658565746282617,0.7584288984541673,0.04777942242564463,0.8404473260916522,0.7661055131759541,0.02079691035343294,5.163544366856387e-12,6.702266519412391e-05,0.9999999986816186,1.1757061056835296e-07,9.019456945472914e-07,0.0006600629555607182,0.012528220286167933,2.614935703861633e-08,0.9999985837820782,0.9999575014735053,0.9999999542891239,4.207426086813227e-07,0.0006484585262701146,0.9999999980101943,0.0001058369276788347,0.9999999983463876,0.00011666788502100783,7.989276631633242e-06,1.3540784924193145e-06,2.656865568108611e-07,0.205199384368472,1.555365098206284e-07,0.14701264996473984,0.9999999999999452,3.383919985879259e-07,5.231895231992939e-07,1.5823823074678783e-06,1.7638614114585346e-06,0.00019194438521262004,0.0063939205920000965,0.00023658387105519977,0.00014029264054667688,0.00016211158845797212,0.005184469654381855,0.9999999949807785,0.00868047442648639,0.9999999920111592,0.9999999940585917,5.230188051899403e-08,4.529301360455129e-08,4.3676069918785597e-07,1.4142958175713984e-06,0.9999999999504465,0.000122882193174908,3.768149408302186e-06,3.2309329218092876e-06,0.9999999997466555,0.00023404201457620638,1.7581724224990958e-13,0.0003649740854152925,8.58091565218926e-06,0.0005750567827838797,0.8455099641113673,0.9999994058659094,7.788441752661673e-05,0.007652547873501278,0.9999999970445952,0.415682942371332,0.025790169294049464,3.776490294405383e-05,9.69969861362495e-08,1.7806758638313186e-05,0.0166432215158876,5.385011325316613e-07,0.9999999781705977,0.02955645405236996,2.4942632877264984e-06,0.9999999932225805,5.984975933566007e-07,3.155561089558196e-09,0.9999999023157613,0.8964051727693534,0.9977209838280056,1.3260062393396485e-06,0.00016854362427804804,8.807767319433119e-07,0.06312984857131242,0.09710541591422796,0.9999999999635178,0.9567533582960132,0.9993791500182273,0.9944174957714343,7.437208535033869e-07,1.3145320696077773e-06,7.539942314964679e-11,0.204422918940913,0.0852141555427408,5.829811095767008e-13,0.082479527784647,0.9999999744872805,0.8322994919375696,1.2376406045540504e-09,0.9682399524887705,1.5644873365959812e-07,9.904599103186932e-06,0.966831034350762,0.0903051522865556,0.8468840443391296,7.201940835162726e-12,0.32903588882599627,0.03984633684468729,0.9995463592202314,3.3316009055439558e-09,0.7077353453979088,0.07145131225514476 -स्वास्थ्य,rgb,2.1846356820524488e-14,3.9925102733730374e-18,0.027217218802917224,1.5396532292399148e-42,8.057304721963913e-05,0.00039652130657890885,1.3000101222336536e-14,0.00012627362534466696,0.0006102092812862241,0.0020536536697062964,0.9806210225715538,0.5204230757749594,0.7401624846889296,9.090595250768713e-19,1.4572326873289273e-47,5.992183344062833e-26,0.9992647211205921,0.999167917815077,0.9994181110773054,0.999737065935822,0.9998105017181502,0.9326067634522345,0.0006032745551691432,0.1248439579294046,7.251007321032494e-05,0.5944996002501127,1.425727097728148e-17,0.00019210868476374923,2.2003541547334386e-24,2.016122091237324e-15,0.0004150229445178937,0.0017044822698851104,0.001095348109701879,0.07692172386208423,1.0270958406740648e-39,2.0989762885840023e-25,0.9998047379194414,0.9975972533705848,0.017377631566405555,0.019156116179698604,1.1428627886544912e-39,9.703776175420469e-12,0.0006682684974186461,2.879818675726532e-17,3.7760540884866683e-19,0.03342597493150904,0.0016401981896191956,0.028790510029587973,6.07597169905536e-19,0.9882327352631141,0.00043945867889496395,5.191762562300898e-40,0.000667901545699249,0.004825435031877422,8.282630902655618e-22,0.007919579021472396,0.01332358612544008,0.018655976683447623,0.5949307308073771,0.8655468172831693,0.9818747152908063,0.9997779540088818,9.562182151468883e-28,8.048193289181562e-11,1.1631308624652198e-14,0.21820705032325188,0.796477843857514,0.0007078268620337375,0.00019147928224721457,0.0003892990539683572,0.002726556770124014,3.0117903619243563e-40,1.115913066308249e-38,0.0007046670677710052,2.3449249928069483e-15,4.406354179742544e-11,0.6137652750026279,0.26340920893809044,0.8886387271909202,0.025369870654982876,1.2758623158126831e-16,0.029445890955462607,0.998992061707267,0.05005737122164516,0.00018819976490382293,0.9992144644611615,7.193301892924525e-25,0.9964487282400076,3.413261430663475e-11,1.4746866464566784e-16,0.0001272905015184892,1.4191621361200397e-29,0.006975611991921323,0.011918285917678684,0.029180182816639887,0.040089482578749475,1.6672385150429092e-23,0.05112983532849506,0.022024958190971604,0.061699098705344006,0.10964605063368957,5.532341000174454e-13,0.02454474792067878,1.3143621413849712e-41,0.08004337706534953,0.0003735723152979281,4.926854419398288e-18,0.20041105171897716,0.3712778178424884,0.03087543077026997,0.9390436426136207,1.377985214677022e-40,3.1421619389333376e-44,0.3335180941673859,0.925298509971078,0.9659023051166793,0.03639526374616989,0.9820231422939886,0.4869962879471313,0.29641878633266217,0.0015501804807363745,0.9471240619252629,0.9663602937510068,1.5340372496840247e-38,0.47831563235314034,0.493834050506316,0.9323654949167036,0.04071374784160848,0.9989966506674978,0.9728477605878789,0.9986056579570091,0.37369238340406813,0.0003159506537838885,0.0006947291605192724,0.048502434569105815,0.9997527613618474,0.9995632631378263,0.99951177264063,0.9962163365647051,1.242340299111114e-15,5.7231381751989454e-39,2.474363542123396e-26,0.003003711005172291,5.521824608119722e-37,0.9995603630510841,0.9997719378424637,0.9849513476857227,0.8144418184353654,0.6922077563019651,0.12912083488833145,3.424063495389363e-38,0.9996380520998248,1.272991203055009e-24,0.9823881159344654,7.150053190909556e-22,0.8402644822244102,0.6309173322247646,3.858719131085885e-06,2.421608829767257e-05,0.9996746012811476,2.532783215089953e-07,0.9996252230589325,4.150805493525223e-25,2.648768936633661e-05,1.8343425669508292e-05,1.2212854581362719e-05,6.091055129882923e-05,0.7639735913173016,0.8796103031136722,2.6017062457856503e-41,0.999738910848501,0.00044636046211006617,0.9983403963640589,7.811851869836243e-27,0.999757265860899,1.0538883856607762e-14,6.90188594198205e-30,5.829720163860907e-45,1.1974607893952866e-07,5.0975291716856545e-06,1.6850776237806356e-05,1.8201153886604965e-26,2.0710928434773734e-39,0.0008089876473560451,0.0003791864736768571,1.7070858108756426e-20,1.7982223854803974e-32,4.295102094932551e-17,0.8777632787028681,0.6571536614748833,0.9840321323140565,0.521562699732507,7.576268938132469e-15,0.9997858855808726,0.9879773140608347,3.822817715652993e-19,0.08210370715287037,0.752659121968476,0.0008003884881497345,0.006160065467202962,5.932510370998576e-38,0.9996100220690571,0.0002201997261667716,3.4277924503310387e-17,0.9766872259327826,0.012273904055426768,1.1176964350235473e-21,1.4513327373328291e-39,6.147971644361616e-47,3.084425092051746e-16,0.9713939597998112,0.9975257497706583,8.979428513339392e-05,0.754555905665858,1.496584977071004e-05,0.8893071198708403,0.4266297651586131,3.9527350661899706e-29,0.03203152261025809,0.0004597191874659431,0.0003650036069994972,2.851718199202978e-37,0.0030946799253296258,2.5744495318460004e-10,0.999190585336624,0.9990278742692171,4.0953584978308274e-18,0.9995466147217602,3.408217762380488e-29,0.0015933092129040663,1.0180721770203726e-42,0.9629232591189844,2.8340930974249407e-38,0.019388322278380807,0.001581676157500569,0.46968939806282217,0.2405081696167642,1.008095594551898e-15,0.9594275915587177,0.9991056372492783,0.9918303330068035,3.2902747371038017e-38,0.9946830439528132,0.9888722960296672 -स्वास्थ्य,shape,0.00015454402477580654,1.4867124777479476e-05,1.1758503059923928e-05,0.09401407265676781,0.00759680856418685,1.0396737632291086e-06,0.00018296159486653113,0.012640681704187093,9.752566039726023e-05,0.0014368620454718248,0.969049978873368,0.9999509691556601,0.999627279938504,0.00015581213821296456,0.13975791144178207,0.0004972849388590114,0.9997098089437764,0.964643195906818,0.9999610850666574,0.9999031733274522,0.999950548692324,2.4399752633352002e-06,0.41933495467875254,2.083939365385073e-05,2.5261985394621483e-06,3.2310541690062367e-06,0.9991711638331298,1.4153526186843773e-05,8.218404335005583e-05,0.20528080970014656,0.003656038001049212,2.5183108626768922e-05,0.0022373089822294457,0.12471398085421885,0.02045788184209087,0.00047500224593725556,0.9993301929568253,0.998317925867193,0.8773779767763924,0.0006629571608923981,8.055514610344666e-05,0.0001859016138944449,4.979726377380699e-06,2.7937279722217133e-06,1.2213488993246267e-05,0.00014270947480418548,5.297734088960636e-05,0.1515695936486298,0.013007109580446428,0.009668783747810755,0.00010103796006520042,0.21819733495192162,0.21246462683288214,0.00038516777842760624,0.00011953441253713454,0.00451855806635066,0.9995078339335898,0.8236353923118047,0.999757561031421,0.03833959668847083,0.08310913306994883,0.9996372428059492,0.9973434672536226,0.0002715123324731895,0.09953714242278527,2.28601668072803e-06,2.08732027295786e-06,0.004507355758204413,0.11405756858153106,0.0018553907294994617,2.566561513667499e-05,0.0003397209704447354,0.0063979185805633455,0.8797344784933987,9.963416677971218e-06,0.00017489436445495087,2.5624664154066288e-05,9.837480133972116e-05,1.0724348651065713e-05,0.9368289303506748,0.6507969957678069,0.02505767801921018,0.1866292774318185,0.7607622238800411,0.8013438780369591,0.07268412308571146,0.8652118468917378,0.9997065508078591,0.9990773694908215,0.029984499244759974,0.18703831733775775,0.0002461651197244266,0.9872798934767131,0.12592637365400425,0.9943997780067201,0.9999511692955823,9.21785800306001e-06,0.6901202082313278,0.00012487784125746144,0.8500911164271524,0.8474647048046151,0.01889364391018435,0.1935870980323307,0.020084796801648295,0.0001600516244675309,0.1642288993128454,4.530252955547925e-05,1.6256011676318578e-05,0.0009520209999510545,0.014059649645051957,1.9168581466235037e-06,0.23872260817135443,5.5871096152360583e-05,0.10144983860684746,0.00988358799934021,1.4431251722451587e-06,0.010315346184495951,0.0007636376688806256,0.00025141244668062213,5.7699255380493666e-05,0.43793158563952067,0.007454987368674623,0.07333525741813522,7.52193833329443e-05,0.1479846800604345,0.4035662100206564,0.011310517727679515,0.4410268043142143,0.011257498559242546,0.002261495033672661,0.966714728965976,0.1574445608170153,3.9101656580425056e-05,0.47732880139984496,0.0009134994537564357,0.9999956465655958,0.9824819686574289,0.99997960729946,0.4141087294678619,0.170555291126649,5.2072532361483976e-05,0.9262254202269645,0.0002686814421003087,5.948911942137507e-05,0.9283466597799889,0.9993123821813155,0.9998839830159398,8.762962117439682e-06,1.568285388584314e-05,1.889196221606294e-06,5.9117380708546655e-05,0.04575908610949713,0.6681520283709614,0.007293723765847207,0.00014200150544458313,0.3701104691644878,0.9999509691556601,2.4190537315587315e-05,0.00016998718022163872,0.9999895727219705,1.131528100888278e-05,0.9996987657242704,0.3628639148027737,5.965025195739463e-06,2.2851765496735006e-06,5.486722042501534e-06,0.00010823580696064343,0.9738650814128936,0.9510149514324541,0.0002189039975776074,0.375846570931428,2.053931655306017e-06,0.01689040175331623,0.7410324222461712,0.7931221534598986,3.0943330435821316e-05,2.369141019092924e-05,2.5964216554110053e-05,3.5668781564604667e-06,4.1475571283550134e-05,5.820004049798647e-06,0.02912826305676815,0.00022364449919591068,0.3940634814622707,0.011309969200184126,0.0009749328358822229,2.369834701009277e-05,0.00045196775247512215,0.07975965695873885,0.9998248456841695,0.8763660013124374,0.8658580245888066,0.9945327285157191,0.9996718020549336,0.6388282051567313,0.000559318472425461,0.0008612110730057292,0.00033935214263700855,0.00020707042727736115,0.0015052920067878653,0.00033196921469666175,0.3761755031485728,1.1644642473208119e-05,0.999801484664322,0.0030632385893068046,5.747434345425834e-05,0.00027534650738229724,0.0001981734063462466,0.04867519516397154,0.9983515060101037,0.07931060535840388,0.9835568853782056,7.658146424163182e-05,0.3811542945868175,0.0018075623098884777,0.010673230337413289,0.00826519703760929,6.934961110593013e-05,0.000186593766133478,0.00012069205821939372,0.0004568869047077277,2.012426296496526e-05,9.347960183450455e-05,4.372863945492362e-05,0.9999969668031227,0.9998509559313996,1.0431984056740554e-05,0.9999792730067546,7.489281493562574e-06,0.00044512099592976863,0.8500034715159327,0.8432896946372622,0.007929502927491686,0.0005178689485951542,0.43793158563952334,0.00011425596934765471,0.0014727057910943115,0.8576303420891002,0.0033017655409518644,0.5361236888444866,0.9716195774422505,0.9965251661304804,1.0766072993702304e-06,0.15114627980694623 -स्वास्थ्य,object,0.0006365105665650278,3.0462395824298006e-06,0.0012578405735435018,0.9962695875794372,0.011419049149628126,2.095044564535423e-08,0.0037160615470822923,2.097559067200529e-05,4.700515113471608e-06,2.7063349503503092e-05,0.9975045193464489,0.9999865164477951,0.9998311872493378,1.9865598189499806e-05,0.9984137132244459,0.0004013358384746007,0.9998113945507708,0.996019878152241,0.9999881771956223,0.9985992788378364,0.9999476157884161,0.013659563187398477,0.0028861633944513247,0.03109481429076137,2.1006016431128093e-07,0.2106259720604208,0.9406472873925662,3.635495361222578e-07,1.9810643825867096e-05,0.08126994365082871,0.00023528124470903307,8.064487966539768e-05,2.1826833209868346e-05,0.01405224720365143,0.6273436336550096,0.00044250616439566327,0.9995360735301971,0.9999041437028507,0.15456876584830084,0.0002480077179691345,0.8195157153476941,0.00025723265291432014,5.2704031997176346e-08,7.438843544903793e-06,0.00019519583922093542,0.0001840822798913665,6.782146358395936e-05,0.22146113731691686,0.05177779760796498,0.009778475321496246,2.53622462683091e-06,0.999650094157396,0.001638157526758327,4.627104341960539e-05,0.0004286566800828791,7.254834085533377e-05,0.9900625317616923,0.3916334326073694,0.9999742836036589,0.9175364507650845,0.9289079054831303,0.9998220163758226,0.9941557875232929,0.00026572680284761406,0.1270011393253849,0.028528642170347125,0.029596921923909607,0.0001003275578078528,0.00048774934525024744,1.2630876249030496e-05,1.3989137069131264e-05,0.9359950778655922,0.9623340303495634,0.008297641507186935,1.2852005581261716e-06,0.00019269680833688187,0.5255382504077144,0.2865200141321333,0.01164059367179748,0.913722228884209,0.22566771708841674,0.20582287700498775,0.6979992715832731,0.8955079369472468,0.00465967110718828,0.6399987604274502,0.7967770936097983,0.9999796213961748,0.8863169588732559,0.01729108794362753,0.0007127605462223679,0.0001375726110560931,0.9436363418002338,0.351505029384955,0.9883810346776725,0.9982915251640295,3.0229379779975488e-05,0.776900283021041,0.0006182435532741453,0.765048890430536,0.9246383536708773,0.38110151443946944,0.008635265084414945,0.9978253386931506,0.020579901291923327,0.0009631130279567289,0.0014871435291421162,0.02903097354524831,0.8301329497314452,0.0014045781501968602,0.15402903999668383,0.9999503319589256,0.6874665506262166,0.9986989233489407,0.990790077869764,0.0053854937688101534,0.0007125967209805562,0.6390837823143273,0.7283002992315478,0.00010558354666348973,0.1821832695061042,0.9648342748706894,0.03049327657537035,0.8269947933393629,0.9973387443032024,0.0238639974455959,0.9948812604216023,0.015078945613559434,0.04347924448034307,0.006744890152571564,0.9843953375168776,0.0258997079757153,1.9836224744816703e-06,0.0020579930949203677,0.00011296102176115447,0.9999996236639423,0.9985967004031109,0.9999950903612838,0.25813165542121397,0.13563613132876506,0.02012503236740551,0.9434371973137646,8.194757741602638e-05,0.980031797823311,0.5379027672374809,0.9995570933414111,0.9957961716400023,0.02313901948261556,0.2612083915843848,0.021808484158224978,0.9696905255177004,0.0160235873193877,0.3992276781732393,0.7886335383275129,0.004888502551940657,0.9693292346654219,0.9999839200383208,2.1637590834584256e-07,1.772851273488215e-05,0.9999933131068012,3.818535772658808e-07,0.9999321591539292,0.03898068624710422,6.694444244713666e-07,9.111180559588107e-08,2.096869779522076e-07,2.6924490904917554e-06,0.9959416175342652,0.9998926500176327,0.8139559496153677,0.10021735835524695,1.82249997971933e-08,0.007341645977182341,0.6457456560013615,0.6641022601507047,0.009159593348766409,3.0228138928762946e-05,0.8078079629024176,4.2838228365400765e-08,6.678704174588188e-07,1.6838093995921388e-07,0.001910568725426861,0.0509312190768087,0.0022499515292344705,5.244701838767832e-05,0.018056847057013607,0.6080289436131842,0.00010828851125647417,0.960262755236452,0.9999254378882433,0.9979086874837133,0.5669353234042571,0.7796106099150394,0.9997875070556154,0.12065327773431388,0.015452561283129364,0.00010805465616320746,0.9339861161615213,1.0391349055662744e-05,2.6669922332453036e-05,0.9788879710477904,0.2594337898944214,5.198729343753396e-07,0.9815406386852824,0.9814983722642531,3.564137943178109e-05,0.007203910570646001,0.9881265721834631,0.9931647415122407,0.8647004121570738,0.08813797206699249,0.9994903637187971,7.562515248394389e-06,0.9652142503689629,4.07563668761253e-06,0.9610393502183743,0.9949603693342618,2.4579520604928814e-06,0.001417300552555475,0.0001137375615462511,0.00031960432748151974,0.43083721083636817,2.9333973298705224e-05,0.0001789437920989467,0.9999997363566886,0.9999263306518064,5.95910077594449e-06,0.9999977593048267,4.4571477854606596e-05,0.006880421980162703,0.999969385879624,0.8980787650443472,0.9797195015570358,0.00021237526810054098,0.167297400164834,0.00010544747040607711,0.0026509141444901294,0.7324477896430833,0.0021547223464704695,0.5667394581551215,0.99907804562116,0.9999969281831597,0.0004215948361544233,0.9978265469733876 -ह,rgb,6.398107474393232e-33,1.1722954476626444e-17,0.12576348263399129,1.7426307949967028e-45,0.00042204784916596996,5.036477510609087e-10,1.6920659914329782e-32,9.157246935957784e-14,1.8659915983426664e-12,4.330563382692034e-12,0.9937803642118561,0.8768335420330498,0.9395701619816264,3.545128578766422e-18,3.7743501051692406e-51,3.726629867074894e-50,0.9368233262534509,0.9608862687372886,0.9441616428860695,0.9815459756934368,0.7280035788493938,5.3535911554565e-06,4.965369698566018e-10,8.64599803275076e-09,2.9407687172937465e-07,0.004044645160161055,5.867080450898689e-38,7.830179992126667e-07,7.001239414609363e-48,1.0764288150232338e-13,5.471276090246111e-10,0.0160396164003011,1.6527881424478684e-09,7.41819639208644e-11,1.0150753333310464e-40,2.6181884333999494e-49,0.9943608548889681,0.0032044993023452643,2.982380752470297e-06,1.3579125745893675e-07,7.172365557643329e-42,9.005163837318297e-10,1.316401830734495e-09,1.893042163388667e-15,1.4348218459694622e-39,0.36451607318876983,0.019196323057991654,0.12999306908485092,2.2357719339455582e-39,0.000757575254791263,5.292498281454307e-10,2.621056792003322e-42,1.0987423579028436e-12,9.135940580336733e-09,9.096807902030423e-44,5.114177760845141e-08,0.16798661333845247,0.2752341355351072,0.9040735702449794,0.9681974935129993,0.9938063523137316,0.474445178684421,5.928840032988012e-53,9.789850866607578e-09,9.046583705401891e-13,4.033593465265199e-09,0.0008208909854049549,7.450039425234544e-13,1.5960355294716367e-13,9.077211309972482e-13,4.906869754891337e-09,9.90119049140936e-43,1.0398706424504416e-40,4.760673838676777e-13,1.832986040859232e-15,3.7500643925007e-09,0.001517995291334126,1.3658175630839333e-08,2.457364245680094e-06,0.3776028997000326,1.7960172321813053e-36,0.29212406843384625,0.0012147827911905874,0.5929536482748741,1.9967748848247948e-13,0.002149460405196386,1.3641387201341527e-48,0.0023625311821482615,6.93636026124692e-28,2.201481431913608e-36,7.416127848463658e-14,8.087334797366504e-56,0.07246350121225405,0.25025368684456895,0.4393121554531526,0.5401968246313623,1.66835071476307e-46,0.5995740195530667,0.2353094132544774,0.6189223525161844,0.7692055410528533,1.0422432238162046e-29,1.772625450307383e-07,2.943579110574925e-44,0.740849422473376,5.193781490081745e-10,9.67957028739606e-38,2.2156856763392753e-08,0.010932387421459583,1.9073498940767757e-07,0.03593933853016031,4.6657233542679804e-43,2.257736927949339e-47,0.8482074257234283,0.983413741892737,0.9915005185714564,1.0131782376633691e-10,0.9963025587529499,0.8561594711792346,0.3017432145803152,0.013288548362669725,0.9918110095841465,0.00018705429075965716,1.1684077300146978e-40,0.9149813185398852,0.01203838238341184,0.9902725527626597,1.8421568794367647e-10,0.0861530936343237,4.341411924446304e-06,0.9882457133432029,2.108954400208995e-09,3.5605715135071845e-10,5.10775036910584e-13,1.4007133355991318e-10,0.9520379498642138,0.9422964911774396,0.9557400947096127,0.008096107977077632,7.856158037017564e-14,6.941425972703123e-40,5.744997888533398e-51,4.941277072969997e-09,9.096770387397567e-39,0.9392119023989722,0.994525576770055,0.854192066174597,8.620500485105694e-07,0.0007218904927071744,2.7120006332010747e-09,2.9783057191020602e-40,0.09698475453998623,3.677887723649823e-48,0.9942273831643769,7.17626057262996e-44,0.9641414315231709,0.91974668649856,5.183140747369421e-08,2.6466753827077886e-06,0.9122089108138021,9.791175711034421e-10,0.9156721669880366,1.8795926241128082e-48,2.1955551890039934e-07,5.288172231860015e-08,9.522057676719468e-09,1.272123387919223e-07,0.9509484737397322,0.9714555385840201,6.555980829060817e-44,0.22392749264787562,5.441115352167849e-10,0.0037926833484808447,1.5380760540638593e-51,0.34562447056493795,1.1960599213109321e-32,2.568005812257155e-56,5.814480928475933e-48,1.5324511324054384e-10,5.3005785550928817e-08,1.5337637317638126e-07,6.757907596296987e-51,2.436903720647936e-40,7.916406185990364e-10,5.339708001932324e-10,8.276427406401693e-42,1.5466774404785733e-33,9.665029522149385e-17,0.9709573826753931,0.9233902135060288,0.9944038469673159,2.1460835948366385e-09,1.213307381964314e-33,0.9962920756990364,4.073494672206552e-05,9.815737979977427e-40,5.176593011077386e-10,0.9626342067574662,1.146893256243633e-09,1.0056559865775811e-08,6.221929548112e-40,0.0658720907242372,3.277642634352212e-07,2.1916485682426935e-37,0.9955775462576573,4.116371694734446e-08,1.4757060023643657e-43,7.390885428561348e-42,1.8376962135650312e-50,7.701271573964532e-36,1.966308148474729e-06,0.0016341280631081603,4.4365519580311384e-07,0.9461017610478311,4.985339742214332e-09,0.9837867544218278,0.8698744541547598,4.168856652886889e-55,0.2301295531714379,0.004046811684498612,0.004591546225412181,4.2098543862561316e-39,5.179747104351897e-09,3.476258728499601e-08,0.9669620932278159,0.9678740455492427,1.2013699550071392e-17,0.9748167401070083,3.285794485333671e-55,0.013613846015106627,2.6827286214785825e-44,4.0064531850975214e-07,2.840141416845621e-40,1.0322717031708707e-07,0.015914898790616232,0.912055056209417,0.7426960736416777,7.533792801839158e-14,3.619636713933366e-06,0.011477340006023943,0.00012403901792344685,5.76012483366889e-39,0.9973286108698719,0.996357303754547 -ह,shape,2.2972432762408988e-06,6.248793443824205e-07,2.0934570805947963e-07,6.324970867326356e-07,9.586241446078016e-05,6.889529240853029e-09,1.4394940846840486e-07,6.294109211028738e-05,3.027548106316777e-07,7.3224485085814294e-06,0.9945485004807163,0.9999905597262901,0.9999982760267736,1.299652804917649e-05,0.00024432376065150994,0.0003030744598374556,1.6314050343685768e-08,1.554954354772889e-06,0.0024747113503359127,1.4728532595797135e-06,1.8167798470826837e-07,3.0296038654747554e-07,0.08423472659049148,6.971791671693295e-06,3.325789333801653e-08,2.609302673963487e-07,3.4934535872056535e-05,1.6196100640617136e-08,1.0507498621484373e-07,8.147154005200215e-05,0.007321228138153249,5.534322679270329e-06,4.847936863399318e-12,3.511741028285161e-06,1.1776963897234642e-10,1.2035147444021307e-06,6.113162857767103e-07,0.0002386197591435291,5.07607864682056e-12,1.122528045754574e-09,6.747336458134962e-08,4.50480651053477e-08,1.3108189129441003e-10,1.9953197662638844e-11,5.868888482223738e-11,1.6665491535878262e-06,1.8088226715494637e-07,0.003917241519885854,4.01495166959422e-05,1.7719337784569816e-07,2.4127147667230096e-05,0.00014163862991150797,4.472576402480254e-06,3.6294769515175594e-08,2.186272300716055e-07,2.1046753553181886e-08,0.9751385699861549,0.9982666108691188,0.999961916236787,0.9995371546065047,0.9590217536280852,0.002859680349981813,1.1653317798589323e-06,0.00017049720822185355,0.010363261207184692,6.695327315676713e-08,5.945507294637512e-09,4.036863220256582e-07,4.2857156394862167e-07,8.808737733234475e-07,5.92564095448098e-07,7.304323881644242e-05,3.0357270365425304e-05,6.517524828677787e-06,4.06032453364964e-06,4.1083104713552424e-05,2.425189163934966e-08,4.9013124463151766e-09,2.1614922727645506e-08,3.9497597341223744e-05,0.00011251892244328534,0.002049713891109379,1.1801398474227231e-05,0.2742147506618966,3.6129874722162397e-06,5.283829902616883e-06,0.009771076662422967,0.0003131499109105807,0.0017454779203506779,5.47130835130986e-05,3.181338339072058e-07,0.0002650078470147275,0.006971838032492292,0.2863511119703012,0.008531687485712449,0.9999972775676038,3.6416338105152506e-11,0.33027451848891876,1.820396563962052e-05,0.4941867305738276,0.0027925782898339624,2.467008625611497e-10,2.8931722051209277e-09,2.2552787250545924e-09,1.0903142713172168e-07,4.35641353573867e-05,3.89134541026697e-09,4.816434679056586e-07,7.509532596411883e-07,3.0070082778761943e-07,7.910867954637311e-06,7.817871564090952e-14,4.4140156477221846e-05,1.5261356775116292e-10,3.0772128261108085e-09,1.374642689453293e-11,1.8853940466962942e-07,5.857790708227539e-09,7.050822891308802e-07,3.453002825360038e-05,0.040679781479404015,2.1188535637607896e-09,2.4195754573508994e-06,4.969041876847169e-10,2.122389008570094e-08,0.9924658612741248,3.904753271360667e-08,1.436484524630418e-06,1.5851783182543083e-06,9.390304737878966e-08,0.9989230354887905,1.401341650100026e-06,8.281017345064247e-05,1.4732506357864362e-05,1.4801027008480175e-07,1.5887473070154778e-07,1.6554145069369901e-06,7.064168714618756e-05,3.256425773689408e-06,0.0008212273131712658,2.2932140299931964e-06,5.180333161030874e-06,3.8570828184484844e-09,4.259271080513845e-07,0.9999166590673318,1.949024425386462e-06,0.05354672715346509,2.1389395568464805e-08,1.9290028327209273e-09,8.146790757815972e-07,1.0519983006232608e-06,0.0007181112650746071,0.0008330040980522282,0.9116012656255246,4.595005228852166e-07,0.9998735940717693,0.9999905597262901,2.0336749992021183e-08,1.5734406750913165e-08,0.00010998222700536557,5.0532062018265416e-09,4.604671016071245e-05,1.6575169271401402e-10,1.6107233521577464e-09,7.92878253821014e-09,3.48398254644499e-08,6.547501155585151e-06,0.9998225678389098,0.9996020292445199,2.11522602834096e-07,0.00011309212045202164,5.010167821622209e-09,2.5633896196951014e-05,0.0961544925612767,7.200057589379323e-06,6.243402162141505e-05,2.0580889547738624e-05,4.621856558496611e-07,9.970982560279479e-10,8.891961554395613e-09,1.7110120350689246e-09,4.374357959230466e-12,3.971017657410508e-06,0.016020078262443022,1.0135527857725117e-05,1.786611222051866e-05,1.7596109080455066e-05,0.0013366738774163076,0.9995800607150845,0.9999494651603882,0.6148628600408231,3.397276635413713e-06,2.2694223915162958e-05,3.382308168408479e-11,1.668646227933685e-05,9.69955581745279e-05,3.984998654566969e-08,2.3710644101397866e-10,2.779183899624245e-06,7.302258314317583e-09,7.696940409857208e-05,2.8388434234138704e-05,2.2851717049284317e-07,0.00027869626567213695,1.7634758131855804e-06,1.5514856902071821e-13,9.162513219258893e-08,1.4302242902363433e-12,0.0007118724508066871,7.494615366035778e-05,2.2534981943404953e-07,2.6743082273421e-05,7.16026364944904e-07,0.9999439426644632,5.976676453582598e-07,1.9575345627096947e-06,1.770759037058692e-10,0.0002804631044587732,2.1585639284320404e-05,3.6855856658734074e-07,2.4316004543329647e-06,3.269347352210996e-05,3.2993850252430606e-07,1.2030063780028793e-06,0.0004604453469584046,1.3062649270839865e-06,1.8659773032931727e-07,0.0008537520500583574,2.0134825154696633e-08,0.000384388435551492,4.2119064641153623e-13,3.911844238863694e-06,1.750693644908371e-05,1.497998495316233e-06,0.04067978147940429,5.71255125937803e-05,0.00012369045569812345,0.012746152705448738,3.4622504443506174e-05,9.002998056716445e-06,0.00016176877180941658,8.699606239548079e-06,9.861248919528061e-11,1.8611775536905559e-09 -ह,object,5.760824075742508e-06,5.11048908806905e-07,1.1528123528602878e-05,2.961785795000851e-08,0.006985425342145438,3.3014646321582557e-09,2.2000093575087876e-07,2.035625755404246e-05,4.5191975082278057e-07,2.0563388202806833e-06,0.9989426292181723,0.9999949956620451,0.9999976526703128,2.5743593280436604e-06,0.00020249021281974294,0.00018726320339366965,3.240502759437883e-05,0.0015197099355612473,0.9227091585304829,0.003802393842409762,0.002285505162474745,7.237542883355922e-06,0.024266629631181768,8.724644509170805e-05,1.2510296806350786e-08,1.4642914699197683e-05,9.41835541269207e-07,2.372253146124227e-09,2.0233306891102697e-08,1.3014996326777261e-05,0.0012932861002032,0.00012803006958893775,6.923691137086479e-10,7.145311766482763e-07,3.7839909648298487e-10,2.50364812725713e-06,2.089350943101058e-05,0.00024054469012042343,9.707916782027223e-09,1.3943484712208803e-07,7.637781468106977e-08,6.815079145444563e-08,1.870381069883266e-10,3.2763437343206605e-11,4.464544923271298e-10,3.5599603686325764e-05,1.294024241629933e-05,0.039893949681106634,1.1104306815739938e-05,1.5438993973399917e-07,3.971222350855877e-06,8.422780719432538e-06,3.499896395628397e-07,1.147359302752828e-07,9.461689498528533e-07,5.208684793495401e-07,0.9834521129108166,0.99797296257538,0.9999776151853548,0.9997105814955077,0.9904241713480041,0.7065729038479612,6.18016733201597e-05,0.00019442439793411422,0.0015335687502078497,1.3017482953589098e-06,2.652277689650375e-07,1.0245779829415489e-07,8.541792394942894e-08,9.516702976041309e-07,3.7093568726893517e-06,3.699629276526399e-05,4.204635615663153e-05,4.703025161816993e-07,2.288417802855758e-06,5.860097291195918e-05,1.7666937847637756e-06,2.039720010350241e-07,3.8440983656871976e-07,0.00035615997846544066,8.963329439529974e-06,0.04643818404420048,3.184576647544091e-05,0.8407571316532849,3.287000325090567e-07,4.4448626574306266e-05,0.0024703957846281556,0.00028049010866805035,0.0008863550796575363,2.194558150964836e-05,4.2170310301999273e-08,8.438188715520764e-05,0.19905673032678348,0.8068941015824685,0.3527553212015839,0.9999895112739928,9.484067758736688e-11,0.8645572658823296,7.985098979541344e-05,0.8424336957301383,0.04204283765629706,1.8291981481981226e-07,2.457886088546419e-07,4.885957828150316e-08,1.1010977120858712e-05,1.3397699483313411e-05,2.678953376670478e-07,7.0151828074036165e-06,7.95875749826063e-06,4.635181529762701e-06,0.00011204079632769062,1.291540560436062e-10,1.8604582099202116e-05,1.577025220994199e-05,1.901928357055527e-05,1.1431289775075071e-07,4.642447334412068e-08,5.679264649946605e-05,0.0021957179325771334,0.00010236831682683802,0.3385151431601622,3.2209866805114884e-05,8.689082644601408e-07,3.0614821702094467e-09,0.00023023732665897493,0.99748500712801,0.0005668280565441507,2.2813932348553798e-07,1.737727538255563e-06,1.5370611105139337e-07,0.998136520492042,4.042474405354355e-07,1.677698622418737e-05,6.000798624158949e-07,4.408417964201052e-08,0.0075432929433448,0.0023491284307814255,0.07142926114021358,1.3471729468393016e-06,0.00020304399928039758,2.8057639178296404e-07,2.0528915528365502e-05,2.767659089908361e-08,6.746958489285277e-07,0.9999150705747508,4.3461255529798936e-05,0.6099623119060714,3.2430963969189387e-07,1.1204444883095478e-07,1.772233745958976e-05,3.2466114292483596e-06,0.0031778449929657543,0.00025236180511560796,0.9891461186119983,4.2707934307210943e-07,0.9999358966138793,0.9999948312511145,1.5139551007326691e-09,3.2918169347577945e-09,0.31824985738311234,5.875373199178736e-10,0.17061291971430256,5.114569146584586e-09,4.342820284002752e-10,1.2886227274645088e-09,4.130954758226204e-09,4.80985413719512e-07,0.9998621209640599,0.9996101692178441,2.1900498876952815e-08,0.0031855274819585036,2.6386708410781323e-09,0.0001187656397747689,0.012987469519149886,6.870242600340964e-05,0.00011396048194290259,7.927722312622851e-06,5.049699933687249e-07,1.3307976968859584e-10,7.543360587098275e-10,2.935190791337921e-10,6.902305832274206e-11,5.289646254214146e-07,0.004630441028013308,4.244376681050287e-06,3.7868886019899543e-06,2.4450514855131463e-06,0.0007966197295934701,0.9996825739999153,0.9999741278461534,0.5697438018162343,1.8580706057789178e-06,5.79881224552093e-06,3.277047063519876e-07,3.797874968592107e-05,5.779605530978541e-05,1.6273594277800268e-08,6.932433005542949e-06,5.099539993470929e-07,6.28272980798212e-08,1.5233143095231922e-05,4.197810775717972e-05,2.1989569605005272e-08,7.482050826208929e-06,0.015305220673748529,2.923594820211641e-10,5.994479232029635e-07,9.923429491827944e-10,0.00045256161234578587,4.632151264346619e-06,2.47820680629901e-07,7.828637033596794e-05,7.698185274211094e-08,0.9999331921622082,1.5763852626190207e-08,0.005178333650038564,3.624926552722676e-06,7.688799173535723e-05,0.0007723563384998987,1.71456703455059e-05,0.0002096773458706543,6.531983691251926e-05,2.0014308894395615e-06,9.87526433934254e-06,0.8712618142959291,0.0104828023495919,2.08808925539541e-07,0.7870251377411527,8.170277172576289e-08,0.03108571877946441,2.662611701563157e-10,7.5371726118691484e-06,2.0137283745375947e-05,3.6004220286678573e-06,0.3300435598769115,0.00010564202651059135,0.0012245895526364417,0.0015610193421150156,1.7145294905105438e-05,2.1689067698498796e-05,0.00018486042544833337,0.0001211132514594488,1.349525753201948e-07,4.530712814850291e-06 -हर,rgb,5.131545912122582e-13,0.9999999999999585,0.00023196380691436807,2.7674414103015112e-05,3.713149650973618e-05,0.9999998544164764,4.105878748779914e-16,0.9995395551867061,0.9996834177800413,0.9972694478357534,0.03228386850327832,0.004693511668277866,0.005951617107989572,0.9999999999999507,0.00020858970842418449,5.407771897295071e-18,5.877633816706082e-06,1.1462742985277624e-05,7.307589932385456e-06,0.9193389159634168,5.085734783668856e-06,4.423894408865898e-10,0.999999680568458,3.634388291764074e-12,0.9999999994316011,3.2250908608009546e-09,2.7759700447477967e-13,0.999999998882009,2.1712694880092943e-17,0.9999999999620617,0.9999998532437098,0.0004440338576157458,0.9999996828712221,0.1264352047029622,0.8446743373891996,5.526467210988359e-18,0.7994396896050421,3.31144924090068e-08,0.9999998792011168,0.9999987208152311,0.00015450491375578046,0.9999999988233699,0.9999998414553735,0.999999999952683,2.7926710748393135e-17,0.010889964827025854,0.0008530931600690998,0.0002254432230991803,6.942355589881059e-17,0.966773903412906,0.9999998323327098,0.00011931164746704154,0.9990428162565138,0.9999989345689764,1.5234849338318392e-17,0.9999994237321074,0.9999979002165453,0.9999943128363834,0.005667798537599007,0.008379334382818944,0.027449918457158735,2.9070214470057546e-06,6.1679959045264444e-18,0.9999999944763336,0.9999999998460816,1.2235539660184831e-11,5.942531775838467e-10,0.9978059885023166,0.9993879672994049,0.9997199928735914,0.9999993597078943,4.2554848803193225e-05,0.00015889284458900946,0.9952364400911402,0.9999999999999591,0.9999999985705463,1.1618654890568152e-09,1.0653094353406063e-11,2.2656210215331465e-10,0.9999879590894368,3.967184763395944e-13,0.9999962301830048,0.0001245616753497751,0.9999507422024274,0.9995959623757172,3.863514795740974e-05,1.4421956746961534e-17,1.631543129896642e-08,1.0115882007540626e-11,5.072062508214067e-13,0.9993319968999368,1.1833212855377905e-17,0.9999993332843129,0.9999914323575713,0.9999800761150046,0.9999613197804921,2.2009570333005785e-17,0.9999482640328625,0.9999971604518576,0.9999558640885854,0.9998449811013392,4.2745597576677885e-16,0.9999983743801296,6.95414909158373e-05,0.9997790215053144,0.9999998727139103,2.863854111161667e-17,5.950655674767724e-12,1.979939400390563e-08,0.9999976189009028,1.3063756304742707e-08,7.028886620325031e-05,5.835075554618713e-05,0.017306818015419,0.02008785155679079,0.038024778127222915,0.8879045545595564,0.5111743156316461,0.003589293125158429,1.6430961740858982e-05,0.00032508811568430866,0.20281484820707354,0.9908390805927015,7.190884218857564e-05,0.03832065777673816,0.9999989984839327,0.19473041625344795,0.9448576558806275,0.8616095332062575,0.04388710226425341,0.994959990916712,0.07266658969036681,0.9999998680024721,0.9959836119389743,0.8349695711782755,1.4282093167153527e-05,7.815388743563914e-06,1.0478308531401449e-05,0.9525331516667728,0.9999999999415601,0.78420243571713,3.8992771919188777e-17,0.9999992352307812,0.00012464711596128683,0.9699226616428595,0.8504639293777032,0.9998885463568751,1.2178429751175502e-10,5.62005704686355e-10,5.210472643196219e-12,7.1576196976032e-05,0.11187802614047172,1.0138647530434434e-17,0.03514158039404551,1.534305031362806e-17,0.008918206088363368,0.0076465317276787435,0.9999999999200397,0.9999999996598601,5.878134503919921e-06,0.9999999999841207,5.505406231018183e-06,4.233347154455811e-19,0.9999999997284268,0.9999999997636433,0.9999999997634748,0.99999999943656,0.009542273772576075,0.00916664780937726,6.916038619301602e-05,0.12906318540983694,0.9999998317866384,0.21973611370102006,5.884785043769244e-18,0.2203692027470194,4.026671313941899e-16,1.5140014028077098e-17,0.00043749753610489926,0.9999999999885509,0.9999999999055031,0.9999999997982558,3.2573795235829926e-18,0.8760624472571277,0.9999996430541864,0.9999998724448075,4.196868504135113e-17,0.0001340807308023776,0.9999999999999529,0.008965944816588321,0.006749213368544398,0.03110883015626056,0.0025189960226686824,3.7914031755604003e-13,0.7799937598643086,0.15245272976732197,8.587124438725085e-17,0.9009392285607852,0.036326457053008444,0.9999997516722435,0.9999984338281498,9.608770767062951e-05,0.07469844183405967,0.9999999984893715,5.290408339522885e-13,0.40122657981679455,0.9999984100525974,1.501792327733392e-17,7.107733338142007e-05,0.0001385395616722953,2.459023619048717e-13,0.0058331247910459,4.205730797427593e-08,0.9999999993580753,0.007568217224159727,0.9999999996471374,0.0836865060437275,0.010598342919986311,8.296007009037643e-18,0.0013213084240491094,0.00023453474684273517,0.0006264230822074088,0.00012411009714754964,0.9999992254535659,0.999999987926829,1.4787591202529533e-05,1.5687162766842204e-05,0.9999999999999583,2.352911507970526e-05,8.736735757857287e-18,0.00032531759553080733,0.76029153061148,2.4693019362949783e-05,0.00012228658553523202,0.9999983323396469,0.0005275702982808402,0.03656351437544835,0.005556322208635668,0.9999999999027582,0.18758124810938948,0.12378417158093992,9.276160223157326e-09,0.8371986966189628,0.06823464070955527,0.10004084548508146 -हर,shape,0.001101859163962379,0.9998824453645176,3.352084300775373e-10,0.011949605381554497,1.0794718950127841e-09,0.9999439115296509,0.8908662753834578,0.9076606846228863,0.30511738905300695,0.3959603775475277,0.9999998414736513,0.9999975882863877,0.9999999815878117,0.9993516000385008,0.9999999852886605,0.0014147832460969876,0.000188477073174201,2.0717058630710807e-06,0.9993056984493692,0.9987476775602125,0.9996795207522179,0.0010028354684049295,0.9994791779325832,0.0004003790046259837,0.9982766755948324,0.0036184071392725415,0.0009011788470274775,0.9984187016329183,0.11752100922247828,0.9988396186447486,0.9988107769442656,2.551346651356635e-07,0.9978156342277789,0.997048860052827,0.23311236617241735,0.0009846593443707573,0.00458316395905485,4.0859400692530354e-05,0.9992256484747061,0.9999853190210177,0.9988412628512517,0.999961412275234,0.9999974373495049,0.9999962712348449,0.9999998211062351,0.1798439384003298,3.4410644887892885e-08,1.47955236449322e-05,0.7562118996715866,0.5777484346524039,0.9999990873023189,0.9999877857073401,0.010580681791925194,0.921226187944138,0.7147464853321477,0.9987888824123379,0.9999999797685888,0.9999998221099654,0.9999952750490659,0.9999586462829566,0.050839004320914184,0.9999891444275145,0.0008256166273877563,0.9999177548136821,0.9976526248940865,0.0006705273865810643,1.3728495518797977e-06,0.014134297401909336,0.001886751234500141,0.9413053490188795,0.16450439931834618,0.05915543710392538,0.9999879539000188,0.07249514116015811,0.9994805178340455,0.9999958968994821,0.005841696823634304,0.0020313098520267745,0.0015041431699056066,0.9995226728993835,2.060556938598882e-05,0.9999999271351097,0.001476526821103229,0.9999968648726862,0.5660424684991707,0.00013066378602335875,0.9999868472983522,6.3790576051204175e-06,1.7886464639740604e-05,0.0006340217661616572,0.019476369315091856,0.00015286433999547118,0.9999999935084507,0.9999999474522724,0.9999999979535836,0.9999998801043933,0.9999994967488691,0.9999999970272324,0.9993455939961917,0.9999950096298854,0.9999865603733591,0.9844169560038735,0.005966951453453142,0.8459945000559324,0.999504041056075,0.9949696917170224,0.9999778950421496,0.0004158267853419713,0.9999860093618597,0.9976589598412421,0.0018599805214717122,0.9994524810684269,0.025700935666015366,0.9542253652846651,0.01216578357028676,0.005613185261926148,0.9992105636658543,0.772331873939323,4.6835113658031284e-05,0.006149480180348047,2.9560918906928847e-08,0.41604564762658675,0.05720675196508567,0.9859212117707684,1.854155942586515e-06,0.9991696947220643,0.0644433341400573,0.9490226745612581,0.309251497579374,0.3616873517104136,0.9989395398055574,0.3004141943780133,0.999520683036823,0.0037915876870391134,0.9093719442275218,0.9867710205349327,0.9996712216083012,0.012580649086744888,0.11966446962695186,0.9993038426456162,0.9446915502190767,0.0008213669259347124,0.9996994507558842,0.9999999716197713,0.9999999993714821,0.9997737284518889,0.9999999828937752,5.410180253137532e-05,0.9996770691639624,1.3015144585689521e-06,0.9999973901909466,0.9998390844620442,0.9993421170550832,0.9999910114605618,0.5419979326670236,0.9999991260518626,0.9999975882863877,0.999387938342794,0.998937517025466,0.999683284893717,0.9978570318132867,0.9999962938226999,0.0003614371586608523,0.9999994355988698,0.9999999026532461,0.9999930424276493,0.9999650035005565,0.3546802911066975,0.9997957142026334,0.986006735496587,0.9999998959180119,0.4894327307585242,0.5784440263109556,0.9999344724225014,0.9941444159124995,0.5936076057436162,0.004133128298206991,0.1691817667075507,0.9999989714473726,0.9999878151269005,0.999740156001366,0.0011286644121754966,0.11379970611303156,0.9999850016069995,0.996390196165404,0.0740403229458956,0.999652720334833,0.9996741462035729,0.9993201540202936,0.9999999595756454,0.9999853824768266,4.699496855774802e-06,0.0010943398031745587,0.9995168280517356,0.007263713782481295,0.9992683810822512,0.9508223751489695,0.9982144860818101,0.9999984055816937,0.9999999939189244,0.9959522472078444,0.028744470097483866,0.9999867448631643,8.411830767361443e-05,0.7952046090896461,0.9999556646729298,0.9999870643064721,0.9999995876793929,0.9999999981487822,4.055597784761686e-06,0.9987510729552564,0.00018628956330855276,0.9998947835030808,0.9733472932177375,0.9997488740540041,0.00012934534418650336,0.06454913695335021,0.001328320199423334,1.0389677270010522e-05,5.016298569781246e-10,5.513896563722827e-09,0.9999799745358444,0.57886493219457,0.9999977620984482,0.9878852513081613,0.7871420161085373,0.9975927947733991,0.9999567148113383,0.0010761741938512836,0.0006503395411871539,0.9985889959814619,0.0006505573436474515,0.9998826621468138,0.12565972465443528,2.9560918906928953e-08,0.0009310052382717307,4.193140262103214e-08,0.9997198573731377,0.09536312993350257,0.6935770897331636,0.0001226805456843919,0.841591494267976,2.695640834039468e-08,0.05282537030490703 -हर,object,1.1042072565631228e-06,0.9999999998082798,0.0018188976397421446,0.7298190976668464,2.2200752799688425e-05,0.991684605560295,5.662430466400885e-10,0.9829656969554554,0.9961187832053188,0.7571042529598723,0.9935585438603215,0.9957894551996765,0.9830298314041227,0.9999999997492335,0.998148343000678,8.89824256991762e-10,0.010678545148868675,0.02594546462357333,0.5713781173777851,0.9846690598029111,0.022209980466547034,2.8367951188210842e-05,0.9973449281092641,8.647213795881725e-07,0.9999385112693404,0.0004609125917062364,1.6134530667653227e-09,0.9998712087759716,1.1152770775068287e-10,0.9999982417948072,0.9987632543669992,0.0003491168258680279,0.9990686547525693,0.034296170773125766,0.99945588251107,3.159364751650667e-10,0.6759984267071015,2.7969476139396942e-05,0.9999324570074892,0.999877561984657,0.9807063711563436,0.9999993438055821,0.9978610935982803,0.999999683066137,1.8122730460370047e-09,0.001430857568147761,9.565550414330703e-05,0.00028156905916742645,8.078419494037983e-10,0.6063703990732591,0.9959906932746333,0.9578662166768878,0.7396215336720656,0.9990575725384061,1.916755218814792e-09,0.9879670716145206,0.9999973811600498,0.9999954125978169,0.9988775878929296,0.8577559962044363,0.8232030588174097,0.06820275883269238,1.048598090915635e-09,0.9999993321098113,0.9999992674089477,2.232189082833203e-06,1.5154106254009742e-05,0.7161877246413589,0.7210989382065283,0.986122145097415,0.9995342047055282,0.9939153303429696,0.9954515276172291,0.37109480894818203,0.9999999991547499,0.999999750506137,0.00017131981794702166,1.4262300120531943e-06,1.0248028549686702e-05,0.9997583836533422,1.484109276380428e-09,0.9999942538861131,0.0004805763890009657,0.9999963095313461,0.8032449675141383,0.0003072663175822432,1.8661650534718734e-10,1.2496385315651526e-05,1.436243303186447e-07,1.5151428986160447e-08,0.7841904545780006,3.3717288080653562e-09,0.9999979493412706,0.999996560298709,0.9999908023831409,0.9999963844019243,6.847041726314172e-10,0.9999922137006384,0.9999386479895774,0.9999808934001808,0.9998588237760653,4.702778528193015e-08,0.9996259146782203,0.9950723248018191,0.9995852929129188,0.9942431492473616,7.740032630404485e-09,1.0620247936558945e-06,0.00042331569954851054,0.9985487267903045,0.00033360083228863886,0.9949274894741451,0.9974804939747962,0.9565604932681181,0.9021961807804558,0.5235785085981258,0.3051694445699615,0.9955147590952698,0.9413850462573629,0.001472747851998627,6.511820444307839e-05,0.9896091313404567,0.7542068598901834,0.9703518302216864,0.9693220981599612,0.9999004966771391,0.9779561957534926,0.26766288328684446,0.6302544548545065,0.07038381949521623,0.9995207255640653,0.009721128969114472,0.9992448337051922,0.4187728554420963,0.30841606574707275,0.027443049108204238,0.04271034781702958,0.002371160167020711,0.43823596329587344,0.9999994907640095,0.9972523829803275,2.7407454367949117e-09,0.9994998860069784,0.9930706203672877,0.9963669579727932,0.5195243405965185,0.9999016175528124,6.091597090848533e-06,5.096489331302357e-05,1.5014560344733774e-06,0.9912040695502897,0.870871997895178,4.913653945531845e-11,0.9503731010027834,1.0971462376473502e-09,0.849288129811007,0.9964729456303009,0.9999536775335637,0.9999849105113277,0.0325547833181099,0.9999925295894309,0.07532509118576601,2.3469906358242612e-11,0.9999748010816399,0.9999723865067209,0.999953957655141,0.9999279413922243,0.9205125910821861,0.3213207308705243,0.6490353507473925,0.9204409474395994,0.9736036844884779,0.4552520379687491,1.4600767290518268e-10,0.42248573096750774,5.60065678367971e-09,1.6201469080414566e-08,0.9988742119453228,0.9999938802131609,0.9999702010145056,0.9999556813920278,1.8891112389189626e-10,0.9973946868956928,0.9954752810559441,0.9883232394274598,5.435947083688006e-10,0.8885153365200582,0.9999999830888228,0.6345831822722959,0.9935058548721244,0.5862135628622261,0.0005374940466594227,7.295092377336121e-08,0.8072335658819676,0.08710655318946273,1.978517769716758e-09,0.3292022516757661,0.9834679835476697,0.9964876941918082,0.9998118086090142,0.955420827743066,0.08256600056324227,0.9999048548660509,4.0648727892212836e-09,0.9656704121971198,0.9998013791719903,5.520016860238285e-09,0.9986979038868178,0.997246608398029,2.814320136392048e-09,0.020688174349309946,0.00016075812615943177,0.9999652366757398,0.9457633146758867,0.9998528970491245,0.9826605609671081,0.9644652198464444,7.89169059753248e-12,0.0020612957044281494,0.00011825925126211457,4.6465448870236156e-05,0.9903273301425202,0.9995237833673053,0.9999997875238894,0.2115342477990725,0.022015493551699728,0.9999999998036968,0.7566687473240631,3.043923374481924e-09,0.00014406938880340758,0.9999745360897486,8.348514783596053e-05,0.9964942218656188,0.9988008041686919,8.216359856200617e-05,0.09633053445827737,0.0011350699748409988,0.9999983165755775,0.2598566996638553,0.19671078581421275,2.0555515623196516e-05,0.9999327827607236,0.2939579804713041,0.915099654358218 -हुआ,rgb,6.241111593180802e-28,1.5366155139239856e-14,0.017288771351195102,3.529614598332419e-48,1.8030050535507113e-05,0.00013321288956572039,8.487583413304042e-29,7.59234918258957e-08,9.675290566472287e-07,1.5420786264158815e-06,0.9952923753389509,0.723990017901563,0.8796722810198108,3.3927732070781092e-15,1.1391323016393324e-53,7.931261347568255e-45,0.9680650291693959,0.9780961549764441,0.9753950768664343,0.9998867740225926,0.9640682631419414,6.611788062293871e-05,0.00013254574686896817,4.2226967075429407e-08,0.006701801308508765,0.0009355279390600734,2.1525310320188534e-32,0.015537742834231502,1.3649753202816521e-42,6.91724707534669e-12,0.00014225039115470684,0.0014194407523382693,0.00034380807191106654,4.979950095298068e-06,1.5994138685082334e-42,4.4027043389302633e-44,0.9999280934796406,0.04265063252824756,0.09165744089302791,0.010820332287963115,1.811735684568524e-44,3.085525829707286e-08,0.00028480171278108725,7.228614046625249e-14,2.4210103084521346e-35,0.11523485491754198,0.0018586518813408866,0.018049162242061396,5.268878108760931e-35,0.8243677891261514,0.00013881688711120946,6.385713456744477e-45,5.56160315139933e-07,0.0013249665991456583,4.4709368824056725e-39,0.005063301468190133,0.9070952720772515,0.923404202893127,0.7923010004923128,0.9480975616364082,0.9952468530052431,0.9226538422312693,2.934422138631493e-47,2.1733529728435047e-07,3.627739623379503e-11,6.151038396714121e-08,0.00043983850518445727,3.666546654653054e-07,1.1712592361407922e-07,5.387264638284551e-07,0.0008132707229811905,2.080753678535523e-45,2.626507895669462e-43,2.2996206632565448e-07,7.866714360519735e-12,1.4312223019035836e-07,0.000437232270159546,1.2578407434119415e-07,2.6461511418038404e-05,0.935686991769399,4.782037731713941e-31,0.9492046077127425,0.36008291849791263,0.9566924656982656,1.4743660699907623e-07,0.37721136167072356,2.766576381576783e-43,0.023923476833604036,3.76805933046329e-23,6.211930658598881e-31,6.119474723785002e-08,1.1298296293277285e-49,0.8549259090654774,0.8845025366076655,0.9390770890339948,0.9491353703643807,2.1851554493186722e-41,0.957175933757399,0.9366954416333603,0.9648281302353691,0.9747138501116533,1.9133801937972945e-26,0.013281269362095302,6.723052489390601e-47,0.963207325128218,0.00013619471933502543,8.997365685075713e-34,1.0931698933063218e-07,0.00159520934281246,0.01404216473820055,0.016835661570163096,1.0566408794419273e-45,5.227601478051895e-50,0.6895990901493195,0.9799846276453424,0.9926938159112423,1.2565008087442753e-05,0.9987911966106702,0.6713388033491868,0.0613165932617518,0.0011094069408194127,0.994706196578046,0.6508932121208761,2.626189851978221e-43,0.8492715120168841,0.9725450408322006,0.993181971666551,2.3010447141400585e-05,0.9928542682556584,0.028634990042210734,0.9999014290275076,6.95815702012768e-05,0.00010107312048097907,2.4904749678135893e-07,1.5335846270204376e-05,0.9885851713916056,0.9791437546733317,0.982278666437104,0.9641043823201764,3.907444750667655e-12,1.0058510402764441e-41,3.395632531539213e-45,0.0008175553354003792,2.2162448547026711e-41,0.999793381463173,0.999930501940253,0.9995325766302452,9.133790738491897e-06,0.00029417703002065904,2.688829771787052e-08,6.685910465052089e-43,0.9878108560755053,5.694510476539498e-43,0.9958268554190676,3.651854692814334e-39,0.9396267156942414,0.83445512483464,0.0009394384653485916,0.012505704809760989,0.9759744839028136,4.322008506926983e-05,0.9740342808651006,8.024724355425676e-44,0.004061178737232381,0.0016765469394329363,0.0005591343382542716,0.003993982562142596,0.9105321592205295,0.9553076354015595,1.4913592620602735e-46,0.994127493878283,0.00014190056618951816,0.8886752623169571,5.027110508949636e-46,0.996585089722422,6.274217528305982e-29,4.505155101934191e-50,1.846633334715585e-50,1.2169049633523769e-05,0.0010603415281749077,0.0028615838202203656,1.4420226302591142e-45,4.0426563110393996e-42,0.00019203750130842272,0.0001392160428074293,3.4065207808473628e-37,3.9903140199782976e-36,1.6915796557367956e-13,0.9541911733355319,0.8416616465128243,0.9959688705021433,3.472989562953055e-05,1.3339978241590214e-28,0.9999364120185794,0.18279631024654708,2.841160576865165e-35,4.9089671648056694e-05,0.9450929003723996,0.00025707030243685505,0.0014242747863197737,1.457550601130836e-42,0.9820756989372398,0.009944188550446228,8.462375989971931e-32,0.9982325814457089,0.004299613495295864,6.755134828406852e-39,1.664827739669881e-44,5.129940574191759e-53,1.4330570584431064e-30,0.010106949029746834,0.03245419330645182,0.008968035568199702,0.8974010479034902,0.0004016610074986463,0.9838567657028894,0.7242628401759426,4.187048020951449e-49,0.045592416284308525,0.00027174550455608067,0.000342503206886909,1.0243569701630252e-41,0.0008484851233559953,6.345552109218104e-07,0.981678511747572,0.9803106601810112,1.5770946686521392e-14,0.9900465412228037,3.463208397730717e-49,0.0011414051276983704,3.908473536899468e-46,0.0007334601328946461,6.894930236148204e-43,0.00876906501362815,0.0014272762391304016,0.8422786081166216,0.46232246480111566,2.9005209309652158e-12,0.03353321481199712,0.9418998212455677,0.0028658990147365703,8.935698171991862e-41,0.9988635615838571,0.9982018823079705 -हुआ,shape,8.78480659810986e-06,2.8021997245980496e-06,1.210692150742986e-07,0.00013837874683533152,1.2228039298801502e-06,5.090675690236457e-06,3.091756181037482e-06,0.00014393102751289892,0.0001112425579900316,2.0069549542187496e-05,0.999764524305654,0.9999808885399437,0.9999990485596819,4.988758315499655e-05,0.0006248320462338082,0.00033064474190236355,7.042472384044358e-06,3.986118874411969e-08,0.02117571667909015,4.127439966207305e-05,0.5211366524848975,7.380231856890402e-07,0.938325878848343,8.049934114377422e-05,6.840726601327034e-07,7.762971842317045e-07,0.02797426601221652,7.026562288971632e-07,1.286327944496416e-05,0.6288329458033933,0.019401610123901833,2.9567172894459464e-05,4.48382521332949e-05,0.02627498977755625,2.7693392460076777e-06,0.00046090679520805806,0.9991575841149587,0.00017346627639341073,4.559434524403814e-09,1.9779954090868896e-06,0.07854185394921714,0.0552336771159491,1.567798400016768e-06,1.3250778228300333e-06,2.754043876405301e-06,7.501179434950064e-06,1.6346708306067128e-07,0.00018187295550086414,0.00013740396081429997,0.00020986466362460474,0.002592150229749926,0.014245688379889713,0.0005956501129016727,0.038457210874856165,0.00015419115108463927,0.9337340194618895,0.9997089630999043,0.7754772327418595,0.9998779159461756,0.9997605727666302,0.9994479118182139,0.0014276850534385543,0.9155667473184149,0.004120261479648653,0.5296008680842273,5.817807303023413e-07,1.1010959249424577e-06,1.9356106491840426e-06,0.00022043490416974104,4.2267483728455085e-06,0.041660314008338646,0.00021391463533985676,0.0029494263585569274,0.007734844572804453,3.3437973574390465e-06,0.019788592500639208,6.243197004681983e-07,7.236760559952352e-07,3.001665490005109e-07,0.7698216827932444,0.0012824467356755706,0.44482734029611853,1.1757897173318586e-05,0.06960435857699462,0.03397950596563763,2.87672980327454e-05,0.9230732713178221,0.0007693617150928332,0.008724906929895061,3.222497502459302e-05,0.0004587845115695172,0.0004456802610891403,0.9551990128171348,0.9823230415463792,0.9896078333823123,0.9999947692323473,3.2573388438889197e-06,0.9905247958801826,2.5618574954830915e-05,0.5186526233716255,0.13648165120450267,4.000671837563311e-05,0.0015006521089354983,0.003615244512815525,4.129662839030355e-07,0.589438001831989,3.2473804638910956e-06,7.304510396288833e-06,3.992044338018743e-05,0.9886699687208217,4.496969132462991e-05,4.5980238265042545e-06,0.00013924243263220492,1.3982295933590127e-06,0.015339444406857564,1.4169559082749424e-09,7.247205990693342e-05,2.107089095484025e-05,0.8274513953998405,5.243229070833262e-07,0.005863970372229423,1.1679223971158862e-05,0.0005149113963113014,0.00012457709861276735,0.008717651731381443,0.9987163811510683,2.0518019372446813e-06,0.007074188123808959,0.00025169467891246656,3.399487459726869e-05,0.9071838333241942,0.0008946395844522234,2.4653342102680778e-05,0.008080996325988224,6.63375883742683e-05,0.9999983714217577,0.07886325044312274,0.9999984982506698,0.0005047483341779494,0.26372955236643114,5.415487470801857e-07,0.9977878419405711,7.971414712586004e-05,0.0004570309195057037,0.9999818116068574,0.999705251991781,0.9639103661029418,6.005545346172254e-07,2.0462382592558447e-07,4.17621605771118e-06,0.01661671803202208,0.002674585627930698,0.9628060982572603,0.9991742458155299,7.421518089368226e-05,0.9994978796030707,0.9999808885399437,1.562402599053665e-06,3.040735630200836e-06,0.34899520215012503,6.600979348484201e-07,0.9658261924221019,1.5857154419698673e-06,9.083427838664299e-07,1.9028425966780426e-06,1.00092856878523e-06,6.608563804308474e-05,0.9991981123883538,0.9992701616413078,3.3671421446215434e-05,0.0017863010431783098,1.0472932095401018e-06,4.867346138226982e-05,0.9958326788004241,0.00012448442990882928,0.00023415483313211005,0.00015758677519535642,0.00012380565906046706,3.9310135689998816e-07,2.1641235794300397e-06,1.2117521258145527e-07,6.768522217359013e-07,1.0290680372171617e-06,0.9661407362117296,0.09224588479508757,0.00018600070855843406,2.8750448378149955e-06,0.0013880287894280302,0.9993370003908462,0.9999881173119427,0.9994953984290594,0.0038671344908496347,0.24069333245455385,0.9992295892535575,0.0005596754823962031,0.00038775560735351095,3.606000987330138e-05,8.611479817091002e-09,0.0017133751154982991,0.00013174489358114725,0.0007858372327514567,0.0002673154066806968,1.3282670388510422e-05,0.21850459405698713,0.07459985403608389,2.485015624905702e-10,2.1547080438062283e-05,1.1218054284133456e-09,0.0013347618856540712,0.024630217105349198,0.00022451706845571666,4.090863395337783e-06,2.1687259882176845e-05,0.9999560136534142,0.00013370898654574745,0.014686563136193915,1.476240770982299e-06,0.00015296684638336472,4.4914437809128514e-05,8.29875539622075e-07,1.0524488797397166e-07,0.007899584151380357,0.08424869745858148,1.7266172849258083e-05,0.9999983135617375,0.02248011084399484,9.289683444134579e-07,0.9974917399065516,1.5628783876906907e-05,0.00014505411014384368,4.020588284071517e-07,0.00215234620924371,0.004708412609707765,0.36210039264170146,0.005863970372229423,0.00014194769539563565,7.541464299718684e-07,0.9800088003912745,0.002181842415233519,0.02337390418190374,0.00020063121265792572,0.7158790086981233,7.139750065082886e-09,0.6440896234324165 -हुआ,object,6.83822751775371e-06,5.4627687193227e-05,1.647141032032534e-06,2.6093354653874143e-07,1.7691453616139108e-05,2.0316315535627537e-05,1.6395450172156108e-06,0.0008249686186220441,0.0007265521673601278,7.274645691843942e-05,0.999960975975931,0.9999955980036161,0.9999994392110557,0.00021448951335053122,0.00016686280268529393,0.00015516111241259235,0.018719966595245538,0.0017916102773244001,0.998864848994457,0.913451577474634,0.999429717616904,3.404671681298272e-05,0.9750752934634379,0.0003048903169670946,2.5085153371574116e-06,0.00010392617101995764,5.832607376533818e-05,1.0593211485702414e-06,2.407568875020024e-07,0.20397441971224364,0.036805881175869797,5.492322582212701e-05,0.010556759143888594,0.008971350252954933,1.669458780803174e-07,2.986785658843242e-05,0.9995502836872489,0.00023276961935738268,0.0004648121110564147,0.008603331039354928,0.0005075409501273441,0.07380725697213766,8.526125392820961e-06,1.4948037812489349e-06,1.1399274897732485e-06,2.3355392732715444e-05,2.0024551039037475e-06,0.0002502651427955355,2.3932420762654726e-05,0.0015086598709558668,0.006650649905995306,8.399933877029984e-05,0.0004512983607930982,0.3501087264744182,0.00012095614897738128,0.907788911462997,0.9998987843695862,0.998347825451657,0.9999421786747507,0.9998284058498533,0.9996674104765887,0.995895310626582,0.40545432371724077,0.17562651062501738,0.18409817851613805,1.2788057823906864e-05,1.6994815980050513e-05,7.568842655607458e-06,0.0005022712874168561,0.00013468220475619728,0.4662214894199251,1.1862430941123616e-05,0.0009272190043701349,0.004509271289247245,5.810075949150091e-05,0.11798971080227048,5.8324800551785554e-05,7.784674790485808e-06,5.575793685361272e-06,0.9825912384246952,7.069187928105064e-05,0.9859647414407637,0.0005498338458168514,0.9795828559660702,0.017158569783136943,0.0023259179409284895,0.05472927676293345,0.0006315205702676355,0.004093036960343391,9.279651599452889e-06,0.0004016824711790682,4.707277557469561e-05,0.9991080676071673,0.9993358964653745,0.9998071807467231,0.999995826422908,2.406316029411556e-07,0.9998555917252872,0.002674252969715968,0.994220764288714,0.9862471208854362,0.0026913968046210976,0.39489844736320895,0.0003683447105522582,0.0013410076473630678,0.5703802650528587,0.00031467069847618815,6.022159222449351e-05,0.00084489085975072,0.9979371122646514,0.0003775130949083373,1.182624791003516e-05,1.8678376977066726e-05,0.4186435525847502,0.9876434262903138,6.424238015703027e-05,0.00017136823984645265,0.3382670611052662,0.99797432253737,4.694678328788197e-06,0.00565562388901764,0.4632158393338767,0.0011677968026881976,8.398517654385526e-06,0.9979949289149157,0.9998777485764803,0.19409001944034524,0.004674677468474914,0.0016208675213707094,0.0002822224181707783,0.9412979540446235,0.0009870418208551737,0.00027983466596242335,0.0020796873247691124,0.00014348041630922212,0.999999985758742,0.9816784352927782,0.9999998788761846,0.001856465622104672,0.07215928351448593,1.2061730929492801e-08,0.5787308300133087,0.005474342958496315,3.4540351208045296e-05,0.999998410991268,0.999681293536104,0.9997092054143107,1.0848238934042551e-05,1.7375766964828777e-05,5.200033240225614e-05,0.0006737631464181791,0.1141039068618655,0.05142733471527396,0.9995660352661823,7.134939359528229e-06,0.9998127876660736,0.9999957043039768,1.1341540244835584e-06,3.1980625302022805e-06,0.9999732601671703,8.384868120370521e-07,0.9999490692278927,4.37552697221837e-07,2.753387250897076e-06,3.03990157448671e-06,1.5333817368271967e-06,5.503297462152739e-05,0.9996645923539647,0.9994036692795413,7.917355272748472e-08,0.6827268182779265,4.041527665058108e-06,0.0040318435183538184,0.20111867964014588,0.03786416089161644,0.0002515089675825652,6.228697630788386e-06,1.5951552716698096e-06,6.193707509381306e-07,1.9365852506059867e-06,3.9105578165833963e-07,1.7865307535090493e-07,2.3097646620018558e-08,0.9788932150519614,0.15537617187815206,1.4078579053048684e-05,1.4179858199275186e-07,0.0011577338894874962,0.9994510758457347,0.9999950583353127,0.9995692462182724,0.003924009043421715,0.03319328032639432,0.9996624634888317,0.010784748634479882,0.00010674034190105114,0.00011700134200333487,0.0027670046668827673,0.002699630996279845,0.029310555504795912,7.486501446903764e-06,0.004534404053820269,1.8138609654282944e-05,0.0008012459722324599,0.9988425722897102,0.00015307488861567332,2.0043549003632026e-05,3.367645892975102e-07,0.0003846105531890649,0.0006692548434973298,0.0010777760431118968,5.3353276598284684e-05,1.5902604791917093e-05,0.9999677433720994,2.9022690021385175e-05,0.9959539137046531,0.0772570648678547,7.537053474238429e-07,0.00015222907092163915,4.744372413600375e-06,2.7712955779748566e-06,0.002455066769016975,0.5566613200990449,0.004956325575309349,0.9999999415206832,0.9919631748528509,3.0257827280178134e-05,0.9999861982447243,8.056279272395711e-06,0.0012166012980238195,6.90654753987734e-06,0.01517614028306387,0.001035338259050267,0.7968482254167835,0.0056190826776773934,0.00012328059879133842,1.0025106824714369e-05,0.7484715574919125,0.006132839485164382,0.22618484054700494,0.00020164650151956558,0.05386925937711881,0.0001199919769995388,0.998261302064223 -हे,rgb,1.0,1.0,0.955444705067808,1.0,0.9996111504706406,0.9999999999999998,1.0,1.0,1.0,1.0,0.12274880228802587,0.46346168777182173,0.34683384348845214,1.0,1.0,1.0,0.9804943480694293,0.9535981054780209,0.9805103298831396,0.9867794949987261,0.9996658583969991,0.9999999999733353,0.9999999999999998,0.999999999999962,0.9999999999608149,0.9999872125377137,1.0,0.9999999999009961,1.0,0.9999999999997213,0.9999999999999996,0.9888588748596382,0.9999999999999989,1.0,1.0,1.0,0.9156831002141624,0.9999999485181759,0.9999999999645197,0.9999999999997866,1.0,0.9999999984047976,0.9999999999999989,0.9999999999999893,1.0,0.7902499327901853,0.9854548730813747,0.9546303368052079,1.0,0.9999999985076988,0.9999999999999998,1.0,1.0,0.9999999999999933,1.0,0.9999999999999218,0.9877262014591378,0.9700669355917777,0.4142114727964974,0.2596436444470644,0.12617650754541007,0.9999367690151626,1.0,0.9999999811767198,0.9999999999971656,0.9999999999999951,0.9999995675998752,1.0,1.0,1.0,0.9999999999999964,1.0,1.0,1.0,1.0,0.9999999948260685,0.9999975104496472,0.9999999999999667,0.9999999999878599,0.9455513931650797,1.0,0.9777890019030628,0.9999999982582921,0.8567021621699682,1.0,0.9999999956899621,1.0,0.9999999536840151,1.0,1.0,1.0,1.0,0.9962941468769976,0.9630955763556297,0.9226581198822655,0.8794076136427355,1.0,0.8524906617558335,0.9831574838847598,0.8586374876383718,0.7228731683503877,1.0,0.9999999999997207,1.0,0.707398328730988,0.9999999999999996,1.0,0.9999999999998888,0.9998743415630705,0.9999999999997293,0.9999349079814249,1.0,1.0,0.44068186346906296,0.17837792195457017,0.12971524269131518,1.0,0.08375276933193126,0.503675752014936,0.960377403306489,0.9909479023392743,0.1051616899125886,0.999999999710262,1.0,0.3210429491875674,0.9999976618462187,0.1117318324374172,1.0,0.999999147874101,0.9999999999990667,0.919222821883214,1.0,0.9999999999999998,1.0,1.0,0.9885200975590372,0.9856845405624529,0.9756619738975719,0.9999999652961306,0.9999999999997415,1.0,1.0,0.9999999999999967,1.0,0.9978022380035662,0.9040191312203604,0.9955359782924742,0.9999999999963938,0.9999994389751937,0.9999999999999951,1.0,0.9999992956160396,1.0,0.11902409754506435,1.0,0.268926303509735,0.3735737575488728,0.999999999980522,0.9999999958868835,0.9946605372031668,0.9999999999998181,0.9934569151452443,1.0,0.999999999948463,0.9999999999939775,0.999999999999551,0.9999999999892251,0.3001910281947271,0.24599943317615788,1.0,0.9999971481747586,0.9999999999999998,0.999999992371195,1.0,0.9999929865005046,1.0,1.0,1.0,0.9999999999999862,0.9999999999837375,0.9999999999604052,1.0,1.0,0.9999999999999996,0.9999999999999996,1.0,1.0,1.0,0.24844016023917811,0.37279734506582735,0.12080918313699927,1.0,1.0,0.8276052121265861,0.9999999999817464,1.0,1.0,0.22674227781765177,0.9999999999999993,0.9999999999999933,1.0,0.9999996158314431,0.9999999999795546,1.0,0.08599722277854618,0.9999999999999585,1.0,1.0,1.0,1.0,0.9999999999996805,0.999999983901666,0.9999999999329292,0.32136864059920967,0.9999999999998699,0.1465512596113264,0.43414906003627596,1.0,0.8964436628425628,0.9965737046594363,0.9953816672612417,1.0,0.9999999999999964,0.9999999328111479,0.9413551309287139,0.929298309999003,1.0,0.9451837654475207,1.0,0.9907807046432305,1.0,0.99999999999995,1.0,0.9999999999998639,0.9885209498952486,0.3272264069508489,0.591154699332913,0.9999999999996945,0.999999999999194,0.99999996694521,0.9999999993596651,1.0,0.0987548845820415,0.09402182556943192 -हे,shape,0.1095495583964601,0.03498793766025095,0.9999970407863328,0.9825981246653998,0.9999989972261992,0.9922877207352152,0.9284520732609789,0.1504972746662125,0.2867997254206347,0.275568764798662,7.520148834425864e-05,0.02158354898131287,5.887148067680504e-05,0.011114475947494108,0.022359131176312084,0.1103260000805739,0.9998358704834531,0.9848017487007208,0.9999612363093666,0.9990391704851175,0.9999637016821846,0.6063281451775676,0.010213585500656097,0.9266386564363343,0.7695464718664409,0.49527434978722734,0.5979582575127093,0.9690973695545781,0.9996552150073621,0.779842097008262,0.0012235626223742661,0.9999998130382927,0.999999459002928,0.8221758236484011,0.9999995452240887,0.9999858181504907,0.9997462239369203,0.15476063782936786,0.9994605391139961,0.9800993318324461,0.9999154920085354,0.9999086732185424,0.9998424481616842,0.9998934879062077,0.9997632722416916,0.9999862392802789,0.9999999787823588,0.9986690465983402,0.21377903340276028,0.826678568709022,0.36417424970358364,0.23123046320534618,0.7557056745790918,0.999889135934278,0.21688149933817788,0.9999999341156928,0.013729715123004388,0.0011986959843922353,0.007241767485680429,4.3788024681057885e-05,4.00606021805668e-05,0.9455737486977931,0.9254021800551219,0.0020754540265382976,0.011425136957876713,0.8712984835715979,0.9979157169921111,0.4257058335329204,0.8672543142006359,0.47862284266543287,0.9995286781757439,0.009032273381319959,0.01766224195760027,0.582855419547956,0.01988173583286332,0.005451963848336081,0.9084259319458136,0.9935543511895115,0.9643177204302666,0.9889234480848458,0.682389158460287,0.04035780535341159,0.31844773255968384,0.01626116339211891,0.8994615292983345,0.4498042545441845,0.11314045113520209,0.3150867006388896,0.19777315995723546,0.19100381257048582,0.8228640959131118,0.004775643230504126,0.13517611925348139,0.03201409514327043,0.09561640690796905,0.0008528635891679146,0.9998076996058166,0.007467627188260792,0.9179217880044895,0.02265389311138822,0.7317370928463609,0.9999842410290896,0.9999627664287848,0.9999776112029628,0.989216060354029,0.6441519511248402,0.2658755941753996,0.9746573807143069,0.9854102097698276,0.999990086281436,0.21080084045699007,0.9998048459743084,0.039691716887244814,0.9998938334270926,0.9998523593284481,0.9999951470851018,0.6613960458270066,0.9884829232414866,0.4532178595402565,0.9999263223647453,0.9999927639679198,0.9936762140569798,0.5776262711368064,0.9999647255194568,0.9976843769607566,0.002609029810383366,0.9996562731920843,0.7681368583982638,0.41121929467057233,0.7293262959082188,0.004867197847884704,0.6222417873656886,0.04018861701596902,0.6173895681838496,0.9138797197383729,0.9997269016085636,0.999986845651857,0.9999919724245763,0.3913031183764907,0.044604632540759845,0.9997907952522218,0.899048118254073,0.9791916556788876,0.6519595743432505,0.009039407665439095,0.9997506062888314,0.8841724292490245,0.9669376598131658,0.9536884173948849,0.7381397978054762,0.7421973360425361,0.018567107258848248,0.8565070684325384,3.141811628093756e-05,0.973629043801254,5.082993911177932e-05,0.021583548981312792,0.9938869289186238,0.9701368877141648,0.9988014493776699,0.949879682197703,0.9994737540755319,0.9999999497768487,0.9856885474106291,0.9650235940472724,0.8480123674994723,0.32100688454784787,0.0022342227330893645,0.014352261244067167,0.9524917194646815,0.11856220271059315,0.9984159485863298,0.352517734533626,0.017457769983113332,0.9311545324646758,0.05747463459305648,0.01493494227987484,0.015097155039026202,0.9877475017196927,0.9751537874488697,0.993572105250039,0.9999997329175648,0.9998920800040307,0.08385390890004407,0.8986045433183254,0.36421509476925623,0.15667164886380758,0.004040539063105612,0.001182989487564561,0.0018567436183016949,0.00021948687513761642,0.5076887754187512,0.9728129624045221,0.999889792897993,0.3631809328385285,0.0448253948033456,0.9513488136108271,0.9976702795089979,0.4808985496475492,0.9487048080399356,0.07135296755140556,0.5354901397856786,0.5685741992289256,0.6209658286561732,0.9999749377075908,0.9996964214931695,0.9285967353853025,0.9994978809253838,0.004953713392182914,0.8556460785940485,0.6848435871073907,0.13244667553424105,0.2396676033769717,1.2226891987104214e-05,0.9362510496814406,0.9940765573859925,0.9910156784725277,0.9887114045925799,0.9999918137575377,0.9999999820741018,0.9999998613398898,0.007994502608301425,0.9997202338703669,0.357604088077316,0.9998556821782223,0.9998802466042562,0.33690447626144404,0.9990390649336941,0.2891155129592598,0.9992129457295299,0.9995928987027634,0.7337393057204494,0.01769848394167664,0.9998276366378579,0.9999927639679198,0.99996637773196,0.9998121612025446,0.24311600495995792,0.3583276849042973,0.8506358946347852,0.09004022562481578,0.3096688836313423,0.9999878898279635,0.9999003427884392 -हे,object,0.687485382533792,0.0018078587276846873,0.9999973092674627,0.10207483055640917,0.9999992111801782,0.9979279599791081,0.995603634782174,0.5313526295054691,0.6914258209944424,0.6693784997257458,7.561424712119709e-05,0.01521997063623688,4.958260429404222e-05,0.0005495605309118201,2.7439420819796398e-05,0.6747813251067265,0.9999596795222051,0.9974937941251368,0.9999710759344903,0.999426359920495,0.9999890110131917,0.880581821626169,0.038752956015577954,0.9870029298430775,0.8098215264603675,0.5744694615718658,0.9590476992974092,0.9727998853160712,0.9999825703586196,0.11724383771229596,0.00413933184356385,0.9999998514844014,0.999999905052846,0.9638925960282623,0.9998850396720267,0.9999997314076421,0.9997721143151904,0.3318598468615214,0.999667304218134,0.9907543846036012,0.9674217203806006,0.9988479522231032,0.999960135870397,0.9978596507682024,0.9999886566066408,0.9999864385224817,0.999999983422236,0.9986604121059864,0.834925416925366,0.924683110103626,0.6848824066962796,0.000854807670294916,0.9282581046608039,0.9999575919219426,0.8146355462334555,0.9999999891766124,0.008153420970489456,0.0007197971138081178,0.005156565718488757,3.15600651245235e-05,3.645407192183065e-05,0.9828445119692591,0.9949274883413229,0.00021813944295939633,0.0004990267045221864,0.9738371994513021,0.9985114762170141,0.7853330386466509,0.9656360231338843,0.8209489465138734,0.9998713211921805,1.9436616474672293e-05,6.124748270115184e-05,0.8815441047409404,0.0019380680254263243,0.0005797724041302196,0.9304024374884126,0.9986458474457468,0.9914845597858254,0.9526660718407045,0.9687326986414528,0.027865883915269257,0.6268549838222028,0.008891839410266967,0.9757879082491026,0.7403806972556211,0.6149483883847471,0.5339558113013504,0.8157590034604724,0.8044319793097986,0.9528272122123383,0.09656280001455272,0.076841501752791,0.018555838320418218,0.0533847906685617,0.0005961385460356999,0.9999917985918753,0.0044103173961945515,0.8730815147411075,0.010808937060463082,0.41981678327188326,0.9999992855308717,0.9999930430036497,0.9939394102387872,0.9795613312514927,0.7895732309070405,0.8191722520049525,0.9955282437894337,0.9859948128468092,0.9999971140893751,0.27155307300413933,0.8928499932862329,6.139673071488036e-05,0.9997407406984917,0.9996636800639028,0.9999936207935289,0.9297521895618434,0.984150947647781,0.3114882871153241,0.9999286559689657,0.9999937981358881,0.9914841407481821,0.7997782614854035,0.986685619003339,0.995883515989584,0.010097420782492173,0.9994200853001668,0.9524030135325036,0.6487867865971653,0.9204097789393644,0.01732942789687332,0.8970956117796632,0.15136848699154956,0.8923590282582561,0.986290117814915,0.9998942760179256,0.9999959884779889,0.9999953281076815,0.6330188720653978,0.0015616275767134375,0.9646346843033734,0.9955277858727939,0.991940833916063,0.006308338027349766,0.0446943893136712,0.9997513893405731,0.9147654089124637,0.9906239329568222,0.9676359399993244,0.9391364418890655,0.006966597803049186,0.07208119273429077,0.9880176990902311,2.7939301074044383e-05,0.9980770506970851,3.7586271062723024e-05,0.015768305703627014,0.9923468707925952,0.9533765411301869,0.9994032160913692,0.9356593595388729,0.9997595717060613,0.9999999989423858,0.9801547118632551,0.9657110094476364,0.8775144164069828,0.408954183770255,0.0012062089854311807,0.006865775993557874,0.04743038987960104,0.3423133493861966,0.999572083984508,0.6632792221871306,0.20132242630269456,0.9645246745102108,0.46771312357785794,0.22000333665342892,2.0450175274548607e-05,0.9841713516204622,0.966481785436703,0.9923246508446516,0.9999999903143332,0.9807500029180263,0.2524762876926763,0.9567535650429201,0.8957706737887006,0.0012774977947060905,0.0002881961947186629,0.000647012747500414,0.0014159778004727422,0.00020804631294505418,0.8532370032078538,0.9980287965409065,0.9999041352728587,0.7177896502227439,0.4495801213733663,0.9911776200491577,0.9950853618393705,0.757469856071403,0.9787086272826087,0.0002468622173286786,0.7714686391803827,0.5963533245149456,0.9616860476983762,0.999950191751598,0.9998560384801478,0.9960409661968097,0.778424755426179,6.81437063388755e-06,0.9884686679896162,0.914023923929477,0.3125744949435012,0.26411408072300707,1.0345220550244917e-05,0.9441580640580142,0.9902062101981395,0.9826932403944425,0.9997522094915589,0.9999925616117226,0.9999999841767713,0.9999998980021045,2.9600000543615484e-05,0.9999181615346502,0.038754926957332826,0.9999115106469835,0.9999510183211456,0.02302781978199338,0.9996135243664082,0.8631284458039957,0.9993634725126861,0.7086074764062715,0.9249123503433115,6.002205432696956e-05,0.9999454807134822,0.9999937139294884,0.9999650752292252,0.9998103685121194,0.009787876903835794,0.7596991330673157,0.9395580726754386,0.24713956071126994,0.0010986660949171827,0.9999891963024662,0.9997909726015561 -हैं,rgb,1.0,0.9999996921436654,0.0023511750687510292,0.0015114297553579488,0.0002481142079763833,1.0,1.0,1.0,1.0,1.0,0.37747627744060636,0.01973557683270037,0.03849112648310501,0.9999992225288433,0.014997985727329074,1.0,0.9960455517210768,0.9910519378460115,0.9973157615369179,0.9999996490792314,0.9999920662276955,0.9999999926780252,1.0,0.9999999900897284,0.9999999999978662,0.889206957515378,1.0,0.999999999997133,1.0,0.9968464150841472,1.0,0.0006628478531794996,1.0,1.0,0.002184687716125533,1.0,0.9999959916436002,0.9999999120828256,0.9999999999999452,0.9999999999999996,0.0004898054676012241,0.9782956036661911,1.0,0.9887515975722685,1.0,0.0031321000187394202,0.0006564297904260572,0.002423103963078208,1.0,0.9999999999998297,1.0,0.0005550936743797188,1.0,1.0,1.0,0.9999999999999998,0.9975397987610336,0.9920342357669276,0.02450940688239885,0.07136224133872114,0.38380439739406774,0.9999981206106647,1.0,0.930840113542087,0.9875544004698597,0.9999999997703184,0.9980440565700469,1.0,1.0,1.0,1.0,0.0005956646622057432,0.0003355073543410682,1.0,0.9999999924967579,0.9838036870563678,0.9713313994991657,0.9999999983420993,0.9999999920106147,0.9832443156270125,1.0,0.9973741167232185,0.9999999999918583,0.9485457427123843,1.0,0.9999999999677489,1.0,0.9999998213286674,1.0,1.0,1.0,1.0,0.9992872532499887,0.9787167472605215,0.9717744861182217,0.9526381168613013,1.0,0.9465988553611667,0.9976922152531239,0.9626100102561942,0.9118026305389925,1.0,0.9999999999999996,0.0010395164683204906,0.8397174475928232,1.0,1.0,0.9999999862995983,0.3432822105508381,0.9999999999999996,0.9754419606269749,0.0006875330661489222,0.0031567173813681374,0.014594275003225259,0.1314562443028269,0.26659929328319276,1.0,0.716112876789448,0.017672480376654365,0.015356475256950337,0.000640724220956311,0.3033859591884419,0.9999999999999554,0.0003113028084768594,0.024981300022055498,0.9999999994227169,0.25270944566050746,1.0,0.9999999999669757,0.9999999999999971,0.9999952837939698,1.0,1.0,1.0,1.0,0.999625261961582,0.9987066435258539,0.9976499931449507,0.9999999999979261,0.9936345924799349,0.001490065077575294,1.0,1.0,0.00017876650780992862,0.9999999542419539,0.999995313580303,0.9999996754208401,0.9999999945158908,0.9948353304057547,0.9999999992793769,0.00027332131241543053,0.9999999999358831,1.0,0.4059139411134033,1.0,0.062250968143103845,0.028084994959032113,0.9999999999898093,0.9999999987505495,0.9996608803458648,0.9999999999995337,0.999476145715662,1.0,0.9999999999936202,0.999999999999237,0.9999999999999387,0.9999999999994136,0.04464377255086401,0.07914338290825512,0.000920554244523197,0.9999999997980109,1.0,0.9999999999986713,1.0,0.9999999996278908,1.0,1.0,0.004738280237186659,0.9999999999999525,0.9999999999934583,0.9999999999931983,1.0,0.0020742300298041564,1.0,1.0,1.0,4.1299156622234366e-05,0.9999998679682226,0.07792282938224893,0.029844313667600313,0.4225372768852133,1.0,1.0,0.9999878213133522,0.9999999999999838,1.0,1.0,0.05466581642319194,1.0,1.0,0.00025197840450643256,0.9999999999560079,0.999999999999535,1.0,0.6020300806239829,0.9999999999999998,1.0,0.0004598871321495244,0.011013971163738982,1.0,0.9999999999999973,0.9999999790460539,0.9999999999966998,0.04175869150563301,0.9999999999999858,0.13360570834271362,0.017198089863452,1.0,0.002526434717991295,0.0004044636550475493,0.0003686351766036587,0.00019806467771054666,1.0,0.8878075889771462,0.9899441585443917,0.9848880783636128,0.9999996933337031,0.9962892044938806,1.0,0.0006478183134096124,0.006457072248557079,0.9999999999999925,0.0002857175585276909,0.9999999999999998,0.0006429776366523593,0.02417745296973589,0.009442908580021293,0.9871886077759126,0.9999999999999984,0.9999999999949349,0.9999999954317336,0.0012210090657472214,0.7604310589617179,0.6102225053166594 -हैं,shape,0.9999976531375119,0.999917115719402,0.0003622160754975297,0.9988706005159423,1.5727159050736078e-06,0.9779595270976992,0.9706597717368525,0.9999997675025553,0.9999782999011656,0.9999996098383909,0.9999988894558419,0.9999973162735172,0.9999997043144869,0.9999053763939626,0.999990214542583,0.9994238103630634,0.9966915072402798,0.9999098772977777,0.9877042224868133,0.9999954488436212,0.992338247369234,0.946201597384254,0.9992336934511418,0.47529847640843426,0.8551870272488696,0.8892327424307116,0.9999951323587696,0.9875463409359351,0.6091469670983386,0.9999234635124721,0.9999889246368858,8.374511604699108e-07,0.9992492760008619,0.9999909244203712,0.4555957336945287,0.9992404916086203,0.9999185142484512,0.9999970153923105,0.9999968796223692,0.9999970186247005,0.9999854733076992,0.9999708463997461,0.9994675820704811,0.9996798742389801,0.9991804342776687,3.692928371426124e-05,7.076070246865078e-08,0.006898296857418209,0.9892117437698201,0.9999855391506765,0.993737961450588,0.9987331338024307,0.9999887579235701,0.9999903206846609,0.9926567595762339,0.9986164650806038,0.9999997811651943,0.998957902848956,0.9999986373820366,0.9999982249379682,0.9999745394586583,0.9975785435517714,0.9446235124832881,0.9999622711669155,0.9998015155407168,0.9862307465577841,0.606020296870031,0.9999951075396288,0.9999981959353551,0.9999956796165707,0.9999983953737572,0.9996425937439851,0.9999375503818966,0.999996440019631,0.9999570146709864,0.999994225492558,0.9813588197038446,0.9926339494421973,0.8252200351380811,0.9963687678352249,0.9999994649237355,0.9979087431459469,0.9999997117533759,0.9999840668865335,0.9999974627464426,0.9999998352182488,0.9999692113199631,0.9999849142448228,0.9999986183626133,0.9999991561035256,0.9999982043423005,0.9982470434543564,0.999995807757507,0.9998402680225036,0.9999897758833004,0.9999966291094831,0.9994853671981934,0.999945633006604,0.9990288940200278,0.9999321839901656,0.9862526005164006,0.9920626912152839,0.9998836231495263,0.9978354085476256,0.9951278811598874,0.999962178738824,0.9997758509753711,0.5287231771912398,0.9982993074906823,0.9999960381537438,0.9984426472354827,0.9999655667717846,0.9983819063834777,7.05508307136436e-05,4.197231109760989e-05,0.02786754937608928,0.9999207645075249,0.0012830484367544086,0.00011715624178616574,0.00018904057265903444,3.293610031315579e-05,0.00017538037917559616,0.9998425851833802,0.9996803258592912,0.0012028400799265035,0.9997518465221626,0.001317909869708025,0.9998310860192954,0.9999611581527955,0.9999845125797686,0.9999125818658117,0.9999922339112226,0.9998713286892866,0.9999967080060076,0.999588275516232,0.9998946749655265,0.9999831146036776,0.9994234820566131,0.9999921814886359,0.9999696488281813,0.9788380405249862,0.9916886447633957,0.9999996267008843,0.9999818119752577,0.9944134040385514,0.9934068456763504,0.9999992954342639,0.955651693008368,0.9973175429808232,0.9327482173985875,0.9999348244544143,0.9999996298447846,0.999817954101918,0.9999961616365494,0.9999953848079577,0.9999994553593556,0.9999973162735172,0.996379921766076,0.9984133935915988,0.999448907080888,0.999633985867979,0.9998456812047886,0.023842922199198605,0.9998156130935411,0.9996851443605047,0.9980929367426505,0.9962995129560438,0.9999599684747604,0.9999869658472199,0.9842626711827603,0.9999999414410462,0.7956653989699782,0.9999997588119887,0.9998013639745437,0.9999972812571595,0.9982550673211453,0.9965451550100968,0.9934269380976161,0.9997047446645515,0.9993592389264493,0.9962516344343451,0.4497017589581045,0.9379547537178998,0.9959262126246757,0.9997526195134011,0.9989754986350624,0.9987312087453217,0.9999972625697546,0.9999991328096347,0.9999996705006116,0.9999435822874366,0.9999921640021321,0.9999795744561628,0.9998701356495056,0.9999996711709016,0.9992999781364799,0.9996800642212625,0.3005634326572825,0.9994603434348669,0.9999581971258572,0.9995845228413937,0.999999871681043,0.9999693456353157,0.9999815007464972,0.3133179950871621,0.9997196915960852,0.9999267585710068,0.9996437880119107,0.9999999924651829,0.9999947491250446,0.9999915957321571,0.9999907595275291,0.9992074937564558,0.9999867373504698,0.9999556282840689,2.9418205042332683e-05,0.00010194631252745775,0.37871276528658415,0.0008884274907296406,6.900713295726538e-08,1.0136019525468182e-07,0.9999382971602347,0.9999945228228845,0.9999353711411739,0.9999361932879861,0.9955627824475464,0.9309386400676697,0.999994259693528,0.9880120282166052,0.00018323594748734202,0.9999862341864996,0.9999970083381845,0.9999492784687438,0.9999982755168535,3.2936100313155844e-05,7.201685239761568e-05,0.0009243716656013433,0.9999910670431718,0.9999239370374136,0.9999955913236948,0.9999976579517345,0.9812101579945982,0.00018745374408869468,4.5703377454981787e-05 -हैं,object,0.9999951609067442,0.9999798512641118,8.13218898661018e-05,0.08102904779880613,3.822488775367402e-07,0.999962054868537,0.8667549360547256,0.9999999971135469,0.99999989095968,0.9999999928306529,0.999963002221787,0.9997423387489911,0.9999801247342519,0.9999937243950133,0.1312677601564193,0.9827748850250695,0.99334688215377,0.999877630741818,0.6172755799058347,0.9999832330023095,0.9935147631974184,0.8188320582325884,0.9999991067555704,0.09373441155383604,0.9998716080185188,0.24911114029174877,0.9999992508747578,0.9999789505405969,0.5192365900774907,0.9999756702198311,0.9999999844250282,3.6923802101264203e-07,0.9999950329176097,0.9999997943756992,0.0029755153115818465,0.9979981097148309,0.9999636552759049,0.9999912153332163,0.9999998538889838,0.9999995240960096,0.8024879704624402,0.9999891787209906,0.9999979034299433,0.9997588903577224,0.9867534280454946,2.7127880460557557e-05,6.810989926878248e-08,0.0028551616307154115,0.9837657848165858,0.999999093749153,0.9999950836468436,0.20978623895960957,0.9999999662819901,0.9999999391858155,0.9333796356365781,0.9999893379451104,0.9999998225004962,0.9987455522715711,0.9998794702439836,0.999967758274457,0.9998483591130217,0.7814637155773038,0.8296285825844233,0.9999451651936151,0.9999397637603258,0.8592258991842309,0.0456813305613662,0.9999999664253065,0.9999999958690744,0.99999995071793,0.9999999798868651,0.12654413896835892,0.42053166906245326,0.9999999941749698,0.9999960476881082,0.9999961130788285,0.5044237680475936,0.8636555470122257,0.525408410914549,0.9955942256907436,0.9999995703149133,0.9998773207953151,0.9999994497687043,0.9998394057133954,0.9999999950663561,0.999999554837783,0.9997948314232672,0.9999458327191644,0.9999990113289812,0.999999092697745,0.99999999608593,0.9984527099654039,0.9999991982360787,0.9999774333296624,0.9999956825318113,0.9999904421295156,0.9956135388043954,0.9999842397841382,0.9998965660412243,0.9996531456140954,0.9719647007537054,0.7704316753758857,0.9999979578887943,0.008770098373733465,0.9980428417692052,0.9999998189951952,0.9851048703685149,0.10765627132852042,0.8810838070120622,0.9999999202696132,0.9008373306873235,0.14472480474671112,0.014549981384485444,4.320921698249862e-05,2.478545950395265e-05,0.004529913075089877,0.9999993986832422,0.0019539164052456027,8.914265543490018e-05,0.00013584729912241155,1.4577873066041027e-05,0.00021281904378058484,0.9999980177960971,0.07499398005297526,0.0005766008362806802,0.9998722349255464,0.0006372666352705282,0.9999993057427498,0.999996440538647,0.9999986264518955,0.9999821511397852,0.9999997711508906,0.9999998879701054,0.9999999925869532,0.9999970692087898,0.9987038317201143,0.999941838643591,0.9579026401512672,0.9999996729968484,0.9999873213769687,0.1921936664884306,0.9758690411362816,0.9999999940958746,0.5309006388441858,0.9961964349758633,0.9925887801390637,0.9999992933437034,0.7276365852869405,0.7511738308884731,0.5309880617463395,0.13583506797498118,0.9999997518910955,0.9986826550763214,0.9999650237290703,0.9998911817917239,0.9999532967384221,0.9997819941863552,0.9999913932940645,0.9999935962789448,0.9038303393410261,0.9999994090386071,0.9998247924672862,0.016385481989311435,0.9999983736127961,0.999998750831052,0.9999964477875133,0.9999962396270674,0.9966672107042481,0.9999143402703873,0.00832851189810861,0.9999999300379714,0.9997994001039345,0.9999998735379863,0.9993498111693009,0.9999983663208803,0.9844001167598366,0.9905202430682047,0.009584456727671574,0.999999074570501,0.9999977490840335,0.9999867137480769,0.3208463112430783,0.07542933860452446,0.9999965080218064,0.9999989243391005,0.9968436662769014,0.23983762308354514,0.9999997074352317,0.9999116804199332,0.9999818545278205,0.9998518167867441,0.9999997251002607,0.9999909471018916,0.99985732952746,0.9999999494102273,0.9970277366645225,0.9999965044180519,0.02381433770870787,0.9999989987137978,0.9999989299277869,0.2563662148145333,0.9999999483693667,0.9999997938722015,0.9999979901701932,0.04340000635690133,0.9999559706296424,0.9965917057899588,0.004868126102554019,0.9990494873969983,0.9999980326313723,0.999998942738995,0.9999465864451403,0.9999984216952321,0.9998709457296261,0.999999921557445,2.8289740731230625e-05,6.432863729386849e-05,0.43195143124016644,0.0002759809867049936,6.200957769440252e-08,8.530122011866357e-08,0.23751965874660244,0.9999999408236517,0.9996760910273615,0.9998957749179872,0.9904830637397067,0.9983138543531822,0.9999148975452163,0.9524996388407546,2.6253093260195167e-05,0.541393452906259,0.9999990675530582,0.40020042426668667,0.9999999865344107,1.598788595197913e-05,7.981919854953817e-05,0.0008868491143899692,0.9999954820462705,0.9999990520019658,0.9999993175116538,0.9999887687835857,0.04589308709796384,0.00039653173981433565,6.784517297491599e-05 -हो,rgb,1.0,0.661982699884655,0.943269089007145,0.017775704963978133,0.8303977377658935,0.9999999996703441,1.0,0.9999999999998437,0.9999999999994,0.9999999999996148,0.9942672580516286,0.9693677602809678,0.9793402296282526,0.5171779251957619,0.015328758460291692,1.0,0.999989481820905,0.9999791554428419,0.9999912143436565,0.9999969587556546,0.999999755347409,0.9999999995749771,0.9999999998002631,0.9999999998243456,0.9999971029693275,0.999985490044322,1.0,0.9999973869196871,1.0,0.09911170633040023,0.9999999996584132,0.8410045414111558,0.9999999996389617,0.9999999999998457,0.0010236059865526585,1.0,0.9999910151662733,0.9999999950634235,0.9999999535987628,0.9999999985591663,0.00936424001436399,0.15844480114728537,0.9999999994976498,0.03857988699945948,1.0,0.8650207216346965,0.8122352641853872,0.9448765327874465,1.0,0.9999999988491104,0.9999999996915134,0.010213978688204225,0.9999999999996796,0.9999999995978,1.0,0.9999999985747017,0.9691150860135672,0.9560581122207923,0.9721043161318675,0.9852193291094515,0.9946535131566627,0.999999909063487,1.0,0.14769670131815837,0.0785570619592265,0.9999999999732756,0.9999992690330294,0.9999999999997953,0.9999999999998248,0.9999999999995299,0.9999999995987745,0.013772316393417939,0.008898359006021036,0.9999999999998679,0.9651583665048183,0.2105388288799842,0.9999953789401466,0.999999999920592,0.9999999996168452,0.9472432227645692,1.0,0.9745019118344288,0.9999999997641229,0.9361048087758284,0.9999999999997768,0.9999999996352209,1.0,0.9999999937611483,1.0,1.0,0.9999999999998743,1.0,0.9776573341088861,0.9299687045398278,0.9391981435535839,0.9337584775315838,1.0,0.9357094281570908,0.9737112852135242,0.9460115412211709,0.9400191178508176,1.0,0.9999999985695383,0.012933350957956224,0.9194013220118894,0.9999999996348803,1.0,0.9999999997653015,0.9998699848362601,0.9999999988212875,0.9999927948104357,0.012172942992440521,0.016228970805010127,0.9441646358059618,0.9876695638680147,0.9915356154876739,0.9999999999995643,0.9931428704585041,0.9694731440342866,0.9926079264259662,0.8494748539145327,0.9864052437784936,0.9999999991553212,0.011006266852892663,0.9504033697072424,0.9999960251581613,0.9842020897976049,0.9999999999993083,0.999999987111076,0.9999999999830367,0.9999636837342821,0.9999999999994345,0.9999999997037501,0.9999999999998561,0.999999999999557,0.9999968159019905,0.9999942719577379,0.9999910811625372,0.9999999959637444,0.07394660796066203,0.001053870701073299,1.0,0.9999999996385502,0.008970509288907118,0.9999986844212211,0.9999889420664638,0.9999715991194408,0.9999999997314004,0.9999986775674778,0.9999999999575693,0.010876376168892008,0.9999999944493956,1.0,0.9945513163594503,1.0,0.9833781282248366,0.9722199534587019,0.9999839136075738,0.9998509319941024,0.9999976371118263,0.9999946752994081,0.9999969824277323,1.0,0.9999926398017343,0.9999977043970412,0.99999945338107,0.9999986105595148,0.9785092825435624,0.9859048827104107,0.012729091629464943,0.9999999889384171,0.9999999996879447,0.9999999991683628,1.0,0.9999999810231283,1.0,1.0,0.010032503466989367,0.9999983510832475,0.9999884177372743,0.9999913639059836,1.0,0.0009707588514361669,0.9999999997661342,0.9999999996303612,1.0,0.008392555175661436,0.7998782441095722,0.9858412600002908,0.9743582596355375,0.9949915956588015,0.9999999999996434,1.0,0.9999833201815194,0.9999999999345583,1.0,0.9999999999991038,0.9716839716000003,0.9999999996484474,0.9999999996639579,0.009935823118570853,0.9999999960660826,0.9999991781868579,1.0,0.9917467233766344,0.999999999322406,1.0,0.01153449641388613,0.01610875789170634,1.0,0.9999999999911453,0.9999999976935259,0.9999964577040926,0.9790138925348012,0.9999997945329211,0.9805531474703882,0.9569797854126633,1.0,0.9131814134269043,0.8122563253625075,0.7508911303754683,0.009056350649967158,0.9999999996328184,0.14918867809772765,0.999975989949591,0.9999685042534415,0.6631537585298914,0.9999853113962531,1.0,0.8505368385890667,0.001320120172306947,0.9999999999966376,0.009406527343263906,0.9999999989406763,0.8308131053845192,0.9500338487024673,0.9465698586006996,0.05709815183705339,0.9999999999794402,0.9999999985917991,0.9999999993309636,0.0009704907600404554,0.9974973886784838,0.9954873093476135 -हो,shape,0.9951571313625793,0.007361222151652577,0.9999999999997655,0.9999999960281969,0.999999999999998,0.999992362571556,0.999999995755267,0.9995503167341158,0.5961117068645554,0.9998348863077557,0.16899314711123303,0.999745935756256,0.8547951883419381,0.18304159912444584,0.03875461464409103,0.9999830189454189,0.9998245736706651,0.9999811987600309,0.9999910774970823,0.9999783044184792,0.9999431752436394,0.9999998817833602,0.999999584176838,0.9999999998719724,0.9999997354629104,0.9999990784494953,0.9999999856400317,0.9999995495273144,0.9999999235015297,0.9999963892161612,0.999999880111562,0.9999999999827609,0.9997221389377523,0.9999941422478318,0.9996130036977726,0.9999980173008958,0.9999998230672014,0.9999999996197215,0.9998676501788852,0.06626932995973736,6.631510903892587e-05,8.414767677164691e-05,0.9999024239786961,0.9999761574240966,0.9999913413302514,0.9999999999989573,0.9999999999999218,0.9999999999999907,0.9999999999601743,0.9999757037001719,0.999999986115107,0.9999999999776155,0.9999927893319845,0.004576995518911275,0.017523338136454604,0.999984402108397,0.997205267535173,0.9984343623970907,0.9999955996520948,0.9991313520006687,0.9987385187089657,0.9998353504081858,0.999999830020641,8.332777294952849e-05,0.99999882776136,0.9999999326159713,0.9999935020484648,0.999987649925073,0.9997993719124664,0.9943820042302545,0.0011705657051057285,0.9817380290076884,0.000257411320646116,0.9999990988461559,0.0300642348623051,5.375788743363463e-05,0.9999999790178538,0.9999999895738386,0.9999997465359448,0.9999336859953555,0.999999599919821,0.9997941020189899,0.9999981311319929,0.999867853718373,0.9999963658875026,0.9999928416642607,0.999999840498854,0.999999999093466,0.9999999716515554,0.9999995401057454,0.9998121943684467,0.9999047196805925,0.9961230893789662,0.9994860992118745,0.9845079841801795,0.9987757425801009,0.9999942549169033,0.9932576550760156,0.9997182167418182,0.995410913972931,0.9999171182656659,0.0001798848076930378,0.011359304334399021,3.186954797097895e-05,0.999548014929555,0.9999881366608927,2.3947562120155632e-05,0.9999999996998583,0.9999999986428358,0.0012459287764966277,0.9999687124567141,5.4444044936954605e-05,0.9778089706115052,0.9969378869452864,0.9999953603245887,0.9998707638847808,0.9999997894374418,0.715734558389177,0.05198185701659224,0.9999999330868516,0.9999999999999998,0.9998623877438706,0.9999993858218073,3.32248503069252e-05,0.9999994621516144,0.9997515007372575,0.999970106243584,0.9999999937432638,0.9999971683919093,0.9999694330199127,0.9999999999999987,0.9999985463813652,0.9999997216036123,0.9999884234299576,0.9999986281974702,0.9998694943040499,0.9999527424823663,0.998824452891833,0.9999997773843368,0.9999855245294998,0.9999999996391773,0.9999981831429953,0.03509834807713975,0.7064815280268681,0.999614993693303,0.9998960767829139,0.9999274768854713,0.9999976826049037,0.9999998286154587,0.9999981703602159,6.053955944516841e-05,0.9313566464251996,0.9999997905808801,0.9394379996230448,0.9981647765494949,0.9983345726844483,0.999745935756256,0.9999999049442821,0.9999990380555063,0.9998550580129013,0.9999849018459122,0.9999174673583738,0.999999999491979,0.9999070846935991,0.999980043838264,0.9999989461585571,0.9999999951828593,0.9998614105305103,0.9999999998702791,0.9999999970046456,0.03457417400770013,0.9999995455820145,0.9998452626647193,0.9999998906202916,0.9993934078801818,0.9999990541918392,0.9928928309575308,0.29926409141098453,0.9995007857869876,0.9999992603517114,0.9999992207066102,0.9972692068770134,0.9999999999349785,0.9999999968637259,0.999996781475282,0.9999999841701961,0.9999999860534674,0.9986163081393294,0.9999674605778347,0.9408971885026863,0.9999999990446615,0.9999897910435994,0.9999994590325882,0.98443680067035,0.9998709153347838,0.9999999636531876,0.9999772919470192,0.9997047244510889,0.999999959026267,9.653705435672968e-05,0.9999999025559867,0.9999936531728597,0.9998986965072992,0.9999999991365542,0.9999380338713969,0.00161754153065364,0.8799167590294767,3.621119074436974e-05,0.5962874108041093,0.9999998278313967,0.9999997772759671,0.9999999969286166,0.9999999314063117,0.9996003297033939,0.9999995441971009,0.9999987733013549,0.99967715333949,0.9999999973803464,0.999999999995308,0.9999999999994778,0.9999999999999754,3.6852010348661576e-05,0.0006957351337178044,6.638685648338057e-05,0.9999882509685551,0.9999667193948674,0.9975376114650316,0.9999891670592846,0.08608125507265242,0.9999999999686173,0.9995984240376963,0.999983294902722,0.0003870290025397378,0.08235879068209402,0.9999999999999998,0.9999999887220278,0.9999999999997262,0.9999993952224608,0.9999927011189318,0.9999440107874302,0.9999999979208614,0.9999998632167161,0.9999916155938691,0.99998420846142 -हो,object,0.9999988049914205,0.027371470750692614,0.9999999918256365,0.35238334930549187,0.9999999984745,0.9999999982652901,0.9999999999998836,0.9998353948134777,0.9997626581081009,0.9999915640854156,0.7315762222389047,0.9760208401674256,0.3282352775139921,0.0009500637557584328,1.6325887724660102e-06,0.9999999999978384,0.9999519606985475,0.9999524753618685,0.9999964121868056,0.9997639587815863,0.9999909365264131,0.9999999975926126,0.9999999998820162,0.9999999999755125,0.9999998874776843,0.9999994720345732,0.9999999999738987,0.999999502806871,0.9999999999880784,0.9998686294755047,0.9999999876485116,0.9999999460802371,0.9999989728594229,0.9999999536440517,0.006482786900898446,0.9999999997565694,0.9999912016148156,0.9999998067460174,0.9998064552661406,0.9991611456038875,2.6811174094408062e-08,8.74294921326518e-05,0.9999999915070946,0.9994862847464859,0.999999999996249,0.9999999881565927,0.9999999957503996,0.9999999987997128,0.9999999999999443,0.999999269673443,0.9999999999851623,0.9842329718146986,0.9999994319634165,0.9965575581556096,0.9999829514832181,0.9999993832347733,0.9199830527150047,0.9040128039248763,0.9372041863870434,0.9087059471069275,0.9780576843045552,0.999996872399505,0.99999999999997,5.773588751235637e-05,0.9997162758741202,0.999999999620244,0.9999998666529963,0.9999984439900604,0.9999937114938352,0.9998023838280772,0.9941755486770566,6.493423513041645e-05,3.084485813966759e-08,0.999999872849509,0.32169242504045253,6.047407502427249e-05,0.9999999909433698,0.9999999998186446,0.999999987712617,0.9999926815291967,0.9999999974380633,0.9955496464241474,0.9999986566319906,0.9675122634780565,0.9999996400793197,0.9999947911257159,0.9999999999999685,0.9999999218754431,0.9999999875367619,0.9999999946508142,0.9999963273955406,0.9999999836417697,0.98711886700644,0.9423305677217025,0.9769909451349483,0.9063903434418206,0.9999999999989,0.6685975743684865,0.9970482071042872,0.9682900907888979,0.9999474243801255,0.9999985479335936,0.9998368838714125,2.7497928873131862e-06,0.9997454866323919,0.9999999985852619,0.9999389028102401,0.9999999999550728,0.9999997338147009,0.9977132672395477,0.9999985463255758,5.546771455982023e-05,9.17566405468758e-05,0.9999023400691209,0.9999998338261534,0.9999879591267132,0.9999999958210011,0.9988429227953782,0.591644441195155,0.9999552762323878,0.9999999992362045,0.9999975227386306,0.9999999440812235,4.4560891469654556e-06,0.9999991378109783,0.9999740704093596,0.9999985630548314,0.9999999992836506,0.99999955976937,0.999999410681514,0.9999996544471539,0.9999999749468453,0.9999999680455075,0.9999986081145404,0.9999999807575045,0.9999879227064444,0.9999185058076618,0.9999974549603103,0.9999997986605512,0.9996146064941018,0.022514904063072504,0.9999999999993092,0.9999116192995184,0.0005998888915107892,0.9996480068191808,0.9999999832780994,0.9998671429643895,0.9999999713243327,0.999999949463155,0.9999999922941339,1.4968680980453166e-05,0.991077711052734,0.9999999999999489,0.9297940995549587,0.9999999937157729,0.9671555601472472,0.9783149567221233,0.9999990057528083,0.9999846667032725,0.9999854811858268,0.9999214796940655,0.9999636086381859,0.9999999999946956,0.9999650217753356,0.9999918364264253,0.9999998368476335,0.9999999942384576,0.9790262689452622,0.9999995904110944,0.945821826620324,0.9059952783812122,0.999999999481098,0.999693219200583,0.9999999999999611,0.9998306147690887,0.9999999999960516,0.9999999261605194,4.5308755459973645e-05,0.9999578207020469,0.9999960726780157,0.9999985858830323,0.9999999997626754,0.03287856442778394,0.9999999999875815,0.9999999995877207,0.9999999999991975,0.8065551502974125,0.9504106624112335,0.9998946797713796,0.7575580377575166,0.999999971967693,0.9999998446356934,0.9999999701730857,0.9999962321556232,0.9999649422077157,0.9999999999996456,0.99999995710851,0.9999084639653003,0.9999999999447489,0.9279994769350579,0.7418432030364672,0.9999407514596864,0.9999765566963604,0.9999999999799649,0.9999938102044392,0.9990084817684353,0.999999997093908,2.2982722511812074e-06,6.685127243552837e-08,0.9999999951915006,0.9999999747333479,0.9999997887254342,0.9999999486789244,0.6638939641025575,0.9999994395075884,0.9999932811879166,0.999994100122131,0.9999999999999905,0.9999999828694363,0.9999999487650502,0.9999999978854979,3.492536188741923e-08,0.9978197988319176,5.487170944854433e-05,0.9999960589010221,0.9999641509916701,0.2812375664781229,0.9999859094942243,0.9999999993058535,0.9999999971607545,0.08283672562479713,0.9999998774428921,3.6044249320125586e-08,0.9975030605048333,0.9999999992046706,0.9999951608743458,0.9999999503273582,0.9999297900044902,0.9999952984505395,0.999994839680615,0.9999999013841978,0.8202093647554743,0.9999998313065532,0.9999999173249101 diff --git a/testResults/testing_hindi_stem/NoOfDataPoints/6000/results.txt b/testResults/testing_hindi_stem/NoOfDataPoints/6000/results.txt deleted file mode 100644 index 6d3749f..0000000 --- a/testResults/testing_hindi_stem/NoOfDataPoints/6000/results.txt +++ /dev/null @@ -1,2 +0,0 @@ -Test Instances :: arch/arch_3 banana/banana_3 cabbage/cabbage_4 carrot/carrot_4 corn/corn_4 cube/cube_2 cuboid/cuboid_4 cucumber/cucumber_3 cylinder/cylinder_2 eggplant/eggplant_2 lemon/lemon_2 lime/lime_3 orange/orange_1 plum/plum_3 potato/potato_1 semicylinder/semicylinder_3 tomato/tomato_1 triangle/triangle_3 -Tokens :: अर्द्ध चित्र हैं कच्च एक बैग उपयोग केल पिल लिए विभिन्न छिल सब्ज साबुन खा बेलनाकार मीठ बेंगन बन टमाटर आलूबुखार आर्च इस कोई सेब से फूलगोभ तैयार हो आध काल छोट पील प्लास्टिक बहुत वर्ग बीट नारंग जिसक वस्त है हे बेंग पा संक्षेत्रनुम मेहराब संतर वास्त ठंड दिख पक अन्य जो रबर बंद वृत्त सलाद निम्ब इसक घनक्षेत्र बैंग क्षेत्र किय रूप फल में सिलेंडर त्रिभुज चीज़ प्रकार लाल हर टुकड़ व्यंजन रंग कहे आयताकार कह का कर शरीर अर्ध ककड़ अमरुद हुआ और फसल पत् सफ़ेद आकर मक रस रह ककड़ ये यह स्वास्थ्य या भोजन षटफलक घनाकार खीर लग बैगन चौकोर अनाज घनाभ बेर मकई भी पत्तागोभ वाल बेलन के अमरूद नींब जा काग़ज़ नुम आल खट्ट आम गाजर मक्क ह गोब गोभ त्रिकोण आकार घन खंड चोकोर त्रिकोणीय को नील की बैंगन सबज इस्तेमाल फिर नीब अच्छ रब्बर भुट्ट diff --git a/testResults/testing_hindi_stem/negative_insts.csv b/testResults/testing_hindi_stem/negative_insts.csv deleted file mode 100644 index 37e0030..0000000 --- a/testResults/testing_hindi_stem/negative_insts.csv +++ /dev/null @@ -1,13 +0,0 @@ -,अर्द्ध,चित्र,हैं,एक,बैग,उपयोग,आल,जा,रंग,लिए,विभिन्न,फल,सब्ज,साबुन,खा,शरीर,मीठ,आकर,बेंगन,बन,ककड़,आर्च,इस,कोई,सेब,से,फूलगोभ,तैयार,गोभ,काल,आकार,पील,प्लास्टिक,बहुत,वर्ग,बीट,नारंग,जिसक,हो,है,आलूबुखार,रब्बर,बेंग,पा,संक्षेत्रनुम,मेहराब,संतर,वास्त,ठंड,दिख,पक,अन्य,जो,रबर,वृत्त,और,निम्ब,इसक,घनक्षेत्र,बैंग,क्षेत्र,किय,रूप,छिल,में,सिलेंडर,त्रिभुज,चीज़,प्रकार,लाल,हर,टुकड़,व्यंजन,पिल,कहे,आयताकार,कह,का,कर,बेलनाकार,अर्ध,वस्त,अमरुद,बंद,सलाद,फसल,मक,सफ़ेद,हुआ,पत्,रस,हे,ककड़,ये,यह,स्वास्थ्य,या,रह,भोजन,षटफलक,घनाकार,खीर,लग,बैगन,चौकोर,अनाज,घनाभ,बेर,मकई,भी,पत्तागोभ,वाल,बेलन,के,अमरूद,नींब,बैंगन,काग़ज़,नुम,केल,खट्ट,आम,गाजर,मक्क,ह,गोब,आध,त्रिकोण,छोट,घन,खंड,चोकोर,त्रिकोणीय,को,नील,की,कच्च,टमाटर,इस्तेमाल,फिर,नीब,अच्छ,सबज,भुट्ट, -lemon/lemon_4,banana/banana_4,,eggplant/eggplant_3,,orange/orange_3,cube/cube_1,cube/cube_3,cube/cube_1,corn/corn_1,arch/arch_1,cube/cube_3,semicylinder/semicylinder_1,cube/cube_3,orange/orange_3,semicylinder/semicylinder_1,orange/orange_4,lime/lime_1,orange/orange_2,cylinder/cylinder_1,arch/arch_1,semicylinder/semicylinder_2,orange/orange_3,cube/cube_1,orange/orange_3,cube/cube_3,tomato/tomato_3,orange/orange_3,cylinder/cylinder_1,orange/orange_2,orange/orange_2,orange/orange_3,cucumber/cucumber_4,orange/orange_2,cube/cube_1,orange/orange_2,lime/lime_4,cube/cube_3,semicylinder/semicylinder_1,triangle/triangle_4,,lime/lime_4,orange/orange_2,banana/banana_2,cube/cube_4,orange/orange_2,potato/potato_4,cube/cube_3,potato/potato_2,banana/banana_4,cucumber/cucumber_4,cube/cube_3,cube/cube_4,cabbage/cabbage_2,orange/orange_2,potato/potato_4,cuboid/cuboid_3,semicylinder/semicylinder_1,triangle/triangle_1,orange/orange_2,triangle/triangle_1,orange/orange_2,cube/cube_1,plum/plum_4,cube/cube_4,,orange/orange_2,orange/orange_2,orange/orange_2,tomato/tomato_3,banana/banana_4,tomato/tomato_3,cabbage/cabbage_1,triangle/triangle_1,cube/cube_3,arch/arch_1,cabbage/cabbage_1,cylinder/cylinder_1,,semicylinder/semicylinder_1,potato/potato_2,orange/orange_3,eggplant/eggplant_3,cube/cube_4,orange/orange_3,cube/cube_4,cube/cube_4,cube/cube_4,cube/cube_4,cabbage/cabbage_1,cube/cube_4,cucumber/cucumber_4,corn/corn_1,semicylinder/semicylinder_2,,,cube/cube_1,potato/potato_4,cylinder/cylinder_1,orange/orange_2,cabbage/cabbage_1,orange/orange_2,semicylinder/semicylinder_2,orange/orange_2,cylinder/cylinder_1,orange/orange_4,cube/cube_4,cabbage/cabbage_1,lime/lime_4,cube/cube_4,tomato/tomato_3,orange/orange_3,cabbage/cabbage_1,orange/orange_2,,cube/cube_4,semicylinder/semicylinder_1,triangle/triangle_1,cube/cube_4,banana/banana_4,triangle/triangle_1,cube/cube_3,cube/cube_3,banana/banana_4,cube/cube_4,cube/cube_4,orange/orange_3,cucumber/cucumber_4,orange/orange_2,cube/cube_4,orange/orange_2,cucumber/cucumber_4,orange/orange_2,orange/orange_2,arch/arch_1,potato/potato_4,,tomato/tomato_2,cube/cube_3,cube/cube_4,orange/orange_2,cucumber/cucumber_4,triangle/triangle_4,banana/banana_4,cube/cube_4, -orange/orange_3,banana/banana_2,,cabbage/cabbage_2,,orange/orange_2,,arch/arch_2,,,,triangle/triangle_2,cube/cube_3,cube/cube_1,potato/potato_4,cube/cube_4,cube/cube_1,cuboid/cuboid_2,orange/orange_4,cube/cube_4,cube/cube_4,orange/orange_2,potato/potato_4,,potato/potato_4,lime/lime_4,potato/potato_2,orange/orange_2,lemon/lemon_1,orange/orange_4,orange/orange_4,potato/potato_4,carrot/carrot_3,orange/orange_4,arch/arch_1,orange/orange_4,lime/lime_1,arch/arch_2,plum/plum_4,cylinder/cylinder_4,,lime/lime_2,carrot/carrot_3,cube/cube_1,tomato/tomato_3,orange/orange_4,potato/potato_3,arch/arch_2,tomato/tomato_3,cube/cube_1,corn/corn_3,lime/lime_2,tomato/tomato_3,potato/potato_3,orange/orange_4,potato/potato_3,,cube/cube_4,cube/cube_3,orange/orange_4,cube/cube_1,orange/orange_4,,cabbage/cabbage_2,potato/potato_2,,orange/orange_4,potato/potato_3,potato/potato_2,orange/orange_2,cucumber/cucumber_4,tomato/tomato_2,cucumber/cucumber_4,cube/cube_3,cucumber/cucumber_4,cuboid/cuboid_1,potato/potato_4,arch/arch_1,,cabbage/cabbage_3,cucumber/cucumber_4,orange/orange_2,,tomato/tomato_3,orange/orange_2,cube/cube_3,orange/orange_4,potato/potato_2,potato/potato_2,cube/cube_4,cube/cube_1,arch/arch_2,,orange/orange_2,,,cylinder/cylinder_1,orange/orange_4,carrot/carrot_3,orange/orange_4,orange/orange_2,orange/orange_4,orange/orange_2,cube/cube_1,cube/cube_4,carrot/carrot_3,potato/potato_2,orange/orange_3,lime/lime_1,potato/potato_2,arch/arch_2,orange/orange_2,eggplant/eggplant_3,orange/orange_4,,tomato/tomato_3,cube/cube_4,cube/cube_1,tomato/tomato_3,cucumber/cucumber_4,cube/cube_4,cucumber/cucumber_4,arch/arch_2,cube/cube_1,potato/potato_2,potato/potato_2,orange/orange_2,tomato/tomato_3,potato/potato_3,tomato/tomato_3,potato/potato_2,lime/lime_4,orange/orange_4,potato/potato_3,cabbage/cabbage_2,orange/orange_4,,tomato/tomato_3,cucumber/cucumber_4,cube/cube_3,orange/orange_4,arch/arch_2,cube/cube_3,cube/cube_1,potato/potato_2, -,banana/banana_1,,,,orange/orange_4,,cuboid/cuboid_1,,,,cuboid/cuboid_1,arch/arch_2,arch/arch_1,orange/orange_4,semicylinder/semicylinder_4,arch/arch_1,cylinder/cylinder_1,carrot/carrot_3,cube/cube_3,cube/cube_3,orange/orange_4,potato/potato_2,,orange/orange_4,lime/lime_1,eggplant/eggplant_4,orange/orange_4,cuboid/cuboid_1,cube/cube_1,cube/cube_1,orange/orange_4,cabbage/cabbage_3,carrot/carrot_2,cuboid/cuboid_1,cucumber/cucumber_4,cuboid/cuboid_2,cylinder/cylinder_3,cube/cube_4,,,lime/lime_1,cucumber/cucumber_4,banana/banana_1,arch/arch_2,lime/lime_4,potato/potato_2,cylinder/cylinder_3,plum/plum_4,cuboid/cuboid_1,,cylinder/cylinder_3,arch/arch_2,potato/potato_2,carrot/carrot_2,potato/potato_2,,arch/arch_2,cuboid/cuboid_2,cucumber/cucumber_4,arch/arch_1,cucumber/cucumber_4,,plum/plum_1,orange/orange_2,,carrot/carrot_3,orange/orange_4,carrot/carrot_2,plum/plum_1,lime/lime_4,tomato/tomato_4,carrot/carrot_3,triangle/triangle_2,cuboid/cuboid_3,triangle/triangle_2,orange/orange_4,cube/cube_3,,cabbage/cabbage_2,tomato/tomato_3,banana/banana_4,,arch/arch_2,orange/orange_4,tomato/tomato_3,orange/orange_2,orange/orange_2,orange/orange_2,potato/potato_2,banana/banana_1,arch/arch_4,,cube/cube_1,,,semicylinder/semicylinder_2,tomato/tomato_3,lemon/lemon_1,lime/lime_2,orange/orange_4,lime/lime_4,orange/orange_4,cuboid/cuboid_1,cube/cube_3,cabbage/cabbage_3,orange/orange_2,potato/potato_4,cuboid/cuboid_2,orange/orange_2,arch/arch_4,orange/orange_4,cabbage/cabbage_2,carrot/carrot_3,,arch/arch_2,cube/cube_3,arch/arch_1,arch/arch_2,lime/lime_4,cube/cube_3,arch/arch_2,arch/arch_4,arch/arch_1,orange/orange_2,orange/orange_2,orange/orange_4,carrot/carrot_3,orange/orange_4,arch/arch_2,orange/orange_4,lime/lime_2,carrot/carrot_3,orange/orange_4,cuboid/cuboid_1,tomato/tomato_4,,arch/arch_2,arch/arch_2,arch/arch_2,banana/banana_1,arch/arch_4,cylinder/cylinder_4,arch/arch_1,orange/orange_2, -,cucumber/cucumber_4,,,,cube/cube_1,,lime/lime_1,,,,cube/cube_1,cuboid/cuboid_2,cuboid/cuboid_1,lime/lime_4,cylinder/cylinder_4,arch/arch_4,cylinder/cylinder_3,carrot/carrot_2,cube/cube_1,arch/arch_4,cube/cube_1,cucumber/cucumber_4,,tomato/tomato_3,cuboid/cuboid_2,,cube/cube_1,cube/cube_1,banana/banana_1,cuboid/cuboid_1,orange/orange_2,cucumber/cucumber_2,lemon/lemon_4,cylinder/cylinder_1,carrot/carrot_3,cylinder/cylinder_1,cuboid/cuboid_3,semicylinder/semicylinder_4,,,cuboid/cuboid_2,lime/lime_4,cuboid/cuboid_1,carrot/carrot_3,lime/lime_2,cucumber/cucumber_4,cuboid/cuboid_3,plum/plum_2,lime/lime_2,,cabbage/cabbage_2,arch/arch_4,,lemon/lemon_4,cucumber/cucumber_4,,carrot/carrot_3,,carrot/carrot_3,cuboid/cuboid_1,cucumber/cucumber_1,,,lime/lime_2,,carrot/carrot_2,potato/potato_4,eggplant/eggplant_3,potato/potato_2,lime/lime_2,arch/arch_4,carrot/carrot_2,cuboid/cuboid_1,cucumber/cucumber_2,cube/cube_3,lime/lime_4,cuboid/cuboid_1,,triangle/triangle_4,carrot/carrot_3,cucumber/cucumber_4,,arch/arch_4,cube/cube_1,arch/arch_2,semicylinder/semicylinder_1,lime/lime_2,lime/lime_2,lime/lime_2,arch/arch_1,cuboid/cuboid_3,,arch/arch_1,,,semicylinder/semicylinder_4,carrot/carrot_3,lemon/lemon_3,semicylinder/semicylinder_1,lime/lime_4,lime/lime_2,cube/cube_1,lemon/lemon_4,cube/cube_1,carrot/carrot_2,lime/lime_2,potato/potato_2,cylinder/cylinder_1,lime/lime_2,cuboid/cuboid_3,cube/cube_1,semicylinder/semicylinder_2,carrot/carrot_2,,arch/arch_4,arch/arch_2,cuboid/cuboid_1,arch/arch_4,lime/lime_2,arch/arch_2,cuboid/cuboid_3,cuboid/cuboid_3,cuboid/cuboid_1,lime/lime_2,semicylinder/semicylinder_1,cube/cube_1,carrot/carrot_2,potato/potato_4,arch/arch_4,tomato/tomato_3,lime/lime_1,carrot/carrot_2,plum/plum_1,cuboid/cuboid_3,lemon/lemon_4,,arch/arch_4,lime/lime_2,carrot/carrot_3,cucumber/cucumber_4,cuboid/cuboid_3,cuboid/cuboid_2,cuboid/cuboid_1,lime/lime_2, -,lime/lime_4,,,,cuboid/cuboid_1,,cuboid/cuboid_2,,,,cuboid/cuboid_2,triangle/triangle_1,cuboid/cuboid_2,lime/lime_2,,cylinder/cylinder_1,triangle/triangle_2,eggplant/eggplant_3,arch/arch_1,,arch/arch_1,lime/lime_4,,tomato/tomato_4,cylinder/cylinder_1,,cuboid/cuboid_1,corn/corn_2,cuboid/cuboid_1,lemon/lemon_4,corn/corn_1,cabbage/cabbage_1,eggplant/eggplant_3,lemon/lemon_4,carrot/carrot_2,cylinder/cylinder_3,cucumber/cucumber_2,orange/orange_4,,,cylinder/cylinder_1,cucumber/cucumber_1,lemon/lemon_4,arch/arch_4,eggplant/eggplant_1,lime/lime_4,cucumber/cucumber_2,plum/plum_1,cylinder/cylinder_1,,triangle/triangle_4,cuboid/cuboid_3,,eggplant/eggplant_3,lime/lime_4,,arch/arch_4,,carrot/carrot_2,arch/arch_4,lime/lime_2,,,semicylinder/semicylinder_1,,eggplant/eggplant_3,eggplant/eggplant_3,eggplant/eggplant_4,tomato/tomato_4,lime/lime_1,cabbage/cabbage_3,carrot/carrot_1,cube/cube_1,triangle/triangle_1,cube/cube_1,lime/lime_2,cube/cube_1,,,carrot/carrot_2,carrot/carrot_3,,cuboid/cuboid_3,banana/banana_1,arch/arch_4,semicylinder/semicylinder_2,semicylinder/semicylinder_1,semicylinder/semicylinder_1,semicylinder/semicylinder_1,carrot/carrot_3,cucumber/cucumber_2,,arch/arch_2,,,cabbage/cabbage_2,eggplant/eggplant_3,,cube/cube_4,carrot/carrot_3,lime/lime_1,arch/arch_1,triangle/triangle_2,arch/arch_1,eggplant/eggplant_1,semicylinder/semicylinder_1,lime/lime_4,cylinder/cylinder_3,semicylinder/semicylinder_1,plum/plum_4,banana/banana_1,potato/potato_2,potato/potato_4,,cuboid/cuboid_3,arch/arch_4,arch/arch_4,cuboid/cuboid_3,lime/lime_1,semicylinder/semicylinder_1,cucumber/cucumber_2,cuboid/cuboid_2,lime/lime_2,semicylinder/semicylinder_1,cylinder/cylinder_4,banana/banana_1,tomato/tomato_4,eggplant/eggplant_3,cuboid/cuboid_3,tomato/tomato_4,carrot/carrot_2,tomato/tomato_4,lime/lime_2,lemon/lemon_3,orange/orange_2,,cuboid/cuboid_3,cuboid/cuboid_2,arch/arch_4,lime/lime_4,cuboid/cuboid_2,,lime/lime_2,semicylinder/semicylinder_1, -,triangle/triangle_2,,,,lemon/lemon_4,,cylinder/cylinder_3,,,,,cabbage/cabbage_3,triangle/triangle_1,carrot/carrot_2,,triangle/triangle_2,corn/corn_1,potato/potato_4,cuboid/cuboid_1,,arch/arch_2,cucumber/cucumber_1,,eggplant/eggplant_3,cylinder/cylinder_3,,lemon/lemon_4,,lemon/lemon_4,triangle/triangle_2,banana/banana_4,cylinder/cylinder_3,eggplant/eggplant_4,cylinder/cylinder_4,tomato/tomato_4,triangle/triangle_2,cabbage/cabbage_3,,,,cylinder/cylinder_3,carrot/carrot_2,triangle/triangle_2,cuboid/cuboid_3,lemon/lemon_4,lime/lime_2,cabbage/cabbage_3,orange/orange_4,triangle/triangle_2,,cylinder/cylinder_4,semicylinder/semicylinder_2,,eggplant/eggplant_4,lime/lime_2,,cuboid/cuboid_3,,tomato/tomato_4,cuboid/cuboid_2,cucumber/cucumber_2,,,cylinder/cylinder_4,,banana/banana_4,semicylinder/semicylinder_2,plum/plum_4,,triangle/triangle_2,semicylinder/semicylinder_2,cucumber/cucumber_2,,cabbage/cabbage_3,,eggplant/eggplant_1,,,,corn/corn_1,carrot/carrot_2,,triangle/triangle_1,cuboid/cuboid_1,triangle/triangle_1,semicylinder/semicylinder_4,cylinder/cylinder_4,cylinder/cylinder_4,semicylinder/semicylinder_2,cuboid/cuboid_1,cabbage/cabbage_3,,arch/arch_4,,,cylinder/cylinder_4,eggplant/eggplant_4,,semicylinder/semicylinder_4,carrot/carrot_2,lemon/lemon_4,arch/arch_2,lemon/lemon_3,cuboid/cuboid_1,eggplant/eggplant_3,cylinder/cylinder_4,lime/lime_2,triangle/triangle_2,cylinder/cylinder_4,plum/plum_2,cuboid/cuboid_1,,eggplant/eggplant_3,,semicylinder/semicylinder_2,cuboid/cuboid_3,cuboid/cuboid_2,semicylinder/semicylinder_2,eggplant/eggplant_1,cylinder/cylinder_3,semicylinder/semicylinder_1,semicylinder/semicylinder_1,cylinder/cylinder_1,cylinder/cylinder_4,semicylinder/semicylinder_2,cuboid/cuboid_1,triangle/triangle_1,semicylinder/semicylinder_2,triangle/triangle_1,lemon/lemon_4,lemon/lemon_4,eggplant/eggplant_3,eggplant/eggplant_3,,banana/banana_2,,plum/plum_4,semicylinder/semicylinder_1,cuboid/cuboid_3,lime/lime_2,semicylinder/semicylinder_1,,cylinder/cylinder_1,cylinder/cylinder_4, -,corn/corn_1,,,,triangle/triangle_2,,triangle/triangle_2,,,,,triangle/triangle_4,triangle/triangle_2,lemon/lemon_4,,,cylinder/cylinder_4,eggplant/eggplant_4,cuboid/cuboid_3,,arch/arch_4,lime/lime_2,,,triangle/triangle_2,,triangle/triangle_2,,triangle/triangle_2,lemon/lemon_1,,cabbage/cabbage_2,plum/plum_4,,eggplant/eggplant_1,lemon/lemon_1,cabbage/cabbage_2,,,,lemon/lemon_1,cucumber/cucumber_2,lemon/lemon_1,triangle/triangle_1,eggplant/eggplant_3,lime/lime_1,cabbage/cabbage_2,,lemon/lemon_1,,,tomato/tomato_2,,plum/plum_4,carrot/carrot_2,,triangle/triangle_1,,eggplant/eggplant_1,cylinder/cylinder_1,eggplant/eggplant_1,,,semicylinder/semicylinder_2,,corn/corn_1,eggplant/eggplant_4,plum/plum_2,,lemon/lemon_1,plum/plum_4,eggplant/eggplant_3,,triangle/triangle_4,,eggplant/eggplant_3,,,,corn/corn_3,triangle/triangle_1,,tomato/tomato_2,lemon/lemon_4,semicylinder/semicylinder_2,plum/plum_4,semicylinder/semicylinder_2,semicylinder/semicylinder_2,semicylinder/semicylinder_4,arch/arch_4,triangle/triangle_4,,cylinder/cylinder_1,,,,,,plum/plum_4,lime/lime_2,lemon/lemon_1,arch/arch_4,,cuboid/cuboid_3,corn/corn_1,semicylinder/semicylinder_2,eggplant/eggplant_1,lemon/lemon_1,semicylinder/semicylinder_2,,lemon/lemon_4,,banana/banana_4,,tomato/tomato_2,triangle/triangle_1,cylinder/cylinder_1,tomato/tomato_2,eggplant/eggplant_3,semicylinder/semicylinder_2,cabbage/cabbage_3,cabbage/cabbage_3,triangle/triangle_2,semicylinder/semicylinder_2,semicylinder/semicylinder_4,lemon/lemon_4,corn/corn_1,eggplant/eggplant_4,semicylinder/semicylinder_2,eggplant/eggplant_3,eggplant/eggplant_3,eggplant/eggplant_4,potato/potato_4,,lemon/lemon_3,,plum/plum_1,cylinder/cylinder_3,triangle/triangle_1,lime/lime_1,cabbage/cabbage_3,,triangle/triangle_2,semicylinder/semicylinder_2, -,corn/corn_3,,,,lemon/lemon_1,,corn/corn_1,,,,,,,eggplant/eggplant_3,,,lemon/lemon_3,plum/plum_4,cuboid/cuboid_2,,cylinder/cylinder_1,lime/lime_1,,,lemon/lemon_1,,lemon/lemon_1,,lemon/lemon_1,lemon/lemon_3,,triangle/triangle_4,plum/plum_1,,lemon/lemon_4,cylinder/cylinder_4,triangle/triangle_4,,,,cylinder/cylinder_4,eggplant/eggplant_1,corn/corn_1,semicylinder/semicylinder_2,banana/banana_4,carrot/carrot_2,triangle/triangle_4,,semicylinder/semicylinder_4,,,plum/plum_1,,plum/plum_1,eggplant/eggplant_3,,semicylinder/semicylinder_2,,lemon/lemon_4,lemon/lemon_4,eggplant/eggplant_3,,,semicylinder/semicylinder_4,,corn/corn_3,plum/plum_4,plum/plum_1,,cylinder/cylinder_4,plum/plum_1,cabbage/cabbage_3,,cuboid/cuboid_2,,orange/orange_2,,,,corn/corn_2,eggplant/eggplant_3,,plum/plum_4,triangle/triangle_2,plum/plum_4,cabbage/cabbage_2,semicylinder/semicylinder_4,semicylinder/semicylinder_4,plum/plum_4,triangle/triangle_1,cuboid/cuboid_2,,triangle/triangle_2,,,,,,,eggplant/eggplant_1,,cylinder/cylinder_1,,cuboid/cuboid_2,eggplant/eggplant_4,semicylinder/semicylinder_4,eggplant/eggplant_3,cylinder/cylinder_4,semicylinder/semicylinder_4,,triangle/triangle_2,,corn/corn_1,,plum/plum_1,cabbage/cabbage_3,lemon/lemon_4,plum/plum_4,,cylinder/cylinder_4,cabbage/cabbage_2,triangle/triangle_4,lemon/lemon_1,semicylinder/semicylinder_4,plum/plum_4,triangle/triangle_2,corn/corn_3,plum/plum_4,plum/plum_4,plum/plum_1,corn/corn_1,plum/plum_1,eggplant/eggplant_4,,banana/banana_4,,plum/plum_2,triangle/triangle_4,semicylinder/semicylinder_2,eggplant/eggplant_1,triangle/triangle_4,,lemon/lemon_1,semicylinder/semicylinder_4, -,corn/corn_2,,,,lemon/lemon_3,,cylinder/cylinder_4,,,,,,,orange/orange_2,,,triangle/triangle_4,plum/plum_1,triangle/triangle_1,,triangle/triangle_2,carrot/carrot_2,,,triangle/triangle_4,,lemon/lemon_3,,lemon/lemon_3,,,,potato/potato_2,,eggplant/eggplant_3,lemon/lemon_3,cuboid/cuboid_2,,,,lemon/lemon_3,eggplant/eggplant_3,orange/orange_4,plum/plum_4,banana/banana_2,eggplant/eggplant_3,cuboid/cuboid_2,,lemon/lemon_3,,,plum/plum_2,,potato/potato_2,corn/corn_1,,plum/plum_4,,eggplant/eggplant_3,triangle/triangle_2,eggplant/eggplant_4,,,plum/plum_4,,corn/corn_2,plum/plum_1,orange/orange_4,,lemon/lemon_3,,eggplant/eggplant_4,,,,eggplant/eggplant_4,,,,plum/plum_4,triangle/triangle_2,,plum/plum_1,lemon/lemon_1,plum/plum_1,potato/potato_2,plum/plum_4,plum/plum_4,cabbage/cabbage_2,triangle/triangle_2,,,lemon/lemon_1,,,,,,,eggplant/eggplant_3,,triangle/triangle_2,,triangle/triangle_1,corn/corn_3,plum/plum_4,cabbage/cabbage_2,lemon/lemon_3,plum/plum_4,,lemon/lemon_1,,corn/corn_3,,plum/plum_2,semicylinder/semicylinder_2,triangle/triangle_2,plum/plum_1,,cabbage/cabbage_2,triangle/triangle_4,,semicylinder/semicylinder_4,plum/plum_4,cabbage/cabbage_2,lemon/lemon_1,corn/corn_2,plum/plum_1,plum/plum_2,plum/plum_2,eggplant/eggplant_4,potato/potato_2,plum/plum_4,,potato/potato_2,,,semicylinder/semicylinder_4,plum/plum_1,eggplant/eggplant_3,cucumber/cucumber_2,,semicylinder/semicylinder_4,plum/plum_4, -,,,,,,,triangle/triangle_4,,,,,,,lemon/lemon_1,,,,potato/potato_2,triangle/triangle_2,,lemon/lemon_1,eggplant/eggplant_3,,,corn/corn_1,,banana/banana_2,,,,,,,,eggplant/eggplant_4,triangle/triangle_4,cylinder/cylinder_4,,,,,eggplant/eggplant_4,,plum/plum_1,,corn/corn_1,cylinder/cylinder_4,,,,,,,,eggplant/eggplant_4,,plum/plum_1,,eggplant/eggplant_4,lemon/lemon_1,,,,cabbage/cabbage_2,,plum/plum_4,potato/potato_2,,,,,,,,,cabbage/cabbage_2,,,,plum/plum_1,corn/corn_1,,plum/plum_2,lemon/lemon_3,plum/plum_2,,cabbage/cabbage_2,orange/orange_4,,plum/plum_1,,,lemon/lemon_3,,,,,,,eggplant/eggplant_4,,lemon/lemon_1,,triangle/triangle_2,corn/corn_2,cabbage/cabbage_2,eggplant/eggplant_4,triangle/triangle_4,cabbage/cabbage_2,,lemon/lemon_3,,corn/corn_2,,,corn/corn_2,lemon/lemon_1,plum/plum_2,,triangle/triangle_4,cuboid/cuboid_2,,lemon/lemon_3,cabbage/cabbage_2,orange/orange_4,lemon/lemon_3,plum/plum_1,potato/potato_2,,,lemon/lemon_3,,potato/potato_2,,,,,cylinder/cylinder_4,plum/plum_2,banana/banana_4,,,lemon/lemon_3,cabbage/cabbage_2, -,,,,,,,,,,,,,,lemon/lemon_3,,,,plum/plum_2,lemon/lemon_3,,lemon/lemon_3,corn/corn_1,,,cylinder/cylinder_4,,,,,,,,,,cabbage/cabbage_3,,,,,,,cabbage/cabbage_3,,,,eggplant/eggplant_4,,,,,,,,,corn/corn_3,,plum/plum_2,,cabbage/cabbage_3,lemon/lemon_3,,,,orange/orange_4,,plum/plum_1,plum/plum_2,,,,,,,,,potato/potato_2,,,,plum/plum_2,corn/corn_3,,,banana/banana_2,,,orange/orange_4,,,banana/banana_2,,,,,,,,,,cabbage/cabbage_3,,lemon/lemon_3,,lemon/lemon_3,,orange/orange_4,cabbage/cabbage_3,,orange/orange_4,,banana/banana_2,,plum/plum_1,,,plum/plum_2,lemon/lemon_3,,,,,,cylinder/cylinder_4,orange/orange_4,,banana/banana_2,,plum/plum_2,,,,,plum/plum_2,,,,,,,banana/banana_2,,,cylinder/cylinder_4,orange/orange_4, -,,,,,,,,,,,,,,,,,,,,,,eggplant/eggplant_4,,,,,,,,,,,,,,,,,,,,,,,,corn/corn_3,,,,,,,,,,,,,,,,,,,,plum/plum_2,,,,,,,,,,,,,,,corn/corn_2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,banana/banana_2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/testResults/testing_spanish/NoOfDataPoints/6000/groundTruthPrediction.csv b/testResults/testing_spanish/NoOfDataPoints/6000/groundTruthPrediction.csv deleted file mode 100644 index d49929b..0000000 --- a/testResults/testing_spanish/NoOfDataPoints/6000/groundTruthPrediction.csv +++ /dev/null @@ -1,227 +0,0 @@ -Token,Type,0-arch/arch_3,1-arch/arch_3,2-arch/arch_3,3-arch/arch_3,4-arch/arch_3,0-banana/banana_3,1-banana/banana_3,0-cabbage/cabbage_4,1-cabbage/cabbage_4,2-cabbage/cabbage_4,3-cabbage/cabbage_4,0-carrot/carrot_4,1-carrot/carrot_4,2-carrot/carrot_4,0-corn/corn_4,1-corn/corn_4,2-corn/corn_4,3-corn/corn_4,4-corn/corn_4,0-cube/cube_2,1-cube/cube_2,2-cube/cube_2,3-cube/cube_2,4-cube/cube_2,0-cuboid/cuboid_4,1-cuboid/cuboid_4,2-cuboid/cuboid_4,3-cuboid/cuboid_4,4-cuboid/cuboid_4,0-cucumber/cucumber_3,1-cucumber/cucumber_3,2-cucumber/cucumber_3,3-cucumber/cucumber_3,4-cucumber/cucumber_3,5-cucumber/cucumber_3,0-cylinder/cylinder_2,1-cylinder/cylinder_2,2-cylinder/cylinder_2,3-cylinder/cylinder_2,4-cylinder/cylinder_2,0-eggplant/eggplant_2,1-eggplant/eggplant_2,2-eggplant/eggplant_2,3-eggplant/eggplant_2,4-eggplant/eggplant_2,0-lemon/lemon_2,1-lemon/lemon_2,2-lemon/lemon_2,3-lemon/lemon_2,0-lime/lime_3,1-lime/lime_3,2-lime/lime_3,3-lime/lime_3,4-lime/lime_3,0-orange/orange_1,1-orange/orange_1,2-orange/orange_1,0-plum/plum_3,1-plum/plum_3,2-plum/plum_3,3-plum/plum_3,4-plum/plum_3,0-potato/potato_1,1-potato/potato_1,2-potato/potato_1,3-potato/potato_1,0-semicylinder/semicylinder_3,1-semicylinder/semicylinder_3,2-semicylinder/semicylinder_3,3-semicylinder/semicylinder_3,4-semicylinder/semicylinder_3,0-tomato/tomato_1,1-tomato/tomato_1,2-tomato/tomato_1,3-tomato/tomato_1,0-triangle/triangle_3,1-triangle/triangle_3,2-triangle/triangle_3,3-triangle/triangle_3,4-triangle/triangle_3 -,,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,plum,plum,plum,nan,nan,nan,nan, , , , , ,nan,nan,nan,nan,nan,nan,nan,nan,nan -a,rgb,0.7561390720481025,0.7255346049966714,0.7462551506330974,0.7559090702442316,0.7284970365895567,0.7619117650488325,0.6957688811757557,0.8888808443442555,0.885914848812493,0.8846471985309531,0.887975979234572,0.8483638574194866,0.8431386741412161,0.843282080975396,0.8814155125853513,0.880829071867543,0.8803398349068025,0.8799031528061394,0.8802728067858403,0.6923211407915921,0.7101490786127227,0.710538729820816,0.7228816331028498,0.7513319088576492,0.4551153114082515,0.4680849362753319,0.47356865467426223,0.4867467718205278,0.5768953595659628,0.8070103520384164,0.7868490970871194,0.8008916636892761,0.8006485053187846,0.803208353530367,0.8079782327940422,0.0991438273623725,0.09519963619415718,0.09017088087743774,0.0916861875973155,0.08192493010229714,0.8771675797035634,0.8792395962542651,0.8775141718803698,0.8751702384036016,0.8751143861933598,0.29692473351719406,0.2871875212216483,0.28706761844020234,0.27781896970437947,0.4861633882396671,0.45706452150891796,0.42839203227760964,0.49253988160860673,0.49293310485410835,0.40593953070477234,0.4731111370242637,0.32842057894244553,0.8649107293768176,0.8565215274853801,0.8440615781956385,0.8345870774824692,0.8113459680247901,0.7566770317151709,0.748719782537751,0.7468807734816856,0.7466616533266676,0.3892040773161865,0.4721654127737073,0.3801185611792517,0.47888148714101797,0.3802381549389117,0.07877794902684952,0.07708555178941955,0.06154057277769903,0.06312148714125349,0.7329903107173973,0.7326318320770542,0.7387101406837183,0.7612197209279555,0.750544888245609 -a,shape,0.014999985074270665,0.45029619023589235,0.00109026295283613,0.0008596467950502925,0.8120999148096248,0.9908081399759998,0.033019502405914634,0.00011206639652747418,0.046983007497103546,0.00018812225690296875,0.0005693906702825347,0.0006691298880300582,0.010929650342456233,0.00801587123107267,0.9999365964102429,0.9999998185168596,0.9999995768564792,0.9999996074506701,0.999389875645322,0.004143662246385381,6.24930515611387e-05,0.0009772486619057548,0.002012154192591685,0.250872278818821,0.00724747480750677,0.002996637241087007,0.05849635867902223,0.01219147716486209,0.0376460607417209,0.9961256526671843,0.9812604565428739,0.9994625159345701,0.7734336960149738,0.9999868082057151,0.1609176539552228,7.263286799460987e-05,0.00038999447288846244,0.9986205516360683,0.9999662940248705,0.0020933951209289614,5.1698315799164005e-05,8.251335490239582e-08,3.838250358352722e-07,1.818690621620175e-05,1.3781997081629017e-05,0.999569969812203,0.9941513637106585,0.9822641208405992,0.9944683160331323,0.9809353661365067,0.9864886872235461,0.9633474892989906,0.9985186646723423,0.9993614358882887,0.9156687366096093,0.99866980977764,0.9980646608661772,0.9988939805289275,0.998269994898914,0.6796324255051113,0.8789328212111316,0.9998278555942562,0.9999835212173009,0.9017648286464406,0.9854755818983956,0.06455648694074516,0.05245117608698783,0.9948082152734494,0.8345580874698804,0.07799777398282062,0.0855027480395834,0.5834801241778508,0.9999993221955552,0.9639483103720512,0.9999235693020283,0.48075746401076147,0.0004947824784904906,0.006385942413696105,0.004515938536897561,0.037961483534617396 -a,object,0.0923081099611634,0.8651614475160755,0.0013692274659754683,0.010566822432586514,0.9877258531198058,0.9999989694582592,0.2761357818790593,0.0323172008113005,0.8668067705755497,0.10919571141588809,0.14948769154660604,0.03804776067115535,0.4180957426898339,0.006164908865096971,0.9999283021922442,0.9999999996358164,0.999999998141694,0.9999999921559996,0.9999992091128991,0.02499248175934202,0.00704499462977505,0.06654046744325103,0.08878398701117922,0.801751277921267,0.0001242210187537629,0.00019766019701878218,0.006002070136144095,0.007016534120335812,0.008691239560788256,0.9970131682329951,0.9944215723772613,0.9997567472455672,0.9845870101193587,0.9999999921174821,0.08742297016780694,1.464152593518168e-06,2.527974970078822e-06,0.9968311095667975,0.9999367563451026,8.283563655340213e-05,0.02470749447222803,7.946464361697797e-05,0.00015602465225280084,0.0005325735942328443,0.007197769158194181,0.9992807228598795,0.9910338009941602,0.9790077529870015,0.9934075496787177,0.9870115600385245,0.9833475862849034,0.960364307031935,0.9992658889278565,0.9998843324204931,0.9868821462205665,0.9994571899509742,0.9990165971117959,0.9997362738814557,0.9996434002526149,0.7163071122997212,0.9422568259569014,0.9998996128619082,0.9999789963697678,0.9258623491724763,0.9749641878251073,0.058647888730479145,0.7767492214798278,0.999930176367462,0.9992795524667653,0.8187936568131361,0.6657097725549753,0.0912302347346898,0.9999336924967863,0.5290389055311123,0.9959132642375488,0.5952553809082013,0.002743950085625592,0.0007460405546297346,0.13771347634442974,0.009789452110360577 -abierta,rgb,0.9999999207932008,0.9999999949119314,0.9999999012607688,0.9999875223054122,0.9999990560703741,1.3513202739616407e-09,1.5652616488303129e-07,2.1741217782922933e-11,1.6230312664238776e-12,1.1924156194850608e-12,1.5560263141681893e-12,4.415967443300794e-15,2.4538213012402777e-15,2.188018923003423e-15,3.695832535926389e-12,3.704756842027049e-12,3.7299023109620065e-12,3.764228648432297e-12,3.1400935958431297e-12,0.9999999985419878,0.9999999862898996,0.9999999781282707,0.999999428122891,0.9999905069419499,1.0,1.0,1.0,1.0,1.0,0.0025556620260120196,0.022331995722271798,0.004549018823796003,0.00305146711864202,0.0018139865717478293,0.0005051534004199393,0.0007790638223546197,0.0015039767688058646,0.002504684477832193,0.0022884540429849794,0.01071180977228609,5.225285744299685e-11,2.4507219356133987e-11,2.5320513309269e-11,2.8319326313980975e-11,6.3060347493065454e-12,0.9751589635258613,0.9783663694553303,0.9775929479582176,0.9773179198969016,0.9999998581565724,0.9999999493150499,0.9999999902743996,0.9999992356043429,0.9999986246321884,2.6842646832883447e-05,1.005477847970961e-07,0.001472639272795558,6.432974397515143e-16,2.8356361982882266e-16,1.209632912744872e-16,8.70675481976794e-17,5.959508967578818e-17,7.398617697008694e-16,7.133726710573071e-16,3.8495107915243826e-16,3.899271467590483e-16,0.9989839316767007,0.7822739993719129,0.9992075771545071,0.6664792642147438,0.9988664461813002,0.25146932525164495,0.28442577841304806,0.8864771831449744,0.8209179068806012,0.999999918242618,0.999999885237098,0.9999995875214858,0.9999960315847348,0.9999984426874462 -abierta,shape,0.9999358505542137,0.9997919054703237,0.9999361968535365,0.9999572952435095,0.9998009605986523,2.91058726222567e-08,0.9816508088176044,0.2687926934837105,0.002402095834473272,0.9669736000240202,0.815714112174831,0.05682248472040004,0.41251614427900696,0.05442465049904973,1.433810153593465e-06,1.071418038157389e-06,1.3368647191895997e-06,1.6045458939254743e-05,1.2453586186063888e-06,0.00019435077924224534,0.0693722819596148,0.8339213240354795,0.6799187049194176,0.005259043815541792,0.6172719079635922,0.0037348343092921993,0.013845301055250694,0.03563514914358726,0.0784374412619937,0.0003380606352343575,0.0025643096519968717,0.0004368970490656967,0.0010661070083692638,0.00028769850033949837,0.006852580158756742,0.48113214241002994,0.17410513020939927,2.317132953062617e-06,1.1626692622619246e-07,8.417529537560745e-05,0.7817198269484678,0.01329238817899567,0.014972147990623201,0.3862284400682777,0.004350180068434696,1.0143913553527009e-05,1.7452712829770767e-06,1.176080330066672e-05,1.3887563155460566e-05,0.00019216889498120408,0.0006948567613212161,0.00033400252755731247,0.0004359732445553779,0.00047435835530505727,2.0217711291085408e-05,2.392315744256967e-06,5.690551150867766e-06,0.0003020875252198886,1.6176396322014912e-05,0.002392794490422606,2.7253659447049184e-05,4.0494452690957185e-05,6.901025361813765e-07,6.826992734876095e-06,2.0907365684580456e-06,5.5150254546120576e-05,9.521928803779325e-05,0.0002496073812122406,3.130935322264128e-05,0.0035693134711390724,0.011486075233529805,7.5666260048866e-06,6.702288609392116e-08,5.857596088646597e-07,3.866165091749976e-06,0.8222870837339145,0.5522527959080656,0.7098595497357351,0.004311661048564613,0.20704919819375506 -abierta,object,0.9999507773795162,0.9998626752861546,0.9999483922916927,0.9999618933110728,0.9998312781324872,8.343611597951063e-08,0.9866127647865861,0.03498735145259033,0.0006173752167512341,0.3137892988140428,0.2488973894974994,5.82955127665943e-05,0.00734520294240618,0.0026835041834592367,3.431740535525637e-08,1.6622330804634386e-08,2.4279789389772142e-08,2.043567165164808e-07,1.589724775702016e-08,0.007249396757551821,0.7536008400366047,0.9538915546775741,0.9276398446191017,0.008043934207713163,0.004160875900140099,5.816988307381579e-06,8.266738874194269e-06,1.8873951515518396e-05,2.9523870166140713e-05,0.0002432905121606163,0.002861049366304712,0.0003340614568952474,0.00044846937316295865,0.00018893438202474162,0.010632318215220518,0.00947411559445475,0.005945730591609522,1.1521689325718585e-07,7.91424992396785e-08,3.2387141037295313e-06,0.07181405032879529,0.00021808921495535165,0.0005447376405521595,0.014161108398206598,0.007046264168216949,0.0004336959803621158,0.00010899043477423552,0.0003834009020515982,0.0004256728461387111,0.05993309175637139,0.27288299269638305,0.3284684824478502,0.26914613062945286,0.32543921872106213,4.715923704217029e-05,7.93010818927959e-06,4.17239107799903e-05,9.89788570620279e-06,1.4441760931467307e-06,2.6877659511494103e-05,9.696926589221278e-07,6.4429962107406985e-06,6.104128768052402e-09,1.1629806854207895e-07,7.721211687035047e-09,3.2118071630506085e-07,0.0008811361681468072,0.008295308396810353,0.002977187420139314,0.08392416212016662,0.43833555507277033,2.4819425837664097e-06,8.336967579812304e-08,4.744404726494719e-07,1.0199537983895243e-06,0.9582802274525606,0.6351241232055549,0.9688991195334833,0.029832019157137048,0.44517296269146084 -alargada,rgb,0.009476255412932693,0.033441064375465596,0.0943959668537531,0.9430290244772165,0.9513378795256655,0.9999982092224272,0.9999944346584881,0.46078741865530926,0.0013260658293286775,0.000411262559294749,0.5383948739732254,0.9982776527530832,0.9962284101008101,0.9954066831621339,0.9988831571597033,0.9991305534055844,0.9992875482107123,0.999399431264473,0.9992657100679143,0.29601719485592065,0.5033294164276312,0.6301527651244245,0.9513155442397351,0.9551019443558239,8.26042540491319e-39,6.454352436773054e-38,9.913995584613923e-38,5.751747347187727e-37,2.0769782691015902e-32,0.9999941301132009,0.9999950792805287,0.9999948832538148,0.999995873184388,0.9999962141121492,0.999997137750731,4.562827963510336e-30,4.634158520827791e-30,3.469016311616469e-31,1.2699569114540012e-30,2.009573452601797e-31,0.9998319496803391,0.999659017157194,0.9998102796506977,0.9999045475175146,0.9998811405606683,0.008142808277179052,0.0036614560690019374,0.0035591947948510885,0.0014948333667846397,0.9976429459350574,0.99443723652612,0.9842734027196196,0.998583315880903,0.9987507699784061,0.015719505783748148,0.04213247655244993,0.0002646926592623282,0.04703982743450013,0.042053100152055045,0.0013482266276493343,0.00407465568684961,0.0007531733986020188,0.08751646250639979,0.03341072904826841,0.004207701499425213,0.004267239994913046,0.9363043232200293,0.9973931568188242,0.9026134117422189,0.9978965192016552,0.8969231794753203,2.2144736775060858e-26,1.0051592101587577e-26,1.2263601724134741e-28,1.0774516553258654e-28,0.3840516948968673,0.5056838777096421,0.7050034140593939,0.6429226977037447,0.7245164780239741 -alargada,shape,0.00024055567975387945,7.833096287159856e-05,0.33278672060937536,3.3468291817940965e-07,3.5541661590890074e-08,0.9968333738350863,0.0029516367069377845,0.018953451000060535,0.00015876025362349623,0.0023629007988289065,0.003680522228789012,0.9999996353190721,0.9999971530578862,0.9999557350967756,0.9999917200980042,0.9996944030816025,0.9998298658580687,0.9984526217343309,0.164307449746059,9.82365758477118e-06,5.705147209183274e-07,1.3819561074290355e-07,1.77195340332711e-07,1.4436036308758052e-06,0.003437414020795111,0.00012843033561386023,8.590679948466761e-05,5.914124210272936e-05,1.0187070079830344e-05,0.9999805183789577,0.9998934913108762,0.9999640517971023,0.9997841025723843,0.9995078534230244,0.9994948193718703,0.9936659003411061,0.9929900058172674,0.03541745074471184,0.0002480181835784135,0.001194336486681008,0.01793351750603889,0.001537311888295792,1.3514643956342824e-05,0.005465489597139532,3.3101449945150327e-06,8.174796816298267e-05,8.522416817077097e-05,0.00010866526955257028,5.7521614375156943e-05,1.480345851639023e-05,4.559724713235228e-06,1.4149273369759082e-06,1.5845727153854437e-07,7.487434239589749e-08,2.532009300007638e-06,2.710626673111003e-06,2.0256040014481894e-06,1.1177783325397495e-07,1.5016316059263538e-07,7.005732555012556e-07,5.432183780154709e-07,1.4696910059332956e-08,8.538040348482971e-05,8.897877065868662e-05,5.77374993643075e-05,0.0012569844349349893,0.009613548498496566,2.233629922989818e-05,6.327380550096883e-05,7.330915550818326e-05,4.5192331083249484e-05,0.001518613683512335,0.00016818377854035916,0.0006747756513679936,0.00010850097629867323,0.9979988604223952,0.0051278062788851515,0.9578002381815567,0.1958302615573387,0.9353196200628868 -alargada,object,0.4818425031872599,0.07270291534594842,0.9923605239592779,0.019538911485761062,0.00041515517547837836,0.9955071889131843,0.9522989178893273,0.9818645408656397,0.35150302324973365,0.7496901817895083,0.8081529548248322,0.9999990266957423,0.9999948390295768,0.9999622060976626,0.9999772998009047,0.9998569513640693,0.9998482014783825,0.9991024421388037,0.07972255759352204,0.004051342275155902,0.0015743220678484816,0.0005551007137570812,0.00043783773769295496,0.0001524223510215976,9.072308840082676e-05,3.5930296718251193e-06,6.645569528825609e-07,3.18503953885854e-07,1.1407174221720812e-07,0.9999928007744368,0.9999616716113795,0.9999925697501603,0.9997975934931088,0.9997398354765055,0.9996528515599277,0.41870225552961804,0.31745441154203974,0.0003550988652851108,6.040636338066401e-06,3.2437921943503536e-05,0.6620833908404924,0.144790546843145,0.0020731318340384245,0.6926401457709939,0.03545584982522564,0.0004665773565696207,0.0006254422440872365,0.0006185168746336051,0.0006009880242436539,0.004716180141902403,0.003736570913023602,0.0032727957739788465,0.00017135534534362285,7.183299007836828e-05,3.347986202721383e-05,3.2400267223728376e-05,1.0432210052174706e-05,3.758154274730953e-05,2.478335385228585e-05,3.377576040991611e-05,9.369576991251903e-06,6.95494779053013e-07,0.00018827067434037053,9.235134560322839e-05,0.00040720808770231063,0.0015027430185233154,0.15989358449854815,0.0007035520545717102,0.0023199729565976063,0.007178454570505264,0.006230422906744422,7.224126157989491e-05,1.2778652116610937e-06,6.709682485078453e-06,2.5274472564863062e-06,0.9998305875954437,0.48018722430911037,0.9992437074444018,0.8226023463227453,0.9955137891629235 -amarilla,rgb,0.999999999992828,0.9999999999999984,0.9999999999999647,0.9999999999999984,1.0,0.9999942187527089,0.9999999988717347,3.900038441578113e-15,2.7602051151115318e-22,1.912747278563859e-23,2.3090149352464674e-16,2.7604144003060504e-12,4.160841358507458e-13,2.3343097009896765e-13,1.5296875854822128e-09,2.7684411018824384e-09,4.478129415511844e-09,6.808846965353661e-09,3.3573366446706446e-09,1.0,1.0,1.0,1.0,0.9999999999999996,2.6560570936031217e-37,3.098430970803961e-36,2.1561389411603748e-36,9.042317820829825e-36,6.919356436668293e-34,0.9999999999935458,0.9999999999999556,0.9999999999986706,0.9999999999985567,0.9999999999969649,0.9999999999854863,1.0263740732034209e-40,4.68535963268397e-40,9.875538205447297e-42,9.94531621096396e-41,9.291507875107097e-41,4.714553805472571e-06,3.0364150447404616e-07,1.3136881418029594e-06,8.369807864016325e-06,6.949492019290082e-07,0.9999999999999987,0.9999999999999969,0.9999999999999967,0.9999999999999889,1.0,1.0,1.0,1.0,1.0,0.9999554652284711,0.7146635862654734,0.999989001066651,1.4090044431470714e-22,9.105319091046416e-23,7.930890201708094e-26,1.2530350495322193e-24,1.8687396494793705e-25,8.818875993803831e-18,1.797279002903454e-18,1.162164654488981e-20,1.2362073411615522e-20,1.0,1.0,1.0,1.0,1.0,4.250297477116973e-28,1.4302471853925775e-28,2.251046646030901e-29,5.8550711838359796e-30,0.9999999999999998,0.9999999999999998,0.9999999999999998,0.9999999999999563,0.9999999999999973 -amarilla,shape,9.981279307343774e-05,9.605853070784537e-05,0.9847143463919878,0.9999912723072997,0.9957854237769562,0.9996417376192197,0.9998346203998674,8.052578993577941e-08,2.1295547862311853e-13,3.460277406760977e-07,5.741819543634705e-08,0.0024529012155048604,0.999997490321189,0.9999995440265917,0.9999999994605766,0.9999987964969506,0.9999999203568136,0.9999996567091308,0.9999901698752882,0.06425684570900604,0.15436669468438494,0.9675844182478215,0.9318908442402245,0.9999216299826351,0.9676046706388184,0.3776348835784392,0.9993502379293939,0.9975719512391491,0.9998666597610988,0.9999999999385212,0.9999999681513053,0.9999999999283091,0.9999732521591713,0.9999942323397786,0.999965352206311,0.8231304410918396,0.06763338920109727,0.0009093961219636447,0.9998974602271792,0.0045960948588917435,0.00036058974602400784,0.02149888000535808,0.0007900738148812258,1.7835490959649175e-06,5.60726509429285e-07,0.9994316003772465,0.9983454596495216,0.9996221153855185,0.9992519677752061,0.9473860858523514,0.9748030893772415,0.7554787608804199,0.017667484810617883,0.05140754351419681,0.818554911402815,0.8606990488732987,0.9857365167339073,1.9432732920105733e-06,8.172882833713474e-06,0.0017075658779808613,0.0514414163502009,0.005593420822259565,0.9999919957795396,0.00043432853045288127,0.781090957752128,0.9938385515317107,0.9998995576326459,0.9996605120682035,0.9999987425686858,0.9992362457482932,0.9998895373583125,0.034397831776122496,0.9879780421731597,0.22271571474516744,0.8464035638054251,5.332428519140661e-05,0.0003615185192666877,0.9141933818368587,0.997020828395893,0.2210208714468273 -amarilla,object,0.999647736000576,0.9999658351561961,0.9992846278549591,0.9999216073357748,0.9991403328326697,0.9997510703994165,0.9999165878025184,1.9440424796747203e-07,6.393236391764444e-10,7.740364701364021e-09,3.5012139030086425e-06,8.514035639334162e-05,0.12899109289487373,0.5800505244294938,0.9945574046446611,0.9723391993587124,0.9905099911691387,0.9931595210864628,0.647933915321727,0.9999616359066693,0.9997586313295203,0.9999808026032576,0.9999491777356027,0.9999679224123046,1.1335578234360342e-06,8.746485170115562e-06,5.907067599779127e-06,1.7674515532201087e-07,2.5286078370683862e-06,0.9999999338875488,0.9999958740414382,0.9999999195796307,0.9995749153171928,0.9999955869461044,0.9998930017313039,4.627123129164613e-05,3.2846687224569094e-06,6.204008788281954e-08,5.709490765706281e-05,3.53939196684809e-07,1.7689446068339367e-05,5.208634144029447e-06,8.730188389042853e-06,0.0006918522928039234,0.002065816004635139,0.9999898496876375,0.9999545564763016,0.9999797730938647,0.9999876744498094,0.9999999345519287,0.9999999323788128,0.9999999414636261,0.9999992134634998,0.999999339509612,0.8822401127414583,0.9442529674230241,0.9927871973835594,1.5666534248449084e-06,4.487827331411853e-06,2.432373302885038e-06,1.9627503573960356e-06,5.673403530738363e-06,0.10242830741093148,2.1122857595500848e-05,0.00019373002898324352,0.003539730547962139,0.9999999549750649,0.9999967955613611,0.9999999260258831,0.9999549911746642,0.9999906795156328,7.208457026318388e-05,0.0008357695133835115,0.00013198642091133002,0.00046018083306412417,0.9986014911542919,0.967438421100017,0.9994450381332727,0.9999913465412738,0.9999854890761191 -amarillo,rgb,0.9872042476227414,0.9956640473584658,0.993018364700824,0.9944069090053687,0.997437229301108,0.9198187362798462,0.976885129474862,0.03486989217156269,0.006340667811119106,0.004838843991289861,0.025569549164017054,0.08613240965841232,0.07401301308564348,0.06978665129070369,0.12899250763450038,0.13686008943989345,0.14355287253446253,0.14962047175608173,0.13969515411737626,0.9985885277662954,0.9979723356609709,0.9980431378796951,0.9977843495839765,0.9952130801088789,0.004163362131560034,0.005055169019603472,0.0047178348504012604,0.005124550668420545,0.004976474413346576,0.977675359525823,0.9885557646373966,0.9818889275804822,0.9816762295253137,0.9797644787232461,0.9751138323026148,0.007559929413951394,0.009349798680815894,0.00668410062705006,0.00834086905220351,0.009573024420619386,0.27073237652026416,0.21268956973453876,0.2427850776349862,0.28520641774997174,0.23178114648392545,0.9992268381438925,0.9991965140632065,0.9991881813931528,0.9991204390330836,0.9999209652217954,0.9999387662682323,0.9999550732622131,0.9999022512437729,0.9998954090650252,0.9809515723247719,0.9329963317756822,0.9888278042396899,0.006564402455819644,0.006673798680079007,0.003492798446697135,0.004995548094141046,0.004802483548019966,0.04278982158812727,0.03800166745067174,0.02276638077677472,0.022941817004518125,0.9997501424006033,0.9993316617351083,0.9997578627203734,0.99925435570779,0.9997401690541006,0.18471188317296075,0.17178644362388856,0.18518781465171288,0.16006352530629675,0.9960939238070299,0.9963175548725064,0.9959716763558991,0.9918949647693596,0.9943722942041034 -amarillo,shape,0.5399410464729496,0.9097734512231763,0.9921231576021836,0.9999946374010908,0.9999010730779054,0.9996744352430585,0.9999979882368786,4.2248495342640695e-07,4.1923614759012427e-10,9.509168148828131e-05,0.014769820296984442,0.0005307920664864603,0.9447688713135459,0.9990191697927243,0.9999989480294602,0.9999984095839322,0.9999993552123368,0.9999999856864312,0.9999928633357287,0.9999969792866141,0.9992370944368616,0.9998973348493744,0.9996408793898921,0.9999984148758472,0.9987828269518695,0.9970036640613146,0.9998944764813714,0.9985934988419192,0.9998423876864548,0.9999990122971808,0.9999975947526952,0.9999996904082616,0.999868816870947,0.999999804900784,0.999964573938487,0.9999996837679913,0.9999891493397989,0.9998728086904567,0.9999999441346343,0.9999656520478178,9.031405849745353e-05,0.000653966527116806,0.00023255081733752328,6.602673854011285e-06,0.005727429905953827,0.9999950943968753,0.9998539682709678,0.9998669107220999,0.9999521305068011,0.9999948477304138,0.9999984005089566,0.9999996004998795,0.999780072302998,0.9998941123706088,0.7907249046906198,0.9987449169892595,0.9796561080895672,0.7880417208768327,0.9737146578829423,0.9999416719378853,0.9987455602472418,0.9996954517595786,0.9999998478117084,0.004042152534003218,0.9764976938484273,0.9919304219240791,0.9999010759126497,0.9997374518198117,0.9999999814852548,0.9997363645967122,0.9999030725941163,0.9073599353765431,0.9766547670148681,0.13698718912044894,0.999920829642527,0.9883428331144464,0.8868102475497474,0.99975908284534,0.9998772951014281,0.999986354987544 -amarillo,object,0.6360682184254058,0.9756100669918215,0.9536119679538981,0.9999993341293609,0.9999999768265356,0.9999145168374093,0.9999980244621461,4.182583047008408e-07,8.755596502560664e-10,1.7692184270900421e-06,7.965796476261016e-05,0.006069094932661294,0.5937051454593345,0.0037290616855737446,0.999978417306979,0.9999811848820285,0.9999792153887483,0.9999980754073635,0.9997873053977924,0.999989710228344,0.9999565523288361,0.9999955618718991,0.9999824785162368,0.9999921514945819,8.785008759324626e-07,2.1089434931669484e-06,0.00441280273075651,0.0005726793897339976,0.00038353056449067017,0.9999999939884201,0.9999999974714322,0.9999999988869168,0.9999993403014855,0.9999999978421015,0.9969622615916417,0.0015058699015474465,0.0002628360555292168,0.010046138737516872,0.12162627458967319,0.00015611186621089835,3.442841608860663e-05,4.546654044022438e-05,9.410768317423404e-06,1.015057251870711e-05,0.0006106257589787205,0.9999980093901347,0.9999907655367645,0.9999934076006426,0.9999979461522032,0.9999998022368188,0.9999999432083736,0.9999999859578768,0.9999994195816369,0.9999997500654684,0.9915855709261896,0.9921604095808342,0.9959927310894514,4.004431982241947e-05,9.397017427238531e-05,0.0002714010781412689,0.0001889135492523959,0.00023273361923246996,0.6896061779683749,0.00021431528356321235,0.02479352269440933,0.0103610885893687,0.9999999913653151,0.9999999403721458,0.9999999991288921,0.9999995887421232,0.9999999607285275,0.013336505134875816,0.037581618690230016,0.0009322250464322011,0.11344905499923527,0.9968576831148187,0.9999414707106495,0.9997437787555734,0.9998123511920655,0.9998626167221454 -azul,rgb,0.0297149527971946,0.01034472678870583,0.009968641056679193,0.001423505577922631,0.000711484771236291,7.160550449247724e-08,1.5015803028640586e-08,0.002468090528595851,0.0050086732996226044,0.005557109071522689,0.001120385177077482,2.684154169140055e-06,1.983062065052956e-06,2.045455446105884e-06,0.00015120834843066662,0.0001353199508270763,0.0001238100604426258,0.00011466231289858792,0.00011901288139677896,0.0018184294668865148,0.0018191903752800664,0.0014551585110052143,0.0006247819052436891,0.0011482001233761052,0.9999980247968719,0.9999974959170504,0.9999972884667104,0.9999965899277802,0.9999835023343889,3.322046949721821e-05,1.7778557306210744e-05,2.6139942976442412e-05,2.2211159173242486e-05,2.2136302136582784e-05,1.991172040353158e-05,8.073939239403562e-11,6.319684634332131e-11,7.967682505119434e-11,6.659119918317571e-11,5.101036042536596e-11,0.00012538677121046721,0.00014787370475701433,0.00011172055258245722,7.993276992051041e-05,5.856534444964944e-05,3.1031093838974437e-11,2.577100119941963e-11,2.5596192972148777e-11,2.1092946764402476e-11,5.0180907600802956e-08,2.817389987129515e-08,1.9331623353843477e-08,3.703285520139266e-08,3.1614578869153994e-08,6.247887925143465e-11,1.4376738037216823e-10,2.3068032782669667e-11,5.662043878941833e-05,2.5715846733404963e-05,2.0753894818053936e-05,7.814655249121394e-06,2.6234490342989407e-06,8.155716250032624e-08,7.116153557684698e-08,9.456017300133203e-08,9.35547565112929e-08,4.079633884408367e-10,9.637280565927978e-10,3.4514564344349164e-10,1.0082289530697365e-09,3.2311355489273267e-10,4.5341153763293716e-12,4.654927851026995e-12,3.296642755351185e-12,3.808216410709287e-12,0.0036607659502629762,0.0029400863351910314,0.0023161213865256396,0.004181967573875525,0.002855954718160857 -azul,shape,0.04436599667785581,0.9985919291045469,0.9999906734785777,0.9989451255111166,0.8545083247173999,0.9966955836475976,0.2308687423640042,0.9999929632234097,0.9999972432657976,0.9999999991783659,0.9999999986659678,0.9998890094732366,0.961091365678051,0.24667915320573927,0.791619338762758,0.9990960962109696,0.9982499256031123,0.9998312767384823,0.9999578498225583,0.9899141145785485,0.9999998703609695,0.9999842759293932,0.9999526043652237,0.9625361984374667,0.9996852436357623,0.9995346190890861,0.9999185810574343,0.9999808247230524,0.9996651199844035,0.06026939427088009,0.6747114688431257,0.16586599801344543,0.9861128153570606,0.9998620752809753,0.9799114610349442,0.9979746387122451,0.997017972027606,0.9976877284976617,0.2442960233332998,0.9978099409627508,0.9768779870636343,0.9969430251108404,0.5079366494323161,0.1861857809907452,0.999999915502704,0.0003143758733168997,1.6551905093183677e-05,8.90135029719089e-06,0.00010203315338913197,4.928734050248099e-05,8.724308698900573e-05,0.00022373881493273194,0.00028291627454299183,0.0014462934933767411,5.520332820725396e-06,2.4798785155140972e-05,1.0047088017212726e-06,0.4733802201868965,0.24506252542699225,0.6724732833659689,0.0918865990644058,0.008699542461574738,7.280935997110282e-08,1.9241986792476126e-05,9.767785924384615e-07,0.0007093368704505992,0.9234020187530825,0.9554595735550045,0.9999278062249237,0.9996533970655244,0.995411274574955,6.464867001388749e-05,7.948335494728205e-08,8.166052788160385e-07,3.984651655144029e-06,0.9993572823981873,0.9714770054195543,0.6061019956841048,0.9999931958683073,0.9996981395176591 -azul,object,0.386977435924344,0.3017636808647842,0.3857521040234242,0.02440414458589408,0.016365232450199444,7.4194514828989915e-06,1.0572857937653798e-05,0.08756576635705002,0.18990306589008096,0.3368833670903066,0.11873211821234102,0.00012768933769227242,0.0002820085055245532,0.0006153285868716414,0.02896773551655201,0.025623850284370427,0.02270382072632964,0.03249112735814426,0.013650604432683663,0.14724247732717125,0.10498349805767135,0.06741277145007572,0.03301358714145356,0.04227670804244569,0.9999981598338545,0.9999962372835208,0.9999936218520789,0.9999868815401379,0.9999730771265376,0.004786917625449775,0.0026770359930361446,0.005254871640887777,0.0013404516021193564,0.005286283436392354,0.004830572108040753,9.34125044911244e-07,6.380482978908511e-07,2.837300330366927e-07,1.5201738529516088e-07,3.253516067344118e-07,0.00014441700366871386,0.00046648247659900033,0.00029244914270232307,0.00030810994522404556,0.0012750212470496697,9.736277370855782e-08,6.359957521169264e-08,6.505845333519599e-08,7.587724032236217e-08,3.1421194089735565e-05,2.5503084032659452e-05,1.861551253777058e-05,3.1464377914214797e-05,2.9473433696087138e-05,7.82896214348433e-08,2.3932260752768256e-07,4.00353356400466e-08,0.012560786122527872,0.0072883959733516706,0.008474932896102967,0.002754903749994294,0.0009311898513737515,4.4873891988249324e-05,2.4259383273904123e-05,7.085052369027605e-05,4.5964216258232786e-05,1.2108206227449604e-06,1.1340776856083347e-06,7.031740162771778e-07,7.954222790258847e-07,3.313135682860877e-07,2.886253789978686e-08,3.952330419500915e-08,1.7023973455973332e-08,4.575570274622247e-08,0.12621907288960088,0.016752941359295285,0.06920457425743548,0.057652390622973414,0.1601015182566948 -banana,rgb,0.9999797295438488,0.999999427707233,0.9999979035377216,0.9999995656785131,0.9999999636897501,0.9999603417112478,0.999999360440466,2.7425427362969804e-05,8.692878058897054e-08,3.489356154973046e-08,1.3676640817233427e-05,0.004636675817149158,0.002927353236910955,0.0023775970939800693,0.006087364442998904,0.0077911428200788556,0.009512481161124678,0.011315683367976517,0.0087501610952009,0.9999999889099424,0.9999999702209303,0.9999999757334902,0.9999999770738003,0.9999997451931085,2.990992575645822e-13,6.61975353358202e-13,5.715116299154566e-13,8.897971061063075e-13,2.8582197671939537e-12,0.9999954643199342,0.9999994771078263,0.999997740781244,0.9999977985751524,0.9999970664280246,0.9999948323880762,1.4118652086184037e-07,2.8180473509350595e-07,8.048871369635307e-08,1.7928524162472723e-07,2.4944481744969984e-07,0.09819357750317743,0.037547536991114155,0.06765522856289094,0.13680037460192415,0.06973385847813446,0.9999999999780431,0.9999999999750888,0.999999999974317,0.9999999999669922,0.9999999999999132,0.999999999999962,0.9999999999999849,0.999999999999857,0.9999999999998348,0.9999996992996889,0.999984329614526,0.9999999341987867,4.252288324085893e-07,5.460807407536694e-07,6.590467026855141e-08,2.661886840851399e-07,2.776865940168554e-07,0.0006759756318727514,0.0004510771454816398,7.600751960740465e-05,7.807704564034352e-05,0.9999999999991032,0.9999999999846545,0.9999999999991882,0.9999999999789897,0.9999999999990155,0.011592860215085416,0.008387961096903816,0.008467464928575629,0.004843998364134758,0.9999997464342104,0.9999998065221175,0.9999997793429932,0.9999979479610603,0.9999993834777814 -banana,shape,0.6136659227289653,0.0005873801827943812,7.559789535032618e-05,0.999804075825861,0.9969786728412043,0.9998745073333841,0.9999771732877575,0.011272943151351727,0.0004424450050846348,1.2788673471508753e-05,0.00708906609726891,0.015712776459081146,0.9999646745784716,0.00042604938608541674,0.011063641435913317,0.019355701025073217,0.03174515363322472,3.080643026623035e-05,0.0035533824964934695,1.346143591280123e-05,1.508007267966794e-05,5.361959737976576e-05,2.21505560326101e-05,3.4414932718234604e-05,2.692644473806941e-06,5.997601545091998e-06,0.006246890151446795,0.00047061691863078573,0.0001867518377400407,0.9867470889517812,0.2427694309429487,0.6233373870864933,0.004421568561948967,0.0005178646587639545,7.867654510869038e-05,0.008682369692899995,0.0004705395948585018,2.405811875716196e-06,0.0058317270540350465,1.4553570019618315e-05,0.08446034789922015,0.0058961177755631825,0.002493321831103965,0.9163163947935534,0.0003954148385531366,2.8917946839783872e-05,5.423078152508712e-05,0.0001527639654802378,0.00023360220979874317,3.610018542267574e-06,8.565651151138085e-06,2.66197574899794e-05,1.2715214883340432e-06,3.073509599574744e-06,0.0008602035142896487,6.734252068171218e-05,1.8119166254345262e-05,7.62045651918468e-07,2.7228531498412635e-07,1.8405259864988628e-06,3.7801953665441346e-06,1.51171454885316e-06,0.06357653942292253,0.002731053475535778,0.009825604574309987,0.011385976155292608,0.015278138895458353,0.00017571674067825405,2.2117437187541765e-05,7.501518155517508e-05,0.0010262687060702525,0.058261596844627235,0.0006002704355101948,0.0001832080581289667,0.0009708296530620662,5.9902038223881475e-05,0.019460706243462612,0.04007645830003632,8.338271442474699e-05,0.0002223805472980153 -banana,object,0.993068134044905,0.9792128550938052,0.9817368677123833,0.9999982938884933,0.999993763403356,0.9999630716694607,0.9999929055764406,0.0013173060358746783,6.169894986822015e-06,5.644423302857516e-06,0.0010047316737956358,0.7874091948920954,0.9651776610670527,0.008203244657383443,0.6423928869083911,0.5002507191292723,0.577948640813202,0.3617674224910471,0.15995285294723013,0.9919985524167036,0.9765640538958975,0.9949973968557596,0.9907586979853946,0.9962850661954167,1.778530425477415e-07,1.6719407427347704e-07,5.13681590398743e-06,5.685850684247311e-06,4.304810972859592e-06,0.9999634443253841,0.9999627869094784,0.9999226112652582,0.999737364267856,0.9987865577035591,0.9875108629922221,0.0001011924011420858,4.2527113225475146e-05,1.2470660544552318e-05,0.0006423671451575933,1.6270075257482993e-05,0.982416435191099,0.8940281989581498,0.8177129944571635,0.96840836887481,0.5927528774864892,0.998974787549154,0.9984892591006616,0.9987428984796803,0.9983768392700748,0.999828049280892,0.9998863457396681,0.9999562917308352,0.9992433423485211,0.9992744390868398,0.9445732134188993,0.7161542283293487,0.899635403840011,6.515346750268962e-06,9.865390426380986e-06,1.6018720915865587e-05,1.645483055848381e-05,1.2923665455436216e-05,0.03850148115783615,0.0013520152360459057,0.0005115667921434893,0.004517070987546983,0.9999396607611173,0.9996750009809441,0.9999627253835441,0.9998117119015015,0.9999665129548233,0.000627469049224684,0.00011718019294165952,8.941825908860134e-05,0.00021588743566204873,0.9979912372886612,0.9999538209554505,0.9999272306449333,0.9997894089202966,0.9993632364056233 -berenjena,rgb,0.047182342579424656,0.012838693763114029,0.03476910237164903,0.0838112032436834,0.027388347979223394,0.9644194084922336,0.7014033828679854,0.9998821261382586,0.9999381384322746,0.9999412955642802,0.9999242471644535,0.9998268142656768,0.9998191522125079,0.9998255255221102,0.9998361153110912,0.999829689360275,0.9998240714452696,0.9998188626686588,0.9998294352922424,0.004242061263943963,0.009292196900445906,0.009997551134228417,0.02190511750508784,0.07095972625851933,9.278200416678292e-06,1.2610284216174778e-05,1.5689677873177256e-05,2.2925059263749203e-05,0.0004563512699960467,0.8682930835990734,0.7049205424019669,0.8299872710952975,0.8381412373819292,0.8600771948870084,0.8993913193320956,9.57176236491773e-06,6.818360317655399e-06,5.240366351409544e-06,5.482991209841265e-06,2.473369528802655e-06,0.9996431362624829,0.999726937140346,0.9996953100946384,0.9996441506264913,0.9997342860816835,4.228957007144908e-05,3.413877589878563e-05,3.4320701340389054e-05,2.881103403232096e-05,0.00012056464228214073,5.922063135226879e-05,2.6145605894940344e-05,0.00018298282019952602,0.0002048806688933823,0.005916812654181394,0.0566125300279209,0.0006839917528998298,0.9999586428261104,0.999950875377102,0.9999431730597248,0.9999215777730764,0.9998556316426745,0.9986471788389993,0.9984287998944916,0.9986689894609234,0.9986575316844291,0.00011541015754815659,0.0014431378047565712,9.36808464529329e-05,0.0018145374764510242,0.00010079382659628378,6.213936436051556e-07,5.578420361048243e-07,1.227739394148231e-07,1.553594887342735e-07,0.022572568766946736,0.023313139732394583,0.03283912364875756,0.08548802451662565,0.05522670712147839 -berenjena,shape,0.050896975077924095,0.007324321514460725,0.00010570062780306583,0.0003769509190830455,0.0002217698693672428,0.002561818871829649,5.007514383527856e-07,0.9900868143905587,0.8684153004900607,0.056505800491610414,0.20728226291647103,0.1050839634437172,0.00012333080905564182,0.00011843864570219285,1.58935781236059e-07,2.9822959486090735e-07,2.1405537815256973e-07,3.86294188739774e-08,5.119863339486972e-07,2.962709092134901e-06,0.00011677780983038377,0.0002908534456324072,0.0004426533463884412,4.0750470802708215e-05,0.00010065795433949175,0.00028209759183237654,1.3632479277557316e-05,0.0009042067057710295,0.00011570530764841026,3.1160694533658363e-07,1.1108017995698133e-06,1.1669358546443586e-07,6.488479605430732e-05,5.59806240869683e-08,3.492232102015556e-06,2.2499794385873142e-06,3.6817051348001984e-06,9.800947700610905e-06,2.1180388861223475e-05,7.222275569658173e-05,0.9999980417097054,0.9999798140310636,0.9999648325418493,0.9999831727698206,0.9999379030593951,3.6267123413689157e-07,5.071901377867508e-07,1.093460160095856e-06,3.802654417402906e-07,5.5449742972595865e-06,1.4364827614281595e-06,2.0147861108570927e-06,6.060561567875589e-06,4.199964699682256e-06,8.542060675548676e-05,1.585690097341866e-06,1.4151474948419549e-05,0.000751993119648443,0.0011538744342229513,7.968343117545846e-05,0.0002826656457979912,0.00048537381291709745,9.589015153790817e-07,4.131037615996654e-06,8.388363232552998e-08,1.181549112217845e-05,1.9117408863800037e-08,3.2265964277754824e-06,1.0206189830845055e-06,0.00019926683646468636,0.0001518759713126708,3.5234269185762246e-07,1.420723087975329e-07,1.5796432130464481e-06,8.108722759997956e-08,3.467373502186944e-05,0.0016518909879081481,0.00027197173537234107,0.00018305012920423133,5.371406858671429e-06 -berenjena,object,0.5144229207594234,0.10013677885173151,0.00023630772016196053,0.005443370331653762,0.0067098117768982606,0.03731575710007865,1.117433449156618e-05,0.9988559346519911,0.9925810712754821,0.7240423288006033,0.8848607359798127,0.5289209816287451,0.00208447169074649,0.0006126650612345608,1.4604086272610273e-05,4.7343604396828704e-05,2.4419005249192192e-05,6.720705475413893e-06,0.00014166827853209334,3.498777070514877e-05,0.0018107319038232512,0.003959979679234293,0.005083038899312129,0.0007207388679373609,0.00015912474927475036,0.000764459606760491,0.00018192098170977333,0.009305294358037253,0.002788725821437176,2.4565699311666154e-05,5.761337713114815e-05,1.052535017951462e-05,0.0021874376531588087,7.697914421362357e-06,1.3114711871673591e-05,2.3165450376316521e-07,2.982445880959538e-07,3.0045823669978147e-06,5.946275245613687e-06,5.693713336175693e-06,0.999998787246553,0.9999923433239855,0.9999890352223358,0.999985460749786,0.99995042498968,1.13806536336469e-06,1.200161191685796e-06,2.446904891571713e-06,1.4573374263949173e-06,1.3454068467841638e-05,3.879215455729783e-06,4.836420807450533e-06,2.6738314096952956e-05,2.8132066508429644e-05,0.00042522218909664373,9.474798992688501e-06,3.444992946436525e-05,0.012047569469115608,0.015752023062195548,0.001062367034752134,0.005063339894581075,0.004344391966411527,4.914014193959915e-05,0.00023274467513962024,7.923372038259251e-06,0.00023402273737752483,6.77886274850171e-07,4.40856750271362e-05,6.787611991097614e-06,0.0006218725592047567,0.0004013744770805985,7.376871307827378e-07,3.1802606818871547e-07,1.3509714373619282e-06,1.6423894062123777e-07,0.00014842543423605327,0.008004927096079431,0.00043856828756457113,0.00036127388559220266,1.3340830891338247e-05 -blanco,rgb,0.9999999999999967,0.9999999999999165,0.9999999999998928,0.9999999999278599,0.9999999993720468,1.3779167597521876e-07,5.434508642763572e-10,0.9999999926915637,0.9999999936651498,0.9999999934062573,0.9999997983257845,0.0017472728625360322,0.00039009530774987997,0.0004034868229128687,0.9999610078378443,0.9999453419859102,0.9999283919196735,0.9999095964921627,0.9999136431709229,0.9999999999774936,0.9999999999759501,0.999999999949041,0.9999999990509889,0.9999999998562858,1.0,1.0,1.0,1.0,1.0,0.9999167967462661,0.9994085418061877,0.9998201754382783,0.9996689391332422,0.9996457662648166,0.9994080351907337,2.020378652898746e-29,8.914662420013365e-30,9.896423711437524e-30,7.583583940692063e-30,1.925612455409441e-30,0.999972218698099,0.9999788073277832,0.9999497165096497,0.9998599267532561,0.9993777929850293,3.011013291551369e-21,1.1683182668476817e-21,1.1214711934165801e-21,4.0339309491270423e-22,1.0880168813051016e-06,1.0821709530458254e-07,2.390159082505878e-08,3.1092001280181735e-07,1.6200144055895588e-07,5.503152457359193e-21,7.40993865463604e-20,6.178347424187071e-23,0.8591835984365183,0.2053914070739923,0.030741974117600754,0.0010691211059506726,9.201509242653514e-06,1.3170163396061857e-10,5.575858223080691e-11,7.416521193402783e-11,7.169976373424626e-11,1.0395818593241818e-15,3.232499215106744e-14,4.929036345150995e-16,3.749258520065673e-14,3.550173582843776e-16,1.595251032498397e-32,1.394993096269778e-32,1.4182125957873142e-33,2.156135329588312e-33,0.9999999999973666,0.9999999999945652,0.9999999999875235,0.9999999999979199,0.9999999999932576 -blanco,shape,7.327856292299513e-08,5.091673673421488e-08,2.4915580741580143e-08,0.00041892496716800675,0.6068903580416201,0.9999833098595992,0.0007171658791468256,0.0008366430084601834,0.000361956883367191,0.9441439029749411,0.023879750544927417,0.5599509520963051,0.9997877729630433,5.820509841488793e-06,0.9998865022198296,0.9999999251047821,0.9999995552711819,0.9999747363537751,0.999994426402818,5.801398476805418e-08,0.00018083169462900523,0.004565158369167631,0.004689777193185492,0.0028792196292958257,9.575939433668994e-09,4.8020960442432854e-06,0.9810531863818442,0.9922708994914642,0.8862201077521253,0.9998132421192973,0.9938154869556554,0.9999096369573767,0.9918398095023636,0.999995580642967,4.484595779935106e-07,1.664350355323847e-06,1.6758010865925917e-06,0.34473985231797893,0.00023634121657863273,6.270455800960635e-05,0.0001370771604396512,9.393779436101369e-05,1.443418317458679e-05,8.446489123148598e-06,5.501372368717309e-08,1.9328383947995842e-05,4.856330388710622e-05,2.215466243439773e-05,8.052693523215906e-05,4.020196657742131e-08,3.625567407205145e-08,5.773200505034384e-08,8.613320487711001e-08,6.514478216847092e-07,0.003701844081043997,6.052714100071186e-05,3.0923759941973175e-05,1.7148146512599753e-06,3.3103462548279095e-07,5.661513011589592e-07,1.1006019893443666e-05,1.0087734621541413e-07,2.8202029505242154e-05,0.005230064778850054,0.041381039927275945,0.0062106048183707945,0.9994846021563971,0.9862313227855012,0.9098134859310598,0.4492655067281479,0.6949483229645138,0.02701981726153947,0.0013077604712952138,0.00238730461568126,4.647222083569831e-05,1.5267845320079741e-06,0.00019116299686274273,5.795187102491273e-07,9.611696061238671e-05,1.710653557024729e-07 -blanco,object,0.007083909222184535,0.009437470397482458,0.0038206102953998776,0.978711975289463,0.9996216566832709,0.9970418386294204,0.07807998570326057,0.275045898242802,0.2799031839542362,0.998482394511929,0.7827626113187217,0.9536957539142066,0.9998009396770041,0.0006645356300544421,0.9999786045562894,0.9999995518909918,0.9999987585210107,0.9999833615363752,0.9999950013203773,0.007149258584797983,0.7576912878972594,0.9196617469664172,0.852193076296107,0.8733219168293617,0.9694427016535664,0.9994669061452633,0.999999995483356,0.9999999969158333,0.9999999477896763,0.9999469562128293,0.9993772861630004,0.9999540917260415,0.9993199688325846,0.9999917983047594,0.0013764667843425495,1.899670909849842e-08,8.982332550222174e-09,0.0002089607466145305,2.9364909077377e-06,3.417721619550933e-07,0.25022711808138226,0.3458990776834273,0.162092607910107,0.03580083463104434,0.0006364899468758406,2.440001041628928e-06,6.131703929066887e-06,5.0796729104372046e-06,7.2783820923640636e-06,2.6929155541819774e-06,2.070700500697353e-06,1.3049828010975555e-06,2.8494860319349463e-06,7.798405390322786e-06,8.616625954821047e-05,3.327993754922795e-05,2.306278281686307e-06,0.0014392686824704676,0.0002851808312904578,0.00026504850977092587,0.0016401137067732323,2.4820830490148537e-05,0.0012392335043892658,0.0420466225428314,0.1795134633425483,0.051061365736456144,0.6792777553525752,0.3027394755891512,0.023523867060383515,0.015500435208404504,0.011441770825805981,2.2937678504257147e-05,2.1637992931122617e-06,2.6194507274573573e-06,1.196279712594047e-07,0.018246713317925885,0.9476221902908708,0.0107232917720894,0.9475061920516239,0.012180773991656506 -cilindro,rgb,0.9999999999996543,0.9999999999999016,0.9999999999987903,0.9999999995875781,0.9999999999110873,8.078597686391474e-06,0.00013341446516142706,0.0024952821908040975,0.0011816689854558865,0.0011529303553871647,0.00017144775159876155,1.1061705209325686e-08,6.197051052386204e-09,5.92849412438292e-09,3.64182738431446e-05,3.271494770118694e-05,3.014329315168687e-05,2.8163856630906283e-05,2.5682741014395192e-05,0.9999999999998297,0.9999999999988822,0.999999999997981,0.9999999999344762,0.99999999960136,1.0,1.0,1.0,1.0,1.0,0.9847303055052802,0.9956640739539097,0.9883287802218166,0.981670137533157,0.9722176952386934,0.9193540956029246,0.9831781985566258,0.9880522723889669,0.9950579429961957,0.9929374324491378,0.9980071557844961,0.00020499260895592006,0.00013810583937024832,0.0001082058160902799,8.579980775231109e-05,2.1602489188129713e-05,0.9844006981391866,0.9856072739687174,0.9851805543602924,0.9846250246056899,0.9999999761132191,0.9999999857469393,0.9999999955869037,0.9999998805841328,0.9999997842725873,0.0012577734266799403,2.397471119142716e-05,0.0242119403835646,6.581026625057689e-08,2.0072847127548314e-08,1.35803671194726e-08,4.594550750661175e-09,1.9534251517136763e-09,6.856215336518641e-10,6.873947291987728e-10,6.692835520073634e-10,6.698866220043525e-10,0.9994834376466787,0.9652962191428152,0.9995495169791112,0.9461585571507766,0.9993785317895703,0.9969470465442094,0.997620495861635,0.999833609052809,0.9997745019187821,0.9999999999973583,0.9999999999957121,0.9999999999844913,0.9999999999407878,0.9999999999612583 -cilindro,shape,0.00038933789686111924,0.00187192266584213,0.0005738250311542251,0.22305194257799463,0.9700116961188026,0.999999610469643,0.0015402955346026032,4.3950371944485564e-07,5.846556418553536e-07,0.8560946045789853,0.13648587349561708,7.966024348274493e-06,2.2915268516723477e-05,0.20822821643579076,0.9997618161963185,0.9986962537741229,0.9995017840769449,0.9999948277172421,0.9998217456272711,0.13405603830895968,0.6711846813458678,0.6003995111361526,0.8112499889915769,0.9991731842170614,0.0009840232260201244,0.0008923697581661793,0.9991276499322816,0.9999908371653036,0.9998956238372142,0.9832478246329076,0.9999995297986427,0.9999730293583918,0.9997560769306137,0.9999734088778065,0.5117608713606305,0.9997342508959055,0.9999421135528328,0.999471568190231,0.9995204892404849,0.9998775221166093,5.729004796299764e-06,1.6372991876402003e-06,8.945581175456848e-06,1.1954405342955638e-06,0.0031442382258561334,0.10074950018187524,0.0008118888515832255,5.8829716279712885e-05,0.0006298473929938951,0.015890606825466107,0.023513067727959146,0.4174325091999135,0.011861509203663275,0.07874040690376277,7.38139515605634e-06,0.0024272038696124677,0.00017241358827292327,6.940436825307163e-05,0.0033806868881013177,0.9849037315480155,0.05005517042913197,0.5052856048669314,9.71675976868399e-06,4.624863598486373e-06,5.05197290590626e-08,1.0145551939126356e-05,0.9992429643320686,0.9999797037986161,0.9999993410209272,0.9999389183458728,0.9994860762429906,4.949351014096648e-08,2.5941080433264294e-07,1.3640806597225516e-07,2.7824497341340213e-07,0.008117804799482833,0.9900072993234654,0.9998270443105111,0.6600929277658972,0.9970206827513798 -cilindro,object,5.164715164775513e-05,0.00035707565947757714,0.04533189354411987,0.4795152589681921,0.7411409180658636,0.9998172942522281,0.0008814017305540353,9.050002724759165e-08,5.844938656511869e-08,0.005463247222548067,0.00024457748868090715,1.5354741674764371e-06,4.092986623019692e-06,0.003993105500736226,0.7534130665269381,0.2787122621782736,0.5310608363745578,0.9293402354828056,0.8780215385531056,0.36664102578941477,0.7645206452172134,0.6581965130807683,0.7666351698501587,0.9965569262071304,0.4286447117261211,0.5133356664640116,0.999996841700743,0.9999997383099605,0.9999860174249611,0.70285641730112,0.9995904010918849,0.9964248158980903,0.9746522062345971,0.9988189681459166,0.25110861016791236,0.9997308797170434,0.999927240451742,0.9995422433903366,0.9996527682741159,0.999794165522399,7.651709217097721e-07,3.229698666180057e-06,5.6225935861489495e-06,1.1258197997301676e-06,8.672279539011228e-05,0.3263316294808169,0.053856083819289836,0.0019266021420706952,0.0071177300800153226,0.12751138423128625,0.1874169316988407,0.8195451282101428,0.05991281091271619,0.11882674427097027,0.00011712057069116563,0.00231616330233882,0.0013090093128934222,4.434667338861315e-07,8.918671904269066e-06,0.012620277343668398,6.856598341545831e-05,0.0009191636924778872,2.9937641998642604e-07,7.20382417423962e-07,1.0053017345714704e-08,8.800216153336385e-07,0.9993567212464083,0.9998940317542524,0.9999863411713528,0.9998061296331062,0.999543547491147,1.287785677469084e-05,2.6639484356991923e-05,0.00026272325533030597,5.4762642327597864e-05,0.4440203451388596,0.999305478551268,0.9998702961566738,0.9538049652489695,0.9981101744687384 -cilíndrica,rgb,0.9999999999999998,0.9999999999999998,0.9999999999999982,0.9999999999949649,0.9999999999974665,2.1654647103396422e-07,7.138373050847677e-07,0.8870225713113714,0.9557992766868777,0.9655826240761116,0.235308829321539,5.462872869898764e-08,2.7228783797871223e-08,2.7796967344411898e-08,0.0038625472411932425,0.0030301429563182342,0.002504157130737511,0.002129581456103348,0.0020956909150120708,0.999999999999998,0.9999999999999878,0.9999999999999718,0.9999999999978186,0.9999999999937439,1.0,1.0,1.0,1.0,1.0,0.9943358186628884,0.9966023890492418,0.9942913352998849,0.9895891591194951,0.9845287032786636,0.9522679069940558,0.9920826750080028,0.9926386177086279,0.9982288724657326,0.9964412434536083,0.9988976598729431,0.011368467106162933,0.010427320736701494,0.00584407705251842,0.0030862376347189375,0.0006800257657604449,0.0032268563359781014,0.0032844154525949526,0.0031907815763200405,0.002924881456605849,0.9999930949983509,0.9999933610187773,0.999997179789937,0.9999570143593837,0.9999127709907205,3.2541192148209826e-07,1.7413948004369843e-08,3.447762397855252e-06,2.2546639039632087e-05,3.6463074277620943e-06,3.563205117046923e-06,4.363972692238673e-07,9.062488442018357e-08,5.7081398946503e-10,5.868423133842966e-10,1.044992278723581e-09,1.0327839163331447e-09,0.21506290657868976,0.008177310433670216,0.22062995838165073,0.0054717069041718336,0.16696148144120648,0.9068922434787672,0.9340004561082329,0.9955158165315083,0.9949737151392385,0.9999999999999873,0.999999999999974,0.9999999999998801,0.9999999999997835,0.9999999999997733 -cilíndrica,shape,0.8555689215733053,3.2356474904271863e-06,0.8360050576541103,4.02780161461583e-09,0.008411272819967654,0.9999999118641583,1.509683095145455e-05,0.0029306918417386914,0.0009668118843466634,0.031519488139753346,0.001232382936606931,0.006595323812827988,0.009894819567709292,0.0030809222170327766,0.9996699457539934,0.22556800961872883,0.22226355252879884,0.05754938952938757,0.00790636633717525,0.04442894146772994,0.00044872901492004136,3.184488215523156e-07,4.934802691728633e-07,8.441325974689181e-05,0.19399095816789,0.01752628514220535,3.2597396628524866e-06,9.200164471197789e-07,5.356317545336637e-07,0.9996467804241059,0.9999359419524471,0.9999829180163172,0.9997520323208675,0.9995916618563452,0.9992730392979352,0.9997467647700408,0.9998802493533266,0.999692483576753,0.9996742990797155,0.9998145813538483,2.807514771751027e-07,0.00033414210502944814,0.00032444645457584327,4.5970072429832585e-07,0.0001831184222298778,4.305975010699245e-05,4.032005285639425e-06,9.248602546612127e-06,4.0197221144692836e-06,0.007370938747097672,0.002286121326716235,0.03652195466961201,3.782021386368958e-05,5.8342724888014434e-06,1.64062689292133e-08,6.118665200082656e-06,1.0924412619942716e-06,0.0005593292519265913,0.012897242648262343,0.608940687753492,0.008317983479188313,0.0003899611158228915,1.760437361664378e-05,2.2409815958362403e-09,1.6168897883654484e-08,8.707106411571505e-06,1.412180769432802e-05,5.138562638392002e-05,0.007604550414705973,4.740941497454071e-05,3.534098502349381e-07,3.403348203364911e-08,1.2056746440837297e-07,6.788657614500074e-08,2.201781612982032e-08,0.80553438894589,0.9999245332841373,0.0289234915580808,0.6858314170098764,0.9373124659762191 -cilíndrica,object,0.051752758969853145,3.395012570438439e-05,0.9918828137134176,5.8478593603835775e-05,0.09716009559219443,0.9744131647594656,0.00012836354731572108,5.209388366529684e-05,3.44120712715567e-05,0.0004093982856997657,9.513099755862357e-06,0.000654407049766981,0.0028428937207194568,0.012107201218756759,0.9998808054750965,0.0890689664586955,0.17476085301944638,0.08567959242855043,0.003752802006960084,0.04978215224377288,0.0003119386969524457,1.1972934433430454e-05,4.938292758921375e-06,0.0010616720345406686,0.9999999507935735,0.9999982812200908,0.9993490338897167,0.9972828424901833,0.9704258800999909,0.9997256934859936,0.9999278304503818,0.9999641758748655,0.9997787249295343,0.9995174514706396,0.9993672149631991,0.9997973789885889,0.9998764452540468,0.9996815843729556,0.9997249170452128,0.9997012177141841,1.0979555248837793e-06,0.0006613121576673101,8.485240563370098e-05,6.745746161475454e-07,8.452283097964047e-06,7.64326575947237e-06,6.346305254454756e-06,9.321503357058987e-06,1.6222397143813526e-06,0.002178432208899703,0.0009369445940427672,0.0015323345763615806,1.0291156883563742e-05,1.5564605311985552e-06,1.2391919968131729e-08,1.08916460702583e-05,7.343815838991962e-07,0.0006862357218760447,0.0030942323717213,0.26132501596703617,0.0025635496373278555,0.0003373428140373874,0.0004589577985625538,4.1034473900168916e-08,8.059264234951419e-07,0.0001648838924669995,5.005970790381615e-07,1.954111035892654e-06,7.594067897145118e-06,2.71665019000347e-06,1.1253815486599029e-07,3.724013759648733e-07,9.321177586539591e-06,7.664211015024947e-06,7.613726174679042e-07,0.8183296423889381,0.9998433963880002,0.7128805043908384,0.9808442839778891,0.9973237949092667 -ciruela,rgb,1.4012724235724577e-06,1.21015914178784e-07,3.3423179444864105e-07,1.757536967992911e-07,3.16361886069973e-08,0.0001323871788071628,8.825939653522312e-06,0.9807060871928254,0.9997381822867982,0.9998685386949021,0.9911984394998439,0.8873895314649407,0.9261607276244789,0.9360577583545953,0.633446808372056,0.5954824547251086,0.5637579300705294,0.5356309532009261,0.5830338602515618,9.574435574514119e-09,2.0538667422430878e-08,1.872927693505021e-08,2.3041683046218995e-08,1.2396628974063942e-07,0.9999973317224297,0.9999953212366475,0.9999959186909999,0.9999945618438879,0.999991085235961,3.4004897524746467e-06,7.692133719065155e-07,2.129685746870833e-06,2.195444432085659e-06,2.7479070703114184e-06,4.412797270968076e-06,0.9999993113945979,0.9999989085027262,0.9999995676555165,0.9999992288711228,0.999999098913012,0.16034640963568664,0.2887517439034746,0.21406401874162856,0.14083214931782378,0.24568082249728257,2.4590524148481768e-08,2.9014845593271312e-08,2.9787075643402823e-08,3.885841317981325e-08,2.7508766022015453e-11,1.7471408574009385e-11,9.709836701059152e-12,4.4544558842697755e-11,5.243133425813661e-11,3.305107853451968e-05,0.0005478399103405193,1.442660889902553e-05,0.9997804593959723,0.9997932972346965,0.9999640794769122,0.9999212947145014,0.9999436255880098,0.9916172481793806,0.9941878797091874,0.9984361650155354,0.998408366131811,8.26946592737499e-10,5.589867354078028e-09,8.107173682137417e-10,7.027070629834912e-09,9.632713144524551e-10,0.9979763633898142,0.9984288488833182,0.9986369834128637,0.9990798996997262,8.756327377456822e-08,7.578046624453663e-08,9.003078389552873e-08,4.2504545938501274e-07,1.874720735123331e-07 -ciruela,shape,0.9998528514169439,0.9996499013200896,0.009771775424764071,6.000829035735324e-08,5.672449761659699e-06,1.3317508310432638e-06,6.962632661618901e-10,0.9999114477407203,0.9999844484939265,0.9973550073858657,0.9999743191040371,1.7756089533933966e-07,1.077153237298708e-08,3.7356684014193344e-06,8.379496097507284e-09,9.294852756195848e-10,1.1857318234306977e-09,5.924620903279147e-09,8.744207639048877e-08,0.9864120087514759,0.9984099818621789,0.9901465746455841,0.9939685370151033,0.0010894655427537369,0.10517043788572793,0.4853624453338299,1.4640016772400689e-05,1.645797845348637e-05,0.0002670982441484945,1.1448002496791903e-08,6.893483074911106e-07,4.9220047736402634e-08,4.983624183885368e-08,3.0393215936153977e-09,4.904173155504311e-05,9.472864719516193e-06,1.484429940023911e-06,1.7012332282220483e-08,9.114627565203985e-08,9.477423258070519e-07,0.000239558614722258,0.0007670594112924024,0.02048136252214027,0.78606606254117,0.9427894578907162,2.9820097854847885e-06,1.2454625210715462e-06,3.9608880707521835e-05,5.446259676913748e-05,0.7147191397026159,0.6530403286587693,0.9638097857278941,0.9950291993586428,0.99848576793801,5.239513108370729e-05,4.515901085958996e-07,2.1376140139108868e-05,0.999995740077751,0.9999981646128702,0.9999121384369245,0.9998335380474154,0.9999480559404116,3.6183588626824786e-06,3.892521562201713e-05,0.00029218110708146487,0.0008300824768102125,9.64832868079409e-06,8.289838918010014e-06,2.1489783279170253e-06,0.0002801132486309587,0.0011050755287918606,0.0007530342835866243,0.0002699271063121837,4.442563558195583e-06,0.0002066833928524405,3.955514149560059e-05,2.9577867817077027e-05,3.209636629525709e-06,1.6756041706674173e-06,1.5597431006424683e-05 -ciruela,object,0.05944908137167667,0.0062198025551166046,0.00044628150588873827,1.5355015799029384e-07,6.758754178837405e-07,0.0002293352110973082,1.0941322372381048e-06,0.996603313600044,0.9997331149412294,0.9996512206141205,0.9986190609388196,0.010277631409073918,0.00896307716838302,0.21564025791854438,0.004358072697595218,0.003534120053791644,0.0036443216191804255,0.005161291319032005,0.006002518625859908,0.0010291180329935303,0.0025674624830746406,0.0012350898831355035,0.001775517396890173,3.937876748951643e-05,0.9992575726725555,0.9978982709195835,0.6924023897173476,0.7441939355454723,0.899375087239901,3.675194631039247e-06,4.931213819849472e-06,5.933384804655366e-06,4.963510010353045e-06,5.1353017192117605e-06,0.0002390806248518119,0.99880961343434,0.9971326960578747,0.9882697541817203,0.9850333927020584,0.9920312447911022,0.009309829588827867,0.023786680891845914,0.04718073828888034,0.13245411408159702,0.47531066082366963,7.482362628064379e-06,4.2000132192258124e-06,1.475563283980486e-05,2.3178942100076852e-05,2.7820144785279375e-05,2.3104795514704262e-05,5.446410883275841e-05,0.00015882555079255718,0.00029372069096502486,0.0005594451695687653,0.0006455650109755915,0.0004152318318337914,0.9999704272273485,0.9999813333344248,0.9999725043125499,0.9999291531206284,0.9999774863332794,0.2956264477129517,0.21551620934360685,0.6308644021350264,0.6654790835910565,6.951686865378807e-07,2.8390643245172244e-06,2.202702741809146e-06,1.550263231940008e-05,6.590600840140849e-06,0.8574173776525245,0.8984029938463083,0.735451084329757,0.9608161135425085,9.547475607745719e-06,1.3201232920430457e-06,2.7604662802394733e-06,2.5899433709357346e-06,1.021217810117673e-05 -claro,rgb,0.6321470165045252,0.6848157114302796,0.6831403527405193,0.7475496281533622,0.7699232208695744,0.7529444102602985,0.7722760927667002,0.389711637417764,0.24614693123067946,0.22539488303830627,0.37866408196661544,0.4960402689130333,0.475644418421072,0.47016196260675847,0.5402081849400774,0.5463032020005879,0.5511857312044318,0.5553980991021586,0.5492720696182531,0.7464012428366613,0.7459211427038052,0.7523338496000375,0.7735825402821652,0.7544051885804831,0.0026251680129262987,0.003067350518308372,0.003111778027537191,0.0035058616264040795,0.00653751314736385,0.7976389222797192,0.8144521029890752,0.8037256951617633,0.8050655971157026,0.8033656948798693,0.8004713598506129,0.00509095883473293,0.005247796025360338,0.004245722560266289,0.004755724857099625,0.00430908149413535,0.6043843987014292,0.5821415448401372,0.5964016440166188,0.6135536934438217,0.5981658278323451,0.6419592948878583,0.6279695376204941,0.6271347941771076,0.6103119777973982,0.8549479002562042,0.8518662610442134,0.8488252480579129,0.8539958292311427,0.8532569284085707,0.5310758433416889,0.49884866119526977,0.48338653254207337,0.27444899369755893,0.2705031658193265,0.21090215591174435,0.22952121927823638,0.20670488843526608,0.3206657942191637,0.3020853687556442,0.2594767106991312,0.2598493479056786,0.7834429445669286,0.7942074436078936,0.7787826023079873,0.7937036431235408,0.7759246559484064,0.014009926676243862,0.013161113617359702,0.010081912854178676,0.009752773935516742,0.7220833100137621,0.7293325043083975,0.736082120884481,0.7123703392549604,0.7275262759627276 -claro,shape,0.999816266020704,0.9999950697095623,0.9997810534878548,0.9999457267720825,0.9997087486260189,7.498374154300619e-11,0.9999925512968899,2.611170023029956e-09,1.7866957037201073e-07,1.1232705377660043e-08,5.837999267791435e-10,4.3191185917740344e-05,3.842457710742827e-05,0.011723099128526872,0.001446380306734015,0.0005973291791251869,0.001088090243128562,0.14638679993438908,4.547807341674467e-06,0.00013927148406500282,3.396684218568508e-07,0.00011010798421921635,2.5071884979410308e-05,9.65187583031313e-05,0.9900826724118127,0.5993578877719632,0.000659563908091634,2.7452690322135977e-06,5.253137426167396e-06,0.02313189252609181,0.005803556728027887,0.01574492601264223,0.002879151371061625,0.07216467649355868,0.9850159572825326,3.040630770394493e-05,0.0003710381451807985,0.00891509268785709,0.6640097475127127,1.650427104623379e-05,7.514987799655278e-08,4.9724154451495406e-14,2.440991021463747e-13,9.626136510183634e-08,2.1311831945091654e-09,0.8874885410392527,0.11499826483874713,0.07274519346152476,0.7572819276194624,0.017697853553391648,0.045211054206833905,0.0004967823693221567,0.013277568865455641,0.011032831580971151,0.0006117237588926616,0.5901406555021158,0.08255783978694144,2.9952465293429732e-06,1.3535288374755497e-07,1.0125136298678336e-05,1.0520742102643502e-06,3.0408987842166906e-05,0.6497841413455743,0.019644513101893635,5.288871170216164e-06,0.02446903688805254,0.0057428766748444755,0.007686044204833759,1.9048001857412897e-07,2.0315451689967894e-07,9.168365172961327e-06,5.5917952259607295e-05,0.002102875202190158,2.7747270963026085e-05,0.002666138125549426,0.00016977444186329642,0.00021298934219345902,0.0813137883507351,0.1925175724419009,0.14220248917077757 -claro,object,0.9999295991886058,0.9999999783155535,0.9998136293475481,0.9999825190229091,0.9998469019578519,3.247521181102815e-10,0.9999333534479129,2.577988425913794e-11,1.9956805121168895e-09,5.408181057097967e-12,2.5419118834193837e-11,1.4069966898691574e-06,2.9766562454343077e-07,1.1488196528255076e-06,3.0121455140411515e-06,0.0006065595025096549,0.00039204744528508715,0.04700545325687109,0.00015745730542882989,0.2806144520976841,0.0021377504941053546,0.6754862392982383,0.2524389611960455,0.13336126615888624,0.006820817270003388,0.07801346590275322,8.407105761309896e-05,4.1049507607925815e-08,1.4532157260934292e-07,0.15512664578449897,0.00016221495366620586,0.00404649206973676,0.005313244285127571,0.6307015374143062,0.9985567931736987,6.326053919087488e-14,1.3304172779159004e-13,4.4361988864364714e-11,8.972061930527083e-11,4.1171893983558024e-16,2.696819976808396e-08,6.630770229258317e-13,1.563511786332285e-12,1.4294342395255701e-08,1.6387805571025137e-09,0.9950184260804301,0.9727921026682101,0.9862522513854198,0.9957096049464687,0.9978853595778974,0.9987884871689292,0.7622852795119442,0.9871222567375766,0.9880937155386487,0.008149211290411316,0.4439049541312782,0.03049812435246847,1.9544816540119375e-07,2.104392165745697e-09,5.687434447375033e-10,4.224113942627095e-09,2.5927562026475997e-09,0.9882835521573963,0.012578031483168247,0.0009114346243070273,0.05101061378613859,0.9854108156158197,0.7533717681005643,0.00022117975418337025,2.651062992037546e-06,0.0002981958717710708,1.3898005025798027e-06,1.628510243542735e-05,1.8743405400593252e-08,3.142478231601524e-07,0.5624617478139347,0.00027359614354016806,0.5213019522737837,0.9557635690209428,0.9972699526913982 -col,rgb,1.1771208803563378e-11,2.115491296134582e-13,1.7792783923396915e-12,2.5802731320188856e-12,1.323898483095068e-13,0.00011563540420581113,9.510666868564855e-07,0.9999024703655305,0.9999998782238633,0.9999999571017545,0.9999840523749619,0.9998947006608083,0.99995387462587,0.9999638493013189,0.9938155874180453,0.9923143927281847,0.9908220290226897,0.9892786331123111,0.9921327148022335,5.028205137229253e-15,2.4908089512097732e-14,2.481125607173468e-14,7.60536853957696e-14,1.5035465684862631e-12,0.9683807572074576,0.9440991023189179,0.9604446364395353,0.9549013075143901,0.9900084584728093,1.2919153523538413e-08,9.981206512261284e-10,5.940070707695409e-09,6.902553331146265e-09,1.0711944686855628e-08,2.84754544085003e-08,0.9999999995474085,0.9999999990084163,0.9999999996960316,0.9999999993317366,0.9999999988400863,0.7942598016738956,0.9298134320769141,0.884262311261694,0.7883621298769368,0.935020097108066,4.663273884483154e-12,5.817172244593768e-12,6.092853863561172e-12,9.091170318220879e-12,9.08920455779199e-18,3.970620397436458e-18,1.2208922164688349e-18,2.731932765784206e-17,4.0006886101237715e-17,3.232628750388592e-06,0.0005872998182034391,4.3599128930033167e-07,0.9999999896066177,0.9999999926546332,0.9999999995116342,0.9999999987346839,0.9999999993492925,0.9999989407882491,0.9999993871458975,0.9999999164428147,0.9999999141475904,1.3900215472809902e-14,7.047811660698194e-13,1.2968588371892454e-14,1.11201663546352e-12,1.810966514643627e-14,0.9998777264126255,0.9999112742677201,0.9998616227963958,0.9999291276647365,2.773107316085609e-13,2.4891063252127064e-13,4.358880241201424e-13,6.324435957859425e-12,1.647618083619686e-12 -col,shape,0.18886172658319744,7.344917873264848e-05,9.997615229856831e-05,2.5202530539308937e-05,3.614253304456513e-05,1.0269390523870943e-05,1.813017004622738e-05,0.9999951257611357,0.9999996950258072,0.9999919928472693,0.9998990754061047,2.2124732468353396e-05,9.164235703737314e-05,1.0603686302880322e-05,4.48224480395916e-06,2.294933675050724e-05,1.1483906974407017e-05,2.929581497805815e-06,1.3208978289923525e-05,2.4467932101569483e-05,0.0026394606926401507,0.00017609019488830154,0.0002729590529687224,1.0939485260963468e-07,4.08851522460296e-06,9.059977300622562e-05,1.129291719106087e-05,2.3638147356508973e-06,9.907382965912712e-07,3.350625201553349e-05,1.1108661492372982e-05,2.7111629656302004e-05,2.4150422600256703e-06,1.6331189743359893e-05,3.993447946833433e-07,3.9491000019335066e-07,4.7186302649551354e-07,5.439355420809898e-08,5.855282059364079e-08,2.695798484202576e-08,5.102393741467528e-07,8.633753256908036e-07,7.669326071033519e-07,8.319499470774664e-05,0.006031281203779688,5.75651342930052e-09,1.2986374841935837e-08,1.7023340162356674e-08,2.4738677698078084e-08,1.0149177353890576e-06,1.145054403194689e-06,2.9419358882405365e-06,3.12905881712748e-06,6.420301245695869e-06,3.2073546383219405e-07,5.054560267761283e-08,2.117913743952511e-08,0.0010203274772087201,0.00029988269399724673,1.2571864620603606e-05,7.867303326848154e-05,1.6185083563846755e-05,2.823844440320631e-07,6.75778553149503e-07,6.986698415182923e-06,9.588011827445363e-07,2.4798082859785594e-05,2.3354322709123545e-06,4.3708776035890123e-07,4.6126569664171555e-07,9.602275516672399e-07,3.545575256048551e-06,2.0896749747228886e-06,9.249949371921284e-07,2.9448111189056264e-07,3.449920485466703e-05,1.9682926116382892e-07,8.956708900221642e-07,3.881480424142758e-08,3.045384520116956e-07 -col,object,0.010260463608974169,6.072785302904239e-06,1.5258108294317194e-05,2.621854185296956e-06,2.035909617294462e-06,4.246789198912764e-05,1.4374920471483983e-05,0.9999948241509847,0.9999997446969279,0.9999969603690654,0.9999368723078657,0.00033398917490110643,0.0008111512241297142,0.0003435973446914402,3.131509634962039e-05,0.0001390453815451679,7.621858715607987e-05,2.3501610396676296e-05,0.00015944207898809892,5.071627650880145e-06,0.00032565781427079595,2.2943697131258635e-05,4.41767388292765e-05,5.592455833480851e-08,4.107740633581004e-05,0.0006413666721235769,8.74006242259676e-05,1.9901183691639493e-05,9.518603069591203e-06,9.074182811295403e-06,3.0965565783219424e-06,8.275918844636568e-06,1.4329590337262008e-06,8.600080788451537e-06,7.08198198705873e-07,0.0007766766706665541,0.0008856162093806843,0.000142149593850431,0.00014580703286410217,7.38740457070717e-05,5.030535784719622e-06,1.0726314314877396e-05,8.455435994600044e-06,0.000510492171803833,0.02477191737503742,2.347413116380822e-08,5.476320144871226e-08,6.246356466222935e-08,9.16658652510546e-08,2.6044431528337583e-07,2.819390999454907e-07,6.976507790129319e-07,7.40762339154748e-07,1.4382646501912219e-06,2.986180150375418e-06,1.0462928110355507e-06,3.071920008518136e-07,0.051106484123841764,0.020781268987408622,0.0019452591431847579,0.01018794048540096,0.0032466862660418335,2.5909893070339918e-05,5.8726950434632465e-05,0.0005950594353570664,0.0001118802355686191,1.0625743829112496e-05,1.9736213193936865e-06,4.88698072016536e-07,6.713394241257521e-07,8.771012932282201e-07,0.0010782245606238267,0.0006064682308867655,0.00036116566804330724,0.0001624751893382604,5.406119675635819e-06,4.76086230839788e-08,2.5130497163638725e-07,1.4349170235417858e-08,1.0765797080554676e-07 -con,rgb,1.0,1.0,1.0,1.0,1.0,0.999999999999966,0.9999999987632187,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.7426179651668225,0.6640175838344033,0.6539387351754954,0.5461219330304414,1.0,1.0,1.0,1.0,1.0,0.043931090574834866,0.4112473717282605,0.040107394060633024,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.999999924156513,0.9999998014567509,0.9999998451426004,0.9999997225104074,0.9999996505307378,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -con,shape,0.9999964822260263,0.9999827994402192,0.9999984852640227,0.9999999995139266,0.9999990874069961,0.999999494829703,0.99999999996223,0.999999997103038,0.9999999999976945,0.9999999999999778,0.9999999998142854,0.9999998093056814,0.9999999901852558,0.9999999948400615,0.9998672843668984,0.9999991060814608,0.999997431242166,0.9999958843719958,0.9999999972770688,0.9997414156753686,0.9999993556705863,0.9999712257381764,0.9999978527651255,0.999985920217212,0.9999551737566854,0.9999819742196233,0.999999999013282,0.999999999823638,0.9999999942489828,0.9998179044205199,0.9999926253438763,0.999941448174466,0.9999997081577011,0.9999999039573394,0.9999979498232837,0.9999111996281971,0.9999995664116968,0.9999985329330425,0.9999986327822422,0.9996780763262677,0.9999625359019471,0.9993726260774708,0.9993555857475805,0.9977611342170607,0.9999909515578883,0.9999920256588225,0.9999968771827368,0.999673442357276,0.9998068096426663,0.9990149348385137,0.9998360466904798,0.9997528306308476,0.9992103573964086,0.9994880675349463,0.9999512851011905,0.9999967160037253,0.9994336551766284,0.9131659383724863,0.9463341303879494,0.9884511196469068,0.9996185901107856,0.9993213962153588,0.9927744708638063,0.9999999695469186,0.9999315474775523,0.9998530072167082,0.999999991901083,0.999999995142582,0.9999999243371596,0.9999992441091472,0.9999995546722062,0.999999653867054,0.9999331442458524,0.9999995935735086,0.999737986313654,0.999999999787941,0.9999971040906056,0.9999999949839027,0.9999998200317692,0.9999995129907493 -con,object,0.9999993791371558,0.9999964098952397,0.9999999630243577,0.9999999999345324,0.9999999679738186,0.9999975641409791,0.9999999998840912,0.9999999988393447,0.9999999999986182,0.9999999999999833,0.9999999997380844,0.9999999002818991,0.9999999834240694,0.9999999997521802,0.9999833339299851,0.9999998806243169,0.9999996486195291,0.9999997936923616,0.9999999997883742,0.9999653715082432,0.999999829225008,0.9999928273230111,0.999999418050697,0.9999998708843467,0.9999999879620701,0.9999999955761749,0.9999999999998106,0.9999999999999858,0.9999999999995153,0.999903645071869,0.9999979476347463,0.9999756343298322,0.9999999745537196,0.9999999815129562,0.9999999049021698,0.9999610452624715,0.9999997996842075,0.9999988509975276,0.9999930451297238,0.9998159546038595,0.9999961708954148,0.9999366118346585,0.9999561362026355,0.9995764185793433,0.9999932504134553,0.9999936174326185,0.9999955988494816,0.9996409288817888,0.9998334893243305,0.9994658035786841,0.9998795672608959,0.999707376086907,0.9995644690228791,0.9996592430844337,0.9999646271993705,0.9999986395880802,0.9996495409773134,0.9909596897506325,0.9951261006278103,0.9997164661396667,0.999981877701441,0.9999127130492858,0.9998037870555522,0.9999999976758616,0.9999963262094955,0.9999537994221142,0.9999999476359013,0.9999999902716018,0.9999998312490896,0.9999990111039943,0.9999986337002842,0.9999969026843318,0.9999644764238619,0.9999993732475039,0.9998334925015968,0.9999999999767994,0.9999998501863343,0.9999999999386646,0.9999999737668297,0.9999999925051054 -concavidad,rgb,0.9999999999778979,0.9999999999987457,0.9999999999545757,0.999999965798754,0.9999999979857752,1.6305395282542564e-11,2.727828191581131e-09,7.451041628164397e-12,4.665903032806995e-13,3.3986224347663106e-13,2.303894571195324e-13,1.829384898909023e-17,8.108489432664378e-18,7.166019666969471e-18,2.792030914277764e-13,2.675279203596115e-13,2.6004204571832366e-13,2.5476435849659554e-13,2.083401331243617e-13,0.9999999999994365,0.9999999999915978,0.9999999999838547,0.9999999988401185,0.9999999731680742,1.0,1.0,1.0,1.0,1.0,0.006091343112397822,0.06241598595202648,0.011056656930234042,0.006430363815648507,0.00343998642328327,0.0007095404763623943,2.4745288283013907e-05,4.9655805624731834e-05,0.00010329096671294865,8.520561538836172e-05,0.0005063084670225543,6.127649694873953e-12,2.650672639589616e-12,2.4580568079069168e-12,2.452371869908107e-12,3.5888013037818643e-13,0.7896466748693928,0.80695187478879,0.7997726685506521,0.7866976171535933,0.9999999914850591,0.999999996940534,0.9999999995189104,0.9999999271704978,0.9999998430157813,1.914594227554788e-07,3.1739130043336305e-10,1.681176146181891e-05,6.50786081548037e-18,1.79698079412096e-18,6.183699671596375e-19,2.82366961831383e-19,1.198540371369411e-19,6.140895780997797e-19,5.6415005378574e-19,3.0720060977145283e-19,3.1064544366630987e-19,0.9977622223045716,0.4140723342342274,0.9982383237164892,0.2617363525076944,0.99722552399429,0.01071678106434587,0.013333071096207367,0.30790957634842486,0.19896473008981497,0.9999999999455125,0.9999999999103693,0.9999999995385793,0.9999999944450715,0.9999999978983996 -concavidad,shape,0.9999142878485181,0.9999608510416423,0.9998653887299024,0.9999966493489935,0.9997961693481963,6.190086786102672e-07,0.9987908424738344,0.2342666114335426,0.005222864071545867,0.9253425818514919,0.682839272952619,0.16116840509554048,0.9757044667959478,0.07118931432081456,1.2451815652718374e-05,1.2178308340464085e-05,1.6363017874273675e-05,5.007858038946398e-05,2.266662970044799e-06,0.00011450005892616007,0.05671231159117409,0.8506921818658089,0.7332285474794776,0.0035680038964373386,0.870656947227566,0.008535742454095356,0.028006127319099502,0.06561100107882224,0.108322747013432,0.007749317700488331,0.007464838983697992,0.0027724659780491395,0.0011353655892285548,0.0005717266425834159,0.013241746057516709,0.3470166566794395,0.10414623090289325,3.0827200205494295e-06,6.95732497420908e-07,0.00012008166731627611,0.9871757394778637,0.21852487639342916,0.23535920912856298,0.912929567918406,0.03164631218158357,1.298299120847515e-05,2.6486053852608776e-06,1.5252509918358681e-05,1.3198922362794418e-05,0.00015693927809339768,0.0004751039989402573,0.00018665935516454035,0.0002590583813255649,0.0002616065361697022,1.9271945763068537e-05,3.99575997459769e-06,7.866213544454383e-06,0.0003603680052828182,1.4122127207586456e-05,0.0009255801733565,1.3477946689871851e-05,4.605252840014808e-05,5.217746701516014e-07,5.446267085551068e-06,1.5201029682085055e-06,7.332904568337812e-05,7.651384632680263e-05,0.0002481508004303696,2.3329889095817578e-05,0.00732413799525855,0.02276915806639377,9.964156908451918e-06,7.745059163671813e-08,5.456293111406488e-07,3.1373363314951037e-06,0.566259148131119,0.7084574715112221,0.7047138906110233,0.07585322090282051,0.19697069137998974 -concavidad,object,0.9999709335625495,0.9999804920607898,0.9999801899683746,0.9999981882837067,0.9998185450092961,1.0334092427204572e-07,0.9816279364677739,0.031739557298411825,0.0008948954921354848,0.3119489771613107,0.15577389042962966,0.00022824653171963174,0.024740246840557787,0.006700635605490024,3.03925126019743e-07,2.4554391842408614e-07,3.7542781575351615e-07,1.4347815784648691e-06,1.9448531532277145e-07,0.023066883308018427,0.9169694768393956,0.9968656369344809,0.9934765016397868,0.061909574622666046,0.9803269818878704,0.09864541389595079,0.22312349271186788,0.35503971010264895,0.24813348888981374,0.0011655932236942714,0.0034214053601597616,0.0006897604868848791,0.0006579839553697779,0.00034280562983759273,0.0882069386099306,0.02628281847074544,0.01120662101430733,9.939342284119063e-08,1.297037043496563e-07,3.5317922266309106e-06,0.7088882160345505,0.007190458095485272,0.012187137331269929,0.2530256301422948,0.016641012911487375,0.00018336175856776104,6.589685774071727e-05,0.00024813375873811074,0.00019817079897305182,0.05183873062260467,0.19123944012884841,0.13134653569714094,0.13296064011415243,0.12253041537567161,2.967513504285197e-05,5.871915500368025e-06,2.143935917814177e-05,8.064909843760665e-05,5.699410084237922e-06,8.815193200809488e-05,3.0701547435127926e-06,1.59947306543899e-05,3.0551488829622605e-08,3.38204829290844e-07,5.0846909280705805e-08,3.852262182378648e-06,0.0004357438205728258,0.002257119298261935,0.0005081640867364738,0.07250576303568824,0.3967661956640399,3.7553774861957086e-06,5.67414024463052e-08,4.708303794054112e-07,1.1377597947447785e-06,0.9476408418524345,0.9070248740935953,0.9949324965467331,0.23372529681260848,0.8833053671800717 -cuadrado,rgb,0.9999996953516681,0.9999998620049979,0.9999993140180429,0.9999724963419514,0.9999899244617085,0.00010303292605162973,0.0007591773317247727,0.0025492555732130767,0.002568631307882501,0.002758724775906055,0.0005487742284683316,2.142080508097723e-06,1.682088882213819e-06,1.6588619735953015e-06,0.00015947756230085477,0.00014849833794475484,0.0001406100226241044,0.00013437402615575908,0.00012867088121379773,0.9999998115750892,0.9999993675050746,0.9999990831320502,0.9999917637952026,0.9999732495553401,1.0,1.0,1.0,1.0,1.0,0.42281674494936355,0.6279425025510617,0.4683881073244096,0.4013882696301487,0.3399870954181338,0.20590167239719714,0.9997199124740802,0.9997798398189667,0.999893680724627,0.9998559254556547,0.9999448317535939,0.00039418889661308956,0.0003228520056696183,0.0002751305049866447,0.00023584393024529167,0.00010902355403971394,0.9514532508811586,0.9576488875074085,0.9570551765426224,0.9601435159739062,0.9998932809315361,0.9999327983745321,0.9999712068897229,0.9997174081364478,0.9996004535527597,0.024033866461705602,0.001847549284111327,0.1944840395432906,9.329915989102634e-06,5.116260195529956e-06,5.60554517697301e-06,3.0206258052188083e-06,2.4117456213913673e-06,1.3462016410021104e-06,1.4986121643504815e-06,1.6998928601765087e-06,1.7011900320242734e-06,0.9829469417532035,0.7503867793997192,0.9852073547287755,0.6897958990894689,0.9823415627666996,0.999860254947088,0.9998872802375024,0.9999851952905952,0.9999820686632619,0.9999988805246744,0.9999984809479174,0.9999965634913264,0.9999918528916841,0.9999938092156071 -cuadrado,shape,0.9997074873805072,0.48401805471090664,0.9189105406310925,0.00034807272285472285,0.020652853307653724,0.06044842977432339,1.2837615247579163e-05,0.9999890804725337,0.9999957072156779,0.9999999994518265,0.9999999881099458,1.0707852671737688e-06,0.001089093763104964,0.0014408141665139935,0.0005341834794153347,0.0012473232006077531,0.0010502421402831688,0.00025903725194515527,0.6803302727421832,0.9998616261382437,0.9999993032468247,0.9999497472060596,0.9999718955776794,0.9987924334963435,0.598822326638679,0.10351383354302249,0.8857911888325749,0.8794453482571757,0.9973207762446539,0.0025516949893253003,0.0035289781482003347,0.011047912057691091,0.003436920125487812,0.06207426269204887,0.002122616075626103,0.001782698727498224,0.001275575292603192,4.740584298283476e-06,9.066592594545965e-06,0.0007871875802953345,2.6251521150557927e-06,4.4843522569557875e-05,0.00010377345942407192,0.0004249181857656164,0.01847140913164149,1.866063509936195e-05,2.924579965103944e-06,2.4162889913854034e-06,1.9289010869138845e-05,0.007952972892706295,0.029303850311697913,0.6765733869523447,0.4540856332051406,0.9396763890860339,2.6210269505768794e-05,5.639075282350571e-06,5.999452620107994e-06,0.9340875914632536,0.9337959641543835,0.9987586538225367,0.9988026773058378,0.9922984187692816,2.4592767332020655e-05,8.593141294289137e-06,6.513365725835e-05,0.00019923764412694815,0.9252070060234039,0.27335978171160424,0.9936802441006559,0.8172308744084311,0.5472245495703933,0.0001712776519363302,1.9078922655171113e-06,2.962561598920277e-06,9.13958000513548e-05,0.6550776177313135,2.6336900609976295e-05,0.00016559528552875257,1.399175256762942e-07,0.005176784607430611 -cuadrado,object,0.9979454812733609,0.5172944137310975,0.9454665236213619,0.0017746855545630444,0.3059834034923623,0.0006586995647081943,1.069401396450901e-06,0.9998804284440558,0.9998576731090314,0.9999999811723735,0.9999998141268828,7.851473471288573e-07,5.323946255504096e-05,5.4599794747774525e-05,0.0013736904931875645,0.0005494990602985236,0.0004618320981647353,0.0005364237707667123,0.15900623480157744,0.9999661420924573,0.9999998844375946,0.9999894061010554,0.999991701080065,0.9993976681596313,0.9996662209030742,0.9985828416965135,0.9999278407148321,0.9999437396841921,0.9999924727594707,0.0029081504248583156,0.014142620310442316,0.02187415569845618,0.03161416060691421,0.02619098755396899,0.006929104632783503,0.0003861456413756773,0.00032966811890255325,6.835563798272703e-06,1.5047520314384881e-06,0.0002544860681742373,3.096898501677864e-06,3.9018513213154786e-05,8.856508692516574e-05,0.0007170868454100625,0.013123459916378036,1.5944206003866497e-05,1.9062738102175762e-06,2.513016398797153e-06,1.9685090694367667e-05,0.011028764592816893,0.04341052645770374,0.7099383021178546,0.5019072991070026,0.9079493436188483,1.0237793991840356e-05,2.405149968144518e-06,4.60478880534104e-06,0.8274614315015234,0.8159387437411619,0.996148042486976,0.993897044103451,0.9413487006614485,6.394044219622921e-06,2.841143530364218e-06,2.4755370840232775e-05,1.208052830544118e-05,0.48098337063712243,0.058661356572386344,0.9378927555331874,0.5950358175023016,0.3281225314710202,8.29972325168542e-06,4.351323758850958e-06,1.1377276394135106e-06,4.8150455157819066e-05,0.2982656909032915,0.0015334523923685316,0.0023959149736596957,3.0629967062950977e-06,0.04935743518396753 -cubo,rgb,0.9998350426946843,0.9999698300200952,0.9996955557248329,0.9767704375903372,0.9961614450252873,3.504538393703929e-09,1.484487272743683e-07,1.6148423644445967e-09,1.2553100616298047e-09,1.3445520704206964e-09,2.6842656432582937e-10,2.1107414802377577e-12,1.7809961593206481e-12,1.7230369373705068e-12,1.1794163240226255e-10,1.1247501537300855e-10,1.086797700833047e-10,1.0577744771731122e-10,9.775311656226395e-11,0.9999807519519048,0.9998878836625457,0.9998287030882558,0.9973212625655368,0.9799757286516751,1.0,1.0,1.0,1.0,1.0,4.606482507748862e-05,0.0002144026828857965,6.825407905560294e-05,5.0086621049198614e-05,3.4258437197599354e-05,1.3417607598997766e-05,0.999978444675777,0.9999866532096627,0.9999949539545296,0.9999927283896072,0.999998475988819,4.6432782695644016e-10,3.2271476770941934e-10,2.949646567836377e-10,2.794976548347709e-10,1.091888235930343e-10,0.9296312349224084,0.9479845550916889,0.9471527560865206,0.9576825727945898,0.9993058621819961,0.9997433094355849,0.9999394887147017,0.9975836939101479,0.996341258357867,0.0005882986885205634,8.823783912189544e-06,0.02844039757515489,4.03179851575394e-12,2.6052240560673593e-12,3.5629769294770016e-12,2.428043125660919e-12,3.270762289420335e-12,8.428914254912369e-12,1.0796457233637527e-11,1.1548315631922136e-11,1.1625000414402005e-11,0.930938383063087,0.10134529378088053,0.9482705543448526,0.06627172233993403,0.9361983981337608,0.9999980464840763,0.9999985678094966,0.9999999413612127,0.9999999166374961,0.999630380367246,0.9994858262726176,0.9985125596939918,0.9929634772421864,0.9961096068528709 -cubo,shape,0.999359959415599,0.7553899268088313,0.9755688184222837,0.0025391062287240126,0.0010549464226855315,0.00040963401379819,6.574429593599459e-07,0.9999964424683665,0.9999997740810109,0.9999999999948541,0.9999999810775538,2.8388139231206646e-08,3.908349806106794e-05,7.819625651856059e-05,1.4805823393343157e-06,1.518736726501226e-05,8.479839916434436e-06,7.963177173990707e-06,0.6909359297199169,0.9998543404784732,0.9999997165156469,0.9999939542885109,0.9999991965527815,0.9986988774131803,0.9997612580235893,0.9997145260083962,0.9997704942754245,0.9996667965391335,0.9998751028559996,2.587542727015772e-06,3.968232092349313e-05,2.5908706122447382e-05,0.00010420664825244483,0.004671412324968253,0.5430690875544358,0.0016377820522562908,0.005718709890634006,2.5381124353615373e-07,1.836149587407019e-06,0.0004901402398257869,4.636761782178789e-06,2.3388245949882165e-05,8.352857461410546e-06,0.00015091083008002843,0.22873437985303358,2.6918263520310606e-05,4.518954220910754e-06,1.2257178953525552e-06,1.314616376869248e-05,0.03854391063459253,0.15937486508965273,0.9113265332550803,0.26520478170804135,0.8870032685102107,6.512351356740982e-06,5.781439363173326e-06,2.1344854744969823e-06,0.8962718198783441,0.7033136614256055,0.9989656711822431,0.9994591203218535,0.9817253125823199,4.252715141824513e-06,1.8702446027916137e-05,7.459149024455413e-06,0.00040363264721314903,0.9878014680823908,0.8003714321811667,0.9984865707284982,0.9890206487620492,0.9757104705961003,0.0002846786343446427,1.3616402453049958e-07,1.489961263945781e-06,1.210661469626958e-05,0.30444500101679406,1.4731979346625348e-07,0.000610832567810606,1.1691710036807962e-08,0.10656814746991566 -cubo,object,0.9327445256060553,0.25677809201613333,0.9417399978936205,0.0013502419149289664,0.0402810887033121,3.5941627920365315e-05,3.118154748489002e-07,0.9999217727167039,0.9999682907784797,0.99999999810372,0.9999988974735262,1.6040958568231299e-07,6.864535766520123e-05,3.708475100725262e-05,0.0005243637759825507,0.0005895586838800816,0.0004342419740464676,0.0009870312577401183,0.1527620247171909,0.9998509723622993,0.9999989187147226,0.9999297080160036,0.9999738818650377,0.9990469805150857,0.9999999178778375,0.9999999495970407,0.9999998459458732,0.9999997016782101,0.9999998462077303,0.00013713422370718043,0.0005569028609181878,0.0008226495667274041,0.004920350040621205,0.008809252500295598,0.1925787613311213,0.008088425952013032,0.028181264786618126,0.0015452335208723453,0.00043688772978117636,0.05290875075702932,2.5302099525169015e-06,2.320359770122842e-05,1.4426036066225483e-05,0.00021191077812165356,0.005713645443477713,2.3523163251509382e-05,2.9963597302710963e-06,1.7172824235123642e-06,1.0395018829900493e-05,0.00418917125084033,0.020067963114825723,0.4296054337997788,0.07892128230844095,0.3951258116091006,5.696983124895104e-06,1.0633771723652358e-05,6.805711489593903e-06,0.937657684234925,0.8017250026405485,0.9990089711678837,0.99926662511096,0.9761723362739289,2.543202963062417e-05,1.2195821963612076e-05,1.5515286071682422e-05,7.043102550148529e-05,0.16235963148326957,0.03758231509386101,0.9380902869096719,0.405399863463918,0.20004120553582638,0.00010125558643450713,3.0789627697139816e-05,2.1917485955053677e-05,0.0002753563059253274,0.05559640465117076,6.570834144784671e-05,0.002327930053240344,2.714966023583056e-06,0.051672476751737535 -delgada,rgb,2.6126338380907995e-13,6.419553124936735e-13,3.86015236984466e-12,3.741121579016303e-09,3.2971735302005168e-09,0.9997836297535176,0.999492892543649,0.00012894248452527293,2.7701465921498316e-06,1.3354890718737852e-06,0.0008913034750725474,0.9934809442330759,0.9936139156181034,0.9928471496277795,0.23961446984385504,0.2917171097542812,0.33731279076777115,0.3788697969078343,0.35596877840327174,1.1321177975023386e-11,4.3931133309117096e-11,9.005743835770399e-11,3.136894430072682e-09,4.925336961167294e-09,3.216218246659531e-48,1.9785902594872578e-47,3.6116686442566767e-47,2.0326226800095745e-46,1.9442546775954966e-41,0.025458898233396168,0.024297212567130615,0.028577405657555566,0.04376482742430861,0.05522153069762064,0.10922055268147945,3.330026390529551e-18,3.393527839376555e-18,4.399713050327134e-19,1.2285995164000411e-18,2.8897947840908426e-19,0.3256464685650294,0.25618541227093383,0.39447949611254035,0.5739785349754111,0.7332132017498366,0.022518152914859393,0.015673613705467295,0.01570230857094377,0.01114325154785928,0.00016625963425158916,0.00011928902985225816,4.978527175686859e-05,0.0005679946932107114,0.000889012781988056,0.7387489769540213,0.9450763996858625,0.12200368843582375,0.038412644939791504,0.09893237561544727,0.020341041966092873,0.11086319347720049,0.12849052929337712,0.9759120835828343,0.9612325297256187,0.8614853787602823,0.8632608535466627,0.057066719983715805,0.5971779738006732,0.04670420902305755,0.6668576099087049,0.05411321119443825,1.393999264010802e-15,7.784891165664519e-16,2.376546070604586e-17,2.2955682095447327e-17,3.0446202147539e-11,5.848941423491611e-11,2.003747305591657e-10,2.0869543318278836e-10,2.7769980599690726e-10 -delgada,shape,0.00795908634888471,0.007720554640281203,0.8451742850890116,0.10962529294443485,0.0003128318117722821,0.0010334582882507329,0.9968806046463419,0.16788760428934868,0.03826792566534036,0.01244613086749031,0.009736411861626467,0.9999851035523907,0.9999612015244262,0.9999675118876589,0.5820812824910396,0.020090098880551115,0.0453666916287734,0.014212265210712402,2.9102423419725873e-05,9.741325125874721e-06,8.332076749607982e-06,7.845038041700019e-06,5.210993867465713e-06,3.871518682846336e-06,0.0009362803196698298,1.5989996769339934e-05,8.5884095601888e-06,1.4642612646020088e-05,1.4128444742077319e-05,0.9067437464056566,0.6655282301414801,0.5937937313502168,0.23911462891295704,0.00455652790934274,0.009020009562948985,0.4391448425736933,0.3799006814481614,0.0022633355610768725,0.0003334438228447306,0.0003905694862723136,0.07287410639024068,0.01891454498533609,0.0034556128090907647,0.026029928029311547,0.002843483049808464,1.4431130676025315e-05,3.310523737531928e-05,1.4301809046485004e-05,1.0234341672060628e-05,1.0730753725657363e-05,1.3652380085210017e-05,7.615470236449579e-06,5.975915464116733e-06,1.0861237892135832e-06,5.0513714256516085e-06,6.215066097362147e-06,1.9400800017785186e-06,1.7766919415097226e-06,1.1732655371916921e-06,5.77056767063287e-06,4.384125024766857e-07,6.796129001695789e-07,4.3910324879257864e-06,4.723434114567363e-05,3.629707893108894e-05,3.770810861223468e-05,7.7881905616011e-05,1.1897325772430741e-05,4.389987006067877e-06,7.614583939607804e-06,7.724577328124722e-06,0.00020607206341844976,2.1946350827843433e-05,0.00025605595226106957,4.198197921821551e-05,0.9577155570199251,0.7840592097928402,0.9326415906464636,0.977002153537938,0.08202355282452421 -delgada,object,0.013164202703972621,0.004671842473584465,0.5747286820062684,0.11469672515325331,0.0010589906708748425,0.013736785826535385,0.9926987870847266,0.6756632163308592,0.4679930474885609,0.20205046909827434,0.07617587907154692,0.9999893991776349,0.9999781931004393,0.999967049730132,0.954922408009024,0.46964233519343723,0.6168266855453098,0.3489048572834169,0.0014033577276691472,3.973412331185856e-06,3.4840013538186283e-06,3.1677327259146145e-06,2.445372318063321e-06,5.262101297428884e-06,0.004970793404289916,0.00017610071479357125,0.00011695936148324925,0.00019837829659278812,0.0001852004390919201,0.9424228009450646,0.7486971875350029,0.751132310012416,0.386970776776324,0.023825133844498966,0.008084614710884279,0.24360858181920295,0.2064238126073759,0.010175857036020667,0.0017649948320517998,0.0008985572407954502,0.3952986979328242,0.1782422286636653,0.04603640581909931,0.09760106808563598,0.02048429439494256,4.005520423241957e-06,7.483831684413077e-06,3.125140397153106e-06,2.1872742753545733e-06,1.6378250287668117e-06,1.668617158858785e-06,7.098779561221436e-07,8.490027146216454e-07,1.9661820214231415e-07,4.815502479176431e-06,1.3791387596586341e-05,1.674503253816791e-06,4.888425603156185e-05,2.882176643230089e-05,0.00011608256876774715,1.2856961376565397e-05,1.6054801105525493e-05,0.00012906903407571555,0.0006824894523898001,0.00048159872843799793,0.00047458926547407554,1.4940786991653682e-05,6.825141687301702e-06,1.5281263762338273e-06,2.2465672210223297e-06,1.1591245707978233e-06,0.00010049890651368232,2.417801554240204e-05,0.0001377632637274633,2.551179483427929e-05,0.8515151308267028,0.6152437958288187,0.7443887949156512,0.9525043567990369,0.03200254510961617 -el,rgb,1.0,1.0,1.0,1.0,1.0,0.9678830549211405,0.038452506125894695,1.0,1.0,1.0,1.0,0.9999999999750391,0.9999999996760525,0.9999999997555258,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999941576,0.9999999999787703,0.9999999999997746,0.999999999996928,0.9999999999988869,1.0,1.0,1.0,1.0,1.0,5.278602178490985e-09,2.504280727992057e-09,2.3230354450915947e-09,9.125807637870581e-10,1.0,1.0,1.0,1.0,1.0,9.24694761420488e-14,7.015483603615935e-14,5.870506723818574e-14,1.0,1.0,1.0,1.0,0.999999999999903,0.5635592014265972,0.47164542054880476,0.9605178203266461,0.9571635194414958,0.5218981694428602,0.14601646347845793,0.3427087389945964,0.09692069715499788,0.17390550961933027,0.9046557860559716,0.9637999610156692,0.9993201758404523,0.9996584839447851,1.0,1.0,1.0,1.0,1.0 -el,shape,0.9999997664633121,0.9997193815867215,0.999939950133187,0.9999873692745251,0.9999999655185393,0.999996715803866,0.9964150399804683,0.9999972852100987,0.9998983617332375,0.999999982758433,0.9999998367987237,0.999992530298721,0.999980815456676,0.0009606275992565344,0.9997166544428656,0.9999999741887398,0.9999998582441431,0.9999991055481159,0.9999804071826994,0.9999831422189092,0.9999999754349621,0.9999999978860166,0.9999999772604852,0.9999882621935471,0.9999990548838675,0.9999768495512369,0.9997330600961076,0.9999938930649808,0.9999977451219219,0.9954265156183516,0.9998100514160645,0.9992349470856546,0.999861995908198,0.9999998505660758,0.9957110149144568,0.9959836702224503,0.9514846073144604,0.995512061784196,0.9971532760766656,0.6006983518638421,0.9999881426726797,0.9998730472122265,0.9999035957965313,0.9996515837487184,0.9999325019239851,0.9958481637311464,0.8957043205299237,0.999816722538712,0.999933090580131,0.9997973567072048,0.9998345506985229,0.9999151970794377,0.9999994782018877,0.9999999636698755,0.9999887902612778,0.9901134369493485,0.9998092616155558,0.9999999757134518,0.9999999891522323,0.9999999134799623,0.9999999822586417,0.9999999600912917,0.9997801015073055,0.9996399272431885,0.9999925761267301,0.9999785060458384,0.9997806988185824,0.9999603849881485,0.9999953979201466,0.9999932802964167,0.9999907747306571,0.9997761660377289,0.9999917023849213,0.9982704332828178,0.9998711890697404,0.9999929764896829,0.9945122730066849,0.05109105555774808,0.999646556869075,0.999044511914357 -el,object,0.9999999821929303,0.9999976766181566,0.999957863201538,0.9999893859250967,0.9999962926508635,0.9977360051828603,0.9825267804523223,0.9999976883183032,0.9999788574894323,0.9999999924169224,0.9999999102206113,0.9889809730655617,0.9997560892855365,0.2302820316506965,0.9997710782409753,0.9999996190377064,0.999998852678783,0.9999920235996368,0.9999953921712176,0.9999995655572222,0.9999999978065377,0.9999999992721349,0.9999999967707183,0.9999955654443664,0.9999999999933533,0.9999999998037259,0.9999999955581205,0.9999999997186244,0.9999999997747882,0.9979210480904133,0.9964636880419162,0.998867175949857,0.9984841269646119,0.9999924457574316,0.9997188972296105,0.25752790666269243,0.03193713436603132,0.18795772145227954,0.5841504029829002,0.0008268523329363601,0.9999361496174529,0.9991643299846045,0.9973150899230567,0.9997763786257251,0.9989957500834389,0.5970230711068386,0.3064415932284814,0.9514889122150139,0.9745726283493555,0.9996458693339147,0.9998672515943349,0.9999256622665698,0.999988749039651,0.9999985711576415,0.9973451571142965,0.8792433636427817,0.9297024903452376,0.9999999962456798,0.9999999893011952,0.9999999633263181,0.9999999902980049,0.9999999817022057,0.9998928115099477,0.9996911040884825,0.9999853876312884,0.9999594535241907,0.9914470114249839,0.9945626644681007,0.9945586923420024,0.9992436029014956,0.9993190413666257,0.9869976700359709,0.9853406923382432,0.8828496521099476,0.9945094485028074,0.9989982581754503,0.8716957107555202,0.575893693948503,0.8596147194584955,0.9948363349586057 -en,rgb,0.9592138054010134,0.9266967881480501,0.9343205636394036,0.8840224430239806,0.8355928859728087,0.6681229453038915,0.49861010791717736,0.9940691192178394,0.9976834596605927,0.99800938645516,0.9937385825363096,0.9630200455798696,0.9638689265484709,0.9650397544267505,0.9795497080025194,0.9784596216564957,0.9775406455168725,0.9767129557157783,0.9776319395711547,0.8499208991331857,0.8614556362123841,0.852540406274576,0.8250932850718304,0.8730314502803762,0.9999962803850835,0.9999955406457363,0.9999955124188252,0.9999948801261933,0.9999902054770408,0.8129488267049899,0.7525628346309569,0.7934754439069175,0.7877413162644118,0.7928395595586261,0.7996402641972322,0.9900873809206304,0.9888325578416699,0.9912558830268463,0.9898134369188081,0.989441408393139,0.969444176344926,0.9739347633470522,0.9703654926878847,0.965335325831668,0.9667217692960213,0.14347987875786086,0.14402315555017103,0.144412102123384,0.14681210704096523,0.18202660260637776,0.15823346183963508,0.14019808538234035,0.1814727888340946,0.1797258249280803,0.3587208576071611,0.4973082157316711,0.306145110185963,0.9937319414595219,0.9926968813004309,0.9945637418290292,0.9923204511906368,0.9911778117187423,0.9582470735474389,0.9602082292448716,0.9703584749556263,0.9702084467362386,0.127139668224281,0.176978060816464,0.12414031310046568,0.18266986075865674,0.12559869953943326,0.9315611857480898,0.9353925740039382,0.9384292081945507,0.9435331063280605,0.9004391846536142,0.8931079876548448,0.8888121062656964,0.9199088053949098,0.9029031639968098 -en,shape,0.9997487853114412,0.9999853988907172,0.9999465159243995,0.9999994133074723,0.9998431902481592,0.9999995718037714,0.999999998309651,0.9998855415316297,0.9999978403419775,0.9999996094262675,0.9979170157363098,0.999999999856916,0.9999999953195837,0.9999999748603876,0.9999504164827051,0.9999996223875858,0.999999202150571,0.9999958776291005,0.9999994747374493,0.013051510755265196,0.8274658918749157,0.16012321793351886,0.5022918428795581,0.9805219111959438,0.998935439511305,0.9988678907539397,0.9999799456886033,0.9999947745654487,0.9997486473631874,0.9999426359213175,0.9999746469213997,0.9997552801460187,0.9999992582496531,0.9999997595093827,0.9999604373590413,0.9999374727902923,0.9999932010301171,0.999998724617429,0.9999792526906871,0.9999238929378792,0.999998795058351,0.9999971114489825,0.9999737373235014,0.9997076240888737,0.9939186150409312,0.9982846176178491,0.9991911532003743,0.9525854453940742,0.977272797497863,0.004173766603630486,0.007977717069940202,0.0003434530771903919,0.00020481765911691135,0.00012536284831222072,0.9935690579247929,0.9998528852416506,0.9497863314021308,0.004861950647026746,4.984940701890019e-05,0.00016897531005951615,0.0013607623312519338,0.00020260519649160496,0.9890736101476499,0.9999655578765515,0.9909188579598501,0.9850662923007444,0.9999308667147261,0.999977026357895,0.999869562421197,0.996136660769093,0.9957139445133885,0.9998195762570301,0.9666514909234375,0.9998835723521278,0.9682693152433267,0.9999922565283241,0.9999814224483855,0.9999975334378409,0.9999996674938614,0.9999364418479854 -en,object,0.999829505638951,0.9998851755868645,0.9999169577631845,0.9999993195089828,0.9998728780703093,0.999999402879082,0.999999998824487,0.999998977655723,0.9999999768849209,0.9999999996596332,0.9999954194498119,0.999999999931205,0.9999999999412756,0.9999999994718101,0.999999895882715,0.9999999899103523,0.9999999820063891,0.9999999394805538,0.9999999603711132,0.010343019025256707,0.8638138523494607,0.23002530789687023,0.6298042564484773,0.9837771055721357,0.9997022268772912,0.9984992642412605,0.999998072492214,0.9999991187419629,0.999978186795081,0.9999987455446808,0.9999983305750105,0.9999969939958961,0.999999873447079,0.9999999238732815,0.9999617373121674,0.9999989125971082,0.9999998728934716,0.9999999210090689,0.9999971659689224,0.9999886977805974,0.9999984096698155,0.9999975562553094,0.9999702863380362,0.9998360188595001,0.9992962024002459,0.9907025802010359,0.9928911242639832,0.6993837914233022,0.859697563050968,0.0008630340757474487,0.001971794379669246,0.00019492610087542175,7.536015331610329e-05,6.508890422694562e-05,0.9861215330341659,0.9998209834723574,0.912367265882831,0.19873516516209339,0.00706121002556312,0.08357969913003442,0.22354925850604404,0.0747412747614207,0.9996099805235885,0.9999911256364094,0.9992000113826816,0.9972228933868694,0.9998715350549287,0.9999538728874534,0.9997691718248563,0.9962924531300332,0.9909777619388983,0.9998312750055308,0.996835676953909,0.9999412038558886,0.9970218397161356,0.9999796070126057,0.9997554073624697,0.999996569192125,0.9999956460440513,0.9997988620797196 -espiga,rgb,0.9999999999999998,0.9999999999999916,0.9999999999999889,0.9999999999886242,0.9999999998856384,6.688331345821007e-08,1.8223961032164942e-10,0.9999999984478678,0.9999999986573918,0.9999999985968471,0.9999999467081224,0.001579285046038984,0.0003189271457752496,0.0003305438125163498,0.9999855152093906,0.9999792426263776,0.999972321157666,0.9999645195285216,0.9999662038349202,0.9999999999966889,0.9999999999964531,0.9999999999921074,0.9999999998223437,0.9999999999762843,1.0,1.0,1.0,1.0,1.0,0.9999674951174486,0.9997366546003281,0.9999260617836397,0.999858305777492,0.9998477480295467,0.9997369345294876,3.147376843011273e-31,1.3151953958355533e-31,1.4650471921976036e-31,1.1049031615082714e-31,2.554593340291043e-32,0.9999899246234344,0.9999924458373178,0.999981034032085,0.9999435006343084,0.9997229486710733,1.7625279436276509e-22,6.416149189712307e-23,6.142048400047749e-23,2.062286399473158e-23,5.927890078893401e-07,5.0526312277119215e-08,1.0077823305662694e-08,1.5609903500557125e-07,7.79232416926578e-08,3.3715741841306256e-22,5.4104611667150225e-21,2.7928053615122852e-24,0.9034647738494929,0.24333664286196469,0.03306595713873845,0.0009224245070112329,5.780313982311282e-06,3.972330692254984e-11,1.5866110764031767e-11,2.145295528899363e-11,2.069368197298656e-11,1.4286457076644403e-16,5.61229133929709e-15,6.442596394036838e-17,6.576882627546667e-15,4.540704633024753e-17,1.5617657066191745e-34,1.352179924937831e-34,1.1736334251302224e-35,1.8345407557284702e-35,0.9999999999996645,0.9999999999992741,0.9999999999982421,0.9999999999997398,0.9999999999990885 -espiga,shape,1.01817544230494e-07,5.843426343349566e-08,6.152703534452076e-09,0.00012538133559123827,0.30751217619476184,0.9999041289106634,0.00015930362930300916,0.0006201815409587704,0.00043608231007606635,0.9721593935200434,0.0356408801005139,0.15793658618364678,0.9996143584560864,2.1371624410901684e-06,0.9999078350321863,0.9999999460830389,0.9999996199645574,0.9999753996920032,0.9999969612292678,2.5456996920828012e-08,0.00013511558677530897,0.005003385122120501,0.006045063869500601,0.0020906921126498724,3.4048440308501832e-09,2.6669196685866097e-06,0.983356304985493,0.9935474267720411,0.8987893910859617,0.999822101733194,0.9891811041011003,0.9999225964657765,0.9680306444160947,0.9999917683560993,2.1243616720889993e-07,8.139739108313822e-07,8.698742101265441e-07,0.0425141527239553,2.1282699073346547e-05,9.998260046734988e-06,2.201514555368548e-05,7.937101478365294e-06,6.809766630681102e-07,1.5187800657903298e-06,9.120252971236948e-09,9.122257469575831e-06,2.5644841001330524e-05,1.2735035839737117e-05,5.482303476242981e-05,1.83535383979012e-08,1.815829867991965e-08,2.3496823639989132e-08,3.853146023035725e-08,4.845449910703526e-07,0.003323988872473795,3.370537473697789e-05,1.4379597388560548e-05,8.460070188513045e-07,1.447854549052774e-07,2.62398833201435e-07,8.741811022510973e-06,4.730349289141622e-08,4.0802321890763176e-05,0.005201859270009743,0.05445618373470148,0.004457839054847824,0.9997881659519757,0.9907906060555339,0.8698399430032793,0.4203850846453515,0.724848970617788,0.027897999337780435,0.0011121262829891596,0.002378203312259578,4.081738680511727e-05,2.3632506411059602e-07,2.024777456738898e-06,2.348737204671012e-07,4.560445497446651e-06,6.473944524377261e-08 -espiga,object,0.012720223264012502,0.017471777778796712,0.004434947711427278,0.9839330927959762,0.9996320692186537,0.9969312311195311,0.05380454884519331,0.3080699078513146,0.3458921075622455,0.998954378538378,0.8449012869429425,0.9195983347274777,0.9996791755388046,0.0005356900648052405,0.9999618103462298,0.9999995286213658,0.9999985733564234,0.9999794651133953,0.9999977417307816,0.011328814096991779,0.8453367664742245,0.9568781222500057,0.9214674489608773,0.9265746574678336,0.9806217053435655,0.9997358242389732,0.9999999984131798,0.9999999990284121,0.9999999817157111,0.9999178822850102,0.9990505123723595,0.9999305778865163,0.9991796002834356,0.9999928325415147,0.0016405104013774887,7.42159500666395e-09,3.578375975928299e-09,6.024556869123185e-05,9.084871291484723e-07,1.1389203258549518e-07,0.25311324174449384,0.3173160436735625,0.1282338042448267,0.036822495195539366,0.0006153845266980119,1.959518606188027e-06,4.935859406850963e-06,3.914012789330886e-06,6.143867985465554e-06,3.0295407791092734e-06,2.2196284064479473e-06,1.3380977402869915e-06,3.0555816560583656e-06,9.886115628060757e-06,8.518325900603213e-05,2.705603315444612e-05,1.7311571245281066e-06,0.001386312757926102,0.00025333506330421694,0.00022823656828716823,0.0017013298171707123,2.124616672933456e-05,0.001271247586109777,0.048285473845251926,0.17997262984850743,0.04220479152840128,0.7662487876142081,0.3991278326077572,0.026962134735368088,0.018071795406049848,0.013373544746788571,1.3255559393116487e-05,1.0656872526028975e-06,1.3615751581948177e-06,6.434766743034026e-08,0.021772623613407174,0.9143127516792648,0.01413633517736865,0.9366679355005522,0.017138588274202147 -figura,rgb,1.0,1.0,1.0,1.0,1.0,0.9999999999996096,0.9999999993684627,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999997409,0.9999999999991227,0.9999999999998781,0.9999999999995521,0.9999999999990623,1.0,1.0,1.0,1.0,1.0,0.043281563493361035,0.026239734854887602,0.02596146852411407,0.016007796737117056,0.9999999998302103,0.9999999981286003,0.9999999910190956,0.9999999994368824,0.9999999989461055,0.932949015487267,0.9991211141979137,0.2888076687126903,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9892113103122304,0.9997038767141968,0.9805411210662268,0.9997650574729107,0.9765471493658282,0.9999907728092127,0.9999938385920177,0.9999914235275147,0.9999961360256363,1.0,1.0,1.0,1.0,1.0 -figura,shape,0.9999999963220358,0.9999978408592346,0.9999997106731386,0.9999999515212737,0.9999999997813469,0.9999986300409084,0.9983186864414725,0.9999999999979914,0.9999999997592013,0.9999999999999711,0.9999999999995404,0.9999999995536937,0.9999986763387329,0.9999951531315122,0.9888190585191438,0.9986842487109444,0.9987730526192197,0.9998558025464479,0.9943552073693398,0.9999999999257463,0.9999999999799916,0.9999999994569129,0.9999999977915894,0.9999999879027209,0.9999935247298415,0.9994946466327349,0.9999817621288959,0.9999999796270385,0.9999999993140989,0.9459380923396121,0.9999998785033964,0.9999093755847925,0.9999999820491737,0.9999945531068314,0.9991513720033512,0.9999995171918732,0.9999933131725272,0.9999732828831194,0.9998450026899623,0.9999427125076035,0.9999999995199831,0.9999999995127087,0.9999999999990106,0.9999756221848859,0.9999999989686781,0.999396341610244,0.9977027132680134,0.9989188304231492,0.9996236619782835,0.9998461124982373,0.99973667630849,0.9999996650222852,0.9999993985836764,0.9999999284624741,0.9999998552005697,0.9963042919671322,0.999999580425937,0.9999999920343584,0.9999999999656002,0.9999999999995643,0.9999999999734974,0.9999999987013646,0.999580149174376,0.9996909564893096,0.9999869648375457,0.9986313370043298,0.9999498752096527,0.9998226562832618,0.9999999906467713,0.999999992923599,0.9999996936946766,0.4373358683850286,0.9902482259064667,0.9599700223476132,0.9999676229436031,0.9999706613194406,0.9999999999999927,0.9999816058988333,0.9999998867646712,0.9999809047422363 -figura,object,0.9998867248053187,0.984657224244853,0.9999997825257874,0.9999999998365632,0.9999999999910736,0.9999964554612047,0.9999923409886902,0.9999999995434103,0.9999999749896753,0.9999999999999687,0.9999999999965028,0.99999999998581,0.9999999993866522,0.9999999989353789,0.9999986336808416,0.9999900684621608,0.999996463832641,0.9999995347754426,0.9999866058326722,0.9999999991292225,0.9999999997613822,0.999999995851544,0.9999999787067841,0.9999999995615985,0.9999999954744336,0.9999290073895586,0.9999999999823654,0.9999999999999571,0.9999999999999993,0.9998348327240354,0.9999999960019845,0.999999127965589,0.9999999990150095,0.9999991637434037,0.9996918282604185,0.99999999621457,0.9999999726508045,0.9999993158831322,0.9999971153935373,0.9999995487861757,0.9999999999548708,0.9999999999882359,0.9999999999999678,0.9999819142281823,0.9999999683480846,0.999328249416404,0.9978804131328867,0.99883131496182,0.9994447459572828,0.9727682701547155,0.960752540761867,0.9999044105191053,0.9998284431056534,0.9999733220862522,0.9999995846641749,0.9994769918832292,0.9999996379438386,0.9999999979821008,0.9999999999949893,0.9999999999999944,0.9999999999978293,0.9999999999735358,0.9999876271835757,0.9999973423345978,0.9999999933515993,0.9994197618301686,0.9997840946219626,0.999689369319232,0.9999998345106783,0.9999999721935454,0.9999937673655815,0.9073147646628033,0.9995911105809198,0.9952691407176095,0.9999983348376354,0.999998400500036,0.9999999999999998,0.9999995723175117,0.999999997803189,0.9999980363750309 -fruta,rgb,4.028005530088583e-19,6.8927188910394305e-18,4.401166778619633e-17,1.5853142961797949e-12,5.222920670894695e-12,0.9999999996841249,0.9999999999719216,1.918869067675103e-07,3.004216634964148e-09,1.4278552866959432e-09,7.919027958354424e-06,0.9999963528593402,0.9999984097117486,0.9999981676060982,0.06132662832308519,0.09413661746143301,0.1306564448291332,0.17101202770210325,0.15266690415126785,3.1723769938316377e-15,1.2022441494906476e-14,3.746430064231279e-14,6.388255284086443e-12,3.1280862172402563e-12,2.5534211119992287e-64,1.9449893217163793e-63,4.0761955964140037e-63,2.9795580015701283e-62,2.446872771618583e-56,0.019009929244484487,0.05727288841038834,0.03338561789387375,0.06987903373568033,0.0892708014917235,0.20893887556362783,0.5715698182706996,0.6885328928890946,0.20630155221955998,0.4638687750748677,0.30945671917855755,0.08658669121881767,0.05266664901400822,0.14802519185568408,0.39515526072084456,0.744771632196103,0.999999999999237,0.999999999999345,0.9999999999993601,0.9999999999994813,0.9910754429328863,0.9966636616522269,0.9967141262371062,0.9986376491258366,0.9993863121632177,0.9999999999999856,0.9999999999999878,0.999999999999978,0.3526016780787,0.8963327890952223,0.8277078932988695,0.9949778563452494,0.9996941469315801,0.9999999983219074,0.9999999982719707,0.9999999913333785,0.9999999916300172,0.9999999997053131,0.9999999999045546,0.9999999997608873,0.9999999999218703,0.9999999998274307,0.9999788753981208,0.9999645337799528,0.9996838489930135,0.999576150205514,2.2165959664011322e-15,6.403316295655136e-15,3.4133651399738995e-14,1.1840841584330871e-14,3.1926006185695366e-14 -fruta,shape,0.002683678978945041,0.0012687569687612273,1.3174870132255024e-05,0.47277667960526176,0.11795269732920217,0.9997951538767667,0.9996342393629033,1.1604600354052627e-09,2.3841853327976275e-08,1.6249079329228264e-12,7.86831649192425e-10,4.7003417191242336e-14,0.9832538340770587,0.046939591564959235,0.9780680728505687,0.10987126666011728,0.7404577374007039,0.002192142333714254,0.45099119913998537,0.0056565076149060695,1.536559286348684e-05,5.333838379286051e-05,0.001336584727799271,0.5884335595373316,0.0030045709198546905,0.002793748419232633,0.01105722432782309,1.5081032145011025e-05,0.004003658294375577,0.9999914138450187,0.5160342739534335,0.9997385832369255,1.0971683090831222e-07,0.023436476947306713,0.9579996761874597,0.0006003379226354321,0.0005200577446636775,8.765839388203162e-06,0.9933703133825561,0.0002755301559959873,5.721413694507871e-06,2.0285599902862285e-09,1.0211841985081329e-06,0.23245274625835474,2.3196339838881652e-11,0.9999521855170933,0.9999855768131043,0.9999973466529032,0.9999771612061793,0.9999351231243319,0.9999767204347308,0.9999066457758176,0.9999877085404192,0.9999926141699754,0.9999184319097296,0.9999963013649855,0.9999983483230119,0.993074842526042,0.9932343050398019,0.5674065270215142,0.674277928386147,0.9999951218324031,0.99999955605137,0.999949477097548,0.9999780610834456,0.9997410140614491,0.003738687883289749,0.9681479647711219,0.0010982995216508818,0.02934913935595029,0.36027132683778507,0.9998711180451704,0.9999999996134974,0.9999991673147516,0.9999937615219305,0.0006791929249303539,4.043772937704753e-07,0.14136705747193523,0.00036976274133481937,0.0016583730966666873 -fruta,object,0.9765150146360155,0.8020916949944781,0.0029338752262495537,0.981234444572014,0.8971163290355106,0.9999902601147603,0.9999896663252352,0.004863234068833359,0.07177862161701903,1.9424235448877662e-05,0.5242150761681403,0.0007009863905683934,0.9788141389404458,0.20259060201203744,0.36660160080767007,0.0028375425910055663,0.01901194180540068,0.0023221947754340456,0.04933738975503135,0.99717385842118,0.9935943800771223,0.7450634909679097,0.8825700398535635,0.8833820463475457,1.9953860511168287e-09,2.228841649249142e-09,4.2693248551127415e-09,2.3904000602541947e-11,3.1100954234738266e-09,0.9962417562716176,0.97204356727976,0.9832966565303564,0.0019679203545802885,0.04674336528558268,0.7888598273546248,0.10881533103840083,0.04890912231381848,0.0005280702035055046,0.6039691920846217,0.00567660038559525,0.061614857973014,0.031346911532147706,0.8447310142292844,0.9992560410348903,0.9410170439540708,0.9999967615646977,0.9999967465584043,0.9999997520404851,0.9999985487413398,0.9999886385355417,0.999991545187488,0.9999975169752223,0.9999984282453642,0.9999991644466875,0.9999952031859197,0.999993790912591,0.9999988639867012,0.9993355954321365,0.9998902386872396,0.9549013580650985,0.8507890207751759,0.9999755941776852,0.9999900418951303,0.9999828658079986,0.9999939656412207,0.9997031881613381,0.9938808010166946,0.9965466397604754,0.9175993242939282,0.993652951726739,0.9951970557298558,0.99997797305972,0.9999997610104867,0.999925058835572,0.9999618321843362,0.9852682645954374,0.9543263238112824,0.24915106721871072,0.9981491551109811,0.9310555110303292 -geométrica,rgb,0.9999999340642757,0.999999994108443,0.9999998756648353,0.9999697489250331,0.9999974910546349,1.887367262053432e-09,2.8513817634945813e-07,2.046723314906267e-10,8.908469907929729e-11,8.949150373420971e-11,1.86804963860117e-11,4.6322342959086435e-14,3.4906113418756795e-14,3.2873551966076906e-14,1.0376967296048233e-11,9.932083621093874e-12,9.636515054199827e-12,9.420338347340144e-12,8.335130812369097e-12,0.9999999974152909,0.9999999736456766,0.9999999551396757,0.999998464660822,0.9999759129093058,1.0,1.0,1.0,1.0,1.0,0.000589291310164351,0.004826594710035193,0.0010178512141374577,0.000682165956215531,0.0004105346312898961,0.00011797960567500135,0.9999996884462183,0.9999998381222579,0.9999999472787952,0.9999999216763559,0.9999999892397752,7.665549317161983e-11,4.431310781880936e-11,4.117092610314874e-11,4.050416993816775e-11,1.1216595023147024e-11,0.9998124795901978,0.999871706579185,0.9998685034531378,0.9998981000539554,0.999999833798949,0.9999999544511696,0.999999993095513,0.9999991355136949,0.9999984992110251,0.0070147116784132525,2.536799164507959e-05,0.5132951309694854,5.2782911534407134e-14,2.9361694735341626e-14,3.481279403860337e-14,2.286177370552185e-14,3.07811121128964e-14,1.6867280930045333e-13,2.192415847454848e-13,2.0458361514822253e-13,2.0667992608318217e-13,0.9998903351790254,0.9460564183463638,0.9999253920685477,0.9048432317261111,0.9998987874635877,0.9999999938809483,0.9999999957377932,0.9999999999226155,0.9999999998738571,0.9999998607846351,0.9999997908807126,0.9999991743119737,0.9999929547822433,0.9999969636345694 -geométrica,shape,0.9999987920817968,0.9999886014282335,0.9999930759839419,0.9999990100352717,0.9997994393949964,0.998348983486377,0.9999963979231179,0.9999818702317766,0.9999999712552198,0.9999999995122011,0.9999999974771507,0.1196836118909195,0.9993065779532077,0.9984897563139108,1.1903348132123074e-05,0.032450689562293675,0.035347606950186475,0.07405529600446992,0.9998286222757634,0.9997380788493816,0.9999895382055725,0.9999961376942267,0.9999996625403189,0.9996568217298359,0.9999758663486531,0.9999634756442457,0.9999999241653186,0.999996048127528,0.9999790785827126,0.0005687690295552956,0.0026056046011131437,0.002101173747041519,0.021660804489795685,0.9958093400040359,0.9999828625529307,0.9165483647146685,0.996566811801269,0.4106333581909368,0.9993436971035979,0.05393336512203979,0.7972407903874094,0.0021148549988336614,0.013233082837080362,0.9966319806102215,0.9996423550181884,0.1324462240723351,0.27860406736164955,0.009179776363558633,0.00434833788112798,0.9469742945449596,0.9743505774765331,0.9992427908196134,0.9372576635542471,0.9959278067683228,0.08261269744757489,0.7043002918312087,0.0875815327859574,0.9978075367231483,0.9760995706710447,0.9993724151935387,0.9998994402735881,0.9999875796607657,0.0016910508189720646,0.7127006878510629,2.6678264096921206e-05,0.07957563729774303,0.9994311170215254,0.9999984453086012,0.999992610880464,0.9997962692291062,0.9998490894807204,0.16572618167991987,0.0009319530511531695,0.030324092570609713,0.00027635343192703793,0.9999869378014041,0.9998939606868845,0.999998191367238,0.9999948822722309,0.999956714988027 -geométrica,object,0.9999882808319326,0.9999418685982504,0.9999966683360071,0.9999902005756909,0.9997014613280254,0.8261412657810133,0.999292668014313,0.9894082235404656,0.9999257066730456,0.9999987775379386,0.9999920292628643,0.0013579243422393824,0.5379881383695502,0.9221830955839718,1.3010211425553192e-06,0.00036898213698369355,0.0005721415638441154,0.002377832276353954,0.9794105459164978,0.9997638418638723,0.999967632333947,0.9999924093301401,0.9999989530194374,0.9997217519073143,0.9999995369611582,0.9999982695740258,0.9999999892640955,0.9999997603455894,0.9999982054900349,0.00018281116049256057,0.0012329450483893967,0.0006159261712981217,0.009094898219954798,0.932275294684853,0.9999402947060301,0.9079025269942028,0.9962131497400811,0.4344215096210422,0.9856974742850749,0.2173389791568048,0.0617704466155478,0.0001160884531714132,0.0006549933784172419,0.7505479402176515,0.9399587511529427,0.35726466658790706,0.35563906010342633,0.017141210133632293,0.012994591717601452,0.9831047662687458,0.9923357878035081,0.9996419554765943,0.9795419945468627,0.9971764514573933,0.0469191438400612,0.3419238733919745,0.1139275616998441,0.733660993558897,0.22752365201030508,0.9690531913418199,0.9788059223904753,0.9976891828005094,5.430660854365165e-05,0.04920321428459716,7.774917037581786e-07,0.0014581277698521697,0.9993195703072763,0.9999944618705752,0.9999832083728369,0.9997676869322106,0.9998137522942495,0.036395341550658614,0.000857464284286634,0.035618578951639904,0.0006925128374977643,0.9999942477948814,0.9999174101479547,0.9999954124952622,0.9999661701467703,0.9999686347232057 -granos,rgb,0.9999999999999998,0.9999999999999905,0.9999999999999876,0.9999999999874885,0.9999999998747793,6.985165462798718e-08,1.923801225617882e-10,0.9999999983457275,0.9999999985597916,0.9999999984932055,0.9999999438244525,0.0016070995335035444,0.0003256931850056136,0.0003374701768510346,0.9999850584432863,0.9999786140389738,0.9999715105220529,0.9999635107343574,0.999965234242198,0.9999999999963101,0.9999999999960574,0.999999999991253,0.9999999998056317,0.9999999999739684,1.0,1.0,1.0,1.0,1.0,0.9999663210078437,0.9997282805137245,0.9999235362727571,0.99985378309459,0.9998429845551849,0.999729389842834,3.3954392547769753e-31,1.4214524703829997e-31,1.5775945900818325e-31,1.1925474863817425e-31,2.758794229619918e-32,0.9999896034897918,0.9999921964646109,0.9999804671004874,0.9999420168420661,0.9997170163602405,1.9332173889958019e-22,7.048289658432305e-23,6.747857831073153e-23,2.2696746525573744e-23,5.96745721277141e-07,5.1098371442178364e-08,1.021055473155603e-08,1.5793851202438542e-07,7.902212667926603e-08,3.727892343285579e-22,5.968092169985967e-21,3.1029079636895505e-24,0.9021840850713839,0.24230094949387262,0.03295323348815324,0.0009290838090901219,5.8873923685049e-06,4.187897885485899e-11,1.6746322379231818e-11,2.2577899716798917e-11,2.1781002779627228e-11,1.5240700767765817e-16,5.975412349803894e-15,6.882033648741463e-17,7.00394754467427e-15,4.8554691173396005e-17,1.7287125331704358e-34,1.4957082272259445e-34,1.2970691174451377e-35,2.0255431204129946e-35,0.9999999999996252,0.9999999999991911,0.9999999999980487,0.9999999999997102,0.9999999999989875 -granos,shape,1.103476595785436e-06,1.4817142641511893e-07,1.1141350939905952e-07,0.00010473606093564682,0.5059303895446849,0.999960065522428,0.0003401867882583413,0.0008694318567180137,0.0006347096494966415,0.92261765754759,0.02256550014802998,0.03452917952249794,0.9996653850001264,4.944571197773696e-06,0.9999586234877101,0.9999998804870328,0.99999957449134,0.9999816904470245,0.9999834612162877,1.5266635708665605e-07,0.0002479724482076023,0.002728265432441954,0.0024803438293961627,0.00013971064610225978,7.336650306601866e-08,8.957482250382066e-06,0.8481717388669621,0.7479598534605741,0.06068860425241782,0.9998772382543473,0.9970719001212551,0.9999561447250307,0.8959231087720338,0.9999865285047066,8.826198279667224e-07,5.101996568559648e-06,3.961871932570444e-06,0.08324447894685075,4.5831973258200434e-05,7.62819931675714e-06,1.3064955249582788e-05,4.4214716593936924e-07,1.5023543321154626e-08,6.948153876153385e-07,5.825403485131594e-08,3.442651234949915e-06,6.518769159397853e-06,9.78687389658473e-06,2.725413809140547e-05,8.999946438195139e-08,8.871637845724857e-08,1.1337919060526854e-07,1.2726724918612024e-07,1.1049023754408405e-06,0.00023956598175548974,1.881931875168011e-05,4.453820324695729e-06,4.024394589847589e-06,8.419050146891167e-07,2.8740471110902736e-07,3.316592827182752e-06,1.9834557179769934e-07,2.038763382799577e-05,0.0007739059468961267,0.005723239355864354,0.0006095397192242612,0.9669165104877557,0.8869039035350441,0.17631706471924088,0.0708890379151438,0.1229165106953707,0.0031830558289109175,0.00013208475793858476,0.00032987196920042746,6.277278037723001e-06,3.1012841695493427e-06,1.4365571466357277e-05,1.2575172222162029e-06,4.064899706018102e-05,6.416676461719408e-07 -granos,object,0.016735611921536955,0.01082351438954702,0.01015591946970859,0.962388295662766,0.9996704527543716,0.9985688535037647,0.07202009436012674,0.29244687647663176,0.27561005064400274,0.997767617830129,0.7637593266756617,0.8911487415802944,0.9998211157031608,0.0009292098135827875,0.999991195621329,0.9999995694967493,0.9999991014962069,0.9999902825109726,0.9999909970202242,0.010945222496379471,0.7523841824847479,0.8782897912990844,0.7718238610821475,0.6551110884225976,0.976473027221667,0.9991813589670088,0.9999999748375055,0.9999999636754646,0.9999990404349501,0.9999749655184703,0.9997905464182756,0.9999826541085893,0.9990110846267508,0.9999923132613168,0.0021288702923354186,4.137807704287412e-08,1.8840520607651476e-08,0.00022951192317378124,2.8527980395985137e-06,2.43870870070664e-07,0.16210521237418687,0.07719491118169129,0.015787217577201716,0.016893866077560136,0.001008305796509292,1.7055235742615017e-06,3.1970303260161196e-06,4.2066518907255935e-06,5.403532118397357e-06,4.814295644112339e-06,3.653878171385547e-06,2.4496112056652615e-06,4.526951316541052e-06,1.1822058520257445e-05,2.69248304504898e-05,2.1176023706004538e-05,1.3435335090640838e-06,0.0017435486270825497,0.00038324378413583153,0.00017885721358205304,0.0007121627864576501,3.171900389934227e-05,0.0007250150782248892,0.012415034391693178,0.04972488583349894,0.013268602285191241,0.27017441646805984,0.17540274470888653,0.008523688838238294,0.007866535705278968,0.004560917709679442,7.047621591766763e-06,7.545316577893814e-07,9.000103576693256e-07,4.452782966448947e-08,0.05891508087956679,0.9525123451351276,0.020726403407918044,0.96515711791388,0.028982174125510747 -hojas,rgb,2.6868105416506534e-13,2.985587089574925e-15,3.347463539681742e-14,6.022841563793204e-14,2.2306154836766203e-15,0.00032884466273678484,1.9802924278876343e-06,0.9999903294989257,0.9999999969921878,0.9999999991582116,0.9999990296207206,0.9999972003346482,0.9999990668354873,0.9999993019667689,0.9990291267223489,0.9987611092158861,0.998487716294777,0.9981986410525204,0.9987539463587092,5.0325800031700956e-17,3.0599329549822657e-16,3.11329702666006e-16,1.2086281658944166e-15,3.3331257269434624e-14,0.9973981427376366,0.9943512205398817,0.9962595864630841,0.9953230072617012,0.9989211578613326,1.743770724249986e-09,1.021891215424239e-10,7.425762528080545e-10,9.094925038782196e-10,1.511069222371573e-09,4.767673290633358e-09,0.9999999999999996,0.9999999999999987,0.9999999999999998,0.9999999999999993,0.9999999999999989,0.9240819035919333,0.981019257312539,0.9656023516930858,0.9265933053026423,0.9853704377780255,2.114421420908231e-11,3.0422661573007134e-11,3.2234326770265815e-11,5.7545871275172254e-11,3.0494048224296364e-19,1.4347841909539302e-19,4.3079699498005975e-20,1.1506820528445574e-18,1.8554853756868177e-18,0.00011013735643338918,0.03449339200275798,1.846554004035214e-05,0.9999999999322797,0.9999999999635916,0.9999999999988638,0.9999999999971103,0.9999999999991145,0.9999999971862923,0.9999999986666257,0.9999999998790534,0.9999999998753921,7.12818032005725e-15,4.411390689626888e-13,7.097151250986378e-15,7.31076676746336e-13,1.0710307864868885e-14,0.9999999990187176,0.999999999357496,0.9999999992787487,0.9999999996600992,4.388460346579788e-15,3.956966640898604e-15,7.629221590993054e-15,1.5115980267104457e-13,3.385208813382398e-14 -hojas,shape,0.1742120324988772,3.9966012679101994e-05,0.0003958479435925796,4.2065068254837414e-07,1.1317162708341475e-06,0.00016974148667207403,1.11699881113095e-06,0.9999972102898133,0.9999999314023775,0.9999895722623258,0.9997880986337304,0.00012014568939010094,0.0002371580558988884,8.931804579887774e-06,3.208682339246055e-05,0.00015893176763604461,8.830465200586239e-05,1.555433763144229e-05,0.0001158679971803648,5.0991774339176614e-05,0.0005979636468289197,4.254201143857344e-05,7.69693503507969e-05,5.214355802338737e-08,2.141608972187235e-05,0.00037708791032040387,1.0804222233083871e-05,1.7282409903465655e-06,5.935771733872736e-07,7.821680240198421e-05,1.9280704660413135e-05,6.229907592793334e-05,7.831724461074139e-06,3.539372175845262e-05,5.171867036199795e-06,1.0526516510713614e-06,1.650725977034903e-06,2.6409111831935896e-07,1.6069196323232747e-07,4.8541811784100095e-08,1.8572415021829483e-07,3.2984735256609455e-07,1.2022964284003024e-07,1.653485302525197e-05,0.002377459185524727,1.5832068200885574e-08,2.7589780177202836e-08,2.6937691729157652e-08,4.667005146183517e-08,2.8445168511603995e-06,1.8130590165038817e-06,3.4479605601433353e-06,3.2750309258421966e-06,6.21588867758296e-06,1.8441541107503178e-07,5.7024455906434406e-08,2.4164995938646195e-08,0.0012744568219654247,0.0005393972831411361,1.7090251313843312e-05,0.00012396486543468204,1.6967256459491968e-05,6.250741835217181e-07,7.039399335426237e-07,5.325090276818908e-06,5.952866071378786e-07,5.575478445662239e-05,3.664398695349602e-06,1.2420078823711676e-06,4.746518158464435e-07,5.817895664729649e-07,4.044227788790732e-06,2.4682916526788088e-06,1.0514432308529896e-06,4.219927195463338e-07,0.0003848913170037437,5.057046139415498e-08,6.977694294391934e-07,5.7815174491683006e-08,1.5422989697849348e-06 -hojas,object,0.007641261150025773,2.743379945617822e-06,3.1485337687598066e-05,9.185611624793353e-08,1.460668341048006e-07,0.0003381725813377314,2.1596515523044146e-06,0.9999976068550378,0.9999999463027522,0.9999966752887098,0.9998743706284956,0.002810205695403118,0.0031129289007200958,0.0004315081369354797,0.0002970224041418327,0.001032185095294421,0.0006085238854045187,0.0001628907541853034,0.0010487490291642059,5.531160637239805e-06,5.361644485462681e-05,4.0479382995600945e-06,8.775673925812343e-06,2.4316004742493036e-08,0.00028356295905017067,0.002835952832353236,8.899238057954371e-05,2.1644885915833817e-05,9.527620718329935e-06,2.094335290130424e-05,5.72739145592144e-06,1.781904355638409e-05,4.677205526684138e-06,1.3854032926856444e-05,4.234443658719324e-06,0.0036609735653700946,0.005188135662958362,0.0018508819135122517,0.00104525305116804,0.00041938357812535787,4.805347778006382e-06,9.597986132113281e-06,3.5422306955647514e-06,0.00021555167958967858,0.01750756347308268,4.8867615067283365e-08,8.240253989996749e-08,7.703455724840775e-08,1.2992451523051155e-07,3.234040277513014e-07,2.300799725611095e-07,4.2913507086767345e-07,4.888934024248693e-07,8.277275761040022e-07,2.226788078251248e-06,1.5003168174892176e-06,4.124700245768601e-07,0.0975801115027681,0.055867138540996945,0.005256558335194305,0.02940951526017338,0.007462077747750358,8.974109598591475e-05,0.00011625489478164991,0.0007063785385849162,0.0001380685531215862,9.80555734793631e-06,1.979735289092378e-06,7.610925746778477e-07,5.059269645723556e-07,3.814080057929646e-07,0.0018548612951069458,0.0013081091112157894,0.000808534164375722,0.0004454997594960063,2.3808489861332633e-05,1.5741259730224793e-08,1.3387775353310632e-07,2.083549187717198e-08,2.5269690346644275e-07 -la,rgb,0.9971635171475364,0.9996419017921535,0.9971225133996027,0.9390447400855895,0.9907385260134747,5.285973080088293e-08,2.267221720624719e-06,4.5018683258915847e-10,1.0362683140397629e-10,8.924827358520589e-11,9.205829493086459e-11,6.006375333995386e-12,4.668434931092202e-12,4.346262019874553e-12,1.7658779240733256e-10,1.791120279634125e-10,1.8177385656875746e-10,1.8453550912527857e-10,1.6395031371919175e-10,0.9998873265075657,0.9994485985312207,0.99926115722736,0.9936309086028876,0.9508551516259642,0.9999999999998304,0.9999999999996798,0.9999999999994786,0.9999999999988223,0.9999999991378785,0.0001821628613578591,0.0009478061619993827,0.0002858614438735029,0.00022445607541626535,0.00015669481819015343,6.633783049236348e-05,0.5930290464009392,0.7093585931887021,0.7976014940905501,0.7793469709776414,0.9263922422783959,9.725585609293947e-10,5.858859690127402e-10,6.205188171116282e-10,6.990074707486645e-10,2.8035410809285024e-10,0.9604901726500841,0.9677554446146525,0.9671174722587719,0.9705409865477928,0.9997877424647329,0.9999162008255676,0.9999773535627984,0.9993656149988508,0.9990881974230454,0.0012365664913699258,2.03609032173006e-05,0.033043439418638985,1.3926437367977143e-12,1.0100329360814313e-12,7.864616195958571e-13,7.641941083245703e-13,9.189798851729462e-13,9.454258704334786e-12,1.036966305105329e-11,7.388332520864466e-12,7.467758517229883e-12,0.983146028317366,0.44082313686874974,0.9868511561679342,0.33953935716953365,0.9836763289325329,0.9906835266254914,0.9921059770586874,0.9993187080108156,0.9989912096086982,0.9978223984389525,0.9973278426500377,0.993678060763556,0.9668534319787014,0.9835097795742438 -la,shape,0.9997768992979252,0.9997540369665936,0.9999598706579274,0.9997250961101767,0.9993337586890141,0.8281578616254105,0.0864405019344317,0.974798177142894,0.9999292826249272,0.9999999604100294,0.9989859797974177,0.010791358454411166,0.0051791991515156045,0.9200546381827701,0.9313944928051752,0.9876394669817208,0.9871674913596127,0.9999236538822378,0.9999657813275257,0.9941738114681321,0.9995687896204145,0.9990032245725239,0.9999074335897508,0.9788103255956536,0.999996019021463,0.9999428994537066,0.9999984337005433,0.9999975498873453,0.9997868481963992,0.11357519546945252,0.9577748584867611,0.6321775728597069,0.9966400504418464,0.9991588036144144,0.999988838685437,0.986151518637383,0.9996973536073643,0.999843999366928,0.9785455573668268,0.9706995510402892,0.000588307429618901,5.356343863479677e-05,3.0062233897844264e-05,3.571101032600674e-05,0.5864555471205039,0.9984526033617453,0.9961147041295682,0.9007641380018516,0.9334045736265386,0.9996329683742066,0.9999599048987694,0.9999111228536299,0.9991501703853582,0.9990094141828647,0.16001652857717505,0.98765388849897,0.7650190794750054,0.9877285058048816,0.9827265331505575,0.9948096713307604,0.9927149358920134,0.996360560992204,0.24578435436837376,0.9403210633525979,0.3493726644687017,0.8517901589001445,0.9997778700771383,0.9999872705750154,0.9999070323983705,0.9997142879994103,0.9998727632120608,0.845583566953691,0.9446511583733995,0.7446651571364203,0.9633687010826827,0.9999799231310397,0.18139547300945016,0.9999883716349045,0.940346766286601,0.9999880248120523 -la,object,0.9997809224286093,0.9999769337314295,0.9999961212361066,0.9998517615914078,0.999650799743956,3.378141898789131e-05,8.630940431647379e-05,7.176138559131995e-05,0.0005237970956068625,0.15443679798597415,0.0010368669213701863,8.226444223205745e-06,2.5665237268170804e-09,0.003039157957300969,0.00542434103886783,0.01157005826325035,0.008183636535517982,0.66835393721866,0.9884436877282494,0.9999967529296495,0.9999902241355463,0.9999935620230692,0.9999977533686658,0.9999989168939959,0.9999982880776958,0.9999993962350285,0.9999999972767641,0.9999999972907887,0.999999853549416,0.031411865999680016,0.7675333404817943,0.35757347357102337,0.9968560983248081,0.993537873338502,0.9999745220211901,2.0263756627327586e-07,5.8566156286107475e-06,2.794645709562803e-06,4.254797001808279e-09,5.930932795599524e-07,0.0005407289527979508,0.0001103998109653969,1.2177715851022928e-05,9.366509355186821e-06,0.00033632548565462763,0.9985547277698491,0.9955168347271454,0.9331154945143669,0.9670185902968786,0.9999821368525837,0.9999927063693059,0.9999732508914448,0.9999156157155644,0.9998503010161032,0.022434537436431378,0.1856257385484959,0.14334259254283047,0.00015903659787020087,0.00014770203540705832,0.0006148244366041729,0.0010097033441746422,7.904711415349256e-05,0.0034113583865883284,0.010131609402315658,0.0006405556116816977,0.0007197632004575686,0.9999487025059701,0.9999530209223165,0.9998073233971735,0.9997042413401863,0.9998144327135222,1.2839417769000419e-05,9.505654411625539e-06,1.2330321636569102e-05,9.786352194042305e-05,0.9999997177285924,0.9922387582306174,0.9999995523459498,0.9718866151524826,0.9999998898894104 -larga,rgb,6.699689179689007e-08,8.962350159953954e-08,5.132510269994938e-07,0.0001283249837480246,7.016365608535157e-05,0.9995509616419866,0.9951456072555308,0.12820085148538835,0.001141903305711229,0.00045301993468566836,0.2668941144761354,0.9956263170537167,0.9924390087289701,0.9913258870165261,0.9872617253342332,0.9896224336674496,0.9911741402913694,0.9923131402037517,0.9913162757551638,4.83048942721052e-07,1.8845724459145421e-06,3.2873052887877664e-06,6.067902290651504e-05,0.00014560568875770984,2.5582984151140735e-42,1.8488184701939745e-41,3.2156037646547347e-41,1.94341857255529e-40,1.7800078107794694e-35,0.9658192208391959,0.9456890943832297,0.963931728731336,0.9724888883511343,0.977663538654122,0.9873098989215097,1.3221071848934637e-29,1.1008486183005781e-29,1.0338562839431098e-30,3.215322745163052e-30,4.196542822033053e-31,0.9948885104975899,0.9924101076907048,0.995271875525725,0.997232717680724,0.9976972802981017,2.978553332383821e-07,1.405800102514695e-07,1.38396715789625e-07,6.424209922374988e-08,0.0002703112898336394,9.260117207976312e-05,2.3225035328355376e-05,0.0006425475288202255,0.000827057356776444,2.4901027557790577e-05,0.0002859344070838,2.2412432721972675e-07,0.12698301404360782,0.13261149633578184,0.009110153330528744,0.02359897683286134,0.005587307078137138,0.125080150863555,0.05560127016833776,0.011354665311693164,0.011443731034310773,0.00010413012180530503,0.00839725083412006,6.438952051897215e-05,0.011839235267023606,6.67033199038996e-05,3.2307763619408168e-27,1.5602890373536086e-27,1.4970138847355725e-29,1.5614709769193036e-29,2.1140615589090395e-06,3.490142402300999e-06,1.0045864337785733e-05,1.512323815034754e-05,1.5842506553354704e-05 -larga,shape,0.8458212276206588,0.09597988988632293,0.9279216560485041,0.04251042063890239,0.004890359450594372,0.989378898676897,0.6271876195295963,0.7197240478131849,0.3628562703449801,0.003506997047354438,0.034056469944273866,0.9999998616154366,0.9999894352451394,0.9999272972257475,0.9997817472085984,0.9989500712385159,0.9965138775276052,0.910730361038443,0.9812652848520709,1.1594313917553662e-05,8.96501780243989e-06,4.152070287432679e-05,2.9933047352364064e-05,3.718643382936798e-06,0.004619127681384047,0.0030348173982771803,0.16571881848317407,0.030687352784491934,0.0019679023521177357,0.9999840544555035,0.9981789044742468,0.9997833671786981,0.5378483643240881,0.31218409965680605,0.6471739026789259,0.9998556145675626,0.9999189946513093,0.006729131063808661,0.00013511417369161535,0.0037550582797860857,0.4479789411700889,0.003220971830522809,0.00011333103746343804,0.3035439868991794,0.0002961027394172186,0.03130940250268881,0.05912186958941817,0.18013355192351688,0.5148620172347871,0.00011680032892991959,0.0001032838238255672,6.074239077149618e-06,3.3815620872014974e-05,1.6423841940697514e-05,0.4484676452134169,0.010003141964304806,0.0029020523294248086,4.66691441555585e-05,6.861577282831736e-06,2.498180363096504e-06,4.142838634330189e-06,3.1323685561594774e-07,0.5524851787108211,0.9975975323269989,0.9895615594117455,0.9976116034348668,0.8206292383147001,0.02463544692899127,1.1919030075564168e-05,0.004878775043247702,0.102767923844745,0.9993327338743112,0.2827376701290665,0.9773108480470648,0.2782987330709481,0.9957723047067294,0.5970840792395531,0.999809107347415,0.00040882259398393234,0.922363297227719 -larga,object,0.2068925131712447,0.008430863431278524,0.28106971746626447,0.7438712110987569,0.17004739081010006,0.9995569102059092,0.9993934596578886,0.9315569106568489,0.8338633651075525,0.19928138027596476,0.29277823354068055,0.9999999114663362,0.9999978239770677,0.9999602016525074,0.9999585471512107,0.9999703130115356,0.9999058232404362,0.9991064032215138,0.9955103052457556,1.8743844301583658e-06,4.191664869936655e-06,1.4372571344047818e-05,1.1429159078060539e-05,1.6887147843823128e-05,2.401283820533791e-07,4.138103814875169e-07,0.00010612073213922515,1.6725439326196156e-05,3.859844840858436e-06,0.999980372520961,0.9997144559316911,0.9999396474247432,0.9749227562006935,0.990666680959564,0.33326246336577414,0.9810918008880076,0.9834242287291056,0.047599695329498704,0.007062895160851298,0.002479123982755634,0.9373359041225772,0.16749068199201433,0.018232485389314684,0.8955244867056271,0.016948897198310522,0.01961238690572046,0.06739601803935617,0.07034463171749722,0.1364069771076603,5.805409632523685e-05,4.864254723809548e-05,6.447239826102602e-06,1.3244627159542114e-05,8.460437555344439e-06,0.3408325454501154,0.10326697792241546,0.008114998999997479,0.0003448149124419074,6.852304463408855e-05,2.8409447661731755e-05,5.085986179330474e-05,6.92884103322292e-06,0.8745042150380304,0.9939429268071869,0.994252324492135,0.9939082901537327,0.8177145299578061,0.08854665291081928,0.00026519771371012697,0.008176897835882652,0.04296994477128339,0.9622700143843931,0.06838559626088006,0.5167177689369141,0.023533405232415525,0.9299302975180116,0.7118693660161907,0.9939295644142584,0.006698692583289282,0.4064971176914588 -largo,rgb,0.03189143868941457,0.0736920686238529,0.16725125607335165,0.910294331915551,0.9113395403534598,0.9999270282612237,0.999752304712467,0.5263701832907067,0.005755894726652773,0.0022179144904357346,0.5614938739487875,0.988524015403156,0.9771259479884286,0.9732832123738834,0.9957074210056711,0.9964494807193205,0.9969467311286719,0.9973172554394828,0.9968514043122225,0.32227229786669104,0.49992170414756076,0.5981814225212567,0.9093784597020546,0.9234115368127243,3.994754142434685e-31,2.1369345210929078e-30,3.0253503114258093e-30,1.2663757938643913e-29,6.375262591273036e-26,0.9999233095374052,0.9999258959042862,0.9999286652165282,0.9999388604143931,0.9999432025860041,0.9999544864478261,2.5471015806497098e-26,2.4711469544900123e-26,2.956803432211801e-27,8.464273988582818e-27,1.732555530695531e-27,0.999072146900772,0.9983786024043538,0.9989575417417862,0.9993779664506556,0.9992198371402791,0.001032244704445604,0.0005126183817269747,0.0005001557987050608,0.00023494308861429615,0.9649649432862533,0.9240435664674509,0.8256606472614935,0.9758382833374296,0.9776915964865996,0.002149597552338181,0.0058575752901099155,5.9091856722905794e-05,0.055220219938651054,0.04466712695574996,0.0024884495841644393,0.005331538065030139,0.001096427486167427,0.03359679597699799,0.014326145221335202,0.002645845205077671,0.0026722059316505137,0.4427725407866177,0.9340848692014151,0.34466561470262225,0.9448208592119834,0.3308649879774251,1.8140582751101624e-23,9.429828833286035e-24,2.240248733687436e-25,2.0644951588413928e-25,0.43004989395140747,0.5240370883472975,0.6834340582704241,0.6550695766761389,0.7088708610376377 -largo,shape,0.003734643061552974,0.03963391220365656,0.02137685297883872,0.9346947516817109,1.3111830146558222e-05,0.9868667455240002,0.9999926171513149,0.6730738366630585,0.039910187051504314,0.37820265442426315,0.09912663615396061,0.9999993900053405,0.9999727136585553,0.9999508714813385,0.9999993327671604,0.9999998796803005,0.9999992228683168,0.9999666126598198,0.9031296073410354,0.0002620991242992458,8.225878724348546e-05,3.9127785969830194e-05,1.1716833247317012e-05,0.00017459900007696052,0.030617695746490047,0.0008822611933145584,0.00045915757366874214,0.0014505483828979383,0.0005332873529217549,0.999998761831787,0.9998707215548859,0.9999860155074617,0.9997678236217492,0.9998721507717147,0.9988840237559213,0.9427363751877663,0.8663761327884509,0.20384232707242947,0.7675343362645773,0.034000156695502035,0.008860629263124484,0.10337460294018189,0.015960901342105857,0.29424509509688096,0.004595853858598108,0.0009951974566171215,0.0021177276110801056,0.0004799502540331972,0.0018122049856785151,0.00015412597701742185,0.0001188429635029442,2.8212004003102253e-05,2.5209013728924773e-06,1.1958269059500376e-06,6.481052738440226e-05,0.00040131896322024554,5.277031394357451e-06,1.5224966760823585e-06,3.4104565842207787e-07,4.6467966842550776e-07,6.266267629399948e-06,1.5469733316655406e-07,0.0739689508333127,0.0013459667710178974,0.009480886024215915,0.14485160668066732,0.7796319157411173,0.0006745363391321112,0.0020516788339029696,7.605260485556057e-05,0.00018189517150785534,0.3285161413436664,0.0014931173414460357,0.0445554181344477,0.0038302478183964307,0.9990920524801865,4.869353470005764e-05,0.46404164089979655,0.03395332054791263,0.746819602713098 -largo,object,0.9633450313310024,0.7483878802530074,0.9361642232400319,0.9987899841192157,0.0067691047587089504,0.9977278840986892,0.9999970785775834,0.999998343249009,0.9998949018539272,0.9998168461017908,0.9998881640553607,0.999999921752487,0.999999712337584,0.9999962157583646,0.999998072975907,0.9999997482603128,0.9999987512430375,0.9999516526572967,0.9841733195708989,0.0011842166910782984,0.004428803502480785,0.001274039777408372,0.0006169141454030747,0.0006037264348834153,0.00019934164218277632,2.734291019460366e-05,8.522138487598604e-06,4.878255396824028e-05,1.2315063248832637e-05,0.9999993285604737,0.9999071702955619,0.9999923286610305,0.9998502314735048,0.9999353629626708,0.9992096279437878,0.06496939888608984,0.03651965219175452,0.0002051377458155517,0.0002469822453698758,3.0141967194807122e-05,0.9953999766408649,0.9885488091591899,0.5494116617231463,0.9986489247965821,0.9952683307577036,4.0883561753203234e-05,5.015290343325223e-05,1.6689346670454386e-05,6.718479004059947e-05,0.00015460723270255307,0.00011631827089551711,4.43158383988352e-05,7.413022262580742e-06,4.174413877759761e-06,3.213823961316684e-05,5.528210481392483e-05,7.86184916579199e-07,7.022481041540736e-05,1.9674126893540135e-05,1.6074542700141613e-05,8.474567400001826e-05,2.039410116719065e-06,0.015462042663637408,0.002196334020085764,0.001956072855397981,0.016292734568454554,0.20166781742842743,0.0011976266627195856,0.0012680309026344896,0.0015003314716495282,0.0012189516805817203,7.615727046930125e-05,2.997231104381331e-07,5.879226179506015e-06,7.222011931563905e-07,0.9998879239583354,0.0072754421151401865,0.99647483501621,0.2899207075039195,0.9721691453190212 -limon,rgb,0.05126113511804034,0.3601066761886048,0.20102415495020007,0.46267459021782,0.8164357830588941,0.2928329179311266,0.8799171422390348,2.4282899236696623e-07,8.158179728871835e-09,4.794784429965621e-09,1.9072615614398442e-07,2.085404996876635e-05,1.7434843850475905e-05,1.537952625810231e-05,9.421075258811124e-06,1.1125686451523385e-05,1.2729155417725613e-05,1.431221641008429e-05,1.2227824143394944e-05,0.8919133066495347,0.8160615846261433,0.8385365961679255,0.857904226183885,0.5526846203231918,8.818371001997482e-13,1.4000073835362474e-12,1.287679098194112e-12,1.6697269982371203e-12,3.418964373528219e-12,0.2724969995149499,0.6109243800716577,0.3743938255374851,0.38533639735207864,0.34505358095636324,0.27603817419856325,5.58481528578259e-06,8.939170001709579e-06,4.3622851651261385e-06,7.0346447821827384e-06,9.703459205222857e-06,5.1704410213338726e-05,2.7561169872418015e-05,4.183763430372379e-05,7.057180578296649e-05,4.8853657840873776e-05,0.9999611131187032,0.9999609109677046,0.9999602916897664,0.9999571660178014,0.9999884960686756,0.9999940563931498,0.9999969698011612,0.9999853214302389,0.9999845088778826,0.9862015826824532,0.8422003636482016,0.9961230200339312,5.345255003722718e-08,7.497746630950472e-08,2.498891544904091e-08,6.978342285639572e-08,9.77864465966111e-08,1.9923694127129404e-05,1.670575004143782e-05,5.775492742451612e-06,5.881022092334432e-06,0.9999865283600569,0.9998995277776688,0.9999879819074498,0.9998765773834752,0.9999867459768219,0.007197553268103651,0.006047058059698813,0.007627083946360113,0.005302750995127043,0.5150832370901985,0.5639331543843421,0.5513499021708078,0.22139369059631053,0.38673046865312427 -limon,shape,0.00029234170244698155,0.00029968897030445657,1.8303783448891916e-05,0.000558509669597409,0.004918751124768979,2.909391978644275e-10,0.014704625191465903,6.969592772274544e-10,4.3513352503387234e-08,3.1789146351403517e-09,1.0136449258005363e-07,9.172973217356622e-09,1.0134429579356803e-11,2.94160703410074e-05,0.00010133743035222676,5.469657676379791e-08,1.5359546152364723e-07,4.167066523717149e-05,2.1447551527128743e-05,0.9901939089078093,0.07720128462734233,0.1190926539459344,0.0975435690662307,0.6508988442399771,0.0014776408392877412,0.004356013441037101,0.0007460001294909029,0.00024002717800277983,0.01183378707596837,4.045559704290925e-05,0.00013676198029210547,6.285727605413245e-05,0.00043298904282124763,4.970306093760017e-07,0.031989731883911306,0.0006022220687575437,0.001726065451457194,0.025412833218216593,0.406455235423039,0.023314379782774047,6.555729201728218e-08,6.664828913699207e-08,3.065656855206693e-06,1.0050765108952219e-07,3.947777117013946e-06,0.9999736248595434,0.999952453393163,0.9999887628440721,0.9999890543253427,0.9999142137265066,0.9999784378169553,0.9999667358196976,0.9999936474900029,0.9999850661081091,0.9985817731063754,0.9998340716578141,0.9999147710501636,0.9198365448203374,0.9961072224761169,0.9936623865053962,0.9977671232735811,0.9996208504450435,0.9999890449757106,0.9998304819552541,0.9998973612931984,0.9963614494792891,0.20971934914414442,0.3770896094519822,0.016640937613714907,0.0032076732667494848,0.016075732954975927,0.9997332346838602,0.999999395340928,0.9998463722463978,0.9999958246436335,0.00018238148052418377,0.00011003149263465967,0.0005566596694565084,4.8449700065419436e-05,0.0030619808962435106 -limon,object,0.35864946938453535,0.8938342341967971,0.3042858845579504,0.5067746396760238,0.5300999375895131,0.0014668471826309252,0.8295366848713177,1.406211957802707e-07,5.425288927655517e-08,3.884009041079151e-09,2.930953441420034e-07,1.9918785012173908e-06,1.2911917732090324e-06,4.634001264145969e-05,2.6856580635372477e-05,6.827401905821843e-06,1.0206021143130473e-05,3.780717837968997e-05,3.0209314511956448e-05,0.9953054564687084,0.7966806365184241,0.8517487336932038,0.8422272669841291,0.8776495857394528,1.4209941449162616e-07,1.6293402165654968e-07,1.0165028157796642e-08,5.273421991797708e-09,3.7572068831308915e-08,0.05222182886971683,0.10317976505691676,0.05164215594228737,0.05993796853195015,0.02905110912741024,0.8064854399542128,5.8916418333787644e-05,8.949870615462333e-05,1.4425716856735132e-05,7.40102544738071e-05,9.991527381920206e-05,4.330882234558827e-06,6.486811537016959e-06,2.345413891765038e-05,2.7588585177295777e-05,6.304845979197078e-05,0.9999822218613656,0.9999772889792199,0.999982769484738,0.9999785053719611,0.9999964433394721,0.9999981539930944,0.9999976735446333,0.999995129386446,0.9999916801822406,0.991309656040009,0.9841099136903221,0.9986382675295312,2.966007156092373e-05,6.498114218348973e-05,2.6177821232225283e-05,3.631879020386029e-05,8.025832301117148e-05,0.03655125370928834,0.008256232119765228,0.004468750305103142,0.0018939699301108138,0.999691234344462,0.9970360510969689,0.998559235613556,0.9879398037086975,0.9981058753568147,0.15527160769932588,0.33761799487481015,0.15802258272715625,0.3498395646125782,0.5564751121452401,0.24756653104507925,0.7982661853696282,0.3796199841156137,0.9104256055776176 -limón,rgb,0.05126113511804034,0.3601066761886048,0.20102415495020007,0.46267459021782,0.8164357830588941,0.2928329179311266,0.8799171422390348,2.4282899236696623e-07,8.158179728871835e-09,4.794784429965621e-09,1.9072615614398442e-07,2.085404996876635e-05,1.7434843850475905e-05,1.537952625810231e-05,9.421075258811124e-06,1.1125686451523385e-05,1.2729155417725613e-05,1.431221641008429e-05,1.2227824143394944e-05,0.8919133066495347,0.8160615846261433,0.8385365961679255,0.857904226183885,0.5526846203231918,8.818371001997482e-13,1.4000073835362474e-12,1.287679098194112e-12,1.6697269982371203e-12,3.418964373528219e-12,0.2724969995149499,0.6109243800716577,0.3743938255374851,0.38533639735207864,0.34505358095636324,0.27603817419856325,5.58481528578259e-06,8.939170001709579e-06,4.3622851651261385e-06,7.0346447821827384e-06,9.703459205222857e-06,5.1704410213338726e-05,2.7561169872418015e-05,4.183763430372379e-05,7.057180578296649e-05,4.8853657840873776e-05,0.9999611131187032,0.9999609109677046,0.9999602916897664,0.9999571660178014,0.9999884960686756,0.9999940563931498,0.9999969698011612,0.9999853214302389,0.9999845088778826,0.9862015826824532,0.8422003636482016,0.9961230200339312,5.345255003722718e-08,7.497746630950472e-08,2.498891544904091e-08,6.978342285639572e-08,9.77864465966111e-08,1.9923694127129404e-05,1.670575004143782e-05,5.775492742451612e-06,5.881022092334432e-06,0.9999865283600569,0.9998995277776688,0.9999879819074498,0.9998765773834752,0.9999867459768219,0.007197553268103651,0.006047058059698813,0.007627083946360113,0.005302750995127043,0.5150832370901985,0.5639331543843421,0.5513499021708078,0.22139369059631053,0.38673046865312427 -limón,shape,0.00029234170244698155,0.00029968897030445657,1.8303783448891916e-05,0.000558509669597409,0.004918751124768979,2.909391978644275e-10,0.014704625191465903,6.969592772274544e-10,4.3513352503387234e-08,3.1789146351403517e-09,1.0136449258005363e-07,9.172973217356622e-09,1.0134429579356803e-11,2.94160703410074e-05,0.00010133743035222676,5.469657676379791e-08,1.5359546152364723e-07,4.167066523717149e-05,2.1447551527128743e-05,0.9901939089078093,0.07720128462734233,0.1190926539459344,0.0975435690662307,0.6508988442399771,0.0014776408392877412,0.004356013441037101,0.0007460001294909029,0.00024002717800277983,0.01183378707596837,4.045559704290925e-05,0.00013676198029210547,6.285727605413245e-05,0.00043298904282124763,4.970306093760017e-07,0.031989731883911306,0.0006022220687575437,0.001726065451457194,0.025412833218216593,0.406455235423039,0.023314379782774047,6.555729201728218e-08,6.664828913699207e-08,3.065656855206693e-06,1.0050765108952219e-07,3.947777117013946e-06,0.9999736248595434,0.999952453393163,0.9999887628440721,0.9999890543253427,0.9999142137265066,0.9999784378169553,0.9999667358196976,0.9999936474900029,0.9999850661081091,0.9985817731063754,0.9998340716578141,0.9999147710501636,0.9198365448203374,0.9961072224761169,0.9936623865053962,0.9977671232735811,0.9996208504450435,0.9999890449757106,0.9998304819552541,0.9998973612931984,0.9963614494792891,0.20971934914414442,0.3770896094519822,0.016640937613714907,0.0032076732667494848,0.016075732954975927,0.9997332346838602,0.999999395340928,0.9998463722463978,0.9999958246436335,0.00018238148052418377,0.00011003149263465967,0.0005566596694565084,4.8449700065419436e-05,0.0030619808962435106 -limón,object,0.35864946938453535,0.8938342341967971,0.3042858845579504,0.5067746396760238,0.5300999375895131,0.0014668471826309252,0.8295366848713177,1.406211957802707e-07,5.425288927655517e-08,3.884009041079151e-09,2.930953441420034e-07,1.9918785012173908e-06,1.2911917732090324e-06,4.634001264145969e-05,2.6856580635372477e-05,6.827401905821843e-06,1.0206021143130473e-05,3.780717837968997e-05,3.0209314511956448e-05,0.9953054564687084,0.7966806365184241,0.8517487336932038,0.8422272669841291,0.8776495857394528,1.4209941449162616e-07,1.6293402165654968e-07,1.0165028157796642e-08,5.273421991797708e-09,3.7572068831308915e-08,0.05222182886971683,0.10317976505691676,0.05164215594228737,0.05993796853195015,0.02905110912741024,0.8064854399542128,5.8916418333787644e-05,8.949870615462333e-05,1.4425716856735132e-05,7.40102544738071e-05,9.991527381920206e-05,4.330882234558827e-06,6.486811537016959e-06,2.345413891765038e-05,2.7588585177295777e-05,6.304845979197078e-05,0.9999822218613656,0.9999772889792199,0.999982769484738,0.9999785053719611,0.9999964433394721,0.9999981539930944,0.9999976735446333,0.999995129386446,0.9999916801822406,0.991309656040009,0.9841099136903221,0.9986382675295312,2.966007156092373e-05,6.498114218348973e-05,2.6177821232225283e-05,3.631879020386029e-05,8.025832301117148e-05,0.03655125370928834,0.008256232119765228,0.004468750305103142,0.0018939699301108138,0.999691234344462,0.9970360510969689,0.998559235613556,0.9879398037086975,0.9981058753568147,0.15527160769932588,0.33761799487481015,0.15802258272715625,0.3498395646125782,0.5564751121452401,0.24756653104507925,0.7982661853696282,0.3796199841156137,0.9104256055776176 -maduro,rgb,1.3108363977864367e-18,3.20268544020458e-18,9.579545849771489e-18,2.13225838593838e-15,3.527867049828464e-15,0.9966078409994136,0.9997244902791981,4.652105257133521e-07,8.16814832956802e-06,1.348729131782763e-05,1.5271266348645667e-05,0.9971244775935855,0.999418073256549,0.9994629341173096,7.891180153598365e-05,9.436483821767215e-05,0.00010869384179442724,0.0001226631426757488,0.00013553912745502763,6.109600611819983e-17,1.2569056849109176e-16,2.300877710051816e-16,3.906879412363768e-15,2.9660054591419673e-15,3.906588250135575e-27,3.8772730511511075e-27,5.616681676268674e-27,7.495179523149669e-27,3.1099634211074013e-25,6.433189943232507e-09,1.0739172271925035e-08,8.665889167891915e-09,1.5188197369407172e-08,1.9341367172140347e-08,4.4541238917716965e-08,1.0,1.0,1.0,1.0,1.0,1.1701122765908501e-05,1.6090037411441444e-05,2.555487061924005e-05,4.301213582231675e-05,0.00026177687824763306,0.9999999999787168,0.999999999991235,0.9999999999916951,0.9999999999970268,0.0001550135600181454,0.0007351579839201816,0.0015641381242421564,0.0006865403086292239,0.0013756927326331629,0.9999999999998872,0.999999999999895,0.9999999999999938,0.9636403974273036,0.9975832781935352,0.9998729802074772,0.9999879258443013,0.9999998227191157,0.9999999995149558,0.9999999998141182,0.9999999999037548,0.9999999999052724,0.9999896146004718,0.9999653062302084,0.999994253566633,0.9999676204629738,0.9999961989426319,1.0,1.0,1.0,1.0,5.784426255737632e-17,9.915782065213727e-17,2.451619163919097e-16,1.7771785120564765e-16,2.606728966450808e-16 -maduro,shape,8.416960225294108e-05,0.000101551686663626,2.366429279918013e-08,0.03240633165007787,2.1184959405461024e-05,0.9997293986106179,0.9998500563893072,4.199212988563696e-08,6.933200889535499e-06,2.462648720984909e-09,4.942487867834287e-07,3.162391555764292e-06,0.9985348154414004,6.398244771768344e-05,0.0012897087986956913,0.21573233182127427,0.1767122600404383,7.625220246579553e-05,0.432887544549625,7.864278779107542e-06,3.997577090022046e-06,1.343073118512463e-05,1.9080687360001162e-05,7.591576696774757e-05,1.1565017797292731e-07,0.00014106522705114872,0.010932776290485688,0.0005415750011471984,0.009496468308931971,0.12270056780249,7.394517918120411e-07,0.00033312742563009607,3.630611451662516e-08,0.000627518916955991,0.00015263199459970524,0.0004897800468633104,0.00016252837495162875,0.00040444217166189425,0.00011127040484585211,0.00025916679619740474,2.1826411493254007e-07,3.1270165372184753e-06,4.6774390352030445e-06,6.233401215264002e-05,1.040890709605268e-08,0.9817354641833922,0.995884343122195,0.9967243979760243,0.996150899262232,0.0009737987927096223,0.0020633309875767057,5.144010910119986e-05,0.0002941285803935383,0.00014658223565107016,0.9998744716052007,0.9923774844776737,0.9398515526801156,2.1712668014357492e-05,6.537632897492717e-06,5.545788339676082e-07,3.183720048222967e-06,1.2072569968753822e-06,0.9999644678764512,0.9999995439890418,0.9999998069672342,0.999511359656163,0.9990113442187015,0.0828338808398079,0.0002572583284964478,0.001287305099703756,0.009850016218044332,0.9999999497321254,0.9999970317737162,0.9999990412204725,0.9999858108670322,6.302871772490754e-06,5.3227851226875466e-08,1.4757504293690073e-06,0.0002805846474151396,2.829128799458009e-05 -maduro,object,1.9153571584417055e-08,1.6568512812755123e-07,1.4548150736935167e-08,0.0007518738920707465,5.574300388257475e-05,0.9998885856289265,0.9999061116001016,2.8557008465608247e-06,8.200140356457125e-05,4.245512317066486e-05,3.912468855790478e-05,0.041627752587950095,0.999879018121069,0.06323089780040196,0.733562881962555,0.9782894022689155,0.9771881911939502,0.5386306161150857,0.9046269309677216,6.102157962399783e-08,9.690946482940466e-08,1.6428410848606434e-07,2.975909385006632e-07,2.1625568429632427e-06,2.3848205980372773e-10,2.0982326584908677e-09,3.095776220465153e-07,8.214260845057127e-08,2.540010166954018e-07,0.46782803343539114,0.013030113905433533,0.1801720540127506,0.00032671889640936415,0.4323375329337599,0.00014996741577072778,0.9999830330640828,0.9999787436984807,0.9999993745624977,0.9999998413887233,0.9999964801151544,2.551744513679433e-06,1.1453675346718397e-05,1.3721874301020275e-05,5.0813560684141405e-05,3.6540165428876932e-06,0.9927933729999489,0.9978358398368232,0.9941446929872569,0.9963143265397283,0.0001861627963599389,0.0004493069632083542,0.000187058314054704,0.00016737095409080004,0.00019526341324256155,0.9995619533105193,0.999739509058313,0.9982621290244846,0.001291531086951622,0.0012917647102623627,0.002160940803210007,0.005000673324192726,0.012366237661064785,0.997739045010881,0.9998583247294252,0.9999063783688353,0.9958408204994913,0.9956310583482137,0.9397982610662403,0.5935349146359076,0.30208118532825956,0.5246786099370692,0.9999999925619132,0.9999999799126922,0.9999999942874489,0.9999999726504739,1.5979184028030433e-07,1.6307927728137388e-06,3.398395870956835e-07,0.00019477997354293923,5.933965065453186e-07 -maiz,rgb,0.9999999999999998,0.9999999999999916,0.9999999999999889,0.9999999999886242,0.9999999998856384,6.688331345821007e-08,1.8223961032164942e-10,0.9999999984478678,0.9999999986573918,0.9999999985968471,0.9999999467081224,0.001579285046038984,0.0003189271457752496,0.0003305438125163498,0.9999855152093906,0.9999792426263776,0.999972321157666,0.9999645195285216,0.9999662038349202,0.9999999999966889,0.9999999999964531,0.9999999999921074,0.9999999998223437,0.9999999999762843,1.0,1.0,1.0,1.0,1.0,0.9999674951174486,0.9997366546003281,0.9999260617836397,0.999858305777492,0.9998477480295467,0.9997369345294876,3.147376843011273e-31,1.3151953958355533e-31,1.4650471921976036e-31,1.1049031615082714e-31,2.554593340291043e-32,0.9999899246234344,0.9999924458373178,0.999981034032085,0.9999435006343084,0.9997229486710733,1.7625279436276509e-22,6.416149189712307e-23,6.142048400047749e-23,2.062286399473158e-23,5.927890078893401e-07,5.0526312277119215e-08,1.0077823305662694e-08,1.5609903500557125e-07,7.79232416926578e-08,3.3715741841306256e-22,5.4104611667150225e-21,2.7928053615122852e-24,0.9034647738494929,0.24333664286196469,0.03306595713873845,0.0009224245070112329,5.780313982311282e-06,3.972330692254984e-11,1.5866110764031767e-11,2.145295528899363e-11,2.069368197298656e-11,1.4286457076644403e-16,5.61229133929709e-15,6.442596394036838e-17,6.576882627546667e-15,4.540704633024753e-17,1.5617657066191745e-34,1.352179924937831e-34,1.1736334251302224e-35,1.8345407557284702e-35,0.9999999999996645,0.9999999999992741,0.9999999999982421,0.9999999999997398,0.9999999999990885 -maiz,shape,1.01817544230494e-07,5.843426343349566e-08,6.152703534452076e-09,0.00012538133559123827,0.30751217619476184,0.9999041289106634,0.00015930362930300916,0.0006201815409587704,0.00043608231007606635,0.9721593935200434,0.0356408801005139,0.15793658618364678,0.9996143584560864,2.1371624410901684e-06,0.9999078350321863,0.9999999460830389,0.9999996199645574,0.9999753996920032,0.9999969612292678,2.5456996920828012e-08,0.00013511558677530897,0.005003385122120501,0.006045063869500601,0.0020906921126498724,3.4048440308501832e-09,2.6669196685866097e-06,0.983356304985493,0.9935474267720411,0.8987893910859617,0.999822101733194,0.9891811041011003,0.9999225964657765,0.9680306444160947,0.9999917683560993,2.1243616720889993e-07,8.139739108313822e-07,8.698742101265441e-07,0.0425141527239553,2.1282699073346547e-05,9.998260046734988e-06,2.201514555368548e-05,7.937101478365294e-06,6.809766630681102e-07,1.5187800657903298e-06,9.120252971236948e-09,9.122257469575831e-06,2.5644841001330524e-05,1.2735035839737117e-05,5.482303476242981e-05,1.83535383979012e-08,1.815829867991965e-08,2.3496823639989132e-08,3.853146023035725e-08,4.845449910703526e-07,0.003323988872473795,3.370537473697789e-05,1.4379597388560548e-05,8.460070188513045e-07,1.447854549052774e-07,2.62398833201435e-07,8.741811022510973e-06,4.730349289141622e-08,4.0802321890763176e-05,0.005201859270009743,0.05445618373470148,0.004457839054847824,0.9997881659519757,0.9907906060555339,0.8698399430032793,0.4203850846453515,0.724848970617788,0.027897999337780435,0.0011121262829891596,0.002378203312259578,4.081738680511727e-05,2.3632506411059602e-07,2.024777456738898e-06,2.348737204671012e-07,4.560445497446651e-06,6.473944524377261e-08 -maiz,object,0.012720223264012502,0.017471777778796712,0.004434947711427278,0.9839330927959762,0.9996320692186537,0.9969312311195311,0.05380454884519331,0.3080699078513146,0.3458921075622455,0.998954378538378,0.8449012869429425,0.9195983347274777,0.9996791755388046,0.0005356900648052405,0.9999618103462298,0.9999995286213658,0.9999985733564234,0.9999794651133953,0.9999977417307816,0.011328814096991779,0.8453367664742245,0.9568781222500057,0.9214674489608773,0.9265746574678336,0.9806217053435655,0.9997358242389732,0.9999999984131798,0.9999999990284121,0.9999999817157111,0.9999178822850102,0.9990505123723595,0.9999305778865163,0.9991796002834356,0.9999928325415147,0.0016405104013774887,7.42159500666395e-09,3.578375975928299e-09,6.024556869123185e-05,9.084871291484723e-07,1.1389203258549518e-07,0.25311324174449384,0.3173160436735625,0.1282338042448267,0.036822495195539366,0.0006153845266980119,1.959518606188027e-06,4.935859406850963e-06,3.914012789330886e-06,6.143867985465554e-06,3.0295407791092734e-06,2.2196284064479473e-06,1.3380977402869915e-06,3.0555816560583656e-06,9.886115628060757e-06,8.518325900603213e-05,2.705603315444612e-05,1.7311571245281066e-06,0.001386312757926102,0.00025333506330421694,0.00022823656828716823,0.0017013298171707123,2.124616672933456e-05,0.001271247586109777,0.048285473845251926,0.17997262984850743,0.04220479152840128,0.7662487876142081,0.3991278326077572,0.026962134735368088,0.018071795406049848,0.013373544746788571,1.3255559393116487e-05,1.0656872526028975e-06,1.3615751581948177e-06,6.434766743034026e-08,0.021772623613407174,0.9143127516792648,0.01413633517736865,0.9366679355005522,0.017138588274202147 -manzana,rgb,1.3661749149207713e-09,1.4576005025048938e-10,4.677935857038487e-10,6.046506919892856e-10,1.2409210094051372e-10,0.00026933921033296714,2.9670987449557735e-05,0.7211416472514269,0.996535102118476,0.9983762365223131,0.9094925329688466,0.9263076509222747,0.9628645970184204,0.9683245166445573,0.18082316961061495,0.16274739594826082,0.14908025315620235,0.13789266987595417,0.16409860728397782,2.0038180857095786e-11,4.729230094175839e-11,4.77283258820548e-11,9.275196275416433e-11,4.5457681400572014e-10,0.9076975059226303,0.8492193582983331,0.8722904106068016,0.843179454896525,0.8550620768287521,1.256942783043338e-07,3.2259437335796406e-08,8.377739061371494e-08,9.470486334692224e-08,1.2262218440696805e-07,2.2321782872882528e-07,0.9999999999632303,0.9999999999456051,0.9999999999798255,0.9999999999634974,0.9999999999639584,0.018312188821006166,0.039484982814366854,0.029172459365455154,0.019556520783431765,0.05005950389989346,1.64672895083151e-06,2.2531584987036492e-06,2.3327641622271447e-06,3.603894206615464e-06,7.868900983136335e-12,6.598720463730809e-12,4.252908098496191e-12,1.6097467522660655e-11,2.1182995938821488e-11,0.0043316367124807825,0.06296730127867577,0.0032178323445260287,0.9997586605145167,0.9998564401850611,0.9999842961436471,0.9999771851608299,0.9999919399868434,0.9995997478373067,0.9997630495817731,0.9999416281489923,0.999940771949211,6.523336937427511e-09,3.362231877512772e-08,7.082344223775726e-09,4.244395625865195e-08,8.978649406136416e-09,0.9999999147683457,0.9999999365034007,0.9999999597950745,0.9999999723361724,1.7045046137291584e-10,1.6172207004133652e-10,2.2163777803184839e-10,9.50985301797506e-10,4.5669021460098237e-10 -manzana,shape,0.9552964566743191,0.9998361205773114,0.0001634007132762789,1.0565030587365917e-10,2.1049520493349577e-06,1.2759253533599576e-05,1.4321942579676455e-09,0.00440731516891802,0.657570806398126,0.00011003282066567102,0.04956428014977143,1.8152000546551779e-06,5.6556289171160374e-08,7.145411020397325e-05,4.259450089764096e-06,4.091479647711538e-07,4.876437006358467e-07,1.262827428320507e-06,8.185104540874974e-05,0.9700766839829671,0.8169504934919747,0.6687201074605601,0.7586160492661279,0.009083711508159184,0.026932830809255986,0.9006256635275847,0.00025061814191663863,1.3448474076523015e-05,0.0004263874534335844,8.745913489100094e-07,4.058399808668349e-06,2.9870494324658314e-06,7.844801950889374e-09,9.764767806393172e-08,0.001462758570716553,0.0001885577414863653,0.00015724052002380175,4.2005225561300264e-05,2.7559518908780336e-06,0.00012074452526437999,1.7204688133860733e-06,8.806383381460303e-07,3.5208677734449e-05,0.03582540374184289,0.0038482628164348757,0.9220622298843424,0.9257201770102902,0.9923800842693572,0.9915753836435652,0.9964477991279508,0.9945742748755153,0.9890558518054174,0.9999550725932592,0.9999557059200498,0.9877855783918733,0.8403790093719622,0.9870775209411735,0.9999965400782651,0.9999989155057505,0.9996945548828542,0.9997646051430928,0.9999627401553292,0.9994888589209863,0.9999077868905561,0.9999577437151398,0.9995646674544588,0.16140279752006095,0.013679484667884717,3.329845494354667e-06,0.0035426829966461663,0.018159282964581587,0.9999382552684173,0.9999827749007748,0.999478873671404,0.999881137232474,5.747601335192037e-06,9.176441379621454e-05,2.4356353934046105e-07,4.981108574015744e-06,4.0767959318847624e-05 -manzana,object,4.875925912484947e-05,8.512461248943967e-05,3.4026487807838428e-06,2.4122291660464757e-09,3.6283339694995424e-08,0.0003557240475727026,2.086370106115658e-06,0.09583879980223825,0.9366306493034151,0.9178893708207374,0.4963184126215296,0.05337185197788228,0.01473308210668431,0.7270107523864273,0.018262145242740935,0.03149880285296149,0.02634740174830884,0.03986887449664016,0.2887556346056213,1.6731635464827063e-05,1.1049641145253095e-05,1.1889819560680972e-05,2.137621837547819e-05,1.482178646535938e-05,0.9914241844438902,0.9947997118297419,0.9072727939246152,0.8780965552159716,0.9582574604931773,1.027429774197035e-06,1.0776741658855216e-06,1.8626214138911016e-06,2.0309069504156542e-06,9.544492085191262e-06,0.00023649763069814915,0.9999981680681069,0.999998309363532,0.9999988211425103,0.9999848734821069,0.999997928460197,0.0011307011711362,0.0018377087658018715,0.004192670353195984,0.004365382708536137,0.007065803144662042,0.008293176575375321,0.008459921075726422,0.01306702237065744,0.023305705726866254,1.6865722479431338e-05,1.3183327335155443e-05,5.960547083658461e-06,6.671911807471698e-05,8.37173628652893e-05,0.515995573971927,0.7755818655821667,0.4906552592449158,0.9999581563306567,0.9999745141528081,0.9999706054123271,0.9999665614782166,0.9999868970230394,0.9997930199981219,0.9999099410613874,0.9999724091004766,0.9998468672640335,6.0177220229401085e-05,0.00013241300176968347,7.097943112810786e-06,5.838339288601773e-05,2.414186474654818e-05,0.9999986390459156,0.9999993000928336,0.9999992270419279,0.9999996651421423,4.0850372882674345e-07,1.1180598471005473e-07,1.0898189493875726e-07,2.3329657804040464e-07,1.6139926057030902e-06 -mazorca,rgb,0.9999999999999998,0.9999999999999916,0.9999999999999889,0.9999999999886242,0.9999999998856384,6.688331345821007e-08,1.8223961032164942e-10,0.9999999984478678,0.9999999986573918,0.9999999985968471,0.9999999467081224,0.001579285046038984,0.0003189271457752496,0.0003305438125163498,0.9999855152093906,0.9999792426263776,0.999972321157666,0.9999645195285216,0.9999662038349202,0.9999999999966889,0.9999999999964531,0.9999999999921074,0.9999999998223437,0.9999999999762843,1.0,1.0,1.0,1.0,1.0,0.9999674951174486,0.9997366546003281,0.9999260617836397,0.999858305777492,0.9998477480295467,0.9997369345294876,3.147376843011273e-31,1.3151953958355533e-31,1.4650471921976036e-31,1.1049031615082714e-31,2.554593340291043e-32,0.9999899246234344,0.9999924458373178,0.999981034032085,0.9999435006343084,0.9997229486710733,1.7625279436276509e-22,6.416149189712307e-23,6.142048400047749e-23,2.062286399473158e-23,5.927890078893401e-07,5.0526312277119215e-08,1.0077823305662694e-08,1.5609903500557125e-07,7.79232416926578e-08,3.3715741841306256e-22,5.4104611667150225e-21,2.7928053615122852e-24,0.9034647738494929,0.24333664286196469,0.03306595713873845,0.0009224245070112329,5.780313982311282e-06,3.972330692254984e-11,1.5866110764031767e-11,2.145295528899363e-11,2.069368197298656e-11,1.4286457076644403e-16,5.61229133929709e-15,6.442596394036838e-17,6.576882627546667e-15,4.540704633024753e-17,1.5617657066191745e-34,1.352179924937831e-34,1.1736334251302224e-35,1.8345407557284702e-35,0.9999999999996645,0.9999999999992741,0.9999999999982421,0.9999999999997398,0.9999999999990885 -mazorca,shape,1.01817544230494e-07,5.843426343349566e-08,6.152703534452076e-09,0.00012538133559123827,0.30751217619476184,0.9999041289106634,0.00015930362930300916,0.0006201815409587704,0.00043608231007606635,0.9721593935200434,0.0356408801005139,0.15793658618364678,0.9996143584560864,2.1371624410901684e-06,0.9999078350321863,0.9999999460830389,0.9999996199645574,0.9999753996920032,0.9999969612292678,2.5456996920828012e-08,0.00013511558677530897,0.005003385122120501,0.006045063869500601,0.0020906921126498724,3.4048440308501832e-09,2.6669196685866097e-06,0.983356304985493,0.9935474267720411,0.8987893910859617,0.999822101733194,0.9891811041011003,0.9999225964657765,0.9680306444160947,0.9999917683560993,2.1243616720889993e-07,8.139739108313822e-07,8.698742101265441e-07,0.0425141527239553,2.1282699073346547e-05,9.998260046734988e-06,2.201514555368548e-05,7.937101478365294e-06,6.809766630681102e-07,1.5187800657903298e-06,9.120252971236948e-09,9.122257469575831e-06,2.5644841001330524e-05,1.2735035839737117e-05,5.482303476242981e-05,1.83535383979012e-08,1.815829867991965e-08,2.3496823639989132e-08,3.853146023035725e-08,4.845449910703526e-07,0.003323988872473795,3.370537473697789e-05,1.4379597388560548e-05,8.460070188513045e-07,1.447854549052774e-07,2.62398833201435e-07,8.741811022510973e-06,4.730349289141622e-08,4.0802321890763176e-05,0.005201859270009743,0.05445618373470148,0.004457839054847824,0.9997881659519757,0.9907906060555339,0.8698399430032793,0.4203850846453515,0.724848970617788,0.027897999337780435,0.0011121262829891596,0.002378203312259578,4.081738680511727e-05,2.3632506411059602e-07,2.024777456738898e-06,2.348737204671012e-07,4.560445497446651e-06,6.473944524377261e-08 -mazorca,object,0.012720223264012502,0.017471777778796712,0.004434947711427278,0.9839330927959762,0.9996320692186537,0.9969312311195311,0.05380454884519331,0.3080699078513146,0.3458921075622455,0.998954378538378,0.8449012869429425,0.9195983347274777,0.9996791755388046,0.0005356900648052405,0.9999618103462298,0.9999995286213658,0.9999985733564234,0.9999794651133953,0.9999977417307816,0.011328814096991779,0.8453367664742245,0.9568781222500057,0.9214674489608773,0.9265746574678336,0.9806217053435655,0.9997358242389732,0.9999999984131798,0.9999999990284121,0.9999999817157111,0.9999178822850102,0.9990505123723595,0.9999305778865163,0.9991796002834356,0.9999928325415147,0.0016405104013774887,7.42159500666395e-09,3.578375975928299e-09,6.024556869123185e-05,9.084871291484723e-07,1.1389203258549518e-07,0.25311324174449384,0.3173160436735625,0.1282338042448267,0.036822495195539366,0.0006153845266980119,1.959518606188027e-06,4.935859406850963e-06,3.914012789330886e-06,6.143867985465554e-06,3.0295407791092734e-06,2.2196284064479473e-06,1.3380977402869915e-06,3.0555816560583656e-06,9.886115628060757e-06,8.518325900603213e-05,2.705603315444612e-05,1.7311571245281066e-06,0.001386312757926102,0.00025333506330421694,0.00022823656828716823,0.0017013298171707123,2.124616672933456e-05,0.001271247586109777,0.048285473845251926,0.17997262984850743,0.04220479152840128,0.7662487876142081,0.3991278326077572,0.026962134735368088,0.018071795406049848,0.013373544746788571,1.3255559393116487e-05,1.0656872526028975e-06,1.3615751581948177e-06,6.434766743034026e-08,0.021772623613407174,0.9143127516792648,0.01413633517736865,0.9366679355005522,0.017138588274202147 -maíz,rgb,0.9999999999999998,0.9999999999999916,0.9999999999999889,0.9999999999886242,0.9999999998856384,6.688331345821007e-08,1.8223961032164942e-10,0.9999999984478678,0.9999999986573918,0.9999999985968471,0.9999999467081224,0.001579285046038984,0.0003189271457752496,0.0003305438125163498,0.9999855152093906,0.9999792426263776,0.999972321157666,0.9999645195285216,0.9999662038349202,0.9999999999966889,0.9999999999964531,0.9999999999921074,0.9999999998223437,0.9999999999762843,1.0,1.0,1.0,1.0,1.0,0.9999674951174486,0.9997366546003281,0.9999260617836397,0.999858305777492,0.9998477480295467,0.9997369345294876,3.147376843011273e-31,1.3151953958355533e-31,1.4650471921976036e-31,1.1049031615082714e-31,2.554593340291043e-32,0.9999899246234344,0.9999924458373178,0.999981034032085,0.9999435006343084,0.9997229486710733,1.7625279436276509e-22,6.416149189712307e-23,6.142048400047749e-23,2.062286399473158e-23,5.927890078893401e-07,5.0526312277119215e-08,1.0077823305662694e-08,1.5609903500557125e-07,7.79232416926578e-08,3.3715741841306256e-22,5.4104611667150225e-21,2.7928053615122852e-24,0.9034647738494929,0.24333664286196469,0.03306595713873845,0.0009224245070112329,5.780313982311282e-06,3.972330692254984e-11,1.5866110764031767e-11,2.145295528899363e-11,2.069368197298656e-11,1.4286457076644403e-16,5.61229133929709e-15,6.442596394036838e-17,6.576882627546667e-15,4.540704633024753e-17,1.5617657066191745e-34,1.352179924937831e-34,1.1736334251302224e-35,1.8345407557284702e-35,0.9999999999996645,0.9999999999992741,0.9999999999982421,0.9999999999997398,0.9999999999990885 -maíz,shape,1.01817544230494e-07,5.843426343349566e-08,6.152703534452076e-09,0.00012538133559123827,0.30751217619476184,0.9999041289106634,0.00015930362930300916,0.0006201815409587704,0.00043608231007606635,0.9721593935200434,0.0356408801005139,0.15793658618364678,0.9996143584560864,2.1371624410901684e-06,0.9999078350321863,0.9999999460830389,0.9999996199645574,0.9999753996920032,0.9999969612292678,2.5456996920828012e-08,0.00013511558677530897,0.005003385122120501,0.006045063869500601,0.0020906921126498724,3.4048440308501832e-09,2.6669196685866097e-06,0.983356304985493,0.9935474267720411,0.8987893910859617,0.999822101733194,0.9891811041011003,0.9999225964657765,0.9680306444160947,0.9999917683560993,2.1243616720889993e-07,8.139739108313822e-07,8.698742101265441e-07,0.0425141527239553,2.1282699073346547e-05,9.998260046734988e-06,2.201514555368548e-05,7.937101478365294e-06,6.809766630681102e-07,1.5187800657903298e-06,9.120252971236948e-09,9.122257469575831e-06,2.5644841001330524e-05,1.2735035839737117e-05,5.482303476242981e-05,1.83535383979012e-08,1.815829867991965e-08,2.3496823639989132e-08,3.853146023035725e-08,4.845449910703526e-07,0.003323988872473795,3.370537473697789e-05,1.4379597388560548e-05,8.460070188513045e-07,1.447854549052774e-07,2.62398833201435e-07,8.741811022510973e-06,4.730349289141622e-08,4.0802321890763176e-05,0.005201859270009743,0.05445618373470148,0.004457839054847824,0.9997881659519757,0.9907906060555339,0.8698399430032793,0.4203850846453515,0.724848970617788,0.027897999337780435,0.0011121262829891596,0.002378203312259578,4.081738680511727e-05,2.3632506411059602e-07,2.024777456738898e-06,2.348737204671012e-07,4.560445497446651e-06,6.473944524377261e-08 -maíz,object,0.012720223264012502,0.017471777778796712,0.004434947711427278,0.9839330927959762,0.9996320692186537,0.9969312311195311,0.05380454884519331,0.3080699078513146,0.3458921075622455,0.998954378538378,0.8449012869429425,0.9195983347274777,0.9996791755388046,0.0005356900648052405,0.9999618103462298,0.9999995286213658,0.9999985733564234,0.9999794651133953,0.9999977417307816,0.011328814096991779,0.8453367664742245,0.9568781222500057,0.9214674489608773,0.9265746574678336,0.9806217053435655,0.9997358242389732,0.9999999984131798,0.9999999990284121,0.9999999817157111,0.9999178822850102,0.9990505123723595,0.9999305778865163,0.9991796002834356,0.9999928325415147,0.0016405104013774887,7.42159500666395e-09,3.578375975928299e-09,6.024556869123185e-05,9.084871291484723e-07,1.1389203258549518e-07,0.25311324174449384,0.3173160436735625,0.1282338042448267,0.036822495195539366,0.0006153845266980119,1.959518606188027e-06,4.935859406850963e-06,3.914012789330886e-06,6.143867985465554e-06,3.0295407791092734e-06,2.2196284064479473e-06,1.3380977402869915e-06,3.0555816560583656e-06,9.886115628060757e-06,8.518325900603213e-05,2.705603315444612e-05,1.7311571245281066e-06,0.001386312757926102,0.00025333506330421694,0.00022823656828716823,0.0017013298171707123,2.124616672933456e-05,0.001271247586109777,0.048285473845251926,0.17997262984850743,0.04220479152840128,0.7662487876142081,0.3991278326077572,0.026962134735368088,0.018071795406049848,0.013373544746788571,1.3255559393116487e-05,1.0656872526028975e-06,1.3615751581948177e-06,6.434766743034026e-08,0.021772623613407174,0.9143127516792648,0.01413633517736865,0.9366679355005522,0.017138588274202147 -medio,rgb,0.9999976159776439,0.9999998638186299,0.999997823255629,0.9998777939228802,0.9999909250721957,9.500035787749444e-09,1.1841968133491654e-06,1.366065968247638e-11,8.897955963376333e-13,6.355671304625661e-13,1.3659853817322339e-12,2.4086745235355213e-14,1.4615374393020817e-14,1.2975863251917106e-14,5.529664524995883e-12,5.711504826928713e-12,5.888069698826336e-12,6.063767099473582e-12,5.047654181729666e-12,0.9999999732402056,0.9999997814275055,0.9999996803279523,0.9999945126077157,0.9999105591400181,1.0,1.0,1.0,0.9999999999999998,0.9999999999991076,0.0019175987173910502,0.01725742002988833,0.003502281411820731,0.002502537111552544,0.0015347136576765892,0.0004725732040499919,0.0028489519210537577,0.005598824069174526,0.008182997275174795,0.008017514488489605,0.034724364477537475,7.288778106243564e-11,3.389257135927585e-11,3.768010921693377e-11,4.579963478519558e-11,1.1863166968249528e-11,0.9967577516942262,0.99724043627275,0.9971484865595456,0.9971959592282756,0.9999998406784941,0.9999999463620026,0.9999999894515178,0.999999277801757,0.9999987900806888,0.000399542258370696,1.7193872125845645e-06,0.020083469976136227,1.6345562269647243e-15,9.021996859418609e-16,3.979022252767591e-16,3.725441067733034e-16,3.2452422446165575e-16,8.490061819939047e-15,8.307909877813307e-15,4.183294025627056e-15,4.2458410513631006e-15,0.9997549809174979,0.9466849061054913,0.9998120042881934,0.9102203411080466,0.9997399886658249,0.6650878344663157,0.6951746909352554,0.9743022149132348,0.956761812683974,0.99999860149632,0.9999981850570605,0.9999943387323578,0.9999447035948976,0.999979206590572 -medio,shape,0.9996602590500283,0.9999876333288812,0.9996851280865723,0.9999999888531305,0.9999579762590982,0.0001231692906964876,0.9999999307748807,6.553722992063443e-07,2.6415191265067942e-05,0.08903133534817212,0.5673250999327333,5.873759593567409e-07,0.9820049831446439,0.030767062824914416,0.00015433215188103309,9.595211625438534e-07,7.2555115147070915e-06,2.5906474937571275e-05,0.09771463349421068,0.018457782149835695,0.9492731735927514,0.9996522741125816,0.9999436068368146,0.9995448674474459,0.9959578809541976,0.9405368845232575,0.9995331663002128,0.9992642950528564,0.9995734507448747,0.41792427922511993,0.5676399755211037,0.5909209816065529,0.04447767041868781,0.16715009613272333,0.9991655570085731,0.1215269052201923,0.27839485247234347,7.086168850965703e-05,0.7429078208708538,0.5100866932399655,0.0009442012579674709,9.503282599886084e-05,0.004368660938577477,0.23246979119062472,0.7930860122645532,0.028551379409306202,0.010314720396979967,0.0007535125440735223,0.00043275429223996957,0.10574425659409198,0.4516138477928028,0.6111912354126303,0.21868680121308487,0.3780368277705006,0.0001287469859505498,0.12157222428035597,0.005836938036182219,0.0010303046693079815,0.0005244911878387296,0.8910497030159575,0.3102803280371217,0.8332490020628718,1.0941103275438427e-05,6.317203581808667e-05,2.1802744568096244e-08,0.00041113448468506797,0.9991345008938151,0.9997955908405576,0.9995664413142269,0.999284392582291,0.9993972133412969,4.774903673458026e-07,2.0492044558775814e-05,1.930009430264738e-05,6.483955249534956e-07,0.018244336763831935,0.8892657992091751,0.9952110053185128,0.9999965089054981,0.9975403328681595 -medio,object,0.999786780135324,0.9998659013635067,0.9997524142293609,0.999992018219762,0.9996874825787694,2.3699415147705577e-06,0.9868115678972976,1.215338642699556e-06,7.543261547445606e-06,0.0052095082631950194,0.0037622258228204126,3.869035524142379e-08,0.0013021893412924555,0.0008771079212376477,1.1019708187062893e-06,1.9361734482871547e-07,6.887550078545493e-07,4.144791492938172e-06,0.0017761735553963437,0.6499265725361214,0.9954151481629637,0.9998776344840777,0.9999479281078207,0.998527061276425,0.9999273297748613,0.9995200879128272,0.999997208057014,0.9999983014938324,0.9999867864165605,0.009031713321016883,0.013087110713360025,0.01851284361376124,0.00720265347006742,0.03371648507141323,0.9381101467924085,0.09841276665966701,0.3836586423342113,0.0006603535733557374,0.010072961453700624,0.039815273397370496,0.0004922649357988471,6.012441331706106e-06,2.0082063773441875e-05,0.000620768648127676,0.00812566175301217,0.3628164160002953,0.21243545410164125,0.02260290352992391,0.02503735773012541,0.8101101070031205,0.9501641915401183,0.9814114772399881,0.8621545243123456,0.9231109307162093,0.0024083883564640007,0.0215601188840196,0.023974086731263323,2.117288057698033e-06,1.2394326593712492e-06,0.0010551418819113529,0.00019578777296194705,0.000715445406703299,3.346106268908355e-07,4.328789210607105e-06,3.719600688804337e-09,1.435317709265753e-06,0.9993430868977603,0.9997408915113537,0.9997088058402064,0.999525587818281,0.999794821444298,4.493449019520038e-05,0.0002494159737442058,0.0038329674502925837,0.00022658149331113232,0.7337547529623369,0.8648531232380927,0.9981052746474613,0.9950813901828856,0.995027118624371 -mitad,rgb,0.8792187801483721,0.9904465295124183,0.9266648217035168,0.5716490580148804,0.9290351906488988,4.816153408554388e-08,3.613940338555863e-06,3.960933434532098e-12,3.2248376173754875e-13,2.335553969146696e-13,9.185661635147208e-13,4.88116598019896e-13,3.683571669615905e-13,3.3074100551891596e-13,6.720544027585637e-12,7.231294310247545e-12,7.694818813571683e-12,8.13826354484953e-12,6.935109884634999e-12,0.9986816483419909,0.9934694455603802,0.992066314583449,0.9530877619842493,0.6499404110267283,0.9999984235560603,0.9999976867384514,0.999996358141042,0.9999932769180601,0.9984146027384797,5.28059558788295e-05,0.000373700481374832,9.271746268306585e-05,7.649689706049714e-05,5.255883817881326e-05,2.2164369470003647e-05,0.0026007274495975117,0.004824955151773314,0.005633491122652651,0.006092060654581525,0.020401667324603207,5.487622275694732e-11,2.8103757820146358e-11,3.4422850246751414e-11,4.623187308493705e-11,1.8333902635435907e-11,0.9894484789753422,0.991195660659412,0.9909905575916447,0.9916176757460073,0.9999254694572772,0.9999739477821743,0.9999934717425535,0.9997895613144334,0.9997061531572811,0.002054349935113408,2.2520939695376177e-05,0.05567335453588472,1.551146659968064e-14,1.3336039341077098e-14,7.226288871270619e-15,1.0288907929973312e-14,1.3757751277425962e-14,7.315185731310246e-13,7.446428658482124e-13,3.7705200428594455e-13,3.831022518158601e-13,0.9965476677962524,0.7668134554851883,0.9973403473689788,0.6778677544005138,0.9966690835749774,0.5967742635199073,0.6162920777620736,0.9368791062182135,0.902268220705619,0.9646790748097208,0.9608968602691971,0.9193131915327324,0.6071472817243574,0.7937793529887851 -mitad,shape,1.190718149614421e-12,1.0509619488536757e-07,1.3475250656512085e-08,0.030007216347320897,0.930780987977719,0.0003490188367915568,0.0002798138942737915,7.995437451103991e-07,0.00010911338468580908,0.19383573269348586,0.005431516357777145,7.496647603456423e-07,3.8802324808504816e-08,1.517586623301525e-09,1.3381745817331065e-05,0.004603976016882078,0.0037767614390198513,0.9478928526715935,0.9983958297762832,0.0004365654824595169,0.18902507391067852,0.19400096067518868,0.6397529406741769,0.9956293283004096,5.825670554554489e-06,0.006000527874179171,0.9998252818369839,0.9999836041229897,0.9996670971678386,3.624873026754051e-06,0.008286988064077985,0.0010929131608296686,0.003389976967671792,0.9887800342377833,0.00021065020200802811,3.5780071398996276e-09,1.3541563685746533e-07,0.18114781759678453,0.8591285226689341,0.020525539338385648,1.6210300510239684e-05,1.8246083394115489e-06,5.862141568295325e-06,1.2201621295948299e-06,9.163825907009682e-05,0.41442594612277506,0.4098394459529295,0.014750200061570592,0.007833297575991313,0.00034271462137288434,0.0009110881225407662,0.005141365566714275,0.0027179899394126294,0.04763010770772259,0.09819038326329577,0.7886371726665523,0.6243581791761409,7.195818421465243e-05,0.00019691669549992257,0.014729258241877208,0.24018615999980458,0.18036881501744542,0.00011675913511751411,0.07005528984854362,2.931898750384474e-05,9.756513818329677e-05,0.9995727662665573,0.999998359742288,0.9999920252274471,0.9998315078462431,0.999690716079008,5.3420146320225054e-05,0.08255744451215768,0.015792631581812797,0.00021514531281443985,8.332896752950488e-08,0.15099173591301077,5.789949227167346e-06,0.5980522075233742,2.0244984843814594e-05 -mitad,object,1.7063006985200108e-11,1.1672793472699554e-07,2.629234740583567e-08,0.01991464976441961,0.689948898828182,2.0764579011424886e-05,6.73742125429636e-06,1.2303240127937979e-08,8.931859573809971e-08,0.00011943445994961939,8.450407811023539e-06,1.2306408625951158e-08,1.0561079513877419e-08,3.963152956812145e-11,7.449373786898676e-07,4.1581081505677845e-05,4.2374772725405646e-05,0.00443655470340618,0.46754880461672266,0.0016186856551288517,0.40948157736050006,0.6349749650203439,0.8070665564423519,0.993462685073229,0.0009203804402013351,0.3213802940968526,0.9999970849383226,0.9999998727202737,0.9999981057632129,5.597788197891053e-06,0.0004250473475685986,0.00015561746491521173,0.00143200491915222,0.23437522399985933,4.1956784041414e-06,2.0864798536929236e-08,4.2054129568931135e-07,0.11540851693305897,0.18050693651605607,0.016592977228182895,1.9208897921009277e-06,1.5032389258671306e-06,2.4883643526483445e-06,8.918998526348832e-08,1.1944612416200104e-06,0.39113962909242755,0.299523697499096,0.031974899713097076,0.025920303498811047,0.000547930607790497,0.0011783991921723675,0.008126850902611893,0.006115701087149864,0.054405357109262115,0.17440307886169543,0.08939135664093645,0.4005063074814708,1.468711220880658e-07,7.028901272494736e-07,3.35688421109202e-05,0.0006070726868106405,0.0002492430433745017,2.8649655414464795e-06,0.0008991961505767673,1.4354383963010063e-06,3.146627570283219e-06,0.9996640757628327,0.9999741209776944,0.9999626992546059,0.9997860482975021,0.999779483979591,0.0006256182087999222,0.21499745235265363,0.2886915197978244,0.01058833961895376,2.88848428675381e-07,0.03207247424066848,1.9787585980958184e-06,0.13469237864529143,7.320902419218145e-06 -morada,rgb,3.73473376942359e-13,1.5127394987325602e-15,2.896628805988841e-14,5.0266380078907e-14,8.189495709680212e-16,0.00036879786287778683,3.889459493936658e-07,0.999999977417458,0.9999999999958455,0.9999999999988984,0.999999997768868,0.9999999469189599,0.9999999802574076,0.9999999856290893,0.9999942020664023,0.9999922134779882,0.9999900887134363,0.9999877512525229,0.9999918795736104,8.693706082908664e-18,8.068506271302253e-17,8.03269993107756e-17,3.787558180576378e-16,2.3810667710566484e-14,0.9978307332592287,0.9957454194167343,0.9974394337846182,0.9972218254886538,0.999803464331895,5.097556136397302e-09,1.4613708663276415e-10,1.7305438258653284e-09,2.0910627021758945e-09,3.80380746123493e-09,1.4235862937866969e-08,0.999999999989504,0.9999999999684273,0.9999999999923745,0.9999999999795395,0.9999999999472957,0.9992225187974958,0.9998480163418576,0.9996797207019634,0.9991524261459525,0.999851535174301,2.0970890075479376e-15,2.5506303331846462e-15,2.704839519375446e-15,4.158136486609894e-15,4.278116778277184e-22,1.1703936804683896e-22,2.040614555385909e-23,1.8547279058343502e-21,3.040208159920353e-21,1.8567751123101916e-07,0.00026095585663205067,7.365702711783522e-09,0.9999999999997382,0.9999999999998077,0.9999999999999931,0.9999999999999725,0.999999999999984,0.9999999995669595,0.9999999997684932,0.9999999999821496,0.9999999999814704,2.5267802658118174e-18,7.707762540749898e-16,2.1458603935232974e-18,1.462554100975224e-15,3.3051103801638646e-18,0.9998154256654247,0.9998726662833138,0.9996434391199892,0.9998575467275032,2.2718447113057145e-15,1.963170174760878e-15,4.281291596519033e-15,1.7157122908667806e-13,2.6913467968875546e-14 -morada,shape,0.9639993610192363,0.0002554968713725547,0.0005284909137536497,0.0016146227253831206,2.2353592580990135e-06,0.001973497019616687,9.360602454489771e-09,0.9999995609760439,0.999999976942401,0.9998609159617576,0.999825977706489,1.5584405715529e-07,7.785154450491736e-07,8.158708062323407e-05,2.2029758714520644e-12,1.301887369507652e-10,1.6970431024145078e-10,1.3989557565519983e-11,4.5323120201508477e-07,0.019135603282183868,0.5880790528037197,0.12178586433695739,0.22167959202676307,0.0008381497737244949,0.0007030042687063041,0.0005390509805338974,3.290673849240115e-05,0.00020410400386830643,0.0005440669570257113,1.1502852211593845e-10,3.783674806325276e-11,2.991586953808129e-11,4.187085047510078e-12,4.497490338403461e-09,1.3501378324830072e-06,1.8176296833701252e-06,3.289964317943176e-06,1.1220901050891518e-09,1.6442198616996303e-05,7.371253270473917e-07,0.9998665495265308,0.9998259133972025,0.9999964152863554,0.9999977548869695,0.9999976882020232,1.5843349590424712e-06,8.546062549013531e-06,2.5280362951107983e-05,2.8678999619884246e-06,0.21634263365282075,0.019057391494133238,0.20664076213900479,0.7647235604611676,0.9449073974655162,0.016147539722068196,6.800333710601515e-05,0.0028148030967227134,0.9998344691068586,0.9999912335256426,0.9456938927866357,0.9333518748336791,0.9999771934017054,7.61243041621113e-05,0.000801878776809965,0.00020222343013499657,0.0005260971245619728,5.995310236030736e-08,0.00010169802204963209,3.78532208897367e-07,0.0016860844508420974,0.00036896977811110937,0.00011804981848724937,0.003163322652965322,0.0034262800589579313,0.0005770183760653398,0.37750404812376526,3.413576275719337e-06,3.222957985292537e-05,4.72321918969505e-05,1.7029277648562482e-05 -morada,object,3.6845372487828624e-05,5.740149086092163e-08,7.514680638961927e-07,2.1421849183181709e-07,5.037308106426772e-09,0.021243828056731487,1.1970600635304497e-05,0.9999998848869344,0.9999999914951468,0.999999769049116,0.9999838858298645,0.9656438779447143,0.735951704609459,0.9775226795867363,0.00025983071509831917,0.0003375210871285698,0.000318704615697273,0.00011860296863776786,0.004421086261096703,9.966432709874105e-08,4.353357020532671e-06,7.902966031482159e-07,3.3030607107807833e-06,4.0985528405593725e-07,0.04061121361237414,0.06265436178713617,0.0017317514323790442,0.027687961280315723,0.022340833725955384,5.712526103731421e-08,2.5649396951742618e-08,2.5046324484930765e-08,6.103107166685516e-07,1.5084709734622306e-07,2.115865934451838e-06,0.9999321231990376,0.9999522076147038,0.9999627341081225,0.9999962446613827,0.9999930720005862,0.9999525086013669,0.9999751854751462,0.9999844370679815,0.9999648136888433,0.9999759352301424,7.372887018456275e-07,1.6705990964626041e-06,1.2571159196326354e-06,6.034395187016926e-07,4.244489645441589e-08,1.4110748976142138e-08,3.991097120414095e-08,1.6035804066565394e-07,1.8487442792081503e-07,0.006038316176619182,0.0037698591228285685,0.0021871526632555945,0.9998493629560823,0.9999455507314241,0.9998196838055186,0.9999000437911322,0.9999945291723978,0.3573330014174605,0.7275317816180128,0.418030258483819,0.8859593627111987,8.659884407919597e-09,1.313206388248725e-06,4.861845516689784e-07,1.9676750975823444e-05,1.4575270668329764e-06,0.9677546314061528,0.9849230826890536,0.9981445557507892,0.9896046135629196,2.4186878243878887e-06,1.870938425007255e-07,6.017523496700829e-08,2.4720219467660236e-06,1.3703833561578865e-08 -morado,rgb,8.024174133225561e-09,1.4408202955770775e-10,1.5553451118960538e-09,3.6737479157256367e-09,1.473953992188787e-10,0.0008896206312331155,1.913177089184656e-06,0.9999968556965543,0.9999999424477324,0.9999999668386514,0.9999989960895992,0.9999416112533551,0.9999512544520586,0.999958698911261,0.9999241354896248,0.9999085980411608,0.9998934663808826,0.9998780673958094,0.9999033515199938,3.2017089462036238e-12,2.0003347847674437e-11,2.0627398924750383e-11,7.97868678050429e-11,2.0873109408112164e-09,1.286131916590215e-06,1.4494723678719125e-06,2.2652487601651365e-06,3.4522483379724917e-06,0.00031247665800466736,1.9662081817073074e-05,1.219034327205411e-06,8.407261629238398e-06,9.238143692079628e-06,1.4279830588442908e-05,3.601896441289539e-05,1.1362836939576805e-08,4.56720339949956e-09,5.5204978200112334e-09,3.98504866762161e-09,8.964645553676951e-10,0.9987844319150242,0.9995379128436723,0.9992474890648774,0.9985679074315266,0.9994123293294543,1.4663662821157356e-16,1.103035105992656e-16,1.13091574122157e-16,9.689287494509031e-17,3.3535292204729174e-17,6.845253372867742e-18,1.103498034546886e-18,8.866195062880899e-17,1.164483345769214e-16,7.6132931957418e-11,2.6854508224001526e-08,9.74418261255146e-13,0.9999999478486019,0.9999999240784385,0.9999999676519319,0.9999998919502168,0.9999997096980734,0.9994317506924612,0.9994106887019021,0.9998186308264156,0.9998135484356402,1.3346467461462996e-16,3.816433829013116e-14,9.013694001763148e-17,6.575669711801952e-14,1.1293364240364937e-16,3.990535396086315e-13,3.9326696093445857e-13,3.140216261686164e-14,6.17535108351511e-14,2.6283840215604446e-10,2.446269712823113e-10,4.789126373755805e-10,7.987728828387435e-09,1.9984525789794438e-09 -morado,shape,0.991139067643376,0.0002809401825610296,2.67280330460197e-05,8.016781552079597e-08,3.674122279113556e-06,0.12412713041890708,3.9217438439503954e-10,0.99999997860979,0.9999999970210709,0.9998145506019422,0.9999290081621247,0.0017177638970779462,5.5851721288758726e-05,0.013533860928049467,1.2198233280060698e-08,2.210697717785544e-07,8.679373559663182e-08,3.5708732251444397e-09,0.0013424795162102297,0.0018834985811802957,0.033137131519358584,0.0834360568424018,0.11334302267935367,0.020522914138967615,3.9234621261430303e-07,0.037762141905392586,0.00021389324678667762,0.039325882050957224,0.04057354045366929,6.397078982815864e-08,1.1880956167489102e-08,1.8851755235427325e-08,2.081324446248788e-07,3.3439843955707215e-08,4.784607161067179e-06,1.6843179251428284e-05,8.783867084362091e-05,2.394519178844503e-06,3.988460093450124e-06,5.7808468598105585e-06,0.9999962680759449,0.9999909031319523,0.9999927581284288,0.9999988263779735,0.9999986195872486,0.0014317689859584674,0.0044745611678474115,0.007098410003879253,0.010445175814676686,0.017876883239080845,0.0005129589498901413,0.003247789428779922,0.5858738730610134,0.8421029576914469,0.9994045123506735,0.05313530088586466,0.3875295410730795,0.999540256128276,0.9999918719573551,0.9991662027435443,0.9999007250014997,0.9998727406289732,0.9993358174314348,0.9995663118278025,0.9991317438942194,0.9987613462937279,0.001813912351633755,0.11906750785287379,0.00014993378841360728,0.027137004033651102,0.03742087713527598,0.703356157579611,0.996367968586662,0.9977617997769991,0.3988388662540569,0.00017288939964562385,1.2877238219756677e-06,1.561922608459556e-07,3.407840860942235e-05,4.1820874505722537e-07 -morado,object,0.00011026770836345065,7.770984930882516e-08,5.537190951979795e-08,1.4806166886848397e-10,4.0833715304269895e-09,0.0450703033810787,5.245079308697909e-07,0.9999999309683961,0.9999999974968516,0.9999997070650531,0.9999832106730399,0.9988609671322156,0.7635287946225155,0.9605759352894694,0.0019009654033047786,0.0028308221306252877,0.0012224604020973707,0.00045060962194826414,0.10549317146525748,4.0709581793184395e-09,2.3019596397782566e-07,1.531352570136785e-07,5.481663168805947e-07,2.8335389513576196e-07,0.0003058535029003494,0.006319005066131335,9.790802208954048e-05,0.009640066506469768,0.015463523851421244,1.0883044245403093e-07,8.385065298404034e-08,5.603136828766479e-08,1.496776377315004e-05,7.843445738757555e-08,5.18772902492587e-07,0.9999672543551904,0.9999866876951142,0.9999991069999764,0.9999968468676363,0.9999994680062559,0.9999951525245243,0.99999425495197,0.9999929947925376,0.9999808155439202,0.999957259803846,4.86301919675695e-05,5.904485677674708e-05,7.278784376914736e-05,0.00012685067543838238,1.2355442475594037e-08,2.95157511549526e-09,2.503188072753544e-09,1.3994412720114773e-07,2.2872961921260263e-07,0.8043605806688785,0.22914246991776166,0.15733655755544732,0.9999591020350946,0.9999887441305297,0.9999611599540942,0.9999969677431528,0.9999969975516422,0.9997504153689718,0.9998620431629476,0.999713563098933,0.9997705030540287,4.832375886189494e-07,3.592097347832645e-05,1.8297559709061535e-06,8.190694924025973e-05,1.303582575338298e-05,0.9999837269411346,0.9999923439373801,0.9999986503817637,0.9999848777007244,2.1733464472540387e-08,2.5705910562300806e-09,2.0868627063952214e-10,3.3764376520915684e-09,1.1451506928360075e-10 -naranja,rgb,1.2264115172548722e-20,2.2060664229261953e-20,1.9777818888860182e-19,5.310543413628946e-16,4.006472842181912e-16,0.9973137395717092,0.9963497012554385,6.527266912971279e-07,2.0360319109766529e-07,1.5581241781700552e-07,1.650811910529718e-05,0.9959168057240957,0.9980962833580499,0.9980367462359585,0.0018865604771689656,0.002457324128480673,0.003025975271605483,0.003612935813035304,0.003608163167391121,4.778072931611358e-19,2.399364582450543e-18,5.529874221900354e-18,3.731771339450773e-16,7.100986952789862e-16,2.699067064219638e-51,1.1174712345257032e-50,2.232569054500883e-50,1.0256408472871948e-49,7.218591052882115e-45,2.8237348988608647e-07,2.403526004786489e-07,3.178516254108193e-07,5.846600082192534e-07,8.33989089761951e-07,2.4354683771111483e-06,0.000366210175640096,0.0003850867020481814,0.00010018600858082333,0.00019962574744193806,8.167809555727668e-05,0.0007748580048598643,0.0007799675750062487,0.0014805721233807348,0.0030283919096120372,0.013256450137399614,0.7768611796609944,0.7903672669964454,0.7951505241583542,0.8224448426145242,1.68821424437948e-08,2.157727117741212e-08,1.221849669789666e-08,9.746243907577974e-08,1.959366229237935e-07,0.9998817972635972,0.9999866928064972,0.9994288555697934,0.23777295479617944,0.6935772191203733,0.7256401587661273,0.9635969611337337,0.9944848465283406,0.9999870682009102,0.999987696353354,0.9999770689806283,0.9999774164566023,0.018720226386100207,0.21397437946672077,0.019745537066004317,0.2754411183597288,0.027432959644822688,0.012310544916897715,0.00884130032310559,0.0009623101881957484,0.0009962682406211855,1.7663796428301988e-18,3.70834368221564e-18,1.5836980086401113e-17,2.0261344637904084e-17,2.518946434696627e-17 -naranja,shape,4.003440477742486e-06,0.02195691326349595,4.981848800342368e-05,0.00035625425422643506,1.582433220652941e-05,2.172122130339632e-06,0.9958174190480156,1.3423878988720575e-07,5.603488036549648e-08,3.7661795265014456e-11,2.735994494129082e-08,0.999911789045673,0.9998478755139044,0.9998385138430936,0.022852949390067344,0.0002903699699120363,0.0008434518687994492,3.488940045125284e-05,0.0003074354423377363,0.013889279607043498,3.371590876306804e-07,6.9738783556583434e-06,2.937650323383025e-06,0.0037300757992075025,0.0003328372442922149,0.00023454198468338404,5.173667628414132e-05,4.324517854830018e-05,0.0059643001228376095,0.4889495787459437,0.0011919038015866502,0.010182902724594307,0.0003099756976714117,1.1383396085673194e-05,0.010077802494579808,0.003048716261596219,0.0008515073197905058,0.002687776943852228,0.00043174163196093006,0.0033787265422267156,0.0009623565000337719,0.006037448137373107,0.0046965401679671375,0.01844129054292153,8.044054448477698e-08,0.9996188825528638,0.999974668708817,0.9999803192382072,0.9997723028712431,0.5314991127685308,0.3713651836097185,0.04604827090036288,0.08548151675767535,0.015958315981388187,0.9999937540344095,0.9997255445588591,0.9999606795888164,0.00018296133165678297,0.0003143560106023572,0.0003847245281992021,0.0013923773583545624,0.00012358583584901053,0.9999927576393247,0.9999988809883643,0.9999992994773523,0.9994621097304471,0.976788411385229,0.011296573627795922,0.00022260262895664455,0.0005065062538572876,0.001673915826735639,0.9999991450054018,0.9999983791080552,0.9999998033346487,0.9999999129951922,0.0005798058656433087,0.25775202950515663,0.004356391541856477,0.8656041446098687,0.00015090226271272653 -naranja,object,2.0699794891240794e-05,0.013426021883842967,4.772546557867296e-05,0.0007412700110798981,0.0007341551787316655,0.0010156488466242556,0.9996756550219009,3.240594694366918e-06,1.1264731697417155e-06,1.59815067969074e-09,1.4275386460291467e-06,0.9999708033526588,0.9999154045171326,0.9998822617463443,0.4303545350316638,0.026328962634936785,0.040020622844304875,0.008552630359646499,0.004230773788309687,0.0027395978485570214,2.753150953586341e-07,4.712962443319295e-06,3.5986415319941907e-06,0.004755179093179269,2.541431607029892e-09,5.40603653402644e-09,2.968129331068053e-09,2.37985999101688e-09,5.910154734923836e-07,0.9284061539585775,0.11772946166567251,0.3004734491204819,0.04547408435892159,0.0009206489696744924,0.014351536950330788,0.004118488873269398,0.002309982998692588,0.03206066772573573,0.0005864170042575122,0.41141718807727046,0.1030480398838911,0.1792881241458636,0.2662160410915339,0.11258190349255968,5.49218542930918e-05,0.9999195283459492,0.999969168021724,0.9999782765514771,0.9999323243948046,0.5260384167942928,0.37835840074362065,0.07229285568617723,0.2528388791304585,0.06892801046004624,0.9999921374189359,0.9998472087807909,0.9999789920047888,0.0006453722740674844,0.0011516197126872887,0.0013989364054225204,0.0037944368843838483,0.00029317582118272155,0.9999714676274719,0.9999974478419748,0.9999979017994207,0.9993528587845524,0.9969000924303034,0.23212656533058829,0.025215202761441593,0.028697426830461056,0.042453444241394515,0.999990842809974,0.9999754741398872,0.9999913752417341,0.9999949316951662,0.0032110555408511265,0.20511957265531222,0.005338292079631922,0.6451985228755506,0.00031490610130572954 -o,rgb,0.8093344847667528,0.9984635179236719,0.9929576886989443,0.9997338451934328,0.9999917229183181,0.999966630257415,0.9999999257784258,2.933992510696006e-10,2.0687172512333876e-13,6.599579449946573e-14,2.348916766232586e-10,2.1818904073645628e-05,1.613635344645349e-05,1.234712882317613e-05,1.3575525798259212e-06,1.976303290693596e-06,2.6772264498173153e-06,3.4859441277616635e-06,2.4985676252954157e-06,0.9999960807355636,0.9999871778710576,0.999991453626994,0.9999956559692904,0.9998795472440283,1.903019807589874e-25,5.658095656003042e-25,5.017759459585236e-25,9.821357963268171e-25,1.1044868473336953e-23,0.9997210899815696,0.9999866136725879,0.9998981536909932,0.9999125294880021,0.9998772289002625,0.9997776037819684,9.637117036408774e-07,2.637362882602811e-06,5.219043457808939e-07,1.5144555113825725e-06,2.8330418340171797e-06,4.5993643460388554e-05,1.2149495430248633e-05,3.113138093246866e-05,0.00010043262355268651,5.2707308972816186e-05,0.9999999999999976,0.9999999999999976,0.9999999999999973,0.9999999999999971,0.9999999999999987,0.9999999999999998,1.0,0.9999999999999982,0.9999999999999982,0.9999999996543265,0.9999999278475967,0.9999999999751545,4.0057361261264076e-11,9.893498435833938e-11,1.0080992661010987e-11,1.0954087891527952e-10,2.737031712351215e-10,3.738606428426365e-05,2.613201844184095e-05,2.635168367749632e-06,2.7421836050573843e-06,0.9999999999999996,0.9999999999999727,0.9999999999999996,0.9999999999999587,0.9999999999999996,0.8376315095448934,0.7766502674543788,0.8313062513241143,0.6942795448449699,0.9997243724011826,0.9998296256678958,0.9998319663138875,0.9963099013335552,0.9993321862523622 -o,shape,0.9994738569992508,0.09332871943174856,0.9999810764030432,0.8013075410326435,0.00880006494277567,0.9996910633076267,0.9998298484821085,0.05261520631852231,0.0007896454716867366,0.00036202171982705687,0.0031269137814447586,0.0015249020837080345,0.9890718994499708,0.3564325227405319,0.01523081431560586,0.0007574716922672351,0.006494210728467329,7.4292224190132e-05,9.769948048146348e-05,0.9999434762431134,0.9560017841253066,0.9080871849804397,0.5336119821499201,0.0001777418801633944,0.9992651031256421,0.400134258799369,7.718141433439801e-05,1.9954760227945583e-05,0.00031329577487006335,0.8346758483515095,0.02536500764575747,0.058746427432488126,0.014402234260283328,6.966089099303626e-05,0.9998838568357186,0.9997503923877549,0.9944265449623175,0.0016619655492323066,0.07075666727297315,0.0024062528121739208,1.2399861353685096e-07,3.1525544769856865e-08,2.499648098032594e-09,9.32495327413413e-06,7.613917517966174e-05,0.021286778962259993,0.016150334184798866,0.35570141704448105,0.7420385082204591,0.9997757114666018,0.9999724191903466,0.9999918100511141,0.9996085044921313,0.9957510313232988,0.0006882109506446067,0.00072979054313599,0.00011349884800120668,0.09398172073199762,0.96780604395166,0.9950192782425106,0.9792016483515529,0.07338011848220229,0.22111169832433758,0.001741986645118458,0.7510183873973245,0.8034108707435104,0.0018926977960042346,2.890329709494175e-06,5.169577580219985e-05,0.00030652319857721154,0.00577352768662748,0.8681507517989444,0.0047450596382263245,0.0018158651724519928,0.6551453276678751,0.0025073709253873823,0.25917927570477045,0.9999866841186411,0.0553899865188777,0.9928114557416402 -o,object,0.9993766401172494,0.9977412898552891,0.9996264969942178,0.9999753747749307,0.9997651486849379,0.99989393370454,0.9999864279238135,0.0013913352583197552,0.00018123282966782975,5.008065863255334e-05,0.0014183927031197689,0.013176538307027556,0.07013364378916337,0.021444277434823154,0.4356838835514093,0.18244672545258223,0.28968559252942117,0.24019577901688957,0.31165420469500626,0.9997894787146755,0.9983503781796023,0.9977506245476475,0.9963638542519437,0.7902021796568287,1.2940685725581391e-05,3.9542811330823575e-06,5.4250416719582626e-06,1.1710917752692061e-07,8.233551177675418e-08,0.9998164796166011,0.9999327846589932,0.99986788788035,0.9917378829705421,0.9992481716693105,0.9996198243788327,0.0117909332260315,0.0031335767401684616,1.8117270975315773e-05,0.001343508642716261,6.150960989876292e-06,8.311517680726568e-06,4.415849831177287e-06,2.2463276673260417e-06,0.00019501380846448103,0.0018341668107956551,0.9991919685865854,0.9994055361360453,0.9996290271666826,0.9997495873872819,0.9999965701965822,0.999999094352698,0.9999995848567382,0.9999840374154645,0.9999737710530583,0.6159639295481512,0.6964177807442664,0.6316745911220577,0.0001343734843959226,7.32552206029915e-05,5.671817298078023e-05,2.1834678168910102e-05,1.7013939025236303e-05,0.020413702760329208,0.0005593565100952484,0.0064924587699352375,0.009197217931806181,0.9999901537971725,0.9994863977270217,0.9997985371911647,0.9964450105956256,0.9998706476778463,0.029110081852090883,0.002452460244102205,0.0004144083835764096,0.003552451285473877,0.9984095208153977,0.9996350075244412,0.9999858033434783,0.9943355444535743,0.9999411541782002 -objeto,rgb,0.9999999983220056,0.9999999997822218,0.9999999958212131,0.9999994113782963,0.9999999614063079,0.9999610927265223,0.9999999875163076,0.8451185344085195,0.999859697637463,0.9999666171409725,0.8948260053042656,0.9969250510050044,0.9994828247643769,0.9995677429304491,0.06669456968386958,0.06075503465547591,0.056591243597694366,0.0533784276400604,0.06081980865844218,0.9999999999377598,0.9999999993262993,0.9999999989615493,0.9999999781330269,0.9999995625361582,1.0,1.0,1.0,1.0,1.0,0.8918529070935296,0.9885804062669594,0.9419191111910761,0.9371479601792473,0.9124694650313191,0.8344774163138712,1.0,1.0,1.0,1.0,1.0,0.01869689909548763,0.026171121371254213,0.02225022460537854,0.019298462558033348,0.03167513789602406,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999910305254235,0.999998685210261,0.9999999955562999,0.9999999977924336,0.999999999990066,0.9999999999993239,0.9999999999999045,0.9999999999999902,0.9999999999999905,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999955556909,0.9999999937102886,0.9999999775971983,0.9999998114689475,0.9999999180173232 -objeto,shape,0.9999071261223003,0.9999942379632576,0.9999962704033007,0.9999895774263595,0.9999996403491357,0.9959987423523172,0.9999998853270227,0.9998094849044231,0.9999805413343364,0.9999979024535163,0.9999968857044457,0.9998931838682972,0.9999977762678373,0.9999944755275391,0.9999999999076863,0.999999997133812,0.9999999972674916,0.9999999997400628,0.9999998917916003,0.999999681615353,0.9999982080809131,0.9999967610963412,0.9999947801927952,0.9999955777960959,0.999996375667121,0.9999929510296951,0.999998063051032,0.9999732834162033,0.9999900927551039,0.9999999997759434,0.9999999995203674,0.9999999999370899,0.9999995178396692,0.9999999963238113,0.9999993256762332,0.9999978874842465,0.9999963233245451,0.9999951921000162,0.9999851656004923,0.9999930847425578,0.0007433746866520466,0.0311940221246319,0.014112567850053976,0.01497775824338536,0.8932923362465411,0.9999997215019231,0.9999995680405996,0.9999993270893776,0.9999997217340882,0.9999991806234915,0.9999998444614759,0.9999997496627042,0.9999998064815553,0.9999998144355506,0.9999874392477115,0.999999135909048,0.9999954148521133,0.9999941545090776,0.9999938653383265,0.9999979560810682,0.9999957659113096,0.9999873728697195,0.9999992692920371,0.9999964186739572,0.9999999093514416,0.9999958934147033,0.9999999958491208,0.9999998373573,0.9999997297167298,0.9999905187762469,0.9999952335499755,0.9999988734556625,0.9999999755231371,0.9999991773563663,0.9999999104930282,0.999985175993616,0.9998539975534216,0.9999766377617016,0.9999762800547775,0.9999974009324247 -objeto,object,0.9998758373059206,0.9999941000159355,0.9999927748201267,0.9999311522194361,0.999996160410704,0.9895616685201603,0.999999245873382,0.9996414911620561,0.9999576094661103,0.9999930047511695,0.9999893042202717,0.9998257502281461,0.9999803520901182,0.9999751923729606,0.9999999974559799,0.9999999551050001,0.9999999595410723,0.99999999496891,0.9999984571725449,0.9999996216856412,0.9999979217088001,0.9999951492661173,0.9999920837231103,0.9999903195953713,0.9999982603402329,0.9999955608066528,0.9999959600848249,0.9999518732755143,0.9999842925417136,0.9999999955658359,0.999999992883807,0.9999999985434032,0.9999968688814913,0.9999999544689188,0.9999984513252035,0.9999991394601839,0.9999985462000044,0.9999970027742197,0.9999936068183299,0.999995561821195,0.0001682787433740409,0.010233213135089144,0.007450331409848873,0.008212491081499731,0.7998383665369924,0.9999996463948109,0.9999995085449093,0.9999993211938945,0.9999996901129639,0.9999992489709992,0.9999998430721417,0.9999997811672391,0.9999998184447924,0.9999998129035389,0.9999845337098577,0.999998362706835,0.9999946707512908,0.9999871214539697,0.9999880301458355,0.9999955206229746,0.9999905834777072,0.9999782449043044,0.9999971691619821,0.9999851325940726,0.9999995702962755,0.9999871665442029,0.9999999910170679,0.9999995995200163,0.9999995861279561,0.9999816398812948,0.9999929962613178,0.9999993462670097,0.9999999821229953,0.9999996237771503,0.9999999515555468,0.9999661423230929,0.9997364736178778,0.9999577824317637,0.9999570475204272,0.9999955922228966 -oscuro,rgb,5.840436611590829e-20,4.8860150082045663e-23,1.1191060678531021e-21,2.610507026879475e-22,1.5379354038958986e-24,2.3786174361763352e-15,3.7526291152058034e-19,0.9867578363082182,0.9999996888952241,0.9999999407672495,0.9979555098101471,0.055698817300750554,0.12840235665724495,0.17932880730746303,0.008625466599390329,0.005573730756849931,0.0039042907503055325,0.002859436560353984,0.004719644095054246,3.103905949421622e-26,3.361702783373559e-25,2.655928315901089e-25,5.8957543301797225e-25,9.365774632818776e-23,0.9999997681486723,0.9999992839647684,0.999999547379279,0.9999992987208601,0.9999996462119197,1.752757125403226e-18,2.0386313651315418e-20,4.309371054309704e-19,4.556857964866232e-19,8.733382754028066e-19,3.355051281259222e-18,0.9912992252531592,0.9649787534119959,0.9950877430154652,0.9812135880520516,0.9457426065417761,2.8004336764643005e-05,0.0002076801276261358,6.86430632958178e-05,1.6707613580544925e-05,9.053352546114238e-05,7.911222878467867e-30,9.068856950551366e-30,9.64742435717267e-30,1.4319813299602658e-29,5.185019991419892e-35,8.332328092987128e-36,9.761938307275241e-37,1.950610748809118e-34,2.9236759326726537e-34,7.990764365266049e-21,4.346918064779379e-17,1.4448708438460804e-22,0.9999991884877628,0.9999989076833308,0.9999999757636088,0.9999997269416077,0.9999996866853655,0.5990651055178376,0.745341464211101,0.9869929432125314,0.9863173678326903,1.9829546227984062e-32,1.6625040567117728e-29,1.5045125864010746e-32,3.433799839983976e-29,2.310002888135031e-32,4.901593489384107e-08,8.108726611026245e-08,2.9171805783991116e-08,9.15964571424737e-08,2.497017513426978e-23,1.6959537890851976e-23,3.054003881009747e-23,3.009370504576408e-21,2.7427521042743036e-22 -oscuro,shape,0.016681677731702475,0.00014267839990984984,0.054082264541999714,0.0011560024492020683,0.0001749305039758663,0.007099360027542906,4.5866742016362365e-06,0.9999996579522963,0.9999998633431215,0.9999963901606906,0.9999995050580011,1.0148087204275787e-06,2.053955731059347e-08,4.5502238698366444e-05,2.1023612232716107e-08,1.8638563137444988e-06,1.269527801227789e-06,2.7594866898233097e-05,0.0018817011480352069,0.9992652039682989,0.9977600384857325,0.95418726700729,0.9614718543945302,0.8769237974598191,0.03447087176933012,0.24963837974670364,0.0025509602085701747,0.013603315089067636,0.21556351667025145,9.326708430469222e-09,1.2895593517782603e-07,2.8962653357765036e-08,6.782510010657086e-06,0.0055240142457922276,0.0005716901102591384,0.0002958219283984195,0.00033866767102764834,0.0045998503760520575,0.10621808666216996,0.08890479539160749,8.350807833932613e-05,0.09372616759014582,0.9280309721097161,0.27661245411099245,0.9998866694107458,0.019826361058945065,0.0006032135121589898,0.00040308523503227773,0.002617315246182183,0.7278883877776928,0.6502856667525818,0.9692678506929615,0.9961602646346516,0.9952021068975778,0.057387899737954766,0.014677331209682752,0.08985532057272484,0.9982618847487175,0.9999762835486097,0.9995777267728632,0.9991004867742636,0.9999733833619832,0.0030560803736006557,0.0012296717396369794,0.0003452990944184773,1.6912284606508923e-05,0.0003431161252538441,0.005647658610407585,0.828207660621137,0.37833791102458203,0.0063072327763274705,7.613662086121151e-06,0.003051339178133091,0.0011191572290093258,0.20870426532393033,0.9825782600941573,0.014188710849120328,3.185096633236457e-06,0.010318246894355195,0.0073498292939085256 -oscuro,object,0.0002985452430387565,9.421086337753588e-07,1.5994505297359515e-06,9.743350656680673e-09,1.1619911115169472e-07,7.094648513945078e-05,2.892987473217813e-07,0.9999833156437838,0.9999992922977418,0.9999976518384434,0.9999663331868199,8.645137686935288e-06,1.5678959983421052e-05,0.0014696828965972645,2.5496248855810706e-06,1.5409649977864026e-05,9.18905614022163e-06,2.0888042323015566e-05,0.0004149522035808865,0.00016431169016126477,0.0024590113436779937,0.0002039147879649043,0.0005155174839368851,5.0176960547979395e-06,0.0019519592865257424,0.011702219744620712,0.00014536202344264768,0.00020900658487247212,0.0006035408679822957,1.1612728544536158e-08,2.935354446789115e-08,3.361347031593715e-08,6.698725673140969e-08,6.987052436604303e-07,1.7934785122530907e-06,0.9993395657863134,0.9995097468729617,0.9982220849809174,0.9989399571048259,0.9998108649369085,2.2374484750080323e-05,0.0002332805820013994,0.0008772071353748671,0.004898669608826279,0.7378537480754342,9.179004348578301e-05,3.30957099772671e-05,5.786614153761661e-05,0.0002133893063452641,2.3495710067690618e-05,2.5901344822195074e-05,0.00020645889673309213,0.0004777685287809347,0.0013591688698412303,0.018573575062153343,0.006828538084552217,0.012318444523590948,0.9993846901013941,0.9997989968117615,0.9995459358637849,0.999784083577773,0.9999389015795106,0.10749077959172185,0.057208476890067674,0.158918081703291,0.04289749842316849,2.9405460035819945e-05,0.00011306035065519606,0.0004601207536142916,0.0006511580193984261,0.00023795537815212288,0.9762941616248524,0.9977645920514258,0.9924581069190345,0.9992109625644949,1.6618441974567308e-07,1.7509516087476438e-09,3.4419763858563677e-09,2.971196306461914e-10,3.049116155264226e-08 -papa,rgb,0.00014636349977229106,2.097714909630344e-05,0.00012800954075861665,0.001512804329578876,0.00025973719826300834,0.9999470714748654,0.998443992376397,0.9999997332842868,0.9999999442642244,0.9999999533885078,0.9999999308553852,0.9999999891827863,0.9999999914295149,0.9999999920247485,0.9999998261143139,0.9999998212394277,0.9999998166971195,0.9999998123006616,0.9999998325075753,6.241255078474032e-06,2.474240612422697e-05,3.109765858689035e-05,0.00018453569072704115,0.0012107189914059178,5.823314243580648e-12,9.394217088664657e-12,1.4197166078264079e-11,2.7150096329710827e-11,5.964693402264297e-09,0.9537093378011504,0.8206656672619757,0.9313346513642183,0.9429389650272991,0.9577204226069505,0.9794929773402453,0.049851915326544725,0.03169550889040485,0.023174731619958318,0.024143673746059205,0.008348158813939747,0.9999991489795107,0.9999994750121206,0.9999994270910795,0.999999335286933,0.9999997010655911,0.0004720427173717219,0.0003983353259174188,0.0004057825758559443,0.00037390679612935013,4.689607586397661e-06,2.0499836650847022e-06,6.521814362140063e-07,1.1950486289904794e-05,1.626440141358979e-05,0.7539329477387893,0.9916186260452202,0.14967406842751216,0.9999999982025942,0.9999999985902233,0.9999999989856332,0.9999999989127546,0.9999999987131856,0.9999999853266774,0.9999999845021545,0.9999999894992945,0.9999999893875889,0.00019504402983857287,0.008241319232386366,0.00015697929542150135,0.0119353968381396,0.00019036599714875933,0.0007395970511462478,0.0006564315075352668,8.491416416366962e-05,0.00012182202321570586,8.86308338657791e-05,0.00010317897203395164,0.00021264885590932054,0.0009879001658759559,0.0005062205349228802 -papa,shape,6.691284240631761e-07,0.014373677067979622,2.673079449037128e-10,8.786211365327269e-05,0.0001320690850096941,3.3445706263971897e-10,0.6483310689336439,1.7672776187119475e-11,3.425283642325327e-09,6.0032430031360645e-12,3.092894623853412e-11,0.04356751652245471,0.0002712601149291724,8.683068058351633e-06,0.5575925696603504,0.0842600128138768,0.03145268454872972,0.28477728922603335,0.032046438085901796,8.717816004901273e-08,1.3397013958042632e-08,1.0680506256586161e-06,9.124928154303077e-07,3.136003072206781e-05,2.774578271465239e-07,9.668643600619392e-05,0.0005826833592874619,2.818479457569576e-05,0.000386383886900248,0.7643980798382966,0.01271146593282455,0.08662590159510432,0.015168029420895486,0.0006844967535388226,0.00016175170805089032,4.052115857000111e-05,8.950030971016877e-05,0.011898277561760694,7.954041614218942e-05,9.304997576735296e-06,9.027299919386197e-09,7.91798329149704e-09,2.1016220423802174e-08,1.3214486746609022e-08,3.7534227940562365e-11,0.997079761046992,0.9986618512835297,0.9990290742924136,0.9996338344734722,0.00026923263220117536,0.0006739528917535208,2.2580541666621456e-06,0.00033298304645726454,0.00023803647171164106,0.9979951283552916,0.9982584049062335,0.9737951781125316,2.0633801806048087e-06,1.1785630458258093e-07,2.704846134790402e-08,4.728030877429724e-06,1.231365331218018e-07,0.999998278464097,0.999995419224616,0.9999965762749197,0.9999582791941877,0.9978737993756002,0.1633068654298724,1.7959552700808496e-05,4.43231505272829e-06,0.0006416335657489148,0.9999935216013959,0.9999999297361046,0.9999927703991565,0.9999701870286942,9.56962662937369e-10,5.664484779084385e-10,8.019209988296964e-07,4.469191154585357e-06,4.682859597286926e-06 -papa,object,3.38928978567264e-06,0.0016864213912925361,3.794134317708365e-10,1.6100846254469964e-05,3.537275558838332e-05,1.2368352370675683e-07,0.8405372755256377,1.4859650822719427e-09,2.479572369533351e-07,4.2244189480329547e-10,2.7717396466205235e-09,0.4300509045700656,0.005787774758477695,0.00024602958282017855,0.6364094888543026,0.44838719262983423,0.20603904652572427,0.6100415637074063,0.2619803957787336,8.156037392092774e-08,1.2904102031835598e-08,4.5246321557957534e-07,3.3666788659206525e-07,7.198000224634979e-06,1.987739552163551e-08,3.780524265243705e-07,6.4862661108063865e-06,6.052312599570296e-07,1.2846104806612841e-05,0.38916974938677906,0.005780936219497146,0.03900121785482436,0.0071611695797121865,0.0026118368206405843,7.371880055149406e-05,0.0056785170477608215,0.007655631594381002,0.3222079280624852,0.00790519553477921,0.0002556924352444218,9.302721564948364e-08,8.075100688638435e-08,2.2508510711790582e-07,1.0157936424505544e-07,1.912496310165776e-09,0.9918477842522976,0.9953512348982125,0.9974597041836781,0.9991550758397497,0.00019742707537770188,0.00042080070254363084,3.039774415097526e-06,0.00036211042611513825,0.00031182802663857253,0.9989080227265628,0.9985955939545337,0.9762197215301556,0.00012796557869392157,2.376332753286642e-05,3.3977614411575398e-06,0.0002556076113414211,3.0272883247653223e-05,0.999999345349897,0.9999980824851806,0.999999375097984,0.9999923882634203,0.992373381271001,0.133656157861481,2.2874984063595274e-05,7.532354276985176e-06,0.0003300304951559577,0.9999979403473389,0.9999999293699396,0.9999954164007699,0.9999938845932353,1.0086754402296964e-08,7.136278513509416e-10,3.3682549938176364e-07,1.4480848462898625e-06,3.533446703390544e-06 -parece,rgb,0.1791721520816892,0.19436327558004737,0.20236589218322332,0.2623760449915119,0.2732366008576962,0.7176578721285852,0.7481971179338431,0.39134462492876654,0.38992434865425324,0.3898288850724781,0.4308548565477157,0.6631872691726819,0.6769480164650841,0.6767463131190637,0.4876286466796621,0.4912442523048292,0.4941209325435972,0.49659245826654297,0.49643693504757214,0.2306981564649211,0.2366747713150272,0.24353116361309593,0.2752900005433132,0.2672615022772495,0.019686849250491762,0.020336702879081032,0.02076190337285208,0.021585270880336023,0.02937409186744473,0.44139188146874087,0.4542875550805242,0.44735330095696274,0.4547333256153502,0.4570282485684807,0.46615332149661093,0.9142239604570229,0.9161241485685775,0.9143697654147585,0.9157519084851493,0.9177901521650762,0.4787370009803406,0.47746720503600226,0.48656475093789203,0.4971367471855481,0.5159913176381341,0.8580168090187991,0.861837751915618,0.8620637717862606,0.8663137065103759,0.5959085837224213,0.613715295345858,0.6219428669490334,0.6130479768313076,0.6208982461510719,0.8750628811239652,0.8716001893609968,0.8865567834990384,0.5828046147308367,0.6148781567125943,0.6326956259765345,0.6651661113533031,0.7047382779451355,0.786244234332737,0.7911367171348557,0.7888106992957482,0.7890182450857693,0.7849687845784344,0.7758598148460091,0.7890269072451054,0.7762323793222192,0.7918191291845834,0.9319130855889175,0.9318809233333415,0.9339795676501874,0.9333103759097039,0.22456841323375498,0.23070609639042258,0.24005203354656965,0.231928533679531,0.23859035862383676 -parece,shape,0.09450475820395272,0.00015377307999914745,0.0018755453447851002,0.000263665715607904,0.000813410050884686,3.085085478858804e-05,3.8134948816148985e-07,0.8389488892456312,0.43919263116484814,0.931039502223876,0.9985309601918901,4.758542502464701e-08,4.711869288747831e-08,3.122125862258856e-05,1.8530348968054869e-06,8.75167882086164e-07,1.027034798053118e-06,3.4320820533475933e-06,0.002387364666207883,0.9999135503862077,0.9998833677251608,0.9998480299003208,0.9997904060812682,0.9644190131080678,0.19629058758102477,0.8439237510385018,0.6348571731786693,0.30451688718004366,0.8313750934262056,1.153260729439385e-06,2.760646194004392e-06,4.832846895127142e-06,1.889942142323134e-05,9.979537780613595e-06,0.009654317462269411,0.0007131139091146151,0.0006608662900258713,2.8412414153665045e-05,0.000476615973876093,0.0028201412815620918,0.0005798602589843331,0.003091194530826396,0.013187439094594995,0.3128801065176841,0.7819967645569986,0.4801979675688604,0.39468403407289265,0.8291439097125284,0.8058626156312487,0.9980322870334021,0.9985820580203533,0.9999323219661742,0.9998940184464536,0.9999625325187085,0.9393635916985704,0.26895823460553264,0.9212112801666578,0.9997793457863551,0.9999865984930165,0.9999331071925788,0.9999722255752513,0.9999827066112447,0.875710078963348,0.612503545111327,0.9489280669980956,0.8107781708256355,0.6955758007802895,0.1180540756414614,0.6646342590184274,0.8930782244657965,0.8910134734523943,0.7669855823388828,0.9408190659529987,0.6418572861996805,0.9862785730501434,0.0012843652221535677,4.066259322037783e-05,0.00013795238470718367,1.9436784645313157e-06,0.0004284715082515071 -parece,object,0.6016750225785225,0.004023049744520932,0.005087603361250752,0.0008165778753923808,0.008017177310696868,0.0019548805091254393,0.0001035542860265021,0.9973669730470154,0.9903625410289386,0.9978942211512919,0.9998226296940532,8.858142417966498e-06,2.7675057297487857e-06,2.00108343423284e-05,1.7818848656795944e-07,1.329211093944992e-06,1.0230938273872475e-06,1.8393231945131755e-06,0.0009310549848070746,0.9984396586668494,0.9995529767150556,0.9993307157885228,0.9992083406769467,0.5154794078558365,0.003628783550274378,0.006832090033599069,0.00025575903337250006,0.0003548540223031602,0.0043040687442782175,2.731240236889777e-07,3.875536667036413e-06,1.0224178501453588e-06,4.712257486437219e-05,2.2344302092664677e-05,0.00881623231665476,0.5582667083479743,0.4659994804658251,0.08511047868202223,0.44416575769390687,0.74154849851025,0.011551037270315683,0.027424292748131594,0.09027536103209138,0.7133811602209308,0.9604676147128774,0.9614082148955639,0.917141807692238,0.9929650908977691,0.9949677359800081,0.9988011087770099,0.999381094661952,0.9999608535196572,0.9999589883576413,0.9999901276529067,0.9990162582725169,0.8969659947192479,0.9979226911422234,0.9999335094870814,0.9999896857220013,0.999963789045197,0.9999905847269033,0.9999929481553957,0.908219553717864,0.8489172647951152,0.985504975221323,0.9531096350900293,0.964945545262919,0.7378761512934813,0.9732542729269744,0.9937305563756861,0.9967404897800133,0.9997532404663171,0.999789053785499,0.998187903220083,0.9999685407777453,0.0021845780144537975,3.631849192690627e-05,1.909067970842677e-05,6.084832507205977e-07,0.00047032323866382213 -patata,rgb,8.134839624706666e-12,4.1851497803955526e-12,2.3055411384948027e-11,1.706427041376987e-09,6.867609722531914e-10,0.9897636749301233,0.952732267919237,0.2174397639937341,0.3168548136984156,0.3215773521934168,0.6728851475852826,0.9997941848296608,0.9998726906706809,0.9998762558246453,0.8867809461987405,0.8956461831359345,0.9020574642811314,0.9071506181838123,0.9120874321798671,8.348868147458116e-12,2.980159916125034e-11,4.6348049238119525e-11,5.724833847145736e-10,1.7350211128426685e-09,1.0333407928204204e-26,2.1443329332157524e-26,3.41258665021418e-26,8.115251681366479e-26,6.927311141720146e-23,0.0004891846436946651,0.00023264982240136367,0.00042559956750546783,0.000600452554209505,0.0008031151201055972,0.0017615824445398392,0.048708542137817765,0.04075200909460499,0.022768683802672354,0.029186729372396303,0.013683210719947759,0.7042192162223011,0.7539955493730605,0.791456325616406,0.8246893753411576,0.9287064134449503,0.013818418636844819,0.013843961661863897,0.014154069462386846,0.015418357167045165,2.2756016361878673e-07,1.8407100690619563e-07,9.131447974978115e-08,7.245791877135586e-07,1.1216117453856943e-06,0.9526278816843597,0.9960163242796234,0.7790485816665309,0.9989217334760232,0.9995974871227797,0.9997285833690839,0.9998925133612913,0.9999544431458454,0.9999881333147741,0.9999887203132855,0.9999887917333463,0.9999888066121407,0.000649153442119612,0.009164126963422222,0.000618819817240664,0.012341289928685854,0.0007838740439872667,0.02326651075878927,0.019913879314396858,0.0038720354453417164,0.0046374121757984015,4.687293284419982e-11,6.772433848563187e-11,1.6897870472355426e-10,3.763406834236879e-10,3.0239735609413564e-10 -patata,shape,1.6882321068679398e-07,0.0155471076103619,4.404657792645633e-10,0.0011473944758390016,2.3292237739986487e-05,6.059345331540307e-10,0.9090811984452161,1.9331433687394802e-12,6.525991890920746e-10,5.95755096798029e-13,3.1458275304906705e-12,0.0013773592417823564,0.00021439641910780713,5.287291250690765e-06,0.0051172681383844665,0.014026589463989672,0.006190064236364189,0.028464569274086415,0.009141492523867626,1.625584058608188e-07,9.241823009655968e-09,7.650025602313066e-07,5.00796226039421e-07,2.212295988204936e-05,1.1912622631561924e-06,0.00012363461172651332,0.0004408004196617092,1.2272873150677651e-05,0.00014642212241499248,0.05132531765177204,1.0081357170804147e-05,0.000298438567935894,0.00015130760340580502,0.0001996565612717378,0.0009179131933846544,7.204059825725493e-05,0.00010510020001536269,0.022470538512345248,0.00013538667337857621,1.0219059940695812e-05,7.28613794913902e-09,7.021629184902488e-10,2.1886020860548705e-09,9.5916773781239e-09,3.5727232773883344e-11,0.9975022123107089,0.999062149584416,0.9992681849071668,0.9996345754563991,0.0004980155641109518,0.0011977553422305642,4.4363638277781266e-06,0.00043267888149295803,0.0002527007026309915,0.9967368646811627,0.9990746972358697,0.9766211515031267,1.985099865615067e-06,8.846420593920918e-08,1.938497277538331e-08,2.2385409438043008e-06,1.4676044598483899e-07,0.9999968544704404,0.999994578920991,0.9999938840366112,0.999954545512624,0.9849259785469018,0.06361882821503309,1.0471022318226716e-05,2.6972593933304762e-06,0.00034262297591768136,0.9999923497195099,0.999999726245466,0.9999885275229342,0.9999501312691503,1.5562335381325181e-09,8.121143379536904e-10,2.210853418665764e-06,2.8220140724070154e-05,2.3395385922886484e-05 -patata,object,3.6297586063392597e-07,0.0009875422449362916,2.1692898305146535e-10,8.144566295021598e-05,3.704760723499101e-06,1.5997566780309704e-07,0.9562583852650474,5.468820457491492e-11,1.3350147845718783e-08,1.2780513805699674e-11,1.2240413853324248e-10,0.020231650104973166,0.0024013760146150516,6.850471079166596e-05,0.007720027175251325,0.08296279174077095,0.03428429159493477,0.09952217392830304,0.03658885420415807,9.051148164116324e-08,4.2720563834131096e-09,1.47856327453752e-07,7.528543911355761e-08,3.001240301789002e-06,2.342427373561221e-08,9.77050881282098e-08,1.307474907328661e-06,8.545397890419524e-08,1.4265645241633273e-06,0.007648907718002056,8.009931088182671e-06,0.00014792678407179484,8.474217258082938e-05,0.0006013121351648605,0.0001614471271576754,0.024749263888075336,0.022277275697085167,0.7184682956363196,0.05075671843302617,0.0007842391277373157,3.804243623482452e-08,5.204483540394295e-09,1.8363815152370873e-08,3.525986728323552e-08,1.7653349468608714e-09,0.9959420776708138,0.9979428682019638,0.9988761982520366,0.9994774717871466,0.00042925891231724276,0.0008351866941068111,6.6921580912523275e-06,0.0006085395929406427,0.00041625622176484547,0.9983810838885615,0.9993303805774139,0.9863898995537579,6.192951926439998e-05,1.3947554924135967e-05,1.6769203429942279e-06,6.897488896729989e-05,3.2973438581726123e-05,0.9999981793877573,0.9999962880445993,0.9999981152328282,0.9999859155850721,0.9500332517147165,0.04728266564012519,1.7861501748169177e-05,4.623058534135759e-06,0.00020208277868419687,0.9999987666851332,0.9999998720888227,0.9999959483292792,0.9999952767094044,1.1513408527394766e-08,8.61743810337495e-10,6.945172450253374e-07,9.012120769121353e-06,1.5982284670199777e-05 -pepino,rgb,0.999884096487504,0.999897566178562,0.9999040039179705,0.9999076502012453,0.9998921694983981,0.38609863330929817,0.134902015507433,0.8605031417563093,0.1681518694353846,0.09849159791796798,0.6735973626877108,0.05106615563451244,0.022274200808752375,0.020168669773605537,0.9321167879479693,0.9339973938602413,0.9354717977796179,0.9367164171608305,0.9299583256797531,0.9998827396653142,0.9998943829958145,0.9998928387827872,0.999887325626052,0.9999050429982707,1.72004409449414e-07,3.777576758610455e-07,3.9267753529845375e-07,6.965444138406084e-07,1.0808359263326654e-05,0.9995330514925149,0.9994581991588667,0.9995024956200216,0.9994422771934628,0.9994156760448564,0.9993039398245053,6.927074855133118e-23,6.119355642779149e-23,1.938577719728033e-23,3.3272588601744886e-23,1.1686465277734657e-23,0.9815986395910001,0.9736025362647043,0.9749612363674208,0.9766168979380916,0.9536775945629008,5.856201260193493e-07,3.1451173416751026e-07,3.053777939382263e-07,1.5251582058025886e-07,0.8159859307323443,0.6441039405742867,0.4761349303148258,0.7635716973000476,0.7269264466380514,1.4136183067349475e-07,2.1866389272657995e-07,1.009507323680128e-08,0.004091588479674525,0.001486357858233473,0.00014175356841374792,9.303025514957472e-05,1.093226818660312e-05,7.873266998116205e-06,3.8082854772870037e-06,1.3781871414025325e-06,1.377396053604943e-06,0.0010132404235670268,0.005730390978435132,0.0006870961854425347,0.006110156373205547,0.000581768830608814,1.3565349928175577e-21,9.1554207464074e-22,8.88276370984206e-23,8.69694151509383e-23,0.9999064296305674,0.999906239609795,0.9999074683161979,0.9999112257189308,0.9999104878919979 -pepino,shape,4.129674576001426e-05,3.6068536156775086e-05,0.0014885550499214187,2.3266888124993744e-06,1.549211891994628e-06,0.9865936833863844,0.00015189817337941613,0.09806846020848849,0.006313450242556485,0.19339280063566167,0.004613332732922358,0.9952245030670495,0.9943761902875783,0.9665346062734088,0.9999999709587788,0.9999836006458295,0.9999698663287754,0.9993169286130281,0.8714728487149401,6.290581661238574e-05,0.0015387243516761732,0.0002952010075711758,0.00031125680130897896,6.350450415756947e-06,0.0033291209726050443,0.0039000200888439046,0.06341836384505434,0.0014010380484099783,3.6915648940492246e-05,0.999996518564117,0.9998997505971338,0.999974104129472,0.9998626957106759,0.9995788023258398,0.9993068885405805,0.0033994684714427773,0.010303717677032316,0.039559190534083334,0.0005450755282662868,0.10621811584356018,1.2729522815045967e-05,0.008805959597446096,0.0023210660087453045,0.0016771250120996338,0.0006372413620276532,0.0005092513698713892,0.003596854894651038,0.006946392592353996,0.007227143922200103,5.511737882244877e-05,6.442737817921139e-05,4.87616057390108e-06,1.3526497284291486e-05,4.681348792504209e-06,0.0002926421303439496,0.00033148958348428245,9.828507167383585e-05,0.0002985786311225772,2.0393918717923304e-05,2.180836100285179e-06,0.0002758518500177124,1.737883567681383e-07,0.014667927671906153,0.004667831964671777,0.13439640998637803,0.9172171832925088,0.8541616375906937,0.0003362863907057981,4.166226749281159e-05,0.00019621999720899805,0.0010198974762422328,0.26550376529018177,0.543453290281687,0.2226719312287609,0.0010064659037247847,0.002333793918936063,1.1950512475425715e-07,3.949396149958385e-05,9.550534977066709e-06,0.0019637874920052324 -pepino,object,0.930718384832719,0.04643838766919122,0.35749707337383274,0.0013087428298931892,0.0958539891811552,0.9999720294396455,0.006177881254133198,0.9974362959994373,0.9820271013397542,0.9788344378879758,0.9803473747249447,0.9107923967676768,0.9987237390505471,0.7826073323348224,0.9999985571495699,0.9999723550305434,0.9999378855784437,0.9977657671995794,0.9996632450520725,0.667928240566574,0.7687193578832863,0.1413857161488238,0.26786083523416643,0.052353694905805236,6.51152967613818e-05,0.0008076593062531049,0.012663749593748533,0.0005422202656417529,4.335233728048314e-05,0.99999866244542,0.999962587224746,0.9999966496075873,0.9999322156123823,0.9998589345111107,0.9994986180616099,2.636575101384853e-09,1.053664723560371e-08,5.827124801866647e-06,8.826198599378004e-08,7.124785968108159e-06,0.18317062551746435,0.9801410173573063,0.7466307910880711,0.12330478497391709,0.9812382133010951,0.002721578102239732,0.01006346528205355,0.004467856063919989,0.004255079633857275,0.0757186027573613,0.04143173060762811,0.024622812384308912,0.015527188001052092,0.01980240720426005,0.002863792648069418,0.002670558384820604,0.001109525051329929,0.0034336162174813207,0.0017352323413345958,0.00012001397894916338,0.038297961189588774,1.3857442015350621e-05,0.021400927030955582,0.005036047455802205,0.02608293726430555,0.02959379820078342,0.9903508702991503,0.3430531270308461,0.44914801955619194,0.09455549929231306,0.046537368662033916,6.478509908442463e-06,0.00016205836130995415,9.60888748550863e-06,1.8526173279491315e-07,0.8541404372729804,0.0050532688088433505,0.006434341133608793,0.062372433336561436,0.2223518788980295 -pieza,rgb,0.9999998063361646,0.9999999803644671,0.9999996404257533,0.9999309769997429,0.9999935325083027,3.5806423154432913e-09,4.287971444410718e-07,4.655799064924414e-10,2.2273039422072257e-10,2.2588813980657606e-10,4.78880450551595e-11,1.5552877371953173e-13,1.1982873722336e-13,1.1336763301768083e-13,2.6075696544875517e-11,2.496959168999796e-11,2.4230140385340234e-11,2.3685880407904962e-11,2.111852296775363e-11,0.9999999908980465,0.9999999166585792,0.999999861339841,0.999995946905533,0.9999443462466411,1.0,1.0,1.0,1.0,1.0,0.0005870934736681283,0.004338387683637064,0.0009867767651026206,0.0006738134146052739,0.0004155501173999056,0.00012679423421667495,0.9999995502805119,0.9999997588412022,0.9999999187333598,0.99999988036496,0.9999999821724447,1.7171220869084546e-10,1.0255718438404686e-10,9.526207472942347e-11,9.337136595428466e-11,2.7647826924086836e-11,0.9996611944712724,0.9997656212012791,0.9997601302566779,0.9998133238326765,0.9999995169337412,0.9999998602345022,0.9999999769837647,0.9999976775219701,0.9999960753252671,0.007527520316696268,3.5568266573834617e-05,0.47898114969818956,1.88534945043025e-13,1.0845466605429323e-13,1.315540863805744e-13,8.773731924040896e-14,1.1868602999435559e-13,5.817178626074444e-13,7.534507476835025e-13,7.176382524788039e-13,7.245695873417419e-13,0.9997803553309735,0.9204066898550906,0.9998484012514146,0.8657700583889185,0.9997976055211606,0.9999999885854097,0.9999999919598014,0.9999999998288536,0.9999999997278379,0.999999595134212,0.9999994019914077,0.999997780315342,0.9999829702133861,0.9999923348220978 -pieza,shape,0.999997579326647,0.9999920543954145,0.9999999152839484,0.9999991406955565,0.9999051385524752,0.983226298994313,0.999998500273417,0.9993224899704182,0.9999603513429779,0.9999969775042662,0.9999974688804895,0.007681098741450492,0.999937779843276,0.9996509657891409,5.462623586670164e-05,0.0021430411884853797,0.005711623229396872,0.00802891049127611,0.6694471700079119,0.9997115671920986,0.999846256162268,0.9998704392755158,0.9999887876941129,0.9996677476899826,0.9999921741462111,0.999903686237242,0.9999201216975205,0.9970168572707447,0.9985669700105434,0.014749048400807062,0.007494930357237293,0.012197821191134633,0.002134799091617979,0.8861415164753603,0.9999898476662303,0.9744254959648387,0.9985661101974214,0.21720324960053017,0.9984867101703636,0.9402052447168371,0.9253441739665266,0.13975339162846487,0.7209610031223705,0.9995463199445704,0.9925795258989962,0.053627829276766875,0.08969215448853997,0.004322294163246275,0.0006116686128060427,0.9693042033566277,0.9885893445647265,0.999608440810876,0.8989477706416841,0.9579661365384521,0.005328572755626513,0.244387354140518,0.027468379986393735,0.9694428749710835,0.7464785144069597,0.9983953013505049,0.9942194923129535,0.9997847746353614,3.386361522225897e-05,0.005381792276552394,1.565064100746551e-07,0.0014103895499719202,0.006497775979644897,0.9960795014529514,0.9993486497026404,0.993270597031626,0.9889766087547908,0.0007559899344271049,3.837670980737939e-06,0.0005172404852154362,1.764305962251998e-05,0.9999858644853082,0.9999988040642903,0.9999995928161814,0.999999943275684,0.9999669128955035 -pieza,object,0.9999854051527617,0.9999728480479624,0.9999999009653477,0.9999917130150108,0.99983247069801,0.5081848191070117,0.9998438368140571,0.9259289280310375,0.9891532528625729,0.9992861058472238,0.9991106489631247,8.765870444122238e-05,0.9184830851411391,0.9259278598330032,4.0027859117399174e-06,3.300194728971317e-05,9.956388331252358e-05,0.00030015056273420863,0.029442104244497745,0.9998352556542445,0.9998771180890822,0.9999132351933568,0.999986515151459,0.9996078458349406,0.9999987641200425,0.9999793262800493,0.999972419611032,0.9990978152328506,0.9989201800919212,0.0031783698297585335,0.004461467437773248,0.004217894820314959,0.0011766999149595279,0.6128547245143906,0.9999129701857203,0.9660836370949352,0.9972985893277637,0.25413860731916077,0.9915444796629705,0.9066427560209384,0.12789677111089115,0.0036639958110520764,0.04350807995407948,0.9628378440722258,0.7661346492124701,0.12892173837101026,0.14945479001963538,0.010467642324489292,0.002316890836109786,0.9936382160200254,0.9977567957893487,0.9999202485923033,0.9838677876611874,0.9900768869378596,0.0021899046013176657,0.060947108863761194,0.024726656052067853,0.326713688882638,0.05952696159845693,0.8997715226573494,0.5754050494401578,0.9814771992134432,8.732856961969828e-07,5.835716274696741e-05,4.661757777287807e-09,2.8248539283039507e-05,0.015857253464999714,0.9935212374833425,0.9993699911923218,0.9946407898808189,0.9932604163361973,0.00039204114187584867,4.680025230522486e-06,0.0006083537099260685,4.2723414170217136e-05,0.9999891472835308,0.999998818074383,0.9999983379163583,0.9999994392049806,0.9999554310563937 -plano,rgb,0.9998282547558017,0.9999926896714013,0.9999125803058667,0.9986582603096662,0.999903840525472,3.016604095895297e-08,3.0523565989481417e-06,1.3163610312967125e-12,2.24238658112131e-14,1.2544834039556569e-14,1.5726082235354806e-13,1.7942288655619826e-14,9.583537849462039e-15,8.16618667338954e-15,2.886852893658763e-12,3.1673864115785445e-12,3.4257400685996944e-12,3.6760328926354645e-12,2.9374416689454287e-12,0.9999992324621518,0.9999950017988869,0.9999936070446837,0.9999418507601493,0.9990776740267061,0.9999996077312607,0.9999995173814853,0.9999991803275357,0.9999985797484957,0.9995937358584785,0.0022228966403054617,0.020778551952415698,0.004204506288830619,0.0032061948179937672,0.002023473942540202,0.000682972337707438,6.472670964328208e-10,1.2870973051901836e-09,1.0726323965365458e-09,1.3960733820164369e-09,4.1997092744662765e-09,5.420453813112882e-11,2.1822442861456308e-11,2.797208989201223e-11,4.012983507385844e-11,1.0483610304197955e-11,0.9634075633605247,0.9636501081701077,0.9623130503643057,0.9565671436736991,0.9999995564329331,0.9999998257624555,0.9999999572630804,0.9999982909084291,0.9999972762600773,4.936409295485476e-05,2.744416401742589e-07,0.001079658670541182,1.4384169359073221e-16,8.371374911571816e-17,1.8576779382652954e-17,2.3746043011827384e-17,1.5978750608427896e-17,1.4166808114623608e-15,1.1351120600742575e-15,3.6644976048156903e-16,3.732287718504323e-16,0.9992102756499625,0.9187500830527509,0.999338635590296,0.871887280730915,0.9990846914405093,2.8831851385952175e-06,2.7967816799778587e-06,1.8084823045802496e-05,1.0270482825909245e-05,0.999963976261434,0.9999587911762751,0.9998967960680496,0.9989313526912733,0.9996322452929507 -plano,shape,0.9998550490762392,0.999855447705634,0.9999312310741539,0.9999455283902086,0.9998513371152882,4.385291839270058e-05,0.9868343468852055,0.0020393080743651842,0.00048681565426824785,0.9997312914126578,0.9183307199300751,4.569490489582237e-06,0.006563646281714118,0.006122658350661881,1.7973161404738372e-06,0.0006339334952414917,0.0002448594518285155,0.3095489099262428,0.945286715901073,0.2262810513489162,0.973229368470756,0.9964055241360643,0.9948379338734854,0.8397005408726775,0.9997083946181369,0.5991240300617008,0.9766562096746839,0.9321768164789944,0.6018944612353407,1.3282266380543485e-05,0.030293543710436754,0.0025732663899084786,0.002221083010947716,0.9956042772892233,0.951501693226035,0.8699346307901772,0.9219558300112966,0.01747862053992743,0.06897278707290487,0.0011275949202014255,0.0032372070948231105,2.6733682525785967e-05,3.2365098659707615e-06,0.001333740855343289,0.1719862607988448,4.92570831854763e-05,4.557834471958907e-05,4.44151232225866e-05,2.283263988323769e-05,0.27139710688795754,0.4341639033149769,0.6810385663494847,0.21727251098873165,0.8007745122639602,4.695618169911481e-06,0.0006142732186633567,5.361198186798039e-05,0.08709686414028124,0.0232463367701541,0.46386839910238,0.09279798097146628,0.7989243225422019,1.114416872507714e-07,2.8264759148700846e-06,1.9441181588779596e-08,5.455860473623639e-06,0.0002914235876637209,0.8998891924868314,0.8592107948823028,0.37976431018165874,0.3528641428971665,2.4024234823343633e-07,2.548936642672599e-08,8.884958302442884e-08,2.794728711291778e-07,0.9819276175598716,0.7994085602459977,0.9977925860065603,0.9883641176124796,0.9965811151528411 -plano,object,0.9999652133235469,0.9999302839092309,0.9999925890156655,0.9999963456160764,0.999852240219427,1.0905157914212825e-09,0.012625636356095805,0.0033566835797951026,0.00014062249742781828,0.877876026475896,0.6550607617196159,1.1583820130188249e-07,3.259209517151291e-07,1.6235348951380547e-05,5.409344369445488e-08,7.486471464772467e-07,6.607814189574702e-07,3.2002339406274884e-05,0.00041845301592933055,0.9989822585233623,0.9999903647585403,0.9999988912420693,0.9999966258469046,0.9992428624689643,0.9999999686037905,0.9999977966220744,0.9999997701936951,0.9999996453606618,0.9999993007925954,4.145435005961129e-05,0.0011213701605161553,0.00030139161306112197,0.0007710632334387931,0.035292639104704135,0.8631887368860832,5.079606545561589e-05,2.912016229693296e-05,1.0513663507107468e-10,2.1148393087384718e-10,2.8037945106078805e-10,0.00031017275943651974,2.6908944885455056e-05,1.8868390457846597e-05,0.0020936133193469185,0.00012055599611671047,6.661922984121681e-05,4.310460711239784e-05,0.00010916339593269689,7.289004387194177e-05,0.8780688936484714,0.9585178684430525,0.9766885732463898,0.8944613303613791,0.9682859303785072,6.71105274052529e-06,1.7921360254777453e-06,2.4543343643384097e-06,0.0019239996718593614,0.00041901542537910896,0.003264435344553327,0.0004407684584555773,0.0007776192249822004,1.8156275488229673e-07,7.614258504681769e-07,2.19874571047449e-07,1.5436840385315615e-06,0.004294517905805316,0.040453328997813925,0.02611231572995811,0.13029193847487291,0.3675084710665016,1.6401451301063207e-08,2.0922626087755504e-09,4.503456710955713e-09,4.803707899616066e-08,0.9994269509706647,0.9098326720712658,0.999911337061586,0.5977392520215447,0.9996693676598348 -platano,rgb,0.9999797295438488,0.999999427707233,0.9999979035377216,0.9999995656785131,0.9999999636897501,0.9999603417112478,0.999999360440466,2.7425427362969804e-05,8.692878058897054e-08,3.489356154973046e-08,1.3676640817233427e-05,0.004636675817149158,0.002927353236910955,0.0023775970939800693,0.006087364442998904,0.0077911428200788556,0.009512481161124678,0.011315683367976517,0.0087501610952009,0.9999999889099424,0.9999999702209303,0.9999999757334902,0.9999999770738003,0.9999997451931085,2.990992575645822e-13,6.61975353358202e-13,5.715116299154566e-13,8.897971061063075e-13,2.8582197671939537e-12,0.9999954643199342,0.9999994771078263,0.999997740781244,0.9999977985751524,0.9999970664280246,0.9999948323880762,1.4118652086184037e-07,2.8180473509350595e-07,8.048871369635307e-08,1.7928524162472723e-07,2.4944481744969984e-07,0.09819357750317743,0.037547536991114155,0.06765522856289094,0.13680037460192415,0.06973385847813446,0.9999999999780431,0.9999999999750888,0.999999999974317,0.9999999999669922,0.9999999999999132,0.999999999999962,0.9999999999999849,0.999999999999857,0.9999999999998348,0.9999996992996889,0.999984329614526,0.9999999341987867,4.252288324085893e-07,5.460807407536694e-07,6.590467026855141e-08,2.661886840851399e-07,2.776865940168554e-07,0.0006759756318727514,0.0004510771454816398,7.600751960740465e-05,7.807704564034352e-05,0.9999999999991032,0.9999999999846545,0.9999999999991882,0.9999999999789897,0.9999999999990155,0.011592860215085416,0.008387961096903816,0.008467464928575629,0.004843998364134758,0.9999997464342104,0.9999998065221175,0.9999997793429932,0.9999979479610603,0.9999993834777814 -platano,shape,0.6136659227289653,0.0005873801827943812,7.559789535032618e-05,0.999804075825861,0.9969786728412043,0.9998745073333841,0.9999771732877575,0.011272943151351727,0.0004424450050846348,1.2788673471508753e-05,0.00708906609726891,0.015712776459081146,0.9999646745784716,0.00042604938608541674,0.011063641435913317,0.019355701025073217,0.03174515363322472,3.080643026623035e-05,0.0035533824964934695,1.346143591280123e-05,1.508007267966794e-05,5.361959737976576e-05,2.21505560326101e-05,3.4414932718234604e-05,2.692644473806941e-06,5.997601545091998e-06,0.006246890151446795,0.00047061691863078573,0.0001867518377400407,0.9867470889517812,0.2427694309429487,0.6233373870864933,0.004421568561948967,0.0005178646587639545,7.867654510869038e-05,0.008682369692899995,0.0004705395948585018,2.405811875716196e-06,0.0058317270540350465,1.4553570019618315e-05,0.08446034789922015,0.0058961177755631825,0.002493321831103965,0.9163163947935534,0.0003954148385531366,2.8917946839783872e-05,5.423078152508712e-05,0.0001527639654802378,0.00023360220979874317,3.610018542267574e-06,8.565651151138085e-06,2.66197574899794e-05,1.2715214883340432e-06,3.073509599574744e-06,0.0008602035142896487,6.734252068171218e-05,1.8119166254345262e-05,7.62045651918468e-07,2.7228531498412635e-07,1.8405259864988628e-06,3.7801953665441346e-06,1.51171454885316e-06,0.06357653942292253,0.002731053475535778,0.009825604574309987,0.011385976155292608,0.015278138895458353,0.00017571674067825405,2.2117437187541765e-05,7.501518155517508e-05,0.0010262687060702525,0.058261596844627235,0.0006002704355101948,0.0001832080581289667,0.0009708296530620662,5.9902038223881475e-05,0.019460706243462612,0.04007645830003632,8.338271442474699e-05,0.0002223805472980153 -platano,object,0.993068134044905,0.9792128550938052,0.9817368677123833,0.9999982938884933,0.999993763403356,0.9999630716694607,0.9999929055764406,0.0013173060358746783,6.169894986822015e-06,5.644423302857516e-06,0.0010047316737956358,0.7874091948920954,0.9651776610670527,0.008203244657383443,0.6423928869083911,0.5002507191292723,0.577948640813202,0.3617674224910471,0.15995285294723013,0.9919985524167036,0.9765640538958975,0.9949973968557596,0.9907586979853946,0.9962850661954167,1.778530425477415e-07,1.6719407427347704e-07,5.13681590398743e-06,5.685850684247311e-06,4.304810972859592e-06,0.9999634443253841,0.9999627869094784,0.9999226112652582,0.999737364267856,0.9987865577035591,0.9875108629922221,0.0001011924011420858,4.2527113225475146e-05,1.2470660544552318e-05,0.0006423671451575933,1.6270075257482993e-05,0.982416435191099,0.8940281989581498,0.8177129944571635,0.96840836887481,0.5927528774864892,0.998974787549154,0.9984892591006616,0.9987428984796803,0.9983768392700748,0.999828049280892,0.9998863457396681,0.9999562917308352,0.9992433423485211,0.9992744390868398,0.9445732134188993,0.7161542283293487,0.899635403840011,6.515346750268962e-06,9.865390426380986e-06,1.6018720915865587e-05,1.645483055848381e-05,1.2923665455436216e-05,0.03850148115783615,0.0013520152360459057,0.0005115667921434893,0.004517070987546983,0.9999396607611173,0.9996750009809441,0.9999627253835441,0.9998117119015015,0.9999665129548233,0.000627469049224684,0.00011718019294165952,8.941825908860134e-05,0.00021588743566204873,0.9979912372886612,0.9999538209554505,0.9999272306449333,0.9997894089202966,0.9993632364056233 -plátano,rgb,0.9999797295438488,0.999999427707233,0.9999979035377216,0.9999995656785131,0.9999999636897501,0.9999603417112478,0.999999360440466,2.7425427362969804e-05,8.692878058897054e-08,3.489356154973046e-08,1.3676640817233427e-05,0.004636675817149158,0.002927353236910955,0.0023775970939800693,0.006087364442998904,0.0077911428200788556,0.009512481161124678,0.011315683367976517,0.0087501610952009,0.9999999889099424,0.9999999702209303,0.9999999757334902,0.9999999770738003,0.9999997451931085,2.990992575645822e-13,6.61975353358202e-13,5.715116299154566e-13,8.897971061063075e-13,2.8582197671939537e-12,0.9999954643199342,0.9999994771078263,0.999997740781244,0.9999977985751524,0.9999970664280246,0.9999948323880762,1.4118652086184037e-07,2.8180473509350595e-07,8.048871369635307e-08,1.7928524162472723e-07,2.4944481744969984e-07,0.09819357750317743,0.037547536991114155,0.06765522856289094,0.13680037460192415,0.06973385847813446,0.9999999999780431,0.9999999999750888,0.999999999974317,0.9999999999669922,0.9999999999999132,0.999999999999962,0.9999999999999849,0.999999999999857,0.9999999999998348,0.9999996992996889,0.999984329614526,0.9999999341987867,4.252288324085893e-07,5.460807407536694e-07,6.590467026855141e-08,2.661886840851399e-07,2.776865940168554e-07,0.0006759756318727514,0.0004510771454816398,7.600751960740465e-05,7.807704564034352e-05,0.9999999999991032,0.9999999999846545,0.9999999999991882,0.9999999999789897,0.9999999999990155,0.011592860215085416,0.008387961096903816,0.008467464928575629,0.004843998364134758,0.9999997464342104,0.9999998065221175,0.9999997793429932,0.9999979479610603,0.9999993834777814 -plátano,shape,0.6136659227289653,0.0005873801827943812,7.559789535032618e-05,0.999804075825861,0.9969786728412043,0.9998745073333841,0.9999771732877575,0.011272943151351727,0.0004424450050846348,1.2788673471508753e-05,0.00708906609726891,0.015712776459081146,0.9999646745784716,0.00042604938608541674,0.011063641435913317,0.019355701025073217,0.03174515363322472,3.080643026623035e-05,0.0035533824964934695,1.346143591280123e-05,1.508007267966794e-05,5.361959737976576e-05,2.21505560326101e-05,3.4414932718234604e-05,2.692644473806941e-06,5.997601545091998e-06,0.006246890151446795,0.00047061691863078573,0.0001867518377400407,0.9867470889517812,0.2427694309429487,0.6233373870864933,0.004421568561948967,0.0005178646587639545,7.867654510869038e-05,0.008682369692899995,0.0004705395948585018,2.405811875716196e-06,0.0058317270540350465,1.4553570019618315e-05,0.08446034789922015,0.0058961177755631825,0.002493321831103965,0.9163163947935534,0.0003954148385531366,2.8917946839783872e-05,5.423078152508712e-05,0.0001527639654802378,0.00023360220979874317,3.610018542267574e-06,8.565651151138085e-06,2.66197574899794e-05,1.2715214883340432e-06,3.073509599574744e-06,0.0008602035142896487,6.734252068171218e-05,1.8119166254345262e-05,7.62045651918468e-07,2.7228531498412635e-07,1.8405259864988628e-06,3.7801953665441346e-06,1.51171454885316e-06,0.06357653942292253,0.002731053475535778,0.009825604574309987,0.011385976155292608,0.015278138895458353,0.00017571674067825405,2.2117437187541765e-05,7.501518155517508e-05,0.0010262687060702525,0.058261596844627235,0.0006002704355101948,0.0001832080581289667,0.0009708296530620662,5.9902038223881475e-05,0.019460706243462612,0.04007645830003632,8.338271442474699e-05,0.0002223805472980153 -plátano,object,0.993068134044905,0.9792128550938052,0.9817368677123833,0.9999982938884933,0.999993763403356,0.9999630716694607,0.9999929055764406,0.0013173060358746783,6.169894986822015e-06,5.644423302857516e-06,0.0010047316737956358,0.7874091948920954,0.9651776610670527,0.008203244657383443,0.6423928869083911,0.5002507191292723,0.577948640813202,0.3617674224910471,0.15995285294723013,0.9919985524167036,0.9765640538958975,0.9949973968557596,0.9907586979853946,0.9962850661954167,1.778530425477415e-07,1.6719407427347704e-07,5.13681590398743e-06,5.685850684247311e-06,4.304810972859592e-06,0.9999634443253841,0.9999627869094784,0.9999226112652582,0.999737364267856,0.9987865577035591,0.9875108629922221,0.0001011924011420858,4.2527113225475146e-05,1.2470660544552318e-05,0.0006423671451575933,1.6270075257482993e-05,0.982416435191099,0.8940281989581498,0.8177129944571635,0.96840836887481,0.5927528774864892,0.998974787549154,0.9984892591006616,0.9987428984796803,0.9983768392700748,0.999828049280892,0.9998863457396681,0.9999562917308352,0.9992433423485211,0.9992744390868398,0.9445732134188993,0.7161542283293487,0.899635403840011,6.515346750268962e-06,9.865390426380986e-06,1.6018720915865587e-05,1.645483055848381e-05,1.2923665455436216e-05,0.03850148115783615,0.0013520152360459057,0.0005115667921434893,0.004517070987546983,0.9999396607611173,0.9996750009809441,0.9999627253835441,0.9998117119015015,0.9999665129548233,0.000627469049224684,0.00011718019294165952,8.941825908860134e-05,0.00021588743566204873,0.9979912372886612,0.9999538209554505,0.9999272306449333,0.9997894089202966,0.9993632364056233 -por,rgb,3.222702119261718e-13,3.216622731910144e-15,3.8164712227892514e-14,6.805156605779519e-14,2.3043600208721333e-15,0.0003349295572953603,1.6481363664356455e-06,0.9999951748597913,0.9999999985286536,0.9999999995879134,0.9999995097001811,0.9999981324513255,0.9999993638698116,0.9999995250300868,0.9994657460938846,0.9993145495028625,0.9991595435618311,0.9989949343333356,0.9993072329328703,4.8133362127113484e-17,3.0624967358485814e-16,3.1063319045194847e-16,1.2270268810196531e-15,3.7018602800797364e-14,0.9972551462904442,0.9941509599216197,0.9961657281095463,0.9953025567105273,0.9990661175408311,2.1832538697721315e-09,1.1831772558847486e-10,9.066902004395085e-10,1.1070269940661023e-09,1.8558250014756938e-09,5.947783284778036e-09,0.9999999999999973,0.9999999999999938,0.9999999999999987,0.9999999999999962,0.9999999999999938,0.9553314902498241,0.9892795368315419,0.9801608328290622,0.9561584563943488,0.9914679851777363,6.820284389315662e-12,9.572024050261311e-12,1.0139495686830137e-11,1.7676461188749397e-11,1.5750857165458784e-19,6.922811358314471e-20,1.94691861749541e-20,6.004436209402394e-19,9.674037298390963e-19,4.714555136831697e-05,0.017638638635811325,6.586370025347971e-06,0.9999999999610083,0.99999999997805,0.9999999999992859,0.999999999998084,0.9999999999993556,0.9999999974017362,0.9999999987427055,0.9999999998867224,0.999999999883197,2.8702739405019992e-15,2.144261565842793e-13,2.797412323529419e-15,3.6072601597133977e-13,4.222137873211457e-15,0.9999999940050364,0.9999999960366319,0.9999999949734502,0.9999999976722223,4.729074933496549e-15,4.24237360727429e-15,8.28105941599678e-15,1.7700375041467116e-13,3.814500036010082e-14 -por,shape,0.1246561975602604,3.965235627184338e-05,0.0005813946086991117,2.827452893317762e-06,2.478665771162863e-06,0.0009512187922562986,1.6985807000490583e-05,0.9999976418789643,0.9999999617970133,0.9999919339306371,0.9998790062120286,0.00038552151003111874,0.0030497149330275257,3.140310242276626e-05,0.00013385556896832067,0.0010329108122099247,0.000642218128357123,7.122787733880102e-05,0.00028588228537477773,4.233674784857532e-05,0.0005351367169868307,3.947542631002691e-05,6.93310077963748e-05,6.04755138667393e-08,1.928206055400555e-05,0.00038675462242633384,1.7769177041807256e-05,2.459722815695643e-06,7.199733030157304e-07,0.0004144414773772749,5.100728723223924e-05,0.0002199318997225719,1.540797916833315e-05,0.00019125532377529806,1.0445777572517419e-05,3.2969668645299703e-06,4.93130309347089e-06,8.56274280097217e-07,8.473070637342526e-07,1.084895100123001e-07,1.7911316240165122e-07,2.8809136298364665e-07,1.1972695607437627e-07,2.618143160580334e-05,0.0036125010468481804,2.918538768468621e-08,6.371377655722827e-08,5.1404782134172096e-08,7.676409624742034e-08,3.6146264277410902e-06,2.232755219753372e-06,3.70783705630176e-06,3.6621320526255074e-06,5.940058584382901e-06,2.9859276447682295e-07,1.4676924785039088e-07,3.681738541712401e-08,0.0010532738120575744,0.00048176473797203583,1.277767968405254e-05,7.519089476585591e-05,1.562121061853316e-05,1.1115085411558787e-06,1.5212850010396169e-06,9.360781205369067e-06,1.134189986475191e-06,0.00010907600606383677,8.674210759081427e-06,2.0603811084162463e-06,6.361748943244741e-07,8.164074183131459e-07,8.623344796769451e-06,5.840261575738235e-06,2.911904565104094e-06,7.084162822283831e-07,0.0008469925074425294,1.5022918311515044e-07,2.2096739371948214e-06,6.404081902089679e-07,4.071203164186462e-06 -por,object,0.006752361515652407,2.6272908639770845e-06,3.2580445395067084e-05,1.452898616901117e-07,1.6227028924661436e-07,0.00305101239603886,7.624528594303392e-06,0.9999984731864341,0.9999999697451012,0.9999978569740595,0.9999329513331142,0.005042466551253059,0.026564114415914417,0.0008327668086149455,0.0008126556864212846,0.00724876222809752,0.004362935496160967,0.0005717029978787221,0.003037589569643754,4.441677283172859e-06,5.232778307447209e-05,3.6996253884081525e-06,7.97403510153952e-06,2.3696664835030086e-08,0.0002588667607586401,0.0030772883885973987,0.00010589337546712936,2.499124944194005e-05,1.0194837864038308e-05,5.630171217067114e-05,7.250272051965885e-06,3.586756437621059e-05,4.9062276553232055e-06,5.4059737194855906e-05,5.677348080295559e-06,0.008416332024573061,0.010502077801425515,0.005890536015066674,0.004516360393680341,0.000945631292940659,5.681394347835805e-06,9.952160145869192e-06,3.6665182350795535e-06,0.0004003986841053711,0.022196010078024138,6.217931685500957e-08,1.1890412519339548e-07,1.0428234754658387e-07,1.6757936414166596e-07,3.083793879169847e-07,2.1422560965767626e-07,3.8224625701891933e-07,4.52047609750607e-07,7.53549586850082e-07,3.6108227782432916e-06,2.8299702876706836e-06,5.698238536527408e-07,0.14259387819914876,0.08717252522952923,0.006588909730495746,0.03542876353983226,0.011589921223517173,0.000162160130711397,0.0002321794938935948,0.0014060787062935497,0.0002655437570710708,1.3715122157129272e-05,3.1205162094898136e-06,1.123736705136049e-06,6.571093824566523e-07,4.797954243065825e-07,0.00431319576186404,0.0026964646813677586,0.0019450803279322869,0.0008508118569680873,2.549305777451207e-05,1.7606618033713315e-08,1.4701791237245457e-07,5.4176273025022636e-08,2.84507440547006e-07 -prisma,rgb,0.9999999998877616,0.9999999999863491,0.9999999996650593,0.9999997796868191,0.9999999787053004,1.8397648084184395e-09,1.9612733115879475e-07,9.529341325595858e-09,5.636692695337838e-09,5.971017376684977e-09,5.906490381873861e-10,1.1939752944744242e-13,8.052577111151561e-14,7.670176884381745e-14,1.4241641467442886e-10,1.3028788546204922e-10,1.2194448851205665e-10,1.1558085903530806e-10,1.0341124723739064e-10,0.999999999988739,0.9999999998724955,0.9999999997579427,0.9999999866085183,0.9999998114915272,1.0,1.0,1.0,1.0,1.0,0.008897617859684657,0.060116838866095555,0.01430725985807107,0.00891578599092065,0.005262462204939601,0.0013840458385733674,0.9999996787609055,0.999999822326084,0.9999999508109185,0.9999999194319473,0.9999999890112016,1.039987742040322e-09,6.29958285910295e-10,5.232604690717427e-10,4.5170297800070905e-10,1.0642354343294905e-10,0.9992078178308283,0.9994348992694132,0.9994190030775026,0.9995273108364027,0.9999999580874914,0.9999999867115095,0.9999999978891443,0.9999997382002456,0.9999995070886623,0.0012353731698654976,4.724605899500728e-06,0.14240537174527146,4.653113851129698e-13,1.902396745475668e-13,2.1976830006666163e-13,9.821845479128931e-14,9.212581500136105e-14,1.4457398972160418e-13,1.8315373920186546e-13,1.94082164429833e-13,1.9535834667002944e-13,0.9998034901171857,0.9087256992991267,0.9998609777249444,0.8422337031265924,0.9998046189390293,0.9999999829654728,0.9999999885342213,0.9999999998103832,0.9999999997012996,0.9999999994446733,0.9999999990758717,0.9999999957484202,0.9999999682028705,0.9999999847102905 -prisma,shape,0.9998435131471648,0.9999472818453341,0.9999951396989264,0.9999214404621105,0.9999439638094084,0.09336769229901559,0.9990409802850369,5.590288597842368e-06,2.553195831471094e-07,0.631387119820528,0.0011926772234086083,0.6675466127964275,0.6102279073751573,0.9677461442624137,3.958710472527889e-06,0.01032236605385455,0.0031116815268546908,0.9048596130683596,0.9746058773294504,0.014483767923298328,0.04523272300274111,0.9937095494858403,0.9867563495809014,0.9955969865466946,0.9999872733615457,0.9996370091834059,0.9996930056759818,0.9999603649959563,0.999909837259106,0.0005726987611990551,0.09222636181245125,0.0036086995480006916,0.16981217588352876,0.9999416514800377,0.9996356190943398,0.9997921884059184,0.9999723180277007,0.7288865319045038,0.01621682700657115,0.9726986534698822,0.00821790687492246,5.719915509682361e-06,4.309478032841446e-07,1.630690667876408e-05,0.004796221341442713,0.013115575116486354,0.00035411452850358686,8.260195034773424e-05,0.00014722223027751756,0.03275332248211225,0.05290744560928056,0.11977858162845702,0.006056995067641555,0.014384411645970355,0.0005031600078614549,0.00614308891448542,0.00034784740795026686,1.596853550558191e-05,2.1609908055596186e-07,0.5762699461884423,0.0031157327986270768,0.0008786800368602995,1.4858535515308503e-05,3.0500233821814246e-05,5.120895827276723e-09,0.0013855697523890936,0.9993925402021331,0.999725024575766,0.999969971139065,0.9992061742891082,0.9992219528049453,3.6846331955246104e-06,1.911130791983129e-09,1.2053816136334397e-06,7.310092375932239e-07,0.9998960806457625,0.9999701929027214,0.9997166505951012,0.9996904003516008,0.9999436209460811 -prisma,object,0.9998108880682984,0.9998174614811776,0.999974079910971,0.9998277513557986,0.999813461570873,0.007695772831031644,0.9033292067427123,1.6001811484320065e-06,5.059185688821075e-07,0.01823909125777035,0.00011006159441294076,6.756592932938539e-05,0.001086715276543795,0.004268388370509961,1.3623273271851836e-07,1.368717647370971e-05,1.2097662890797864e-05,0.0016954652620643448,0.010759362741707749,0.7027917961732729,0.91593769173837,0.9985582710076011,0.9985658372000971,0.9962118559105867,0.999999356530732,0.9999252267752864,0.9999730670364254,0.9999931242400257,0.9999541354894209,0.00016092272431376885,0.011957643384127472,0.0007075832186137935,0.027662957156504898,0.9721085386104868,0.9894720614838923,0.9957658958832897,0.9995287877178215,0.8941720619477856,0.16270894685445614,0.9664383985165707,3.92649537183821e-05,7.32147855861509e-07,1.1499989515359598e-06,8.057563561589172e-06,0.00021357855780854533,0.3739147676786824,0.03896641005444191,0.007213386042040384,0.007958512414310625,0.8828533555286436,0.956316137496037,0.9907912881508448,0.8478602204219791,0.8946412446750566,0.0016818294379459565,0.006936235174742169,0.010588825118337218,2.4661156515829443e-06,2.0072826235521583e-07,0.003924616781101909,3.830664977078598e-05,0.000250164144474936,3.329744895132461e-08,1.1849591918284166e-06,1.9941136502188494e-10,3.7937746368805707e-06,0.999464496061177,0.9997182964553006,0.9999706678404594,0.9994191031595692,0.999578215433983,0.00011790573417105559,5.132797409371117e-06,0.0006986227544662193,0.0001693138704983823,0.9999729445238513,0.9999518964641464,0.9998377936892967,0.9998143488269915,0.9999368894197515 -púrpura,rgb,6.575943156198646e-07,2.4745414035213705e-08,1.410405723492626e-07,1.5586842892293027e-07,1.2220419783216468e-08,0.0003622989758314312,3.030551379091478e-06,0.9998965829989038,0.9999971629455513,0.9999983067905746,0.999952215583118,0.9969266875429896,0.9973885753719285,0.997738374800927,0.9974272807284912,0.9969464516075742,0.9964872592562045,0.9960278387985505,0.9967328850788385,9.395035088298712e-10,3.5922231808087373e-09,3.464917503703267e-09,7.536439943664939e-09,9.714927579789369e-08,0.05950281598204263,0.05525924296055678,0.07341339255187633,0.08621489530533477,0.5462800331007829,3.964831918178832e-05,4.366129356159143e-06,1.9987498147476543e-05,2.081109909140787e-05,2.8865361182107818e-05,5.6870052774905684e-05,1.0040844524429452e-05,4.866844480532357e-06,6.925854972507644e-06,4.831799784158743e-06,1.7094848949730494e-06,0.9754142704877513,0.9888954691199459,0.9827967072821028,0.9697936228955744,0.9842647384705355,9.566525532958846e-14,7.991277138012774e-14,8.156376304256252e-14,7.556827198727582e-14,3.029729273006193e-14,8.991593987355098e-15,2.303469244301096e-15,5.966580793296587e-14,7.170653027628001e-14,2.341085139093109e-09,2.1205882834294952e-07,1.00423968627518e-10,0.9999946343255913,0.9999923124945626,0.9999968081160423,0.999990393064288,0.9999797042291556,0.9866335422041314,0.9870325288241538,0.9955634444432669,0.9954594982675787,6.794678187272888e-14,4.480010036572432e-12,5.1100564612693546e-14,6.724295086439091e-12,6.060015529609414e-14,1.5870205753510339e-09,1.6643310484233008e-09,3.1692473632270536e-10,5.448894683595988e-10,2.8720357554571962e-08,2.566407252271388e-08,3.9455339779072526e-08,3.691930030314857e-07,1.19596239030749e-07 -púrpura,shape,0.1915677573669671,4.573651758106422e-05,0.00036533850687363523,2.770049061001325e-07,1.0416475164520584e-06,0.00021287140232735644,8.59833429814407e-07,0.9999978111083938,0.9999999512715855,0.9999927330944184,0.9998529341729878,0.00010758195261060054,0.00026258549543511483,7.584323127606257e-06,3.5713863773459824e-05,0.00020072328588394115,0.00010973912151664982,1.7659424197741547e-05,0.0001397077904566011,5.5444179273144134e-05,0.0007102964546187652,4.674883375282099e-05,8.582078566048059e-05,4.7889993142237434e-08,2.1430490360266027e-05,0.0004635324752653231,1.1844348487211695e-05,1.6958168045767175e-06,5.687010546591713e-07,8.701280987387266e-05,1.96667828320942e-05,6.861396282311418e-05,7.802753508564544e-06,4.0203552467881035e-05,5.437888185405689e-06,7.632700186300113e-07,1.1116485752110694e-06,2.524173832797161e-07,1.4350912344135868e-07,3.985144165078537e-08,1.3457314792424233e-07,2.2509402123506584e-07,8.248162442103121e-08,1.4814327786741862e-05,0.0020221358678403495,1.4333246966190757e-08,2.5868949853123225e-08,2.5973642164800067e-08,4.594043088375321e-08,2.6790938676357433e-06,1.740897109689575e-06,3.4052373575594148e-06,3.122843653270974e-06,6.240171145182863e-06,1.7528233958648268e-07,5.4936096936565727e-08,2.186000048584871e-08,0.0015409100147349255,0.000603938714215774,1.7908715695358746e-05,0.00014426043931379617,1.6372706551248866e-05,6.459563566217149e-07,7.017775734416084e-07,5.560404759383598e-06,6.136477123830187e-07,6.7287038517434e-05,3.9528446711236495e-06,1.2883118150914404e-06,4.4558770702259265e-07,6.022949813326466e-07,4.221249649470292e-06,2.4530413560828493e-06,9.530783085431539e-07,3.813147891657923e-07,0.00019317145095344943,4.045335503198338e-08,5.809571476379876e-07,4.7134935160804726e-08,1.0765447865362443e-06 -púrpura,object,0.014888878907422668,4.200461743010153e-06,3.400319137548716e-05,7.369738155336982e-08,2.2366195638698946e-07,0.0001585475023229419,4.998964205765134e-07,0.9999980687980584,0.9999999533097943,0.9999970950132557,0.9999072464167054,0.0006312084425280683,0.000997716654229809,4.207583074218631e-05,0.00014666290538035352,0.000526121277114303,0.00030439849660694106,7.183544356516776e-05,0.0005898813532132523,1.7269738131053326e-05,0.00021451410698156872,1.2738953835876748e-05,2.5514241767251154e-05,3.3550199258882074e-08,0.0003025556174672235,0.005697042754000653,0.00016455629521541312,2.9013367525887004e-05,1.0679130683586267e-05,2.3774621399779766e-05,6.072054846387532e-06,2.0272257977496877e-05,4.808245587364279e-06,1.3281300330939702e-05,3.5834523132746977e-06,3.631953904222742e-05,4.563440312711177e-05,3.348547294107804e-05,1.7157355951588746e-05,5.164003391530923e-06,1.2986059651345392e-06,2.2465157454345667e-06,7.579781983372199e-07,9.993863244981251e-05,0.006543973186796727,1.0661071216858617e-08,1.9055984033542383e-08,2.016891060637632e-08,3.349624300351675e-08,2.7488194344037835e-07,2.058061890107507e-07,4.819473811981802e-07,4.198434871500981e-07,8.161500625992684e-07,4.1327176355536534e-07,2.075956691975676e-07,5.8178897999419235e-08,0.035088466893153855,0.015848990882473837,0.0010567457268740945,0.008222237902764083,0.0010291797033263783,1.4057293683607533e-05,1.693481949042267e-05,0.00011381614487269836,1.9083927167008215e-05,9.877652473298408e-06,1.1490174445045255e-06,4.454726350826807e-07,2.6033284349728414e-07,2.5098978876021077e-07,8.646256691957688e-05,5.555587075108128e-05,2.2655288086714758e-05,1.3016300436584238e-05,8.27572071833737e-06,1.7144316338033726e-08,1.293502778114367e-07,2.0966661158681785e-08,1.630207867112431e-07 -rampa,rgb,0.999993846057077,0.9999898909708343,0.9999622840579266,0.994840392629052,0.9953768537146271,7.640877320701609e-09,9.585420532471924e-09,0.0028355631447437653,0.010726399076769954,0.014038578023988845,0.00045566865913156075,2.2595641342199197e-08,1.5946454721712777e-08,1.6575506145291936e-08,1.578822724679333e-05,1.3249266854418575e-05,1.1536881749727679e-05,1.0251861233869638e-05,1.0491492828789788e-05,0.999924550709017,0.9998000394088133,0.9996638311559415,0.9955304787939429,0.9937465727557911,1.0,1.0,1.0,1.0,1.0,0.0010688019988264828,0.0011189391785914227,0.0009786155583911653,0.000681484851860204,0.000556074108643377,0.0002993078345214967,0.049034524496179344,0.047270001040918413,0.12051786369534613,0.07537351403876454,0.13753300884184955,2.0953146796771757e-05,2.2617492900452943e-05,1.4816896354831801e-05,9.19738120812968e-06,4.121454202712144e-06,4.789273836790899e-07,4.950073282183418e-07,4.885000829457958e-07,4.819290369136927e-07,0.007230889207423092,0.0067682481757407684,0.010125033373829891,0.0026084795712748286,0.0017476696914897258,6.441133339444608e-09,1.81064531483496e-09,2.251088781761135e-08,2.58205354088429e-06,8.572825871920036e-07,1.1221996737351916e-06,2.7303341835748995e-07,1.0928954022429474e-07,2.0945556704302396e-09,2.2550839980904065e-09,3.989778347151643e-09,3.949149933245105e-09,4.185230799943751e-06,7.190749262649822e-07,4.235313926958083e-06,5.867102450155193e-07,3.536887272314062e-06,0.0027607566654776513,0.0036003418712253583,0.018721146791239394,0.018721233525472294,0.999843487492434,0.9997506340569629,0.9993917338841593,0.999339352134813,0.9992144749711409 -rampa,shape,0.9999774025302776,0.9999761989615822,0.9998395763579444,0.9999449675521916,0.999845593654034,6.828813016099044e-07,0.99939783009059,0.004111737492925682,0.0009007226018787434,0.0024612230294759774,0.004938662171404784,0.0070788304019451425,0.8290609757941627,0.5921646841827822,2.1320954117216646e-05,1.2337463005938776e-06,2.2894326558305595e-06,1.0154763192449743e-05,3.942251707289656e-08,0.0005219244505907753,0.00703997247447233,0.05337363503049873,0.030771281178775485,0.0006607538068640557,0.9796984667687338,0.00097364242239778,1.3978189535149618e-05,8.947136562681005e-05,0.00032358039369879255,0.004316693810870514,0.007373869258822796,0.00105080204979164,0.0002893001858248889,3.9913500689293495e-05,0.03932623576060126,0.30951836070203725,0.13515637295252012,1.67547581299733e-05,3.508765184187716e-05,0.0006751578950683793,0.95705813570023,0.08924848955340757,0.4056706510685182,0.21314534526712628,0.3685571080606484,2.9306663278900852e-05,5.311898325097006e-06,3.7246451042020264e-05,2.8941387470239223e-05,0.0022717337685652767,0.0077967287098378016,0.0039000183834099703,0.008268377711822254,0.006155174035189475,1.1681616188656046e-05,2.0271276858054263e-05,2.2824269048899608e-05,0.004059264897627854,0.0005364644744671268,0.012411655016832512,0.00010680430263250096,0.004918338200679452,1.1422364937291355e-06,4.905661927854786e-06,2.7528894521613894e-07,2.9375658987477948e-05,5.01719105783443e-08,1.9329475105536792e-05,1.0278112292099709e-06,0.00014055073737316218,0.0002823003451067673,1.6204478230914716e-06,3.9205550172919993e-07,5.295209376732066e-07,1.247131424888242e-06,0.7320032322674318,0.954270313511005,0.9631637178921058,0.8491863944287246,0.37043246760491655 -rampa,object,0.9999493466756961,0.9998009648110355,0.9999364562828981,0.9999490718452796,0.9997937353709258,1.477610425477607e-07,0.9820941786363038,0.0021329440063385286,0.0003767090014680214,0.00197908272116974,0.0039390613491481815,0.001007963511706355,0.2876520304411568,0.6931074855102501,4.755557664264645e-05,1.8182879055527177e-06,4.124740783946458e-06,2.107091038969056e-05,1.5756357888818003e-07,0.004113549848850832,0.029127920747213112,0.26088936398406404,0.12746297150643965,0.006283157577931521,0.9999574391327275,0.7287566221661852,0.1444665791774443,0.3423691928745322,0.3717221224212412,0.002165933368569004,0.004921431461837908,0.0007812864340017524,0.0003754227563129985,4.956458105840488e-05,0.11296580354276217,0.45252360679356834,0.21310764941895394,1.4501948025898443e-05,5.943536941510607e-05,0.0005011465011705536,0.9261874282296072,0.04433776885715377,0.19621892580327996,0.19191704591165396,0.28029927842644586,1.2976099266002252e-05,4.134187703033662e-06,2.3887582198266166e-05,1.3136650337951754e-05,0.0039700812248747415,0.010733290905867183,0.0056000509625601345,0.009139959168854891,0.005442804899495567,4.926804830202602e-06,1.3661399730697471e-05,1.2558892392918468e-05,0.010760117313223901,0.0018465882613370975,0.040326422411226956,0.00036887752420050964,0.012498245332134688,4.288453463153923e-06,1.026285104128622e-05,9.703882949207923e-07,0.00011461713265936376,2.3399833012763077e-08,6.469187088413086e-06,5.380617418646813e-07,6.412761049884106e-05,0.00012483348762888652,1.6688466235966505e-06,4.730991857672624e-07,9.649532422777566e-07,1.4632139839867352e-06,0.9259555604289149,0.9809187460265829,0.9965484090462677,0.8995723481814564,0.8779904966728119 -rectangular,rgb,0.9999909661337211,0.9999987925105561,0.9999876009761273,0.9993373267972374,0.9999076831250123,5.4504819843331714e-08,2.4212329770323515e-06,4.17565104366286e-09,1.0734635534234915e-09,9.492552875749387e-10,5.960875058767665e-10,6.310316272865136e-12,4.494644033482094e-12,4.196284489050919e-12,6.881773336118959e-10,6.782551258440432e-10,6.72939701299557e-10,6.701246980928981e-10,5.950650806557231e-10,0.9999994698292112,0.9999968972562853,0.9999954428841995,0.9999372188270041,0.9994554982607815,1.0,1.0,1.0,1.0,0.9999999999999933,0.0019385510738092271,0.010213622927157003,0.003002032521808707,0.002205326177076941,0.001480799185381576,0.0005569779960630019,0.8512354112527363,0.9050892809453439,0.9467105219885988,0.9367053693209421,0.9830579204989189,4.212889609060093e-09,2.5299251908940615e-09,2.499350366342551e-09,2.605170112147702e-09,8.845491138308096e-10,0.9761691973142038,0.9804037285547489,0.9799455241741308,0.9816697056392176,0.9999854611582862,0.9999940944928483,0.9999984996286932,0.9999472033499446,0.9999179754870204,0.0008698730166826706,1.1217353653863564e-05,0.027625315706870823,2.9844069377892233e-12,1.7359614833275773e-12,1.315901394132739e-12,9.930942440078513e-13,9.610087200342876e-13,5.1235554323126626e-12,5.5740000059562815e-12,4.230266304832424e-12,4.2687110730235385e-12,0.9944410118289151,0.6438036363588676,0.995643750252527,0.5318181626955497,0.9943728180861413,0.9965644802291377,0.997191956596314,0.999809835904222,0.9997170554260468,0.9999881043325336,0.9999841599795567,0.9999558719052586,0.9997550509321992,0.9998774744712902 -rectangular,shape,0.9998641169644308,0.9999103991138113,0.9999717230993155,0.9999142448034456,0.9998380510010548,9.097564847214276e-08,0.9080931830709413,1.3166900920897428e-05,1.9329368967632277e-06,0.9527313878739406,0.03829198998200413,0.0075603824392386975,0.012684339094660138,0.4895726743094627,1.1451986390934564e-06,9.072675690245748e-05,3.8062793866074694e-05,0.0023794477470273708,0.04628556755376743,0.009141672442854206,0.08730620094736433,0.9983466168392989,0.9979389197920107,0.979758704869312,0.999966023011432,0.9996369395264374,0.9993973481547757,0.999929559053344,0.9998405003756934,5.1249166097524674e-05,0.006002249329915316,0.0003156381259343915,0.01410143192112912,0.14595957825036054,0.9768412607506808,0.5788759823402142,0.8098421316937382,4.2936197636813873e-05,1.3408752120671549e-05,0.05216177937622187,0.5102995793732401,0.0012125935445219608,1.6067276566571867e-05,0.0002339444221942958,0.0006712400714339496,0.0006562918590916388,0.0002003883912951531,4.8905796997107464e-05,3.755167908838472e-05,0.004464988278400119,0.012151622065009459,0.01404532810615722,0.0011288891728425336,0.004473497688593716,0.0007904755833873227,0.004918215310654869,0.00036688466936474695,3.153654682294868e-05,2.616529470325681e-07,0.0868984045374076,0.008229186555542337,0.0002095539839321523,0.00014548433650684092,1.5978543445609286e-05,8.008539367311489e-08,0.0005634451281121723,0.46710268310819386,0.9753756191001625,0.9871057493100275,0.9293601219567306,0.9458636290380191,1.5258658046614416e-06,4.544546896907143e-09,9.24123018480513e-06,1.6678517613312231e-06,0.4960787049651584,0.008837194646531722,0.39623648923903365,0.00029973734906168223,0.8471489542923657 -rectangular,object,0.9998361740901555,0.9998449334745197,0.9999070417962189,0.9998084545901388,0.9996209801240521,4.675925030782474e-08,0.1866656653727062,1.0426608052972395e-05,3.30703767129178e-06,0.2899181920849288,0.0033707881153785544,1.48921234103376e-06,1.557595689314143e-05,0.0008042195639828232,4.1662973020798625e-08,4.576855459542266e-07,3.9513041311066134e-07,7.558329435965715e-06,6.891394265422307e-05,0.549945491008883,0.9842625498331191,0.9998941177811128,0.9998812634272151,0.9788414120144807,0.9999977296173296,0.999957060695474,0.999859025582152,0.9999769977178448,0.9998680802799492,2.0887808667292094e-05,0.0010398290561218475,7.161577235135942e-05,0.005068356033543273,0.008026665745039605,0.8209977207059632,0.1564012158289606,0.3703936080774145,0.00011708944411590092,6.610808600644396e-05,0.008051190424448258,0.002413167112038741,1.2645596642839498e-05,3.4462359606910227e-06,3.6395605166861006e-05,0.00017274182501844155,0.014821556855846274,0.005756288746308369,0.0026698851318282613,0.0024473227581974836,0.5034085176281967,0.8540172442051234,0.9227208087314499,0.5903982516836975,0.7580664414591353,0.001189183537567926,0.002142296528590725,0.0017256085699595355,1.330257388606367e-05,5.322226760794256e-07,0.001093381490446547,0.00016577406892754094,7.45669687952079e-05,6.096087646191116e-07,1.058270133871235e-06,5.054659565816793e-09,7.729151010607061e-06,0.5432515302997543,0.9616105199095953,0.9859035239319984,0.9623480645658681,0.9913595595300956,4.3225251615063305e-05,1.0424541712886124e-06,0.00042962142513083514,6.672104106620537e-05,0.8708087486439794,0.08470281881904647,0.9222440393038878,0.012934094503552061,0.9428571503672114 -redonda,rgb,3.290241379613202e-17,1.2204936919163464e-18,1.2688018593369004e-17,1.7621737348643022e-16,1.6727040250311515e-17,0.9079587710273047,0.4738007591328679,0.9998227065543226,0.9999999832205927,0.9999999963232404,0.9999959381617567,0.9999999982603116,0.9999999997500311,0.9999999998173053,0.9986914279778982,0.9984989601586431,0.9983176641695416,0.9981386796202204,0.9987363544248017,1.640559386089087e-19,8.822786047985496e-19,1.1497337332791883e-18,1.0913103468089698e-17,1.2719369935866563e-16,0.002364251042472973,0.0008654995437948668,0.0013724955829557393,0.0009764184431298192,0.003746846608275916,5.833111532419314e-10,7.993353080750219e-11,3.429839591386148e-10,5.345835993551611e-10,9.04335867750251e-10,3.451630176099708e-09,1.0,1.0,1.0,1.0,1.0,0.840829552234369,0.9579973767512058,0.9426651576265457,0.9119217712597162,0.9913955834804152,0.9682118393244209,0.9874629270299,0.9884415546865977,0.9965394648638052,1.0979989437941628e-14,1.7403472658343632e-14,1.2610489585829251e-14,6.74461694526135e-14,1.4366123814024054e-13,0.9999999914343504,0.9999999998985152,0.9999999969318809,0.9999999999997109,0.9999999999999645,0.9999999999999998,0.9999999999999998,1.0,0.9999999999999998,1.0,1.0,1.0,6.983355756569031e-06,4.988682932364332e-05,1.0669346041572417e-05,7.442797828102965e-05,1.898443515195278e-05,1.0,1.0,1.0,1.0,5.106285981648217e-18,5.848583160034532e-18,1.4146273121743017e-17,1.3232864038133482e-16,4.692020851816392e-17 -redonda,shape,0.003335590273644594,0.00018020762213799668,7.775236624411431e-05,5.386074553312957e-05,2.7102095673092775e-05,6.147944234076684e-05,9.354747901247493e-05,0.9993795787520919,0.9999975537119048,0.08974596155155876,0.8409809044670002,4.121319288554251e-09,1.6027902441648277e-07,3.7949374742047034e-06,6.783159159199447e-08,7.777892112062966e-07,5.523949214816504e-07,5.176446365464929e-08,0.0007051988494452889,0.9964063544490248,0.9423970819329337,0.29908705153274867,0.33589895254514524,0.004414866149318223,0.00014530396211148982,0.3495635407271819,0.0036660350491466405,6.635035961919683e-05,0.0006389239445223673,1.1022593656209264e-07,3.852408217815155e-08,1.620570697761155e-07,1.1051339767759855e-10,2.399553848681328e-06,0.0004978734531939085,0.0016369804250909834,0.0016881209807136988,2.777939625685279e-06,0.0017243567864675773,0.00015242829111759953,5.501959598615221e-07,5.287932371608818e-07,4.8278569246312205e-05,0.49853765623065033,0.0025418735289627513,0.969813407107985,0.9968432675734432,0.9993111361546604,0.9993008466725317,0.9990845928594441,0.9990458651207107,0.9994725153276205,0.9999307097488487,0.9999189427233269,0.9998962342682703,0.9873081503234659,0.9977403270543687,0.9999975310343066,0.9999993409826495,0.9926768694315371,0.9975155973824363,0.9999427632301109,0.9997748004416432,0.999967859212576,0.9999999427301285,0.9997475759347565,0.058863113382344553,0.0029909433597995476,1.65990661513949e-06,0.017713222036442915,0.09666201129480652,0.9999993014230586,0.9999983272702251,0.9999812264041248,0.9999989413454701,0.0004188402190592149,0.00045560140076649717,2.497818802542306e-05,5.5215519711070426e-08,0.00011402325678143438 -redonda,object,1.1145089157206236e-06,8.451297286001378e-08,4.645858751182985e-07,1.0103222024205788e-07,3.0073690714876035e-07,0.0020455657123724983,0.000635085218848221,0.999852906208533,0.9999992196472803,0.9971394798259022,0.9858775247651607,0.13816235948480649,0.06567747369313898,0.5286392402933673,0.0010405109087131639,0.0032794770807788184,0.0025736947660433152,0.0017393574889971693,0.2231575126825195,0.0002567946538209651,1.2740108348546076e-05,5.9765298281022924e-06,1.4181986963969485e-05,1.0014383392883012e-05,0.01028178261756674,0.56418744594158,0.10519915450521065,0.010204383770780602,0.028751533589694168,1.5360842929870424e-07,2.8222813913724536e-07,4.7288435859728355e-07,1.3629277891631556e-07,5.7349820990085285e-06,0.00023628105082483834,0.9999999197194771,0.9999999098270173,0.9999996821860171,0.9999998992427382,0.9999999748601076,0.003648370008034517,0.0063274823029460334,0.019933282000506345,0.6319401449980839,0.1781663836668361,0.7544261282538919,0.8815658321551225,0.9586696272911956,0.9717252053418907,0.004327717780606467,0.0016684223602566061,0.0022098497097422206,0.005025409974532869,0.005022357323598091,0.9998758171001993,0.9988132531176792,0.9997393610986531,0.9999991458608398,0.9999996769641706,0.9999984403241017,0.9999989831498776,0.999999433006818,0.9999951290556311,0.9999994251801645,0.9999999954267613,0.9999987272947715,0.009744074858812837,0.0015958870847033976,6.416990306867915e-05,0.013290960464177262,0.008422824539078545,0.9999999998528539,0.999999999768425,0.9999999989556945,0.9999999999314158,1.5690045140901646e-07,3.2568090742904743e-06,3.535676225783137e-08,6.581264139235137e-09,3.1684923461194494e-07 -redondo,rgb,0.13305390862605848,0.10184980047268417,0.12397434555066689,0.1509078856547129,0.12288925019779888,0.6993697544685896,0.6180678638329832,0.8502683312998784,0.9076586616337301,0.9145194548967472,0.8784076911115233,0.909092185489078,0.9168345902296473,0.9183416672272461,0.8319007863314111,0.8303620885052599,0.8290681563816765,0.827908711108911,0.831607300506018,0.08388562712447685,0.09744230238238319,0.09930404529153888,0.11815962186743802,0.14652363791252468,0.26348160098382634,0.25902010147020627,0.2678212943090262,0.27152544577561427,0.34824858322701424,0.37133425797946157,0.32535534934330457,0.35812275156128515,0.36480399519884427,0.3751035228331674,0.40038490048947745,0.975467577279947,0.9740311824243018,0.9759029447523015,0.974628350966004,0.973373542604922,0.7795131753508112,0.7966585962453142,0.7921079037436045,0.7855472441884583,0.8104461145973654,0.4027343593207359,0.40973942566450644,0.4109076864352012,0.42225267700263575,0.10378036810167254,0.09967999061241464,0.09137153157593295,0.11708421024166127,0.1224147072594884,0.7069429918416369,0.7920559317329096,0.6736219419125791,0.9477779967188585,0.9521966953159221,0.9624933011603868,0.9621286085349104,0.9667183872628855,0.9500940165364825,0.9526614182380175,0.9592411360870038,0.9591733220663041,0.25009992716762636,0.3208589009579654,0.250470665108621,0.3303498913316576,0.25753850972422765,0.9395609340307024,0.9408459191787589,0.9377237411312693,0.9407891119592228,0.1144174075936853,0.1154616903590294,0.1239320081104401,0.1492934481630811,0.13703624498079342 -redondo,shape,0.015761413422747974,0.00012120913331100321,5.811367203132283e-05,2.1415358384410327e-07,0.0006173067478795432,2.3754692981517926e-05,4.3337201122863876e-06,0.996065420575443,0.9999962581201556,0.29357760615206696,0.9626921331990278,4.12381781376903e-09,1.4902909329217538e-06,2.585491677187574e-05,4.2735486792925824e-05,0.005777213495368405,0.0019511722217346802,0.0005761519675674403,0.0061341994777968385,0.9835833999627868,0.6892862736794747,0.1338459272924989,0.1771787854178582,0.011602607563511136,4.7909779776735e-05,0.22424142629741867,0.00046170261622170147,5.454592820171382e-05,0.0016346990120062231,4.7686768290570815e-05,6.142783159368536e-07,2.33521384947838e-05,1.1025825975053683e-07,0.00035427246107356516,1.8836724548679725e-05,7.158848015848139e-07,8.727701521815007e-06,0.009677727533473152,0.0015030764521567605,0.0007185909662670597,2.612541629822389e-08,8.324073445156668e-07,1.5353169351882148e-05,1.9161374825724333e-06,0.002061579064633841,0.9747240536702206,0.97945524592402,0.9603727008915645,0.9917986382873791,0.9974694900647992,0.9978588320777522,0.9987925094498146,0.9999732333302591,0.9999823413631463,0.9980289739412131,0.9173334694394719,0.9887577211288147,0.9999834596648735,0.9999991418817799,0.9995532718820676,0.9999088568693476,0.9999063484992942,0.9953138103616288,0.9998131531454422,0.9999987196599674,0.280378498118769,0.5441531464476366,0.04147763812019124,0.0031275749759109386,0.012504870161512298,0.017224528255042237,0.9999704305686369,0.9999995599294349,0.9999046448252349,0.9999952969371487,0.0016525014858102397,8.316199188791699e-07,4.973968196199415e-07,1.4608095404889544e-06,2.0090067165090896e-06 -redondo,object,0.0014480281792593865,9.186598023161073e-06,8.282199317427414e-06,4.847995547817131e-08,0.00029638082826971985,5.301343934971914e-05,1.219992837189178e-05,0.9901656985535623,0.9999945637303712,0.9849216264315468,0.963290061456793,5.547413020781816e-08,1.0964493615017247e-05,7.842364836334755e-05,0.0025676082109534907,0.11409180854211218,0.035593537490951364,0.06698567274012301,0.2275871981382693,0.45702603899943195,0.08146760385012099,0.02304532041967948,0.029444341660540743,8.810031206090792e-05,0.0019115485332145846,0.4074822879863789,0.004040177052871749,0.0016885767970782346,0.003280013197037261,4.1597315180916646e-05,5.386614909273334e-06,0.0001089900067099354,1.5421637186949231e-06,0.0014935415577346143,1.76000851693907e-05,0.003179334056050891,0.011459510488805688,0.9961725598911871,0.9833086964932974,0.9128917115319699,1.14703153487684e-08,6.306809584236914e-08,5.235832690476198e-07,1.1628884508466449e-07,0.0003476269667700955,0.6884904504777968,0.8717585617081218,0.8424636194555005,0.9466079696950204,0.9746593158028309,0.9927455975818316,0.9939880484392655,0.999762948975167,0.9998260469269611,0.9914067489549606,0.9489312790654227,0.980619307819697,0.9999993879717988,0.9999998015928723,0.9999767990532648,0.9999976271034301,0.9999968809041059,0.9931199067978236,0.9999452236724613,0.99999911668412,0.9809510011595386,0.24348511105276163,0.060687392414687125,0.0009137570944189026,0.003369471931885209,0.007832888278923958,0.9999995031658041,0.9999999562551752,0.9999977056801953,0.9999998149080745,1.1387082161139203e-05,8.135878857996313e-08,1.7656256806988474e-08,1.744194901606362e-08,3.9703888244165195e-08 -repollo,rgb,6.575943156198646e-07,2.4745414035213705e-08,1.410405723492626e-07,1.5586842892293027e-07,1.2220419783216468e-08,0.0003622989758314312,3.030551379091478e-06,0.9998965829989038,0.9999971629455513,0.9999983067905746,0.999952215583118,0.9969266875429896,0.9973885753719285,0.997738374800927,0.9974272807284912,0.9969464516075742,0.9964872592562045,0.9960278387985505,0.9967328850788385,9.395035088298712e-10,3.5922231808087373e-09,3.464917503703267e-09,7.536439943664939e-09,9.714927579789369e-08,0.05950281598204263,0.05525924296055678,0.07341339255187633,0.08621489530533477,0.5462800331007829,3.964831918178832e-05,4.366129356159143e-06,1.9987498147476543e-05,2.081109909140787e-05,2.8865361182107818e-05,5.6870052774905684e-05,1.0040844524429452e-05,4.866844480532357e-06,6.925854972507644e-06,4.831799784158743e-06,1.7094848949730494e-06,0.9754142704877513,0.9888954691199459,0.9827967072821028,0.9697936228955744,0.9842647384705355,9.566525532958846e-14,7.991277138012774e-14,8.156376304256252e-14,7.556827198727582e-14,3.029729273006193e-14,8.991593987355098e-15,2.303469244301096e-15,5.966580793296587e-14,7.170653027628001e-14,2.341085139093109e-09,2.1205882834294952e-07,1.00423968627518e-10,0.9999946343255913,0.9999923124945626,0.9999968081160423,0.999990393064288,0.9999797042291556,0.9866335422041314,0.9870325288241538,0.9955634444432669,0.9954594982675787,6.794678187272888e-14,4.480010036572432e-12,5.1100564612693546e-14,6.724295086439091e-12,6.060015529609414e-14,1.5870205753510339e-09,1.6643310484233008e-09,3.1692473632270536e-10,5.448894683595988e-10,2.8720357554571962e-08,2.566407252271388e-08,3.9455339779072526e-08,3.691930030314857e-07,1.19596239030749e-07 -repollo,shape,0.1915677573669671,4.573651758106422e-05,0.00036533850687363523,2.770049061001325e-07,1.0416475164520584e-06,0.00021287140232735644,8.59833429814407e-07,0.9999978111083938,0.9999999512715855,0.9999927330944184,0.9998529341729878,0.00010758195261060054,0.00026258549543511483,7.584323127606257e-06,3.5713863773459824e-05,0.00020072328588394115,0.00010973912151664982,1.7659424197741547e-05,0.0001397077904566011,5.5444179273144134e-05,0.0007102964546187652,4.674883375282099e-05,8.582078566048059e-05,4.7889993142237434e-08,2.1430490360266027e-05,0.0004635324752653231,1.1844348487211695e-05,1.6958168045767175e-06,5.687010546591713e-07,8.701280987387266e-05,1.96667828320942e-05,6.861396282311418e-05,7.802753508564544e-06,4.0203552467881035e-05,5.437888185405689e-06,7.632700186300113e-07,1.1116485752110694e-06,2.524173832797161e-07,1.4350912344135868e-07,3.985144165078537e-08,1.3457314792424233e-07,2.2509402123506584e-07,8.248162442103121e-08,1.4814327786741862e-05,0.0020221358678403495,1.4333246966190757e-08,2.5868949853123225e-08,2.5973642164800067e-08,4.594043088375321e-08,2.6790938676357433e-06,1.740897109689575e-06,3.4052373575594148e-06,3.122843653270974e-06,6.240171145182863e-06,1.7528233958648268e-07,5.4936096936565727e-08,2.186000048584871e-08,0.0015409100147349255,0.000603938714215774,1.7908715695358746e-05,0.00014426043931379617,1.6372706551248866e-05,6.459563566217149e-07,7.017775734416084e-07,5.560404759383598e-06,6.136477123830187e-07,6.7287038517434e-05,3.9528446711236495e-06,1.2883118150914404e-06,4.4558770702259265e-07,6.022949813326466e-07,4.221249649470292e-06,2.4530413560828493e-06,9.530783085431539e-07,3.813147891657923e-07,0.00019317145095344943,4.045335503198338e-08,5.809571476379876e-07,4.7134935160804726e-08,1.0765447865362443e-06 -repollo,object,0.014888878907422668,4.200461743010153e-06,3.400319137548716e-05,7.369738155336982e-08,2.2366195638698946e-07,0.0001585475023229419,4.998964205765134e-07,0.9999980687980584,0.9999999533097943,0.9999970950132557,0.9999072464167054,0.0006312084425280683,0.000997716654229809,4.207583074218631e-05,0.00014666290538035352,0.000526121277114303,0.00030439849660694106,7.183544356516776e-05,0.0005898813532132523,1.7269738131053326e-05,0.00021451410698156872,1.2738953835876748e-05,2.5514241767251154e-05,3.3550199258882074e-08,0.0003025556174672235,0.005697042754000653,0.00016455629521541312,2.9013367525887004e-05,1.0679130683586267e-05,2.3774621399779766e-05,6.072054846387532e-06,2.0272257977496877e-05,4.808245587364279e-06,1.3281300330939702e-05,3.5834523132746977e-06,3.631953904222742e-05,4.563440312711177e-05,3.348547294107804e-05,1.7157355951588746e-05,5.164003391530923e-06,1.2986059651345392e-06,2.2465157454345667e-06,7.579781983372199e-07,9.993863244981251e-05,0.006543973186796727,1.0661071216858617e-08,1.9055984033542383e-08,2.016891060637632e-08,3.349624300351675e-08,2.7488194344037835e-07,2.058061890107507e-07,4.819473811981802e-07,4.198434871500981e-07,8.161500625992684e-07,4.1327176355536534e-07,2.075956691975676e-07,5.8178897999419235e-08,0.035088466893153855,0.015848990882473837,0.0010567457268740945,0.008222237902764083,0.0010291797033263783,1.4057293683607533e-05,1.693481949042267e-05,0.00011381614487269836,1.9083927167008215e-05,9.877652473298408e-06,1.1490174445045255e-06,4.454726350826807e-07,2.6033284349728414e-07,2.5098978876021077e-07,8.646256691957688e-05,5.555587075108128e-05,2.2655288086714758e-05,1.3016300436584238e-05,8.27572071833737e-06,1.7144316338033726e-08,1.293502778114367e-07,2.0966661158681785e-08,1.630207867112431e-07 -roja,rgb,6.10738606725673e-15,9.329905770846737e-16,3.815756769717246e-15,2.1820005946738173e-14,5.614234753597805e-15,0.00039401779596230847,0.00010221720646129615,0.00782772932466473,0.6303973297347334,0.8043816486001778,0.0724685725703377,0.9231414435408903,0.9745409891695562,0.9786830295238671,0.003089310168536884,0.002875560326572037,0.0027083266657896396,0.0025676470637721353,0.0032153426241286615,3.2351532844051057e-16,8.897238766626897e-16,1.062141230911089e-15,4.388149246028264e-15,1.82607334826999e-14,1.3022387201863735e-07,7.466411448862558e-08,9.925321889220372e-08,8.412466738148615e-08,2.366681295752642e-07,2.292944888783841e-10,7.310348054049874e-11,1.6985294610510805e-10,2.238118979606595e-10,3.0629497715178036e-10,6.855548048352609e-10,1.0,1.0,1.0,1.0,1.0,0.00016740768344481306,0.000391594486479071,0.0003302163798203772,0.00025812280427317335,0.001095368277827461,0.0009304067152361883,0.0016341548351823344,0.001715864291276626,0.003520147655487259,4.747922680249641e-13,6.373683415141565e-13,5.29961352552888e-13,1.4303399473532609e-12,2.2656652333549572e-12,0.8805625925562048,0.9900489945351313,0.931358291943095,0.9993609964607285,0.9998237323231445,0.9999911725707035,0.9999935447436746,0.9999993050478748,0.9999945725482174,0.9999975303245074,0.9999994731758743,0.9999994682101833,1.0126410893522551e-07,3.2449323643561226e-07,1.3067113936693763e-07,4.117430070645772e-07,1.8455390748540645e-07,0.9999999999999929,0.9999999999999949,0.9999999999999982,0.9999999999999987,2.4108973509793052e-15,2.6642076537984232e-15,4.6178343812143704e-15,1.6793002816959493e-14,9.316347554629665e-15 -roja,shape,0.99999661517082,0.9998777877611356,0.9999685360916751,0.9993894941958528,0.9926599768419169,0.007209031319929989,0.013492119658932173,0.9943725724415836,0.999543660503632,0.9710151237462747,0.9992888426489269,0.0021539875712655956,5.20601107518761e-06,0.937940096572288,3.3541155095415834e-07,1.3651097081265346e-05,8.018516184731413e-06,0.0001759323039283189,0.9985004476916818,0.9999288405457121,0.9993458542178493,0.9999887121529476,0.9999972332556407,0.9998259094790983,0.999995211334866,0.9999997928108523,0.999999732423816,0.9999929654034726,0.9999713132839494,1.2072529838691484e-06,4.060706908648412e-05,8.205830679214445e-06,0.0005395493104912094,0.005981093871839601,0.999995457267227,0.9999291566729845,0.9999827883080628,0.347060858975957,0.9563741740544032,0.9540137404720258,0.9999958600351311,0.9958162986259541,0.99696492467391,0.999939706244103,0.9999511081989547,0.9999755874033214,0.9999886145621399,0.9999875424203546,0.9999796692491785,0.9999995741088805,0.9999990436927874,0.999999195797472,0.9999948558678283,0.9999986964997376,0.9999980224198808,0.9999933778649484,0.9999986074886706,0.9999985818542158,0.9999959982158855,0.999994574294593,0.9999992351574475,0.9999990969557994,0.9999889121024491,0.9999950250845745,0.9999447741574917,0.999990507780522,0.9914381534648316,0.9999069110949048,0.9992367161840489,0.9999884134551428,0.9999969339544585,0.9999802650228812,0.9999073480146808,0.9998714713903897,0.9999785243112846,0.9995713138405014,0.9771999226628928,0.9999909333350354,0.03726688926873198,0.9999852413587226 -roja,object,0.06871822567084146,0.04211299123801956,0.000658191772744871,0.0005100214967123161,3.1290602236146443e-05,0.0003353840037333562,0.0007727410688509194,0.08586566653657085,0.6571030392109883,0.46774078463567115,0.6766965419535411,0.004470226880490855,4.206216079776808e-05,0.46399889023410346,4.08383898864843e-05,8.327538873124754e-05,5.432220497074621e-05,0.00038506215983414124,0.35398530002909334,0.04301556294687451,0.014057942999999563,0.112386761182388,0.2169463949121691,0.016893439545304992,0.5189612124859817,0.8360035021375171,0.7430377616991685,0.2600405858457661,0.4639350900573379,7.525994703693282e-07,3.950687542053812e-06,1.6378065404973767e-06,1.8563564223408705e-05,1.7408381145323775e-05,0.411532258592394,0.999999787520618,0.9999998641378098,0.999813594942266,0.9999599778013187,0.9999743431413889,0.10049455301401153,0.0519587179334153,0.08386359730073696,0.23290784315217253,0.5615126451650491,0.9966078226731163,0.998570176837809,0.9989839648194517,0.9992149260074935,0.8570914445705862,0.8487701689692558,0.8644870702063844,0.7924752289737501,0.9062504339797645,0.9999105529000739,0.9997782736359605,0.9998609750193299,0.9999349288932573,0.9999215655901161,0.99993520079549,0.999976433790515,0.999976193509917,0.9999860168263385,0.9999884669673892,0.999994480291528,0.999991378352922,0.8559257953217698,0.7334337113602741,0.43339787920598233,0.8467893042161926,0.9685931311016618,0.9999999863415374,0.9999999619145566,0.9999999381516544,0.9999999895386483,9.869198295146517e-05,6.623126362238285e-06,0.0072680199796682134,9.023051335597876e-07,0.013200853042909208 -rojo,rgb,2.3008054664797e-43,2.1262844483242694e-45,5.816946140180839e-44,2.708812344065701e-42,1.052351985177884e-43,2.1973350156123593e-16,1.441515468091757e-17,3.873205038474579e-13,8.656830660276205e-07,9.73242148899706e-06,1.4023377385277093e-10,5.8876771103913825e-05,0.0013698123023982258,0.0022300498634945905,1.8649694842047665e-14,1.5233437737792008e-14,1.2877790816497505e-14,1.1097036238298241e-14,2.015704265102486e-14,1.4265793116155573e-46,1.4975820110726436e-45,2.2250628995838824e-45,5.879873192316436e-44,1.7441490788643452e-42,1.8725029368511115e-19,3.231781847384598e-20,6.161610291199988e-20,3.0052408930344633e-20,6.920308588633524e-20,1.2942153941542996e-32,8.426370301380187e-34,6.327168205558341e-33,1.2617238742762894e-32,2.7219838863518287e-32,1.9883827627170383e-31,1.0,1.0,1.0,1.0,1.0,8.848937329224815e-18,8.245084754798474e-17,5.134848118079018e-17,2.6280895396254494e-17,1.1198429362609274e-15,6.475700502557099e-13,3.3044358028682278e-12,3.763807981963122e-12,2.887113629419518e-11,4.902113902321316e-38,1.4324002580340889e-37,1.241984525543756e-37,7.578264996253457e-37,2.4382300840440357e-36,0.002714323606608152,0.5441323074667063,0.03704169490185556,0.9729716523903963,0.9991313447389691,0.9999997800085108,0.9999999027766219,0.9999999998082576,0.9999999645035814,0.9999999961494064,0.9999999999439844,0.9999999999426492,8.039004693828126e-24,5.987794823948274e-23,1.7528896757268964e-23,1.02714331395474e-22,4.293025020148094e-23,1.0,1.0,1.0,1.0,1.66592925295902e-44,2.0482079909654185e-44,7.262705687389584e-44,1.666479004031324e-42,3.902997826543962e-43 -rojo,shape,0.9999984464572543,0.9999990729920174,0.9999845905943652,0.07493153584313281,0.8946323749846627,3.375816529498925e-06,7.975808481964475e-06,0.005406668187964469,0.9220578066119474,0.0017209313963493862,0.7547814421973095,3.7892443918726913e-11,3.540501433709272e-09,0.00018514547083004612,6.601090411042331e-06,4.0106065915352024e-08,2.9964115035900966e-07,8.440297923394585e-05,0.0016713980141823636,0.9999942217769814,0.9995881048789886,0.9997428373048921,0.9999133511794799,0.9885879977006069,0.999998081551387,0.999999996246115,0.9597667247164956,0.9227068651817397,0.9711096543768752,8.547817324391292e-06,0.0004996852934112052,9.163388842617351e-05,2.2232723740459077e-05,0.0011388306872859237,0.9999818644179885,0.9997193974023902,0.9998242332256441,0.999212914734382,0.9992658137242335,0.999779054957985,0.8543241973999859,0.07194036030333098,0.11308947321220082,0.7737259452805326,0.9711022500996896,0.999999569181589,0.9999993437863989,0.9999986432435308,0.9999927696038499,0.999999999792905,0.9999999999146545,0.9999999972593823,0.9999999976652907,0.999999989612402,0.9988258653882173,0.9999981067896226,0.9999991259965597,0.999999989312658,0.9999999850629238,0.9999998512338252,0.9999899103968687,0.9999998227987045,0.9999947984057626,0.9999814483535839,0.9999103845415084,0.9998211562081111,0.05216256455053425,0.9419255928923776,0.29263402080776063,0.9970575604080184,0.9846883642276345,0.9999419332195513,0.9999991944147341,0.999982652568902,0.9999998210891026,0.8449498306467761,0.19970001967057008,0.908968121481382,0.899581199772747,0.9999195961594727 -rojo,object,7.333049396110854e-07,1.0627871358557598e-05,6.8766339303620474e-09,4.844444099258983e-11,6.790557736534909e-10,1.0976391947344551e-05,6.220565185303497e-06,6.532788362978735e-05,0.01932527486278283,0.0001890303733891145,0.0007262454546599724,3.9777512254976275e-06,1.9450444173475065e-05,0.00020803954660780284,8.240967412403062e-06,5.153942498185668e-06,7.19395518741473e-06,1.7323568497130356e-05,5.974349315220903e-05,7.591625090060161e-05,1.1782807498146034e-06,2.6664758619594286e-07,6.152131971648572e-07,7.436750098336986e-07,0.019523587706524292,0.02068165069242283,2.7161388074450747e-06,1.1019909122159655e-06,1.83682182568965e-05,2.2407971147804258e-09,2.9908047636375137e-09,3.248270389722986e-09,1.9905621890227252e-09,1.343928333761802e-08,9.826082953837656e-05,0.9999998529103958,0.9999999193777497,0.9999999720579468,0.9999999735955656,0.9999999964579882,4.4035113665559126e-07,4.03229386720982e-06,3.7682659537055405e-05,5.439493300238614e-05,0.0006499857475175595,0.9680685919484038,0.9684472727234432,0.9760607306622952,0.9815062970687037,0.008596853803566234,0.01662994610182275,0.00942187302276353,0.03760702204009166,0.030617633268695155,0.9960355335645359,0.9994704781178947,0.9995264964388813,0.9999101302587664,0.9999790760578319,0.9999505757112952,0.9999359573224726,0.9999962250390482,0.9999394204667331,0.9999610464204828,0.9999705361553607,0.9997481380457869,0.00016697262093268742,0.00027556734122566545,6.699583599521227e-05,0.0002625088407586775,0.0002133215722611699,0.9999999984892873,0.9999999997398337,0.9999999995730757,0.9999999999680429,4.2128788917740673e-10,1.205809012422745e-09,8.152059343126813e-10,1.3148505590940343e-08,6.072983148493868e-08 -sabugo,rgb,0.999999999999893,0.9999999999978577,0.9999999999972642,0.9999999987927484,0.9999999910123215,1.5414691721879475e-07,9.40152236519736e-10,0.9999999277849146,0.9999999446071353,0.9999999438652318,0.9999984622418375,0.001117699628287387,0.00028497031326804204,0.00029521833406781375,0.9997745476485492,0.9996906499530285,0.9996015951969015,0.9995044106022405,0.9995270173724847,0.9999999996050981,0.9999999995759401,0.9999999991449153,0.9999999868243037,0.9999999977069496,1.0,1.0,1.0,1.0,1.0,0.9994650533602852,0.9967072267809948,0.9989064823646016,0.9980755039930314,0.9979516806675243,0.996709194129233,5.091902614245489e-27,2.3881127784004724e-27,2.760700538192841e-27,2.106592732028988e-27,6.134667393889196e-28,0.9998275058379884,0.9998677630569551,0.9997032155436106,0.9992261391545045,0.9969702086045852,5.0657599629834066e-20,2.1473828128323096e-20,2.0691923950107497e-20,8.19348474952034e-21,1.0647490438926667e-06,1.2835296437063124e-07,3.235434328695896e-08,3.337265249387969e-07,1.8278016696424094e-07,9.117616164572865e-20,1.0015181679509495e-18,1.5496164817771322e-21,0.7143775262962767,0.1197291800646276,0.02062561486668909,0.0009044734113757899,1.1638647466719336e-05,3.5704598256736064e-10,1.6481292228283902e-10,2.237648802027932e-10,2.1682567581294032e-10,5.5775492677650034e-15,1.26966097807602e-13,2.8248388471181615e-15,1.4524177679612572e-13,2.0918790413103277e-15,5.821405319884836e-30,5.2203302469721796e-30,6.835893985783293e-31,1.0102913968546113e-30,0.999999999945707,0.9999999998931604,0.9999999997671432,0.9999999999559559,0.9999999998683184 -sabugo,shape,5.297403652780306e-08,2.4619365962868754e-07,1.5260932283472693e-08,0.0024798566008007224,0.7836472917438106,0.9997858426123059,0.003703966129579807,0.0007651760402191809,0.0005967127132042704,0.43835042211749536,0.003228930293268659,0.9363615323774345,0.9992553779218589,4.058722749601139e-06,0.9998990547697798,0.9999998053904356,0.9999986825243272,0.9999627251170095,0.999963166508747,1.9874357917789955e-08,3.720001329788959e-05,0.0007554068054702159,0.0007231331660274452,0.007456476922680439,3.5580378987068847e-09,1.2434613022536663e-06,0.7590051944278269,0.9845094564036474,0.879520519793493,0.9998779348394001,0.9943444982999723,0.999909421776215,0.9916480309304315,0.99998845934023,1.2969650652390466e-07,1.159447437290896e-07,1.553393977145342e-07,0.24127460634845116,0.003166799549143893,0.0001485762837145849,0.002881045997434544,0.008447700522052775,0.004639815444112744,9.707904512830128e-05,3.6511553197981676e-07,2.7223601288351392e-05,9.951635791376763e-05,1.477676798986801e-05,4.7437564326165394e-05,2.1673053760262864e-08,2.623789354842715e-08,2.73542117657577e-08,1.1143837947589628e-07,5.454681081942578e-07,0.009018372007948874,0.00013276269315149448,8.1908398598651e-05,6.451346612440148e-07,2.0239007454147016e-07,5.523093334359572e-07,1.1919904194449542e-05,1.6605997136881013e-07,2.0701726341489976e-05,0.006646800872138048,0.015146493498096708,0.002170164663758194,0.9948930595340886,0.9706309046023285,0.8288681390079985,0.33241176434062436,0.5033816379535494,0.004662200178449478,0.002445554835448058,0.0044086412964267005,6.884701229115633e-05,3.9157035110612556e-07,0.001289893663341235,2.6074482517753765e-07,0.0004749289062286323,2.4893014302220784e-08 -sabugo,object,0.0032821278653054255,0.016350325854283376,0.002278856121596648,0.9751463777338997,0.9991288861840409,0.9767915849801793,0.09241576448158952,0.13841592167475672,0.23470420468117933,0.9705272101676741,0.26535916167652507,0.9783685197277676,0.9986493207334892,0.0009274360573597406,0.9999567232036412,0.9999987436414283,0.9999961005332288,0.9999705393866696,0.9999777695508588,0.0018873657892244397,0.1625778014381304,0.44019621422134514,0.3115428880059987,0.8922846142354878,0.9301913150244105,0.998483438201868,0.9999999488183839,0.9999999888569645,0.999999885286671,0.9998838345150534,0.9982904538599208,0.9998757269735868,0.9985037026991528,0.9999736822726484,0.0008250420382924924,8.252054351765172e-09,6.789086731155721e-09,0.0003842328565250948,3.657963954724018e-05,1.4993704404100988e-06,0.47959328368293486,0.7710918209443545,0.7055073162138813,0.07107898272880829,0.0008439163628257395,5.698823352542684e-06,1.6584087472484553e-05,4.581956394449894e-06,6.025773771462861e-06,2.1772307358605197e-06,1.8532701988537893e-06,8.713830145943614e-07,3.2281568956774848e-06,6.464792130208179e-06,0.00019737590635095684,8.962159233891467e-05,7.693447966590106e-06,0.0005934032566194268,0.00016586957235224003,0.0002737954061640041,0.0017767527039656331,3.76368945859805e-05,0.0019037904281417812,0.052551639885445756,0.08033357910499307,0.018942808575631864,0.288063885135726,0.20318862534536744,0.018034350450387655,0.007598181427435845,0.004272324723430663,9.273688494606998e-06,6.777364414335164e-06,7.044814371880384e-06,3.953008110415027e-07,0.008998097707079744,0.95490573290089,0.008198264391894338,0.9556003113476316,0.00358803123542641 -ser,rgb,0.0940396113849175,0.09008771911240888,0.09488320608887736,0.10724431975386974,0.1046970736134862,0.39986314012879143,0.4127276445044319,0.32644688256770515,0.4051322003604518,0.4192728553224119,0.36410892032494613,0.5007847377460165,0.5241668342062723,0.5268324807876689,0.33122481495152856,0.3311101968077172,0.330994859911032,0.33088112094329053,0.3336765730435594,0.09173031367414247,0.0949247158873778,0.09625883179387035,0.10431373469472635,0.10733322596891011,0.2484139762924754,0.23965011424465096,0.2420094253092457,0.23785981011085108,0.2348048579366829,0.17623741137419058,0.17327578841459218,0.17596683539036406,0.1791216674520353,0.18134855517002685,0.18800730531662155,0.9798148124774638,0.9798518721257999,0.9814733839593446,0.9806947874415982,0.9818781189530642,0.2945355571966022,0.3039683395227676,0.3039786300215261,0.30356883894535286,0.32502174526711214,0.6126961971425134,0.6257064735914121,0.6265187078430863,0.6415822268219962,0.2094465219966754,0.22098460374946674,0.2267516185082922,0.2211039342735854,0.22672457594457468,0.7040973468358102,0.7169401606045854,0.7376738557731443,0.5521531859250448,0.582002352084029,0.6362709758416795,0.6507082252375904,0.69830045292972,0.707481925202577,0.7211762882787345,0.7401567706440223,0.7401549615908228,0.4223616770429452,0.4098157495284606,0.4302244686523484,0.41120539418222757,0.4359687484325081,0.9721020429057464,0.9729157761398858,0.9765759593124836,0.9768078352275286,0.09605201347073905,0.09706261346799966,0.09975226362195033,0.10267910813758808,0.10163594476455973 -ser,shape,0.026065044222935572,0.00026863444599725303,0.0004615221638741757,7.245527946457946e-05,0.00017813550862228695,1.1054577396685658e-05,5.001305974496202e-08,0.06409910444313369,0.031021776262356738,0.0001873429795113399,0.6939209132374221,9.70567815860266e-10,4.143890606681143e-09,3.4940927574038136e-07,1.7528611135626554e-08,1.1258040516558719e-09,2.622401103165898e-09,1.537924780994159e-08,5.290674369425048e-07,0.9965557344652608,0.8960941875628977,0.9379129046272507,0.8932114829788033,0.019670747698822263,0.004679262581811465,0.07704755932141254,0.0009194286831166972,9.029497383939266e-05,0.0006044376227682148,1.6807081596393257e-08,3.2307728181778595e-07,7.536225853907018e-08,1.1794118872043065e-08,1.3820398954178807e-08,0.00019956058327657203,0.00041022897561723105,0.00023682053427167071,1.0922022394744158e-06,0.0006621912792994794,0.0004518503839349395,0.0006189865783375731,0.0003305761923733428,0.007819938869000587,0.8125343470441291,0.9540256341542467,0.011284898519776253,0.0066361258507397596,0.08686016934543292,0.04385229629589266,0.9977725663838094,0.9966402466291293,0.9998186913635189,0.9999072273377915,0.999928771975148,0.03250100387622344,0.0010757696853802346,0.09395715242709976,0.9998621193562764,0.9999970260396855,0.999785982868434,0.9986031310760455,0.9999898467199259,0.010746538948632978,0.015728520958169658,0.05945416772920349,0.07054215152014699,2.3851170427854208e-05,7.042009187114186e-05,5.487557369139783e-05,0.025691100630832474,0.03534325872330487,0.06274815058105157,0.24778481417739803,0.005324834049967958,0.36785599413191955,0.003011244564788506,0.0016874470038202502,0.00032836592553986773,3.246379600198124e-05,0.0009966501298556427 -ser,object,0.0026517567892586883,3.1334809033666065e-05,6.948406968227282e-05,7.211194934245422e-06,0.0002087347028268531,5.359100547890066e-06,1.3483681295965843e-07,0.02568753856625574,0.013455716241735619,0.00024865301389220346,0.26248992819199596,2.7526194262380473e-08,1.962399697405286e-08,2.289899997550349e-06,7.890662387863439e-07,3.075767527015669e-08,5.833046462438901e-08,8.078900137573376e-07,2.7953340090299885e-06,0.9606657417437927,0.1395085951200025,0.47169303879686475,0.28879855022629186,0.0028506676071523877,0.02817676013412323,0.21353213160612963,0.0014879770668843424,0.00027840312396023686,0.0013802195933772824,4.9296536456246964e-08,2.32088001384633e-06,3.9466568759262956e-07,9.69349162784308e-08,4.883134951358029e-08,0.00013177094947562998,0.1305082062665183,0.07644530857905417,0.0051742772672599075,0.23363433443228,0.23318850872932279,0.00031275622166044236,9.465940030225345e-05,0.0012747686052912717,0.16911394520427767,0.7502225399730859,0.032329337262967696,0.02367068778225427,0.265223916426152,0.15403705793296343,0.995453418935922,0.9939428280772038,0.9994712421020613,0.9997701056812653,0.9997386586193994,0.14386917016611994,0.015185438446690016,0.4606865278668849,0.9999518941414676,0.9999990377191613,0.9999859070223985,0.9998927856874,0.9999986686035227,0.24337987668429736,0.21976478887835177,0.641323559319081,0.6414982233249605,2.0456524427192002e-05,7.654738150026856e-05,3.217014791990846e-05,0.010870839672326256,0.012554440334968156,0.8230734721789505,0.958602614839045,0.4985922610723203,0.9875111737698675,0.0002411669813376964,0.0007026696055874875,4.293779008908371e-05,3.0193681635926644e-06,0.00020420245191625006 -su,rgb,0.00013476424338347635,0.0009577844650037482,0.0005508597515484568,0.005918740063850878,0.038147877494659144,0.9999999999979443,0.9999999999999962,0.983131927453789,0.9999407784625703,0.9999799843747958,0.9993108885762875,0.9999999999655638,0.9999999999963123,0.9999999999968125,0.9987871307396542,0.9989246744835909,0.9990241207485683,0.999103164746108,0.9992202897163762,0.027532723417705834,0.015544772953158956,0.0214171480620159,0.05532227312586144,0.009343729338390125,0.9999999993113726,0.9999999971849962,0.9999999969997593,0.9999999917215227,0.9999990946110583,0.8550448712425374,0.9701088034924078,0.9168389631158517,0.9452470407332753,0.9463090970187894,0.9612438875656647,1.0,1.0,1.0,1.0,1.0,0.9897138452568783,0.993003841426565,0.9950838007986884,0.9967780379197978,0.9994536659920256,1.0,1.0,1.0,1.0,0.9999999999997871,0.9999999999999898,0.9999999999999991,0.9999999999999141,0.9999999999999518,1.0,1.0,1.0,0.9999999999688769,0.9999999999988909,0.999999999999994,0.9999999999999996,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0028547910607626533,0.0039053732354989083,0.004591278034400443,0.0010964445227308797,0.0024437609147650455 -su,shape,0.9999974888854962,0.9999999239702619,0.9999476295295077,0.8401933473901619,0.9999792897230946,0.999999429473627,0.9999999963521491,0.9999911379966162,0.9999885552956886,0.9986074494193329,0.9999909681188084,0.9993947331325714,0.9999999986018993,0.9999938588873144,0.9999999946717921,0.9999999996824702,0.999999999520246,0.9999999681133244,0.9994071553382926,0.999945522565294,0.9999609225433086,0.9987067414465961,0.9934016711300133,0.9999888788012996,0.4527576965762228,0.7777045711264102,2.983173123162213e-05,0.0006166737945693713,0.9667446353802764,0.9999999998979232,0.9999915701649393,0.9999999956991881,0.9985771039240248,0.9999998786580774,0.7536430820276574,0.9997414915402986,0.9944387757609413,0.9999260986123224,0.9999907470011323,0.9999741824725448,0.004744967464700003,0.5532560429410928,0.9987790622030313,0.9994102155763889,0.9845653078796742,0.9999070319790664,0.998813378234795,0.999928897372244,0.9999861125760093,0.9999247659481849,0.9999005145859592,0.9993491494493706,0.9999998495803084,0.9999997405074991,0.9999697866825871,0.9998382023354081,0.9996292303933887,0.9999990083493447,0.999999746459122,0.9999962205760327,0.9998814251421484,0.9999990877425415,0.9999887725734105,0.9994809307979173,0.9999969463079438,0.9985105674388047,0.9936394453768941,0.9930357388898279,0.9986363090229056,0.483591819853746,0.5348466520077603,0.9999719749598361,0.9999992078732132,0.9999072172735126,0.9999790290101641,0.9999021483335784,0.9947152755052123,0.659620821110905,0.9999979349758874,0.9913137968539708 -su,object,0.9868578931447985,0.999056801885587,0.9904476746838786,0.5401490724630964,0.9996010789982686,0.9999999997434366,0.9999999952005172,0.9996360058065444,0.9998355521195619,0.9976285897625454,0.998205937368256,0.9993899424698015,0.9999999999983671,0.9999975848869026,0.9999999970213524,0.9999999999100009,0.9999999999518121,0.9999999882597416,0.9999992909936986,0.7262840949903824,0.5537534849761867,0.11756316960708062,0.07337290384800241,0.9984155525490699,0.957671044547646,0.9410986377676875,0.008382442300130435,0.045908327729564276,0.994798217864375,0.9999999906724294,0.9997446622368928,0.9999995955386985,0.9939973496560359,0.9999998270476692,0.9093321029385851,0.999999979835906,0.9999998250256628,0.9999999998111146,0.9999999999924982,0.9999999995352302,0.6859524980874061,0.9949105924799562,0.9999655691355296,0.9990745706670361,0.9835465047882511,0.9996477225057349,0.9983613792525262,0.9997235976057298,0.9997338561518885,0.9286151760864053,0.8007392119848673,0.45302930352927956,0.9930021693729892,0.9920550684292863,0.999972307542035,0.9999972321065389,0.9999723367437698,0.9999983890586083,0.9999996643141752,0.9999994676049796,0.9999918482888058,0.9999999310899003,0.9999998748761362,0.9999732376679676,0.9999988380488566,0.9999688976455222,0.7762180092395694,0.9965035914881837,0.9979098001500939,0.48883926676793515,0.161420579297139,0.9999986016597306,0.9999999655221489,0.9999995062689018,0.9999995570435217,0.8622651485751863,0.9673658066182926,0.05809532150235644,0.9999987109988568,0.6927118926604827 -textura,rgb,1.0,1.0,1.0,1.0,1.0,0.9999986719421903,0.9995024675644698,1.0,1.0,1.0,1.0,0.9999999999925928,0.9999999999746405,0.9999999999765667,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999996,0.9999999999999962,0.9999999999999991,0.9999999999999984,0.9999999999999984,0.9999999999999978,8.618647465073589e-12,3.5236956856231857e-12,5.151207260387852e-12,3.37706605912856e-12,9.112149398972796e-13,1.0,1.0,1.0,1.0,1.0,1.4666436175594766e-08,6.476010501041488e-09,6.289006542398031e-09,2.673394563307072e-09,0.9999740836898054,0.9997518108189226,0.9988066044668802,0.9999299620180333,0.9998791562944032,2.464874255544985e-07,6.4768374651638325e-06,3.0712431802532483e-09,0.9999999999999993,0.9999999999999896,0.9999999999999587,0.9999999999988234,0.9999999999169595,0.9999891454992961,0.9999786989614661,0.9999890979194956,0.9999886928385039,0.0006092583902328137,0.02549789842622188,0.0003053263565206571,0.031224276541706706,0.00023863731509617331,1.028176296512974e-15,9.825887566294574e-16,1.2498040118929507e-16,2.0754751927826708e-16,1.0,1.0,1.0,1.0,1.0 -textura,shape,0.02320564433239594,0.09188169758796792,0.0008119277567305979,0.000937325544446898,0.8062445541389492,0.8857538753710222,0.007625020854118216,0.01883148860875143,0.04830669230545497,0.002365213118132092,0.18546083853399759,0.00278559666526324,0.030783910712431407,0.0002454543190909656,0.9999829103735574,0.9974974098992802,0.9961804392900611,0.9998407193147427,0.826216613678011,0.965417788278253,0.7391494705976633,0.40134307318199486,0.2952886942345578,0.11635661984844765,0.05837258738500264,0.0016164153360002016,0.04867199908906673,0.003776040966058533,0.0008095663211220024,0.9998833311386248,0.9999798351606266,0.9999920351920278,0.9994845505366134,0.9996058174837651,0.9987036553305976,0.11274860922967692,0.022792122355658355,0.7233644178629716,0.978153194094777,0.02481623334443749,7.692126036014126e-06,8.348326401486899e-06,0.00011201459193552223,0.002235885479022318,0.024567866669030988,0.3173704218913061,0.6178312341876798,0.9590887570952675,0.9276379818485325,0.9975052425269332,0.9984621065738348,0.999615183618165,0.9998533488354386,0.9999660831679463,0.23062455917714608,0.22845107325977265,0.6099727378017635,0.9999817514245418,0.9999906972483309,0.9994085132931261,0.999612504440366,0.9999497544885055,0.583155789367566,0.5094680909341506,0.9902410276755375,0.9785707722558906,0.6272761070010913,0.7190084535809581,0.0454097865636462,0.07270195785320911,0.597532286107252,0.8773464341548187,0.9999427994930693,0.3050236122458613,0.6190481787225649,0.10144146063788853,0.3026013224334958,0.1551860987074684,0.14524080616896104,0.9077062396708668 -textura,object,0.9999999965256199,0.9999999936675328,0.9999960886372494,0.9999368450262136,0.9999990687328844,0.6219805910974073,0.06208103265681052,0.9999999426217101,0.9999999952285359,0.9999999049631388,0.9999999712523177,0.9625281990026113,0.9397686396798484,0.8606258886297231,0.9999991681119705,0.9999963225110838,0.9999939243747721,0.9999989472224585,0.9999894286460288,0.9999999906733855,0.999999950561784,0.9999999552822747,0.999999852082473,0.9999963375565599,0.9999999999999982,0.9999999999999998,0.9999999999999967,0.9999999999999833,0.999999999999929,0.9999862533871886,0.9999807155567424,0.9999924994239989,0.9998814177432718,0.9999099242954136,0.9998519609710842,6.5757062985777165e-06,2.1138964622030324e-06,0.00020722409423012736,0.0004010741153945979,2.3352238763940317e-05,0.9987926573483722,0.998911211215882,0.9996643682709226,0.9999162889413916,0.9999954638227545,0.0009654433349806574,0.001784821771947246,0.006000519724452033,0.0040794756933567,0.9996191397631145,0.9994428246073301,0.9995641532108546,0.9998959698125612,0.9999122465051841,0.00951440763575688,0.01242832851106021,0.002227356553271743,0.9999999993513227,0.9999999985808155,0.9999999676975985,0.9999999186306063,0.9999997642124886,0.9943010931521808,0.9982757677677297,0.9999277243181082,0.9997715284532409,0.04923567163715518,0.052074472792871,0.0009187405587193083,0.019238684555499336,0.024984826954311406,0.0021598137198157097,0.002812879201452457,5.157082956197245e-05,0.00021689772890338418,0.9999803908493802,0.9999978350878455,0.9999849030948628,0.9999919930707994,0.9999978228770251 -tiene,rgb,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999997967988,0.9999999983112993,0.9999999998196598,0.9999999990443371,0.999999991918045,1.0,1.0,1.0,1.0,1.0,0.9998417649375169,0.9992628462243387,0.9992196885550291,0.9961369368949438,1.0,1.0,1.0,1.0,1.0,0.9999995463887358,0.9999999996164886,0.9982833114843676,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999416,1.0,0.9999999999997615,1.0,0.9999999999995783,0.035358010267605745,0.04703966442235634,0.003728435123381619,0.012966670435959683,1.0,1.0,1.0,1.0,1.0 -tiene,shape,0.9999545091737045,0.9999998650738473,0.9999984680400263,0.9999999994950977,0.9999749024637972,0.9999999999940024,0.999999536629534,0.9999955079992832,0.999988473764304,0.9999986890467321,0.9999967034854027,0.9979215243600446,0.9999998013436561,0.999999999072622,0.9999999997266884,0.9999999872504909,0.9999999986257369,0.999999999438707,0.9999999947521219,0.9999969377691381,0.9999969409844078,0.9999985790912184,0.9999989840528715,0.9999995853418279,0.9999999667779498,0.999999999344156,0.9999996488758529,0.9999998035284106,0.9999999528988917,0.9999999983212573,0.9999999572032978,0.999999997374307,0.9999996213869079,0.9999999611487742,0.9999999989105963,0.9999904739938505,0.9999971697612962,0.9999997035525658,0.999999999990177,0.9999999321663772,0.9999996813929324,0.9999717910862647,0.9999947173558333,0.9999999863900264,0.9999999994173068,0.9999995256451687,0.9999998573253451,0.9999979701083419,0.9999952651947221,0.9999999158996229,0.9999993316290539,0.999999417256935,0.9999907158713074,0.9999796164887885,0.99994589441866,0.9999998114974198,0.9999999487678677,0.9999779093494641,0.9999977100553528,0.9999962063995532,0.9999912235804045,0.9999998022994301,0.9997982362650961,0.9999993782601349,0.9993427560742186,0.9996834442023337,0.9999974540975166,0.9999998805627894,0.9999999018019546,0.99999992628423,0.9999992957542067,0.9999998818555687,0.9996288836379411,0.9999982319625924,0.9998780086005806,0.9999999941919786,0.9999989641943918,0.9999292139633204,0.9999999999981255,0.9999998822308821 -tiene,object,0.9999999990993822,0.9999999990789405,0.9999999999997728,0.9999999999999509,0.9999999984972363,0.9999999999999212,0.9999999979666647,0.9999999999666807,0.999999998636919,0.9999999999429372,0.9999999999849696,0.9999999944485496,0.999999999952514,0.9999999999999645,0.9999999999975613,0.9999999976435345,0.9999999998113278,0.9999999999084859,0.999999999439191,0.999999998163352,0.9999999997730042,0.9999999997458473,0.9999999998686422,0.9999999991904192,0.9999999861939419,0.9999999982597751,0.9999999753946555,0.9999999045164334,0.9999999664607306,0.9999999999988345,0.9999999999972435,0.9999999999982372,0.9999999999291285,0.9999999994097386,0.9999999999991347,0.9999757528783221,0.9999928278692801,0.9997303860781065,0.9999997778758227,0.9999907290015523,0.9999999999996172,0.9999999999882883,0.9999999999922704,0.9999999999999858,0.9999999999999656,0.9999999151042748,0.9999999275677375,0.9999995762656667,0.9999984452714201,0.9999999989657684,0.9999999959860089,0.9999999967291826,0.9999999782226277,0.9999999390586031,0.9999665737311482,0.9999996940901917,0.9999999335653782,0.9999998814687044,0.9999999790153316,0.9999999174742299,0.9999997343081448,0.9999999863766365,0.9999926513131175,0.999999833147745,0.9999203026428658,0.9999867279457575,0.9999996476910169,0.9999999867409424,0.9999999933036112,0.999999999480359,0.9999999870004244,0.9999398442130955,0.9994243274684446,0.9998158990124223,0.9994513680654936,0.9999999999999989,0.9999999999963103,0.9999999999238192,0.9999999999999987,0.9999999999974316 -tomate,rgb,2.573057086329299e-13,9.357809619393289e-14,2.701540393406179e-13,2.0080210852643655e-12,9.441888205999034e-13,0.003985406024927473,0.0026677731242312833,0.0007926405194755874,0.03522901514966625,0.0643117691673093,0.005949799411970619,0.7129769164918579,0.8703352952507615,0.8839669808356241,0.0010678311465152192,0.0010530020203821618,0.0010393403394229285,0.001026465323230356,0.0012008877598325067,8.045625474097813e-14,1.7034925071152535e-13,2.1085514659177904e-13,8.24869576344958e-13,1.9029162722745304e-12,3.274142486846759e-10,2.3126021664550195e-10,2.939202554420079e-10,2.783794982814499e-10,9.940680265262157e-10,8.047413825108993e-09,4.3280815769551695e-09,7.032734451610489e-09,9.187522558833028e-09,1.1631774549703735e-08,2.2113220669349504e-08,0.9999999999999978,0.9999999999999976,0.9999999999999989,0.9999999999999982,0.9999999999999989,0.000126008365379705,0.00022549217279345157,0.00021958150073808017,0.0002060414737000315,0.0006885285394626183,0.15146121698218915,0.22785408246592045,0.23489298873074324,0.3642176880775433,9.975628718111607e-10,1.5661632213006821e-09,1.5923699154568538e-09,2.5509790494154363e-09,3.822989775332435e-09,0.991332257132552,0.99827861066213,0.9963926166301447,0.9704654746391439,0.9915314880859909,0.9991984830862718,0.9995590049793397,0.999946434452238,0.9999303693053126,0.9999637829678694,0.9999876046582068,0.9999875662988308,6.523937469508037e-05,0.00010876815713636525,8.462350587370307e-05,0.0001275401130799902,0.00011253327489409441,0.9999999999998022,0.9999999999998492,0.9999999999999405,0.9999999999999514,2.7653872389281074e-13,3.226437398001439e-13,5.297065891312834e-13,1.1155305162236344e-12,8.268537152635276e-13 -tomate,shape,1.477745870557729e-05,0.0001328363651062391,9.65881603345645e-09,0.00011470709489032105,0.0001926441990003163,5.318960282594622e-09,0.13852246801356777,3.4491841061783385e-10,5.178544735617192e-08,3.7974483210799646e-10,6.489271608579854e-09,1.550773113709389e-05,7.703290721907914e-06,6.197880496597483e-06,1.590693406915946e-05,9.989341834622522e-05,3.9411829676487966e-05,8.118367016337801e-05,0.0008397944480738401,6.830045728087517e-05,1.8166589545730827e-06,2.5256551614934096e-05,2.297379638256103e-05,0.0008756803626408209,2.025943778456982e-06,0.0003718981173103553,0.0002530068383737839,6.346111095486283e-05,0.0024697183583066618,6.765991463236081e-05,7.607245306399238e-07,3.712632017582043e-06,1.902805265397504e-06,8.348450691524948e-06,5.2137686917248125e-05,0.0001342052350058832,0.00016251826659801087,0.0009450390821612069,3.7358581645571954e-05,0.00013831447827077092,4.3187172024393216e-08,1.6433879521765687e-07,9.646456109790764e-07,6.553681759023703e-08,4.3488642016093025e-09,0.9962868513656196,0.9987441139303831,0.9990932243494999,0.9991038102894723,0.03967453059443656,0.08205571336904129,0.0030202408303431835,0.03380957290513674,0.02419355432204433,0.9996377797173054,0.9964150722800904,0.994680934107044,0.0006038634368864024,0.000180208309972833,5.869921909187748e-05,0.0006371857322530019,8.802572258056838e-05,0.9999637714679397,0.9999949596464607,0.9999990582777163,0.9977327501907245,0.9494438682936398,0.032745252122568645,0.000391014347313813,0.0002853946849627363,0.0018445488431464273,0.9999989815170408,0.9999986905773599,0.9999955272636317,0.9999940719307853,1.061257560287373e-06,5.746371123292594e-08,8.567325952218409e-07,8.721219231946525e-07,1.1919597218439968e-05 -tomate,object,9.343474636689305e-07,9.440922170612414e-06,1.4084380743881938e-09,2.5627144688651353e-06,8.67864273638436e-06,0.00011205110335516481,0.013994028265141798,6.729916961477313e-06,0.0011657886069342278,0.0002592926474141912,0.00012997695617280832,0.0012858580581828745,0.002849972152488647,0.00048418822887099283,0.0005331628293660187,0.008617703540799583,0.003367565621513733,0.0037394180000495047,0.1701215754415184,1.8068658972093854e-06,8.741911151498167e-07,3.354989544065981e-06,4.990071208838982e-06,2.311016940324115e-05,1.377973505967275e-05,0.00027599965347155375,0.002097882748035069,0.0011843233664108402,0.0045314208166481245,1.0692150308240374e-05,3.1112125648217878e-06,6.832708709283477e-06,5.793161341608958e-06,9.660863756704672e-05,1.3727942266955148e-05,0.993212832505841,0.9955770562991748,0.9998806932310541,0.9994882135079269,0.9991190675222603,5.811078813093652e-06,1.667633681671524e-05,3.590405630320747e-05,9.880859900778757e-06,9.788775197085937e-06,0.9006940393895239,0.9575830979134643,0.9442643143972484,0.971090363242809,0.00026816405768704854,0.0004319984862192495,0.0001418723983112222,0.0005415293600565046,0.0010358643040245116,0.9990165790234005,0.9976859133800511,0.994643337446344,0.42196194684057753,0.334737372501529,0.416478547553523,0.8166919987146124,0.6195384348185342,0.9998121407154719,0.9999868267541585,0.9999940761831697,0.9993115493162904,0.6678652814218279,0.1271619529944124,0.005833194481865066,0.006172158890594036,0.020314593889494637,0.9999999751962487,0.9999999693873514,0.9999999471797153,0.9999999672046767,4.3254331877465375e-09,2.9197303701982142e-08,2.471331870861468e-08,4.6322264100340483e-08,1.0599522391740143e-07 -triangular,rgb,0.9827891927688662,0.9912257702919383,0.9815159826022434,0.9381714076758331,0.9667615741141119,0.005180104294029474,0.017269465720548546,0.001965566638793079,0.001097925490847028,0.0010289757970412742,0.0010195700916869625,0.00023048346850495748,0.00020122771175082308,0.00019591665016475317,0.0011949680659048875,0.001193446184647793,0.001193690290721159,0.001194908577023304,0.0011441455603750114,0.9934835131604121,0.9885202584600487,0.9870634887649015,0.9705988092746073,0.9419717868127517,0.9999975877151328,0.9999969867531794,0.9999963907136297,0.9999951613925789,0.999946188739576,0.15768514789588498,0.24522485807990677,0.1779737175869834,0.16361554196135522,0.14640275438706835,0.11047459859092064,0.2752510570977791,0.3097484983938023,0.3438746075725229,0.33585325709098557,0.43288735571800824,0.002272340453407294,0.001892896279935093,0.0019003809591195745,0.0019447865426684828,0.0013426167630043323,0.7399348980686709,0.7487020104338349,0.7470768563858725,0.7486419202388402,0.9799917626638558,0.9846891606977332,0.9899719163020179,0.969714295570678,0.9650787863757376,0.07422127021293339,0.019048260126912093,0.18762901042024205,0.00015406137821081248,0.00012649413866098455,0.00010646490183727764,9.763757687173171e-05,9.134037740967052e-05,0.0001673915276860245,0.00016797970966582533,0.00014702265542072606,0.00014748628095349184,0.8514782976833879,0.5736100528907915,0.8599864490270187,0.5366446413402653,0.8489876069887671,0.6177830909600891,0.6297027550078276,0.7907358982169638,0.7678435409047938,0.9821523927479558,0.9805301420661904,0.9731756034653815,0.9535728524223263,0.962874408977791 -triangular,shape,1.9733970594205e-10,2.909097838087348e-09,0.4818307346853948,0.6570358797281118,0.0013002684475720597,0.23502481064513686,0.011880689066469316,2.0222645604354742e-10,5.7900735340711015e-12,3.3255668512322316e-06,1.7041823044512724e-06,0.015440466052867028,2.4691492199222316e-05,0.6972594157537262,2.1790338867996738e-06,6.4048341441165655e-06,2.9661230458715567e-05,0.11694255148077952,0.9435100677604606,0.002643447728611564,8.822713527641693e-05,0.002573289840644992,0.003858108627111879,0.9912665403808903,0.001993587856552358,0.000430710972795835,0.9997324823097195,0.9985850872141216,0.9976160225723225,4.184556711144699e-06,0.0005929131463024466,8.624154838507882e-05,0.004657910637947694,0.8232325944397002,0.9821898389008902,0.9890709240250388,0.9991928211210209,0.7558582638717664,0.6753848754453753,0.9715478077686166,1.6603730866555787e-06,4.978043844764092e-07,4.864796580208747e-07,1.0775190925574283e-05,9.147670683420543e-05,0.3370446514117265,0.061801786576659995,0.0022693901774703765,0.0032747399289641283,0.002156350098934411,0.0020883707137361427,0.03496104546643316,0.0004171468986114635,0.0009934386871501219,0.0005713361939941525,0.011941649740206626,0.005549038663407161,4.6319672208997685e-08,1.442052812783415e-06,0.05194482863325445,0.006119910596027677,0.0014997505431303337,1.9453581875593175e-05,0.00041781300736719237,2.2894188619669767e-07,0.0022816853519903547,0.9992088860343481,0.9996971272976037,0.9999918085971518,0.9994908823690534,0.9986299795132392,3.7519070023487343e-06,4.289870938163061e-06,5.9549748040743336e-05,3.729947192268302e-05,0.9998869188580352,0.9998853732595615,0.9998488434642956,0.9999238199952282,0.9998984004623364 -triangular,object,3.007386407730282e-10,7.977581782131022e-09,0.6573524030493242,0.18722803686666256,0.0007095383496185468,0.06394647094547601,0.0011814944642907423,5.375353462923659e-11,2.0518417215978797e-12,9.923282590011888e-08,3.739844884954005e-08,0.0007460371366588126,2.883183541671591e-06,0.038849930388468394,2.6837347978058775e-07,3.3806498639412653e-07,1.7503858420613719e-06,0.0010437619627487536,0.12054874580031233,0.006385705587772132,0.00031046644731296555,0.003307153327581723,0.0067653709523847255,0.9688361403913537,0.014904387482996278,0.0022294898095373324,0.9994702672022928,0.999007068057132,0.9939649826957974,2.4049576566280046e-06,0.0004246512465250135,4.640756222329684e-05,0.0036288509884699147,0.22150515069898072,0.9079313671237642,0.9887310870307039,0.9995497705851283,0.9569140971184105,0.8548949372630485,0.9930344463737645,4.3743886799535117e-07,2.5900225720081104e-07,2.0979046757400445e-07,2.390580964520345e-06,3.8561507232202376e-06,0.7086585863546602,0.5069969089646922,0.026769588835591274,0.02180390255491152,0.026612030291423283,0.028360886728969054,0.2778941644689222,0.00549133468625056,0.007575279409508447,0.0018570928157331812,0.017808632827556358,0.05073974996930103,1.7481843911344472e-09,4.2940274106294245e-08,0.00023560816558316564,3.617442901271268e-05,2.5782510204105152e-05,7.815691936233355e-08,2.3893548297047714e-05,4.858988931382687e-09,1.442712058411299e-05,0.9992118411369825,0.9997540978899482,0.9999888379816427,0.9996378317302722,0.9989919896892636,2.9560218969815904e-05,4.3908135418130045e-05,0.004117121481574658,0.0002871316363003905,0.9999046075616962,0.9999017479223197,0.9998379862860346,0.9999234941260972,0.999867298980745 -triangulo,rgb,0.9787756621800525,0.9872815252384647,0.9761233791444083,0.9280744613608498,0.9559752657265657,0.01244504792890856,0.03287397769234014,0.008516393050535021,0.005961621828049574,0.005775165904135987,0.004875008289649529,0.001157338736303148,0.0010427816708533872,0.0010240358775824843,0.004791611924918089,0.004756906890271591,0.004734167829725787,0.004717976703391197,0.004571175036052377,0.9892783551076875,0.982694692697642,0.9806739531006123,0.960071683082738,0.9311759484626526,0.9999973845414886,0.9999967341294298,0.9999961774844306,0.9999949665719854,0.9999550383882455,0.21612177686757955,0.2997101597250106,0.23589270433970827,0.2200233408068276,0.20174620877578167,0.16137242263182205,0.5953996018178664,0.6269165049285883,0.6669838304373116,0.6547708570703594,0.7320907154408468,0.007838887026014247,0.006849205832607414,0.006769715611373474,0.006778900209093396,0.004991290328754696,0.7267384565423836,0.7361591977754702,0.7348454869814466,0.7382984809732104,0.9636881044807232,0.9708795576161959,0.9795765345565516,0.9485434749978131,0.9420155294882249,0.1233520217470196,0.041848096621539925,0.26132520326337194,0.0010279635324963064,0.0008629356558924232,0.0007904640676571064,0.0007096038672769594,0.0006771184884175064,0.0009642009192895306,0.0009811409110334886,0.000915428663971895,0.0009174066682191669,0.8142610005033459,0.5609080809681622,0.8233708362996877,0.529637830565051,0.8124891993573617,0.7996860004119436,0.8084372136003536,0.8970716178595618,0.8869734789613806,0.9756713241748318,0.9735593976454638,0.9650133584262304,0.9460437222682402,0.954475214776046 -triangulo,shape,1.4720493889825274e-06,1.573678306824105e-05,0.994353710229876,6.551471787752312e-05,2.510345828469468e-07,0.4450675494609157,0.004895321964529816,4.5109813386993136e-11,8.817869442834397e-12,4.5594334996028645e-12,1.0111827553950444e-10,0.016236607783583712,1.5152639016314554e-05,0.9848719794470377,5.260151014869293e-06,7.162006479900315e-06,2.5392505964957492e-05,0.0019412128095975135,7.4000437469349e-05,0.00048565248067044,1.3050558361565774e-09,6.191768776285163e-10,8.348580675516854e-10,5.0577662690866714e-05,0.08186787435174413,0.00016073425716597558,3.3328125112014145e-06,2.197127039801833e-07,2.7453689354265375e-07,3.00846391453761e-07,2.108780831889349e-05,1.1033099565927371e-06,2.6997277573223357e-05,0.0044087534283872845,0.9811438883513676,0.9986617120752401,0.9992457873876051,0.9327804204122241,0.9865625192110731,0.9854634329687989,1.734861134969828e-07,2.8031603177498714e-07,1.3610015363333937e-06,1.308779605312538e-06,2.4713498408083726e-06,0.03455156183707113,0.007922932557640063,0.00046158850390837805,0.00025090257453959044,0.010282174689893526,0.007768030458176175,0.0033511416664226508,0.00025720858554607336,1.9959047708196775e-05,8.598953586189467e-07,0.0023046913878755565,0.0003728086040310786,3.175595455213832e-07,1.6895178941917998e-06,6.815037226762866e-05,5.784853722640334e-07,1.717821915402142e-05,7.366212839804987e-06,9.051734554720352e-06,2.4446744543137012e-08,1.4111037275590129e-05,1.0015196313078624e-07,6.814097927221657e-06,0.0014523813599257368,1.6631708143906404e-06,9.161849058823992e-08,2.987002725574329e-07,5.404173466627669e-07,5.728035137501678e-06,2.4624876569497875e-05,0.9999687097181367,0.9998887536537908,0.999931983762693,0.9999427531462817,0.9999361396727753 -triangulo,object,7.186229046033716e-07,4.515175185314744e-06,0.9898889187971078,0.0003288576681592782,3.022336376742363e-07,0.028817148497016047,0.009201691114201693,1.916659818839083e-10,6.137801412453033e-11,5.046397975461841e-11,2.652766917532695e-10,0.008687804182756227,0.00020955933972117182,0.9897231480843431,3.0109383085824963e-05,7.935943130913324e-06,4.197776493668158e-05,0.0006837321515510504,6.893779551733319e-06,0.0002367386850827127,7.910615986556516e-09,2.8778272861692574e-09,3.1210346926089847e-09,1.4169591845837976e-05,0.9523155168246453,0.015371114793963787,0.00039738059978480756,3.016255652175321e-05,1.1786909243010475e-05,7.414681990363682e-07,2.3447878996815036e-05,2.4308167612584287e-06,9.530701221823424e-06,0.0004652069126476334,0.9458960540105446,0.9999908748779068,0.999994561968536,0.994885252664544,0.9995976007958303,0.9992274939421187,1.6333974909431852e-07,1.9535999554500485e-07,8.375140297263159e-07,1.4002602386744976e-06,1.909073840857705e-06,0.004138265403173215,0.00267593852725801,0.00031993919879903695,8.553128122037322e-05,0.0035762160346527565,0.0032473431369779227,0.002381515408427924,8.849240285590364e-05,6.703641393393964e-06,3.073960270471626e-07,0.0006897414869436115,0.00015875290135674056,9.992504107264686e-07,4.591070170107434e-06,0.0002034603657484473,1.0553729728918491e-06,8.767805367755949e-05,1.4714799354182771e-06,2.0444767816068394e-06,2.04729420898172e-08,1.4771867841572327e-05,1.5922466490655698e-08,1.5754849148972875e-06,0.00015035906457424656,1.254756765628846e-06,1.6724808618293067e-07,1.041277194867222e-05,1.0217016228793426e-05,0.0002141705020967018,0.00019751043115868446,0.99990962025113,0.999820665209057,0.9999231015340772,0.9999230142980303,0.9998939235028569 -vegetal,rgb,0.9999999985212868,0.9999999985184118,0.9999999988547608,0.9999999990581747,0.999999998551693,0.996747784499405,0.9562884379882333,0.9999674643925979,0.9923731852036378,0.9796707542123988,0.9998185563054952,0.9266148416551621,0.7557214375801927,0.7250614272168696,0.9999906206512523,0.999991014477986,0.9999913165608361,0.9999915668950178,0.9999900259612367,0.9999999978065766,0.9999999983553818,0.9999999983332788,0.9999999983895449,0.9999999989869086,7.6419177246845e-10,2.876196396018881e-09,3.1640140245064484e-09,8.503273021990687e-09,1.146002552922783e-06,0.9999999929524708,0.9999999895323061,0.999999991821558,0.9999999902300815,0.9999999897260182,0.9999999870763607,5.984147790186421e-35,4.645575114464709e-35,6.883802360932509e-36,1.6684826962860212e-35,2.696569316687212e-36,0.9999988421338719,0.9999979727550498,0.9999981116685037,0.9999982738916963,0.9999947690715338,6.214778434640842e-09,2.187204638352488e-09,2.0863765391789123e-09,6.562092361375173e-10,0.9991457152984905,0.9959212794302535,0.9859875737872928,0.9986545325291156,0.9981878787305858,1.2891345232352539e-09,3.7114097272736648e-09,1.2683359562904458e-11,0.19354247982245873,0.042789007401234425,0.0009510164036202538,0.0004554049535333813,1.270461489063176e-05,5.270877981409198e-06,1.5798469181961015e-06,3.100053074530349e-07,3.0930842816111787e-07,0.0013563788358920217,0.03248063174433506,0.0006984327914344272,0.037159629166340566,0.0005384560286714978,4.991399132339214e-33,2.5904057231808336e-33,4.633530355452962e-35,4.6390438488262115e-35,0.9999999988222188,0.9999999988232713,0.9999999989063808,0.9999999991228123,0.9999999990451967 -vegetal,shape,0.7964872050029341,0.0004538890682131202,0.011283769669769407,0.0011143312513322507,0.007855692630513516,0.7676261261589661,0.011764170900629223,0.9999864257562001,0.9999515662766358,0.9998100539057682,0.9999617591771768,3.181932726780874e-05,0.38666336802163004,0.08985648661425251,0.9999997292232157,0.9999994454838008,0.9999978552643058,0.9999424742381451,0.9836484595862379,0.9724407753485694,0.9752565963444679,0.9859069269405218,0.935054528182775,0.00031161954809042126,0.001183612447955116,0.006133294929940571,0.13897251500706836,0.015842956664452748,0.0005890535690616127,0.9999532802695332,0.9998270252692035,0.999979894270156,0.9996512310440664,0.9996799033520806,0.9986055244740213,0.001798990845971151,0.0006190776178832865,0.10684201410904516,0.05535756414393513,0.0022295061729633438,1.7343047804557836e-06,1.9786593229118258e-07,2.5003411299667806e-07,5.685921479928724e-05,0.7040753337101457,0.09853685130404513,0.15902694224710834,0.7092016705512395,0.9555985901894213,0.9998268234068268,0.9998540027458269,0.9996333863009196,0.9999707205096288,0.9999728395556645,0.14513232178685198,0.010705043127081716,0.04580621419238142,0.9999129609314369,0.9999879308466454,0.9860248891024236,0.9998855500575408,0.9962826799423325,0.7186413821205128,0.6187328601757803,0.9995607201222538,0.9971965809878289,0.9893100238496387,0.03118673806563104,0.0011231375258789638,0.02220929045291962,0.31641292465184195,0.9834958095055122,0.9999190210754642,0.8077360651552075,0.9645386130592531,0.014031941533893191,2.2580787734125884e-09,0.00039441428818992136,1.4402081094461722e-07,0.016164261364485902 -vegetal,object,0.9970155333450403,0.05754611885820064,0.21378791566674077,0.10680085483235682,0.6651699151286155,0.9927018120439818,0.0009868615915696682,0.9999860595895805,0.9999582581560446,0.9998852206346632,0.9999553018578028,0.0031745049129320866,0.004882371104405752,0.016252842519970553,0.9999192457506453,0.9999855401412603,0.9999409779186623,0.9997671575212279,0.9997309807780083,0.9981111573422852,0.9973052910557079,0.9981711821690921,0.9955996921349016,0.09232651797475323,0.00028447589846305685,0.5571760351179885,0.8899596795019581,0.07587854697940756,0.00401548856073729,0.9999249669764685,0.9998355879801853,0.9999500303404638,0.9998114939078365,0.999901203138345,0.9990471552902288,3.530128477016937e-10,3.218654594036254e-10,9.334572232799132e-07,2.5148578365538945e-06,3.6112244850034033e-09,0.0010799652529155806,0.0008457698165550791,0.0005021212274610098,0.009527919112751576,0.9858678896134916,0.07237507264492482,0.23595907477801842,0.43730649714088654,0.5983041519728242,0.9998954998684803,0.9998126151273754,0.9996803169564673,0.9999426643095156,0.999964777245601,0.07519895396168688,0.014948601834183516,0.02299123609875417,0.9990130836197813,0.9992152410984101,0.5186389267227035,0.9948385547113607,0.6673662431649207,0.8470886764550234,0.9128632208589612,0.9940021317644641,0.9837933361236207,0.9993626910585088,0.8174410725446563,0.19819682464830954,0.04007187116455362,0.4152686239282191,0.019243254675483604,0.4334935812414598,0.00033311937171446953,0.0004954620966775192,0.72366971836103,0.0005639218380513233,0.015656248466394757,0.0015566867464377851,0.25782732712983597 -verde,rgb,0.9999999999999976,1.0,0.9999999999999998,1.0,1.0,0.5115342955788704,0.3112159121256392,0.0001542384316422201,3.444886205154246e-11,2.4342038713429457e-12,2.3297971113139446e-06,1.2385644617816049e-09,5.5844547809630644e-11,3.4335287719960325e-11,0.08938807378181235,0.11525349688857747,0.1407369532648618,0.16656042928455123,0.10304032280727082,1.0,1.0,1.0,1.0,1.0,1.5532405457325582e-31,3.1264940834307964e-30,2.9721908706207093e-30,2.2849029097992534e-29,1.3664448498305006e-25,0.9999999999995683,0.9999999999998892,0.9999999999997045,0.9999999999995706,0.9999999999993536,0.9999999999980786,1.1456200022124397e-77,1.38709511865492e-77,1.5198171010746108e-79,1.507915625685598e-78,8.293956841235283e-80,0.9872402158975575,0.9127016562183242,0.9521325640336676,0.978369105717791,0.7096943737998336,5.3796782660253796e-14,7.0300632496836785e-15,6.242893125490725e-15,5.831168377233208e-16,0.9999999999750213,0.9999999997968336,0.9999999992374198,0.9999999998860196,0.9999999997544742,1.3365592552816067e-19,1.6226479055585117e-20,1.5061911830568928e-22,2.8387606506296935e-16,1.3195723637476642e-17,1.5376456751748815e-21,1.146658043138198e-21,1.378973675659617e-24,2.249021510474808e-22,1.687342816843888e-23,1.707020427973779e-25,1.7409109870381486e-25,0.01164098920773984,0.1646925798805207,0.0038148946312363194,0.15318745649337423,0.0018982802380322038,1.1727182808839927e-69,2.7034947616239427e-70,2.32422889474484e-73,1.3567815781772174e-73,1.0,1.0,1.0,0.9999999999999998,1.0 -verde,shape,0.9997823163467732,0.9990465610254305,0.9998382564407361,0.9997128712412049,0.9987050181483281,0.9999999998495714,0.6198760629546648,0.989686925622162,0.02020937939652263,0.9999999831186227,0.9999387188561564,0.9999999609467547,0.9999999650182932,0.010521551233231972,0.00018237313941767862,0.5125774374427596,0.3454389075788304,0.0011128562298671498,0.0001740277236511626,0.9999969399880823,0.9998728677616441,0.9999873900900927,0.9998503511841254,0.9977646637333699,0.9999903880171871,0.8973161824212097,0.9991805282267638,0.9996390191414055,0.992336984626953,0.9989387056090978,0.9998453330437681,0.9983654199745255,0.9999999622046537,0.9989142927841284,0.9999803415219546,0.6298454994472226,0.8816051812609397,0.9730784308978973,0.999990790181907,0.1533169534229236,0.9996632271708161,0.999991052609276,0.9999999740980035,0.9995786342360417,0.9998329381900002,0.0006841017563318648,1.3445109183083536e-05,4.056848412101682e-05,2.2295965715426557e-05,0.9995470020183818,0.999610381040522,0.9999721182440721,0.9998421280160973,0.9997467835131335,8.581732954626908e-08,4.231863395213933e-07,9.37934766604886e-05,0.002662997649788968,0.7246489650485549,0.9999983081166514,0.9999999919016095,0.8525248226653582,3.4124186632800754e-05,1.0944373479213078e-07,5.8955999682487716e-08,0.3046852819227067,0.22207102783070914,0.001841783118753773,0.999546725628665,0.18044604712159004,0.142055425665141,3.4381969651616417e-06,0.008038491439166517,4.77272021189947e-07,0.0013169804528206774,0.9999126422823371,0.9995650196321728,0.9996555540180594,0.9996436741675111,0.999301882276358 -verde,object,0.9999999999999889,0.9999999999831441,0.99999999966611,0.9999999986212826,0.9999999995282876,0.8966083485589864,0.6967561624892824,0.9999999999863383,0.9999999896017103,0.9999999946022564,0.9999999977768448,0.3672324504544529,0.007139203239373346,5.774602899920497e-06,6.764327112625747e-05,0.008201764108873142,0.0033917360106813744,0.0005191921018262419,0.000373605652362593,0.9999999987668848,0.9999999999991533,0.999999999987151,0.9999999999395124,0.9999836870866307,0.9677041437139292,0.8045316124166026,0.025105776329725393,0.15959769391796125,0.04033398688254384,0.9997174022726582,0.9999888280709032,0.999701863282219,0.9999923329871973,0.9997531206528899,0.9996479655096585,3.6789945434044e-19,5.358844709834377e-20,4.972113356241711e-20,2.104433491111089e-18,3.2020848682631743e-20,0.9999837343587231,0.9999569016418002,0.9999526438723373,0.9999901261271872,0.9999979702536063,6.635071454268746e-06,2.43784841692571e-06,3.1669226847930134e-05,3.0589665540384625e-05,0.9999867624656115,0.9999932923534695,0.9999989928349738,0.9999983963397507,0.999999600546919,6.402668273324976e-07,2.1413819008086035e-09,5.236080024739881e-08,0.01577879674860564,0.0011220416389320527,1.2025591842370804e-05,0.00018161953028212935,1.3123394769308286e-06,3.4983945165349603e-10,9.65757654944552e-11,3.412367358005017e-10,2.426781756903878e-09,0.9689668936610227,0.329527997293876,0.8028063548958378,0.8441658789825585,0.9867755755748299,4.610172242044409e-16,1.2779977598977793e-16,2.5216894856814985e-18,1.4211796566245445e-17,0.9999999910192102,0.9999965765053436,0.9999878686131433,0.999830933024392,0.9999901755140665 -verdura,rgb,0.9961346372697906,0.9906145705631489,0.9950586823159346,0.9962205849427168,0.9905940376066033,0.7420825158905127,0.17309142619116896,0.9995276426122146,0.9973669323007699,0.9962618488337008,0.9991620856200997,0.9627122454171831,0.9320254398585698,0.9294835914728338,0.9994641314306766,0.9994526043002065,0.9994426649337801,0.9994335230613696,0.9994170844979843,0.9739858954068933,0.9846807207268815,0.9846640136028557,0.9886871873662783,0.9955649994710517,2.444830763252905e-06,4.714291746954196e-06,5.439993970357205e-06,9.547535237078727e-06,0.00026368708815695827,0.9984665332159233,0.996577737791892,0.9980130772696747,0.9978796487264693,0.9980263063553975,0.9982021310918142,7.251541529942943e-19,5.250373110658365e-19,2.2061760550110536e-19,3.128136935071293e-19,9.431467983324296e-20,0.9996354773209221,0.99961566712276,0.9995855771075997,0.9995414795540875,0.9993594446607527,3.3535004618885844e-08,1.9121277261525037e-08,1.879794110782168e-08,1.0453664399763909e-08,0.006009051137475559,0.0020075174677874367,0.0007414594533672069,0.005979795314749785,0.005504711711064035,2.880285644198773e-07,1.7432146666214536e-06,1.2109686791534028e-08,0.9491645082743311,0.8847092363835407,0.5960111208866853,0.441676040765062,0.10286114083028643,0.013701328485052044,0.007692103435983515,0.004609769070444735,0.004576726152167887,1.1741793293623894e-05,0.00018913691947311655,7.837405933343212e-06,0.00022790378992575166,7.2716132111173875e-06,6.13562541678293e-19,4.474353048494539e-19,3.7588226653586137e-20,4.368621041342407e-20,0.9925630757624463,0.9924376526623764,0.9936826347920394,0.9969405455630594,0.9956732058073453 -verdura,shape,0.05952948716425815,0.00014148918105149214,0.0033464092012101877,2.451523609750517e-05,1.901061392301712e-05,0.9997015264257939,0.00032284281331269594,0.9999970057711017,0.9999928116572259,0.9999990797172134,0.9997326649026677,0.9985272224983262,0.9988537160011601,0.8748624120981083,0.9999990311345229,0.9999950112301342,0.9999803596504361,0.9991191794736198,0.99919448333812,2.3306517470265243e-05,0.002900011821034566,0.00020078261080912638,0.0005521582907241936,6.099499558427707e-06,0.00026302588440862675,0.009298963052229586,0.5398625228626954,0.28495887486178684,0.0005537504850849609,0.9999213550269698,0.9998560659968209,0.9999874282886297,0.9996565426511366,0.9994993412679817,0.9984978822951384,2.952559036483044e-05,7.980330397719514e-05,0.020083837222043117,0.02260558986064682,0.001805461146002504,0.9999916042131751,0.9998229721562467,0.9926183802071876,0.04234892616343245,0.9984765872834189,1.4125256488678923e-05,0.00016392394052318468,0.00010800498822370719,9.445377015428498e-05,7.997755252196146e-06,1.4689801739586384e-06,7.809297440672917e-07,3.43870666916944e-07,1.1433333171765932e-06,0.00014009250799551694,0.00021441137123681488,4.238730153566146e-05,0.0006357055046658442,0.00029208738851706315,5.197268362846173e-06,0.027388264633320576,1.1855653717525444e-05,0.001874311932256108,0.0005012959032603535,0.0006087204088382397,0.02214727464742154,0.11475574557876872,0.01703026577673741,0.025493829455268503,0.0008479963465831984,0.005717623716621756,0.0013013687341466818,0.009344096918020645,0.004893107889857905,1.9197433447127347e-06,0.0018937807313443194,1.2130114621346542e-06,1.209595124772276e-05,0.0002568121993072561,0.0010297946006804332 -verdura,object,0.5950350352677781,0.0017053208328130316,0.03279477581564007,0.0004059904011573426,0.0008070449214971257,0.9999813705948025,0.0011779742449475011,0.9999948343283106,0.9999836809526541,0.9999979346342056,0.9998544419937618,0.9997080659694095,0.9985843931196705,0.9511372005098584,0.9999975330018319,0.9999969440629206,0.9999883986509251,0.9997905293607293,0.9999665999491497,0.0006106741418170165,0.014169172676515622,0.0010148601852169546,0.0025980914065779305,0.0003762739687814427,0.0001322327939271517,0.0032892760419759833,0.2637129394005965,0.05829415956503608,0.0012429565631020478,0.9999362316301494,0.9998607667086101,0.9999779395208065,0.9997779008284627,0.9997302411526447,0.9987698885434207,4.2496152741851275e-08,6.75256204492269e-08,7.070321683917642e-05,4.520120397952265e-05,2.185873673098051e-06,0.9999839493243095,0.9999388922016168,0.9990237516340489,0.6008282105240202,0.9989162818215876,9.905727911920543e-06,4.852900193341186e-05,2.039907378379975e-05,2.311074107721228e-05,2.1733721407269524e-05,4.597013618984301e-06,2.293382245189929e-06,1.8555776035515235e-06,5.875685178033823e-06,7.998396604391943e-05,0.0002158859569588568,1.719568570885547e-05,0.008924486097587513,0.003906984462121068,0.0001283825255543816,0.15909187119338505,0.00011610424811422267,0.03218851086256107,0.010024303400460585,0.007348050947127188,0.07613683854238154,0.10335471081341255,0.019969807079122364,0.02513401877476576,0.000522346752395674,0.0007230997734339686,6.480575705759328e-06,3.672515982699471e-05,5.640049924189092e-06,3.314717426455746e-08,0.08340203289031858,0.00023120080632718748,0.000291219103259763,0.0032778397033601824,0.005358632973291378 -zanahoria,rgb,2.8561533400670526e-11,4.611866336143317e-11,3.022648872999114e-10,1.7513975148411047e-07,1.0980388100568094e-07,0.9996447693664379,0.9978713323568451,0.004755178996096125,7.211963842590262e-05,3.222430048019941e-05,0.021553143435267434,0.9964754705275972,0.9955549223768758,0.9949901110907129,0.8479145041612977,0.8759110147170674,0.8947716321223274,0.9088082203460758,0.9000005055555278,4.2255075030983884e-10,1.786375167371068e-09,3.431322093743097e-09,9.767477324622122e-08,2.115103639156036e-07,3.0972058515226436e-46,2.09918758859633e-45,3.8358275870324046e-45,2.3069311735669994e-44,2.8887878382894682e-39,0.2913937990349917,0.2242570856750645,0.29311266810540954,0.37653820364120133,0.4366378394492311,0.6113670806570515,6.988373788808359e-24,6.2760278608996015e-24,6.925288262026405e-25,2.0279802033043318e-24,3.3947491024011764e-25,0.9063898287628714,0.8741404583216793,0.9234437732624732,0.9574542630325256,0.9740774031698167,3.337339219766516e-05,1.910141033846022e-05,1.9002877930479595e-05,1.0978549074866482e-05,4.599126644196118e-05,2.2099927085323986e-05,6.7621442002536816e-06,0.00013994356982409227,0.00020339064790959023,0.005903535021063068,0.05784436488029498,0.00011056823340645974,0.1175012927277961,0.19037261126625699,0.026058860020394918,0.09689045763886502,0.055067742540570536,0.8115073444518023,0.6860134918180664,0.3349180768354699,0.33733959332006785,0.000821752499908176,0.04267510851368739,0.0005784820630667243,0.05922969770959557,0.0006460387926514709,1.654425994354458e-21,8.589670952037708e-22,1.3555057801878467e-23,1.3905875060799976e-23,1.6933107239274251e-09,3.0479808168322217e-09,1.0019188845825155e-08,1.3734716487603793e-08,1.559751411674115e-08 -zanahoria,shape,0.011682675591592499,0.013564078402954538,0.1872666921200819,0.031871908166208614,0.0005745710784600079,0.0003570744041807328,0.9655498085187681,0.8495381586796089,0.7372209052679479,0.7021504886075897,0.18727360342721924,0.999990868921647,0.9999656522047731,0.9999322146400869,0.008265058961954064,0.0066240405980918255,0.007445616999724029,0.0007301333300624757,2.0268804902979445e-05,1.930027380158895e-06,3.5184301657236124e-05,6.025530891509031e-05,3.376241883532138e-05,4.034249587303171e-07,0.0004924514011330384,8.516789118176259e-06,3.973870983665031e-06,4.991435799359062e-05,3.249898917298411e-05,0.06380675494017231,0.04937523441821978,0.009529357867315038,0.10331650807086723,0.00112232521609079,8.207737384123793e-05,5.7693572991595785e-05,3.3437198056973035e-05,8.004968218057548e-05,9.416787351335274e-06,5.925346593817588e-07,0.45856091250763303,0.02430484221073167,0.0025973906891384384,0.005007305179962604,0.0022869292414139496,5.237269755567745e-07,7.488912364574084e-07,1.0776040062280308e-06,1.3027403639865728e-06,5.929286460951227e-07,9.519999159707756e-07,7.481516081686736e-07,1.476050628487258e-06,6.251242271452731e-07,3.74999309593527e-06,4.0632913645417293e-07,2.4849757553087247e-07,5.663176247917128e-06,2.138864010151867e-06,3.547074343465416e-06,2.3281410100662817e-06,7.154963208401968e-07,8.670676360560139e-07,3.803232481537142e-05,4.747938600812776e-05,1.210939072833851e-05,3.4661906854746006e-05,5.6730913184970355e-06,1.681640392841661e-06,2.0998357341180044e-06,3.7506143821128345e-06,0.0002290112445600806,1.5317355188508216e-05,7.42557566053918e-05,2.3916465709021906e-05,0.23553741790353636,0.10959296826594303,0.0038871211969407162,0.5304810131746472,4.713216866140443e-05 -zanahoria,object,0.005244282362786869,0.0016369860906314652,0.12200898862460373,0.03628687255197528,0.0007153040719777355,0.0027958524041961827,0.8603018293563421,0.9657616177899928,0.9729193476075113,0.9429612614613118,0.4727312418353055,0.9999942426567353,0.9999770083307683,0.9999596145166764,0.8807816345740115,0.6961849506072431,0.7370726844444742,0.37461070767851246,0.005143338992752701,3.338686110122503e-07,1.3480237026445172e-06,1.5546747016517928e-06,1.0697953724355785e-06,9.041301750312529e-07,0.25178169782761106,0.017733006618150887,0.018697935486830235,0.07592242347979863,0.036288714885981274,0.46277819519054647,0.19470798426747754,0.136152220888932,0.191247472416491,0.009227958936229904,0.0002840216073820713,0.0024460594318004487,0.0018398457143554339,0.0036945774353707482,0.00040636940947556024,4.669223744431366e-05,0.7787595540108633,0.33834399832791534,0.06610667403593332,0.04537078988421853,0.018903737758974058,2.6607322349684838e-08,3.9226883718629684e-08,2.2898420990006447e-08,2.051961484149366e-08,9.818832384917157e-09,9.15833221433359e-09,3.4809915556670814e-09,8.939643256983936e-09,3.0065513542975455e-09,2.9456666769446125e-07,5.529888929954208e-07,3.757325293243675e-08,0.00017430893335400368,6.891961933484042e-05,0.00021068033226770378,5.8160275512536124e-05,2.7363174775063588e-05,8.055129051977318e-05,0.0007570381039283716,0.0006560620949164511,0.0003013974555327066,3.1044291649176134e-07,2.7969062401683237e-07,3.4141427818039593e-08,5.5107549188006194e-08,2.1491892363106673e-08,1.5789695713445032e-05,4.594066473407489e-06,1.7077568145609473e-05,3.6609709041703177e-06,0.25499538825561646,0.1564430868687807,0.02712724778573719,0.6989124081870075,0.00045532612022254853 diff --git a/testResults/testing_spanish/NoOfDataPoints/6000/groundTruthPredictionTrain.csv b/testResults/testing_spanish/NoOfDataPoints/6000/groundTruthPredictionTrain.csv deleted file mode 100644 index 510ecc0..0000000 --- a/testResults/testing_spanish/NoOfDataPoints/6000/groundTruthPredictionTrain.csv +++ /dev/null @@ -1,227 +0,0 @@ -Token,Type,1-tomato/tomato_2,1-semicylinder/semicylinder_4,1-cabbage/cabbage_1,0-cube/cube_3,1-cabbage/cabbage_3,0-cube/cube_1,0-cube/cube_4,0-lemon/lemon_1,0-lemon/lemon_3,0-lemon/lemon_4,0-corn/corn_1,0-corn/corn_2,0-corn/corn_3,0-semicylinder/semicylinder_4,0-semicylinder/semicylinder_1,0-semicylinder/semicylinder_2,1-carrot/carrot_3,1-carrot/carrot_2,1-carrot/carrot_1,0-banana/banana_2,4-carrot/carrot_1,1-plum/plum_4,3-arch/arch_1,1-plum/plum_1,2-lime/lime_2,1-plum/plum_2,3-tomato/tomato_3,3-lime/lime_2,3-cuboid/cuboid_3,3-cuboid/cuboid_2,3-cuboid/cuboid_1,1-cabbage/cabbage_2,1-arch/arch_1,3-orange/orange_3,1-arch/arch_2,1-arch/arch_4,2-banana/banana_1,1-potato/potato_2,2-banana/banana_4,0-cylinder/cylinder_1,0-cylinder/cylinder_3,0-cylinder/cylinder_4,0-cuboid/cuboid_1,0-cuboid/cuboid_2,0-cuboid/cuboid_3,2-cabbage/cabbage_2,2-cabbage/cabbage_3,2-cabbage/cabbage_1,2-cube/cube_4,3-orange/orange_2,2-cube/cube_1,2-cube/cube_3,3-lemon/lemon_3,3-triangle/triangle_2,3-triangle/triangle_1,0-arch/arch_1,1-cucumber/cucumber_1,1-cucumber/cucumber_2,2-corn/corn_2,2-corn/corn_3,2-corn/corn_1,5-carrot/carrot_1,3-arch/arch_4,2-cylinder/cylinder_4,4-cuboid/cuboid_2,4-plum/plum_1,4-plum/plum_2,1-lemon/lemon_4,1-lemon/lemon_1,1-lemon/lemon_3,1-cylinder/cylinder_1,4-semicylinder/semicylinder_1,1-cylinder/cylinder_3,3-lemon/lemon_4,4-semicylinder/semicylinder_4,1-cylinder/cylinder_4,2-plum/plum_2,2-plum/plum_1,2-plum/plum_4,2-cucumber/cucumber_2,1-tomato/tomato_3,2-cucumber/cucumber_1,1-tomato/tomato_4,2-cucumber/cucumber_4,2-lemon/lemon_3,0-tomato/tomato_4,4-cuboid/cuboid_3,0-potato/potato_2,0-tomato/tomato_2,0-tomato/tomato_3,2-lemon/lemon_1,3-semicylinder/semicylinder_2,0-cucumber/cucumber_1,0-cucumber/cucumber_2,0-cucumber/cucumber_4,1-cucumber/cucumber_4,1-cuboid/cuboid_3,3-cucumber/cucumber_4,3-cucumber/cucumber_2,3-cucumber/cucumber_1,4-cucumber/cucumber_4,0-triangle/triangle_1,0-triangle/triangle_2,0-triangle/triangle_4,4-cucumber/cucumber_1,2-cuboid/cuboid_1,1-triangle/triangle_1,0-plum/plum_1,0-plum/plum_2,1-triangle/triangle_2,0-plum/plum_4,1-triangle/triangle_4,3-semicylinder/semicylinder_1,0-eggplant/eggplant_3,3-eggplant/eggplant_3,3-eggplant/eggplant_1,2-orange/orange_4,3-eggplant/eggplant_4,2-eggplant/eggplant_3,4-cabbage/cabbage_2,4-cabbage/cabbage_3,2-eggplant/eggplant_4,2-orange/orange_2,3-triangle/triangle_4,0-eggplant/eggplant_4,0-banana/banana_4,1-eggplant/eggplant_4,0-orange/orange_4,0-orange/orange_2,0-orange/orange_3,3-banana/banana_4,2-orange/orange_3,4-cuboid/cuboid_1,2-lemon/lemon_4,3-orange/orange_4,2-carrot/carrot_1,2-carrot/carrot_2,2-carrot/carrot_3,1-orange/orange_2,2-cuboid/cuboid_2,3-arch/arch_2,4-arch/arch_4,4-cylinder/cylinder_1,4-cylinder/cylinder_3,1-banana/banana_2,1-banana/banana_1,1-banana/banana_4,3-plum/plum_4,3-plum/plum_2,3-plum/plum_1,4-triangle/triangle_4,1-potato/potato_3,2-cuboid/cuboid_3,1-corn/corn_1,4-triangle/triangle_1,1-corn/corn_3,1-corn/corn_2,0-lime/lime_2,0-lime/lime_1,3-carrot/carrot_1,0-lime/lime_4,3-carrot/carrot_2,0-arch/arch_4,2-lime/lime_4,3-lime/lime_4,3-lime/lime_1,2-lime/lime_1,4-corn/corn_2,4-corn/corn_3,1-cube/cube_3,0-potato/potato_3,1-cube/cube_1,1-potato/potato_4,5-cuboid/cuboid_3,0-potato/potato_4,1-cube/cube_4,4-semicylinder/semicylinder_2,2-semicylinder/semicylinder_1,1-lime/lime_2,1-lime/lime_1,1-lime/lime_4,2-arch/arch_4,2-arch/arch_2,2-arch/arch_1,1-cuboid/cuboid_1,4-cube/cube_4,4-cube/cube_3,3-semicylinder/semicylinder_4,3-corn/corn_3,3-corn/corn_2,3-corn/corn_1,2-tomato/tomato_4,2-tomato/tomato_2,0-banana/banana_1,2-potato/potato_4,3-cube/cube_4,1-orange/orange_4,0-eggplant/eggplant_1,3-cube/cube_1,4-triangle/triangle_2,3-cube/cube_3,2-potato/potato_3,5-lime/lime_1,2-tomato/tomato_3,2-eggplant/eggplant_1,2-triangle/triangle_2,2-triangle/triangle_1,2-triangle/triangle_4,1-semicylinder/semicylinder_1,3-tomato/tomato_2,1-orange/orange_3,2-potato/potato_2,4-lime/lime_4,5-corn/corn_2,4-lime/lime_1,1-eggplant/eggplant_1,1-eggplant/eggplant_3,1-semicylinder/semicylinder_2,0-cabbage/cabbage_1,0-cabbage/cabbage_2,0-cabbage/cabbage_3,3-cylinder/cylinder_3,3-cylinder/cylinder_1,3-cylinder/cylinder_4,0-carrot/carrot_2,0-carrot/carrot_3,2-semicylinder/semicylinder_4,0-carrot/carrot_1,2-semicylinder/semicylinder_2,5-cabbage/cabbage_3,0-arch/arch_2,3-tomato/tomato_4,2-cylinder/cylinder_3,2-cylinder/cylinder_1,3-cabbage/cabbage_3,3-cabbage/cabbage_2,3-cabbage/cabbage_1,1-cuboid/cuboid_2,3-potato/potato_4,3-potato/potato_3,3-potato/potato_2,4-arch/arch_2,4-eggplant/eggplant_1,4-eggplant/eggplant_3 -,,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,nan,plum,nan,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,nan,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,plum,plum,plum,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan -a,rgb,0.103586400305439,0.5236509083066037,0.8881474878172234,0.5433290393599179,0.888400910531825,0.3791478842870713,0.14975464413464878,0.2717838159933441,0.3036424192830086,0.31583529102390895,0.8721964162479589,0.8835362372247368,0.8817741755436181,0.5283408054725528,0.45153597770697973,0.0319863947807685,0.8444661657359084,0.8495518132706655,0.8423108006608379,0.7649983569215401,0.8007195850162401,0.7152754745745652,0.3766014541345031,0.7015470211458898,0.5310502199047552,0.8522367964736052,0.06479580922860234,0.5404262857440326,0.03737658771691063,0.6752103008316673,0.3802669892114045,0.888879960362182,0.39327401836563786,0.37232437607549723,0.5640029252123255,0.03479688947115432,0.7889135879704369,0.7525689550695898,0.5146113550502092,0.45365324248343075,0.5906063662809592,0.7350556059505688,0.392296836610633,0.6708363206490725,0.08539557002723547,0.8860479299820925,0.8886825566306442,0.8881151782719742,0.08290281926040399,0.5811634601495477,0.3793779414847832,0.5851876978743656,0.2989971456065943,0.4142193076892468,0.057707743938702254,0.44142951315512496,0.79596444968373,0.8074594423608241,0.882922317399147,0.8798280438629621,0.872244534666713,0.7879463096877427,0.023983614972084018,0.7563108559454366,0.699570721096946,0.6605615128511473,0.8259069945392947,0.2959222623002489,0.27783310863657085,0.295574554883421,0.40666771503445637,0.5821839170560562,0.6067921726612954,0.2923685369719982,0.5075500791268298,0.7381880434261396,0.8429345251751347,0.6848473149188143,0.7142428126796172,0.8148733335140359,0.0739219192852612,0.7994866399033607,0.6493864661608447,0.8266048990619328,0.27971918310162525,0.6676559221123175,0.03554821656142187,0.7583543435842948,0.14946717859743072,0.0738228708670398,0.2700501270078744,0.017439331434341114,0.7822577049733457,0.8142760511189127,0.8197392017737497,0.8251538295934262,0.04290970238534919,0.8269874600556996,0.7972647245765816,0.8246761970524814,0.8338387833207881,0.19577794925307127,0.45699417393315145,0.5586768063262164,0.8379205003953414,0.3800186750262258,0.10255554404552197,0.707293533470772,0.8668562719044856,0.4570374389306721,0.8471832036431601,0.5760458579009087,0.5129321469028357,0.8831999174412082,0.8771959107434998,0.8738182702256111,0.3617810232526816,0.8626503724258908,0.8839361433373001,0.8844291781483195,0.8889434690999215,0.8711488558404977,0.5574226352795024,0.6098103055393395,0.8812655135092873,0.6544401775570305,0.8720559414219196,0.36702874131069074,0.6597847720556879,0.5273187846455737,0.7817491515940787,0.4180495325841278,0.37469298162836956,0.29282711820376756,0.36712936783252514,0.8301974672645744,0.8378774512014526,0.841730265319688,0.6188867219255503,0.681425598542944,0.5779890376109851,0.026623810753561388,0.4062868209750217,0.633902510526695,0.7424660274511066,0.78960016675132,0.7453971477127291,0.70792463927959,0.8316247251314822,0.6716202861100624,0.6154127575153383,0.6745762358348752,0.037822406273530784,0.8716898801941274,0.05708691766840581,0.8801869068619042,0.8823991146032678,0.5352301799476852,0.6078228261838616,0.828969785371619,0.47918919015637346,0.8318294434896623,0.043869631355429324,0.5398085246595049,0.509735346062769,0.47420251971767213,0.5130497574553476,0.8810639622958545,0.8794532295635086,0.5637647946023389,0.6891566160429327,0.37974995482653684,0.6200068841986928,0.027703983711022426,0.6960174118703666,0.1477110609158385,0.01639722625302004,0.497453386601413,0.44503373114585515,0.5309283992136365,0.5381220125824545,0.030502650444125215,0.5680929916085077,0.3826890979617062,0.38039579939880025,0.06663137082628875,0.6990015414422841,0.5248533673802972,0.8795160633172352,0.8823359397963197,0.8715521234532467,0.43665553023731557,0.09775265662743673,0.7983021191930275,0.5536429533362602,0.07908023947739014,0.3818051463000014,0.8793601400458652,0.38889385383548825,0.4146587452221656,0.6189491000396911,0.6700904501008266,0.5172956952282377,0.06677324329972198,0.8653257246632171,0.43513474286200365,0.05899524884401492,0.5931059134994145,0.46334672549007244,0.08023700137386856,0.5272869308668495,0.737897604657348,0.5379897797633052,0.8814035232818432,0.4563411235557811,0.8756897310593779,0.8832725329330557,0.01905562468757483,0.8876601489396638,0.8889407590890577,0.888698274635697,0.6294437893987613,0.40692477714292336,0.7661951830677387,0.8503369677652688,0.8526016337255748,0.5237338200402352,0.844864544517712,0.018811264702873875,0.888942011257925,0.5143313808505927,0.5435917968398186,0.613591396211775,0.4487265797031813,0.8888410265254925,0.8813896363899995,0.8849281203407573,0.6888528159367678,0.5169177401744515,0.6399674465690686,0.7177443158170975,0.5891739399527999,0.8650468509351578,0.8674697212045135 -a,shape,0.9999980114526222,0.999961192954059,0.5866436174521497,0.0007965682022573795,0.00048593252471705524,0.0005402118490646923,0.00020056753553617665,0.9999992458940503,0.9996754800917771,0.9999750393437995,0.9999716559444713,0.9998567649399156,0.999998845248285,0.9999997652668726,0.9995954842557981,0.013632198109248391,0.04469161891837909,0.4482714366016535,0.5947641832735241,0.03635905409700596,5.113812883641217e-08,0.9986127693211985,3.0303948627885308e-05,0.9535175176683452,0.9996946900004383,0.9869468977200684,0.5464885488923088,0.9996739652098946,0.0005829117689427146,0.00018336906638264947,0.6241845572558823,0.5811330549945847,2.1022805890786092e-07,0.9124341222390618,0.00036683712106780575,0.010836030513189094,0.00032940153856231513,0.9901500177589599,0.6486142516184245,0.0010756711764519783,0.000605698855270548,0.018606433059634928,0.013788050819704885,0.0003016662676558494,0.00011836893036409782,0.003268246423864235,0.19189360347516998,0.11145619653771804,0.004157885115780522,0.9126872531140783,0.00031831929566972813,0.00010960692155952298,0.9925317140004186,0.0024058417913609526,0.9999852112469604,5.0134533602865315e-06,0.9993580674785271,0.9999788760836876,0.9999125287162104,0.9999982854693612,0.9999998041122076,8.7326414861491e-05,0.003433910393949172,0.9999998923774658,0.28264703016637804,0.9273962666908133,0.9832335675906154,0.9998449723700616,0.9966593977765197,0.9999985285777883,0.00026250121714681035,0.9999900161823847,0.9998094824131227,0.7399942555576987,0.9998807153292136,0.9999604909718706,0.5951591682922005,0.8226331367471706,0.9999138932407935,0.0002807075960220649,0.9919542009405995,0.01855549869807006,0.9972939801077385,0.9846755496435186,0.13258748978603252,0.9996396581503129,5.3760747216176805e-05,0.8531627639426688,0.9999839207334895,0.9999976085501744,0.9586185753542865,0.9999996572731658,0.9884055883233785,0.8620012771117106,0.9878652412830622,0.9999946095533615,0.00012075793840687781,0.9979715078679838,0.00011896816745236722,0.9430716329335652,0.05291647670342002,0.02184313401647672,0.00015939000584810727,0.002660638795421308,2.3699886683766334e-06,0.00024308795801228217,0.9994653627220117,0.9795817931405861,0.25882720650661456,4.196683260817199e-05,0.9995051311317985,0.0002512219770789128,0.9998208454201949,4.462320761348407e-06,0.0001130965353219618,0.00038775062736979264,0.6067566810660361,0.1934061922361395,0.9998728306910877,0.998067772104665,0.0011675678795793937,0.019195137436186217,0.9628835910753741,0.7546488252629798,2.6490559031170912e-05,0.9987159349422441,4.5426497498971125e-05,0.12588889584694135,0.993954911655741,0.9624529628463571,0.9999961897683034,0.8777911731824095,0.07974333388595582,0.9960913380740407,0.715319129144013,1.0761895547415561e-06,4.126584689653509e-05,3.008795206090503e-06,0.9217050226077459,0.1333093465628849,0.2720973185598403,0.0016871364514511912,0.00036193772296187624,0.020528291995804065,0.9999853691649522,2.1563492236629587e-05,0.4373566847729619,0.9994166009164237,0.8894997998387857,0.9998754293930081,0.4771325027491634,0.9999987505648323,0.00015210787759380032,0.999998739318746,0.002508562049620479,0.9999489484367655,0.9998567649399156,0.9988459633892036,0.9720139034154163,1.722793688242454e-06,0.9986995310162354,4.00633444678724e-06,0.0013886212831228334,0.940369728381388,0.9905070180144796,0.9916354500328937,0.8289369106908596,0.9999580292534112,0.005095872668612846,0.000302784516370934,0.9998837515172243,0.000675661040362181,0.9999918741829086,0.0005248959271444804,0.9994743662968903,0.00012919321816254456,0.9999997580383783,0.9999050671665446,0.9995774911165206,0.9993216387207048,0.9953984100858544,0.0012883424890022328,0.16693476612804967,5.254631774471769e-07,8.766733676738111e-05,0.0010868568315613686,0.002287214004332133,0.9963780808775323,0.991686135215224,0.999965472670724,8.501202098909557e-05,0.9603012785565003,0.7973296804822528,1.2806111063246062e-05,0.9996243918658206,5.3097406354076205e-05,0.49043389737407633,0.004272124620612248,0.00012243944439952487,0.99261195825251,0.0002262735570142446,0.9990971526210604,0.9998355298442458,0.6576744215776141,6.995462099485668e-06,0.001516875921139331,0.5187111309049943,0.002226399387339364,0.9997576358297072,0.9988543033474582,0.9122170048002451,0.9990112696983813,0.9977343078756763,0.999999962097121,0.9931748638791472,0.15703515308452687,0.11403959402921765,0.0010148857459584357,0.013469372215846744,0.952803727770631,0.00029131865631742087,0.9999989767642187,0.0001157528990764696,0.9999930850424413,0.0001049471960365061,4.313847793283529e-09,0.9999937672629021,0.02600305099848476,0.31688249209384245,0.017965168222813386,0.00011449571864462355,0.43540272829131865,0.9997570329450567,1.133447067259169e-05,0.0011675678795793907,0.9993506807636361,0.9954852037376257,0.0003765571206622085,0.999692694023912,0.09774233411055688,0.9959361344392046,0.5758291850191096,0.00103390049046262,9.148791296711593e-06 -a,object,0.9999932236086696,0.999999662557975,0.9629791101081829,0.00031101000259254246,0.2157163047082502,0.02922326950762754,0.00034177814995822443,0.9999997307381999,0.9998747427964481,0.9999914402484672,0.9999990119416738,0.9998978789804505,0.9999999853647177,0.9999999868443281,0.9993818168104002,0.15947661802576202,0.24232806484744215,0.9797605235720338,0.9156633037070582,0.7067217104283642,6.404312566283371e-06,0.9989191154938779,0.030099523130617308,0.9949876571233414,0.9999443566264569,0.9970392774368066,0.07716960298984521,0.9998667089029005,0.0004213112578429168,0.007751756506625423,0.9852223373866074,0.9681794372781074,1.5495901146514332e-06,0.898822162688022,9.05497624606962e-06,0.00035644474013848406,0.0004449520560575747,0.9945382583702433,0.9696795656910376,0.0011928323371463397,1.8014604829913767e-06,0.008496776519184696,0.1255992944547203,0.00233462845224551,7.489569302077138e-05,0.38270153603741885,0.9334198801362725,0.9857509517412403,0.004198628563176843,0.9549629763215138,0.04096539078852388,5.3851081767251834e-05,0.9901375168665347,0.0006742078654471159,0.9999934787608105,1.1328944644770354e-05,0.999837781883304,0.9999999955175787,0.999935854559008,0.9999999978884038,0.9999999996995101,0.12229205168517875,0.0011353147966708076,0.9999999996924704,0.9684351858447069,0.9350522944018645,0.9710607927338978,0.9998704053780957,0.9896050999777286,0.9999993612961025,0.00020369676246915876,0.9999611898978195,0.9990455683213542,0.8527835459182113,0.9999992829139279,0.9999992225920018,0.7993511989713866,0.7017761158950377,0.9998722147629578,0.015351803202048852,0.9300284912095581,0.25733471056880974,0.9991970089373041,0.9999377793793693,0.18126173072620128,0.9997663172915685,5.370961057969252e-05,0.8520438412729082,0.9999804875444293,0.9999912916200125,0.9193817389219227,0.9999963532815573,0.9986363125936447,0.9945383735042902,0.9991891177591028,0.9999997215941974,3.404754279087316e-05,0.9999301978521108,0.012174052566295583,0.9999662667054696,0.8988456041105715,0.0020047043317154268,0.0003768589401860297,2.1806584273536106e-05,0.0001549625796202585,0.02059195472545733,0.999907743424274,0.9969163037630854,0.582066013862474,1.8721869644807754e-05,0.9997274499925153,1.158958179839874e-05,0.9997484396714084,0.001156380363781163,0.0022360841936674464,0.03839413638668608,0.8821490655012908,0.9646521964697243,0.9999990528990869,0.9997883460769996,0.39185189269859716,0.8635874556078684,0.9870863427933628,0.004911776466551716,0.005294215935091879,0.9999999861525699,0.0037727195595218363,0.5512369734213728,0.9979087939044512,0.9791096317531449,0.999999978833982,0.9340338467800104,0.9170895792689826,0.9938113783410429,0.9544442792584019,3.2284428554796716e-05,2.0977288365126265e-05,3.5804170223707e-05,0.9804765266673307,0.8838680030698226,0.05543104141690177,0.00011806808690072386,0.0004795865599918927,0.0005322124066250007,0.9999999986103607,0.00013082783519090407,0.7371512322410968,0.9992664489227437,0.8901565874475218,0.9999119054948873,0.06782104580177098,0.9999999793684076,0.00010604910004700562,0.9999999981626524,0.0002806620146110569,0.9999999788876364,0.9999033994253393,0.9993630938719748,0.9899765080610352,0.0036689918577196305,0.9993466412573321,0.0002910409260274332,1.4070171795737581e-05,0.9805657926357598,0.996603663483879,0.998493558481914,0.9941187070760493,0.9999999180866219,0.17991581530840497,3.359295076487016e-05,0.9999883575188788,0.030751720717664667,0.9999978770447909,0.000493476093344288,0.9995738668338741,0.0008660304127937825,0.9999978456829529,0.9997943679275898,0.9995448827630753,0.9995031114165881,0.9986917668083191,1.319207763440968e-05,0.05679446923936564,0.0008206942174641804,0.010934183659140178,0.000335803133709897,0.0021446948981331537,0.9999880960850174,0.9999857162845509,0.9999907668810978,0.015437239293649088,0.9587396250702196,0.15215426435084964,5.372331220155841e-05,0.9997583219260171,0.000227426403513449,0.8321052455847362,0.13247498475829259,0.010098621716532492,0.9993469255127457,0.00011043060411821002,0.9993716801633798,0.9999283684616489,0.11695572501945498,0.000136071691629769,0.09440212077729243,0.3618345574397067,0.00025215677561419956,0.9995131980679371,0.9433217043904595,0.9750479071157866,0.999534311907095,0.9997323106847159,0.9999999999395406,0.9975889427504864,0.9747604545033194,0.9800759650649584,0.0032516202139268716,0.8014094607072877,0.9943630206250968,0.10613199395004286,0.999999686601906,6.918646556683951e-05,0.9999996446415128,0.0007776306667423318,1.9132434297882315e-06,0.9999997269995461,0.03482035885887887,0.11485914466268946,0.8727184691576202,1.9192535398778082e-05,0.4581304964125729,0.9984002662292764,7.600116903325107e-06,0.3991948746665154,0.9999536685726886,0.9999259491794948,0.019534932439403834,0.9997085236551815,0.22102187605955262,0.9974363210020307,0.4788436339525966,0.17932130462019438,0.00010337618891717386 -abierta,rgb,0.005591115741775021,1.0,4.173543884708869e-12,1.0,3.56611436658969e-11,0.9996054764223514,3.477296615696501e-06,0.9873608087804533,0.9504879294097013,0.5490597995837817,4.3899212609356406e-12,6.022333382337597e-12,4.340110416121617e-12,1.0,1.0,0.9996543757299228,1.5704209723763954e-15,2.4175300600429496e-15,1.7463532681437242e-15,1.045520951190598e-09,2.4562764748780752e-15,4.743835004425421e-16,0.9990839837889034,2.3199934716615115e-16,0.999971736599923,1.9512652344524088e-16,0.7804219059638811,0.9998935788015355,0.9977578448437224,0.9999999999847964,0.9995823514039331,3.862126724560444e-11,0.9981684075480824,6.907084377847857e-05,1.0,0.9988895779055359,1.9565916102501567e-10,7.588548251117962e-16,0.9549148313468255,0.903144351852914,0.9999999999999993,0.9999998200669695,0.9992428860345852,0.9999999999988167,0.005055602446807083,9.029974882672408e-11,6.757053973215633e-11,3.9409342177307645e-12,0.00907435996250563,1.2738886122239045e-06,0.9995266845443281,0.9999999999999996,0.891894605429855,0.9819311650807336,0.5003624099452963,0.9749441996377619,0.005686469950121141,0.0014766202717233752,5.97757077834607e-12,3.764548166431361e-12,3.670556523093266e-12,2.4893155569481453e-15,0.9999940290479402,0.9999960745197847,0.9999999997631939,9.820621252126805e-16,6.765794919984182e-17,0.8136570601311973,0.9765370032173601,0.9710406076917315,0.9926592074159234,0.9999999999999993,0.9999999999999962,0.7171413854002019,0.9999999999999973,0.999999419238524,1.141991384319745e-16,4.498219892575828e-16,3.9889273933734743e-16,0.0005301673303645616,0.3854407498757473,0.0019464073591669623,3.394515372819547e-12,7.584678040750101e-05,0.9825372701422639,7.748759771053213e-13,0.9987779758575458,4.728869910934923e-16,9.095787235539753e-05,0.4129347826152763,0.9836082721113008,0.9999999434032288,0.030783349868987755,0.0011445212736726925,0.000277651510502741,0.0001115924176629419,0.9849274512160905,7.101201884843004e-05,0.0031346170303395023,7.687690599030577e-05,1.3993932652589459e-05,7.713963759950825e-08,0.8604943380926424,1.0,1.1357108335942749e-05,0.9996528325695574,0.0004092734630978182,2.1376226243482365e-16,8.401054876815944e-16,0.7965245864863612,1.680637145637089e-16,0.9999999999999998,1.0,2.857234438952158e-11,5.743339172572637e-12,6.738477996153643e-12,0.0034910536129351263,9.886783842584445e-11,5.173137350992547e-12,1.0916411974994168e-13,3.177388982983724e-11,4.4874200970244553e-11,1.1221527512880655e-05,0.9999999999999907,4.130048249042736e-11,0.020830175387657898,4.880055225932418e-11,0.005426748765922503,1.659217636197941e-08,3.319785007401677e-08,1.8747830867609736e-08,5.075220514763635e-06,0.9997101994335692,0.7439864215904137,0.0018164783676437436,2.6611509906671145e-15,1.799493528414504e-15,2.136317324194322e-15,2.2284399857029304e-07,0.9999999999817928,1.0,0.9999831774099859,0.9910842041138992,0.9999999999999096,5.862815277237788e-09,2.813949213077348e-10,4.591936669889814e-06,4.049158798895335e-16,7.559041486134627e-17,5.798759333531778e-16,0.9999999999999827,2.789883600193535e-10,0.9968810243653541,4.5298472332006235e-12,0.5379408367214521,4.418429826564316e-12,7.100048119470369e-12,0.9999989807074754,0.99995903202214,1.608131864606175e-15,0.9999999820870921,1.5147356179258297e-15,0.9602039085339084,0.9999901652159722,0.9999960151179801,0.9999984061532109,0.9999820199435616,6.0698699271563975e-12,3.8057061777913385e-12,1.0,1.896312164188016e-10,0.999517282953712,4.2029560426024705e-09,0.9999543764542909,2.6224329006796156e-10,4.2050828396202686e-06,0.9999999778656916,1.0,0.9999999954512246,0.9999987213793493,0.9999943366195106,0.9998026939476738,1.0,0.9986442989364765,0.9996463730025907,0.1446053549737709,0.9999999997867794,0.9999999999999998,3.76784367304984e-12,5.993112962375778e-12,3.8691499805879515e-12,1.539651920300084e-07,0.011362350707263196,1.4424390633150266e-10,3.629201456212356e-08,0.018086810387285924,0.0015334985332580188,2.040328372578161e-11,0.9988634059365479,0.9713680655757977,0.9999999999999793,2.2459836539894475e-10,0.9999043334502691,0.7488301952862523,7.324744671927416e-11,0.9363547941635998,0.4241761178883697,0.9999999999999984,1.0,0.14007356239486307,6.553077901804234e-09,1.3442401628569098e-15,0.9999594489172663,5.11380287882776e-12,0.9999982155073125,2.670729289296309e-11,1.49160285235954e-11,0.999999783042179,1.5630981105106253e-11,5.20016110572476e-11,1.3394977026685518e-10,0.9999999999999449,0.9907130186179973,0.9999804448765024,2.8346359982375477e-15,3.0638524770635795e-15,1.0,3.5032655914809422e-15,0.9999998215097453,3.1256106537933884e-11,1.0,6.960358483595894e-11,0.9999999999999902,0.8913315787986252,4.657346374687674e-11,4.03483134587883e-11,1.3920542496625795e-11,0.9999999999716982,1.917248636214611e-07,1.1006049675519231e-09,1.3489044190268954e-15,1.0,4.919378264193167e-12,9.912779358314431e-12 -abierta,shape,1.3753864133666208e-06,4.380903043853692e-06,0.04838453667787573,6.55057128576612e-05,0.03183885808037758,0.0027007033820807868,0.0001417441692215846,3.4539337133324753e-07,8.388158284564985e-06,8.628605850694904e-08,0.00014704480080112998,1.3851127936416174e-05,1.974627671083912e-05,0.00017895707376935726,0.0003677647001036692,1.2310854201240488e-05,0.9988541468517131,0.899111853710852,0.03512279747962566,0.6105041299441716,0.999913028765016,7.069768518393093e-05,0.9997134954774636,0.004949042124029584,0.001118124439342677,0.00037095398740979627,2.3073277475790446e-05,5.457113165626635e-05,0.0022506504058384374,0.6482204683916065,0.08145826511882295,0.00010902219849673562,0.9999453241784416,3.055529795845132e-05,0.999993952596611,0.9999613770784938,0.4818935806008533,1.5132765630358903e-05,0.9982034473504658,6.943612642375762e-05,0.19382012642982527,0.13018474512256936,0.03284679414803777,0.015631106341527496,0.05239784763224595,9.994202069120155e-05,0.0029718089715374298,0.8084670376110847,0.1207993076471075,1.2380079072118196e-05,0.3010490659319326,0.6334652278667379,7.540599335406437e-07,0.471450947102663,2.346830879140252e-06,0.9999996085053223,6.819147644481168e-05,1.335600342012606e-05,9.046262993128883e-06,3.174907110824799e-05,0.0010249562369161283,0.00390499337979043,0.9999945811725852,8.519961649280048e-07,0.0017848226290121737,0.0014655849540724712,0.000294700014726234,2.119077823048501e-06,3.113248352104315e-05,1.4723925060751708e-06,0.21872813397230917,8.084052412583978e-05,2.9950916988154302e-06,0.00010306029242977766,1.7224266840064087e-06,1.2064256813494056e-06,0.00026903044618523114,0.004335770733311817,0.00041357856989650407,0.08226176325710695,1.1621626117600777e-05,0.0002946693653679619,6.419017059542113e-06,0.00012880736285156278,0.0003834963081230671,2.1089158706715946e-05,0.4479548685066935,9.699985168924573e-06,3.863954257913955e-07,7.525948089804966e-06,2.5855630547683002e-05,0.00027790069860278606,0.0001221557977331414,5.906682710908876e-06,0.00010418558543217404,5.501478355838945e-05,0.05313956537094655,1.4347093041977533e-05,0.00013738126353972632,8.339475452288893e-05,0.00023563772747210195,0.989360392467945,0.9990232606958735,0.9598331033040453,0.000233386880339419,0.8146468415281976,1.328743241314967e-05,0.0018017965961703622,0.00025423295224285755,0.966754725773258,0.0002468635110494615,0.07779681168052226,0.00011769420686620302,0.41085809797564193,0.006841898037537226,0.008221476602219552,4.494272696161861e-05,0.030929967204269517,0.028554165564079182,1.5799645073231456e-07,0.10505444788338561,0.6283082635942001,2.242334132935341e-05,0.054711749829162194,0.9901941166655693,9.315840718756389e-08,0.6978236080577424,6.623924588496895e-05,4.169079504323317e-06,1.9443398662038663e-05,9.737306294277749e-05,4.942641285195423e-06,0.010455241875674186,1.0751601615901561e-06,4.596485473326383e-05,0.9999977835208775,0.3994493549915362,0.9985005481816717,2.2751342870938577e-05,0.010043013021146316,0.9886818913553338,0.9999995515523282,0.031178882364120246,7.29332277893929e-05,1.0382442667955648e-07,7.561492349823266e-06,0.0006463458451236434,0.0009622817672452253,8.520551462831667e-05,0.0001738382613349814,0.00014738442457854463,1.9343370608055157e-07,0.9262696165761821,0.00022829805110350122,0.007783941150780289,5.900270076468902e-06,1.3851127936416222e-05,0.00012252542722019754,0.0024334980082760414,0.7430650668088827,0.006098873115876229,0.8622012813996294,0.9999966778823002,5.0985989303618044e-05,0.00010645448135937392,0.0002305470249101858,0.008047836022993823,5.519312054722071e-07,0.005378604555404438,0.00011153475987889245,1.2385997099643828e-06,0.001639911370551726,1.1317982233564765e-07,0.467979638729814,1.667262830286149e-06,0.010824006919980996,2.9539701542723744e-05,0.00010167849072147719,5.956942514951033e-05,1.8345195527853777e-05,4.9244358733670914e-05,0.9999173387902442,0.9896913913962134,0.9998211483861005,0.9405502869766814,0.006099397636283752,0.00031312459208537017,1.0887183484120939e-05,8.291136578974438e-05,9.520736297788484e-06,0.0333099316657501,5.795249214059708e-05,4.302009841313244e-05,0.9908316097088614,7.358581468844116e-06,0.038796602203711957,4.869092789710656e-06,0.05713206620097683,0.1239458295442384,0.00027608097543993683,0.03604674052449145,1.800583024276161e-06,1.7480680964832684e-05,7.644620354318501e-05,0.41528485446467944,0.06807724839592441,0.0009100246535180738,0.012665937747251025,0.0007896937229522041,7.974931584544866e-07,2.1753797179535145e-05,5.866653101002871e-06,0.0011634344251654945,3.843738106961446e-05,1.0721902650225932e-05,0.215902882595245,0.29452446753483996,0.7733316514425846,0.0028805238796546363,0.00020893874153445232,0.0006847212005206855,1.685308417962288e-05,0.08921133270000604,1.5251892673338735e-08,0.33659777818583914,0.9998146970639233,9.880721699780866e-05,0.03996781455783197,0.0009655565956437659,0.01864218791477303,0.9981528554440203,4.49332750587694e-05,3.7821631894009767e-06,0.15057774249282083,0.10505444788338586,1.4233487772461537e-06,0.0001345169350131764,0.10451840066299625,7.74372331170086e-06,0.0002491122964911747,1.4649866942026985e-06,0.9993426648709142,0.20814606583568288,0.15466293800982053 -abierta,object,5.914106799246628e-07,0.0014646994810842218,0.028479101705176934,1.6522374928840872e-07,0.0026458913147308335,0.5345901596990251,0.0001855753056477531,4.460398003017927e-05,0.0011035762898264838,4.604886369264617e-06,6.114499734662381e-06,1.5925011582467365e-07,2.15605740593254e-07,0.03223338047033983,1.2244923793175258e-06,5.795687128803386e-06,0.871900915165576,0.08876555648668819,0.0005243457591711287,0.3439881757591984,0.45348424547719846,9.29232385560393e-05,0.9998289847645084,0.0005636271123408771,0.7938387896247799,0.00013064988698879306,6.91179704359115e-06,0.08035282982408659,0.0019009763221348986,0.5472538080577382,0.7746340617597517,0.00011502482841575695,0.9999697547634441,5.2131913384244045e-05,0.998864018186299,0.9999587298098653,0.2721335095178987,2.2390345587319933e-07,0.9999325794837223,0.009981794549654975,7.993578903051447e-05,0.19118070273438853,0.9534392341257776,0.24886588472117435,0.012079505496812602,5.5645666733748655e-05,0.0021095310122013515,0.14518137969136838,0.04799283984452431,2.5368096635510962e-05,0.9890602323485969,0.001079107649555363,3.121088259133214e-05,0.9642589424096768,8.311067964243446e-07,0.9999999854507915,5.3032079058730086e-05,1.840307831824388e-05,1.872490812789914e-07,4.821535362466017e-07,4.166257584520705e-05,0.00012641821391866405,0.9999561882874635,3.6224616478611347e-06,0.007673989168316855,0.00034986541381180176,4.3924782829524296e-05,0.00012203922835114472,0.0010781386429339237,0.0002942684526183653,0.9093642980816616,2.983070934653456e-07,4.324149756219769e-09,0.0011443545234950338,0.000614600153825711,3.7875438217538494e-06,8.377494690045842e-05,0.00054115839332376,0.0001767089067776571,0.02077041184429573,6.4049473675933905e-06,0.00021496899334011676,1.3070869545198864e-06,0.00011006537863100612,0.00868302462443987,4.457394400444969e-06,0.020431842100018,7.733846717663652e-08,2.9291344394868663e-07,6.171017669721084e-06,0.0007915193364998623,0.00037123188190163323,0.00014633420454670444,5.2424475248619585e-06,5.017167334442785e-05,2.5543472175050618e-05,0.0320825944023191,7.461497623508555e-06,0.00038947122828779406,6.744104316446839e-05,0.0002199897068908094,0.5179868769624513,0.9996991610380829,0.004554335041173396,0.00020805016982893338,0.9882958802608055,1.2943364119363586e-06,0.0003099562829536597,2.81216848090369e-06,0.9994936199903002,2.3524428438713987e-05,4.06167686402568e-05,7.346658918945858e-07,0.005141937960059913,0.0005662909147053265,0.012090607870275499,0.00021760390016536905,0.0049578928587348196,0.0016083703577169106,2.3747514489124657e-08,0.007765797807709943,0.14211532169091226,5.744289369364508e-05,0.0001658975116856357,0.47177707338122166,1.8514156274949699e-06,0.06540850422097268,0.00020154756562567447,2.9076623248120812e-06,1.0084106625922876e-05,6.287323756931187e-05,1.2212407565503357e-05,0.6031148264829334,2.8615326991397504e-05,0.00023550018592299237,0.9865640369424011,0.03457028222121561,0.4910641113671797,2.4120082427235487e-05,0.03218046068003883,0.439581964520872,0.9999933248191284,0.19873561331849637,2.7055099575811434e-08,2.2188638341614953e-07,6.793844255619796e-07,0.0006758229639166539,0.00010228388181162212,9.709521743550461e-06,5.34073209777301e-05,5.932516534268276e-08,2.283985361688463e-07,0.09685708182211189,7.580720722820551e-06,0.00013825154096857673,1.1416995750558757e-07,1.8322731379530044e-07,0.09534906437065364,0.5108490773731882,0.008913440106086598,0.7044615317566776,0.0007200429618186033,0.9999792628156299,0.009004926456335981,0.09317804250383227,0.36182933817069274,0.9250026328200662,2.8880109003342246e-08,1.1467744310948028e-05,3.746891024081989e-07,9.344757141067776e-07,0.5883156278961027,2.6341105121191203e-07,0.03462602745992238,4.757626480252801e-06,0.001832379269199775,0.00014062181090829817,3.346218366408876e-07,0.2603812150371713,0.011721202838197926,0.026889302566203515,0.9998998499541146,0.4695463886027507,0.9998813495076218,0.9952857759395488,0.0014962473874873066,3.209097205820481e-06,0.0008424372235174322,1.4388266885290739e-06,9.600859941356767e-08,0.0004762128561495779,8.006412503014718e-05,7.721538599540878e-06,0.6255669131958421,1.7446687051414857e-05,0.010301763883415959,3.876409029280149e-05,0.0018583120990085591,0.9666540597049732,0.02179996976443839,5.7421536783099006e-05,1.1086682551777361e-06,0.01262458608212161,2.1546509304891318e-05,0.01877687489641122,0.9334441621079074,6.0123571844737666e-05,5.140090368933163e-05,4.0230849700060775e-07,1.589735516175689e-07,1.1032271417828287e-05,1.6282156017301163e-07,0.5071758102467842,7.737986543673728e-07,0.004254281840593327,0.04036243495518484,0.02069985399620967,0.847351913641853,0.001047725961306303,0.0002040568677618089,0.0006155853214152025,6.248135887674728e-08,0.8058859973661155,2.399466186905569e-07,0.0010041135817094487,0.22358907905698464,0.05929598440239415,0.00045956125509611804,0.0010054809414102217,0.00783319034469878,0.8112043121212973,1.0917924694445362e-05,4.5143704048175385e-09,0.677878392108465,0.008475373553409549,8.576299546335772e-07,0.00019518732650799424,0.06496904551773058,2.0559779525726108e-05,6.705635722632474e-05,3.450549881049856e-08,0.8015688953091304,0.33131839985492667,0.01088085694783751 -alargada,rgb,1.173009733593676e-24,0.00031900394806978695,0.7747323943622012,4.781992872952442e-35,0.011862784074139172,0.9087493670872707,4.1499886212946426e-26,0.0011332211702508276,0.010415966190222148,0.007417625514633895,0.999932787348961,0.9972144269912114,0.9987519298180764,0.00010306315220945055,5.6141024063441315e-39,1.4241645495829747e-39,0.9914310287740932,0.9951912736481895,0.9932973680100045,0.9999982447992543,0.9843498508175189,8.927966907634246e-05,0.8805096280706981,6.869933135089835e-08,0.9996954612020146,0.0045361839692423175,2.4086918637665174e-28,0.9998029256380231,1.2727777576408383e-37,0.006385678460101096,0.9129940492149924,0.413048118031718,0.9428431250167906,0.0015765593364127368,5.514337307298926e-29,5.719721886746618e-39,0.999998519534758,0.06028154745973744,0.999680179549585,0.9945544660992025,5.968832495464206e-32,0.5716031078220056,0.9482071949890526,0.000208543544110331,1.0248439610895363e-31,0.9826634785130095,0.5188189692942585,0.7784073960329383,2.375220139660101e-31,0.9988585720272605,0.9071664352994923,2.461520931346939e-32,0.004557041236282486,0.9703423294389127,8.228215417513608e-35,0.9922986708164462,0.9999958122408593,0.9999954187080149,0.9979975820659531,0.9994161379246398,0.9999281965043125,0.9619561302835096,1.6015591089126053e-41,0.7909799694749322,0.015287700099885546,1.0382148803020454e-07,0.0010594023348919409,0.002449947295522748,0.0014706169426408355,0.006719939244963304,0.9632352724631602,7.390082042690147e-33,4.683772939230252e-31,0.001288370886033172,0.026416881101839963,0.7957955894508062,0.0016232745956588578,1.974537418607664e-07,3.582825082072656e-05,0.9999951560688803,3.255282014416247e-27,0.999996888967622,0.7800692696880411,0.9999947782333859,0.0020452982062728366,0.7365394479016041,3.1755027802966116e-38,0.032758642209680944,1.9643935938988618e-20,4.289121609142303e-27,0.000836793638608762,2.1333120426316763e-43,0.9999954366576018,0.999993116235476,0.9999947153421641,0.9999944987107331,1.203033679696823e-36,0.9999947529157033,0.9999965956910748,0.999995620365467,0.9999951576207844,3.588957454650311e-24,0.9950023173907616,6.245111168810157e-34,0.9999930471100836,0.9143777935688446,1.9654174490490205e-30,1.7085103797673897e-07,0.015285231273643896,0.9945071790078465,0.05525078608456754,5.192454614671438e-33,2.4096767671145014e-36,0.9980250605163745,0.9997841256423425,0.9999147055172946,0.011904758738486341,0.9999917083804072,0.9963466336038046,0.7660902304249272,0.34495630376357583,0.9999640311882059,0.9983752796088635,3.598584166109987e-31,0.9992273177802501,0.9999961187542243,0.9999564750809598,0.024896743725524348,0.9998999433100275,0.6086406903308601,0.9999995063051975,0.011505140420145412,0.8911965475638756,0.001456254266628221,0.012152383740404428,0.9965587489791515,0.9939047920264246,0.9953410847979742,0.9997129573594645,0.003785835305260291,1.988475295099221e-28,1.159028885418781e-39,0.9609722480019945,1.2944557595598818e-29,0.9999977341476458,0.9999987361231628,0.9999994632767258,1.262040586100468e-05,0.000825375776000981,4.529782185218441e-08,7.355452923590851e-31,0.999462557891918,5.233232929279953e-38,0.9999399289794809,6.993705292620384e-35,0.9993619828602344,0.9985195417187892,0.9993827152078818,0.9999016388760026,0.99173268733375,0.9953987228002404,0.9913150389789921,5.148329257520512e-39,0.9996806041239811,0.9993009538687998,0.9980609656544108,0.9995040949036016,0.9991630249584466,0.9994929611644217,1.14914969542722e-33,0.9997326721799866,0.908611865731437,0.9968480160049746,1.5665038073259241e-40,0.9998641451047952,3.225855638614512e-26,1.0824303722777607e-43,2.107993889548136e-36,0.9873513277895347,0.999383681528364,0.9996252193251779,3.1854672616894333e-40,1.2200698932590005e-28,0.9061604488283944,0.9157536065558101,3.509246052095625e-33,1.3965416189455122e-25,0.001757052366308125,0.9994796872589055,0.9985088254755754,0.9999386140561742,0.002312007024708084,3.099370074692595e-25,0.9999987089571997,0.9288268228437822,1.5094287026729593e-31,0.0375234881782071,0.9996400688892669,0.9340255562528174,0.9678851478292324,1.474474868889752e-30,0.9991357213522875,0.9996477435347464,8.631544315455903e-28,0.999987627308975,0.9870906820337654,1.1463595329018128e-34,4.3223362867400474e-32,1.5610201309085643e-38,7.00214957516579e-27,0.25642107534156455,0.04796910456812257,0.9997540098575913,0.9989894490443612,0.9968214355750442,0.9998896608052553,0.9979143085946396,5.6091082883093985e-43,0.9293045399610235,0.14406915570155843,0.21989321489566346,7.155405666550632e-30,0.9619583728893395,0.8716628021985432,0.996187443283753,0.996170693703156,0.00032486254111660864,0.9977966022826174,4.875944218548392e-43,0.34970250008512993,7.851830060435757e-32,0.00791077574887058,8.999593901756064e-31,0.9928065434162995,0.42888974355653575,0.9991840140586012,0.994239373512365,0.0026841561481212107,0.7450148796818135,0.9978900057081764,0.004177368048596082,1.1846102520430167e-27,0.9999801501459861,0.9999768775040198 -alargada,shape,0.00010645596932622702,1.7068169207080964e-05,4.6563155074454565e-07,1.699016145338835e-06,0.00040203553646094877,5.607879345107605e-05,7.277787593610362e-08,0.011702196313734542,0.008539355566516088,0.00022729185629585417,0.9297745203075918,0.9999994685952667,0.9997705270291659,0.0002570703213954049,0.0010677951761245007,0.00024064082746023984,0.9999234327343675,0.9999102481690734,0.9999995666570668,0.9999001147376837,0.9999828694737465,8.831354349463674e-08,0.0012234626547262951,3.723220153092826e-08,1.573667253312014e-08,1.1493637844170787e-07,5.017657052624386e-05,3.208339149112483e-07,3.204951191481888e-05,0.00011148519441455505,1.7205501457115644e-05,0.0005395108199569162,0.9651354540447336,2.5013267113159102e-05,0.05692638375250868,0.00016127395767928055,2.5257118180063273e-07,3.2378200630243966e-05,1.8874979463687222e-05,0.2543831513567703,0.9961379607583315,0.9935107243886311,0.0029523344715245065,0.0010878695708464075,0.00019073191434864985,2.858871549733138e-06,5.16705781182196e-05,2.7581143062818137e-06,1.2350757948737624e-08,2.2175721033333404e-06,1.808356699151424e-06,2.403194554156416e-07,0.00010465762485034632,0.9708575350112031,0.00013611165092112685,0.0006830852197833029,0.999868079119206,0.986599815249742,0.9999232397789205,0.0037320957274205196,5.613248477906933e-05,0.9999358330635522,7.411600289168131e-07,0.0005202315471470563,1.2035653262227557e-05,1.994368030831414e-08,8.739201563111757e-07,2.6782340247979966e-05,0.0004340776695519315,0.005032505558933592,0.999835669936313,4.0156854894449116e-05,0.12104493747154202,7.227597756819962e-05,3.625959251653364e-05,0.015928911732379997,1.798255727962777e-07,6.396701753036748e-08,1.4056900685465506e-08,0.057013590856544144,2.02361533160614e-06,0.9608570041396558,1.5901752920257076e-06,0.9725070900763708,0.0006506909450534517,5.457549045665958e-06,2.3263764961217546e-05,3.620455132382742e-05,0.00015319319483540793,4.47299181368491e-07,0.00021198094365497503,0.00012671020939873372,0.9999640411226388,0.9993423655504377,0.999977281909203,0.9999801650565032,0.00010537955948330115,0.9989055845724861,0.0029259693239680543,0.012914003693068629,0.0009870695591531746,0.9922886521921342,0.9998364986505692,0.9991856844131164,0.010678501091119782,1.9953961305074107e-05,6.755736198192244e-05,5.376787848612097e-09,7.358665571415499e-06,0.9788111044577945,1.6455623884345383e-07,0.022674486231460175,9.743557638333628e-06,0.00017767413381270325,0.001189365961215445,3.831769496464173e-05,4.0049897258035844e-07,2.8325521702667324e-05,6.934547822625601e-06,0.998450652506277,0.0036709507588569786,2.1803603790495427e-05,1.054200771963903e-05,0.9552798763119443,0.009362470652128002,0.005134795091935717,9.859153677184434e-06,1.3829261305541754e-06,7.978310472302116e-06,1.5125636493524935e-06,1.6151754759778765e-06,1.708564334595885e-06,4.308382475765634e-06,0.0003574159882552008,1.9194288624896927e-06,0.9999306266839858,0.9999836473100884,0.9999158460112011,4.0241178560157604e-06,6.602474277449605e-06,3.050278101310238e-05,9.125567093844599e-05,0.20388936243818084,0.000819038634486685,0.9998253270738281,0.13131828926333738,0.999985212593929,8.646744160789515e-08,2.418335233928958e-08,1.9260257110553904e-08,0.0004984176976297321,0.025271156793616606,0.00019460027398401304,0.0005432192122323405,0.00135785417417304,0.020082667717532875,0.9999994685952667,1.7319652225012397e-06,2.580687420944361e-07,0.9998543559874853,6.851915680330268e-08,0.999993234101897,0.00020996683354235343,1.4722809658760497e-06,5.262675007040611e-07,4.347428896280431e-08,4.730413359952244e-08,0.06003310985138105,0.00035891493400133856,3.100791754265241e-06,0.9371355033478169,1.3768994634945718e-05,0.02019530720636703,5.499011677764208e-05,0.0069477903419076885,1.0220534710625512e-07,6.985763044099428e-06,2.8739602275609194e-06,2.2755374854745515e-06,9.892590980967012e-07,5.241434846040886e-07,0.00050942351036997,1.702248407132608e-05,0.00041530653839019744,7.366430805628062e-05,2.415533065997224e-07,1.4613499203317736e-07,2.658395594389093e-05,0.00015719924998072252,0.9999990068999697,0.003174879655408181,0.00011240842082113183,0.015613301758940809,0.11216125076479506,0.001884478151792284,1.8515960509802442e-07,2.735684069443068e-05,2.2649626962884424e-05,6.896168856056815e-07,0.3836522679824744,9.506641994974164e-07,0.0018313638121298908,1.4982882942312135e-06,3.94566028032384e-05,0.0015242737387577347,0.0007105593151832703,0.004754440936482011,0.06539026233503063,0.0007945823843437944,0.0014707607028435652,7.029072179557172e-07,1.588340856178877e-05,4.7552505666609735e-08,0.035163796472838876,1.2352457495377805e-05,3.5831386956138935e-05,1.2953095733449516e-06,7.452669154094191e-05,0.0002545820291934383,0.00010029895626962762,0.00022317428052783748,4.18059213530096e-05,0.9998833917662776,0.004420237810668162,0.999998181762239,0.9999365619625824,9.343900120326248e-06,0.9999926713726676,2.0312822636342937e-05,8.269778236288675e-05,1.2223306844987666e-07,2.5400130327610297e-05,0.11320092306325505,0.9995332678083158,0.0036709507588569916,0.7994230968760516,6.71980771858479e-08,5.3524960836764655e-05,0.0013971707961433402,0.0045635824461756,8.316942529030031e-05,6.615718232762489e-08,1.521923597318081e-05,0.002658289696078786 -alargada,object,6.820992461440184e-07,0.0001093259672417693,0.004491055183536066,9.029037152097372e-08,0.4812729595942813,0.03446483869148884,3.8841888328246516e-07,0.017038068437420638,0.004774951464433171,0.0008437092040802536,0.9812621719399063,0.999998076560897,0.9997770614008635,0.0005878407318706543,0.00016801578750955462,4.354267247161031e-06,0.9999194348249874,0.9999127265739514,0.9999984449936148,0.9999901570489457,0.9999869422877536,2.06024037636885e-06,0.16950607177214616,8.69214644287686e-07,6.116055066456759e-05,3.97483143834104e-06,1.8044453496590934e-06,0.00043706447438801094,2.7544351132361384e-06,0.04498103028262228,0.0007172404787628074,0.6197414506825131,0.9998739504803794,0.0004216070583422319,0.06980869241357604,0.00012036118939722666,0.004384781529235014,8.512880587007053e-05,0.05770302653396814,0.9802562829466696,0.293144391139387,0.9984505596033793,0.5938255509773197,0.27248876164063585,0.00012311835077948247,0.00806445693363042,0.37431633523844676,0.01097180224477843,1.705707252744225e-08,0.00030321423280500856,0.00275032979767625,2.2375207536274762e-07,0.0008783533015315482,0.9973090651968869,1.5024568684939104e-07,0.9448142874282357,0.9999584412147426,0.9944270048280955,0.9998235149794681,0.017887477414266034,0.00041951268866898255,0.9999607351065821,6.963482819589388e-07,0.01464882437871484,0.0001828678709702599,8.945030793256719e-07,2.705489608308083e-05,0.00011032231869425492,0.003354327962649298,0.011046306636334111,0.999803597014237,4.305677503381074e-08,0.001233813551202659,0.0008388866167237525,0.00020083234840375324,0.23121107140827554,1.1179982938959424e-05,2.9386577279143183e-06,8.5347703366885e-07,0.8830106805415303,1.1032250872636866e-06,0.9857618166749673,0.000108099656117107,0.9971582080561352,0.011043289774102792,0.00021655545306920943,5.643500728089537e-07,7.689139264632635e-05,2.136454564267464e-05,1.258592932810669e-07,0.0013155333603863941,3.027927431394238e-08,0.9999596340761973,0.9993852614574382,0.9999747969840246,0.9999929973696271,3.575070312440406e-05,0.9996191861515972,0.20510886721595867,0.6956040432627808,0.12608580594296548,0.8692089780809432,0.9999859662696405,0.7348850958319361,0.5718482680595967,0.0323322780877581,4.014676571041495e-06,6.473349033427923e-07,0.00022804874584726197,0.9997913602119761,5.2382279301441595e-06,0.0005692155536973052,3.84594915004449e-08,0.031103363284058962,0.2459468829302325,0.040158528362236996,3.6111677474033565e-05,0.0007888208473381067,8.232851814840964e-05,0.9931320016421675,0.7077540130963751,0.0006887480552013925,0.00022566836928476918,0.11417038730971896,0.5462633556083614,0.13955365664500083,0.0008952590661903403,0.00013004720837582427,0.00016370106108910183,3.8387247379826906e-05,5.375167249156103e-05,6.21625606421707e-05,0.00123185752029565,0.0018683794599933605,8.664639529446758e-05,0.9999839767902657,0.9999928437238582,0.9999784053255574,0.0002942395604000521,0.000265119788870933,6.156423522656355e-05,5.498894354891684e-06,0.868532888337482,2.568273329327714e-05,0.9999022129817917,0.7010306907782046,0.9999994859707899,2.535570759801654e-06,6.544381790440715e-06,3.1115610981324825e-07,4.318147711015553e-06,0.03711914279040018,2.5354310126452857e-05,0.004823870636763611,6.263217498300715e-06,0.11857814648952714,0.9999982309024857,0.002203732863148224,0.00036667752506646734,0.9999529712450697,0.0001491505352685709,0.9999842755071688,0.00019750205463663374,0.0010803278755930961,0.0009273509750455907,0.0001578476601103293,0.00016793781451865654,0.12562432542211538,0.0033006284354736236,3.2908600796586205e-07,0.9942832815188355,0.014577024214320555,0.04139154706679339,2.3240650308532634e-07,0.06376696680739413,1.259803747276979e-07,7.420073630284372e-10,2.5637102935790532e-09,0.003041649287632242,0.0011272708994136444,0.000823159602471243,0.0002913138037096398,4.8085014002506014e-05,0.12885922699176852,0.17080161254375967,5.328610690879686e-08,1.1856468370563044e-07,0.00040149748235141067,0.004130985888865769,0.9999901134491777,0.07736817448233811,0.0008554126647201248,0.0007015543042709852,0.9778229226900574,0.011031315895592777,8.591151887462742e-08,0.0006676088795356058,0.0007968493214495337,0.0010004116440957837,0.9282626407665587,1.426372736189538e-07,0.015385528459931935,0.0013413769284405916,2.8378863418054155e-06,0.20457262974142007,0.3186377587759667,2.6042464932920873e-05,0.0012765023353883947,0.00011797133336901764,5.641355115079716e-05,5.542229044952864e-05,2.189457187653894e-05,7.703245021999658e-05,0.04676723616579718,0.004360192876542405,0.009525994611163402,5.2994017025541724e-05,1.1405748662593064e-05,0.30241297535624506,0.4685638803013843,0.6151483404775748,1.4984145570625662e-06,0.9998679014458708,0.020407306087391434,0.999997475755452,0.9999712937448845,3.436432416664705e-05,0.9999942973175887,3.331526583832525e-08,0.3793538349133189,2.0355641663009164e-06,0.0005090607529406228,0.0007752011691692409,0.9998500720614802,0.7183464115349848,0.9723568540451689,0.001100938101302341,0.007502565343395988,0.003083260992960538,0.020061389283824862,5.983177161223826e-05,7.2138292887268e-07,0.032855439003427925,0.3446069450933202 -amarilla,rgb,1.1123823705681572e-28,1.0,8.01736595066799e-15,1.4350627423455566e-37,1.2439555610828344e-18,1.0,1.935936397342724e-38,0.999999999999994,0.9999999999999969,0.99999999999943,1.9448728675003425e-06,3.444962488660583e-10,1.4468580117445604e-09,1.0,2.4062920249241127e-37,1.69066345765041e-44,3.6261725127342124e-14,1.2903996167038924e-13,8.644682344200237e-14,0.9999901564532198,9.901790078168951e-13,4.5238632546346375e-23,1.0,1.5735870594016424e-29,1.0,8.092765844376266e-25,1.504721129735391e-29,1.0,1.666614116337162e-42,1.0,1.0,5.7126295592936366e-15,1.0,0.9997743360961495,2.240445967574903e-22,1.9275868948510509e-44,0.9995844055915953,5.33428914335045e-18,1.0,1.0,1.9855389787127416e-34,0.9999999999999998,1.0,1.0,4.5740574572369106e-42,2.2247759312259258e-10,3.0233768172762063e-14,7.779579748794729e-15,8.808441461042619e-41,0.9999999946618978,1.0,7.263544661906517e-35,0.9999999999999589,1.0,6.466156292219405e-43,1.0,0.9999999999995663,0.9999999999915028,7.291040066558466e-10,7.28509141065441e-09,1.3230297728616177e-06,4.3091935930149713e-13,1.996207471801819e-44,0.9999999999999936,1.0,3.135745732334291e-27,1.2369509507898552e-25,0.9999999999997105,0.999999999999988,0.9999999999999978,1.0,3.967081236528105e-36,5.600013445790964e-34,0.9999999999981741,1.0,0.9999999999999998,1.2033419573902154e-25,9.56628978332874e-28,5.821289053488406e-24,0.9999999999273836,4.728044870044583e-29,0.9999999999986466,1.2979947027522628e-06,0.9999999965931745,0.9999999999999953,3.664375229403401e-08,4.32284480497054e-43,4.983042060433603e-19,8.327009498989535e-25,9.94176761047849e-29,0.999999999999986,1.1081367859927203e-43,0.9999999999999829,0.9999999999501232,0.9999999996785116,0.999999998035348,1.895805321992474e-42,0.9999999961020622,0.9999999999992903,0.9999999980475041,0.9999999429523924,1.517440544215123e-38,1.0,3.8233954058553004e-36,0.9999997639491276,1.0,4.5976413408738344e-42,6.400765597126277e-29,1.4994251613525227e-23,1.0,2.133606205632175e-22,1.050678640572519e-35,1.990288687491461e-37,6.083219150441715e-09,1.3908066999418654e-07,1.759662374125951e-06,0.9999999909477847,0.02899497085155921,1.5196728320270667e-10,8.280393044642212e-17,2.3904134829048476e-15,0.00018838772122802778,0.9999999998393883,8.150138905923447e-35,8.886913188311936e-08,1.0,0.00012816807821820514,0.9999999985801478,0.999998945907556,0.980263947548652,0.99999995008711,0.9984137027991494,1.0,0.9999999999987874,0.9999999713707836,1.9493062614017737e-12,1.6915234599905355e-13,2.558585695929927e-13,0.9999999737752387,1.0,1.5582040818523626e-22,8.092755401428553e-42,1.0,1.571813488196504e-33,0.9999996762962442,0.999806760835869,0.9999999999976428,1.0368164275772587e-24,5.063346003932524e-26,1.4431074765219058e-28,1.1329511078544072e-34,0.9794764797373661,1.44814638872075e-43,2.715340847338722e-06,6.601449878006824e-43,7.215372090290698e-09,1.8363833427408551e-09,1.0,1.0,1.791712207479976e-13,1.0,1.1418567055917566e-13,4.7571616340224945e-48,1.0,1.0,1.0,1.0,5.691716601477816e-09,1.035980837813852e-08,5.0125053681539355e-36,0.9800918028522478,1.0,0.9991332171673943,1.9712482976079595e-44,0.9950778445835825,1.8443979149231067e-38,2.2374625651871012e-43,1.9057261626911777e-35,1.0,1.0,1.0,3.155750606675015e-45,6.129106043158905e-22,1.0,1.0,1.7500003971811332e-41,1.7495497386252987e-31,1.0,9.614534089244648e-09,1.4482195422381264e-09,2.129744949573438e-06,0.06696448554506033,4.4204602967890473e-29,0.9989929132444415,0.9991038913111434,1.7586647185611311e-40,0.9999999923718085,2.0854333353102238e-07,1.0,1.0,3.0778032922970165e-34,0.9457546803015031,1.0,1.0766036310738209e-28,0.006413529529259333,1.0,6.1977259395135785e-43,2.9134295425486347e-35,1.4813551750292956e-37,1.1397489023180188e-29,0.19726061776011247,1.9486671145090105e-17,1.0,2.9288468885628468e-09,1.0,5.3854994923237815e-06,2.224149712338455e-09,3.9868252773643516e-44,8.16261684434842e-13,4.457889224753751e-16,4.824925193337082e-15,1.1710570344421878e-33,1.0,0.9999999999999645,2.389122257878783e-13,2.0801257479146167e-13,1.0,1.7262031081875076e-12,4.63073534776835e-44,2.441087407378017e-15,2.887318833617304e-24,9.138300872439488e-08,4.207394447201971e-34,1.0,8.469487208596271e-15,7.574811340048954e-08,2.0038774541116925e-10,1.0,0.9997077784688655,0.9928327211726753,4.44780060192214e-19,8.381240504308771e-22,6.381832878333859e-05,9.184034961777317e-05 -amarilla,shape,0.9999883276288309,0.9999979559154112,7.100465243402941e-10,0.8951979984483402,5.97142277067999e-10,0.04555769671529965,0.003683484572823376,0.9999999940694859,0.9999497503096961,0.9999631033008115,0.9999998353248112,0.9999999998246938,0.9999963165741751,0.9999913175056143,0.9999961519862499,0.9998908052556005,0.8860232696688085,0.004349886934536115,0.9999960991058653,0.9999916605901784,0.7357076161855233,0.018782507452132835,0.9997650525477484,0.00039619892994055317,0.010407124687357045,0.030745838524343823,0.0007519515010642346,0.024240614352891262,0.0193960477217921,0.9996830068547833,0.999756319568393,9.88119563750106e-12,0.9999913582922239,0.99898747218492,0.5043571803893363,0.08963472229240746,0.9662725295534741,0.00027936298410677455,0.9997016176443388,0.9999208918593394,0.0014731306837576104,0.4963852647386648,0.9992171780770801,0.9996562594901107,0.9931628223213055,5.724462908640407e-07,3.0262980385368287e-12,2.6780839240752032e-05,0.7936412462965171,0.9997940785496581,0.9930957774091562,0.9972516117653972,0.9997511959253235,0.9991824787915639,0.00408975957897613,0.9995395142976558,0.9999999902343463,0.9999996617971849,0.9999999999028193,0.9804346737662584,0.9771079179280994,0.9983880568895553,0.9924863759617399,0.31540114228236366,0.9477086729176604,0.0005509385569594001,0.0002824697761167955,0.9909524343101584,0.9997403139761368,0.9999937039476263,0.99970050729515,0.9985010667595603,9.598431422160366e-05,0.9997172773469245,0.9999856176952044,0.006206701989778182,0.11035386238550479,0.00042609041326185763,0.001512564351247958,0.9999826316375667,0.0025423095188476666,0.9965159127938299,0.0018569633058148404,0.9999999974233946,0.9998859722980211,0.0006954712898412892,0.9998547254857384,7.932190425445892e-06,0.8215280592167447,0.00448058303287335,0.9999401278776323,0.9853744086213188,0.9999931427140766,0.9965242297655779,0.9999669467903475,0.999999998272975,0.9950502825775003,0.9696190457798946,0.6458924575797613,0.999999984236051,0.9999861900922425,8.963987529413559e-07,0.9917215632531056,0.0005323900604409772,0.0008159443106881551,0.9999346894875122,0.00021144519393639092,8.219508203707071e-05,0.15997774814089194,0.9996048954542349,0.2726287300043922,0.9999446103283218,0.9995640080709907,2.3258998121252435e-08,0.00010842868171205164,5.107204764256552e-06,0.9889366145138454,5.3616837965947e-07,8.793458383044238e-05,0.0003786879631547049,4.699101726512781e-06,1.3036157863382672e-05,0.9995506472188367,0.002398657358671098,0.00015589036562841863,0.9994623640036813,1.5304103058998396e-05,0.9986736140269634,0.9999484833438398,0.9998944598794608,0.9995855650689495,0.9153484655646317,0.9993364861997699,0.9997101645208286,0.9989737130712208,0.9414661887895627,0.999999995901647,0.9953974053531273,0.997919702753169,0.9986399591345476,0.00022882543392586195,0.9997705007609521,0.9997578245930857,0.0012168961307976137,0.9998809126479337,0.756685989046978,0.9999999943157774,0.0009574359765314216,0.005457041087715078,0.0004026521628578883,0.061131056663175254,0.9999997056072344,0.9992986896375808,0.9946047213715512,0.9949308694704048,0.9996405054856641,0.9999999998246938,0.11579943563328904,0.1820519411883471,0.9979978544327142,0.03692477054144167,0.810828033846162,0.4046024482324722,0.5019216416653335,0.21197651968683873,0.043840060457254006,0.694250702326859,0.9999994643928034,0.9988835208617385,0.06471605812118239,0.9996534480353707,0.004514216467423201,0.9999974723634281,0.9993055764092267,0.99945689096951,0.9962322540605734,0.9999626493022988,0.9866177042034451,0.12609122500232745,0.28196463919953074,0.3984988253129715,0.8939273177453647,8.366883271121409e-06,0.9999966082730424,0.9998197509137086,0.8959116430739262,0.5155188794551132,0.9980998051636196,0.9999267640955681,0.9999999619131982,0.9999986943029391,0.0007665551165314555,0.9999235541848597,0.9188285034327269,0.9892288854864264,0.9967624654792694,0.998146907072315,1.9265891152998074e-05,0.9973225260163693,0.9974225481580853,0.9991346149564064,0.9996870160822344,0.545698611684547,0.060925465290347834,0.0003806262592815116,0.9508960959074957,0.8069566403103959,0.9708517723859947,0.999154507044697,0.993243933865973,0.9988991387148648,0.0013797637435344213,0.6286605420187771,0.9998379409666955,0.5594955133833494,0.00012568206498986408,0.00012621267282254586,0.004848338689987981,6.147069871927608e-07,9.183486519517123e-12,5.237336535168027e-12,0.0005949699322176424,0.9995490008359109,0.9998823805240128,0.9886724048970206,0.08462671695896536,0.9999846142306383,0.9999999808769727,0.5830481115312784,2.8820398835520827e-09,0.999999610667211,0.0006634189424384323,0.00048630511017112545,0.9999932136294405,4.699101726512798e-06,0.0001588827672378247,5.5810060950935766e-08,0.9999828289016757,0.9998472157660341,0.9999570055705714,0.0007251114445641935,0.9844529371111663,7.148823017850871e-07,0.0001834613947589714 -amarilla,object,0.018729733945159307,0.9999999994261763,1.7726976292704665e-06,3.2941125676883995e-05,3.601115541874195e-07,0.9999570789014557,9.084446524645809e-09,0.9999999979722283,0.9999996518597591,0.9999991281414352,0.9858177494253612,0.9893366355076888,0.9620619785798422,0.9999999981413319,0.0001932712743694495,2.0895979827199674e-06,0.00015738281382898146,0.002698653011691553,0.3298146913186363,0.9999002073828303,0.0002654626085456543,1.0011585977140318e-05,0.9999637997503632,2.5950365502622767e-07,0.9999538024814311,4.5543638148617885e-06,4.154129148237154e-06,0.999990334385255,1.3614236103856199e-06,0.9999906478738912,0.999999135192889,2.2515953993590437e-07,0.9999997388340394,0.9990167162099117,0.0003066954204080197,1.086684057283486e-06,0.9197318060409906,8.533570886597045e-06,0.9999995905842669,0.9999999407074485,0.00010945245634549585,0.9999989527931166,0.9999977232738574,0.9999547827095056,2.951195266320466e-07,7.017600979738946e-05,2.237717157818394e-07,2.123365938874779e-06,4.696569398994119e-07,0.9998589118742417,0.9999953398670861,3.619296617131589e-05,0.9999877122444052,0.9999997375893059,5.719484673646466e-08,0.9998564356801382,0.9999992640200374,0.9999965550453284,0.9977917911263138,0.06502406204595966,0.03803698267333314,0.0647515293407698,1.5840897131259632e-10,0.9999655438927741,0.9993922017705955,1.935020880056021e-06,4.771010024726217e-07,0.9999863193660519,0.9999941082787266,0.9999999361081139,0.9999994849956461,1.4585106097711368e-06,7.203042562601371e-06,0.9999964619345061,0.9999999995281688,0.9999432774054415,9.439863383671567e-07,1.543800743487734e-07,3.1793246372432222e-06,0.9998977037275854,1.3223180688376517e-07,0.9972491795482104,0.00096210685811037,0.9999976011647628,0.9999994149985373,0.00022485714004669897,6.809719911784353e-07,2.034996232553849e-06,0.005688640037318557,3.099660625899052e-06,0.9999978468030126,4.889942816377926e-06,0.9999679731467872,0.9959550629006444,0.9992853881515331,0.9999995351871012,3.951321238798092e-07,0.9985552598620556,0.9999204317364858,0.9999870792563119,0.999190158604932,3.823280410783027e-08,0.9999970292576807,9.029757348289172e-07,0.5702882601103161,0.9999988921245849,3.026420273206899e-08,1.3201126394295687e-07,6.310833219440368e-05,0.9999871661772222,4.127125989642033e-05,2.227529247162027e-05,2.461362304191304e-06,6.271330714116972e-08,5.5689588440447446e-05,5.746770426097251e-05,0.9999492508710179,4.672220651154225e-05,7.695151010449234e-05,0.00011551609425273337,5.012766680099574e-06,2.7833986358016314e-05,0.99985628902584,1.2272911169674491e-06,3.0409250319822955e-06,0.9999976444478544,2.9793479007102864e-06,0.999913326541207,0.9997504632297682,0.998287698645661,0.9998597483889254,0.9771248057758208,0.9999986303890602,0.9999943636384597,0.9999290901708597,0.00016119086547245205,0.0947266351075524,0.0020863516587770496,0.9990504344664705,0.999965220804461,0.0010030678582460231,7.106080003786711e-09,0.9999983926253091,7.240135650180267e-05,0.9999560814167109,0.8981197148636938,0.9999994824205539,2.158343945407119e-06,2.3835971755382144e-06,1.8723941860824243e-06,2.721563831236373e-07,0.9999652056890678,5.496990179689946e-07,0.20299324031556223,1.0906124953843983e-05,0.23850198305308629,0.9924834439043763,0.9999996604049571,0.9999953696166776,0.09667526954616684,0.9999998554054248,0.00012609985925529768,5.532869786319799e-09,0.9999995427891063,0.9999996392725377,0.9999981089742336,0.9999962700006687,0.885187360066337,0.014834223945933152,1.4346354990034096e-07,0.999831183421852,0.9999013529957863,0.9999395859424436,2.4729037652189612e-08,0.9990137651942929,4.265517414851207e-07,3.0551472944829986e-05,8.063097226682563e-07,0.999999918515337,0.9999996197308842,0.9999989977063609,9.006811480204969e-08,0.0009996053303494826,0.9999987440435512,0.9999969265640705,1.775572832825809e-06,2.0233772984529183e-06,0.999999953557167,0.05329102709508191,0.968445883074355,0.8271312757579645,0.001097741099959991,0.024254295133367878,0.1366178260013519,0.9964639475365459,1.6014045019257452e-07,0.9999532078097003,1.3426916678060608e-05,0.999998683107993,0.9999997069394491,3.3310554812217193e-06,0.9990901678167391,0.9999997222059082,1.7238676317821688e-06,9.406270466857719e-05,0.9999988509005101,1.2119017647363391e-06,3.1013753648948054e-05,0.00011292958238944524,0.0009158493644934466,0.9880621144197893,0.0001868817464885944,0.999997240635321,0.37062015011870114,0.9999997770849844,3.0405435593979887e-05,7.628809135180274e-07,4.205563158092911e-09,1.3743938075598144e-05,2.3784541051597433e-07,1.2437448543539226e-07,5.489553930229459e-06,0.9999987958435235,0.9999991394318793,0.0004258192960412511,4.041194529608943e-05,0.9999999915655847,0.5972168828926826,4.653998216964712e-08,5.313319874239594e-08,0.002474384839464489,0.00027892498063589074,6.845797755403819e-06,0.9999998905821645,6.5596632729140526e-06,0.0003700156956708831,2.4067064319196438e-05,0.9999968117408005,0.999865260481295,0.9996210563372584,4.3784880202448505e-05,3.558896107130009e-06,7.118505671510308e-05,3.112562462851221e-05 -amarillo,rgb,0.12062337062982174,0.9999137149595954,0.037079078544552245,0.002399473463832781,0.015409369204981694,0.9997881956438189,0.007560197496088356,0.9992083832019298,0.9991156764933499,0.998323730220622,0.25598878948915554,0.1108443132673892,0.12815353810682845,0.9998964110583752,0.004200945944219927,0.012520845285909148,0.05736193308540688,0.06290847033320715,0.06358544335306765,0.9139689259379155,0.10581623123916649,0.015148350218348353,0.9997489619507275,0.00340159156210582,0.9998219809922468,0.004197881081862278,0.16933055612730397,0.999782022016528,0.016727435906526943,0.9985784141292834,0.9997862831245788,0.03648989248015324,0.9997216803417178,0.9807050890582486,0.08558075536934732,0.011451298202717803,0.8588709893370876,0.04159111268321301,0.9995146777899423,0.999434781801374,0.0040236048243282325,0.9961594761554926,0.9997651374964275,0.9980836897353553,0.00661249079093308,0.10705499779219395,0.043549233983746764,0.03695354769325679,0.009375816940070001,0.9840549939304946,0.9997807080915683,0.003722481032296536,0.9988553026727885,0.9995765866873946,0.00885146832447875,0.9995665783331411,0.9844076248739175,0.9768185797515125,0.11950338350425421,0.1506225493216455,0.24785601586649908,0.10520319247738343,0.018073841091587408,0.9935344102233075,0.9976369928250677,0.007319379844814666,0.004163359626731299,0.9986046343042574,0.9991124084584012,0.9991865960220266,0.9996423195129464,0.0027644195647570534,0.004100258571592853,0.998325466598271,0.999950398953305,0.9962034323335268,0.003678687781762533,0.005717800929261678,0.012281398814875808,0.9693106469040733,0.16284993063823283,0.9818352764250675,0.5589945199143986,0.9498658566348401,0.99919342175696,0.4402078883385675,0.015447404587538311,0.0315211609101535,0.17789517502042412,0.17421413247508602,0.9991377277752687,0.03161478620152917,0.9899686707527778,0.9708453674496309,0.9628359406765744,0.9532316229171947,0.014313565891048166,0.9490146172646715,0.9833397727347484,0.9532139034301401,0.9290058488439866,0.005048796665886068,0.9993889527186431,0.0031434888691051566,0.915961642784338,0.9997936439424958,0.00521521424485576,0.0038266470592676644,0.005119759157593864,0.9993303755236478,0.007822503268087274,0.0031807237842908327,0.0029401695603183684,0.14706703674785598,0.19962618489553793,0.25209790246360303,0.9938699511094374,0.5177983717540929,0.10209477790421903,0.02311443668237465,0.0333016671747481,0.3663698851432509,0.9902215030496673,0.0032710639104240016,0.18972872418621903,0.997790722174514,0.3553143095521107,0.994858752624201,0.9595926006631521,0.9376283137305175,0.9455835578907759,0.9705018780284086,0.9997988001340313,0.9983949222168716,0.9928638639348324,0.0940627945543249,0.07014356408138095,0.07119364463206905,0.9774950782114613,0.9982453707244482,0.0768417279727688,0.029708734178692735,0.9996277019424604,0.0039073286559664945,0.9462918932336702,0.8683766097467167,0.9849103413126462,0.010592549499615102,0.003641657503314375,0.005007521542378606,0.0032805116315677116,0.881581669766973,0.012770392588512796,0.2637212459038076,0.00899172681956795,0.15028930629878762,0.13094888890805043,0.9998709613102833,0.9996848885092879,0.07492666207457802,0.9999380236484018,0.07027150279281512,0.0035911249194733254,0.9998337487752421,0.9998720508988258,0.999901790866139,0.9998450569365521,0.14652383294029528,0.1559255425491726,0.0031460807293389715,0.8739741066913437,0.9997800219082366,0.9323297711496031,0.015157732294148126,0.886534705564514,0.007665093435479236,0.0365479843248811,0.005238423032259411,0.9999551763399586,0.9998718536364473,0.9998445809342134,0.01112904404312679,0.09247914612699729,0.9997321664341783,0.9997930463482224,0.010445975253442841,0.004312754754196652,0.9999227462450219,0.15479784888216191,0.12797312089396848,0.2586668626136951,0.9181128563530829,0.1183219443628864,0.8388518621009476,0.9492687238325082,0.010709457528808851,0.9933587135538602,0.2055895138063081,0.9997444796379106,0.9995342559608511,0.003579912818141725,0.8721324724583865,0.9998057012700985,0.1948786855256139,0.47073376118753213,0.9994694280816446,0.008571694791859928,0.003223136012733101,0.0037363046912316697,0.1306689240157988,0.8939717150430312,0.051459115060969014,0.9998077054913362,0.13734792116217912,0.9999064479891624,0.27471401670279316,0.13328116351785133,0.025600983315483782,0.06012798253923927,0.028218687707437348,0.03645647295816803,0.003887154694039603,0.9996250842537948,0.9916811060415541,0.06656394200390395,0.06459218341982105,0.9999137168895453,0.08423753563977046,0.026404273441214106,0.033366970863059224,0.07160138078503586,0.6108538162024517,0.003821196626548516,0.9994160836119822,0.03807299315908586,0.1869272742846998,0.10496786746673346,0.9978002048948479,0.9615807856369226,0.9084829343742327,0.038913108564832294,0.08558193340476235,0.34679090631237447,0.35249692387394405 -amarillo,shape,0.9999986036014946,0.9999983340760865,4.1574454736377506e-05,0.9999702380619248,4.4104572571121945e-09,0.999987305286725,0.9994134272206034,0.9999999870281098,0.999979767399321,0.9999987220348846,0.9999997556077127,0.9999975186240868,0.9999999431670118,0.9999947520817255,0.9999999155413537,0.9998638084260949,0.36410061238257785,0.6041951721424035,0.9869792089460807,0.9999816968117102,0.0018527190819946986,0.9974044413901287,0.9999132188834239,0.9626628918721403,0.9880693574408114,0.9972167216262048,0.7249849056653277,0.9993295968158148,0.9658313440520391,0.9999984436045023,0.9999870832833394,2.2998149313630734e-07,0.9999776469360496,0.9999993527122621,0.7992421146311125,0.9974126922734167,0.9997485884062994,0.00027685949767338185,0.9997795082788561,0.9999999132161796,0.9999974706817575,0.9999991617614298,0.9999358076764173,0.999943692799253,0.9997669419120402,8.986029695754546e-05,8.704377671965674e-10,5.5983986232363993e-05,0.999273922159905,0.9999995236945599,0.9999861008879213,0.999991049141788,0.999862595341721,0.9999925207496702,0.996923880508864,0.9998524724920715,0.999999748173276,0.9999880986941937,0.9999992072651187,0.9999986676954105,0.9998450322988182,0.9935843640816867,0.8797175890659843,0.99999965055495,0.9953189417544372,0.9993925951963503,0.9671013482817883,0.9994701173364513,0.9999952130613151,0.9999994537970182,0.9999706902361525,0.999533645961432,0.9998587294729256,0.9999857328412003,0.9999980263278901,0.9999971902226058,0.9986087472522207,0.9958177164766352,0.9277842110963028,0.9999178998640801,0.9992012601998922,0.9926076448924027,0.9996361738683062,0.9999992168493783,0.9999978527813189,0.9997815490457399,0.9998715667716269,0.00012661597427671554,0.9521085498644272,0.9997132613313906,0.9999856144563953,0.9944061261121612,0.9999408889752598,0.972619984111268,0.9998392679616616,0.9999992239870277,0.9998305085727207,0.9995011704749328,0.9998616862272146,0.9999990309121521,0.9981058519358416,0.9879041773560505,0.9998876087203676,0.9981723958741889,0.7701946921604266,0.9999995117275423,0.9999680359241682,0.9595116358282407,0.9998813437106963,0.9999930766837849,0.999995547447596,0.9987769549953387,0.9998328545405079,3.6423800902297864e-07,5.450327106452601e-05,6.589105728983792e-05,0.9999977871660367,6.317036278652785e-05,0.00012333221470393224,0.0001050631270745797,1.7893599626013297e-07,0.00019845733203552356,0.9993022406115489,0.9997951639107783,0.0007309235427685743,0.9999235491209421,3.776890269909002e-05,0.9999756889404773,0.9999923477746496,0.9999986194810841,0.9995983248588549,0.9999716398826848,0.9999888346679806,0.9999988151710397,0.9999987363028902,0.9970270807505812,0.9989661251419601,0.9996781565819834,0.9996208575827218,0.9994695576287694,0.7910161036642064,0.9972633278239467,0.9999950360188508,0.9999997261383753,0.9999277310543365,0.9998396079818028,0.9999999589282663,0.993709415567851,0.9999670125928511,0.9987741303937129,0.9999984236148195,0.9999998423958543,0.9999956095823616,0.9999982390848945,0.9999995419208587,0.9999999214426663,0.9999975186240868,0.9999569476766406,0.9998352959492137,0.9991945981542607,0.9999886412187627,0.0030261581184750272,0.004061112497921883,0.9999984985166785,0.9999994949907415,0.9999683298781573,0.9998135570802889,0.999977899475232,0.998683717933489,0.9995956724192432,0.9999997988637468,0.9995106067042565,0.9999998591741096,0.9982090790038299,0.9996069617305902,0.9999957120936491,0.9998175875907496,0.9979213969145347,0.9999988446136119,0.9999957774980403,0.9999732687742475,0.8150543656086325,0.6547843647570232,0.9999908016387339,0.9999987691339391,0.9998308989120993,0.9995746992660597,0.9999990230884164,0.9999998260729763,0.9999991095875481,0.9999999546941019,0.8765997680947415,0.9999997260565752,0.9998232771282363,0.9998867640290198,0.9999824933617216,0.9999988147207748,3.7966924715633495e-05,0.9999982756624515,0.9999983759293721,0.999987122299206,0.99997852073028,0.9999998171528747,0.25942367978886416,0.0002059229327149933,0.999981873135859,0.9999932219117826,0.9998360025067892,0.9999999961425112,0.9999884435920128,0.9999981832274021,0.00016737389416668537,0.999929536060318,0.9999950877945273,0.9999857419744681,3.509807422659395e-05,5.398035764168067e-05,0.7032566954534273,0.0002813514571908184,3.4368133874499108e-09,4.172480899653573e-10,0.9999989852055922,0.9999297004385866,0.9999999631178993,0.10935151136398924,0.002770273014630146,0.9989519986382857,0.9925364146903705,0.986454929511699,2.3179248959789497e-05,0.9999807835535018,0.9961695502397568,0.9998466369497903,0.999995266616217,1.789359962601323e-07,0.00013202597094563002,6.0997615320977275e-05,0.9999986681790741,0.9999971783759369,0.9999930569046253,0.000381709688174863,0.9816490871403898,3.2784189290765825e-05,5.503266844551095e-05 -amarillo,object,0.6858697063045028,0.9999999994596147,1.5017483034066372e-06,3.003478125516574e-05,2.088832050137876e-08,0.9999982384616211,9.598079187793653e-05,0.9999999942785955,0.9999981449855461,0.9999994178545957,0.999996215667249,0.9999797013597164,0.9999973969910332,0.9999999962615767,0.45852592046985907,0.03759549350726674,4.629315039505348e-05,7.984656846609998e-05,0.6292715237419437,0.9999876974549131,0.00030158074618535577,0.00041251506034465296,0.9999999587989935,2.05701065965584e-05,0.9999923097085456,0.00012422762888243376,0.012376732204143277,0.9999972421151702,6.762743006894328e-06,0.9999998129910966,0.9999999493035511,4.6893524628592987e-07,0.9999791546289446,0.999955360548051,3.396263853897001e-06,3.2868689277842774e-06,0.9994769096787239,0.00019332391470789866,0.9999995694378527,0.9999999981325354,0.00010867064512995907,0.9999849321645937,0.9999916298774774,0.9997249710869826,1.3248869869922882e-05,9.211236810930428e-05,4.2673327359797086e-08,9.742605828711462e-05,0.00029346462944544136,0.9999779965110783,0.9999998311802852,0.0007671989540450592,0.9999871196776051,0.9999959599632137,0.0011536949974330973,0.9999669293225638,0.999999999347559,0.9999997974368657,0.9999589892722456,0.9999184211817472,0.9997033695653847,0.6676556721342313,0.0007428030502839662,0.9999999562872367,0.999991817312522,0.00014812687251947306,1.1213592117546335e-05,0.9999473101262806,0.9999974793407297,0.9999998432546188,0.9999842430896749,0.0005901857599316019,0.008704190828536414,0.9999974564655646,0.9999999997368036,0.9999999278364832,6.919824925093226e-05,2.9380984323796835e-05,7.26685636943056e-05,0.999929303594369,0.0670211305435817,0.9998441125744117,0.952303283283056,0.9999996792477709,0.9999992820134399,0.9190411264039106,0.016005575768402558,5.805892635422565e-05,0.44994161125316695,0.22292274894852696,0.9999967768519044,0.0034455472739585396,0.9999999824961762,0.9999086149746491,0.9999997937579167,0.9999999947702429,2.882763857651904e-05,0.9999970997962792,0.9988048090654097,0.999999801416883,0.9997871746173399,2.4757549796975646e-06,0.9999268882918403,2.2732958173145595e-06,0.3951643467045274,0.9999999964574393,0.016400433791189918,1.2467058847267833e-05,0.0004561157690868268,0.9999965182003028,0.01121601558576834,0.00014112125127883194,0.0009103470130876175,1.1930455234174995e-06,1.725048816028307e-05,2.065071706981202e-05,0.9999865369636741,0.0002856749869527262,0.0001293630217753047,4.464862445088523e-06,2.2259072159493064e-06,0.000192726295396724,0.9997082908496667,8.527111903237012e-06,6.097754675685914e-05,0.9999999899386504,6.6554638241915795e-06,0.9999868824169353,0.9996039512248419,0.9995221852772256,0.9998197258107094,0.999790133256832,0.9999996464396979,0.9999986944434106,0.9999701155220488,0.8550462778676599,0.0037712081337795563,0.5614189008805996,0.9997226599612334,0.9999994319021767,9.544666815501354e-06,0.0010137687223007092,0.99999772564892,0.0010291832279522566,0.9999935368116244,0.9996786263521265,0.9999999994487583,0.00015058597746048385,0.0007738244330234863,0.0001258489317460996,0.00036891317834294096,0.9999983414015765,0.02310245186941404,0.9999430208694126,0.00022604962663572267,0.9999902179901626,0.9999850801582484,0.9999995767748672,0.9999962207467905,0.9242809081008477,0.9999998666094703,0.0016900109579049273,5.619798918758074e-10,0.9999998472592149,0.9999999526806795,0.9999998383050349,0.9999997614091872,0.9997627408444489,0.5144039843567748,2.3421179014557635e-05,0.9999993902072483,0.9999845409933601,0.9999840469717743,0.00334823674691587,0.9981304155514008,0.005751012677773137,0.011144125732266658,0.00043042535990258117,0.9999999823263374,0.9999999236172671,0.999999383028949,1.8093118053158008e-07,1.0709194119697864e-05,0.9999999661345933,0.9999999845335874,0.0005935433066750288,7.580935259437972e-05,0.9999999999350853,0.9999027472962705,0.9999940099493773,0.9997974966323733,0.9463053136407724,0.48530894658534846,0.9997447108563084,0.9997982951296234,0.004303045154469486,0.9999800835935659,1.864278534223358e-05,0.999999926387129,0.9999999072710434,0.0007888302935242404,0.9990105278880219,0.9999999868824341,0.009045332542503346,0.00011328274370724076,0.9999978063551035,0.0002052916432477924,2.8851869861129408e-05,0.8553847241763588,0.4765376834355517,0.9995930806387363,6.247868793953701e-05,0.9999997891499133,0.999936349360275,0.9999999648596717,2.811370477012117e-05,1.47539215438672e-05,1.6759787741100736e-05,9.558289647635369e-05,9.0086741809867e-08,1.5583980173457656e-08,0.06045102744900486,0.9999803537511301,0.9999999148893651,0.16099399334077535,8.055150724583673e-05,0.9999996699413788,0.9312373878223092,0.0003264766371126894,9.199767948606795e-05,0.4964071181539169,0.858417032548774,0.00663471774662422,0.9999932200439243,2.7764529200954305e-06,0.00011470626989561101,0.0001659168684957811,0.9999999488677356,0.9996079651063317,0.9986599001750088,0.00018674955000572924,0.29672711598562723,7.665823876140796e-06,6.242018858200071e-05 -azul,rgb,9.231138261926432e-12,0.0010709559738859061,0.001103956805159652,0.9999916876010695,0.007593782712964769,3.865235259891592e-10,1.50827017642532e-10,1.9913068236009104e-11,3.264708574121638e-11,3.040257877664094e-11,3.687937600248676e-05,0.00025556790196103565,0.0001665353488391559,0.001974900036208694,0.9999981335623803,1.5562219828358505e-11,2.388708783293659e-06,3.2519894305057277e-06,1.9941636305952735e-06,7.79740843302055e-08,2.1341788714354103e-07,6.175189203064424e-08,3.088893310368307e-10,1.6930089041264657e-07,4.1856697940759997e-08,3.0292738707854527e-05,3.765001805699693e-12,3.821021282053125e-08,1.3713401895446627e-11,0.00752096684566547,3.9259824446538206e-10,0.0029707008915161423,4.0051764957085756e-10,3.952338762125906e-11,0.9999659340812905,1.8078154409159466e-11,1.704194148900003e-07,7.44186800488399e-08,3.9716920918257336e-09,7.508385777279469e-10,0.9999791735630379,0.002759965396057047,4.6546565286188337e-10,0.02661249830314112,7.509112064052789e-11,0.0009599855437192676,0.0030041247116763155,0.0010800804491277183,5.2738289164441093e-11,1.0946540829973242e-09,3.7495442442233076e-10,0.9999813967282934,2.6913327761685727e-11,4.2105371059058725e-10,3.6697325444335524e-11,7.435009281751135e-10,2.0005299701398473e-05,2.8095421191025885e-05,0.00022299796761205443,0.00011315206820769648,3.604715657960509e-05,1.3389195026875132e-07,9.005062802296935e-12,0.002754559695278528,0.00855529034593288,4.040749863146897e-08,5.940821516240112e-06,2.3640164816305032e-11,2.1015986133100875e-11,2.9589284512128796e-11,4.196454971044194e-10,0.9999828795021857,0.9999713077429542,2.0892943034882172e-11,8.411618932563753e-05,0.0018467864895029154,1.8123176257184804e-05,7.61400822228204e-08,7.09523595077484e-08,3.422654674057061e-05,4.5876233179286705e-12,1.7428180277352586e-05,2.541738701787633e-09,4.437860494004232e-05,2.2632290920628923e-11,3.890159814005674e-09,1.4083316678338794e-11,1.0271478345599468e-07,1.2845194272063876e-11,4.348953580940401e-12,1.863516673870545e-11,4.455394393746285e-12,1.4839956539199814e-05,4.336298868980489e-05,3.9984730241965e-05,4.5094672966006745e-05,1.781569449970112e-11,4.478419592343934e-05,1.7680821826589437e-05,3.784902113764474e-05,4.5788904407888095e-05,3.556791861210784e-10,7.501483780285296e-10,0.9999888378133756,6.201869123760971e-05,4.0484238718274067e-10,1.1894566181653292e-10,1.693757331129695e-07,9.321245152311873e-05,6.895811210842164e-10,1.0950977058292046e-05,0.9999845924102146,0.9999950375887419,0.0003313504124852551,7.868186270830447e-05,4.936708354506412e-05,4.1054714695278654e-11,2.2229251697254327e-05,0.0002727942679548043,0.0003359237616861908,0.0030622293842313603,5.0819638308248647e-05,8.523815999316377e-10,0.9999702137467358,0.00024331934492356357,4.397240088820652e-08,5.840960252628679e-05,4.638765485970219e-11,4.134812444378248e-09,3.1384671332996686e-10,2.664740341797578e-07,7.059017251686587e-11,3.691179905841413e-10,2.1360973350519834e-11,4.2841823166635654e-11,8.522479720754919e-07,1.463380951566913e-06,1.8395969936215699e-06,2.069401612407175e-09,0.010528124719018025,0.9999580645879056,6.316107851985042e-12,4.008810782053866e-10,0.9999500178196318,4.273260456384022e-08,1.8551158889890979e-07,1.7004268899572894e-07,7.011841841076578e-08,9.280929320929527e-06,6.795636769098589e-08,0.9999666165714376,4.242667504131446e-09,1.7597849791362627e-11,3.4714750271158596e-05,3.5770268293054196e-11,0.00012387536536675445,0.00020621910122881352,1.2847888590460472e-07,4.698933473538895e-07,8.690956281839809e-07,7.596271984160994e-08,1.0386370664688167e-06,6.622180308635311e-11,7.460297241733402e-08,3.8533266691822084e-08,1.7476739454089325e-08,2.773371485009119e-08,0.00015395519092100483,0.00010617169244699587,0.9999877478201196,5.911394086601835e-09,3.7684658734190696e-10,1.5043857246781348e-09,1.1713426698077693e-11,7.197210598276589e-09,1.4556886167056288e-10,3.7831461919271865e-12,0.999995910281927,4.0062611147812574e-08,1.0432161535379018e-07,8.342475094230044e-08,1.6675714566287523e-11,0.9999615600765998,3.3079533313285684e-10,4.0703881882352696e-10,3.696546148999028e-11,0.9997642865320295,0.0004997459775444546,0.00010715801096814156,0.0001972805650864627,3.323900558781404e-05,8.923574362142061e-11,8.590148616298834e-12,2.5475260580940875e-07,4.860951101728846e-10,4.4212396232659445e-11,5.3964746631349984e-11,0.00014486422922872774,3.962015814977972e-10,3.8993620861406346e-10,0.9999638137445994,3.779921937827529e-09,1.9839542211133924e-08,3.504671291609693e-12,2.7949030310516327e-05,5.335907852488117e-10,3.8673213232315815e-11,0.9999786290744817,0.9999977718640715,6.0445620245551434e-12,3.080004587143437e-10,4.5618838619008714e-08,4.6641631823446964e-08,0.00015931592778198897,1.0160766417585745e-08,8.521697252165052e-05,0.0002891325135608122,5.665407946040315e-12,0.001042341361772323,0.004560164448365025,0.004928748430768563,0.9999545660849694,4.037055171042659e-10,0.002628279093446036,3.3688890343928266e-06,4.028330588009493e-06,0.0010641581520301293,2.124253562967247e-06,5.46858233148082e-12,0.0030341296088217816,0.9999873848442479,4.692107740713383e-10,0.9999673530605124,6.538627109984714e-10,0.0030469193401038673,0.00024784007868428043,0.00042218009072874177,0.013951543800207324,2.8262010011334037e-10,2.1122697923055313e-09,3.416932039643921e-08,0.999944665075256,1.607682179115678e-05,2.3783945908296757e-05 -azul,shape,0.0007787559770154486,0.9998004653282361,0.9962222483011451,0.9985878276378678,0.9999999282460257,0.9999863373089938,0.9994514393860982,0.036887455168811305,0.7299125415028065,0.0009322170634181522,0.9999931342189484,0.4279441809769058,0.9998057402148798,0.9719437325342571,0.999747525819995,0.999999992857171,0.9935691552093444,0.9941236299283923,0.01247765183775681,0.1472034858883137,0.9999999997203581,0.9560402891381494,0.9999999994110413,0.9993250814953535,0.001217941772713333,0.9899582333833276,4.886768004048881e-05,0.00048071343120525896,0.9999662529983739,0.9999938717399673,0.998974371514112,0.999873518986242,0.9999902327274484,8.655292822332192e-06,0.999989737515289,0.9455213314379584,6.392377717010326e-05,6.50392653059574e-06,0.0006096502093008151,0.754530009753039,0.999685767204317,0.9920985253794281,0.9970678641827372,0.9979231939809227,0.9986045992850265,0.999952817286477,0.999899539289614,0.9999998288387102,0.9998732393751253,1.9578295986188065e-05,0.9999987926590299,0.9998108884573411,4.5715573873301114e-07,0.9933732100938464,0.010158936236744853,0.35077344822840095,0.9777723976351329,0.99812964899298,0.7853223325984812,0.9991833746171365,0.9783240606676045,0.9999999140203345,0.9963373769953738,0.9185689875039794,0.9999450242135738,0.1253434410040997,0.945811337748144,8.70887279145772e-06,0.0005564756440281904,0.003869522189300815,0.9990290051269728,0.9990047327070456,0.999957593924514,0.0005851033659721009,0.99992140555571,0.9995641131191467,0.9585783914719848,0.0002105154892754566,0.03682221823923303,0.9995429440165289,1.5956596424132068e-06,0.9998537699050325,3.7630616185537216e-05,0.9992610018227089,0.03959507683450464,2.547912348908975e-05,0.9999991968262745,2.5203558117381083e-06,0.00017611388794387277,4.984536073449089e-06,0.00026200721463154336,0.9169117888325738,0.9604439964055496,0.983657105121237,0.9969440679218641,0.9905162402163988,0.9981439064276649,0.9984486238162128,0.9999999961461778,0.9999984950804827,0.9997569946244522,0.9998865828422346,0.9973491233130378,0.9999411711675174,0.9999999378407153,0.9999964204365299,0.9982742567552617,0.9342834269319689,0.08211765850593944,0.8574440989082641,0.8140335097181559,0.999854308901221,0.9997966772950805,0.0004171764244922884,0.00017442421883414122,0.9996840474457219,1.9834871112198678e-05,0.3284450526997996,0.0003982488783356157,0.9999678205480599,0.9999999899608462,0.0257291394178466,7.653871995960795e-05,0.9996645712674446,0.652652858156266,0.0008118171516773448,0.005431493632013439,7.960008767626846e-06,1.2763105481173093e-05,1.656124714221215e-06,7.691602959499101e-08,1.142109364953571e-05,0.9989435865775449,7.677507136523039e-05,0.0004015889420420783,0.9999994105782325,0.41374776214498016,0.9993734505851823,1.7437765063353106e-05,0.9999667206094787,0.9995440482540028,0.9962641788674104,0.9998285589968008,0.9996891099640686,0.9989438174169731,0.37246658524481874,0.0008124224015450914,0.07562511318503895,0.002600223419239434,0.8146633986448221,0.9998261794226581,0.8221602299181842,0.9999548757586637,0.9999054188189657,0.9998842154480981,0.9998605044980405,0.42794418097690595,0.0008999162532350437,0.004508276191670424,0.9999999593254308,8.093998953363466e-05,0.9999991890615266,0.05465913933802031,5.805709350989786e-05,0.00036336259828061764,0.0005977756252884482,0.5699979655653541,0.9980389790836808,0.9850458232227699,0.9987004546057526,0.999006883256203,0.9999946144156769,0.04939819218417397,0.9999764392884267,0.040974845216482404,0.9999997017254677,0.2245961145366258,0.999279366778989,0.00018672130011661398,5.792585641945184e-06,9.491270173044911e-05,0.9999851000978195,0.9998686756352145,0.9999999978058927,0.9999984871187455,0.9996373447768618,0.9990384053014338,0.9744901345736602,0.9999929169168548,0.9965890857102919,0.9999943280270555,5.048849265100891e-05,0.0013175745839540923,0.999716043184208,0.10545965682462631,0.9999936147794698,0.0002222435983498558,0.8327517287287126,0.9999713677144318,0.9940622339095382,0.9999698857326663,0.023023600342005714,0.0003450828202688592,3.759837526256342e-07,0.4827696258044063,0.9995320533622428,0.9997336116479567,0.9999658458497461,0.9996341698423177,3.300137804515261e-05,1.5046478218321244e-06,3.7947289040872145e-07,0.0010839519273943528,0.9364699914941634,0.0003121624219692273,0.001365421181769656,0.0005878711335548715,0.9999999999087024,0.9999991797801995,0.9955554413011894,0.9999998640095061,0.9997005729316779,0.997321456158939,0.14945232634673833,0.4552237485190048,0.999999999990068,0.4781449701385219,0.030486590012586984,0.9999895350904902,0.9999997638784073,0.9997296655188249,0.0004894797404442312,0.9997077082562372,0.9864306634644402,0.9999999899608462,0.999705825268232,0.9985021267631904,0.9999969243553185,0.07253586536956103,0.03556022534442652,3.798016907762961e-05,0.9991206162568362,0.9999998929389949,7.496548727830325e-05 -azul,object,5.4433370630334166e-08,0.018218299534252632,0.12012908704783853,0.9999936472531411,0.34124840899034603,1.0278298184617207e-06,9.79247402472744e-07,1.200462911942729e-07,5.9373985945880565e-08,1.3998933254149896e-07,0.011102965530107476,0.034908926151740564,0.04765651490927361,0.02832562195278948,0.9999970919885233,7.628967870180662e-08,0.0009053429610987767,0.0011843613167831903,0.00022624037502933162,4.457142863720358e-05,5.1993440938300414e-05,5.098934775297012e-05,5.550008996881473e-07,0.0001305834147821384,1.7518671033994257e-05,0.005178830883940032,3.8086402338533417e-08,3.20243761533558e-05,1.249044867738387e-07,0.16681388919379828,8.063808955032954e-07,0.19842377979923906,1.0695260389333931e-06,1.622686450651466e-07,0.9999857678605997,2.463097200350034e-07,2.7284311542455365e-05,4.427960539395643e-05,2.5613470640365143e-06,1.093614003289707e-06,0.9999898682078249,0.16079614192385383,1.7246327233036274e-06,0.48379158569892583,6.99828523034697e-07,0.09083931562976263,0.18344680500171878,0.1623153205025358,4.1282914978247904e-07,1.39688447909117e-06,8.844582570603482e-07,0.9999872038324579,6.319799881759843e-08,9.563825219943454e-07,3.6919236106221204e-08,9.180232698527791e-07,0.005524465715917548,0.001886974461096933,0.03856254761290939,0.01458629559904461,0.0031892577106309135,6.005020961372543e-05,9.172729612410507e-09,0.05674950624191577,0.07486374114673093,4.2010054931476935e-05,0.0017163715912813429,5.329577435577234e-08,8.599819810060232e-08,7.583364724365176e-08,8.102711265984742e-07,0.9999498258346783,0.99997457567246,9.566525459881298e-08,0.003628488232131804,0.06844049554277394,0.0046357865569643985,7.5791866089698e-05,6.926200854206491e-05,0.0013834226003224862,3.83302154000935e-08,0.0010034483912540228,3.93115639671405e-06,0.005455749719418223,1.0724753286170317e-07,4.617461360499655e-06,9.230109137265617e-08,3.919171502435273e-05,7.613867488501582e-08,2.98815529494512e-08,6.545043483232754e-08,1.8382149546563884e-08,0.0018510656635706147,0.0016130463232888843,0.0036606366990833933,0.009149286831802864,2.3271796524931744e-07,0.002927665502804048,0.005428698831426468,0.0032870609021613587,0.00101360360748762,1.6418357336846313e-06,1.2023827604567647e-06,0.9999900019235082,0.00624039437384132,7.044864020083036e-07,2.1830999986039227e-07,0.0001294430443662121,0.02287726376279135,1.0547640571251777e-06,0.0033248603370025923,0.9999583198349911,0.9999699887549361,0.00012118879698677934,7.195201628138185e-05,0.0012847034352221915,1.5591912009496597e-07,5.110106538982542e-05,0.0001767172585590255,0.10547345216883704,0.216855650944125,3.7243163381521774e-05,9.193966599205668e-07,0.9999824242363233,0.00025510840224103343,3.1623552490436177e-06,0.00011724445596842109,9.68324209161534e-08,3.305594516916787e-06,5.693197133531915e-07,3.006366391817407e-05,2.0084192428468026e-07,8.777057469751453e-07,9.907186323064249e-08,1.6405466274711645e-07,0.00020078578695070486,0.0004073170468155205,0.0002517839113406467,2.476156992214312e-06,0.12991997417608664,0.999978267831848,1.4895185725686054e-08,8.371846133502351e-07,0.9999728043667446,1.059102591124347e-05,4.452212773127237e-05,0.00010054721669037299,5.709652400586559e-05,0.0034571749640703053,5.02044797162665e-05,0.9999676527237562,8.141166925841107e-06,1.4874214748205418e-07,0.004830071335224412,4.939993625771347e-07,0.02123482164352902,0.029571200815625934,8.73299939286392e-05,0.0002831693584349594,0.00023747159874096079,4.3081656155931194e-05,0.0001144527423501806,3.41363379604016e-07,4.607434440566831e-05,3.854888344700732e-05,1.7724987644804944e-05,2.74708813533317e-05,0.010939564963057829,0.01361180755690161,0.9999885570327378,1.8137097284277777e-05,9.318392532771382e-07,3.7686020102920223e-06,4.324777771577842e-08,7.0519386779296455e-06,6.973086336184148e-07,9.411824496992221e-09,0.9999681389239526,3.925033045036477e-05,6.62567519201974e-05,5.3632361731448585e-05,3.1975361586037686e-07,0.999976862859295,5.396772363063502e-07,7.765158872180737e-07,2.7756123125127367e-07,0.9999304486398144,0.018504437643096623,0.01781914300056714,0.04522966902108358,0.010614971099321772,1.8953997184627953e-07,8.184540966485889e-08,4.943671363263836e-05,1.2457497029977702e-06,3.701330349335804e-07,1.7783779850351735e-07,0.0009620190806637318,1.038232977266836e-06,3.5697145841861903e-07,0.9999769212271813,8.152572800447662e-06,2.3140808745686017e-05,2.3982008491097085e-08,0.00042130259298766995,2.8668919015037684e-07,3.0493862662978956e-07,0.9999555768666382,0.9999985453889455,6.972683069542504e-08,6.7248644978738e-07,1.6297200919888677e-05,3.110214315664343e-05,0.012085429109070225,1.3431477918859922e-05,5.425919692453192e-05,0.0001157251302303563,1.7496327815230069e-07,0.13352142698217204,0.25657666827226216,0.2505327980765922,0.9999397486644863,7.365175866343573e-07,0.04624938158987793,0.00016792776357530504,0.0008333853395446243,0.004705779150471179,0.0003681109087768956,9.299108734270794e-09,0.21103793597799872,0.9999709736410393,9.597296420628105e-07,0.9999660959944948,1.2906723353570484e-06,0.214805662199304,0.043878910989227395,0.06203395637771315,0.2767850168837123,6.943891973617983e-07,2.815091641469551e-06,2.1744562522803658e-05,0.9998035310252561,0.0006049038820809868,2.905356501933152e-05 -banana,rgb,0.003068957026038939,0.9999999999950766,4.573391233794015e-05,1.7423501237648096e-13,1.2637041860402353e-06,0.9999999999994367,2.460187631494189e-07,0.9999999999755627,0.9999999999677114,0.9999999997896996,0.11514416543277606,0.0029879201062262646,0.005755233101551739,0.9999999999891953,2.933406783716442e-13,1.708246583960147e-07,0.0011807506624835755,0.0015152438680464584,0.0017382719531755344,0.9999493342182141,0.014698266131490424,1.871769120816518e-05,0.9999999999991085,1.007662607482843e-07,0.9999999999992499,1.1232184317861581e-07,0.00629275300912665,0.9999999999987241,5.939887361926769e-07,0.9999999769163846,0.9999999999994218,2.9477432423047046e-05,0.999999999998789,0.9999996679602469,3.2989502879630844e-08,1.4080952260477675e-07,0.9996877192949929,0.0006154726995459512,0.9999999999925369,0.9999999999906619,1.7753674770328338e-12,0.9999997893694024,0.9999999999992377,0.9999998979715357,7.193434954481573e-08,0.001619757024465718,5.199621312035177e-05,4.56091021259328e-05,2.3564964653198334e-07,0.9999998393109008,0.9999999999993807,1.2790435457483187e-12,0.9999999999304667,0.9999999999960503,1.1659703804427783e-07,0.9999999999955846,0.9999986717383974,0.9999952419284307,0.004070803487283551,0.011640929159281646,0.10301834731344559,0.015191028904549597,4.1046513901065625e-07,0.9999991089049012,0.9999999017602844,1.440470388170461e-06,1.5097231837164018e-07,0.9999999998742612,0.9999999999660947,0.9999999999744749,0.999999999997544,4.76511335972316e-13,2.4062878416498502e-12,0.9999999997820124,0.9999999999996507,0.9999998320128269,8.070513371799444e-08,6.202260084001668e-07,9.02684483517474e-06,0.9999883300770364,0.006400802703644903,0.9999980339456154,0.9749281529969809,0.9999442169526717,0.9999999999745155,0.8944421068563091,4.173761218448449e-07,0.0002322437103755264,0.022472898389777035,0.00838910808067264,0.9999999999684441,1.868629232237684e-06,0.9999996640419876,0.999989042718689,0.9999781810289912,0.9999545284843735,4.1723240129396184e-07,0.9999410933663768,0.999998461774555,0.9999573356176026,0.9998356230564429,8.525692220109902e-08,0.9999999999883615,5.087394748215547e-13,0.9996875432803212,0.9999999999994744,4.008763167496457e-08,1.5281144890753036e-07,1.6389708332864009e-07,0.9999999999850269,1.1185517578777165e-06,6.787943038256828e-13,2.1691739099330735e-13,0.0073390191116946245,0.036556703460428504,0.10011998700631637,0.9999999902776283,0.828956575512087,0.002199543061011257,1.5152538433736975e-05,2.168229456988803e-05,0.36289487790713437,0.9999999634869507,1.2292948523495854e-12,0.020663840993003155,0.9999999991676112,0.31977211235329167,0.9999999943474791,0.9999969449651261,0.9999883562803318,0.9999848275533324,0.9999988246091753,0.9999999999995135,0.9999999998080948,0.9999999846681773,0.007880686592770957,0.002582693855647219,0.002600390506889414,0.9999995247706266,0.9999999512965384,2.743415442645878e-08,2.791061394659723e-06,0.99999999999726,3.153198206778656e-12,0.9999899187557661,0.9997506497279053,0.9999997135351869,5.3905925453529926e-06,8.880353580515038e-08,3.8577098637021896e-07,1.3525448725128898e-12,0.9998967797612079,2.3312532923207977e-07,0.13044646698183845,1.2137744029497387e-07,0.011202530027208972,0.005764114753010415,0.999999999999581,0.9999999999930873,0.003560954980039212,0.9999999999999496,0.0027668984275038876,3.2870743505716025e-09,0.9999999999992801,0.9999999999997007,0.9999999999998785,0.9999999999995342,0.009501115507735148,0.013463180985762288,5.48706388317499e-13,0.9998687879328099,0.9999999999993752,0.9999850215698958,2.721499201609673e-07,0.9999073981946277,2.5350699942894375e-07,2.8649589181073122e-06,1.104168851440203e-12,0.999999999999982,0.9999999999996116,0.9999999999993827,1.0521974132856555e-07,4.649533134292018e-08,0.9999999999989266,0.9999999999994698,2.550492027773927e-07,1.3297826012082261e-11,0.9999999999974587,0.013076150973052179,0.005399740365299514,0.12309477852332469,0.9999672512620927,0.002642690365061171,0.9994578643364435,0.9999941566831833,3.524828449814855e-07,0.999999987946299,0.0333184492397404,0.9999999999990472,0.9999999999948583,1.8851448442245742e-12,0.9998658800602674,0.999999999999198,0.011643728156477616,0.718352850077473,0.9999999999924059,1.0740133206229623e-07,9.10859548121578e-13,2.367025323664901e-13,0.002990364190768376,0.9999296118398959,0.0013179962344532594,0.9999999999990496,0.007461605397758744,0.9999999999999052,0.11687131906133319,0.005439571583660046,1.0047546189697604e-06,0.000226665015171024,1.0820279049771391e-05,2.3867805698373436e-05,2.8886954857476617e-12,0.999999999997204,0.9999982394840109,0.0018226111495476328,0.0015818843627957116,0.9999999999950924,0.004509754604581122,1.10023262070523e-06,2.1900977029401113e-05,8.56330177864061e-09,0.9859652993174345,2.134299672160127e-12,0.999999999989883,3.346572264370477e-05,0.01943340468658228,0.0020659296679387735,0.9999998954780929,0.9999975614869634,0.9999587135550083,0.0004988910853826526,4.7890372319933185e-08,0.3877407446387979,0.37743160305728995 -banana,shape,0.0005426552666464333,4.279499913223625e-05,9.792109158185762e-05,0.0002922856277448762,0.0007186547128646898,2.5844318714885553e-06,3.1036502923200656e-05,0.0004862019860678851,4.168598211038912e-06,0.00012543990560104161,5.101177395845337e-06,0.0710128160766813,0.00022294491804979437,2.2415874617982166e-05,0.0006997383192405026,0.000282733757409329,4.3133452436862896e-06,4.529512994807349e-08,0.9999960766904917,0.9999799755278684,0.008741007762089088,2.638622957883505e-07,1.4112267757452916e-05,6.396490885378216e-06,2.2197936806881303e-07,7.275228663577409e-07,0.001663123374752349,7.12549957334571e-07,3.708935218456071e-05,0.004320394988881848,7.026617376391486e-06,0.000428620638657485,0.012548520551476577,0.0012999329828721632,1.705511637220629e-05,0.008351019172038746,0.9998437255024469,0.00021739275083640323,0.9998000804642025,0.3620620188294024,0.00032444910725812256,0.0007364527049886516,5.869463826872889e-07,2.211658158257738e-06,2.8780352934860663e-06,0.010892988951228203,0.0017903331684075297,9.409922090018459e-05,2.2768381028081024e-05,0.0002276844764671831,2.02778759423671e-06,0.000526456665086816,0.0003652598531444071,0.000336512777339196,0.00022896164439385145,0.9793926269581639,0.010636848519716673,0.7034968643338957,0.573889631794134,0.00019963725993011035,0.00010219585864129193,0.2852519526472806,0.9522959662106328,2.218863026328876e-05,4.1451057500204786e-05,1.9055098453823583e-06,3.1998118955655604e-06,2.586371545654897e-05,1.9630695336927095e-05,0.001855396442751,2.7399875370010307e-05,2.3933939843229517e-06,9.337795194822808e-07,0.0002561486903580411,1.7329536839182547e-05,5.298984505047522e-06,3.246627438679034e-06,2.8416030170725063e-05,7.460791702835474e-07,0.7998165853254751,0.014674206370203878,0.0001473720816580908,0.0005673144594047902,0.9795592731937075,0.001664646577249279,0.0006226691625847567,0.0041942813958647475,0.00043600359960099924,0.05723274521210979,0.0031189694546782942,3.921106772556067e-05,4.9288503371341164e-05,0.007324744848046566,0.00012527045497896176,0.0047634880042355145,0.08401596348474531,4.94977228394792e-06,5.627109617608117e-05,1.8264485051871683e-07,0.07805840406332548,0.6306653476020407,3.5521855618603564e-05,0.00014874015241965954,0.00010256156010742508,3.6798140126479285e-08,0.007356933562163729,1.6387257305051747e-05,3.852890563581785e-06,2.5506644047843126e-05,0.0781790790117787,2.0891321635249854e-06,0.0004751431310569347,1.8163003276923114e-05,0.012583111109471828,0.9836537736441648,3.1320256817405705e-05,0.0001870693201951044,8.87302219664021e-05,0.15798377253633344,2.1544305531085623e-08,0.02240578069239082,0.10362084452628055,4.864968954761207e-05,6.140584402382774e-05,0.39027527769037423,0.9998727224479835,0.030577476219682445,0.0020874690557848856,2.4579336845984445e-05,0.0002688735856842948,0.9999335930126418,0.0006053190768736995,3.1345090827007275e-07,0.00012469998076594497,7.992206081434085e-05,0.999878530070892,0.045586076841491914,0.9982959220764537,4.296338586106294e-05,0.0002988681907781607,3.108658093228258e-05,0.6306004881418931,1.2515341139582312e-06,5.116397571500388e-05,0.9999422565783601,0.9998813749918541,0.9998989094701689,6.80363443832962e-07,2.3036130739524456e-05,4.33052109998419e-06,0.00010007889393011002,0.0008818869975678522,0.06676718956018395,2.447523586497521e-05,6.263009608625564e-05,0.0017277977631292559,0.07101281607668085,7.08857747606554e-06,1.873527978635267e-06,0.958638622655035,2.2792063053435443e-06,0.0009841246623009683,0.06562907161932324,1.0364401882459177e-05,2.5141780990058795e-06,1.345234213232937e-06,1.0413938420177144e-06,0.02627104288897644,0.0006469909894632333,0.0001499961070422099,2.0112534445893916e-05,7.29826858167517e-07,0.0007425723947336504,0.00044119986401270554,0.0013529249393321816,2.458441802677091e-05,0.00038121555317517105,4.042791757402314e-06,1.8559522976088943e-06,1.2380444213199985e-05,1.2186839231667525e-06,5.7233773801599e-05,0.00038865187931374026,0.0010371958337052165,0.0008810855162289928,2.5521717911792502e-05,2.5236543712580974e-07,0.0034352436468071995,0.001643163794908088,0.00012220384067295433,0.0017074101991765927,8.172618116518479e-05,0.09016119022610149,0.9998579015858624,0.00019479790252038126,1.394065033701736e-05,6.526155260758644e-05,0.00020274926382524968,3.25503914826638e-05,0.0007566832425709421,3.190883304074338e-05,0.00010904067914521603,2.210902544864085e-06,0.02357205411379667,0.9640217347889753,0.0005646130027975727,3.8851043437709746e-05,0.00010124880602182923,0.0002694472767535765,0.012718383965978344,0.00036917550725133443,6.263507350242008e-05,9.581389360280673e-07,0.00021646276014375724,1.0010390533249884e-05,0.9906382981883909,0.009933740938754964,1.5769766114786594e-06,0.00010647013235140963,0.003284545262533677,0.000868267775293805,0.00010570796704373065,3.726672458532191e-05,0.0014579443890136465,0.9886790720440847,0.00025917432479753255,0.0012664377135076289,0.9998549992913074,2.2154657790642562e-07,0.00022988000953187216,0.9982182565957992,0.00028608984178950215,4.665970196511612e-07,0.0003949230906543998,0.022405780692390895,1.4409218457843857e-06,6.571613558064421e-05,0.02143432355977767,1.7252383953016204e-05,0.0010881405271102593,5.8814569688598836e-05,0.9166541071596369,1.4442076262666804e-07,0.9678542628797898 -banana,object,0.0012765194585516897,0.9999880474150837,5.925514034263785e-05,2.474540038179396e-07,1.4557086298403043e-05,0.9993337786013891,8.418687954503643e-07,0.9996963770301495,0.9994196485115409,0.9981783345530945,0.45438165369233297,0.6668051588221179,0.3085289816935206,0.9999814912545288,2.94707534050496e-05,3.4381827144516374e-05,0.0007225819129458142,0.00010811689327736316,0.9867984130289968,0.9999543571645757,0.4021392985727981,2.8729687098465874e-05,0.9998821413443045,2.3404212801872694e-06,0.9986166997344352,1.016561232744214e-05,0.00010888476839978626,0.9974750399114608,1.3125092638418688e-06,0.9996186390831087,0.9997191740448287,0.00020452552479709987,0.9999751719824232,0.9754715660681303,2.1633304733088394e-05,2.676535237693907e-06,0.999900886262161,0.00017881160810825938,0.9999978721206828,0.9999986875620536,1.28142204744952e-05,0.9993167909859765,0.9991016204310742,0.9869509907964557,1.0103015067453831e-06,0.0019661622992117552,0.00014191490172138477,2.841477402537412e-05,7.899833456196152e-07,0.9884947772458238,0.9992804247687724,8.522733729694496e-07,0.9987269082826782,0.9999812093987708,1.6801093896155076e-05,0.999997067612822,0.999843686184969,0.9997836907489668,0.7844856109553418,0.12720301828093286,0.11671986737503284,0.8413872299298393,0.001096201429984608,0.9982275575931456,0.9985719249700659,1.1901198092916682e-05,1.2078209795509358e-05,0.9953250139908411,0.9985582039765063,0.999785717784611,0.9999441373252793,1.0610721130368672e-06,7.193985170704282e-06,0.9954466302209328,0.9999912445488605,0.9990666410621603,8.946608695847885e-06,8.97262013967285e-06,1.4898090352202967e-05,0.9996956043473983,0.0009817330100217478,0.9982917989998823,0.17570184758023308,0.9997923887687199,0.9993963773934539,0.12460715863522294,2.6689214115811745e-05,0.0001970416058977407,0.0015633951400110585,0.0008501559328468806,0.9983808560595301,5.419098693793964e-06,0.9999044643209543,0.9984229332637159,0.9995584364258712,0.9995315035499754,1.362057701600001e-06,0.997873389269812,0.9131837042346476,0.999519521765071,0.9992028485091291,2.3161559366861153e-05,0.9999045444140934,6.655760131838314e-06,0.48089295739799354,0.999984638458149,1.3465111572524695e-05,2.3602600968543786e-06,2.637198938843814e-05,0.9999955762558842,8.613489908990863e-05,8.424545860680794e-05,3.6626460623501947e-06,0.7772785198189299,0.9919905816598976,0.15431632712146678,0.9767303388422164,0.898911665756671,0.822967052558915,9.93137079518164e-06,0.0002821615048565297,0.9514230464113627,0.9727549942289646,1.4144110092538603e-05,0.9606848292578176,0.9999967264393564,0.9317688973020759,0.9905984266282444,0.9201232112126255,0.9068056078548202,0.99992473418656,0.9176552335796544,0.9986658723318064,0.9971783677191061,0.9794538950546612,0.9955229159376663,0.05304624865639492,0.9532632186309563,0.9136940791335765,0.9991549163783048,1.085267454257632e-05,0.0008771054442589076,0.9998924469225314,1.0191599398890857e-05,0.9999822417424207,0.9999268527385716,0.9999910197937787,1.957093668626655e-05,1.6776913250601885e-05,1.1876814285027359e-05,2.107631165522374e-05,0.919956823876859,2.7087314816146205e-05,0.256479483056817,6.014060024275969e-06,0.2188916378544801,0.7254168899158753,0.9992862661833508,0.9970978234254211,0.9750092948329352,0.999800830408634,0.29318488541693777,3.82493567915982e-07,0.9998417755420206,0.9996772395886407,0.9993941737291234,0.9985350784503635,0.3746950225687646,0.03422846686409277,1.9771070197189436e-07,0.940977089682276,0.9976406641983521,0.9640116361918145,1.279036112218624e-05,0.9394689658662461,6.078306235675373e-06,2.7827503755939354e-05,2.327970274404984e-06,0.9998954201021254,0.9996822708648585,0.9992869497647254,6.330115216182705e-07,3.350402106138581e-05,0.9999459965438084,0.9999553421871226,1.3667952294328511e-06,1.468440820029663e-07,0.9999926356242577,0.2134825792556844,0.3597583596578169,0.1667229992525801,0.5226625343513845,0.004327717757625207,0.9999403510024473,0.8683515011877833,1.6056038745186e-06,0.9860162375570269,0.394850374441086,0.9995569402069343,0.9999916336705943,7.982997211791392e-07,0.6811629706676096,0.9995376943043521,0.00037725837283816605,0.9986727799489756,0.9999968296778715,1.0309445407710949e-05,5.7195050071270396e-05,2.9012393694036716e-06,0.0006762433757613738,0.7526129304963922,0.00016648567234899654,0.9988268422663635,0.08169092426861645,0.9996410029023187,0.9934372096751392,0.6015572257522318,5.84980405592706e-08,0.00017756354084515238,0.00014102563068428548,5.926750891980951e-05,1.996981965052953e-05,0.9999633417011706,0.999801016092534,0.9629929051050193,0.03695585664430273,0.9999968234609847,0.9827749735180427,5.072987996847099e-06,0.0001362349938170265,0.0702264280826118,0.1561432259016792,6.006570654336648e-06,0.9999537615147023,0.0003434110065459809,0.002132017298031379,0.00014957901156143456,0.9996949545550742,0.9057649555352038,0.9344734749408615,0.00014043382474875893,0.02648749978053877,0.025355541278210925,0.9974834293043605 -berenjena,rgb,4.710087553339807e-06,7.988239455306409e-06,0.9999048551081415,0.00023035449504514523,0.9998908790306934,8.022347287459446e-05,0.00016481110907619182,2.2571442229601596e-05,5.574259395938429e-05,0.00012520411551840017,0.9997113130171039,0.9998435305606093,0.9998346237763864,8.062042697383547e-06,8.214817204665006e-06,4.840943565089928e-09,0.9998474190916662,0.9998589158420685,0.9998298607484661,0.9685885639553661,0.9993247699249327,0.9975065201222618,9.062620008445597e-05,0.997843895030387,0.0007034211535979863,0.999951372114643,1.795227942868312e-07,0.0010602202441179235,1.2111929628638598e-08,0.0014874452779725228,8.274941253958988e-05,0.9998697187067226,0.0001392485562882397,0.002813969099917822,6.55015503307962e-05,8.578754185163918e-09,0.9878105590198805,0.9985170679258945,0.002100219997580579,0.0008749080345951869,0.000826075039931193,0.026518654087304434,0.00011494582335455441,0.0009754812637072851,3.6501780378381303e-06,0.9997862187420119,0.9998509064467254,0.9999056469618197,2.6944394358442437e-06,0.15761563044472157,8.349928668621838e-05,0.0007187954297536455,6.117653781544658e-05,0.00031589403247430216,2.498912510369146e-07,0.0005362571795908039,0.8003365390039543,0.8800125342671851,0.9998368317907327,0.9998180136068042,0.999722344014198,0.9990583937610328,6.73278928603607e-10,0.07355454384668773,0.004110883479162614,0.9929479450350178,0.9999057763721696,6.620270542500315e-05,2.9032123473656263e-05,4.2624538666623246e-05,0.0002314857800322295,0.0007772763509215662,0.0014309834500631552,6.966260188282557e-05,9.585936863547299e-06,0.03379723996631344,0.9999409644547713,0.9962808199679256,0.9976285479178727,0.9182978298601293,4.34190166293504e-07,0.8432357123328234,0.9152373708697584,0.9597095860707096,2.8242583813434846e-05,0.9550536569082244,8.977570804172147e-09,0.9988647588320052,4.8486243578590786e-05,4.1668379875247735e-07,2.307520244037012e-05,7.220500243686485e-11,0.6628089426889499,0.9064200660577171,0.9370806248322917,0.9548580016519482,3.1159294102985974e-08,0.9606803231877805,0.8220750209948021,0.9567391606528216,0.9765995494829111,0.001287828895870693,0.0010046601951921928,0.0003251157769241902,0.9807113309821313,7.943784138426195e-05,1.3436986201088319e-05,0.998058889552387,0.9999618859060486,0.0011006085372953867,0.9999359242878538,0.0005791001738255485,7.488622593761229e-05,0.9997831872791381,0.9997680741003421,0.9997110718514173,0.0009844081710745683,0.999150347467103,0.9998525935250702,0.9999432800269002,0.9998764706705997,0.9995176873887816,0.07360508123877281,0.0018217789281518844,0.9997349199119163,0.0912322888384938,0.9995325442232232,0.0009742028720607603,0.65179786757778,0.15009856398295554,0.9636803463416174,0.010390760133015445,6.976128560138054e-05,6.822129448028087e-05,0.0012422752550538822,0.9997107174672566,0.9997989648776269,0.9998165070158767,0.34050957069899684,0.001804326592207775,0.00011097114956864876,1.1220923582763026e-09,0.0002391199819315042,0.0038587154487955675,0.9266475566741115,0.9871119866998743,0.7826586917133259,0.9973757202662815,0.9999214434459542,0.9951371536671179,0.002214874063092309,0.8574497552245166,1.4237572837338555e-08,0.9997017445448714,2.3167601496206655e-07,0.9998161556277286,0.9998249364046189,0.00041930891541537254,0.003177743300991796,0.999736731914044,7.354511882150034e-05,0.9997641745240765,5.383319537728028e-08,0.0006822902040861458,0.0003359368058959661,0.00015049346161081942,0.00046859519003875734,0.9998146482971316,0.9998133501883698,0.00038531698301675455,0.8961501907856588,8.437644104689588e-05,0.5555458687332542,1.803245373409669e-09,0.9016859974818683,0.00014894021658490858,4.6273466630167274e-11,3.204880331934055e-05,3.091372651434955e-05,0.00040317158058071227,0.0005994239768362803,3.6911296182588926e-09,7.240976190593559e-05,0.0001090339170260835,8.025988933735283e-05,6.115946166635765e-07,0.04272770115477818,1.0238617167207364e-05,0.999814445808562,0.9998300335859162,0.9997091087915656,0.030495261426929363,3.216918531888634e-06,0.99115428483738,0.20692307046984582,1.8874764461597856e-06,0.0016389272856527739,0.9997383192901155,0.00011736177011152063,0.00034967229410818977,0.002380999629083278,0.8532350861437695,0.0006864509825847529,2.0407666738476585e-07,0.9992925144219943,0.000584686654353408,2.916380117683563e-07,0.0010287628672001694,1.2930529301682223e-05,8.257266354100728e-07,0.2044906126199948,0.9976418702541437,0.0008515608751220336,0.9998248247172784,0.0001117924862648896,0.9996582150779596,0.9998094235318481,1.3690337847728612e-10,0.9998670667984706,0.9998712234748449,0.9998404334318131,0.003296017950814969,0.00024374380589380196,0.11950508569073609,0.9998572835455604,0.9998670074447812,8.024779283588366e-06,0.9998137043402736,1.2472798159780998e-10,0.9998767286703331,1.3742989610217918e-05,0.4964205491727872,0.0018945912310102332,0.0008260409904627937,0.9998643607263094,0.9997382230777315,0.999833695794635,0.002345669627185603,0.09170913894870004,0.7038672195230992,0.9965852310776834,0.00015453187786430763,0.9995800638474626,0.9995688226758679 -berenjena,shape,9.157186981153341e-07,4.579331667363885e-05,0.03819711755162065,6.289132976102789e-06,0.22502028408694832,2.22318574464631e-05,3.076364292319119e-05,7.97857065975987e-09,7.424786329588183e-06,2.682490016663263e-08,5.080416272945945e-07,2.532643669512948e-07,3.62276985973893e-08,8.077460694650724e-05,6.670944418109753e-07,0.00012028141955458606,3.029725889668523e-05,6.11269872704707e-05,4.757743128450265e-05,2.7834405897850775e-07,0.03958724289835099,0.001792640718304951,0.00021778985667836564,0.0033955198275675744,0.0012282382516235633,0.002097819469632505,3.1159711590758837e-07,1.3821599076435474e-05,0.0011812262217339735,9.881380323167959e-06,5.456258505980486e-06,0.23520562069117348,1.6752017225901906e-05,8.717502114438401e-07,0.0006197973249114216,0.005910765098097162,0.005784452138855552,1.9864066583978464e-07,7.331563990948802e-06,3.7320077510855515e-07,2.1482305222594466e-06,2.455682657976912e-06,9.971812802875076e-06,1.3594663528626465e-05,7.397597160902487e-05,0.004299300220935794,0.3664010306939874,0.0007392885782510909,0.000171721762474845,2.9489348709668846e-06,5.873202872102206e-05,2.5472557823781872e-05,1.4247996494045251e-06,7.695869685529286e-06,0.00017851475635160283,0.017047819382770894,1.8976098391887878e-07,2.085668835441369e-05,2.7887623098445886e-07,1.1015879895464287e-06,1.9910407594972176e-05,6.819544722385851e-05,0.42738968035518354,3.865283105720889e-06,0.0002883449360614338,0.00040769235759081717,0.0018951608468400466,1.072105329767106e-06,1.6214966437103845e-07,1.4070754856144866e-07,8.465200732924173e-06,0.0001292185510284396,4.6549534780608215e-05,2.775659190944712e-07,8.84622748587767e-06,3.7950179892219307e-06,0.00028355732012416327,7.310055168059578e-05,0.0014938867498887369,0.00026102731569571793,6.137700163342937e-07,0.0014993462719120265,1.1633629330410539e-07,4.106849455423722e-06,2.965434085368297e-07,1.8639432784007528e-07,1.8347812329325638e-05,1.946507798558959e-06,1.716787366134211e-07,9.143812052005058e-07,3.553054845051544e-07,0.005017417543502495,7.139496988678921e-06,0.002910513765700707,1.6081958414231384e-05,4.059602567600747e-07,6.505614065075264e-05,0.00016915506308567174,3.077556217325818e-05,1.5864180722389374e-05,0.0010280368576698056,5.3592002251371694e-05,2.379991028097472e-05,3.9337189768993074e-05,0.004255045292363101,1.1492276776428717e-05,2.929216210921841e-05,0.0017513216568083992,1.1681223459820935e-05,0.0001301478020878104,4.068798417819807e-05,0.00013477953577695345,0.0034614076300200428,0.9999962457835337,0.9999867242612689,0.9999469414329524,4.587207239625914e-06,0.9999772949458174,0.9998232752212132,4.869182266479134e-06,0.10517573296328757,0.9999495606598386,3.0400352171146283e-05,1.8720838372894938e-05,0.9999953906322536,0.033029327925606054,0.9999882523163554,1.36164307136892e-05,9.103181244050986e-06,8.679935220215617e-06,0.0008041521702819134,1.0763511659396145e-06,2.2077512963144467e-05,6.52960102619288e-08,2.9533340199628627e-05,5.9058514530538635e-05,0.0018148706762871568,0.0026772425832884677,1.5580010280461126e-06,2.3499795664290852e-05,0.0045926858091266684,0.3155489056059626,2.9820292850822954e-06,3.746920782484133e-06,0.00035224689988443993,1.9591448206741435e-05,5.2193792956421234e-09,0.000768933741632699,5.708763069245497e-06,0.008433857413543806,7.57011859497463e-05,1.0225514466210971e-08,1.2535815764228774e-05,3.3677497088932846e-06,1.8580380151722524e-06,1.6658808861161402e-07,2.532643669512975e-07,4.35815964985715e-06,1.8373080476411498e-06,1.9923118199651383e-05,1.674413616914427e-05,0.013647310941883003,0.1503691643340329,5.293568562083753e-06,1.5616613116871633e-06,6.541677024332842e-06,1.6112467286467317e-05,1.600739834622945e-06,3.2535029458642387e-05,4.27665799799844e-05,4.6016862884595985e-09,0.00010355300258035301,7.932846597368477e-09,0.00038278782185349226,1.1796797254795434e-07,0.00018228045877325175,0.00337798663312488,0.0028058594867684597,8.653647095112589e-07,1.4772639894103461e-06,1.2195086666615973e-05,0.00018160047959638246,0.023539768595206227,0.0003069747932421727,1.7048326793726655e-05,6.204679739479641e-05,1.2418730538988176e-05,1.0242441961947082e-06,4.6289384339824006e-07,8.989009474682216e-08,5.715706702491132e-07,1.2351497508626743e-06,2.282055639081992e-07,2.084443851788463e-05,1.9888489074399502e-08,3.8333606801349965e-05,1.2807049885777864e-05,0.9998793045804533,7.872162320555111e-06,1.7429614679801454e-06,5.5045991474694485e-05,6.098504822689226e-09,3.3730176077620274e-07,5.449796954136259e-06,0.9999138713429617,0.00020731981219470426,2.6157660540668495e-05,0.00012219266070309217,4.3865415007879905e-09,1.5443373179776077e-08,1.1732921213806631e-06,3.477558368369408e-06,1.1670707173739135e-05,4.475171177082121e-06,4.903426372579175e-07,0.999998797683844,0.9999519846107633,0.002843777365213423,0.015102299486801406,0.24234702549664602,0.3028801618305435,1.985295918117916e-05,8.566529717964079e-06,2.1598914711733257e-06,0.009611893580211606,0.030372086083152415,0.027939423357987676,3.480137044674644e-05,0.05451226975742152,0.022551530126113672,0.0001092976430975482,6.99002668249735e-07,5.267666597354155e-05,4.365573984861831e-06,0.10517573296328767,0.00021167614924004073,0.0005770277057125051,1.5045329799235476e-06,1.909072293492968e-06,1.3328448436368702e-06,2.534147822204656e-07,0.0313012298673872,0.9998661096583586,0.999962061994452 -berenjena,object,9.564325152503098e-07,0.00022497392662353726,0.4691097773351287,0.00012042323839138012,0.9403579435801694,2.958298866395256e-05,2.563763919804238e-05,5.721223907413088e-08,9.689384387655715e-06,1.6270712727757986e-07,3.011420866703997e-05,2.774918222218872e-05,7.206597689674697e-06,0.00040309451322633925,8.030070701228517e-06,2.9273365014217283e-05,0.00047540523288214963,0.001915531044558301,0.0009443740832882333,1.3223275990771844e-05,0.12930798146900238,0.007664548535675503,0.0006403997255628545,0.018975172088627593,0.0033785642927779305,0.03167864407497447,5.264442798590979e-07,5.929121814457885e-05,7.111828321385625e-05,0.00010706941933372603,2.9080216035853943e-05,0.8588584247131335,8.448234830526894e-06,2.7847043421378577e-06,0.000858368497366755,0.00031098190134418337,0.09707603975001818,1.835188778427469e-05,8.838190996231007e-05,8.181191519289361e-07,6.372674225154465e-06,1.1087137117352858e-05,6.003998440192101e-06,3.9741885419233725e-05,5.302825528108639e-06,0.18969451161572942,0.9387479654668329,0.050721430520530755,9.812984337755068e-05,1.807585597836621e-05,0.00010600068434672667,0.0005871178033781415,3.6441225131293773e-06,3.2877198488700416e-06,0.00016249478448393168,0.010120560622562603,1.6564646965505897e-05,0.0009796697647471758,2.8194209152710496e-05,0.0002016275681106565,0.0023288136161633,0.0006010217312410382,0.024632991482161422,0.00020571489413979014,0.006233000811021913,0.001921644677618,0.009238032718520165,3.0384143262000705e-06,4.4200761436924633e-07,4.093914099589633e-07,3.5768143072317445e-06,0.001487496448159289,0.0004787310053559021,1.1755394501428205e-06,4.6517263668113515e-05,9.060078750323566e-05,0.0031204183000075967,0.0003894855511145192,0.005745733002853006,0.0023494454209236912,7.785062812018399e-07,0.02193576119735019,3.0575429142311832e-06,0.00015172021492905425,7.637126827014233e-07,5.876859824077006e-06,4.616943051575694e-06,0.0001166852992093067,1.4312817820275666e-06,1.333228457228814e-06,8.401460699514708e-07,0.00023993859302587461,0.0003559385741206569,0.055800398469321236,0.0008910127304945927,2.825279204948895e-05,2.2271997393825582e-06,0.006768561874675631,0.00047843682848054887,0.0007357288641457246,0.0167801221995944,1.2136701098485926e-05,1.2779988506177186e-05,5.851591431051269e-05,0.026505361596657204,2.218509524525174e-05,2.3415770325653433e-05,0.010820351792266798,0.000402037649515619,5.8434008365255025e-05,0.0009229109661142829,0.00014640241787336345,0.024096833415924522,0.9999984376106267,0.9999862057564886,0.999925998908311,1.6389743373139847e-05,0.9999802236518117,0.9998786556593983,0.00012806651591379156,0.876895450762533,0.9999839416682039,0.00014330586840065153,2.6098447498470405e-05,0.9999979461526868,0.4110141545645973,0.9999944029881997,5.025311222617164e-05,7.955121380574963e-05,3.805878947266559e-05,0.28910840117287395,7.029348197783554e-06,6.912492693246016e-05,3.2464995967989397e-07,6.690386596282167e-05,0.0015814311517175904,0.006273483121968723,0.02782751990163994,2.218701920396089e-05,0.0005902787212681697,0.04030399919842316,0.009065480776145527,2.126784920251064e-06,3.081831135615402e-05,0.00576304947403013,0.00030977427705638317,4.0804794054007175e-07,0.0026171311734301756,0.0001193337053429289,0.029758734281322058,0.00012243829754773975,3.7525992524122745e-07,2.030427488244594e-06,0.0002720805992646854,3.2798841265294855e-07,4.767872086575905e-05,2.7421966637979764e-05,2.3063087434978233e-05,1.4160573846520906e-05,0.001272963469776888,5.905969408669747e-05,0.10637418729730586,0.005329052186106466,1.782236382288846e-05,6.834348650326891e-06,2.944008915509588e-05,0.0001070826353599618,0.00024830814506657375,0.002911598832359326,0.0006526450608782484,1.356238505808084e-07,0.00012368608238977534,2.0790994642943155e-07,5.392669230295344e-05,2.0326829394335852e-06,0.00013896998487628078,0.0001201674989304306,0.008527615921597016,2.1392234839742475e-06,9.870874700393395e-06,4.537409764026825e-05,3.105407954340615e-06,0.19006728219676466,0.0007404123110042534,2.4824248153332198e-05,2.1755373358919293e-05,0.00035436676951191925,3.019026206189953e-05,9.127369480794605e-05,1.4343376271883705e-05,5.5055973060099226e-05,8.643098707935424e-06,2.86501016762008e-07,0.0002607799043331212,3.832226116422493e-07,1.827478679863786e-05,2.533822391028484e-05,0.999894936225919,1.9008942326264835e-05,2.1825935881675885e-06,0.0009556288812777319,2.2245716973886144e-07,2.240433860157511e-06,5.46682682964919e-06,0.9999124621350644,0.0001703450263143989,4.45954962613215e-06,0.00017307870234802808,2.5156480846312403e-07,3.749926230871241e-08,8.685902577009347e-06,0.00013396592565663668,8.05894778671641e-05,0.0010038084672955336,2.6866521929079353e-06,0.9999992756605258,0.9999862892397345,0.00011151020446345556,0.35915800058978076,0.9036207473940183,0.9460934444658547,0.00044840849093149833,3.480256736364004e-06,5.864980236410647e-05,0.11844066380208985,0.20570309240430515,0.06274633049585553,0.0016184665770662293,0.0005967424318812744,0.5324788327541865,0.0009420775220222,6.79271083177592e-06,0.0004378516682596219,2.7379248928622983e-06,0.8771917686282134,0.0038236926890599233,0.04307546669653977,4.9771002978727686e-05,1.2786409955910228e-05,8.919268213665518e-06,1.6397567324801746e-05,0.26444762066142535,0.9998257791251898,0.9999570123320671 -blanco,rgb,4.552497761604494e-31,0.9999999998792297,0.9999998725048638,1.0,0.9999999996178277,8.667609294263079e-16,1.840783819433236e-27,3.254826961234396e-22,3.533777591536829e-21,1.5503123079123949e-21,0.996854872119179,0.9999933288097036,0.999972659476124,0.9999999999846243,1.0,3.2206436512812188e-34,0.0005599621015655768,0.002336478687226204,0.0003118436544453055,1.8388617610972286e-07,5.201584938273379e-08,4.269441004182611e-12,2.931688051032117e-16,1.633901537610194e-11,4.614093059681953e-07,0.17661453030530155,2.585472362773991e-33,3.050602866514481e-07,6.51334924873489e-34,0.9999999999998057,9.270638255718893e-16,0.9999999964858854,9.164205992880575e-16,5.256577939842906e-22,1.0,7.461850552053924e-34,2.8821980234972035e-06,8.182979441917749e-11,1.8408078663132783e-11,1.145064633666639e-14,1.0,0.999999999993197,1.931216408709269e-15,0.9999999999999969,5.9163660837372284e-30,0.9999999474411904,0.9999999973248692,0.9999998611734497,2.247698599274216e-30,6.407371913799274e-15,7.456117745477481e-16,1.0,1.1280580289757536e-21,9.605440425480906e-16,8.68100149862714e-32,1.2354901581671342e-14,0.9995525447870849,0.9998420277242168,0.9999899593839153,0.9999058196874991,0.9963949678555651,6.591104694113951e-09,1.7614969684107997e-35,0.9999999999920473,0.9999999999998623,1.0331685295301966e-13,0.00023283227693593662,5.074883068921542e-22,3.935147023948754e-22,2.2999196731575666e-21,1.0196373235089314e-15,1.0,1.0,2.355216190627245e-22,0.9999992275331181,0.9999999999734965,0.019598436264987078,1.244691704128876e-12,5.2009375363234326e-12,0.9999102935453347,9.787007915957939e-33,0.9991877158794842,3.25653729401616e-15,0.999953116931395,6.098598097052694e-22,1.193162109805927e-14,5.021389322591573e-34,2.0844903659681373e-10,2.0415028831753078e-29,8.916515163448174e-33,2.1954337762206874e-22,6.193394411088793e-37,0.9989149837375285,0.9999636717681214,0.9999432114833208,0.9999577981679278,2.7127763371102925e-33,0.9999541535580614,0.9992658293345141,0.9999193026422313,0.9999467842599796,1.1275813348449606e-25,1.098984113790678e-14,1.0,0.999980369293169,1.0789910768561643e-15,5.994945121671557e-29,2.1820360657736402e-11,0.9664011875079828,7.1982165554001e-15,0.010173049889186696,1.0,1.0,0.9999982658843023,0.9997487888583003,0.998945971163105,2.2240764860388594e-21,0.9934931825570896,0.9999941608943297,0.9999788504584904,0.9999999964451951,0.9994752757173814,3.1278844626479886e-15,1.0,0.9999961336776744,2.3778090525468722e-07,0.9996746345411054,4.859712478771355e-21,1.1019851447964417e-12,3.882873680051281e-18,4.6745966674391386e-05,6.033343606061127e-21,7.169008343764525e-16,2.7261944476735765e-22,2.3703143326436272e-21,1.659265543954704e-05,0.0001000832620692911,0.0002676509410788988,8.549899920466008e-14,0.9999999999999343,1.0,1.5990202866944526e-35,8.140209847794777e-16,1.0,2.278273261911184e-08,4.439263381944813e-06,1.9960921746001745e-05,3.5325574242554916e-12,0.0011827771069436019,5.18170532428133e-13,1.0,3.6298583628250083e-13,1.1857529674980066e-33,0.9962098790981415,7.648984160901282e-32,0.9999329333273386,0.9999881082728588,4.361425932236835e-05,0.006006348606411772,1.2326564156812165e-05,5.842561457435005e-06,2.3600821399486474e-05,5.543518975148379e-32,4.807512981457572e-06,3.505481256545817e-07,1.4467452327866289e-08,8.871490651473773e-08,0.9999694151650104,0.9998857659819764,1.0,1.5109400963554845e-12,7.619221259804295e-16,6.130319960663591e-15,7.318912187933804e-35,4.195544075869709e-12,1.5264193570704036e-27,3.0946103224771068e-37,1.0,4.596488104676544e-07,1.9109536710827555e-05,7.608366969386015e-06,2.7923563055296153e-34,1.0,3.9031489267159153e-16,1.1045415398354153e-15,2.31744061552578e-31,1.0,0.9999999984009973,0.9998885774044485,0.9999855120446481,0.9953883358661535,4.924810519077416e-21,2.503995088375199e-31,1.3182354707073201e-05,4.17313292700104e-17,1.1091501881707124e-30,8.097186259200435e-21,0.9999759831400962,9.02655740920972e-16,6.481038804498109e-16,1.0,1.934520893863916e-13,2.135800595264393e-08,2.9197159847390157e-33,0.9967188073327066,2.531690918113308e-15,1.1248986479906586e-31,1.0,1.0,2.8897166241749825e-32,1.6968422722775568e-18,1.2953103034261269e-11,7.044032183986649e-07,0.9999706173502904,1.5443273137427704e-09,0.9998836349108866,0.9999967154824834,1.7089344309120045e-36,0.9999999175361421,0.999999998947791,0.9999999994325315,1.0,8.378201963633876e-16,0.9999999999898697,0.0029573078902261365,0.005870577706462098,0.9999999998766211,0.0006401393091032854,1.4722718817233088e-36,0.9999999963341288,1.0,1.1670999205789525e-18,1.0,6.055016695751181e-15,0.9999999969683999,0.9999963150793147,0.9999988932518918,0.9999999999999731,4.253703649701519e-18,2.045573697497283e-14,1.9078879667028242e-12,1.0,0.9540130678982846,0.9898336575142542 -blanco,shape,0.002449926820004148,0.1187084032577542,4.7211546204194405e-06,1.292582181023641e-06,0.02374668255842419,4.755583206655716e-07,9.293130041159494e-06,0.000279439844523272,0.0001471278883902489,0.00022907532650520655,0.9999609422916698,0.9999863161373712,0.9999993402427291,0.039938903736052925,0.9925238671868277,0.73776922930525,2.073377228372068e-06,3.16169244995305e-05,0.9906102164420441,0.45767047376931325,0.0008681677560940591,1.0009893400395273e-06,0.9637445110782811,3.270098513196278e-05,2.6240766494157122e-06,1.085414305298659e-06,0.006907100455766637,2.3588738602375668e-07,3.0161904359503017e-06,0.49657553702635593,0.5288485387161037,0.00010286440589076106,2.141389745550889e-08,1.5848462822232868e-05,7.472832045981567e-09,1.0508967567276366e-08,1.7780693672736305e-06,0.05489532841274704,7.756757306814326e-06,0.0022853712982797516,1.7056609161315899e-06,4.2991143309060973e-07,2.0388607174027477e-08,2.666267671750922e-08,1.4780100506944525e-08,0.0007188782948000218,4.339288976016561e-05,0.6540352886213746,0.0002865103273452704,4.261833435842003e-06,0.007618983614681165,0.0021556730754015603,0.00013192043023567803,4.628125990750158e-07,0.00440816689066125,2.6939775648270668e-09,0.9996923444756178,0.9999956444346161,0.9999476233558997,0.9999838585212015,0.999685334268892,0.9985721114981009,0.3631282095800479,0.8542300003795184,0.8564511483582483,5.077926393225146e-07,3.84267681577927e-07,2.949392791241141e-05,1.6479662442210708e-05,0.0001078549932502131,9.067261053972049e-06,0.06292513023367668,0.7309927936386508,0.0002546298583696945,0.42457378520864286,0.934761030844566,6.003266137197849e-07,2.181322354600546e-07,1.6965487278969097e-07,0.5271272991343575,0.0028968248653412267,0.5034348880810116,0.0018626202607646546,0.999177066666604,9.538100181119704e-05,0.0003452397722780499,0.9965913063802737,0.419309434925957,0.2067015728191667,0.006854555761145973,7.414844656029253e-06,0.1192136783453254,0.9963082667430345,0.9968276683037026,0.9988305146204651,0.9999985577404766,1.673171952303936e-08,0.999218019558838,4.811959279486363e-06,0.9977669164412479,0.873441354194809,8.530114028348461e-07,1.010752907770517e-06,3.665959903036795e-06,2.7006211321543925e-06,0.42353662739779074,0.03304255960194658,1.8600166074554898e-06,3.567965467840079e-06,5.624462993495638e-07,2.984124069638093e-05,3.7867594810561586e-05,0.013790316074498236,0.0001161392470200585,5.136466530444687e-05,1.95228770024178e-08,1.8552709311607052e-06,0.0009684370546064633,0.03927376053765558,0.0011322624653160483,0.7406198946681218,0.00016068123429762148,2.9430839584377307e-05,4.046287968350414e-07,9.797311451482474e-05,0.9999972587823179,1.745268247712795e-05,4.076303133981234e-05,6.1684553189254235e-06,2.2325310703372886e-06,0.8684139025338709,7.954702164745507e-05,0.00012138980697234611,4.954102914778512e-05,1.2589196308373307e-07,0.09853245082537969,4.080612209353618e-06,0.006319443786502332,6.0783674910484735e-05,0.9389621974579087,5.634899551946731e-08,0.03822488628962947,1.5197602957635681e-05,0.0003213664598974585,0.9999988992070772,0.2456303266806584,0.9916846142968266,2.5099305905484774e-07,6.004692138339693e-07,8.833933727351278e-07,0.004805362086808229,0.22409871627654157,0.9540404226184469,0.9999484286165375,2.3155309483981675e-06,0.9999991697017456,0.9999863161373712,9.936782337974955e-07,4.361444677378884e-08,0.9527267833180143,1.9880581779555173e-08,0.32624730975963756,3.722063020793346e-09,8.924696339126318e-08,1.1138938921769987e-07,9.587791437038908e-07,0.00017401612742321402,0.9999673690453647,0.9993704200527015,1.6148745129899865e-05,0.47110672395380687,4.5537498894871737e-07,0.0012109934864459359,0.9974226219494452,0.0020075569570511243,0.0002886671940541148,0.011731455483874796,0.09369818353348837,6.700070477184001e-08,3.2251105100834285e-07,6.964412844926236e-08,1.8096015339099922e-09,6.273131393861478e-08,0.8816388804764115,0.17413731918101255,7.25956313293416e-05,2.6086233753744345e-05,0.9995123779041696,0.9999076978112833,0.9999894781203283,0.9991948101305319,0.0009921352540275083,9.109037261532267e-05,0.0003425319390765755,0.0016102859295421008,0.0006653980647047745,2.7277518834402026e-07,0.0016084005051301108,0.0012732401360961221,0.00010016741621278175,0.0005028272016896543,0.00033053229772786306,5.511466627925495e-06,0.04264562893835917,3.6085868158135514e-05,4.2943480308387665e-07,3.740199608548708e-05,1.8255012263281316e-05,0.9883869416012059,0.0035789543091343926,3.256708554469682e-06,0.019637087844505845,3.4388075803801357e-05,0.9999646289526728,1.2435065221760071e-05,0.0008535175995454787,3.428090449835284e-05,0.05190233858250841,0.001187600931088474,1.7967231763103246e-05,0.0008980101945210967,0.7892432570851186,1.0239684142490641e-05,0.007677134727856811,0.7471746636690786,0.0003943223172382924,0.0002832162766012693,0.6717255064367373,0.004995412135705945,0.8025341529121872,9.717490211304823e-05,0.003320105739022441,0.5660416873918155,5.394900928872557e-06,0.7406198946681232,0.0008911263059045918,0.008746717367495663,0.9929924158334379,9.610576525976044e-06,0.0010240937456841646,0.036513939315457454,0.8613294502810639,5.8223232058556274e-08,0.00011338285183866671 -blanco,object,5.2543103540209555e-06,0.996184185606785,0.009877786766715595,0.9994282717930831,0.9424419307083445,6.422708896275933e-07,4.2247347378277845e-07,4.501179042449623e-05,1.654313969576847e-05,3.346177010438174e-05,0.9999732735137321,0.9999950869815099,0.9999983463345427,0.9934291941161297,0.9999999984434385,0.00020975866542304362,0.000441348640171796,0.002288155499463303,0.9976806699950945,0.9032876653526335,0.07222487375064561,1.2169246542761404e-05,0.06604613828325624,9.605354397642766e-05,1.86856660719881e-05,0.0009097290698209207,3.164235369850915e-06,4.867199724644161e-06,4.137703816336126e-09,0.9991727118515509,0.010045299005418227,0.04741274768964126,9.879992417310149e-08,1.7308004533002343e-06,0.8485945050176638,4.24615587098631e-11,0.0006376988555121571,0.14191039839057815,0.001225446893038373,0.004407136789743388,0.995788520951424,0.013311349005535161,3.234514488831271e-08,0.011499331110984681,6.491713656029437e-10,0.5577181006085445,0.0755597953680873,0.9936616436310864,9.492776567260552e-07,8.883604673622077e-06,0.00018329819649560655,0.9999933075374686,8.123476386604554e-06,3.356140309738046e-07,4.3861953279443334e-06,1.6545274231246554e-08,0.9998498364236023,0.9999941409015336,0.9999897289334899,0.999980113549997,0.9998448956549311,0.9952985309177845,7.634306733167798e-05,0.9996405153777194,0.9998503998059097,2.076503939620725e-06,7.820638236081928e-05,5.050878896617521e-06,3.2160012454803303e-06,2.598807544696923e-05,1.3622288900689962e-06,0.999999652552143,0.9999999117513125,2.138467578635203e-05,0.9914147946791397,0.9995526453838235,0.0008733178509008114,2.3942585640844608e-06,3.0898158037332615e-06,0.9902925307606132,2.209359693132912e-06,0.9910834045965944,0.0023157364302950015,0.9999414070165876,1.0347200858421442e-05,0.0012085944108162715,0.0021688245056914815,0.3902541199762257,0.0006274607798685038,4.171173949261656e-06,1.7158085815762203e-06,4.102959671754394e-06,0.9994971310298986,0.9995482680906921,0.9998325119971878,0.9999961648842773,1.702852650094807e-10,0.9997962715240677,0.03187859580392415,0.9998922919510326,0.9992338107207961,1.9583372867690357e-08,5.016496687929767e-07,0.9959201745102082,0.05188130893445814,0.009443560312305647,7.155035954884587e-05,1.5303315660133644e-05,0.00517769405230838,3.672748445434408e-07,0.0007157626351247808,0.9999924317840293,0.9999994972545517,0.6678952640689639,0.12177696350392363,0.0003244664184040929,4.1513760674216936e-07,0.5686142596647717,0.9850436173844154,0.16301666990104427,0.9958127848338827,0.3231940772333952,2.7921375820510196e-05,0.9766630263915347,0.3550820917948982,0.9967161981831826,0.12492417698276126,4.801391473984124e-06,2.5336839589268124e-05,2.8241538901891905e-06,0.8225818304094389,8.66607048146824e-06,3.523486072052388e-05,5.79973454254777e-06,6.663396487799689e-08,0.7833910978058579,0.0006291397993305877,0.06744982604865427,0.00011549936485281198,0.9999397283654603,0.94824923804885,7.864950620489375e-07,1.7864948972515634e-05,0.9999439494194864,0.9985315782656056,0.30689714834702153,0.9933524665168956,3.7455345252646565e-06,0.00027615450366374117,2.8686395939936856e-06,0.9999900844988515,0.12239161508193412,0.00024960255728710744,0.9999327588201924,2.156218494958043e-08,0.999997451275907,0.9999944172554543,1.9058890539380038e-05,1.9334947498358342e-05,0.9861613111780791,1.388573902442132e-06,0.8872343780357256,5.392831147041009e-11,5.9265221515135e-06,2.952714009721013e-06,4.88432556320419e-06,0.00021755587165391333,0.9999903884978376,0.9997065961015636,0.9998493936118583,0.3126917395437466,6.222002850366533e-07,0.003029313203925738,0.0011469084126342296,0.014684043225620348,6.708322506781287e-06,1.7747540562408614e-06,0.9999998487331592,1.7837153606945643e-06,1.359828984307282e-05,3.5668588320042863e-06,2.98803054963882e-11,0.9635865631848972,0.051422529736924114,0.0030468849255410393,2.637701588036493e-07,0.9994263737775122,0.9999235826357865,0.9999547487290179,0.9999936429359224,0.9994609898258076,7.219558388816183e-05,1.0475019092212937e-06,0.10655084048212649,0.002098308542399802,5.009616808181277e-06,1.0567126912691778e-07,0.7671782625951772,7.601655338466163e-05,0.0001535341294932862,0.9999805008729687,0.002375799172798012,2.4366818242811655e-05,9.663945780464318e-06,0.04165508490730015,1.2088280112127592e-05,7.248137837839587e-08,0.999966786784939,0.9999999986144659,6.474116647733376e-06,4.848640960524258e-06,0.05844183583175012,9.443891741274699e-05,0.999980419122165,3.061089836208726e-05,0.6988802368144825,0.34285012680129634,3.375109592111456e-07,0.37400867206110244,0.0365808408846811,0.6312887260633118,0.9999998333623228,1.4467245424688263e-06,0.987006422181832,0.9795272689498035,0.2386766818927791,0.8532460946217212,0.9690594399533401,1.4484622813988903e-06,0.994720676117379,0.9999986638886817,0.0005255171010455259,0.9999998511050254,1.8077934786053746e-06,0.9958520661985787,0.07861039718550765,0.772408503761804,0.9999835789446926,8.22522836669592e-06,0.0012491116005919993,0.054704396655319114,0.9999999868288838,0.0001521357680105145,0.08610428222367167 -cilindro,rgb,0.9280630053230181,1.0,0.0003236237146168894,1.0,0.013712166416008458,0.9997582352237607,0.2868516474351227,0.9902854573527216,0.9729742568087636,0.8013023389306109,1.0920608666942576e-05,8.681428507384016e-05,4.4872112612573685e-05,1.0,1.0,0.9999999774082223,5.4983421912189365e-09,8.933686714654772e-09,5.108544050003884e-09,6.9834870542050734e-06,1.5512932960129937e-09,9.46576507172891e-10,0.9994692314032634,2.664970751514075e-09,0.9999976913700053,2.2215677029613785e-08,0.9996927232044225,0.9999925828842839,0.9999998100540773,0.9999999999999989,0.9997482074708585,0.00457913680173069,0.999153630665744,0.0025666571222380734,1.0,0.9999999390815314,3.1433779172935936e-06,6.896552954912755e-10,0.9957702282121056,0.9819604147317218,1.0,0.9999999999933864,0.9996165575414329,1.0,0.9974597501457109,0.0023507215307808126,0.006797308595697308,0.0003037581481792595,0.9977311407636913,0.0002164527027776492,0.9997154238816954,1.0,0.9470307795559398,0.9945119190600263,0.9999734954001195,0.9943122395148012,0.9879154491849985,0.9729644974818406,7.526097816005783e-05,2.7806893704051882e-05,9.405371852876333e-06,1.2661186245637807e-09,0.9999999992354107,0.9999999999135913,0.9999999999999909,2.9001160101862624e-09,3.6733258994221884e-09,0.9142605497713796,0.9841962922864267,0.9822038086698273,0.997391003206041,1.0,1.0,0.8732753635873156,1.0,0.9999999999746632,1.1528356650972206e-08,2.251597884704102e-09,1.0193781865099664e-09,0.9487091535082266,0.9985424208462269,0.9682849090816763,3.022019765625989e-08,0.8278706573204131,0.9876409105670324,1.3042725261918739e-08,0.9999999030526335,6.44043689241898e-10,0.15644937096859557,0.9985696212677532,0.9879545349161721,0.999999999981648,0.9961700076540095,0.9767225364442119,0.9259216837482754,0.8691934527511918,0.9999990461495939,0.8213451608485667,0.9785002410779032,0.8096397637962716,0.5612110795690761,0.020292296893842342,0.9748801994008869,1.0,0.5839277646416267,0.9997866367304911,0.9808368134884552,2.230555372498734e-09,1.3321311225822567e-07,0.9627339003572013,7.0332828313768375e-09,1.0,1.0,0.0003419339232102012,2.6587908207861294e-05,1.9375712372958298e-05,0.043816656197712515,6.930308336154222e-05,8.336370183822646e-05,7.907956591802666e-06,0.0041579259553184075,7.957627535753075e-05,0.001060251653407087,1.0,0.0003277547681321223,0.7573104612602878,9.601557539128745e-05,0.06063979703126259,1.3103204107054967e-05,1.106905285907823e-05,0.00013858747750375753,0.0003819728200432908,0.9998090748248132,0.8847768004534434,0.027284084145216915,3.611262668304063e-09,4.159994910605407e-09,5.40962093959967e-09,7.175286448005883e-05,0.9999999999999991,1.0,0.9999999962063642,0.9968799285809565,1.0,1.8489560177606428e-05,4.360671675340924e-06,0.007869366699450717,1.165006713191366e-09,5.657789774008711e-09,3.0530297143304947e-09,1.0,6.494131880372907e-07,0.9999998145466842,1.0580642296584697e-05,0.9999765262034979,3.400779398747772e-05,7.861019044937075e-05,0.9999999305375405,0.9999993469499601,2.7431555310593313e-09,0.999999996804428,2.9833416927986895e-09,0.9999995767940465,0.9999993363757295,0.9999995317156233,0.9999996521349366,0.9999979722073994,5.267904083812191e-05,2.635372917515797e-05,1.0,5.535789432801904e-07,0.9997113588345008,3.3437290871685303e-06,0.9999999957798951,7.54967155746997e-07,0.31997027378026605,0.9999999999909992,1.0,0.9999999985089327,0.999999903794165,0.9999996113305863,0.9999999885392313,1.0,0.9992864682725013,0.9997838461162996,0.9998280956820434,1.0,1.0,2.6401241727676003e-05,6.670105823243236e-05,9.083997881732367e-06,3.4674332095944366e-05,0.9622464065925195,3.2194954093707095e-06,1.238807491429554e-05,0.9986026741617734,0.02437150347483117,0.00011855270432812932,0.9994264964070798,0.9917010102704649,1.0,5.352183800708992e-07,0.9999899543126292,0.9995647467524439,6.747595153410868e-05,0.9856063180501559,0.9999660543229004,1.0,1.0,0.9961703212951384,3.6509093124375615e-06,7.924523996215472e-10,0.9999970762041736,4.82383327376534e-05,0.9999994767204674,8.72377859148604e-05,0.0001871058810610904,0.9999999999493683,0.0007472779092123589,0.0093200161304869,0.01932005297237162,1.0,0.996782158732528,0.999999999657831,1.0089489139269269e-08,1.2170655235433398e-08,1.0,8.059650382937266e-09,0.9999999999562914,0.004067430215340574,1.0,2.1527507290531246e-07,1.0,0.9788214503208541,0.005357956825354415,0.00032817080839026507,0.0002623666327490702,0.9999999999999991,3.806482125304477e-05,1.3981208272399442e-06,8.84207225325596e-10,1.0,5.732018447153446e-06,1.3386222787316788e-05 -cilindro,shape,0.4102806775953574,0.9997518688931435,1.7064800234229844e-05,5.6047194916042115e-05,1.7693158113236975e-06,0.803942985104394,0.1411032825315737,0.06326008423305005,0.9846959945259269,0.13236189662663173,0.9999994629034505,0.9999306769724126,0.9999516166969823,0.9999714680720133,0.999999153487173,0.9999062394604844,4.178739947623262e-06,0.00047480499480428696,7.581235315670709e-06,3.6246690242468534e-06,1.2635473667384818e-07,0.9323146573422518,0.9999302338597756,0.21994107899362458,0.7912717068468549,0.7666807204121353,1.0197762860662167e-05,0.03144288055150925,5.8682418427929205e-05,0.9895528659581624,0.9999761447870763,7.336989365700989e-06,0.03143685065898558,0.000301420390881902,4.042853182215777e-05,0.14198491924829199,1.8985422169531492e-06,4.604152084830397e-06,8.756583411060455e-07,0.9994901409169793,0.999887974395588,0.9995945940662097,0.08841135383153967,0.10908831410393678,0.007009231577801469,2.4386594273645193e-05,3.739362300569434e-08,0.000989716538277107,0.5329213743982321,0.0003191187280025346,0.9970738326884176,0.014937416165973261,2.7438259768330524e-05,0.999858106467808,0.8364469613493944,0.05869621679495871,0.9999917366431341,0.9993341248503561,0.9958159009948199,0.9998922028588833,0.9998081102683166,0.00040839546185320903,0.2319307434252609,0.9996829720481973,0.9999955605034815,0.8566958778635756,0.47967495000626675,0.0075218541384738805,0.00023480753469244263,0.7004003883353058,0.9999996186324103,0.9997907496810904,0.9997850524827481,2.145104889778967e-05,0.999886236504032,0.999991798297802,0.37330957856289776,0.254575597211141,0.12550046585671942,0.2343590689850514,8.749638342525281e-06,0.7778270687294255,0.002009131721206653,0.999861347306507,9.912982768133659e-05,0.0038116135421171287,0.9999909724893347,0.0002990893522922518,6.13784575928056e-09,3.291386907857496e-05,0.0009416265259942301,0.9995124368127949,0.9999455929513374,0.8929699068457437,0.9999943772966022,0.9999842638539851,0.012482801473020947,0.9950066311939448,0.30037485651740786,0.9999528802660776,0.996591122638841,0.32448371754863675,0.7410758311119199,0.8845245640159608,0.7891337275035857,0.9987022711302518,0.9828926976679789,0.0031168087827900632,5.472271895605478e-05,0.9998652742547757,0.9996168698499213,0.6751727742864354,0.9999294023240931,2.721184586783898e-08,0.00012646337957289327,0.00023714944009782098,4.00155545159655e-05,0.0003164478749647865,0.0006471708502801267,0.00012098584301266023,4.938513653344505e-05,0.00030198935576066383,0.00013053472197657653,0.99832858016605,5.823715346622558e-06,0.999489926713189,4.1946198730716e-06,5.794982490856951e-06,0.00020694631146255692,0.00021707024729768773,4.397055251370417e-06,0.00022302280708271294,0.9907691237427272,0.00020293410518264373,2.0852913225263364e-05,0.00018514125703945577,0.09107921255946673,0.006642751671125659,2.4860969766621768e-05,0.9999771883578936,0.0014592536580140224,0.9980426772613235,0.9992522665551761,0.9997106376706537,0.9999856388328217,0.1640856073929058,0.9746461255899203,0.039125609375111385,0.0635235213123939,0.9872776825771252,0.9955350238803286,0.001671628288052744,0.9843256309514818,0.9999787912097117,0.9136219669601481,0.9999538628591461,0.9999306769724126,0.007544041083450507,0.007250073809844315,3.0280877149129116e-05,0.1396796732692675,1.3080989541144482e-05,3.504742833182939e-07,0.15217515615757624,0.4952209897315227,0.4790139697957312,0.8902057895873742,0.9999631364536528,0.6935855847250156,0.0014262811187458536,0.0016391838073679095,0.07666367435559449,0.09974326516429895,0.9999985287031654,0.015246850270128585,0.9995041139044951,0.9997249152127459,0.9998960006580878,0.8661648007657067,0.01606030193056717,0.0013499190588289385,0.00018572878374655704,0.0001775735233734746,0.9959221386273736,0.9987374770518747,0.9467200899326499,0.8483450907403147,0.9999986141927766,0.9999993816280133,0.9999751616205982,0.9999474963585221,0.0003397222065279683,4.0936431133985024e-07,0.014517498487068663,0.001335676555279167,0.9969750503308719,0.00017771523110002497,0.00026057674401962563,0.9555003623680933,0.9995572498076535,0.9938926636032906,0.0006058467709057413,0.9860439164282425,3.028792470069273e-07,0.00030489716574558874,0.020441756864388337,0.06853727042971547,0.5431313035746921,0.9994960523289144,1.3727148121147118e-07,1.2196478322681313e-05,1.260720827116992e-06,0.8953849593916727,0.9969865495089448,0.01180191283650888,0.000278560055789658,0.00023332124312106146,0.999697425967972,0.003847433269892913,2.0220312174507268e-08,4.1719966133882026e-07,0.9999991654158369,0.9999921944660846,0.9999465038366933,6.434685504996106e-06,6.137017964669714e-06,0.9988422702522075,0.00011171800091898199,0.9996218809029963,0.9998652445583115,0.31055805727747865,0.0015581046981075848,0.9995466164120256,0.9998901572913308,4.938513653344522e-05,4.005291301745113e-05,2.0672265315292593e-07,0.999670053395928,0.004027233026226497,0.0006614710137895084,0.0026700999868622894,0.7531121301467497,0.00021589650649926132,4.317071207357655e-05 -cilindro,object,0.2583442534094421,0.9999618018609205,2.3667863306256761e-07,0.046504424149709435,8.610948350469978e-08,0.8222208051837732,0.08128344442965946,0.3506739502293331,0.9766649687867819,0.5441546254501073,0.9885168274327553,0.9144167441867042,0.8477962077791517,0.9999838756021066,0.999999987733951,0.9999686756995133,3.0583358470588685e-06,1.042469277025915e-05,1.6106037011042876e-06,1.6318364925358356e-05,5.325860724148974e-07,0.01541590006432659,0.9998008855923171,0.00030766202591198506,0.602108415362745,0.001508451836207689,0.0008443099061337698,0.08175873065592616,0.007827871578168728,0.998811532010252,0.9997600206920932,4.0125105736478167e-07,0.40934028405888556,0.0003355962481421416,0.19721383496109535,0.2518249534138183,2.1787603712536642e-07,4.300216717754702e-07,2.5359885119962654e-05,0.9995621520215504,0.9999947637211244,0.9996897672948929,0.26955104891966336,0.6950497303623083,0.014055632377858262,1.7245740133270793e-06,4.243439594078227e-09,7.047862119163749e-06,0.41932205439229897,0.0002253139591812227,0.992167857441046,0.3386521810627966,0.0018776615966942891,0.9998223636667659,0.9903727849945057,0.033609957685786736,0.9946213553182771,0.9877224491938248,0.07244557492912744,0.7586641801974814,0.5333273598465168,0.00022035925672939195,0.9438828608557929,0.9995713371885032,0.9999913172293565,0.005819402330402594,0.0033985876605825555,0.08465731539240988,0.007100088817581704,0.8626964346363032,0.9999997469601988,0.9999431951891742,0.9999348091511651,0.00046995410528592025,0.9999837355323532,0.9999577243960655,0.0008260439607234618,0.00040811095044945877,0.0004207005730025357,0.3646316818403378,0.002023021604022036,0.28683183280792396,0.00021466218108892008,0.9634101296146677,0.0037908900251907122,0.00048122595641454354,0.9999934648381023,9.159548962677856e-06,6.79020926545728e-07,0.002034077330857316,0.02423213822530884,0.9997765459020125,0.9839455998989376,0.6556631212562616,0.9941637874873395,0.9932811449578653,0.09879699619299545,0.6618638224155391,0.05664754130772961,0.9967443972546144,0.9439160374446335,0.5285036940633029,0.9793314012126814,0.9998781122533404,0.18946464980909444,0.9993611823198949,0.9877654026734675,1.051316890130837e-05,2.204457876081137e-07,0.999775140810418,0.3360607536781765,0.9970850956759333,0.9999698723217345,2.733874400498713e-07,4.409307347827004e-05,8.390374556906804e-05,6.971348648934833e-05,0.00022593934539961544,0.0003490701502656422,5.078856092764681e-05,1.8238574550501208e-06,9.845044858795684e-05,0.00013812374654284147,0.9999310332446063,8.312082324674083e-07,0.9479733779295156,3.493298906395184e-06,2.2778234393933355e-05,6.664408647386954e-05,0.00010668924479965648,7.575020347198345e-09,0.00019704328391247214,0.9754990274290678,0.002155197071693876,3.335691973088787e-05,6.691702968031427e-05,0.0018132641170565088,0.00035972649297065485,1.7322659846573144e-05,0.999988518881823,0.01855339244920099,0.9984987162534771,0.9996227564764497,0.9998898418706914,0.9850750593236273,0.02523142449786114,0.8260984414983154,0.0002420362592173558,0.0001099437051984718,0.03852411424823864,0.9999077486353268,0.0008283338897628093,0.9978477696865998,0.8602848745544848,0.9313316947644442,0.9637879775065797,0.9166287195867301,0.04914103568562832,0.021993427396210935,2.0841702619571265e-05,0.3323961300436501,4.650895703094921e-06,6.477415830245418e-05,0.2648658483650572,0.5695049385963359,0.5711188730767679,0.7737993048819142,0.9506988606970256,0.022460805721563736,0.3521834215231282,0.0010127177226611256,0.26599906790076266,0.019983941000441423,0.9999992020378626,0.007709810691606129,0.9861549762609808,0.9998886676309737,0.9999959866771057,0.9651351645205027,0.05792602016326234,0.00902925491687306,0.1650246734520463,0.0024596560948626778,0.9885697931146844,0.9988481091305332,0.937797500693145,0.9310701030230404,0.9999997674320044,0.9974808256648966,0.9031506313242414,0.7795908327099366,0.0009130170285239319,1.666193065778765e-05,0.013064768350704949,0.0019568905896761475,0.9840750631883887,0.00031115202875436947,9.159149787495543e-05,0.9398096718588996,0.9995979447101165,0.9980642890988064,0.00036808714466955906,0.9751090240334905,3.159894697393164e-05,0.00016056428501406872,0.3209906821749525,0.41086062363311443,0.9983414925039531,0.9999853949060987,1.902420309332176e-05,3.6852317221308276e-06,4.639432765695176e-07,0.6607307542967594,0.13393242926333657,0.10242754232132113,0.00010560902168686294,2.764191443352837e-05,0.9998953294271875,2.6412769857411077e-05,3.6825502119308023e-09,4.7138223693915863e-08,0.9999992840224098,0.9999982730825394,0.9998785222869446,2.7588839332458386e-06,1.6221507993602046e-06,0.9995377856975518,1.7534073889592295e-05,0.9999803865131648,0.5968553095721506,0.9796797740414352,0.0006594958750837412,0.9998495030780264,0.9999377599220254,1.9168277651145754e-06,1.5821428218171436e-05,3.2256909930314996e-08,0.9999104740641476,0.000597010837570366,0.0004493681595140452,9.042483976488911e-05,0.9849542408171829,7.470549923634796e-05,2.4916893233960098e-05 -cilíndrica,rgb,0.36175644668107126,1.0,0.3130811608794061,1.0,0.9953551428246108,0.3542566170588181,0.3841004763008383,0.004388259961454198,0.001966686257565732,0.00026795391223338727,0.0002145486136091978,0.016051288137271354,0.0052052815022731735,1.0,1.0,0.9999999935081587,3.3267287197224056e-08,6.363019447772703e-08,2.5140198440786356e-08,2.0557191441240725e-07,1.1150342922708998e-09,1.7157290017896602e-09,0.1850254411814179,3.5299220312477166e-08,0.9992963047779853,6.651186758633405e-06,0.9924059950156399,0.9976420786347361,0.9999998992452882,1.0,0.3474962563035459,0.9438486531227994,0.14467348692532264,5.690506551256622e-07,1.0,0.9999999829423626,2.0798018986686417e-07,5.586835641128564e-10,0.1398196750907086,0.013132748744647427,1.0,0.9999999999999574,0.28271500840584274,1.0,0.9991497084736193,0.6080803012758357,0.957949031749642,0.2957597075370427,0.9987684231932488,1.978954067514291e-07,0.3155326472467658,1.0,0.000985875480599213,0.02851802349042334,0.9999908542654795,0.03840590700690551,0.9921347623943092,0.9883365504417455,0.011791622978735308,0.002069298557278774,0.00018522876905395356,6.792946733808575e-10,0.9999999997414422,0.9999999999994869,1.0,8.888528410328058e-09,3.3654679884377744e-07,0.0006000938891208691,0.002849245177035172,0.0028137233242188455,0.05612490931496158,1.0,1.0,0.0003963228718098342,1.0,0.9999999999997489,2.617366726829455e-06,1.1846191231878236e-08,2.417944445872213e-09,0.9826777394480825,0.9628121278254744,0.9774053515602166,3.4436222901240544e-10,0.9562567848393381,0.0036419696610313877,2.5274659547657867e-10,0.9999999568703143,7.927681081519373e-10,0.00373855120374623,0.9599357363666748,0.0035457787762156246,0.9999999999909781,0.99634036432416,0.9937125668924661,0.9791339400056662,0.9677194962425322,0.999999524433215,0.9549329059228353,0.9845713699818727,0.9422290549943297,0.8705869860356937,0.04698837090381022,0.009570294232433095,1.0,0.9121959151732698,0.38859710609591563,0.9946078145628084,2.6116547655411115e-08,8.277426322349459e-05,0.006215780520217786,5.8987178105771e-07,1.0,1.0,0.0643199128750396,0.001198044948953487,0.0004960519637937689,5.823206442048587e-06,0.0005043195225210744,0.01717462691911152,0.005016360305561666,0.9431444453950221,0.0015991488535033857,6.897848726931938e-07,1.0,0.04065811896045084,0.016768151001816525,0.00223291983449084,7.957452955487056e-06,3.913165172150485e-08,1.0651655095727914e-08,8.302878541621989e-06,1.3091636595482883e-07,0.40095828489150875,0.00043815435318973436,3.88193642269287e-06,7.254057335010234e-09,1.5231983617616302e-08,2.3133916452409178e-08,1.0935277321758018e-07,1.0,1.0,0.9999999969903386,0.04655646037122544,1.0,2.8748858680677505e-07,2.9627501414380176e-07,0.0002108323362360453,3.169217201844983e-09,7.972428935613654e-07,1.7539239058294325e-08,1.0,3.442205504115427e-09,0.9999999325521608,0.0001932219786614934,0.9999918073365317,0.002746114583648303,0.010858089286995424,0.9999910527482047,0.9999744326754373,6.608314430493444e-09,0.9999993246665568,8.542024417701097e-09,0.9999999725812462,0.999870813708488,0.999841355334784,0.9997768179930375,0.9991344689246094,0.005240799725839113,0.0018135038626856629,1.0,3.6912426867151963e-09,0.31324625503633596,7.273313201484989e-09,0.9999999986653159,5.327664829750834e-09,0.4192266765676925,0.9999999999949989,1.0,0.9999994608167305,0.9999852930867811,0.9999302838945093,0.9999999973924778,1.0,0.15115810365154655,0.3864065044908317,0.9999120676651975,1.0,1.0,0.0018401440116635936,0.008992158454764854,0.00016192961769305098,2.4111724940375524e-08,0.5457730986509051,3.074862403842194e-07,1.2981591728181235e-08,0.9991211073736405,3.659926036104947e-06,0.008991300410948134,0.19594242162039668,0.018586794753994596,1.0,2.7804918234776733e-09,0.9946567380837443,0.9864933056196661,0.0006540788362118605,0.013266628958290226,0.9999885579845563,1.0,1.0,0.926082553814475,4.8440960167570805e-09,4.087596738207119e-10,0.9991895036337973,0.00515197197387394,0.9994937765696652,0.00340844520585138,0.03400897910028654,0.9999999999792388,0.4274874032102541,0.9838197515006252,0.9916066562993959,1.0,0.045447320842553665,0.9999999999979599,7.090342750760143e-08,9.999982960508771e-08,1.0,3.396305770651276e-08,0.9999999999815905,0.9413933594711745,1.0,1.0104026586710748e-09,1.0,0.01037070025163634,0.9516271257411967,0.041743306238286704,0.07478811194277252,1.0,2.6652419588482242e-08,4.3209992594101225e-09,5.006075630219536e-10,1.0,4.4296566540361124e-05,0.0001428092582574218 -cilíndrica,shape,5.9137852716608844e-05,0.8986690657924109,1.3723119075994505e-05,2.1028367064206367e-08,0.00027531254683620755,0.02878923522901431,0.003138624226007602,2.3531402257780202e-05,0.012844739549738169,0.00012301714463089063,0.36838102702460035,0.9999828530922459,0.0013517718503056877,0.012410416554600859,0.9920632703661493,0.0033896556823377905,7.252899683372552e-06,1.8276546667097335e-06,0.9669366238919855,8.69745269757036e-06,0.0005854150387395994,4.306730495776678e-06,9.60763469807097e-08,5.751720038913337e-06,1.5285485725664375e-05,5.634856894410216e-07,1.2473823094373818e-06,0.0001381182318232054,0.0010077899150586552,0.000551926835879008,1.583041158980712e-05,0.10209997671771139,0.9951927489322371,2.306072810951449e-05,0.07984150255062049,0.0014255695290799806,7.96466827322044e-12,1.1969989678639875e-10,3.4425445727089e-10,0.9994103453396584,0.9999663348831953,0.9997408395735361,0.7073192160991166,0.8616910564258546,0.32267255652841564,0.6848471910850246,0.0756758424423895,8.023690939962404e-06,2.938903272332814e-08,8.121072335185793e-06,0.0002660979224536807,1.8575998217285454e-08,4.49685515993181e-06,0.0008311174398626731,0.9436966570147439,0.05402725369339824,0.997506541070785,0.9394497624780849,0.0446884415709348,5.845309497173141e-06,3.3513127483178683e-06,0.009727168782078162,4.901976205886727e-07,0.9995684858315438,5.688109938617357e-06,4.181513813600293e-06,0.00031200799849483266,1.2234801038832073e-06,1.2674762958271427e-06,8.311073264183539e-06,0.3597441593073214,3.5649566412683944e-05,0.9999071185406209,9.16890064990104e-07,0.9861442356124707,0.999901178171358,5.946175952323099e-06,3.774572859564327e-05,3.07554439437963e-05,2.633606043740621e-05,6.057873619575257e-07,0.3264105499946655,9.890047660225897e-08,0.36922055269927256,2.995246575119875e-06,3.960500237463693e-08,5.0069812690621004e-06,7.878144172341895e-08,5.7191608022247814e-09,1.458937513475205e-09,7.871907633446728e-06,0.00017273804486900036,0.9998355383538329,0.9063984527054735,0.999970172616535,0.9999780576127092,0.25619679532025247,0.8388771450713403,0.01154173709397786,0.004197611654307402,1.1444559423811333e-06,0.7975353678358317,0.0004101825105566784,0.8643257004731704,0.014627867737939981,0.00013899064990956984,0.9990976739277435,7.788750915742395e-07,0.00048136520302564744,0.00028439419224401675,4.175266022911368e-05,0.9992383800296554,1.768580836839463e-05,0.00021936110376920127,3.993505388471972e-05,0.007894946899380055,4.282978933600499e-05,0.9804956036686665,0.0004987202922739069,0.9169371777371443,0.0015287067195173748,7.145073217765816e-05,1.0006045067228696e-06,0.9733869058038931,1.800121987311962e-07,0.9999989394638079,6.424162722907151e-05,2.5296156537507454e-05,2.143054361565666e-06,0.00032116329671393767,3.1938384700768596e-11,7.007626079364675e-05,3.307739280576477e-05,1.069880895966055e-05,3.337067477320043e-05,0.05146444985613413,0.4337770825303778,4.60927003345977e-10,4.57445611036344e-07,5.6560767248050555e-06,2.071263535346266e-06,9.843003541160851e-08,0.6110729159615373,0.9996567030336881,0.9985415262475202,0.9999560449930294,0.9923200582241013,2.3541106840121806e-06,5.562815897928956e-05,1.090040949463038e-05,0.8264619849695761,0.00013831178464885523,2.5242110472495694e-05,1.8291968108104914e-05,0.0019638916207671874,0.0007801358347848558,0.9999828530922459,0.14593918222497096,1.7576670526086158e-05,1.0547434728032076e-07,0.00010463984186519996,0.09558849602748837,0.014790325255478019,0.07501036135724491,0.03613589793643532,0.0003079648648158274,1.244873941222076e-05,0.003271047506371823,6.035445578305803e-08,0.01606110811368437,0.001444414422093842,0.00362788479100938,1.025460184260182e-05,1.8456329550300353e-06,3.2778087332036637e-07,3.298216121452499e-05,0.0008953369840545509,0.9263483488695202,0.03901923155693374,0.011922199427943703,0.011285921558593672,0.16750865072074356,1.2692889086709116e-06,5.035235531683721e-07,0.008475971084196125,3.3991976699364228e-06,1.6069599893230443e-05,0.611819453170875,0.00022904504163174803,0.9993151020272902,0.0001430343204346517,1.8634822867542566e-07,1.0157285926084515e-06,0.5086856083628023,9.534041902263184e-08,8.026534437847905e-06,0.0006504559890977569,0.9985972738923116,0.0001837360286550584,0.0015481536758617668,1.312402164143324e-05,2.0152273437083228e-07,0.004927116642869122,7.506750706808602e-09,0.05107242709412964,0.00015911172561722752,0.02525102470774459,0.8979245784501663,9.561680957475786e-05,6.476436183566163e-07,9.886712387575452e-07,3.6671468566195442e-09,9.258723024605117e-06,1.0642226029564261e-05,0.0021096829518086656,6.837320314595899e-06,1.346915003828225e-05,0.00034384462304034343,0.09139752374138799,0.29612686402070937,0.052253494430609955,0.9998449038562511,0.2425614256418506,0.9996850438532243,0.00024133648918432462,0.000107405051077483,4.790709718973579e-06,0.6065879752896763,0.9573679340453005,0.9927177717601812,5.743300249613913e-05,1.0010397093434085e-06,0.9997492322504798,0.23859629171040572,0.00152870671951738,0.9630754126539265,5.224818162891892e-07,6.7518462772619555e-06,2.440687345027186e-06,4.1407250163285166e-05,1.0482605607056066e-08,6.688469883509504e-05,5.051034882494062e-06,1.0799258370131555e-05 -cilíndrica,object,0.00043045548323623797,0.9887751844724986,2.7076707078582753e-06,0.9096763589406096,3.177782393305387e-06,2.163126771508307e-05,0.0001180737920470163,1.4549626326179643e-05,0.0003500660402694684,3.872190830813578e-05,0.1953573445583382,0.9999944865354974,0.0012503410143243048,0.756053662152267,0.999999999938292,0.014451437736335705,2.2848411685617002e-05,7.779092923139273e-07,0.8830707261872938,0.000132519422996533,0.0007630650523914159,3.312645628858153e-06,7.128482305904194e-09,6.575290289966364e-07,1.626787610452485e-06,4.404870395192142e-06,5.1086548930576224e-06,1.7217067288679238e-05,0.002329801838617745,0.020920029031927884,3.156044393371868e-07,0.0007419268354897196,0.4912090609457615,4.9846961615402154e-06,0.9999985633181215,0.002427657010658339,4.4544175513334454e-10,1.7247738200066964e-08,4.201182201353552e-08,0.9415253382285913,0.999999999978084,0.9998905369828063,0.006035074162419721,0.986097692399334,0.24532403803893837,0.0024407410383442407,0.0003276077914351082,1.783796098052099e-05,1.4864873502250849e-07,2.9191492889612157e-06,8.720850274282345e-07,0.6198703121599188,6.431965039943194e-06,0.0006270932840916721,0.9644669784425872,0.0001843518562241517,0.9928429147411078,0.8957512066518464,0.3783788688053273,2.4056341742662707e-05,1.5494460654536862e-05,0.00036424726654148566,9.395997283599957e-05,0.9995160930896431,0.0008732417262782865,2.2389255510449236e-06,0.0003737627019119978,9.89751060674638e-07,2.013302923259284e-06,7.444781670105052e-06,0.04592945684505084,0.9999296372136932,0.9999999900225943,4.997446984752295e-07,0.9799303298472847,0.9998352956956069,4.546942225777928e-05,2.631391149349794e-05,4.366754005856339e-05,9.394665183303659e-05,1.629109551033627e-05,0.3035128018627197,7.135509563113348e-07,0.6726019188851453,2.318381540279945e-06,2.096211735551405e-07,5.690264748208269e-05,6.543174372376765e-07,1.1959346312521526e-07,4.497944582441569e-08,8.629013570732444e-06,0.00882994839639624,0.9997567564554067,0.9500895677716287,0.999912001556816,0.9996228356094325,0.22962205464625107,0.7111256658636086,0.00042068409717771894,0.06541476636633095,1.763858304822555e-05,0.28163627185482615,0.00022553561669774047,0.9999999915579479,0.002105100180587895,4.561270312478843e-06,0.997862700619113,1.7324949743258147e-07,0.0004568516184614299,0.00017590446005973028,4.521168001003908e-05,0.9999999998893461,0.9999293450163086,0.00016090833534827354,3.133106019055343e-05,0.0009500918535212683,4.342466549388685e-06,0.19288525048113767,0.00034635126360484504,0.683212501420829,4.3260166113945505e-05,1.2826543731378016e-05,9.348951728017998e-07,0.9999999953981404,1.54949220037825e-06,0.0772444269386881,8.797455977480358e-06,2.385932290245676e-06,1.6858163162079404e-06,0.00022224020849714122,3.1331982020570223e-12,6.3260347367485635e-06,8.993223192869144e-07,2.366921474355518e-06,9.808455202114117e-06,0.002388130081909358,0.5473997864653206,6.972498221932593e-09,4.68969178005887e-07,0.0014365032259215035,0.7838016895769129,3.138755819857314e-05,0.14307819282623266,0.9999999099521409,0.006720537594139028,0.6441811774373303,0.9639274273195717,1.1463800428939841e-05,7.341266597638733e-05,3.8049695779658323e-06,0.999999875573003,0.00015239659840261184,0.00014122329953797274,3.5720339396253306e-05,0.005162783423723446,0.000719689612758569,0.9999935396703739,0.0015469715126805023,2.6877957795874412e-05,1.3429393689151333e-06,6.595553626684071e-05,0.0402513368498673,0.022976459955540752,0.009021350147155998,0.0011733615331701894,1.1985439447425895e-05,5.303265111314986e-07,0.006628230504719204,4.0607045576152285e-07,0.9999580740833732,0.0010320094093542846,4.137414299309029e-06,1.8044431426689203e-05,9.349118334827115e-05,4.750571352344675e-06,4.020109871792394e-05,0.03185000534650722,0.9999999945829581,0.002952555888953086,0.0005071862931015122,0.0008513604280013315,0.7799110741205207,0.5163343137319379,5.489690135070746e-09,6.317836336503021e-05,1.84734566143556e-05,0.9779259973507547,0.4297474135454073,0.00020111565721289408,0.9996095205570851,5.050601921004175e-05,4.5682334835707003e-07,8.288435111830115e-06,0.11278269372408962,4.005250054968818e-07,5.344466449792442e-05,0.0001959986301958842,0.8511956424136303,1.2828414025618192e-06,0.0010269244866607525,0.9970798691541052,1.0805890266549397e-06,0.000369048541651152,2.7870830316856853e-07,0.001975778440163681,6.887402701820807e-05,0.012487471750814548,0.9999999906282809,0.9999973577604354,2.720362996007344e-05,7.195920935209743e-07,2.620155256283022e-07,1.3151267150074418e-06,0.00015320102364419183,9.614038078603194e-05,5.454600819632061e-06,5.597927240570527e-05,8.700196448054864e-05,0.0011621218231014866,0.0030570103522830406,0.0001112189603941832,0.9999999840695375,0.01806488923618641,0.9998290023268587,0.00012726290921252745,0.00018020300375513884,0.002046790412434628,0.7999916964852641,0.9727943354081022,0.02024101772397251,0.999997321554337,1.601859297917528e-06,0.9999999733303393,0.05421852098461987,4.1562750920904985e-05,0.2801795023855133,1.8736015246432967e-07,0.0008472556020904469,6.775029846048643e-07,6.738730156481339e-05,2.8057911954355896e-07,0.999092765954373,4.2421983725235506e-07,1.3834676124115574e-05 -ciruela,rgb,0.9990715453496081,2.921160495243155e-11,0.9776208604248218,0.9999988123909678,0.9975370363589686,5.872594636760931e-10,0.9999985929088674,3.138216937834617e-08,3.2617279601205265e-08,1.4453007622978614e-07,0.19652428675912342,0.7198462684371695,0.6366663532641356,4.471638120555204e-11,0.9999973324861529,0.9999996118701905,0.9603215574894476,0.9471971270957668,0.9497975690010803,0.00015590911565356973,0.8799129660746294,0.9995581397219453,9.058450792700808e-10,0.9999902638804238,1.541150826589576e-10,0.9999378201994641,0.9988665715848857,2.3937598091814834e-10,0.9999989748457538,1.1114270646810781e-08,5.961254229229224e-10,0.978414834106185,1.0506217059669434e-09,4.223735821640069e-05,0.988917869855594,0.9999996454060186,0.000500273599414995,0.9924561468465448,1.9804086575047725e-09,4.137779110742147e-09,0.999994244863775,8.24562833029105e-08,6.967547763049069e-10,2.4155382806541738e-08,0.9999996155753542,0.7333865224537264,0.9665455404303495,0.9778170554844583,0.9999991274720313,7.318028841281787e-06,6.386124326755504e-10,0.9999954149370932,6.363555445555974e-08,2.585763817142528e-09,0.999999581943497,2.3203452754478744e-09,1.5309055998178911e-06,3.717860661623257e-06,0.6775466934845655,0.5310644300124129,0.21370471403297567,0.8931915733125992,0.9999993797974082,2.520620455664096e-07,3.2758375276523466e-08,0.9999509043144386,0.9999542647044657,1.0593726303442308e-07,3.9733156769671e-08,2.8132702670750524e-08,1.789978790173936e-09,0.999997843812763,0.9999932998095519,1.7034234278016586e-07,8.095228095053935e-12,7.795744484398218e-08,0.9999596591138659,0.999968627482144,0.9997405106372789,7.030873672504398e-06,0.9987477171952673,2.1680869199379176e-06,0.06328539895663317,2.1942496027302587e-05,3.095546403937904e-08,0.16239583680434436,0.9999992244258731,0.9960973466232982,0.994622214633477,0.9984740789569971,3.924526985657391e-08,0.9999984460689542,5.768841797294387e-07,6.2208231435679945e-06,1.0906963459926084e-05,1.8618853034724695e-05,0.999999136590524,2.2829756574292044e-05,1.7832463085138667e-06,1.8707425430921793e-05,5.046660855686679e-05,0.999999156430486,4.911628838566023e-09,0.999997450840311,7.580062736628696e-05,5.4783874614931e-10,0.9999997101209838,0.9999864148266016,0.9998787232820121,6.148689363805824e-09,0.9997246191055956,0.999997068712337,0.9999983787323894,0.5379408326461653,0.33619307525416076,0.20135678899824755,2.604417529662209e-06,0.016512609122103054,0.7621985757443767,0.9934623412038275,0.9828151648420075,0.06479794726666054,2.50281632825532e-06,0.9999960901796073,0.36004824197567853,3.479382048107443e-08,0.0715688329734221,1.628947884411125e-06,4.649753378832604e-05,0.0003274974172811674,4.048054566094317e-05,9.234525089369925e-05,5.325372278631577e-10,1.5295123099664934e-07,3.6650663451706353e-06,0.8832674487889733,0.9387398685115779,0.9338833696267583,1.3726728688719096e-05,1.7924999676168657e-08,0.9909062252077667,0.9999974358302057,1.979671185367622e-09,0.9999928780821306,5.3794698839770605e-05,0.0004078050224328906,2.1123104890923405e-06,0.9998286956316722,0.9999651759210891,0.99997939030936,0.9999959140406145,0.0007299050361245898,0.9999994687787499,0.18232775822063926,0.999999572774823,0.5315346479445126,0.6206431221153106,6.857626878727396e-11,3.9616234423383296e-10,0.9339253411730393,1.5825729570496382e-11,0.9420866217054897,0.9999999713347839,1.239284747126047e-10,7.782810307104926e-11,5.014089373911264e-11,1.2189328149117608e-10,0.5469870872232363,0.5071884420559416,0.9999973618382431,0.000786135484478555,6.420154853026017e-10,0.00022961300402757746,0.9999995003138701,0.0005588669495918133,0.9999985791047284,0.999997954367861,0.9999938608961983,8.752892708831287e-12,6.911394540213734e-11,1.0616613331654916e-10,0.9999997316542272,0.9860113607156681,1.0218043558672534e-09,5.504270065743353e-10,0.9999992022910031,0.9999855952245867,2.1962969622484643e-11,0.5122661877668262,0.6359646445790672,0.19238195368665806,0.0011647203849951414,0.9992022807913545,0.0006751378622028498,0.0001630076398204818,0.9999988757348762,2.791469741181178e-06,0.31052831290146543,8.754251649442083e-10,3.2588864536889896e-09,0.9999948096354625,0.0009331251043662584,2.0685544071572723e-10,0.9981830214839041,0.02517956076541469,3.961148333569346e-09,0.9999996000670147,0.9999966195514944,0.9999978499177898,0.9992409170615432,0.0013585841568367586,0.9883922539343135,1.7871445689388672e-10,0.5912996481319601,4.9453136470297346e-11,0.1561639612279416,0.6062975237658774,0.9999989567115846,0.9265074459582401,0.9886827897284377,0.9786018767267014,0.9999931764901683,2.0061057264086093e-09,4.3322208533219505e-07,0.93872250012742,0.9417098735248471,2.9193782047287825e-11,0.8969424074862451,0.9999988941511978,0.9827299199466506,0.9949384267052407,0.07186621829733249,0.9999941139974773,4.616979977437489e-09,0.9760164004366094,0.3701173862635032,0.7459124441457304,2.9767219741912964e-08,9.944721432465327e-05,0.0004524630763409764,0.9951226989618492,0.9870030792954674,0.0842220071689006,0.07747237805156097 -ciruela,shape,1.824640768223435e-07,8.967584103045954e-08,0.9999988422252035,0.9682600875255812,0.9998949310277111,0.8221349122153058,0.9996909780201593,5.789630299258158e-09,1.0421808155157665e-08,3.1581121403734944e-08,1.1637919226878247e-08,9.041163465826276e-09,5.285297332617882e-09,8.179417524621919e-08,1.618624831993538e-08,1.961638386501194e-06,0.00046330033138739635,0.09771282710005265,5.470160633907014e-08,1.8312509104011129e-09,6.738962853970451e-09,0.9996984175082331,0.0001434242403832507,0.9999964543694599,0.9992779979605831,0.9999516010615175,0.030734657726408248,0.9984962564428815,0.9343249290572966,6.603824388560493e-05,9.527124531462734e-05,0.9999971283724198,5.1786508974788634e-05,0.005295181435525556,0.3319489866615064,0.9451211330474045,0.00028760058956306595,1.8090232341389514e-05,3.310665110394959e-08,2.3104664496128022e-07,1.9367906965567124e-06,3.61958438748698e-05,0.0007115881785752944,0.00023071585563048274,0.0025310928357181123,0.9998208255538441,0.999998825463003,0.9690397359442253,0.9975662317434589,0.007364240961958255,0.8568893484750392,0.994640405618985,1.6316874791046538e-05,6.364357177800952e-07,6.771866796466239e-06,0.00498697796078637,6.497290762589085e-08,7.654924515346476e-09,2.929258456968701e-09,6.990743355367782e-08,9.064166112752396e-08,6.585434231884319e-09,1.3385385092553885e-06,3.319384453156621e-07,2.8350513029650884e-05,0.9999789389440441,0.9997921816898064,5.130960089979698e-07,1.1483331055704638e-06,3.880910406683251e-09,1.0072131693850473e-08,4.6155697208342246e-07,6.913916604259679e-07,0.0004886523139417784,4.853754490559793e-08,9.71610586121101e-08,0.9998383208742221,0.9998101543810296,0.9999567999969712,1.334307417017897e-06,4.154166366380122e-06,1.460258004825289e-07,5.138460125436875e-07,1.8785426706934974e-08,1.9674509553044986e-05,8.425328281501635e-07,3.056564203807736e-05,0.0008867361664335573,2.2427581918450137e-07,1.5471024437630545e-07,2.7898033433806095e-06,2.6379509525640182e-05,3.78699323785193e-07,4.610022775672638e-08,4.1890321425758376e-07,9.465194677508504e-09,0.0024100013238024,7.026899538078857e-08,3.797202375917358e-05,1.0892280529130963e-08,3.942540378434147e-07,5.5875512120956356e-05,6.340077469712028e-06,1.4396018896984247e-05,5.829438336695566e-05,4.840044762646827e-05,7.170742834741652e-07,0.999998922342805,0.9997829086118782,3.239418204426799e-07,0.9837742488149829,4.845872725787106e-07,1.0385311779507678e-06,0.00020371011343749926,0.004173424483756452,0.9626867301050493,0.9605121795831552,2.061723566394162e-05,1.1811133285853413e-05,0.6140971794555753,0.9963953828171788,0.00011473306668121234,0.022190715846598867,3.8211387785559556e-06,0.0007042937869397766,3.6836819774288346e-05,0.005807196777674204,0.8383024070424466,0.003154683058210948,0.0013993863337052345,0.00018092100612589353,0.0053406793908016455,0.0007752019238547533,6.693698092134388e-05,0.9145598424556356,1.6424613123566727e-08,2.4174510427882474e-06,1.578764425702418e-06,0.002570560865925249,9.11511885562854e-06,0.9992207056991248,0.0006704073807947689,1.7053538441381115e-10,4.893947796845964e-06,3.554930409501756e-08,0.00030305155955575783,7.189850205669981e-09,0.9994095764833346,0.9998541706519518,0.9999132148334419,2.3310529586268641e-07,7.63389303651227e-10,7.313734550466261e-05,4.7367817627998475e-08,3.5814953379891086e-06,3.3193394861282786e-08,9.04116346582634e-09,0.9993007632127515,0.9590543622520684,8.109704006152723e-10,0.9558840822992686,4.80330319153116e-09,0.990928345166169,0.7737488145778726,0.9764788521042004,0.9980242413852385,0.9990671747262819,2.8976519697202925e-08,0.0009256902544370518,0.9986635149068112,1.7863306488235963e-10,0.9753540371639349,7.1450560079433634e-09,2.560266764301657e-05,5.7192305488338795e-08,0.2763688248809402,1.501221894216377e-06,1.086460487227208e-06,0.8870652184142117,0.9966592659487984,0.9980984363561989,0.06596553481766305,0.9998999464891019,0.0007891752731574272,0.0001642353026114687,0.9401863883803091,0.9589055419787241,3.312642491431286e-07,1.2335637371682158e-07,7.711226825016407e-09,0.13267864320849368,6.593619719657084e-05,0.00131772494798906,1.6115768396708958e-07,8.539103614484384e-09,0.509360914351139,0.599366182669387,0.0003311384775456198,0.7841318127352596,7.132606806738021e-11,0.16675090397663633,2.8968094144952237e-08,0.6696504619822349,0.01854262311590068,0.000549797564226264,1.0269718230020418e-06,6.670775509036416e-07,6.930037015997732e-07,8.734481118829509e-10,4.8054825096266976e-05,0.02718853945726445,1.6154481904354696e-05,0.9955729956438889,3.8240144464080574e-08,0.8007429521538472,0.0015018047635252337,0.000933714270361347,0.8321647112851497,0.9997275275989411,0.9999980859257369,0.9999507929937266,1.094807982177218e-06,7.715136012791405e-09,1.0743852498166252e-07,4.870973402377435e-07,8.318659928670964e-08,1.5878604163352726e-06,6.244126845851931e-07,1.357851740134849e-06,0.9996565960460577,9.600758951033184e-08,3.370863031453854e-05,3.8551208283757937e-07,5.6863310496121673e-08,0.9963953828171788,0.767758877562665,0.9983015952837271,2.760233156114203e-05,0.0003826137541457298,1.0565884890905127e-05,1.1876545700035684e-05,1.108158989673538e-05,0.9998234747476066,0.003499836668390554 -ciruela,object,0.6565435091841896,1.584903709605099e-08,0.9994601280025638,0.9991340215058034,0.9983239512495824,0.0005808740804229461,0.9999980117057947,1.271706684549479e-06,1.2348109628484695e-06,4.7413077326146346e-06,0.0033337540181208178,0.005925193657127723,0.006713563414694798,2.2166691057251344e-08,0.5252348684262719,0.9982246009566732,0.6638528845899562,0.9218370040951234,0.012567126353344131,1.0499895865524055e-05,0.010486825882194005,0.9998934491292241,1.0899657850317062e-05,0.9999977631814683,0.0010082786358110085,0.9999565075593385,0.9855081891915927,0.0008038175535833082,0.9999905203615026,2.6560930926491154e-06,7.4292188206795695e-06,0.9990332444131627,1.8044092458431345e-05,0.004030146785526315,0.9332550711424472,0.9999978055526207,0.0002762262736748335,0.28661313394773447,6.800041557021094e-08,4.7552281842575546e-07,0.7989095069675315,1.131027275624568e-05,0.0001354826702787286,9.252152495172282e-05,0.9999884514460611,0.98515126728325,0.9991763313205632,0.9876639200593128,0.9999976928362165,0.0013756228374434785,0.0008046524368289608,0.9996355795777634,1.327432914595262e-05,1.2971517085710194e-06,0.9977305449419281,8.172218906491329e-05,5.070236465256346e-06,7.015338356199804e-06,0.003175976773246391,0.009360830627752264,0.004881930493157465,0.014101282571329988,0.9967159132148133,3.0930257894288127e-06,1.8069503682979178e-06,0.9999847313951921,0.9999058575988861,8.555697341822663e-06,5.658662570881102e-06,1.01041486552919e-06,2.8514306521624357e-07,0.7536538674529177,0.6202885029824319,9.198952486446088e-05,9.370791570285249e-09,8.541830492098806e-07,0.999955090353161,0.999958349409133,0.9999540133112429,9.22854468113476e-06,0.8315852763365523,9.449739546032273e-06,0.005972810673521674,1.6059567927422843e-05,1.3469193197263223e-05,0.009098985601144898,0.9978546990997683,0.5033658040727046,0.26591662069669547,0.6563901287116551,7.332351104031421e-06,0.9991671717788781,3.80344298363811e-06,8.478042098399596e-06,1.8248088095351843e-05,1.8002557334336446e-05,0.9999862310583232,2.1098176371641606e-05,4.635135186880628e-05,9.252176530706311e-06,1.3007151778671375e-05,0.9988940485443027,4.715318710297618e-06,0.8806318253427823,0.0001960926883215314,2.649227808485941e-06,0.9963969940599858,0.9999981636601247,0.9998973442068452,1.3703029170891955e-06,0.9992945441470588,0.37801581174154647,0.7840803751297105,0.01784881503922257,0.023857139446265756,0.5900311669387824,0.03566403883718755,0.0021150902615050347,0.024743451416288448,0.9919065770843539,0.9819058785474848,0.00463009196221006,0.0012228753779335456,0.8652618803777242,0.02160619590338883,8.09671060173243e-06,0.016043930991152897,0.01231377618006275,0.0027459671229255293,0.008642039287523287,0.00011312238951680003,0.005853290677591408,5.6346500861670585e-05,4.708434764766641e-05,0.03170126983586242,0.004598249703501459,0.20953091551973846,0.014704356347617065,0.001223113383288081,7.147368396189994e-07,0.993276392700684,0.9989875820297878,7.32650355614542e-08,0.6713883684363992,5.296796348405532e-05,0.0002738743478039415,2.428966245676261e-06,0.999879810069707,0.9999595518100716,0.9999803749459915,0.4746949711629593,8.869779432066342e-05,0.999366947061078,0.0043190821096630635,0.998632531325359,0.007158486704630967,0.004753955313504526,0.0005931028329660134,0.00018569196986348077,0.002156090333484193,4.6689375365623044e-05,0.010307777748844513,0.9999995909586626,7.081548739695813e-05,0.00021890506312567334,0.0003881044767765121,0.000986226757585727,0.0041952327297070935,0.08478311160428245,0.9998335805249267,4.988328423934421e-05,0.0008521954582014421,6.846650030969132e-05,0.9988556433772712,8.422084631693464e-05,0.999965781540589,0.9971737630267528,0.66906337842298,3.394725576870703e-05,0.0002812204287678863,0.0005047442659879815,0.9999882858797355,0.9920750212476097,2.3652880268299177e-05,8.925324044788583e-06,0.9999918843309565,0.9995491134417774,2.0572334852177883e-08,0.007832260323799623,0.005227234902805146,0.5022820984896724,0.002596031960970818,0.9589716068853947,5.544493580308463e-05,4.8897513062831196e-05,0.999988233364178,0.012341568343185038,0.021429461640897825,0.0005118713937787796,5.161267105682096e-08,0.9974148514540536,0.00019371265848539687,0.00012766013128066067,0.9669016292141506,0.004258978619358451,7.551313681852581e-07,0.9981877881794498,0.5534751206509194,0.29631786162515295,0.8935066781270621,0.06507509224646404,0.2685686633605406,0.0005530264395982098,0.00804704792276351,6.0841389897810146e-05,0.019144349534251016,0.035353153125530286,0.9999965823613518,0.992806354209806,0.9992957124144308,0.9965990750823842,0.6783017636938115,2.5560582913860583e-07,1.29250989074266e-06,0.014120496583947147,0.0237219278055669,2.775168372678638e-08,0.00824208531513634,0.9976936755857152,0.997108195323575,0.003326665582085457,0.01580600189655348,0.5799221956732878,8.017428072030064e-07,0.9783423551195438,0.8682995686372175,0.9666916913809185,1.2778690980927368e-06,0.003642410459350625,0.0005872489376000581,0.35817558054088006,0.03336594865184705,0.9282396376571435,0.007949988492936728 -claro,rgb,0.01678633819836781,0.7433323289681406,0.4094806929764856,0.0040295096102844355,0.3038173914233023,0.7835837719757279,0.009113394376310487,0.6098989076996547,0.6408451626955255,0.6115435930951789,0.6096498158166926,0.5215042119520928,0.5386312359903017,0.7260642989860198,0.0025687008483056975,0.0013525036882154407,0.4527692676630693,0.46723864787793007,0.4601220282289236,0.7511981291166844,0.4580787778059369,0.20323348377371392,0.7749080009816276,0.11516505307165383,0.8544321092892992,0.23039245307850184,0.010362204022429225,0.8535993720266106,0.0018757633081846802,0.6989611338802137,0.78394954471614,0.3894404681645577,0.7816855057261878,0.4919457871935457,0.01674227230042444,0.0014592047013114006,0.7391916189606849,0.31376965634834547,0.8265223729539711,0.7901569238837269,0.006721402839098921,0.731062068078341,0.7878638759412083,0.6464047498289486,0.00392177049479974,0.4972926527781119,0.40296156293666735,0.40956559973127954,0.004342745389132922,0.7101018710661022,0.7823384608031589,0.006294121955918022,0.6181257089371086,0.7777457168168158,0.0025909129333491756,0.7934969898700193,0.8086952810303656,0.7986440350467763,0.5294344085913316,0.5560840265595047,0.6069106623207334,0.44139719742439687,0.0010709134311752252,0.7275109651404169,0.6940447517400676,0.12813767779277255,0.20906165432759247,0.6006568086886781,0.6097043993903326,0.6370681291660648,0.7799672429717505,0.0055758364270456105,0.007622109407146554,0.5832391990498839,0.7994408616418844,0.7430059630170838,0.21381604909961094,0.12959445598263772,0.18922667098158363,0.7911835021332025,0.012142796018584848,0.8073401333972295,0.4860968149526481,0.7774211619895668,0.618601091499538,0.46538040865913105,0.0016977633911645221,0.2968058044589396,0.03297998836362917,0.012499431796018569,0.6017639058084449,0.0008821713088660798,0.8178364025045892,0.7896685072205315,0.7854860871993832,0.7789209541542857,0.0021170850123588647,0.7769081125417626,0.8086829282008957,0.7807982550196824,0.7679790939262184,0.011472449231883362,0.7889867049912899,0.004914747342966311,0.759652116533473,0.7851826890240002,0.004584468369807455,0.12316976328189105,0.2543764248410265,0.7852612614725872,0.27590652043124564,0.005588410363341023,0.003484780666287439,0.541056093142994,0.5830957564763417,0.6066269816799563,0.5699957676112622,0.6791265996146182,0.5138675277254494,0.3846467928819499,0.38166736487248754,0.6397589330283944,0.7206925144563155,0.007227564769594988,0.5662924147317953,0.8379415181330849,0.6358327764099642,0.5889818143557877,0.7155118557580138,0.5615061761146902,0.7836648239349496,0.5088255160623627,0.782735941356255,0.5868641196863916,0.5645204373390108,0.48346865683116014,0.4643170995384346,0.4702849062305027,0.7189043514923815,0.6861329703533507,0.017725844840437842,0.001510305314191204,0.7780405168164028,0.009208911297362395,0.7610006545273478,0.7438859326802088,0.8152740776520437,0.17582190336136871,0.2043660735776845,0.11703684683277259,0.00754506772517388,0.6528434578893527,0.0017061283897972376,0.6125818627662464,0.002569809340756056,0.555030332007702,0.5379593914011059,0.8579332979204676,0.8576933667442257,0.4598435820756577,0.8555081778693007,0.45717370593348056,0.0012336053693285183,0.8567837024621986,0.8542824015528853,0.8495781196334091,0.8523723769558312,0.5506564159865392,0.5595856858668712,0.005097842460874376,0.6616426779116669,0.7824553565099314,0.6452763613843157,0.0012074695577914529,0.6761450876006042,0.008984848614970727,0.0008630678083159667,0.0038038082461916735,0.8524203585088881,0.8575920662627667,0.857131145668768,0.0012092842684242754,0.01778194200223167,0.7763009637273478,0.7853103986367299,0.0033687396934965327,0.016186663012324482,0.763857591855228,0.5588896042623855,0.5365857973007951,0.6110658046187364,0.44180669587589405,0.015382924066590926,0.737529805046708,0.6046020496444942,0.004297606475047729,0.5861804834998086,0.5795458812948747,0.7823361858530734,0.773940866319046,0.00797827843408931,0.6423100271295803,0.8497047346390761,0.011512985142810624,0.6679321278608316,0.7815221262408663,0.002634495580391931,0.0063551931583622585,0.0026791953399917974,0.012292017165749576,0.5149062541253211,0.3161514523065223,0.8548311721200664,0.5448933313798476,0.8451966464287812,0.6097016499620472,0.535003992645764,0.0009097695795335044,0.44975785986207795,0.36032594868869994,0.37808403528131995,0.008883142943279524,0.778160056794585,0.7265957408574505,0.47347006853493284,0.47297627950259985,0.7435284075449335,0.4900587969875905,0.0009057443399414334,0.38201317859275924,0.011011983689249372,0.3921871456070992,0.007831870210605928,0.785895819346502,0.39220940795715903,0.5648152889417166,0.5099993905381682,0.6747295918070961,0.5905945988834126,0.6405737864913755,0.2728069200741386,0.020055130600943268,0.6401490908722633,0.6405918116766282 -claro,shape,0.0010856449198717144,0.009014136076758791,2.358120308363051e-05,0.0002578915933522858,5.588988138026217e-08,4.251726976073481e-06,2.805087733942769e-10,0.9999998318727367,0.9999822959345954,0.984550752084366,0.005366990593650994,0.00016635649465324476,0.0025899991361612554,0.988142006841387,0.0007336278774053389,2.432687529004948e-09,0.3710706085220787,7.409005340521394e-07,0.021694711654498308,0.9944336253571162,0.96665649178792,5.713869627855155e-06,3.447983904378845e-08,4.841968424920961e-06,7.096131839196545e-05,2.4151616499669613e-06,4.7315776046218105e-07,0.0010780790282681264,0.8480431210025071,0.000216781075641069,0.0009428677609276889,1.2758424085639952e-06,0.6612048657429461,0.0038333615356572833,0.9998304708811752,0.9953386082748972,0.8618382926011914,0.034361120934574683,0.999999959204411,0.0008974376587950253,0.00046997616334961724,0.0028339135153710644,0.256754472166932,0.0036729694422367575,0.03437727154331697,6.480947358027221e-06,1.4749110929824048e-05,0.08847515676407866,9.885887293767903e-06,0.0003510261105034404,2.8845177616437137e-06,0.0006239019616923128,0.02577934111153399,0.675236088489755,0.038131480594572095,0.9999731742895496,0.0003021022948717281,0.0002379605728827113,0.014440327751777449,0.0006590108824942123,0.09955336916306898,4.786966121745697e-10,0.013616226495900784,4.346337943198445e-05,1.3476475778670833e-05,2.3079500118913354e-07,5.786796673937699e-06,0.9467667611682096,0.8663337714384954,0.9999941046658197,0.000116809633633646,0.025862515142428592,9.168156429534592e-05,0.3030640457337507,0.00026718903388720834,0.00026026612477350787,1.160987016043602e-06,0.00010548719124814707,0.0007521158358156728,0.005565182189801837,4.120328243225915e-06,0.00024715385637596467,0.0008544483106927226,0.005857795785499901,0.4263297069281939,0.00014980378276107105,2.7308371441961014e-05,2.5897888882018795e-05,0.0019624705381422326,0.0006301070520024989,0.889129284224039,0.9857079131844586,0.00026084840944634764,4.8138991030547535e-05,0.00020694985748519561,0.012513715483223192,0.02869169377310511,0.0009232450299386787,0.0015160977347147377,0.00029306995249375083,0.008254681821149036,2.554623299470727e-07,3.568151159619267e-06,5.683527146752581e-09,7.990569806627902e-10,0.00032107831332532064,4.9795598567947656e-05,3.8978951751819e-06,0.0012217258078320147,0.36126539682230896,2.7458523393131225e-06,0.09080329557857097,0.001155325896213379,1.698392804694449e-09,2.4533120823937556e-08,9.34254501599878e-10,7.5719226426206414e-06,2.995948553472378e-06,0.14281474125073076,0.00036271838818255787,6.664335115883594e-05,8.088797304665664e-07,0.00024013460377232137,0.08032483538398504,4.519971888931507e-08,5.625489098964423e-12,2.9029094971084393e-09,9.516066344570247e-06,0.00039331823344793826,0.0012688635978750959,0.5373270898637832,4.640956687725064e-06,4.847148181169473e-06,0.024160538407900813,0.0001466158917175825,0.995269258622553,0.9557798475309653,0.012668684806627988,0.0003050134113140618,0.0001584114220020473,0.9997783121848773,0.2922049655751408,0.001223713080862316,0.00012694781129833722,1.8847271139894658e-08,4.39528494041451e-11,0.9088822357412992,2.964206891775784e-05,1.137944207330819e-06,1.0516372374435326e-06,1.689277414303234e-05,0.9997734024469083,9.785287462591196e-05,0.0006363121580309283,0.08435724236492753,1.0056664906451896e-06,0.00016635649465324476,0.0004429337164259237,0.11815294909028308,0.00010117898574528542,0.02422741663167053,0.00012865680554187897,0.999974546113064,9.93690072047932e-05,0.0028256656947281958,2.2928339316926283e-05,5.020624879839372e-05,0.00047424433456441135,3.4183501084834e-08,1.0686642166223369e-09,0.9997150800892792,2.388456928002535e-05,0.9997462024402509,1.019536511927957e-05,0.9998369603882358,6.8206880212794025e-09,0.9962718721944298,0.0001770414391938158,0.012055629933961773,0.00010895822312868996,0.00020243296399855584,0.9998771261937716,0.9996159642482015,5.829293767720615e-06,9.830819433544038e-05,6.437306320045807e-08,2.745799898774718e-06,5.854809589528997e-08,1.032154471581275e-07,0.00011702051450758029,4.0920334228739317e-10,0.00027696194547307607,0.001284107282571122,0.9992583334735616,0.9997438482978109,3.3903788107253935e-08,3.514167179848732e-05,5.7493259319005046e-08,2.2327497816381377e-05,0.9999847750174581,1.6159073187440734e-07,0.9996076918990363,0.00027876384908965505,9.076615899505935e-06,2.8326766339568543e-09,0.9572946699345082,0.0002853974892014896,0.1620686287573605,0.9356826905113117,4.449200415135773e-05,0.0005260389154930822,0.020738277515781237,1.5455323284142366e-05,0.5491347528279713,4.371201833734955e-05,3.275582758099795e-07,1.4502577386548706e-07,7.95461380811917e-07,6.269275968829633e-07,4.652634657647283e-06,5.951599225353276e-08,0.00016994326788811694,1.992103662723619e-05,0.12900722411852347,0.0019527876587763175,0.03781543567376259,0.966325952309743,0.9997412516333586,3.843738438124456e-06,3.134267357372555e-10,0.9997005174644558,2.813750107331366e-06,0.00025494551170673186,0.0004286093396762007,6.664335115883571e-05,0.0001181884017876081,0.0002903715408025717,0.0005156340696889941,0.9997454304154247,0.9994257873478717,0.012420578198078087,0.2828835271601826,7.999043786466807e-09,2.4096393562176573e-08 -claro,object,0.0001721476420846844,0.9994290423352218,3.1267561936660784e-06,0.00024291234318767676,1.3685842902527227e-07,1.1379301309148451e-05,5.465077030015744e-19,0.9999999523848584,0.99998270894,0.9996263043914325,0.00010808374380709528,4.351376491914044e-08,0.001480544743447893,0.9999994174913247,7.074676496541963e-08,5.797478623689181e-19,1.2315786374094925e-05,1.0602031572681722e-07,2.0325199558387067e-05,0.9978331382109301,0.00030626346845224236,4.8267037975320964e-11,5.931527472783317e-08,4.231176885157585e-11,0.021496795921711786,5.76144344569111e-10,4.2961780307387407e-10,0.5617911119368255,1.2608341314249552e-09,0.984331507806511,0.007390985460147271,9.076501159651093e-08,0.22834595250753736,0.009193149724275169,0.7200035930405457,6.317208022952905e-13,0.9969109024252985,0.00876451635905419,0.99999999941717,0.0005238732758570656,0.00010357903051129186,0.9935598245783065,0.03260780584668861,0.3900999294445618,1.3531963078179557e-14,1.1838226051522447e-05,1.011515286367248e-05,0.0007805085438736237,3.8728328915693486e-15,0.018468280857785003,2.6311939584769176e-05,0.00012254757407790585,0.9797025172562277,0.42752506126168743,6.98983754221021e-12,0.9101417916922433,0.0004041632912833523,0.013574293918071108,0.001374450178063716,0.061090233567751104,0.3916250732622242,7.91419522153074e-11,5.898797647372681e-18,0.9760959035867824,0.16845085510789803,4.676856492004189e-12,7.923488585987677e-10,0.9985742922187144,0.9998966001235146,0.9999982749981609,0.00011273474472871054,0.0003969561179575927,0.00010744124060239875,0.9980126830508085,0.9955386089872527,0.9972347905257923,5.024627351515961e-11,2.9093899165912985e-10,4.898166751328655e-09,0.6389415192926868,1.7357008714638506e-09,0.00035795965878613565,0.0006664553864988683,0.04925722943584813,0.9993937774241405,0.0002930543529991454,3.959205405346873e-15,8.522600016955533e-05,0.0009509257865971035,8.15030428355663e-06,0.9988046586111448,1.0355114088904653e-10,0.0002380955988733945,0.0019103497391262374,2.9170353382543297e-05,0.008877549189607637,6.734506320676646e-15,0.05432928980792027,0.201107685423968,0.0003742739318495778,0.11768367075909313,4.934562347160566e-15,3.658567349355771e-05,4.2098391387401406e-09,1.3519768639737385e-08,0.04521019746884083,2.5276751085666735e-13,1.4419719689940502e-10,5.490176750774508e-05,0.001513230636453217,5.768343885640084e-10,9.360855477325811e-07,1.790451025607913e-05,3.459575438959237e-09,9.065881415099802e-09,8.864281691286481e-11,0.0005677525490910211,2.1561521859205833e-07,0.003672750317202895,0.00015406484458103646,2.870909206174097e-05,1.2815709426033123e-07,0.01302507950677895,7.79440697919268e-05,1.9204472926363316e-08,5.41969623652072e-07,1.317294424595302e-09,0.001671795431657243,0.010272498467946041,0.00896027275883463,0.9999999477095626,0.00021948328757622764,9.535548256907287e-05,0.9951242023756871,0.004584010328877156,3.488158371480348e-05,5.225944693365421e-05,2.7143761020892135e-06,0.03848471708048566,0.9099909941193853,0.9939178582443818,1.5303284198508988e-15,0.000932516614310614,6.138609556315146e-07,3.1730883965942046e-06,4.08301673435424e-07,0.008839168862321204,3.030642485441031e-09,4.1122975411141666e-10,4.1399894163663566e-12,4.900861017054812e-07,0.9999087991101155,2.397489329640076e-14,0.06195896808443526,7.544250592622638e-12,5.628921460628605e-05,5.315963884099182e-08,0.982001752651164,0.9953414268359327,1.5757529129515036e-05,0.9944969511141543,2.3155939636224427e-06,4.536070261547092e-11,0.6223895796865265,0.7963228410210645,0.05248583157742735,0.04851747195743835,0.0003273636543459619,5.824051076105597e-06,8.45045972496234e-10,0.9997181101611311,0.00018304417608572517,0.9999086106473511,4.742574608744478e-17,0.9999206841012243,6.097881091512174e-19,1.812928005060691e-10,3.7555276633377162e-06,0.9154829686539436,0.8962519349344918,0.8291645181582913,8.169478619942013e-12,0.9984483838011665,5.5742481765724633e-05,0.005107637237314794,1.7014869417545832e-17,8.356606405958524e-08,0.9343932980286586,1.1967105391930847e-06,6.632859043807117e-07,5.590990434637982e-09,0.00038510551839468553,0.00036198955588650654,0.012726352360256573,0.9998231121504372,6.042733161792866e-19,0.0004332798079751251,6.377284593763809e-09,0.0002448671870625257,0.9989150122651091,1.1075145910936995e-09,0.999791595307821,0.34810036335561867,9.115687027641759e-09,1.45764183432943e-09,0.9694863514417921,1.0302380992251553e-13,3.3985811730775364e-05,0.5778798501656253,7.25314268852138e-07,0.0017719255330623889,0.004783798680084066,0.02538392890220982,0.8979968236535375,0.8359198132582907,1.3827074819498876e-09,7.511211680167238e-08,9.3008945604433e-20,1.9818241299559568e-07,7.497189139984625e-06,9.328657871540212e-08,0.00010447607830712129,4.759910426390289e-05,0.9993883134833282,7.986225418171473e-07,3.909139937313902e-06,0.9999997287361281,0.010665562782565306,1.3238372672993182e-18,3.053997717166238e-13,0.22155390186388502,9.172059463361403e-06,0.0001487111370784689,0.0005288569494629887,3.5925587904174025e-05,0.00014349618480569447,0.03448519260062988,0.9905461264753573,0.9997885990844276,0.9996400868683865,0.00023668433684964074,0.0011545794015407785,7.489967723856933e-10,2.3986447441331152e-08 -col,rgb,0.9999831131828596,2.885834014038162e-20,0.999923004162482,0.9991160883994835,0.9999937086442641,6.908053356303283e-15,0.9999999996134907,5.883213381537983e-12,8.175587951634491e-12,1.2910751681493241e-10,0.9156122652287177,0.9958665094740845,0.9936540807428174,4.267190821013301e-20,0.965504921858141,0.9999999945893752,0.9999833982904771,0.9999710913110534,0.9999762392586345,0.00015358626721134286,0.9999194485826433,0.9999999861403885,1.5868096353125565e-14,0.999999999943952,3.6162180931062877e-16,0.9999999987655366,0.9999100368549481,9.250946072485352e-16,0.9999999860649389,1.9195258852796968e-15,7.139227638448445e-15,0.9998667615162684,2.2416245561499702e-14,3.8586176233357536e-06,0.0008079588031771738,0.9999999963052455,0.0011030334928756383,0.9999990923378402,9.368351734646617e-14,3.7788441636329654e-13,0.9966388560871567,3.12978511729107e-13,1.0054042531293514e-14,2.8743335328658564e-15,0.9999999996997124,0.9921487656745139,0.9997119592793563,0.9999251294866721,0.9999999989303976,5.76872643515703e-07,8.139210575429667e-15,0.997315271164663,2.6187861762478324e-11,1.3644913183519832e-13,0.9999999989427779,1.1962387926670253e-13,3.613951536377475e-09,1.689797714330433e-08,0.9945791664928717,0.9890108278655287,0.9294015836908452,0.9999359482460888,0.9999999746667085,3.1144146098615827e-12,1.6583365171735903e-14,0.9999999993154891,0.9999999994632771,6.341244972092085e-11,9.46222446416353e-12,5.883222039872242e-12,6.559808749980721e-14,0.999163039328317,0.9972546647830772,1.4299142507780606e-10,1.3510143327419704e-20,3.920733045155679e-13,0.9999999994384339,0.9999999996790807,0.9999999936843236,5.2012308739534694e-08,0.9999288817126337,7.688215106490641e-09,0.818738949236832,4.0116295965011686e-07,6.144014130910281e-12,0.9647252964421186,0.9999999892189261,0.9999996736620619,0.9999162764144232,0.9999036737669187,8.649044359189931e-12,0.999999745412713,6.246652628618523e-10,3.5832045403554604e-08,1.111479402518258e-07,2.9016041640960663e-07,0.9999999927853758,4.305608893648621e-07,5.209955387504909e-09,3.23350769532472e-07,1.9299221927353673e-06,0.9999999999153499,5.303554379710273e-13,0.9979117304870068,3.514417721599526e-06,6.0498382133663425e-15,0.9999999998820408,0.999999999911527,0.9999999950352283,8.17002341291351e-13,0.9999999909413216,0.9983527979301867,0.9967273534662994,0.981577005802891,0.9640754868538539,0.9090590561019852,2.9500843421454547e-08,0.10909934168184285,0.9970657550101676,0.9999949359411988,0.9999082624043014,0.5060990896599671,7.779844562141051e-08,0.9989638967734491,0.947013539548881,2.1547183419782553e-11,0.5360091676705736,1.3497344350229159e-08,1.916999509723805e-05,0.0003374261977091818,1.0346046317029834e-05,2.0238922939931456e-05,5.624072355951177e-15,1.1862354019020737e-10,5.5545998111883344e-08,0.9999107561945075,0.9999686120090497,0.999962539590009,1.9841649185831724e-06,3.830746556085683e-15,0.0015982470884470478,0.9999998535544997,7.95386590704657e-14,0.9986150875511713,2.4033337293573475e-05,0.0007526739353610846,4.5552229665908617e-08,0.9999999964993784,0.999999999610862,0.9999999998152114,0.999050827919495,0.0024635801850996,0.9999999948208858,0.9047167954688711,0.9999999988741168,0.988540602411538,0.9920233273439236,4.803052519022157e-17,1.2056871115508897e-15,0.9999673102728921,2.4774284285487775e-18,0.9999731651291442,0.9999999999494451,1.9723589703009252e-16,8.794370672553619e-17,4.104497564725181e-17,2.426103967861444e-16,0.9884928523346752,0.9874679594946805,0.9980713032553046,0.0028982448260659707,8.234174054783655e-15,0.00028131829565337767,0.9999999880063247,0.001625639673991273,0.9999999995920543,0.9999995402316657,0.9579695073067412,8.266950362130698e-19,5.2158455018888314e-17,1.3800126200969218e-16,0.9999999963435156,0.0006255492747669051,2.047658255044123e-14,6.1132356278606076e-15,0.9999999982287147,0.9994442017064002,2.973273246284892e-20,0.9878385633100932,0.9930335799467644,0.9156796198880932,0.001633730582616636,0.9999840993132091,0.0017455171533148543,0.0001173122531620379,0.9999999982285115,3.83183283110593e-08,0.9413456680349648,1.5510594799035054e-14,2.128758477862432e-13,0.9987269332567089,0.003711102401523546,7.796683727716593e-16,0.9998315686632936,0.19175715504378693,3.304101685921116e-13,0.9999999990701702,0.9986960913312721,0.981766805788839,0.999973746477312,0.0037173654875157385,0.9999981629298733,4.801339445431323e-16,0.9913973391065843,4.3453667357385666e-17,0.8169045430069277,0.989394391018595,0.9999998914519732,0.9993910355482944,0.9999417502799782,0.9998167100915804,0.9985277599043239,8.176916833596315e-14,9.771599797088339e-12,0.9999623287088097,0.9999638518501873,2.8983300326215735e-20,0.9999152000294966,0.9999998770856149,0.9999080271291785,0.0007595930736350231,0.7633862192191813,0.9981721440099077,4.608829238654426e-13,0.999837444866692,0.9502082035683774,0.9956622899993065,8.502896662905631e-15,4.171834824103612e-05,0.0009731979072992945,0.9999994854787506,0.0012380709485373138,0.7390545571986502,0.6714405330565744 -col,shape,1.3112935424642184e-07,1.4096032794352033e-07,0.9998498957254897,1.634583769548847e-05,0.999999935873802,4.599758775114947e-05,0.00045297299447374554,9.525560737940593e-08,4.558785574983046e-09,7.277864029531721e-08,3.2223384532763615e-06,1.7085208595785085e-05,9.982253992844335e-06,4.690769131900188e-08,2.5401460198967582e-06,1.0014293177587956e-05,2.3090891200102662e-05,3.969799619448992e-05,9.768757903838648e-05,3.4419933361579306e-05,1.0128101418775376e-05,1.900351652369642e-05,3.8216061292245355e-05,0.002525452709073948,0.00010031413214278909,3.368977570959135e-05,1.6837128061248338e-06,3.57697770912524e-05,0.00011198509508180151,2.5446669765048076e-05,4.584419270679896e-07,0.9999897938956924,4.161107020756674e-05,4.083233580291385e-08,0.00012907360001246148,0.00035286257701586864,4.435000124998044e-06,1.455470511873146e-06,1.1151191604864537e-05,1.6709308508964498e-07,4.607853834886267e-07,5.900697322261046e-07,1.0190119662076493e-05,2.0129366966141685e-05,7.861866634620508e-06,0.9993990882233492,0.9999988912584988,0.9999130185798776,0.000139622158290689,1.977993492009003e-08,0.0001312142503980025,6.467463303510277e-05,2.4289671339192665e-08,1.3674770092946392e-08,1.2644088891074944e-07,0.0002652041845156972,7.817977482172642e-06,1.3451181294522384e-05,9.564860556487644e-06,5.789489190574407e-06,5.708237947962112e-06,1.4090389962972545e-05,3.5888105290404284e-05,3.06510148008803e-07,1.2073702255574234e-06,3.1066835854893245e-05,0.00013231515543609768,1.3248742132266022e-08,1.3474649934034072e-08,2.71047066679006e-08,3.989484721056551e-08,6.405818793136666e-08,2.9014465896623964e-07,1.3998736162583837e-07,1.7096314360297132e-07,1.3104748822537455e-07,5.249438712755907e-05,0.00017068435780253092,4.906793781228784e-05,2.432002310058716e-05,4.069758658992426e-07,1.4965609921616875e-06,1.1983948378913207e-07,9.750720056894569e-06,9.07426974353635e-08,8.292668401537803e-08,1.758281175391477e-05,2.2519375130658145e-06,2.8564209254117434e-05,9.358931014757539e-07,1.0198098108510161e-08,1.8077296121390466e-07,7.063677110605305e-06,2.9807878550590344e-06,6.038689371604815e-06,2.4320576598637733e-05,7.4900562241166924e-06,2.1636653211572225e-06,1.40679366751802e-05,8.242318975609338e-06,6.558077861689253e-06,2.2527219062160687e-05,1.176215253868073e-06,1.4440050426663271e-05,2.286089336988863e-05,8.12137918051009e-06,1.3141718157005602e-07,0.0011996268323970932,6.857584631077745e-05,2.3666752643650756e-07,4.849484030729136e-06,3.246311063040545e-07,1.3029720787806773e-07,1.5271128426589946e-06,2.9155065736915006e-06,0.0009292393112218976,1.5125248619290217e-07,4.161019827363613e-07,1.3406955154232677e-06,0.35111941684341896,0.9999993838034837,1.1739905817413321e-07,8.469720339816643e-08,7.78001441694797e-07,2.92350100026646e-07,4.8469574566023976e-05,6.949414986109854e-07,5.518882603891627e-07,2.2305949462581208e-08,1.65893779035508e-08,0.00024387834325314845,8.144030874272788e-08,6.271004989679863e-06,3.205904416182402e-08,1.5533101614110495e-07,2.235436047399828e-05,9.869478001030792e-06,0.0004488364795372617,7.053014966672542e-08,3.3198066925173047e-06,6.49652522293325e-05,1.123016109685647e-05,1.1826601131547012e-09,2.5738183099272795e-08,1.7974284997195475e-05,2.0593887523385724e-05,1.8832751562427664e-05,1.008203540390334e-05,3.470350982346936e-05,2.6920215353201603e-05,1.2473973846829703e-08,3.449354537388197e-07,0.00032613709103902603,3.603841583260951e-06,1.4723854764132759e-08,1.7585578331987723e-05,1.7085208595785146e-05,9.214414711426558e-05,1.0042227935190328e-05,0.00022077073198814806,9.8680379511987e-07,8.909175699276973e-06,0.01860322198742456,6.63704645032543e-07,4.520133974450957e-06,2.651996966548525e-05,0.0002082262045110853,8.429686141558641e-06,1.0239280338895655e-05,0.0003211128499296266,4.3690427358540145e-07,0.0004053449280852944,1.172533750371086e-07,4.322732734865399e-06,3.4583090678755035e-07,7.4314320018789644e-06,8.015713713528757e-08,5.813212521792444e-08,4.168862651865405e-06,8.527509228577598e-06,9.337572603607401e-06,0.000183439615859964,0.00013868944201913657,0.00016323457903866142,4.591295424274086e-05,7.2156208746834905e-06,3.093479820510342e-05,5.384515807633102e-06,1.196231761069305e-05,8.289484204282794e-06,8.148789183602261e-05,4.963612409945542e-08,2.157291976672213e-07,1.1577991591329748e-06,1.1888474240017132e-07,1.663961152963133e-05,1.1383505990758302e-07,8.721578237164131e-07,2.9908337156448623e-05,2.7942575940784637e-09,1.3157423676982203e-05,7.37098512145989e-08,1.890146751100387e-06,1.709520841320022e-06,2.987229986804035e-06,2.8461089415954886e-08,8.401144012870542e-08,3.0650392378179167e-08,1.575314277344578e-06,1.9956776514220394e-06,7.796982138949339e-08,6.938843215431772e-07,2.0114447683360073e-05,5.271080935966849e-06,6.423623577535776e-06,2.6685180525363927e-06,1.1348650584019193e-07,0.9273062420441509,0.9999337260467346,0.9999980355169201,0.9999999041964155,1.7455351022569655e-07,4.160067443590505e-08,6.91869710558875e-08,3.2212832610859276e-05,5.3280666715683616e-05,5.2202564394861615e-08,3.704365944544699e-05,3.8342772784555686e-08,0.9999876447308853,2.293024729542342e-05,8.681254769800705e-08,8.34964123955623e-08,5.627009813705963e-08,0.9999993838034837,0.6678749985138598,0.9998306956100613,2.8161356702045844e-05,2.3500733814518798e-08,3.592007893192959e-08,8.104044749276317e-07,5.8851855490498025e-05,0.0015463088176672943,9.49732205093318e-07 -col,object,5.692623134578723e-05,8.009203501591692e-09,0.9998670237629,0.00018351628671358896,0.9999998822144415,5.246913526894262e-05,0.378792010170968,2.54008133550725e-07,1.8518537181511623e-08,3.116693045730479e-07,2.264617248693016e-05,0.0001033240666506216,7.397173669232616e-05,2.218542523328382e-09,1.4912880718315564e-05,0.01878203948029691,0.0006042126991115089,0.0009823928295878148,0.0009178191266816342,3.700408015045167e-05,0.0002701252025114466,0.004066617820777821,2.7063074183791358e-05,0.36255052417697325,2.1508267560501202e-05,0.0044194981991666545,0.0006997395341625399,1.0865838457608204e-05,0.1317792130093088,3.979669965141567e-06,3.893792969407037e-07,0.9999880734910327,2.3079065583683673e-05,7.73222225496133e-07,0.00011529742297560638,0.20687288868034756,1.5542689372713795e-05,9.318349580567197e-05,1.7438641862603693e-06,1.438536162864847e-07,5.626661335177091e-06,1.751598662626319e-07,1.0293831812438646e-05,3.7957696013695565e-06,0.020642207615588073,0.9994988263266777,0.999997985104228,0.999922947293863,0.13520114791244617,2.0104291718259423e-07,0.00010985536768457591,0.0005241494400884137,1.06359665421266e-07,2.4460829947666746e-08,0.00035626201220895356,9.739149457623647e-05,2.980346824025723e-06,7.3494163192863055e-06,4.429095538989434e-05,5.843193873222927e-05,4.466472387543729e-05,0.00035693213333538724,0.022862183306408213,1.255598046689887e-07,2.3151474538922492e-07,0.010410783985001709,0.017958985064017392,6.692541905197338e-08,5.80334072465989e-08,8.437190027147282e-08,6.763998802252631e-08,1.0757159428930054e-06,3.518815456636161e-06,5.997605588330405e-07,1.148126501312071e-08,4.5794628299917977e-08,0.008929788249579565,0.04314385572682309,0.007497772758008755,2.9568494457281497e-05,0.00015993413514042357,1.1862067079449727e-06,4.322859540155921e-06,5.899273307370626e-06,2.911564581816436e-07,3.7800898442336426e-06,0.026521600043271473,0.00017322674910136672,0.004066955131516663,0.00032481098937033113,4.651582279878834e-08,0.00032361529320001084,2.285620955907437e-06,2.3353322415489687e-06,3.578130806763444e-06,1.2968543902600835e-05,0.019432931539264377,2.0502240918635388e-06,1.3183577517209374e-05,6.980808067641878e-06,9.854974933283067e-06,0.019612873549998928,1.2092656155269495e-06,0.00011653202828208918,4.262229809677168e-05,6.709632420110872e-06,0.00035640948622102294,0.22777742017657623,0.0061877767716993475,3.347682657384547e-07,0.0007045342338591046,3.0455586021469107e-06,1.8429246541263157e-06,1.6447444682281286e-05,4.204659326223634e-05,0.004429892556958596,1.5059421398316442e-06,3.3215171640652316e-06,1.5731679188131554e-05,0.8355848972413178,0.9999988465812945,1.3339103970168553e-06,4.968608055183614e-07,1.0301280163745832e-05,3.7753442701599e-06,3.6889796786262985e-05,5.571417729404744e-06,3.92811494589423e-06,2.7325684283239816e-07,3.941249057681511e-07,0.00014227845271353086,1.5118100516483432e-06,5.3009335211286544e-06,1.8335777702105446e-07,1.487018462920842e-06,0.00035661028229368234,0.00033127949602427886,0.012332974719259563,5.360342969092019e-07,5.025249447985276e-07,6.175383491968424e-05,0.007975906882396695,2.7741499823369183e-09,5.563556462483776e-07,4.359820605017706e-05,0.00010904962253612858,1.236183034039016e-05,0.002240077675240632,0.007003001051188114,0.008880816888138953,3.2575434359247603e-07,3.391965438605973e-06,0.33293586548766557,2.9810278761587206e-05,5.018604062098415e-05,0.0001762989973336657,9.657161660416282e-05,1.6650256974885654e-05,2.347992722399171e-06,0.0030636520173246196,1.822292915128925e-07,0.00024408596116072317,0.9077734758656822,2.4889713952269684e-07,1.532107645488482e-06,7.159635962419433e-06,4.5443967629386676e-05,8.18731993072681e-05,0.00011727424982867615,0.003428951535145032,3.8237645691249884e-06,0.00035095625570170463,1.3365582228949156e-06,0.00891899627860638,3.1837042314862248e-06,0.012132687319283051,0.00015082292868283062,6.573474865614495e-07,8.131520059689542e-07,2.131296384985633e-06,2.660252715479981e-06,0.1379288728762912,9.525929354399242e-05,0.00012595460244284283,3.617644529879354e-05,0.013188174725279524,0.00039629806631739993,2.6010535148954654e-07,0.00014421037187316052,5.7147186462509055e-05,0.0009317789549479591,1.2289688251757423e-06,0.00012183198295685822,4.708858743894617e-06,1.4051086283952521e-06,0.028805715384881046,1.184371696544512e-06,8.397832376346964e-06,2.930966774177593e-05,5.448216472531074e-09,0.00015522059285668946,1.039123064631677e-06,9.371277455388132e-07,0.0005606880068372608,1.931750509083438e-05,3.3992579549924746e-08,0.00026725597879005746,4.108216519743403e-07,9.366998409870957e-06,0.0007767536184356916,2.2234585222806725e-06,5.434217536606085e-05,5.686825241564789e-06,4.276163163523113e-05,2.055333903860949e-06,1.9712600430786383e-05,1.7208063042850638e-06,0.9997915154169181,0.9999411384770531,0.9999967110376771,0.9999997951809032,2.805966118473747e-06,7.288897440982136e-08,3.775466976957616e-08,0.0004113685202598483,0.001009751725792767,2.5949981571797727e-09,0.0003182873285364155,0.0001457033241145352,0.9999901614571849,1.0636542040627573e-05,4.694962741441224e-06,1.2166877266752852e-06,9.787821192511874e-08,0.999998759707216,0.8242754297261128,0.999834936005556,3.7817385365635663e-06,3.8796300038570955e-07,6.465606268237449e-07,7.74360599690933e-05,3.0404276688310168e-05,0.008245302499341238,1.1198499281861731e-05 -con,rgb,1.0,1.0,1.0,1.0,1.0,0.9999999661203398,1.0,0.6244745059700605,0.6529436427608409,0.18994712152006138,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999822,1.0,1.0,0.9999996453702898,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999670007838,1.0,0.9999998298524272,0.04707158313708143,1.0,1.0,1.0,1.0,0.9999999999987355,0.9999996514266409,1.0,1.0,0.9999999763172353,1.0,1.0,1.0,1.0,1.0,1.0,0.9912398174836795,0.9999999492130146,1.0,0.38429236781666826,0.9999982535223781,1.0,0.9999999242020485,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.24052174711599109,0.537908177589353,0.6906771288928023,0.999999359077155,1.0,1.0,0.15934411969007123,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.999998997684488,1.0,0.631794871570441,0.9999999749686368,1.0,1.0,1.0,1.0,0.5446691676779665,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999994511862468,1.0,1.0,0.9999999781546094,1.0,1.0,1.0,0.9999984907243946,1.0,1.0,1.0,1.0,1.0,1.0,0.03256054360804753,1.0,1.0,1.0,1.0,1.0,0.98728923760617,1.0,1.0,1.0,1.0,0.04102651070536889,0.9999811403573571,0.6317156615070687,1.0,0.07802029613950415,0.999999969142746,0.17422454309531746,0.030457438428637653,1.0,1.0,1.0,0.9994685471025776,1.0,1.0,1.0,0.9999989485187186,1.0,0.9999999999985008,1.0,1.0,1.0,1.0,1.0,1.0,0.999986088006682,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999978580904371,0.9999999495611976,0.996603572099576,1.0,0.9999992456122102,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999996248232184,0.999999978390457,1.0,1.0,1.0,1.0,1.0,1.0,0.5632595147860268,1.0,1.0,0.7893867309823538,1.0,0.03709073243449925,1.0,0.9999998964914224,0.9999953904212528,1.0,0.9999771900142291,1.0,1.0,1.0,0.9999982379920291,1.0,1.0,1.0,1.0,0.8622074328012487,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999989437329994,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999234106009647,1.0,0.9999990476953906,1.0,1.0,1.0,1.0,0.40527881434883045,0.9994315560573407,1.0,1.0,1.0,1.0 -con,shape,0.9999936142272047,0.9999994397764503,0.9999999959007946,0.9992552539762312,0.9999999999992468,0.9999868105176645,0.9999925139426974,0.9999999579751904,0.9999999618160181,0.9999997102484746,0.9999985789971644,0.9998177662830768,0.9999991128724443,0.9999998553536198,0.9999999036262721,0.9999999114257453,0.9999999998274613,0.999999993127632,0.9999996041184591,0.9999999998464126,0.9999998122819532,0.9999965843537795,0.9999999982894865,0.999991968256913,0.9999972429943834,0.9999909390352733,0.9999011317113438,0.999955703745514,0.999982636385214,0.9999998959750035,0.99999997973704,0.9999999994921698,0.9999985088187614,0.857723962866303,0.999998017611102,0.9999966899082162,0.999989260761749,0.9999999034889522,0.9999999995802102,0.99999389892707,0.9999985030182054,0.999994826136807,0.9999986390395587,0.9999977567601542,0.9998892305241867,0.9999999972562588,0.9999999997247784,0.9999999999893221,0.9999977271779964,0.5711258109966431,0.9999999035774858,0.9996449747249807,0.9999225485143756,0.999999586362898,0.9999992943337209,0.9999999169759932,0.9999741648969588,0.999999733801648,0.9999471484110659,0.9999999964996089,0.9999999985167818,0.9999999955115342,0.9999999879156022,0.9999989396921247,0.9999999997306475,0.9998587431568707,0.999998180079733,0.9999990710959348,0.9999936897591682,0.9999999924327859,0.9999999995460627,0.9999999968572602,0.9999866840604781,0.9994099002125423,0.9999997096583372,0.9999994189200604,0.9999958936701501,0.9999938098290622,0.999715780921072,0.9999999994510624,0.9999995902088862,0.9999999366559622,0.999999401516211,0.9999982089738501,0.9999479411233886,0.9999999866641021,0.9999999996488811,0.9999990006881966,0.9999999915254746,0.9999999630258776,0.9999651388022491,0.9999995453878643,0.9999937225919738,0.9999999087050077,0.9999975994032279,0.9999658488728703,0.9999429747380901,0.9999992583255789,0.9999999764377175,0.9999998864355335,0.9999999996475188,0.9999999951241092,0.9999999499928783,0.9999999921122685,0.9999999918670767,0.999999964907862,0.9999887967226871,0.9999340501890237,0.9160193692660441,0.9999999844862972,0.9999975144065096,0.9999922376312703,0.9999999820280804,0.9999483291382173,0.999988820409999,0.9999719060491049,3.728463215319381e-05,0.9999965607911522,0.9999997366794268,0.9999999990053583,0.9999999999994289,0.9999992946881316,0.7040532372713034,0.9999999908873317,0.999993484026498,0.9999617879328567,0.9999788905487302,4.515985437016805e-05,0.6328362335241041,0.048842577516257896,0.9999998004408245,0.9738732373669341,0.9999991751694888,0.9993103621070061,2.944002901633629e-05,0.9999999978990521,0.9999999038758992,0.9999999999840559,0.921123054656359,0.9999999994999151,0.999991765581858,0.9999999863738298,0.9999999520924711,0.9999394175991706,0.999999848096903,0.9996624308153584,0.9999889874659849,0.9989269226124454,0.9999874928393951,0.9998268196692847,0.999999500330283,0.9999998600395752,0.9999999657825848,0.9999999988369441,0.9999897487744923,0.9999999991966093,0.9998177662830768,0.9998508636096969,0.9999736943433262,0.9999999997485982,0.9892236808382496,0.9999999534220383,0.9999999598205075,0.9060523874305094,0.9996064258802825,0.9999198080713444,0.9999980027344486,0.9999999925311268,0.9999997524762505,0.9996177910304405,0.9999997549082155,0.999997421612668,0.999999989121216,0.999999999730921,0.9999999990275117,0.9999893346472088,0.9999998416708906,0.9999995517909505,0.9999963879210265,0.9940910989303047,0.9561920122326166,0.9999998714502808,0.9999679651442981,0.9999999636606858,0.9999999392888744,0.9997406119945107,0.9999963752312178,0.9999999970069353,0.9999999998158635,0.9999706031064921,0.9999965976766632,0.9999995629232469,0.9998510339558135,0.999999759136179,0.9999999997625584,0.9999661034370751,3.5188278110222896e-05,0.9999405075381277,0.9999979946882471,0.9999999966638389,0.9999676713598827,0.9999999885326293,0.9999533430011781,0.9997312462238097,0.999885842722168,0.9999996034767944,0.9999975621219677,0.9999997180644431,0.9999999980910323,0.9999419429719366,0.013657914843138603,0.9999994638518278,0.9999678532051813,0.999999991502814,0.9979490325157658,0.9999964050333479,0.9999965548137213,0.999999999981368,0.9999999997238409,0.999999999947057,0.9999999999998643,0.9999999887681174,0.999999999297204,0.9999992956932597,0.9999998658790483,0.9999999082930486,0.9999998865610538,0.9999993579619101,0.9999996125823218,0.999999999999891,0.9999999590728849,0.9999994813162779,0.9999730211969898,0.999999607384499,0.9999999999994289,0.9999999674572151,0.9999999999924509,0.999999994662651,0.9997197846025437,0.9999952247281048,0.9999999176185262,0.9999990570596854,0.9999999428392424,0.999990074327974 -con,object,0.999993197862241,0.9999999539927354,0.9999999988964392,0.9999976137065815,0.9999999999995968,0.9998704653133587,0.9999419700247782,0.9999998365965501,0.9999999148750408,0.9999993091960981,0.9999999096299279,0.9999704868641212,0.9999999493968107,0.9999999948997527,0.9999999999821025,0.9999988632701059,0.9999999998927256,0.9999999933854697,0.9999992451394362,0.9999999995010602,0.999999850902112,0.9999979371303487,0.9999999529262389,0.9999909860401978,0.9999957806167179,0.9999991072742511,0.9998776106481937,0.9999529432815714,0.9995197337725843,0.9999999949262612,0.9999999584513195,0.9999999998164715,0.9999957433027507,0.9116544713141504,0.9999999995841145,0.9999632228515739,0.9999975146376168,0.9999999964712398,0.9999999988890542,0.9999389876515105,0.999999999969768,0.9999999557278654,0.9999879133214409,0.999999886934415,0.9990491310351458,0.9999999988181081,0.9999999998162827,0.9999999999967799,0.9999745600817703,0.8071074870842101,0.9999972217319658,0.9999996253652774,0.9998829476751666,0.999999720446,0.9999986251128927,0.999999709345896,0.9999939858437695,0.9999999055357212,0.9999944084028736,0.999999999925161,0.9999999999682838,0.9999999763054733,0.9999999250997963,0.999999983296549,0.9999999999916911,0.9999443739313878,0.9999998702280279,0.9999985635006031,0.9999920649293976,0.9999999701681042,0.999999999747115,0.9999999999998694,0.9999999992078448,0.9979553122152143,0.9999999619186509,0.9999999904962106,0.999998893377452,0.9999966639932446,0.9999234958078996,0.9999999995382081,0.9999995837930766,0.9999999899363908,0.9999998721212834,0.9999994466988519,0.999827284721141,0.9999999975942853,0.9999999941968667,0.9999999306509609,0.9999999717361211,0.9999999666828665,0.9999569682384465,0.9999988582021276,0.9999988864844118,0.9999999900004005,0.9999997121130489,0.9999886594662033,0.9992176125543619,0.9999999486969902,0.9999999917864509,0.9999999606506369,0.9999999997030113,0.9999999868949405,0.9999999351210831,0.9999999999991742,0.9999999983196184,0.9999997142509399,0.9999904223768656,0.9999277215842628,0.9923280331693421,0.9999999900215838,0.9999998871393218,0.9999999968051905,0.9999999999988027,0.9999967208778431,0.9999982033254913,0.9999838812026337,2.3525797535856288e-05,0.9999996545522541,0.9999999941479796,0.9999999998141609,0.9999999999993778,0.9999999488328233,0.8802393683577149,0.9999999999994762,0.9999995866849781,0.9998169613994102,0.9999982382655879,2.3154618395398045e-05,0.911313596491829,0.20403962231756814,0.9999999044576209,0.9874269006923652,0.999996743006505,0.9990018417873645,2.183861766598713e-05,0.9999999995890589,0.9999999970774085,0.9999999999644262,0.9871080241104974,0.9999999999820581,0.9999999869342526,0.9999998982978288,0.9999999469574042,0.9999999976964211,0.9999992183650456,0.9995736443304095,0.9999845045944233,0.9998505204755437,0.9999974475452578,0.9999595325035734,0.9999999999649216,0.9999999411702573,0.9999997677366486,0.9999999999685225,0.9999837416546999,0.9999999999669626,0.9999680413810251,0.9997915253674028,0.9999921807048416,0.9999999974733003,0.9969896227393905,0.9999999808042707,0.9999998528343731,0.9656177263779859,0.9996296448786299,0.9998830532310312,0.9999924780841658,0.9999999991380859,0.999999991665185,0.9999998496485967,0.9999998636648711,0.9999643625840424,0.9999999900245008,0.9999999978695822,0.9999999980762966,0.9999821795091317,0.9999994246211656,0.9999999999852094,0.9999958507602074,0.9963838619789059,0.9571627132898295,0.9999992280838713,0.9999999275065293,0.9999990865939193,0.9999994993764726,0.9995763440552585,0.999999998996592,0.9999999997888416,0.999999999991638,0.9999976162606895,0.9999988783135195,0.9999998182812758,0.9991418178676466,0.9999999327113626,0.9999999996950197,0.9998767350331701,2.7603672259961738e-05,0.9999914552699799,0.9999619971152293,0.9999999848568797,0.9999999964629251,0.9999999946846279,0.9999690791864799,0.9997097382686296,0.9999767061958071,0.9999950639536209,0.9999924818086547,0.9999999998768214,0.9999999999999467,0.9998190770341739,0.0537639973052709,0.9999999656685513,0.9999652229349074,0.9999999998442262,0.9978941576971334,0.9999995161578793,0.9999998804944453,0.9999999990393966,0.999999999879535,0.9999999999759266,0.9999999999998472,0.9999999999989504,0.9999999996163993,0.999999956957416,0.9999999381261644,0.9999999671449731,0.9999999937538726,0.9999993028702737,0.9999986570647257,0.9999999999999287,0.9999999999819402,0.9999996936344399,0.9999999982745791,0.9999998785409333,0.9999999999993685,0.9999999914846996,0.9999999999966449,0.9999999995971163,0.99981368236609,0.9999920479285805,0.9999999952754199,0.9999999998388074,0.9999999504555002,0.999997891314314 -concavidad,rgb,0.00010005738752927266,1.0,7.40357052638627e-13,1.0,2.1889809848964247e-11,0.999269351420283,4.2606475541555544e-08,0.8808881384919154,0.6177930620980683,0.054345767668723365,1.9310228319579485e-13,6.208658395993624e-13,3.519360234226001e-13,1.0,1.0,0.9992370879633816,5.143773437365876e-18,9.663517504623795e-18,5.435735370862659e-18,1.237750401479441e-11,3.495097336129819e-18,3.4995341233822407e-19,0.9978178987152443,2.37000336172557e-19,0.9999945932468418,1.2532655356306124e-18,0.152912886878562,0.9999723252908723,0.9920735462256536,0.9999999999999987,0.999221846635246,1.5997545949513298e-11,0.9954259704264031,5.127617747832575e-07,1.0,0.997031178153414,2.2298669559478494e-12,6.13902391621399e-19,0.9093798414788186,0.6705565126927895,1.0,0.9999999998418754,0.9985019378404093,1.0,0.00023868508449964508,2.730770843647673e-11,3.1309703028236304e-11,6.851006100112825e-13,0.000418594974277552,1.310867805179093e-08,0.9990802747542059,1.0,0.35448733179624453,0.932438934529919,0.1008152675790647,0.9188697484384731,0.01300351171645582,0.0029516519522800352,5.81653850345848e-13,2.5341104592227936e-13,1.5449653332614659e-13,2.9983183356063326e-18,0.9999931645938844,0.9999999935023811,0.9999999999999665,7.68758216670311e-19,1.9052990581888367e-19,0.1967544798810328,0.7794191794131503,0.7534844357422256,0.9763654475725724,1.0,1.0,0.10908628166537157,1.0,0.9999999992361988,5.465528238208231e-19,3.8132387214117236e-19,3.029002733577773e-19,0.0009318371944332412,0.022998652047900983,0.0034073748810029393,3.8807386904129e-15,9.972687643386121e-05,0.8387941359833061,7.773164202280627e-16,0.9962635098685868,3.9664594802193863e-19,7.182335142014966e-07,0.025705863409404228,0.8404859278629375,0.9999999683214224,0.08440449068225366,0.0025808254976473514,0.00045540367173327995,0.00015966093418608336,0.9308924598569928,9.24687125110451e-05,0.006072172021726832,9.513853829472858e-05,1.3240760110552764e-05,5.810663409483833e-10,0.5530288991749679,1.0,1.162874945879635e-05,0.9993839547470318,1.3379102814037374e-05,2.1263905313707677e-19,1.1010290789087318e-17,0.4098268967723374,6.876429513733233e-19,1.0,1.0,4.437029245420152e-12,3.6184804558226847e-13,3.625212160653378e-13,5.685041461429824e-05,6.5421662112850256e-12,5.32046592092018e-13,5.880861311391113e-15,1.2845415814388073e-11,3.541340832751831e-12,1.6315184935162867e-07,1.0,6.067622080327001e-12,0.0059972064736573925,4.141518879323472e-12,0.00010060949612769726,1.1567738232961931e-10,1.087956663597618e-10,6.281601272030985e-10,2.7229453528484377e-08,0.9994876635783694,0.12685958383837398,2.63057886078531e-05,6.448835542471713e-18,4.996196639804629e-18,6.6852969829248824e-18,2.031400660143921e-09,0.9999999999999987,1.0,0.99997145568721,0.9697863628237532,1.0,7.812004214062076e-11,3.5587069794091212e-12,3.9203849246797844e-07,3.106383003450257e-19,2.5922971562578044e-19,5.03479390377183e-19,1.0,8.795614943088151e-13,0.98941996282572,1.956520034633218e-13,0.11760624948223244,3.1839976546562127e-13,6.916263835287697e-13,0.9999999356785506,0.9999966311611943,3.583354654174876e-18,0.9999999994002844,3.573880354975784e-18,0.8777231941315851,0.9999987831915946,0.9999994744714973,0.9999997656801857,0.9999963403458327,5.08585850935128e-13,2.501208420190866e-13,1.0,6.236118420791092e-13,0.9990599343017866,1.5652029154488123e-11,0.9999270748202964,9.855334280852713e-13,5.295677408623881e-08,0.9999999891607515,1.0,0.9999999998538158,0.9999999084873229,0.9999994005015013,0.999627452600551,1.0,0.9965883287620146,0.9993713481913379,0.012556037470955184,1.0,1.0,2.480890556591076e-13,5.547046429300516e-13,1.5924589004697484e-13,4.55532708470507e-10,0.00023317458578380775,1.8022986669385e-12,1.3992339553899223e-10,0.0009097313199140243,2.3148498923600214e-05,2.111356499695507e-12,0.9974122496437455,0.8839223551505093,1.0,6.518231603376563e-13,0.9999688593634398,0.12291876470034087,5.006269591384162e-12,0.7570796014238492,0.07305616974107441,1.0,1.0,0.005112162969775648,1.5642863185063608e-11,1.0132063027700885e-18,0.999991979220441,4.2033584350773865e-13,0.9999996710843349,2.3465663496918785e-12,1.9293896481680065e-12,0.9999998533196388,3.484862167702821e-12,2.7431511756381383e-11,8.758840507777914e-11,1.0,0.968376987021222,0.999999954157306,1.1828907033751958e-17,1.3913995108689754e-17,1.0,1.269312280351393e-17,0.999999882570511,1.2546600218632041e-11,1.0,8.166405153516513e-14,1.0,0.6239885509872819,2.021478800702907e-11,5.945635875266329e-12,2.078509493609488e-12,0.9999999999999978,8.52854378118409e-10,3.5506803898025176e-12,9.361143608589205e-19,1.0,1.58588859896108e-13,4.286527100867825e-13 -concavidad,shape,2.5515064702751566e-06,4.578623301820248e-05,0.04020957493528363,0.00015567749116759968,0.05887829915734151,0.0015431955985766488,0.00012279174806175018,7.158264639712212e-07,2.4991425058925244e-05,1.375743471776742e-07,0.0006868841570733935,9.001274822730302e-05,5.3951665954547915e-05,0.0014113085570772483,0.0016000982221302169,6.398481534577407e-05,0.9989126507957024,0.8710196358414367,0.6625282104825078,0.9709367734197707,0.9998994710297503,8.281548551642844e-05,0.9996187856029556,0.0070355549201712424,0.0009527727728398452,0.00036685958137036123,1.3293644108121675e-05,3.5685253243122634e-05,0.008270665000125849,0.7165462989291385,0.04491435689839094,0.00011809973602646795,0.9999403230361554,1.7160026475898874e-05,0.9999954131728187,0.999974708730254,0.6252796671899757,1.656247333663424e-05,0.9996037988053803,0.0008216478168404692,0.10213306627038012,0.06611330438879932,0.036320299208589125,0.017695916050965335,0.07264414120702742,8.215054055341199e-05,0.004414676007999418,0.8960720664871051,0.10863154647317981,1.5107357573763535e-05,0.2530562862297722,0.6774716352152169,9.924509206247358e-07,0.5337132928221205,2.574654195465119e-06,0.9999999004542707,0.00011180991184298321,9.19381010515208e-05,0.0003460113935121313,1.8789867716175977e-05,0.0007627873163569317,0.15374610970984007,0.9999983021579287,7.119463870533158e-07,0.004062509632316411,0.0006235984979696155,0.00033218178440966127,4.474344772847629e-06,2.5425917410367788e-05,9.195137207448327e-06,0.19669274015901891,0.0006326522508926394,5.522992188733946e-06,9.257277706662739e-05,9.193517252000292e-06,1.2460681097831947e-06,0.0003137623611678138,0.002477565275345202,0.000483377276498767,0.5379654884037683,1.619300660939387e-05,0.00033932661476201656,1.2115191288691516e-05,0.010014790915021386,0.0004905510450540144,4.055142655460153e-05,0.7043214924171844,8.567922246006743e-06,4.412986945120448e-07,1.0744718627596573e-05,2.530316821845308e-05,0.0012180869271181882,0.00020372334326459107,8.908402884894639e-06,0.00021560378656127832,0.0006728295808132844,0.08580888189574315,2.5575958303881143e-05,0.0001499575921214993,0.00030110391136187924,0.04306354110871401,0.9719014136070725,0.9974383359903007,0.859286978091961,0.00021624840424045415,0.8909968956324376,2.7021257269307577e-05,0.002348644006024744,0.0002636973954781759,0.9663409847257044,8.114747408417265e-05,0.3078970038175423,0.0020347967466929173,0.901541148367096,0.20498026832970517,0.12619785071603007,3.418275637447807e-05,0.18432519577641968,0.09139534418236678,1.8042339953151483e-07,0.1653710105109935,0.9842126366252958,2.8857824950043425e-05,0.037129156770941536,0.9990311253828331,8.568071660048123e-07,0.9852245446333217,5.160875567540158e-05,5.022789989589815e-06,1.896951109178612e-05,0.00017554340019394846,4.227728179049367e-06,0.003147577988423056,1.0285418476773261e-06,4.139607434414792e-05,0.9999508999544856,0.5090730826964817,0.9993588293700193,1.604968509690842e-05,0.022642068543828876,0.99979225517977,0.9999999046148955,0.03861551405146541,6.756867507110111e-05,2.007514034133867e-06,4.091781958363513e-06,0.0033414053018544563,0.0009482542026362839,5.75572216165692e-05,0.00017675825032586028,0.0003184546169971843,2.8970891264104506e-07,0.9446793004911928,0.00017518759311937497,0.014345046493078818,4.0664939871910934e-06,9.001274822730302e-05,7.582206313538897e-05,0.0010223837570233418,0.9039977020636222,0.0028040468620180565,0.8557790331621272,0.9999968249385545,3.094123962287325e-05,4.4799399700252336e-05,8.324754097066536e-05,0.0036090057848272073,4.917846767573296e-06,0.005056960304465086,4.350782803925482e-05,3.5303817459570306e-06,0.0016653987460078857,3.0679505613346315e-07,0.600214161320695,1.0198601158658643e-05,0.0085393323837408,0.0003194130907628006,0.0004189688766402813,3.201975279592866e-05,9.687895547027925e-06,3.911601851927343e-05,0.9999126216716601,0.9998628118610543,0.9997529426252404,0.969225687014381,0.0037355555885215668,0.0001572119566931995,7.921499934008205e-06,9.077651459067935e-05,2.485005404328944e-05,0.012468695300387439,6.14868195728644e-05,4.559517274506827e-05,0.9755730490162424,1.6811837859839037e-05,0.019214545116860125,4.634773909129844e-06,0.29892214880583406,0.10523322961914483,0.001976754762127841,0.014527880659906525,3.4613756705735845e-06,7.6393387946484e-06,5.6941135656415343e-05,0.7631242604579046,0.5339358590709776,0.0009886465569118599,0.20822482984047538,0.0010345788118896056,8.753842880430573e-07,1.8564722860075275e-05,1.0926237399027538e-05,0.0005009783228495131,5.189560881861438e-05,5.665215451531048e-06,0.8326548403886521,0.9599052130997957,0.7898332927833018,0.002236132860177083,0.00023590105808070857,0.0010910588311560953,1.5628535115657138e-05,0.0686486717437943,9.14849844674953e-08,0.628908238288753,0.9998725318737703,0.0038069932773752133,0.4887228748711329,0.004797175836287568,0.02405221277569588,0.9999325069459061,7.102456175691768e-05,9.879337302670822e-06,0.10249105463104775,0.16537101051099423,1.5984550415356504e-06,0.0002112284853393395,0.13818091227669513,1.0350027453589617e-05,0.0005831443492112056,2.0148743790418844e-06,0.9998950325582919,0.7722984725018793,0.8146821784964824 -concavidad,object,3.3699412236474136e-07,0.018510952696906096,0.025100426033531596,0.0026664395066347962,0.005822465659308592,0.08095579531146546,7.171167972108915e-05,7.119137421872249e-06,0.0002487256943989463,1.3243509399587975e-06,2.9896747714464803e-05,1.3102887329372083e-06,1.3910433930569226e-06,0.3200888841520219,0.00819361340096889,8.530986474198838e-06,0.9033627074885061,0.05898868317105925,0.0014246930514696117,0.41464675494014425,0.6291109332674115,5.6886596707844246e-05,0.9997114933371068,0.0011260302110998497,0.3769113293466095,0.00021835173633388583,5.926889874044914e-06,0.02088323522843162,0.0038996372332880027,0.9898327564933233,0.3444074024022836,0.00011151348141254588,0.9999689350033338,3.144040360674848e-05,0.9999992027255121,0.9999339879478075,0.5365637546611013,6.943736730612789e-07,0.9996112095448164,0.0028686831422309275,0.3147808551831145,0.7562273955528969,0.695658664530408,0.7921838409854396,0.00906626162946324,6.463518092841795e-05,0.002119042365358122,0.46007081942076655,0.03707930792652771,3.441393624483348e-05,0.9546087639322026,0.9076139018422942,1.7255166626624624e-05,0.93944689026018,6.067897079790833e-07,0.9999999883623395,6.67707884558002e-05,5.9902974520799815e-05,4.57735224356184e-06,1.6001370225388042e-06,0.00011676778043518072,0.0005119364388509171,0.9999508868944168,2.2961564942492566e-05,0.2419398220081856,0.00021196890416104021,0.00014183930213462133,4.808636587345493e-05,0.000370332827240568,0.00011520531794769238,0.834657486852513,0.004984009324090761,1.250019791876169e-05,0.0006986730297460068,0.00277434684979767,1.9268868566107847e-05,0.00020044451450154066,0.0005095770529404898,0.00020928301883437196,0.6040818751613334,8.12824766247709e-06,0.00028683814298265255,2.4367745331987063e-06,0.0020076127520627907,0.00633778745751905,9.846457221462971e-06,0.11389622731200578,2.961403871317907e-07,1.2112754463217675e-07,3.903308804531376e-06,0.00036958567880393496,0.0003922667605702907,0.0001671070207982459,1.0268732324175927e-05,8.471426569531608e-05,0.00010060615071344128,0.021409537359167362,1.7209847843305532e-05,0.0004604709714590029,0.0002583851804399267,0.05309711256867028,0.19727439779580036,0.9986479714097072,0.8970540024928594,0.0002366654693625145,0.9910621144322043,1.413944272854515e-06,0.0004807527756959461,4.611546807037551e-05,0.9980326924506451,2.889238434512625e-05,0.1299294714728709,0.022615948022484404,0.117743549476643,0.028511288312221047,0.048271209400505576,0.00012777749967712244,0.022407705510735124,0.007970351380659293,8.075173357491949e-08,0.023083518611808355,0.8086209690243295,6.979832282808477e-05,0.18749700313906967,0.9638553033769879,1.1060798382567679e-06,0.6544935359203209,0.00020249497310866285,5.686806513843177e-06,1.2997346917641969e-05,2.1647774249877256e-05,8.989757087347216e-06,0.10551414031204742,1.364735463554475e-05,0.00013881208537807853,0.9358394882156912,0.09437295265901789,0.9304267572746092,2.778132804803995e-05,0.6148041995269944,0.9998671138316159,0.9999967283216085,0.0851930447667385,6.179590076424325e-05,1.9659975048790185e-07,1.078041498687443e-06,0.0003634372148674931,0.00019551849259033817,1.9843773250643335e-05,4.339880292890817e-05,0.000426503035093171,1.0707578794002722e-07,0.3501697315193239,1.8000686551229733e-05,0.0003069652687636083,4.009671593010021e-07,1.3972800139408837e-06,0.042865596749187856,0.30616117344493504,0.018661779491622073,0.51488930922714,0.002961830064881723,0.9999682396571391,0.006507841666811879,0.023679881407305054,0.060510268918383105,0.6399456253222445,6.493257960901866e-07,0.0003180800629285307,0.0008604642049341849,5.211220596102972e-07,0.11813300084479508,2.3346048608717347e-07,0.13523842468348557,1.2778760900481891e-05,0.001169250822394459,0.00024351479429572472,0.0034902428586495765,0.058940011804752813,0.004953805945170666,0.015508684019127915,0.9998199453440916,0.9998771337729219,0.9998155752547045,0.9961700740429834,0.0012745937212683778,0.002299925804731086,0.002003137389183353,1.084420532932874e-05,5.263884767842858e-07,0.0026002566879348384,6.207601550648156e-05,1.3089842034294715e-05,0.3189393966152035,1.3907438294278813e-05,0.005055017605609068,2.340542046525673e-05,0.012965712538675993,0.8872917326170632,0.01074673418741055,0.08434721101889817,1.7100622245001583e-06,0.0031236984392122168,2.388241256628144e-05,0.10981078583579398,0.8014032918456956,2.386632588601454e-05,0.16956622830943907,0.0026041859591764754,2.314861520770274e-07,1.457269983805796e-05,6.324631870051646e-07,0.1552066724651932,4.776344142780758e-06,0.0019681084261916875,0.38619269326473427,0.5687018897888506,0.5499041156939463,0.0012137519978864847,0.0001968772416782497,0.00044787488277964774,8.186576780419928e-05,0.6203554564980949,3.764760834512273e-06,0.0019383690044985863,0.6039107434527363,0.6999990326124257,0.0009426167575951537,0.0017051073653259114,0.006988416397063083,0.9999572634360622,2.14098606593e-05,1.9123335711322656e-05,0.610800591365002,0.024722396261881406,1.5889459982248408e-06,0.00034749164362735054,0.8174169159328027,1.0891206023780941e-05,0.00027537808240750514,1.1150936375067293e-07,0.9998957467875641,0.6428813763173735,0.32120098894807353 -cuadrado,rgb,0.9984850665169143,0.9999999999781997,0.0007352170562649701,1.0,0.00883654942811404,0.9895744957509506,0.9867656765195248,0.9705080278328418,0.9314248914415474,0.7903401940541571,7.318625582330084e-05,0.0002715688416828952,0.0001802687241116735,0.9999999999890745,1.0,0.9999999902235192,1.6384308177998587e-06,2.0046946100903972e-06,1.571911922419445e-06,9.313657579325296e-05,1.1111851749558954e-06,3.087075932749244e-06,0.9842372934175052,9.31281436966547e-06,0.9980464721912183,6.46155208003872e-06,0.9999768799261508,0.9959577514213767,0.9999999489579315,0.9999999927919621,0.9892488103593491,0.00364745716925817,0.976993988149231,0.04682708074367147,1.0,0.9999999795575754,5.1081620593130854e-05,1.4155833678385698e-06,0.8828682300632551,0.8323637851350861,1.0,0.9999979986390763,0.9851917880715639,0.9999999991534474,0.9999364961301965,0.0019488128960189405,0.004458459462534483,0.0007084449908564988,0.9999392002776305,0.002273537786613765,0.9885734190202148,1.0,0.9075166057263135,0.9277579190444953,0.9999980054532275,0.911942270453274,0.46772377018463407,0.3402972288999967,0.0002466435973208423,0.00013325781251202808,6.746519160682114e-05,1.1312208933048943e-06,0.9999999991979158,0.9999896876272861,0.9999999703375908,1.1455930328824274e-05,3.073512143967019e-06,0.8851970337930885,0.9595668788286909,0.948708133581329,0.9535847608931214,1.0,1.0,0.86423368715422,0.999999999469388,0.9999953253065547,5.089143552258649e-06,8.550842166273177e-06,3.4267787523908756e-06,0.2525353300416567,0.9999240464574582,0.32507794635847226,1.541727562191427e-05,0.12718866985253857,0.9637026475681476,8.95371465826319e-06,0.9999999696905717,1.3742817526646293e-06,0.9549471236447407,0.999923656920038,0.9676235955795301,0.9999999999468576,0.6493643662418814,0.35606940043983737,0.20834945418797596,0.15075249868241627,0.9999998303512793,0.12411003282350712,0.38133837923065106,0.1198325950423723,0.06089477673758073,0.8834123445119418,0.8007665656760998,1.0,0.06360647463039396,0.9902070886178441,0.9997026995427301,7.736101557140286e-06,1.4748851365424508e-05,0.7622334651435868,2.972091981521435e-06,1.0,1.0,0.0005822026463064184,0.00012502441350730224,0.00010152797261403023,0.1891870988732538,0.00019954140665942756,0.00026890131721745466,9.2266110806838e-05,0.003513012876468072,0.00022022309469300953,0.006297264480427488,1.0,0.0005456896546009199,0.2162058042893475,0.0002460802017601385,0.20928317216198242,0.0002850427381688145,0.0007700758158923545,0.0004298591621829043,0.011977566928397361,0.9911494720570956,0.8702000775206268,0.14692666048614617,1.3488402279490039e-06,1.4355484507886839e-06,1.5940446450514595e-06,0.000954030636595231,0.9999999934570774,1.0,0.9999999970981341,0.9491073447681105,0.9999999999999996,0.00018561239994758044,6.0702999320551266e-05,0.005257238485396242,4.068164240316395e-06,3.838915109320788e-06,1.1835552639479939e-05,0.9999999999999998,5.356574368514373e-05,0.9999999517993313,7.169250816653075e-05,0.9999981782415132,0.00014978830542321939,0.0002493207429776899,0.9997415533810771,0.998611115822936,1.2291089890372958e-06,0.9999683542962325,1.2679059511220456e-06,0.9999999224042335,0.9990083268436394,0.9993119295578936,0.9995258427756535,0.9983597049456737,0.00019391680680999385,0.00012855054823523288,1.0,4.383280738224683e-05,0.9884517628197883,0.0001924546994590519,0.9999999971689322,4.858089331208779e-05,0.9882555283184997,0.9999999999680824,1.0,0.9999831919679492,0.9996940470470569,0.999280800228938,0.9999999942371449,1.0,0.9806070736091772,0.9901088425685328,0.9999914914977819,0.9999999999998759,0.9999999999232427,0.0001288164539289755,0.0002272812982841866,6.589377594126327e-05,0.0031619401906805037,0.9991117183642501,4.8540138156262566e-05,0.0006479001482374298,0.9999573843092315,0.12362587476793567,0.0002966322219475657,0.9819826309808349,0.9104258759997029,0.9999999999999998,5.042166104609057e-05,0.9957698883744506,0.9999684794521958,0.00019707849986328938,0.8654367411334135,0.9999976008043395,1.0,1.0,0.9998490755467241,0.0004500023186287859,1.677785219447937e-06,0.9976730670814864,0.00018602800141222136,0.9994593125556939,0.00023914278172771776,0.0004140757692752427,0.9999999998900313,0.0010941143610416618,0.005979941180692316,0.008818328739488306,0.9999999999999998,0.9480393713110937,0.9999752843431465,2.1047359527447236e-06,2.3020731916114843e-06,0.9999999999778839,1.8648583577500904e-06,0.9999999999010356,0.0034647263709330464,1.0,0.00010652300682707948,1.0,0.8243722179391632,0.003974774354489185,0.0005473182243268622,0.0005267421164247521,0.9999999929654517,0.0015574924217064776,0.00010500912886767866,2.305399474294796e-06,1.0,4.992866930652613e-05,8.0077293657305e-05 -cuadrado,shape,2.569319833602264e-06,0.0002750639004545096,0.999996673052923,0.9992474828456085,0.999998519243678,0.9999440262514752,0.9999983841006378,2.791015803338564e-05,1.5317833804852816e-06,0.0001366124711588411,0.001687555758022509,0.029752942803713555,0.004461226344396453,9.420926295706699e-07,0.00860884994880663,0.6625008280418504,0.8550085042672634,0.9343905221376467,0.0031106227216724527,9.222515643254355e-06,0.0008885103895766331,0.9992419532318334,0.9997575586730324,0.9999863206269727,0.9947827307170607,0.9996582845076787,0.004210663632809347,0.9623269975473576,0.08961231783387638,0.966585645646828,0.9983218856178209,0.9999948544402238,0.18915783505335318,0.00025484548580567804,0.7598337471331356,0.926633853421369,2.1600385090738044e-06,5.2456616711356096e-05,4.213517983976672e-07,6.718038534731152e-06,0.002094782881524783,0.0016529083335754412,0.958639329063341,0.9660349324558101,0.9450040421033834,0.9999992063426,0.9999836164817638,0.9999976269263058,0.9999907113835531,0.0002018950674821381,0.9999984845882558,0.9999642196301793,5.046770039861429e-06,0.000296807979052229,9.634161001841628e-06,0.033835173829757946,0.0004831588562674904,0.026470493209898218,3.321469059530587e-05,0.12729633319485853,0.01028112420723367,2.997732773969026e-05,0.018398665230990142,0.00015554374326569317,0.775002720378273,0.9998665258236128,0.9300524286342358,4.9194643662993726e-06,4.495807457927151e-06,7.032068368061148e-06,0.000785197498459604,7.639887587912863e-05,6.485786997841993e-06,0.000121968442144423,0.005001841873803256,0.000124464538938304,0.999967588076257,0.9997375716669822,0.8776361497312638,0.04049055807353028,2.016236309436852e-05,0.14001230758115654,7.373355188109617e-05,0.002813142609645141,0.00011796991747031013,2.560805785218864e-05,0.9946361393621345,0.0003594436020287987,1.6809946920741404e-05,5.2882083281881e-05,2.496201537831495e-06,5.605777780307156e-05,0.0006681969988777325,0.0008493873275150385,0.001572173684803823,0.02226784181709869,0.8904521390534963,0.00010083756776186457,0.9974085801963001,0.0045446315138973625,0.0134572642406336,0.20151123475304747,0.01416595741521799,0.04721663264921574,0.9840907358757187,0.8876255587427623,1.2105969859555102e-05,0.99996459709287,0.9858922462219801,8.277752944211225e-05,0.9997934504059326,2.2968502321631596e-06,2.088197966732123e-05,2.288393655349312e-06,4.2606362526928126e-05,0.0001722727135883714,0.15236741295998207,4.767734777534434e-06,8.098517786756548e-05,0.9864198118458837,0.9999854395539421,5.578946307135234e-05,0.0002628536159406274,0.0036514586268601348,6.476657157893258e-06,0.8436224245481262,1.8032209697216307e-05,0.022053117195191367,0.00022824942101581875,3.7915417136809664e-05,0.033332557246505516,0.00021824590001588598,0.999868589039279,5.172793519905478e-05,0.012784684702000828,0.029277907818661433,0.000217031662515541,0.00015227156148291145,0.00012096102372308247,0.6088109444987907,0.763148388171238,5.3517650943791866e-05,0.00027822925516688974,0.07921621605254621,0.008460896885211846,0.9893908077943082,0.009140745884585674,0.2871428644342057,0.9995802341978626,0.99491726471248,0.0010332548196155642,1.5589727542598777e-05,0.9940400831222808,0.05824330324065498,0.16783395171554819,0.8525107312910344,0.029752942803713683,0.9649710169161984,0.9520041695917408,5.345578949541007e-05,0.1018173701905676,9.779838193419806e-05,0.588292149188955,0.063871550143395,0.9666694602270199,0.9989420947185244,0.9999888407560913,0.06240112391924079,0.9983820848979804,0.9999479645210274,2.585778282401502e-06,0.9997467647678177,3.607627246681059e-05,0.9690837725424906,1.2898512362999532e-05,0.9999936552541575,9.891891626797183e-06,0.00033965170916748803,0.6251290209838072,0.7894950585679188,0.5244240055949769,0.7376383210298251,0.594594599934128,0.9999394222794448,0.9635772830100116,0.9998509309808428,0.9999681256768458,0.9721331285398693,0.9717849652475018,0.004531868710734739,0.9999996154632522,2.7762318123751983e-06,0.00015758051199703512,0.006705042921228774,1.5103221956482147e-05,0.9999987740708126,0.006075168337415414,1.2284250782965135e-05,0.9999739355304191,4.552055841630796e-07,0.9999557921692842,4.9819760530150404e-05,0.8436836142231244,6.931307946993023e-05,0.00016594613386081822,2.2104659639957164e-08,0.5261161254437523,8.938029364307847e-08,0.0017353265418610805,0.0001475255340279529,0.0003617069181697932,1.228381550742557e-05,0.9987694766194345,0.0018129744980524478,0.5781981717848205,3.675033215116593e-05,1.0109721284448078e-06,0.9999993012547868,0.9999996676566326,0.9998274358685715,0.9999998076669291,0.0037926159144374633,0.001088587857419482,2.4537098699782545e-05,2.721364965212592e-06,0.02899400677320289,3.6387608435151124e-07,3.0119388538577076e-05,0.00044254108826527564,0.9999999977209639,5.2335833588632665e-06,0.00011150173513242983,9.053306536599126e-07,0.0006453033009832556,0.9999854395539421,0.9987613353366447,0.9999531800579881,0.9980541374952427,0.00032055404615339666,7.320667628741259e-05,0.0001623578461932568,0.017894853213812834,0.00033543988848274136,6.539697971856239e-06 -cuadrado,object,1.760118280526569e-06,0.01088674429268301,0.9999452816767084,0.9998180094066558,0.9999530037206816,0.9998519241782844,0.9999851892788698,5.2927362026972555e-06,1.2509464423094737e-06,1.982450426847669e-05,0.004719487630784995,0.02378503205871875,0.005786964110617065,0.00011926257949433999,0.9481259440253679,0.2710684388880473,0.0034266386566892248,0.003691421541583627,9.830505886639805e-05,5.150547761620496e-07,8.062864002361354e-05,0.9895137376595899,0.9979408421809748,0.9995278697339557,0.9908820016700624,0.9982300060299522,0.0014862968765063417,0.9519627911975945,0.022349549602919128,0.9984670186595935,0.980356658245488,0.9998724318361233,0.013816604729744464,0.00014259256395174574,0.9983747836862453,0.126646128829451,2.1044713705103806e-06,3.520282671695137e-05,9.671568211267264e-08,7.986571053497303e-06,0.7076024749225485,0.020291710128028998,0.7522146355776039,0.9972034195978262,0.6140639788078034,0.9999781072187686,0.9996704830782351,0.9999767872687493,0.9998727837952601,0.00013730408447880965,0.9999860794164938,0.9999999102749003,1.952448399504184e-06,8.045840916089601e-05,3.3389241422702794e-06,0.0030365993919393383,0.0031701647620439497,0.004510945153934207,8.81136994128783e-05,0.05130489900678993,0.004561373789495157,1.8445948510198421e-06,0.02519760506163049,0.002272288754469209,0.9711937594776783,0.9965308550795252,0.8731513095164354,1.9793326258772427e-06,2.1471659994290933e-06,1.2635134426001958e-06,8.647858713003293e-05,0.3526882701206554,0.10293261667568773,2.6973906173416517e-05,0.04829780352326598,0.0039806423444973035,0.9996098953476965,0.9893344889823544,0.5649047415924,0.05364741372053761,1.138008399250328e-05,0.19380747546897742,1.9864376867213805e-05,0.0012740768127883894,2.8218708355789166e-05,8.827981555096854e-06,0.9409466296670461,9.65101917219294e-05,1.7864615400864884e-06,1.7323191681446035e-05,1.8199404733549567e-06,0.00010704933102791725,0.006057487359356958,0.004900939090414428,0.009719800705652986,0.02257894120431453,0.5818875586724249,0.0012570086225365648,0.9804782882844572,0.0018477022680443535,0.007643454899862317,0.0016058459179816458,0.0003044568828137305,0.9011046516125683,0.956935685552131,0.7624088092779149,1.596877570545658e-05,0.9986143541066,0.9042731736793924,2.341713384962488e-05,0.9984983252458117,0.009289681350758104,0.24658682866531287,6.417570366459002e-06,5.172871683465126e-05,0.00011209337438583907,0.0161292285023291,8.16286938748233e-06,4.636856892279807e-05,0.8763928102576857,0.99962616578302,2.0555466412002108e-05,0.00023512503184911897,0.8088870731563863,1.0673877824077279e-05,0.029181270181947872,1.919288561967992e-05,0.004196841737189346,0.00014737202533950293,2.427606887309682e-05,0.0005204816928790044,0.00017467832579462663,0.9985872915779092,1.6927969153099985e-05,0.0025064846421082925,0.0027257795856247577,1.8678679580133866e-05,1.0758396882556853e-05,0.00011131221524737217,0.9649862733141585,0.9950401257549653,0.00015412955161290577,4.50347996276067e-05,0.9822482969986198,5.5700764909151154e-05,0.5785605191169121,0.004421656139962922,0.15995208582000534,0.9956243053077546,0.9359682475761613,0.4272594513198405,3.926336785945259e-06,0.9815448369806998,0.027285939359376482,0.00789859853297526,0.47730120051616237,0.022769923223864796,0.9494580394247348,0.9528365424720707,6.194135001504483e-07,0.1750668872466471,4.334842135686601e-05,0.020313307979692167,0.0857778203441732,0.9480413711363597,0.9974384901859448,0.9999104286743777,0.012410698689142179,0.9852638189072892,0.9999999711683801,2.828791559346696e-06,0.9996197941084952,4.22107723944596e-06,0.8246836564941246,8.458518839753659e-07,0.9999467817950348,2.411822665697423e-05,0.7701323856135049,0.7145432271403809,0.8149781154360565,0.4771596411775197,0.0589981302799544,0.9896994304868909,0.9996690213848923,0.9399863643006529,0.9995617481675908,0.9999998382231354,0.9843532418537592,0.871247854191499,0.010288154089174995,0.9999929196977053,2.9476703464130856e-06,7.612894856099149e-06,0.0029851772878800023,2.1577465130467263e-06,0.9999841101697593,0.0015739290169376838,2.0506465339040657e-05,0.999864135531862,1.3845309257400002e-07,0.9999999470089319,7.649217243116604e-06,0.8274006750703252,4.325504955759224e-05,0.00011835646661289476,9.863915637047778e-09,0.01358533430667983,0.0002809888846595673,0.9303145170220082,1.8086361774993785e-05,0.00023458477645465313,6.348594477148581e-06,0.9974871902144041,0.0012727030534835093,0.5228239385633461,2.731039468893337e-05,1.3516907263356486e-06,0.999994780399206,0.9999918842149708,0.9969856380500826,0.9999884067477739,0.7002374211338377,0.00012229373331972226,0.00016199249639739315,2.3019014862078556e-06,0.0015905888354922743,4.589390943599504e-05,6.70843247401849e-06,0.0015088759337480314,0.9999999530477122,0.041807086824910876,1.9540529922991365e-05,0.015374314879724054,0.00010486741445142938,0.9996297589799723,0.9841981170689751,0.9994518018358556,0.9996285291463327,0.0001937228465135536,8.681364198516499e-06,7.541344244879566e-05,0.9883663808662598,0.00029641540341835077,9.131759440187697e-06 -cubo,rgb,0.999903836347656,0.999999999973272,4.042756373127414e-10,1.0,5.750847213816142e-09,0.9663225903265774,0.9906173081212059,0.9735384729207507,0.8829203619799151,0.554234854467478,7.810942369399559e-11,1.945669810717144e-10,1.3384635473395065e-10,0.9999999999865317,1.0,0.9999999999977944,1.574718637569138e-12,1.7629914686006317e-12,1.6280279313973687e-12,2.892181598405487e-09,3.3626424727095863e-12,3.6951397694419246e-11,0.9468491074576721,1.2031839775437228e-10,0.9584646179624623,3.4831553687443097e-12,0.9999998786746304,0.8936703887355841,0.9999999999757345,0.9999996513726411,0.9645123141620522,2.4602140228000993e-09,0.8973991471806545,0.002126903833588449,1.0,0.999999999992891,7.944727813698124e-10,9.594843383419509e-12,0.15933246032832069,0.21246626906652905,0.9999999999999998,0.9992571722963206,0.9389146901616799,0.9999999701323543,0.9999977277925112,1.6890814164188655e-09,3.2437163356059697e-09,3.8762532029287014e-10,0.9999982092780145,3.295879332360823e-06,0.9623068641872522,1.0,0.841833976500894,0.5998598309597402,0.9999999908026224,0.44061043775985415,7.828422663390694e-05,3.028090449820179e-05,1.81189424770495e-10,1.0520988047928568e-10,7.041268000985671e-11,4.517153297368245e-12,0.9999999999999589,0.9920184668803552,0.9999970782174389,3.49369716671755e-10,2.961872237363466e-12,0.8031828502855893,0.956894091850401,0.9260111398005477,0.748023943504465,1.0,0.9999999999999993,0.7701154714347904,0.9999999992699882,0.9979323710313882,3.3239076751534246e-12,1.6071893073591856e-10,4.0531816087594494e-11,1.480295960247706e-05,0.9999992125418266,3.52620218861251e-05,1.7284448432555864e-09,3.832906282187071e-06,0.9614119273791955,6.300990073397444e-10,0.999999999988685,7.81605772281282e-12,0.9808054280382261,0.999999225313805,0.9709159936463424,0.9999999999999996,0.00026987840305054696,2.6669198567500487e-05,9.509763934963734e-06,5.054989971944061e-06,0.9999999998353082,3.663423897813171e-06,5.00102028762255e-05,3.7752678747825308e-06,1.171347246911107e-06,0.6933408993133673,0.16576759324885904,1.0,1.070090295236598e-06,0.9683681534990638,0.9999714852401582,9.050578362618377e-11,6.087621810749699e-12,0.1307296749154936,1.879804299453727e-12,1.0,1.0,5.044060055487835e-10,1.1465476993521635e-10,1.0740641791959121e-10,0.018633023254791062,4.193132009624709e-10,1.8611267333768493e-10,3.865746706147946e-11,2.3045836523720337e-09,3.1764512780863535e-10,1.6592119947760478e-05,0.9999999999999989,5.334983670835506e-10,0.0004035200188603205,3.4697322529295655e-10,0.020582337277394818,7.668672100571824e-08,1.5297016469710928e-06,1.3172353684129646e-08,0.0001995395966476761,0.9740080446150662,0.7806338130447311,0.01183165045564312,2.0424956290711064e-12,1.6857858489738074e-12,1.7234081122947517e-12,6.495639574852334e-07,0.9999996392335782,1.0,0.9999999999997657,0.7260155145708741,0.9999999999999871,1.087351609433409e-08,9.702367950626761e-10,6.256560534691361e-07,5.327104356009684e-11,3.2208320740715892e-12,2.8073638768996254e-10,0.9999999999999978,7.010990181172669e-09,0.999999999974853,7.81793412265878e-11,0.9999999920640043,1.1877135498507268e-10,1.9090161372174926e-10,0.9957776478775804,0.9090048112627579,1.7970725873741474e-12,0.999851183842021,1.7082277498403616e-12,0.9999999999020417,0.9782382857874845,0.9910319105320283,0.9966287645468376,0.9739925350634953,1.5399125986278853e-10,1.0312268762748939e-10,1.0,4.331111363608692e-09,0.9616303959949035,8.027302810591091e-08,0.999999999999696,4.458688075453892e-09,0.9922916694385222,0.9999999999999998,1.0,0.9999585111826869,0.9951913434072941,0.9853934562113494,0.9999999999989608,1.0,0.9264764128559329,0.9678186042607889,0.9999999198162093,0.999999999977063,0.999999999887905,1.0296406287934858e-10,1.7113333058381728e-10,7.090507757249731e-11,2.623760488612858e-05,0.9999582462624288,5.922948657470747e-10,9.041037546609666e-07,0.9999990329954139,0.007695646582135168,2.891049313854342e-10,0.9266973382422022,0.5276789235943226,0.9999999999999971,6.901320416393516e-09,0.918983305507601,0.9999998131250206,3.66623088101879e-10,0.32387509499761225,0.9999999875742193,0.9999999999999998,1.0,0.9999975044273206,7.325207292241018e-07,1.6046780207749436e-11,0.9439351324106497,1.428853866994977e-10,0.9969891521437675,2.7619377949415904e-10,3.325403275455609e-10,0.9999999999999982,7.216364121692256e-10,4.097341085343415e-09,6.837155822507623e-09,0.999999999999992,0.7188256575437103,0.9728054574558731,1.8472788318371857e-12,1.908351992298318e-12,0.9999999999727971,1.970922937761685e-12,0.9999999999999987,2.2693445417841917e-09,1.0,7.842568634374749e-08,0.9999999999999984,0.21230970385684222,2.7445565656800465e-09,5.310284815440417e-10,3.907488412978862e-10,0.9999995357651449,4.420637447198069e-06,2.7685398688686216e-08,3.1082278849522594e-11,1.0,6.89395655980313e-11,1.1051205373214816e-10 -cubo,shape,7.479935124550387e-08,4.550227281995011e-05,0.9999992424603491,0.999018018323187,0.9999999488504194,0.9999893832065535,0.9999953318174143,1.2306576807006547e-05,2.118505405260555e-06,0.0001429918238554177,0.00010875674820962798,8.458039720600483e-05,0.00028295850972473826,9.410090654137859e-08,0.0015391476419687653,0.9597630867938706,0.00016092545639067213,0.0002037965767585886,9.671362653768829e-06,1.2131898294029005e-07,3.5995216997081505e-06,0.9995708635613606,0.9999559411733353,0.999998346419687,0.9987044436788619,0.999064486283143,0.001010355146699204,0.9743499592019991,0.9996052098718512,0.9999293013686689,0.9990755059294757,0.9999997958617942,0.4259746016020511,0.0001471105093729723,0.9028990985181881,0.5519824037676934,5.4557181802620555e-06,4.926157008465779e-05,6.608901878427668e-09,2.735406151928678e-08,0.011208226595611543,0.005523815155490462,0.9999332879218025,0.9999650740541352,0.9999048911605302,0.9999999720483203,0.9999997773747884,0.9999999860151663,0.9999958568274357,7.984626907869325e-05,0.9999999897416848,0.9999611836255271,1.0736615117673875e-05,0.0016112471776476656,1.7123932181544528e-07,0.41478564360905706,4.128747715078171e-06,0.0010309603940880166,4.5467888597988967e-08,0.09840808319419883,0.006012366989991327,5.563910848879956e-06,0.011745354985770574,3.193711074719988e-06,0.9984622361382758,0.9999418569830343,0.9969040614703798,6.2991755396269374e-06,9.893605441875284e-06,5.1878335331393675e-06,0.001095725846160742,0.00012864293320245286,1.7181996971212898e-07,9.630967488948507e-05,0.0022365566751918345,1.3607103052447759e-05,0.9999791827690757,0.9999339806983183,0.8102777565811925,0.6869972712118662,1.607624501431411e-05,0.008002534693991667,3.490614353275366e-05,1.449409600562129e-05,0.0006948623290226023,2.0940030476195077e-05,0.9999916876217031,0.00020414908411110262,1.9922624101185035e-06,2.895914873394353e-05,4.51911960676904e-06,1.155242253820405e-05,8.80272880883254e-06,0.00011602705751356271,3.386655777824765e-05,0.00014538730591089313,0.9998976398448967,4.45489047454188e-06,0.9863692767475878,0.0006898565120228168,0.21759359138728523,0.015364210525026826,0.0001481974009497348,0.006187246516874152,0.9542106368390959,0.9996127027653167,1.3347051161292531e-07,0.9999896306507609,0.9976414702282148,5.5881144009855055e-05,0.9999129760369413,9.572977603258288e-09,5.938636454681052e-05,5.435879566015115e-08,0.00016259951610868105,0.00010124757028747797,0.0008153287508634179,5.917696176678909e-07,3.1058993556709383e-06,0.9997846005834868,0.9999999393413858,8.771423975107758e-06,6.46228794645096e-05,0.2089018569431721,2.83249426076385e-06,0.00024873506109511484,1.0875508767246105e-06,0.0003405163743561356,3.591451909584718e-05,4.007433890251263e-06,0.00025436010614852386,0.00010434974269553951,0.9996297332468077,3.49016784527613e-05,0.00021643928573041892,7.422665025623147e-05,1.977374674303399e-05,0.0001911631326207984,5.223625809971395e-05,0.9979744308612172,0.9493756760888509,9.350423639260877e-05,0.0014496020176427975,0.03430073331203515,6.879963929090169e-05,0.9966003590585623,1.6041590749944782e-05,0.5181249422500946,0.9999004512795756,0.9935016231092203,0.0008211624239178129,6.572703715324803e-07,0.9999850482695405,0.07220027804858101,0.18428259046748569,0.7122294757554436,8.458039720600572e-05,0.9970064562712339,0.9289222195834019,7.206580252998085e-05,0.03240786458341683,2.497293323329326e-06,0.5024162420696224,0.06100099593081522,0.985147955277846,0.9992382924204614,0.9999981285099764,0.013303233077353009,0.9997215012067641,0.9998446516507906,9.039300638628667e-08,0.9999868978179404,3.5809707931000695e-05,0.9999704533277434,6.260172764396923e-05,0.9999940921635129,1.5381591094079804e-06,0.00016452462213226694,0.9085752304435495,0.7587937199354403,0.6844677901378557,0.6271960987349696,0.920073603109083,0.9999988031238142,0.9999864380786683,0.9999325621432366,0.999986020632547,0.989476321024639,0.9970466453646915,6.538279578495333e-05,0.9999998798703493,3.351649403264131e-06,0.00015877471956321187,0.0002697786658159587,3.448233971513435e-05,0.9999982981498419,0.0002781078987135212,3.372829600561001e-07,0.9999990883857265,5.607238880675853e-07,0.999968904801954,0.0001383763257446107,0.91825148768603,1.172910937013512e-05,0.00013989365018331982,4.689590066840804e-09,0.613391128399885,7.557258066270517e-09,0.0003663749151968065,3.0878935835757904e-05,4.144545834582243e-05,2.786867976156744e-06,0.9991665965878836,0.00026976271592367277,0.7421634885117145,8.744189968946253e-07,1.1447015757679806e-07,0.9999999855173889,0.9999999895816535,0.9999975741501216,0.9999999971550622,0.0007124870073485589,0.0027298935313756225,2.2491024082768727e-06,7.174533364494382e-08,2.7699055890308583e-05,2.400157141066485e-07,6.065146933205736e-08,0.0015533361701689902,0.9999999998672502,4.6196223676446455e-07,0.00019729480211038875,1.424239494514885e-08,0.0005648664740696386,0.9999999393413858,0.9999779041909197,0.9999985091455463,0.9999911656886118,0.00016559006922753374,0.0003416961553706723,0.00016061393690179718,0.0014702798737574845,0.0005383404815247701,3.5874221428650334e-05 -cubo,object,4.1975538617826816e-05,0.004391235323096645,0.9999723736871199,0.9999559922168179,0.9999837435664336,0.999797315217482,0.9999986848129072,8.009649029018684e-06,4.9285437405730154e-06,4.708268591183298e-05,0.0065523946945202,0.005375472715151027,0.01191473676802901,7.367793045100038e-05,0.9994434512805672,0.9801897569714606,4.5129657603368035e-05,1.7289727232315586e-05,3.5745144106610885e-05,1.0271613497000421e-07,9.463340700970156e-06,0.9966988362704581,0.9889478264547781,0.9999504248491266,0.9637773434465485,0.9985827904838566,0.003408400409385009,0.8095991947446294,0.999574171516125,0.9997719086357632,0.9205796973750904,0.9999720688389274,0.009302263774891135,0.00011690846203002028,0.999946436960004,0.5036540664605408,1.0998671105747597e-06,0.00013501466202268117,1.1450424137011286e-08,8.34752561627033e-07,0.993292283123845,0.006096314626512388,0.972151397587866,0.9999064823260483,0.9998626069231437,0.9999941428720949,0.9999534214305239,0.99999880620973,0.9999785644927192,6.373224811847462e-05,0.9999885001891581,0.9999999876672764,3.753977991253795e-06,5.4001858450821056e-05,0.0002983089941796109,0.0034514886188331214,0.0002279913242700988,0.000923967945099758,4.911872539722033e-05,0.28305669506480335,0.018068949382143203,3.7109505622677125e-06,0.4502802557250607,0.0007503108974723233,0.9766726730653025,0.999337090774188,0.9950343453425449,5.038820045535297e-06,3.1845471794912303e-06,4.026626602928156e-06,4.778688535897222e-05,0.9897375621676912,0.8452075024433252,1.1040500011939545e-05,0.017300772262540995,0.00427243285448511,0.9999017417273103,0.9994194058645941,0.8141979328018611,0.22990190459127982,0.00048008915672135074,0.06077289901798832,6.265585564497836e-05,0.00016518500804015482,3.781176098005436e-05,5.2292081574040234e-05,0.9999372265504117,0.0002060769543030673,7.0842005635398026e-06,0.0019318361247914813,1.8786431360851095e-06,0.02181397708311614,0.00028229891806858025,0.002387662494122745,0.0007762743005411828,0.002574739758230657,0.9999235140390265,0.0004729421648492163,0.8205868000582435,0.00036001984869543456,0.007063097832914113,0.011679494689719978,8.127827133508333e-06,0.989297968671293,0.8163457986573415,0.9266234615433138,0.000998440313485013,0.9998644223941069,0.9923187929967874,5.864469908271277e-06,0.9996627292184785,0.058008255177091086,0.9888902834305051,1.0603503807050658e-06,9.76708250445188e-05,7.456404345418955e-05,0.0004389765465833358,2.378397967157719e-06,3.8808907117699944e-05,0.9971564310688447,0.9999632600676296,5.659081640095753e-06,5.12939325313656e-05,0.9992800951772379,4.872708082795936e-06,9.411914989082338e-05,2.271807322079861e-06,0.0002075146548180825,5.290573781073052e-05,1.348719642655854e-05,7.787497285281361e-05,0.00010388110424472878,0.9838659765914416,8.427726755076408e-06,0.0001378344259879928,0.00010224077854512569,3.439933770531852e-05,6.329482837232722e-05,4.111116059428978e-05,0.9840779451167605,0.9997682112311471,0.05537775408890865,0.00010129205603874521,0.9996395863777533,1.2100548678357383e-05,0.2682456776409069,9.240430626811478e-05,0.6537535131056816,0.9993697250821209,0.9716338741780238,0.9964146904591563,7.075324783721647e-06,0.9999914902115902,0.20227980754265487,0.5488841836522312,0.7118976463266755,0.004821606447661216,0.9107289861334767,0.724094637868162,1.7302755491088314e-06,0.011886003258440272,1.6711351668389223e-05,0.6162754052445228,0.014707265305684522,0.8033512076337467,0.9853168274362865,0.9996123065939944,0.01220271898648553,0.9890741025359596,0.9999999972507445,5.2210834401690914e-06,0.999677549403798,1.4905547092493508e-05,0.9998605185864768,3.7035865187455516e-06,0.9999928727981029,0.00577633239364843,0.9978655059276835,0.46829572474958764,0.2977985957008031,0.20186333244814345,0.8516922129435666,0.9994902068646273,0.9995832439737508,0.9960612335200952,0.9998741697817813,0.999999987575715,0.95743119011365,0.9730412290131022,0.005935297191453545,0.9999771670017316,9.068814767261397e-06,0.00022182882510153956,0.0002968839260262133,6.00248471869491e-06,0.9999981917918321,0.00010681699005449999,1.393153749024981e-05,0.9997949367251269,7.021400469882696e-07,0.9999999924643536,2.4628913297802208e-05,0.48752201080425084,0.00035773561130995375,0.00011614300138017842,1.1559835334717863e-08,0.6879951006554837,0.03143597044632127,0.9995598535332607,0.00011716544083292224,9.228305949927437e-05,2.29619988938479e-05,0.9790311644637731,0.003698839070844144,0.14936659811757788,4.81303451550729e-06,1.138687895595283e-06,0.9999999876594942,0.9999966134957817,0.9996529967336419,0.9999979405186676,0.9957113107277036,9.726707809738505e-05,0.0001978734648730101,4.0965370427054657e-07,6.992381586606258e-05,3.0273463704401946e-05,6.469883973337848e-07,0.3593853965778197,0.9999999861746316,0.30236080468175314,6.136182915517834e-05,0.44243453628006446,2.575847803549369e-05,0.9999618304734843,0.9984776793167647,0.9999473461920914,0.9998379836713609,0.00019185876481738002,7.175460890554317e-05,0.00044940887578357597,0.9951637102038734,0.0004529740578569996,2.4264151723796795e-05 -delgada,rgb,3.5863991151027255e-14,4.937241238325342e-16,0.0012513884968747258,1.19563615343935e-43,2.394173673409746e-06,0.03439648155314279,3.796427589021374e-15,0.008036953352607207,0.03202046511705546,0.07156128401554507,0.8767764396791127,0.08085889714661029,0.20116580134739948,1.0244208471009091e-16,2.085976544432381e-48,8.201468501037693e-26,0.9890419675266277,0.9879176972478485,0.9918441309033673,0.9997877634532887,0.9983064957404041,0.4398302505808753,0.047569097474961956,0.004082506232785459,0.004800170186777701,0.02505540888363471,4.215541773162378e-17,0.011053182089928016,3.0589327595943927e-24,3.824971287145018e-14,0.03566925897733638,7.710148387416225e-05,0.07570203478162256,0.4271268827505711,4.54796725243936e-40,2.568994489249393e-25,0.9997712050532331,0.9715797736307943,0.41509510208562855,0.45942422296539187,9.664395421736345e-41,8.653165806318546e-11,0.05192047389180861,4.918741874751729e-16,1.6862289325900797e-19,0.0027704990148874416,8.153639232972364e-05,0.0013231115351162144,3.296554690169868e-19,0.9977946877434849,0.037295105514118326,4.3087801943715375e-41,0.03121879358621352,0.21497675585574677,5.913038582119799e-22,0.2922576647027177,0.038683919856239396,0.042119807804216335,0.11068985482586463,0.3861863844756138,0.8816189651763321,0.998110298706979,1.976190137873617e-27,5.042269564938042e-10,1.5647591664908928e-13,0.013123778384937763,0.07146495407740008,0.0302439752428448,0.011207624005928998,0.022141572867429196,0.14699079345961988,2.1768642844260186e-41,8.96024748593772e-40,0.02783741613596844,3.805026412991265e-13,3.8655903394898023e-10,0.026561010262264737,0.013773770507629818,0.29068678549586163,0.047920936729927505,3.3045452077516046e-16,0.07571171287957126,0.9983707788019606,0.069226010199634,0.011488608788320406,0.9982945882161516,1.0016601109122447e-24,0.9515553203874307,5.074328715296769e-11,3.978209263989403e-16,0.007805393759163434,4.995553906417055e-29,0.027047846766383162,0.023588404940668994,0.04892150614548631,0.058086626887428494,1.9190445306215673e-23,0.0699695965764181,0.060399394202116936,0.08837720193523292,0.1217260072935356,1.0365282478068183e-13,0.5101745380553235,1.1053248598022312e-42,0.08073820033380592,0.03282330276424483,1.677250887851195e-18,0.007420564425072254,0.010542403569696424,0.5568957480272138,0.2716822433743549,1.093380460176983e-41,3.016198188119706e-45,0.04594794549491293,0.5924191781770095,0.7968500843393073,0.3858778434667688,0.934975312181613,0.06834648637654,0.014588944977557063,6.686381510004413e-05,0.7684313382108938,0.9953334647451736,1.08704848335272e-39,0.09397532063864711,0.923795043979758,0.7130407420290243,0.43180232543466035,0.9996179940933607,0.990979838376602,0.9990770560960195,0.7885500998806383,0.028691036145949252,0.027996028092768285,0.4355442991365134,0.9973272399193183,0.9942919157581788,0.9935613267207479,0.9990606442858929,2.088325014576362e-14,2.271541741987295e-39,6.011869463004184e-26,0.1569321156561364,3.8960916440358027e-38,0.9997468252981486,0.9997430468877597,0.9955518793430488,0.17643806335714105,0.03886621380570672,0.005637760125803938,2.378149982539341e-39,0.9997398876792984,1.5356824120959391e-24,0.889153614419023,5.189821862521548e-22,0.3391061547560737,0.13271710629098696,0.00030533672892813597,0.0009926061962562205,0.9960487904734613,3.427741320406521e-05,0.995234117000597,2.3990715911375965e-25,0.0017931473868893458,0.0015372027856919836,0.0012869135013887317,0.0045392170087918595,0.23693247449627516,0.4219302738040185,2.1483178117257354e-42,0.9997963617437532,0.03775992155193358,0.9992594866167741,1.318506827360411e-26,0.9998178507193602,3.1370183580104038e-15,2.744516457392735e-29,7.905271220836005e-46,2.0983393004307654e-05,0.00040842221976241923,0.0011902298757975785,2.4441228698515258e-26,9.418590625848058e-40,0.059809670254443836,0.033216354700723164,1.1725641818527525e-20,1.0173560842100594e-33,5.496516331754814e-15,0.41659565012324135,0.14474057408252583,0.8973959586033798,0.7895671280786316,1.2932121177059035e-14,0.9997184782434791,0.9961828500068103,2.302876120497703e-19,0.5730998242571532,0.26629698578107586,0.05959160955392681,0.24959470836315,4.2467463312596144e-39,0.9997111136380726,0.014199806151095994,1.0750160568052793e-16,0.9082696982546293,0.37035094021774184,7.713691349402884e-22,1.0876698369106584e-40,7.952563509776999e-48,6.577048513804657e-16,0.9873155428561589,0.9750436127240185,0.005601388572154662,0.22083716384054136,0.0016898806488202078,0.5409068705940943,0.06310801582777895,1.1668619749790664e-28,0.001913954742665659,1.834572920711664e-05,1.6699169775472327e-05,2.0423729775711204e-38,0.16019372660466907,1.3576859085317284e-09,0.9885441003407631,0.9859081037776625,5.0623958856773585e-16,0.994453359848038,1.0322825581568419e-28,6.878321513933791e-05,4.9117322070640596e-43,0.9607853418613088,2.1400688975466315e-39,0.4615841491065071,7.320736651293612e-05,0.09026741220550284,0.02430523602239343,1.48068148613445e-14,0.9897576026155722,0.9995002092522475,0.916291773019265,1.3265944663615947e-38,0.9712229747728526,0.9415525939716727 -delgada,shape,3.0394794284383397e-05,2.391596089659136e-05,0.0006544582309188239,2.8864828923112066e-05,0.05194136426399888,1.6812207377347185e-05,3.283264124905737e-06,0.0002499563508537177,0.00018231673330608062,2.082108564256286e-05,0.007426703885593083,0.7833592622807479,0.02774316106550191,0.0003020727782474005,0.004914723576204083,5.455893833119689e-05,0.9999871675307136,0.9999562034119163,0.9999788823459134,0.9999775059520809,0.9999862442189756,2.5211365667702657e-06,0.000650791980425265,4.221041718430726e-07,1.6454357003502147e-06,3.47699973835881e-06,1.79339822431416e-05,3.3582067272945073e-06,5.1071962860591916e-05,1.5667657217323194e-05,1.5411372076422534e-05,0.00925406938524977,0.9793508726796304,4.736476736131265e-06,0.9216227519975067,0.6511874146335163,0.0014995324961672115,1.0532628204946094e-05,0.9756024758514196,0.7631111452791524,0.2573682877430694,0.16932514357973075,0.0005182745328536636,0.00037040008734433554,0.00037272278799685996,0.00012916741465451178,0.012733556061096258,0.0002985139042482684,4.024906208847449e-06,4.165256130672417e-06,6.986631569513544e-06,1.3418145286475764e-05,9.038214326570033e-06,0.4082400142738248,8.574524983228225e-05,0.5196285628141966,0.3815808396233317,0.005442235984573762,0.6653687808710245,7.605190012580059e-05,5.666813043223906e-06,0.9998795691964435,0.02415643136783901,7.863380539664277e-05,6.751789403452661e-06,9.022327183186379e-07,5.7633824492244365e-06,1.0599289803090662e-05,8.071062787432057e-05,0.00032096772991469034,0.9665512910967242,3.854364308958929e-05,0.0038513359874034056,2.2103869285430756e-05,1.0950075258221045e-05,0.00041549030495680777,4.262037876913065e-06,1.6638082908240676e-06,2.103397028357838e-06,0.004989237860362628,3.82704758743801e-05,0.03777842392526787,7.703520541207512e-06,0.09643524068245224,0.00010654807646836349,8.538553827729606e-05,3.165081914377491e-05,7.326616921809563e-06,0.00019330479540548317,8.112161846058453e-06,7.50430537873943e-05,3.863855217202507e-05,0.6345002969505746,0.15642526547098723,0.6272616776859614,0.1912168685641578,0.00021134854588627578,0.1600499206400784,0.001515330227062816,0.008334249450036713,0.0008707221303679751,0.9886671259136556,0.9996760690572313,0.991562954569551,0.024708885150461844,2.0454931014008168e-05,0.0004114750447495417,5.190005838668687e-07,1.6238303150235195e-06,0.9908938404290866,1.4148156726530966e-06,0.9440782939603948,3.804591490251836e-05,0.1544172267221447,0.0005898934875698951,0.017896109875185633,1.0153833576817429e-06,0.0025788054395150762,0.0002420720037230489,0.06227437924290558,0.014036188312336374,0.005908644719507104,3.2319103080475364e-06,0.05894390174049837,0.09063820523506574,3.6517856656072463e-06,0.012544910423705318,8.152386936003991e-07,3.4532851164096898e-06,1.7101574401656472e-06,6.953271062813011e-07,2.3435727569624913e-06,1.4664975178356068e-05,1.574641944645692e-05,1.4166803325579981e-06,0.9999528580849604,0.9999520759793648,0.9999085819248392,2.2012913585064467e-06,1.0031997421792153e-05,0.003461129738088217,0.03751737809736327,0.029581438578233702,0.00014198485162567547,0.0015378113563590942,6.337255206237903e-06,0.979471915193451,1.980489186683865e-06,2.544370303139399e-06,6.606283706712292e-07,0.0002678837121720893,0.0005688482686697855,5.275589233216703e-05,3.132223568138587e-05,0.0003200033926253784,0.00011583510309648403,0.7833592622807471,1.8498670998153305e-06,1.575955807855568e-05,0.9999613269957122,9.33547493737808e-06,0.9999569068455727,0.9329525818166948,3.014646177695349e-06,3.642194531231613e-06,1.4248789123282639e-06,1.2537372591611697e-06,0.0002924584460687155,1.5066651329059207e-05,2.1568145424289064e-06,0.12818126022790713,1.576450617067903e-05,0.000719129762905426,1.7300213287886712e-05,0.004010042597705484,2.2338766671716653e-06,7.035349946320345e-06,4.825180889072916e-06,1.4425175083982058e-05,1.4963148712830856e-06,2.521676240325403e-06,0.9580575739146554,0.0014785653579753397,0.00011092777621135029,2.4779628499986143e-05,4.854641455253365e-06,1.4811433322532094e-06,9.272078463446375e-06,3.028016424382788e-05,0.3152627670114814,1.5187613363794185e-05,5.7078081562083305e-05,0.0008594612448481606,0.8764664584337957,0.0007467011136812504,2.061614297377098e-06,3.6274976362985777e-06,0.028371019507760498,6.618353637541017e-06,0.08243373398538467,2.53806615638254e-06,0.00039271350403857443,3.018211844187614e-06,9.34024747293699e-06,0.01689256825683334,0.9703939565884477,0.0001792175166523142,0.9841933878423882,0.013049180070689632,7.09323875131003e-05,1.341533006892344e-06,8.230815211229234e-06,8.997084417753207e-07,3.745971973078628e-05,1.9654161139189776e-06,0.006366384349308535,0.0030255402903843777,0.0001910615257308862,0.0009329014928697136,0.04815835352765888,0.04396521118204196,7.109168666965568e-05,0.9501342940912257,0.00031736545351806664,0.9999887743642728,0.9999717758520867,7.691021652113738e-05,0.9999593109162426,0.00011815089286483587,0.0030745139150155816,0.24814858269814757,7.84986445024811e-05,0.00445321579220515,0.9298557965204294,0.014036188312336422,0.001634302813027,0.00017475404923381088,1.7716256237773696e-05,5.7933226130165255e-05,0.00015380226147756334,1.1430702811201693e-05,0.0005000647465007839,0.1266777630827168,0.0012422093743532994 -delgada,object,0.0001126765854690948,2.735337719225169e-05,0.009414084283087333,0.00018007458766200484,0.5050390012478602,1.6150274699403906e-06,4.5772545227241515e-06,0.00010297126559420875,9.311418223459154e-05,1.2210978252538584e-05,0.17655171976331976,0.9806447632566548,0.4687000960276969,0.00029669724606226384,0.08465475895511723,6.137687571652481e-05,0.9999826712440795,0.9999557444554774,0.9999868805842725,0.999918159604181,0.9999819083293807,1.835255341717361e-05,5.382076932861678e-05,7.3739784253978124e-06,3.972969900636815e-07,5.236987136317306e-05,8.260391319308534e-06,7.033925897224775e-07,2.9326952377520678e-05,1.076301006460203e-05,2.8267193927901166e-06,0.11733597419894876,0.666699740600223,2.333777529184488e-06,0.907890229396537,0.2880246217201181,0.003480143497881487,0.0001842534161377642,0.8470181400954367,0.3137870908133038,0.5730027429446354,0.053300387231947056,5.5151457935510774e-05,0.000213096960480885,0.0004372932230366906,0.002373973210017633,0.16468375354031167,0.007086353839790836,3.0191853990463364e-06,3.3448647695527834e-06,6.699774101141723e-07,8.005865462116597e-05,2.5622490096640857e-06,0.03144605280680897,0.00033999262573481954,0.1327024358052702,0.6003455174907104,0.03846469141561651,0.9720519041541426,0.0036423337513507123,0.0003922317736334648,0.9999091519265215,0.011986303581255736,0.0004915915399430165,9.724567783690595e-06,7.066115842313502e-06,7.556640998158454e-05,5.0902852894441295e-06,1.563405960493992e-05,0.000133774593595401,0.5333578158064661,0.0015708630163503551,0.111024185637342,4.446383373434996e-06,1.0368464606399187e-05,0.0014617860152948867,5.8192966479501845e-05,2.104622594112669e-05,1.9538154560158243e-05,0.006757949932033251,3.127549341002365e-05,0.0797949523590078,4.6517066129799704e-05,0.385213471398157,1.4117119021606209e-05,0.0004377345199606211,2.2813386134832523e-05,0.00013469192530724997,0.0004479108182036613,1.584338628782779e-05,1.3413745915337382e-05,3.9852818377919174e-05,0.7088969760949526,0.3122566268580759,0.8018900666174162,0.544328019281116,0.0001386008016546956,0.4046113669603794,0.0018981574188103858,0.05565489198646415,0.004033813125089104,0.9829303369205691,0.9875106128237809,0.9966137971717444,0.03489935013525328,3.1987872048312184e-06,0.002420156229679821,8.483780504735034e-06,4.9432176024649884e-05,0.8319763902109003,2.6937211236773194e-05,0.9908489451014594,0.0013537687720611082,0.7137803322161856,0.006791108010270009,0.0933665875913741,3.69221406448911e-07,0.052572706536636336,0.02288989044966697,0.31322678040285906,0.2143442042192111,0.0892993438292536,2.3213607168513906e-06,0.2773602419857085,0.4492223368851119,3.7789278240087756e-05,0.12431126056545667,3.4600333005150803e-07,5.689628431225561e-06,2.8361803882886414e-06,2.2942794214122042e-05,1.7141555488935233e-06,2.005428571536464e-06,3.797038162952818e-06,5.551196201170935e-07,0.9999640028970451,0.9999581284322233,0.9999143091969921,2.8169587938517854e-06,1.159933854705544e-05,0.011939960461408614,0.014554252419051466,0.004435456104317685,0.0032463257204567585,0.024829691052391564,3.1859635675702385e-05,0.9672004206988128,1.8788444171430116e-05,3.926324001656128e-05,8.185188222474943e-06,0.008153390477424673,0.0036249577544185388,3.981801348503735e-05,0.001746580039340259,0.00030982630973095554,0.005110225460077641,0.9795142552657615,3.855071385986928e-07,3.971287859224859e-06,0.999969760326702,1.3277131127828521e-06,0.9999620635099582,0.8075713172550879,7.785934763613165e-07,6.968261397803791e-07,2.3263247854680021e-07,2.2665500945300833e-07,0.010387512948690995,0.00016080191284254474,1.818866962906438e-05,0.28165239501018235,1.558584287346678e-06,0.0015819093296471842,1.29856467774249e-05,0.00744837329499147,4.297909103227322e-06,1.3177247673744404e-05,0.0002724237937536602,1.5055157741955923e-06,3.1288482997828406e-07,5.546058973890357e-07,0.6678561253114622,0.005942715823584218,1.0120282061926902e-05,4.03355053594213e-06,2.8364498268858755e-06,2.1802563048998053e-05,6.220103008173551e-06,0.0009308354477708182,0.8984975507249865,7.720215243920869e-05,5.2519511054192024e-05,0.0004260554530693502,0.8979399563983809,0.001160400380141079,2.0758108564390224e-06,1.2175288407551335e-06,0.37193665019976946,6.94915591582413e-07,0.02678033014033184,2.7807001677013105e-05,0.0008476303395655093,7.071027936459996e-07,5.316645286351352e-06,0.08059290793611582,0.7164681906797624,0.0003652863901749827,0.9965455945375856,0.17813699593016963,5.3517520271407624e-05,2.1222137612152506e-06,0.0001711472931824516,2.1893247787762897e-07,0.0028388457666850705,3.142627444287791e-07,0.107343013004247,0.0833040973905483,7.425143804741753e-05,0.01451748947927697,0.40223366489204254,0.40289074803787445,0.004940174007389981,0.4304545830973337,0.0013556291672535898,0.9999904765147474,0.9999779397254371,5.6251612084781576e-05,0.9999758212480504,0.00010006160201095141,0.06887722116343838,0.5986486428377052,0.0001328290990190359,0.1278857264562399,0.3567642757663225,0.2082075192710863,0.014149225293533404,0.0028946945400020506,1.4299389656219508e-05,5.08226856415724e-05,0.000225595806961527,0.000191889304913609,0.007792007667790723,0.21121077007681283,0.008601687810819143 -el,rgb,0.5852445359906998,1.0,1.0,1.0,1.0,0.7366812437246572,0.9999999791543368,1.3906651168079951e-09,2.9186473273447456e-09,9.04278296451002e-11,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999397549,0.9999999999954963,0.9999999997104141,0.9781824945115488,0.9890097940368148,0.9494264141573214,0.17410921179712022,0.9999998999173094,1.0,1.0,0.9990548903752478,0.9999999999999998,1.0,1.0,0.7411156874981212,1.0,0.3035569110103181,3.777284768146865e-14,1.0,1.0,0.999734907924879,0.4604982669628314,0.9999680167718329,0.10308432274037513,1.0,1.0,0.7932794107496204,1.0,0.9999999999999369,1.0,1.0,1.0,0.9999999999988334,1.0809831775412546e-08,0.6418674631361697,1.0,4.314474619428124e-10,0.026841201333112033,0.9999999999999998,0.4165590734436343,1.0,1.0,1.0,1.0,1.0,0.7968515891918532,1.0,1.0,1.0,0.996183406387541,0.9999999999999998,1.1610621580959243e-10,8.619740266923174e-10,3.4598440750112567e-09,0.08307523843380618,1.0,1.0,3.7163831035080574e-11,1.0,1.0,1.0,0.9999188091482745,0.9900884616687028,1.0,0.9897444694871983,1.0,3.763401326816383e-10,1.0,1.7340745384813739e-09,2.8561855306298405e-09,1.0,0.9223759917268848,9.287619839316118e-05,0.9827204924884044,7.536135465900593e-10,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999558265149,0.062302607106915646,1.0,1.0,0.8181696078717972,0.9999999999997466,0.999999775753256,1.0,0.02074393011338534,1.0,1.0,1.0,1.0,1.0,1.0,9.317541488568529e-13,1.0,1.0,1.0,1.0,1.0,2.1592799764399926e-08,1.0,1.0,0.9999999939276711,1.0,2.35731010836547e-12,6.781095575040433e-07,7.73487077831043e-13,0.9999999161049679,4.858553633397328e-14,0.7601298325854939,4.739575387625116e-11,6.171061367768521e-13,0.9999996513639938,0.9999999960749468,0.9999999994013613,9.751499671533957e-08,1.0,1.0,1.0,0.049465583755273705,1.0,0.7289166555484877,0.999901926746253,0.9999999939593114,0.9952468397375192,1.0,0.9999510486183545,1.0,2.950457089170272e-08,1.0,1.0,0.9999999999999998,1.0,1.0,1.0,1.0,0.9999997364579292,1.0,0.9999999380678354,1.0,1.0,1.0,0.9999999999999998,0.9999999999999998,1.0,1.0,1.0,1.7128624355902467e-07,0.643161439735172,4.886656977483198e-10,1.0,7.44726497635799e-07,0.9999999815355333,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.16108110485265698,0.819629503747065,0.9999999999999714,1.0,1.0,1.0,1.0,1.0,2.2194657028052366e-14,0.8337348347715184,0.9999850672373076,6.040598846652153e-12,0.9999999999984157,1.3901373705557774e-12,1.0,0.43693335284256535,0.00900246971037648,1.0,1.2847771676904954e-08,0.99999999999996,0.9943141939713536,1.0,0.022123979737714287,0.9999999999999998,1.0,1.0,0.9910938469997922,3.386445300572577e-13,0.03318583295724893,1.0,1.0,0.9999999999999809,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.04900680065344401,1.0,0.9999999999966345,0.999999999999303,1.0,0.999999999813691,1.0,1.0,1.0,1.1905750895980337e-12,1.0,0.03782704973846826,1.0,1.0,1.0,1.0,1.4668683890020066e-12,1.2826600041822552e-09,0.021710737536864862,1.0,1.0,1.0 -el,shape,0.9991189958849773,0.9999945849181963,0.9999987614261017,0.999955260620143,0.999995847640825,0.9999841757839979,0.9999995928677109,0.8567949082137531,0.9288658831304833,0.8906407695431577,0.9999914519163134,0.9998831933184785,0.9999996520189959,0.9999798423076078,0.9999955635086101,0.9998251885376317,0.9484301616445849,0.9910174621279894,0.999999446445754,0.999711349971968,0.9985217262286612,0.9999989670774554,0.9999994386140062,0.9999999974360889,0.9999999704461853,0.999999812095075,0.9999998863821233,0.9999990492076564,0.999985117160928,0.9999095014030309,0.9999985066869004,0.999991852309443,0.9997241904042174,0.9999889060664758,0.9998280819933154,0.9984981234807532,0.9995624979721127,0.9999907141324669,0.9998377847898577,0.00011703289304258133,0.9994642575505517,0.9996437876952627,0.9999672194229791,0.9998979570178974,0.9999963071168002,0.9999991866898499,0.9999978576456772,0.9999999870762548,0.9999999828523288,0.9998568333938378,0.9999999509061559,0.9999999969304683,0.9969811703247264,0.02124671111348991,0.9999653623608546,0.9998760409611099,0.9995944461296967,0.9999998254074071,0.9997089319714833,0.9999995920770482,0.9999999741766128,0.9998664813166408,0.9999999509093742,0.9999961377975185,0.9999954299829376,0.9999992893584445,0.9999682836925049,0.9120529170408226,0.8955581857968054,0.8080766034912379,1.1372345096493135e-05,0.9999696210671633,0.9999484830674249,0.9998752306110167,0.9999546318709157,0.9998842485938478,0.9999995121629601,0.9999986957860482,0.9999998540553741,0.9958039808175497,0.9991824071524906,0.9994560338563909,0.9929368525852633,0.9999188784082133,0.9985799466026787,0.8500236556804336,0.9999836176973262,0.9999857573212421,0.9998476223665989,0.9990784325559778,0.9897362717440678,0.9999903829698645,0.9999758156491898,0.9989374748919223,0.9999910609281176,0.999999325176991,0.9999890996781502,0.9999275434069613,0.9934842015861627,0.9999841806123698,0.9982965761508638,0.9999963795695814,0.5029797035322731,0.9998550939605134,0.8342186404027513,0.9999040422553853,0.9999229969177298,0.9999999948528295,0.9999999778295627,0.001350596287207362,0.9999992630146106,0.9995873921931993,0.9999794944088956,0.9999925332803097,0.9979083694891533,0.999640910091167,0.9999994936134637,0.999999069857295,0.9999998509104024,0.9999589984966403,0.9999959499129845,0.9998929596360762,0.9999982966685464,0.999837242426824,0.9998552029011942,0.9999999317633625,0.9999978466004307,0.9999998652205755,0.9999820066272724,0.9999762583265219,0.9999999988355446,0.9999964322517997,0.9999985375017579,0.9992279252054561,0.999999518884754,0.9739541200650679,0.0016184328790160467,0.7762466564594732,0.999989477065249,0.9999424790111475,0.9998837063450374,0.9999980062643536,7.78312695489031e-05,0.999348957472336,0.9999997017784578,0.9999878071551849,0.5516302235014783,0.9999985886898032,0.9999994240190062,0.9999996575584069,0.9996278832857581,0.9985887227372089,0.9999661092180719,0.9999999157961517,0.9654714064991348,0.9999992428114972,0.9998831933184785,0.9999993870076399,0.999999550932896,0.999917572560397,0.9999859800278885,0.9999564612759498,0.9988522024118243,0.9999880923680992,0.9999946564329352,0.9999998306219764,0.9999999952973453,0.9999983966570588,0.9999991922097627,0.9999995852657838,0.9747638215719531,0.9999743371206797,0.8372566977622187,0.9999913710068742,0.9299726103696982,0.9999995949012119,0.999988192624548,0.9999972428084309,0.9999706737981622,0.9999973781368666,0.9999991395274263,0.9995547284131497,0.9999707628390461,0.9999999097089419,0.9999327441908739,0.9999985815587085,0.9999999617612824,0.9999746705014408,0.9999990842673062,0.9999926880084954,0.9999999649821033,0.9996632218150189,0.9984012238812404,0.9910146304506042,0.6407900885191019,0.9999999716723954,0.9999962779776522,0.9999995286543274,0.9999998600242206,0.581202550289069,0.9999999503294026,0.7271389629040322,0.9999788788855617,0.9999976088809239,0.9995606998254484,0.964357541025656,0.9997177782782619,0.9995850943814392,0.9989649372625423,0.9994768322030313,0.999999269744901,0.9999273397162844,0.9999999919959112,0.999999817336099,0.9999922038840742,0.999992101703196,0.9999987100454031,0.9999965101121346,0.9999997194111637,0.9999961867100584,0.9999811748659622,0.9999985098140671,3.0501810300127142e-05,0.9933078081739138,0.9936978381693478,0.9948149544897626,0.9999680303746611,0.9960029907665727,0.9983176679691018,0.9999997351859728,0.999922220352747,0.9992387866894145,0.9998967108852628,6.38463657166761e-05,0.9999959499129845,0.9999973439571566,0.999998822537085,0.9999665763729777,0.9999523133956729,0.9816121214983486,0.9997083510558598,0.9999999994223758,0.9998914777033795,0.9991512579508594 -el,object,0.5999807527012444,0.9991368507412708,0.9999998431660819,0.9999999997890552,0.9999986256662231,0.9998588881159599,0.9999990846913314,0.1472887141568397,0.008028635239639021,0.22779875187401813,0.999850606328734,0.9999250527048312,0.9999975720550084,0.9997540120277703,0.9999999919980057,0.9641879016859556,0.980234682712231,0.98696647999572,0.9998481645971898,0.9996592498938061,0.9113334443079439,0.9999989690735097,0.999875574079154,0.9999999977287559,0.9999983944753883,0.9999999691371381,0.9996640427994179,0.9999931834140063,0.9990872925278025,0.9999986899522717,0.9991475289365743,0.9999927605588481,0.9994910110573485,0.9977391909188587,0.9999998393462599,0.9333414555319445,0.9999580758979838,0.9999806133393326,0.9699661967932606,8.112860433905012e-05,0.9999862082775522,0.998721653906849,0.9991641229713878,0.9999996199305036,0.9999610213488571,0.9999998677801801,0.9999990886249911,0.9999999974832265,0.9999991120095415,0.9984048960850842,0.9999981412367114,0.9999999999999205,0.8195368387576657,0.001923950890408608,0.9493830026813919,0.9998290567255159,0.9984047873088817,0.999995225892641,0.999891915391503,0.9999992402714789,0.9999995680830052,0.9602289913539741,0.9986984950669064,0.9999765138665815,0.9999984009057343,0.9999994768055509,0.9999920434166886,0.3515677314266983,0.2506101766097303,0.13410713063339447,8.537917914752001e-06,0.9999999920581432,0.9999992560711878,0.9882064391720914,0.9922011150075442,0.9989496772687865,0.9999999936588182,0.9999996495019466,0.9999994329334669,0.9997306951702153,0.9702392457234613,0.9967136219565954,0.9959321286421865,0.9998414907637132,0.9459209114466124,0.992499751351857,0.9941566127914814,0.9999583214107529,0.989459424012172,0.9651099549432038,0.49061493926239336,0.9701363501048952,0.9984951640424766,0.9952728501977758,0.9993433636419229,0.9999803225066004,0.9998807066127743,0.9991450291106224,0.9789940292644218,0.9999362506068951,0.9998820818283389,0.7245481669007361,0.01576326841175814,0.9999955114546167,0.9019259805961339,0.9982523045590038,0.7443696726946716,0.9999999977412362,0.9999999995680042,0.0002531067293009077,0.9999995527014185,0.9997201137300477,0.9999999959786663,0.999189812115687,0.9997045467216255,0.9977285223135277,0.9999601801373844,0.9952972190987712,0.9999930969311536,0.9999872186307464,0.9999994864911314,0.9990643077492171,0.9996317685641143,0.9999906489040067,0.9999499609409019,0.9994008207511413,0.9994235913799506,0.9999923935631151,0.9996238419033131,0.9983964089648835,0.9999999645790755,0.9995331817041051,0.9998785072179457,0.9323633470895185,0.9998296546202025,0.9558097270070818,0.4084760655925007,0.995463817847884,0.999694369614655,0.9999920916641051,0.9999999982827759,0.9961767368362251,3.569523499191985e-05,0.9999588401309252,0.9998052883603961,0.9987931275676591,0.6185840947263177,0.9999978977142401,0.9999999921865709,0.9999971660984969,0.9999934817541634,0.9421406472948157,0.9986126065600559,0.999998319066326,0.06144080491010589,0.9999989633386459,0.9999158769723605,0.999999127591361,0.9999966926491533,0.9982105060635779,0.999892826529702,0.9895250676227078,0.9851221510291527,0.999911778274842,0.9999816615146316,0.9999973538031315,0.999999909393213,0.9999988695562658,0.9999997974984184,0.999999999996533,0.42125917871802077,0.9997271484830104,0.8524455516853529,0.9981930530047829,0.8951066131666396,0.9999724978314781,0.9253532209608594,0.9999999647645094,0.9997784348735794,0.999996549725886,0.9999963212261964,0.6041742618068172,0.999999999225786,0.9999919414172934,0.9995489018981483,0.9999104726689967,0.9999999999976199,0.9998176607754743,0.9999991769450449,0.9999650330968741,0.9999999978206442,0.9854408920422619,0.9931811913593571,0.7622051834052734,0.6545483753394246,0.9999982411565087,0.9982365207740148,0.9988218319115814,0.9999961691763647,0.008315127687400654,0.9999999999903342,0.8866525166555371,0.9999602808560168,0.999353004900345,0.9977016863817441,0.010086466526709774,0.3542668976656462,0.9998444243763408,0.9999999498622604,0.972929908711776,0.9999838191603861,0.9999046390228307,0.9999997906103623,0.9999994907002947,0.999971547993827,0.9999916076886948,0.9999548106512308,0.9987174033993825,0.9999997836936606,0.9999980036521176,0.9999938858534785,0.999999977854368,1.1379292878085129e-05,0.9978043507585719,0.817858685988529,0.9335203380775811,0.9996476636617176,0.8335323303263167,0.057151431124907504,0.9999999310809856,0.999998946448087,0.9918577578837938,0.9999988427463901,5.2243704523748044e-05,0.999999472765285,0.9999963571823772,0.999999938746206,0.9999970526947997,0.9914153528430326,0.9456231740988318,0.999808582394234,0.9999999997572637,0.9990995149797517,0.9995341242882018 -en,rgb,0.941808960922461,0.7162611168963784,0.9925904845773551,0.9999945478790344,0.99688164652249,0.12133959664784105,0.988066137317674,0.1421774819483393,0.14935328416358015,0.1787822896195183,0.9614315546819782,0.9830384687395659,0.9800429828136726,0.7584822919279313,0.9999963573665259,0.992258982873113,0.9689344595256086,0.9691301259969892,0.9664219975969748,0.6773266392363596,0.940996331159655,0.9753382990645658,0.12398827910291509,0.9902924085142991,0.20893077261813134,0.9943945763459161,0.9406839594706078,0.2150145981741001,0.9898239972108643,0.8959101757268779,0.12179768796938631,0.9942229047866078,0.1304110009950153,0.3574232663020543,0.9999602808598994,0.9923548878386281,0.7456488802930651,0.9584863224309191,0.19100422810363363,0.16562143553514663,0.9999901250282766,0.8924482994632378,0.12680774189615568,0.9319693869953553,0.9915411997766604,0.9877580180626473,0.9937772970100258,0.9925629126884808,0.9895236493223939,0.38722503039326317,0.12204169636951649,0.9999908678107509,0.15960857610456194,0.14573602859967433,0.9915674857534063,0.15483122860316517,0.774864619958734,0.8087133171593396,0.9818965847026342,0.976572078671461,0.9618914193212718,0.9377569932885607,0.9916176312401698,0.9053374558434244,0.9105636791103872,0.9832683821351316,0.9927275106858734,0.16828401851103683,0.14718001126843758,0.14528258083342435,0.1395734968951668,0.9999922021501222,0.9999886655551987,0.1768363817740828,0.524285844500747,0.880608040319835,0.9942861826839305,0.9860515916857041,0.9782752419476913,0.8291222071620645,0.9387566406004594,0.7776525946348195,0.7699037577914869,0.8588076387595367,0.14353053194615759,0.8115079536536599,0.9905944107573385,0.9651306326526606,0.9140713254474747,0.9359893925272044,0.14543999236881472,0.9899400047923737,0.7368678598851036,0.8346546828784946,0.842846568998813,0.856374026618016,0.9901045775969165,0.8597669426274605,0.7734698937697584,0.8512129076125332,0.873742469787844,0.9897368505546127,0.16887639906624735,0.999993099634361,0.8876755957459272,0.12109731649828494,0.9921075023436166,0.9895876318104821,0.9949637851459014,0.1714253240458566,0.9908385213410316,0.9999920805429259,0.999995218912996,0.9818024098506883,0.9709906076260381,0.963988617267036,0.26087194921144635,0.934717498462441,0.9838998314011551,0.9921147913753614,0.9944910985001612,0.9560845182946537,0.34000345353671696,0.9999895225678643,0.9779676028676348,0.3510932793209557,0.9581186137269437,0.24912381381773238,0.5097386308676489,0.49831966022822666,0.6832347568485787,0.4025892765875778,0.11925403779424146,0.17476888936628723,0.27248906268781786,0.9538713596369891,0.9630712790001504,0.9641083879679293,0.4344516547283882,0.9094804786338408,0.9999585083651797,0.9877202605727654,0.14040071153645234,0.9999861172883987,0.6136187607003856,0.7425309984575684,0.5587062310220946,0.9799857490289533,0.9936720040344058,0.9870217886936845,0.9999890169457202,0.6211168047955354,0.991410255852267,0.9603378467916888,0.991527080243629,0.9770555086633259,0.9807839398653471,0.2314015409154317,0.32970619811369173,0.9587869150712176,0.18504502520637692,0.9610751807837894,0.9959942628141288,0.22416845224303034,0.19289713166566702,0.16260386429416232,0.19133319466068124,0.978388436564314,0.9758542805042573,0.9999928262237742,0.6361516866742583,0.12219677334262317,0.5362915564375892,0.9918981713539393,0.6302544138035931,0.9880302564206945,0.9893295225478459,0.9999944178798481,0.15691290793714077,0.2239168912056794,0.22488184419563673,0.9930210141427845,0.9999570157207823,0.12684548477613558,0.12124919587825804,0.989899394957104,0.9999734976332394,0.664559168370178,0.9759852376892479,0.9807962957444077,0.9603850932263417,0.5175591657656701,0.9438850464083868,0.768780210719117,0.4828758951047344,0.9888361652781815,0.2687332009573304,0.9742483852810307,0.1274990280210044,0.14828306517081596,0.9999882349116244,0.6266310603549271,0.1914326203663218,0.9339185005715788,0.9417570541800294,0.15777368094176003,0.9916498289261034,0.9999908975329573,0.9999962509397443,0.9450326586001924,0.5589110314447331,0.9515421648861535,0.21558968840275342,0.9791885813206423,0.14889515418306062,0.966484520905576,0.9820577389299526,0.9907735554655037,0.9907048764336823,0.9953649456008249,0.994919799038108,0.9999866642668314,0.14074285048362323,0.9101348869367435,0.968478627936137,0.9698395115201954,0.7158845695224257,0.961990859993551,0.9906553954134456,0.9944736590589482,0.9999753911992713,0.7341025715962327,0.9999884022464472,0.16477323620285375,0.994152040767768,0.9782164358001598,0.9852535204738645,0.9206187552400004,0.44492769611662547,0.5765105955609265,0.957096426467387,0.9999516219265862,0.9462168341655913,0.9497732239811825 -en,shape,0.9999575660163629,0.9999825287000974,0.9592183069520649,0.06485441633147589,0.9999989820045871,0.9306072922913581,0.15609530895327522,0.9999979562726211,0.9999998592657469,0.9999701037030302,0.9999942393878338,0.9999539383018846,0.9999978426172365,0.9999974815194878,0.9999982607472336,0.9999878929764704,0.9999999436088914,0.9999998275325526,0.9999998139108628,0.9999999991565209,0.9999999999906732,0.035992783107569974,0.9999908883428671,0.1944418495525076,0.007358877291905392,0.036360770561825025,0.4136140215265864,0.0010206480986243672,0.9996946273058848,0.999969050345337,0.9998829077429245,0.9916422036887235,0.9999997696606191,0.014038984431974436,0.9999792647356256,0.9999408388089328,0.9955632030629225,0.9997001249970504,0.9999999804684662,0.9999398115625415,0.9999832158407095,0.9995499247733013,0.9997801615624824,0.9999257419438531,0.9997185800039637,0.9987309060449705,0.9997120506059267,0.9999967934155045,0.08289726851399112,0.011429084141785003,0.8875553207198043,0.07815549701978051,0.9784385508621579,0.9999988081970939,0.9999845370297342,0.9999995831591889,0.9999602437045407,0.9999998497597583,0.9999854812482798,0.9999996957437494,0.9999997567504318,0.999999998333527,0.9999996533691007,0.9999871574116758,0.9999858545427833,0.0012838019078229392,0.2843424242431838,0.9998084299125515,0.9997607712270778,0.9999995710510253,0.9999999973201119,0.9999978942843397,0.9999882211772679,0.9685323965389447,0.9999826064096862,0.9999956115171329,0.13849796336959067,0.014495128862991206,0.000875554748132291,0.9999995229016723,0.9998979294748206,0.9999999413169766,0.9998902314573743,0.9999981447536506,0.9995188451319615,0.9999765011714085,0.9999914592752103,0.9960797745659061,0.9999983479971186,0.9999900697603741,0.9979440732666184,0.9999822643068594,0.9999943879324593,0.9999999543405548,0.9999978586570103,0.999972858551705,0.9997910932498614,0.9999997662598443,0.9999996437619699,0.999999757867376,0.9999998011266971,0.9999855394200059,0.9999990257419128,0.9999901740288731,0.9999997580990544,0.9999250481288933,0.9999906879913377,0.03972693063407901,0.0042209402180950215,0.9999993515037495,0.03796716836001704,0.9999969923914812,0.9999968015516686,0.9999989125945817,0.9999366351646078,0.9980106257901984,4.958579915931976e-06,0.9999997735262716,0.9999999501311827,0.9999231134311285,0.9999998981703037,0.999999867155429,0.026501803954601482,0.9999909130472169,0.9999985223432125,0.9999647333418369,0.999992236402767,5.696132888866996e-05,0.0318421098999927,0.006749987903475141,0.998622510584033,0.05164721304913183,0.9991601570867131,0.9608770823443196,3.7139415239125824e-05,0.9999999999648854,0.9999999746114909,0.9999999945428415,0.08673126571346566,0.9999898030086416,0.9999762917139494,0.9999787233896485,0.9999999849383421,0.9988683850043623,0.9999999450757983,0.36149133433860764,0.9999874686192136,0.004042643215812452,0.0004313364080861826,0.009770002477719043,0.9999623926549043,0.9999990678334282,0.9999836338290855,0.9999997147788272,0.9999968282798396,0.9999996234130558,0.9999539383018846,0.002050229612677947,0.010772448162161805,0.9999999991419097,9.212543246887103e-05,0.999999999920004,0.999983377181935,2.304235620141221e-05,6.903431579615632e-05,0.00016947203464074217,0.013990661767816425,0.9999996818935827,0.9991846887786338,0.017773917772574935,0.9999998701398449,0.9714224098025387,0.9999986284558271,0.9999946594427113,0.9999994067109794,0.8404375191869696,0.9999935893067126,0.9999816367649793,0.0006603313483209376,1.1431979178034952e-05,4.928164001563688e-05,0.9999554175963068,0.999973086549271,0.9999896497088432,0.9999716345032165,0.05596537366584011,0.1786678654323255,0.9999957062542337,0.9999988161125652,0.9999818176846487,0.5098055956215644,0.9996825244504706,0.9892928932164543,0.9999995485454773,0.999999930556165,0.6961102380787407,3.438624109434103e-05,0.9998451075268616,0.4446701029470036,0.9999999960061516,0.661556729163134,0.9999992974386616,0.0006040746476018136,0.6953519606225329,0.9999700468633151,0.999999317219655,0.9999885857403304,0.9999997359016413,0.9999999809602583,0.9976500767719828,0.0002020445496540363,0.9994206258103293,0.00015397688162471632,0.999999839810665,0.0013655238035135762,0.9999964812253397,0.9999988679706734,0.9999915812496072,0.9977229821121097,0.9993477946193882,0.9999994698338286,0.9999980368872667,0.9999999839736087,0.9999608742964503,0.9999999989333928,0.9999999999883453,0.999997134725144,0.9999992583557948,0.9999982703187145,0.9999501068479906,0.9999984118136341,0.9996410039263043,0.9999771000663369,0.9999998591054259,0.9999998981703037,0.9980075948297307,0.9999799039878983,0.9999624630614725,0.9886797218867048,0.999697613598155,0.9997760000811377,0.9999771585592916,0.9998381224337343,0.9998090717213184 -en,object,0.9999947661324461,0.9990231748461172,0.9996016981915995,0.16272802215584597,0.9999999901669502,0.8507801703839625,0.9745885469073887,0.9999946043903853,0.9999976577073567,0.9999224955465642,0.9999999406724789,0.9999999597246264,0.9999999803801883,0.999902066805663,0.9999997738588585,0.9999998266846192,0.9999999984161152,0.9999999922283057,0.9999999982646837,0.9999999997577136,0.9999999999959865,0.8847812685385569,0.9999924293636807,0.9783864300659489,0.006462660791864838,0.9087500960434005,0.8478756252028388,0.0007836520044472668,0.9997982976979921,0.9999212937359859,0.9998074919943974,0.9999000109242872,0.9999992453128141,0.016676984589359626,0.9999830052151062,0.9999984800062891,0.9974403130606069,0.9999800585265624,0.9999998774192665,0.9999051670822541,0.9999975676623233,0.9992039316595273,0.9995204182506342,0.999689138375671,0.9999888907399581,0.9999668898871146,0.9999946274173775,0.9999999698044406,0.9631788475577103,0.014515980497981026,0.9307200575295584,0.6972699828764995,0.830792297517628,0.9999952309159084,0.9999940178752147,0.9999994970025315,0.9999984188827425,0.9999999178819586,0.9999999303936178,0.9999999755586194,0.9999999669884452,0.9999999998157694,0.9999999939817044,0.9999062105102542,0.9999357182668807,0.27177460961584105,0.9804695096679236,0.9990028620153034,0.9980987253740874,0.9999969319846291,0.999999987513215,0.999999538290461,0.9999972051854645,0.8136393042464173,0.9993101672523484,0.9999680093737926,0.9726409624514943,0.7942442334002819,0.12137335293844449,0.9999994076446019,0.9999737858631426,0.9999999730134833,0.9999692138901005,0.9999997219191997,0.9933269446065108,0.9999959208971723,0.999999892947654,0.9995421497550517,0.9999994902963767,0.999998669442524,0.9829756101665642,0.999998401921199,0.99999926348231,0.9999999797252976,0.9999997970356101,0.9999996012951191,0.9999880761875101,0.9999999512452588,0.9999991197331201,0.9999998713475792,0.9999998260177697,0.9999997784571588,0.9999974702288574,0.9999980938264548,0.9999996795019505,0.9998690192669223,0.9999984797563878,0.8547810911869602,0.27705053080551534,0.999999251837784,0.934143041004478,0.9999947375683261,0.9999990826162417,0.9999990716985143,0.9999523063453439,0.9995524278826876,8.734054783413874e-06,0.9999996279602438,0.9999999618478169,0.9999984063209609,0.9999999984605477,0.9999997785709205,0.021689401119934473,0.999998544009979,0.9999988996483182,0.9996827749091733,0.9999923469766664,5.252930213686242e-05,0.05613281374147436,0.018256166917853936,0.9994780581275353,0.07501930632128627,0.999230388670658,0.8541391567533154,3.98860854706028e-05,0.9999999999970799,0.9999999995444451,0.9999999997911717,0.11836599408442913,0.999966508539928,0.9999715161698379,0.9999994025995732,0.9999996329843704,0.9995930580830904,0.9999998905942256,0.6024952749058682,0.9999996369982088,0.3581568678497504,0.13106258914448754,0.7254788721313452,0.9998853332630622,0.9999993560222059,0.9999998500661629,0.9999999734920009,0.9999994442997931,0.9999999816893569,0.9999999569235524,0.0008003242529336897,0.0056368249705591395,0.9999999998870139,4.6038365168371014e-05,0.9999999999787366,0.99999977143977,1.5627173292697295e-05,7.455298333179552e-05,0.000146689649251472,0.011218575894447403,0.9999999646131231,0.9999595154400329,0.30080121495164247,0.9999999750620745,0.9109863634805349,0.9999992979339503,0.9999999150500632,0.9999992586764217,0.9995403433043133,0.9999990002841495,0.9999861141295571,0.00041029133269896806,1.2470749061689648e-05,2.3377767697655144e-05,0.9999979732666884,0.9999369273413454,0.9999905023273038,0.9999536857400909,0.9325164486904057,0.9262457323688735,0.9999238351379477,0.9999999517397898,0.9999999624821395,0.9919796690722237,0.9996116805575381,0.9963612938928517,0.9999998226678916,0.9999998852705249,0.9984922463587342,4.00032652196307e-05,0.9999552883696867,0.4297076103578741,0.9999998507580027,0.9922424812669293,0.9999994938057128,0.0011266801171836741,0.9006992956765393,0.9999768397404185,0.999986562324169,0.9999983352869971,0.9999998246603478,0.9999999966395381,0.9995580605507256,0.0014878039423011746,0.9999399443723582,0.0001904691528395403,0.9999999812786732,0.0006307023453828674,0.9999984085321995,0.9999980706891433,0.9999999472527196,0.999986060351625,0.9999897702572413,0.9999999909433271,0.9999990801657742,0.9999999323683207,0.999649552822795,0.999999999873245,0.9999999999956803,0.9996560324499292,0.9999999822935742,0.9999998182526493,0.9999999352690236,0.9999983296627215,0.9996966000420424,0.999992066219493,0.9999995642984185,0.9999999983641279,0.9998951956220333,0.9999990737567919,0.9999287426459081,0.9934541963044505,0.9993356580039384,0.9999882729054806,0.9999940385949356,0.9999254021172653,0.9997802102845437 -espiga,rgb,5.6011498994612444e-33,0.9999999999798428,0.9999999673524471,1.0,0.9999999999328728,1.1759215812048723e-16,3.919421509918409e-29,1.6395770233391872e-23,2.0917612749624082e-22,8.693532184198567e-23,0.9984399757895233,0.9999977924748575,0.9999900777798758,0.9999999999977576,1.0,2.33448023807008e-36,0.0004684898271413344,0.0021506148601654934,0.0002510361743237955,9.099055366184037e-08,2.3499917072773e-08,1.0170252860284138e-12,3.701345233571044e-17,4.2161521977267885e-12,2.3855102269141455e-07,0.20814671615921254,2.2289574271009327e-35,1.5360676459092528e-07,4.978438353978718e-36,0.9999999999999789,1.2634600434678052e-16,0.9999999992887179,1.2493457104545145e-16,2.7473959537738e-23,1.0,5.7308172340918496e-36,1.7127743294000514e-06,2.3902536041736034e-11,4.876298424028301e-12,1.8536080561155386e-15,1.0,0.9999999999990783,2.7656507324555804e-16,0.9999999999999998,8.4497311303548e-32,0.9999999873412092,0.9999999994684237,0.9999999642513628,3.013415294675366e-32,1.005411055354978e-15,1.0015566951393756e-16,1.0,6.185953621190573e-23,1.3157595228781387e-16,9.271171823971583e-34,2.0082196904370055e-15,0.9998045691322361,0.9999356364096563,0.9999965877348149,0.9999629381332674,0.9981951251065697,2.5937909257642225e-09,1.0457222786187423e-37,0.999999999998914,0.9999999999999856,1.9062402876476164e-14,0.0001812614582955626,2.637925219217238e-23,2.008463812777271e-23,1.3222062288214714e-22,1.4014123797054877e-16,1.0,1.0,1.1627819229860505e-23,0.9999997711709139,0.9999999999960776,0.020481004788539654,2.711172130146742e-13,1.2538284183267229e-12,0.9999648065223791,9.251653474600004e-35,0.9996311240566569,4.872516062377455e-16,0.9999823912650206,3.205381412985921e-23,1.9460108953836476e-15,3.764998882342463e-36,6.473692293761785e-11,3.2766780008424502e-31,8.379555829321146e-35,1.0771180164710728e-23,2.924438633572993e-39,0.9994969301810336,0.9999865672607856,0.9999783883771496,0.9999842565244078,2.2871132130513826e-35,0.9999828063869322,0.9996687467732156,0.999968586854476,0.9999798576197161,3.1755473912642042e-27,1.7746218735969875e-15,1.0,0.9999930422067049,1.4853177422526456e-16,1.0028199225888467e-30,5.746401496116806e-12,0.9799260504646308,1.1302565798425798e-15,0.01022689921278393,1.0,1.0,0.9999994751373412,0.9998946129469453,0.9995140635326591,1.2806556348142303e-22,0.9966128108028427,0.9999980842259866,0.9999924100801877,0.9999999992797122,0.9997691928906423,4.67482279802412e-16,1.0,0.9999987672672652,1.1888280690169179e-07,0.9998613233701421,2.949432382720986e-22,2.4431362413280157e-13,3.703727714004695e-19,3.340752790172558e-05,3.719573907026203e-22,9.601120567921723e-17,1.3591949237579156e-23,1.3709712138291298e-22,1.1004780850529364e-05,7.472833912353426e-05,0.00021337373342285106,1.5966388270184728e-14,0.9999999999999933,1.0,9.487238754412135e-38,1.1022224942060936e-16,1.0,9.807704296444688e-09,2.7148853519419976e-06,1.3456755699126072e-05,8.289563982658483e-13,0.0010253012575999897,1.062904420778933e-13,1.0,7.470803391321425e-14,9.420540123988973e-36,0.9980962667166682,8.098677827213692e-34,0.9999741911142608,0.9999959144225128,3.0418992243212405e-05,0.005829833291289891,8.00824913130164e-06,3.5526961983581898e-06,1.6006471539830673e-05,5.670074678356531e-34,2.901844914313056e-06,1.776585972649437e-07,5.926582511198891e-09,4.108730348418467e-08,0.9999888220525336,0.9999544754260377,1.0,3.421426613231037e-13,1.0249638339449347e-16,9.59716964736025e-16,4.792173776596025e-37,1.0173390148760707e-12,3.2087535312192563e-29,1.3939265923441118e-39,1.0,2.3575030285847632e-07,1.2619778849145e-05,4.732446210425349e-06,2.0007659498906856e-36,1.0,5.0245882527253436e-17,1.522893643885745e-16,2.6556949076555214e-33,1.0,0.9999999996841602,0.9999556678477172,0.9999949571272607,0.9976523466224566,2.9929181075479915e-22,2.9553829320197454e-33,8.666413518993852e-06,4.671445195122978e-18,1.4178569807343573e-32,5.088312262581448e-22,0.9999913678136847,1.2289083068287237e-16,8.649787583315587e-17,1.0,3.81688284201692e-14,9.010124957453554e-09,2.5417768798408895e-35,0.998369784992816,3.70357238902644e-16,1.2228257343486706e-33,1.0,1.0,2.9390212354935263e-34,1.530048809713236e-19,3.3469326422671203e-12,3.746810849671671e-07,0.9999892879484793,5.451465596784697e-10,0.9999536296032302,0.9999989630580691,8.645295990535674e-39,0.9999999795106094,0.9999999998029989,0.9999999998980489,1.0,1.136670416483511e-16,0.999999999998596,0.0027656983285017232,0.0057459364198978605,0.9999999999793789,0.0005411465603456187,7.373040776932163e-39,0.999999999255716,1.0,1.0232202199098885e-19,1.0,9.39359130945775e-16,0.99999999939237,0.9999988287673702,0.9999996744727528,0.9999999999999976,4.0829367952536767e-19,3.471918765438658e-15,4.3283961402552944e-13,1.0,0.9722382724254108,0.9945359597723732 -espiga,shape,0.0011963244565344354,0.015346717874142955,9.780200390608764e-06,9.185492129852081e-07,0.051616205172937246,1.5681565403533777e-07,4.347767734229233e-06,0.0002801512113064704,3.323590768468263e-05,0.00019245994413433467,0.9999611498449031,0.9999898569142109,0.9999994977612132,0.00846480943781845,0.967269536731235,0.6483949172912931,4.3366221589449657e-07,1.1291464904647461e-05,0.9730343334781185,0.30327712571649007,7.980332359627569e-05,7.475676050035017e-07,0.9505632584574536,3.706496794187308e-05,1.6616372067422499e-06,7.67194380183523e-07,0.005729533623603934,1.153351723372827e-07,1.484770224433884e-06,0.49593116862243525,0.5757647670060476,9.726209166623231e-05,4.650187916683473e-09,9.688083519555065e-06,2.3847591568806857e-09,8.06470699324079e-09,1.3205153383785478e-06,0.0996212227566204,1.8668678950797674e-06,0.00020957383327433016,6.945224741801476e-07,2.059058550213729e-07,7.015064053712197e-09,7.507018729941872e-09,4.0376577449959275e-09,0.0006968213396318152,4.731633470676551e-05,0.8640009328314778,0.00033367127058365754,1.584176149341806e-06,0.005649299075853944,0.002256490835325391,9.464802483395616e-05,2.1151233901820288e-07,6.703192821778142e-05,1.2660128738259647e-09,0.9996862178051573,0.9999928517981669,0.9999691305304078,0.9999907927223005,0.9997754794737937,0.993068686551797,0.12292823024784438,0.2670770609702265,0.834583967923975,3.879941284897177e-07,1.983557819412721e-07,1.9820545439464177e-05,9.894811563066943e-06,5.722196788264356e-05,3.378161409175724e-06,0.025419098285880428,0.18751331522161752,0.0001998806005012864,0.1324736077067031,0.6385253372988038,4.700842583172227e-07,1.5770755102407547e-07,1.0550492794277974e-07,0.30937201419065175,0.002337258311377974,0.25192036058731676,0.0014057391394842252,0.9988526749309956,6.650785550335077e-05,0.00020239409112986624,0.9974838852565079,0.45112815567479997,0.20640491563199917,0.007685763339847862,3.7319041716428482e-06,0.0839095306759986,0.9909651348185301,0.9918726318050275,0.9966303356440437,0.9999994225819583,4.733062253831203e-09,0.9979190121803728,2.1497112035129755e-06,0.9942664785919202,0.7479721589574949,1.4174536651891073e-07,1.9961140273856977e-07,7.151486125436518e-07,6.407392071383537e-07,0.37663997968431506,0.0001367606557909592,1.5233190455475842e-06,2.4755500242167033e-06,1.8260976359264948e-07,2.1756399503442036e-05,1.6710618524250865e-06,0.004165378894114181,2.231570427187778e-06,8.61737977954258e-06,2.336636232366061e-09,8.036867510144468e-07,2.2867591957449153e-05,0.004793027787268356,0.0011729618565631836,0.9282696371574181,4.867118640737281e-06,1.9410845617072725e-05,1.1777993923223694e-07,1.0494910640287838e-05,0.999989736305117,1.0186615576883776e-06,2.0018145280303477e-05,2.852503477847023e-06,8.595302314740738e-07,0.9734014787603367,3.2486089140534716e-05,0.00011868046634668151,4.168742111090951e-05,5.3536757274036106e-08,0.01404840802271594,1.4779187495850264e-06,0.001737311200254389,3.983069312540718e-05,0.9345732148822133,6.300872030867016e-08,0.011405091575850106,2.5458882433070912e-06,5.320024733802629e-05,0.9999970388495024,0.1008787413815333,0.9834041208086484,1.4525521439473347e-07,3.047485571755828e-07,8.202171430096285e-07,0.00047403429809027503,0.14066472128160798,0.964271010778141,0.9999608875457905,7.405943534571792e-07,0.9999993193874872,0.9999898569142109,6.104675124873592e-07,2.420915115373706e-08,0.7952606071865754,7.959579644924366e-09,0.05554786631611931,2.163191376776266e-09,3.0220393068092944e-08,4.02131575343746e-08,4.849342334115349e-07,0.0001817423901219737,0.9999681166223457,0.9996938320557727,6.967158339168544e-06,0.1846275306490415,1.61549622198952e-07,0.0010124329969712778,0.9979746895129582,0.0012018028526799695,0.0002276044387183847,0.004093648432603644,0.014668066118019787,2.377973164600618e-08,1.4508539353211232e-07,2.586899146235344e-08,4.442172643653808e-10,7.834032691796999e-08,0.9009863507060376,0.1465436407823942,7.707586932639088e-05,2.62350942450853e-05,0.9995105616348596,0.9999429824522791,0.9999908710250893,0.9996145377294329,0.000458241566204192,9.028190458365757e-05,2.6560418770927772e-05,0.0012833174135912192,0.0006805967053644007,8.894888122013767e-08,4.508413196454081e-05,0.0007557919959757322,7.137253844055128e-06,0.0005720864404204286,0.0003413201598585365,3.26383483119852e-06,0.05027640016667079,6.972567581161226e-06,1.2869737712104266e-08,5.678901562218984e-06,4.278020228455027e-07,0.9710249326830752,0.004124852415616524,1.7050262131210386e-06,0.02110479428919649,2.95891214790775e-05,0.9999797082952585,8.26283728620954e-06,7.949418884957847e-05,9.457187780119743e-07,0.0709889059164832,0.0014694766521229454,2.1081043792688135e-05,0.0011629830438178192,0.17432981359810643,3.4853642431542266e-06,0.00089227424679666,0.41508666365596986,4.866668948357098e-05,6.556395635152226e-05,0.30608326690881527,0.0005336826228531406,0.8187727966352714,1.0221723548052921e-05,0.0013827936529243222,0.08835103354702438,2.55088260614143e-06,0.9282696371574192,0.0008077240693117566,0.021174171169596738,0.995221446181146,5.872391172971687e-06,0.0005026241795008287,0.04713252181811259,0.6412195776221653,7.560489100246665e-09,1.4792425506987585e-05 -espiga,object,2.4776415026096865e-06,0.9970218859097675,0.01463863871897612,0.9997570350671288,0.9637502046312388,5.798833234584239e-07,1.9349786718598016e-07,4.45367009473154e-05,1.1425964264443966e-05,3.366290986696028e-05,0.9999659559328922,0.9999911200348615,0.999998080313585,0.9948986396609956,0.9999999988716928,0.0001045526495686294,0.00029505457431198425,0.0018651445233986755,0.9952005456288074,0.8795828942755388,0.04078550675239814,1.0251602980637872e-05,0.06976529186029078,9.455486903814921e-05,2.1451302561330345e-05,0.0009843084500697954,1.6032554457539053e-06,5.199807225608919e-06,1.6530294966856044e-09,0.9996447947105934,0.012890717109337351,0.057891440229487875,6.421161296577142e-08,1.3145190032959415e-06,0.8925458885335787,1.460005971627672e-11,0.0007067374962230452,0.15825947064290713,0.0009188923301537527,0.0016620745684726146,0.9974162820056363,0.020094747445009317,2.5314155367373238e-08,0.016710221985730557,2.1851990459612705e-10,0.6407178856428807,0.09356954728457771,0.996304901920965,5.213004605831255e-07,7.53690440856101e-06,0.0001951524929827885,0.9999969907536177,6.79859267118156e-06,2.8810150328087855e-07,1.217712193263987e-06,1.1535106437035413e-08,0.9997838203242224,0.9999951573328346,0.9999846165037682,0.9999889216491328,0.999909881372011,0.9924518754618894,1.9988792867405637e-05,0.9996808989739887,0.9999427560787139,1.6931885835227285e-06,7.271971959482231e-05,4.430081087442245e-06,2.511831933459994e-06,2.2594296439901913e-05,1.221576392515721e-06,0.9999998200143416,0.9999999104335551,1.8106900237605916e-05,0.9939746118388977,0.9996193735105214,0.0008932129100425753,1.8250713310051552e-06,2.258998414949902e-06,0.9934596519401899,1.157912749279536e-06,0.9911677090109952,0.00215186877112217,0.9999369550836011,8.703334458015477e-06,0.0010360916865195275,0.0012998309769660422,0.4000677428194189,0.0004272335689674445,2.579166904615676e-06,1.2510183598183246e-06,1.6773922873680095e-06,0.9992719193322328,0.9995702754434622,0.9997646465951635,0.99999540480156,5.3272336961267474e-11,0.9997696691523398,0.041294882934681566,0.9999057943297535,0.9994659673490933,6.650592541680813e-09,3.4655699640605395e-07,0.9970881192975253,0.05406685835785212,0.010777712153820259,1.3236028794991827e-05,1.3576569857412458e-05,0.005598362927764926,2.662836255410258e-07,0.0007972757651999497,0.9999908713570667,0.999999729451564,0.5569504043534007,0.13123231853085895,0.00024896950375400404,2.963809240239784e-07,0.4716397331968893,0.9858514149899185,0.18916480763589882,0.9979356651987672,0.2861606058185811,2.712907717516143e-05,0.9846059945166523,0.34385909813292914,0.9975898573724421,0.09673329361020759,3.6459938579066683e-06,2.4299216975335972e-05,2.0055043990671194e-06,0.9126826100408095,6.4447667395628655e-06,3.978511165025901e-05,4.933776322502304e-06,4.84972365529372e-08,0.6919769499539029,0.0004414029710225953,0.060130591985173724,0.0001156965223366291,0.9999762975273466,0.9760097646911136,2.2106703324524062e-07,1.2534837993132167e-05,0.9999620847466277,0.9984817123000967,0.334879472720969,0.9873407250501008,2.8172109943326592e-06,0.0002455918318550383,2.649650534452768e-06,0.9999928105901288,0.1116503200608615,0.00013665936713454265,0.9999568950352822,8.884080987370287e-09,0.9999985575920203,0.9999899026384547,2.373788412247189e-05,2.25959817252922e-05,0.9827680129426868,1.5185038184165393e-06,0.8207921659324613,1.6980493525159512e-11,6.237716863049003e-06,2.9760579200186983e-06,5.241054278256406e-06,0.00028558901364960395,0.9999939734559936,0.9998435076886866,0.9999222203124625,0.2016361237006255,5.469481979576155e-07,0.0032519711698480603,0.0006779848840103889,0.013943607198734345,3.6383192343963484e-06,6.464732173853891e-07,0.999999906942961,1.7529978674342636e-06,1.5211508853841923e-05,3.765464738101894e-06,7.76384295605014e-12,0.9840306365867554,0.06385030150636711,0.0033523495235729187,1.390670380931284e-07,0.9997330119305281,0.999972936049116,0.9999762955026943,0.9999897252106605,0.9997006820983854,5.14767943122043e-05,5.476768020642991e-07,0.0682062425630825,0.0020663197786489995,2.569328471130901e-06,7.403182024239807e-08,0.6416585957236371,7.715530092693009e-05,8.283120508748663e-05,0.9999915030096455,0.0026796588884531536,2.700039773965873e-05,5.393431251352171e-06,0.03703038657832051,5.169016340902685e-06,2.8503882895489013e-08,0.999956283081987,0.9999999991983324,3.472725000376536e-06,3.647858489021601e-06,0.05797825533993519,0.00011929574116008697,0.9999887508023553,3.5804777347323777e-05,0.6583328477848658,0.2935407798280748,1.5212631452208059e-07,0.4605660561309372,0.04298068110904873,0.7078756616198801,0.9999998735816997,1.2520829141991331e-06,0.989453972315374,0.9632267747051638,0.16830951741190042,0.9043227423513064,0.9345833336454961,3.843153451808416e-07,0.9956388751327903,0.9999988771189597,0.00037475566166488017,0.9999998467060471,1.568424106051047e-06,0.9979667870458585,0.09986687311371964,0.8491903402558445,0.999993933022287,6.654547749028135e-06,0.001034472963557086,0.0581333096062943,0.9999999910140597,0.0001294560786501619,0.0825913838215216 -figura,rgb,0.9999991185274008,1.0,1.0,1.0,1.0,0.9858690166481865,0.9999999999997746,0.012358495637640323,0.055896992714122455,0.08070468852951022,1.0,1.0,1.0,1.0,1.0,0.999999999998934,1.0,1.0,1.0,0.9999999999997433,1.0,1.0,0.9722111478072236,1.0,0.9999999997069375,1.0,0.9999946437294366,0.9999999996019504,0.9999999999920666,1.0,0.9866676271739072,1.0,0.989138960000663,0.797151322571045,1.0,0.9999999999992348,0.9999999999999938,1.0,0.9999980218473761,0.9992013994233544,1.0,1.0,0.9929554898683739,1.0,0.9999999999998888,1.0,1.0,1.0,0.9999999999991624,0.9999888365636166,0.9845813729131275,1.0,0.04059250770769591,0.9927984080939125,0.9999999999995814,0.9990299956146065,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999956384,1.0,1.0,1.0,1.0,0.03395903807058562,0.01597201534758388,0.03940457038930734,0.991955549735836,1.0,1.0,0.028838338936413445,1.0,1.0,1.0,1.0,1.0,1.0,0.9999954479366451,1.0,0.9999999979421377,1.0,0.01813190093395868,0.999999999788282,0.9999999999954652,1.0,0.9999953108882483,0.9999934005791832,0.011046133502479431,0.9999999999568956,1.0,1.0,1.0,1.0,0.9999999999957689,1.0,1.0,1.0,1.0,0.9999999999999853,0.9992370702770157,1.0,1.0,0.9878004068485161,0.9999999999999707,1.0,1.0,0.9990321319476386,1.0,1.0,1.0,1.0,1.0,1.0,0.47446370806237903,1.0,1.0,1.0,1.0,1.0,0.9999545451813815,1.0,1.0,0.999999999926386,1.0,0.5092985910918707,0.9999999643533489,0.9999032127281093,0.9999999999999964,0.9744700385521703,0.9830224848265527,0.029383866188190572,0.5526855724216891,1.0,1.0,1.0,0.9999991682243905,1.0,1.0,0.9999999999034459,0.9907977893192839,1.0,0.9999999999953497,0.9999999999999951,0.9999999999999243,1.0,1.0,1.0,1.0,0.999999993091877,0.99999999999828,1.0,0.9999999999995479,1.0,1.0,0.9999999999968743,0.9999999999999898,1.0,0.9999999999681366,1.0,0.9999999999999989,0.999999999971928,0.9999999995506157,0.9999999884024319,0.999999998387519,1.0,1.0,1.0,0.9999999980280774,0.9848692361907037,0.9999994390157264,0.9999999999977089,0.9999999988309354,0.9999999999997529,0.9999999999186007,1.0,0.9999999995347346,0.9999999999925349,0.9999999999819866,0.9999999999995213,1.0,0.9786840031207353,0.9880434923504122,0.9999999999986973,1.0,1.0,1.0,1.0,1.0,0.9976527295698039,0.9999991863012647,0.9999999999999989,0.9999657147658939,0.9999999999982538,0.6880276843035713,1.0,0.9882038238077615,0.99115344920286,1.0,0.9999999909561951,0.9999999942581888,0.9999880716087244,1.0,0.9972424108438857,0.9999999999996427,1.0,1.0,0.9999985986604265,0.9999593073123028,0.9999999999999998,0.9999999998156162,1.0,0.9999998993333988,1.0,1.0,0.9999999999831426,1.0,1.0,1.0,1.0,0.9910539589157812,1.0,1.0,1.0,1.0,1.0,0.9999999999806379,1.0,1.0,0.9999994624038057,1.0,0.9987257168602562,1.0,1.0,1.0,1.0,0.9997151438339182,0.999999887282708,0.9999999999999998,1.0,1.0,1.0 -figura,shape,0.151112042749698,0.9999960426383916,0.9999999801777342,0.99999452260943,0.9999999999923641,0.9999999998794447,0.9999999999935241,2.042454851728314e-05,5.841731814323074e-05,0.7460701791555838,0.9999992133261475,0.9982188126314706,0.9999786075098945,0.9999898254833055,0.9999998823520709,0.9999990123299398,0.9999996836069851,0.9999996581126119,0.9999492151749283,0.9905684522927136,0.9999999992008339,0.9999999934833244,0.999999999948149,0.9999999904010718,0.9999999992035056,0.9999999923341704,0.999999996681922,0.9999999863773585,0.9944860398789432,0.9999979617272324,0.9999999950729099,0.9999999999747686,0.9999999697462625,0.999963488209591,0.9999995094868263,0.9999999976668053,0.9997447732670306,0.999810261571745,0.9982447463296908,0.9999701944498379,0.9999987959420122,0.9999943262271674,0.9999998971029503,0.9999999780508961,0.9999999702560074,0.9999999999996774,0.9999999999913123,0.9999999999822753,0.9999999989593735,0.9999537618212991,0.9999999992877222,0.999999963716321,0.00014610145054684448,0.9996639021492733,0.9999965250318681,0.999999999008468,0.999992286699297,0.9997552084856732,0.9469458391529408,0.9999974785074245,0.9999865648030908,0.9999917351312723,0.9999999999999785,0.9999997314754273,0.9999999891141039,0.9999999914633552,0.9999999785966174,0.6429919968121727,0.4517571765134247,4.7576856924855165e-05,0.9245070615683992,0.9999825008077126,0.9999997401784497,0.9828744085712497,0.9999906334663761,0.999966963927493,0.9999999916534049,0.9999999149691409,0.9999999906155804,0.9939869789347602,0.9979159285423032,0.9999975795950014,0.9999826229682225,0.9996729870112611,8.216446066861466e-05,0.9997762365964569,0.9999999321556104,0.9998618755500011,0.0004959222605028179,0.9988847355645237,0.9291452693281957,0.9997907998326386,0.9999998651568993,0.9999936787282453,0.9999999822886639,0.9999019769908531,0.9999999437989286,0.9999904604161396,0.9999900158702204,0.9999978075730364,0.9998867065129949,0.9999961530773456,0.9999427764636024,0.9999718982879097,0.9999999342523206,0.9999983804100542,0.9999999966504467,0.9999999909352816,0.9999996945184569,0.9999684584277477,0.9999999989225903,0.9999999998245741,0.99999906741509,0.9999999999999769,0.9999843723433394,0.9999999999990055,0.9999996585555369,0.9999999999980629,0.999999996116087,0.9999208362319868,0.9999999976177973,0.9999999998310383,0.9999998169398572,0.9999987820408094,0.999999999449098,0.9999999396444895,0.9999999999980118,0.9999994207075803,0.9999825413132772,0.9999869354828578,0.5126146574703612,0.9999985789661673,0.9999999845332093,0.9847377409169749,0.9999988156404009,0.9999999999999742,0.9999999910712637,0.9999999567163108,0.9999764259525721,0.999999548630068,0.9999985548006409,0.9999993378481372,0.9993374811881534,0.9999788958287492,0.9999992961252088,0.9999999975193274,0.9998811763176455,0.9999999204871722,0.9999999648864971,0.9999999991717763,0.9999987890089012,0.5281184028729837,0.9999999191544912,0.999999798223565,0.9999988727998732,0.9999943948365193,0.9982188126314708,0.9999982018141705,0.9999986941984533,0.9999980439895712,0.9999999114334442,0.999999996887091,0.9999999947697253,0.9999997427244183,0.9999999486598132,0.9999999981912595,0.9999999992132207,0.9949125269111679,0.9999998489892298,0.9999999999074864,0.9634764109805691,0.9999999958803538,0.018101579300841684,0.9999999961803443,0.8034569213072266,0.9999999999935214,0.9995866031979219,0.9999999805704668,0.9999984826502424,0.9999995779019485,0.9999999324059979,0.9999999320937818,0.9999944182353205,0.9999999940870179,0.9999997379343774,0.9999999998777829,0.9999999976446325,0.9999554829097155,0.9999985147255679,0.9999540215229421,0.9999999819627804,0.9995179578556835,0.0006373159971504322,0.9999999999942553,0.010241120367226323,0.9999999999457876,0.9999996777380323,0.9999999999992231,0.9999999956160868,0.9993688384300355,0.9999999997816291,0.03532116392139313,0.9999994638826432,0.9998007383334682,0.9999999995212876,0.9999995990467678,0.99950476279773,0.999999950647873,0.999720559013548,0.9722249068372469,0.999995912270441,0.9982446921620018,0.9999999982041932,0.9965741848151229,0.9999982893845408,0.9999999999990572,0.9999999999955405,0.999999999697708,0.9999999999986988,0.9999999999904956,0.9999999999977758,0.999999993198943,0.9535595702604059,0.9995104834957886,0.9999999998835851,0.9999999999739224,0.9999274040233526,0.9975971967527298,0.9999999678231014,1.0,0.9999999999485618,0.999941762045505,0.9999996377947151,0.9998950984543322,0.9999999976177973,0.999879054762047,0.9999964233624057,0.9999997471830102,0.9995364941374089,0.005473429264684406,0.9999852155559273,0.9999999999944129,0.9999999999993958,0.999999591391862 -figura,object,0.6460363069324387,0.9999791455818804,0.9999985643354089,0.99999999948693,0.9999999988917601,0.9999996345836927,0.999999999998858,1.0889598279204729e-05,5.153531630315178e-05,0.601579207303555,0.9999999989346515,0.99999988170057,0.9999999408185059,0.9999803311027896,0.999999999999956,0.9999999141841656,0.9999999999755116,0.9999999988704684,0.9999999791820795,0.9999577321642121,0.9999999999991351,0.9999999998803439,0.9999999974981972,0.9999999965228692,0.9999993261007752,0.9999999999839695,0.9999999994426811,0.99999572535561,0.12086293932914431,0.9999993950896406,0.999999961429861,0.9999999505797439,0.9999981265835941,0.9999714148669653,0.9999999993463617,0.9999994820692257,0.9998682365950231,0.9999999196236766,0.9996641279733165,0.9999951549479146,0.9999999999971207,0.9999995452981882,0.9997724665821469,0.9999996921468726,0.9999999157803023,0.9999999999646514,0.9999999739193992,0.9999999999079514,0.9999999997864093,0.9999924225137478,0.9999991222608836,0.999999999998817,0.00011940036922303863,0.9996083387463285,0.9999992496415232,0.9999938185964906,0.9999995658678273,0.9999587087384699,0.9999936167889976,0.999999972568267,0.9999998786308023,0.9999999801227673,0.9999999999999998,0.9999995888796753,0.9999999989139858,0.9999999995959694,0.9999999997072573,0.5929920078444498,0.4202583257042221,4.096100426756244e-05,0.9800145124111814,0.9999999999861318,0.9999999999956675,0.8220792924431777,0.9999518008887492,0.9999783591598607,0.9999999999900313,0.9999999963555322,0.999999999578244,0.9998305592424003,0.9999308195104099,0.9999998346274686,0.9999999076020273,0.9999977680276958,5.188984763156754e-05,0.9999995144679389,0.9999999994193558,0.9999998929056605,0.0010937156098764572,0.9998478847822702,0.8674196069948544,0.9999197579175757,0.999999983646787,0.9999991436207363,0.9999999991784703,0.9999973951729192,0.9999995727796855,0.9999985135650845,0.9999974686941091,0.9999999234617786,0.999998491594092,0.9999999954276912,0.9999874967548289,0.9999999999857792,0.9999999977923708,0.9999720615444394,0.9999999996530105,0.9999999955387451,0.9999999587542941,0.9999669361855561,0.9999999999978477,1.0,0.9999999999912268,0.9999999999999996,0.9999989559633338,0.999999999996416,0.9999927728841951,0.9999999999996438,0.9999999999336318,0.9999910494399407,0.9999998921726428,0.9999999999955111,0.9999998229582403,0.9999999999887688,0.9999999999827918,0.999841328077388,0.9999999999999793,0.9999786877751204,0.9999975924239943,0.9999952685165577,0.048259542970960426,0.9999994265912875,0.9999985575870767,0.986179141171589,0.9999012884379315,1.0,0.9999999999344011,0.9999999997471927,0.9999960345044581,0.9999999570878807,0.999999274812292,0.9999999882492806,0.9994101497326373,0.9999999999835327,0.9999846322250577,0.9999999998463394,0.9999994589647433,0.9999999966166526,0.999999999953902,0.9999999999705003,0.9999999999981717,0.9008798079940243,0.9999999933884891,0.9999999961162238,0.9999999713734423,0.9999999770485467,0.9999998586221603,0.9958656091548621,0.9999769743390783,0.9999999966733999,0.999923480326262,0.9999999999901543,0.9999998988321268,0.9999677221690112,0.9999726388187866,0.9999981935838478,0.999998937329307,0.9999837517276795,0.9999999998427889,0.9999999999999887,0.9974994740392406,0.9999743148385407,0.4483592219870087,0.9999999999119416,0.9902931853026323,0.9999999999998181,0.9998882154214893,0.9999999999999505,0.9997479362627962,0.9999146697306169,0.9999242036342206,0.9999999949853697,0.9999901116329698,0.9999995277728418,0.9999327321951721,0.9999999999860107,0.9999999999997939,0.9998962095702187,0.9999999983790464,0.9999999715219495,0.9999999998728806,0.9999924482323143,0.025777800016358467,0.9999999999999925,0.259083620299035,0.9999999999980178,0.9999897546035438,0.999999999999998,0.9999976233324763,0.9992751615557686,0.9999999999999982,0.9180391557280764,0.9999742114107542,0.9999753722670446,0.9999999999932017,0.9999990342318222,0.999652488896802,0.9999999999999731,0.9999999995307092,0.999325469457948,0.9999992705744734,0.9999981124369923,0.9999996412056811,0.9999426541111155,0.9988870725075583,0.9999999999999645,0.9999999999999529,0.999999912810126,0.9999999999024547,0.9999999768165858,0.9999999976926173,0.9999999999997213,0.9871417627480058,0.9999607972084809,0.9999999999991578,0.9999999999999005,0.9997759742128356,0.9999995644629148,0.9999999982073908,1.0,1.0,0.9999993794023817,0.9999999999952858,0.9999448422794728,0.9999998810989842,0.9991466561151087,0.9999369946332146,0.9999999901474025,0.9998207216463182,0.06633918854782948,0.9999999894413897,1.0,0.9999999999842613,0.9999999580351864 -fruta,rgb,0.9999942148915635,5.59644317926205e-19,9.108148399496703e-06,8.607102944353187e-59,6.234808634421814e-10,0.9999999995595399,0.991713437180678,0.9999999999993707,0.9999999999994065,0.9999999999998221,0.9497110886608043,0.006665792748072994,0.041103997930793515,3.6252516358035616e-20,1.5317679375142924e-64,1.7909534072777764e-05,0.9999965202995005,0.9999916242535422,0.9999981618733068,0.9999999996320961,0.9999999971955791,0.9999999852104315,0.9999999998232973,0.9999927367800289,0.9997789629544546,0.6785344428838552,0.9997464022110812,0.999921552968233,0.00046298414680379676,7.86102204627693e-19,0.999999999558997,7.712110635643763e-08,0.9999999997933973,0.9999999999999853,5.044196819161387e-55,3.450761143583528e-05,0.9999999980141188,0.9999999984679011,0.9999999935684964,0.9999999999090068,1.8744444151725794e-55,1.064403727612384e-14,0.9999999995450093,9.910861413184015e-22,0.11739262717412849,1.4541836972802314e-05,7.200310170817078e-08,1.008927824820208e-05,0.3185021368001739,0.9999999999997902,0.9999999996254127,7.433825431263355e-56,0.9999999999996643,0.9999999999321003,0.005204568033810511,0.999999999812857,0.07413143570503672,0.044149824356219884,0.011901542304224603,0.1789098663032345,0.9549307181911691,0.9999999990062349,2.3349760485244214e-06,6.205182140178306e-14,2.4456003446364367e-18,0.9999998793605159,0.9964209477049358,0.9999999999997708,0.9999999999994909,0.9999999999993265,0.9999999998914597,3.9231073173516883e-56,2.6987237602962517e-54,0.9999999999998328,5.889892965447241e-14,1.0062650346281581e-13,0.8914270177756536,0.9999995249230121,0.9999999674779283,0.03565310413156425,0.9999310291303958,0.18105761700223788,0.9999999999998108,0.034052799932559434,0.9999999999993754,0.9999999999995628,0.0001741273398304484,0.9999999953355065,0.9999999672002278,0.9999461952002714,0.9999999999994726,4.2039259321369503e-07,0.08831485777072758,0.010746882179225021,0.027670737363592796,0.027139955218411244,0.0012714735142642587,0.03393397927861039,0.14263636182748143,0.05901905576449263,0.06237330296235195,0.9967597936667979,0.999999999926509,1.0283446901496956e-57,0.023086451587687965,0.9999999994799937,0.25854099484014154,0.9999953900859762,0.05620710418529317,0.9999999999511522,0.9944544397007096,1.577474103273477e-56,9.675916629004043e-61,0.0018255408057471362,0.4762458177200172,0.8499629336956324,0.9999999999999674,0.9854043496611173,0.005105032410945698,0.0016892659549730996,6.642108846082821e-08,0.779007468314808,0.9999999999997233,3.889067081066417e-54,0.006368044266187641,0.9999999080827453,0.6680481732628474,0.9999999999999594,0.9999999999992641,0.9999999999999827,0.9999999679524468,0.9999999999999878,0.99999999952606,0.9999999999998208,0.9999999999999718,0.999999889129417,0.9999993268611663,0.9999986913832183,0.9999999999996017,2.284821711330261e-19,3.484365748255995e-54,7.942300299011282e-05,0.9999999999107758,2.6491686429417112e-52,0.9999999998724642,0.9999999972000593,0.9999999211894766,0.9999999488644016,0.9831333353596267,0.9999992698322218,9.983224035478914e-54,0.9999999999996785,0.00016062277297603772,0.9595957534973146,0.004916924442242905,0.12834731669763855,0.016236350457114156,0.9605267054564516,0.8166731582553354,0.9999998559482196,0.9038665749304924,0.9999997482153756,2.4774110422032903e-06,0.9978547558326111,0.9994373360060862,0.9998900284806937,0.9999083677359278,0.05437020975272173,0.22051102486800014,2.2710988622495137e-57,0.9999999999994376,0.9999999996255329,0.9999999999999138,6.811341752771087e-06,0.9999999999991278,0.9909962118647345,3.482496819431879e-07,1.4588173533465674e-61,0.9613217099008942,0.9809387502228155,0.9958847238655876,5.711548650192762e-06,1.2070242556558046e-54,0.999999999835592,0.9999999994793789,0.05723297323241508,6.346502523900295e-47,2.627753965547533e-17,0.21423137871821696,0.01987623812559614,0.9664052964239517,0.9999999999999873,0.9999885123515566,0.9999999941865776,0.9999999999999736,0.3306347025537245,0.9999999999999682,0.058724399922144496,0.9999999997388687,0.9999999999543903,1.9076766795275307e-53,0.9999999999997451,0.9999863216202031,0.9998957654517076,0.9686637480640575,0.9999999999437839,0.005839437771418794,2.4583994289708482e-55,7.802214686298433e-64,0.9999340765951399,0.9999999999999833,0.99999999953386,0.9997576542549036,0.04832770348336282,0.9999759832884901,0.3385307431395612,0.0035674228657520237,5.387633622967669e-07,1.177028584077119e-05,9.094385337271422e-09,6.1115814756392615e-09,1.2148026918870268e-52,0.9999999999114229,1.8316389704974236e-13,0.9999910283791866,0.9999837178068236,5.806121913887126e-19,0.9999982186197242,5.205324655343187e-07,6.951667694153988e-08,1.4698245394546681e-58,0.9999999999999449,8.026057990906277e-54,0.9999999999363769,6.79163757668858e-08,0.005919323279212604,0.0006981183549062852,9.540375237103396e-20,0.9999999999999809,0.9999999999998805,0.9999999994043871,2.9044392611060224e-53,0.9976849704943904,0.9887373320043061 -fruta,shape,0.9999993806860904,0.9431541619678551,0.034108326159328996,0.0011428344250065346,5.428772579415606e-09,7.105441878726404e-05,0.004051532503923267,0.9999980498365371,0.9994384887728887,0.9999327579117723,0.0005366501093937697,0.9824853778402242,0.0002123732580707276,0.9993056592382088,0.4631598925623991,3.387623795678275e-05,7.331285224379129e-06,2.0552362253192032e-05,0.9999308221332592,0.9996883595653888,1.0733376605432702e-18,0.9992318562780115,4.853659486284706e-11,0.998997736001065,0.9997363141887878,0.9995831386888671,0.9935949373983529,0.9999904416042704,0.00026763411512540454,1.9438479614363408e-05,0.187417963947518,4.947849477547733e-07,7.851370033043205e-06,0.9999489386737114,2.2744998547909773e-06,9.519844946811632e-05,0.9844389077746013,0.9999442588185632,0.9994907097106907,0.8009913331197831,0.00010082759505383333,0.06881379272349025,0.002705913648940711,0.0005542481526830844,6.464869383926338e-05,0.00014747813444064255,3.2286224716968347e-06,3.89957665111246e-07,0.01088208124308131,0.9999579755595484,1.6386292401605233e-05,0.00040760640045581106,0.9999996673628914,0.08647979181307869,0.9875219159214693,0.00014786718497228262,0.035220096870528135,0.9974593502395359,0.9993296970861877,0.00023797035209526858,0.6906856357650264,9.448199529412023e-07,4.5039946475231457e-07,0.03192113478802962,0.0002757557514115556,0.9999610316456454,0.9996412763803062,0.9999993958153648,0.9998338172433381,0.9999999343285618,0.08910471801168765,0.9948856549146041,4.973228677439064e-06,0.9998348182546287,0.9432145577861041,2.039007010980547e-05,0.999466424753068,0.9999967812606981,0.9999893603142913,0.12406919448063561,0.9979717373632342,5.651161018792375e-10,0.9994375261654622,0.9992484843950825,0.9996347381144829,0.9999086530057261,1.2900996998715065e-06,0.9999506548284014,0.9999982284031073,0.9999426667098892,0.9999328852186478,0.9999848563265177,7.183698810657647e-05,8.517876420657778e-09,7.855878520676447e-07,0.9868977459795104,0.00013314137050297883,4.926316958221693e-08,1.1541907752985159e-10,0.028435765491849938,0.8221182361303122,6.919533926868348e-05,0.0015816850335270258,2.5502966483042334e-05,4.391068902225933e-12,8.401130653431546e-06,0.00016170100769260818,0.9997622483557685,0.9994406863598874,0.0023160525888661397,0.9992896925133609,7.999881630697268e-05,0.871711124122247,1.4164125520642446e-09,0.9967765132519744,1.3925348085179383e-07,0.9999873657396996,9.966682496332082e-07,0.9985079716346705,0.050463664006570166,2.3597671105363705e-09,0.0003895542556678532,0.9999901703524963,0.0002912483590930802,5.392418540471029e-05,0.999387658696545,0.00038369576836115615,0.9999955366413589,0.9999973035179692,0.9999953893649736,0.9999999333222473,0.9999609896396092,0.00038657884220805546,0.9999694778309292,0.9997308803454029,7.044575139585433e-14,0.00010023450665421117,1.988449215414945e-05,0.9999587437064514,0.013102497614237173,0.00010098817856772453,0.00021284782998141905,1.3510915522195623e-06,0.0001803829609496272,0.9996036893353186,0.28309062781062305,0.9994349019948461,0.999972681893,0.999943846006122,0.9998587321278959,7.011389471473009e-05,0.9864418748861662,6.040273458026791e-05,0.0002686050096984102,0.00036477070905315836,0.00021959516563343424,0.9824853778402239,0.9999777529137814,0.999866474441137,7.215370664599143e-11,0.9997813884162864,3.722340807821761e-17,0.0001624068859969188,0.9998262569659327,0.9993498343366569,0.9998616380630313,0.9982914917880774,0.9994615708144068,0.0001343518451150278,0.0006767541818220095,0.0004229829504166245,0.00011656128552860611,0.9999944694979608,2.6678278537834142e-05,0.9999656305172855,1.3545908895682969e-06,0.9999994728795475,0.5741116242007825,0.9999815160456964,0.9999991389266467,0.9999766610690154,2.3266812281527766e-05,0.00014056459335437852,4.4628081571523926e-09,2.66983515916957e-06,0.02110827698500554,0.0012577047548341265,0.8461412702063564,0.00010209693119066775,0.0019696361997387593,0.0010523226089799635,0.9995372137415228,0.9998820186991794,4.606914791720604e-10,0.9958041930408084,1.7591820235776674e-05,0.9994487779229876,5.135232101978066e-06,0.0002144349717799494,0.11761139764096612,8.7440484284717e-05,0.9968813515058466,0.9999411116247816,0.9999968307295611,0.025301192094535234,2.2702738269851903e-05,0.0001977762811904208,7.737801945835024e-05,9.169871086701428e-06,0.9999056560279401,0.9999933892093658,0.999999957874905,0.9999806186687583,0.6121790641791433,0.9999525618935237,0.8758584805749945,0.0003113746202479654,8.827827113666764e-11,9.56073602720184e-10,1.0108824994012235e-05,1.457098270820168e-09,0.00035140462551410415,0.11948082716269322,0.9999030412941036,3.160262921443237e-09,3.317725618168813e-21,0.9999981019982713,0.011744640386785184,5.3440026459584886e-05,6.932748339533674e-09,0.0002435017437298232,0.9621251177132881,5.983745589175614e-05,0.012300755064772333,2.359767110536354e-09,0.010550447311475628,0.08232263507404944,9.083308263361466e-06,0.9993339657278963,0.9703912892442421,0.9999924348563639,0.00016742238115820013,1.0056136527122262e-07,0.6555364704312308 -fruta,object,0.9998085696223197,0.9736106994773484,0.9678171105231056,0.00022585454871202837,0.05234448427063978,0.9997345139796434,0.9861140724442753,0.9999957806593758,0.9998783453623498,0.9999938586044408,0.0036487046015531346,0.11996060251060385,0.00014114880385314451,0.9808966971714996,1.331046478251629e-08,0.005847479479899691,0.524318983374272,0.9842634067461188,0.9999304959952838,0.9998586175132126,1.0280373117947271e-05,0.999912622219111,0.17091297388797816,0.9994552842381903,0.9999770330072982,0.9999225730882031,0.9998444520420131,0.9999972434898019,0.00034768191447227527,0.009761990487396363,0.994990789080301,0.069464470089771,0.9497275672611767,0.9999933691379206,1.998380825307054e-09,0.00013036898405454766,0.9999443117242386,0.9998956081976889,0.9999967355633748,0.999996939116664,3.978263611522112e-07,0.9745562894422591,0.9629082299551479,0.009805099263420849,0.000208275336545516,0.8127476785495585,0.31430777503680524,0.0002777353450380169,0.88679666754855,0.9999983536362591,0.983992506784883,1.071184883536247e-05,0.9999987833671835,0.9979711130735224,0.8482749126095311,0.4646450844179893,0.34009399680656605,0.8539979330670918,0.459113612181378,9.177745558633417e-05,0.032292152489515724,0.501950989225924,8.115097330419889e-06,0.6784159176867447,0.020980459385868407,0.9999640312888832,0.9995514539094636,0.999998539063794,0.9999927425819168,0.9999977556034021,0.9637923147935572,7.167906632355456e-07,1.951192359147361e-08,0.99999903133928,0.9813889644258719,0.017316708414146318,0.9996677124427014,0.9998747771786095,0.9999282600570583,0.9267872342796843,0.9817029041897355,0.02004752711341931,0.9997902134294827,0.9877518630644091,0.9999863122855388,0.999846567152234,3.939334349375201e-05,0.9999162664814178,0.9999233646124343,0.9682426288844973,0.9999978685061885,0.1560097003328755,0.15561400912598744,0.00018706808133334775,0.013136420923346642,0.5720741700702482,0.00016837316161574215,0.0002941165965871666,0.7850668598468487,0.6681448399821452,0.988561368375002,0.8115408372765289,0.9984391699895978,8.24797935206102e-07,0.2422907656931772,0.8170624544610445,0.04007469220018519,0.9999097757741665,0.9993325677677306,0.8863237999081032,0.9993157204276546,0.00012416378301815088,2.9874255104971006e-07,0.21054502470917769,0.9994830184438015,0.9796605114175704,0.9999999028129333,0.7091440933571058,0.9987895458585627,0.13971337691157362,0.0022265193875605368,0.6899345302540271,0.9999992943384036,2.8171021662517095e-06,0.17365233742383865,0.9998675909293536,0.9633367445248759,0.9999998985836523,0.9999992887495833,0.9999978826078405,0.9999992165618556,0.999999189060612,0.9990108081399733,0.9999996396504116,0.9999995579567162,0.0003327286133430163,0.00033287183490792203,0.3043717236078295,0.9999972724661644,0.04080367724418448,1.5208986394065506e-06,0.00014401429823378948,0.33391841205473544,7.294604313383631e-07,0.9998456750339217,0.9999949474750661,0.9997175253101601,0.9999113250112887,0.999889544875927,0.9999631535361608,3.2934150928411047e-09,0.9942255682179633,4.262583983740221e-05,0.00048105985534502413,0.03396993211933254,9.943530827057951e-05,0.14115463490615587,0.99999774401312,0.9999832740309437,0.018205216097375417,0.9999922198683697,4.560456179803375e-06,7.431069472118004e-05,0.9999924224376047,0.9999753077811098,0.9999930672400678,0.9998811088517497,0.6148198738238969,0.00048413682308327696,0.00021315999546855,0.7585232314724911,0.999793932187659,0.9999844002553266,2.995545014097516e-06,0.9999825378318327,0.20059103015259408,0.6960658063025849,2.690358723457704e-07,0.9999964425495852,0.9999997653152943,0.9999963311079081,6.766011960977666e-05,9.818244824562519e-06,0.5193365323296307,0.46553055939033566,0.8977348016479862,7.594385575069717e-05,0.13173427099008306,0.00014548513585649497,0.0019013807796073193,0.7295478588199753,0.9999893335092669,0.9997118691904752,0.7173045062649167,0.9998569490405997,0.05373225944245652,0.9999991218120652,0.6586633213520757,0.998043655747477,0.996496662740398,3.068083863511905e-06,0.9999223819386021,0.9999935666822429,0.999495808650139,0.8032838539070493,0.9999188918683526,0.005437500402188475,3.690109332233673e-05,6.299919866936806e-12,0.9999741839161677,0.9999984649350669,0.9999829565762746,0.9999936370600694,0.005754048703574515,0.9999966794597033,0.9989446036157006,0.8452386756798198,1.975958675003241e-06,0.010146660087990911,0.3866195180818829,0.15228837719920799,2.573475759474029e-07,0.980111336210067,0.9961838322241227,0.03113471999580931,1.8425903017706609e-06,0.999536833653432,0.9928553189137177,0.0005817881650224247,0.007350432580263458,2.3219709205113038e-05,0.9997820453068578,3.220911227387716e-08,0.9829579533448678,0.002406940903211268,0.17336449953248426,0.773648541639403,0.006250807440587426,0.9999972458794436,0.9993281195192539,0.9999564219050112,1.7369033557528404e-07,0.9233929642200271,0.9979092607386906 -geométrica,rgb,0.9999990946682381,1.0,3.524927249938855e-11,1.0,8.179405456175694e-10,0.9999594716190849,0.9993902535205306,0.9999461974928997,0.9996062793693506,0.9953841360952801,7.492169338457042e-12,1.8931567960992502e-11,1.2195201310019217e-11,1.0,1.0,0.9999999999999996,2.7705442443995138e-14,3.352386711102227e-14,2.961176760249372e-14,1.4550522419734055e-09,7.718267926389194e-14,7.488743424192269e-13,0.9999212696671522,2.1428161601841743e-12,0.9999615359835204,3.669705967473066e-14,0.9999999998024367,0.9998539492280524,0.9999999999999905,0.9999999999842333,0.9999565388820663,3.5570828019545233e-10,0.9998047252666009,0.03315283025051858,1.0,0.9999999999999978,2.5253757242183565e-10,1.9544923313017712e-13,0.9758342513445795,0.9819346707594796,1.0,0.9999996627518166,0.9999094680410203,0.9999999999992553,0.9999999804414804,3.015627431193984e-10,5.337772793766869e-10,3.3362122552105486e-11,0.9999999867694402,1.3414752197173425e-05,0.9999524822113937,1.0,0.9993311334445124,0.9979777354205464,0.9999999999812221,0.9955978458152475,0.0012494054708359617,0.0003410742353905429,1.7657874902926983e-11,9.373640249653794e-12,6.480819484422955e-12,1.0849328489463322e-13,1.0,0.9999921373814291,0.9999999997363311,9.597762961319869e-12,2.720979501273747e-14,0.9989988793764797,0.999895283398733,0.9997954948954743,0.9991842748200747,1.0,1.0,0.9986317320827621,0.9999999999999969,0.99999875980943,3.2201383573468255e-14,3.4773407832172654e-12,7.914761734330364e-13,0.00012841619707326863,0.9999999979400562,0.00043494756117260874,3.168351270028343e-10,2.0388729936903576e-05,0.9999124888042162,7.876518976844338e-11,0.9999999999999962,1.4042975193574881e-13,0.999406059941767,0.9999999980276995,0.999937305953075,1.0,0.0066380719828221645,0.00027656833857448636,6.987939386328092e-05,2.9539371846744158e-05,0.999999999999891,1.916731009387099e-05,0.0006932515489662791,2.029209602611959e-05,4.113253253744602e-06,0.9248565087317648,0.9730825049591054,1.0,3.5244198321314075e-06,0.9999630376920505,0.999999512339492,1.5586342566502426e-12,8.394033639287932e-14,0.961012574067454,1.9563601029731687e-14,1.0,1.0,7.025957668917755e-11,1.1407661294869199e-11,1.1275301836047165e-11,0.43514970191081,8.595497489895582e-11,1.7451015317562078e-11,1.491569966593777e-12,3.184992198569543e-10,5.218384499652349e-11,0.00011719266261886569,1.0,8.169720241540091e-11,0.012741518599993144,5.785136370078965e-11,0.48251395434405553,9.625190358592821e-08,3.0340745018722674e-06,1.2197105616621449e-08,0.0015885243687470873,0.9999713816946727,0.9987499799955571,0.2922214788336276,4.293636566646295e-14,3.1432592689281307e-14,3.290912071618125e-14,1.6281489547991267e-06,0.9999999999827291,1.0,1.0,0.9990450897419486,1.0,8.675521672369174e-09,3.3445867689787833e-10,2.28115244233787e-06,1.06118785256715e-12,2.9692162907876735e-14,6.651771271946384e-12,1.0,3.325598774322993e-09,0.9999999999999891,7.571798488277808e-12,0.999999999984444,1.0957204005292888e-11,1.9407256267056624e-11,0.9999982264001706,0.9998853159013721,3.3811075606511364e-14,0.9999999781695907,3.1353765712012194e-14,0.9999999999999174,0.9999841992426062,0.9999951053667788,0.9999986269830139,0.9999794526502566,1.520931107713978e-11,9.228582690652679e-12,1.0,1.8132412813179032e-09,0.9999513350356691,8.072495409034428e-08,1.0,1.9760390970099392e-09,0.9995253193583935,1.0,1.0,0.9999999958742785,0.9999978910219185,0.999990756527692,0.9999999999999998,1.0,0.9998765094521026,0.9999621820841036,0.9999999997326807,0.999999999999998,0.9999999999999998,9.190286984919557e-12,1.6740089715667856e-11,6.627917913206986e-12,9.003306369050453e-05,0.999999677745527,1.70186289488256e-10,1.7285538765785057e-06,0.9999999940799738,0.19915044163145232,3.804085117153789e-11,0.9998801063085265,0.9969769287481297,1.0,3.1491669269477647e-09,0.9998995713718262,0.9999999996776805,6.929287974869376e-11,0.9911173895125543,0.9999999999724336,1.0,1.0,0.9999999906695377,1.0013990576412483e-06,3.886123534615207e-13,0.9999418627915841,1.3544310813500818e-11,0.9999987900272099,3.938811849865781e-11,3.9891967828305e-11,1.0,8.541265263701264e-11,6.338356582055608e-10,1.3157479018333835e-09,1.0,0.9989994602662228,0.9999593473091317,3.6312001612000157e-14,3.781765044905342e-14,1.0,4.162065692520026e-14,1.0,3.1245376912451197e-10,1.0,3.6474924143131974e-08,1.0,0.9815839675898349,4.1431604489684456e-10,8.083238419172534e-11,4.572653004084871e-11,0.9999999999749454,1.340812501995256e-05,1.9548914870583875e-08,7.957608321286007e-13,1.0,7.0240470988253854e-12,1.3071917674097584e-11 -geométrica,shape,0.9769182209494565,0.9999265817842764,0.9999999737661067,0.9996733288197842,0.9999999388458016,0.9999959418240896,0.9996555169937908,0.990295475151496,0.9998033899358892,0.9958320318809407,0.6275906082031378,3.991700725826481e-05,0.2682633233085578,0.9994478434424612,0.9998586195281509,0.9999687190109231,0.999773303109581,0.9785319699138247,0.9351443361130275,0.9999786578529628,0.9763230891052554,0.9999970764822514,0.999973014975524,0.9999999726833272,0.9999882786799972,0.9999985630511734,0.0002699929030849006,0.9994589786030863,0.9999788963547136,0.9999986050372153,0.9999738895392476,0.9999992934773543,0.9999973352103758,0.0001155834167029209,0.999988750118297,0.9999968511633999,0.7996119410139817,0.010709063006828046,0.9999948189549623,0.4933871839072853,0.9968944448545195,0.9963369390320651,0.9999926762334275,0.9999931172837995,0.999927521126536,0.9999987340482838,0.9999999521545321,0.999999965410367,0.9999943848814749,0.004722849115825805,0.9999999269680864,0.9999532532386353,0.002763934002243976,0.9999107515883497,0.9999919833797343,0.9999994398496126,3.5393094021184946e-05,0.4848900121618153,2.213946471397876e-05,0.9999906951050817,0.9999995850768598,0.999889530321229,0.9998707917953705,0.9990880842161257,0.9999991871048033,0.9999987105336595,0.9999992543859272,0.9556325263702325,0.1390203700082371,0.9998559819072652,0.9999985917292665,0.9999804625890173,0.599583778405359,0.006767481615727201,0.9999202503342696,0.9294031041763401,0.9999998361978344,0.9999937948472174,0.9999557701503476,0.999999029190544,0.028625057649675215,8.542493358067932e-05,0.2839599138049814,0.16524856709139868,0.07353526455121383,0.79796779041238,0.9999999799445742,0.04718553561661651,0.870663640843962,0.9176516604101986,0.00949483759624253,0.9998644846278721,4.724370327250831e-05,0.000438599677692288,0.00020600853670427516,0.002563991434516875,0.9999493800482565,0.007649306501515896,0.21015651408183583,0.00016752951660947322,0.9999037102866968,0.999966926219183,0.9998985082539253,0.9999250536427613,0.00010654210498341006,0.9999995354363858,0.9999529922586863,0.9999998776505409,0.986193794778029,0.9999932057610668,0.9999995508954708,0.9985027427490245,0.9999824483033898,0.8924183606643361,0.9997155175526394,0.9999544095293096,0.005706083541219203,0.9982485264768652,0.9999999987324293,0.9999917954897081,0.9999998353239856,0.9999979807162503,0.015834612529876085,0.9999972914267228,0.988217551814814,0.9999980111798675,0.6244724617750725,0.00899266892989683,0.0043158153389816645,0.00010464491545287711,0.9344133996895927,0.00010482331432907237,0.9996411411017145,0.0022009601256192638,0.01662663554542085,0.9998972926744085,0.9997407082356254,0.9999988592346004,0.00044369424495921487,0.9999999143971474,0.9999198255802827,0.9999987476214488,0.6669763489555203,0.17697365758223949,0.9865019177509702,0.984802243766357,0.0004276580597754401,0.999756142953855,0.9999689597037784,0.9999953595767772,0.9780745066477134,0.9481270064179295,0.9999967595951582,0.9999991370355821,0.9997608328131503,0.9999490873406562,3.991700725826509e-05,0.999792800535069,0.9810702860032486,0.9999857777306594,0.8151628487692814,0.27409055226442214,0.9999907037189711,0.5503742257281842,0.9935141410160422,0.9998550370786616,0.9999996789690151,0.9994395833266094,0.993367559974289,0.9996692995194858,0.00858527792111378,0.9999850341188466,0.9952653708421272,0.9999999095705867,0.9996670008615265,0.9999388625328874,0.9999892776891262,0.9999925157444085,0.9932481283332204,0.9534272108935017,0.9759149927518028,0.9999916061438521,0.9997649062529143,0.9999854271734416,0.9999996531448643,0.9996813813870278,0.9999201274837719,0.9999998749448683,0.9999981202283063,8.957733655417845e-05,0.9999741337960203,0.030034060646711113,0.19661755113199772,0.9966338095569385,0.9861525554527066,0.9999520437474811,0.007454874402481043,0.8390729939105683,0.9999991776473572,0.9996125127777613,0.9997999037713579,0.9678655496562387,0.9983784606398611,0.00044215131808244884,0.9163314647283677,0.9999984072182514,0.9999076430989472,0.9999969188111186,0.9996932037278624,0.0008047416130073322,0.00010280736389381392,0.8117816398678787,0.9999466203070093,0.9997892420995591,0.9275258957138224,0.9987723539735813,0.9999219124562675,0.9999999738722731,0.9999996136507836,0.9999998375242869,0.999999932355978,0.99999991712503,0.9999976110114576,0.9995354526433471,0.16177959321425261,0.6590881644977744,0.9999857120363117,0.00672504605279265,0.999885599908092,0.9999999970463587,0.9994352552948654,0.031203772838477785,0.7970008499992238,0.9981525814109565,0.9999998353239856,0.9999901458708229,0.9999996738585437,0.9999996661392376,0.13175676918182086,0.618461424954108,0.8130254860884552,0.9988412897796459,0.9999999443766292,0.9994912420065574 -geométrica,object,0.9204411671071869,0.9999569897677129,0.9999833048751651,0.9998767250527647,0.9998603069514586,0.9999857856989562,0.9936942402946382,0.973799275323516,0.9997659765184993,0.9891061380949794,0.03985063483117428,3.7487515058285873e-06,0.007278780246076948,0.9997496662813031,0.9999876087771775,0.9999380442464224,0.9773760333963829,0.2436621124118198,0.018690066368420383,0.9853069003299071,0.38903675894485346,0.9992298074549708,0.9999294663042829,0.9999854662511697,0.9999587302262064,0.9989537767900053,0.0005815584656878314,0.99922837663824,0.9999543859510663,0.9999988183194256,0.9999639499246369,0.9995011947729703,0.9999967186582196,0.0001246728878515009,0.9999995943596118,0.999984365213349,0.041258803215028964,0.000559755814594169,0.9997763019352162,0.33454629255693996,0.9999094291432069,0.9984845540099793,0.9999932835885633,0.9999986763028401,0.9998881538966643,0.9990836396809533,0.9999115468181538,0.99997650912991,0.9999555130940596,0.002402999793782048,0.9999996273899788,0.9999856583807398,0.005128865458285764,0.9999057739222902,0.9999559118884265,0.9999954023776529,2.5707981168406247e-05,0.06642686693412081,1.492689961730926e-06,0.9974225461701651,0.9998798297287471,0.9061224929492251,0.9999058906735206,0.9965332675166484,0.9999991548653836,0.9997704296152023,0.9998402981006853,0.948257838726138,0.2055473062167248,0.9995136779535012,0.999999046306657,0.9999943541522601,0.9452173188875808,0.007500458555023752,0.9999585490396998,0.9534911999484682,0.9999004601971865,0.9994124892511062,0.993862357812547,0.9999550719371948,0.02257323978412789,7.954691466121999e-05,0.023188491738505835,0.01708063530580112,0.13607145089833797,0.12611110989974222,0.9999999125396072,0.002049099338751071,0.2142726774645112,0.8089731772029359,0.029573084357007253,0.9998924796078381,4.130470667615854e-05,0.00024592348277173063,0.00010212535493467685,0.0003468887500171117,0.9999666252064485,0.0016942259387195703,0.09976423914578594,0.00012431882335118036,0.9967404641453254,0.9999111618413279,0.999915088968407,0.9999974610435206,0.00010074594040196418,0.9999985727149446,0.9998191654776992,0.999936676451698,0.4415460636622395,0.9999715781166735,0.9999055369335821,0.9996097307600244,0.9999923923322076,0.15238954308949887,0.9629634850833609,0.9871545008790432,0.004055685417373858,0.9295715168899226,0.9999972914863865,0.998940192421994,0.9997131539062457,0.9997108859609762,0.007564437680310405,0.999999716901677,0.5713370598485755,0.9989660139836406,0.04694494663332944,0.006565098237051822,0.0019712893508213205,8.7645248226047e-05,0.032956449559165504,9.338872185808861e-05,0.9995193443554663,0.0027590533573039855,0.010080434776792368,0.9896969389404354,0.9706040739067876,0.9984038988634679,0.0003110293772018338,0.9999998840746268,0.9999784978950065,0.9999985014155346,0.9482012105803626,0.9356143347839413,0.2706002366387163,0.6522881626786414,0.00017575447833079693,0.9831861872124837,0.9913888277768433,0.9989168118000697,0.9983176876269926,0.32309570023398293,0.9999916545479406,0.999647787720662,0.9998197685586109,0.9886131002993525,3.7918709182917192e-06,0.9997311408428772,0.9895148018361576,0.9827030180841548,0.9689041619285788,0.005987921862430394,0.9999790062513159,0.8281686672353238,0.9966039460740033,0.9998206872287482,0.9999982567880651,0.9221345026122834,0.8122694390734905,0.9998511410979181,0.001015168442004088,0.9999540150154854,0.8928420657519573,0.9999998586466672,0.9784153976033216,0.9991285235803424,0.9999832870233966,0.9999993504618858,0.9984733572420175,0.971566028469002,0.9833744104803813,0.9999949752988428,0.9999282655193714,0.9999280760267609,0.9999989680796267,0.9992272362499034,0.9999493688916833,0.9999998964422526,0.9996535320660105,9.717493816903346e-06,0.9964903390387378,0.015734591119231877,0.03374641458897738,0.9745173613201173,0.7972418516695499,0.9997115536538204,0.007344305196691992,0.11189964803218769,0.9999969053569543,0.9995297060146006,0.9999402353161844,0.631852706833762,0.9983259858669499,0.0006121498987486944,0.194814080873666,0.9999741577906268,0.9998875831777789,0.9999985205356038,0.9999681993687354,0.00035686413812611003,6.336013663165783e-05,0.0827827157693898,0.999865160468638,0.9625226844122227,0.9659198370478416,0.7735273693540847,0.9885884078794167,0.9999999258905697,0.9997988490976942,0.9996430381912311,0.9998329853476596,0.9999998617389976,0.9999987222939689,0.9965472314415857,0.0014767035924843053,0.027445905865179584,0.9999920166760078,5.1301012495172515e-05,0.9999549026391193,0.9999958590861134,0.9999200557563375,0.0050359761091624405,0.9735921259410185,0.9988579292472362,0.9997219220816226,0.9992740944285887,0.9994417934613525,0.9999995325822326,0.042174985566496605,0.1457501341008134,0.1692954060491347,0.9999105688793748,0.9999796934584856,0.9587615435739919 -granos,rgb,6.18850437510556e-33,0.9999999999772071,0.999999965565905,1.0,0.9999999999274909,1.2537633846109041e-16,4.236549572269458e-29,1.804243822662737e-23,2.295039642268985e-22,9.57236165906716e-23,0.9984150465156165,0.9999977087215528,0.9999897526279548,0.9999999999974456,1.0,2.5048713649986985e-36,0.00047762292282681554,0.0021848979147016693,0.00025639696666873344,9.497179462913557e-08,2.454584264481866e-08,1.0736251502198967e-12,3.958675065904545e-17,4.398975811168739e-12,2.420898216915823e-07,0.20689993636261925,2.4625517212016066e-35,1.562710004713094e-07,5.3663783794267166e-36,0.999999999999976,1.3469819609239977e-16,0.9999999992399526,1.3339252787061035e-16,3.047012489476169e-23,1.0,6.149699803267489e-36,1.776614524292244e-06,2.5219829247382475e-11,5.110113057287865e-12,1.9761972377907944e-15,1.0,0.9999999999989739,2.9456418933969466e-16,0.9999999999999998,9.094397494108829e-32,0.9999999866350757,0.9999999994316469,0.9999999623061459,3.2539108149589475e-32,1.0862779527116606e-15,1.0683908465108578e-16,1.0,6.805069943116025e-23,1.4078257873763766e-16,9.975617630895489e-34,2.137795374936712e-15,0.9997984144125689,0.9999334701548771,0.999996463612553,0.9999618898923667,0.9981670325684794,2.7215194097132425e-09,1.1220855724769537e-37,0.9999999999987954,0.9999999999999836,2.0156273539141102e-14,0.00018306453517591311,2.9072539291989866e-23,2.2105934582534487e-23,1.4511252885055575e-22,1.4979793194314293e-16,1.0,1.0,1.2836320130551827e-23,0.9999997492412409,0.9999999999956586,0.02044051390007737,2.850989310295979e-13,1.3216075045527864e-12,0.9999635869430178,1.022692439083776e-34,0.9996205145045903,5.281963252837802e-16,0.9999817694460195,3.524487418710262e-23,2.1034548744681742e-15,4.0530254179112905e-36,6.809979236568211e-11,3.634015920112165e-31,9.267608060718149e-35,1.1863329557942431e-23,3.141321485251292e-39,0.9994817321461971,0.999986055045738,0.9999776183873149,0.9999836909654921,2.465305384269772e-35,0.9999821987761626,0.9996589870134549,0.9999675320420978,0.9999791773930399,3.4204652600624995e-27,1.8928812812696814e-15,1.0,0.9999927855560669,1.5827027475814068e-16,1.0780210211053443e-30,5.997657726602733e-12,0.9795217766299286,1.207170235296597e-15,0.010265419435521238,1.0,1.0,0.999999452917063,0.9998920200823889,0.999504545999236,1.4146995768493262e-22,0.9965674200139738,0.9999980103682682,0.9999921226852884,0.9999999992301827,0.9997641865412734,5.051679231549285e-16,1.0,0.9999987190099333,1.225844350622713e-07,0.9998580913601511,3.2532286508405673e-22,2.6176030024222913e-13,4.0616878384631783e-19,3.433805966304272e-05,4.1143807619681775e-22,1.023761165058502e-16,1.4999526176737223e-23,1.5148639532100143e-22,1.133584258922187e-05,7.656780455124362e-05,0.00021808813814451787,1.7176365282952044e-14,0.9999999999999925,1.0,1.0241228739052658e-37,1.1789521015385721e-16,1.0,1.0280888600670597e-08,2.812662375425659e-06,1.3814640313770043e-05,8.735960962658372e-13,0.0010305532503414564,1.1182506465683678e-13,1.0,8.032980255343209e-14,1.0129513622450893e-35,0.998067056780026,8.714530120471477e-34,0.9999734311801675,0.9999957688191814,3.040217409589627e-05,0.005775236280778313,8.249797288043109e-06,3.552675953675551e-06,1.6459825258767433e-05,6.026565853757348e-34,2.9240991726973796e-06,1.8003017645427887e-07,6.04714304820645e-09,4.184800066501042e-08,0.9999884623262049,0.9999532199137248,1.0,3.66858325100232e-13,1.0933315351383859e-16,1.0394883416216994e-15,5.1426721287322585e-37,1.0884598465850768e-12,3.4686960791364506e-29,1.4980420560457348e-39,1.0,2.3689338199740028e-07,1.2642934328102964e-05,4.760246428263353e-06,2.1430668157827343e-36,1.0,5.3727778343275174e-17,1.62269191267879e-16,2.865774875504491e-33,1.0,0.999999999646433,0.9999544410208541,0.99999478071811,0.997617787726435,3.313316664466326e-22,3.26398087429642e-33,8.955530867878075e-06,5.1025624155272e-18,1.5324603664801372e-32,5.611897691197302e-22,0.9999910863345808,1.311528290177604e-16,9.26675771536067e-17,1.0,4.109366063707059e-14,9.225903151735889e-09,2.811791774492805e-35,0.9983443384507635,3.9595130527251374e-16,1.3155828549594314e-33,1.0,1.0,3.244975772106216e-34,1.6804049929157564e-19,3.5468349129433342e-12,3.799844318278539e-07,0.9999889407195157,5.593389579158847e-10,0.9999523813701912,0.999998921401677,9.279295523097962e-39,0.9999999783803453,0.9999999997884035,0.9999999998903137,1.0,1.2157725520685237e-16,0.9999999999984464,0.002808456636589974,0.0058233437773121685,0.9999999999766847,0.0005521112317301734,7.914664427743789e-39,0.9999999992046309,1.0,1.1230830669334e-19,1.0,1.0029666150931041e-15,0.9999999993504247,0.9999987826975064,0.9999996599965052,0.9999999999999971,4.474879824134943e-19,3.753142379483098e-15,4.597262263912306e-13,1.0,0.972046190636245,0.9944708352204015 -granos,shape,0.0009545279193198464,0.048954756422295624,3.4371428774025264e-05,1.5042628206611678e-06,0.03628550375557244,9.477804174399426e-07,1.010571408568606e-05,0.0003597849703486193,6.615080941076994e-05,8.984995962163389e-05,0.9999760748721425,0.9999941147102435,0.9999991140798331,0.033583655724700325,0.9790691521843561,0.5194965075388849,1.8915853529652049e-06,3.8734598615487636e-05,0.9866109921116438,0.41946215153404687,1.8184892529663848e-05,1.5491171385431193e-06,0.6030170116068283,6.75842466373006e-05,3.670172267789334e-06,3.199734940848718e-06,0.0004869726015620149,3.8527193467544004e-07,3.1933345445410863e-06,0.2501733944282563,0.0770419568411548,0.00017167677274803069,1.0359949667768037e-07,4.161307042859598e-06,2.8364691910678854e-08,7.89856412708484e-08,6.356557956162636e-07,0.007865151460312336,1.994429389452028e-06,0.0022984111245407937,2.2889887701764943e-06,2.405803031634134e-06,1.6559665680784115e-07,2.710203905212206e-07,1.8818256586159325e-07,0.0013629290598011965,0.000120813565493833,0.7176755999475373,0.0002605657206708977,8.921266854478615e-07,0.0037060085115875035,0.0015966272295505361,2.0992524394396052e-05,4.312515634188727e-07,0.0001187862575811068,9.635600169969354e-09,0.9998138395188133,0.999989615989881,0.999978259223006,0.9999508941940065,0.9997300248433245,0.9957395197123184,0.04492142469032309,0.34817177106010705,0.1825884059538842,6.349488722133806e-07,3.654279080900744e-07,1.0105384586317303e-05,2.3656526867074556e-06,0.0001821845740326877,3.5707829443698126e-06,0.03525200229745643,0.21210469056018985,9.027609320297235e-05,0.1907762440736255,0.5989595663830468,2.320606782945664e-06,3.216656059103259e-07,2.762477573826257e-07,0.27046522715884197,0.00016040802704431746,0.06405421758709533,0.00017849162775219213,0.9993796318493563,3.817957898650251e-05,3.553758269014958e-05,0.9025850096888871,0.024366678657488556,0.05836865761873988,0.0006290665113840303,1.9275025696609666e-06,0.15155559848946162,0.9921274053344818,0.884749845582466,0.9968140208736057,0.99999962399122,2.1188309057725687e-07,0.9895602290234891,1.853945715340033e-06,0.9918640787652901,0.5090674926310698,1.3703433990762063e-06,1.085534963875773e-06,6.200382457469068e-06,7.459401861878705e-07,0.17205693633547428,0.00017751997498653205,4.412319033115997e-06,5.236562482657908e-06,4.833743164686863e-07,1.6442225468908476e-05,5.089510762868567e-05,0.010188687076634112,3.335657652692929e-07,1.4072659146524902e-05,1.0035274925301786e-08,8.89029241256142e-07,4.578436744639713e-06,0.03185441863214546,0.002662577374449276,0.8428256836648252,3.57177118678499e-06,5.897676211725693e-06,5.162238292629153e-07,1.750394405253456e-05,0.9999823249634318,2.3609646293190278e-08,2.0909895336268208e-05,1.1794606693910032e-06,5.267320768688637e-07,0.27265323447376394,1.0014395246514258e-05,7.027703517298591e-05,1.9121394186985894e-05,9.560648368852634e-08,0.03154448170842905,3.0616253088739906e-06,0.0008783835018074142,1.1518802328833336e-05,0.5602321524577392,1.1719129957889245e-07,0.028578784719001205,2.4464069333350736e-06,3.6080713628621074e-05,0.9999985707969854,0.03148634921743986,0.9951884801280249,2.709273380780375e-07,1.3232483818496384e-06,1.2316655904055775e-06,0.00011006576484399582,0.2816694545095327,0.7664584712205098,0.9999024252962093,2.650524668683093e-07,0.9999907701490238,0.9999941147102435,2.5938170084428567e-06,1.1293346273831283e-07,0.5415923199900203,3.102614809365838e-08,0.002795105152682536,2.9240845325327164e-08,1.2651261051564232e-07,2.0207679748926287e-07,1.2100608451747192e-06,0.00024760373785832397,0.9999292471827703,0.2785699807666165,8.322989981656101e-06,0.24759746533744686,5.423544337632559e-07,0.0006946597112404476,0.9155195884361913,0.00030775980362522063,0.0001673280429536563,0.013784694703065639,0.04889833038789663,2.644454596570282e-07,7.486263525950718e-07,1.3272079557061027e-07,1.2987649404714825e-08,1.2375552093255788e-07,0.67420052926624,0.10365750745046724,4.146579605466021e-05,2.638050008070729e-05,0.9932658116589904,0.998126155183837,0.9999931384397532,0.9995542953015111,7.465867606518249e-05,5.298854585684872e-05,7.258143880334196e-05,0.0006133119455852088,0.0005765840974679277,1.7470781989385395e-07,6.282172273556061e-06,0.000629074108685454,0.00010326165768421174,0.00037758894818927665,9.437555274297238e-05,8.942493505847018e-06,0.0038451978802274533,2.0330439985964992e-07,5.653106371744863e-08,4.48130588395214e-06,1.9684493820792093e-06,0.9239023028877534,0.0006168913857485989,2.2445611145650454e-06,0.00250675246932194,5.18125648633286e-05,0.999976228073165,1.3671323112055314e-05,9.03304878481778e-05,9.369447826978177e-07,0.03522887036267664,0.0032528143520684522,5.985514811952202e-05,0.0014506245363575655,0.18904488963550403,3.7959093789761215e-06,0.0017831664131117365,0.14405523945504325,1.1076048726124434e-05,0.00020320613190065096,0.23902643013311106,0.001419424613671346,0.9344483431339713,3.986196626074657e-05,0.00010947959392293548,0.18780233813783206,3.065170615819493e-06,0.8428256836648261,0.003495159317071908,0.006295940668136763,0.8654060842005181,3.111528759902566e-06,0.00012882693702205136,0.0052920467022582515,0.3946702505859184,3.1157390415660565e-08,2.7854280708541834e-05 -granos,object,4.778566267296954e-06,0.9971479561673241,0.015869628069707563,0.9986310867243028,0.9277335415442596,1.545735941599425e-06,4.441111009406217e-07,7.223313177724753e-05,2.7326801880980537e-05,2.6863628340903197e-05,0.9999850059677933,0.9999978899260944,0.9999986433625337,0.9958852267916253,0.9999999972161826,0.00017934541162958718,0.0008516420964033041,0.004699804650045387,0.9983848695267774,0.9158542379984047,0.026435046173244398,1.4765062289539075e-05,0.03682113525124479,0.00010404963117543006,3.0498186190780064e-05,0.0014207685176133456,8.116039518094138e-07,8.030514755712401e-06,4.878132892583311e-09,0.9985263361870242,0.004464594363585811,0.05688233929800372,4.1264436165133505e-07,1.0694297836470032e-06,0.877886174303508,1.0830001685041825e-10,0.00031336402104790274,0.03964611591673838,0.0009010228596819304,0.012396670436712855,0.9947969061112527,0.03618030573773277,1.5220458241332807e-07,0.0386156517051003,2.7301814422327408e-09,0.5322745450317484,0.08701305643730806,0.989524600073569,7.611667233844103e-07,6.108105026792557e-06,0.00020735944194299108,0.9999803833579397,4.3457413501425785e-06,6.168176266382813e-07,3.485179964637491e-06,3.594822521526585e-08,0.9999378348628423,0.9999945227257276,0.9999944707651398,0.9999666957805716,0.9998432142755641,0.9959214930966692,3.335319261645797e-05,0.9995550971084498,0.9993170702337176,2.369901968779123e-06,7.905679901988777e-05,3.891355955116922e-06,1.667678112365912e-06,4.877400773014737e-05,2.273212788075946e-06,0.9999992444076624,0.9999997888867916,1.3395339883112457e-05,0.9925248106730539,0.9994375898640808,0.0012477591798015584,2.470771947953075e-06,3.5201143262806377e-06,0.9886784668872675,4.980627489289453e-07,0.9836354388430575,0.0007003637146638597,0.9999608496023347,7.612275543655544e-06,0.0004081695812475664,0.00047453498876672673,0.09240094797174533,0.0002637314244932438,1.2153429194690894e-06,1.2548451579485175e-06,5.988483678392931e-06,0.9996704680151504,0.9988000883480966,0.9998826286060971,0.9999985506910043,7.245073711582906e-10,0.9996811945193277,0.024361610447400744,0.9998591175763215,0.9983580142312042,6.184858952466255e-08,1.644364546752371e-06,0.9973698125004588,0.03927719615623912,0.007821622145095589,3.400999502690151e-05,1.878679998785604e-05,0.004152261756466266,7.320114121648453e-07,0.0007504152385664624,0.9999938886042224,0.999999107780289,0.24017487432281753,0.10132151826529165,0.00036366675769382355,3.8024061861942793e-07,0.2196677161152694,0.9884065095138428,0.22882422027322308,0.9941899420262976,0.17523516120122598,1.6327384347145708e-05,0.9774107321503471,0.3075497810445797,0.9972785637635883,0.012029860223704609,4.144567314380494e-06,1.6616499067212115e-05,1.8937061213214929e-06,0.48153364261508136,4.168294658235465e-06,3.5974954551778574e-05,4.109111108236957e-06,7.50322259878809e-08,0.8123714526748733,0.0006958792577912845,0.053706617484322594,6.285438432403423e-05,0.999806192352586,0.9198153142777337,1.4559948828689495e-06,1.90609948639326e-05,0.9998435130745676,0.9993666312338311,0.19650487211249734,0.9974352429161577,3.858412383987582e-06,0.0003527645415698755,3.448693183239668e-06,0.9999440878223179,0.1912725150682414,0.00011112351499418368,0.9999165043801403,1.0971838894605737e-08,0.9999932183745872,0.9999976245180403,3.567633018575979e-05,3.346061182195738e-05,0.9720407371417007,2.4654474088926852e-06,0.6057112848589074,1.367817147627431e-10,9.568811204942548e-06,5.545865647347201e-06,7.969659416134082e-06,0.0003194281736962851,0.9999863443813412,0.9822944004349553,0.9995831758883876,0.36199486211359316,1.0953010872190981e-06,0.002565429978177935,0.0002545125623336926,0.00631717553467328,4.949246496603997e-06,2.6655110302439736e-06,0.999999761404425,5.114704849979025e-06,2.5367220293093913e-05,6.455959898884049e-06,1.0447793923564676e-10,0.9375861634164835,0.04030915063494924,0.0034214947189692853,1.734091924935667e-07,0.9986643845532331,0.9998060802458323,0.9998170211397804,0.9999968533623007,0.999613636095986,2.803175859188853e-05,6.754718187601012e-07,0.11490006386154028,0.0013785942459098924,3.6103907032514905e-06,1.311469450894762e-07,0.38148410428503526,8.82497032542063e-05,0.0004683961689512994,0.9999471328784352,0.0012348457232465692,4.171622726483614e-05,2.5160280913815812e-06,0.005102376258089738,1.557886572753332e-05,6.021355064641389e-08,0.999937597117858,0.9999999949470662,2.402288470298022e-06,4.170185617279106e-06,0.01831710549409022,0.00015571789793064793,0.9999834321314558,3.862360646952326e-05,0.567089385320846,0.193858659895512,3.0377017442957834e-07,0.4041752797307922,0.04766199252913379,0.615627071558971,0.999999578556197,2.4563016070066917e-06,0.9866635131102403,0.9590495103716034,0.09772210883376238,0.8753177659757483,0.9680527156622664,1.729354758633699e-06,0.9969011155362606,0.9999972142574852,0.00012132245186378315,0.9999997468524785,2.833859283973204e-06,0.994264436232483,0.16364473205966584,0.6065670167379098,0.9999216087247397,6.685300417639513e-06,0.000579331964844375,0.017895761662137286,0.9999999464153351,0.00020295703072128473,0.07924723662225404 -hojas,rgb,0.9999999998445446,7.352790062034984e-23,0.9999934437826503,0.9999509652804967,0.9999996079562361,3.2863253262986062e-15,0.9999999999999991,3.585300356206713e-11,3.947554997575418e-11,1.0321173188161466e-09,0.9813193460625363,0.9993488938560875,0.9989817104625843,1.0707210833175843e-22,0.9971466010236669,0.9999999999999987,0.9999997196085464,0.9999993946781067,0.9999995864302286,0.0004471889656708547,0.9999990999201122,0.9999999999898948,9.398936193392034e-15,0.9999999999999873,2.0364324809687128e-17,0.9999999999959628,0.9999999995260322,6.052802763406022e-17,0.9999999999999947,1.5136238535410387e-17,3.388493681014331e-15,0.9999855853521196,1.2409507885798304e-14,0.00017993685701712844,0.0007367179258767364,0.9999999999999991,0.0035857651589215195,0.9999999977706426,2.4864537060907453e-14,2.3981446882731137e-13,0.9996954529633463,5.158217717818941e-15,4.64507593308867e-15,2.2081646423496224e-17,0.9999999999999998,0.9982844114884785,0.999963349250424,0.9999936813859311,0.9999999999999989,3.205134682917338e-06,4.016878933607163e-15,0.9997735233659915,1.7142505808515705e-10,9.604229151695947e-14,0.9999999999999996,6.437441581346098e-14,4.397209359071925e-10,2.449291231337652e-09,0.9991163349554801,0.9981482620726619,0.9851934334087329,0.9999994286844738,0.9999999999999951,7.00231204730666e-14,1.7022807633981296e-16,0.9999999999998328,0.999999999999102,5.203640873495381e-10,6.042433818754982e-11,2.8468735190583292e-11,4.153830107267263e-14,0.9999455800831293,0.9997442973636711,1.4533885403346431e-09,4.3147262204446564e-23,6.911647925195045e-15,0.9999999999986922,0.9999999999999145,0.9999999999960747,8.672316362436165e-09,0.9999999995436013,1.0773962536230387e-09,0.9976368093239896,8.837665915694936e-08,3.4970364046300524e-11,0.9996817617408474,0.9999999999999964,0.9999999992973745,0.999999997809857,0.9999999993460411,5.844690789680026e-11,0.9999999999999551,6.167681285430973e-11,5.4089302478368705e-09,2.032396709095108e-08,6.052355587230085e-08,0.9999999999999969,9.578479846272693e-08,6.859228270940336e-10,7.07557395297273e-08,5.453656203105023e-07,0.9999999999999998,3.5410602702810633e-13,0.9998512617855152,1.0400911311584453e-06,2.7671967185779286e-15,0.9999999999999998,0.9999999999999769,0.9999999999699796,6.034964992431925e-13,0.9999999999620683,0.9998796440346238,0.9997901605790745,0.9958580287354593,0.9926249034795814,0.9782488876135352,5.22280095317675e-07,0.21622939993892198,0.999564992529893,0.9999998005195418,0.9999907923090885,0.7462535909111598,3.3862709559791405e-07,0.999920450709073,0.9855428020595446,5.521243334853739e-12,0.7677500261307589,1.925312155517088e-07,0.00011353512178934105,0.011694852711790101,1.2707693221336444e-05,0.0009272517487193411,2.6530998990513085e-15,1.1518005543755092e-09,1.0793290265578924e-06,0.9999983740823317,0.9999994687069667,0.9999992930539672,1.0395930193748126e-05,3.2193331573832643e-17,0.001574990533724358,0.9999999999999525,5.2874921183809997e-14,0.9998743216439283,6.121277571065517e-05,0.0022219280233048105,2.5572503503515047e-08,0.999999999998175,0.9999999999993185,0.9999999999999607,0.9999266825698802,0.03556199442826262,0.9999999999999984,0.9784082743116749,0.9999999999999993,0.9980203432084453,0.9986082306374261,1.5119870691761023e-18,4.062482187114834e-17,0.9999995245743274,6.291610221167538e-20,0.9999996057023461,1.0,8.65356943915025e-18,4.2387335939102e-18,2.304478043841533e-18,1.4740004090380596e-17,0.9979341588227547,0.9978525378052682,0.9998618908266405,0.03744460460605562,4.06127278234672e-15,0.004331239856899354,0.9999999999999973,0.01758887366186931,0.9999999999999989,0.9999999999999181,0.9955124194554456,2.222153532088946e-20,1.7580555735543885e-18,5.602208047805714e-18,0.9999999999999993,0.0005332090037911668,1.2194904303449839e-14,2.7935851919361843e-15,0.9999999999999987,0.9999443564849785,8.239699375231072e-23,0.9979259990012929,0.9988271818839686,0.9817159126531384,0.14153542938626812,0.9999999998706117,0.0054538258791292,0.002635819054645608,0.9999999999999982,6.068901116840066e-07,0.9849065236832427,8.185304225024571e-15,1.6564658670481352e-13,0.9998937297223482,0.05971610929025833,6.135816618747155e-17,0.9999999989411728,0.36642039792347936,2.385524045284213e-13,0.9999999999999996,0.9999023119398667,0.9986332481891061,0.9999999998381064,0.1793660343901609,0.9999999956112984,2.714158886816851e-17,0.9985394594530861,2.941449149915252e-18,0.9393216235007457,0.9979252981852974,0.9999999999999811,0.9999205889642706,0.9999944495052314,0.9999776011141372,0.9998672890618239,5.440616979525736e-14,2.583263743243542e-13,0.9999991539451202,0.9999991552687922,7.392782854604323e-23,0.9999979905321664,0.9999999999999785,0.9999907734301663,0.0008407327826967417,0.9985411900366054,0.9998391073695665,3.198256795198714e-13,0.999981612512116,0.9865806741773095,0.9992537047328957,7.7637038668456e-17,0.0010126209850994192,0.01620906023315942,0.9999999992278468,0.0011078588732073124,0.925889859752829,0.8861844530838857 -hojas,shape,3.9784834461828885e-07,2.506768842486532e-07,0.9999016899778516,2.8835388562436635e-05,0.9999999795677004,8.04263353507043e-05,0.00017445500095360014,8.665778923383941e-07,3.0142455160534716e-08,4.6633679887894704e-07,7.2872264536273825e-06,0.00011074688324242469,5.417923965781607e-05,4.5798925081149116e-08,2.4048393192676474e-06,4.040990887697066e-05,0.0003775750291407919,0.00030586336965731666,0.00031771854072754356,1.8974113376968626e-05,0.00010300523001992743,1.4608902107082666e-05,2.002983811744645e-05,0.0023369461805916466,8.090942089924344e-05,2.1014498670725297e-05,8.427803349981042e-07,5.24389503863759e-05,0.00035232261677073775,1.2299852964003817e-05,3.531553366824358e-07,0.999999477983508,0.00010240527958518932,5.684923353837485e-08,0.0002535185139466463,6.250931911772234e-05,1.1386611018224786e-07,1.4746023136416648e-06,4.957054596760956e-07,1.4073671808903405e-07,1.9205777921008594e-06,2.5244574110979834e-06,6.160208021035437e-05,0.00010728947740723943,2.8535300833498253e-05,0.9999242932676792,0.9999999217242582,0.9999100836305941,4.6320995180426765e-05,2.2520129639948768e-08,7.847524005159477e-05,1.1934517384301236e-05,6.32598663958872e-08,3.684109521004579e-08,2.1572615571667202e-07,1.4144745979108504e-05,2.6806802106717645e-05,7.102976643233406e-05,3.920344985431433e-05,1.9108853724776732e-05,5.047017978327933e-06,0.00010382474339536415,7.123085181349065e-07,7.020508534025532e-07,1.0349469863144479e-06,1.9465244910958542e-05,0.00022803551424782452,4.359011277716489e-08,4.378538696204383e-08,1.526582943082171e-07,1.5832947432082886e-07,1.0501358886027175e-07,8.072462609642894e-07,1.5259633041677815e-07,6.014220044009347e-07,6.401276745462647e-07,3.359089604286088e-05,7.217626099904587e-05,4.5090777910104365e-05,2.0119419780336903e-05,2.3066769047321203e-07,3.0711242514704697e-06,9.283728093777021e-08,1.3866141901678586e-05,9.769000559160322e-08,4.852489406427159e-08,1.064739317178082e-05,1.9850920504397096e-06,3.5324047565518726e-05,6.150076745707124e-07,2.01180336023782e-08,2.750625435252264e-07,2.0241306968704004e-05,1.701403324776681e-05,2.499736611193825e-05,9.569605070176883e-05,2.497012032396784e-05,1.2541600408359758e-05,3.423912929398324e-05,1.0491941727352155e-05,4.719605844980281e-06,0.0001347333388925362,2.6771103320220635e-06,9.884837755787834e-05,1.712788197842946e-05,2.7293683284509938e-06,1.4066816621170444e-07,0.0010034423033329467,7.071537307882097e-05,7.488344485523301e-08,6.267423784512016e-06,1.4600127924586184e-07,1.0904414166278581e-07,5.137151206620716e-07,1.0744353053019369e-06,0.0002342802765935616,1.1807935415814023e-07,1.7333989687288263e-07,2.419730913599868e-07,0.9996411562287059,0.9999997988397016,4.0271893877679645e-08,7.549537093462942e-08,6.258305626839638e-06,5.866383099481174e-08,8.181909610331474e-05,7.81701020766793e-08,2.480133207641062e-07,3.250224651692608e-08,1.8743523790941144e-08,0.00010494636380637672,6.355936267094734e-08,3.2093914343480016e-06,9.740620250449669e-08,1.8222153331550667e-07,5.08664772752301e-05,4.834817123613671e-06,0.00011382041683313503,6.159553426212841e-08,2.8320589915774753e-06,7.966762973007369e-05,2.2214442323168665e-07,4.748109996184338e-09,7.21271514589419e-08,0.00018419804082416864,9.162451963657398e-05,3.98129333071372e-05,9.481264636854308e-06,3.8285118090637946e-05,1.5011913720303273e-05,2.21993275451089e-08,3.4815081688737154e-06,0.00015870732270314931,5.945370225188093e-06,6.562873499316969e-08,6.952531487537356e-05,0.00011074688324242527,0.0002281767574015276,7.706529335400679e-06,0.00035972376497362177,7.671277861506065e-07,0.00012247264202206958,0.0217272238849679,1.3447946993623778e-06,8.0393090662783e-06,2.1478736685688597e-05,0.00013701393823857427,4.4804804860202235e-05,6.4534467165764995e-06,0.00019398560461397519,3.0497326264250345e-06,0.0004103868424075679,1.0647453212571797e-06,2.824476131365954e-06,6.773139656520834e-07,1.909669299270647e-06,9.122733670240021e-08,9.143328628091222e-08,7.716024571423753e-06,1.770635444928193e-05,2.539732997460584e-05,0.000664671225504584,9.085764807821612e-05,3.804976497070822e-05,1.9956588974833643e-05,2.9937365584724755e-06,2.6071522799597818e-05,1.803713599170937e-05,3.385211317146626e-05,6.947075396765975e-05,0.00010072637772489732,3.3071376200462946e-08,6.429842874611692e-07,1.2735476802253302e-06,4.0965479432096576e-07,3.906777675888823e-06,2.573629928689242e-07,3.1531201046503657e-07,1.121013251918258e-05,1.2426295037212e-08,4.5724682146336865e-06,4.647398822426219e-07,2.824831901391784e-06,6.574036888036525e-07,4.1231392970562067e-07,1.3769419176626204e-08,6.432426766095272e-07,3.2037660647354594e-08,2.1550704564402592e-06,4.010475785539211e-06,5.778318778842516e-08,6.98785718983715e-07,1.3437905097233195e-05,1.5249973032965371e-05,1.2844870620888899e-05,1.611374393319175e-07,1.892704523026796e-08,0.8730861267789666,0.9999757729013065,0.9999999386925507,0.9999999885914591,2.7052390618484223e-07,2.481776186280435e-07,3.390188320441912e-07,6.038352210324584e-05,0.00027822531128324793,5.7189309662721244e-08,7.982469211681128e-05,3.859126995247291e-08,0.999989500269877,3.6519970256224585e-07,5.911261163639753e-08,2.7063865045646597e-07,1.421154127235146e-07,0.9999997988397016,0.9997421270470573,0.9998803150889103,1.794887365606565e-05,1.1153123772640183e-07,4.4751372476666614e-08,1.3401602938429705e-06,2.377602785894317e-06,0.002157705378148068,2.413288247966418e-07 -hojas,object,0.000370485058562052,7.756881490839004e-09,0.9999362264783352,0.00039699972773586125,0.9999999577821175,5.874760884729078e-05,0.40201722870968504,1.409090755170564e-06,1.0267358603981634e-07,1.201926177917656e-06,7.326835928005218e-05,0.0008389187348403802,0.0004787552470542293,1.5506356823834452e-09,2.3730771850481785e-05,0.12440710783939157,0.01019454763808062,0.007395004223451207,0.004461200694836024,3.277269408737533e-05,0.003777775941832404,0.007104774850962761,1.0208120086512138e-05,0.5192890645036515,1.3053896568820667e-05,0.006055050323526732,0.0006969668257916173,9.511406552447626e-06,0.4845710536991039,8.949392902710766e-07,2.2607808475290348e-07,0.9999992203175263,3.319838302614489e-05,1.087409845261157e-06,0.00021009756194122754,0.16361258873632903,1.2833867168486897e-06,0.00016612888631523985,1.5936773002119615e-07,1.2795094469419232e-07,2.2354251346169575e-05,3.059499855961259e-07,3.436457538986193e-05,1.0837301605181507e-05,0.17117523374779234,0.9999133321777786,0.9999997771692718,0.9999288441606572,0.13678536044942197,2.3047999230436724e-07,4.118509307136158e-05,0.00019099380766235465,1.9452131038771264e-07,3.530472117749414e-08,0.0019591509987749,8.862639168203923e-06,9.521092801220898e-06,2.254941590691434e-05,0.00028116020396602015,0.00023206171112181553,6.304680269315685e-05,0.003045968670625161,0.004301119875370328,2.0686429139597386e-07,1.2506254134872094e-07,0.015012369722275267,0.05108745413375931,1.6710133786949503e-07,1.300341179162269e-07,3.165933392641148e-07,1.3462893180553143e-07,3.2912999546677125e-06,1.6451768968006694e-05,5.216404864080323e-07,1.687350857282476e-08,1.4205108893598888e-07,0.012944575308110304,0.04859916276208152,0.01555603971465796,1.607512080867825e-05,0.00021506069004052666,2.625205167071242e-06,5.086648227369847e-06,7.986561778707559e-06,2.4681552772135375e-07,4.195262802073509e-06,0.031226205799717927,0.00024433613543347135,0.00990008850566893,0.0005102390127088327,7.473582935039489e-08,0.001600470012761416,6.519406173356596e-06,1.1548190082241188e-05,1.4432055238097369e-05,4.1762060937561527e-05,0.14961807372378721,1.1649240011330005e-05,2.6484839898531857e-05,7.985550797574492e-06,6.163901270484331e-06,0.16428514293934124,1.4842481198733906e-06,0.0007016065309610996,3.9455826730192884e-05,1.3337614695224346e-06,0.0013374257238112006,0.35772822730430287,0.009962152231209396,1.0089166856163458e-07,0.0016385613026386452,3.4434700672778896e-06,3.357362354220353e-06,1.4679685139864454e-05,3.115912617426231e-05,0.0022870982926684524,1.195976090190438e-06,3.1509453311513347e-06,8.321240375031217e-06,0.9997702067478985,0.9999995057994675,1.1910655365118472e-06,4.516440908838579e-07,8.150670578424398e-05,2.368062438183706e-06,3.6090070822713865e-05,1.7194626074087694e-06,1.8127592192877947e-06,4.529706726694163e-07,5.561948155457701e-07,9.949000461399649e-05,1.3540177125515884e-06,2.295846482986903e-06,3.55743060834429e-07,1.7557639125642255e-06,0.0015454046772053912,0.00031455631716707116,0.006040055023707326,5.114246286973499e-07,2.265064077488125e-07,9.428697905831909e-05,0.001440443573742726,8.284358573902175e-09,2.524528828203058e-06,0.00023752267967604358,0.00020266552765285336,2.589420149381801e-05,0.0045867552172783625,0.01560930577963639,0.012156842908046033,1.0373418191732767e-06,3.2289442709863454e-05,0.3258069069575245,6.742481443636596e-05,0.00048205346906728244,0.0007007521402119381,0.000772336109651173,1.6960050374026687e-05,1.3100472666297668e-06,0.0076278963641658575,9.822667035916134e-08,0.004492831408381572,0.970294651039207,2.643908936148802e-07,1.5414949333058726e-06,3.828205324921459e-06,1.935788925218823e-05,0.00040433323151339205,8.678213217665875e-05,0.003150351120453965,2.9097470031253962e-05,0.00024050856666252155,9.392079728082185e-06,0.013941164761745015,6.004678579862434e-06,0.01087812384977302,0.0006172087453118455,1.9394301911260105e-06,7.363052179948453e-07,2.1236118721450736e-06,3.457050587371677e-06,0.5493690815430088,8.480277629887507e-05,2.1056910982440697e-05,9.158170356220485e-06,0.0160936934378959,0.0005433030408059055,2.802839256424953e-07,0.00042819692874511016,0.0005806120721060829,0.0010827187829701708,1.2463252238456687e-06,0.0005535626672434705,8.636352265733688e-06,4.873026726359164e-06,0.023885378160821123,2.1911532427738322e-06,7.81273270121206e-06,8.087447596551703e-06,1.8733253032600645e-08,0.0001058150691872936,5.369044428245737e-06,8.096418432866355e-07,0.00046806754965775303,5.547038661131932e-06,2.3293752844102045e-08,0.004909276721303273,1.057367212996814e-06,2.356371286846975e-05,0.0021301847569115957,2.286222816045709e-06,0.00010154104139499768,2.7291096343078247e-06,0.00017783271068737196,1.8302135256302864e-06,3.881010634612429e-06,1.0270061632722045e-06,0.9998397284074324,0.9999737101566082,0.9999998231111027,0.9999999663562025,7.628296825770089e-06,1.962213506768247e-07,1.1030406526344702e-07,0.001589792445506112,0.008076635421744669,2.015848555859398e-09,0.0014087883807490289,0.0005112510745771861,0.9999913887022707,7.389104025156006e-07,4.967120315765307e-06,7.217249333261284e-06,1.2285358617111093e-07,0.9999994612858971,0.9996786177825318,0.9998810276661249,1.0245182103082142e-06,1.8237669182754262e-06,8.65285736188863e-07,0.00021499210888365847,4.722993497248091e-06,0.015426571659628805,6.033027273803069e-06 -la,rgb,0.7995361410996236,0.9999999994138109,1.6623670899228956e-10,0.9999999997847899,6.322512642359311e-10,0.9914554244533749,0.015161571296833603,0.9808544818995634,0.9353460856383708,0.6998975741664677,2.395720181082117e-10,2.270539936937744e-10,1.9320979062847812e-10,0.9999999996001732,0.9999999999998701,0.9999972100327769,3.4831456380729894e-12,4.087520991922388e-12,3.867742685428174e-12,4.3276757688358076e-08,9.864414051023614e-12,1.2922358132432076e-11,0.9861980031141665,1.0321694380269416e-11,0.9915007005287776,8.895530316763285e-13,0.9987293487604038,0.9792068240668128,0.9999864791252241,0.999994442617048,0.9910466971546044,6.399152836041211e-10,0.9749658019071161,0.0031900401721095374,0.9999999999891707,0.9999928437637672,1.0952877977404727e-08,1.0182494204840234e-11,0.5987602282670257,0.6312166002717764,0.9999999966671618,0.9963695967744811,0.9853920396155421,0.9999989093618258,0.8765435282058575,1.1246576762563041e-09,9.024067761708217e-10,1.606344213118643e-10,0.9165606706015639,2.9908888120744745e-05,0.9904384062853812,0.9999999975253062,0.9018306800949639,0.8839957402640846,0.9981607455398608,0.8229567592876267,0.00035383364768239964,0.00012913744652582002,2.29013055541482e-10,1.8484723438852198e-10,2.1464485863230037e-10,1.2196316900769123e-11,0.9999998923297613,0.9690342589129736,0.9999602269257719,4.0109058465349915e-11,7.723717344274861e-13,0.8665382019281688,0.9699282900967556,0.9573990732086701,0.93507962747391,0.9999999968966498,0.9999999886573353,0.8301090867887994,0.9999999952770193,0.9922526324825961,7.751183490602805e-13,1.8751501451248767e-11,1.1840758497006134e-11,6.112705154727308e-05,0.9946949486622956,0.00017339019922474113,5.9064429195280086e-09,1.5249059961898317e-05,0.9742125218221636,1.9542985486793314e-09,0.999991891389501,7.074214816162233e-12,0.09493188591035803,0.9950615580786272,0.9781092052054473,0.9999999973211469,0.0012407394126404878,9.897253876927784e-05,3.794090589138268e-05,1.9806481618284882e-05,0.9999363753964644,1.4549885528372568e-05,0.00024043870865244965,1.5890495869894515e-05,4.772007719178517e-06,0.0006452265234033514,0.5623323807797349,0.9999999995625661,3.9040331388881165e-06,0.9920144063694127,0.47329932466082675,9.104599550800134e-12,1.5815082803409972e-12,0.493351752383211,8.844086208480445e-13,0.999999998428553,0.999999999982613,5.906005394789272e-10,2.531254754801812e-10,3.002200447532421e-10,0.037454406414260365,1.952799747210407e-09,2.0524675385377555e-10,1.9783282725591834e-11,5.681525228508257e-10,1.0091250360837579e-09,0.00014449828763943157,0.9999999798084351,7.708956779151614e-10,0.004916239609050047,1.0416459975852542e-09,0.04572930320415276,8.918849032166449e-07,5.842792944208436e-06,1.9597657684360202e-07,0.00039538359649888514,0.9932500783504842,0.8406783580892939,0.024015469230690895,6.236088356447686e-12,4.2810545988556425e-12,4.412825016821621e-12,6.869648732304176e-06,0.9999933521328315,0.9999999999653162,0.999999727248543,0.9277288726271385,0.9999998937287231,1.6889212286629323e-07,1.3515451134469565e-08,9.378265863705284e-06,1.3000921241949477e-11,7.471421059467536e-13,2.57622624909779e-11,0.999999968714378,6.293463802418754e-08,0.9999830191524389,2.468654683449537e-10,0.9983716079438605,2.0217250846822655e-10,2.5717900331989934e-10,0.9988275208819783,0.9765489754993977,4.713485541754507e-12,0.9999442518559479,4.317435561859883e-12,0.9998800757347268,0.9951020770255709,0.9979258285510202,0.9991775257987545,0.9946285911234419,2.40628996851131e-10,1.8759972666488743e-10,0.9999999993626971,4.175020551889576e-08,0.99028455225352,6.109905681662557e-07,0.9999994504878793,4.669223061933027e-08,0.017717969797190942,0.9999999987166086,0.9999999999975566,0.9999830610004764,0.9987116148084706,0.9965601429426444,0.999998265813826,0.9999999999863523,0.9813371410392717,0.9918913276443788,0.9918348667650709,0.9999730061103547,0.9999999984103651,1.862072661206696e-10,2.3228731182726606e-10,2.24962458107587e-10,3.904090802759826e-05,0.8798622224984933,7.855677448186549e-09,4.653578976927932e-06,0.9505441955767661,0.01844709609015997,5.225764003816094e-10,0.9820360381487888,0.8506012182070017,0.9999999637120147,5.82280251041353e-08,0.9845772688897816,0.9984538160406958,1.5386057106226838e-09,0.7332719497410126,0.9976423725547348,0.999999994361656,0.9999999999996436,0.9849512099251735,2.1919717345458277e-06,1.7587112575231112e-11,0.9886477426168232,2.152060163367858e-10,0.9992678176577995,6.6692607681213e-10,3.9670315272415723e-10,0.9999999923086701,3.736497010069467e-10,7.726008321227443e-10,1.3803263867178197e-09,0.9999999254840541,0.9255549434756991,0.9107081203249833,4.4282402702050285e-12,4.437026594376719e-12,0.9999999994060083,5.59291432442936e-12,0.9999999934017851,5.6243770484277e-10,0.9999999999996638,1.1866130658518125e-07,0.9999999784969433,0.6251374464119126,7.177736566346177e-10,7.579651168033793e-10,3.672744382755838e-10,0.9999905242170792,1.8858206249553828e-05,2.165558282901658e-07,2.3163204875877726e-11,0.9999999999265266,2.9891866913634683e-10,4.3500206611930906e-10 -la,shape,0.9866357397443081,0.9998101123183983,0.999904119622996,0.5311289972443104,0.9999763115689829,0.9984464428078363,0.9763074032986949,0.999863643898605,0.9998546523760737,0.9987257486839569,0.9999965010725552,0.389775755471721,0.999870652604845,0.9999571123172765,0.9996891250585886,0.9985860405912362,0.9969368200013481,0.9129318151400052,9.11185457576643e-06,0.0003944768332355952,0.16903835820741248,0.9994499951171335,0.9999926627406909,0.9997996615213042,0.9999767216622679,0.9926959471453677,0.707569610291848,0.9999113385086748,0.9974610640669183,0.9999831712926619,0.9999011573137644,0.9999852310362742,0.9971297004873642,0.3503406088813447,0.9998024419661216,0.9997752915146695,0.36296491029598693,0.9441973685397371,0.0004115825940327549,0.5818775439644372,0.9998200903108798,0.9997138804539197,0.999999736707766,0.9999993232445165,0.999978117702853,0.9999469115072684,0.999966879301223,0.9999989053391588,0.9990225840264695,0.09893505144398854,0.9999975628985573,0.9091060591207029,0.9186968914943814,0.9998913043015516,0.29027510578843213,0.9999956538600386,0.9990392261914823,0.917505602574487,0.9170371782731817,0.9999800109669897,0.9999174500184644,0.21426494113168673,0.9860739778198463,0.9991837299200091,0.9999982904124683,0.9930255115553734,0.9998055341938207,0.9983292405353348,0.9998654854476584,0.9997108635781524,0.9999862196472291,0.9999886009431106,0.9996853544722523,0.9610916850864581,0.9999431562296742,0.9999914635470727,0.9990809409171825,0.9996998117503567,0.9984085304266461,0.9934357291337876,0.850938121936135,0.889408472380158,0.972633242537844,0.9574768663056484,0.9949743260737701,0.9969124295947782,0.999998704518163,0.8943837469542711,0.9857157508413114,0.9925585969086759,0.9993657387973859,0.9994041192520832,0.9932284733558805,0.9840873063919297,0.9992874447071876,0.9890882197698622,0.9999901321623321,0.999457226833362,0.9978355044858753,0.9994497049713971,0.9999127434060444,0.9981658436072317,0.8456291166513464,0.991692318192211,0.9830770631702592,0.9999953129781612,0.9778449795594855,0.9993878408246661,0.988559065305538,0.9999590508735489,0.9997961767656591,0.38984882182361763,0.9999247780967764,2.4315481984531615e-05,0.00010042898478374887,0.32132471479899,0.0004314511807143038,0.19253025239846253,0.00021394141783555426,0.9999992669401081,0.9999975775283119,0.0021013609938421423,0.04027774330445804,0.9999995615091595,0.0007221602704292997,0.0002025387141966148,0.00028315481987597346,0.00018311566688638365,0.06615816563836363,0.03690278509440279,0.00023255716745798662,0.15945328190744698,0.9978548408365984,0.9488557718985169,0.00028455126209302704,0.9986285432896652,0.9741035162929418,0.9623691622969701,0.25844090759490773,0.999999768706985,0.9995400783909852,0.9998751503859487,0.9999891309649106,0.9893174020364031,0.9952082844217512,0.07313042269698762,0.0004146642698186585,0.9960814876268314,0.9993481759336986,0.9705575842745808,0.9987647974669106,0.999650143036554,0.9999590887102551,0.9999980896433603,0.9904341658526123,0.9999684942346608,0.3897757554717228,0.9999628756369707,0.9998602950066225,0.034189788386195755,0.9974922042025441,0.19115527708990848,0.9983617498757961,0.9918025071660677,0.9999286373938366,0.9998249963656162,0.9999846579474687,0.997797658882457,0.9804026507867165,0.4456395389615898,0.9999406542601718,0.9996529158026016,0.9996376245149627,0.9999995776577192,0.9997332542147946,0.980978703571295,0.9990894432588802,0.9997799116844163,0.9999973114347636,0.9993863500631197,0.998827900571923,0.9999432639130711,0.9941986060725854,0.9997051562751101,0.9999982547371215,0.962589732160976,0.9995650435839639,0.9999435927643078,0.9999978890316519,0.9983347783410748,0.9988484596516551,0.9861121411259641,0.6588457704408663,0.9830028195026848,0.9999810193202404,0.9885350891639136,0.00038956244975223137,0.009272383604950533,0.9998650065592034,0.9999162747570081,0.9717523689950588,0.9993445226077963,0.9999789449781286,0.0900916844062353,0.0017985454564069438,0.619214117594678,0.9981381988546333,0.9248181456479881,0.9999967150363832,0.8666057702592339,0.020927862882954288,0.9327466218876641,0.9998303263235302,0.9994336199731908,0.999620998829454,6.185154486916792e-05,0.00018627446717086165,0.9999999270658548,0.999994324537096,0.9999913527035604,0.9999875226805828,0.9999233295995471,0.9999855920322008,0.991021988510471,0.00020892255632440766,0.23674726318545372,0.9993509361169892,0.0009172555313437153,0.9994870778428634,0.9999999068510832,0.8621401411414276,0.9942528404096631,0.9989419887885058,0.9980277703813145,0.9999975775283119,0.999999128598162,0.9999957425312707,0.9999923125087978,0.8207403717938893,0.9858202047200674,0.9724409306255573,0.9761466879864766,0.9760693336498735,6.079473407124039e-05 -la,object,3.4702715239275703e-06,0.9999996281672064,0.01607052665615046,0.9998322338506367,0.009268392068843946,0.9793201349082788,1.1955606377093329e-08,0.9994503282936924,0.9980605810701934,0.9922881252246187,0.7322177514303996,0.0010470000438177552,0.5125729265738446,0.9999998824632055,0.9998412634024564,1.213959320618239e-07,0.051254511360390165,0.005525578162331942,1.4088847478586524e-10,1.0064017093924532e-06,0.00016472874185913605,0.00026118257403176103,0.9993810329277019,1.3545230450738831e-05,0.999901439348249,0.00033127294727639624,1.7676221457696529e-06,0.9998189962634898,3.2761733085804395e-08,0.9999999981230636,0.9998928376594701,0.037569637197290714,0.9314660312284344,0.024259695871982293,0.9999987167749147,4.60589206571965e-09,0.03264988784857921,0.005421094107210646,0.0002679783835119292,0.005442680833682881,0.9999994065360245,0.99999978607732,0.9997818893477077,0.9999999928901979,1.536531818762923e-07,0.10331619595118482,0.0035858043492009877,0.2310513266665487,1.1032332195582676e-07,0.09798659798633863,0.9991345068377625,0.9991801437452847,0.9465262639065285,0.9997410479586125,8.069202036420335e-10,0.9216995171325977,0.981942142760936,0.1839344874141958,0.0006441843630650438,0.9814402045686202,0.9142952532858688,6.440897099200273e-09,2.0716501897277334e-10,0.9999924611625546,0.9999999995530882,2.3644868776395756e-05,0.0042101689366935095,0.9926014151597558,0.9998196227387703,0.9896353205273096,0.9999737313974957,0.9999972307452227,0.9999723171741015,0.8630503892508596,0.9999998942598248,0.9999999550274392,0.0008884209719720292,3.2650187863756155e-05,2.6284442384737683e-05,0.9954881672427842,2.44357644618601e-06,0.9967363002246257,0.03453158137627134,0.03390026089843795,0.9851806581007216,0.12961841124140117,6.544808060818132e-05,0.003060630234323308,2.1763437415917348e-05,2.1127938410788972e-05,0.9994300654643454,7.370923798861488e-08,0.9745468196105682,0.9980337780340132,0.9833375544407534,0.7545662168876118,1.8042847177271064e-07,0.9979648222985621,0.999929332506161,0.7830591410022912,0.9914741683866433,8.98206872427338e-08,0.8500097538369906,0.9999252981977146,0.9948485757067747,0.9999215284062762,4.579184497837976e-09,6.679225220508126e-06,0.0007316143620435284,0.9944494688802052,0.05791343056351912,0.8388690451123695,0.9999830770135228,5.345718857307354e-06,3.932780054159094e-05,4.836936173927909e-05,0.00020207415502929214,0.0015756065941192562,6.917561698058353e-05,0.8167329303281831,0.04795933101429276,0.00042716266305348064,0.07529627952623132,0.9999998628381085,0.000589696121901674,0.00013689854484673532,1.606584840532874e-05,0.00011241287393777262,0.12042911517488393,0.005284166818632211,0.0001927089931444183,0.006024797426876327,0.995352789256467,0.9641923788687233,0.00010859708075459369,0.01597023928256857,0.002531156480358809,0.0007610056849229206,0.3215995295724047,0.9999999998865587,0.9999957326576427,1.0436841738496064e-09,0.999997175496582,0.9999962259250224,0.0005846669601987332,0.054335712298728814,0.00023798021724242874,7.019958936296732e-05,0.00046368253000096286,6.226710595624152e-06,0.9999898502716107,0.46746296561781747,4.055627223384983e-06,0.9913772790288693,3.33693657833133e-06,0.9117640942428622,0.001146845110798893,0.9999703902014855,0.9999847876929984,1.0294591995415563e-07,0.999971915718405,0.0002385971876617668,7.293591531519871e-10,0.9995893114519989,0.9999582579732473,0.9998177974029133,0.9999190870859012,0.19323817855066794,0.9699428631978629,0.9981873359954502,0.6721092566208228,0.9870166615737834,0.9445565752781037,0.00021093134610619967,0.749248984379521,1.0786552721002534e-07,8.542372457684928e-09,0.9999963565984097,0.9999965918429743,0.9998955978588636,0.999608722065449,4.729243214040641e-08,0.9999708218337787,0.9890656529114414,0.9998946327825924,9.537477173593908e-08,0.9999543578909497,0.999999997417764,0.9973303673750307,0.17111734823364988,0.8010799072544155,0.13688075967255334,3.0528746338838435e-06,0.6454552161621725,0.9955645187029338,3.680460735852236e-08,0.00028426861467015316,5.62295143976691e-06,0.9895702983211463,0.9918675926086977,0.9998725508064962,0.9901263608307582,0.9999777513239475,1.444050707016916e-07,5.987401572036931e-05,0.005912624182219147,1.3368318823608878e-06,0.8820461674636815,0.9999999427469397,2.3359586942472216e-05,0.00041369101307567986,0.0023790072931299177,0.9998131741426771,0.8348420367103498,0.9999384061448515,1.5518473287644132e-06,3.99875607404296e-05,2.9053780902649064e-07,0.07422974647905226,0.010037128847500857,0.022111930113499458,0.9999765155708461,0.9999717420293899,0.9998567369309456,2.600506158018823e-07,0.0011975310091752835,0.9999980979570011,4.167753999042959e-08,4.0320749561620275e-07,0.0784391903901715,0.9910561770381218,0.03841918261637182,0.9999388931098043,0.9994129908757687,0.05732266535108621,0.9813634510348779,0.2973403997830443,0.9999999994243418,0.29154883102074924,0.5151819321239473,0.00507970556154782,0.9996329870006999,0.003101486818896489,4.030714254922045e-05 -larga,rgb,3.2009839539010017e-25,9.99159574187187e-12,0.41653336921996725,6.25735146211827e-38,0.003494416908737136,5.743422624576649e-05,1.6069388593077717e-25,4.287874567201566e-08,4.4918867035861486e-07,6.926026761851643e-07,0.9986727330747478,0.9698315818599924,0.985502169762911,3.2809467828917104e-12,1.6646666799285864e-42,1.1506044683895885e-39,0.9865606027383901,0.9910891927174119,0.9886493993534946,0.9995908790232076,0.9690098134209886,0.0003689157986309055,5.434224775083775e-05,9.684014806935988e-07,0.006427098509393631,0.02344379529544191,3.355007285586725e-29,0.01316474974276141,9.244066562841388e-38,4.2899865898357524e-09,6.110153561435075e-05,0.0977028995127699,0.0001344987382367832,2.500333027291519e-06,2.390616960101658e-33,5.316785854236695e-39,0.9997888182657024,0.0904100339522531,0.035483899400308584,0.003372516682461227,7.380335409128493e-35,4.928580152354101e-06,0.0001177599178867608,1.237115321808732e-10,2.959253596934055e-31,0.7792478574967845,0.11907369380326842,0.4242870125933838,5.087729899979592e-31,0.480452128338637,5.916026230326752e-05,3.117139554435483e-35,2.6886922879716235e-07,0.00045257774356974973,1.4030448190881407e-34,0.0017032047444845266,0.9669713640677908,0.9756078192363564,0.9769723229264722,0.9924891290576014,0.9986574201175784,0.9314321975101569,7.576499976165814e-42,2.7716860978849884e-05,1.940176679125396e-08,8.345639233592131e-07,0.007768866257194352,1.8361772694644474e-07,6.390565050750443e-08,2.6159391815581576e-07,0.0002925878988861814,1.241284614225104e-35,6.765477816894667e-34,1.2017421644612634e-07,1.0050309038539522e-09,1.650035250844741e-05,0.010728298950896246,1.8947256447595373e-06,0.00017710569136469652,0.9807517938580209,5.188422297480197e-28,0.9803548445463781,0.20445856266027923,0.9879551760769781,7.903383005319097e-08,0.24330844273782434,2.3622677297870277e-38,0.06243974436409342,4.56816691737822e-21,6.363197882206779e-28,3.515753676247684e-08,4.858078045786189e-44,0.943707066804307,0.9689483909155059,0.9827290541264303,0.9860749394089402,1.1070507829406826e-36,0.9881225292375746,0.9760053800951293,0.9894647432973354,0.9927986656609308,2.287763472872429e-23,0.004055398212442893,7.169718300757233e-37,0.9909326894355379,5.9205388878662514e-05,7.815051358742077e-30,2.181690042872537e-06,0.04924967437034375,0.00418603995448995,0.173333659384638,7.047331425780854e-36,1.8787670963406706e-39,0.966940828148033,0.9963291446587437,0.9982158289055388,5.126279026697333e-06,0.9994816028259698,0.9637514852098898,0.6205838197649405,0.08167399907848565,0.9986035594604357,0.27150929413937536,6.814130446185855e-34,0.9831488253163098,0.929027111568294,0.9983353180932362,8.828523666484949e-06,0.9646371301531824,0.008974888060766354,0.999734954244491,2.982806680657705e-05,4.447043664179122e-05,1.2912744275812986e-07,6.239605117230365e-06,0.992336002191332,0.9891823554381391,0.9911960243325733,0.837464094633953,2.937266244554732e-09,1.112390585988889e-32,3.9771997933182024e-40,0.0002910021147446297,2.667845215220647e-32,0.9991489698421222,0.9997985973758183,0.9987156864315532,7.128471701859099e-05,0.006316525073986189,4.889367831342098e-07,1.477584700700003e-33,0.949797103435482,4.770954211242183e-38,0.998779460735442,1.1679515368905377e-34,0.9916060723417623,0.9812495556475604,0.0015850956306456495,0.022852618781593486,0.9857284337140786,9.005495443261721e-05,0.9855586605591097,1.423706153279435e-38,0.004894245605609176,0.0018477895218221019,0.0005584227481657419,0.003612820921803584,0.9886811196319379,0.9932938194256525,1.3888621274376353e-36,0.9753366597248837,6.039604283704952e-05,0.6436403228889824,9.63973214402824e-41,0.985152346999528,1.2239239707289974e-25,2.0700604372876753e-44,7.721806730702334e-40,2.443383768473838e-05,0.0016565485173321267,0.0037160159096542933,2.7181542572608155e-40,5.108127690072952e-33,7.673875876916859e-05,6.0446009429338194e-05,5.854481838930507e-33,5.855947813925661e-28,6.311715180690635e-11,0.9931662383395385,0.9818865246002649,0.9988031293451473,1.90751713189214e-05,8.2854625026584e-26,0.9998329244707592,0.05490884119317104,2.806702197873286e-31,1.8108960175633687e-05,0.9924119465176303,0.00010359650664079413,0.00047481731659355567,2.8103217886028282e-33,0.9292908149048701,0.007354505069978066,1.0574782164439027e-28,0.9993360045643043,0.0013656226152775652,2.0395755349593626e-34,6.93145458102017e-35,5.856948397551837e-42,1.479341916406077e-27,0.003760519001645163,0.062248594948779934,0.008577879077848712,0.9873195008485232,0.0003576510611747289,0.9969283617320475,0.970411431876478,1.6417835156262463e-43,0.6150856022872249,0.029119451861871225,0.03538452408266343,1.4086539570513225e-32,0.0003012665366580103,7.038813476857926e-05,0.9924174272295475,0.9923465252237516,1.0199760617831513e-11,0.9948088569546085,1.3759783921328789e-43,0.08332117053600833,2.454449033130678e-36,0.0005011119111707755,1.5086806323057854e-33,0.0027068742504606897,0.09846052513912251,0.982480931461987,0.9344072513908241,2.5097144830072318e-09,0.009619613272591499,0.7903092432585022,0.0074338106417506135,6.711016962264922e-32,0.999489906216064,0.9993210469779567 -larga,shape,0.0014824035893979046,4.157025884411436e-06,0.006711503134471826,0.0606607263259437,0.48325606556724693,1.768900795867771e-05,4.4361335226953345e-06,0.045058013358088185,0.06976555003354476,0.004469896028195221,0.37705352866322656,0.9999754028635717,0.9644410258862529,7.496732283857955e-05,0.0005675186720483887,0.00039495572565009953,0.999983586299905,0.9998245006717751,0.9999907657396333,0.9994522120934406,0.9999883850331914,1.00189837230501e-06,0.003762037413907917,3.273444071341935e-05,3.108313963850691e-07,1.6808921902299492e-06,0.9266348949769225,5.506135346394233e-06,0.010719629678436418,0.04649352980020637,0.00014304217766336516,0.3473906946678961,0.9742569091902104,0.03451444004436051,0.9674864034409428,0.9796778979142147,0.9994249315381063,0.9694617604090726,0.03475021548428929,0.012846141028418847,0.9995333290236811,0.9985058042923456,0.001961044216396207,0.0014027078553957393,0.0024494607087317943,0.017016090026521203,0.25886505362146434,0.27008272873540146,6.1009047079623855e-05,0.0016641390007564982,3.2797041489928127e-06,0.000508787350704907,0.2921944703722054,0.9980005098082443,0.016113731954957498,0.9974914439661122,0.9985113801707693,0.26329548861738605,0.999889185219332,0.06377787528591855,0.2938142995259624,0.999677762819351,0.12452465259614315,0.000172509253312346,0.0021926162675408763,1.5121703813245558e-06,2.631181100183612e-05,0.004649253446481911,0.14447072658988186,0.03523786656443324,0.9997112079419972,0.00016208288500617113,0.0010285955970031331,0.5390440992548475,5.3389189125881515e-06,0.00044112380822256865,6.4900802838392e-06,5.728812352229641e-05,3.6815205826255615e-06,0.9712708651186089,0.6541963351389407,0.25911244146233875,0.008265418383675695,0.17717684726337019,0.9173854302201944,0.0055711624074843815,0.02958617596664233,0.9950589492570139,0.97351645465078,0.0010512781990597777,0.3590334618089768,0.0005109164365365962,0.9870102311446803,0.4696364876660953,0.9874029337679,0.999614627402191,0.0017016417881141265,0.4458507588067575,0.013082414169061822,0.20927764840049773,0.29838528399604447,0.9959798438092621,0.9998603186226332,0.9995155676363969,0.0017249361311799422,0.023443565963801108,1.8314719975863936e-05,6.544751595013642e-06,0.00020647310202597422,0.9999573180900502,1.7027646231040317e-06,0.480544978029936,6.826813253046596e-05,0.0069588682439869565,0.47869659010654353,2.304401041730499e-05,0.00023813526808415784,0.00045571860800654857,0.10334521941839754,0.8229784563383378,0.9984562922795693,0.06606062462911094,0.007354028668610876,0.7772419497528806,0.5693496625741347,0.970277345736596,0.00029907906323839076,0.009520186567459244,0.0016702192238977405,0.0009132554056775564,0.5433701166512751,0.02153344605085739,4.877450230412817e-06,0.3324839031390528,0.00041865306554790717,0.9999993096857485,0.999987896198011,0.9999996156415439,0.02273106533257248,0.0030368852891685385,0.036521199528028285,0.964264864131152,0.2922249963070119,0.002231294412943949,0.9969950889686556,0.9996176070612754,0.9999581768190833,4.064510598003477e-06,1.6482335758727782e-06,1.7654615867839272e-06,0.0003586493907587206,0.16696964819093418,0.2309728798676588,0.0011828950594388915,0.03273926687624579,0.1144446968968065,0.9999754028635717,3.0933263640292394e-05,0.00011539544874113907,0.9999853189346922,1.3944790336617663e-05,0.9999833808420434,0.9939011292769423,7.951640597196801e-06,3.6277246628497734e-06,4.853237727362714e-07,4.716978455774132e-06,0.9991146529831617,0.07643671669267839,2.3730411641824548e-05,0.2720503285491482,1.8033761757047762e-05,0.029411431418344403,0.024909972685650008,0.7039758015319603,8.652910377113142e-07,0.0002627540694621957,3.092043766302088e-05,7.0062460110136255e-06,1.255116147378845e-05,3.5572987544056015e-06,0.9660839726853641,0.037425275465681224,0.006542834536097341,0.00313633611643305,9.412824564784861e-05,1.7777286378182475e-06,0.00023528491360560308,0.07306492899037045,0.9998447975527908,0.2549728917894171,0.6407349210200215,0.9874549673145173,0.9995300449064858,0.7129519146739752,4.900567232499981e-06,0.00108322966253427,1.7998437205334273e-05,2.013413747687449e-05,0.29214345467929187,2.1707530745210114e-05,0.6264409222962251,4.530877569767111e-06,0.9853239465737845,0.002435797263409571,4.89750180007054e-05,0.002231834177979296,0.0007248506898555186,0.0008575585418030654,0.96098444677572,0.0008085827294733169,0.3589685759201285,3.127785238330899e-06,0.9989144608974316,0.00038811895464143254,0.0052351661217277645,0.008646829869478508,0.0001871155354068596,0.07183377237410143,0.4684962510886014,0.35498864810800157,6.789460116643877e-05,0.9998174357615045,0.00028483949522238155,0.9999999343336939,0.9999530478465966,6.795130140000588e-05,0.9999999498228568,1.0759018590377938e-05,0.0034053439955633326,0.015256615660582189,0.5888256976805066,0.0029359533066690945,0.999982966198138,0.9984562922795693,0.9169417139857192,0.0021549961546238196,0.08820082545039229,0.049637379153932897,0.8671055721405398,0.7806130866409993,0.05606645567697599,5.0378608253558094e-05,0.9838572864501177 -larga,object,0.00492563552983241,4.529616392918263e-05,0.028428728231879086,3.3951633796399312e-06,0.8826745907050018,2.0764314548372056e-05,3.474258727187329e-06,0.2713608467296836,0.11341879268628023,0.03845964381543206,0.9901921175183609,0.9999939496609261,0.9995061704440897,0.00026768356889102896,8.832125452481867e-05,0.00024390976970605966,0.9999721175143862,0.999865022986558,0.9999989317145831,0.9999884355407184,0.999996204050075,1.3447544046548638e-05,0.011585707628429004,7.439602482102772e-05,1.4168835944244052e-06,2.38600066685955e-05,0.1182302238960817,7.302108846704134e-06,0.00015257913768603872,0.007460602211758611,0.0006416779270046354,0.6120983362987975,0.9691547682030547,0.02458995923221933,0.003412640120992856,0.2081678812319462,0.9996285064682292,0.9815938775726781,0.9415449608338619,0.561108649476422,0.12760235557436478,0.8800770560745734,0.0006158586678826366,3.610330303009575e-05,9.352284150097321e-05,0.09995068738515588,0.6470671929284171,0.6463242916492088,7.1563322105462254e-06,0.005793806770491332,9.749326355381797e-06,4.048775602868094e-07,0.14643562513617966,0.986667650956423,0.01461408208824068,0.9949471247845989,0.9997380585958734,0.9758687837923237,0.999961241572313,0.8340846050067647,0.9362077326608754,0.9998889081021326,0.046833087631984543,0.014564545161384156,0.0008186394821401235,1.2953096423844172e-05,0.000141780147065897,0.01880645072775172,0.15438604817839122,0.23833899473769096,0.997529423628678,3.369504331332444e-06,0.00027072207839876436,0.1966081330776149,5.97469181304291e-05,0.01501970730749935,4.5930863695127e-05,0.00028633683416771395,3.741301541413873e-05,0.9816225500306893,0.14975258726515422,0.7740110476697105,0.2896566830937882,0.9664696130422148,0.5014522857200774,0.2873671448895301,0.00404541447071497,0.9917216856944472,0.9713315321625579,0.005949926203048112,0.166758018542197,0.00016416686069722387,0.9989132004984159,0.9519939653613857,0.9992741927681839,0.9999403781832892,2.4608336205611967e-05,0.9818645785370764,0.02610872461856672,0.9618204231808176,0.9269747010419026,0.9826774123637074,0.9996070544955739,0.352339483910427,0.017451266903672474,0.04532934958740743,0.002426163752677422,3.072641568077145e-05,0.00045680570332713933,0.9997957584595577,3.915732237247014e-05,0.01654039286367675,1.3599771515006555e-06,0.6823848898759038,0.9468130573624638,0.0027650361090396317,0.00028029593699961365,0.1226316439956567,0.9151646752206919,0.575594424858702,0.9970858716101729,0.6114775774732567,0.010424188226816684,0.0028350640755904653,0.9579085066402252,0.9985958596874068,0.05558333296093568,0.004856103460063158,0.005093509578705733,0.005202514046916099,0.96993008883597,0.025189353779913375,3.297837506977046e-05,0.12705548185232446,0.00032786082415862434,0.9999999422630304,0.9999919087771635,0.9999997079921101,0.046687811574164004,0.001801482280784707,1.6443614889849485e-05,0.1796043066276902,0.408472608783507,1.7517638665799156e-05,0.9999703482496455,0.9996135905361982,0.9999951177262025,4.459873206707034e-05,2.8645676468433e-05,2.40594576429724e-05,1.37050514764136e-05,0.9256049130121383,0.018667074908113077,0.38357200763119553,0.0014421505170649428,0.9210323231983075,0.9999941153000185,1.3015358152017595e-05,5.799750483190328e-05,0.9999985176723312,9.59863349888278e-06,0.9999954553508701,0.6880855971669274,1.033020892086259e-05,4.972702839683584e-06,1.2658127871549428e-06,5.717408799141307e-06,0.9994973410868975,0.2655817055575562,2.1199579926625827e-08,0.9937742986188015,2.403579506656651e-05,0.573988934615019,0.0012636206140614,0.9804404936074143,3.1427519652543394e-06,5.111874562259191e-05,3.17329958456502e-07,6.160492292534452e-06,8.399155447772153e-06,3.34495848128998e-06,0.10716070982015004,2.2395749888588564e-05,0.010055948614171266,0.011665601976172859,7.582708159787051e-06,2.8633233965571864e-08,0.00041930959713425207,0.6016214612650836,0.9999705937965964,0.15087799947077965,0.6408374387704352,0.7487644994981165,0.999806274212168,0.9459872333777295,2.4497794899139916e-06,0.000808712745918942,0.02463707832158856,2.8916277597271934e-05,0.8701459336542001,8.024822929168756e-08,0.8996799305694105,1.4565152193509626e-05,0.4609762941447434,0.4191560269850008,0.014931837054491822,0.0006616096843158442,4.7915755844278684e-05,0.0002452798939768898,0.6167486411475489,0.003805539068527858,0.8629884410893657,4.205053806321769e-06,0.9993581750015682,0.0001326256097080764,0.6527053348977591,0.208965002241193,2.0633897963705126e-05,0.33759175802737995,0.8130761199687903,0.8429464420899863,5.1615918553878704e-05,0.9976172209480206,0.014277088092470584,0.9999999274437436,0.9999892368821506,6.628429113669286e-05,0.9999999595638619,6.0192079009386186e-06,0.22104066046293339,0.0014065450824568867,0.7170571085506506,0.00041365203388163386,0.9996441923812818,0.9970557192298523,0.6840087325207749,0.08045598064063604,0.022044413087826616,0.05050277915210568,0.8927194113074155,0.8990986768264607,0.0017253487534200436,0.0012579211621826087,0.99045410700616 -largo,rgb,5.665667976706785e-22,0.0010157736578521425,0.7578217403175055,4.499652528645816e-28,0.03683362284521852,0.36183359709888624,5.732073557487321e-23,0.0001842433902655932,0.001284113349743129,0.0009668264971265135,0.9994772735720271,0.9915724391587148,0.9953628869062802,0.0004370536027011588,2.918037593814712e-31,2.1984083752564715e-34,0.9568811181064588,0.9742326532862011,0.9635887716878735,0.9999293164754222,0.8997374382907555,9.952201042634968e-05,0.2992067871316821,3.005844875671388e-07,0.9934159530419822,0.007240774286264845,4.0316291829648987e-25,0.995368588003537,9.15862395472187e-33,0.01776074081541348,0.37260782671893544,0.49290869118147246,0.4665009238545947,0.00028958454996490105,3.893084717809113e-23,7.210754810580828e-34,0.9999464518392653,0.023910477895296343,0.9902842379207974,0.8797449145945635,1.4917309936323487e-25,0.5766800967697246,0.49328058681570813,0.0012678451765763907,1.0572483631943672e-27,0.968849825721118,0.5808406825947724,0.7604399190662069,2.0038090255988464e-27,0.9686271186060581,0.3572491312174058,7.254031578249446e-26,0.0006247745178308345,0.6118296318309729,2.425375967644215e-30,0.8443880279648166,0.99993685691231,0.9999360383868152,0.9934455582395775,0.9973737395319887,0.9994461103487405,0.7955892057976494,4.69749010821153e-36,0.7669700811548907,0.037531950968642216,3.330147704128021e-07,0.001663963924836819,0.0003653117600258292,0.00023166357731571065,0.0008725745759677679,0.5659168893171388,2.70508987127006e-26,7.933031550142508e-25,0.00020997452179314456,0.02682931556482488,0.7579051447861886,0.002841144676686169,6.333136733932756e-07,4.763506107509274e-05,0.9999354390660516,3.670893147383499e-24,0.9999498255202725,0.2769180889295147,0.9999347269577239,0.0003083205977632889,0.2532351751054167,2.8865012543232124e-33,0.014976612914676724,2.007940969759584e-18,4.5760582329283145e-24,0.0001417222035299471,1.1233251604489163e-37,0.9999282052072218,0.9999164811566674,0.9999325323085292,0.9999318867320997,6.262290566791203e-32,0.999934581120917,0.9999459243286,0.9999421263749361,0.9999394903462521,2.754835042877183e-21,0.8873175556386266,3.658644435002652e-27,0.9999222598583821,0.3770101493415164,1.349871312837607e-26,6.422033312088964e-07,0.02359995332765907,0.8779175837105302,0.049200040435688146,2.0417668554979537e-26,3.999270942617324e-29,0.993880993223094,0.9987791495764174,0.9993911322274263,0.001552361260969423,0.9998991037750399,0.9895702000172013,0.7154298849524148,0.4344032097245422,0.9997020804469546,0.9562459531945436,6.357017562087985e-25,0.9970424155033334,0.9998374648984132,0.999658562118239,0.0029499670683676366,0.9966517783679567,0.11590989224879428,0.9999796323230407,0.0016988869776102813,0.32318886368555394,0.00023324956270733997,0.0015953709149909817,0.9756951165384797,0.9645850367897564,0.9725151141585295,0.9909210413263265,0.012201065534832592,1.103403923069363e-22,1.5752387797785966e-34,0.5515459697078626,1.1661931966080153e-23,0.9999027395106664,0.9999536304128723,0.9999758894137861,1.9937640609504912e-05,0.001453415626045508,1.8219395315944136e-07,1.1348525886066742e-24,0.9868586596004243,4.558247516863551e-33,0.9995191288801643,2.107952344561176e-30,0.9972122937933442,0.9948282693674944,0.9900106367945837,0.9982663935076782,0.9509231262776703,0.9434879175105373,0.9503640055577067,8.309747938725441e-34,0.9937357847539224,0.986633455320985,0.9650096577605435,0.9894470441698278,0.9966240066859984,0.997639769292774,6.002094749487657e-27,0.9930131101253632,0.3607724397754781,0.9346814559168087,3.3072524504576573e-35,0.9961325109638727,4.6163007362131016e-23,6.188538174864903e-38,3.642597412656574e-29,0.8647177407659384,0.9896914909214577,0.9929604938495503,6.371691075822474e-35,7.405107793422588e-23,0.3514043826786364,0.38070817169838,5.575278016371991e-29,2.141323424526477e-20,0.0037339615955801404,0.99759227390983,0.9947636013990446,0.9995072468095053,0.000468477381833957,1.8420807222575639e-22,0.999955330618595,0.45290516521619534,1.3302401122603096e-27,0.00432140089250931,0.9982997364853929,0.43401383315708864,0.5929595246083673,2.000238001142788e-24,0.9802553856870807,0.9916620423122977,1.1544169964781123e-24,0.9998645669599059,0.7697375551289483,3.2289782977167735e-30,1.1396592764369392e-25,6.687554653238767e-31,7.313695306428433e-24,0.03620389193777896,0.018106987753517243,0.9945883052174995,0.9960771113309892,0.9435391388731434,0.9993057230936504,0.9934736585089576,2.6299684614094124e-37,0.9039470428278218,0.24037958998538808,0.328982012646706,7.213627408389853e-24,0.5573532996249884,0.8426554354329969,0.9787879066109154,0.9793061910488934,0.0010302953863166667,0.9854164095898266,2.3247589069136913e-37,0.43833777996417644,1.9087341149646766e-25,0.001781053100876452,1.3437364569963586e-24,0.850006956618418,0.5072637518183156,0.9969149499657465,0.9857770910509722,0.00963632276403265,0.17771770341614912,0.9551207228098963,0.0022139400950270953,4.683017491735531e-22,0.9997829429311477,0.9997680969409677 -largo,shape,0.026408848907852493,0.0004960859852624649,5.2069959783118025e-05,0.00042234191550967985,0.23066687278860534,0.0004726749684518998,5.945543744300538e-06,0.9401199643529746,0.24615251336363156,0.018238884880274146,0.9285338152602064,0.999999824130361,0.9999737234770995,0.0010176114052725372,0.8906910247070816,0.0003813899285293451,0.9957891010804983,0.9998086592812881,0.9999979571832869,0.9999999833739772,0.9998376711221805,8.508001812959458e-07,0.04726777699083525,1.7652088239031772e-07,1.3743994096616325e-07,5.3216844200527134e-06,6.945425031630523e-05,2.3221728953728055e-06,0.0034356241332879987,0.00023810843710571946,0.0005109178043977796,0.002666934015863699,0.9902591637126636,0.00032274362126859886,0.0021026273591465577,0.00037037370184666457,0.3149140911680744,0.00038218477127560657,0.999372925764732,0.9012731213337059,0.8791794547418376,0.9119593246843039,0.004673426512198742,0.004666970845380967,0.007643909892020234,0.00039841605655709984,0.0006044312453634998,0.01465846717618395,6.237570102725773e-06,8.317505536032281e-05,8.7251411336353e-06,0.0007199273351638901,0.008810398832609782,0.7489316037283251,0.006502790416644423,0.004050868357254331,0.9999577319250885,0.999964659939216,0.9999995028847979,0.49735918842903437,0.04492530686271627,0.9952603651776845,7.087083650261471e-05,0.0776145860164987,1.0200986884846578e-05,2.61851004645268e-07,3.0375491579162486e-07,0.00045813538898165264,0.01344665940391701,0.9118609866931467,0.9903013318419548,0.00014280557187075631,0.3675814692610035,0.005428903268793205,0.00012248007639655288,0.1643388968744945,3.720220804053317e-06,4.472542534268798e-06,3.96534571189035e-08,0.9696045983341843,0.01609252914409844,0.9998879182742129,0.003785985503289634,0.9999508424799476,0.40931169920959826,0.018874198272590098,0.0001704054767153208,7.510926639873273e-05,0.818468287920563,0.0014892675242150714,0.01620557503379884,0.00023816453242436926,0.999945742484722,0.9999920473838256,0.9999313634452203,0.9999960083150768,0.004177248630968793,0.9999628227267403,0.9825647878386939,0.9997107127121224,0.9994673083391463,0.9954057450325063,0.9994681949828925,0.9997209520377568,0.9994034326163588,0.0001385359600684048,0.002899105100874348,1.1313793610641587e-07,0.00024299085946071275,0.7332129926705238,6.221972454778111e-07,0.009084105265034432,0.0003758271081839685,0.01996588101187945,0.27226863104839666,0.0008358526617558422,6.604033285506771e-06,1.7169561115879832e-05,3.1878460998350566e-05,0.8501254659980686,0.8493454304999902,2.4155247074592558e-05,1.0988781629046521e-05,0.5586338791172435,0.0035687248829954976,0.9994193789233471,0.0002090196516703967,2.5204833025487824e-05,0.0001586575114226186,1.0145484654887615e-05,0.9993971457953909,0.0001354133472965158,0.004638499854939487,0.02922917965948827,2.6106807243424246e-05,0.9828882461132313,0.9999557545965015,0.9999317557965388,7.580303913666696e-05,3.784039884968745e-05,0.011070843177980896,9.953065072199996e-05,0.6485463201637953,0.06537586943422731,0.999960790021181,0.004827497223849053,0.9999998970278756,1.482086102082321e-07,6.699999902080789e-06,2.8407293306208717e-07,0.0029023350991455813,0.9352334533961015,0.001290601012208866,0.011570663725678203,0.03782004003450357,0.9506346525678765,0.999999824130361,2.3346698605892638e-05,3.693059897669792e-06,0.9999829384590002,1.4344523993811972e-06,0.9999808529188291,0.0002458912102200764,6.5128032636397574e-06,1.5036282679614565e-05,1.9572697163595e-06,2.496818953869638e-06,0.9996056693471016,0.16659801853522857,5.80781263404231e-05,0.9999609502326717,8.073264468859469e-05,0.9053948951784139,6.273945094900539e-05,0.9775683078746407,3.0314330566557275e-06,0.00023280112882027417,7.094475191673681e-07,4.665607144923281e-05,9.756757687964766e-06,2.7868360504062343e-06,0.00027164955907660505,0.0355010942664402,0.0056885357971907845,0.0001365353844827782,4.796828669241113e-06,3.695763210376454e-05,0.0007998340076868494,0.1279513952859808,0.9999982546022348,0.028892410635404424,0.0033942111919857583,0.9897330008697193,0.0021239055693609878,0.7515366918075128,2.4904685799123874e-05,4.399801262700806e-05,1.5061691762604426e-06,4.882435507066728e-06,0.9990815313977348,0.00020425353835323663,0.815194253843135,2.295240005141962e-05,0.00037123624211397047,0.32872353031021895,0.02543555232043448,0.4978247423836175,0.018939871082288964,0.9989290094284067,0.13828082713482936,1.867269834891076e-05,0.0002100638208778972,8.502916557996386e-07,0.9995508475178052,8.347936881444207e-05,0.00012900970036715958,4.822057987109971e-06,0.00037972059452048493,0.036014641845503265,0.005872133224711582,0.12746560314551764,0.006342775768132257,0.9922778003679242,0.8729980347576785,0.9999961789348448,0.9994331044744749,0.00020376941027835333,0.9999999369416561,2.3810891581371916e-06,0.008643798111334007,0.006430640549832291,0.013678503674595978,0.23346098317701003,0.9825205689815464,0.8493454304999924,0.06046955850117868,0.004507536804851947,0.00047000375182535667,0.07992577240820668,0.14803863849771678,0.0002689141297338084,1.9969543340395528e-05,4.4919787038547925e-06,0.058848937345734306 -largo,object,9.985308268774065e-06,0.000387185163270778,0.8545581648785306,2.04557845305287e-06,0.9999635434832649,0.004676247747824526,3.9859141199977237e-07,0.1650234526415421,0.013159136481240162,0.0008057760874010381,0.9926166411771487,0.9999996998366292,0.9999786039119233,0.0007609353457357466,0.005288204410997283,2.3671330721263496e-05,0.9997849747079275,0.9999306556528681,0.9999999154115844,0.9999999940157416,0.9999985673579893,7.714076251499075e-06,0.2378360719975443,6.802353491362732e-06,5.996667983170374e-06,7.313810138132849e-05,2.2211771188492512e-08,1.819366554943024e-05,7.301880770102011e-06,0.011234668047885116,0.00039007751524803544,0.9982544531369418,0.9993822122445349,2.533573994014835e-05,0.037398694654236536,0.00020062950503420268,0.9683752651819901,0.00030806343910192536,0.9995687972481632,0.7686494711197489,0.20135295646968074,0.981125551043579,0.023032842053201143,0.03078190222312966,3.681189656190405e-05,0.6000522969701592,0.9964385710725963,0.9906728876517474,8.68028457759746e-08,4.119728325240796e-05,0.0001538176322717273,1.4805609488228214e-05,0.0001792574364441876,0.9113826679105663,2.8195365921994543e-06,0.9505789600478959,0.9999445463592896,0.9999763507481618,0.999998839805671,0.8346973534053691,0.5263416399554152,0.999937734840164,6.326647688868135e-06,0.11513056684450748,0.0003406606074469715,1.766845095221012e-06,3.962806223676055e-05,3.0436271920084612e-05,0.00033817503752618216,0.11838914561562579,0.9968264848579267,5.234304007942184e-06,0.004833983135549634,0.00010652153312339937,0.00015962410898690994,0.1938157393335785,6.229522814865565e-05,1.2482028089592679e-05,1.150712412557898e-06,0.9985416043675563,4.356305446773702e-06,0.9999296098219749,0.0008016970732008024,0.9999838017798304,0.006417888903080975,0.004384947026881312,4.0704503376017244e-07,7.302984746610168e-05,0.0075419837045688325,1.3726942759188144e-06,0.00022946359143672643,1.693473328671251e-07,0.9999446287830144,0.9999865703213097,0.9999577825396383,0.9999985226322575,5.138700231339436e-06,0.9999624980010017,0.9946012216834972,0.9998642157759864,0.9996308814028237,0.9380776126094277,0.9999342196737603,0.9899957217603527,0.9995969533699806,0.0034618925538245394,7.65803260845859e-06,3.2414843063156136e-06,0.0003688557466297634,0.9977693543783929,1.5533036188514715e-05,0.0005091826325709618,3.054187480466917e-05,0.8790929202044666,0.9940365265477189,0.7543906136225608,1.0606307238313544e-06,0.02799962639795429,0.09458349280561594,0.9955500369653213,0.9999936114147123,0.0892862204963422,1.4319876077643674e-05,0.11699585155229174,0.9950600585478325,0.9996234403783487,0.10959868268919654,5.277740517647413e-06,8.196029327732482e-05,4.083064628438215e-06,0.999620257187747,1.1502468135138716e-05,0.00331223707434035,0.00023218428335081191,7.977284416366396e-06,0.9999819068517268,0.9999992114440429,0.999999901268982,4.9216372263731564e-05,0.0004878045268446005,0.006157315451405617,2.0730830589064523e-05,0.3885776724645148,0.0002536012987885923,0.9999777913475252,0.1267018332712352,0.9999998232402524,2.9187804294273264e-06,1.855161894952015e-05,3.17600748481999e-06,3.0087047038133525e-05,0.6619293054952841,1.0335412266878964e-05,0.15585681367519194,6.232515726932888e-06,0.983142800511918,0.9999997106666125,7.959625681023123e-05,3.86336455405273e-05,0.9999999079163957,8.758346982213075e-06,0.999998300031967,0.00022000809390236258,1.6871850712081578e-05,3.6446761463063925e-05,9.527791656125534e-06,2.9554211603823197e-05,0.9997059648335398,0.2864801349436413,2.1299516642710005e-06,0.9995063907305878,0.0018162920468383838,0.5272197193011331,1.0116236069405287e-07,0.6666922012670268,5.293042089927087e-07,2.6592146148087416e-08,2.5272247762198987e-08,5.1121581679899405e-05,1.7446308805081538e-05,1.2428800529157493e-05,4.997372964391808e-05,0.02340577163353877,0.12737586334810383,0.01072872519106695,3.590096795547323e-08,4.357323573157586e-06,0.0007061724761926552,0.691955225985674,0.9999968421409698,0.27334277142396335,0.00026973802420989564,0.004537439029850737,0.7248927906655317,0.2175264743928672,2.646304539550581e-07,1.3151528684410313e-05,0.002815766745411299,4.927037022759005e-05,0.9628938211186434,1.3788593429096643e-05,0.2617635790686,3.703210152332618e-05,3.608212078831687e-07,0.9922988165647558,0.1221132615122699,0.00016399231266520851,0.000805677053751081,0.09768192860079589,1.8776689092925385e-05,5.374442675941944e-06,0.00013258368502942872,5.787503257137752e-06,0.9996251414107188,6.265368646324475e-05,0.7677912975870221,0.00673886278268944,0.0001326907839907506,0.9988160971589434,0.9991454947508351,0.9999467508746601,0.00014897669777130413,0.9970273850301146,0.4371209048300005,0.9999997210274415,0.9999992156775138,0.0003259312166345716,0.999999982910213,7.70754933754883e-09,0.9960437109553673,0.002313612342593366,0.0006190901390146919,0.002979410905003345,0.9938439262074585,0.9999937722487354,0.9900706529415318,0.9088735761076372,0.005847381452121483,0.004699981487938944,0.020939429161463692,0.00019084271755848533,0.00012976918335559024,0.19340663082041964,0.9756168586317385 -limon,rgb,0.0024085446862768443,0.9991706040703012,3.801304053412738e-07,6.688718180007118e-13,3.409263255830525e-08,0.9999900595645032,4.960013360526652e-06,0.9999650224804896,0.9999500216424734,0.9998508993987745,7.429695781498472e-05,5.601077849209022e-06,8.937768617106416e-06,0.9985254918319619,8.713289596517107e-13,1.9124795449221792e-05,9.955725263126338e-06,1.0547968733792883e-05,1.2986245650991464e-05,0.2594433441200618,8.152707018665051e-05,3.1383906498153977e-06,0.9999877092568943,1.382080371445002e-07,0.9999571166786448,3.0212789414534843e-08,0.00605388044874714,0.9999414659153233,3.573561889883853e-05,0.8142346735310203,0.9999898476984415,2.4432759442957347e-07,0.9999838832663224,0.9878058265744261,8.394044860926847e-10,1.570242965524088e-05,0.08899152855569172,1.9504653849035585e-05,0.9999024563344674,0.9999313154932347,2.6213021891390784e-12,0.5528712276939374,0.9999873007994783,0.5993220694062694,4.3076283640999855e-06,3.0262645702720138e-06,3.3739120611443485e-07,3.811892990175781e-07,9.253984257918723e-06,0.9736410820952057,0.9999895616453109,2.1611436155952508e-12,0.9999264817155991,0.9999661552899898,8.629647324809064e-06,0.9999567321663922,0.46514220902221126,0.272954329320889,6.886283334473541e-06,1.459133506777944e-05,6.947011166346986e-05,9.56371130301054e-05,4.267402036577501e-05,0.3351093167333886,0.6344264813592463,9.363826093003363e-07,5.544312800657285e-08,0.9999004344261219,0.9999565339313433,0.9999581893302344,0.9999747378201137,1.2221076806221166e-12,3.1638658336060702e-12,0.9998684231789137,0.9998910422062814,0.6001532130796822,2.8938725916488865e-08,4.772258130878427e-07,2.024508077705736e-06,0.17351885052261504,0.005356819850741623,0.41290723302295795,0.027268447179377535,0.07206719186594995,0.9999623045370185,0.010172893931618307,3.0119315460277723e-05,1.0310369473966736e-05,0.005348426998756019,0.0063202533139992715,0.9999602742402995,0.00014395489757516365,0.6804185726102618,0.17266740204521433,0.12251377457517862,0.0805379236533678,2.5240806442767304e-05,0.06978915713484736,0.44881065056897657,0.08599569494308586,0.038719129416163546,1.8540724384957452e-06,0.9999214325218826,1.2487766426658806e-12,0.025201945921825435,0.9999903357477573,2.4697692897110223e-06,1.7197950802048962e-07,2.794520123830479e-08,0.9999107165882807,1.3928567663638619e-07,1.4909478838973726e-12,7.467871482856794e-13,8.943729777676453e-06,3.094599971489264e-05,6.368976395921885e-05,0.9983909225490543,0.0006790426548582498,4.632067510527858e-06,2.5978589675017167e-07,2.038304233132893e-07,0.00016328049795789242,0.989710587584531,2.1543024913014968e-12,1.7450665510063993e-05,0.9966778010589764,0.00014179532620320952,0.9987722069198987,0.8106784073848124,0.824982343177995,0.3413133387673326,0.9687978224678443,0.9999910503562361,0.99987694519307,0.9978652101987177,3.842333000563866e-05,1.764719559089533e-05,1.6644470170282443e-05,0.9407628162489029,0.7249395161446849,7.560820807696528e-10,0.00012652992588015207,0.9999733706653282,3.790842525066469e-12,0.5166507030301415,0.09828163317271067,0.8612681186348359,1.5441473680995984e-06,3.6661159412945106e-08,3.8748589113638094e-07,2.287463469098664e-12,0.3539313892575315,1.9842370706421774e-05,8.174246097284047e-05,8.941201295295014e-06,1.399860411130228e-05,8.558103524267756e-06,0.9999615566927154,0.9997037442185956,2.4424973538709072e-05,0.9999910513200975,2.0168030459077244e-05,1.2275588942387494e-06,0.9999521717751187,0.9999763912734324,0.999988942873209,0.9999711813671212,1.2152489529957216e-05,1.6098820993937534e-05,1.308463456868081e-12,0.30018756535478863,0.9999894863218873,0.7016611962326245,2.9076606311055494e-05,0.3303620577089305,5.134980974191876e-06,0.00019757740786139805,1.8983194111396167e-12,0.999995990449244,0.9999650125491673,0.9999554591582158,1.4803910471663e-05,1.0325405775644256e-09,0.999985916461898,0.9999902685671277,1.213925267594083e-05,9.455461194928881e-12,0.9995053865785221,1.5795998902466958e-05,8.316183037768371e-06,7.941775868968902e-05,0.8090189435377825,0.0023412414227901965,0.059809170849667644,0.856868546015119,1.2458801404645594e-05,0.9979718621649543,2.57621106358995e-05,0.9999861446761282,0.9999611818752172,2.77805189645861e-12,0.32836453803710247,0.9999627020929399,0.008531619496497745,0.0004443262584119463,0.999945577717197,8.026000705191287e-06,1.7881085228118101e-12,7.719702465965692e-13,0.0031050527345588322,0.6291435383187584,3.479100262972886e-05,0.99994895741147,1.0485597936507657e-05,0.9999917386653526,6.271631218426459e-05,7.724057231641524e-06,9.089666143750455e-05,9.601184114279195e-07,1.272174385544756e-07,1.9711182526939314e-07,3.5881449149691056e-12,0.9999729786241852,0.2495267474602501,1.159499467554393e-05,1.0216053917383968e-05,0.9991729258450085,2.1843074142922552e-05,9.722195706277794e-05,2.0535878625500035e-07,3.694850220005566e-10,0.06779231425161812,2.9696043425322335e-12,0.9999308881175887,2.6147096159175735e-07,1.6766859077379118e-05,4.089534946136119e-06,0.6122903925274432,0.9233977820043574,0.5388194432145256,2.2608009655399792e-05,1.0608246869597858e-09,0.0002232830238759938,0.00019948792055206902 -limon,shape,0.999527208491445,0.0026783547301782993,0.0025608014750474898,0.9791564783240049,2.2230362656197487e-08,0.12677960595934057,0.612993217173679,0.9999137089152388,0.9994749884794709,0.999842950355127,4.447923361309579e-06,1.953623666228946e-06,1.629509073400918e-06,0.25982631929899824,5.864318087538053e-06,5.889306007704321e-06,0.00010011509310768511,9.796061090446426e-06,2.4706376474140404e-09,1.4915527132371517e-05,2.408137020675584e-08,0.9938827812505122,3.415634102736893e-06,0.4267061437030691,0.9997113451010677,0.9778959081258296,0.9998302215569884,0.9999744321719756,0.0004943781011014657,3.6399812682680654e-05,0.33319035331486235,9.542810847246963e-07,1.641521914504358e-05,0.999762594879104,4.750013791729692e-06,6.569140057118782e-05,0.9803550154741988,0.9995174116556583,0.8144942187427694,0.016057909789471192,0.0008263444399646616,0.015503907474041909,0.007003234042368036,0.0015270323718013109,0.0002528742757370316,0.00015385330381637168,4.253826473534591e-07,8.895533596586994e-08,0.9124714713055504,0.9998056459478231,0.02457630579082227,0.7845200153714564,0.9999239474838884,0.004234724440836265,0.6017190231830387,2.722175892079369e-05,0.00022981775512086688,9.724358371317233e-09,5.832590364639784e-05,3.7405375862613804e-05,0.0003669239211824033,1.2225507916437815e-11,2.332139194711601e-06,0.024942853835069334,0.016495843923893354,0.9967914022870957,0.8493351975224257,0.9999696957754971,0.9999739488746396,0.9996841160064294,0.00034621135021192226,0.27809795408954374,0.005032168998008099,0.9998957126066242,0.001986324244048161,0.009403367463994726,0.9785230297875323,0.9995263161881202,0.9997835452255764,5.526775577372144e-06,0.9973370879784792,0.002704236979853197,0.9986631247102224,9.426734028479527e-07,0.9996592963323644,0.9998110120037924,3.625040133476423e-05,0.9969237366710973,0.9998362135111157,0.9985932476160652,0.9999771201254873,0.16537121625340404,0.00022072377381477412,9.549685909434709e-05,3.201799021205464e-05,4.616552164042802e-07,0.0003748953079459755,0.00012839239735213626,0.05580979366344273,2.670726025232609e-07,6.347532618842641e-06,4.6813481548888615e-05,2.019960367596751e-05,1.609370966275268e-05,0.0007401900961028261,7.996252318003837e-05,0.012460899919309654,0.9363321583316572,0.9682122690758648,0.00015873282899520256,0.9664052962979068,8.135189878652563e-05,0.013622155459497317,5.099071454826441e-06,2.965410306468496e-06,1.321929335766117e-05,0.9999631251374428,1.874383078016864e-05,2.7437692914860294e-05,0.0006874769160540628,1.7130900543051286e-09,1.9264023827342927e-06,0.9995862639211142,0.00017802988104312207,2.620214412664274e-07,5.847041788862365e-10,2.157018531920579e-05,0.9998896479849151,0.9999172412846902,0.9998798825219971,0.9994166702629551,0.9998966627509784,0.9027072100506237,0.99999479737731,0.9998940520349833,5.0947905282179395e-09,5.56363474627796e-06,1.57905227762243e-07,0.9997914322361847,0.0037591784365850153,0.00024547199852023664,2.362309786073089e-05,0.004676777247058717,0.07422316023834123,2.3138324186282717e-10,0.0012610230769714856,2.7824882865235498e-05,0.9984855462655212,0.999619301721885,0.9388031047821024,0.000234928681249457,0.8100002774574152,5.38943213546639e-06,6.218068002057043e-05,0.10024153078048728,1.8718562977631352e-06,1.953623666228946e-06,0.9996830416576296,0.9999860236635815,6.764203142301766e-10,0.9999490972857622,1.3919389802065037e-07,2.668364131280931e-05,0.9999000113340132,0.9999552101165724,0.9999489530357107,0.998859240471835,4.5180660703300175e-06,0.0006126720979777602,0.9703695393699042,0.07969811545016382,0.14004519577776553,0.9996295447275415,7.179615269245398e-05,0.993130866306967,0.024158529452652563,0.6870454224944345,0.007605598191594967,0.9999541658008522,0.9999944745896873,0.9998966500368048,9.40118163340543e-05,0.00010352126051593912,2.100241533109678e-06,5.220466435593177e-06,0.7944462423949501,0.9909958401111901,0.000283986339940754,3.112394634588716e-05,7.601017828805433e-06,0.0005615266379842036,0.9998103968215908,0.9998853071917209,0.0007126430703894737,0.9997621467589716,0.14334023004282245,0.9995329205799999,5.456844814571397e-05,0.17181890393193897,0.036864359110003825,0.25413598138847054,0.9998432240555364,0.999949009921358,0.9993514556854398,3.0086314074707217e-07,0.004338002344636197,0.0060790928701456234,0.0001037711401573676,0.0029554782076145285,0.9999614079204638,0.9999775548083671,0.9997255352884782,0.9999177849985319,0.00019992995969017014,0.9999011650737587,1.4565166985310088e-05,2.3358576085482414e-05,2.5051668209942375e-07,2.395884272856975e-06,6.179204418130524e-06,3.612113337646144e-08,0.002003194228600516,0.00038790059183356387,0.4158809975689287,2.861905777817767e-08,3.6257190268538084e-09,0.39381247779294376,1.600252941565933e-05,0.0007446206650221342,1.3174205960437069e-08,0.0001851243893280255,0.9969576573496872,0.013639738086825198,0.00029672623850649556,1.7130900543051104e-09,0.00019303046522437686,0.00739064702118679,6.971781949492598e-05,0.9999523775553639,0.977333186562499,0.9997154556873097,7.557066748124841e-05,5.197505844323603e-07,3.984101144537308e-06 -limon,object,0.05197276291237005,0.9937645519337157,1.5005516410310846e-05,6.816831414661646e-07,1.4258834104547476e-07,0.9996883757376249,2.8063006470341294e-05,0.9999634671641265,0.9998668228847589,0.999920614707954,4.027992108188737e-05,5.213241186475396e-06,9.716975826038474e-06,0.9984011946122087,3.4234029545980606e-09,1.7766412949000794e-06,2.331105271124143e-05,1.5290290793538413e-05,3.935362387285455e-06,0.09048692269788805,1.3149007773529578e-05,0.00020201207095227233,0.9695244484090519,4.522738227624811e-06,0.9998736652362652,9.118150457408666e-06,0.10050421162401596,0.9999668805227768,0.00011266311324055696,0.6329568729042404,0.9995293606173208,1.908719625621762e-06,0.9973634603128227,0.9979241434422649,1.4760332951296158e-06,1.9796607283805313e-05,0.7003415920850302,0.007022713632823317,0.999648247223301,0.9981213251547755,2.477723483154342e-07,0.9494229001339817,0.9997589132462877,0.9206056268401411,2.758093449116256e-05,3.396991036824561e-05,2.5743204420857044e-06,1.1192195523970048e-06,5.561267397188202e-05,0.9968374736194047,0.9978782477419836,1.0907287104681163e-07,0.9999674952158369,0.9996571043646862,4.5443640378475994e-05,0.9971632739110742,0.09420917762277636,0.009776733880783567,2.845684277346716e-05,3.642449754741176e-05,0.0001667389656089149,3.907960712329022e-06,5.012979235499877e-07,0.5089391896709147,0.5714050996039965,0.00012217313363896602,1.7988313672943093e-05,0.999957648193078,0.9999834109306879,0.9999415540948108,0.9986901603214071,3.50007042488257e-08,2.6988389918999154e-08,0.9999246525782436,0.9981233992787651,0.6834054053917219,1.0136156290208095e-05,0.0001774103497424967,0.0005004216071317582,0.033784018908208265,0.10060752535032384,0.13810351146741975,0.5523682399114465,0.011620058879972809,0.9999595209941124,0.4112858190960848,4.270400276184878e-06,0.002502870483425118,0.07295754195484831,0.06850812260778644,0.9999836968539755,0.00012533445927905796,0.10680936514623438,0.022415285354172206,0.009608473537958535,0.004799083652463607,9.80937790871153e-05,0.012517937697866126,0.7633634895130723,0.008400026542449736,0.0072388533841983346,3.5120509074240036e-06,0.9871272378311009,1.064676533267741e-08,0.05190837452163078,0.9966491627592431,4.9936832960526445e-06,1.50238081089218e-05,5.161482931090107e-05,0.9965196723315174,3.7881636047522186e-05,1.2882671447299327e-08,1.1702128432592199e-08,2.0592598312519783e-06,1.159303513064602e-05,0.00014031828846754868,0.9994127361153532,6.520497842351778e-05,9.598553157515376e-06,1.831776670633557e-05,3.5594471836315014e-07,1.5176232956009363e-05,0.9970545741364306,1.695727413101952e-07,2.652202741776397e-06,0.09356407495419829,4.055539239533526e-05,0.9988996963949357,0.9885044213008041,0.9864331994783695,0.873285367284317,0.9944657064202088,0.9997705334064345,0.999974458830252,0.9993217105592497,4.548884398948533e-06,2.436994356402061e-05,1.3358745451881802e-05,0.9940697114980293,0.620491677324502,1.6448506816121127e-05,1.0870916490840619e-05,0.9996023033785557,3.6626862112557384e-07,0.0038992901123576667,0.08441583995289315,0.2227520594024088,0.0003872042214694343,5.2251391054519785e-05,3.312717821109538e-05,7.182323213466434e-08,0.5860728592993383,3.101035293647022e-06,9.91421602686493e-05,0.0004504063057433206,1.2796047191173936e-05,6.944992662196569e-06,0.9999737060652389,0.9999571482239201,8.492195136577572e-06,0.9999967375060161,4.091722107918709e-06,1.7075558670756945e-06,0.9999886596566586,0.9999887813957108,0.9999838039246192,0.9998153170268174,2.5924488149919207e-05,0.00018931987595830445,1.473229979236997e-07,0.2609920679946673,0.9996406320578071,0.9736189897887504,3.091424579390655e-06,0.8755787460932232,7.249706407903422e-06,0.0003019989280076265,1.9166530015728192e-08,0.9999976834630084,0.9999919634306622,0.9999827436265547,1.6209936212931686e-05,1.9538808262461604e-05,0.97528786525324,0.9945876541745469,7.720644345344246e-05,6.276444540007864e-07,0.9899095462082783,2.9349008353116667e-05,9.215339538082767e-06,0.00021148943622172149,0.9714602625526562,0.1290869914272072,0.023407859781776553,0.9819637695529265,1.6492387810582862e-05,0.9990885664232181,2.216601707000857e-05,0.9990502932835935,0.9995416778882424,6.525455467523714e-08,0.9632643612377919,0.9999779561833327,0.09010051605365663,0.00034434144907644304,0.9987436638642977,7.239997050009895e-05,3.081016348519607e-08,2.3508125408293284e-08,0.19891857971318586,0.9729766354015938,0.007292816484160069,0.9999140250624057,4.697898756971877e-05,0.9999927304247325,1.055314696122606e-05,5.137695407298863e-06,3.069812367852078e-06,4.090238237781374e-06,2.9638566508128376e-06,6.980332128169816e-07,2.5115123851547097e-08,0.9985893080502659,0.7966603393817155,2.0655816833062523e-06,3.3296100160658574e-06,0.9985996446025873,2.7700880625554506e-05,1.0696739511325149e-05,9.174466076545501e-08,1.1324559017620526e-06,0.583361395134437,3.3352937863707384e-08,0.9982976758036277,4.2936128827459055e-07,0.00021170607863659296,8.915911883783385e-05,0.44250228610712,0.9930641369257017,0.921687795965332,0.006578135791941863,1.6302642926219123e-07,8.392789672532069e-05,5.49553616040619e-05 -limón,rgb,0.0024085446862768443,0.9991706040703012,3.801304053412738e-07,6.688718180007118e-13,3.409263255830525e-08,0.9999900595645032,4.960013360526652e-06,0.9999650224804896,0.9999500216424734,0.9998508993987745,7.429695781498472e-05,5.601077849209022e-06,8.937768617106416e-06,0.9985254918319619,8.713289596517107e-13,1.9124795449221792e-05,9.955725263126338e-06,1.0547968733792883e-05,1.2986245650991464e-05,0.2594433441200618,8.152707018665051e-05,3.1383906498153977e-06,0.9999877092568943,1.382080371445002e-07,0.9999571166786448,3.0212789414534843e-08,0.00605388044874714,0.9999414659153233,3.573561889883853e-05,0.8142346735310203,0.9999898476984415,2.4432759442957347e-07,0.9999838832663224,0.9878058265744261,8.394044860926847e-10,1.570242965524088e-05,0.08899152855569172,1.9504653849035585e-05,0.9999024563344674,0.9999313154932347,2.6213021891390784e-12,0.5528712276939374,0.9999873007994783,0.5993220694062694,4.3076283640999855e-06,3.0262645702720138e-06,3.3739120611443485e-07,3.811892990175781e-07,9.253984257918723e-06,0.9736410820952057,0.9999895616453109,2.1611436155952508e-12,0.9999264817155991,0.9999661552899898,8.629647324809064e-06,0.9999567321663922,0.46514220902221126,0.272954329320889,6.886283334473541e-06,1.459133506777944e-05,6.947011166346986e-05,9.56371130301054e-05,4.267402036577501e-05,0.3351093167333886,0.6344264813592463,9.363826093003363e-07,5.544312800657285e-08,0.9999004344261219,0.9999565339313433,0.9999581893302344,0.9999747378201137,1.2221076806221166e-12,3.1638658336060702e-12,0.9998684231789137,0.9998910422062814,0.6001532130796822,2.8938725916488865e-08,4.772258130878427e-07,2.024508077705736e-06,0.17351885052261504,0.005356819850741623,0.41290723302295795,0.027268447179377535,0.07206719186594995,0.9999623045370185,0.010172893931618307,3.0119315460277723e-05,1.0310369473966736e-05,0.005348426998756019,0.0063202533139992715,0.9999602742402995,0.00014395489757516365,0.6804185726102618,0.17266740204521433,0.12251377457517862,0.0805379236533678,2.5240806442767304e-05,0.06978915713484736,0.44881065056897657,0.08599569494308586,0.038719129416163546,1.8540724384957452e-06,0.9999214325218826,1.2487766426658806e-12,0.025201945921825435,0.9999903357477573,2.4697692897110223e-06,1.7197950802048962e-07,2.794520123830479e-08,0.9999107165882807,1.3928567663638619e-07,1.4909478838973726e-12,7.467871482856794e-13,8.943729777676453e-06,3.094599971489264e-05,6.368976395921885e-05,0.9983909225490543,0.0006790426548582498,4.632067510527858e-06,2.5978589675017167e-07,2.038304233132893e-07,0.00016328049795789242,0.989710587584531,2.1543024913014968e-12,1.7450665510063993e-05,0.9966778010589764,0.00014179532620320952,0.9987722069198987,0.8106784073848124,0.824982343177995,0.3413133387673326,0.9687978224678443,0.9999910503562361,0.99987694519307,0.9978652101987177,3.842333000563866e-05,1.764719559089533e-05,1.6644470170282443e-05,0.9407628162489029,0.7249395161446849,7.560820807696528e-10,0.00012652992588015207,0.9999733706653282,3.790842525066469e-12,0.5166507030301415,0.09828163317271067,0.8612681186348359,1.5441473680995984e-06,3.6661159412945106e-08,3.8748589113638094e-07,2.287463469098664e-12,0.3539313892575315,1.9842370706421774e-05,8.174246097284047e-05,8.941201295295014e-06,1.399860411130228e-05,8.558103524267756e-06,0.9999615566927154,0.9997037442185956,2.4424973538709072e-05,0.9999910513200975,2.0168030459077244e-05,1.2275588942387494e-06,0.9999521717751187,0.9999763912734324,0.999988942873209,0.9999711813671212,1.2152489529957216e-05,1.6098820993937534e-05,1.308463456868081e-12,0.30018756535478863,0.9999894863218873,0.7016611962326245,2.9076606311055494e-05,0.3303620577089305,5.134980974191876e-06,0.00019757740786139805,1.8983194111396167e-12,0.999995990449244,0.9999650125491673,0.9999554591582158,1.4803910471663e-05,1.0325405775644256e-09,0.999985916461898,0.9999902685671277,1.213925267594083e-05,9.455461194928881e-12,0.9995053865785221,1.5795998902466958e-05,8.316183037768371e-06,7.941775868968902e-05,0.8090189435377825,0.0023412414227901965,0.059809170849667644,0.856868546015119,1.2458801404645594e-05,0.9979718621649543,2.57621106358995e-05,0.9999861446761282,0.9999611818752172,2.77805189645861e-12,0.32836453803710247,0.9999627020929399,0.008531619496497745,0.0004443262584119463,0.999945577717197,8.026000705191287e-06,1.7881085228118101e-12,7.719702465965692e-13,0.0031050527345588322,0.6291435383187584,3.479100262972886e-05,0.99994895741147,1.0485597936507657e-05,0.9999917386653526,6.271631218426459e-05,7.724057231641524e-06,9.089666143750455e-05,9.601184114279195e-07,1.272174385544756e-07,1.9711182526939314e-07,3.5881449149691056e-12,0.9999729786241852,0.2495267474602501,1.159499467554393e-05,1.0216053917383968e-05,0.9991729258450085,2.1843074142922552e-05,9.722195706277794e-05,2.0535878625500035e-07,3.694850220005566e-10,0.06779231425161812,2.9696043425322335e-12,0.9999308881175887,2.6147096159175735e-07,1.6766859077379118e-05,4.089534946136119e-06,0.6122903925274432,0.9233977820043574,0.5388194432145256,2.2608009655399792e-05,1.0608246869597858e-09,0.0002232830238759938,0.00019948792055206902 -limón,shape,0.999527208491445,0.0026783547301782993,0.0025608014750474898,0.9791564783240049,2.2230362656197487e-08,0.12677960595934057,0.612993217173679,0.9999137089152388,0.9994749884794709,0.999842950355127,4.447923361309579e-06,1.953623666228946e-06,1.629509073400918e-06,0.25982631929899824,5.864318087538053e-06,5.889306007704321e-06,0.00010011509310768511,9.796061090446426e-06,2.4706376474140404e-09,1.4915527132371517e-05,2.408137020675584e-08,0.9938827812505122,3.415634102736893e-06,0.4267061437030691,0.9997113451010677,0.9778959081258296,0.9998302215569884,0.9999744321719756,0.0004943781011014657,3.6399812682680654e-05,0.33319035331486235,9.542810847246963e-07,1.641521914504358e-05,0.999762594879104,4.750013791729692e-06,6.569140057118782e-05,0.9803550154741988,0.9995174116556583,0.8144942187427694,0.016057909789471192,0.0008263444399646616,0.015503907474041909,0.007003234042368036,0.0015270323718013109,0.0002528742757370316,0.00015385330381637168,4.253826473534591e-07,8.895533596586994e-08,0.9124714713055504,0.9998056459478231,0.02457630579082227,0.7845200153714564,0.9999239474838884,0.004234724440836265,0.6017190231830387,2.722175892079369e-05,0.00022981775512086688,9.724358371317233e-09,5.832590364639784e-05,3.7405375862613804e-05,0.0003669239211824033,1.2225507916437815e-11,2.332139194711601e-06,0.024942853835069334,0.016495843923893354,0.9967914022870957,0.8493351975224257,0.9999696957754971,0.9999739488746396,0.9996841160064294,0.00034621135021192226,0.27809795408954374,0.005032168998008099,0.9998957126066242,0.001986324244048161,0.009403367463994726,0.9785230297875323,0.9995263161881202,0.9997835452255764,5.526775577372144e-06,0.9973370879784792,0.002704236979853197,0.9986631247102224,9.426734028479527e-07,0.9996592963323644,0.9998110120037924,3.625040133476423e-05,0.9969237366710973,0.9998362135111157,0.9985932476160652,0.9999771201254873,0.16537121625340404,0.00022072377381477412,9.549685909434709e-05,3.201799021205464e-05,4.616552164042802e-07,0.0003748953079459755,0.00012839239735213626,0.05580979366344273,2.670726025232609e-07,6.347532618842641e-06,4.6813481548888615e-05,2.019960367596751e-05,1.609370966275268e-05,0.0007401900961028261,7.996252318003837e-05,0.012460899919309654,0.9363321583316572,0.9682122690758648,0.00015873282899520256,0.9664052962979068,8.135189878652563e-05,0.013622155459497317,5.099071454826441e-06,2.965410306468496e-06,1.321929335766117e-05,0.9999631251374428,1.874383078016864e-05,2.7437692914860294e-05,0.0006874769160540628,1.7130900543051286e-09,1.9264023827342927e-06,0.9995862639211142,0.00017802988104312207,2.620214412664274e-07,5.847041788862365e-10,2.157018531920579e-05,0.9998896479849151,0.9999172412846902,0.9998798825219971,0.9994166702629551,0.9998966627509784,0.9027072100506237,0.99999479737731,0.9998940520349833,5.0947905282179395e-09,5.56363474627796e-06,1.57905227762243e-07,0.9997914322361847,0.0037591784365850153,0.00024547199852023664,2.362309786073089e-05,0.004676777247058717,0.07422316023834123,2.3138324186282717e-10,0.0012610230769714856,2.7824882865235498e-05,0.9984855462655212,0.999619301721885,0.9388031047821024,0.000234928681249457,0.8100002774574152,5.38943213546639e-06,6.218068002057043e-05,0.10024153078048728,1.8718562977631352e-06,1.953623666228946e-06,0.9996830416576296,0.9999860236635815,6.764203142301766e-10,0.9999490972857622,1.3919389802065037e-07,2.668364131280931e-05,0.9999000113340132,0.9999552101165724,0.9999489530357107,0.998859240471835,4.5180660703300175e-06,0.0006126720979777602,0.9703695393699042,0.07969811545016382,0.14004519577776553,0.9996295447275415,7.179615269245398e-05,0.993130866306967,0.024158529452652563,0.6870454224944345,0.007605598191594967,0.9999541658008522,0.9999944745896873,0.9998966500368048,9.40118163340543e-05,0.00010352126051593912,2.100241533109678e-06,5.220466435593177e-06,0.7944462423949501,0.9909958401111901,0.000283986339940754,3.112394634588716e-05,7.601017828805433e-06,0.0005615266379842036,0.9998103968215908,0.9998853071917209,0.0007126430703894737,0.9997621467589716,0.14334023004282245,0.9995329205799999,5.456844814571397e-05,0.17181890393193897,0.036864359110003825,0.25413598138847054,0.9998432240555364,0.999949009921358,0.9993514556854398,3.0086314074707217e-07,0.004338002344636197,0.0060790928701456234,0.0001037711401573676,0.0029554782076145285,0.9999614079204638,0.9999775548083671,0.9997255352884782,0.9999177849985319,0.00019992995969017014,0.9999011650737587,1.4565166985310088e-05,2.3358576085482414e-05,2.5051668209942375e-07,2.395884272856975e-06,6.179204418130524e-06,3.612113337646144e-08,0.002003194228600516,0.00038790059183356387,0.4158809975689287,2.861905777817767e-08,3.6257190268538084e-09,0.39381247779294376,1.600252941565933e-05,0.0007446206650221342,1.3174205960437069e-08,0.0001851243893280255,0.9969576573496872,0.013639738086825198,0.00029672623850649556,1.7130900543051104e-09,0.00019303046522437686,0.00739064702118679,6.971781949492598e-05,0.9999523775553639,0.977333186562499,0.9997154556873097,7.557066748124841e-05,5.197505844323603e-07,3.984101144537308e-06 -limón,object,0.05197276291237005,0.9937645519337157,1.5005516410310846e-05,6.816831414661646e-07,1.4258834104547476e-07,0.9996883757376249,2.8063006470341294e-05,0.9999634671641265,0.9998668228847589,0.999920614707954,4.027992108188737e-05,5.213241186475396e-06,9.716975826038474e-06,0.9984011946122087,3.4234029545980606e-09,1.7766412949000794e-06,2.331105271124143e-05,1.5290290793538413e-05,3.935362387285455e-06,0.09048692269788805,1.3149007773529578e-05,0.00020201207095227233,0.9695244484090519,4.522738227624811e-06,0.9998736652362652,9.118150457408666e-06,0.10050421162401596,0.9999668805227768,0.00011266311324055696,0.6329568729042404,0.9995293606173208,1.908719625621762e-06,0.9973634603128227,0.9979241434422649,1.4760332951296158e-06,1.9796607283805313e-05,0.7003415920850302,0.007022713632823317,0.999648247223301,0.9981213251547755,2.477723483154342e-07,0.9494229001339817,0.9997589132462877,0.9206056268401411,2.758093449116256e-05,3.396991036824561e-05,2.5743204420857044e-06,1.1192195523970048e-06,5.561267397188202e-05,0.9968374736194047,0.9978782477419836,1.0907287104681163e-07,0.9999674952158369,0.9996571043646862,4.5443640378475994e-05,0.9971632739110742,0.09420917762277636,0.009776733880783567,2.845684277346716e-05,3.642449754741176e-05,0.0001667389656089149,3.907960712329022e-06,5.012979235499877e-07,0.5089391896709147,0.5714050996039965,0.00012217313363896602,1.7988313672943093e-05,0.999957648193078,0.9999834109306879,0.9999415540948108,0.9986901603214071,3.50007042488257e-08,2.6988389918999154e-08,0.9999246525782436,0.9981233992787651,0.6834054053917219,1.0136156290208095e-05,0.0001774103497424967,0.0005004216071317582,0.033784018908208265,0.10060752535032384,0.13810351146741975,0.5523682399114465,0.011620058879972809,0.9999595209941124,0.4112858190960848,4.270400276184878e-06,0.002502870483425118,0.07295754195484831,0.06850812260778644,0.9999836968539755,0.00012533445927905796,0.10680936514623438,0.022415285354172206,0.009608473537958535,0.004799083652463607,9.80937790871153e-05,0.012517937697866126,0.7633634895130723,0.008400026542449736,0.0072388533841983346,3.5120509074240036e-06,0.9871272378311009,1.064676533267741e-08,0.05190837452163078,0.9966491627592431,4.9936832960526445e-06,1.50238081089218e-05,5.161482931090107e-05,0.9965196723315174,3.7881636047522186e-05,1.2882671447299327e-08,1.1702128432592199e-08,2.0592598312519783e-06,1.159303513064602e-05,0.00014031828846754868,0.9994127361153532,6.520497842351778e-05,9.598553157515376e-06,1.831776670633557e-05,3.5594471836315014e-07,1.5176232956009363e-05,0.9970545741364306,1.695727413101952e-07,2.652202741776397e-06,0.09356407495419829,4.055539239533526e-05,0.9988996963949357,0.9885044213008041,0.9864331994783695,0.873285367284317,0.9944657064202088,0.9997705334064345,0.999974458830252,0.9993217105592497,4.548884398948533e-06,2.436994356402061e-05,1.3358745451881802e-05,0.9940697114980293,0.620491677324502,1.6448506816121127e-05,1.0870916490840619e-05,0.9996023033785557,3.6626862112557384e-07,0.0038992901123576667,0.08441583995289315,0.2227520594024088,0.0003872042214694343,5.2251391054519785e-05,3.312717821109538e-05,7.182323213466434e-08,0.5860728592993383,3.101035293647022e-06,9.91421602686493e-05,0.0004504063057433206,1.2796047191173936e-05,6.944992662196569e-06,0.9999737060652389,0.9999571482239201,8.492195136577572e-06,0.9999967375060161,4.091722107918709e-06,1.7075558670756945e-06,0.9999886596566586,0.9999887813957108,0.9999838039246192,0.9998153170268174,2.5924488149919207e-05,0.00018931987595830445,1.473229979236997e-07,0.2609920679946673,0.9996406320578071,0.9736189897887504,3.091424579390655e-06,0.8755787460932232,7.249706407903422e-06,0.0003019989280076265,1.9166530015728192e-08,0.9999976834630084,0.9999919634306622,0.9999827436265547,1.6209936212931686e-05,1.9538808262461604e-05,0.97528786525324,0.9945876541745469,7.720644345344246e-05,6.276444540007864e-07,0.9899095462082783,2.9349008353116667e-05,9.215339538082767e-06,0.00021148943622172149,0.9714602625526562,0.1290869914272072,0.023407859781776553,0.9819637695529265,1.6492387810582862e-05,0.9990885664232181,2.216601707000857e-05,0.9990502932835935,0.9995416778882424,6.525455467523714e-08,0.9632643612377919,0.9999779561833327,0.09010051605365663,0.00034434144907644304,0.9987436638642977,7.239997050009895e-05,3.081016348519607e-08,2.3508125408293284e-08,0.19891857971318586,0.9729766354015938,0.007292816484160069,0.9999140250624057,4.697898756971877e-05,0.9999927304247325,1.055314696122606e-05,5.137695407298863e-06,3.069812367852078e-06,4.090238237781374e-06,2.9638566508128376e-06,6.980332128169816e-07,2.5115123851547097e-08,0.9985893080502659,0.7966603393817155,2.0655816833062523e-06,3.3296100160658574e-06,0.9985996446025873,2.7700880625554506e-05,1.0696739511325149e-05,9.174466076545501e-08,1.1324559017620526e-06,0.583361395134437,3.3352937863707384e-08,0.9982976758036277,4.2936128827459055e-07,0.00021170607863659296,8.915911883783385e-05,0.44250228610712,0.9930641369257017,0.921687795965332,0.006578135791941863,1.6302642926219123e-07,8.392789672532069e-05,5.49553616040619e-05 -maduro,rgb,1.0,1.6034500339230707e-18,5.2364956909543325e-06,4.899367992732666e-25,1.4466571798661719e-07,0.999988028862709,1.0,0.9999999999970133,0.9999999999808145,0.9999999999970206,0.0008689492983407589,2.2419693004756323e-05,5.844092418503283e-05,3.5678662188787385e-19,3.35730894770065e-27,1.0,0.9995020388094239,0.9979382101951068,0.9996393147431353,0.9961924769186405,0.9999995261228231,0.999999999996021,0.9999965739085601,0.9999999999990115,0.0014526916878571663,0.9990725588356633,1.0,0.003017884486774565,1.0,8.87430710369058e-19,0.9999875134921237,2.2404136111596114e-07,0.9999923487781814,0.9999999999999856,7.996351813617889e-28,1.0,0.9844474076892269,0.9999999996951481,0.9845987039412064,0.9999809545109645,9.780422588686487e-25,1.3081380918945117e-16,0.9999800851661254,3.7662761182312936e-20,1.0,3.308753568502583e-07,1.2774803174387259e-07,5.680840759469803e-06,1.0,0.9999999722756369,0.9999901403613548,9.317647369053173e-25,0.999999999995504,0.9999962763594679,1.0,0.9999670791811669,1.4755356048483378e-08,1.2155226290233518e-08,2.773468256544231e-05,0.00012544030643405602,0.0010572508537085288,0.999999922549454,1.0,3.891252349177232e-16,1.6526397189929508e-18,0.9999999999999545,0.9999976684612881,0.9999999999984199,0.999999999997137,0.9999999999846101,0.9999946747354351,1.7791435089818438e-24,1.988730302203275e-24,0.9999999999994129,1.4153575474068608e-15,4.30788520160415e-16,0.9999073558228224,0.9999999999997429,0.9999999999967149,1.236473573276271e-08,1.0,3.305793082369688e-08,0.9999999999838307,1.7406392247683733e-08,0.9999999999950346,0.9999999999783578,1.0,0.9999999995810491,1.0,1.0,0.9999999999981772,1.0,1.444824801769008e-08,5.054783801937793e-09,1.1772886683365362e-08,1.3915959250519085e-08,1.0,1.7615967875158706e-08,2.5806463213357728e-08,2.470605834109958e-08,3.774387548088253e-08,1.0,0.9999840428928973,4.51693038123716e-25,2.1658803141857302e-08,0.9999848147256699,1.0,0.9999999999984492,0.9123503272786768,0.9999906436455803,0.9998112377440114,9.311524163316225e-25,8.353873326392937e-26,3.866720785700168e-06,0.00016414588573030245,0.00034319501834588766,0.9999999999996032,0.00022369529453792169,2.3402284166412153e-05,0.0011124944795175748,2.667812174403851e-07,7.190071747899104e-05,0.9999999640107144,4.117083785614848e-24,4.597440836759124e-06,0.20206576811528815,5.130461257723572e-05,0.9999999999989317,0.999999555436762,0.9999999999963205,0.4609139137865714,0.9999999999999449,0.9999888571637991,0.9999999999992815,0.9999999999996809,0.9999420985135392,0.9998398675367006,0.9996107686035797,0.9999998591298386,4.946661415746499e-19,1.7510914121405883e-27,1.0,0.9999959284150823,8.655880999689744e-24,0.9984885811699497,0.9740864708287847,0.14484967268980534,0.9999999999981788,0.9999923160582602,0.9999999999999039,5.3669166816180514e-24,0.9999999783209641,1.0,0.0009549480710028687,1.0,9.338693718072243e-05,2.6829890925793748e-05,1.4872451433734296e-05,9.939314615964647e-07,0.9999709661619763,2.2677000159028386e-05,0.9999545648883296,1.0,0.00016410787297119753,0.0010112118066410442,0.010100086557055488,0.004770063929773925,4.9191355686555584e-05,0.00013848082994521,5.604927084690926e-25,0.9999999339221975,0.9999900099669727,0.9999999981400194,1.0,0.9999998016703366,1.0,1.0,1.0655970774602496e-26,0.00011660552555033227,3.032814765226108e-05,9.695159217100325e-05,1.0,8.623808944506098e-28,0.9999960936864665,0.9999845837319195,1.0,2.9837501218870594e-22,1.30958373164339e-17,0.00013751978104437374,3.345040539322729e-05,0.0011891003921934257,0.9999999999999931,1.0,0.9566330326067031,0.999999999957699,1.0,0.9999999999989517,1.9373845839984285e-05,0.9999911811463309,0.9999977743392694,5.085735565076087e-24,0.9999999892499633,0.02461745537292989,1.0,0.00017005503670846636,0.9999942533689586,1.0,1.9450198644822724e-24,6.922655591532104e-27,1.0,0.9999999999993514,0.99999999990967,0.0011542852484130518,5.416522800398746e-05,0.062115251023051085,4.0012178847591626e-05,8.307618392587673e-06,1.0,1.4738810012697342e-06,1.2191910146613286e-07,4.454567884128312e-08,6.973695340075071e-24,0.9999958778289579,7.650777305414317e-16,0.9971865022944209,0.9951456316980617,1.6342647562028097e-18,0.9988548796603468,1.0,2.7319410441405584e-07,1.2648896824440499e-28,0.9999999999999754,3.303841286128524e-24,0.9999896855282656,1.8205691683661453e-07,4.550014815242478e-06,5.097976007863374e-06,3.3561662229560127e-19,0.9999999999901894,0.9999999970355671,0.999999999989627,2.5337314891124628e-27,0.004464615922522154,0.0010984469405357126 -maduro,shape,0.9997595649093235,1.7763522967306799e-06,3.7488265308313314e-06,0.264691563104493,0.0003438996894385045,3.38483836886004e-07,5.506040242787929e-05,0.8240062056430517,0.0032548756513005235,0.996094423538728,2.4023498763978954e-06,0.0004173870678247938,0.00014102345363621916,0.00028583987257245925,0.00021024866677802853,0.0010436923062340535,5.980326425589947e-05,0.0011285634766024552,0.9990022965381267,0.9999607629223695,3.6690168526611614e-06,5.856597349600094e-07,6.983770371795789e-06,9.753428133876874e-07,5.9034067002384897e-08,2.0459097753793043e-07,0.9999748617544891,1.4742266972223044e-05,0.0004151943881359,0.010606227387362069,0.002568164414129834,1.0175108599873655e-07,4.2831253655866814e-07,0.823633080633525,2.3570211040225998e-08,1.4826905319443666e-06,0.8520305996296925,0.9999989972446014,0.8072525673729198,0.003325261767486909,0.00011011881596775954,6.673559423121909e-05,1.3611219066762647e-07,1.0091845174714494e-07,4.5909899204861334e-08,4.594006228756554e-05,2.905268667554959e-06,5.162447458908538e-05,0.00042834040436270774,0.2870475673244604,5.715965838009469e-07,0.001702487709773547,0.9994155570806187,0.00011385270434041381,0.0009640914300684019,8.381457714881245e-07,1.1698948767577224e-05,0.8821609938622971,0.40968016634049026,0.00022977915570067533,0.000539735621467822,0.9831437045156546,7.93795577255047e-07,0.00020519200185638094,0.0005294444707218539,7.3373897894702155e-06,1.0748876691182624e-05,0.9929752567248337,0.9817268884644426,0.9630053555082373,0.00010157169839384083,0.00010729008978677167,9.145891558631416e-06,0.9984166036831512,8.102157704841968e-06,3.108320884597228e-05,1.5838192696192475e-06,0.00014696376097601897,1.9641069409725532e-06,0.4196005223916444,0.9999985825201427,3.322925357844663e-07,0.9999543997226052,0.649118451478198,0.9980975258199228,0.9998900875991135,0.005967685798461681,0.999999413527612,0.9999986910302564,0.999895247267944,0.9733243382041695,7.592596405635425e-05,1.3560109511402723e-07,5.021351378415309e-08,2.3733949652174394e-08,0.0010056090195480942,6.676016146141686e-08,2.3139605073256727e-08,2.0069490426133024e-05,0.09397864202904883,0.6931863677557724,3.615828443308693e-06,1.270780048558916e-05,4.208981501741928e-06,9.590443232039018e-07,0.0036047504917437988,8.845805724643013e-06,2.7413933157894768e-06,0.009277598678222044,2.155061230262522e-06,6.563897632681636e-06,1.1664187135625449e-05,9.93925305888167e-06,9.442489182229102e-08,4.43976522185586e-05,1.0420287305898243e-08,0.04523826158792162,5.565519637746471e-08,3.3817206950686146e-05,0.00013973179388339222,0.006107610793662391,1.0620794921759543e-07,0.31578881582165114,2.426469275682381e-05,8.280507478994676e-07,0.0006252705131446681,5.686944328968232e-06,0.48514147773904404,0.6306136751206154,0.35213370027797253,0.9999980361841055,0.9774617261549133,9.229245350779396e-06,0.9992939241685637,0.027082625909263112,3.4723753127961936e-07,4.803753076315427e-06,0.00919710850203012,0.8652850292361394,0.0008601077935807983,4.527595127690433e-05,1.346061388673694e-05,0.00044245610507723455,0.00015950145352076856,0.999238466747702,0.7739049683426358,0.009486092071326984,0.00012257388563788414,3.0066052468497608e-05,8.374698127162533e-07,5.4633971689993526e-05,0.10460388255098023,0.022503557401460948,8.29412342225966e-06,0.1004610698563427,0.0019202831564374256,0.0004173870678247879,0.0002188103386075058,0.00012857629434613507,0.8198385126795144,0.0001366133869221411,4.288181594270589e-06,7.337049703971111e-07,0.0005581257194049782,5.986698016806913e-06,3.7280852821978213e-06,1.2543580240091113e-06,0.6533531695448407,0.6665270368701235,0.00033280888687493127,0.001354656575158116,7.28365632269984e-07,0.9994202349000328,0.00034307423275543094,0.9984100539420274,1.1255524323430067e-06,0.00018330482005137988,2.6439471693060242e-06,1.968891160015944e-05,0.0005392117449887353,8.522127775013118e-05,1.4110849055255142e-08,0.00019330397227583875,6.081298203081037e-05,0.0006212617306345986,0.0005350011504295799,2.4370568834330583e-05,0.0005725370037944261,0.003815323476661509,9.906701488172207e-06,0.009937728871028903,0.9999352604036398,0.9999104310938989,6.989348659160309e-06,0.9986843678572924,1.7344022976973119e-06,0.007530626946621278,1.320641917334301e-07,1.122910777698293e-05,0.0032558575515856136,6.380916293089354e-06,0.9998305729780894,7.702993888236741e-05,0.9999882348164427,3.482604397983987e-06,0.0001278992738744358,0.002380950299850183,6.045585839764398e-05,0.0002512874532972241,0.9999993976880746,0.47153241705856236,0.99991593669426,3.3059948266312177e-06,0.0012947357288433377,0.013429484756257526,2.8947793727525277e-05,3.0554064394682854e-07,6.04915677327851e-08,2.4986392925632615e-07,1.3052834911189262e-05,2.9540820898621216e-05,4.2627275825956964e-06,0.00015023740269557147,0.0002927992472146383,2.122402241429337e-06,4.55843195449532e-06,0.000358172458973266,0.00032074763157699873,3.4238693595777153e-09,1.4506697953036242e-08,0.00017849427441185065,0.9999183503190727,9.286619529034113e-06,0.0007326928263598521,0.006107610793662412,1.2306310045510865e-05,0.003986428186056446,0.024821536692552354,0.510669586224542,0.9814065916833434,0.9999922782848479,1.8986587712457752e-05,9.15236489455772e-10,5.1138946660343753e-05 -maduro,object,0.9999998123766257,8.533573684734313e-06,2.055650572854483e-05,5.9293005430986026e-08,0.00016467294318954913,0.003015061342090276,0.9997007032803155,0.999792524929018,0.9523551575363881,0.9997820323285667,0.38133356528129564,0.6962725713963802,0.6774740680448392,2.219211974165235e-05,5.9335067675406607e-05,0.999999975711625,0.05092445157571055,0.07270335346494744,0.9997149651712482,0.9999412524927057,0.1619459710212133,0.12666875851123396,0.18812641230276755,0.16255730696885595,1.1374761184215163e-05,0.0013708539991980858,0.9999999262508307,8.700162246524293e-05,0.9999923813027963,3.058587792180432e-06,0.5807279488928498,5.438072356637826e-06,0.008397605296897315,0.9944107183348955,6.722964880423075e-11,0.9999643844818297,0.14181871888480638,0.9999102536629703,0.9637011476571524,0.9928221051612197,2.4391799327704805e-08,4.48293899097591e-07,0.002570238613336789,3.819233139931589e-09,0.9991726480337105,8.568522511075955e-05,1.3819663821603502e-05,0.001615217698583457,0.9999553496599285,0.6865803075751719,0.0064733116882076495,1.7312566355644364e-08,0.9976854615422871,0.11535433739940483,0.9999998266559439,0.0036748702971586165,0.03804494531185644,0.8535548079594544,0.9429655007736452,0.1817180304454441,0.20963995143923225,0.9999875600568581,0.9999990576551879,0.0001606490606131078,3.5559075622175687e-06,0.3486233206516877,0.01587313498830336,0.998871751859389,0.9951547797687379,0.9997893644714984,0.16719020419557448,1.0279025789318836e-06,6.599831469607625e-07,0.9981855647921299,5.690625762317388e-05,3.0082651851199572e-05,0.004343634750035959,0.5006526690052541,0.189627735555178,0.011989856269914086,0.9999999948830458,6.253466626185517e-05,0.9999442286005877,0.8089319624600234,0.9970049100810017,0.9998895617678663,0.9999999046798393,0.9997029198241086,0.9999999966597601,0.999999980787953,0.9947390385894541,0.9999998966963688,0.002299354886372784,6.467068349275842e-05,0.0014586324626557773,0.3020474338728445,0.9997901273703276,0.0003733620777403935,2.200254696181278e-05,0.6722300730138762,0.1535399514653557,0.999469070415344,0.021105391023407968,3.6929868564861526e-09,5.686141110866711e-06,0.49881829945856265,0.9999988236310758,0.1268697096510602,0.010419683613150436,0.04329557162457056,0.01602882460212589,8.177819313671939e-07,1.8633813956075705e-07,2.6861978837629296e-06,4.895129455794067e-05,9.42683708935287e-06,0.8513186023244018,1.847239332550058e-05,0.00022241108808577605,0.004502394109374673,0.0017462539931233298,1.0389883740859487e-05,0.6021898728124776,3.4328997316220803e-08,2.5231812345773357e-06,0.43384088045183944,1.4712730738651307e-05,0.914430138759613,0.5799656696998217,0.9454386803171314,0.8210212054226356,0.9968846515380987,0.02034961143204461,0.9981289860045052,0.7479313529660496,0.3383603348657371,0.04763803848599473,0.6168046999257969,0.8334785993941375,8.166895206886455e-06,1.1917372675562757e-09,0.9999976229675559,0.3932253721266455,2.4312348610492733e-07,0.9998164458487884,0.16267066592228452,0.9882921676986932,0.4700384121325246,0.028217062757690852,0.3137409058246199,1.8318155360104828e-07,0.9985865225995254,0.9999998391022019,0.06374070419352111,0.9999994368011907,0.7491569754498282,0.7020546140166231,7.080797027791903e-05,2.9557077538109907e-05,0.9995622858745776,5.1217291381545046e-05,0.06305964024025947,0.9997373589581527,0.0002134579903323884,7.31705936150129e-05,0.0001074347348677016,0.00010662778756203933,0.9683109339004042,0.03191724236794246,3.6694912216775723e-09,0.9973954881262865,0.002369697572444511,0.9998772525563105,0.9999997916614708,0.9994611464860328,0.9997964564709254,0.9999999569231216,2.4586382847965625e-08,0.00011326994342108635,0.00010548789494801765,6.639130620190702e-05,0.9999216596033025,1.3821138311889685e-09,0.1155329909239718,0.3193892620129364,0.9999830358712037,2.574384392052917e-08,0.00013778723096249612,0.46747880663286173,0.3136981281591099,0.014250718050133924,0.9999016697995526,0.9999996638041,0.0705493772420657,0.9999066342281407,0.9999543536134512,0.7490913061513804,3.8483199146563454e-05,0.020136866682774555,0.9781406536113053,1.1613303383333658e-08,0.9995951941630684,0.0016838158947582794,0.9999999207294462,5.69751314536396e-05,0.8128199149213104,0.9999981358773118,3.390036339256863e-06,1.2315138768754471e-05,0.999999992034987,0.9739622543580294,0.9996937396784193,8.598290304838942e-05,0.24120383048494187,0.00392337770307041,9.29181613205131e-05,7.633555712426416e-06,0.9999931775715873,1.869699131129132e-05,2.519140441404661e-05,3.220346627172329e-05,1.2276404129084998e-06,0.159050062380955,0.0003814810165028126,0.14300111877913815,0.023408278085457063,4.114875895813147e-06,0.8991520938992174,0.9999911354644828,8.593060509938478e-05,7.199381878950107e-07,0.9999250431362707,7.095789244608353e-07,0.1430049715463212,0.00157410022582302,0.0001663202751256902,0.002021168838317,1.1994451604027381e-05,0.944420549294675,0.9879972524257351,0.9999375809359872,5.479580569026276e-08,3.935691317872008e-06,3.6729654280310086e-05 -maiz,rgb,5.6011498994612444e-33,0.9999999999798428,0.9999999673524471,1.0,0.9999999999328728,1.1759215812048723e-16,3.919421509918409e-29,1.6395770233391872e-23,2.0917612749624082e-22,8.693532184198567e-23,0.9984399757895233,0.9999977924748575,0.9999900777798758,0.9999999999977576,1.0,2.33448023807008e-36,0.0004684898271413344,0.0021506148601654934,0.0002510361743237955,9.099055366184037e-08,2.3499917072773e-08,1.0170252860284138e-12,3.701345233571044e-17,4.2161521977267885e-12,2.3855102269141455e-07,0.20814671615921254,2.2289574271009327e-35,1.5360676459092528e-07,4.978438353978718e-36,0.9999999999999789,1.2634600434678052e-16,0.9999999992887179,1.2493457104545145e-16,2.7473959537738e-23,1.0,5.7308172340918496e-36,1.7127743294000514e-06,2.3902536041736034e-11,4.876298424028301e-12,1.8536080561155386e-15,1.0,0.9999999999990783,2.7656507324555804e-16,0.9999999999999998,8.4497311303548e-32,0.9999999873412092,0.9999999994684237,0.9999999642513628,3.013415294675366e-32,1.005411055354978e-15,1.0015566951393756e-16,1.0,6.185953621190573e-23,1.3157595228781387e-16,9.271171823971583e-34,2.0082196904370055e-15,0.9998045691322361,0.9999356364096563,0.9999965877348149,0.9999629381332674,0.9981951251065697,2.5937909257642225e-09,1.0457222786187423e-37,0.999999999998914,0.9999999999999856,1.9062402876476164e-14,0.0001812614582955626,2.637925219217238e-23,2.008463812777271e-23,1.3222062288214714e-22,1.4014123797054877e-16,1.0,1.0,1.1627819229860505e-23,0.9999997711709139,0.9999999999960776,0.020481004788539654,2.711172130146742e-13,1.2538284183267229e-12,0.9999648065223791,9.251653474600004e-35,0.9996311240566569,4.872516062377455e-16,0.9999823912650206,3.205381412985921e-23,1.9460108953836476e-15,3.764998882342463e-36,6.473692293761785e-11,3.2766780008424502e-31,8.379555829321146e-35,1.0771180164710728e-23,2.924438633572993e-39,0.9994969301810336,0.9999865672607856,0.9999783883771496,0.9999842565244078,2.2871132130513826e-35,0.9999828063869322,0.9996687467732156,0.999968586854476,0.9999798576197161,3.1755473912642042e-27,1.7746218735969875e-15,1.0,0.9999930422067049,1.4853177422526456e-16,1.0028199225888467e-30,5.746401496116806e-12,0.9799260504646308,1.1302565798425798e-15,0.01022689921278393,1.0,1.0,0.9999994751373412,0.9998946129469453,0.9995140635326591,1.2806556348142303e-22,0.9966128108028427,0.9999980842259866,0.9999924100801877,0.9999999992797122,0.9997691928906423,4.67482279802412e-16,1.0,0.9999987672672652,1.1888280690169179e-07,0.9998613233701421,2.949432382720986e-22,2.4431362413280157e-13,3.703727714004695e-19,3.340752790172558e-05,3.719573907026203e-22,9.601120567921723e-17,1.3591949237579156e-23,1.3709712138291298e-22,1.1004780850529364e-05,7.472833912353426e-05,0.00021337373342285106,1.5966388270184728e-14,0.9999999999999933,1.0,9.487238754412135e-38,1.1022224942060936e-16,1.0,9.807704296444688e-09,2.7148853519419976e-06,1.3456755699126072e-05,8.289563982658483e-13,0.0010253012575999897,1.062904420778933e-13,1.0,7.470803391321425e-14,9.420540123988973e-36,0.9980962667166682,8.098677827213692e-34,0.9999741911142608,0.9999959144225128,3.0418992243212405e-05,0.005829833291289891,8.00824913130164e-06,3.5526961983581898e-06,1.6006471539830673e-05,5.670074678356531e-34,2.901844914313056e-06,1.776585972649437e-07,5.926582511198891e-09,4.108730348418467e-08,0.9999888220525336,0.9999544754260377,1.0,3.421426613231037e-13,1.0249638339449347e-16,9.59716964736025e-16,4.792173776596025e-37,1.0173390148760707e-12,3.2087535312192563e-29,1.3939265923441118e-39,1.0,2.3575030285847632e-07,1.2619778849145e-05,4.732446210425349e-06,2.0007659498906856e-36,1.0,5.0245882527253436e-17,1.522893643885745e-16,2.6556949076555214e-33,1.0,0.9999999996841602,0.9999556678477172,0.9999949571272607,0.9976523466224566,2.9929181075479915e-22,2.9553829320197454e-33,8.666413518993852e-06,4.671445195122978e-18,1.4178569807343573e-32,5.088312262581448e-22,0.9999913678136847,1.2289083068287237e-16,8.649787583315587e-17,1.0,3.81688284201692e-14,9.010124957453554e-09,2.5417768798408895e-35,0.998369784992816,3.70357238902644e-16,1.2228257343486706e-33,1.0,1.0,2.9390212354935263e-34,1.530048809713236e-19,3.3469326422671203e-12,3.746810849671671e-07,0.9999892879484793,5.451465596784697e-10,0.9999536296032302,0.9999989630580691,8.645295990535674e-39,0.9999999795106094,0.9999999998029989,0.9999999998980489,1.0,1.136670416483511e-16,0.999999999998596,0.0027656983285017232,0.0057459364198978605,0.9999999999793789,0.0005411465603456187,7.373040776932163e-39,0.999999999255716,1.0,1.0232202199098885e-19,1.0,9.39359130945775e-16,0.99999999939237,0.9999988287673702,0.9999996744727528,0.9999999999999976,4.0829367952536767e-19,3.471918765438658e-15,4.3283961402552944e-13,1.0,0.9722382724254108,0.9945359597723732 -maiz,shape,0.0011963244565344354,0.015346717874142955,9.780200390608764e-06,9.185492129852081e-07,0.051616205172937246,1.5681565403533777e-07,4.347767734229233e-06,0.0002801512113064704,3.323590768468263e-05,0.00019245994413433467,0.9999611498449031,0.9999898569142109,0.9999994977612132,0.00846480943781845,0.967269536731235,0.6483949172912931,4.3366221589449657e-07,1.1291464904647461e-05,0.9730343334781185,0.30327712571649007,7.980332359627569e-05,7.475676050035017e-07,0.9505632584574536,3.706496794187308e-05,1.6616372067422499e-06,7.67194380183523e-07,0.005729533623603934,1.153351723372827e-07,1.484770224433884e-06,0.49593116862243525,0.5757647670060476,9.726209166623231e-05,4.650187916683473e-09,9.688083519555065e-06,2.3847591568806857e-09,8.06470699324079e-09,1.3205153383785478e-06,0.0996212227566204,1.8668678950797674e-06,0.00020957383327433016,6.945224741801476e-07,2.059058550213729e-07,7.015064053712197e-09,7.507018729941872e-09,4.0376577449959275e-09,0.0006968213396318152,4.731633470676551e-05,0.8640009328314778,0.00033367127058365754,1.584176149341806e-06,0.005649299075853944,0.002256490835325391,9.464802483395616e-05,2.1151233901820288e-07,6.703192821778142e-05,1.2660128738259647e-09,0.9996862178051573,0.9999928517981669,0.9999691305304078,0.9999907927223005,0.9997754794737937,0.993068686551797,0.12292823024784438,0.2670770609702265,0.834583967923975,3.879941284897177e-07,1.983557819412721e-07,1.9820545439464177e-05,9.894811563066943e-06,5.722196788264356e-05,3.378161409175724e-06,0.025419098285880428,0.18751331522161752,0.0001998806005012864,0.1324736077067031,0.6385253372988038,4.700842583172227e-07,1.5770755102407547e-07,1.0550492794277974e-07,0.30937201419065175,0.002337258311377974,0.25192036058731676,0.0014057391394842252,0.9988526749309956,6.650785550335077e-05,0.00020239409112986624,0.9974838852565079,0.45112815567479997,0.20640491563199917,0.007685763339847862,3.7319041716428482e-06,0.0839095306759986,0.9909651348185301,0.9918726318050275,0.9966303356440437,0.9999994225819583,4.733062253831203e-09,0.9979190121803728,2.1497112035129755e-06,0.9942664785919202,0.7479721589574949,1.4174536651891073e-07,1.9961140273856977e-07,7.151486125436518e-07,6.407392071383537e-07,0.37663997968431506,0.0001367606557909592,1.5233190455475842e-06,2.4755500242167033e-06,1.8260976359264948e-07,2.1756399503442036e-05,1.6710618524250865e-06,0.004165378894114181,2.231570427187778e-06,8.61737977954258e-06,2.336636232366061e-09,8.036867510144468e-07,2.2867591957449153e-05,0.004793027787268356,0.0011729618565631836,0.9282696371574181,4.867118640737281e-06,1.9410845617072725e-05,1.1777993923223694e-07,1.0494910640287838e-05,0.999989736305117,1.0186615576883776e-06,2.0018145280303477e-05,2.852503477847023e-06,8.595302314740738e-07,0.9734014787603367,3.2486089140534716e-05,0.00011868046634668151,4.168742111090951e-05,5.3536757274036106e-08,0.01404840802271594,1.4779187495850264e-06,0.001737311200254389,3.983069312540718e-05,0.9345732148822133,6.300872030867016e-08,0.011405091575850106,2.5458882433070912e-06,5.320024733802629e-05,0.9999970388495024,0.1008787413815333,0.9834041208086484,1.4525521439473347e-07,3.047485571755828e-07,8.202171430096285e-07,0.00047403429809027503,0.14066472128160798,0.964271010778141,0.9999608875457905,7.405943534571792e-07,0.9999993193874872,0.9999898569142109,6.104675124873592e-07,2.420915115373706e-08,0.7952606071865754,7.959579644924366e-09,0.05554786631611931,2.163191376776266e-09,3.0220393068092944e-08,4.02131575343746e-08,4.849342334115349e-07,0.0001817423901219737,0.9999681166223457,0.9996938320557727,6.967158339168544e-06,0.1846275306490415,1.61549622198952e-07,0.0010124329969712778,0.9979746895129582,0.0012018028526799695,0.0002276044387183847,0.004093648432603644,0.014668066118019787,2.377973164600618e-08,1.4508539353211232e-07,2.586899146235344e-08,4.442172643653808e-10,7.834032691796999e-08,0.9009863507060376,0.1465436407823942,7.707586932639088e-05,2.62350942450853e-05,0.9995105616348596,0.9999429824522791,0.9999908710250893,0.9996145377294329,0.000458241566204192,9.028190458365757e-05,2.6560418770927772e-05,0.0012833174135912192,0.0006805967053644007,8.894888122013767e-08,4.508413196454081e-05,0.0007557919959757322,7.137253844055128e-06,0.0005720864404204286,0.0003413201598585365,3.26383483119852e-06,0.05027640016667079,6.972567581161226e-06,1.2869737712104266e-08,5.678901562218984e-06,4.278020228455027e-07,0.9710249326830752,0.004124852415616524,1.7050262131210386e-06,0.02110479428919649,2.95891214790775e-05,0.9999797082952585,8.26283728620954e-06,7.949418884957847e-05,9.457187780119743e-07,0.0709889059164832,0.0014694766521229454,2.1081043792688135e-05,0.0011629830438178192,0.17432981359810643,3.4853642431542266e-06,0.00089227424679666,0.41508666365596986,4.866668948357098e-05,6.556395635152226e-05,0.30608326690881527,0.0005336826228531406,0.8187727966352714,1.0221723548052921e-05,0.0013827936529243222,0.08835103354702438,2.55088260614143e-06,0.9282696371574192,0.0008077240693117566,0.021174171169596738,0.995221446181146,5.872391172971687e-06,0.0005026241795008287,0.04713252181811259,0.6412195776221653,7.560489100246665e-09,1.4792425506987585e-05 -maiz,object,2.4776415026096865e-06,0.9970218859097675,0.01463863871897612,0.9997570350671288,0.9637502046312388,5.798833234584239e-07,1.9349786718598016e-07,4.45367009473154e-05,1.1425964264443966e-05,3.366290986696028e-05,0.9999659559328922,0.9999911200348615,0.999998080313585,0.9948986396609956,0.9999999988716928,0.0001045526495686294,0.00029505457431198425,0.0018651445233986755,0.9952005456288074,0.8795828942755388,0.04078550675239814,1.0251602980637872e-05,0.06976529186029078,9.455486903814921e-05,2.1451302561330345e-05,0.0009843084500697954,1.6032554457539053e-06,5.199807225608919e-06,1.6530294966856044e-09,0.9996447947105934,0.012890717109337351,0.057891440229487875,6.421161296577142e-08,1.3145190032959415e-06,0.8925458885335787,1.460005971627672e-11,0.0007067374962230452,0.15825947064290713,0.0009188923301537527,0.0016620745684726146,0.9974162820056363,0.020094747445009317,2.5314155367373238e-08,0.016710221985730557,2.1851990459612705e-10,0.6407178856428807,0.09356954728457771,0.996304901920965,5.213004605831255e-07,7.53690440856101e-06,0.0001951524929827885,0.9999969907536177,6.79859267118156e-06,2.8810150328087855e-07,1.217712193263987e-06,1.1535106437035413e-08,0.9997838203242224,0.9999951573328346,0.9999846165037682,0.9999889216491328,0.999909881372011,0.9924518754618894,1.9988792867405637e-05,0.9996808989739887,0.9999427560787139,1.6931885835227285e-06,7.271971959482231e-05,4.430081087442245e-06,2.511831933459994e-06,2.2594296439901913e-05,1.221576392515721e-06,0.9999998200143416,0.9999999104335551,1.8106900237605916e-05,0.9939746118388977,0.9996193735105214,0.0008932129100425753,1.8250713310051552e-06,2.258998414949902e-06,0.9934596519401899,1.157912749279536e-06,0.9911677090109952,0.00215186877112217,0.9999369550836011,8.703334458015477e-06,0.0010360916865195275,0.0012998309769660422,0.4000677428194189,0.0004272335689674445,2.579166904615676e-06,1.2510183598183246e-06,1.6773922873680095e-06,0.9992719193322328,0.9995702754434622,0.9997646465951635,0.99999540480156,5.3272336961267474e-11,0.9997696691523398,0.041294882934681566,0.9999057943297535,0.9994659673490933,6.650592541680813e-09,3.4655699640605395e-07,0.9970881192975253,0.05406685835785212,0.010777712153820259,1.3236028794991827e-05,1.3576569857412458e-05,0.005598362927764926,2.662836255410258e-07,0.0007972757651999497,0.9999908713570667,0.999999729451564,0.5569504043534007,0.13123231853085895,0.00024896950375400404,2.963809240239784e-07,0.4716397331968893,0.9858514149899185,0.18916480763589882,0.9979356651987672,0.2861606058185811,2.712907717516143e-05,0.9846059945166523,0.34385909813292914,0.9975898573724421,0.09673329361020759,3.6459938579066683e-06,2.4299216975335972e-05,2.0055043990671194e-06,0.9126826100408095,6.4447667395628655e-06,3.978511165025901e-05,4.933776322502304e-06,4.84972365529372e-08,0.6919769499539029,0.0004414029710225953,0.060130591985173724,0.0001156965223366291,0.9999762975273466,0.9760097646911136,2.2106703324524062e-07,1.2534837993132167e-05,0.9999620847466277,0.9984817123000967,0.334879472720969,0.9873407250501008,2.8172109943326592e-06,0.0002455918318550383,2.649650534452768e-06,0.9999928105901288,0.1116503200608615,0.00013665936713454265,0.9999568950352822,8.884080987370287e-09,0.9999985575920203,0.9999899026384547,2.373788412247189e-05,2.25959817252922e-05,0.9827680129426868,1.5185038184165393e-06,0.8207921659324613,1.6980493525159512e-11,6.237716863049003e-06,2.9760579200186983e-06,5.241054278256406e-06,0.00028558901364960395,0.9999939734559936,0.9998435076886866,0.9999222203124625,0.2016361237006255,5.469481979576155e-07,0.0032519711698480603,0.0006779848840103889,0.013943607198734345,3.6383192343963484e-06,6.464732173853891e-07,0.999999906942961,1.7529978674342636e-06,1.5211508853841923e-05,3.765464738101894e-06,7.76384295605014e-12,0.9840306365867554,0.06385030150636711,0.0033523495235729187,1.390670380931284e-07,0.9997330119305281,0.999972936049116,0.9999762955026943,0.9999897252106605,0.9997006820983854,5.14767943122043e-05,5.476768020642991e-07,0.0682062425630825,0.0020663197786489995,2.569328471130901e-06,7.403182024239807e-08,0.6416585957236371,7.715530092693009e-05,8.283120508748663e-05,0.9999915030096455,0.0026796588884531536,2.700039773965873e-05,5.393431251352171e-06,0.03703038657832051,5.169016340902685e-06,2.8503882895489013e-08,0.999956283081987,0.9999999991983324,3.472725000376536e-06,3.647858489021601e-06,0.05797825533993519,0.00011929574116008697,0.9999887508023553,3.5804777347323777e-05,0.6583328477848658,0.2935407798280748,1.5212631452208059e-07,0.4605660561309372,0.04298068110904873,0.7078756616198801,0.9999998735816997,1.2520829141991331e-06,0.989453972315374,0.9632267747051638,0.16830951741190042,0.9043227423513064,0.9345833336454961,3.843153451808416e-07,0.9956388751327903,0.9999988771189597,0.00037475566166488017,0.9999998467060471,1.568424106051047e-06,0.9979667870458585,0.09986687311371964,0.8491903402558445,0.999993933022287,6.654547749028135e-06,0.001034472963557086,0.0581333096062943,0.9999999910140597,0.0001294560786501619,0.0825913838215216 -manzana,rgb,0.9999999432636383,4.038437615528376e-14,0.7688734526757411,0.9789723386802289,0.9422981524378793,4.575334195024889e-09,0.9999999998540416,2.9295729717452363e-06,2.2025645994495986e-06,1.2819164575945982e-05,0.04639152688538051,0.2088875188277617,0.17550716945486006,4.774910118225792e-14,0.9057318522498591,0.9999999999953972,0.9806324675682576,0.9674549918070995,0.9767526779457936,0.00030964478533451837,0.9807821156930338,0.9999901853222234,8.61335919248657e-09,0.9999998163003443,6.056630295167793e-11,0.9999624056440148,0.9999999644228142,1.0485664783192868e-10,0.9999999999855276,1.1629015652651006e-11,4.608605439769151e-09,0.671987520222233,8.660855361144676e-09,0.007811795606977667,0.002020773082318974,0.9999999999953428,0.0007575492205656364,0.9996667202378721,4.355109345814294e-09,2.7852203220580623e-08,0.9158545043830727,1.8366685985324507e-10,4.946037111715588e-09,1.4808840899674645e-11,0.9999999999834133,0.12311439574658335,0.5456250540171852,0.7728142232890467,0.9999999999644764,0.00011878292683084088,5.128517997758067e-09,0.931150785868357,5.4020900510946635e-06,2.3380151217350593e-08,0.999999999989605,1.450430466707871e-08,6.638419854995416e-08,1.523355679624972e-07,0.18344328228316237,0.1362105799912265,0.05278032685334661,0.9874965799678338,0.9999999999947589,6.501740282957963e-10,3.6760006344122827e-11,0.9999994703507108,0.9999898522719299,1.0598486985564009e-05,3.706439025539661e-06,1.9836506581699844e-06,1.541539350470294e-08,0.9693022462035665,0.9128074460897729,1.9918876706909274e-05,3.5386914580964964e-14,2.1127805160942303e-10,0.9999833112027708,0.9999995404437001,0.9999943616457614,2.839289688827493e-07,0.9999999527090551,1.0644199224251794e-07,0.7530242779217452,9.096030356136544e-07,2.6469858114780897e-06,0.8901306596922428,0.9999999999896654,0.9998159968979057,0.9999993558894847,0.9999999420311967,3.961128249759791e-06,0.9999999999908016,2.562163695429153e-08,2.173348491508096e-07,4.3174961702917565e-07,7.469794037628284e-07,0.9999999999855202,9.472661592178427e-07,8.448093419238551e-08,8.253309823098866e-07,2.326775821187143e-06,0.9999999998545728,3.388084720419727e-08,0.9557155106886787,3.1539760397796987e-06,4.1078534585468874e-09,0.9999999999833913,0.999999724896137,0.9998423726851332,4.611940982661549e-08,0.9998761255544283,0.9546512049875614,0.9628890951725272,0.08334649091739721,0.06982970244189358,0.041156615153683636,0.0002981782751972112,0.0028274110345067015,0.2482105967672932,0.964871085310765,0.7258967171523051,0.009280359166702471,4.013203680110276e-05,0.9523666435499514,0.043925416396794,2.735774897899692e-08,0.009732556420671199,0.00015946685228850836,0.0004448029945066616,0.021579942101578358,3.1772864948975345e-05,0.013163745003557253,4.214606221405234e-09,1.73301033827899e-05,0.000431015181119611,0.9589286519464046,0.9751280997727607,0.9689112539510865,0.00016558864615532864,1.6823724070787093e-11,0.0027790043699286843,0.9999999999758622,1.778959628301787e-08,0.9254929661298371,0.00012869771650990327,0.0005686900334237048,1.3721737960322404e-06,0.9999966069479111,0.9999905029170586,0.9999997428703826,0.9522809500040319,0.010719976958902252,0.9999999999923297,0.04319901691851208,0.9999999999895335,0.13075044606620104,0.1488644787243362,1.2825301665267768e-11,4.443479717775247e-11,0.9797294557793385,3.34123362274249e-12,0.9809209367272957,0.9999999999994635,3.3993298693290995e-11,2.945109033667156e-11,2.8436385997004267e-11,5.90265492374466e-11,0.12564451078845953,0.12738932029286204,0.9557086259486011,0.009537460193392347,5.143308383014338e-09,0.005328339980158773,0.99999999999501,0.005694602695546591,0.9999999998561375,0.9999999999886675,0.834359771310776,2.4844889592075544e-12,1.456305599953295e-11,2.6796586313964335e-11,0.999999999996972,0.0016214928621066107,9.460402293377009e-09,4.1159319457336366e-09,0.9999999999761402,0.9155024699404495,4.316079947242351e-14,0.12948414642439052,0.16209471429118322,0.04757770993142456,0.1830710818188451,0.9999999555965822,0.0008491166890669885,0.007300041481895662,0.9999999999573972,0.00026948170706771256,0.044821208340303155,7.087811395163656e-09,3.192958621165599e-08,0.9398280178001667,0.015278421059310097,1.302003120196455e-10,0.9999999394614184,0.004107734411901734,3.2775050456692594e-08,0.9999999999897489,0.9535358265018108,0.9301243849779774,0.9999999684073396,0.10607242104115099,0.9995856344239387,6.722689648921921e-11,0.14840903451910287,3.848574161355072e-11,0.021707921826199468,0.11949110265015996,0.9999999999931917,0.44387095715120073,0.7790412739329143,0.6128863754670089,0.9260620466020515,1.798090048918018e-08,1.229424284510056e-09,0.9602734178728006,0.9587152333151843,4.048584206508994e-14,0.9417934147117302,0.9999999999928864,0.7256947473206804,0.003296594808323286,0.914106173440127,0.9279949630545677,3.438633124011034e-08,0.64043363584772,0.04566957950236167,0.19048123559548732,2.5857031874330897e-11,0.005819353668420408,0.009473144935139862,0.9998782032913939,0.0020646724439057863,0.024007061449911618,0.017491151720223263 -manzana,shape,0.038613188677819675,2.048967859371183e-06,0.9995453939132477,0.999880455701449,0.4431536303460671,0.15835066500654982,0.9969531307377985,0.002558817881979722,0.00023778323664066766,0.06415725460911353,2.2240476849911762e-07,1.309004949747971e-06,4.678044211620889e-07,1.9982214488366402e-05,4.785333844399624e-08,2.6877510071880423e-06,0.007669834808146807,0.9365611483408915,3.3372073035005675e-07,3.1683444744236085e-08,1.8664611145352796e-08,0.9998400585960819,1.0242429090809628e-06,0.999824745059529,0.9925193160414012,0.9998537016715082,0.9999684917238059,0.9997931850268527,0.9938644313988364,0.00011855929848459342,0.0005592243525746813,0.9810603171450001,9.984286100727295e-07,0.9897327082258173,0.02955625731823141,0.7585005759050735,0.0006418825477684717,0.9997823042246116,4.993038087649521e-07,1.5700972579439194e-05,0.00014254794393381135,0.0001976103150427237,0.0006553562319043156,0.00016365267885901764,0.001550415053594237,0.8846412026467491,0.9931059099159956,0.21787584950301056,0.9951361366945486,0.985139558586818,0.025900481918970108,0.9699559421174739,0.9899250721652154,3.0235842006490025e-05,0.008660109509766567,1.781131252402679e-06,3.101241716440518e-06,2.463185014774825e-07,6.526614504348224e-07,4.918841508260832e-06,9.686107741083836e-06,2.3155713390705888e-08,1.2408480470530747e-09,0.0001589019416975819,0.00018818461712698077,0.9999866336438136,0.999907974812843,0.8563733626220742,0.8906725818612142,0.0011269401507972845,2.3203448328583212e-07,0.00011279756392724012,0.0001113534072628023,0.9971377289707252,3.4038087743744925e-06,2.9561266509568978e-05,0.9996662145929983,0.9997698106943713,0.9999922664728165,1.3547188298173128e-06,0.9188243796942516,1.4481442646279512e-08,0.34996632447487724,1.6160542454626198e-07,0.8179769115957931,0.4054848339346213,2.912302600509482e-05,0.9999710422223587,0.8115558326197229,0.046795485479944485,0.9800359078754791,0.010112640325927449,7.444313980701038e-07,1.3698440538504461e-08,3.26902039163554e-07,3.0932427020886154e-07,0.0022608213689149443,4.75484363248159e-08,0.0002165854503101065,6.565954465198212e-08,1.8181034916283698e-06,1.925369946934202e-06,2.550233662499291e-06,1.3755668203769709e-06,3.872674527117656e-05,8.241205423223182e-05,4.277995094290245e-05,0.9999879623388777,0.9998797999632009,4.6497093922365625e-08,0.9992312673348656,3.6692431132692535e-05,9.562348629650486e-06,1.565200811141132e-06,6.185757915481584e-05,0.046709046941532904,0.9999573439503484,8.605714023836224e-07,2.539279968824328e-06,0.9616597897482269,0.044195451574587236,3.0471827367307847e-06,0.997158118524448,4.636117842474854e-05,4.375823250336871e-06,1.9570626375341183e-05,1.2999457192118569e-05,0.9998674986166018,0.9927061474666092,0.9935798398214889,0.0006272119846190494,0.9975551745946322,0.0009051301071413599,0.9932511635634982,0.9998954826418556,5.982201995841864e-10,1.186085895196073e-05,3.09361734857096e-09,0.9980401897146707,0.00014125013513545238,0.9998115081180148,2.477798836818985e-06,1.4278236690391646e-06,0.0001792777352965601,8.894359539308196e-07,0.0005254916256076451,1.4574030487044676e-06,0.9999843634600191,0.999857099913008,0.9999226310416882,1.5160319398015554e-06,0.00024366748476222665,1.7074036452580527e-05,4.448093493366427e-07,0.01253485600437072,9.195639006565632e-07,1.3090049497479616e-06,0.9998923325700102,0.9994786232522107,4.6623357517138406e-11,0.999823136563089,1.3011033010663852e-08,0.7247578345000175,0.9926500070600298,0.9949112418505519,0.9982064095128546,0.9943350734670944,1.786679888260925e-05,0.023807311732790583,0.9950446642446181,3.072894691309866e-06,0.7316899161866474,0.0025802294061236905,1.9240835356364436e-05,0.016113567047736116,0.07053099650115516,0.00014576343377295468,0.00011919572179375874,0.9877879916191364,0.9998119763117834,0.9997682388550225,0.008724336665424135,0.9999581144805078,1.1456068352961123e-06,7.476984518324704e-05,0.9906213365012723,0.9905858582687277,3.5298264927857556e-06,8.144001602237525e-07,9.250856025923378e-07,0.02619350240065588,0.9941184000321198,0.97855279917612,1.6679240382750868e-06,0.03815575830819196,0.09731168907884882,0.9996961614332491,1.5196306376836663e-05,0.12874933198590677,2.1544700502216302e-07,0.05803908766832389,0.22540932077594994,0.992899085140906,0.9997780208786019,4.8185331105814116e-08,2.3115361969443628e-06,8.378603449509409e-06,1.8375159065743617e-06,2.634687013429048e-07,0.9991406183273123,0.9963467455117209,0.9997366437524681,0.997200588020461,1.3056326881165788e-05,0.99914708349439,9.922760305500605e-06,0.0001702201698556535,0.0011327784718925145,0.4014171705944352,0.9984226476597693,0.7166929686849364,1.5625002006624905e-05,1.1428064639810272e-07,1.0067054189744652e-05,1.2276667779156892e-06,6.682761512369808e-07,3.3752447525122705e-05,3.4538411155510416e-06,6.527401274340098e-06,0.00422003632609979,5.212470890840019e-09,0.9284765377458758,0.0001300119172270105,2.6811443691440404e-05,0.044195451574587236,0.7855911528664636,0.941978290500289,4.626840421823921e-05,0.9927381276994519,0.7716843530206778,0.9995471523934205,3.225352334845348e-07,0.9068266183600034,0.00014774222997925872 -manzana,object,0.9999677810096382,3.765106936255162e-09,0.9459590426082032,0.9995595756391545,0.7636960797753277,5.2101607775482985e-05,0.9999998740835362,0.0007847668909177259,0.00040622706300740154,0.007343479485395031,0.012299276218532296,0.014042034139226393,0.04123265598928654,1.0537303555891078e-08,0.4732326517904461,0.9999973326019417,0.9356400295126835,0.9914091313599566,0.015375834487840655,2.2563769107432195e-05,0.1110986895293334,0.9999744681542467,3.2422072709725767e-06,0.9999977771140297,3.337485853774995e-05,0.9999436588440176,0.9999996000527419,0.0001166511442177232,0.9999999555766546,3.6151660498299914e-07,5.737222319319104e-05,0.7071528568214154,1.5442679739453448e-06,0.4850413802687621,0.21858321007822343,0.9999999091650673,0.00037821757994243444,0.9999019912780364,1.2829348457433157e-07,5.974183171178367e-07,0.936636049699559,2.806457986298553e-06,4.88825265944127e-05,2.351592110443541e-06,0.9999998586281154,0.46434353421567975,0.705085654844458,0.8469407179451275,0.9999999655654,0.06824258228704153,6.096862018452991e-05,0.9968004161325349,0.01715464769036269,7.456186493000629e-06,0.9999997032436582,7.494208942874842e-07,3.0947992211911893e-06,6.146863570268814e-06,0.009234740670100529,0.16366217678779074,0.13510083706033063,0.08381311921998279,0.999936877420143,6.838774716657707e-06,1.4484372879891314e-06,0.9999969830409663,0.9999640474496462,0.02145755513725366,0.010723766315207025,0.0005303111144661001,2.247355354634604e-06,0.9764464475057515,0.8924825758627724,0.0738725723654927,5.707360280798545e-09,1.886673963744584e-06,0.9999558747744904,0.9999936279537517,0.9999910355385927,4.4572202938536535e-06,0.9999968608763738,4.299707506865798e-06,0.94113080591922,4.754131586026346e-06,0.005923922549165424,0.9507782928728636,0.9999986331186216,0.999932960615476,0.999976841327135,0.9999860688405227,0.015654646128821212,0.9999998758991396,1.2411458427099865e-06,5.408833184635212e-06,6.2258062369343476e-06,7.969805642399128e-06,0.9999998856805195,1.4354650103504953e-05,6.495162484795254e-05,6.870313924989492e-06,1.3719699571981245e-05,0.999974272924014,2.788530324630886e-06,0.6149057948794294,0.00014828626092620983,3.4612437618130888e-06,0.9999981612107008,0.9999983588751938,0.9999433378556135,7.174105855380881e-07,0.9998470953846783,0.44213447112732257,0.8927021537940618,0.00418139732031745,0.002898543885844394,0.023872364035521846,0.40458594539895815,0.0014469338026038866,0.023239138618620724,0.9946663306935901,0.384819493116926,0.0022277000421937906,0.07183914570785914,0.8926109817773978,0.002686790303352927,2.8391615529112204e-06,0.0017139881138490832,0.22717547308062544,0.22882892427869564,0.7063496322688442,0.00022217676767600966,0.7147102692938926,7.149157366698735e-05,0.05658810289627783,0.3598521858639148,0.0073705960486114535,0.5605887221958507,0.0043579984695719725,0.21224796990008268,6.162457850430754e-07,0.8809856659323546,0.9999608900121176,8.240430854532928e-06,0.9210740474267648,8.896174430410738e-05,0.00047592117816132334,2.853048903251633e-06,0.9999909690779507,0.9999757153724814,0.9999963877789355,0.757123582348637,0.05069785678804361,0.999998411506914,0.044550097594795494,0.9999998946623037,0.08840991575748554,0.0109661412942769,5.575465086710591e-05,5.940785301859023e-05,0.005130698278992952,2.059634211129744e-05,0.12586340028220175,0.9999999659051189,2.6257470548000957e-05,3.0405033612839628e-05,3.184441814914634e-05,4.8233832466316974e-05,0.09360603336605883,0.5836537951744003,0.9984161769559087,0.008328803766200724,7.994485324122654e-05,0.0631761749539952,0.9999994906878555,0.05898755204722799,0.9999993325452087,0.9999993831805002,0.9206318190567528,5.014646883941037e-06,4.6566713022549865e-05,6.0362697978807986e-05,0.9999998065552101,0.7903328298146295,3.552054476954697e-06,5.126882248976689e-06,0.9999999715556097,0.9989703910795593,1.1605027763185381e-08,0.08267141744101783,0.02552530256954935,0.40358455002075755,0.898249269404887,0.9999922764111799,0.00013564254002130705,0.1966498543149915,0.9999998358904448,0.24018214494245269,0.009781045922681607,7.311010800511731e-05,2.2497043656811783e-06,0.9912448934668631,0.445055441370549,8.15540677219636e-05,0.9999982197979572,0.0001063833082980724,6.016343185673732e-07,0.9999988881324163,0.40035141031232785,0.8393515062427649,0.9999988811909949,0.8786574525644858,0.9998735325669245,6.118424019546216e-05,0.22212045993572369,8.005703822128431e-05,0.001556028735321596,0.02535086088572234,0.9999996363506048,0.4915442772662089,0.8430324009224872,0.5089946123238586,0.8829491942491445,1.7840150453436148e-06,1.094182543436476e-06,0.030823532188822462,0.2026045860988649,5.328434451309332e-09,0.01314496469626646,0.9999989779135913,0.30078338023152296,0.00023797764143646048,0.9816747963288659,0.9104693292607816,1.076912711283577e-05,0.33191551025874844,0.555126841157612,0.698318341663972,3.400700815496177e-07,0.5990970796193379,0.283986322223357,0.9999260426147015,0.002169659197935125,0.15256408966794643,0.0014993166860805683 -mazorca,rgb,5.6011498994612444e-33,0.9999999999798428,0.9999999673524471,1.0,0.9999999999328728,1.1759215812048723e-16,3.919421509918409e-29,1.6395770233391872e-23,2.0917612749624082e-22,8.693532184198567e-23,0.9984399757895233,0.9999977924748575,0.9999900777798758,0.9999999999977576,1.0,2.33448023807008e-36,0.0004684898271413344,0.0021506148601654934,0.0002510361743237955,9.099055366184037e-08,2.3499917072773e-08,1.0170252860284138e-12,3.701345233571044e-17,4.2161521977267885e-12,2.3855102269141455e-07,0.20814671615921254,2.2289574271009327e-35,1.5360676459092528e-07,4.978438353978718e-36,0.9999999999999789,1.2634600434678052e-16,0.9999999992887179,1.2493457104545145e-16,2.7473959537738e-23,1.0,5.7308172340918496e-36,1.7127743294000514e-06,2.3902536041736034e-11,4.876298424028301e-12,1.8536080561155386e-15,1.0,0.9999999999990783,2.7656507324555804e-16,0.9999999999999998,8.4497311303548e-32,0.9999999873412092,0.9999999994684237,0.9999999642513628,3.013415294675366e-32,1.005411055354978e-15,1.0015566951393756e-16,1.0,6.185953621190573e-23,1.3157595228781387e-16,9.271171823971583e-34,2.0082196904370055e-15,0.9998045691322361,0.9999356364096563,0.9999965877348149,0.9999629381332674,0.9981951251065697,2.5937909257642225e-09,1.0457222786187423e-37,0.999999999998914,0.9999999999999856,1.9062402876476164e-14,0.0001812614582955626,2.637925219217238e-23,2.008463812777271e-23,1.3222062288214714e-22,1.4014123797054877e-16,1.0,1.0,1.1627819229860505e-23,0.9999997711709139,0.9999999999960776,0.020481004788539654,2.711172130146742e-13,1.2538284183267229e-12,0.9999648065223791,9.251653474600004e-35,0.9996311240566569,4.872516062377455e-16,0.9999823912650206,3.205381412985921e-23,1.9460108953836476e-15,3.764998882342463e-36,6.473692293761785e-11,3.2766780008424502e-31,8.379555829321146e-35,1.0771180164710728e-23,2.924438633572993e-39,0.9994969301810336,0.9999865672607856,0.9999783883771496,0.9999842565244078,2.2871132130513826e-35,0.9999828063869322,0.9996687467732156,0.999968586854476,0.9999798576197161,3.1755473912642042e-27,1.7746218735969875e-15,1.0,0.9999930422067049,1.4853177422526456e-16,1.0028199225888467e-30,5.746401496116806e-12,0.9799260504646308,1.1302565798425798e-15,0.01022689921278393,1.0,1.0,0.9999994751373412,0.9998946129469453,0.9995140635326591,1.2806556348142303e-22,0.9966128108028427,0.9999980842259866,0.9999924100801877,0.9999999992797122,0.9997691928906423,4.67482279802412e-16,1.0,0.9999987672672652,1.1888280690169179e-07,0.9998613233701421,2.949432382720986e-22,2.4431362413280157e-13,3.703727714004695e-19,3.340752790172558e-05,3.719573907026203e-22,9.601120567921723e-17,1.3591949237579156e-23,1.3709712138291298e-22,1.1004780850529364e-05,7.472833912353426e-05,0.00021337373342285106,1.5966388270184728e-14,0.9999999999999933,1.0,9.487238754412135e-38,1.1022224942060936e-16,1.0,9.807704296444688e-09,2.7148853519419976e-06,1.3456755699126072e-05,8.289563982658483e-13,0.0010253012575999897,1.062904420778933e-13,1.0,7.470803391321425e-14,9.420540123988973e-36,0.9980962667166682,8.098677827213692e-34,0.9999741911142608,0.9999959144225128,3.0418992243212405e-05,0.005829833291289891,8.00824913130164e-06,3.5526961983581898e-06,1.6006471539830673e-05,5.670074678356531e-34,2.901844914313056e-06,1.776585972649437e-07,5.926582511198891e-09,4.108730348418467e-08,0.9999888220525336,0.9999544754260377,1.0,3.421426613231037e-13,1.0249638339449347e-16,9.59716964736025e-16,4.792173776596025e-37,1.0173390148760707e-12,3.2087535312192563e-29,1.3939265923441118e-39,1.0,2.3575030285847632e-07,1.2619778849145e-05,4.732446210425349e-06,2.0007659498906856e-36,1.0,5.0245882527253436e-17,1.522893643885745e-16,2.6556949076555214e-33,1.0,0.9999999996841602,0.9999556678477172,0.9999949571272607,0.9976523466224566,2.9929181075479915e-22,2.9553829320197454e-33,8.666413518993852e-06,4.671445195122978e-18,1.4178569807343573e-32,5.088312262581448e-22,0.9999913678136847,1.2289083068287237e-16,8.649787583315587e-17,1.0,3.81688284201692e-14,9.010124957453554e-09,2.5417768798408895e-35,0.998369784992816,3.70357238902644e-16,1.2228257343486706e-33,1.0,1.0,2.9390212354935263e-34,1.530048809713236e-19,3.3469326422671203e-12,3.746810849671671e-07,0.9999892879484793,5.451465596784697e-10,0.9999536296032302,0.9999989630580691,8.645295990535674e-39,0.9999999795106094,0.9999999998029989,0.9999999998980489,1.0,1.136670416483511e-16,0.999999999998596,0.0027656983285017232,0.0057459364198978605,0.9999999999793789,0.0005411465603456187,7.373040776932163e-39,0.999999999255716,1.0,1.0232202199098885e-19,1.0,9.39359130945775e-16,0.99999999939237,0.9999988287673702,0.9999996744727528,0.9999999999999976,4.0829367952536767e-19,3.471918765438658e-15,4.3283961402552944e-13,1.0,0.9722382724254108,0.9945359597723732 -mazorca,shape,0.0011963244565344354,0.015346717874142955,9.780200390608764e-06,9.185492129852081e-07,0.051616205172937246,1.5681565403533777e-07,4.347767734229233e-06,0.0002801512113064704,3.323590768468263e-05,0.00019245994413433467,0.9999611498449031,0.9999898569142109,0.9999994977612132,0.00846480943781845,0.967269536731235,0.6483949172912931,4.3366221589449657e-07,1.1291464904647461e-05,0.9730343334781185,0.30327712571649007,7.980332359627569e-05,7.475676050035017e-07,0.9505632584574536,3.706496794187308e-05,1.6616372067422499e-06,7.67194380183523e-07,0.005729533623603934,1.153351723372827e-07,1.484770224433884e-06,0.49593116862243525,0.5757647670060476,9.726209166623231e-05,4.650187916683473e-09,9.688083519555065e-06,2.3847591568806857e-09,8.06470699324079e-09,1.3205153383785478e-06,0.0996212227566204,1.8668678950797674e-06,0.00020957383327433016,6.945224741801476e-07,2.059058550213729e-07,7.015064053712197e-09,7.507018729941872e-09,4.0376577449959275e-09,0.0006968213396318152,4.731633470676551e-05,0.8640009328314778,0.00033367127058365754,1.584176149341806e-06,0.005649299075853944,0.002256490835325391,9.464802483395616e-05,2.1151233901820288e-07,6.703192821778142e-05,1.2660128738259647e-09,0.9996862178051573,0.9999928517981669,0.9999691305304078,0.9999907927223005,0.9997754794737937,0.993068686551797,0.12292823024784438,0.2670770609702265,0.834583967923975,3.879941284897177e-07,1.983557819412721e-07,1.9820545439464177e-05,9.894811563066943e-06,5.722196788264356e-05,3.378161409175724e-06,0.025419098285880428,0.18751331522161752,0.0001998806005012864,0.1324736077067031,0.6385253372988038,4.700842583172227e-07,1.5770755102407547e-07,1.0550492794277974e-07,0.30937201419065175,0.002337258311377974,0.25192036058731676,0.0014057391394842252,0.9988526749309956,6.650785550335077e-05,0.00020239409112986624,0.9974838852565079,0.45112815567479997,0.20640491563199917,0.007685763339847862,3.7319041716428482e-06,0.0839095306759986,0.9909651348185301,0.9918726318050275,0.9966303356440437,0.9999994225819583,4.733062253831203e-09,0.9979190121803728,2.1497112035129755e-06,0.9942664785919202,0.7479721589574949,1.4174536651891073e-07,1.9961140273856977e-07,7.151486125436518e-07,6.407392071383537e-07,0.37663997968431506,0.0001367606557909592,1.5233190455475842e-06,2.4755500242167033e-06,1.8260976359264948e-07,2.1756399503442036e-05,1.6710618524250865e-06,0.004165378894114181,2.231570427187778e-06,8.61737977954258e-06,2.336636232366061e-09,8.036867510144468e-07,2.2867591957449153e-05,0.004793027787268356,0.0011729618565631836,0.9282696371574181,4.867118640737281e-06,1.9410845617072725e-05,1.1777993923223694e-07,1.0494910640287838e-05,0.999989736305117,1.0186615576883776e-06,2.0018145280303477e-05,2.852503477847023e-06,8.595302314740738e-07,0.9734014787603367,3.2486089140534716e-05,0.00011868046634668151,4.168742111090951e-05,5.3536757274036106e-08,0.01404840802271594,1.4779187495850264e-06,0.001737311200254389,3.983069312540718e-05,0.9345732148822133,6.300872030867016e-08,0.011405091575850106,2.5458882433070912e-06,5.320024733802629e-05,0.9999970388495024,0.1008787413815333,0.9834041208086484,1.4525521439473347e-07,3.047485571755828e-07,8.202171430096285e-07,0.00047403429809027503,0.14066472128160798,0.964271010778141,0.9999608875457905,7.405943534571792e-07,0.9999993193874872,0.9999898569142109,6.104675124873592e-07,2.420915115373706e-08,0.7952606071865754,7.959579644924366e-09,0.05554786631611931,2.163191376776266e-09,3.0220393068092944e-08,4.02131575343746e-08,4.849342334115349e-07,0.0001817423901219737,0.9999681166223457,0.9996938320557727,6.967158339168544e-06,0.1846275306490415,1.61549622198952e-07,0.0010124329969712778,0.9979746895129582,0.0012018028526799695,0.0002276044387183847,0.004093648432603644,0.014668066118019787,2.377973164600618e-08,1.4508539353211232e-07,2.586899146235344e-08,4.442172643653808e-10,7.834032691796999e-08,0.9009863507060376,0.1465436407823942,7.707586932639088e-05,2.62350942450853e-05,0.9995105616348596,0.9999429824522791,0.9999908710250893,0.9996145377294329,0.000458241566204192,9.028190458365757e-05,2.6560418770927772e-05,0.0012833174135912192,0.0006805967053644007,8.894888122013767e-08,4.508413196454081e-05,0.0007557919959757322,7.137253844055128e-06,0.0005720864404204286,0.0003413201598585365,3.26383483119852e-06,0.05027640016667079,6.972567581161226e-06,1.2869737712104266e-08,5.678901562218984e-06,4.278020228455027e-07,0.9710249326830752,0.004124852415616524,1.7050262131210386e-06,0.02110479428919649,2.95891214790775e-05,0.9999797082952585,8.26283728620954e-06,7.949418884957847e-05,9.457187780119743e-07,0.0709889059164832,0.0014694766521229454,2.1081043792688135e-05,0.0011629830438178192,0.17432981359810643,3.4853642431542266e-06,0.00089227424679666,0.41508666365596986,4.866668948357098e-05,6.556395635152226e-05,0.30608326690881527,0.0005336826228531406,0.8187727966352714,1.0221723548052921e-05,0.0013827936529243222,0.08835103354702438,2.55088260614143e-06,0.9282696371574192,0.0008077240693117566,0.021174171169596738,0.995221446181146,5.872391172971687e-06,0.0005026241795008287,0.04713252181811259,0.6412195776221653,7.560489100246665e-09,1.4792425506987585e-05 -mazorca,object,2.4776415026096865e-06,0.9970218859097675,0.01463863871897612,0.9997570350671288,0.9637502046312388,5.798833234584239e-07,1.9349786718598016e-07,4.45367009473154e-05,1.1425964264443966e-05,3.366290986696028e-05,0.9999659559328922,0.9999911200348615,0.999998080313585,0.9948986396609956,0.9999999988716928,0.0001045526495686294,0.00029505457431198425,0.0018651445233986755,0.9952005456288074,0.8795828942755388,0.04078550675239814,1.0251602980637872e-05,0.06976529186029078,9.455486903814921e-05,2.1451302561330345e-05,0.0009843084500697954,1.6032554457539053e-06,5.199807225608919e-06,1.6530294966856044e-09,0.9996447947105934,0.012890717109337351,0.057891440229487875,6.421161296577142e-08,1.3145190032959415e-06,0.8925458885335787,1.460005971627672e-11,0.0007067374962230452,0.15825947064290713,0.0009188923301537527,0.0016620745684726146,0.9974162820056363,0.020094747445009317,2.5314155367373238e-08,0.016710221985730557,2.1851990459612705e-10,0.6407178856428807,0.09356954728457771,0.996304901920965,5.213004605831255e-07,7.53690440856101e-06,0.0001951524929827885,0.9999969907536177,6.79859267118156e-06,2.8810150328087855e-07,1.217712193263987e-06,1.1535106437035413e-08,0.9997838203242224,0.9999951573328346,0.9999846165037682,0.9999889216491328,0.999909881372011,0.9924518754618894,1.9988792867405637e-05,0.9996808989739887,0.9999427560787139,1.6931885835227285e-06,7.271971959482231e-05,4.430081087442245e-06,2.511831933459994e-06,2.2594296439901913e-05,1.221576392515721e-06,0.9999998200143416,0.9999999104335551,1.8106900237605916e-05,0.9939746118388977,0.9996193735105214,0.0008932129100425753,1.8250713310051552e-06,2.258998414949902e-06,0.9934596519401899,1.157912749279536e-06,0.9911677090109952,0.00215186877112217,0.9999369550836011,8.703334458015477e-06,0.0010360916865195275,0.0012998309769660422,0.4000677428194189,0.0004272335689674445,2.579166904615676e-06,1.2510183598183246e-06,1.6773922873680095e-06,0.9992719193322328,0.9995702754434622,0.9997646465951635,0.99999540480156,5.3272336961267474e-11,0.9997696691523398,0.041294882934681566,0.9999057943297535,0.9994659673490933,6.650592541680813e-09,3.4655699640605395e-07,0.9970881192975253,0.05406685835785212,0.010777712153820259,1.3236028794991827e-05,1.3576569857412458e-05,0.005598362927764926,2.662836255410258e-07,0.0007972757651999497,0.9999908713570667,0.999999729451564,0.5569504043534007,0.13123231853085895,0.00024896950375400404,2.963809240239784e-07,0.4716397331968893,0.9858514149899185,0.18916480763589882,0.9979356651987672,0.2861606058185811,2.712907717516143e-05,0.9846059945166523,0.34385909813292914,0.9975898573724421,0.09673329361020759,3.6459938579066683e-06,2.4299216975335972e-05,2.0055043990671194e-06,0.9126826100408095,6.4447667395628655e-06,3.978511165025901e-05,4.933776322502304e-06,4.84972365529372e-08,0.6919769499539029,0.0004414029710225953,0.060130591985173724,0.0001156965223366291,0.9999762975273466,0.9760097646911136,2.2106703324524062e-07,1.2534837993132167e-05,0.9999620847466277,0.9984817123000967,0.334879472720969,0.9873407250501008,2.8172109943326592e-06,0.0002455918318550383,2.649650534452768e-06,0.9999928105901288,0.1116503200608615,0.00013665936713454265,0.9999568950352822,8.884080987370287e-09,0.9999985575920203,0.9999899026384547,2.373788412247189e-05,2.25959817252922e-05,0.9827680129426868,1.5185038184165393e-06,0.8207921659324613,1.6980493525159512e-11,6.237716863049003e-06,2.9760579200186983e-06,5.241054278256406e-06,0.00028558901364960395,0.9999939734559936,0.9998435076886866,0.9999222203124625,0.2016361237006255,5.469481979576155e-07,0.0032519711698480603,0.0006779848840103889,0.013943607198734345,3.6383192343963484e-06,6.464732173853891e-07,0.999999906942961,1.7529978674342636e-06,1.5211508853841923e-05,3.765464738101894e-06,7.76384295605014e-12,0.9840306365867554,0.06385030150636711,0.0033523495235729187,1.390670380931284e-07,0.9997330119305281,0.999972936049116,0.9999762955026943,0.9999897252106605,0.9997006820983854,5.14767943122043e-05,5.476768020642991e-07,0.0682062425630825,0.0020663197786489995,2.569328471130901e-06,7.403182024239807e-08,0.6416585957236371,7.715530092693009e-05,8.283120508748663e-05,0.9999915030096455,0.0026796588884531536,2.700039773965873e-05,5.393431251352171e-06,0.03703038657832051,5.169016340902685e-06,2.8503882895489013e-08,0.999956283081987,0.9999999991983324,3.472725000376536e-06,3.647858489021601e-06,0.05797825533993519,0.00011929574116008697,0.9999887508023553,3.5804777347323777e-05,0.6583328477848658,0.2935407798280748,1.5212631452208059e-07,0.4605660561309372,0.04298068110904873,0.7078756616198801,0.9999998735816997,1.2520829141991331e-06,0.989453972315374,0.9632267747051638,0.16830951741190042,0.9043227423513064,0.9345833336454961,3.843153451808416e-07,0.9956388751327903,0.9999988771189597,0.00037475566166488017,0.9999998467060471,1.568424106051047e-06,0.9979667870458585,0.09986687311371964,0.8491903402558445,0.999993933022287,6.654547749028135e-06,0.001034472963557086,0.0581333096062943,0.9999999910140597,0.0001294560786501619,0.0825913838215216 -maíz,rgb,5.6011498994612444e-33,0.9999999999798428,0.9999999673524471,1.0,0.9999999999328728,1.1759215812048723e-16,3.919421509918409e-29,1.6395770233391872e-23,2.0917612749624082e-22,8.693532184198567e-23,0.9984399757895233,0.9999977924748575,0.9999900777798758,0.9999999999977576,1.0,2.33448023807008e-36,0.0004684898271413344,0.0021506148601654934,0.0002510361743237955,9.099055366184037e-08,2.3499917072773e-08,1.0170252860284138e-12,3.701345233571044e-17,4.2161521977267885e-12,2.3855102269141455e-07,0.20814671615921254,2.2289574271009327e-35,1.5360676459092528e-07,4.978438353978718e-36,0.9999999999999789,1.2634600434678052e-16,0.9999999992887179,1.2493457104545145e-16,2.7473959537738e-23,1.0,5.7308172340918496e-36,1.7127743294000514e-06,2.3902536041736034e-11,4.876298424028301e-12,1.8536080561155386e-15,1.0,0.9999999999990783,2.7656507324555804e-16,0.9999999999999998,8.4497311303548e-32,0.9999999873412092,0.9999999994684237,0.9999999642513628,3.013415294675366e-32,1.005411055354978e-15,1.0015566951393756e-16,1.0,6.185953621190573e-23,1.3157595228781387e-16,9.271171823971583e-34,2.0082196904370055e-15,0.9998045691322361,0.9999356364096563,0.9999965877348149,0.9999629381332674,0.9981951251065697,2.5937909257642225e-09,1.0457222786187423e-37,0.999999999998914,0.9999999999999856,1.9062402876476164e-14,0.0001812614582955626,2.637925219217238e-23,2.008463812777271e-23,1.3222062288214714e-22,1.4014123797054877e-16,1.0,1.0,1.1627819229860505e-23,0.9999997711709139,0.9999999999960776,0.020481004788539654,2.711172130146742e-13,1.2538284183267229e-12,0.9999648065223791,9.251653474600004e-35,0.9996311240566569,4.872516062377455e-16,0.9999823912650206,3.205381412985921e-23,1.9460108953836476e-15,3.764998882342463e-36,6.473692293761785e-11,3.2766780008424502e-31,8.379555829321146e-35,1.0771180164710728e-23,2.924438633572993e-39,0.9994969301810336,0.9999865672607856,0.9999783883771496,0.9999842565244078,2.2871132130513826e-35,0.9999828063869322,0.9996687467732156,0.999968586854476,0.9999798576197161,3.1755473912642042e-27,1.7746218735969875e-15,1.0,0.9999930422067049,1.4853177422526456e-16,1.0028199225888467e-30,5.746401496116806e-12,0.9799260504646308,1.1302565798425798e-15,0.01022689921278393,1.0,1.0,0.9999994751373412,0.9998946129469453,0.9995140635326591,1.2806556348142303e-22,0.9966128108028427,0.9999980842259866,0.9999924100801877,0.9999999992797122,0.9997691928906423,4.67482279802412e-16,1.0,0.9999987672672652,1.1888280690169179e-07,0.9998613233701421,2.949432382720986e-22,2.4431362413280157e-13,3.703727714004695e-19,3.340752790172558e-05,3.719573907026203e-22,9.601120567921723e-17,1.3591949237579156e-23,1.3709712138291298e-22,1.1004780850529364e-05,7.472833912353426e-05,0.00021337373342285106,1.5966388270184728e-14,0.9999999999999933,1.0,9.487238754412135e-38,1.1022224942060936e-16,1.0,9.807704296444688e-09,2.7148853519419976e-06,1.3456755699126072e-05,8.289563982658483e-13,0.0010253012575999897,1.062904420778933e-13,1.0,7.470803391321425e-14,9.420540123988973e-36,0.9980962667166682,8.098677827213692e-34,0.9999741911142608,0.9999959144225128,3.0418992243212405e-05,0.005829833291289891,8.00824913130164e-06,3.5526961983581898e-06,1.6006471539830673e-05,5.670074678356531e-34,2.901844914313056e-06,1.776585972649437e-07,5.926582511198891e-09,4.108730348418467e-08,0.9999888220525336,0.9999544754260377,1.0,3.421426613231037e-13,1.0249638339449347e-16,9.59716964736025e-16,4.792173776596025e-37,1.0173390148760707e-12,3.2087535312192563e-29,1.3939265923441118e-39,1.0,2.3575030285847632e-07,1.2619778849145e-05,4.732446210425349e-06,2.0007659498906856e-36,1.0,5.0245882527253436e-17,1.522893643885745e-16,2.6556949076555214e-33,1.0,0.9999999996841602,0.9999556678477172,0.9999949571272607,0.9976523466224566,2.9929181075479915e-22,2.9553829320197454e-33,8.666413518993852e-06,4.671445195122978e-18,1.4178569807343573e-32,5.088312262581448e-22,0.9999913678136847,1.2289083068287237e-16,8.649787583315587e-17,1.0,3.81688284201692e-14,9.010124957453554e-09,2.5417768798408895e-35,0.998369784992816,3.70357238902644e-16,1.2228257343486706e-33,1.0,1.0,2.9390212354935263e-34,1.530048809713236e-19,3.3469326422671203e-12,3.746810849671671e-07,0.9999892879484793,5.451465596784697e-10,0.9999536296032302,0.9999989630580691,8.645295990535674e-39,0.9999999795106094,0.9999999998029989,0.9999999998980489,1.0,1.136670416483511e-16,0.999999999998596,0.0027656983285017232,0.0057459364198978605,0.9999999999793789,0.0005411465603456187,7.373040776932163e-39,0.999999999255716,1.0,1.0232202199098885e-19,1.0,9.39359130945775e-16,0.99999999939237,0.9999988287673702,0.9999996744727528,0.9999999999999976,4.0829367952536767e-19,3.471918765438658e-15,4.3283961402552944e-13,1.0,0.9722382724254108,0.9945359597723732 -maíz,shape,0.0011963244565344354,0.015346717874142955,9.780200390608764e-06,9.185492129852081e-07,0.051616205172937246,1.5681565403533777e-07,4.347767734229233e-06,0.0002801512113064704,3.323590768468263e-05,0.00019245994413433467,0.9999611498449031,0.9999898569142109,0.9999994977612132,0.00846480943781845,0.967269536731235,0.6483949172912931,4.3366221589449657e-07,1.1291464904647461e-05,0.9730343334781185,0.30327712571649007,7.980332359627569e-05,7.475676050035017e-07,0.9505632584574536,3.706496794187308e-05,1.6616372067422499e-06,7.67194380183523e-07,0.005729533623603934,1.153351723372827e-07,1.484770224433884e-06,0.49593116862243525,0.5757647670060476,9.726209166623231e-05,4.650187916683473e-09,9.688083519555065e-06,2.3847591568806857e-09,8.06470699324079e-09,1.3205153383785478e-06,0.0996212227566204,1.8668678950797674e-06,0.00020957383327433016,6.945224741801476e-07,2.059058550213729e-07,7.015064053712197e-09,7.507018729941872e-09,4.0376577449959275e-09,0.0006968213396318152,4.731633470676551e-05,0.8640009328314778,0.00033367127058365754,1.584176149341806e-06,0.005649299075853944,0.002256490835325391,9.464802483395616e-05,2.1151233901820288e-07,6.703192821778142e-05,1.2660128738259647e-09,0.9996862178051573,0.9999928517981669,0.9999691305304078,0.9999907927223005,0.9997754794737937,0.993068686551797,0.12292823024784438,0.2670770609702265,0.834583967923975,3.879941284897177e-07,1.983557819412721e-07,1.9820545439464177e-05,9.894811563066943e-06,5.722196788264356e-05,3.378161409175724e-06,0.025419098285880428,0.18751331522161752,0.0001998806005012864,0.1324736077067031,0.6385253372988038,4.700842583172227e-07,1.5770755102407547e-07,1.0550492794277974e-07,0.30937201419065175,0.002337258311377974,0.25192036058731676,0.0014057391394842252,0.9988526749309956,6.650785550335077e-05,0.00020239409112986624,0.9974838852565079,0.45112815567479997,0.20640491563199917,0.007685763339847862,3.7319041716428482e-06,0.0839095306759986,0.9909651348185301,0.9918726318050275,0.9966303356440437,0.9999994225819583,4.733062253831203e-09,0.9979190121803728,2.1497112035129755e-06,0.9942664785919202,0.7479721589574949,1.4174536651891073e-07,1.9961140273856977e-07,7.151486125436518e-07,6.407392071383537e-07,0.37663997968431506,0.0001367606557909592,1.5233190455475842e-06,2.4755500242167033e-06,1.8260976359264948e-07,2.1756399503442036e-05,1.6710618524250865e-06,0.004165378894114181,2.231570427187778e-06,8.61737977954258e-06,2.336636232366061e-09,8.036867510144468e-07,2.2867591957449153e-05,0.004793027787268356,0.0011729618565631836,0.9282696371574181,4.867118640737281e-06,1.9410845617072725e-05,1.1777993923223694e-07,1.0494910640287838e-05,0.999989736305117,1.0186615576883776e-06,2.0018145280303477e-05,2.852503477847023e-06,8.595302314740738e-07,0.9734014787603367,3.2486089140534716e-05,0.00011868046634668151,4.168742111090951e-05,5.3536757274036106e-08,0.01404840802271594,1.4779187495850264e-06,0.001737311200254389,3.983069312540718e-05,0.9345732148822133,6.300872030867016e-08,0.011405091575850106,2.5458882433070912e-06,5.320024733802629e-05,0.9999970388495024,0.1008787413815333,0.9834041208086484,1.4525521439473347e-07,3.047485571755828e-07,8.202171430096285e-07,0.00047403429809027503,0.14066472128160798,0.964271010778141,0.9999608875457905,7.405943534571792e-07,0.9999993193874872,0.9999898569142109,6.104675124873592e-07,2.420915115373706e-08,0.7952606071865754,7.959579644924366e-09,0.05554786631611931,2.163191376776266e-09,3.0220393068092944e-08,4.02131575343746e-08,4.849342334115349e-07,0.0001817423901219737,0.9999681166223457,0.9996938320557727,6.967158339168544e-06,0.1846275306490415,1.61549622198952e-07,0.0010124329969712778,0.9979746895129582,0.0012018028526799695,0.0002276044387183847,0.004093648432603644,0.014668066118019787,2.377973164600618e-08,1.4508539353211232e-07,2.586899146235344e-08,4.442172643653808e-10,7.834032691796999e-08,0.9009863507060376,0.1465436407823942,7.707586932639088e-05,2.62350942450853e-05,0.9995105616348596,0.9999429824522791,0.9999908710250893,0.9996145377294329,0.000458241566204192,9.028190458365757e-05,2.6560418770927772e-05,0.0012833174135912192,0.0006805967053644007,8.894888122013767e-08,4.508413196454081e-05,0.0007557919959757322,7.137253844055128e-06,0.0005720864404204286,0.0003413201598585365,3.26383483119852e-06,0.05027640016667079,6.972567581161226e-06,1.2869737712104266e-08,5.678901562218984e-06,4.278020228455027e-07,0.9710249326830752,0.004124852415616524,1.7050262131210386e-06,0.02110479428919649,2.95891214790775e-05,0.9999797082952585,8.26283728620954e-06,7.949418884957847e-05,9.457187780119743e-07,0.0709889059164832,0.0014694766521229454,2.1081043792688135e-05,0.0011629830438178192,0.17432981359810643,3.4853642431542266e-06,0.00089227424679666,0.41508666365596986,4.866668948357098e-05,6.556395635152226e-05,0.30608326690881527,0.0005336826228531406,0.8187727966352714,1.0221723548052921e-05,0.0013827936529243222,0.08835103354702438,2.55088260614143e-06,0.9282696371574192,0.0008077240693117566,0.021174171169596738,0.995221446181146,5.872391172971687e-06,0.0005026241795008287,0.04713252181811259,0.6412195776221653,7.560489100246665e-09,1.4792425506987585e-05 -maíz,object,2.4776415026096865e-06,0.9970218859097675,0.01463863871897612,0.9997570350671288,0.9637502046312388,5.798833234584239e-07,1.9349786718598016e-07,4.45367009473154e-05,1.1425964264443966e-05,3.366290986696028e-05,0.9999659559328922,0.9999911200348615,0.999998080313585,0.9948986396609956,0.9999999988716928,0.0001045526495686294,0.00029505457431198425,0.0018651445233986755,0.9952005456288074,0.8795828942755388,0.04078550675239814,1.0251602980637872e-05,0.06976529186029078,9.455486903814921e-05,2.1451302561330345e-05,0.0009843084500697954,1.6032554457539053e-06,5.199807225608919e-06,1.6530294966856044e-09,0.9996447947105934,0.012890717109337351,0.057891440229487875,6.421161296577142e-08,1.3145190032959415e-06,0.8925458885335787,1.460005971627672e-11,0.0007067374962230452,0.15825947064290713,0.0009188923301537527,0.0016620745684726146,0.9974162820056363,0.020094747445009317,2.5314155367373238e-08,0.016710221985730557,2.1851990459612705e-10,0.6407178856428807,0.09356954728457771,0.996304901920965,5.213004605831255e-07,7.53690440856101e-06,0.0001951524929827885,0.9999969907536177,6.79859267118156e-06,2.8810150328087855e-07,1.217712193263987e-06,1.1535106437035413e-08,0.9997838203242224,0.9999951573328346,0.9999846165037682,0.9999889216491328,0.999909881372011,0.9924518754618894,1.9988792867405637e-05,0.9996808989739887,0.9999427560787139,1.6931885835227285e-06,7.271971959482231e-05,4.430081087442245e-06,2.511831933459994e-06,2.2594296439901913e-05,1.221576392515721e-06,0.9999998200143416,0.9999999104335551,1.8106900237605916e-05,0.9939746118388977,0.9996193735105214,0.0008932129100425753,1.8250713310051552e-06,2.258998414949902e-06,0.9934596519401899,1.157912749279536e-06,0.9911677090109952,0.00215186877112217,0.9999369550836011,8.703334458015477e-06,0.0010360916865195275,0.0012998309769660422,0.4000677428194189,0.0004272335689674445,2.579166904615676e-06,1.2510183598183246e-06,1.6773922873680095e-06,0.9992719193322328,0.9995702754434622,0.9997646465951635,0.99999540480156,5.3272336961267474e-11,0.9997696691523398,0.041294882934681566,0.9999057943297535,0.9994659673490933,6.650592541680813e-09,3.4655699640605395e-07,0.9970881192975253,0.05406685835785212,0.010777712153820259,1.3236028794991827e-05,1.3576569857412458e-05,0.005598362927764926,2.662836255410258e-07,0.0007972757651999497,0.9999908713570667,0.999999729451564,0.5569504043534007,0.13123231853085895,0.00024896950375400404,2.963809240239784e-07,0.4716397331968893,0.9858514149899185,0.18916480763589882,0.9979356651987672,0.2861606058185811,2.712907717516143e-05,0.9846059945166523,0.34385909813292914,0.9975898573724421,0.09673329361020759,3.6459938579066683e-06,2.4299216975335972e-05,2.0055043990671194e-06,0.9126826100408095,6.4447667395628655e-06,3.978511165025901e-05,4.933776322502304e-06,4.84972365529372e-08,0.6919769499539029,0.0004414029710225953,0.060130591985173724,0.0001156965223366291,0.9999762975273466,0.9760097646911136,2.2106703324524062e-07,1.2534837993132167e-05,0.9999620847466277,0.9984817123000967,0.334879472720969,0.9873407250501008,2.8172109943326592e-06,0.0002455918318550383,2.649650534452768e-06,0.9999928105901288,0.1116503200608615,0.00013665936713454265,0.9999568950352822,8.884080987370287e-09,0.9999985575920203,0.9999899026384547,2.373788412247189e-05,2.25959817252922e-05,0.9827680129426868,1.5185038184165393e-06,0.8207921659324613,1.6980493525159512e-11,6.237716863049003e-06,2.9760579200186983e-06,5.241054278256406e-06,0.00028558901364960395,0.9999939734559936,0.9998435076886866,0.9999222203124625,0.2016361237006255,5.469481979576155e-07,0.0032519711698480603,0.0006779848840103889,0.013943607198734345,3.6383192343963484e-06,6.464732173853891e-07,0.999999906942961,1.7529978674342636e-06,1.5211508853841923e-05,3.765464738101894e-06,7.76384295605014e-12,0.9840306365867554,0.06385030150636711,0.0033523495235729187,1.390670380931284e-07,0.9997330119305281,0.999972936049116,0.9999762955026943,0.9999897252106605,0.9997006820983854,5.14767943122043e-05,5.476768020642991e-07,0.0682062425630825,0.0020663197786489995,2.569328471130901e-06,7.403182024239807e-08,0.6416585957236371,7.715530092693009e-05,8.283120508748663e-05,0.9999915030096455,0.0026796588884531536,2.700039773965873e-05,5.393431251352171e-06,0.03703038657832051,5.169016340902685e-06,2.8503882895489013e-08,0.999956283081987,0.9999999991983324,3.472725000376536e-06,3.647858489021601e-06,0.05797825533993519,0.00011929574116008697,0.9999887508023553,3.5804777347323777e-05,0.6583328477848658,0.2935407798280748,1.5212631452208059e-07,0.4605660561309372,0.04298068110904873,0.7078756616198801,0.9999998735816997,1.2520829141991331e-06,0.989453972315374,0.9632267747051638,0.16830951741190042,0.9043227423513064,0.9345833336454961,3.843153451808416e-07,0.9956388751327903,0.9999988771189597,0.00037475566166488017,0.9999998467060471,1.568424106051047e-06,0.9979667870458585,0.09986687311371964,0.8491903402558445,0.999993933022287,6.654547749028135e-06,0.001034472963557086,0.0581333096062943,0.9999999910140597,0.0001294560786501619,0.0825913838215216 -medio,rgb,0.03671411531995169,0.9999999999999969,3.548797351322456e-12,0.999999999999754,1.5559519053926498e-11,0.9999002870498854,1.762089422788037e-05,0.9984123197888685,0.9936037766363016,0.9206778253459883,9.469618227983428e-12,7.643738261754847e-12,6.281761647156755e-12,0.999999999999998,1.0,0.9997762931142652,9.050748077084904e-15,1.2805941571511858e-14,1.0476179883659079e-14,7.314198401559102e-09,2.3785399087022743e-14,5.238328458544203e-15,0.9997889594969713,1.855668163194197e-15,0.9999781616500677,5.858006960177633e-16,0.9465379086724198,0.9999258008803936,0.9988286667822341,0.9999999994611661,0.9998944981355812,2.243997476319614e-11,0.9995750393909043,0.001038205971464287,0.9999999999999991,0.9993202007530977,1.2595813830267668e-09,8.815840592013785e-15,0.9861406128226923,0.9785671850973748,0.9999999999946614,0.9999972781932891,0.9998094984152821,0.9999999999308871,0.015666087041365413,7.030223000257143e-11,3.8253256856215495e-11,3.379990435246636e-12,0.02966164004873075,1.4203602910407913e-05,0.9998823576756118,0.9999999999961338,0.986311224583691,0.9962683698154426,0.7075163372744008,0.9943253343372019,0.004614590498167023,0.0011922188888030176,7.87899773506389e-12,6.085886740330429e-12,8.029618148848364e-12,2.6369606316920505e-14,0.9999953630635134,0.9999509594428256,0.9999999926984076,1.0149707288789771e-14,3.050859395635542e-16,0.975755504948697,0.9971045360074675,0.996267004422555,0.9984135841212023,0.9999999999939295,0.9999999999760532,0.9607723383684622,0.9999999999999487,0.9999926427625074,3.900994186647956e-16,4.247367985992576e-15,4.2367442105972674e-15,0.00043261156686200396,0.775199269330168,0.0017390139162197292,5.769230755040391e-11,6.48858275806559e-05,0.9977962353946108,1.2911544333936083e-11,0.9993188857345093,5.177276775772979e-15,0.00085794201415706,0.7963256422496993,0.9979838018599585,0.9999999475556752,0.024412225124285106,0.0008420989286392136,0.00022626781611775684,9.300208708046648e-05,0.9927377290989378,6.0840474344335505e-05,0.0027141498311215127,6.838399953099753e-05,1.3077853581411848e-05,4.3046244470880376e-07,0.9687117607665591,0.9999999999994966,9.949012172369289e-06,0.9999107997035986,0.001399142825898435,1.7461834645253267e-15,1.836364382634528e-15,0.9535135747276651,6.73358594076018e-16,0.9999999999975819,0.99999999999999,3.1521235466120166e-11,1.0038827466017592e-11,1.3215288888528646e-11,0.0417451876431379,2.092247171457068e-10,6.490992551027168e-12,1.493736255399036e-13,1.8435700731974698e-11,7.990093839462887e-11,0.00011662080727357749,0.9999999999444431,4.8747347741324984e-11,0.061465936968101854,8.347372909889893e-11,0.06125343156323317,1.815113094005547e-07,5.385654434198907e-07,8.616180790494105e-08,8.016014247758162e-05,0.9999260119067694,0.9652550895828826,0.02272249258416948,1.9189964097990852e-14,1.1591348700919988e-14,1.2995771616267791e-14,2.4257963169946097e-06,0.9999999993027167,0.9999999999999962,0.9999894866561503,0.9981095111594361,0.9999999996092521,4.257928655648628e-08,1.7459413814988722e-09,1.7193266043157847e-05,4.2276887914963785e-15,3.04363378027095e-16,5.3946859995147914e-15,0.9999999999047371,3.694980512069364e-09,0.9982778280977702,9.911164939058192e-12,0.7366213436935757,6.922511184756308e-12,9.489484982141698e-12,0.9999987577050046,0.9999470560361757,1.1684044520507035e-14,0.9999999748577957,1.0589612757445278e-14,0.9727736887569763,0.999990787880005,0.9999965789993961,0.9999987766524923,0.9999869226200728,8.843895810142957e-12,6.255391222993582e-12,0.9999999999992,2.408297483363655e-09,0.9998800506650681,5.8798776771956834e-08,0.9999677630832223,3.164998574933142e-09,2.1159591365218383e-05,0.999999978926092,0.9999999999999993,0.9999999939391835,0.9999985331570216,0.9999943707746074,0.9998624355532545,0.9999999999999989,0.9996909898919926,0.9999091492994184,0.3252386412184565,0.9999996468504605,0.9999999999999882,6.180544641508535e-12,8.167746939962526e-12,8.622570001985302e-12,2.719025044749099e-06,0.06915119787378231,8.633136977994986e-10,5.507492444208269e-07,0.05756138178896653,0.018824081163987417,2.8613509644983282e-11,0.9997292395016789,0.9942821489977056,0.9999999998911691,3.065106218258789e-09,0.9999416683611936,0.9397778824476392,1.4845512125158995e-10,0.9868016721242213,0.6427585727144641,0.9999999999883988,1.0,0.47888048565153996,1.1371326742112826e-07,1.685254684825865e-14,0.9999686403030122,7.437873687491334e-12,0.9999987874934073,4.2588519135657604e-11,1.7588028188572338e-11,0.9999998063214546,1.2821595671658528e-11,2.6228292095187947e-11,6.354431418707066e-11,0.9999999997473303,0.9980325154494863,0.9997813936671367,1.4825323999490293e-14,1.5311526107874384e-14,0.9999999999999967,2.033399003124226e-14,0.9999998398138751,1.819743708868923e-11,1.0,1.31888889619496e-09,0.999999999945073,0.9764946650647548,2.6655128458005114e-11,4.7436942134838827e-11,1.4826467498932683e-11,0.999999998863756,2.9228321593691963e-06,1.5459590842604562e-08,1.7268633190765208e-14,0.9999999999999909,1.3047660017311951e-11,2.3044587692460346e-11 -medio,shape,0.6365845063674328,0.99992289678426,0.3998611586246555,0.003385603616125312,1.2840538124659811e-05,0.2661633273146655,0.05019357815789486,0.991789925979201,0.9979288707129333,0.7579537241365334,0.0006723151521463816,0.00022855131257266812,1.0286926468119625e-05,0.9987970673116039,0.999342073586911,0.9998530648069424,0.00016031506851997215,6.309260503480647e-06,0.8424211314112771,0.9996922990496473,0.04205803267775379,0.9199315488184152,0.9994123303934651,0.9845490369305647,0.768965917730736,0.5863567480896449,1.5526580554461533e-07,0.12632231679893674,0.9736600724236326,0.9998809571390891,0.9988201856387213,1.3963450527068502e-05,0.9998614415061273,8.65473056587104e-05,0.9999585564269593,0.9999307754855982,0.00497574053386114,1.1426423424282446e-05,0.9999982195679422,0.9968865426238788,0.6080326874650862,0.3233196856343506,0.8949079872813513,0.4640747872551504,0.08496425672452622,6.792563626357238e-05,8.773839695995936e-05,0.17922705576902373,0.9972397982944146,0.0003780824662278002,0.9997925956184084,0.9741105526846573,0.000864807523152508,0.9996040850714695,0.020990437709454347,0.9999103187759726,0.0002781410523603428,0.0009998817328631963,0.00029646460679237115,0.0009928970356441343,0.0008290248643408218,0.9616835883592003,0.9999018861736265,0.02125535643680469,0.9998574667442474,0.9536752659476179,0.9960029016410324,0.4385638510553789,0.10892425141973897,0.9834148059353242,0.9996699960555815,0.9995843160808601,0.010811976159917584,0.001084727140316318,0.9999627106898393,0.014287113921186109,0.8926874494473254,0.855136407091101,0.9586665711539929,0.9960444246251234,2.691142903268675e-05,0.00024713505384984987,0.00043050164571403825,0.7882093356431771,0.014362893145431602,0.0008569120605507522,0.9999992066020775,7.34450409057951e-06,0.00010884534989907977,0.0024129113983430484,0.023369559863195055,0.999564295828424,0.00030441725542262285,0.00014425155172886133,0.00027473170704917573,0.0007383253449970628,0.19910526559803776,0.0001406537702173482,0.012916743625701992,0.001315040419931873,0.9913928520981233,0.05475552111196162,0.4108274590775533,0.021117283277086226,9.183690517045685e-05,0.999996599651383,0.7989752632574048,0.8648349003774719,0.0027559442154061003,0.9957389002668655,0.9728413248180223,0.996809709740581,0.9998226486999235,0.00024700758144148756,0.00033257985017314017,0.2541847587520965,3.48483099360489e-05,0.01770467315831259,0.00043371295327614395,0.00028879125225076503,0.00015502802028714526,0.03474588764040905,0.0003685771223246182,0.9957171938025692,0.0013778846148669408,0.0005301623250686475,0.24611397320424983,1.6551828438098044e-05,9.54546481154212e-05,0.0004824794445850157,0.001386702209257223,4.306950782774438e-06,0.781492303336082,1.29572952526618e-05,0.00020524051967290723,0.8019182004984605,0.16090150046827995,0.00025987352997631065,4.210491129326103e-05,0.9999788177962776,0.9997466543433613,0.99999158995593,0.9865853997467599,0.28757962093313055,1.1605987401380054e-07,1.527118888153818e-05,0.38728750888791497,0.9292859614756038,0.043168981742161175,0.8514595230275345,0.7870857281400961,0.48053092759855826,0.9987530385963088,0.001342373206231822,0.9976067420977338,0.1040112858174754,0.00022855131257267053,0.4365136760846275,0.30741649599891596,0.9123107450557926,0.22275265704911598,0.0015516793059167017,0.9998331530066996,0.02088336741740552,0.10670388935551524,0.33737833180814225,0.8977958619614446,0.396139073926599,0.5987666561805727,0.0020640379941897374,0.012705569502312632,0.4801546583234578,0.6974595289417694,0.9999407399648685,0.7994190293438808,0.9854496796438118,0.9999142003807681,0.9991346501388493,0.25230415290210395,0.005782920643308826,0.03072867238175154,0.999881410040377,0.9997395429611922,0.999388757353785,0.9999964608415747,0.9779697451985578,0.7002653785507104,0.9995546311432921,0.9948770910186705,1.7417087774601108e-06,0.0012147009586781343,2.9903078772524465e-05,6.00536490284513e-05,0.9935712396896662,0.2852225305898186,0.9354919870187713,4.385273487450907e-05,0.8155633219934431,0.999098117061213,0.6403475717620347,0.8475890979152724,0.16801887785465786,0.1837780849397285,8.997570462614545e-07,0.9496998985793872,0.999995766876699,0.43762297395145694,0.9999973490504629,0.9988988076527615,1.1655523137025112e-07,1.4282445334777408e-05,0.008363788719603927,0.23646722223682926,0.00013740486742411758,0.006111142014940612,0.006177499714089931,0.0005834290038662749,0.9998051029103282,0.0006264856532345338,2.2315439590237694e-05,2.053862371203757e-06,0.9976387032006592,0.9977035525879523,0.7649409506172361,0.0006314410246106986,0.00027586539353722345,0.9999690597591012,0.45685254679990117,0.9997721896162511,0.00010540077957302121,0.9999999718035203,8.686063955222116e-05,0.003905932178379447,0.9035597465433087,0.00015502802028714415,7.176022981495358e-05,0.0017069150089176015,0.999943413308782,0.002396041697052985,0.5639386835932735,0.0005423899088547161,0.9996854045518343,0.9869724850556173,1.937826843259169e-05 -medio,object,0.13208221998473618,0.9999475864298626,0.007541222603849908,0.476859594633269,1.721088506320056e-05,0.8925436724761178,0.020876796588041632,0.9676625767770466,0.9909213679683684,0.7477225184341016,0.00015864573944041353,2.105904317083514e-06,3.9099228481447e-06,0.9997922488335158,0.9997110691649364,0.9998419856250218,8.565014709742596e-05,1.9730077443875804e-06,5.635028221665295e-05,0.24575195910729927,0.00046043385150558734,0.006310228310081114,0.9997532403844827,0.01717038628650129,0.9791991328699093,0.0003269788478403168,5.0654151518988653e-05,0.7039996771763829,0.9648906528672649,0.9999914197949805,0.9996846188532009,7.772513839988013e-06,0.9998837169627982,0.00019114241482337047,0.9999974111546633,0.999916919401912,0.0003732315682412967,1.6439013752653672e-06,0.9992347713156527,0.7490867801040381,0.9899739070761465,0.8881226959634144,0.9891720952552864,0.9939675476545183,0.10955654384325551,2.234217885819659e-05,3.6353242318601514e-05,0.021615544928944432,0.9854943484167457,0.00022652991301477972,0.999917700018742,0.9983640542988536,0.011534280453067645,0.9990202107473511,0.011969977771214172,0.999943633391188,0.00018064590635782996,0.0006216946464753886,2.3718342500637437e-06,0.00018191692060064025,0.000398200108846862,0.0006900697774166947,0.9999687981774479,0.07239760031758888,0.9999902399187616,0.013651040996084976,0.018030095322877613,0.8027174947084992,0.465685900763905,0.9771968389840846,0.9999026625060711,0.9998356952540273,0.27147342185497925,0.01796427709345997,0.9999654498719334,0.1974334557456478,0.0018301258099211568,0.003104556242225999,0.003216644261428042,0.9274646036933392,0.0021961343133673245,0.00022427426699995614,8.650540066518843e-05,0.025361879386883578,0.17162322575136837,0.00023155405974457612,0.9999960450853517,6.078389302705942e-07,0.0005006666117635239,0.09774927826683431,0.21889451113533206,0.9997530626879648,0.00019965181331294113,0.00021481894913445365,7.540193951197053e-05,0.0005576362275992902,0.6260265383475834,0.0001351388769084904,0.008663591611742811,0.0006116445892084815,0.7842804783054448,0.010861919957843868,0.9324235504399766,0.9384102570043829,7.568463890393788e-05,0.9999952777615052,0.044060296365799785,0.002213261862267234,3.939063599692588e-06,0.996334670825359,0.010236452264082133,0.972221420345348,0.999938595605738,3.228119057652039e-05,0.00011915659756214844,0.0004939353090327689,0.00013928704138345657,0.001009159074289805,0.00014244835440897926,3.2757156317888685e-05,8.10843928684813e-05,0.010778479622722983,0.00029884047297811574,0.9985537741542235,0.0016744717244491106,0.0003108471167579559,0.0007561854808859642,0.0001390793181039474,3.717403456002364e-05,0.00013755252236002325,0.00011968467839407926,3.675381959368536e-05,0.9754316858004879,0.0010649150754470876,0.00022451154435748727,0.007428493537076454,0.003067594033742032,5.069386794843845e-05,4.573639669864792e-05,0.9999964419769259,0.9999432179523874,0.9999663443168391,0.9887366552888743,0.43415573199725044,9.67545798744636e-08,3.323961914286911e-06,0.003214367227214028,0.003976021666590362,4.704813754535928e-05,0.002446427031472396,0.8121127956683809,0.0016655292702995451,0.9994554946291694,0.00043328084204659925,0.9469186103254194,0.0007630834313136223,2.2489929458326233e-06,0.940201246128217,0.8351384986372088,0.0008854430198684291,0.9576551324982414,9.927272400013988e-06,0.9998871037261589,0.3028745502458918,0.8343824951885255,0.9261156373006838,0.9948735633263677,0.0011498655294489067,0.010043541679801678,0.47492604907097713,0.00019698542408979223,0.912828853357303,0.033073138089989386,0.9999884528197538,0.014718451641439333,0.7709055747976081,0.9997667216132976,0.9998227321882557,0.964114365586714,0.27357003240166966,0.39977857424126567,0.999895214615557,0.9998819025784009,0.9997128450910145,0.9999947365209548,0.9642909231315383,0.9369943519918559,0.9999846516194917,0.13689618342550527,4.380809283610014e-07,0.00046437786222980186,0.00013545976526931847,0.00015109983706976273,0.12063411718256452,0.03165692647594726,0.8671050007424139,0.00013947571966675822,0.000834419866135276,0.9995182919015467,0.5067487770973227,0.991894970162932,0.008004090147857655,0.847597144919268,0.0001581230961187894,0.0017568953025355626,0.9966994570543745,0.10080743130957814,0.9993363633243084,0.999725055280108,1.093296098804216e-05,1.2092668971892537e-05,6.972989910996338e-05,0.9001457880282733,4.14267956965402e-05,0.39701251871335247,0.0004274037421706532,0.00015910096557692003,0.9999464922812042,0.00012410222501478956,1.2387209011625832e-05,5.387485316270915e-06,0.9811765929072116,0.9996015905051848,0.19920823296687662,6.247567721957727e-07,2.6715007113510574e-05,0.9999925381233953,5.130646608895728e-06,0.9998746071614851,0.00012128294784529336,0.9999988951130376,2.1122048151226864e-05,0.20179754695074956,0.9881464010815301,8.823791811140769e-05,3.90344319664438e-05,0.0001849259455570197,0.9999927275405587,0.001109190502575757,0.007073050080267944,4.0438405088059574e-05,0.9999678069026018,0.1331260265971145,2.499465284747711e-05 -mitad,rgb,0.05388872695979458,0.9999999944721873,1.970236722461323e-12,0.9991399644362289,2.5965489503336116e-12,0.9982966387758904,4.754978637047382e-05,0.9946789393615576,0.9819878834555014,0.8825995139906486,1.8671381222588533e-11,6.90305526342064e-12,7.1252168326362555e-12,0.9999999950973317,0.9999987435543206,0.9950413635878536,2.328951692511629e-13,2.726651547479513e-13,2.811842036608513e-13,3.8076313435306934e-08,1.2534118255942429e-12,4.934849558550098e-13,0.9972043945158634,1.3040653252531246e-13,0.9970249217084522,8.589290249851743e-15,0.8879512205415746,0.9927106800596962,0.9845721263418278,0.9998775477221143,0.9982117392293403,5.382170945503432e-12,0.9947763760975767,0.004911538848397363,0.9999951889795694,0.9879932498280709,7.2254225873088334e-09,7.748492521379973e-13,0.8513475750161457,0.8811979841187727,0.9943775241679232,0.9487594002649334,0.9970172398382529,0.9999557497571409,0.0093263585633082,2.1997015163889402e-11,8.15358437920009e-12,1.914611253068113e-12,0.017859420971153527,6.230326398958821e-05,0.9980873368497304,0.9953380537774951,0.9696962152160427,0.9724130440809385,0.34562769893753026,0.9543296453291203,0.00012800796743948483,3.9234107187980514e-05,7.50129592791591e-12,8.208094852716919e-12,1.656621525829573e-11,1.6025436558613332e-12,0.9997809257326785,0.6696016762032712,0.9990524426666296,8.564881367782214e-13,9.576665307248218e-15,0.9550142395951277,0.9914182651396733,0.9884191337747528,0.9855385152615681,0.9930379888113625,0.9849427081497162,0.9375216294932697,0.9999999840168317,0.9112459844002292,7.531704513007983e-15,3.4496281758905104e-13,3.899832473609021e-13,1.6572361919933557e-05,0.6852059640481252,6.382393013894985e-05,2.778022969165371e-09,3.452992558810978e-06,0.992881135848842,7.366535782362422e-10,0.9894257137781226,4.473189497273131e-13,0.0031965689144176986,0.711129715827252,0.9937339335293642,0.9999943412749367,0.0005279935580074335,2.5099480127900343e-05,9.435623313763853e-06,4.526518974066871e-06,0.9359362712093412,3.2735432182169424e-06,8.941007747393493e-05,3.840327455491655e-06,9.916890750411838e-07,2.1002081230145403e-06,0.8463009972321266,0.9987314344074567,7.079719472599513e-07,0.9984102602442257,0.001270169737235137,1.265329579488612e-13,1.365563262427434e-14,0.8052241151272497,1.4956445088966855e-14,0.9963993599804566,0.9999068578407693,1.873269824202038e-11,1.4193183198639636e-11,2.1442272858682544e-11,0.08286760201392426,2.584346390159185e-10,5.900638408172645e-12,2.722032382856516e-13,4.544786414483005e-12,8.643389375141693e-11,0.0003469015466070978,0.9718247498936913,3.013504201029456e-11,0.010834199587407722,8.434723313682115e-11,0.10659132983841582,1.3355038721590152e-06,7.228797986942746e-06,1.6157715004313844e-07,0.0005639288849974287,0.9986660879872559,0.9426375707694097,0.051900194540153724,6.343670788696664e-13,3.439206317819119e-13,3.4512440531535004e-13,1.27200948510122e-05,0.9998276102168411,0.9999862743863224,0.9996689413260572,0.9837435732100922,0.9092608474068911,1.8699253285475133e-07,9.018997468532968e-09,1.148580142984966e-05,3.836211343045611e-13,7.985852708825178e-15,4.2211492836622405e-13,0.9601696452404823,6.335978834464066e-08,0.9768766853724655,1.984641998428209e-11,0.3730294347533141,8.735200867697102e-12,8.980273609722945e-12,0.9994868082631794,0.9852586496630004,4.2218256647810113e-13,0.9999786513298432,3.645265653606386e-13,0.7366307857116666,0.9980792737582099,0.9992993314996617,0.9997632290850271,0.9982787163911476,9.641279462321654e-12,8.618975731477838e-12,0.9982717808201597,4.0491994085366794e-08,0.9980552852860372,7.801095315290036e-07,0.9989604821176847,4.687094250138309e-08,5.527451796192221e-05,0.9999973416995971,0.9999879098115745,0.9999943575934762,0.999462410362088,0.9986231236599139,0.9963960402671762,0.9999945460026878,0.9961680663201878,0.9983847403098867,0.13982294029613354,0.10260461424877325,0.9999999891444095,8.504193192061272e-12,8.137570000733207e-12,1.8122276470712805e-11,3.6624512421710126e-05,0.08732924623613957,4.621093878870074e-09,6.444235205772471e-06,0.03192291744717221,0.042181476141146014,2.4834698189533097e-11,0.9963116568061469,0.9630316644735264,0.9578834772721211,5.688443460513755e-08,0.9952570881882695,0.8833382997971213,1.7989076327651324e-10,0.9243188168560774,0.2929157887634739,0.989851282711308,0.9999968482746171,0.4164732883453986,2.131055007002684e-06,1.5416546919157489e-12,0.995916006871382,8.293031350853269e-12,0.9998081829281765,4.250860478393526e-11,1.2582561818168238e-11,0.9999832529787065,5.5704711848895756e-12,4.9927137669710374e-12,9.680802118364945e-12,0.9303936682946614,0.9832049621405596,0.3969080795802165,3.024077367506549e-13,2.8899614999755994e-13,0.9999999944141926,4.673366331966753e-13,0.9999856986237489,4.51749668430373e-12,0.9999996816622055,5.393445728034578e-08,0.9734708040510838,0.8786814666718235,6.093555722033157e-12,2.92653032869525e-11,9.325448751107163e-12,0.9997171286854315,2.8130991872699358e-05,2.4523994499764144e-07,1.6801001373103757e-12,0.9999767203090507,3.389303550088974e-11,4.495982895771312e-11 -mitad,shape,0.9674273615653732,0.9998334455639974,0.0009148549551979874,0.00018417516918520872,6.803145947902191e-05,0.044227050234509874,0.014657526243147789,0.9954650160028818,0.9817030774603303,0.9962029503130185,0.9622721256463844,4.538085271601169e-06,0.7588009484784575,0.9995872293120959,0.9995442472846451,0.9999113497248394,1.153505581942832e-09,1.5987508724548155e-10,7.954491358407052e-10,6.156753283535265e-06,7.960476833910708e-06,0.8874738139604251,0.9984669375434767,0.3411970993175015,0.8815325779994145,0.4149576470020045,4.87158510882978e-05,0.04534766861089602,0.0022107520262395924,0.9669014685101697,0.999210982324559,7.2193207750521825e-06,1.3999834743939693e-09,0.00032559310464903905,7.239953788708183e-09,5.823421206230653e-11,9.858301095093188e-07,0.03568445843016364,0.0004500197566896136,0.0061064211959489705,2.1024398498454822e-07,6.276287863420788e-08,6.344935403166241e-05,8.364277263266683e-05,2.446846316324089e-06,3.924888095740983e-05,1.1645272517930394e-06,0.17340012657839224,0.2635428764725931,0.0020222899770389827,0.9165667702553165,0.0027129777430778585,0.008984256895151187,6.921185222355567e-05,0.9724415799699349,7.420459698354049e-11,0.00032462041326029097,0.00019985443689636125,1.0000125057434305e-05,0.9999930026730922,0.9999912776763074,0.00016794709786052561,0.7700150569968117,0.9974289511351203,0.9999993385694407,0.1723340612816127,0.7616031306849146,0.9678130412145675,0.22418143710573035,0.925858617043625,0.001297872557986984,0.9999873050245016,0.8108944526759954,0.0016334353362297068,0.9999823511281867,0.984125388499464,0.29745823482770906,0.015381621315324443,0.5604344911485275,0.0003501661893836049,0.008198997792282824,0.00019142542543547957,0.42662371728465087,0.00013512201628825872,0.00014599602493516357,0.8133291369806381,0.9999053259318561,0.017158379953413388,0.05116403304017227,0.9606112652681529,0.01930232720515557,0.9999539541500635,0.00011918754432652485,0.00013900229765668757,0.00017813731279989653,0.00015169151731559712,8.421019689814562e-06,0.00038089190809162204,0.0001750222142843838,0.0006742410091237857,0.000605918570337876,1.6626137812243878e-08,4.6137137932822675e-09,9.037341551468792e-09,0.00010743881934727527,0.997082113914547,0.9957109301217452,0.04094792838113405,4.299599771591442e-06,1.7562101967444172e-06,0.9912411252641734,0.00978384096096562,0.999961070373118,2.765679537819672e-06,2.506260196291104e-06,0.004832129772119127,1.3657154032184183e-05,8.077408072462868e-05,0.0004840963133589773,0.0017105878401590016,0.00023594788644431178,0.00011489009827972932,0.01754851271099228,0.001075559422469914,5.374070982994499e-06,0.00047889866026255417,8.130831489915652e-06,1.5500038259720503e-05,0.005258975425654015,0.0005239032391135648,0.00025183156750229016,0.00027946424571830475,0.845613948584913,0.0008642141768318756,2.499658939850224e-05,5.47937448094702e-06,1.0848590973467953e-09,2.3331503023460925e-06,0.005452653911737624,0.9999910686846669,1.4505602827818795e-07,0.7488582780001363,0.03335534028604243,0.01793094392857897,0.00042126898243054954,9.113716826114506e-06,2.8605459091953148e-05,0.4001115695160284,0.00571613654400691,0.8634061549193077,0.8095544333925706,0.9979078633462329,0.7277799616421653,0.999998907743725,0.01131514696437482,0.9999337410290199,4.53808527160125e-06,0.0016924856098303554,0.0019075709289786097,0.00013486557790166653,0.0014757920285678365,5.256000209232663e-05,3.643132657433345e-12,0.0006096180839633684,0.0021586928908482314,0.1409422789103183,0.8082067799341943,0.8025771526436746,0.7744616629195809,0.003996462348044144,0.06676509226818904,0.16999564938248632,0.9541378909815947,0.9999831388948082,0.38849654729032174,0.970260229934543,0.9998651410184328,0.9999816519169537,0.0032427377455187213,0.00046278344951169824,0.0007842006813121773,6.855022239070395e-09,1.0544669111393952e-07,0.8406357436424833,0.9896198051024357,0.1565497805209017,0.5789903161970644,0.9999966393944991,0.999996943501832,0.0006774559214129953,0.13246475149347842,0.08918642117383167,3.066846392414755e-06,0.05395757605371158,0.9078618089695629,0.8968117075947657,2.7750876868495847e-05,1.1742409440716451e-05,0.6222253661863155,0.11052306387181601,0.764220196745895,0.5092371423922264,0.3809506484002144,0.00043943676128701235,2.348873083318482e-05,0.5489991977897521,0.0514931448599937,0.31016640289494124,0.9997618025277735,0.00011197946676874225,0.00021297089420593547,0.5993711143677234,0.5967375188821897,0.99979452833792,0.0035758024812448546,1.3167826355919354e-05,0.00013361021731894186,0.9997307142301517,0.0016712782957646099,4.887116993332932e-07,6.6294984551545266e-06,0.9999736301473444,0.0009972669624210499,0.9757739787259819,4.766991948925601e-06,8.915507330756398e-06,0.9996604399699105,5.054498907324373e-08,0.999664447465163,0.25252001828854853,0.7728001064190277,0.008766220577204121,0.7356249277804983,6.676361884139465e-07,0.00023594788644431178,0.00045317980067960265,0.04172240586221787,0.999137995050499,0.005249691769664774,0.01313753310884882,0.8941537791141191,0.9867064987065597,0.04158676462781474,3.197971191590704e-07 -mitad,object,0.8123960219775453,0.999870968371434,1.178344421449201e-06,0.06868096596577286,2.3648633370243294e-07,0.024501302442401077,0.011997967032989271,0.8539372330335913,0.7992278731050021,0.9284477219792006,0.02090018002388734,3.165463654965826e-07,0.0029033333855031456,0.9997254133251368,0.9998495831896916,0.9999672896752037,4.3536049004176835e-11,1.1396012968197337e-11,1.0252533664607226e-10,4.988254735430739e-07,8.161499501390726e-08,0.013977655077466055,0.9989766873233464,0.001122656183144404,0.6614952585216036,0.0007790841535283432,0.007927475032415195,0.02070773915944467,0.013722377125987605,0.9805077707516232,0.9994232251547416,1.646885075845828e-08,2.4466820273323308e-09,0.00029696212947641115,1.1020297306422304e-06,2.882419796844836e-09,9.154914809498577e-08,0.0007971558182665373,0.00021529959916512608,0.0011014966614929767,2.092636325359705e-05,1.886539841705136e-07,3.373315484200638e-05,0.00022476490777523583,4.325788635290649e-06,2.6757744206966264e-07,1.7335444074006912e-09,0.0002327933082401627,0.7657663602913729,0.0004529012729863804,0.9065852867988374,0.573196941611046,0.01968811802790175,2.237172604956298e-05,0.9333701341025921,4.597447639528778e-11,0.00012659066655849126,0.0001885963028476764,1.1043052853176498e-06,0.946670151370286,0.9490986576470121,1.91784026756187e-05,0.9904968115996117,0.9279663978425533,0.999998801179692,0.0009623591285170831,0.0017505397051344098,0.8462748137523504,0.08915449543838797,0.46583809098464,0.00036907056593056325,0.9999944479874244,0.9479508271792906,0.004352632557054892,0.9999540474550908,0.8691012280730572,0.00042953139015051886,4.358723277006401e-05,0.0016582428131526835,0.00024856089136272174,0.07634232329452763,0.0001535543466649934,0.006065212864808162,6.773368922792923e-05,0.0008780127264805446,0.011378897405383545,0.9999864823293877,0.0006627835167866508,0.024340459307752565,0.9387580224009541,0.03437715329752529,0.9999765420204484,9.883388683050859e-05,0.00011386502251418322,6.739249301105491e-05,5.988409333739931e-05,4.8799967520729005e-05,0.0001933990389369353,9.060701626456608e-05,0.00031825233467515916,0.0003992715092835965,8.384583418188883e-09,1.5381519360710834e-08,2.3347404640883694e-06,2.579512504143783e-05,0.9918828112265762,0.8819395520292556,7.111035227362606e-05,2.731496248980868e-08,3.7802956206409065e-07,0.0675345753518264,0.04098049709447007,0.9999902915039255,4.716417340968441e-07,2.74735004413979e-07,1.337904712078766e-05,5.597665458324706e-05,1.976024553773705e-05,0.00015378283107411167,2.220449656782246e-06,1.3541014041862504e-06,2.6810779292470438e-05,0.008489622382991408,0.004437074762285189,7.989100702283511e-07,0.0001920747036994804,1.7247490070072989e-06,7.044875314887465e-05,0.0012441912611380766,0.00022392758052387776,0.00016548830796331757,0.00032418990270392984,0.8427994900532326,0.002130165373812835,4.5443852342097325e-05,1.4999782225250997e-08,1.4470546206430494e-11,1.8818608414657613e-08,0.0010507000313157472,0.9999870070057875,1.3237767140104847e-05,0.974575951582342,0.010782821478896582,0.23840940753630704,5.6201471666863965e-06,1.4346670049546855e-06,1.3322832686991323e-06,0.0013390917354712858,9.859466868263189e-06,0.010374560218290007,0.9541522792942064,0.16416838092886166,0.9750148095107105,0.9874510928433943,0.055887426204475024,0.8650195447065382,3.2271805609003485e-07,0.0016723983370523123,0.0017708683177417328,8.367033761714795e-06,0.005165405205262645,4.923857759785188e-07,2.2317363786811524e-10,0.0009858143027175164,0.0024208588799029596,0.11870793722913552,0.6795788853708029,0.029379476757980166,0.2686587531187633,0.4021682239012712,0.00018756038097628028,0.059545494540957554,0.04531525909011704,0.999998696356805,0.0034989713356507277,0.9524926093665415,0.9999745701232042,0.9999978372608037,0.005979799595014416,0.0008746967781603036,0.0008319631212316099,2.500630192873297e-07,9.454809561488403e-06,0.9501291024175667,0.9421702704725051,0.7910729108595829,0.8909681010651891,0.999995605381216,0.9882808147972314,1.0988602086942884e-05,0.008614339680953743,0.014912660522819634,1.634100965384474e-05,0.0001254558967943854,0.04337536270554096,0.9622123242578311,5.3806474697342584e-05,2.2103694719625944e-06,0.6760568497159847,0.008499942061956683,0.994340147882327,0.0074386486743045046,0.15348590659353753,0.010423154321824328,6.840997983585051e-07,0.05157777140180274,0.05014293495467319,0.6691747210021372,0.9999163381004623,0.0008001983419307689,5.009722602514232e-05,0.011069701144735797,0.51647949743426,0.6091260097955694,0.006939142912555214,2.3093347214336835e-06,2.7509867362780053e-05,0.9998505664032596,2.377958794992335e-06,9.551987153116255e-10,1.790473762538059e-08,0.9998616577931845,0.0003605136742463923,0.42748468403671974,1.534463806937573e-08,6.975702696325747e-08,0.9998324241315144,1.8625201068241632e-10,0.9998979824465093,0.0001413836039015187,0.9713193200291017,0.0010149598889050621,0.9185060879196336,1.2855738331720786e-06,1.4125436787402878e-06,1.3573501883679433e-06,1.9925724646106192e-05,0.9997026508791412,0.0012036366089427939,0.0006473629704555852,0.06995672566840955,0.999604678617685,0.00015058825190502635,1.1946810667076566e-07 -morada,rgb,0.9999919337674077,3.7886872421398015e-25,0.9999999829562906,0.9999892210577113,0.9999999993518427,9.443880267399419e-19,0.9999999999964644,2.236849826662281e-15,4.603701380152586e-15,1.8144882271805156e-13,0.9997739629212471,0.999996716920868,0.999994050033802,6.559801525327812e-25,0.9974991266220764,0.9999999975047169,0.9999999948449416,0.9999999902218099,0.9999999915308381,0.0005501157192322565,0.9999999281168831,0.9999999999976279,2.7052525270311623e-18,0.9999999999999978,6.990286966072388e-20,0.9999999999999796,0.9998158896003138,2.523714514382749e-19,0.9999999937088624,2.2000894304454685e-18,9.944220431857692e-19,0.999999966273426,4.8383274257747635e-18,1.7829506389969223e-07,0.0011985241523142407,0.9999999987071493,0.009136221392389749,0.9999999996299427,7.925109056464976e-17,2.9866668214199686e-16,0.9999569938531139,2.6994694626438754e-15,1.7056334289581865e-18,3.63456064529547e-18,0.9999999999916054,0.9999929003503819,0.9999999082437268,0.9999999835476108,0.9999999999536906,7.762377357800672e-08,1.169187911091638e-18,0.9999665503395527,1.986198754736656e-14,5.886160330087553e-17,0.9999999999053475,6.153034284073068e-17,8.566233808230068e-10,7.236679059787612e-09,0.9999952697573852,0.9999873307385585,0.9998240550815124,0.9999999377993979,0.9999999678731631,6.493639477721349e-14,4.4263650053437055e-17,0.9999999999999216,0.9999999999999898,6.054839289177842e-14,4.379291280087094e-15,2.7966114912359983e-15,2.1537815944120173e-17,0.9999924450889975,0.9999707009701798,1.6759511906171918e-13,1.2177114968153235e-25,3.703334640942112e-15,0.9999999999999916,0.9999999999999762,0.9999999999991349,3.398554172872309e-08,0.9998959014812067,2.3640441162444277e-09,0.9910448736346765,5.555398796384944e-07,2.5519275069228935e-15,0.9992483443409191,0.9999999950278475,0.9999999999074136,0.9999708271473072,0.9998453603727303,3.619064615779955e-15,0.999998824902572,7.560114284043612e-11,2.089998742596697e-08,9.661867500781749e-08,3.586751717422621e-07,0.9999999979527585,6.118566034735518e-07,1.3932148655517117e-09,4.091273150999696e-07,4.663535071785881e-06,0.9999999999997315,4.747448389584731e-16,0.9999706483156796,1.0744130218706826e-05,8.014865189453601e-19,0.9999999999982894,0.9999999999999964,0.999999999999903,8.294981948218885e-16,0.9999999999997071,0.9999810010735085,0.9999267411975048,0.9999768286453025,0.9999362626005588,0.9997563776167077,3.0010198728164535e-10,0.9193819259517597,0.9999979125439825,0.9999999994510576,0.9999999792204848,0.9951767854622379,4.84100236181214e-09,0.9999918986437167,0.9999010896580555,2.731205409470341e-13,0.9959357532087394,1.140531024075074e-10,1.3682133334305188e-05,0.00019283469494714667,2.0405575949389603e-05,2.1886427339185886e-06,6.983096469501689e-19,1.3220355134861677e-13,7.105720601345872e-10,0.9999999440783434,0.9999999870381473,0.9999999845993843,5.184188214101274e-07,5.695317348116653e-18,0.0032089097113532513,0.9999997443182339,2.7535668370257312e-17,0.999990187095974,3.954961358693693e-05,0.005639740094135819,1.2494926908934621e-08,0.999999999999573,0.9999999999999938,0.9999999999999869,0.9999930682112621,0.008231075653847432,0.99999999829621,0.9997289169344514,0.9999999998950697,0.9999867172889539,0.9999920965560507,5.377706434291913e-21,6.14419226077471e-19,0.9999999844986547,7.6020596837135e-23,0.9999999884634424,0.9999999999968476,3.43389401171407e-20,9.567384792114901e-21,2.7116911876377724e-21,3.627486753532057e-20,0.999986888223245,0.9999848418992394,0.9999744896223305,0.011528764516870694,1.1904358616431337e-18,0.0003157898275302638,0.9999999907602178,0.005834289064368737,0.9999999999960911,0.9999971575676604,0.9976613617506949,1.411377974857082e-23,5.777500485225531e-21,2.1396432731025338e-20,0.9999999983545544,0.0008866206062725514,3.951071661055268e-18,8.1484815586531555e-19,0.9999999998613385,0.9999982219006716,3.93372008713706e-25,0.9999854440167858,0.999993363653332,0.9997714683044112,0.0007411344759851573,0.9999915780203967,0.018345566330572285,6.0249544862677056e-05,0.9999999999019156,4.95524321640889e-10,0.999881622386108,2.9034519313796283e-18,1.048734000911286e-16,0.9999901307810138,0.0133933295637649,1.6871138821683905e-19,0.9996094703957628,0.9656000123791383,2.1735172230768097e-16,0.9999999999233058,0.999987631686167,0.9990142129168951,0.9999757721086382,0.004293140701227825,0.9999999989295107,1.0638630242905842e-19,0.9999910914251218,2.5357411322533905e-21,0.9993351941835241,0.9999887657006733,0.9999996712330277,0.9999997501448443,0.9999999885117788,0.9999999492167205,0.9999890062153018,2.8681929219327405e-17,3.150988717752162e-13,0.9999999863921916,0.9999999875519091,3.8119578692711293e-25,0.9999999576893261,0.9999996041386899,0.9999999791484249,0.0007726278515922675,0.9685338884312926,0.9999835754361764,3.7138833738624336e-16,0.9999999563619383,0.9999093514676828,0.9999966145116023,1.709372736866857e-17,1.1930692871712786e-05,0.001851034253520134,0.9999999997495559,0.002504288351830508,0.9985430400633565,0.9978752355467285 -morada,shape,1.1598068472780222e-07,6.6769434758630264e-06,0.9999990017719046,0.7786477376167088,0.9999999502497492,0.0003023180263351889,0.4864507047615576,7.838096761130143e-10,2.7254813874896878e-09,7.862004127342398e-08,2.9303917225086694e-10,1.3270833942468979e-11,1.9506893327178676e-11,1.1866217726926404e-06,2.039395388110545e-06,0.0006525029647076112,0.016315920675031976,0.7200499051383037,7.121942841973599e-07,1.9419258371787576e-09,6.556651881952768e-10,0.9998586674295205,2.677838996573725e-05,0.9999022168249996,0.999138180879076,0.9999936571810151,0.0031436854008559775,0.9273883657743193,0.011501106750021516,1.6249548259562234e-06,1.073026859896274e-05,0.9999992375686944,5.314938996342534e-06,0.00017135044637290095,0.0003209761824974915,0.01583986141520882,0.0004425545185562313,5.02600313470127e-05,4.5601577945313005e-06,6.72642350788907e-10,4.616910730612556e-06,4.279430411385075e-05,0.00036743174263263387,0.000375421673027105,0.0019791334592048136,0.9998036410770238,0.999999937307729,0.9995515329595562,0.9482716846879184,0.002213126316140491,0.001366357119241534,0.014883753048645705,6.236500600170575e-05,2.599489556697097e-07,0.004227819230964227,1.2093607080988703e-05,1.1853429963519115e-12,3.2310236549711776e-06,5.049425614758094e-12,1.5967825279831964e-08,1.2833781499872124e-05,1.5187333969216663e-06,0.007130252159497773,2.5201707666094606e-06,0.0007603776128732261,0.9999863347418817,0.9998025717091977,4.732381474046061e-06,5.314228978785507e-07,9.502916080987959e-09,2.825265717588275e-07,4.1422118163260566e-05,1.3160954509230024e-07,2.486845004645684e-05,4.557609208343357e-06,3.3211595139554824e-09,0.9993165303847267,0.9996640042608147,0.9998488324280587,1.2398943467289538e-06,7.371919814931601e-05,1.7260023617545345e-10,9.845534119801816e-07,4.817435898169988e-08,5.475126583689253e-07,4.006160420989899e-06,1.2895792327898964e-05,0.0003194599516155207,1.0110317932008164e-05,1.2394884343999035e-05,2.940214070413162e-06,0.00027306055323857967,1.1715887287123682e-11,1.1374136468642036e-09,1.4267163372198474e-11,1.1114979766403405e-10,0.0008075377519105338,1.2953311633082575e-10,5.355620279826437e-07,3.4473112490682468e-06,0.0008894085544394771,0.36551980044134613,0.00022670588484912247,0.009331634799239576,0.0010668337942418772,2.6777310853004458e-06,5.242557843802636e-06,0.999963698437749,0.9988246374079751,1.1724798076121485e-06,0.9991865295267821,1.5616291898779428e-06,0.00030148684320275085,0.9998135596568085,0.9999932458343208,0.9999996827663944,0.21859924699100597,0.9986179122040759,0.9996812324169402,0.7311441212783041,0.9999688657475522,0.9968835802130271,0.01484222974102795,0.002046270946630963,0.9951074515438536,0.0004309011280297319,0.9999877970216905,0.14541596069038737,0.011077494141409783,0.0026419872471854585,0.0003425637630836544,0.0013243264746044497,0.0003977066265610103,5.339298196548642e-06,0.18071118106755102,1.1880700883895124e-11,9.041706324254712e-07,2.6025692358700173e-05,0.0019507491528994736,0.00011327442213936766,0.0002467626583352867,0.000811545334122378,1.9886115672637016e-11,1.6314908808995037e-07,2.8332462766160606e-06,0.00038216548127161713,6.685469449686445e-13,0.9995383632089432,0.9996048620729002,0.9999964802155366,1.7266888797146548e-07,6.044146359395006e-11,1.6523712672692668e-06,3.6996696479850735e-08,1.7604623540738875e-08,1.845897512859587e-08,1.3270833942469073e-11,0.9092210141928014,0.1965213578114384,9.381929054439551e-06,0.6725108042671358,1.64974221804546e-10,0.7665201984801381,0.3731957604315999,0.27483084962599313,0.9521642619696302,0.939655836983944,1.0739856112334173e-06,0.0004763041392490044,0.40368825435146044,3.1746013766954913e-13,0.0011901888952300264,3.083068378365884e-09,0.00034978875593749356,1.5810987882247833e-06,0.10740223472728769,0.0001989122476453229,0.0009579859536026144,0.4495027232994579,0.8913531499857896,0.9590991784425131,0.019694456831462894,0.00033972439126942215,1.1729275917061289e-05,2.456176417118359e-06,0.6887589009337487,0.5247699345208301,1.3141799117269905e-05,1.866795076768803e-07,1.5352881625515404e-12,0.0001701570372058281,4.0078762375397524e-05,8.158832596402677e-07,5.810894238722236e-11,2.9105814388571804e-09,0.1191941786505416,0.15507977297291123,0.9997375808159078,0.00028894990172787253,6.613695037502778e-11,0.15834735792469576,4.992088345007502e-09,0.10862154013421556,0.0005563933697198661,0.9998870953567205,0.000209447899974855,9.608576111409189e-06,4.8682903001279016e-05,1.3443818472180289e-12,9.03949356702626e-06,0.01771748292844768,0.0015169152931812015,0.9522564299515118,3.6733298507386584e-08,0.03802552531136343,0.9999955548939998,0.9998965735502857,0.08790051028718701,0.9999389908292542,0.9999999683878452,0.9999998461581266,1.1099401165691371e-05,1.3784270669154534e-06,2.3305407506716173e-06,1.2583478496124175e-08,5.820132096081377e-10,0.011105244658248865,8.704960918392416e-11,0.00039991016148573566,0.9999792861080751,1.0004196549788858e-05,1.814163158302712e-05,4.941575492804894e-08,1.7540196743969802e-07,0.9999688657475522,0.8478960268267708,0.9997814653945473,5.839802948498163e-07,6.129994268821394e-06,6.396529765332137e-08,5.345964730891304e-05,0.0003345640352659197,0.9999986455579339,0.9997803648198929 -morada,object,0.9883394011499956,2.081245925461891e-10,0.999971297476075,0.07032897282461646,0.9999998756578165,5.312443429986648e-05,0.9999999401982993,1.536536488194267e-07,2.768887652198672e-06,1.6222300259326384e-06,0.0005009242770222166,0.0006792392712274372,0.0001835843641740896,5.360174056137014e-11,0.0012697062540689345,0.9999998101495305,0.9761966143493058,0.9949848556925155,0.8383355578970638,7.335892169237815e-05,0.9503138319586673,0.9999967151574047,3.8501689039458434e-05,0.9999998084984325,3.395915243445652e-05,0.9999946152480859,0.991565409109251,3.348525670583918e-06,0.9999998560070041,2.3622572398753035e-09,8.344853422930774e-07,0.9999958253977053,1.3121137244994532e-05,0.0004625074453935099,0.00022598509796876873,0.9999998300288102,0.00036618743987172875,0.1390424638154929,3.2820475083508847e-07,2.119769477365146e-07,0.0009753719485775679,6.325507228694201e-09,1.5272514813352805e-05,1.311543175816473e-07,0.9999999149281585,0.9994844013823959,0.9999983234262855,0.9997829476887936,0.9999999389987662,0.0001465668039420639,0.0001454559786644759,0.08487560933514213,4.17536211907007e-06,1.5190260060540442e-07,0.9999998165845746,1.66844527333548e-05,9.798340018876108e-09,4.71364395856862e-06,0.00014000908111616388,0.0032802586161776474,0.014720637549906688,0.9806937213127688,0.999999972794494,5.169836514205142e-08,8.289314563085431e-08,0.999998599312588,0.9999883154610724,5.57719957974022e-06,4.949213303890745e-07,6.677464075141173e-07,1.685901415789791e-06,0.057675498087662785,0.009746737747842788,3.8795643033486e-06,1.697635928348089e-10,4.38050782626789e-09,0.9999801928979508,0.9999966605186379,0.9999884030118221,2.5041549120912006e-05,0.9862371963219742,1.5730550292571548e-05,0.00451869140275891,2.0789879892564725e-06,6.696766717403392e-07,0.025116113158416647,0.999994910175872,0.4363360638281856,0.9736777978771125,0.9933985041480532,1.3065615673385336e-06,0.9999992937989359,6.034262781578821e-08,3.517927097884804e-05,4.5715753877542734e-07,2.341940973639508e-07,0.9999998392385107,8.016440173291272e-06,2.7164949191678923e-05,9.84442069476907e-06,0.0006505639291838445,0.9999999473877704,4.816831087940387e-05,0.2945658383403607,0.043255124477206745,3.6104684372836146e-07,0.9999984343462281,0.999999729021987,0.9995900990566775,2.9860339218407996e-06,0.9997774477438751,0.030288345467930924,0.20971212508056009,0.9999763205462825,0.9999822376032169,0.9999814385961249,0.001091339584075198,0.999312648702681,0.9998092026079068,0.9985288662217192,0.9999900466818775,0.9992974047710619,0.0002813772518692841,0.021542583599109034,0.9998873231289516,8.6568827580255e-05,0.9999137896681332,0.0009266060093719865,0.0017573672915158595,0.004334280261448175,0.00011667565311285381,0.0013953271901939745,2.8504809786550082e-05,1.920361192717083e-06,0.002361255228856309,0.0662457259451637,0.9552321438487533,0.9810596190591433,0.00010463047951368027,8.493329707212252e-09,0.00014313996252098208,0.9999997881520273,3.8699515941872933e-08,0.003740848127314244,0.00014987469200620842,0.0002797162133120016,5.1042850969924723e-08,0.9999786090920563,0.9999443343836446,0.9999996739301136,0.016409554334063128,3.2645619547811684e-05,0.9999943898671666,0.002644522830035977,0.9998562017276329,0.002705913727099661,0.0005401048121350919,3.136719049119062e-07,1.848439284964393e-07,0.9634725530461832,4.657809780145856e-08,0.9351775154233122,0.9999999972621143,1.574757254711327e-07,2.891183466851391e-07,1.7772267527549604e-06,3.3636636485069894e-06,0.00665650524128054,0.06298735101628132,0.5807211106062505,1.5002879057927197e-05,0.0002434486318567765,4.079684186822757e-05,0.9999994920763549,0.0004003264079108228,0.9999998768214257,0.999999152005406,0.06192093213916815,4.636159571343546e-08,1.3593370510641542e-07,9.768720778180824e-07,0.9999997990063934,0.00011130541410615256,3.449630331406745e-05,1.3949473158418578e-06,0.9999998041582067,0.49723485816362784,1.1537809093891511e-10,0.007600788259513174,0.00022220765873517267,0.018497246385671788,0.0028345355952106113,0.958233961314778,4.126373264273971e-05,3.444772177791459e-05,0.9999998379693231,0.0020509385581593655,0.9998452444098018,2.2995881061506873e-05,7.820628305048065e-08,0.28783038562842195,2.3479754436973987e-05,2.213086981166585e-07,0.9818153078004117,0.9998369435039699,0.00014001996206872705,0.999997012998173,0.21266797332776224,5.734042354054215e-06,0.9251197929185059,0.011224263945833582,0.7420305027158256,1.7285243408575559e-06,0.0025766606691041013,3.84642082067774e-08,0.9999770725159794,0.9999239838327836,0.999999998999453,0.99993027884061,0.9999977922170156,0.9999996815936468,0.015229563244489572,2.4715075707241743e-06,8.90194598387078e-08,0.8136986732573186,0.9313965054595207,6.92193595068516e-09,0.051005073030441155,0.9999999801910966,0.9999970589131748,2.1199594410831616e-05,0.04199909206392962,0.0066670578173151805,4.5994834786901655e-07,0.9999872788713224,0.9486379375484916,0.9997413205244733,7.679130650976611e-10,0.0009441314023793769,0.0003278969994218655,0.4789130768393638,0.0002183999208102067,0.9999812243266134,0.9997907315074951 -morado,rgb,2.2894477761950132e-11,1.6506197205982545e-18,0.9999972656220054,0.00040231099618040484,0.9999993964698389,5.723738953351729e-17,9.819999259526678e-07,5.5284813000200995e-17,2.834520288299689e-16,2.898413044906282e-15,0.9991252746937782,0.9999500054223822,0.9999247894877918,2.4298454168705047e-18,1.0557796670043128e-06,3.295772807031737e-14,0.9999768073097969,0.9999765002023521,0.9999663477286126,0.0012466382287042482,0.9990887721462893,0.9997519473137755,8.999134482614886e-17,0.9999860019248454,1.9808969565531934e-15,0.9999999665870385,6.880370727387658e-14,5.2103611009171316e-15,8.154844455015989e-14,7.413984340163359e-13,6.106230756839792e-17,0.999996101686004,2.1365367870297554e-16,2.345070103476039e-11,1.0217377117217616e-07,9.435173901242253e-14,0.015200038069079783,0.9993712040495978,4.5943811213811547e-14,1.2921862700781385e-14,0.00109390868046539,3.2006272801481507e-10,1.210950296719893e-16,7.313090635631897e-13,3.1972970740614697e-09,0.99993391747972,0.9999934520590762,0.9999973106273633,1.063823756558464e-09,1.546803637044757e-08,6.436829804538372e-17,0.0010187642676981231,4.964652018820313e-16,1.5474012805723545e-15,2.8749443931613676e-11,3.866668480172054e-15,4.662293431856333e-06,2.4315452661977448e-05,0.9999375429395276,0.9998753711495837,0.9992324299802343,0.998419910266654,7.885290874525406e-16,4.0450010199014745e-09,8.574532382718728e-12,0.9996251730404427,0.9999998917029354,7.737670762710141e-16,9.952546674956603e-17,1.6094801646503288e-16,7.194169188812241e-16,0.0019192065236383862,0.0023930586802846598,1.1255297364138886e-15,6.591517388501208e-19,4.4292388965618694e-10,0.999999962005328,0.9999145576829387,0.9998420897808178,7.810720471622608e-05,2.972356529127725e-13,9.411930460020438e-06,0.0062703615924613095,0.0006068444977008033,8.173894970275703e-17,0.0403459358957901,5.904902231101124e-14,0.9997525168178925,4.0119844832774623e-10,2.4184112243622816e-13,6.565409329466342e-17,8.855488648807713e-18,7.068348678133507e-07,5.817577300563238e-05,0.00017134942034978826,0.000447292467420246,4.710481141928449e-13,0.0006509112626597571,6.42335134698817e-06,0.0004708334622893342,0.00270034744230591,5.1096704961211795e-05,1.8255263305570182e-14,0.0004202917555435135,0.005136146997894331,5.420249015303402e-17,3.7560694433378395e-08,0.9999854707863429,0.9999999713901943,2.4327853009746282e-14,0.9999998361753719,0.0009715187937786549,5.304593886673812e-05,0.9998606305131116,0.9996650565875436,0.9991791275992574,6.523719953951088e-13,0.9675858201934021,0.999961237946905,0.9999993893082787,0.9999969503260828,0.9955187341116027,1.7385354100554264e-09,0.005067654634739219,0.9996707674244062,2.993975436607038e-10,0.9961165862030127,4.820374390482845e-13,3.1249340668531075e-06,1.35422296400552e-07,0.0004888544390775023,3.9511473143215805e-10,4.208919893196661e-17,1.0166510921460425e-15,1.2160211304007304e-12,0.9998289934114568,0.9999462883498674,0.9999531945707764,1.434433795135371e-07,1.4785372827198573e-12,2.7519800586073735e-07,7.07472328547922e-16,8.055892886592071e-16,0.011284908325742605,0.00012568873131421128,0.012297091908081035,2.2808885879735346e-06,0.9998563977562497,0.9999999377819436,0.999895429007023,0.0067315878784366175,0.00013507124262913494,1.7069180672507623e-13,0.9990093132375453,2.483574529238206e-11,0.9998751327130089,0.9999162363575577,5.804944632398833e-16,6.883707352362857e-14,0.9999030427527921,1.0816294097683543e-17,0.9999285571083557,1.3245219866670909e-11,1.787010629020494e-15,3.5872004565090765e-16,6.114343630977798e-17,8.013882793438662e-16,0.9998824342072498,0.9998602177999925,0.0005403417446541233,0.0002751064580596523,6.579625763641703e-17,3.788102896678099e-06,5.0195937412966744e-15,0.00025213828685731145,8.173541140484044e-07,3.398312763260528e-18,5.475010748772359e-06,1.5351838083153576e-18,5.284648630639376e-16,1.3206174336243645e-15,2.6716597325269076e-14,1.0201539857338064e-07,1.3454329252389858e-16,5.537205035931856e-17,8.636663709180049e-11,0.26370572630657857,1.8561869559467884e-18,0.9998636112371403,0.9999231150934834,0.9990839575653548,1.3599715238832445e-08,1.3088197052961174e-11,0.033405032939208414,1.7876862886024463e-07,4.803977473838631e-10,1.691430842758713e-12,0.9995967363662239,1.418272844700638e-16,2.1101118807021698e-15,0.006439875102928478,0.00014683034277934533,2.0474163982117627e-15,6.226222083707016e-14,0.9823887861355654,6.0122110921145595e-15,3.8759239534414786e-11,0.0022289084812447753,2.5482780539861765e-06,1.2761591342910615e-12,6.41522170475794e-07,0.9980253529234046,3.066471688687918e-15,0.9999054772716044,3.364591042221807e-17,0.9987756432202406,0.9999045561590628,3.51975041761117e-17,0.9999891225763686,0.9999976626629345,0.9999949494818199,0.00902642235725005,8.402771269858937e-16,1.4152238665330437e-08,0.9999736039652198,0.9999779934970474,1.66113395207074e-18,0.9999357428353801,2.8785364939946445e-17,0.9999969468029554,1.4089427649573264e-08,9.160543910411818e-05,0.004100909919100946,1.2315489327137648e-14,0.9999955417929618,0.9996875261894391,0.9999529659308133,3.3521024160348336e-12,2.3861442224463565e-08,1.8422190537554576e-05,0.9977996224493875,3.6574195817068174e-07,0.9964687301532225,0.9963151552333143 -morado,shape,0.0033050347459162637,3.3035195264126575e-05,0.9999999581006791,0.24696520222596663,0.9999999988313637,7.999298864160387e-05,0.06341741627884523,2.4457874570191803e-07,5.002489600713034e-06,5.630631097086668e-05,9.134790197574944e-09,1.5990213138626462e-08,5.255986046545522e-09,1.4465069978377935e-05,5.669533732364239e-08,0.02433404583267432,2.3766477778825664e-05,0.008345718857102185,0.00012025724220371285,3.6009835728121956e-08,1.5136555910664167e-05,0.999655403536367,1.2916865901354718e-05,0.9996898341456913,0.9977939979694522,0.9989992865327343,0.9229341549818814,0.8659388266355968,0.6037426879362423,1.7573982465649677e-06,0.0003076996865182663,0.9999999981387988,1.1592634043125879e-06,0.0019482071947440147,0.00014875963659083676,0.009300988715991217,0.0007274661525227298,0.6368612820040795,1.4870275128693628e-06,1.352368855176768e-10,9.53304615698206e-05,3.2356406006254e-05,4.421104827357486e-06,7.453717614665228e-06,1.0473786116359641e-05,0.9999989781126064,0.9999999987542529,0.9998020623198236,0.943515707090517,0.006542602117024465,0.0008447855582058772,0.004220877670511852,0.053987159343465964,2.4150978779694685e-07,0.5876253288006988,6.707777172124808e-08,3.4503365000207838e-09,4.173410081401861e-05,2.7001662647969148e-08,0.0001748848734869532,0.005268688309246363,0.0005763309172356609,0.0010879793109782314,0.0003041725902888131,0.13729301498449795,0.9999692938522138,0.999876443287556,0.0004223921510512001,0.0001526035300429606,4.819216220003314e-07,2.3013255734371585e-07,0.004802029118933607,4.899432939087716e-05,0.0010714677286038025,4.628030606935787e-05,1.1751884228393442e-05,0.7864118617452527,0.9574071664038931,0.9999410447227647,4.605630321100252e-06,0.561561181670919,8.647634183012637e-07,0.00012402470493625263,2.6232885871111426e-07,3.313492470534485e-05,3.1139752734009883e-05,0.0003618096066483958,0.980792350849649,0.9377984091790954,0.012111930944956113,0.0035879439701202694,0.15896030094130695,6.705289916998805e-08,0.000345619833994691,1.2088463104941429e-07,8.620504361196777e-08,6.730763688645183e-06,4.281432002423995e-06,1.0435644631910618e-05,3.807623064407109e-06,0.00010140835551408329,0.00011680544459701394,2.1305270088101085e-05,0.00019836981700222165,0.00021091868412080478,8.693387193631401e-07,0.00030740273224576134,0.9996102835697511,0.15992193243949138,1.4874021681769386e-08,0.999073267157391,3.7742764884780814e-07,0.007017052515469443,0.9999617962443785,0.9999419671928523,0.9999394376386669,0.3697232335700655,0.9999411912296194,0.999694925661156,0.9997297347356392,0.9999989770215179,0.9998647431559535,0.7830250227516945,0.0001868897261819899,0.999839600238972,0.6274473899400632,0.9999859440607526,0.3372516337057489,0.3137787670242057,0.2545704326287281,0.9998760428505545,0.4329211382843467,0.0009101176760031828,0.0006311466486336834,0.7170125822258904,1.4580111115965851e-09,0.0022772408622933112,6.869298698821246e-07,0.11444599272527908,0.003601417404552338,0.0003596405285097754,0.0004951737036993466,5.31646491886117e-10,2.669557482094697e-07,0.0001790841532380707,0.0007923626780860092,6.37181541473095e-12,0.9996567611358418,0.8602304044499138,0.9999861507054056,7.149906098111167e-07,5.122902607118647e-07,1.5043872850268684e-05,5.556522237941547e-05,2.596918888960482e-06,7.421383040026362e-05,1.5990213138626462e-08,0.48056829688169667,0.07503404596007518,4.597085433655576e-05,0.6391852098955529,1.5011000734669349e-05,0.9893038139341541,0.024636839568636267,0.040634952289676986,0.6316898442846568,0.8681910913947581,0.00048414516141490554,0.5524077005644888,0.8551379763168935,2.900873586538827e-10,0.0005338771237477621,1.4893290999178206e-06,0.013541371475407292,0.00016379698655445628,0.12454436293617929,0.015875589819139297,0.04395890855531052,0.005412235603199439,0.2009994977244912,0.2597193164863959,0.00022279938764665987,0.00045147204734838245,2.2689939495978085e-06,2.225910154600857e-06,0.9543713395057609,0.8813457834953158,0.0023434271254647076,0.00065312569140734,7.296682138488854e-09,0.00034174088379088405,0.025139544252997126,7.226294081565947e-06,3.4763976399641355e-09,3.1059092261138073e-06,0.023194348839351668,0.6199840701479464,0.9998847570561823,6.75832052362023e-05,2.159257797592258e-11,0.10131005913670418,4.601428579239141e-06,0.052680625078193294,0.6064828848650697,0.9996364867157493,7.105589948724686e-06,5.140097614238232e-07,1.6782607348019146e-05,1.0977920908586094e-10,0.1797120228746997,0.02473496518644589,0.9493174756121167,0.9466163745583833,0.0004914939193902332,0.02490081712897443,0.9999964077705763,0.9999932127276432,0.2452565994004734,0.9999970034507856,0.9999999999670364,0.9999999992563611,5.917287365676361e-05,4.114082188000821e-07,1.9832759635421632e-06,1.5236796152619386e-05,3.3129170052216165e-05,0.08710897881106475,5.26065818309532e-07,0.007272760687634621,0.999878244596203,1.282548958499089e-07,0.002057018298077556,1.3496411411821615e-05,2.4716818395707253e-05,0.9999989770215179,0.9997848998955742,0.9999894960894051,4.592774589664288e-06,0.2616169619462684,2.329121115461978e-05,0.45648930409886107,0.000453442128190459,0.9999994042040378,0.9998902287545136 -morado,object,0.9999467662730924,1.0611759203275917e-11,0.9999966903252665,0.00804805548087454,0.9999999434017411,1.2129713512940096e-05,0.999999984262866,3.1993314333608043e-06,7.359920808700712e-05,4.899646123072602e-05,0.0008416924815963571,0.003893803410834517,0.0007208105329235055,5.777589840821387e-12,2.182615528599047e-06,0.9999999888959493,0.9901702349944326,0.9971175463454257,0.880726723547001,2.2524143342350257e-05,0.9994455285385732,0.9999994445233452,2.915366987498397e-05,0.9999999801978519,4.050862924911409e-05,0.9999951910507673,0.9999854608994869,2.4011063101794062e-06,0.9999999977638772,9.042589166255545e-11,7.786727615331604e-06,0.999999579804711,9.711564152763626e-07,0.013751167966915546,3.0462748894037506e-05,0.9999999894417954,0.000463996684893521,0.9945186732335733,7.00789849738297e-08,5.605652733204625e-09,2.263868703838542e-05,1.831842078429246e-10,2.0767310184282595e-06,1.1886793059855805e-09,0.9999999358644182,0.9998968552176364,0.9999996590512675,0.9999211063890985,0.9999999981400813,0.0010222788190318135,4.8094553113049364e-05,0.007215729765844638,0.0004077698811511416,3.8299298736960116e-08,0.9999999970479982,1.1504754381977262e-06,7.117649594745901e-08,3.261554034504592e-06,0.0011528238878728587,0.06406110634964211,0.2278912059348358,0.9730776146485931,0.9999999990020325,2.4509102259848914e-08,7.07004214115483e-08,0.9999997254475369,0.9999964009109136,0.00021760045317525088,3.190332659463304e-05,5.183586607615129e-06,1.2982432315120257e-07,0.02057916316138937,0.0017191658955938466,0.0002406797955611474,1.9167546544899967e-11,3.4459469197722197e-09,0.9999774295205051,0.9999985932835005,0.9999993984248634,1.5473854734278579e-06,0.9999862613100966,0.00023186075402253695,0.15178104864855524,3.374109023863193e-07,1.576868666378846e-05,0.24434721496516038,0.9999996984124931,0.9985920846280133,0.9999933862277613,0.9999847743648838,8.253764988105999e-05,0.9999999987266048,9.347629926321271e-07,0.0014535225724671007,8.684938923178002e-06,6.004334535228737e-07,0.9999998972337562,0.00022265641806014743,5.822607462913746e-05,1.298132920057483e-06,4.0748792488880526e-05,0.9999995434916206,1.7147411906060722e-06,0.0002015995739174906,0.013657827970507184,8.168020993381529e-08,0.9999997745005187,0.9999999523097043,0.9985869388138927,5.8983916034325216e-08,0.9998639277069818,3.549377915617084e-05,0.020221477438275945,0.9999986081962156,0.999968659179141,0.9998762983551517,0.015178460491915964,0.9999395316312076,0.9997942244933046,0.9999362726452443,0.9999977502923342,0.9999442404741833,0.011669829207552385,7.938744745199736e-05,0.999987236483586,0.0009934840153830527,0.9999784007880758,0.01598022899610017,0.030064781847351944,0.1669516017914947,0.5451997135247354,0.07891466066580229,0.00010592430965788268,0.00012679147236882685,0.06710642058864681,0.4518253016767887,0.9804305994763645,0.15645349084223178,0.004677484836051735,1.8375057039406256e-09,0.00010671927084709952,0.9999999645985974,7.933502279055597e-08,0.0001518632194554292,0.0002301275437165689,0.0004792285048124574,4.776051350626832e-08,0.999997162931972,0.9998392472386023,0.9999999521203847,0.00010866886928311647,0.0012053388485423634,0.9999991879562798,0.017842813319628868,0.9999983282244533,0.020307785039880594,0.003112410318994985,1.100815671109189e-07,1.4475266872327507e-07,0.7990809699074317,3.5937041219705136e-08,0.9992796798740184,0.9999999999898714,2.7849943401014424e-08,5.688674796955191e-08,4.897306856752851e-07,3.076884166199482e-06,0.037239579108274815,0.70462921074394,0.09568588799480014,0.00011806423629764836,8.669268431520853e-05,0.0007589048376410941,0.9999999880397726,0.0015978045663403732,0.9999999884286622,0.9999999935037205,0.010431671712141918,2.0248144816320913e-09,3.202741409009981e-08,2.364826636162728e-07,0.999999982980805,0.00010917105235484309,1.8661862750211895e-05,3.2607672382463516e-07,0.9999999942207145,0.18027630288086718,4.872364673898408e-11,0.037600065094239236,0.0033113004699506653,0.022956781037186284,0.2601490345613033,0.99960182520957,0.00010128315636566433,0.0018980890285983873,0.9999999860415993,0.029250900452272504,0.9998966929280594,4.812235751105537e-06,9.86314721333132e-09,0.0444813076324731,0.0014092547261661459,5.712882310980628e-08,0.9999884839680159,0.999704826261385,1.2289788334310188e-06,0.9999995463276445,9.83001746986833e-05,4.128524816433484e-07,0.9999503905021982,0.11247268784447587,0.9992627159728804,1.4973187657313651e-06,0.2047618891377573,3.2431090422212595e-08,0.9999841960333544,0.9999884064836098,0.9999999999164215,0.9999799573363903,0.9999998739267822,0.9999999175520712,0.0006226601863287239,1.8775824185392756e-07,3.070889593860167e-09,0.9816647861112568,0.9990731784726073,1.8481284813323294e-09,0.42845732797274144,0.9999999984091812,0.9999746289140646,4.1036968412757364e-08,0.6486503980184082,0.0011244505518496063,2.9493872580870105e-07,0.9999970659405549,0.9996424544488827,0.9999256436837477,6.723412841584354e-11,0.22207549147825503,0.006951036571976718,0.9975806387978882,0.00013239368664200117,0.9999714942878436,0.9998221742076688 -naranja,rgb,0.09565599885599024,5.9474659529788295e-24,1.1624358154105651e-05,1.7677704305243148e-46,2.157157531819425e-08,0.01052626983871654,0.026290240691758397,0.7690890915517271,0.8401890953783576,0.9694926267534962,0.044000184988803766,0.0004186114494245503,0.0013856895405614548,9.333730757357504e-25,1.7560912470502922e-51,4.122572980334409e-09,0.9975414849146438,0.9949433354356925,0.998231122136364,0.9973288628009818,0.999960829343394,0.9999720113678608,0.02519776011941477,0.9993946069597617,1.0712468588142519e-06,0.5575739704701568,0.0014333872257023645,3.2445703516245237e-06,4.716785475362063e-08,7.037499817585607e-22,0.010719287277298074,3.058881568436883e-07,0.028590730829697295,0.9998474191398956,1.9859877859573542e-45,8.895635828893533e-09,0.99609965388478,0.999987894736369,0.009739908558239979,0.16808172034208044,4.944458608022491e-44,5.89730237507326e-18,0.012809473787448851,5.724459099192656e-24,5.449099194829214e-05,4.092039690409224e-06,2.3163844731523465e-07,1.2622276322823198e-05,8.854343144292477e-05,0.9996736454670709,0.012430232810752655,2.5618297031537093e-44,0.9144815964244905,0.11826269297146134,1.4936397994582817e-06,0.07162150247274249,4.78390428948097e-07,5.799751937214919e-07,0.0005863297242128191,0.003727668907740131,0.0503381576761009,0.9999798778345872,3.233935880906627e-10,5.2519516174456783e-17,3.80815277797215e-21,0.9999083202873924,0.9746148179872292,0.9466306092398976,0.8260794383506719,0.8010947807130571,0.06731165653380716,2.1947845758380625e-44,4.242593957079301e-43,0.964661643826218,1.9890619485807045e-20,3.370624791688214e-17,0.7870175469165395,0.9998398065913139,0.9999599098495161,7.538091803516951e-07,0.005298606255178337,1.30993225299609e-06,0.9999983223192885,1.5500459748577948e-06,0.786242660013711,0.9999984441173904,2.2319253019938875e-08,0.9999809317851555,0.8736903820574385,0.0057996309527942125,0.8063457872700245,2.425592315195028e-11,2.7927859722456356e-07,2.7375440972440696e-07,8.291988158776704e-07,1.1645335933459694e-06,1.6063470946701083e-07,1.5866326387456516e-06,9.237250412741886e-07,2.160133252484431e-06,4.3226451215502695e-06,0.1396553886231318,0.21131906044138657,9.612997362101903e-46,2.5621086567404953e-06,0.009051121760972988,0.00021874318973743537,0.9995317013425405,0.07331382682887708,0.29064914966027844,0.9439975679122297,8.78861290952236e-45,3.521032486341378e-48,0.00010365364857078094,0.0070781893291184785,0.018816605750181476,0.9987648134590421,0.026176366321780598,0.0003830704026736469,0.0010872404722422093,3.0595641524361397e-07,0.006618857027227025,0.9991293522781302,7.551709791248204e-43,0.00018203526797615338,0.021775300534047373,0.004631448004232031,0.9982642341721262,0.9998507297753233,0.9999871069504688,0.8874329759415013,0.9999441631659955,0.009054564363539236,0.9610780556058944,0.9991187256158652,0.9996012703004187,0.999015995972508,0.9984115936081723,0.9997356310464328,3.688570503308389e-22,1.120179450405976e-44,3.2016850620809638e-09,0.08072157429355477,1.8827194683007525e-41,0.9972999046465608,0.9944518593863356,0.35884364815405206,0.9999498898892047,0.9357562190234748,0.9997883561940191,1.621232946491945e-42,0.9999826414308042,2.9686045401222192e-08,0.0493260466078649,1.3738978955858975e-06,0.0027855426309168316,0.0006528292628742582,1.345805689724262e-08,1.815329648061878e-08,0.9996326063070579,1.7936663256928659e-09,0.9994991177328362,7.3530087258344255e-09,1.8260417930155384e-07,3.010728953981605e-07,5.964396932473832e-07,1.5687495139720578e-06,0.001423493226852292,0.004308293670572595,1.833129500765593e-45,0.9999782689426329,0.012514364402102136,0.9999797203529964,1.1908671009660857e-09,0.999966812645381,0.02361675136202793,1.566062442771332e-11,3.6595947364897694e-49,2.0066253441872793e-09,2.3024251483707004e-08,1.00625684761919e-07,1.8095308436212297e-09,3.6137258256030505e-45,0.030007499842198717,0.009099974527730398,1.0590107801126575e-05,3.885535469721535e-37,1.0147465516451738e-22,0.004235980677030491,0.0007886537368223548,0.05830614787968275,0.9999862333681931,0.054007382895651046,0.9933530145465485,0.999980734547483,7.170881892077647e-05,0.9990567818090056,0.0008992051336706074,0.021008193434611595,0.17009946928847935,2.466221716001259e-42,0.9999864488764799,9.173660497615833e-06,0.00244493396116342,0.01889202476469564,0.19169157104644813,1.7702742323761798e-06,8.111426630729951e-44,7.707700631712242e-51,0.008739327398720157,0.9999937230353448,0.9999927207646513,1.1510789550820056e-06,0.0014248363868229134,1.5951424341818673e-06,0.0026957600176411543,0.0001996777781069883,4.480204290052498e-11,7.620238828435706e-06,8.139299277774964e-08,4.3410043299087506e-08,1.0049028464317893e-41,0.08212463525557964,1.8066696388089215e-16,0.9943332108102596,0.9916710762486968,6.121637574180461e-24,0.9975981858203565,4.102098677932114e-11,3.1608848106269237e-07,3.340169038780246e-48,0.9999981539992373,1.124506677922331e-42,0.21075128839331642,2.628688304525979e-07,0.0001762348114302463,8.101058764912236e-05,2.6313714226373956e-22,0.9999722344788671,0.9999849213140027,0.99999258509263,5.398409051192351e-44,0.2131039319475306,0.07424938205311991 -naranja,shape,0.9062006553456738,2.6826859832007215e-07,4.53420864724528e-07,0.989501532809695,2.7751806389950254e-07,4.9444090302965236e-05,7.867889409378933e-05,0.9633563728086084,0.017078204431992507,0.99960585598065,9.452348934449262e-07,0.008694741747245105,3.0116555702921407e-05,0.00010437819607200536,6.993780861504432e-06,2.3265146640710356e-05,0.9998793963260412,0.9998729704213648,0.999975207786978,0.9999990995839757,0.9999790212562022,3.873705817650047e-05,7.773720947937498e-06,1.3824446327823575e-07,4.792492053396902e-06,8.907443560936688e-06,0.9999911680265119,0.0029240415291039846,0.00015489941222520778,1.653898017798262e-05,0.004106250720517223,4.1111822929423816e-08,0.00013288833056771765,0.9999509191345921,0.00034593187276400566,9.14008710777813e-05,0.9931449498559362,0.9999769200837882,0.9998136822507763,0.6402067430706914,0.0002083683391811894,0.00024331270574647114,5.5529453208467475e-05,4.3611353344903934e-05,0.00011763879085051272,7.805504102399063e-07,1.2464561350359014e-07,6.90735223763431e-08,4.094322496924079e-05,0.9998671082527061,1.2287762298149183e-07,0.002168513954986299,0.9999714488223015,0.058015527302251416,0.011109599483195069,3.3169400355719967e-06,0.003332085716396647,2.215899694152847e-05,0.2877288079643957,2.8879267903799025e-05,3.446953828126217e-06,0.9997175599534585,3.173604737543573e-05,3.2011431090228255e-05,9.782665706299601e-05,8.386966249569671e-05,6.488041320257598e-05,0.9998854349929855,0.9999327447032816,0.8396766856969172,0.010110832673023675,6.83679346198017e-05,4.1779152088090705e-05,0.9999459696519524,6.471772770125127e-07,2.7791551518843512e-05,4.922674795430896e-05,0.0012309684754964565,0.000521601171421156,0.0006703419347156534,0.9999938815853121,0.0013589800714236984,0.9999403351798414,0.000575901958508917,0.9980027681132095,0.9999025996144635,8.65644594820384e-05,0.9999689820246869,0.999874440850959,0.9990125117889312,0.9998819314662397,0.00021264456459464342,0.0021828668049292364,0.0024548748726170963,0.00028085947009360695,0.00023645541346260763,0.00010302499250936608,0.00021746582362364738,0.0009082106071613693,1.882092665110946e-05,7.016845748638065e-06,0.0001314731664919395,0.10695928674622736,5.2248344764109824e-05,0.0015596520851938658,9.214360144132151e-06,0.00010855180124194582,3.5599786589359783e-06,0.04124485008673222,0.06097426180425932,5.848010049656248e-05,0.8994536801028108,5.682583859704981e-06,0.001873288981943604,8.575687143636072e-05,0.00044146388164449787,0.9997716315216035,1.2321455743328819e-05,3.6413910562023766e-07,0.002511122844727346,5.592319778581616e-07,6.954136962819805e-05,0.9998085717461443,0.00010172147440021354,0.0008729035747743289,1.9988561614048868e-07,0.01570316122479673,0.9997752223567568,0.9999787226168771,0.9999436187619384,0.9915206536992927,0.9999483854311825,0.0007407991483879834,0.9999852001487477,0.9995300350807174,0.9996894713422122,0.9997672237139279,0.9997673355483035,0.9999258390954567,2.971726640982463e-05,0.018107576250507632,0.00010075929785626182,0.3304073111123873,0.00036198542660289434,5.471281061227025e-06,0.07368042768883526,0.7030895691185782,0.004650161763043701,0.0013454608815750585,4.4488312291114184e-05,0.0033105480241842444,0.19174636059462807,6.311679204191415e-05,4.556423280739572e-07,0.9551739198115687,5.649109216436538e-06,0.008694741747244984,0.002399497509003744,0.005575581451455882,0.9999436483952909,0.23701676797010032,0.9999418870236442,0.00015609037727579403,0.5073846382697837,0.00379060699424044,0.0004023645688853371,4.222385517743721e-06,0.0001811784408293714,0.6015779823382986,0.011241323505533767,0.05589809316401401,3.199712753839586e-05,0.9995389117167269,4.1252681985862325e-05,0.9983468595789916,3.6443114135604925e-06,3.296500595145922e-05,3.392495461344261e-06,0.001646641661551799,0.19469991459401498,0.16208346874190996,0.0001858325637556922,0.02570850299739375,9.0455418772122e-06,1.536895785280264e-06,0.000636813840497019,5.944766313485693e-05,1.3290856365860818e-05,1.391359641285288e-05,0.0004919272521583421,0.000197991612968383,0.9999576208553306,0.9999898727312253,0.9715791986203515,0.9979906691361333,8.192738268946977e-06,0.9996153077519814,0.0064441924692422575,6.476339519590421e-06,0.0097217793057458,7.497981921409062e-05,0.9999766407470024,0.008801270914902862,0.9999961813071704,0.15220590033906672,0.989658658512291,0.008477893491537348,0.934925773205013,0.00030743971098026144,0.9999994676941337,0.9999434516911042,0.9999427202914764,0.00021986565283578873,1.1348140771833367e-05,0.5671533734507334,3.503790346210523e-05,0.00176094916331305,1.049882981917355e-09,1.6132145281307118e-08,1.3367540339412722e-06,8.722991955677456e-08,2.0544554158882215e-07,0.019217872055768248,0.00027403351084282846,0.999980963605702,0.9999471567086652,0.00023407499785999987,0.9999136832210057,7.392581189571468e-07,7.699564287092505e-12,0.0974890518048586,0.9999494256080964,0.0002200196414546127,0.39562736894977946,5.592319778581577e-07,1.2970437510762053e-05,4.274103790565162e-06,0.00019294977398450313,0.9977500591544151,0.9986476816536103,0.9999751274744585,1.099622743495068e-05,2.7530928490420053e-05,0.0013370258178418714 -naranja,object,0.9452540774611251,1.0857722112896818e-06,6.567418990839297e-06,0.00036722188167576456,3.6101969652944033e-06,0.0009977659134054774,5.8060485460337555e-05,0.9959097571410878,0.8329654659712764,0.9997886660491628,0.0004046850932995323,0.20842044233975193,0.005398951165688789,7.775739211256173e-05,8.585476243424701e-10,3.336364871680069e-05,0.9998667129277217,0.9999381540339652,0.9999826977531918,0.9999989577035137,0.9999773726862766,0.0004343294312597963,0.00018746955298943097,1.6399076610481391e-06,0.0001038333403516329,3.6777491470669524e-05,0.9998971034843465,0.01388642685804839,8.425480729751601e-05,5.214658552829666e-06,0.13383919641576736,2.6939794708944975e-06,0.0003008606545412219,0.9999703697107453,8.326260081641602e-08,0.0001236390218063544,0.9984642540500782,0.999979765155793,0.999910502476305,0.9869246493115402,2.4123005933128216e-07,0.0002478404077211097,0.001801438498681231,6.412672708783862e-06,9.413892706455877e-05,9.639343741919435e-06,3.066814237703556e-06,4.6800675380129173e-07,3.698259620217e-05,0.9999162667567292,5.399587526816316e-06,6.86892630313122e-08,0.999977093430996,0.5718665437287822,0.004042004223553229,8.443707551016331e-05,0.25607306075713127,0.0008485985368934522,0.871851330861236,0.0022062259651384193,0.0003196818812902297,0.9998315822573557,3.051474669294985e-05,0.00011103468407345567,4.7488588087764463e-05,0.0006348091820342734,0.00034328757686869984,0.9999244725885893,0.9999604446686532,0.9821621742354902,0.3401970844265109,1.2849423679438657e-08,4.912292293173292e-07,0.9999486187925943,6.916063978992734e-06,0.0003238672918138708,6.041326364083266e-05,0.0035363544485288692,0.002393259160937935,0.0025177189551790543,0.9998806355659985,0.09049359389719286,0.9999603280120825,0.017062158154381314,0.9993036337946989,0.9999380923100692,6.294868863185905e-05,0.9999810020001028,0.9996919117185424,0.9965253859577351,0.99994403807139,0.00014774311748057392,0.1842959973173743,0.10764021784318155,0.04140339757037668,0.028012895864378044,4.154714409225465e-05,0.07194080838670672,0.09206827465092121,0.0003661140222154216,0.00010367578541399969,0.003576304935080512,0.6530913660715782,2.4573644089978816e-08,0.11519841972521619,0.00028727039036786293,0.0009826867532663258,2.4937250712116085e-05,0.03210133342734436,0.7662062348851684,0.0004420042832977857,0.0005315456130505511,1.0127206386436307e-09,0.10666472696910978,0.003962019425014676,0.006849741376365582,0.999768563938742,0.0024752698386472346,2.5009198690960332e-05,0.0018708898269453522,4.02807530008891e-06,0.010804084264712351,0.9999037438234994,1.226518256660365e-07,0.057382104578198735,0.000774277646070069,0.25183213582042047,0.9997374319817661,0.9999818409860031,0.999945379956293,0.9997231920442217,0.9999575668432705,0.009834406446656362,0.9999916896559454,0.9996264685741287,0.9998274397963264,0.9998429524812764,0.9997457567833239,0.9999732264746848,1.5175514359086485e-05,5.168705938479651e-06,7.136456371871464e-05,0.9912179812061588,0.00012677371342680453,0.010014433025659302,0.8373872011573714,0.9965951199222954,0.014653293583808654,0.0014924848226144085,0.0005723395268281929,5.188595671069787e-06,0.9594703618961612,3.108676108604861e-05,0.0001384221296975983,0.9587419323785409,0.00028782426408200025,0.22266049723017636,0.004447401281603554,0.02798861680698838,0.9999541051187948,0.45115387006105667,0.99994515375926,0.00010541488741226474,0.6799224299496477,0.019665991060084556,0.0035019770896949905,6.199012702322872e-05,0.0014029742950452018,0.6779090884071779,1.286570438359486e-07,0.9682300725845909,0.0007423694894094971,0.9998134572907864,1.7082838795542152e-05,0.9991959960397334,1.1148859297770188e-05,1.5936923654231873e-05,1.370839198985025e-09,0.009724912863563666,0.23722735855362553,0.1894771425651826,0.00012262511120443963,8.414084223908522e-06,0.00014746842614968972,4.492625155765457e-05,0.00045533112686449337,1.8363887069973996e-08,3.249042794014831e-05,0.0003366269678252447,0.040906643263773024,0.0009390468785371616,0.9999800803174905,0.999847313689123,0.9988396292664078,0.9996365444208216,5.657367113507707e-06,0.9997436970669592,0.15275220698199388,0.00014814050696797335,0.7020847343976494,8.588811363016258e-09,0.9999852224752361,0.03345314084724741,0.999946929422446,0.5625203034213465,0.9988489854059489,0.19027932676953319,0.0008046539069429985,1.640449536487886e-07,0.9999885484335255,0.9999457284834659,0.9999081369692266,0.001943568446254995,0.001487381099401376,0.7206049419003011,0.0007597050375018732,0.04305232127187093,1.6375102258265161e-09,4.762439357618626e-07,1.801541160095177e-05,2.247255891364982e-06,1.7461231100655439e-09,0.4840340735177916,0.00033782291955616016,0.9999905483649939,0.9999569851912061,0.00011135337428216428,0.9999717932199195,3.3474678513528753e-06,9.437969822967598e-10,1.8096459033360457e-05,0.9999786831859774,2.178439337070392e-06,0.921887252253369,4.0903883962755725e-06,0.00015478949737108435,2.506517824719217e-05,7.948907878207095e-05,0.999741630139441,0.9995372201531089,0.9999710697077391,7.221919693770191e-08,0.0009999847739919538,0.04588902230404774 -o,rgb,0.3646074822468553,0.9999999997532414,9.756918789374446e-10,2.6206773322497946e-25,3.4504607010808312e-12,0.9999999999999998,9.913501127063059e-07,0.999999999999998,0.9999999999999958,0.9999999999999643,0.0001431416466051774,3.949080516089605e-07,1.1811865329685448e-06,0.9999999990160784,1.7919293398107564e-25,6.128705970983504e-06,4.8252607570166874e-06,5.07056382341175e-06,8.734548057961227e-06,0.9999523617052726,0.000627177449915109,7.399901956376748e-07,0.9999999999999996,7.86467522788549e-10,0.9999999999999858,1.3903316376784713e-11,0.7553768466973774,0.9999999999999747,2.746138293027354e-05,0.9999739562656852,0.9999999999999998,2.779899273293119e-10,0.9999999999999993,0.9999999997366769,1.1019659494305934e-18,4.246490206537782e-06,0.9992491326247817,3.612716527003801e-05,0.9999999999999643,0.9999999999999876,7.382748906989148e-24,0.9998197480133344,0.9999999999999996,0.9996166996918653,4.87805248517043e-07,7.120074599542975e-08,5.361954309318623e-10,9.886696570689992e-10,2.574393514059151e-06,0.9999999982270835,0.9999999999999998,4.657795382111158e-24,0.9999999999999913,0.9999999999999971,1.6843997494005227e-06,0.9999999999999949,0.999955649285777,0.9997393704393537,6.299365374016686e-07,3.641591306852137e-06,0.0001257718701210611,0.0009471194051636688,2.837691157148146e-05,0.9989893692121424,0.9998376014132787,5.484742379237865e-08,7.059417432418919e-11,0.9999999999999842,0.9999999999999969,0.9999999999999971,0.9999999999999984,1.3834628410003578e-24,1.3085004408361856e-23,0.9999999999999727,0.9999999999983624,0.9998969774688898,1.417801327342606e-11,1.2294834915517939e-08,2.845485592556766e-07,0.9991232578053751,0.7217663855391964,0.9999361937698646,0.9954813565189917,0.9932160248674105,0.9999999999999978,0.9632703655152004,1.812117043207786e-05,8.979280794845029e-06,0.8042938829571354,0.7879524318678485,0.9999999999999976,0.0003149897382806706,0.9999930926277086,0.9990300217995592,0.9979317325357642,0.994606538215945,1.4244571981313961e-05,0.9927170947640384,0.9999518348016302,0.995607096270712,0.9754073433538487,1.3582728580914995e-07,0.999999999999984,1.1213390360952454e-24,0.9365646986543242,0.9999999999999998,1.6326759200384077e-07,1.2685530617400707e-09,8.997723750775206e-12,0.9999999999999798,4.43471373110992e-10,1.951828409921661e-24,2.4021087443351165e-25,9.37888712255833e-07,1.8937912274047813e-05,9.542407932037396e-05,0.9999999999957281,0.01461776057294254,2.622051256492978e-07,6.576589262804944e-10,1.8962504465082336e-10,0.0006368008710598523,0.9999999997486984,6.102187201772083e-24,4.055838729075246e-06,0.9999999999351437,0.00045733674181491025,0.9999999999975018,0.9999998322228307,0.9999999020187673,0.999970068266676,0.9999999981004353,0.9999999999999998,0.9999999999999762,0.9999999999924247,0.00010019077948912982,1.7697430683454625e-05,1.4901704286961172e-05,0.9999999893126835,0.9999188502088354,1.0171309098468505e-18,0.00033644799286620795,0.9999999999999982,2.6132091261306808e-23,0.999995586846748,0.9993845506698732,0.9999998081699338,1.5857838078148534e-07,2.6838068431598223e-11,7.83052032139276e-09,7.37138098483622e-24,0.9999892138827837,7.59677723898205e-06,0.00017713444711725437,1.8064055426963294e-06,3.249060240415528e-06,1.0071221931256298e-06,0.9999999999999831,0.999999999998703,3.886724084446239e-05,0.9999999999999991,2.5135603889778186e-05,1.8295463488707552e-08,0.9999999999999787,0.9999999999999956,0.9999999999999991,0.999999999999994,2.267613259216815e-06,4.5425683337442105e-06,1.3042263188950585e-24,0.9999812965272312,0.9999999999999998,0.9999995200634185,1.37255238162414e-05,0.999985445404597,1.0599552774864384e-06,0.0005990631746310186,1.4274063633511267e-24,0.9999999999999998,0.9999999999999869,0.9999999999999807,3.3547799799949367e-06,1.7920783820632378e-18,0.9999999999999996,0.9999999999999998,3.980969514014491e-06,4.0592312953008406e-22,0.9999999999354527,4.357034367619454e-06,9.6408103588912e-07,0.00016933889815551927,0.9999998858276778,0.34164505781968846,0.9980320286929076,0.9999999372851996,4.785355800463371e-06,0.9999999999930691,1.0667143376342416e-05,0.9999999999999996,0.9999999999999964,1.1489839772162697e-23,0.9999866417886523,0.9999999999999913,0.8695591672189494,0.005819885147727454,0.9999999999999927,1.4598716675087551e-06,3.4330503490105314e-24,1.5654805072209985e-25,0.4558853953715972,0.9999992055254866,0.00013028365232458844,0.9999999999999793,1.6599492056111096e-06,0.9999999999999996,7.741181214384697e-05,7.292389357010768e-07,0.00012361428706814765,6.648299157147365e-09,6.23883383254675e-11,1.4877034951788055e-10,2.2106624559732414e-23,0.9999999999999982,0.9977971287197677,6.1210108205924074e-06,4.510680302701616e-06,0.9999999997553048,2.53647208774843e-05,0.00014176416384509654,1.9319360797032805e-10,1.1583176752910744e-19,0.9994434019312562,1.2399878016260917e-23,0.9999999999999878,3.165198397047006e-10,3.7161491956406073e-06,1.75376437004181e-07,0.9997518330971537,0.9999999856729747,0.9999979155308549,5.3538094377960336e-05,2.364579190720659e-18,0.0017277391159150738,0.0012183796945253226 -o,shape,1.4185569731312134e-06,1.968003563452493e-05,0.023812108121110523,0.9459025164580916,0.0024380908145369973,0.9682606100330882,0.9536542714212612,0.000235740700104518,4.827218261239232e-07,0.000992817173933276,0.00028390390237717505,0.013329545913442594,0.00027726134695817004,0.00044086939195676813,0.001155472609526405,1.8569907177178897e-06,0.0064891038859352336,9.01932843631552e-08,0.9998018375828504,0.9992137445350665,0.07004948895743353,0.005771041137071063,6.975322171241273e-05,0.0004112683424290449,0.8794931913713768,0.05920333639161389,0.9457900382290595,0.9993401258723901,0.06425573074182865,0.015299422985787467,0.002795101590123305,0.9154760961682399,0.9992361562201454,0.9945688308254701,0.9986914382895461,0.9998815087279845,0.9997689339869817,0.0003610865221564193,0.021529858665274383,0.9821143651021934,0.997106010721173,0.9997266785395992,0.9996888020524831,0.9998053962810781,0.9995322027914142,0.9987107815615066,0.8078314919909823,0.0016255936277407787,0.4039945659846637,0.7544889826586715,0.9414427049809276,0.9776703142882857,0.13600974065047824,0.9127788418360776,0.00011909224163636915,0.9999999524434164,0.01795742845016519,0.04700088619385175,0.5293353796188892,5.163592486810486e-06,8.133315347519365e-07,0.8485395471801149,0.001492843208298372,0.0006177403074314308,9.911626211134957e-06,0.0009191827872347491,0.00884016431105486,0.00022746480665013173,0.03510840589999794,0.017228175402928623,0.003747935418511368,6.638120976999694e-06,0.00015054957338039732,0.8009848959326998,5.572659739087809e-06,0.0010081126248691313,0.28331946881423037,0.0014339516868347507,0.39682771789443166,0.05067615053730218,0.031795159965737146,0.00019990494647327255,0.004199577543543719,0.6243347934260912,0.9585180804561712,0.0009043933521183672,4.4188940674380984e-05,0.00046734026240941,0.004749409368316931,6.455533847381632e-06,0.24612216300780407,3.4949690205072815e-06,0.005500864852821289,6.800795784634421e-06,0.0043416405701964195,0.015128020315403529,0.9996608008746157,2.796018391346114e-05,9.61845771861484e-05,0.05334396451499638,0.05101630664083217,0.00017407286579546036,0.0040595237903091625,0.007575808763905395,5.357136084134006e-05,0.05964596597065875,4.868585857754017e-05,0.0006287346348410646,0.9979728712268333,0.9999249396814046,0.01011630333977705,0.6474296441495965,2.70518784082028e-06,2.2103802130024893e-07,1.8633402729993007e-05,0.00011621373615275206,0.995575905881171,7.521991219728521e-07,4.5827745008666765e-05,0.6139909185126463,0.050569021078657884,8.105540567147205e-08,0.17369344694197736,0.8610751350236593,9.141744081313575e-07,1.790639695403171e-06,7.45738301643762e-09,0.9959776574809553,0.10936355738368582,0.27419833063335514,1.4393640611886466e-06,0.74690522406286,0.0034962076957360108,0.8702660113955308,0.9481724266149424,0.9773074496898408,0.9999980782799991,0.8835467658476452,0.04833394612369132,1.8409014918769016e-05,0.05565519396409975,0.018583225592431075,0.008766054523021328,0.04992978210269201,0.9702273938306931,0.9998817257719046,0.9936226909314122,0.005555601723168751,0.9989991731451844,9.468161007336133e-05,0.022582261923828978,0.0029696739812286772,0.00231416525593567,8.132850173657429e-07,0.00022220610834801176,6.006855379832469e-05,0.013329545913442535,0.9998217027089618,0.9998292509191723,0.7953792098118898,0.9940506776823826,0.006760802735127696,0.9993682467192512,0.9999538274951304,0.9999816158223728,0.9997586364043222,0.9993708051799514,0.001737348874186863,0.0001731718202487173,0.9958435029626621,0.0016151431062864298,0.4330664433878314,0.025611339463202532,1.2355077218946938e-05,0.11525201891213568,0.03145197057425632,2.6381729737758437e-05,1.2340845395921435e-06,0.9999872942129033,0.9999887606193069,0.9999305102678089,0.9999732588423931,0.004854698237754457,0.030034269698310904,0.09799683497558553,0.4624975665179481,0.8560404372437663,2.2341752011505003e-05,9.105149261071491e-05,0.0006474729759121035,0.9993333096179721,0.004686071252933286,0.9918174759993232,0.9998623306140293,0.004019225343407938,0.35211081150031065,0.9852434225593905,2.6477765005711625e-06,0.9954879330430365,0.728054676053061,0.38776248270889807,0.00540996803872831,0.9997076800998919,0.3107703563360401,0.00011101724710137769,0.03458224901417079,0.00014187981225337556,0.032704917230159794,0.0005062729622918238,0.9598187874024805,0.9907227666035799,1.587306159624385e-06,0.9875956723760335,5.029415785172021e-07,0.999823373684993,0.00013549224551865648,8.993681353928631e-09,0.00019328121558984148,0.8063719918129082,0.9941573712830076,0.03887657250896632,0.0001686184282604759,0.007185437350065695,0.04706851495132332,0.024145330054413102,0.0026580487416150967,0.0001000914873805211,0.381419094213187,1.9794724832747966e-08,0.6012102748815299,0.0686777591209148,0.42907545328846336,0.0002390043419440877,0.8369082436415886,0.05056902107865784,0.967616338154303,0.00833801300249744,0.0011964342009818613,0.041253871528405386,0.17789910027690842,5.051876497887212e-05,0.0005099463027911516,1.6484142064822176e-06,0.00013638686174138374 -o,object,0.0010309026579007057,0.9999513720195545,0.003115973159788628,4.99025380330048e-06,0.0005444262863905467,0.9999841694101197,4.6856877646160153e-05,0.999974290404447,0.9980218127958237,0.9996126745258934,0.2974478481144408,0.47573836826023685,0.19000336372007212,0.9998985862328389,5.686968374749991e-05,1.457095901760237e-05,0.0034432406302945186,0.00011040864882448693,0.27998617577738477,0.999356697871321,0.013788388661762154,1.3868528417019083e-05,0.9991988847872042,9.035423461858368e-06,0.9996188696313267,3.5980338978287376e-06,0.004514234869077155,0.9999574002814732,6.588931240541472e-05,0.9999452596712026,0.9991874475697539,0.026476543372431605,0.9999997186707635,0.993368561773257,0.001132116783714001,0.0006698796988810946,0.9998000220663237,0.00027557498805670145,0.9999883028050972,0.9999993387018214,0.0002902401949823863,0.9999840020988523,0.9999973364283176,0.9998981565365885,0.00022438389880781722,0.3694063573783658,0.04074153167956398,0.006350669760415724,8.269471525697919e-06,0.987839858141761,0.9999628006883724,3.959480590706568e-06,0.9992725509170913,0.9999979088089307,1.736962182397725e-05,0.9999999726742611,0.9998464824896615,0.9988976695495005,0.32276485835711777,0.018091744670148492,0.010178394013006922,0.13887910933564188,5.9316730656347634e-06,0.9983048583571905,0.964493823718986,1.848708795168759e-05,2.8724764190463454e-05,0.9946823334260475,0.999830564700374,0.9999425212277341,0.9999745332230969,5.244892621555967e-08,1.3463877610639994e-06,0.9998450448698365,0.9999784110924157,0.9981457909096456,2.1915546133229294e-05,7.725120784670718e-05,3.2369224763528754e-05,0.999224196555647,0.0023382234229941535,0.6323478489748363,0.181872643906511,0.9986685829755846,0.9999837539082053,0.06963806851412457,5.119186691591795e-05,0.00021257560267413413,0.03266967401593279,0.0003335255774985994,0.9997642515761453,7.256867246120495e-07,0.9995197534799509,0.5957666337532385,0.9972675731057428,0.997846228403023,0.0005386714794818857,0.8564259090602211,0.8478249197232692,0.9997152824140919,0.9933887226682128,2.0009337958963363e-05,0.9999056438397556,3.766485671070226e-06,0.022663312811521927,0.999998561964971,2.564099952523756e-05,1.944192151843555e-05,0.0006157554431889727,0.9999994765564864,4.5605642957818396e-05,7.93400623422275e-05,4.0853687647364404e-08,3.492215525971362e-06,5.652788282880509e-05,9.28342202277173e-05,0.997406309904958,0.00031289626589486055,0.00014599460136073731,0.004762294968188807,0.03251089194505385,9.131281427265181e-05,0.9121959079394154,5.0906946582548114e-05,7.885686589807711e-06,0.999763194775785,9.454516163075509e-06,0.9987382262551474,0.6899096993984446,0.8344770773425966,0.37854228030867876,0.9601209342143144,0.9976008076039038,0.9998105980660176,0.9929633281696136,0.9776398014189093,0.1891004574496528,0.9490002497111333,0.9158765816456027,0.9976254931696235,0.00014063919504568817,3.548930656268045e-05,0.9998662647751702,1.8538598175888569e-06,0.9997710313969893,0.9998945568146356,0.9999977724946978,3.286245343749069e-05,0.0003791028676617489,1.8149251834029975e-06,1.0226070011664933e-06,0.9877986508203102,0.0009322109667721056,0.01664654069086955,1.327567242942148e-05,0.23185395923188584,0.5476029000959666,0.9999973901285824,0.9999603398670939,0.6805310106514895,0.9999864732574555,0.0038980070729604335,3.5176644979534066e-05,0.9999914240661049,0.9999971913431451,0.9999868703109918,0.9999687781257137,0.36891065846567417,0.0009079718865221823,1.2663016559440998e-06,0.9915661670945193,0.999945890515231,0.9919260656118304,3.903185694385295e-06,0.9863844683332866,3.7559270825323523e-06,4.349244149762323e-06,4.07531215298755e-08,0.9999994087785828,0.99999741866109,0.9999901830276062,0.0004831456035432824,0.00013048402324198453,0.999922574038905,0.9999982307479233,8.19149706958513e-06,6.796874512056696e-07,0.9999914679136375,0.1307350544834745,0.28265024925075977,0.603363008020757,0.4869774056231284,0.11822269627367414,0.9999060611692883,0.9896787688484505,6.530085272300174e-06,0.9973012228872403,2.432607029642861e-05,0.9999872434076651,0.9999971692261264,2.728723907979819e-07,0.9501596888584196,0.9999941373016306,0.003259216219033596,0.00018727502209002202,0.9999305606581806,8.22510182516418e-06,3.0817981061157843e-06,3.0387819471405917e-05,0.07457873797788597,0.8904960363252329,4.3136944872158944e-05,0.9998909495661239,0.008575772796990656,0.9999982900481098,8.347776316435142e-05,3.685688086211636e-06,1.2917543158197847e-05,0.030396303647752868,0.041859880213786074,0.00801261641622863,9.278555003617466e-06,0.9999728859988608,0.9996704159042719,0.12050379698699304,0.001459446229919929,0.9991027888018426,0.8220596088039845,2.4857149275682496e-07,0.007316278061236576,0.005240593342546091,0.3190782985944845,8.199834430571442e-07,0.9999943434608778,0.03940118168917983,0.30171473584346437,0.04167082533659415,0.9998962534662572,0.8551020041203405,0.9758627186435048,0.0001263518679570463,7.930358215085169e-05,8.711001969595258e-05,0.00016335192691422902 -objeto,rgb,1.0,1.0,0.7129257982192876,1.0,0.9964939713068787,1.0,1.0,1.0,1.0,1.0,0.037276954117668105,0.08534404386862815,0.06608161190440182,1.0,1.0,1.0,0.9997192724608933,0.99868260265368,0.9997549416285529,0.9999435801845246,0.9999998564507175,1.0,1.0,1.0,0.9999999999999967,0.9999999329405139,1.0,0.9999999999999909,1.0,0.9999999999995042,1.0,0.8536884183070987,1.0,1.0,1.0,1.0,0.998763644939316,0.9999999999997222,0.9999999999999998,1.0,1.0,0.999999990135945,1.0,0.9999999999999785,1.0,0.1440044684419754,0.7871559408475001,0.7127923220058744,1.0,0.9999999999999989,1.0,1.0,1.0,1.0,1.0,1.0,0.9637301098225565,0.8721969184813885,0.07342583641420915,0.05291074856868264,0.04048057377633205,0.9999999901937909,1.0,0.9999998008946726,0.9999999999905007,1.0,0.9999999998586759,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999691347395,0.9999999957355599,1.0,1.0,0.7369574677760681,1.0,0.9370811266848631,0.9999999999999996,0.40076910942913707,1.0,0.999999999999998,1.0,0.9999999999997058,1.0,1.0,1.0,1.0,0.9930903719006168,0.7853547829980005,0.6149329479352517,0.4522554155562234,1.0,0.3898471542669842,0.9533064505596198,0.4375743635540742,0.2054636838082283,1.0,1.0,1.0,0.15709238692177133,1.0,1.0,1.0,0.9999951741434198,1.0,0.9999997303475531,1.0,1.0,0.05129973620678106,0.03544235251460748,0.030454848105937713,1.0,0.021211378475444277,0.10129155694425897,0.9267675697058401,0.8863813645230696,0.01692456038283156,0.9999999999999998,1.0,0.0317667267728422,0.9999999979499572,0.01640455741717193,1.0,0.9999999999885685,1.0,0.9969563939880898,1.0,1.0,1.0,1.0,0.9999388147937984,0.9998764202067114,0.9996777484234064,0.999999999999891,0.9999999999994227,1.0,1.0,1.0,1.0,0.9999964447703984,0.9983076364219278,0.9999289401350034,1.0,0.9999999997032056,1.0,1.0,0.9999999999947515,1.0,0.03717884004661175,1.0,0.05144536674502935,0.0612955906135031,0.9999999999999951,0.9999999999859572,0.9999799673252443,1.0,0.9999694627816934,1.0,0.9999999999999913,0.9999999999999998,1.0,0.9999999999999996,0.05103848551200088,0.050517016714889375,1.0,0.9999999999547002,1.0,0.9999999999999938,1.0,0.9999999998071749,1.0,1.0,1.0,1.0,0.9999999999999969,0.9999999999999929,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.05108708581620673,0.06448793636751003,0.04014582310449225,1.0,1.0,0.9949075422322898,1.0,1.0,1.0,0.027716451157420795,1.0,1.0,1.0,0.9999999999979934,0.9999999999999993,1.0,0.01905710126835237,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999999598,0.9999999999999929,0.05776956459134171,1.0,0.019928806448842016,0.05972355361461454,1.0,0.38457130338512197,0.9530672842464712,0.917442382924309,1.0,1.0,0.9999990995290485,0.9980525388885024,0.9969982899920732,1.0,0.9987586108106036,1.0,0.8847849625674186,1.0,1.0,1.0,1.0,0.8424459200691523,0.03260486529792085,0.10124570864375013,0.999999999999132,1.0,0.9999999999999485,0.9999999999999996,1.0,0.05115907928045789,0.03198327689824316 -objeto,shape,0.9999998685422598,0.999997193938679,0.9999992358601505,0.9999982521039743,0.9999981327512145,0.9999961049674803,0.9999973345113989,0.9999999972151048,0.9999982292868504,0.9999999826433971,0.9999999988589636,0.9999999997971021,0.9999999998058671,0.9999983369621382,0.9999998997720714,0.999997646170539,0.9999943800017392,0.9999909119896552,0.9999981037307222,0.9999999742703105,0.9998964896079618,0.9999806957530372,0.9999982394057494,0.999974486540757,0.9999908608124374,0.9999485472657298,0.9999997458135899,0.9999996840485422,0.999989513277443,0.9999984389239216,0.999999368259591,0.9999970476656003,0.9999951174348116,0.9999992312307017,0.9999946506522955,0.99998628052892,0.999870756163286,0.9999999144764944,0.9999999095535905,0.9999999903531313,0.9999973855712355,0.9999981778325667,0.9999990504652626,0.999998007146246,0.9999920785564824,0.9999977574981358,0.9999955513838411,0.9999999567802612,0.9999972782266509,0.9999978349127281,0.9999972043614743,0.9999982287444723,0.9999989223772785,0.9999940820935765,0.9994069387905357,0.9998884114197991,0.999999999954758,0.9999987487730501,0.9999999999152895,0.9999999334452199,0.9999988870844172,0.9999979036265302,0.9995177667107368,0.9999980232122231,0.9999820707282882,0.9999815350408996,0.9999829908866794,0.9999993964502468,0.9999998705910923,0.9999997895082179,0.9999956219315487,0.9999937122547115,0.99999930252286,0.9999998165290721,0.9999992778057738,0.9999996153968802,0.9999898024655762,0.9999960049824818,0.999996162207071,0.9998835719428526,0.9999997276080173,0.9999905417132817,0.9999999115073582,0.9999999870448661,0.999999728384881,0.9999999197917993,0.999997972277704,0.9999989031518723,0.9999999633388899,0.9999997907082737,0.9999997711009383,0.9999873531137352,0.999999996962756,0.9999964934506094,0.9999999861687012,0.9999999994846214,0.9999939495874827,0.999999646649257,0.999999388552306,0.9999997732350668,0.9995116893170939,0.9999695578033478,0.9999808474483787,0.9999768138041831,0.9999757477676274,0.9999990452308695,0.9999690805154098,0.9999754643442077,0.999997771475125,0.9999879449574565,0.9999959013807724,0.9999829963119264,0.9999463323566137,2.6786589957575336e-05,1.6821264649263276e-05,0.9314200927151178,0.9999982706389745,0.002751501105356127,1.874340391317126e-05,0.9999999880316043,0.9999993993602965,9.300231286527534e-05,0.9999953480605888,0.9999933114653522,0.0011496301552170274,0.9833168879533201,0.0056103750323100166,0.9999910911759082,0.9999959640482257,0.9999981454749647,0.9999914905210501,0.999998978185167,0.9999990819442441,0.9999998379231024,0.9999964023971655,0.9999965475217228,0.9999749034113865,0.9999269106351246,0.999999444401632,0.9999982202511128,0.9999944410055008,0.9998063534134987,0.9999988627581294,0.9999984569236463,0.9998193355466564,0.9998265109278722,0.9999999999471532,0.999993208588082,0.9999981168882955,0.999931813538312,0.999983183597647,0.9999999983112688,0.9999985116915928,0.9999997380575931,0.9999993426568121,0.9999999856156889,0.9999999997971021,0.9999997230675867,0.9999998921425327,0.9999980498256977,0.9999994569158345,0.9999594136230373,0.999807534864873,0.9999993883809207,0.9999998202474379,0.9999996292115594,0.9999995635420789,0.9999994304245443,0.9999985140888646,0.9999959761911652,0.9999999997533437,0.99999723164779,0.9999999952010905,0.9999696403581888,0.999999877165467,0.999988995108484,0.9999312131348951,0.9996688801292603,0.9999999087794859,0.9999997915244042,0.9999994066155012,0.9999959663807418,0.9999896376260968,0.9999907023868129,0.9999988471478175,0.999994610262102,0.9999992538258157,0.9999995942415051,0.9999999712155595,0.9999999999419111,0.9999997109221029,0.9999993190140889,0.999999530016747,0.9999967656887078,0.9999999843640286,0.9999968903315488,0.999995658815959,0.7212946302754022,0.9999990335701988,0.9999946538931516,0.9999974845337205,0.9999999918259778,0.9999999373434297,0.9999991877019162,0.6857261367057313,0.9999526941209802,0.9999866907390884,0.9999745292596672,0.9999999994667401,0.9999999491291801,0.9999990308338111,0.9999991503528571,0.9999994751706432,0.9999998105277811,0.9999999342828031,0.00018481277499790322,3.0396023394499593e-05,0.9999998459846646,0.9999995838289508,0.999998612765896,0.9999953932285252,0.9999876669879811,0.999993815713085,0.9999979389380722,0.9999915266122738,0.99996303137503,0.9992215840553149,0.999999978993559,0.9991487418655748,0.999999116868257,0.9999997207357185,0.9999993096808251,0.9999988715441965,0.9999954287705078,0.9999993993602965,0.9999996383110745,0.9999999025794176,0.9999997315988419,0.9999991600310866,0.9999993932940338,0.999999894635837,0.9999687318585568,0.9387125908264516,1.7107213768534162e-05 -objeto,object,0.9999998988234451,0.9999929191016488,0.999997761035044,0.9999986163640551,0.9999950770561035,0.999997938074736,0.9999989520871525,0.9999999941053561,0.9999973225445143,0.9999999697040782,0.999999978932337,0.9999999937569282,0.9999999959418284,0.9999975371922726,0.9999997592897043,0.9999980987914893,0.9999812550422844,0.9999746111402203,0.9999791583646241,0.9999998070117543,0.9998046191434401,0.9999749759008006,0.9999971456735918,0.9999678829753833,0.9999932757428155,0.9999098185007586,0.9999998930856967,0.9999997122317792,0.9999981779021234,0.9999952441260381,0.9999991853934899,0.999992697562804,0.9999938016917962,0.9999991930078826,0.9999948819156544,0.9999979026267011,0.9995360944907306,0.9999995968890989,0.9999996784190642,0.999999965340297,0.999997324631231,0.9999971152681754,0.9999993182903906,0.9999977476802652,0.9999981199556404,0.999994911406987,0.9999895338512287,0.9999998128448057,0.9999991806188958,0.9999964045162232,0.9999975890707632,0.9999982506498266,0.9999988057183379,0.9999946633120492,0.9998049644136882,0.9998834707747799,0.9999999991525532,0.9999924130673412,0.9999999978572749,0.9999994086034873,0.9999900912099909,0.9999852399677704,0.9995945500415911,0.9999932578639716,0.9999447726378378,0.9999755264738927,0.9999669264396971,0.9999992657172616,0.9999998312311827,0.9999997331224724,0.9999943341423978,0.9999882831859639,0.9999985307875815,0.9999998041833841,0.9999978018801055,0.9999984505584814,0.9999796009464595,0.9999936831957397,0.9999949306206786,0.9994637046791576,0.9999998445472356,0.9999454592623733,0.9999996811319782,0.9999998482627955,0.999999721566807,0.9999996872653037,0.9999988441970663,0.9999954915270448,0.9999999361933348,0.9999998787168005,0.99999974350195,0.9999969971295908,0.9999999680165762,0.9999730752254712,0.999999857260836,0.999999990175093,0.9999990526765005,0.9999971978371307,0.9999987665679734,0.9999979807204223,0.9979459226442386,0.9999741900253742,0.9999680820561648,0.9999676975206867,0.9999568244004414,0.9999980098896989,0.999979930398527,0.999967908096653,0.9999939347804133,0.9999839420099835,0.9999877545603854,0.9999803359974783,0.9998953652921577,3.0966244347026805e-05,9.920215095038137e-06,0.9383264534729621,0.9999985016080278,0.0018034628553605277,2.7748993671555668e-05,0.9999999674672153,0.9999979157433418,5.3444854220852994e-05,0.9999934854528916,0.9999927926084462,0.00021559822128000496,0.9426979768424398,0.0025820477343169636,0.9999924042784336,0.9999920284223395,0.9999967167113952,0.9999451269306706,0.9999985894652431,0.9999992986169403,0.9999998214956364,0.9999970914679525,0.9999581054263091,0.9999158403002129,0.999516860895083,0.9999986904080258,0.999992705627229,0.9999970517240271,0.9999027079716086,0.9999978646236399,0.999996234099123,0.9994423885486097,0.9992211538193592,0.9999999989914548,0.9999890610295864,0.9999955973382829,0.9999166892533077,0.9999680563228133,0.999999988656259,0.9999993501274531,0.9999977954004847,0.9999997689829924,0.9999998155581342,0.999999993792813,0.9999997414731883,0.9999998489889131,0.9999748973367037,0.9999994885962982,0.9999227987685306,0.9999461873155764,0.9999993149267007,0.9999998258827868,0.9999996775261278,0.9999996013209709,0.9999947186467422,0.9999935296168946,0.9999968054337544,0.9999999980097005,0.9999984416097089,0.9999999821474733,0.9999881982827594,0.9999996541646464,0.9999941973990876,0.9999883067440573,0.9996295432517089,0.9999999170985634,0.9999997804127485,0.999999454842963,0.9999992662366994,0.9999942344532874,0.9999887964777633,0.9999979084987952,0.999998496947304,0.9999991727278565,0.9999989087809827,0.999999546890976,0.999999998278309,0.9999985053816552,0.9999988273250515,0.9999997473912942,0.999977905011055,0.9999999389777474,0.9999989472161258,0.9999962925114282,0.44558723771504666,0.9999990701701115,0.9999936321593784,0.9999970680669512,0.9999999682595696,0.9999999219308396,0.9999995932852348,0.4311146247198029,0.9999482427419675,0.9999943129388371,0.9999714869177451,0.9999999986372519,0.9999999637884214,0.9999985400651128,0.9999962628498564,0.9999994640183039,0.9999981254371376,0.9999999283623968,6.724741235071706e-05,2.7262724303896836e-05,0.9999999806982608,0.9999986088338213,0.9999964535824463,0.9999895522874029,0.9999793162165473,0.999991822209973,0.999994272055807,0.9999663707643061,0.9999135256298723,0.9993193348027006,0.9999996905596191,0.999633311234511,0.99999673628275,0.9999984815723307,0.9999986494226112,0.9999974167116604,0.9999943794914841,0.9999979204497533,0.9999990281150193,0.9999996754158219,0.9999989791604454,0.9999988753034001,0.9999983513236969,0.9999995811000054,0.9998915598224298,0.9444136367016137,1.019178572108287e-05 -oscuro,rgb,1.949937839989891e-06,2.8339685970118607e-34,0.9788327154395082,0.9999999952998329,0.9999286562647949,6.623877349224363e-33,0.996408627259045,7.059936669722427e-30,1.922626125686225e-29,1.0839377752739361e-27,3.695576487992079e-05,0.026547527197669753,0.009161085406552187,9.525106796991795e-34,0.9999997498294451,0.336340817577656,0.4492088749662599,0.3294957684004403,0.28432719844081633,3.9618728936846416e-15,0.006406888746451439,0.9985838935047675,1.8112901663745153e-32,0.9999998609380427,1.0349496579668399e-32,0.999999934869582,6.354098468476276e-08,3.81348188201978e-32,0.09866517185271968,3.202165818606998e-26,7.069529424963782e-33,0.98267402550668,3.9621815760611603e-32,6.4680979724827645e-21,0.0350316721385028,0.5110156128040481,1.6695006932970495e-13,0.6309802978364207,3.5623398515248844e-30,5.080062113633189e-30,0.9999999120650211,2.2345062475763068e-23,1.4032265732456973e-32,2.181927535262645e-25,0.9948655987219444,0.039180567281967366,0.9479845515624821,0.9792252218076577,0.9531748297616656,1.1921528252579353e-20,8.193700324252781e-33,0.9999999439645129,8.89757787813735e-29,6.135008087239981e-31,0.9338400676635237,9.078432176699728e-31,1.5620414714755268e-19,2.199602023731655e-18,0.015559775153533503,0.002718340561869432,4.812554479795683e-05,0.005571501158798397,0.028033479568009362,6.817004034671951e-22,9.066909522934915e-25,0.9999748037406615,0.9999998987236791,2.899827602490938e-28,1.514059336349292e-29,1.0641746414829637e-29,2.05551504876928e-31,0.9999999909312453,0.9999999097784656,8.554098059374964e-28,6.68553806034835e-36,2.0658817856151027e-23,0.9999999657003554,0.9999957545661282,0.9996180631685758,1.436084323754761e-17,1.1086373451510937e-07,4.1679838502787964e-19,5.103196558775412e-10,3.922076780090374e-16,8.598768412848951e-30,1.15323076410785e-08,0.14129415540141546,0.9160475456905629,2.5613128178605403e-07,6.682706407191429e-08,1.1693956430253442e-29,0.0004481960460056081,8.426846245522454e-21,1.0522148927784235e-17,5.217293574652206e-17,2.462229814426465e-16,0.27684101454618815,4.3983067685557974e-16,2.370687255350557e-19,2.4156329841461946e-16,4.1941910707562386e-15,0.9998454503878075,8.404986284298529e-30,0.9999999771422824,1.3982637233520862e-14,5.7036565069445286e-33,0.9992036059066484,0.9999997261529631,0.999999838061868,1.465624089065813e-29,0.9999964042985711,0.999999977685607,0.9999999804919096,0.0037623612946483713,0.00030996769276276124,4.4169489706141296e-05,4.7811984664636976e-24,2.7833779601181335e-08,0.04638254874718064,0.9987159396693824,0.9902862579372375,1.5369969801009089e-06,4.672187918162008e-22,0.9999999780509303,0.0005410944064491602,1.394204645687118e-25,2.1200748625624755e-06,1.6955932008443383e-24,8.63827877932979e-18,4.277975583479882e-17,2.542832668813794e-16,1.3880049814590007e-19,4.6505742963588206e-33,6.628676145480071e-28,1.280936108091914e-23,0.022586853580800915,0.16027671064945076,0.15667262035614998,1.446673832619021e-19,1.269359809207441e-25,0.07499900838228252,0.0014761334947287696,2.6117520630771212e-31,0.9999999425957922,1.3486921967336219e-16,1.0314705532082336e-13,4.9918170744295896e-20,0.9998390777219283,0.999999960356079,0.9999978966382236,0.9999999783535369,1.2206347339920322e-14,0.38143032530516463,2.847515757104478e-05,0.926015595680289,0.002801364923249556,0.00811235183182166,1.6293531343179182e-33,7.517534678133001e-31,0.09500307877163221,1.1481644603641397e-35,0.1447049457863264,0.9995769467856411,7.618165280644886e-33,1.1582209835523236e-33,1.647923584008116e-34,3.736838479990286e-33,0.0034795790406034937,0.0020904664503260326,0.9999999776671855,2.19129641882027e-14,8.37988559078352e-33,1.651932633247749e-16,0.10344146441874276,1.1342147524850234e-14,0.9959638853863555,0.0001570627412736232,0.9999992432581932,1.1584181301746732e-36,1.4861625793209568e-33,5.023545835011892e-33,0.493203631409633,0.02144932137684279,2.8415851175646375e-32,5.825335613157844e-33,0.8689214779259569,0.9999999279221675,1.3526050745496838e-34,0.002207791973482319,0.00948135802540522,3.3248775650028294e-05,1.216035370512433e-16,1.976906922937998e-06,5.00746594730335e-13,1.3974506287783514e-17,0.8889816380041378,9.365478253044922e-24,0.0002704511779293259,2.264821729514951e-32,1.098516414614239e-30,0.9999999636056942,1.9962038709851566e-14,1.503591110032913e-32,2.324669256521202e-08,9.423373269557912e-08,2.9226138499518988e-30,0.9474859554573116,0.9999999779879858,0.9999998867106881,6.495804393110939e-07,1.4952352034569552e-15,0.26555090305172424,1.7646385591351936e-32,0.0055681427187668775,1.025123845724668e-34,2.3339170008881645e-05,0.007494538699177991,0.002040232699864012,0.6678466325303052,0.9967011477286266,0.9834740701147495,0.9999999429675696,2.7413246085212283e-31,3.562274017282853e-21,0.25583442227333075,0.30532223067549386,2.833632688377598e-34,0.060102686968541916,0.0016354438321629556,0.9901573268771883,0.08379159027287669,5.381851208827052e-11,0.9999999438537399,5.917341972736545e-30,0.9774316887320863,0.000607879604046356,0.04080180956671203,5.574579184760719e-25,1.7126214586842738e-18,1.487825145795207e-15,0.6400247693662057,0.04006339565827153,2.132032209921875e-06,1.9639126374979287e-06 -oscuro,shape,0.004536432339214103,0.04866450360598589,0.9999941899768703,0.9682941348008198,0.9999999101517009,0.9999062790726957,0.999497088526213,9.074404279679397e-05,0.0003495584108157442,0.0070587807528816795,1.9979471201509807e-05,1.3463967953807434e-08,1.7346611323484923e-05,0.0024177109994479667,0.014312048212457275,0.19079993305259024,0.00014477863313308082,0.013320296999168722,2.8747358782989704e-08,1.0741311231445239e-07,1.3200354621664396e-05,0.9999201917643441,0.9393400093388561,0.9994997314562084,0.9993762086374081,0.9999611455765657,0.008070127501478556,0.9989619924309511,0.3946342514426771,0.002726871069794763,0.6608335976173931,0.9999993174322142,0.0002300247517730411,0.046653858758279605,0.00039063036430171303,0.0002060638493957401,6.008759924747798e-05,0.0002004455997584317,6.144708563486917e-05,1.3984461455113769e-05,0.00919367681421072,0.007135526042231539,0.9400855562229836,0.9469059502728837,0.9041372927242121,0.9999889460912734,0.9999970432588083,0.9997716733194869,0.9982478013045256,0.18551697118613272,0.9933281941768358,0.6971851477009364,0.00021146502425213753,9.669929314250206e-06,0.9995367716247322,4.818231921961618e-07,1.1691509888541412e-07,0.0004448203484055266,2.4014148392608826e-09,0.009468684579708654,0.09099164818722043,1.8873408322952138e-05,0.00022073803201258117,0.9182271595425853,0.03585116341236342,0.9999446685470945,0.9998501375839646,0.001098955383738799,0.0003317740415218604,8.835383291685121e-05,2.0068296261516104e-05,0.02286608800009881,0.055018670467668125,0.000338781288438311,0.04583792672008794,0.023438754666810425,0.9988080773324481,0.996244229596447,0.9997008841516132,0.00017177994698461371,0.0006956642186413059,9.388369166335666e-05,0.004106723671814932,1.8530156690141093e-06,7.988075348093298e-05,0.004582487607070094,0.000787465965794092,3.696035285568405e-05,0.0008401034522875302,0.0045021868900457,0.0015834079374325177,0.001656783788610564,7.174784261393417e-07,7.285629809139341e-06,1.0921713757951781e-06,1.6498332117294495e-08,0.826263371384127,1.5474016904990765e-05,0.9978262496173306,0.0016420875774928242,0.00024195193824750512,0.9995725380211078,0.0044375336446968875,0.7374535861830158,0.998030885853456,0.0022464744394999655,0.999526526559586,0.9997216744787326,0.8838677060980482,1.4677692173448904e-06,0.9999794370076696,3.799176471789288e-05,0.040284150929866896,0.02159695737459135,0.010586779639226874,0.9995617211909342,0.707184525486415,0.21100846393682654,0.09149541256563383,0.9984173863873593,0.9998025810070643,0.004088660890144505,0.17370412875922767,0.5268895136128555,5.531396225172085e-05,0.00027992551308642896,0.07591575378927272,0.024944238010431188,0.7572214825467272,0.12064636997779082,0.00022689439790898145,0.1838551500338394,0.9992599435110249,0.004832102192064256,0.9329513092909218,7.300021607754131e-07,5.844067060892593e-07,0.0001238691470337476,0.07103130232268451,0.011500660539315786,0.00036011428528530604,7.458451383417312e-05,0.00020676921926105358,0.9204443319799006,7.571217554181247e-05,0.00047149891410821213,4.36850076486481e-08,0.9995071070508033,0.9994254481199604,0.9999909618585566,0.13202808538241004,0.0005516436374720967,0.005513887981252215,0.013439651789481723,0.9991690682295927,0.022736394470470666,1.3463967953807482e-08,0.9804263276685884,0.9927562772458004,0.00018622297622880273,0.9946223705447199,4.262292528534501e-06,8.51297555835594e-06,0.990375819172396,0.9983493224578729,0.9997545207825373,0.9962370360085551,0.0007217972968651081,0.052180371865030994,0.9992189752335846,4.733570530816102e-05,0.9998604282469953,0.001114569561293464,0.005356620749385431,0.0001501377890583175,0.999152408603185,0.005282757175602699,0.1906383625709761,0.9985055414351515,0.9935550004861077,0.9946338660300288,0.012338585845124128,0.0002940798379304555,0.37173216754094296,0.011535023828324293,0.997398814197758,0.999609168023101,0.09071307501495404,0.11189774036798812,5.332836153053977e-07,0.48882084272976506,0.003814806824845746,9.608372735989172e-06,3.084963849368494e-05,2.9656425092690312e-05,0.9967750155892973,0.884535914793411,0.01768499119438167,0.9474728863863416,0.001092923324121155,0.9979020307325547,0.0002508714231011926,0.9936677628034286,8.297185280014657e-06,0.16269988267055788,0.039518292279963244,0.9996953811031962,0.06122736489689376,0.000970248766938161,0.00015241024361705737,0.22850821249208492,0.0002727599722688894,0.998553540830642,0.0018483819663791298,0.8921960203061303,0.0013641195628799673,0.01595791552387141,0.9999759818274659,0.9999978300180746,0.9999979325283074,0.9999999230753506,0.962266331287842,0.00012967543718347567,0.13819632048030067,1.5455986911801067e-07,0.00012155319542913268,0.00678528280079101,3.695177641290077e-09,0.04926090183206767,0.9999990193301982,5.1219783562761894e-05,0.005501813452437861,0.01106728944440666,3.3284217650189437e-06,0.9998025810070643,0.9994243664635335,0.9999508156974057,0.0019810017084031253,0.040406998991240346,1.698233496470229e-05,0.0025338599299984973,0.00031473836074359044,0.9999760754616238,0.0009050064396292255 -oscuro,object,0.9880093169801626,9.090918226353507e-10,0.9999787902254266,0.008521416201139326,0.9999982643828816,0.21886388748917,0.9999999960618022,1.7889744536906368e-05,1.0987523018766061e-05,0.00013877186726753604,3.558090586703086e-05,3.7722749115352914e-06,3.6695165861672196e-05,1.280065877116913e-10,1.4359186804223875e-05,0.9999979995191868,0.0001844219864043879,0.0016400759854171788,1.3779519279654503e-05,8.950537835469617e-08,3.117365859545267e-05,0.9999808919609323,0.003272718807488008,0.9999992899872397,0.027446293547467273,0.9998283556581704,0.9995448131759072,0.008987091054388965,0.999999937838617,2.0163177547492141e-07,0.0006143803218489933,0.9999866367690132,2.47568269806274e-05,0.029049593867092407,3.1841244830133234e-05,0.9999997189345853,7.184188477840156e-05,0.07531664373647233,3.6286016803143766e-08,1.4196285249802255e-07,1.6556090950732286e-05,2.6270450110846266e-08,0.006347016582355086,3.6656764392261083e-06,0.999999794464033,0.9997647204796959,0.9999915040730518,0.9999186264653377,0.9999999954197927,0.0022038691558203456,0.2375241562111041,0.07708521532782292,7.952766471727462e-05,4.901746723411882e-07,0.9999727149089059,0.00010579356349006714,2.6673850599374244e-08,2.6903680382949087e-07,1.1640481614805295e-06,0.0007214994669913026,0.0014718777224698011,7.45266032221883e-05,0.999995477509785,6.117219225040206e-08,1.1269203397686268e-07,0.9999971238546479,0.9998614343562243,9.426099177010783e-05,2.545006203474554e-05,8.53147596899824e-06,2.605149829028454e-07,2.7196099131704986e-05,1.1950429672382042e-05,0.0003334946093270001,2.473449244186491e-09,8.349342882619674e-09,0.9997611458067688,0.999988025240542,0.9999760915926836,9.477256545396383e-07,0.995888461563465,4.254255166672726e-07,0.008267277639649406,9.241906117136808e-08,5.730791443373513e-05,0.005999694256638292,0.9999954681962469,0.07541533876757574,0.9621945684647913,0.9979201238694938,5.046279440094309e-05,0.9999902834945389,2.4995488357024496e-08,1.0868041317087542e-07,6.623037228300851e-08,7.813210524875228e-08,0.9999999059535527,1.2803611573739672e-07,0.0001725882107243576,4.0836584257421497e-07,8.599410361728666e-07,0.9999224311143482,1.8950987395288152e-06,7.562334269610686e-05,0.0006981889410492565,0.00020858762595319806,0.9999250618303351,0.99999897518669,0.9839119822496857,6.914976828760378e-07,0.9995896946826882,2.7519958441952324e-07,3.945887138538083e-05,7.665353431299141e-05,0.0009491157691828374,0.32837568379660115,0.1323794638194456,5.8504390021170024e-05,0.00033497831950238564,0.9666841643911547,0.9999319071479095,2.622267567668348e-05,0.003393765828793887,0.00015279975608214444,2.7742874336050456e-05,3.1769639672224566e-05,0.0001820057919393874,0.046143767773799846,0.004258253720697964,0.022477115602350786,0.00015890732487477467,0.058251686849835116,0.04380373045996252,0.00025093073458862464,0.21663790374908742,1.8852686241177197e-05,0.0007575694213320136,0.00011846757282391633,0.0018673914050085973,5.2760001270375035e-08,8.623725207492232e-05,0.9999884876411578,1.2332522954558844e-07,7.444269162512175e-05,1.928916339353046e-05,0.00032910241111507726,9.929620578833992e-08,0.9999067135932369,0.9997185055833523,0.9999983356961756,1.1799803250662233e-05,9.824380685150168e-05,0.9999993793594817,0.0006235174184014777,0.9999452123982443,0.0010343753342456352,3.349801395637497e-06,0.0014672045378893292,0.000460657578362125,3.7141876304895336e-05,0.00011319254328202182,3.099637243438196e-05,0.9999999179225566,9.920618065811692e-05,0.0013254119258040622,0.013960775864389654,0.028061977894972952,0.0001089265459127592,0.009419416784045691,0.6585545063622125,1.3122744688100841e-05,0.4638683002804327,7.359775022276791e-05,0.9999982423113964,1.862523578931691e-05,0.9999999646844037,0.999979557650303,3.629124124648401e-05,0.00028728973354246964,0.000504090779065255,0.0007520176837895752,0.9999994278275984,9.75358340964632e-05,0.008987024974894686,0.0013096197964699585,0.999999985239064,0.5875224143908899,2.2998237145192e-08,0.0032367867102418148,7.58895019709244e-06,0.2098735151683815,0.008173711544997735,0.954633933743611,3.3233458525949304e-06,5.760173313855091e-05,0.9999999903762026,0.10386058103426779,6.528778722762205e-05,0.0673589301294989,4.8171715397483275e-08,0.26462273592808766,6.828264225472685e-05,0.0009842367100073872,0.9973129341198586,0.0003614809021239552,1.8103740654864306e-07,0.9999853284236668,2.8124600773749446e-07,3.499077903833362e-06,0.9912679305546914,0.1291541694397788,0.06119003822566683,0.008070881154435171,0.00031496727424177017,0.00028038723984020233,0.00023660279145988066,9.234460060887471e-05,0.9999999999970295,0.9999629974218277,0.9999901734373187,0.9999972903397963,8.657631115417143e-05,3.989956960765409e-07,7.510938125917074e-09,1.3870672647499838e-05,7.065669549966534e-05,4.052238640345137e-10,4.689638631624314e-06,0.9999906404787806,0.9999944778805382,8.338789999685614e-08,0.019141030322144693,4.207672257597428e-06,3.8486783945555256e-07,0.9999193161479857,0.9162262258609639,0.9998001412945026,8.511996965075161e-08,0.006628628028114787,9.741155780338864e-05,0.17403115520153092,7.529071345385876e-06,0.6989314043034396,0.0002382215904885846 -papa,rgb,0.012193511613099558,1.6102664795771503e-10,0.9999998787302906,2.2365353274576342e-09,0.999999708570921,0.0001071419929655463,0.6915007665423923,0.0002544448459470084,0.0007433290622502324,0.0037635140120706023,0.999999727571167,0.999999795783634,0.9999998134523932,1.2359000560577818e-10,4.675712045363821e-12,1.6920073340546878e-06,0.9999999936430242,0.9999999926590339,0.9999999928909933,0.999955856759437,0.9999999819853232,0.9999999845318781,0.0001642046965035892,0.9999999906603741,0.00011460852478136879,0.9999999988458443,0.00014531718916415516,0.0002508817382544878,5.826788619335061e-06,5.438349777722204e-07,0.00011161189076266607,0.9999996420613062,0.0002775867155418838,0.5820617045668618,9.011977450803681e-11,3.748973229684789e-06,0.9999874421097928,0.9999999844625322,0.0047446189798917675,0.004208799120776167,1.8807860672559487e-08,0.00013375888299850986,0.00017149880591943662,1.5572226957999474e-07,0.014422766769807598,0.999999267223216,0.9999995077386147,0.9999998821236317,0.009372123170306966,0.9853634021576161,0.00011834462024857016,1.4991736097034842e-08,0.0011307783145726423,0.0011531334452170954,0.0003844017211539008,0.0017607089135170673,0.9165109916015767,0.9648408850141362,0.9999997902122315,0.9999998116921106,0.9999997530805645,0.9999999783522255,1.0693166147713065e-07,0.0008831542850643257,3.0408846260433595e-06,0.9999999657236548,0.9999999989355095,0.0015588366887327517,0.0003811344251928787,0.0005080325609273694,0.0006611642342638004,1.918921846244023e-08,5.091221896400026e-08,0.002034803783610631,7.574952931604225e-10,0.00024741441245159593,0.9999999989842221,0.999999982780411,0.999999986239219,0.9818060820693468,0.0004784025564377209,0.9530186584423336,0.9999938990748558,0.9947088312861972,0.000328986389132745,0.9999977846042459,3.891121972122186e-06,0.9999999891971662,0.18450025608868725,0.00044323772462698035,0.00028913207953828947,4.512202607967628e-09,0.7805487217080317,0.9730658985871647,0.988143930101716,0.9933561772065435,2.1602794722659355e-05,0.9949268061928801,0.9384309396334097,0.9944290791298828,0.9981022022475766,0.9710812124972189,0.005403870521738274,3.773234398418419e-09,0.9984579912341318,0.00010088549621360437,0.07815379699291561,0.999999991377092,0.9999999981218439,0.006887332010709967,0.9999999986700692,1.0692914517120861e-08,2.747730594145404e-10,0.9999995250880539,0.999999737039399,0.999999675517071,0.1245240861500154,0.9999980644302199,0.9999998157036463,0.9999999803301111,0.9999996816325473,0.9999990228670581,0.9432784982798579,8.546128100296164e-08,0.9999993676190986,0.42609462501230455,0.9999990096185766,0.10399617677444757,0.9993353158894961,0.9969881279692165,0.9998362762305468,0.895563959104254,8.715579520324962e-05,0.0018954720788732346,0.1761889560623886,0.9999999883295819,0.9999999920547084,0.9999999918706993,0.9959399840596319,6.61957552572305e-07,2.3899637625148827e-10,2.0600085258112224e-07,0.0007317687122202119,3.1938116760964047e-07,0.9998485745974581,0.9999848625178368,0.9948627310048541,0.9999999855684898,0.9999999990014152,0.9999999781667201,1.221057805134869e-07,0.9999401979560171,7.459250061965522e-06,0.9999997181625041,0.0003464518595597322,0.9999997978188773,0.9999997639973637,2.1522074930313993e-05,0.0003159421363289893,0.9999999911756902,1.5031853509895965e-06,0.9999999919337851,4.932906079761566e-05,7.26081348894811e-05,3.344198783543654e-05,1.4560436112184056e-05,7.556741083706833e-05,0.9999997692085241,0.9999998075702337,5.1295525828808784e-09,0.9999582295473137,0.00012001054889240013,0.9995523207916777,4.25541661181853e-07,0.9999533245113951,0.6622586963794068,2.383409497551821e-09,4.9048769869364654e-11,5.219901303303253e-07,2.3117359189721768e-05,5.365792462535297e-05,1.1736472392743083e-06,1.0688769299119911e-10,0.00021432395150460315,0.00010224309874325777,0.0012721945663939937,2.8674932852476912e-05,3.5163580523294793e-10,0.9999998091090596,0.9999997838539715,0.9999997399770705,0.9862122996993143,0.007454254997694514,0.9999908183361781,0.9974163963215746,0.005760290950246035,0.20917555291888382,0.9999995259243863,0.0002065069486356131,0.0014900998116964801,1.3532928767161445e-07,0.999944715552494,0.00018818095471859444,0.00016483793723581249,0.9999984748650176,0.0027978294798673997,0.0004751911199147448,3.0259674603300795e-08,1.0923790277671206e-11,0.001202364554227954,0.998797048767302,0.9999999742708678,0.00014833273218992982,0.9999997927175858,1.2945883203626833e-05,0.9999993679198903,0.9999996642060929,1.1269479046161895e-08,0.9999997388109125,0.9999996072656149,0.9999993344460154,2.3930833818625243e-07,0.0007524067881841455,0.0023278247272826747,0.9999999920720056,0.9999999921411918,1.6276240319595186e-10,0.9999999897936661,9.865295571354437e-09,0.9999996840750637,5.514008611830463e-12,0.9999221196601872,8.709063001996137e-08,0.004313547945548338,0.999999603420762,0.999999378861354,0.9999997037758137,9.323585095684089e-07,0.9913026188324189,0.9998224349919271,0.999999969343393,4.3014664279209075e-10,0.999999637267078,0.999999508151448 -papa,shape,0.9999497333871497,4.1335440635816154e-05,2.492087481569821e-07,0.0003778359770775617,3.291590068199034e-08,2.2217380445783688e-09,4.109902271126668e-09,0.9999937712248563,0.9923399417013126,0.999542938087113,0.0015181823884308642,0.02498645994409893,0.04746401123116595,0.03963261164315431,1.4914796599502912e-07,5.261350007283407e-07,9.518754862020724e-07,5.258660391210303e-06,0.0031925484623459696,0.9512913495447182,0.0005379172872920493,3.419540593640891e-07,9.980027326805922e-08,8.572744893721278e-08,4.684235222270189e-07,1.0352807913299775e-07,0.9981520664641863,1.4306632293123011e-05,0.000250410250817466,2.0638724355299783e-05,0.0002678692737019807,1.480032045616616e-09,1.9865800134898212e-08,0.44715722017367104,2.2075212080403323e-09,3.1094850758036114e-07,0.9772334610678819,0.9999992950051709,0.9986098408061654,0.00016301844467817516,5.650711939429675e-05,2.4500481417040065e-05,4.612202045809631e-08,1.0791211048651906e-08,1.5654536173518833e-08,1.4544826773386575e-08,1.437539412732392e-08,3.1574923177752694e-05,6.077726066123304e-06,0.0796698072569867,1.305261621579187e-08,0.00010901331447953244,0.9997405454995082,0.00018408524558835392,0.00035261557311423367,2.435929558585681e-07,0.3210396609090901,6.817860255480078e-05,0.9889131844826706,0.05324454356794645,0.06864635055371561,2.1518568098118138e-06,6.442132003052267e-08,9.06520003387836e-05,7.426449193329155e-05,1.2022696506849266e-07,2.031009308282549e-07,0.9991402714538449,0.9999243718274662,0.9984337208475449,1.8020671537795807e-05,0.021659115893202744,0.00012919929943906556,0.999801069305599,4.2692739091233965e-05,0.0003506283943752918,4.284388605213908e-08,3.473483847634288e-06,3.7081918285602173e-06,4.943110126928495e-05,0.9999309939585234,0.0358323566122206,0.998130950701123,0.0014090068097709326,0.9993028714566262,0.9981232424553351,5.84706497960229e-05,0.9999544307117629,0.9999999809797163,0.9999451085700729,0.9997171768514936,0.3627944066580748,0.11607539997574759,0.11512325431403736,0.009299498693242715,0.007755281826551407,3.758741095527018e-08,0.42927967626029073,0.00016905007908225422,4.424513187845995e-05,7.130217740630512e-05,2.949712128035575e-10,5.519231906659204e-09,1.009843787849791e-09,4.6584807729728345e-08,1.2967681204068071e-05,1.3281437492834644e-05,2.2901043671291982e-07,0.00014337384196446969,1.3172460243304042e-06,9.440373873539228e-08,2.510780159705659e-07,0.0003865697547471837,2.067972745779179e-09,2.429551613367205e-09,1.0136723658307783e-11,0.0035606838582233247,1.6376037909408922e-09,2.559723185739541e-08,4.3135821472300996e-05,9.371896103572031e-06,8.062244807477035e-10,0.41987216648985093,9.170554693508434e-07,9.09162953730196e-09,8.464891017413828e-10,7.09051681602866e-09,0.062072613899967925,0.3758620510062114,0.5388680595636562,0.9999999747824464,0.6673575319362455,8.909952599569598e-06,0.9996307746322682,0.005582351407523329,5.74466731155899e-07,1.6368899753893142e-05,1.4677366853285592e-05,0.9400991278678209,8.804913657049994e-05,0.003428401764858271,1.2528960354217708e-05,0.00017552980784182203,5.811548120615753e-06,1.5183562840478573e-07,6.586761796774387e-08,0.0874028052054376,2.1027074357540575e-05,8.551149316519034e-08,7.827178142799147e-08,5.935728653522086e-07,0.9999362158185493,2.178815428195771e-05,0.007767067929445124,0.004086219534617362,0.001328454684608456,0.024986459944098777,1.640473151095509e-05,0.00019107014696202618,0.0005359295014603781,0.00013233208821271145,0.0257027902151888,2.867175214605483e-08,8.54124950408424e-06,2.1459838251744197e-06,4.965108970176987e-07,6.469068363016706e-07,0.003802142318185824,0.07072814583198132,4.009309376092273e-07,0.9998503744590524,3.959423266132079e-08,0.9999405167180959,9.230260404965442e-06,0.9999000993350081,3.436672746816233e-09,0.1074765074145265,6.1348129579431725e-06,1.750310975252366e-06,2.6578215973768067e-05,5.561492022149326e-06,8.891795213963216e-10,0.005178781010661079,2.588636906556549e-07,4.923627169599205e-07,1.588610319884309e-06,3.2761718554520087e-06,1.3406304156145718e-05,7.67275447561021e-05,0.12183925032666136,7.596627126052818e-07,0.998946054460321,0.9998708656150124,4.8559148054825765e-06,0.9999882048317745,1.0910022457304871e-08,0.0009121192963303626,1.5801614754981152e-09,2.137827001832583e-07,0.00034408213979341296,2.7778856970267677e-07,0.9999909081386725,1.999941828422362e-05,0.9999438266756687,2.7709168880829987e-10,2.408395880075197e-05,4.959887775710917e-06,1.2213687266108534e-06,0.8661734178316288,0.9999925997062907,0.2651249874002656,0.9999910168028803,4.665475713100392e-06,0.9775460438825833,0.001610998354061903,7.384946731082013e-11,9.014114563246305e-09,1.0845904786189936e-09,1.0144689623329672e-09,7.233199657386043e-08,1.2736403270200028e-08,4.7365167847518104e-07,6.191645465510107e-06,0.0002448552652363223,0.06409380049945516,8.819576185322584e-05,0.01822252217503494,0.9624852075174641,9.567505677237295e-08,8.736019113778404e-14,0.0008443042731834569,0.9789768556981076,0.00016734967437451173,0.00013030794544554284,9.371896103572097e-06,5.091509397770581e-07,0.0021782504341016796,0.00018282684677884054,0.9998677246417289,0.9997733284124988,0.9999836389824844,1.7600656037592785e-05,5.464854165319021e-12,6.674095892221426e-09 -papa,object,0.9999806802562633,2.8842136630329313e-06,5.938394111144132e-06,0.0001867682181714693,9.580531589773218e-07,1.3048909077459213e-08,1.3759389466629418e-06,0.9999732790786638,0.974899732325188,0.9989738142757073,0.008968533514419827,0.06189589995367683,0.23026098220636906,0.0007933602609591303,2.4517519270169222e-08,1.7035845562098067e-05,0.00028477456138922326,0.0024662465567319228,0.08216017378979755,0.9825123877907908,0.017483572525154333,3.528249456699469e-05,2.0716819069678587e-07,1.8522949313281074e-05,8.535837004648431e-07,9.716735551964243e-06,0.9998277976557198,2.6912974922559335e-05,0.00037419132006135335,7.586218878190394e-07,0.00032028307991573916,7.981384867502608e-08,2.0402586072459367e-07,0.8075730673210095,2.321045848906114e-10,9.276073468165018e-05,0.9804816060590501,0.9999992399849175,0.9937071307147841,0.00021486504385533477,1.4187137671979628e-05,2.7670102055579033e-05,2.726463199821217e-07,3.989008148476831e-09,3.3084659153783754e-06,5.079354067899063e-07,4.0312233051093134e-07,0.0001632313427076096,0.000704782696551573,0.2596013626193167,5.967513346051897e-08,2.3703596348566506e-05,0.9992070322140484,0.0002318005291953577,0.02280762220162635,2.241096770768768e-06,0.1421568080745988,0.00025696551043985873,0.981966618519145,0.19005402141958155,0.2511913222506107,0.00012657974916556913,2.726152350897124e-06,0.000119101476778171,7.287759329146388e-06,1.434046107261818e-05,4.665484873260267e-06,0.9971337603550612,0.9997177882351174,0.9958097131008582,2.327436123759527e-05,0.0004535196646745408,5.027627270968557e-05,0.9998046714773562,5.056619905323114e-06,0.0002710341533490182,5.4663673532957665e-06,0.0004473049727786397,0.0003066732654845567,1.697903846558076e-05,0.999977120426003,0.014118178813183844,0.9992739809162964,0.0018953220750355664,0.9986411811124852,0.9991193400410929,0.0002771245178800486,0.99997743809609,0.9999999956677652,0.999975563466323,0.9991419551125547,0.7906267342852987,0.05153249254030466,0.049084118860990456,0.008470123063155878,0.011732194499741493,3.957334475880037e-06,0.25346750451198874,0.0007088812327328993,0.00011689556289004249,0.00010663030020589763,9.906054347284535e-07,1.1136841483925146e-07,2.0479434412524146e-09,4.811994254654068e-07,8.003376100396436e-06,0.001326977410835688,4.580983395030152e-05,0.005982727785444327,5.381405831623518e-06,6.47410655784173e-06,8.20189036889522e-08,6.028720052084003e-06,7.651239917397208e-08,3.192346161879836e-08,9.442990883344272e-10,0.04511289449105371,9.53385789520229e-08,1.5880160323464623e-06,0.0004538476634780253,8.406408035060447e-05,1.372390016683721e-08,0.5804067665950661,2.7333303829890425e-07,9.058655098401155e-08,1.9009681776375948e-07,1.1887043921309887e-07,0.33060320848567665,0.6687069340520112,0.8490683839938982,0.9999999160062563,0.9186610440370341,3.8760545185262917e-05,0.9994842079036707,0.05618534651026327,6.995945426020208e-05,0.0002609006732188459,0.0001155142306500367,0.9635588865024851,3.2266821486335383e-06,0.00010932337547769872,7.006365583681323e-05,0.0001425517378997423,1.0457095310141234e-06,2.711899086547226e-05,7.3246890755882515e-06,0.10642793184228497,0.0005456632225840661,1.6960744026330546e-05,1.6668568783921367e-05,1.6029695399756117e-07,0.9999407269210523,9.551295431850432e-05,0.0341348248159499,0.07391918688604432,0.01438642963017106,0.06141014741143209,2.261690636067409e-05,0.00023165990594540723,0.01916915599383611,0.00010653637905150851,0.29087784637029546,3.0315420166700146e-06,1.7349845192533632e-05,6.547775784172682e-06,1.4305794175139797e-06,1.6006822572623391e-06,0.034604442501616234,0.17715702254549387,1.0316755787301482e-07,0.9998704957335152,9.7983653265202e-08,0.9999439017266795,5.125361024711306e-05,0.9999163829330969,6.895157937777429e-07,0.42821802480886406,3.224535165310904e-07,2.899158384016071e-06,5.18320050360297e-05,1.1480640860661729e-05,2.093731935972002e-07,0.0001345596678662713,2.7250932622887766e-07,2.092804313298348e-07,0.00013325207201391132,1.711162782366052e-06,2.6481749888363114e-06,0.0006023825668997647,0.26704041649430105,2.1149134929353376e-05,0.9990835324559753,0.9999729086697181,7.66930454954091e-05,0.9999870788725452,2.2421287146207886e-06,0.011239523369067566,7.508905044758711e-08,9.472339132555137e-07,0.00038979193794796085,7.569372470804541e-08,0.9999871080564702,4.8359138098538846e-05,0.999979808905811,1.4927307265786972e-08,2.9810713500067867e-05,0.0005419259706645825,1.2236600337701374e-07,0.05346090598732883,0.9999985213676724,0.7904242051395651,0.9999923057524321,9.267517516845056e-06,0.9858054876735145,0.0017804633253282803,3.365009920813974e-09,8.505788456500015e-08,5.554846068435448e-08,8.388631375509868e-08,1.9307638991259697e-06,4.234956446940964e-07,3.83394585733257e-07,9.379062819147507e-06,0.00018940289041126832,0.3366617901065673,0.0035297464492496577,0.0002611416799568248,0.9866449102303102,2.1953435636326613e-06,2.0887436159492014e-11,9.489391008244952e-06,0.9957734280137647,5.668425693786283e-05,0.0001637077357454678,8.101193640081438e-05,9.174276242593577e-06,0.00974903267966217,1.014583319670971e-05,0.9998754945566956,0.9997866568598296,0.9999857015401554,9.078035021129357e-07,8.97402991446407e-11,3.9894291842217965e-08 -parece,rgb,0.9277120820227694,0.20216580235263162,0.42484826261976566,0.027112842816792545,0.35797635572829045,0.7839669637357372,0.908598314378235,0.8663215802559924,0.858426162873018,0.8659624026312539,0.533671111652934,0.4677529606768789,0.4835296762179887,0.1873095018413163,0.019455653678064268,0.9253130569086823,0.6741173353878834,0.661112785209704,0.6791454333325586,0.7159886983826125,0.7472632511020217,0.8036283700678346,0.7925121544561816,0.7908953376807772,0.6212248567431737,0.6150876504392572,0.9332936403075797,0.6292099921863935,0.9264134316887576,0.18761899062140058,0.7836753225606673,0.38267230783607326,0.7870719342957478,0.8825295462415153,0.027073603615524452,0.9244404359844638,0.6978331603209162,0.789003867489832,0.7273194778600771,0.7803486567198087,0.031190427849019407,0.2334576257179249,0.7804091995801795,0.1577296593098248,0.9148416857922251,0.4107843506678789,0.3790619319861062,0.4258582705094759,0.9175408190666595,0.8153654845393538,0.7853174261472179,0.03069285003334025,0.8645050118698322,0.7918488071564392,0.9200913096848721,0.7766264066882748,0.4558218049467527,0.4495278599556203,0.4721792517879567,0.4970288465556421,0.5354604100427446,0.7614853791411221,0.9283473897907789,0.24209486950117295,0.1911794435725762,0.819729864509053,0.677635928705458,0.8686647964131446,0.8664650669274029,0.8594168992104947,0.7894964985927283,0.030851952143751266,0.033115990050298916,0.8724462487370204,0.2762019838583172,0.24669090236006067,0.6372715834099827,0.8067293261093732,0.8020293164592975,0.44695548220164283,0.9320794406996218,0.4651755729166419,0.8371852886805145,0.4462463660472538,0.8642248385217857,0.8323918979093948,0.9261655551643917,0.7832422272040995,0.9239974192634742,0.9323090953318769,0.8682967582103005,0.9319746561416634,0.4593393071045605,0.4355189848758606,0.44429933964394597,0.44403232362084916,0.9248548285237256,0.446215914960762,0.46267054964121945,0.4517038748729752,0.4525224192048297,0.9003576134084069,0.7815333346722537,0.0281577721283778,0.4429985194531299,0.782302671735006,0.9110974904210115,0.7898947880408049,0.5657546622500021,0.7851958796151292,0.646196471960044,0.02993538922447777,0.02417857004744334,0.4504192392001831,0.5066282941383223,0.5213766786283655,0.8724837404976932,0.5341483206761789,0.46657046321582146,0.4853006134391062,0.38299634223971707,0.5099438779070667,0.8154797190599751,0.03389231224126123,0.4582802295039392,0.6707180370587437,0.504763154160163,0.8688350155801005,0.7934373112505667,0.8568804306589469,0.6634230431552784,0.8766487061002566,0.7844539691642,0.8716894016114649,0.8730777991066236,0.7034015040910481,0.6888376321301712,0.6803181267434422,0.8038542369418141,0.18114364433067473,0.02843809239544335,0.930747102808458,0.7913000475833493,0.03692678489239893,0.7281385106837364,0.693483749841126,0.6562288738063411,0.8036176677602388,0.6629367025759094,0.8105068921554038,0.03462900578040532,0.806867263360061,0.9247653043861911,0.5355459961250942,0.9202688244201221,0.493107454656082,0.47369359936277416,0.567822331795553,0.5328172024015881,0.7061953332539934,0.5731129726774876,0.7009617512017448,0.9150610338484798,0.5962292005643975,0.6173632976185082,0.6429224012208996,0.6345871407711486,0.4841197522961055,0.4990657656566676,0.028666449421172944,0.7992446613929172,0.7852271110620284,0.8248813042154803,0.926936513160866,0.7926210268993945,0.9089224925014072,0.9327898451309027,0.022330656501390482,0.5923048490416222,0.5764319166795291,0.5901063704241148,0.9247430633844408,0.027525014418698524,0.7916363541572429,0.7821974563191704,0.9201245012657885,0.049032687296973514,0.22373975842698612,0.4988190939847695,0.47612366527126543,0.5379124402606971,0.8810802777383374,0.9282911651164398,0.6859884313317567,0.8462281610020301,0.918843671289665,0.8684872698756382,0.47917256756856885,0.7860987123990931,0.7952352368615173,0.03494769141458398,0.8107414451892346,0.6523609910102248,0.9335067383319632,0.5278115956997298,0.7887678137839097,0.9197251771625456,0.03184358105480151,0.020318467411457354,0.9306109076418205,0.862258601881376,0.7995604717532416,0.6185505041067422,0.4840061541627422,0.6626409128489975,0.49531146109751834,0.4584949751269906,0.9307350173881761,0.418423890292613,0.3691003340935708,0.3614425591485757,0.03627857855974089,0.7912143489109981,0.24789370178751197,0.6588544809093065,0.6525233473373558,0.2023540578822524,0.6723098519960621,0.9309206244901331,0.3833522991866141,0.022681575344042002,0.8681421687070514,0.034111852997164176,0.7846460388066872,0.3808506992478014,0.45781420196523503,0.4468768840455868,0.1764896303216313,0.8542450300453059,0.8205604311931167,0.8095286446636373,0.029716291267705516,0.5613659766901884,0.5440911835059804 -parece,shape,0.003642586543027452,0.00012313579611350663,0.995428506802166,0.9997874863447163,0.7340558760367313,0.9993054669830678,0.9999912573587759,0.000672780963844347,6.082803244520301e-05,0.05220819360578451,5.267714244722885e-06,1.4969419412191615e-06,4.622459013763495e-06,1.698792818078836e-05,3.1044400515691375e-05,0.08650011908698764,8.996029785551912e-06,1.240225295811475e-05,1.3912165086875743e-07,1.1738976022041166e-07,6.878946583988869e-08,0.9999496224457378,0.6851424022062693,0.999902682324812,0.999898561676487,0.9999554732129832,0.9979956510441998,0.9999482432242572,0.789971600593975,0.758045425937959,0.6595721399695994,0.917004798275274,8.326626149736117e-05,0.9983089227035061,0.0001605997090012594,0.00022734463123618912,0.6592650107832521,0.6480554519261607,3.241732436713188e-06,1.0074465928193024e-05,0.0007585645011864544,0.007263776459437712,0.830669021385979,0.8963181988441371,0.8920009524769424,0.9958627844859712,0.8710475460479359,0.476340377422034,0.9999738927139658,0.9982609276643878,0.9998402988590287,0.999917396986909,0.8358128048079643,8.584182895579529e-05,0.006402744237569349,6.237713901497433e-05,5.160024272344465e-06,4.1562562878551304e-06,4.926863816183233e-07,0.00045124660295711553,0.0007501580239550198,5.499446316831781e-07,0.00022305453606151,0.0009215899002615519,0.3638142514164368,0.9999956345265981,0.9997878901807385,0.14155347187928582,0.13520494259385005,0.0002342828814158475,5.008664469185457e-06,0.0016580595574771436,0.00013223558264579746,0.8905114165036552,0.00030436308394761696,0.00012156619350177276,0.9999692778301144,0.9999815157236184,0.9999167784334727,0.03910572315635844,0.5788461206672312,4.19499037592488e-05,0.25881916817798073,1.6391640530248882e-06,0.44858248803516193,0.13320455690481395,0.5703336781285658,0.8664900862823315,0.05203799452879693,0.14095110114299553,0.40680885496750063,0.000580773133065793,4.485195643104907e-06,8.621508180691913e-06,3.4304449254877305e-06,2.056523923783097e-06,0.8885384180010651,5.467088099284218e-06,0.07468795736699976,6.760770405893342e-06,0.001114855263334,0.00023320348075191476,2.1960111480965416e-05,7.790736860312942e-05,0.07641163732720889,0.6536524162902229,0.00036543115586823416,0.9999692820962468,0.999936863358885,2.7415473332893738e-05,0.999942172744619,3.258163973301257e-06,0.0025504460087535587,0.00021459587400767538,0.2785044919134579,0.10320920433879739,0.9999709664348129,4.03780605515317e-05,2.7947385909021097e-05,0.20146245717607755,0.23257570330941688,6.124904585728364e-05,0.9976584098673857,0.00025379999883270055,0.0006153952820312386,0.0007776635949003533,0.0007010699225584836,0.999906329448267,0.9983993509453916,0.995385608080717,0.6495522158744066,0.9991518573547798,0.9960262710672964,0.9323474677594272,0.9998550059865455,2.592458774549287e-07,8.456818002234101e-06,0.001182557838036591,0.9978132206074746,0.3691627175780475,0.0002982082040827178,0.0024051020342646472,1.0983108345061355e-05,0.05329002415684917,1.4693026945241562e-06,0.997212841608291,1.19451260336955e-06,0.9998622708982219,0.9999970908391953,0.9999322427236935,0.00023288896617583497,7.561387680934115e-05,0.7328084504860035,0.00022855334565378524,0.013003629801737188,0.0005280813984131627,1.4969419412191721e-06,0.9999325408314694,0.9997685495493736,8.532211655676562e-06,0.9997213465669786,2.7565593547406925e-07,0.0010340903567657596,0.999896042262105,0.9999516849745443,0.9999895663503099,0.9999673580906718,0.00012529675336052717,0.9531153811906407,0.9999963164233939,1.6295207820800681e-06,0.9989963442055059,0.0029823963109716317,0.46838826457376237,0.0027525457437771986,0.9991971376767635,0.00043093774113724554,0.0011528669623288117,0.9998318947673717,0.9999904615269241,0.9999502274563519,0.00048612784754048434,0.0002499971000959286,0.9759985902690081,0.6988209005385093,0.9999368807181236,0.9999361189008988,0.022332038943141196,0.016131264592246904,3.0065992396156405e-06,0.999863764279336,0.5411099021254246,0.5010849879977649,2.9593597488604958e-05,0.0005939872314167965,0.999662759659065,0.9997820110031408,0.0004929166298818478,0.9998280391935042,2.564308722718406e-07,0.9996771444202384,0.01147183404431702,0.9999001804046718,0.9777600559836342,0.023225337057488374,1.0920663074423533e-05,0.01407519799533328,1.8644319850929875e-06,5.139309692908825e-06,0.8069356262832252,0.999832947710075,0.5712287103006417,0.9999882923278225,4.2700621839241206e-05,0.9998956357856215,0.0010526871654359365,0.0003258382987435919,0.8479497785549421,0.988819093767907,0.8968247664941615,0.7785923508031476,0.0003944657271293601,1.61463812937869e-05,0.0005942356102012258,7.79429169565906e-08,6.931946860457606e-08,0.00029695521714537563,4.484703230717307e-08,0.00046237523305032524,0.8974612927819415,2.6591107079569675e-05,0.5739931491375208,9.154784886483168e-05,8.116145485953921e-05,0.2325757033094175,0.6482304307019571,0.951156772292869,0.7453781417141458,0.6449100258663831,0.10513078719177238,0.7097804967724068,0.00030450799336395113,0.32669888831688243,0.2790653102867714 -parece,object,0.7519725842950321,3.9449068504458855e-05,0.9996585341947511,0.4633217814184255,0.9921141849489086,0.9999896516233654,0.9999999889618963,0.024585124495295582,0.006435146295360785,0.5212788305869414,5.448060823092579e-06,1.605464018735122e-07,2.562971350270664e-06,4.305137502743228e-06,4.785735861258183e-08,0.9966860082328038,0.0005146755097604712,0.0004973919965111546,6.429839802366114e-06,8.433609437741685e-06,0.00012913123282656477,0.9999943247059673,0.9984785459565848,0.9999990491375277,0.9999916088326989,0.999958620764963,0.9999987936631232,0.9999859904584941,0.9999901939532134,0.14285390841122125,0.9934424602946967,0.9978937164487556,0.062436499659585094,0.9999505808131226,2.4346988302676913e-05,0.9950084762815481,0.9318469649024547,0.9093785459346945,0.0016525621538507813,0.00014599989194346604,7.851333409832378e-07,0.0006403400751182761,0.9991166659330512,0.424367278192467,0.9999917303972043,0.9995076391416069,0.9983976289770385,0.9892414035445536,0.999999987030989,0.9995603331998579,0.9999980395040458,0.9279466319300302,0.990329097539753,0.003791381789935409,0.9646550799777677,0.46259970696686853,1.7193462331953418e-06,1.251803184684786e-05,1.2794662569477715e-07,0.0006042662458621566,0.00263446561908386,5.599737094043279e-05,0.9987240578215074,7.848973092221394e-05,0.04405406047957268,0.9999994499742871,0.9998623414028457,0.8215130423441253,0.8625520698159489,0.01624039371985523,2.087720381054048e-05,1.1884364961539438e-06,1.2516676853340733e-07,0.9979408082135073,0.0001227858455172319,1.5862015850332374e-05,0.9999774018665272,0.9999992550125695,0.9999961188898443,0.0150860172443006,0.9995631450958897,0.0002530052088216662,0.8553912817809507,2.98247261263609e-06,0.980040610082179,0.5336927595923597,0.9998880304008391,0.9764874120380439,0.9663740136794018,0.997254011779542,0.9457097108452738,0.9633853592386289,7.829105251863014e-06,1.7710810472962046e-05,6.58216354462666e-06,8.002526656603365e-07,0.9999957614583105,7.861195171835351e-06,0.07069209364415552,1.856536010930299e-05,0.0009004734256224957,0.8102209234293979,0.0013742295875917687,3.9233956703607746e-07,0.057255283387770035,0.9927127068160638,0.644464251623243,0.9999994830983855,0.999947343260938,0.0009738906997370729,0.9999025973261485,1.9187747143973345e-08,1.6277375832245556e-06,0.0083828506821052,0.4384255383681903,0.7153167866232846,0.9999988820729172,0.0025382706380112233,0.0005499269526044169,0.37136616599563865,0.9596192942281366,0.00305864802790474,0.9997492305629755,1.1948640781146773e-05,0.010278100285195662,0.06284796589470126,0.05065981031362875,0.999997549285684,0.9991915309232027,0.9996070993898114,0.9671946468829205,0.9999662009999613,0.999891255618589,0.9959810676903578,0.9999968690204111,0.0001343649707803925,1.9758741520671485e-05,0.00535233561929834,0.9993497647042857,0.015127250237210248,0.00010345128646289473,0.9990413463572245,0.000218726962262673,1.7335501206072145e-05,0.00027137370555321583,0.9990105708904297,3.3139109668454934e-06,0.9999826485407094,0.999996541122011,0.9999967628627954,2.35141023494908e-06,0.0008994569001961909,0.9999592068278669,0.0008064316740357596,0.9791151935361523,0.0005388490698291734,1.7124989426391282e-07,0.999974818070467,0.9998024463410036,0.00048347550004809085,0.9998175873173242,9.207623020255781e-05,0.9988241398224971,0.9998972083992493,0.9999727701643076,0.9999975168483063,0.9999965649118687,8.86299763158078e-05,0.9129178042571563,0.9852298048084767,2.5791249019530783e-05,0.9999926400529701,0.012354475201142604,0.9998971925863621,0.01419197494135521,0.9999990923457927,0.9423621053472708,1.5680766239500498e-06,0.9998897298506138,0.9999870461852102,0.999981439603351,0.996691304438084,0.00016047877888714966,0.9999169670478805,0.9961226974149977,0.9999998859663434,0.9155282248598944,0.0036907995748311708,0.011124303145342188,4.851723964062773e-07,0.9993105294424652,0.9868709146617549,0.9986358154585165,0.005605887861326664,0.015702159371865754,0.9999998859194047,0.999992016346781,0.008216934062929634,0.99999689221849,4.109873150066414e-05,0.6834901404873719,0.03962431638420854,0.9998714029636965,0.9999905659061085,0.2866419981578544,0.0023634706609251413,0.9932210484217041,6.534899670328348e-09,5.367859173551097e-09,0.999616774166991,0.999981815792978,0.8072544173162413,0.9999953979698787,6.99615427180979e-05,0.9999480446905602,0.018697846527845178,0.01142892442134642,0.9999995998071031,0.9995264518752229,0.9979145965994162,0.9956525550970319,9.738438749307194e-07,7.378256586727825e-05,1.7685380682492176e-05,7.055954947616328e-06,6.55686545048294e-05,0.00014833034264764863,2.270973074675668e-06,0.9175276746380481,0.9966020265174036,7.27496497824758e-07,0.9887476234684404,7.204000527923377e-08,0.00018777461743882105,0.9589500404416422,0.8995063036645315,0.9968746097283191,0.08824488900138212,0.9810709712944058,0.5768893030527661,0.8772118071421373,0.00013220879736919826,0.8823741597014894,0.6050330987004124 -patata,rgb,0.14674066991247128,7.943650776296329e-16,0.5653778414079218,1.2020276965294e-23,0.06911099635368292,0.00039335152453159574,0.526187479786563,0.011460580190490814,0.01986236350580841,0.08531531895057522,0.9577390277148194,0.7975556897509147,0.8695432784839884,3.315575770986568e-16,7.919446716642377e-27,1.1018977777106855e-05,0.9998802991179778,0.9998192155201908,0.9998898514133051,0.9905570998500854,0.9999703780600125,0.9999881150916047,0.0007128713101175147,0.9999745847821402,5.2104984734489175e-06,0.9995758945881594,0.005638561481130481,1.172435801318633e-05,4.405063285262117e-05,2.0009176450657739e-13,0.0004026610511260253,0.1500622888528663,0.0009123582591803414,0.9346891959836455,4.10617446700992e-24,2.0430659191736074e-05,0.9935111721690865,0.9999884229640225,0.0015016874451852277,0.006216578904558069,2.539565870866649e-22,9.187770472756748e-11,0.0005118026957990088,1.654085571274542e-14,0.015106549476049025,0.24320385990531207,0.11720338058380322,0.5770579855333995,0.01478193489636592,0.9661191642099708,0.0004429963203513726,1.8009508890581193e-22,0.0336387180887119,0.0032115453625953284,0.000914169707342206,0.002827412471700885,0.00045938768024827585,0.0007522183505915414,0.8161597759579231,0.9080671047922199,0.9619361618379251,0.999977151334126,1.3413222032317894e-06,5.242852953409078e-10,8.588800931101017e-13,0.9999799463090904,0.9999157072966993,0.04922091347804122,0.0157302559103159,0.015349081933150457,0.0019369651535621122,1.9965379760459823e-22,9.124681587124879e-22,0.06786202493324414,4.4539670219212507e-14,2.4564398248685445e-10,0.999763335089521,0.9999804289132559,0.999987388123716,0.0011404041113876925,0.014709912682555098,0.0009237151982078411,0.9999169041463861,0.0027223403308503425,0.012984296064373433,0.9999492019049343,2.849522225504699e-05,0.9999883442123249,0.7024481717695916,0.014595023802100737,0.013561265457122015,1.3279712269333407e-07,0.0002215490291684533,0.0006231811579320962,0.0014466107613405846,0.002176726030025932,0.00011985562744640683,0.002802696067064445,0.0007016389066718926,0.003050735554418564,0.00667848441559915,0.8649590413073855,0.007816180097563564,2.7933552857582443e-23,0.005928204785517717,0.0003568916588343131,0.05003201406749763,0.9999770292407233,0.9981069254827867,0.01051791331231291,0.9998355193145512,1.0499999080014983e-22,9.922403374769564e-25,0.5905343451221969,0.9149279150691173,0.9352561441903012,0.6520897937730769,0.8711150012612708,0.8008073878890428,0.9555040841363712,0.15878015296390383,0.8421023734417991,0.9105071974032161,1.4983830094012327e-21,0.6080867003913734,0.01562856999409458,0.8205031936177215,0.5865181438715202,0.9928838172770628,0.9969944051322968,0.9097151067062802,0.9781550433036854,0.00033929373720642433,0.06286257770721984,0.7222892411691704,0.9999264207345803,0.9999102355241408,0.9998864276234871,0.9809550011770727,1.687032389432633e-13,1.2653835251321721e-23,3.937415343712025e-06,0.002214934019128408,9.174419836860012e-21,0.9839830382225697,0.9917122322167407,0.40802808956216485,0.9999865390398154,0.999876034362218,0.9999772380562929,2.365872068206164e-21,0.9991204516011556,4.194548315030107e-05,0.9590150810066336,0.0008488290735852342,0.894238305370998,0.8131020532571928,3.7609609120565557e-07,1.2753909870742072e-06,0.9999400581673451,5.314908865759202e-08,0.9999341251754347,5.883847196591281e-05,1.959380727618758e-06,1.8069841668909893e-06,1.7844198108421825e-06,5.261001398445566e-06,0.8574449725978255,0.9119283003881846,4.117835481635318e-23,0.9991404833977123,0.0004466763209428923,0.9979148824154843,3.890501271538905e-06,0.99887374414218,0.5026211822659877,8.561763210113577e-08,1.724350585683889e-25,3.692994940015143e-08,4.916635387824597e-07,1.3298941592329216e-06,7.0519964864514785e-06,5.5301644698603926e-24,0.0008555367443607169,0.000359530366644834,0.00301730611657793,3.2736916798701484e-18,3.579004375177578e-15,0.9117186854334969,0.8309994070083433,0.963285947862852,0.9956677197536338,0.10137042761557122,0.9927976199452729,0.9962599708592679,0.011150530768702593,0.723079378332275,0.7739105963795149,0.0007024421545886434,0.004348458021809076,2.872537630537764e-21,0.9992566222427474,1.6822827719731137e-05,0.007051615586331453,0.8687279374593183,0.00582792028591782,0.00106320078509005,3.960659936878391e-22,2.0945170018324972e-26,0.02619724963307369,0.9986480218000743,0.999988585750537,5.9595748186054486e-06,0.8643371201258719,2.6811336471854577e-06,0.8215321446142636,0.6922493231162578,2.477746478694103e-07,0.4180566277634346,0.0924589311151647,0.056245967752140136,6.317800335987034e-21,0.0022576717206264176,1.3445566385118116e-09,0.9998009145578843,0.9997648071953509,8.075780315915216e-16,0.9998433304754817,2.2639359530756698e-07,0.16101803724175842,1.0096147100765009e-25,0.9998058218093542,1.7169686849855886e-21,0.007202765063375074,0.13593918977023617,0.6072456260210329,0.6274766067483069,1.7213650737651224e-13,0.9930609869920665,0.9987561983993518,0.9999890713379203,2.9880285373739637e-23,0.9761499971286764,0.954762309662877 -patata,shape,0.999920446694584,4.874201807889576e-05,5.052006693459284e-08,0.00040717136573848313,5.206404168466578e-09,6.239451681418309e-09,2.8684999732003604e-09,0.9999892356935605,0.9927967151829377,0.9995274416728552,8.994599453268163e-05,5.780392842434567e-05,0.002625798348128948,0.05112528126262494,2.205614752478103e-07,3.301443291490059e-07,4.1120816141449784e-07,8.857171455676857e-07,0.0006772373279814177,0.9744515404101367,0.00033462943622785784,1.9917808257873885e-07,3.062337504246655e-08,4.4938642124662955e-08,2.284831002527712e-07,8.780567502181478e-08,0.9972970257845958,1.7132127825684646e-05,0.00022325484079832196,2.303644764995091e-05,0.00019080166267006004,2.818813578270848e-10,3.558689300856313e-08,0.5641059207471345,2.841571826874708e-09,2.529370233655956e-07,0.9918714432950919,0.9999988548420089,0.999558377641491,0.00010679757101522877,9.593010170480647e-05,4.99835148374492e-05,1.9241513322228971e-07,4.7345673278678066e-08,8.3732828803851e-08,8.191277316464449e-09,3.486642582260189e-09,8.251188891737505e-06,3.1598522398420842e-06,0.10537300047537305,8.98352512351842e-09,7.973249811657548e-05,0.9997135512606081,0.0013285746250445286,0.0011866079492107817,4.759425084119088e-07,0.00018631641293503662,5.485904679009736e-05,0.7025559524973202,0.03547786021008779,0.04646416477197456,6.286610977737538e-06,1.7992274379817545e-08,0.00014231454072790879,3.152977425245605e-05,1.1094503777075969e-07,3.181733881677526e-07,0.9995036013380474,0.9999374896597651,0.9996160204802322,2.338163285750385e-05,0.019376641559056294,9.86514687747975e-05,0.9998076948794582,3.676872266553464e-05,0.00032004525585062614,4.3583321843178405e-08,3.402510530197895e-06,2.5627691580992667e-06,0.0001801993487916368,0.9998852031188025,0.000252208766124963,0.9985533690917173,0.0011568705426585914,0.9995607073838026,0.9985481540211233,3.3628245922326804e-05,0.9999444669148717,0.9999999421536692,0.999957820480374,0.9997668042497319,0.22183569612122275,6.237908652691566e-05,0.0014341743945078143,6.8766616532164824e-06,0.00011672239967411363,2.0048931339171178e-07,0.008390622613481004,6.792369004860424e-05,5.7827095390552954e-05,0.0002565894048466011,4.1159507660724376e-10,7.468211313426464e-09,1.1161736171990052e-09,2.7516078830578814e-08,1.7944068582613157e-05,5.86637015981964e-05,2.231508779543428e-07,0.00019421203915150325,3.0518129740714553e-06,8.80844798364721e-08,3.9920765301995927e-07,0.0005544336809572712,3.0597558862143176e-09,4.971829759264849e-09,2.0305751639439098e-11,0.0036178830375262444,1.0620713448977135e-09,2.409755831656865e-07,1.6782549222045945e-05,9.069651726653447e-07,1.3609201194692673e-09,0.34226985716674685,5.302170656901153e-06,1.193605523298896e-08,3.7241195351959396e-10,2.6587170434189585e-09,0.0537675315117557,0.3017954029117698,0.5087405617767699,0.9999994315139148,0.6867850380894778,2.7473741605333292e-06,0.9996518364583246,0.00488874143295442,2.1804386048229017e-07,1.38369220110991e-05,6.348735142607892e-05,0.9129586019062447,7.833872944989988e-05,0.00329128427500254,6.439805776910231e-06,0.00029912466797778496,1.085700066279157e-05,5.387794790410403e-07,7.039694058719386e-08,0.002778342327063045,2.696048096641115e-05,1.5843946252847033e-07,4.3688926641840974e-08,2.5795981659032563e-06,0.9998997542831899,2.0921577316432763e-05,0.004827308825746794,0.010645940388624603,0.0005732963563795055,5.780392842434536e-05,1.6775723909494054e-05,0.00026573256756832504,0.0021560490270288732,0.00015429217222738767,0.0029875239234479958,2.0173305550746284e-08,1.4687204025907146e-05,3.3547958466915723e-06,6.310498768597247e-07,4.959345363382851e-07,0.0035502498450343837,0.015411332116080586,2.764513677995163e-07,0.9997309704580398,5.552106621423766e-08,0.9999409706954551,4.435776988239022e-06,0.999948583727774,2.1557757714815836e-09,0.09410906294789788,6.4688741682199265e-06,4.052162040322095e-06,3.251314703105977e-05,8.568489752171108e-06,1.9793891054524216e-09,0.004108142135763732,1.641799225331753e-07,6.332750325008883e-07,8.226286194249444e-07,1.9529568595911706e-06,6.657598926404443e-06,3.096427202786982e-05,0.00020003099097596708,2.8886419639965765e-07,0.9989163133722291,0.9998283155336664,3.700791578835605e-06,0.9999898064039754,6.698826914987254e-09,0.0009900052666048948,6.790009569608566e-10,1.7227297433249207e-07,0.02294745220089533,1.2792848900744791e-07,0.9999901637701778,2.1479756606451914e-05,0.9999095422951817,2.633047800878298e-10,0.00035813174327505677,1.5499234895528293e-05,8.583300120003814e-06,0.853229811181811,0.9999861205028543,0.3534437391496236,0.9999852307468285,2.4066169982420464e-06,0.8963703923432581,0.0017420273917480285,2.6829737027031814e-10,1.4387749149916188e-08,2.2541023531231234e-10,2.88590361708552e-10,1.0566860837849967e-08,1.8891632833478595e-09,1.8549834815039227e-06,8.44331659923054e-06,0.00029821478028580335,0.00123480213143624,4.1554463168538295e-05,0.03724612132616469,0.38920763658913904,7.169677703769798e-08,1.501809250187249e-14,0.0008625266021857112,0.9880398783178593,0.00018246968040408685,0.00016692310008756435,9.069651726653447e-07,1.6113925958741042e-07,0.000595051411825387,0.0001358684572265475,0.9998221556003034,0.9997478570315813,0.9999735525208623,2.6776138157603982e-06,9.433623952694683e-12,1.7236053472189548e-08 -patata,object,0.9999860034384761,2.9305537868087244e-06,3.459090223058102e-07,0.0001371179859304763,3.1809966612162835e-08,3.947251522288981e-08,1.4201795130101774e-06,0.999970062370176,0.9867616163082075,0.9992466326845911,0.0004984916043460314,0.00014756120338664717,0.014682031764403447,0.0012383923142519218,2.0251595606641508e-08,2.0077798684587817e-05,9.360793978200326e-05,0.00036416376734501774,0.01107869690965601,0.9887429974042189,0.007377294904167158,2.4892710083820622e-05,8.385503981362034e-08,5.849876013624973e-06,5.570411507476935e-07,7.127909749286263e-06,0.9998977455242574,3.500687389704785e-05,0.00044806700444798464,2.3620518147930605e-07,0.00024108870107355208,4.550097665563654e-09,1.5606342546918883e-07,0.9123552297793097,7.712259805113191e-11,0.00025437750849646316,0.9904789507609776,0.9999984131984441,0.9980601674301184,0.0002255666846278675,1.4202154110579262e-05,4.922264441237652e-05,8.58191168008397e-07,4.7859832265548454e-09,1.9401302006291444e-05,6.010885325609641e-08,1.9902025112732793e-08,7.97261317906131e-06,0.000760481867859369,0.3903458706481144,3.2050761653474345e-08,5.323636315770369e-06,0.9994400443010121,0.0029263006972855654,0.23445377114929558,2.8834619628694928e-06,0.00015140740779574308,0.00010751496807909216,0.4986290990553391,0.08257551720422246,0.12279602803318017,0.00027331000048798614,1.9756668569876383e-06,0.00018278816598142083,1.6616312394057536e-06,1.199280866456955e-05,4.095865830572271e-06,0.9989205187033103,0.9998521914355786,0.9992748974435597,3.708804551395138e-05,0.0002052879861761109,2.8358722777122087e-05,0.999857165393968,3.544931160642599e-06,0.00022811621753312486,3.7921609261237424e-06,0.0003262611705769997,0.00025614529161704035,1.7147682212523524e-05,0.9999817114599002,0.00013500507771416708,0.9994408845285138,0.0006806760721034972,0.9992598522920556,0.9993192024553952,0.0002570117460183233,0.999966063646601,0.9999999884699396,0.9999896999477137,0.999600376695779,0.8778273918118482,5.146784454097891e-05,0.0006224845773301347,1.1343207400439782e-05,0.00016599610219650092,2.6581895417422485e-05,0.0047416436713127565,0.00033899523283053776,5.300947572162502e-05,0.00011563892972644119,3.134015474360746e-06,1.5446699727418143e-07,9.631604242203266e-10,3.013120859487688e-07,7.80717423448639e-06,0.015903222133258392,2.600492632712995e-05,0.0026799272060866824,2.0535949841884984e-05,4.766471720961053e-06,5.4392715505443923e-08,4.871199935360426e-06,6.291367136918161e-08,2.364496773603992e-08,2.3512501444933323e-09,0.07499851938005635,4.9998264457648586e-08,8.512010974794925e-06,6.24949535712657e-05,1.5617532266662702e-06,1.4860587296128681e-08,0.5714337379681352,1.0252793598860726e-06,5.371067080675531e-08,5.910737336285551e-08,2.9020076204297692e-08,0.338064618364714,0.6182521999506375,0.8698709388273637,0.9999972081939879,0.9447659434928829,2.4930248416031713e-05,0.9997139463762568,0.09209855717977573,1.4679338346476283e-05,8.954469343012374e-05,0.0002494507932683638,0.9561914514841106,1.1963408755365986e-06,4.571485038799237e-05,0.00012713546362430784,0.00031625295240633576,9.691277804040565e-07,6.550622069062981e-05,3.483255927268613e-06,0.0033419263217975073,0.0006500558302321392,2.0044877125559226e-05,1.2833539876987073e-05,3.402250406058592e-07,0.999914323486089,9.388649253770442e-05,0.01432745124519457,0.3567780884116194,0.0033470294237449207,0.0001475424010357409,1.5748237215956566e-05,0.0003241491986759895,0.054290585697002965,0.00018389522388390103,0.0335695360610708,2.4191735608409914e-06,3.7917732916928865e-05,1.1904174089782215e-05,2.1963741479908945e-06,1.0996803089989476e-06,0.014210844964509984,0.018649763238460234,2.085947413605591e-08,0.9997687747284356,1.3985071258844063e-07,0.9999424669682425,4.871796422819197e-05,0.999948416091355,9.131990078269922e-07,0.7490000012004202,1.6533495443477874e-07,9.508271017408176e-06,6.516613599741604e-05,1.7191456930288984e-05,1.0053730814634355e-06,4.845482084591989e-05,1.3915483758733592e-07,1.4399274227419018e-07,0.00016400421712159385,4.47153732712695e-07,7.830205233050952e-07,0.00011458377382134433,0.0007252367822506141,3.8076235001343452e-06,0.9994158435130616,0.9999838431371623,3.631506636226321e-05,0.9999885340326666,3.5142033414443665e-06,0.022760549422251843,2.132207159135111e-08,6.606089366133231e-07,0.044032843865831166,1.7275396965324888e-08,0.9999834920700117,7.153618265822894e-05,0.9999857535031867,9.039913106986932e-09,0.0010641316501631961,0.00513004667374434,7.104972041381637e-07,0.02698492240201417,0.9999986422612213,0.8791798429930372,0.9999830778910898,5.656940120548965e-06,0.9096104443697419,0.0019034005117177786,6.680114919076489e-09,8.971109231802347e-08,3.058851632086767e-08,8.160561571549411e-09,6.787135823541138e-08,1.3552337816963428e-08,1.1818050476793387e-06,1.5585537635563664e-05,0.0002547515720432831,0.007068721348530199,0.0012462071095464611,0.0005137132681506074,0.5550656448711575,5.593769028456635e-06,1.126880736144233e-12,3.4496411184088563e-06,0.9981461644272652,4.6111865967813834e-05,0.0002298861476918974,1.504854115391913e-06,1.1029951105952904e-06,0.0006174839987144104,2.1481375816691404e-06,0.999849690461753,0.9997351615544043,0.9999724250246638,4.9987218340430515e-08,8.870526426442894e-11,4.678742293798001e-08 -pepino,rgb,1.2998421563465437e-20,0.9993960386506809,0.8175355639677545,9.155328679308593e-07,0.6520260240233047,0.0009086242636583328,9.00901746698483e-21,1.364693882788208e-07,6.259149178544513e-07,2.93994787936774e-07,0.943448219301965,0.9381465622699642,0.9360210279628814,0.9994553289100709,1.5622304010261266e-07,7.302381063216843e-28,0.015652817373280347,0.03168094360568546,0.015286647353205009,0.3986734184261255,0.0010397297197726888,1.0310689677987175e-07,0.0005250073609892518,4.278788910260657e-09,0.822571324406986,0.00045304196379138253,1.2992160841996786e-22,0.8106512192775119,5.950796953290695e-27,0.9998675677192667,0.0009414858988409655,0.8807759074928974,0.0009566209914578266,2.807970997724291e-08,0.0015947249403348086,1.5265703844103503e-27,0.5461686041348102,5.730051042701426e-06,0.09932002018421626,0.003461615249803927,1.0970413713048449e-05,0.9999069041261583,0.0013827794375576618,0.9998392849005983,1.032682997431909e-23,0.97060057579864,0.9131853294992043,0.8144768020092141,1.29081930485007e-23,0.000757766070803194,0.0008439018899036616,7.958003857714228e-06,2.7564626381954705e-07,0.0009884367795089115,2.1941302787053894e-25,0.003617628516295891,0.9994399433768888,0.9994699899364606,0.9408885917025204,0.9368697148815426,0.9383038732227439,0.00038618813458373775,6.667324568892731e-29,0.9999110788232296,0.9998858297510148,1.6254847693019338e-09,3.120553790493996e-05,1.5140398666172824e-07,1.4962047026238415e-07,4.85985081684077e-07,0.001019987248304321,4.0422683576993855e-06,1.8911978292222597e-05,8.404944751567793e-08,0.9987767039451224,0.9999062436779349,0.00013588288293373368,3.890438977375654e-09,6.848397657049666e-08,0.9994634515034376,5.146615745922795e-22,0.9993417833124832,8.009969464827675e-06,0.9993935178714994,2.0541245782580818e-07,8.305744367300524e-06,3.0888306784476878e-27,5.085462955081721e-06,2.2274508125245338e-18,5.819870871339673e-22,1.0241953411127459e-07,6.355978651907284e-30,0.9994115501217473,0.9995504895488964,0.9994603210859531,0.9994259304462743,1.987087176641219e-26,0.9993903874521344,0.9993725582677914,0.9993563645760976,0.9992410884326262,1.3930507287969963e-19,0.003376556984435684,2.506708153363106e-06,0.9992894794881144,0.0010137044073349896,5.67631396699064e-23,7.0874988932411645e-09,0.003689181606989428,0.002710897958362595,0.0006695521166732527,4.3993750862961424e-06,5.329345143875191e-07,0.9693921454651523,0.9511504961644004,0.9548451840868973,1.8598132274340628e-07,0.9827366992569976,0.9311027497537839,0.40494505612099374,0.8619025221004966,0.98031855688141,0.0007059910295754378,1.3372341392826918e-05,0.9768235184576023,0.8224028490627924,0.9812232748661629,3.4931958040719745e-07,0.005414100674469854,3.029341437148105e-06,0.8882547465089242,9.954678272055861e-08,0.0008193136295642451,9.443818254335283e-08,1.750291195455308e-07,0.01020381608153283,0.011883404107312978,0.01792325398666823,0.002332934991421788,0.9998694650201045,0.0019967248776805255,4.428476990533223e-28,0.0009078302651755995,4.0685367630890846e-05,0.29662440321742284,0.6049067502522532,0.9270235120093419,3.745487371942401e-08,4.347003965531887e-05,1.5675413298905978e-09,1.605019220329658e-05,0.0010398841257210365,4.3614953317210946e-27,0.9438703343202958,2.001396208871572e-25,0.9408850707527624,0.9473727435803185,0.9458913658576393,0.9897822117178912,0.005790423042149544,0.8693867106902563,0.006671453693879037,2.841181920388638e-27,0.9073655590785139,0.7896976959902892,0.5247038687631531,0.714476480802404,0.9473603243571943,0.9378948676947535,2.9399781324721507e-06,0.002024208668898635,0.0008536390629143116,0.0002135196952687806,2.227160194979576e-28,0.0038440838985854555,7.785941082155552e-21,4.317994863522965e-30,1.015023519271649e-06,0.7122881852406044,0.931494955606578,0.916999914010236,3.6882912842244913e-28,0.0020998985422429105,0.0006124902490705223,0.0010262600317707397,1.366815650957729e-24,0.00041956668430136423,0.9993410451261786,0.937481379923298,0.9432796698049026,0.939224600056286,2.7157528335221566e-08,6.42592295234807e-21,0.6498612702178341,1.6128145827672893e-05,9.430447066907148e-24,4.1430454421946117e-07,0.9713507827152652,0.0009438212856715389,0.0008027159799360669,2.1301740452191408e-05,0.0006789955561529676,0.6166070436727634,2.4215205785824237e-22,0.9819052856216156,0.0016175098318977929,2.647489794507929e-25,7.688137070766033e-06,1.8078420833882578e-07,8.3023929451144525e-22,9.459528241111132e-07,3.3577680179114585e-06,0.8457624418450259,0.9419869836489684,0.3196745857268767,0.9759752252877294,0.95970720416472,1.1095301683635622e-29,0.9197040769682905,0.8423561366910718,0.9017121750124112,3.4929878528099685e-05,0.0009215519998353588,0.999911158102641,0.038309631830734506,0.046099518651734055,0.999396228944409,0.03416301724622712,1.0229952526916278e-29,0.8618548606493456,0.0002457071548824105,7.606378779044816e-08,2.0425236656529614e-05,0.0025085989572286643,0.8904950894168041,0.9764480433157342,0.9508826444235231,0.9998714872867791,5.317856738916221e-06,0.0002991794332045119,6.079944428709019e-07,0.0034661264115529774,0.9360632640288532,0.9576931182560336 -pepino,shape,0.007103027597921696,0.0063208486465601045,1.3869157160230682e-05,6.030467123750535e-05,0.09824803241962193,4.865277123613886e-05,0.00021409505319114165,0.23054700073029494,0.04330337254985173,0.005920068600764159,0.9962209743883514,0.9999999821301951,0.9997425223045796,0.0006611530470597192,0.0007946509080426162,0.0004593194698861742,0.0001970165875685645,0.0005818882420362513,0.9999586143606768,0.4685199156970633,0.005563822922014848,3.3267772000698323e-06,0.0001449670930003038,7.047671494499508e-06,2.6826441305668076e-07,3.390911263389167e-07,0.0194790000045214,4.70264107724721e-05,0.006949134437203698,0.007671593356659375,1.2176498154457002e-05,0.010661096625979877,0.00010173276302513161,0.0005244179764521214,5.701846537726636e-05,9.13132263499159e-05,4.608389173390937e-06,0.039949458116918496,2.3765917888828087e-07,0.08067174765405359,0.009158001345764577,0.005397945676999589,0.001978594649724414,0.00042860801865653603,0.0003224095577649932,0.031257221468591063,0.008743469763900613,0.02977472582748908,2.031939091927255e-05,2.6622124279060943e-05,0.0002725322372698957,0.0009168800951541169,0.051013689414138544,0.00042767105064391275,1.2359828131320714e-06,3.5532813937258214e-06,0.9999771745283924,0.9999889172522767,0.9999996033891064,0.0005019901596314008,2.8383246356742907e-05,0.07699452507299341,2.8653120428536433e-07,0.0001406081860893588,3.7589351420853506e-05,1.8890092185417294e-07,2.526892198086895e-06,0.0002733813742301373,0.004532192838812576,0.016351515628521208,0.004794426074306906,6.692434933878968e-05,0.12431980771141235,0.011011656886125976,0.006146280419901986,0.017944258259613603,1.2946198583675224e-05,5.82410739857156e-06,5.615629988535718e-07,0.9996076308461549,0.00015889593709375135,0.9998514521593242,0.000128191669716946,0.9999341925780844,0.20068780718847007,8.706634140666384e-06,0.0073284940986957535,0.03460054069023826,0.314565654934667,2.2597423665994354e-05,0.004962997547064348,8.425831481865525e-05,0.999995388372106,0.9999959855954392,0.9999922207907205,0.9999978531370404,0.0001704211898376348,0.9999574496448643,0.9997430515738887,0.999652859674672,0.9997976635639866,2.4392594726750916e-06,3.7052386272404244e-05,9.138229323591381e-05,0.9996117416685804,0.0003647658735407533,8.44993529586999e-06,1.809572481237173e-06,0.00638146401754319,1.8872557166401383e-05,1.5363241521484097e-08,5.595344322764576e-05,6.083962421051689e-06,0.00047592037039043936,0.01621323403614706,2.8895105679524712e-05,7.096620862520694e-05,0.0033344820428148187,6.415235603714047e-08,0.9902856138263513,0.9869270813999778,1.4770609151676458e-07,0.00031663869507192883,0.00012611424982189915,8.282146156788398e-07,0.0824912460438679,6.816484799151696e-05,0.0021760274451192167,0.00014256515277789292,3.384374510385528e-05,0.01988827889853423,0.00025174742211106526,9.152532213651069e-05,0.0556352572406467,8.889237940932654e-05,1.5916867209031627e-06,0.9960897051101709,7.846526113834771e-05,0.00046269843481825686,0.0007126168200869835,4.949312319698865e-05,5.410999916621085e-09,0.03239595818247492,0.005763203531379414,0.9935388630876116,0.8569622534109067,0.9999934955730377,5.972168521988583e-07,2.2607612086955924e-07,3.7756834802740925e-08,3.292040454294672e-05,0.20413964397642595,0.026245138072102752,6.71406522032109e-05,8.346386129982103e-05,0.03414845095553234,0.9999999821301951,0.0002869966841871425,8.76962039169556e-05,9.494892669866897e-05,1.5826634217032868e-07,0.6941411669822872,6.828215718871744e-05,7.348597825287181e-06,9.785611307194247e-06,2.078652836726949e-06,5.2026198626810384e-06,0.8574744118212747,0.10981908272021372,0.0006320258710648141,0.9998386329476038,0.00022232979530023502,0.20445140691337607,0.000971503223782107,0.6537534235731461,1.6771609014089979e-06,0.00016499305785587523,1.0011694471868453e-05,3.04129899682267e-05,2.8472893277952666e-05,1.8554033367352974e-05,0.00011615104168160685,6.227922932989338e-05,0.0006537772806189108,0.0003879054702582692,1.9147798952014507e-05,4.752997986382947e-05,7.95025455195968e-05,0.00015251734893243377,0.9999999676780754,0.018534574596148826,0.0015978124810889038,0.3072392612208619,1.5637368436624519e-06,0.020554808688036653,4.093692066232107e-05,0.00023256891104537572,0.0006690842680517605,5.491037135885974e-05,0.0008234675054286021,2.0203633846414174e-05,0.04429087006930627,4.876582832376973e-06,0.052962174497006353,0.00026901178755318894,3.0910329236597787e-09,0.0002041601379934392,1.0618340261638627e-06,0.0006516047881644696,0.2477782959583965,5.353050318149723e-05,0.010886726452101148,7.877179296534074e-07,0.04207083819771638,0.0011445536623727896,6.299182238805778e-07,3.373404993792011e-08,0.0004008544027321308,0.2563240972716476,0.012940732742057494,0.22589216841970236,1.7503086747115847e-07,0.0064363844240866485,0.016432722782976632,0.9901085543669667,0.007496282786245511,1.730988849876453e-05,0.9999812555865624,0.00026153548551669203,0.011785612464311094,2.6704102711570037e-07,0.0005584552311263884,0.05521035356676487,0.14050429729414624,0.986927081399978,0.8302225665345749,0.016383156556960782,0.023440050413543252,0.014087250630123319,0.27789960578223494,0.011693934213601577,3.607959023774027e-06,7.60583453995822e-08,0.007748895303299372 -pepino,object,3.3397817242505316e-05,0.9960018821379597,0.5559622384139503,4.081914745387006e-05,0.9986425423584179,0.045383241929931796,3.396562776804787e-06,0.688699711518939,0.12194728883112951,0.289582582203986,0.9978055067146113,0.9999993529867924,0.9996035465136316,0.10563470111406838,0.0003419699853517459,0.00011187338893780818,0.0007148800288526059,0.017489497171098104,0.9999405599806327,0.791832881050474,0.000862711528590568,2.206586918204459e-05,0.0003551046203795234,2.9790186712135425e-05,0.0034454150897722936,9.460972887446527e-06,5.926949737058147e-07,0.08020273054215198,7.917189673709545e-08,0.9172180770599899,0.0014243605052385927,0.9974157182302533,0.00021523433190645172,0.0007432116035883989,8.224751962189583e-05,3.276788180581888e-09,8.134395958045703e-05,0.017254461626378965,5.423827236675713e-05,0.7588205413525022,5.749433632370513e-05,0.09898233960455473,0.21713016784549394,0.6224058331394065,2.461109160277859e-08,0.9977330715638809,0.9985414647622097,0.8741255921062958,5.777863988501452e-09,0.0020378354081438278,0.027300842312419388,2.8777897936861607e-05,0.05179117125177935,0.0003467337307080741,8.217389076532702e-10,3.122654084567878e-05,0.9999917397469293,0.9999939838511137,0.9999873248390023,0.368704100663427,0.025696323557674157,0.8373165579521024,1.148075544538885e-11,0.7347756659506878,0.6013037088889982,2.307142555382466e-06,0.00013022835891875507,0.005752022081942544,0.006292304295316641,0.05998931843931595,0.004327703174997791,7.667492091633916e-05,0.020286614031808425,0.002685753503744313,0.9993002443480087,0.9932585554952499,0.0001934851011636994,1.1356702818681094e-05,3.028615526771286e-06,0.9997628575270286,2.1940984872847375e-07,0.9998589702273196,0.003736856132246566,0.9999649878500902,0.00746856773042864,0.0002771360326874529,1.8618265543103952e-07,0.02089923719179011,0.003262205238479312,8.362036693667818e-07,0.0015520532307979965,3.846445458447693e-10,0.9999950926431194,0.9999975801597384,0.9999903038261319,0.999999219849786,3.650826947410441e-09,0.9999779805908373,0.9999036505491393,0.9998273262853973,0.9998832672122839,7.549563721545634e-09,0.00011354370524192625,7.951011031752977e-06,0.999758129811773,0.04310846410576452,9.298421935184272e-08,1.4075420966393686e-05,0.02942201548689076,7.312774827874115e-05,2.0515608208882566e-05,5.57793476680986e-05,4.366071789509474e-05,0.13130935772528857,0.7702772838777961,0.17183160313027698,0.0006747729254754267,0.6698944705986393,0.00016907748037349481,0.9989719052048469,0.9999050807047913,0.028684671923040275,0.006122735094162352,0.0001011589798298664,0.017716727555661567,0.9999984476171726,0.06223893064586069,0.007666898747231543,0.005691451231248956,0.0006678065885478835,0.996712269118753,0.0014755642615068062,0.00620086290075627,0.02060874507526215,0.00115671860060711,9.171017838286816e-05,0.9549684375458941,1.390660822869677e-05,0.011709224904245434,0.8956747812917543,9.214152584872731e-05,2.5171422980342396e-15,0.2649220862586669,0.011035958678442046,0.9999557954976488,0.9999325209906383,0.9999970784946592,3.5817961903193497e-06,1.9409625574400007e-05,1.1678371017428977e-06,6.013092655930943e-05,0.8669542656952662,1.2694344712030074e-07,0.17239171638578907,1.1329853251685559e-08,0.9890551881055154,0.9999994119894029,0.6921420411966188,0.05231648731427787,0.010641397396496116,0.0013187438961712275,0.17516782251386218,6.704241672619975e-09,0.1084228279230636,0.06604859940567977,0.03083287432436106,0.022991789036349287,0.9971619078426652,0.4528728399748824,0.003356200273594512,0.9993068830273586,0.09569641711221047,0.8162737443771045,6.141546325455757e-09,0.29817059450006855,5.5121017187641974e-08,6.683349983436739e-10,0.00012106160893692469,0.07136752870087412,0.2270544603477036,0.21400712631530985,8.725862289220216e-10,0.0001472803407243193,0.0006253259766010018,0.058848788378624096,1.2190681339876292e-08,0.00028463234423760033,0.9985608422664068,0.8466134807697143,0.9999984523211826,0.2013960952281027,0.0001572822504659692,2.2882702986507185e-06,0.005268921560554294,0.03851597462876668,1.5643691535038408e-08,0.005447438412837067,0.3226276529270019,0.013206055719819027,0.0006852407286399091,4.6817014638303755e-05,0.19370860375473728,0.02888845452513784,2.016382212647378e-06,0.06788227326223874,7.608535621478685e-06,2.1978638715369076e-06,4.833071096729375e-06,0.00020045374310438056,1.6714060789269434e-05,0.0006362233903546995,0.01640959234407943,0.007326680388795072,0.6994439836562951,0.6779089167090298,0.0014575145440708067,0.001205292893456976,4.4482419716627214e-08,0.9995143619382101,0.9974941828403454,0.9997730130835287,1.3714687128054967e-05,0.013728340590080804,0.9662595961852267,0.9358609061876374,0.007005439605945279,0.09402380676027626,0.9997109067344645,6.9459874470984e-08,0.9918410982825462,1.1989895684489332e-05,0.000116300616813924,0.00923984737069059,0.026075122778778426,0.9999139784327881,0.9999190410205006,0.9792792496490178,0.9863861336207714,0.003094111754164565,0.01480510427818396,0.0132750440330649,0.0001081038232148844,0.002514495815764431,0.32765442408322404 -pieza,rgb,0.9999986314954342,0.9999999999999996,8.674496080300852e-11,1.0,1.7939190865700497e-09,0.9999150192327612,0.9993441096658967,0.999898529129122,0.9993128147092925,0.9929104896968446,1.8785335107752362e-11,4.643749504717634e-11,3.0416818781081774e-11,0.9999999999999998,1.0,0.9999999999999982,9.682204974738494e-14,1.153123111819801e-13,1.0300146782284167e-13,2.7948146311012974e-09,2.604359135710096e-13,2.5519116100948903e-12,0.9998408465618847,7.345078927903898e-12,0.9999132074149442,1.3663098759437706e-13,0.9999999995802187,0.99969054281356,0.9999999999999722,0.9999999999306199,0.9999091379744772,7.879569818658843e-10,0.9996196075419814,0.03363086633899884,1.0,0.9999999999999931,5.265321761098467e-10,6.717679141889447e-13,0.9614345267524429,0.9715416342196077,1.0,0.9999990562680194,0.99981648439629,0.9999999999962785,0.999999968673588,6.514497066296225e-10,1.154482887447683e-09,8.231797530120202e-11,0.9999999782685078,1.765409590914372e-05,0.9999011772488635,1.0,0.998872243930208,0.9964753313980234,0.9999999999602196,0.992523561248168,0.0011983133912469599,0.0003486500927337374,4.336378848090867e-11,2.3569840018037746e-11,1.637793576082623e-11,3.6355396020051536e-13,1.0,0.9999810095340431,0.9999999989827468,3.061993352740876e-11,1.0487414827818493e-13,0.9983556853502639,0.9998084539600794,0.9996327929000813,0.9985142953146963,1.0,1.0,0.9978012280226488,0.9999999999999793,0.9999967219294253,1.2203167151063372e-13,1.1570113693534644e-11,2.7095249228277425e-12,0.00013773829802679643,0.9999999960109742,0.00043870594426360454,7.394816908352672e-10,2.3948822479622557e-05,0.9998379742715409,1.9702599329784121e-10,0.9999999999999887,4.926940121765075e-13,0.9992908581457447,0.999999996164131,0.999882997948731,1.0,0.005874867381891379,0.00028614377357174376,7.725672165217768e-05,3.4077834456303093e-05,0.9999999999997136,2.2583316208135265e-05,0.0006837463929742056,2.3820887672287708e-05,5.226778766409919e-06,0.9332317710456005,0.9585961005951723,1.0,4.521291598837435e-06,0.9999220783410473,0.9999993154338677,5.384804839598669e-12,2.95329787105026e-13,0.9415493940089806,7.382245251458848e-14,1.0,1.0,1.608180095644066e-10,2.820547460036489e-11,2.7725698986582833e-11,0.3969136172894023,1.8790590445357595e-10,4.306889081118835e-11,4.3183682822313875e-12,7.111101699616841e-10,1.18019034655384e-10,0.00013907564215770747,1.0,1.8433794117684729e-10,0.011186381694735218,1.3030665182029568e-10,0.439304641025036,1.575295904433849e-07,4.566888048884657e-06,2.0739679639029868e-08,0.0018401011608788307,0.9999390626222675,0.9979797357635501,0.26668544168442865,1.4630682327773723e-13,1.0906725573834036e-13,1.1355047981149551e-13,2.3441500900908705e-06,0.9999999999245783,1.0,1.0,0.9982757945876446,1.0,1.5324633818707774e-08,6.864815912522006e-10,3.000026103325989e-06,3.6132297872795138e-12,1.139746875144569e-13,2.1718527716888602e-11,1.0,6.526141229263209e-09,0.9999999999999691,1.896145584262043e-11,0.9999999999667866,2.7349492754997283e-11,4.732826358874272e-11,0.9999953436295871,0.9997498646685267,1.174742985843104e-13,0.9999999301087257,1.0930803918475226e-13,0.9999999999997888,0.999962657914943,0.9999878578410404,0.9999964165878723,0.9999524570338781,3.740332224340786e-11,2.3200942954929154e-11,1.0,3.6395476757715287e-09,0.9998988939023558,1.379467637369712e-07,0.9999999999999998,3.92287186478492e-09,0.9994842187486572,1.0,1.0,0.9999999858189981,0.9999945153973231,0.9999775860066249,0.9999999999999993,1.0,0.9997552405149092,0.9999203510131826,0.9999999994871118,0.9999999999999907,0.9999999999999978,2.3113710412972203e-11,4.1134952342809986e-11,1.67140864178141e-11,0.00012187009070743447,0.9999994933238123,3.6078981100506506e-10,2.6214130717818005e-06,0.9999999899279123,0.18177271529607356,8.875981899551977e-11,0.9997610392905094,0.9948440146114115,1.0,6.225467647156859e-09,0.9997849116774873,0.9999999993243127,1.5349140530916615e-10,0.9855573510337844,0.9999999999425246,1.0,1.0,0.9999999831043253,1.6136943906938793e-06,1.2963580550803586e-12,0.9998711806333704,3.3550957295238325e-11,0.9999968433500575,9.101414115653177e-11,9.401043062532456e-11,1.0,1.9887561963842087e-10,1.3789070980368263e-09,2.747227388840879e-09,1.0,0.9981971758430538,0.9999090596463488,1.2413724451079034e-13,1.2892911742644706e-13,0.9999999999999996,1.409318700491994e-13,1.0,6.981769576523554e-10,1.0,7.145719342320066e-08,1.0,0.9711078579019952,9.102482530218097e-10,1.8255509417432329e-10,1.0781011799158866e-10,0.9999999998927773,1.8653066566268494e-05,3.5663783303325305e-08,2.6211294528616485e-12,1.0,1.7544477883128697e-11,3.164801725002219e-11 -pieza,shape,0.46112003609104185,0.9999211240554298,0.9999930149699225,0.9126962940120664,0.9997376194622013,0.9999953057855335,0.996308033672364,0.6174238247171103,0.9987593944498876,0.800103278636976,0.6527560419882263,0.00020748716902311572,0.03356313258957373,0.9996191452193498,0.9998866206190805,0.9928355733746966,0.9999284030315149,0.926491259798988,0.9935966743138571,0.999952408344251,0.976583002242753,0.9999474062161763,0.999824739075373,0.9999954766473592,0.9999276434779338,0.9999655258280316,2.482820571123642e-06,0.9975057739853875,0.999882092532775,0.999977146148439,0.9997902292119787,0.9998512713863911,0.9999998799109109,0.00010690148244833891,0.9999998565570188,0.9999986492258064,0.44801118763173137,2.7084607550433547e-05,0.9999952370376725,0.9995427632069382,0.9985120298742348,0.9958256094808997,0.9999979907642031,0.999998523851512,0.9999665739659229,0.9996661159095412,0.9999803919176762,0.9998701555733792,0.999284494924308,0.005469342374441492,0.9999989552902911,0.9966542838375128,0.0005557015411138944,0.9999828753501735,0.999875590381899,0.9999999959025849,3.997066674284548e-05,0.08875898513645819,0.00023527999089062134,0.9724292760390233,0.9996623609293213,0.9999820176997749,0.9999740008212783,0.9815927064160089,0.9992219114614723,0.9999735467464532,0.9999959179330926,0.6978610098851333,0.04327624322255722,0.997711989414831,0.9999998109822879,0.9998850287731857,0.5281626747205418,0.0006552226571784007,0.999860740401941,0.5120775299939094,0.9999943403775278,0.9998847660621881,0.999658917671592,0.9999915448069246,0.002823031676805921,0.00011076074204863886,0.0847985540573096,0.5173848571559789,0.022907874354396493,0.6581602456507484,0.999974236577124,4.368257338669634e-05,0.004799197158054222,0.31564984062304524,0.002646023482732541,0.9978596983200955,2.6157359239159986e-05,1.4653594158391131e-05,4.919169037861966e-05,0.0029152721835239877,0.9999828098196435,0.00021455247057888273,0.08402087568152758,0.00017326914395653675,0.9968787328477456,0.999981422156477,0.9999946584355237,0.9999425140210285,0.00017171286113272817,0.9999904346311085,0.9999100189147793,0.9999920139527709,0.7898931943615802,0.9999995236503831,0.9999794867626598,0.999993147991323,0.9998772352002644,0.9953924274485848,0.9998425261502948,0.9999644906388097,0.004187199014177705,0.9999338045097984,0.9999999903613209,0.9914239081703223,0.9937728268612401,0.9999995205614951,0.009279299429622627,0.999995961048372,0.9982599063449374,0.9996264527107148,0.9987333436462671,0.001345644690182491,0.003991352256530288,0.00016499575088311822,0.001345283671596834,6.0784799824305446e-05,0.9992284017963113,0.0002197918893285313,0.01374322685055447,0.9990039963492124,0.9999812803791612,0.9999977684154153,0.00019483642421063164,0.9999506585080599,0.9999391458571137,0.9999999207049596,0.9993956805915364,0.8707088244649969,0.7997697108981952,0.299589064055247,0.0036007238731057822,0.9994299198217201,0.9996316833440254,0.999830681910533,0.9998664318718928,0.13230268225312103,0.9999310829598931,0.9992995447959703,0.9998644029877118,0.9351417675726896,0.00020748716902311645,0.9983185791717262,0.968332891633536,0.9987120003987766,0.9434232083204753,0.04667683149083979,0.9999991286214186,0.7768295194854896,0.9929049659351685,0.9994009620377113,0.9999838745038361,0.8209397900848048,0.3223928761010265,0.99331097004884,0.0032223738498420454,0.9999713005989629,0.8028413578401031,0.999941778439746,0.9675357638469443,0.9996095629094482,0.9999379849901345,0.9999857677757564,0.9939426542772587,0.9038094071998857,0.960956374880872,0.9999993502158154,0.9998285635943521,0.9999030869864544,0.9999992351239391,0.9929837443985825,0.9965818202184031,0.9999447248134252,0.9980157091546434,6.846459572150835e-05,0.9874090243284079,0.006704484397714987,0.023456332604154778,0.9982737414961261,0.7274656808208844,0.9989310391111563,0.004120324411346916,0.9993110244201523,0.9999910904528992,0.999886087055655,0.9961072058380902,0.3339031926559656,0.9925583752589189,1.513309407931186e-05,0.9997918064304064,0.9999999791312788,0.9999342966449644,0.999999986299261,0.9415869949587778,1.4654181288232531e-05,8.061568854357364e-05,0.018882382710071696,0.9993715133142133,0.6820956171146176,0.6419185146592656,0.999864912831085,0.9999863992304215,0.9999982172626296,0.996608271235323,0.9999540429531303,0.999926393122936,0.9999975060403931,0.9999995656797268,0.9984395704269109,0.1313502948948795,0.6851410564368206,0.9999747084566855,0.03340167980391924,0.9999791785406348,0.9999962367364783,0.9999682673776299,0.009210842725775423,0.8971056625983193,0.9997939987455555,0.9937728268612399,0.9977600000114315,0.9996243018378577,0.9996487932420676,0.019690453895032097,0.30633780489750867,0.006264351853682635,0.9997712846647853,0.9999999857005619,0.9998807345575713 -pieza,object,0.2554609869719804,0.9999774122724212,0.9989476909501086,0.9703138267514098,0.9315170574284815,0.9999963724677712,0.9880537735029812,0.6259229272013856,0.9987747612127724,0.7180214071116992,0.04396521464411779,1.5491954945574237e-05,0.0009841099000314902,0.9998184773090008,0.9999706930166268,0.9956306937794325,0.9928545956645397,0.1376375559700199,0.18633633258540702,0.9873764687786659,0.32205521757452,0.9945417132984727,0.9998728400491605,0.9992632407312634,0.9999349144236888,0.9931165547286892,9.933364887038576e-06,0.9989408290216347,0.9999127920846064,0.9999880627810966,0.9998129284745715,0.983573813656725,0.9999998702801471,0.00012039581402882155,0.9999999646622725,0.9999976411687507,0.015636382992965048,6.779990010370729e-07,0.999931521950442,0.9995555025410234,0.9995401702228522,0.9976203830208648,0.9999989088723933,0.999999487589114,0.9999520379242067,0.9708840239332094,0.9962943554842156,0.9844516022566416,0.9986867456187342,0.0031655702811075356,0.9999991651145876,0.9985503289122322,0.0013852005248543287,0.9999778078104891,0.9998135604272839,0.9999999757752845,3.691011575074642e-05,0.015542963268332896,5.729793331815499e-06,0.252500473529939,0.9542744390220048,0.9856914194031978,0.9999821421573949,0.9753702710190796,0.9991569626530161,0.9981542501451551,0.9993812313023165,0.654810721421116,0.0897706149534443,0.9959531256445614,0.9999996614971067,0.9998031039188231,0.7656079355584039,0.0016972357858006054,0.9999592898298649,0.6673863534826634,0.9985955795633302,0.9932786692555716,0.976365616334614,0.9998395833170945,0.002440321650241941,9.499729756197266e-05,0.003952357623864625,0.08520700051784122,0.07295061686434902,0.04279459024863617,0.999962829219428,9.260621195280198e-07,0.0009431123236921762,0.14878967314248842,0.011655251267653412,0.9989448444061261,3.51978645333689e-05,1.038628071648754e-05,3.30518483808984e-05,0.00045159979266344883,0.9999893627000761,9.992660157202398e-05,0.05214176094806889,0.00013040262893605935,0.9508080593976589,0.9999343766494373,0.9999925541044169,0.999977583388096,0.00014444814224176422,0.99999272062022,0.9998502542595565,0.9989180958575924,0.060933511280569334,0.9999980568247836,0.9974543230031013,0.9999907803423427,0.9998490894515303,0.6543744375112236,0.9785397364506845,0.9966573308883395,0.009656522116179941,0.9921598797696594,0.9999861406353271,0.7103959949331009,0.445809271565044,0.9998668362762048,0.004096783982016847,0.9999957625450437,0.8689351205049166,0.9887959873457575,0.8555831408308103,0.0028786989110245052,0.0012887647902439772,0.00013818871607055623,4.473247023811507e-06,6.394184956343007e-05,0.9993519701506169,0.0005610049455254069,0.02201117719169316,0.958157673063494,0.9939070218468683,0.9981665580940248,0.00011144569878558246,0.9999588629414284,0.9999569102899224,0.9999997741170998,0.9995298872059754,0.9568367884518841,0.049039397169237824,0.02538618626754748,0.002928914334170168,0.9658036798594459,0.9604304224649121,0.9842460355113793,0.9998497189124345,0.01161185350609562,0.9999322815934822,0.8993673062416259,0.9998556604336808,0.1690564888477175,1.6024680888688972e-05,0.9994216214535085,0.9902162599927853,0.6520973703324928,0.9931919567994476,0.0005632496076835066,0.9999983184005625,0.9478238160569249,0.9985783653750212,0.9998167291901716,0.9999865722694915,0.05246359563948538,0.009179076335567627,0.9971328160008338,0.0008386980502622813,0.999983959003272,0.1643822783831528,0.9999492912877157,0.4818096344392759,0.9983532412185654,0.9999393697036083,0.9999915953772663,0.9994080480965934,0.9775138199366713,0.9910028860979099,0.9999997395742083,0.9998613798098802,0.9999039503261575,0.9999993162217046,0.9936970159982424,0.9960194150451087,0.999984364462634,0.8191262791035757,6.644618263126706e-06,0.6058840472339219,0.0023666278755886177,0.009923835422095975,0.9805968702837222,0.17355891036944943,0.9983831285618706,0.010024102729811997,0.9115026752115154,0.9999936543554758,0.9998800411678023,0.9975169377884402,0.025150542719711164,0.9972940033199348,2.4716703303842643e-05,0.9766937958828632,0.9999998435206513,0.9999012024277508,0.9999999469045621,0.9916995867099343,1.6910244868741917e-05,5.17087943019139e-05,0.00022540837931573298,0.9995474637993856,0.025766778108686973,0.9128495915284524,0.9693222069571287,0.9955756542182483,0.9999991915051172,0.8547623568653683,0.9895362176693748,0.9821699170214949,0.999993739445764,0.9999994184682066,0.9952081063812889,0.0012724896935824113,0.02633285337478454,0.9999846751840645,0.0002600617890187848,0.9999940389859664,0.9994792946025366,0.9999811597876009,0.001325891702602538,0.9438515010595993,0.999780356266256,0.4554698938593466,0.9274967147771268,0.9452844765327669,0.9997536477478228,0.007018858584885552,0.05455426650616047,0.00010781856786732516,0.9998544735010017,0.9999976124832227,0.9875730042650572 -plano,rgb,1.291857644542813e-07,0.9999999999994567,5.016351720305724e-13,0.9995711459821497,5.630027232201927e-13,0.999646400534786,2.7931473149569258e-11,0.9733348029998936,0.933995947338529,0.5113081314743788,9.829050608498723e-12,3.1400475560232646e-12,3.17092768055395e-12,0.9999999999995548,0.9999996915181867,9.186249029161163e-06,4.975582735912974e-15,7.686835044872583e-15,6.133944138841385e-15,2.3287524919815885e-08,1.3766621362359313e-14,2.126179249241905e-16,0.9992304202321042,1.6033292053788127e-17,0.9999646822245825,3.384053787664062e-17,9.763726001369792e-06,0.9998939448861374,4.654191706472113e-06,0.999999955126315,0.999629876151065,2.024308848053166e-12,0.9986805396845482,8.084723973939502e-05,0.9999999172478684,4.076040395772353e-06,4.043383809595883e-09,1.3625006843520066e-15,0.9837534940162057,0.9614762403448043,0.9981577130954191,0.9999423108590058,0.999403681571358,0.999999986410611,1.5926510054357237e-09,1.6872793710649197e-11,3.7243621546160924e-12,4.812326916043014e-13,3.6970907556826852e-09,1.4284279293392949e-05,0.9995836939624579,0.9983705898446555,0.8508119419320687,0.9904062666773998,5.2705536742489706e-08,0.9885949375198555,0.005865300103341412,0.0014899149508901773,3.5032389137416212e-12,3.714849067469859e-12,8.265116616806511e-12,1.3099555491246148e-14,0.00016851073306184029,0.9992127433536159,0.9999995154627032,1.0366913453043926e-16,1.509717286085257e-17,0.741244313487311,0.9551072273615883,0.9567264755788599,0.9956389573852874,0.9967311981448858,0.9949282458800105,0.6089556816681029,0.9999999999973397,0.9998816992009127,1.91477907582427e-17,4.792708363796715e-17,1.4133014320964356e-16,0.0005373048722658805,3.322541142692095e-06,0.002428485293941836,2.2455646421225063e-11,8.08466371559595e-05,0.9673231092752892,4.7675554992763545e-12,5.924106723234718e-06,6.903410650843168e-16,2.3038634900286486e-08,3.995686508091087e-06,0.964619373642429,0.005834297842440685,0.03001166876357484,0.0009404135104382362,0.0002762631513405158,0.00011361680473933399,1.2090298050270466e-06,7.577654310164128e-05,0.003679926293333156,8.943091879678028e-05,1.7076183845399107e-05,1.733359125218239e-12,0.9455713282137216,0.9995047816888922,1.18238899245116e-05,0.9996862945714815,2.6213524753433943e-10,1.824599130923925e-17,1.2174954284624768e-16,0.9197583248849273,7.155841931563114e-17,0.9985566435268721,0.9999642512636472,1.3214213647699712e-11,7.678373407013664e-12,1.2657938117472292e-11,0.004736005681239564,3.272547351671569e-10,2.51548035410485e-12,2.4637983386501037e-14,1.5686672915174612e-12,8.791603250624552e-11,0.00010642800678466372,0.9879144712836082,2.5234380612378388e-11,0.11684906682148863,8.720448196642031e-11,0.008108746494483614,2.9726564544916335e-07,1.730172809854816e-07,3.0625801577183086e-07,9.49643595276838e-06,0.9997260770307114,0.6433375255173519,0.0025690595033405197,1.3667028282536997e-14,7.0856584088848965e-15,8.22562050419648e-15,3.1999301376633505e-06,0.9999999337816087,0.999999730679323,0.00018909957219718582,0.9947777834001046,0.9637067151700632,1.301589414903448e-07,5.7118228704914474e-09,5.5734379507170886e-05,1.1371402220218242e-16,1.3787875620009547e-17,4.5056448527693096e-17,0.9825919513772855,4.626037601228757e-09,2.599248207891523e-06,1.0571956750613988e-11,5.8861958033474095e-08,4.106626113552598e-12,4.5036132433031465e-12,0.9999972907989926,0.9999189230498169,6.9935647757473754e-15,0.9999999134665559,6.195273862747559e-15,9.423718592485641e-08,0.9999839335034547,0.9999932112917214,0.9999971267317315,0.9999771317837949,4.846439691663027e-12,3.949995430090113e-12,0.9993185842326076,3.42212345960279e-09,0.9995770484003613,5.2372486534080634e-08,3.964769264364488e-05,5.062800390888939e-09,3.1804382549916326e-11,0.01245791961819794,0.9999974606298432,0.9999999748060238,0.9999968673232107,0.9999896508940388,1.0780035424859672e-05,0.9999999118298653,0.9989373570474716,0.999681643218896,2.3639081986623286e-08,0.20885857667701777,0.999999999998717,3.879912365142493e-12,3.896932153550979e-12,9.21596879966016e-12,2.428386936157048e-07,1.8953879286757352e-07,2.780628269111344e-09,2.651572458513787e-07,6.723608395656878e-09,0.002652387001324103,1.8313971505650456e-11,0.9991244895211678,0.9853213421380049,0.982937830369587,3.5242967813483764e-09,0.9999104264765131,1.1308340449486754e-05,2.112603038875375e-10,0.9720111495952263,4.2072636260749437e-08,0.995807810449333,0.999999116829501,1.0432129574411537e-06,2.7667657520476242e-08,2.5439486514530263e-15,0.9999514193593716,3.92294417569327e-12,0.9999969809574173,3.607726887581969e-11,7.463324486641362e-12,0.0019530771793793262,2.34014661806076e-12,1.6923501810747036e-12,4.449689873957143e-12,0.9727543510164677,0.9945970047109093,0.9970055015231039,9.283855069574985e-15,9.433666337467004e-15,0.9999999999994498,1.4722876858866668e-14,0.0022905580253454755,1.556735357077685e-12,0.999999994166713,1.5597659365202256e-10,0.9901684454731238,0.9559778159612812,2.4232884512647876e-12,2.4257100292947105e-11,4.954874218416495e-12,0.9999998825682099,1.041538551276967e-06,1.4972376171529023e-08,1.5936624830071856e-15,0.9999995744923086,1.854242220249621e-11,3.035996343870874e-11 -plano,shape,0.00026681348693790793,0.9965190866149299,0.2078800134554374,0.001229227876195048,0.0010971916672127522,0.9397638472227853,0.10938755280362042,0.07735945498655059,0.051229412822504414,0.0008963199518685774,0.732000299010746,8.234739684044344e-06,0.17731171881025112,0.9096366032310882,0.9997536833228632,0.8986527508265075,0.8041458409563569,0.16003013131316413,4.335856713673447e-05,0.595412415725907,0.07343830188008028,0.7267649334649121,0.9998558018783366,0.9896815159030924,0.9552401724022849,0.9869141394935047,3.786227684560002e-07,0.2741718973400422,0.13898397102863094,0.9981020222296951,0.9709822937631137,5.31801808464563e-05,0.9999517637336877,5.605602337254206e-05,0.9998736460587673,0.999936597188898,0.012040840577345892,2.0095886956491605e-06,0.9993006913748527,0.008275484447752855,0.949245966116815,0.9760582836840406,0.9962645716519327,0.9924164599203648,0.9883025573554591,0.000256700064485594,0.0010910798504444109,0.9686501416996848,0.8993869059136177,0.0001232058140621468,0.9995951776091545,0.9244096356218624,1.959072385160229e-06,0.9899605314114651,0.9093086494305066,0.9999979788289142,0.0003128702713560424,0.0009532563717897256,1.4146783238479054e-06,0.9984348761029095,0.999979598513855,0.3135759167679533,0.9975076579184965,0.9076327974967249,0.8829284756198656,0.8340432958482069,0.6915933150177755,0.0002577782287301402,0.00043102012209894153,0.03653147287274399,0.9819458586180999,0.999685847921948,0.056614789071672986,0.0001817737128305159,0.9974284408333703,0.27831110600609055,0.9559951586333719,0.7483086755003959,0.7039341866470179,0.21907556339228632,4.6747268832749415e-06,6.627449633863384e-05,0.00017288758911028588,0.0003190690525205157,0.0005324541078770296,0.0004954002056873135,0.9957817761528891,3.0989183432838815e-08,5.679286243196946e-05,0.00017065889425740008,0.00012181322508418548,0.9964923391098668,0.00011664126607580921,3.7162039218792474e-05,0.00017303603737010002,0.00025226149823841265,0.9903971991077088,0.00023853268796981438,0.0007912907103023706,0.0006475852595064582,0.00037419901761136877,0.9943561286657765,0.9855348396238542,0.9739835804650465,0.00020540192935011262,0.9997326580374024,0.9965888749668605,0.9660747746192941,0.03006048777764405,0.999085147013657,0.9665840894309687,0.8923670774806682,0.9998404389093684,0.00011497076119010462,3.770659278101332e-05,0.24362108630290824,9.970888151058028e-05,0.000335027982556961,0.0005841944734171741,0.00013698446973423788,0.007357494336588782,0.011422043968689993,6.861667348649411e-05,0.9954275097082657,0.05765900734921401,0.7714810467945339,5.6301803386702055e-05,5.2531236628657765e-05,1.3989937677341503e-05,3.809336180798075e-05,6.914074019010866e-06,1.1325761544670672e-05,0.9670266149040078,2.6810334010188462e-06,0.00017918824634439052,0.9990989412937008,0.1429481034856446,0.8873354046207741,0.000136296716575226,0.9986964461396576,0.9923641792190048,0.9999984521502294,0.29958689396928107,0.0030828551687455837,2.0352717929669043e-05,7.47599095913533e-07,0.0006972013235142673,0.5049895872705223,0.7502959666470551,0.8103070613130403,0.3147363391236032,0.5040228255950674,0.9617129804440916,0.9998266478076663,0.022882783518761475,0.9989208470796839,8.23473968404449e-06,0.5851051374108338,0.5204363961161834,0.9669553784562235,0.456829175213631,0.00019748667527780205,0.9962119618105706,0.04641504037942534,0.5767621062327157,0.8945456284027504,0.9980122893196499,0.22349503544770105,0.0006226522043928961,0.017958480127634284,0.013042323542250612,0.6308554910696176,0.0014415892949685995,0.9906591193657514,0.0006811964731360966,0.9789711301829097,0.9457900202067219,0.9996245239615276,0.650808197038647,0.04740398014353691,0.0948476643115235,0.9988667646169702,0.9843412820521135,0.9998629219126814,0.9999528648117189,0.2824190565665378,0.9069515201770143,0.9997332875436312,0.9995899779676988,0.00029277267753223486,0.9181001525634275,2.818498258855832e-05,3.675836093138576e-05,0.4859360211026859,0.007570041351759249,0.9920895250462229,3.306914868779036e-05,0.0014057833932700477,0.9982065753514485,0.13866549013961263,0.9767511204502901,0.00016407736886688687,0.7440139934201383,4.562979107358102e-06,0.07287847590109436,0.9957617715044585,0.12442260124885997,0.9935352547584488,0.9997479309994435,2.1051217316113335e-08,8.781482966443562e-05,3.7631046834283074e-05,0.9718363300570124,0.9957158092012529,0.01585838843536089,0.00015462014274071593,0.0005504670188066059,0.9997699666641101,0.22416104253077423,8.616457335341039e-05,4.612066451417653e-05,0.9999487133681154,0.8820368279883021,0.11844715766659004,9.504542143883864e-05,0.052538713447653984,0.6619415790771787,2.4592135982631582e-05,0.9926231406013585,0.907733880346696,0.999953595795169,2.2241091407839457e-05,0.11637515862643047,0.41590806645393685,0.007357494336588744,0.00010107974352005683,0.008502203137188231,0.9205486969327664,9.994080581380194e-06,0.0006987605167416337,2.3725616155070337e-06,0.9886682842060871,0.9341352234657228,2.039911558482634e-05 -plano,object,3.1759583600282656e-09,0.9673621845065021,0.13176086298047934,0.9998387407473597,0.0030433857931282692,0.5609183226573883,5.391809067710916e-06,7.666080589868237e-06,5.478223647051255e-06,4.425156967886577e-06,0.00010253647030425878,2.0795238149685064e-07,4.0262079059893074e-05,0.9960131033532738,0.9999361026195211,1.682328646539799e-08,0.012596688139903073,0.0003227787318159307,1.0469014145473356e-08,0.00040798597474602286,0.00011132998456058782,0.0002324518599168653,0.9997676014806361,0.003923581283891134,0.9805859625978021,0.05596870229865122,9.72185089215023e-08,0.6797529197547502,9.21391166340737e-07,0.9999997643417169,0.7592958613567014,6.813622182323556e-05,0.9998941869441808,1.6579954676281437e-05,0.999999989765939,4.93532770865961e-05,0.1287812437820451,1.6309958872879007e-06,0.9125021164890496,2.7270517899466458e-06,0.9999981446133898,0.9999277631033496,0.6652500130750518,0.999994405031023,1.7943754741318753e-05,0.00018278309670725952,0.0004949590013804391,0.7728047229652011,0.00019025174218909532,0.00012091890333705559,0.9956146803019671,0.9999999509898021,7.632286026072595e-06,0.3975082220843592,6.1578624900435475e-09,0.9999589620553572,0.00010602308506847917,6.148569587690032e-05,2.1928531657052095e-07,0.007711076179662463,0.15551156205689656,1.4738616762511298e-07,0.0002687404902904491,0.4598383061257953,0.9998090371733125,0.0020457421385225404,0.0032004950962087075,1.3288602020831184e-05,0.0001406227771490211,7.687048772264162e-06,0.5258173172116782,0.999943896225607,0.8281999164653029,0.00022525052153145105,0.8834319469688217,0.09466274744175157,0.03533762285694275,0.0013373693894225013,0.00019466433626862345,0.718153384741044,1.6146405504133988e-07,0.00023325584421968326,5.19228385156169e-06,0.0001027475418368963,0.0009809551260285924,3.136593835168301e-05,0.0001631207099224049,3.0638687239230205e-07,6.027665072782652e-09,1.0140233777113536e-07,8.136192566708503e-05,1.2854009884116555e-07,8.2233276821281e-05,2.6046258851184767e-05,5.272535951543061e-05,4.745790767895122e-05,2.8518499050061208e-05,3.743173681336388e-05,0.001947015956997541,0.00021812164727275755,0.000450056097454464,5.737735560356156e-05,0.9420413580054128,0.9999994166011612,0.000270410426885923,0.996869889704597,9.470569299780947e-09,0.0018471546948412574,0.008367790487042464,0.7304778902762746,0.02486680611622858,0.9899398727027198,0.9999629694721214,3.768881843602203e-05,2.0007112482099542e-05,0.0003800461565442193,9.346468187367544e-05,1.3349512668332598e-05,0.00012219241858665045,1.0052229622916213e-05,0.014999920376820726,0.00018115951925883565,0.00012138404819566912,0.99998863025479,0.005047219189811363,1.5901330278508097e-06,0.00040355298310766185,0.00013536768698251643,3.0034870289641684e-05,9.302484173748762e-06,0.00018802982026630075,7.626588955849638e-06,0.7212482834267505,1.2700202845069638e-05,6.176913223990636e-05,0.019751860488601503,4.507452400415485e-05,0.5734422877296076,0.00018287827611947595,0.9999823117140706,0.9999990586889057,0.31375304098515355,0.0009677954208025312,0.8756873528222804,1.415501675144934e-09,9.222003173790636e-06,9.73356630467659e-07,0.0006634424178301061,0.007892047845297295,0.00011563417752018247,0.9936675631794812,5.392500568838329e-07,0.0014286176269509773,0.027907210775438306,4.7166523441645465e-08,0.003273360048507049,2.068920244477019e-07,0.9738802458605219,0.9808517769281379,0.00025354024739468955,0.9742142569192866,5.34583047508952e-06,5.682513925436407e-05,0.5332284758580131,0.8423344670168472,0.9470576235484605,0.9984587058815699,3.486601456833559e-05,0.12346718097881954,0.9999911385172586,5.968866940385942e-08,0.3052460257017918,9.407989158535955e-07,0.00020107523333508682,3.4164559135078093e-06,4.02492397888497e-05,2.2962199584489548e-08,0.9999090385641373,0.8919222032221681,0.8206014871631243,0.7328047104406129,2.137825240914897e-05,0.9999986880927667,0.9998751009672642,0.999037016271252,1.2456958080286614e-05,0.9999900261961787,0.9990865663706853,0.06703953416025461,1.22643371252381e-06,0.9033242464030905,1.68721352745718e-05,9.15081445900408e-08,0.0019508273681894505,1.020210565217865e-05,0.00020055637096098205,1.100382514094391e-05,8.147908671132944e-05,0.986092112279929,1.812869373148777e-05,0.9999996808816974,8.55986005909401e-06,0.7431297346335056,1.944499551501232e-07,0.004013261259835885,0.003678653586294166,6.7613667177807506e-09,0.9967922056008959,0.9999674365923711,4.133265665013664e-09,2.2789080243368453e-05,1.1158969519247665e-06,0.994012214128167,0.003154112867818701,0.4028332217841961,8.665555095475894e-05,0.00014185995485574995,0.000889303883928992,0.01201977146933274,7.922111091149527e-05,0.00017235778578446163,0.9992569901869691,0.26829302303624375,0.014392510285466958,4.3783123375016475e-07,0.00023169981328875457,0.9808688616987831,3.8451639012658384e-08,3.7684113285286475e-08,0.03947473144988463,0.9999998663184698,3.6485313522654035e-06,0.8018910227959386,0.14532981381541601,0.01668186005027105,2.434704563729632e-05,0.005956475549467878,0.9999939515565539,2.877584566262731e-06,5.766720270173724e-05,4.286249153218547e-07,0.9999996751406829,0.022058658561299713,6.828762091650989e-05 -platano,rgb,0.003068957026038939,0.9999999999950766,4.573391233794015e-05,1.7423501237648096e-13,1.2637041860402353e-06,0.9999999999994367,2.460187631494189e-07,0.9999999999755627,0.9999999999677114,0.9999999997896996,0.11514416543277606,0.0029879201062262646,0.005755233101551739,0.9999999999891953,2.933406783716442e-13,1.708246583960147e-07,0.0011807506624835755,0.0015152438680464584,0.0017382719531755344,0.9999493342182141,0.014698266131490424,1.871769120816518e-05,0.9999999999991085,1.007662607482843e-07,0.9999999999992499,1.1232184317861581e-07,0.00629275300912665,0.9999999999987241,5.939887361926769e-07,0.9999999769163846,0.9999999999994218,2.9477432423047046e-05,0.999999999998789,0.9999996679602469,3.2989502879630844e-08,1.4080952260477675e-07,0.9996877192949929,0.0006154726995459512,0.9999999999925369,0.9999999999906619,1.7753674770328338e-12,0.9999997893694024,0.9999999999992377,0.9999998979715357,7.193434954481573e-08,0.001619757024465718,5.199621312035177e-05,4.56091021259328e-05,2.3564964653198334e-07,0.9999998393109008,0.9999999999993807,1.2790435457483187e-12,0.9999999999304667,0.9999999999960503,1.1659703804427783e-07,0.9999999999955846,0.9999986717383974,0.9999952419284307,0.004070803487283551,0.011640929159281646,0.10301834731344559,0.015191028904549597,4.1046513901065625e-07,0.9999991089049012,0.9999999017602844,1.440470388170461e-06,1.5097231837164018e-07,0.9999999998742612,0.9999999999660947,0.9999999999744749,0.999999999997544,4.76511335972316e-13,2.4062878416498502e-12,0.9999999997820124,0.9999999999996507,0.9999998320128269,8.070513371799444e-08,6.202260084001668e-07,9.02684483517474e-06,0.9999883300770364,0.006400802703644903,0.9999980339456154,0.9749281529969809,0.9999442169526717,0.9999999999745155,0.8944421068563091,4.173761218448449e-07,0.0002322437103755264,0.022472898389777035,0.00838910808067264,0.9999999999684441,1.868629232237684e-06,0.9999996640419876,0.999989042718689,0.9999781810289912,0.9999545284843735,4.1723240129396184e-07,0.9999410933663768,0.999998461774555,0.9999573356176026,0.9998356230564429,8.525692220109902e-08,0.9999999999883615,5.087394748215547e-13,0.9996875432803212,0.9999999999994744,4.008763167496457e-08,1.5281144890753036e-07,1.6389708332864009e-07,0.9999999999850269,1.1185517578777165e-06,6.787943038256828e-13,2.1691739099330735e-13,0.0073390191116946245,0.036556703460428504,0.10011998700631637,0.9999999902776283,0.828956575512087,0.002199543061011257,1.5152538433736975e-05,2.168229456988803e-05,0.36289487790713437,0.9999999634869507,1.2292948523495854e-12,0.020663840993003155,0.9999999991676112,0.31977211235329167,0.9999999943474791,0.9999969449651261,0.9999883562803318,0.9999848275533324,0.9999988246091753,0.9999999999995135,0.9999999998080948,0.9999999846681773,0.007880686592770957,0.002582693855647219,0.002600390506889414,0.9999995247706266,0.9999999512965384,2.743415442645878e-08,2.791061394659723e-06,0.99999999999726,3.153198206778656e-12,0.9999899187557661,0.9997506497279053,0.9999997135351869,5.3905925453529926e-06,8.880353580515038e-08,3.8577098637021896e-07,1.3525448725128898e-12,0.9998967797612079,2.3312532923207977e-07,0.13044646698183845,1.2137744029497387e-07,0.011202530027208972,0.005764114753010415,0.999999999999581,0.9999999999930873,0.003560954980039212,0.9999999999999496,0.0027668984275038876,3.2870743505716025e-09,0.9999999999992801,0.9999999999997007,0.9999999999998785,0.9999999999995342,0.009501115507735148,0.013463180985762288,5.48706388317499e-13,0.9998687879328099,0.9999999999993752,0.9999850215698958,2.721499201609673e-07,0.9999073981946277,2.5350699942894375e-07,2.8649589181073122e-06,1.104168851440203e-12,0.999999999999982,0.9999999999996116,0.9999999999993827,1.0521974132856555e-07,4.649533134292018e-08,0.9999999999989266,0.9999999999994698,2.550492027773927e-07,1.3297826012082261e-11,0.9999999999974587,0.013076150973052179,0.005399740365299514,0.12309477852332469,0.9999672512620927,0.002642690365061171,0.9994578643364435,0.9999941566831833,3.524828449814855e-07,0.999999987946299,0.0333184492397404,0.9999999999990472,0.9999999999948583,1.8851448442245742e-12,0.9998658800602674,0.999999999999198,0.011643728156477616,0.718352850077473,0.9999999999924059,1.0740133206229623e-07,9.10859548121578e-13,2.367025323664901e-13,0.002990364190768376,0.9999296118398959,0.0013179962344532594,0.9999999999990496,0.007461605397758744,0.9999999999999052,0.11687131906133319,0.005439571583660046,1.0047546189697604e-06,0.000226665015171024,1.0820279049771391e-05,2.3867805698373436e-05,2.8886954857476617e-12,0.999999999997204,0.9999982394840109,0.0018226111495476328,0.0015818843627957116,0.9999999999950924,0.004509754604581122,1.10023262070523e-06,2.1900977029401113e-05,8.56330177864061e-09,0.9859652993174345,2.134299672160127e-12,0.999999999989883,3.346572264370477e-05,0.01943340468658228,0.0020659296679387735,0.9999998954780929,0.9999975614869634,0.9999587135550083,0.0004988910853826526,4.7890372319933185e-08,0.3877407446387979,0.37743160305728995 -platano,shape,0.0005426552666464333,4.279499913223625e-05,9.792109158185762e-05,0.0002922856277448762,0.0007186547128646898,2.5844318714885553e-06,3.1036502923200656e-05,0.0004862019860678851,4.168598211038912e-06,0.00012543990560104161,5.101177395845337e-06,0.0710128160766813,0.00022294491804979437,2.2415874617982166e-05,0.0006997383192405026,0.000282733757409329,4.3133452436862896e-06,4.529512994807349e-08,0.9999960766904917,0.9999799755278684,0.008741007762089088,2.638622957883505e-07,1.4112267757452916e-05,6.396490885378216e-06,2.2197936806881303e-07,7.275228663577409e-07,0.001663123374752349,7.12549957334571e-07,3.708935218456071e-05,0.004320394988881848,7.026617376391486e-06,0.000428620638657485,0.012548520551476577,0.0012999329828721632,1.705511637220629e-05,0.008351019172038746,0.9998437255024469,0.00021739275083640323,0.9998000804642025,0.3620620188294024,0.00032444910725812256,0.0007364527049886516,5.869463826872889e-07,2.211658158257738e-06,2.8780352934860663e-06,0.010892988951228203,0.0017903331684075297,9.409922090018459e-05,2.2768381028081024e-05,0.0002276844764671831,2.02778759423671e-06,0.000526456665086816,0.0003652598531444071,0.000336512777339196,0.00022896164439385145,0.9793926269581639,0.010636848519716673,0.7034968643338957,0.573889631794134,0.00019963725993011035,0.00010219585864129193,0.2852519526472806,0.9522959662106328,2.218863026328876e-05,4.1451057500204786e-05,1.9055098453823583e-06,3.1998118955655604e-06,2.586371545654897e-05,1.9630695336927095e-05,0.001855396442751,2.7399875370010307e-05,2.3933939843229517e-06,9.337795194822808e-07,0.0002561486903580411,1.7329536839182547e-05,5.298984505047522e-06,3.246627438679034e-06,2.8416030170725063e-05,7.460791702835474e-07,0.7998165853254751,0.014674206370203878,0.0001473720816580908,0.0005673144594047902,0.9795592731937075,0.001664646577249279,0.0006226691625847567,0.0041942813958647475,0.00043600359960099924,0.05723274521210979,0.0031189694546782942,3.921106772556067e-05,4.9288503371341164e-05,0.007324744848046566,0.00012527045497896176,0.0047634880042355145,0.08401596348474531,4.94977228394792e-06,5.627109617608117e-05,1.8264485051871683e-07,0.07805840406332548,0.6306653476020407,3.5521855618603564e-05,0.00014874015241965954,0.00010256156010742508,3.6798140126479285e-08,0.007356933562163729,1.6387257305051747e-05,3.852890563581785e-06,2.5506644047843126e-05,0.0781790790117787,2.0891321635249854e-06,0.0004751431310569347,1.8163003276923114e-05,0.012583111109471828,0.9836537736441648,3.1320256817405705e-05,0.0001870693201951044,8.87302219664021e-05,0.15798377253633344,2.1544305531085623e-08,0.02240578069239082,0.10362084452628055,4.864968954761207e-05,6.140584402382774e-05,0.39027527769037423,0.9998727224479835,0.030577476219682445,0.0020874690557848856,2.4579336845984445e-05,0.0002688735856842948,0.9999335930126418,0.0006053190768736995,3.1345090827007275e-07,0.00012469998076594497,7.992206081434085e-05,0.999878530070892,0.045586076841491914,0.9982959220764537,4.296338586106294e-05,0.0002988681907781607,3.108658093228258e-05,0.6306004881418931,1.2515341139582312e-06,5.116397571500388e-05,0.9999422565783601,0.9998813749918541,0.9998989094701689,6.80363443832962e-07,2.3036130739524456e-05,4.33052109998419e-06,0.00010007889393011002,0.0008818869975678522,0.06676718956018395,2.447523586497521e-05,6.263009608625564e-05,0.0017277977631292559,0.07101281607668085,7.08857747606554e-06,1.873527978635267e-06,0.958638622655035,2.2792063053435443e-06,0.0009841246623009683,0.06562907161932324,1.0364401882459177e-05,2.5141780990058795e-06,1.345234213232937e-06,1.0413938420177144e-06,0.02627104288897644,0.0006469909894632333,0.0001499961070422099,2.0112534445893916e-05,7.29826858167517e-07,0.0007425723947336504,0.00044119986401270554,0.0013529249393321816,2.458441802677091e-05,0.00038121555317517105,4.042791757402314e-06,1.8559522976088943e-06,1.2380444213199985e-05,1.2186839231667525e-06,5.7233773801599e-05,0.00038865187931374026,0.0010371958337052165,0.0008810855162289928,2.5521717911792502e-05,2.5236543712580974e-07,0.0034352436468071995,0.001643163794908088,0.00012220384067295433,0.0017074101991765927,8.172618116518479e-05,0.09016119022610149,0.9998579015858624,0.00019479790252038126,1.394065033701736e-05,6.526155260758644e-05,0.00020274926382524968,3.25503914826638e-05,0.0007566832425709421,3.190883304074338e-05,0.00010904067914521603,2.210902544864085e-06,0.02357205411379667,0.9640217347889753,0.0005646130027975727,3.8851043437709746e-05,0.00010124880602182923,0.0002694472767535765,0.012718383965978344,0.00036917550725133443,6.263507350242008e-05,9.581389360280673e-07,0.00021646276014375724,1.0010390533249884e-05,0.9906382981883909,0.009933740938754964,1.5769766114786594e-06,0.00010647013235140963,0.003284545262533677,0.000868267775293805,0.00010570796704373065,3.726672458532191e-05,0.0014579443890136465,0.9886790720440847,0.00025917432479753255,0.0012664377135076289,0.9998549992913074,2.2154657790642562e-07,0.00022988000953187216,0.9982182565957992,0.00028608984178950215,4.665970196511612e-07,0.0003949230906543998,0.022405780692390895,1.4409218457843857e-06,6.571613558064421e-05,0.02143432355977767,1.7252383953016204e-05,0.0010881405271102593,5.8814569688598836e-05,0.9166541071596369,1.4442076262666804e-07,0.9678542628797898 -platano,object,0.0012765194585516897,0.9999880474150837,5.925514034263785e-05,2.474540038179396e-07,1.4557086298403043e-05,0.9993337786013891,8.418687954503643e-07,0.9996963770301495,0.9994196485115409,0.9981783345530945,0.45438165369233297,0.6668051588221179,0.3085289816935206,0.9999814912545288,2.94707534050496e-05,3.4381827144516374e-05,0.0007225819129458142,0.00010811689327736316,0.9867984130289968,0.9999543571645757,0.4021392985727981,2.8729687098465874e-05,0.9998821413443045,2.3404212801872694e-06,0.9986166997344352,1.016561232744214e-05,0.00010888476839978626,0.9974750399114608,1.3125092638418688e-06,0.9996186390831087,0.9997191740448287,0.00020452552479709987,0.9999751719824232,0.9754715660681303,2.1633304733088394e-05,2.676535237693907e-06,0.999900886262161,0.00017881160810825938,0.9999978721206828,0.9999986875620536,1.28142204744952e-05,0.9993167909859765,0.9991016204310742,0.9869509907964557,1.0103015067453831e-06,0.0019661622992117552,0.00014191490172138477,2.841477402537412e-05,7.899833456196152e-07,0.9884947772458238,0.9992804247687724,8.522733729694496e-07,0.9987269082826782,0.9999812093987708,1.6801093896155076e-05,0.999997067612822,0.999843686184969,0.9997836907489668,0.7844856109553418,0.12720301828093286,0.11671986737503284,0.8413872299298393,0.001096201429984608,0.9982275575931456,0.9985719249700659,1.1901198092916682e-05,1.2078209795509358e-05,0.9953250139908411,0.9985582039765063,0.999785717784611,0.9999441373252793,1.0610721130368672e-06,7.193985170704282e-06,0.9954466302209328,0.9999912445488605,0.9990666410621603,8.946608695847885e-06,8.97262013967285e-06,1.4898090352202967e-05,0.9996956043473983,0.0009817330100217478,0.9982917989998823,0.17570184758023308,0.9997923887687199,0.9993963773934539,0.12460715863522294,2.6689214115811745e-05,0.0001970416058977407,0.0015633951400110585,0.0008501559328468806,0.9983808560595301,5.419098693793964e-06,0.9999044643209543,0.9984229332637159,0.9995584364258712,0.9995315035499754,1.362057701600001e-06,0.997873389269812,0.9131837042346476,0.999519521765071,0.9992028485091291,2.3161559366861153e-05,0.9999045444140934,6.655760131838314e-06,0.48089295739799354,0.999984638458149,1.3465111572524695e-05,2.3602600968543786e-06,2.637198938843814e-05,0.9999955762558842,8.613489908990863e-05,8.424545860680794e-05,3.6626460623501947e-06,0.7772785198189299,0.9919905816598976,0.15431632712146678,0.9767303388422164,0.898911665756671,0.822967052558915,9.93137079518164e-06,0.0002821615048565297,0.9514230464113627,0.9727549942289646,1.4144110092538603e-05,0.9606848292578176,0.9999967264393564,0.9317688973020759,0.9905984266282444,0.9201232112126255,0.9068056078548202,0.99992473418656,0.9176552335796544,0.9986658723318064,0.9971783677191061,0.9794538950546612,0.9955229159376663,0.05304624865639492,0.9532632186309563,0.9136940791335765,0.9991549163783048,1.085267454257632e-05,0.0008771054442589076,0.9998924469225314,1.0191599398890857e-05,0.9999822417424207,0.9999268527385716,0.9999910197937787,1.957093668626655e-05,1.6776913250601885e-05,1.1876814285027359e-05,2.107631165522374e-05,0.919956823876859,2.7087314816146205e-05,0.256479483056817,6.014060024275969e-06,0.2188916378544801,0.7254168899158753,0.9992862661833508,0.9970978234254211,0.9750092948329352,0.999800830408634,0.29318488541693777,3.82493567915982e-07,0.9998417755420206,0.9996772395886407,0.9993941737291234,0.9985350784503635,0.3746950225687646,0.03422846686409277,1.9771070197189436e-07,0.940977089682276,0.9976406641983521,0.9640116361918145,1.279036112218624e-05,0.9394689658662461,6.078306235675373e-06,2.7827503755939354e-05,2.327970274404984e-06,0.9998954201021254,0.9996822708648585,0.9992869497647254,6.330115216182705e-07,3.350402106138581e-05,0.9999459965438084,0.9999553421871226,1.3667952294328511e-06,1.468440820029663e-07,0.9999926356242577,0.2134825792556844,0.3597583596578169,0.1667229992525801,0.5226625343513845,0.004327717757625207,0.9999403510024473,0.8683515011877833,1.6056038745186e-06,0.9860162375570269,0.394850374441086,0.9995569402069343,0.9999916336705943,7.982997211791392e-07,0.6811629706676096,0.9995376943043521,0.00037725837283816605,0.9986727799489756,0.9999968296778715,1.0309445407710949e-05,5.7195050071270396e-05,2.9012393694036716e-06,0.0006762433757613738,0.7526129304963922,0.00016648567234899654,0.9988268422663635,0.08169092426861645,0.9996410029023187,0.9934372096751392,0.6015572257522318,5.84980405592706e-08,0.00017756354084515238,0.00014102563068428548,5.926750891980951e-05,1.996981965052953e-05,0.9999633417011706,0.999801016092534,0.9629929051050193,0.03695585664430273,0.9999968234609847,0.9827749735180427,5.072987996847099e-06,0.0001362349938170265,0.0702264280826118,0.1561432259016792,6.006570654336648e-06,0.9999537615147023,0.0003434110065459809,0.002132017298031379,0.00014957901156143456,0.9996949545550742,0.9057649555352038,0.9344734749408615,0.00014043382474875893,0.02648749978053877,0.025355541278210925,0.9974834293043605 -plátano,rgb,0.003068957026038939,0.9999999999950766,4.573391233794015e-05,1.7423501237648096e-13,1.2637041860402353e-06,0.9999999999994367,2.460187631494189e-07,0.9999999999755627,0.9999999999677114,0.9999999997896996,0.11514416543277606,0.0029879201062262646,0.005755233101551739,0.9999999999891953,2.933406783716442e-13,1.708246583960147e-07,0.0011807506624835755,0.0015152438680464584,0.0017382719531755344,0.9999493342182141,0.014698266131490424,1.871769120816518e-05,0.9999999999991085,1.007662607482843e-07,0.9999999999992499,1.1232184317861581e-07,0.00629275300912665,0.9999999999987241,5.939887361926769e-07,0.9999999769163846,0.9999999999994218,2.9477432423047046e-05,0.999999999998789,0.9999996679602469,3.2989502879630844e-08,1.4080952260477675e-07,0.9996877192949929,0.0006154726995459512,0.9999999999925369,0.9999999999906619,1.7753674770328338e-12,0.9999997893694024,0.9999999999992377,0.9999998979715357,7.193434954481573e-08,0.001619757024465718,5.199621312035177e-05,4.56091021259328e-05,2.3564964653198334e-07,0.9999998393109008,0.9999999999993807,1.2790435457483187e-12,0.9999999999304667,0.9999999999960503,1.1659703804427783e-07,0.9999999999955846,0.9999986717383974,0.9999952419284307,0.004070803487283551,0.011640929159281646,0.10301834731344559,0.015191028904549597,4.1046513901065625e-07,0.9999991089049012,0.9999999017602844,1.440470388170461e-06,1.5097231837164018e-07,0.9999999998742612,0.9999999999660947,0.9999999999744749,0.999999999997544,4.76511335972316e-13,2.4062878416498502e-12,0.9999999997820124,0.9999999999996507,0.9999998320128269,8.070513371799444e-08,6.202260084001668e-07,9.02684483517474e-06,0.9999883300770364,0.006400802703644903,0.9999980339456154,0.9749281529969809,0.9999442169526717,0.9999999999745155,0.8944421068563091,4.173761218448449e-07,0.0002322437103755264,0.022472898389777035,0.00838910808067264,0.9999999999684441,1.868629232237684e-06,0.9999996640419876,0.999989042718689,0.9999781810289912,0.9999545284843735,4.1723240129396184e-07,0.9999410933663768,0.999998461774555,0.9999573356176026,0.9998356230564429,8.525692220109902e-08,0.9999999999883615,5.087394748215547e-13,0.9996875432803212,0.9999999999994744,4.008763167496457e-08,1.5281144890753036e-07,1.6389708332864009e-07,0.9999999999850269,1.1185517578777165e-06,6.787943038256828e-13,2.1691739099330735e-13,0.0073390191116946245,0.036556703460428504,0.10011998700631637,0.9999999902776283,0.828956575512087,0.002199543061011257,1.5152538433736975e-05,2.168229456988803e-05,0.36289487790713437,0.9999999634869507,1.2292948523495854e-12,0.020663840993003155,0.9999999991676112,0.31977211235329167,0.9999999943474791,0.9999969449651261,0.9999883562803318,0.9999848275533324,0.9999988246091753,0.9999999999995135,0.9999999998080948,0.9999999846681773,0.007880686592770957,0.002582693855647219,0.002600390506889414,0.9999995247706266,0.9999999512965384,2.743415442645878e-08,2.791061394659723e-06,0.99999999999726,3.153198206778656e-12,0.9999899187557661,0.9997506497279053,0.9999997135351869,5.3905925453529926e-06,8.880353580515038e-08,3.8577098637021896e-07,1.3525448725128898e-12,0.9998967797612079,2.3312532923207977e-07,0.13044646698183845,1.2137744029497387e-07,0.011202530027208972,0.005764114753010415,0.999999999999581,0.9999999999930873,0.003560954980039212,0.9999999999999496,0.0027668984275038876,3.2870743505716025e-09,0.9999999999992801,0.9999999999997007,0.9999999999998785,0.9999999999995342,0.009501115507735148,0.013463180985762288,5.48706388317499e-13,0.9998687879328099,0.9999999999993752,0.9999850215698958,2.721499201609673e-07,0.9999073981946277,2.5350699942894375e-07,2.8649589181073122e-06,1.104168851440203e-12,0.999999999999982,0.9999999999996116,0.9999999999993827,1.0521974132856555e-07,4.649533134292018e-08,0.9999999999989266,0.9999999999994698,2.550492027773927e-07,1.3297826012082261e-11,0.9999999999974587,0.013076150973052179,0.005399740365299514,0.12309477852332469,0.9999672512620927,0.002642690365061171,0.9994578643364435,0.9999941566831833,3.524828449814855e-07,0.999999987946299,0.0333184492397404,0.9999999999990472,0.9999999999948583,1.8851448442245742e-12,0.9998658800602674,0.999999999999198,0.011643728156477616,0.718352850077473,0.9999999999924059,1.0740133206229623e-07,9.10859548121578e-13,2.367025323664901e-13,0.002990364190768376,0.9999296118398959,0.0013179962344532594,0.9999999999990496,0.007461605397758744,0.9999999999999052,0.11687131906133319,0.005439571583660046,1.0047546189697604e-06,0.000226665015171024,1.0820279049771391e-05,2.3867805698373436e-05,2.8886954857476617e-12,0.999999999997204,0.9999982394840109,0.0018226111495476328,0.0015818843627957116,0.9999999999950924,0.004509754604581122,1.10023262070523e-06,2.1900977029401113e-05,8.56330177864061e-09,0.9859652993174345,2.134299672160127e-12,0.999999999989883,3.346572264370477e-05,0.01943340468658228,0.0020659296679387735,0.9999998954780929,0.9999975614869634,0.9999587135550083,0.0004988910853826526,4.7890372319933185e-08,0.3877407446387979,0.37743160305728995 -plátano,shape,0.0005426552666464333,4.279499913223625e-05,9.792109158185762e-05,0.0002922856277448762,0.0007186547128646898,2.5844318714885553e-06,3.1036502923200656e-05,0.0004862019860678851,4.168598211038912e-06,0.00012543990560104161,5.101177395845337e-06,0.0710128160766813,0.00022294491804979437,2.2415874617982166e-05,0.0006997383192405026,0.000282733757409329,4.3133452436862896e-06,4.529512994807349e-08,0.9999960766904917,0.9999799755278684,0.008741007762089088,2.638622957883505e-07,1.4112267757452916e-05,6.396490885378216e-06,2.2197936806881303e-07,7.275228663577409e-07,0.001663123374752349,7.12549957334571e-07,3.708935218456071e-05,0.004320394988881848,7.026617376391486e-06,0.000428620638657485,0.012548520551476577,0.0012999329828721632,1.705511637220629e-05,0.008351019172038746,0.9998437255024469,0.00021739275083640323,0.9998000804642025,0.3620620188294024,0.00032444910725812256,0.0007364527049886516,5.869463826872889e-07,2.211658158257738e-06,2.8780352934860663e-06,0.010892988951228203,0.0017903331684075297,9.409922090018459e-05,2.2768381028081024e-05,0.0002276844764671831,2.02778759423671e-06,0.000526456665086816,0.0003652598531444071,0.000336512777339196,0.00022896164439385145,0.9793926269581639,0.010636848519716673,0.7034968643338957,0.573889631794134,0.00019963725993011035,0.00010219585864129193,0.2852519526472806,0.9522959662106328,2.218863026328876e-05,4.1451057500204786e-05,1.9055098453823583e-06,3.1998118955655604e-06,2.586371545654897e-05,1.9630695336927095e-05,0.001855396442751,2.7399875370010307e-05,2.3933939843229517e-06,9.337795194822808e-07,0.0002561486903580411,1.7329536839182547e-05,5.298984505047522e-06,3.246627438679034e-06,2.8416030170725063e-05,7.460791702835474e-07,0.7998165853254751,0.014674206370203878,0.0001473720816580908,0.0005673144594047902,0.9795592731937075,0.001664646577249279,0.0006226691625847567,0.0041942813958647475,0.00043600359960099924,0.05723274521210979,0.0031189694546782942,3.921106772556067e-05,4.9288503371341164e-05,0.007324744848046566,0.00012527045497896176,0.0047634880042355145,0.08401596348474531,4.94977228394792e-06,5.627109617608117e-05,1.8264485051871683e-07,0.07805840406332548,0.6306653476020407,3.5521855618603564e-05,0.00014874015241965954,0.00010256156010742508,3.6798140126479285e-08,0.007356933562163729,1.6387257305051747e-05,3.852890563581785e-06,2.5506644047843126e-05,0.0781790790117787,2.0891321635249854e-06,0.0004751431310569347,1.8163003276923114e-05,0.012583111109471828,0.9836537736441648,3.1320256817405705e-05,0.0001870693201951044,8.87302219664021e-05,0.15798377253633344,2.1544305531085623e-08,0.02240578069239082,0.10362084452628055,4.864968954761207e-05,6.140584402382774e-05,0.39027527769037423,0.9998727224479835,0.030577476219682445,0.0020874690557848856,2.4579336845984445e-05,0.0002688735856842948,0.9999335930126418,0.0006053190768736995,3.1345090827007275e-07,0.00012469998076594497,7.992206081434085e-05,0.999878530070892,0.045586076841491914,0.9982959220764537,4.296338586106294e-05,0.0002988681907781607,3.108658093228258e-05,0.6306004881418931,1.2515341139582312e-06,5.116397571500388e-05,0.9999422565783601,0.9998813749918541,0.9998989094701689,6.80363443832962e-07,2.3036130739524456e-05,4.33052109998419e-06,0.00010007889393011002,0.0008818869975678522,0.06676718956018395,2.447523586497521e-05,6.263009608625564e-05,0.0017277977631292559,0.07101281607668085,7.08857747606554e-06,1.873527978635267e-06,0.958638622655035,2.2792063053435443e-06,0.0009841246623009683,0.06562907161932324,1.0364401882459177e-05,2.5141780990058795e-06,1.345234213232937e-06,1.0413938420177144e-06,0.02627104288897644,0.0006469909894632333,0.0001499961070422099,2.0112534445893916e-05,7.29826858167517e-07,0.0007425723947336504,0.00044119986401270554,0.0013529249393321816,2.458441802677091e-05,0.00038121555317517105,4.042791757402314e-06,1.8559522976088943e-06,1.2380444213199985e-05,1.2186839231667525e-06,5.7233773801599e-05,0.00038865187931374026,0.0010371958337052165,0.0008810855162289928,2.5521717911792502e-05,2.5236543712580974e-07,0.0034352436468071995,0.001643163794908088,0.00012220384067295433,0.0017074101991765927,8.172618116518479e-05,0.09016119022610149,0.9998579015858624,0.00019479790252038126,1.394065033701736e-05,6.526155260758644e-05,0.00020274926382524968,3.25503914826638e-05,0.0007566832425709421,3.190883304074338e-05,0.00010904067914521603,2.210902544864085e-06,0.02357205411379667,0.9640217347889753,0.0005646130027975727,3.8851043437709746e-05,0.00010124880602182923,0.0002694472767535765,0.012718383965978344,0.00036917550725133443,6.263507350242008e-05,9.581389360280673e-07,0.00021646276014375724,1.0010390533249884e-05,0.9906382981883909,0.009933740938754964,1.5769766114786594e-06,0.00010647013235140963,0.003284545262533677,0.000868267775293805,0.00010570796704373065,3.726672458532191e-05,0.0014579443890136465,0.9886790720440847,0.00025917432479753255,0.0012664377135076289,0.9998549992913074,2.2154657790642562e-07,0.00022988000953187216,0.9982182565957992,0.00028608984178950215,4.665970196511612e-07,0.0003949230906543998,0.022405780692390895,1.4409218457843857e-06,6.571613558064421e-05,0.02143432355977767,1.7252383953016204e-05,0.0010881405271102593,5.8814569688598836e-05,0.9166541071596369,1.4442076262666804e-07,0.9678542628797898 -plátano,object,0.0012765194585516897,0.9999880474150837,5.925514034263785e-05,2.474540038179396e-07,1.4557086298403043e-05,0.9993337786013891,8.418687954503643e-07,0.9996963770301495,0.9994196485115409,0.9981783345530945,0.45438165369233297,0.6668051588221179,0.3085289816935206,0.9999814912545288,2.94707534050496e-05,3.4381827144516374e-05,0.0007225819129458142,0.00010811689327736316,0.9867984130289968,0.9999543571645757,0.4021392985727981,2.8729687098465874e-05,0.9998821413443045,2.3404212801872694e-06,0.9986166997344352,1.016561232744214e-05,0.00010888476839978626,0.9974750399114608,1.3125092638418688e-06,0.9996186390831087,0.9997191740448287,0.00020452552479709987,0.9999751719824232,0.9754715660681303,2.1633304733088394e-05,2.676535237693907e-06,0.999900886262161,0.00017881160810825938,0.9999978721206828,0.9999986875620536,1.28142204744952e-05,0.9993167909859765,0.9991016204310742,0.9869509907964557,1.0103015067453831e-06,0.0019661622992117552,0.00014191490172138477,2.841477402537412e-05,7.899833456196152e-07,0.9884947772458238,0.9992804247687724,8.522733729694496e-07,0.9987269082826782,0.9999812093987708,1.6801093896155076e-05,0.999997067612822,0.999843686184969,0.9997836907489668,0.7844856109553418,0.12720301828093286,0.11671986737503284,0.8413872299298393,0.001096201429984608,0.9982275575931456,0.9985719249700659,1.1901198092916682e-05,1.2078209795509358e-05,0.9953250139908411,0.9985582039765063,0.999785717784611,0.9999441373252793,1.0610721130368672e-06,7.193985170704282e-06,0.9954466302209328,0.9999912445488605,0.9990666410621603,8.946608695847885e-06,8.97262013967285e-06,1.4898090352202967e-05,0.9996956043473983,0.0009817330100217478,0.9982917989998823,0.17570184758023308,0.9997923887687199,0.9993963773934539,0.12460715863522294,2.6689214115811745e-05,0.0001970416058977407,0.0015633951400110585,0.0008501559328468806,0.9983808560595301,5.419098693793964e-06,0.9999044643209543,0.9984229332637159,0.9995584364258712,0.9995315035499754,1.362057701600001e-06,0.997873389269812,0.9131837042346476,0.999519521765071,0.9992028485091291,2.3161559366861153e-05,0.9999045444140934,6.655760131838314e-06,0.48089295739799354,0.999984638458149,1.3465111572524695e-05,2.3602600968543786e-06,2.637198938843814e-05,0.9999955762558842,8.613489908990863e-05,8.424545860680794e-05,3.6626460623501947e-06,0.7772785198189299,0.9919905816598976,0.15431632712146678,0.9767303388422164,0.898911665756671,0.822967052558915,9.93137079518164e-06,0.0002821615048565297,0.9514230464113627,0.9727549942289646,1.4144110092538603e-05,0.9606848292578176,0.9999967264393564,0.9317688973020759,0.9905984266282444,0.9201232112126255,0.9068056078548202,0.99992473418656,0.9176552335796544,0.9986658723318064,0.9971783677191061,0.9794538950546612,0.9955229159376663,0.05304624865639492,0.9532632186309563,0.9136940791335765,0.9991549163783048,1.085267454257632e-05,0.0008771054442589076,0.9998924469225314,1.0191599398890857e-05,0.9999822417424207,0.9999268527385716,0.9999910197937787,1.957093668626655e-05,1.6776913250601885e-05,1.1876814285027359e-05,2.107631165522374e-05,0.919956823876859,2.7087314816146205e-05,0.256479483056817,6.014060024275969e-06,0.2188916378544801,0.7254168899158753,0.9992862661833508,0.9970978234254211,0.9750092948329352,0.999800830408634,0.29318488541693777,3.82493567915982e-07,0.9998417755420206,0.9996772395886407,0.9993941737291234,0.9985350784503635,0.3746950225687646,0.03422846686409277,1.9771070197189436e-07,0.940977089682276,0.9976406641983521,0.9640116361918145,1.279036112218624e-05,0.9394689658662461,6.078306235675373e-06,2.7827503755939354e-05,2.327970274404984e-06,0.9998954201021254,0.9996822708648585,0.9992869497647254,6.330115216182705e-07,3.350402106138581e-05,0.9999459965438084,0.9999553421871226,1.3667952294328511e-06,1.468440820029663e-07,0.9999926356242577,0.2134825792556844,0.3597583596578169,0.1667229992525801,0.5226625343513845,0.004327717757625207,0.9999403510024473,0.8683515011877833,1.6056038745186e-06,0.9860162375570269,0.394850374441086,0.9995569402069343,0.9999916336705943,7.982997211791392e-07,0.6811629706676096,0.9995376943043521,0.00037725837283816605,0.9986727799489756,0.9999968296778715,1.0309445407710949e-05,5.7195050071270396e-05,2.9012393694036716e-06,0.0006762433757613738,0.7526129304963922,0.00016648567234899654,0.9988268422663635,0.08169092426861645,0.9996410029023187,0.9934372096751392,0.6015572257522318,5.84980405592706e-08,0.00017756354084515238,0.00014102563068428548,5.926750891980951e-05,1.996981965052953e-05,0.9999633417011706,0.999801016092534,0.9629929051050193,0.03695585664430273,0.9999968234609847,0.9827749735180427,5.072987996847099e-06,0.0001362349938170265,0.0702264280826118,0.1561432259016792,6.006570654336648e-06,0.9999537615147023,0.0003434110065459809,0.002132017298031379,0.00014957901156143456,0.9996949545550742,0.9057649555352038,0.9344734749408615,0.00014043382474875893,0.02648749978053877,0.025355541278210925,0.9974834293043605 -por,rgb,0.999999999191816,4.7766681289141595e-23,0.9999966725759477,0.9999556231178959,0.9999998094888841,1.2928168021505647e-15,0.9999999999999962,1.0830235176886076e-11,1.296214608082388e-11,3.5080357233929805e-10,0.9888510162807046,0.9996489433628285,0.9994414612997968,7.103465315684631e-23,0.9969714020082189,0.9999999999999882,0.9999998110097521,0.9999996009877445,0.9999997178620957,0.00046026857708134257,0.9999992661708075,0.9999999999897677,3.67368879381821e-15,0.9999999999999871,1.1550272659441612e-17,0.9999999999975471,0.9999999967936826,3.4996411270182015e-17,0.9999999999999558,1.425738714023006e-17,1.3365191329448306e-15,0.9999928242203346,5.043476280337422e-15,7.149677150849524e-05,0.0007896499493227001,0.9999999999999918,0.004018330061844315,0.9999999979172571,1.334490043141917e-14,1.1181242452143648e-13,0.9997431818769906,5.560649842410804e-15,1.884407533115129e-15,2.1105488921632182e-17,0.9999999999999987,0.999104624101442,0.9999816961787849,0.9999967917134409,0.9999999999999942,2.0070948742364756e-06,1.5809158998525891e-15,0.9998075107546157,5.571978843747196e-11,4.094527898432939e-14,0.9999999999999964,2.9207966256086934e-14,5.258454869645122e-10,3.064293207887823e-09,0.9995205900694403,0.9989661307970479,0.9911808188844236,0.9999995129930537,0.9999999999999474,8.018146689703613e-14,1.7074229665894394e-16,0.9999999999998093,0.9999999999993856,1.6805125453317345e-10,1.8562423054048157e-11,9.153830652900942e-12,1.7407565474540077e-14,0.9999537172072664,0.9997900861833541,4.657689355066745e-10,2.5926771234018416e-23,7.46001750210779e-15,0.9999999999991724,0.9999999999999087,0.9999999999960356,1.1180106451551658e-08,0.9999999971248752,1.30174206352637e-09,0.9969189144513224,1.1963620612272367e-07,1.0790081854247065e-11,0.9996057482685848,0.9999999999999694,0.9999999993590103,0.999999990670077,0.9999999958696171,1.758294675772055e-11,0.9999999999994329,7.016920159140296e-11,6.980955830218828e-09,2.6746244338064142e-08,8.148002344809519e-08,0.999999999999976,1.2987883971903713e-07,8.225472411295377e-10,9.484419707154202e-08,7.606292208025403e-07,0.9999999999999991,1.6633285140955677e-13,0.9998682396234134,1.4819523567712363e-06,1.0909366087621038e-15,0.9999999999999996,0.9999999999999769,0.9999999999830422,2.8346824392311087e-13,0.9999999999759395,0.9998963821446966,0.9997997997409138,0.9977592831230094,0.9957809744496074,0.9871529903438603,2.0010426069136414e-07,0.30438173930961,0.9997664378560435,0.9999998956871894,0.9999954256130538,0.8314949346307182,2.0037607307898815e-07,0.9999352462601538,0.9920019484834957,4.140249952686201e-12,0.8481110983942283,7.453681171215411e-08,8.624600717196701e-05,0.006626471997908707,1.3866657972120259e-05,0.00040987267276634365,1.0328625535318517e-15,3.69431472178759e-10,4.1923229237492815e-07,0.9999988208519857,0.9999996294936104,0.9999995153309396,7.120623726946411e-06,3.098901666653044e-17,0.0017315991111785316,0.999999999999515,2.213750798885705e-14,0.9999015507094127,5.850813003872876e-05,0.00249595053587287,2.4732981669456954e-08,0.9999999999981328,0.9999999999995466,0.9999999999999569,0.9999408793923618,0.028532398675506117,0.9999999999999862,0.9870517269312089,0.9999999999999962,0.998898041015479,0.9992409625560019,8.761156361690182e-19,2.800797549844067e-17,0.9999996550154062,3.2173922074992134e-20,0.999999717691392,1.0,5.032265567362045e-18,2.2951576724451005e-18,1.1475718464375291e-18,8.010729636639351e-18,0.9988589322391936,0.9987969937424543,0.9998786766543933,0.03118853817962624,1.5997850448632224e-15,0.0030075183058178873,0.9999999999999742,0.014844962185666635,0.999999999999996,0.9999999999989317,0.9955697134790276,1.0491149427109264e-20,1.0069435704419173e-18,3.2501164418112783e-18,0.9999999999999929,0.0005743487888189543,4.834976742314352e-15,1.1023166607810373e-15,0.9999999999999922,0.9999611230339694,5.293574080537728e-23,0.9988388119196104,0.9993600283207278,0.9890400685517454,0.07139974872337468,0.9999999993057471,0.006331128338014235,0.001570879746272332,0.9999999999999902,2.435302977095011e-07,0.9914963753551598,3.2933475559844347e-15,7.068375368236417e-14,0.9999147104362965,0.04767696996653336,3.354103886731937e-17,0.9999999929224013,0.48265393844498694,1.0665157658730128e-13,0.9999999999999969,0.9999182363817769,0.9985799656144884,0.9999999990299644,0.11040671817561626,0.9999999957005068,1.564280653948392e-17,0.9991959643196888,1.4025462874038456e-18,0.9640971372991437,0.9988783631451634,0.9999999999997724,0.9999592942008241,0.9999972658853484,0.9999889286150335,0.9998952512283401,2.2811972439760938e-14,3.0436760851517163e-13,0.9999994438051298,0.9999994511748017,4.802928356797062e-23,0.9999986376569928,0.99999999999974,0.9999954154137791,0.0008341547606322326,0.9975827740271203,0.9998695662991646,1.4745133741989597e-13,0.9999908430983302,0.9925876843389484,0.9996036604869326,7.653876248252506e-17,0.00055520037341601,0.011874517007736866,0.9999999992053628,0.001237771349573977,0.9525900805709551,0.9271216764910662 -por,shape,1.404396165035976e-06,9.866261229243523e-07,0.9999437142015839,3.8857878876430824e-05,0.9999999893419315,6.737156393122821e-05,0.00011403427075322088,3.7315359939534743e-06,9.781080500169613e-08,1.4686335602924534e-06,3.029771560127062e-05,0.00038989801675492114,0.00025642295964864827,2.999019712007549e-07,1.760686566667303e-05,8.648330612179654e-05,0.0008522173087545835,0.000552697881696616,0.0025750471000271636,0.000339128736825838,0.00033135723859838324,1.5539229999054834e-05,3.053782232892901e-05,0.0015074592892640485,8.132597315926739e-05,2.1443718501400596e-05,1.0574052208998742e-06,5.593189834063966e-05,0.0004126781100312125,1.4706016362050335e-05,5.568308654937547e-07,0.999999625288282,0.0002287778238104737,6.708378376624396e-08,0.0002643056882885533,7.69002672934079e-05,2.5291963102712856e-07,2.887134967888823e-06,5.059339691782009e-06,1.083525696584992e-06,5.574701138582541e-06,6.977013962887253e-06,6.697122801033061e-05,0.00011756533773948502,2.6852054387027234e-05,0.9999474901533898,0.9999999385035725,0.999949200065281,4.4590697843973225e-05,2.6926860307998006e-08,6.409745644327362e-05,1.0088999043426522e-05,1.1666070077044814e-07,1.1588780009026585e-07,6.88611744354615e-07,1.9253518504856733e-05,8.346571812353584e-05,0.0005983077734002639,0.00024018278866893826,6.187286388142268e-05,1.539090102325951e-05,0.0012340106911542708,1.4943079986892873e-06,2.9115688191024582e-06,1.690866182388439e-06,1.5860249951416058e-05,0.0002863279687736594,1.0868516465967268e-07,9.946378211125111e-08,7.990051647865367e-07,7.683478226678367e-07,3.31113369328755e-07,2.956730591670238e-06,2.7188001415802026e-07,2.0876616344855272e-06,2.1365569209739752e-06,2.9486159932754765e-05,5.603143020592092e-05,4.8630109198366956e-05,5.260639445585482e-05,4.610287165740123e-07,4.837103662416983e-06,2.0085924925924064e-07,0.00012806322947932311,2.1760460480346426e-07,1.243566949693219e-07,1.5116531677328307e-05,3.081550718423833e-06,0.00014419989721349978,1.4394804519037347e-06,4.482597427528489e-08,7.78626551619758e-07,4.996093003540365e-05,3.365781777209526e-05,5.740797726914993e-05,0.0003992800949727666,2.3399337339640218e-05,3.1429791979741804e-05,5.929745649531687e-05,8.856176100056448e-05,2.44287208023677e-05,0.0003326862617034191,8.775104605015796e-06,0.0002987734365476179,2.7367854772068546e-05,3.566051067651933e-06,5.041938204401459e-07,0.0006643878534456359,4.649154844020215e-05,2.826212094772763e-07,6.431568886990644e-06,7.567637131879566e-07,3.1906772622121003e-07,5.726253395434367e-07,1.4169657787291684e-06,0.0005049589535487268,9.699301637414519e-08,3.6662319708710187e-07,1.0071583131773657e-06,0.9998483221753213,0.9999998763929547,4.646895587438598e-08,9.126633552977462e-08,1.6525255991669745e-05,4.68013751399794e-08,7.601709101891715e-05,8.959066027621482e-08,1.8815596686545395e-07,3.8683735094736164e-08,2.223872015236073e-08,0.00010024594274512788,7.61215380302076e-08,3.815535614495183e-06,1.660244392028751e-07,1.6642723391593874e-07,0.0001567084304409806,1.3993023193373965e-05,0.000558968060655007,7.278421333342703e-08,5.311333565666052e-06,7.02117093177941e-05,4.735505583136721e-07,1.228924155296645e-08,1.2696445995384337e-07,0.0018453444474947538,6.634434590883932e-05,0.00016394406213609517,1.1495905642929139e-05,3.5664904075035446e-05,1.376511175620489e-05,6.046264869984746e-08,1.7867745557474214e-05,0.00020725079562422533,1.998797561298183e-05,1.1457764578446326e-07,0.00020936641607440098,0.0003898980167549243,0.0001974904111484362,9.519047211300145e-06,0.00391831419356917,8.704598670414074e-07,0.00030235316434529003,0.021496960420816634,1.4519029922034887e-06,8.151769645879614e-06,2.020092596222072e-05,0.00012230532076040336,0.00021044378888881887,7.473390685461967e-06,0.00012485565666629366,1.6803841745390104e-05,0.00034654651809276464,5.390897638985626e-06,3.901751618198518e-06,4.554332616802686e-06,1.8482505571584852e-06,3.4434465859629757e-07,2.2317608249519838e-07,1.11083033424669e-05,1.654980020204535e-05,2.3019783588673542e-05,0.0012701430225054906,7.610457531829535e-05,4.0427557112792325e-05,2.303174961769618e-05,3.0630616352948956e-06,2.530746278904715e-05,3.866350228295382e-05,7.893457928835898e-05,0.000207173693696802,9.784134757007705e-05,6.589368947672927e-08,1.3047603859361567e-06,2.7452202478407804e-06,1.764817696708815e-06,3.550826810005078e-06,2.6771650338892337e-07,5.873278979436206e-07,9.099959570675249e-06,1.1829338412948674e-07,4.482792349304477e-06,1.557234071790912e-06,3.867358628016178e-06,8.161810533862115e-07,6.578223108858737e-07,1.5158851998173437e-07,1.1772296418456207e-06,3.4339450117965715e-07,1.1822639922837142e-05,8.806408259023864e-06,6.317548175686913e-08,1.4777728090542078e-06,1.2341212051903415e-05,4.5637774139607165e-05,1.2883800923923207e-05,4.1969778223509683e-07,2.2832193419355862e-08,0.9169292150566533,0.9999793817603164,0.9999999594211203,0.9999999931872088,1.0640732246961804e-06,1.0632562565713595e-06,1.7624379667670526e-06,0.00018015601348603564,0.0006825550771635227,3.08590773156741e-07,0.00026487066000882494,7.362170095643611e-08,0.9999902382359448,2.1067655185956653e-06,1.2018921484952685e-07,1.032780720280401e-06,5.405482161227683e-07,0.9999998763929547,0.9998811525115775,0.999943785107947,2.5098483687839394e-05,1.9923905542585274e-07,9.167587436001817e-08,2.782851870963775e-06,4.412999914303167e-06,0.004120091382009911,2.6173223650870195e-07 -por,object,0.0009859609439596961,1.401513464046918e-08,0.9999575616188388,0.00046934084347651926,0.9999999760482597,5.9407299617861766e-05,0.5334200723457121,2.885436987794277e-06,1.497968759161659e-07,2.2116251140060452e-06,0.00021573386295050867,0.0021897654654534117,0.001971086089336943,3.296531273424793e-09,8.989766250748882e-05,0.3003103113807332,0.01680474055643223,0.013155994807343011,0.02485414025282217,0.00018541933407967065,0.006916146117064173,0.01094686173884025,1.3712762891671473e-05,0.6102504126743654,1.2000141849886602e-05,0.0089876274358554,0.001147881784198586,9.330834327826986e-06,0.667046670893356,9.159038426895431e-07,2.966359987676388e-07,0.9999994901043612,3.532101984987637e-05,1.5100056072071576e-06,0.00019099529911581305,0.28143566005820136,1.6024341679583806e-06,0.00032331148634083876,2.823392237190944e-07,3.2647969151787937e-07,2.7758949008712053e-05,3.436636364915224e-07,3.687006513832692e-05,8.914832317246521e-06,0.26381764247495326,0.9999489821136597,0.999999846620343,0.9999590798029107,0.21800050117470965,2.932592388623609e-07,4.3438927452668714e-05,0.0001954878416633979,2.8631618495500743e-07,4.574502603442145e-08,0.006454406087666595,9.081923190643714e-06,1.5042593553775741e-05,0.00015316818591431456,0.0010759333941386315,0.0006970573209827351,0.00016169349668821437,0.022225066895898614,0.009265455579507928,5.311109489268395e-07,1.265655234643653e-07,0.020280645786215974,0.07804639416190612,2.6953829098943227e-07,1.717610176712902e-07,7.984372097727669e-07,1.91525558737286e-07,5.577173585733741e-06,3.48811093121138e-05,7.507308975673983e-07,2.9524916483520606e-08,2.658473599613234e-07,0.018652101133939534,0.062242576756501966,0.024340664050086034,3.2883991229928646e-05,0.0004816349660364599,2.593489799306925e-06,1.0273029139541972e-05,4.414893467438182e-05,3.8020027772590663e-07,8.17263281298138e-06,0.05723406792188424,0.000437501221151711,0.03263027371793378,0.0012347423863221527,9.762938012421889e-08,0.005152053739810901,7.58422054706447e-06,1.335769614162832e-05,1.751625069570153e-05,0.00013201083956704903,0.22836470699049538,1.577221729844122e-05,3.063720369545956e-05,3.855052456139321e-05,1.9636570115055195e-05,0.27407548689791694,1.8462337885854217e-06,0.0008082078516215062,4.297097856885555e-05,1.6805323878998828e-06,0.0048283252067056566,0.4486450941457323,0.014135750160825512,1.4104237161578675e-07,0.002492953162350935,6.342534243180975e-06,5.750170021324561e-06,1.5807235610204452e-05,5.256781325401986e-05,0.003831662336345925,1.3727507500662143e-06,4.9693726669290045e-06,2.7440270349792532e-05,0.9998914471944823,0.9999996916947382,1.2977109342631782e-06,5.787706671735123e-07,0.00010781996505781901,2.5401091870232007e-06,0.00010287949859615354,1.9259275383817038e-06,2.0633374612055944e-06,5.744144267160196e-07,7.302359894484382e-07,0.00011475340237077402,1.9307425860741617e-06,2.7514386305114662e-06,4.6578336074586856e-07,2.12859822895527e-06,0.002671655262592308,0.0006018344433991745,0.012797781866596032,6.201074813046878e-07,2.3359521516698263e-07,8.642334145951969e-05,0.002746237611969607,1.0227870938434716e-08,3.1483446629829114e-06,0.0041580526768279545,0.00023440592911361168,5.8422337689544504e-05,0.007362601855457197,0.023080697048855556,0.018512630170641035,1.9266453831605817e-06,9.818131339537522e-05,0.510027844643648,0.00019498865977588147,0.001001692006498,0.0023375239203989187,0.002009408949800608,1.627597740377242e-05,1.2344013100088384e-06,0.029143315249460764,8.484408091680655e-08,0.0069674871610258815,0.9814520791276182,2.5403743510269224e-07,1.4300199673356194e-06,3.615129709643364e-06,1.8885364474578353e-05,0.0019083933218965986,0.00012780207884461342,0.0028550654978947198,7.944294718458817e-05,0.00023828252516424042,2.553264280413585e-05,0.02583609697935181,1.6959737291362265e-05,0.020903565367973703,0.002206263609879546,2.98000991287281e-06,7.505174208313763e-07,1.954183402185584e-06,3.291028817813501e-06,0.7095622680959832,7.789692616528813e-05,2.792221392951842e-05,1.1894802544907566e-05,0.02815514466038858,0.0006245354582861668,3.869426507212708e-07,0.0009982541299054927,0.001250104947138466,0.0017264466807658627,1.9699594618041777e-06,0.0011829734465800524,1.0176728348561426e-05,1.0816021338055994e-05,0.045277512348601605,2.6978718777593256e-06,1.0827976134797473e-05,8.291325630381843e-06,5.670161547852092e-08,0.00011306830284646691,1.0301278973746564e-05,9.270135412806315e-07,0.0008159107852553979,8.79354388627609e-06,5.387194205228781e-08,0.012764401660976718,2.7543782212922077e-06,5.4651809389141954e-05,0.00475045148789826,3.195680055824223e-06,0.00021460934966502357,2.479722500610943e-06,0.00048738463275083854,1.8632151044523983e-06,1.0710991752499066e-05,1.069226044900549e-06,0.9999381169734828,0.999981987684402,0.9999998854023653,0.9999999787351945,2.0129429887555742e-05,2.6905611231927746e-07,2.6288075135706796e-07,0.0025694996293081037,0.013288346969173944,3.7009270357529524e-09,0.0024359913178311735,0.00102298769726787,0.9999942846372686,9.483186966359028e-07,8.880926541373213e-06,1.5718936766887016e-05,1.6860374849300163e-07,0.9999996621968472,0.9998434098587283,0.9999396263234218,1.0091594572969344e-06,2.540826431357891e-06,1.4371438473726527e-06,0.0004091247252186798,5.304159184325492e-06,0.02304704831028681,7.808088191114971e-06 -prisma,rgb,0.9999974920000825,1.0,1.1216319712849213e-09,1.0,6.40224088044652e-08,0.9999292083205017,0.999234862517187,0.9997524865688363,0.9983131998846051,0.9780450662785853,5.872274802818584e-11,3.2573205083089703e-10,1.7470741584631948e-10,1.0,1.0,0.9999999999999998,6.84581629365677e-14,9.264454957954754e-14,6.850476175976517e-14,1.4471538039028504e-09,8.354767980015617e-14,6.741752991604919e-13,0.9998474012517513,3.1795947784363115e-12,0.999986754202586,2.620948761127234e-13,0.9999999995166946,0.9999448320247183,0.9999999999999925,0.9999999999999685,0.9999242493537284,1.8158777669816862e-08,0.9996389437254471,0.0055537468187715185,1.0,0.9999999999999984,3.0994956774858203e-10,1.6387063326813354e-13,0.9747055085543952,0.9675190018404018,1.0,0.9999999984400518,0.9998460918441191,0.9999999999999991,0.9999999823652915,9.594745204994471e-09,2.765945978434209e-08,1.0505821905229797e-09,0.9999999865097091,4.471566639651232e-06,0.9999155624732178,1.0,0.9968973954418499,0.9959366925243326,0.9999999999848714,0.992446933384668,0.01600819716359218,0.004744468267316618,2.871467287185887e-10,1.1439261112326301e-10,5.012665424827776e-11,1.0175505961324968e-13,1.0,0.9999999581197923,0.9999999999994282,8.95839928111454e-12,1.0846349335249724e-13,0.9950997565125124,0.9995131744481086,0.999120227981758,0.9984205421389972,1.0,1.0,0.9929782570267129,1.0,0.9999999929081651,1.9247899100300238e-13,3.886548331206723e-12,7.598122744788032e-13,0.0018508348762492517,0.9999999946680316,0.0051128741905093035,1.0007862599729185e-10,0.0003004695151584432,0.9996050851334698,2.7524436909643528e-11,0.9999999999999973,1.316358666604605e-13,0.9978545023004008,0.9999999947858389,0.9997039130391373,1.0,0.0770994964742089,0.004488201319540452,0.0010416068030074817,0.00044468656114267276,0.9999999999999123,0.0002827185720014524,0.008332173182552386,0.0002816133736080153,5.743252845127482e-05,0.9120651231081456,0.9511238155704915,1.0,5.483837650656734e-05,0.9999366890011419,0.9999995598152093,2.2570477275576476e-12,9.166382149328555e-13,0.9269466644019972,9.120463053058539e-14,1.0,1.0,1.3940181139865895e-09,1.214601401930471e-10,1.0015565113832967e-10,0.12319347914688365,6.02439465705373e-10,3.0750126214985e-10,2.716570472834594e-11,1.6427453532440524e-08,4.927841097830531e-10,3.91205683745915e-05,1.0,1.4407709740268759e-09,0.019693511027091624,5.783540150226722e-10,0.15066848700335153,4.122921519477511e-08,6.573079693075082e-07,2.0290319402912206e-08,0.00027522413508168734,0.9999500044681257,0.9936459997145863,0.06937873223580883,7.348074126545431e-14,6.508547698431559e-14,7.390838316435322e-14,6.166829050213723e-07,0.9999999999999694,1.0,1.0,0.9981100062642142,1.0,7.48265907073607e-09,4.272559597282132e-10,3.986835084004313e-06,1.040306690955274e-12,1.400471139873572e-13,7.463640322818917e-12,1.0,1.2828120347294467e-09,0.9999999999999925,5.8002151696528677e-11,0.9999999999874725,1.3920596993988637e-10,3.067555008823199e-10,0.999999643806552,0.9999825522599115,5.837411324651492e-14,0.9999999956720729,5.760101716662612e-14,0.9999999999999618,0.9999957442995902,0.999998418760954,0.999999446246878,0.9999920421935377,2.1257607991541374e-10,1.0978674377188919e-10,1.0,7.627530996154322e-10,0.9999135792407673,2.4889238789330848e-08,1.0,8.879708709240975e-10,0.9994046219453225,1.0,1.0,0.9999999990483956,0.9999995400648686,0.9999976650952177,0.9999999999999998,1.0,0.9997614146059931,0.9999352758709028,0.9999999997491047,1.0,1.0,1.0971592500926507e-10,2.588617034334605e-10,4.972562296175747e-11,1.542147717302859e-05,0.9999991359950515,2.3737305674383233e-10,4.173435316667723e-07,0.9999999938072917,0.0450037144898677,5.338573231091756e-10,0.999782198498128,0.9936670170590409,1.0,1.1695734817892327e-09,0.9999529796764813,0.9999999991609936,5.257720136566894e-10,0.9825328122622825,0.9999999999777742,1.0,1.0,0.9999999765416218,2.1008076376017255e-07,2.814581998892469e-13,0.9999803713880957,1.9123489899043416e-10,0.999999412893586,4.498886921159069e-10,7.368901006137928e-10,1.0,2.7114263649384212e-09,3.941953441970102e-08,8.611941502872722e-08,1.0,0.9980204073671549,0.9999997628720443,1.0166399352387845e-13,1.1315102434169516e-13,1.0,9.845318213699584e-14,1.0,1.6045052406197322e-08,1.0,8.184254308435261e-09,1.0,0.9653513683490961,2.145992677511115e-08,1.4354459180954672e-09,9.869916076118103e-10,0.9999999999999596,2.9453626801608155e-06,6.403398891083311e-09,5.516504618233346e-13,1.0,4.0020948099614084e-11,8.81765214830875e-11 -prisma,shape,0.003035978428252187,0.46713700590166785,0.000283485919479331,0.015959572655684505,2.265018440969038e-06,0.8573615981062349,0.00017336712923005023,0.008259980352089299,0.9172721827062913,0.01617566478164962,0.660277909139882,3.0151659697875594e-05,0.8579257631557045,0.12126543846707181,0.9992676860553261,0.7994243156969587,0.8703871484980714,0.03658692918561386,0.011318039770236982,0.9959335611493403,0.9999127281665656,0.00016509015349526395,0.9999789071194496,0.03364260261477484,0.0042238292781113925,2.9442799510172894e-05,3.753589789655726e-06,0.000471547539777195,0.9991907274312715,0.9999573751303789,0.9998296478941582,2.123577530341115e-06,0.9999993553546046,0.00029016074055822203,0.9999983092858272,0.9999946274611634,0.014532117091861613,2.8305265102201697e-05,0.9968422559450166,0.03077236362098965,0.9999925700185702,0.998969341079823,0.9998088116021139,0.9998168845160792,0.999894453928822,5.364919132293511e-06,7.866072493031808e-07,0.5416240751688641,0.33919646703787937,0.0003302731954404627,0.9996308056062455,0.9201268822373262,0.00010096350571716602,0.9999855897202262,0.9991432828201069,0.999999990640951,0.0002683933214475028,0.0026366346305572177,7.203005599418176e-06,0.9998932873767049,0.9998357389124956,0.9994408382727821,0.9999514148718346,0.8324562618009018,0.9996886817170133,0.012286544004627796,0.0012074315540199295,0.005877477434375054,0.002914588946377575,0.09575192727642315,0.9999990650700871,0.6819615589807526,0.09003610893639186,0.00027382221652597674,0.4372455541262295,0.9833347089565946,0.0006512109173254965,0.19734634285155075,0.00014490472809666055,0.7473179008950015,0.0009950110954076062,0.0004684423394142307,0.0017036141706336292,0.006874327010327291,0.18031876819867643,0.0024034809176430917,0.999999534494203,7.233158932913479e-05,9.746598382124591e-08,0.000882106636506662,0.0028128267192836396,0.23511421423556017,0.00048298511604109997,0.004072421305120624,0.0031594790143739423,0.0007761323999814343,0.9999271149225606,0.004970727283826793,0.0741863387312245,0.0007389140120152483,0.0005929984866618825,0.9999439415613527,0.9999628174623412,0.9999109581544049,0.00038269922686264885,0.9999980641114623,0.9997349943027355,0.0037192730834726944,0.0006848642071356099,0.9999961756923574,0.722707414657778,0.9996735192078521,0.38917775836018204,0.0001554768538815741,1.7656353023604386e-05,6.28734752054524e-05,2.0842940721105914e-05,0.00046836388600133644,0.0005676428014329201,2.2660064446908347e-05,4.820715962070629e-05,0.01419238983673182,4.588372960218633e-05,0.9999839879397304,0.17149917080715982,0.5773922739533074,2.609960160001755e-06,1.6699388261210543e-05,5.576824802471335e-05,0.0004522155772751605,0.00017372440187614442,6.663852250951528e-05,0.9983515365099119,1.1358418831015028e-05,8.345230328510815e-05,0.999999979685464,0.9984886620184037,0.9862754076822546,0.00013396031130558827,0.999839883470261,0.999705340814625,0.9999999891156927,0.9999889516058544,0.9849602515172156,0.03351071183928215,0.0397165882551434,0.014489563475360517,0.0008021616515266991,0.0003949484179524696,0.0004914579524601427,0.9997661582752501,0.24017976197248284,0.9999184637459436,0.9999486949290463,0.9999877932252835,0.9998871690327592,3.015165969787581e-05,0.008871401831406093,0.027491268731197113,0.9999976971726642,0.32005760917673676,0.9996434071359158,0.9999145851914347,0.04100193245898665,0.12927826659394903,0.030670284196780646,0.7395894608005859,0.6289762362648903,0.9803027851027765,4.7390172616916744e-05,0.012735010194918912,0.30716788620358304,0.0006283407764754367,0.9999974493136322,0.0005890223052766616,0.8621536647745055,0.04147531850031474,0.6489994881838856,0.05064198850568808,0.00010133500022151885,0.0008534157775197914,0.9998814097964158,0.9994978685142807,0.9999793387832521,0.9999992261102821,0.0962788278586506,0.12956778481405387,0.9999536458626918,0.9999954633185719,0.004038885834929143,0.9975689291720148,0.0013496283790392818,0.00035117964119801614,0.9999992545432072,0.0007707439695561335,0.936158590669498,0.00014685341762035706,0.0001439345864774147,0.9994976588937483,0.9995967489106223,0.831944760739173,0.004270677445841727,0.05401722299107651,3.5450010156430597e-06,0.00038777161449251283,0.9998344153896926,0.999868236833119,0.9999203638892276,0.9999979703331385,1.8174114148686388e-08,1.8338700413512843e-05,3.2501044127480044e-05,0.045677231879549175,0.9984517991850095,0.0015284705519331176,3.2848505816209402e-06,0.00042730769886131494,0.9907332091227193,0.0014987905218684062,1.9475637208511236e-07,2.9423005928621917e-07,0.9999824248506224,0.9999949581507903,0.029901073033511298,0.8860080633685887,0.9995857541745048,0.013858134101689006,0.07681708532437329,0.5467844924467198,0.00039952815064513847,0.9997923722417685,0.01097716545065455,0.16039779377385216,0.999971694152504,4.820715962070629e-05,0.0001483743360671678,1.5508905816707245e-07,0.999992610814772,0.0001265867980393561,0.8733529696496426,0.00040288595296217994,0.9995332863773139,0.000378218635869269,0.00021274891644526689 -prisma,object,0.09695230776802,0.9993791379955554,0.00019957289822653847,0.32187232159267065,1.3737680043750057e-06,0.9964108010851683,0.01983872807421606,0.19002674692613178,0.9937131217359826,0.21845632465212306,0.0030584410197799228,3.5839319636779353e-07,0.0012317303542698234,0.9973414893772852,0.9999780274670583,0.9952712108938915,0.010533328153578032,0.00023068587230840235,2.1044369561031686e-05,0.19590037816064312,0.022765601460124837,0.00022459773711778835,0.9999768662030192,0.005072724999415486,0.8731692099084674,2.1494052187528778e-05,0.0007565729024193494,0.4291242654007857,0.9995665016484323,0.9999755412189464,0.9999172133011665,3.082766758132336e-06,0.9999969533167656,0.00037387709865267083,0.9999981551306902,0.9999948940654126,0.00012068340892707868,1.4187333977374313e-06,0.9910695605369746,0.6408189381365774,0.9999783358649713,0.9985608103416224,0.9999748520307775,0.9999843702518825,0.9998128370708507,2.8879386964937208e-06,1.80519816145944e-06,0.01585306844300253,0.9345542292736885,0.00023526809976818434,0.9999699920247912,0.9927483338489209,0.0049609356093332805,0.9999757783781902,0.9995236096835916,0.9999994595980701,0.00011615242386809872,0.002630279528853061,1.3606958341033563e-07,0.3923515180480584,0.4895573447368662,0.1019728225453108,0.9999928993588745,0.9299601901021352,0.9998740505860391,0.004484406012319376,0.0004894528155106386,0.2678006845634247,0.08096826410591475,0.7891667390575576,0.9999990322266206,0.99118858047452,0.8092373754137826,0.0062148075831426515,0.9990735532132775,0.9905482635190634,0.00020160711174440658,0.029715900802667738,9.510699431510483e-05,0.3564415018583294,0.02549848781058357,0.0002828728656070195,0.00014685669454734924,0.00326722582720556,0.519757901858968,0.0004781958136590903,0.9999991643104347,2.5970288876289242e-06,6.138307979194045e-06,0.07247104138211667,0.10418343633983285,0.9961579183060307,0.0003256984647399645,0.0011406287273377173,0.00040536328417866216,0.00011499740635114442,0.9999823702868842,0.0011572095650404285,0.014284112458747063,0.0005279196628018394,0.004232991730424952,0.999824549389513,0.999919608331541,0.9999770700777644,0.0003190638577736871,0.9999974847044248,0.9997178852309349,0.0013472032331592766,5.059906733224408e-05,0.9999742495228129,0.03007600919345078,0.9997563789664087,0.9890260674783352,3.3448821501204304e-05,9.939697378629407e-06,5.340694145173135e-05,0.00020492996164759095,0.0004291122101162252,0.00034409015288920766,8.748984169076282e-06,7.4780199917237e-06,0.00157012601563694,0.00010249044369770979,0.9999957707929595,0.0005565270180349298,0.16428454723121327,6.785793681073096e-06,0.00021309783208154406,3.294354119713083e-05,0.0001553949705103909,4.548085771039564e-06,0.0001302204514592629,0.9991849566465997,0.0005041228572560126,0.00022402811543767665,0.968813174333954,0.013784653272093255,0.009117580451505515,7.668299419897992e-05,0.9999557034382929,0.9999136774923092,0.9999999912337773,0.9999535312374107,0.992877028094224,0.0017057572306720438,0.0005712804492271018,0.00132145245010643,0.0002725745463281499,9.280950913999596e-05,0.00021724626788367018,0.9997961791558961,0.006521986064664491,0.9999471572573889,0.7653848106924068,0.9999131287881411,0.3876013147557185,3.8180165446643924e-07,0.9084764331537923,0.8231529979102616,0.5115840072128587,0.9841854714920382,0.005742521260467095,0.9999187062342454,0.7741888276717661,0.9725083263886425,0.9713253951120269,0.9975995169674317,0.0029070442478644188,0.019639863263996308,0.06708336162089819,0.0009224912160089398,0.9818953365627106,0.0003517363007209164,0.9999992270389171,0.0003762793449145722,0.8267155490690671,0.9966148901727604,0.9992533618139354,0.9941925828195,0.18925615929186088,0.416283747325253,0.9999830001244937,0.9997651890892149,0.9999328490130655,0.9999981949660287,0.8035134921933121,0.7590863633070002,0.9999978787605605,0.8075127108559913,6.590283573440382e-06,0.12083857110352833,0.004083712104358884,0.0007057935534587977,0.9743900184016282,0.0006174912921815537,0.9807864552973294,0.0002959992906399039,6.184180279308172e-05,0.9999416793411512,0.9996960559877968,0.9739375362657253,0.0003939860433201283,0.9151077549977714,0.0005777698283784747,0.00014453987048352717,0.9998723522392343,0.9998671255177759,0.9999848964521663,0.9999979179944456,1.9236624588049607e-06,1.3332306382700538e-05,6.992234066179895e-06,0.9378793398182916,0.04933477392308664,0.4768927352094958,2.147894779533126e-06,0.0001619014840690358,0.9999850658796859,9.01784337070376e-05,3.182015009070812e-07,6.18953705040549e-07,0.9999848484190852,0.9999980235990102,0.2959172139154029,0.000163229753740153,0.00186668217171811,0.9937469598656898,1.537001654773843e-05,0.9996035318742378,0.0003138970604907455,0.9999576896954877,0.0011837827683147048,0.8228283239082362,0.9997617969597355,8.01473191585559e-06,5.336215811149777e-05,5.333797290095475e-07,0.9999809733612822,0.00014231816203020718,0.05379673930242836,5.392385929755683e-05,0.9998357225265491,0.00032029699595571826,5.140994491057474e-05 -púrpura,rgb,2.863005158163978e-08,2.260585098658833e-14,0.9998886684337644,0.7068665905679855,0.9999807627019347,3.6318019116284995e-14,0.00017051801523999696,4.9850749185141825e-14,1.565335152162271e-13,9.451548876052483e-13,0.9768783542006523,0.9983379921775443,0.9974889975341203,3.505597785899603e-14,0.05323179485068654,2.3011625458268998e-09,0.9986303105520371,0.9986026608440493,0.9981126840601146,0.0004726449362016431,0.9727950384907272,0.9955219311917175,5.129342090260262e-14,0.9997303285240717,5.850658791913891e-13,0.9999965672371789,5.584245462198436e-10,1.178986652257648e-12,3.305522951823354e-09,4.764640017318368e-10,3.80819467051407e-14,0.999881992814815,9.645871531038476e-14,1.0685177785191552e-09,0.0013637113378852932,4.738275731366763e-09,0.003460962299338599,0.9858416658174288,5.137256181312861e-12,2.0079913649586e-12,0.7402909709309555,3.074387455478964e-08,6.293055388602745e-14,6.851742555047463e-10,4.940274000905962e-06,0.9984215813712877,0.9998192481843767,0.99988966419284,1.9325335437620573e-06,8.458498581680051e-08,3.966690049717118e-14,0.7440772458265587,2.5016300334897534e-13,4.208834354888875e-13,2.062766390373382e-07,8.159785700278327e-13,1.220742208466024e-05,4.5066855408586736e-05,0.9979547894550808,0.9959474812262609,0.9790850882021782,0.9597634550989473,1.7151215733989462e-10,1.992895880833023e-07,2.958089597667218e-09,0.9960275377620167,0.9999910088838686,3.6252562520152816e-13,7.719716157804971e-14,1.0365800167756536e-13,2.3771442636184437e-13,0.8384846232368982,0.8129552299985763,4.993606943993105e-13,6.302209047776653e-15,3.507701075411236e-08,0.9999962907134229,0.9987408621407102,0.9970677655291103,0.00011285570580197049,1.452847585086039e-09,2.0187389516558427e-05,0.0026990310598727163,0.0005602431439516927,6.534010776959425e-14,0.012138785956299183,2.856411714679453e-09,0.9935416891250866,1.3310418027658907e-07,1.2098757802573224e-09,5.771589412940431e-14,6.964420480633045e-12,2.8084911259613512e-06,9.457747165108621e-05,0.00021058818758934304,0.00044585667855893626,1.1091658531071377e-08,0.000591902827331567,1.5184194867930519e-05,0.00044823398097402334,0.0017550104471653037,0.002791009791839488,2.600270321708023e-12,0.6684813261838434,0.003040725688991002,3.482464848561381e-14,2.770818230129824e-05,0.9997040029103655,0.9999970338195454,3.234232735767711e-12,0.999984576652285,0.7614236943379417,0.39949433224843195,0.9963687520001193,0.9904276104970005,0.9789352872403739,5.971262560794159e-11,0.6795351343907674,0.9986669659305244,0.9999602853373267,0.9999045106249058,0.92254647158683,1.5847806108229365e-08,0.887062008806663,0.9922919781026406,4.0047527200484715e-09,0.9318396831965019,4.545960935027199e-11,4.752625421449975e-06,6.155421043468558e-07,0.0002388123249016355,8.558737662676555e-09,2.896268676621572e-14,4.589457960114098e-13,9.64900004262271e-11,0.9925445182765552,0.9971970767175081,0.9974870780952008,4.5058407689361814e-07,8.68681179850217e-10,0.0026007710784725366,1.1233663320509984e-10,2.591731676435283e-13,0.9146822101178391,7.804180966484008e-05,0.002929588645672082,3.758372857174143e-06,0.9974642081996815,0.9999944788382342,0.9986606990943582,0.901812020670847,9.61588881507784e-05,6.359210082404011e-09,0.974269591580402,1.860580630368886e-07,0.9960037538116532,0.9973641380598661,2.692388842338547e-13,1.0460365751371953e-11,0.995461602148106,1.3929561106487665e-14,0.9964816022110039,2.405117311344997e-07,5.753215458947417e-13,1.6622204644464403e-13,4.2525143207987356e-14,2.9040457221096237e-13,0.9963374972126376,0.995503496477061,0.6987021569887759,0.0001632182531969645,4.0310423831310527e-14,6.35066045965129e-06,6.185567022548146e-10,0.000148447354232976,0.00015028812811826686,3.45099886584698e-12,0.10734470409140356,3.1446702519581534e-15,2.452762422290343e-13,4.668244618744711e-13,2.194469746347596e-09,0.0012718232885787983,6.895249557447763e-14,3.537383188087994e-14,3.672862614616493e-07,0.9851556415917693,2.0274498253458904e-14,0.9955991787809764,0.9975213592607234,0.9756650236505039,1.4784613639364467e-07,2.0353937188606488e-08,0.006599699162880305,6.844788976880935e-07,1.0661727016256537e-06,1.1718927971429195e-10,0.9900021903882349,7.11632619642611e-14,5.327168879168444e-13,0.8933845088055726,0.00010479100418474361,5.619972086748326e-13,4.69037904672118e-10,0.782840874320213,1.1481018995835608e-12,2.546434171055111e-07,0.8339513196623676,0.0916209781234729,4.320565107055937e-09,2.2509465927302584e-06,0.9655417194796223,8.142867551557263e-13,0.9969511925360541,2.6379048943678258e-14,0.9735590586786915,0.9972533583216912,1.9176948923895938e-11,0.9996453658511605,0.9999310318164436,0.9998719404596762,0.9047508040328373,2.673651722414109e-13,4.966356416159267e-07,0.9984528426970684,0.9986784116120951,2.2672044765814994e-14,0.9966728282778891,1.654361647666324e-11,0.9999041939914751,0.0005270889291744885,0.00013731312981007482,0.861018781164803,1.946732496638036e-12,0.9998689507730641,0.9926343610091741,0.9985685817940666,1.7155397686803089e-09,1.5402177122905877e-07,2.1459022184999415e-05,0.96761005871825,0.002769437798992745,0.9242492672213718,0.9254933596947772 -púrpura,shape,3.798129567627352e-07,2.3416282436845563e-07,0.9999283069539704,2.8588315970311776e-05,0.9999999851396422,8.795659228157343e-05,0.00019819674453755258,8.85609016745379e-07,2.687159249514519e-08,4.831644578654687e-07,7.915085282962217e-06,0.00012549189951208071,6.457849723352247e-05,4.327163267296021e-08,2.3763034340873443e-06,4.1039624795764135e-05,0.00027198016070436806,0.00019652296500667833,0.00034699559431525,1.780476536581728e-05,9.959097533605182e-05,1.4236807797539218e-05,1.8542170258792002e-05,0.002693723906822585,8.265689125254787e-05,2.036466868730346e-05,8.352683418666164e-07,5.5860425158283414e-05,0.00044050145644001387,1.3964548420718944e-05,3.421776086630384e-07,0.9999996447728582,7.654744854139005e-05,5.4624648558686714e-08,0.0002639485233912127,5.9275152380736824e-05,9.718543654680105e-08,1.5801320080220178e-06,3.635496528149641e-07,1.261620193694103e-07,1.2788475656286911e-06,1.7720566640949324e-06,6.073800355304755e-05,0.0001058202043952218,2.7428927553744453e-05,0.9999540374870085,0.9999999513558729,0.9999424201969698,4.7151274544833844e-05,2.0527351293746823e-08,8.503143857972625e-05,1.2753214346528941e-05,6.15600316668309e-08,2.838172355006161e-08,2.0180934553232594e-07,1.2650909713527252e-05,2.8715764764903584e-05,8.563844390865701e-05,4.4752405314599125e-05,2.2343430753451615e-05,5.401066017472066e-06,0.00010412457784654533,6.000563534956166e-07,7.242959916516059e-07,9.99827383575153e-07,1.8756812841625952e-05,0.00024627763854108685,4.1963951721544075e-08,4.0582010684304494e-08,1.5267654340585798e-07,1.0868523044349476e-07,9.94135525124672e-08,8.069270531558342e-07,1.5394408553963139e-07,5.711056853401538e-07,6.576603341179335e-07,3.385447909989943e-05,6.960717708203275e-05,4.7785526687590125e-05,2.1917346593378852e-05,2.223629991381888e-07,2.9347890276223362e-06,9.126131018796777e-08,1.499682955489933e-05,9.359337333888465e-08,4.2828423398383276e-08,1.1205956246464516e-05,2.177339884242614e-06,3.7986842305417396e-05,5.908515886983569e-07,1.7555341949028936e-08,2.8422601397177257e-07,2.0539187465696843e-05,1.7509391705308978e-05,2.5657109639245076e-05,0.00011215519597465011,2.4691907098318576e-05,1.3109443341373429e-05,3.1394186068408156e-05,1.095772070095397e-05,4.647394256746645e-06,3.906074935364486e-05,1.4241647447456845e-06,4.4619992311756054e-05,1.2989097448761026e-05,2.9111921114408354e-06,1.2909588971736165e-07,0.0011578070366445837,7.747413945897263e-05,5.6989844613719045e-08,5.842241961056761e-06,1.1793007668127627e-07,9.762575739448393e-08,3.7837278767719243e-07,8.700253418430293e-07,0.000184032580049728,1.1894049277224183e-07,1.400506074659855e-07,2.158104257771144e-07,0.9997659168419141,0.999999872982431,3.042912531266149e-08,7.055438820942702e-08,4.329879643835347e-06,4.1857357800105774e-08,0.00010090051518563157,5.3045963165236675e-08,2.616025472797274e-07,2.8193726810549607e-08,1.7282589669873844e-08,0.0001125894426793265,6.134790633841398e-08,2.922245206487792e-06,9.65661447066212e-08,1.7879623726393046e-07,4.7409889258280374e-05,4.779936035038603e-06,9.045707930669952e-05,5.715454575237205e-08,2.8209670467287383e-06,9.138489110494335e-05,1.6311698994087946e-07,3.5206897857072427e-09,5.65427386277433e-08,0.00024907712711797413,9.756379448118132e-05,4.3301609026394106e-05,9.433665522935756e-06,3.761069629534956e-05,1.4042860356460178e-05,1.8723951762597484e-08,3.7692758669466237e-06,0.00018857741571272357,6.473331712126939e-06,5.98430485993978e-08,8.352948574625144e-05,0.0001254918995120814,0.0002590760252867505,7.3223243668406114e-06,0.00029203693766958284,6.931267399912878e-07,0.00011446749553470068,0.025703007410520003,1.2431349505364456e-06,7.96835494822815e-06,2.1919490469548542e-05,0.00015469594349679577,5.4584411516226116e-05,6.972254574490776e-06,0.00022876294041879,3.075755111629031e-06,0.000467085840312877,1.1122881416606112e-06,2.772029793433134e-06,6.75088001696451e-07,1.873499068280103e-06,9.151636247597762e-08,8.217039478776982e-08,7.130173755461379e-06,1.8382568139753228e-05,2.6411349890496735e-05,0.0006223459881631355,0.00010483179080079533,4.190326702868933e-05,2.2508964811148416e-05,2.9059520286061235e-06,2.7474191444427858e-05,1.9396602055184727e-05,3.757748831154778e-05,7.702219859302936e-05,0.00011493437547866103,2.9494103210524387e-08,6.467194610206468e-07,1.1025052347890622e-06,3.8967612898779046e-07,3.920311391010486e-06,2.468883724635195e-07,2.5431959701471157e-07,1.1644107775799357e-05,1.0283100293288449e-08,4.443983266893247e-06,4.6214054231799426e-07,2.8446472472454403e-06,7.225776186453102e-07,3.1255598026167443e-07,9.908562379097812e-09,5.083556202786899e-07,2.4804864519693375e-08,2.26046595848869e-06,4.129400249168523e-06,5.5735238781642803e-08,6.977814520726596e-07,1.3478276300288942e-05,1.7629595389683726e-05,1.4094621505706279e-05,1.3536087801147216e-07,1.3177673264100562e-08,0.8996521213660736,0.9999833927408792,0.9999999605946437,0.9999999924740178,2.6402785544617245e-07,1.5587413692845822e-07,3.2488955008920956e-07,5.5113344273421924e-05,0.00026014785111490627,5.349055205483125e-08,7.396065563057242e-05,3.142027783929843e-08,0.999992703805677,2.705830996660732e-07,5.3148257763951456e-08,2.645317730033593e-07,1.1520935403112515e-07,0.999999872982431,0.9998353023086302,0.9999246358920683,2.0156716178139242e-05,1.1084378013791178e-07,4.4453275476038677e-08,1.4031172788233935e-06,2.1639501791615882e-06,0.002063235085843515,1.88730684618089e-07 -púrpura,object,1.0628669215414931e-05,1.4334403476829555e-08,0.9999454219986389,0.00042335032038369946,0.9999999708328762,5.217625358058661e-05,0.041569604951672764,3.234520234337719e-07,1.6616739213764953e-08,3.109705184988591e-07,3.109203343162033e-05,0.0004428666226111877,0.00024260478478657635,2.6803929594172774e-09,2.096492287214887e-05,0.003881968380370521,0.0006887557508967725,0.00038839781010716095,0.00141141541188447,1.278905703417014e-05,0.0006296430375889361,0.0008224267118466106,5.487322488640141e-06,0.13751546608614484,1.4663425804332037e-05,0.0011392614945572252,2.9552557406297783e-05,1.0969590345094689e-05,0.032594287793005376,3.515146924261338e-06,1.0579886057961364e-07,0.9999995131039648,7.18431059712602e-06,1.9304104437027335e-07,0.00022402666650194394,0.0018203251077300263,4.1283231487655676e-07,2.848089379131784e-05,4.9026094156637226e-08,4.5841989742853904e-08,7.208308240173242e-06,2.018024745113507e-07,1.7729296720458245e-05,2.9588019335085062e-05,0.00518557597650979,0.9999584415325051,0.9999998972146943,0.9999521784130124,0.005500160983498712,6.097591198906917e-08,3.524981964028182e-05,0.0003064549477100008,4.8925700419964263e-08,6.503234712137276e-09,2.830153434433611e-05,2.3632800051016983e-06,1.0244929520321723e-05,2.364100685088106e-05,0.0001452782819931508,0.00011174767930664585,2.3280096479155554e-05,0.0006482664912603544,6.504544734528813e-05,2.607887642404613e-07,2.984673421028752e-07,0.0014247251824526421,0.010669591045489807,3.386966952742853e-08,2.7002775578186336e-08,6.439508396409469e-08,1.7131315932242815e-08,2.322743524561848e-06,1.3622718500732089e-05,1.2644409752794775e-07,2.8226397572369847e-08,2.0233497596068574e-07,0.0028773732053922908,0.005147134184993914,0.0019511478323335843,2.222612468556147e-05,7.190919802562776e-06,2.258777545088974e-06,7.735595634827528e-07,6.6607735695139245e-06,5.6388219150978814e-08,4.692698980457159e-07,0.0010715973279444991,4.810020788858346e-05,0.0005197880536772211,1.5522871985638675e-05,1.3484066448621448e-08,2.3845101800696948e-05,7.10502761720652e-06,1.162248224763304e-05,1.437796669710171e-05,4.472105486733901e-05,0.004132351749621305,1.0627106229361072e-05,1.8217394237738665e-05,5.856244715494177e-06,4.745521204048103e-06,0.0003643140913537145,1.178233743335987e-07,0.00010040533847878845,1.6787212162706468e-05,9.888478407081226e-07,2.117098019291237e-05,0.07754773526356652,0.0030145245679537125,1.7653054788969398e-08,0.00028503969019266187,1.974691848919417e-06,2.438841629833732e-06,4.025226297120671e-06,1.1324413662568152e-05,0.0005537483761697679,2.899143661833473e-07,8.261254747227669e-07,1.9818007390705736e-06,0.9998053185285424,0.9999997663153604,2.6197979579402284e-07,1.3670781231292638e-07,3.142880777695055e-05,5.826268391472728e-07,2.5150003793531652e-05,3.5254825184399567e-07,5.554348845749397e-07,1.0786342051011047e-07,9.230612822756842e-08,7.580537984726093e-05,2.568024324438953e-07,9.918126483527125e-07,8.791294897476428e-08,3.7033024101515705e-07,0.00029163264330631214,3.974758180254824e-05,0.0012317379715345855,1.4328253410606123e-07,6.248845371229816e-07,0.00012014587783456507,1.56687595047804e-05,1.2670477263172346e-09,1.1744359742388383e-06,0.00010634924201532095,0.00016997088090973565,1.734801850330347e-05,0.00048749469128400464,0.0030394220808032477,0.0009171933922198132,5.164636893155787e-07,7.2651538538245355e-06,0.021082283991840298,2.7648897739161686e-05,6.580497960770827e-06,0.00038299262445639964,0.00041271422825298157,2.7852529413880878e-05,1.3042284341629572e-06,0.0016107181000694806,7.698951344513235e-08,0.0009728731055892729,0.3607444118124108,2.2773090331246456e-07,1.5084443841471227e-06,4.16168302936093e-06,2.7428631855729633e-05,0.00021635689133506133,5.213738187086551e-05,0.007369733717632953,6.143759135893958e-06,0.00023522009788390507,2.1779460053551366e-06,0.0003384105896864595,1.4528783223565543e-06,0.0003917956092281325,8.556143002215847e-06,1.3992894956658488e-06,7.054057764394637e-07,2.86808080836735e-06,4.301409059489118e-06,0.012228898596400856,0.00011542365894575993,1.9094257947245117e-05,7.699179914668316e-06,0.00044925111593791705,0.0006400966933787445,8.240965919882191e-07,0.0002333583424425341,0.00029833240338953993,0.000916505926426144,1.5282844428716965e-07,2.092791115807793e-05,2.9493924897039893e-06,7.666110036825471e-07,0.0007934980078175069,4.905235890786163e-07,2.3701121124029207e-06,5.991558678942674e-06,3.3934934319394182e-09,0.00012044860245062468,1.1567092934759533e-06,7.068886764950756e-07,2.3863882387251586e-05,1.5657231040844372e-06,5.040030934568862e-09,4.6081864257131086e-05,5.213919190198108e-07,2.111735172604924e-05,9.446872027061694e-05,4.065825888802822e-07,1.3362802610273505e-05,3.097820410135901e-06,7.606473326772731e-05,2.102548177612655e-06,1.1990076616819706e-06,1.941217200770717e-07,0.9960181172146515,0.9999821209788592,0.9999999102441738,0.9999999840818972,4.622508759226753e-06,2.230432002121265e-08,1.3086936907980966e-07,0.0003730751426279972,0.0014974541627749609,3.916842127336563e-09,0.00031565876322059346,5.25393035157754e-06,0.9999944232470485,7.980276490128073e-07,5.635784374793381e-07,5.372010952476552e-06,2.4414897908019006e-08,0.9999997515213916,0.9997933709066644,0.9999295529965095,4.349879357291131e-06,3.8932415046904594e-07,1.869351480490921e-07,3.215062779708842e-05,7.349304912859936e-06,0.006293668634848642,2.1064311915714343e-06 -rampa,rgb,0.0005833441829591255,0.9999999246366399,0.000492984188884886,1.0,0.029054720924527124,5.987592757924092e-06,0.001938469468158405,5.928776766065295e-07,3.7317040154615363e-07,1.4407739456448687e-07,1.944944605207863e-06,4.04255484131352e-05,1.898561006673466e-05,0.9999999762483448,1.0,0.9958819415161173,2.0138135735887386e-08,2.8500853402656386e-08,1.6270887685993704e-08,7.62614811160442e-09,2.0279437561917474e-09,6.542419053498589e-09,3.7682493457019764e-06,7.720450699208034e-08,0.000602495764147476,1.5048934044131602e-06,0.014164294444460398,0.0003129573103921945,0.9754348383159321,0.9999986966300015,5.8990269851798595e-06,0.004405287145749826,3.2594490540242903e-06,9.262441686502213e-09,1.0,0.9928128408033732,9.502999759562254e-09,2.099269449162897e-09,3.754106259534328e-06,9.056233505769689e-07,1.0,0.9996687661847474,5.076755647648606e-06,0.9999999376202261,0.17807095826366,0.0006483640762617352,0.004905947268566108,0.0004698353240427317,0.1305339849016188,4.020851448397425e-09,5.465514062730537e-06,1.0,2.7391511402481724e-07,1.3259019958378933e-06,0.7602552495932025,1.5899907743429046e-06,0.0007586256199146437,0.0006982187543661162,3.2307393574688445e-05,1.0042634857501083e-05,1.8111409079113528e-06,1.521299895691399e-09,0.9993434350539155,0.9987791258767049,0.999996418001245,2.4911795088085013e-08,2.537229096121614e-07,2.2047448055210054e-07,4.7610036584950447e-07,4.5040920098326515e-07,1.9046198414229094e-06,1.0,1.0,1.8533729067861213e-07,0.9999888002902279,0.9990242195599716,9.118448323709742e-07,3.2397146635885854e-08,8.805677483209632e-09,0.0006130856262226993,0.005356482288530977,0.00042171829233305166,4.118429468142302e-10,0.00042070240584481523,5.305750308546466e-07,4.117706537414927e-10,0.9857507661797636,2.912836845206727e-09,2.177937595704835e-05,0.004944250674427483,5.401704306787653e-07,0.9998957207612343,0.0010156939618593806,0.0011165511267979883,0.0005907419775216147,0.000494920411596395,0.9419654529090904,0.0004157212467809863,0.0005156100571421236,0.0003423943193855701,0.00023845243376201456,0.000472321468039855,7.690150938970412e-07,1.0,0.0003334889338846797,6.472940667647111e-06,0.0704170130508801,6.100584948185389e-08,6.290185662798306e-06,6.135877951566019e-07,2.6837948888954973e-07,1.0,1.0,8.456743952365207e-05,6.274445606969852e-06,3.2554231075958164e-06,2.359029982257376e-08,2.0589650066603363e-06,4.37666302420037e-05,3.9496090805521566e-05,0.004544453352252583,5.312383559751232e-06,7.071462397592669e-09,1.0,5.568125220542343e-05,1.6623317141876201e-06,6.630815864477828e-06,2.6409995448808746e-08,2.1392256952047e-09,1.2646807423068928e-09,5.784257933300244e-08,4.436467532625248e-09,6.629445301501091e-06,1.93474376841691e-07,1.959621147815949e-08,6.49468553273802e-09,1.1544282375120377e-08,1.4719826353994623e-08,3.1792725954821326e-09,0.9999991447028861,1.0,0.9963652290399941,1.718840807936582e-06,1.0,7.699065998439905e-09,1.1383220438792864e-08,2.439304675879608e-07,1.1086624285556733e-08,4.502287181202608e-07,4.3796030991654996e-08,1.0,7.858154635615646e-10,0.9826572142353148,1.7961207485525064e-06,0.7713178062349758,1.193538251484585e-05,2.9428393854205312e-05,0.007377787252107601,0.005445814232016083,6.812304386283726e-09,0.026355371578800902,8.169586384333697e-09,0.9938984770000056,0.001628463453666359,0.0013108380321248862,0.0009734001921006314,0.0005064799508435614,1.789034464249007e-05,9.117162835040794e-06,1.0,8.367990654220671e-10,5.436371897227087e-06,9.89039390162306e-10,0.9983194009758479,9.906117369138384e-10,0.002110240693054703,0.9999230435276184,1.0,0.026881691397848562,0.0054651890052081105,0.0023025756011587715,0.9977566186391711,1.0,3.329279053488591e-06,6.443169002009159e-06,0.423468542716707,1.0,0.9999995621334988,9.230462732437167e-06,2.6509533163064845e-05,1.6314918536242327e-06,2.4611757258873314e-09,0.000936175498537045,1.2755786073674055e-08,1.283721011532971e-09,0.14926910873732666,1.8196274727259885e-08,2.1023782134269323e-05,3.93525645594348e-06,1.057210062794481e-06,1.0,7.178863602628703e-10,0.0001836127201292735,0.009273747007067894,2.5992150450098127e-06,8.965652667530215e-07,0.736634518981071,1.0,1.0,0.0037995582987950484,9.970800196395529e-10,1.5994705699405587e-09,0.0005688806899907522,1.8259821103305333e-05,0.0005862097625934679,9.977420793846061e-06,5.909713834171721e-05,0.9998401341832689,0.0005389756671044414,0.010660312922003784,0.01424196221284528,1.0,1.6970292766865036e-06,0.997447421599025,2.9656400189616884e-08,3.6936601083622544e-08,0.9999999232726547,1.717028953573471e-08,0.9998496671950161,0.004453251049843633,1.0,7.678112910516718e-10,1.0,7.96232724400573e-07,0.004756921415974728,5.704023994793676e-05,0.00010924660793418504,0.9999993215739844,1.794896909642112e-09,8.169822237463322e-10,2.070269899866751e-09,1.0,6.29085959234906e-07,1.2628178199708935e-06 -rampa,shape,2.2639943218439413e-05,0.0005368644005233119,0.05885415929138762,0.0001154827065838935,0.0002672191773112254,0.0006329983375663739,0.00033725561821553547,3.669072250142483e-06,0.0007142095333801673,3.77554089011374e-07,0.00025324209169491244,3.6163314503180876e-05,4.156461138381847e-06,0.031012991982918448,0.0017907906537883466,2.6784852642650906e-06,0.981457620632848,0.43559010786240454,0.6128337973117639,0.9236499029460953,0.6651784333741577,0.0037525460243779496,0.0006400210977150076,0.01857750786802145,0.0187560707981385,0.00960628787336388,5.467091746455179e-06,0.0015362252165602988,0.0031037067260520318,0.00036494074972681504,0.0006218235172605282,0.00011213470142277207,0.999762517288453,9.167864693477521e-06,0.9999802480192307,0.9999957239778146,0.7886463515493527,9.4864629239237e-06,0.9999401269382865,0.030439989199825754,0.10476458756622826,0.13448222578908367,0.20582730132218657,0.14072233053482275,0.4936664628066003,2.350632377271341e-05,0.0020277213268447016,0.021025057025128316,0.013507919199363363,2.4038974864268977e-05,0.0025102976588868412,0.03474562760613381,1.9022124319255627e-06,0.5399782304197409,6.942673112594556e-05,0.9999999804515184,7.267476987124098e-05,2.7152199579223472e-05,0.00035865663384042844,1.9190983319834476e-06,0.00025172802089914857,0.010291857032916213,0.9999702721853407,2.9825696788702153e-06,7.57118000463053e-05,0.005379761610915861,0.0020370145746748535,1.4824722741680796e-05,3.139972836518223e-05,7.697806068423048e-05,0.1507611645782701,0.0012715229899402105,2.373261991820171e-05,2.6384418302323776e-05,4.370086623140007e-05,3.6243606257160425e-06,0.016151127929468136,0.027347407584475517,0.018888819604384446,0.0001278445783879574,1.563409982296209e-05,0.00016391138092733472,1.0683998312836387e-05,0.006543258854805062,0.00020896303042646237,4.847668790723608e-05,9.344803299936014e-05,2.4410650370496657e-06,4.501754997686644e-07,1.5746728750791366e-05,3.425802156438273e-05,0.007479017067569412,0.00019254452151945203,6.991840951170027e-06,0.00014552819091560217,0.00010842819839010191,0.5307605926996385,2.370284939191527e-05,9.057549998000218e-05,0.0001709111496238879,0.0005907870098871564,0.9190189870171612,0.9709352655916109,0.5408962108468454,0.00016024161960606168,0.0023559418378052677,0.00032437469859645596,0.03410270524529297,0.001254246846697714,0.9920920937266464,0.00019634132827799178,0.8249960154658307,0.002581760518619332,0.9403144692160538,0.05926911333184448,0.8761244280177437,0.00011320838486762521,0.8531236757151728,0.8242313842599431,4.475819479902352e-08,0.00031272844359886263,0.9975487418786587,3.123319969053814e-05,0.07174059436945936,0.9950027520031131,7.525337682145972e-07,0.9915514042121166,9.500441526841353e-05,6.590405917610806e-06,3.497110045475356e-05,0.00019397131499775786,5.591066983600075e-06,0.0002617042005853911,1.782458999202686e-06,0.00019069652191267507,0.9714625269017845,0.9803263030041247,0.05461475538122696,1.8689238019922785e-05,5.9303483173317726e-05,0.9997995425208434,0.9999941244187711,0.01388675383522158,0.00011200431198047576,1.347892026202534e-06,1.0966396019101246e-07,0.002629443088020097,0.007342196420687209,0.0016575702304880845,0.0031870116372293136,0.0003986122285953187,9.414946086935394e-07,0.00012340732561957456,2.3044942521970835e-05,0.002262562151709965,1.741140803195108e-07,3.616331450318094e-05,0.0009364162466293989,0.04784466096159654,0.018724032981659554,0.03899901721035671,0.0023628735404251705,0.9999988631337391,0.0006030162460113596,0.0016559729578548533,0.0017272004883361863,0.008701826813461497,7.700713792297474e-07,3.462273961623453e-06,1.6166986695593785e-05,1.0211414734709594e-05,0.0007517868854654261,6.861222761761829e-07,0.00021343077802124072,2.2254148116929455e-05,0.0008061305068858652,0.01004505595460505,0.0033090943062573782,0.002360561856179199,0.0002441776817823659,0.0009664083285420248,0.9999663734900609,0.999898388433135,0.0008714705763428791,0.004162856155789789,0.0007033468081428453,0.00032940581660020137,9.328696953563644e-07,7.500849606126758e-07,6.108848301205877e-06,7.4413676853671354e-06,9.73773311278513e-05,3.529516957681145e-05,0.8941815858702805,1.3617704438519104e-05,0.0019453014921743603,2.508115731227844e-05,0.932821238940097,0.004883667238601784,0.020506640878768745,0.0006482117817146582,2.461473235435008e-06,0.00010755353981889364,4.0386462644375246e-05,0.5731002959580676,0.986877199629285,0.0007378483601291301,0.9516541664987206,0.00014228522927907557,3.026562293983421e-07,5.52872573603781e-05,8.22367881382622e-06,0.0032603329792271654,1.7484978953685006e-05,2.3390710321978555e-05,0.9738207172163137,0.9985566324163255,0.002779118458444824,0.0002814407554718342,0.00028631573314399694,0.0001093030169071136,0.00011353013103779316,0.04334538149191773,3.587721437004049e-06,0.17865377869433255,0.44407179796131246,0.1270404183825014,0.7127569919891953,0.012686693693651739,0.0007257342882547279,0.9999640310043686,2.6725586758675246e-05,5.782112463138954e-05,0.07586161013289891,0.00031272844359886263,7.991688938058283e-07,5.3291663054039966e-05,1.567717296260086e-05,5.133457078296717e-05,5.003782756349541e-05,1.5564927523576472e-06,0.9997951786677017,0.8521121331246423,0.3623433517511971 -rampa,object,1.1573595045039254e-05,0.0034739661425137514,0.033946143044644196,0.3432207011364659,0.000138075330615587,0.00011943997981741429,0.00022997206665733468,8.123149112291691e-07,0.0001287523479129057,1.476131103392324e-07,0.00036826248527548424,8.142489760333186e-05,1.0952255525513749e-05,0.13468715870676815,0.8357881442750817,3.833610501302033e-06,0.8944998810954523,0.10997718784365318,0.1652169802542808,0.38155601840513564,0.09443702022565503,0.0042394846912903955,0.00012800103029196643,0.009964876142951381,0.008986618904136028,0.03432096134406585,5.813749642326575e-06,0.0014663524920458593,0.001455667560380524,0.007569101110932038,0.000129412924690105,9.450600632159831e-05,0.9949662232368875,9.359215083099381e-06,0.9999998549684289,0.9999721997132826,0.7192950727411402,1.0745075609033203e-05,0.9975563738655636,0.004480125264974123,0.9978249696443467,0.7362135255062154,0.02962669018006577,0.5578377297704686,0.23358545566211592,2.6498825460473347e-05,0.0008769563522091424,0.0071368526725293785,0.012808169074702438,2.9755275463413932e-05,0.0007519376152283061,0.9837781959553511,1.5045960705857312e-06,0.32978004565046076,0.00011153577290972566,0.999998260043571,8.41154921444723e-05,2.703643672366374e-05,0.0003851052966722333,5.962183617669261e-06,0.0005058313969184987,0.001200216270171519,0.999892521737026,5.175062607663909e-05,0.0013417167972609892,0.010477013009022214,0.007304205499725573,5.452017503890709e-06,2.0140346654306098e-05,1.786872571946028e-05,0.08754564224978026,0.7253886792286673,0.0399902963302652,1.520041775799718e-05,0.00017710042979851508,2.8609589576524662e-05,0.05114438228253226,0.03883165346268553,0.020440300800981196,0.0005413319168314489,9.83552738862409e-06,0.0001202191073132493,5.917663146976619e-06,0.0039057817816376484,9.813869945550751e-05,2.8668544546520778e-05,0.0001410583824130674,3.8963692716684e-06,3.397852518086279e-07,6.7786708348104046e-06,2.722627582963507e-05,0.0028185327212117786,0.00022924694101657646,1.349207153458975e-05,0.00021988266889110252,9.433493893012702e-05,0.22281407944309292,4.149243796805116e-05,7.731987851374722e-05,0.00018651424183909157,0.0015664157311280921,0.8259366866656035,0.8947881097073807,0.9996657884796708,0.00017823311947620177,0.0009923877259606917,0.000298826149854886,0.018782808629392814,0.005919854124529158,0.9793396145583773,0.0015215741609151733,0.9996476927022885,0.9074499351447891,0.8139972395667967,0.1296678485343417,0.6292729432470814,6.202830672754868e-05,0.6487360422015336,0.8757362488783945,1.6993321511361327e-07,0.00013138297694696526,0.98871540673432,2.5674870136307342e-05,0.9958286911899721,0.9943175906985057,1.2726258796922976e-07,0.9457780451618667,5.848420508332573e-05,9.474690487534855e-06,3.5298763154622985e-05,1.9336016478070847e-05,4.87220535864074e-06,9.588128262278874e-05,1.2088804921006639e-06,0.00010006306863624092,0.9585577178793611,0.9832133075623936,0.0514142910547259,2.2670475012162117e-05,0.0017247155923395938,0.9999626137319596,0.9999667932455288,0.0028521402737495265,0.14455229157807326,1.8790926399369783e-07,3.913953772785147e-07,0.0006672598381502284,0.012577152195158085,0.008131498814523989,0.004107560838544535,0.38822503005860554,5.782298746693992e-07,0.0001357751551048721,4.8662685684012664e-05,0.0013816501049199422,6.000515502821794e-07,7.633623507168198e-05,0.0010767325122834296,0.077623710623874,0.007351696659729791,0.05254479280904794,0.00039278984928732726,0.9999901177304596,0.0012368334565577052,0.0023315725457380204,0.0018155082986288827,0.005132462830691697,2.59510840201148e-06,1.4718905460758026e-05,0.06385835507490659,3.3960818023377373e-06,0.00010556201781242791,4.220112224090035e-07,0.00035880637120225137,2.280126238705891e-05,0.001011673418810895,0.005987018792741002,0.9008907111652584,0.004542551686994786,0.00047825610662805934,0.0012047594104803746,0.9998990876094964,0.9999716475984891,0.00015294518171486086,0.0010730866672480051,0.0017737913299005475,0.2571627342221938,7.698528330816162e-06,3.337550238602252e-06,1.7051422092250342e-05,5.6510021517726565e-05,4.7140267535229436e-05,4.30019424184809e-05,0.5724658789870096,4.863384690621174e-06,0.002599543592002052,2.0788862676558245e-05,0.804873903328533,0.001869581546154665,0.003318863923213516,0.6392487976521085,1.5118930011017354e-06,0.00023331957159834324,2.8993631901113915e-05,0.5383278147188308,0.8013725243147469,0.00035283179854339537,0.9998507584264131,0.3069355565328241,3.781656370744614e-07,6.181512713259508e-05,1.4262592271208507e-05,0.003454181188465535,3.7748618603260235e-05,3.6478508089370014e-05,0.9732043429617223,0.9955171782213476,0.00041233418326798996,0.0003078569066670772,0.00027423791384155325,3.889762575224397e-05,0.17322255791458493,0.03189823477770888,6.112353700072753e-05,0.03541345358043299,0.0421733963743521,0.3483267099455594,0.1539138046417772,0.013563204264751027,0.0004039608622678285,0.9999997953360237,1.7240076124204814e-05,0.09001010509396894,0.07005645349271432,0.00012993456471571853,1.522900069536053e-06,5.129216977179071e-05,0.0004338512458140571,1.3621126721524266e-05,5.47461113405691e-05,1.9691183271789857e-06,0.9999940127656536,0.48503585984426323,0.5322568612456495 -rectangular,rgb,0.8962953965777597,0.9999999999992075,1.1230679722558317e-09,0.9999999999999989,8.468223426388298e-09,0.9973722070919949,0.03684093690643231,0.9885532195801211,0.9588298493680433,0.7540650878476363,6.602140335507101e-10,1.0436767623942394e-09,7.790738624724928e-10,0.9999999999995588,1.0,0.9999997901054191,3.4415890905765722e-12,4.384120721382706e-12,3.687037248367538e-12,4.458857399958851e-08,6.151473218491152e-12,7.491224875441548e-12,0.9952944229619914,8.255665598667392e-12,0.9990717975884492,1.6215025276893107e-12,0.9996295482066555,0.9974046212795684,0.9999986805136012,0.9999999872185786,0.9972403641534452,6.455422643199635e-09,0.9912897848494441,0.0022978513524138677,1.0,0.999999415237929,1.1759081639843236e-08,5.4724494514634185e-12,0.8326990781858062,0.8020421890280911,0.9999999999999685,0.9999773296846626,0.9953931098306362,0.9999999985185744,0.9715555100240023,8.612941261601924e-09,9.402843124825597e-09,1.0753665248498478e-09,0.980471780584768,2.4143402668261987e-05,0.9970015548509978,0.9999999999999782,0.9316528316728571,0.9495472155677359,0.9997393726020792,0.9245025396979138,0.003551986083122778,0.0012699100007880952,1.0149277769875401e-09,6.689746263775653e-10,5.821500319952614e-10,7.048022264522845e-12,0.9999999938408872,0.9997467466735509,0.9999998896988078,2.6081415266996135e-11,9.596822380889616e-13,0.900887274698209,0.9812315700870516,0.9738482090054608,0.9744306011031711,0.9999999999999729,0.9999999999998641,0.8668004306065994,0.9999999999844369,0.9999411736006625,1.2502657824632757e-12,1.2984557851741753e-11,7.125464183612756e-12,0.0005836862642596773,0.9982160527082038,0.0015593688811983166,2.5939216466553946e-09,0.00013424322935909726,0.9843907865549826,8.495848252167856e-10,0.9999992694464478,3.990262760777229e-12,0.12748524119263516,0.9983243006329291,0.9865601269367233,0.9999999998841667,0.01312097153806628,0.0010565984598740314,0.00035828419791585856,0.00018000406352212996,0.9999929170041371,0.00012774966818942051,0.002246684338529912,0.00013489988871931988,3.7454794414516e-05,0.0013241201090395942,0.7466637388955605,0.9999999999999973,3.243563243486625e-05,0.9975867935121493,0.788410512439696,7.093774263895836e-12,3.9349370012800076e-12,0.6804800449118442,1.217153389985862e-12,0.9999999999999876,1.0,3.1759188078671138e-09,8.553792647284878e-10,9.114126959979253e-10,0.03438593810261887,5.757280706848778e-09,9.519846636344146e-10,8.056278610543656e-11,5.7261897721926036e-09,3.457288278415336e-09,0.00013016703053633105,0.9999999999997415,3.905112767383048e-09,0.014911565866189283,3.712030929179336e-09,0.04365402143604655,6.619239312008848e-07,3.2340840728723714e-06,3.1138185535769236e-07,0.0002553381189914817,0.9979608137767327,0.8766828733857029,0.021220342849226456,5.0494899524644514e-12,3.824902243036848e-12,4.161262634895009e-12,5.428796216388403e-06,0.9999999857457964,0.9999999999999998,0.9999999800860349,0.9707798994832962,0.9999999999980715,1.743516525055881e-07,1.5101561219383126e-08,2.0062518383257105e-05,7.998242497497632e-12,1.0330427104984915e-12,1.833331756555862e-11,0.9999999999995648,3.6517573045205847e-08,0.9999984217490352,6.715465062430292e-10,0.9997713537631471,7.556939728190083e-10,1.127281789761042e-09,0.9999217542096633,0.9983506719772822,3.772074546205164e-12,0.999997021967441,3.57530080034951e-12,0.9999903732929013,0.9995620471528759,0.9998042271764894,0.9999161991620288,0.9993892553497213,9.686401975826612e-10,6.683337751524537e-10,0.9999999999999958,2.4872687672723466e-08,0.9969507672547886,3.5985620259503184e-07,0.9999999638309767,2.9211658988542706e-08,0.043376459676872994,0.9999999999470819,1.0,0.9999990824785262,0.9999087208861888,0.9997124697782025,0.9999998805115914,1.0,0.9934913130072985,0.997547989110377,0.9985666863786994,0.9999999985521799,0.9999999999970663,6.645748117025949e-10,9.968963113641627e-10,5.999822941934262e-10,2.1435669476915244e-05,0.9442746672276696,8.950880304910614e-09,2.707950132287761e-06,0.9889957269753556,0.016455815651766646,2.220578981933893e-09,0.9939919424021696,0.9305941568239006,0.999999999999472,3.282624149714907e-08,0.9978477441562075,0.9995230882850819,4.7010288994027734e-09,0.864519307274827,0.9996596198449399,0.9999999999999434,1.0,0.9946199990788719,1.1144805979299618e-06,8.932538305320041e-12,0.9987474274076337,8.656723715589979e-10,0.9999166995564163,2.5169058916849775e-09,1.98237881191441e-09,0.9999999996445121,2.657207896236525e-09,8.995022036667869e-09,1.7266042957941434e-08,0.9999999999987372,0.9697990490507752,0.9991096579118929,4.8137261058130405e-12,5.035364462377255e-12,0.9999999999991944,5.5347412093560616e-12,0.9999999996979407,5.648386976940612e-09,1.0,5.198149877329383e-08,0.9999999999997131,0.7927119631768033,7.365861033307107e-09,3.8528083973345e-09,2.0229491821527404e-09,0.999999980404365,1.139930658552808e-05,1.2341613992976011e-07,1.1714182229223423e-11,0.9999999999999993,6.790306765616077e-10,1.1310424687882227e-09 -rectangular,shape,6.240773690858011e-05,0.005229743544518506,0.0062781802405737245,0.0026105647103449384,5.050071174688165e-05,0.20677455925301694,0.00013897080009047904,0.0009166478897747885,0.015164400685128874,0.002078219036193909,0.031873653092101425,1.954200308030147e-05,0.010692904247053003,0.001432084026822731,0.07977695755226075,0.6071384709440578,0.1298228930244052,0.00018371492915466336,6.33738375372585e-05,0.16175386646278694,0.998235836562776,0.0005870612266802138,0.9999406146178347,0.10982763263367565,0.015646853524487636,5.238600452557073e-05,1.8581287686478095e-06,0.0003347732122254987,0.9992332817145534,0.9998447004318194,0.9996092671597403,5.149614199868785e-06,0.999968489525672,0.00016078414379508692,0.9999964034508888,0.999830398824669,0.16163431670644127,3.843065774487872e-05,0.9798815558357141,6.414189519519172e-06,0.87803452113324,0.24510704047733103,0.9996696842679749,0.9996451536886392,0.9999018235288283,8.90939941262288e-05,4.912543432501106e-05,0.9394183081863042,0.8143205076763779,7.463397647019613e-05,0.9996197821373511,0.9284600148939965,4.15205613829444e-05,0.9413141071863729,2.4886490099547366e-06,0.9999999023745663,0.00015775395502564058,7.153886881491783e-05,7.1796566199260886e-06,0.7760132756861717,0.9200342568349206,0.015832327055649957,0.9999963955099486,1.6651632675430156e-05,0.9992328591961099,0.017065070810678314,0.0009881778312947978,0.0028162320204060936,0.0009670486322382189,0.0024184252445632252,0.9589468625590527,0.13174019948240986,1.4667905977350068e-05,0.00023348290384638323,0.013010915084601808,0.0006399278709801627,0.000929269665539918,0.2168764602265321,0.0004339082443610998,0.5052990049657164,0.0007028033728186646,0.0004805437224446176,0.001483498884543412,0.0009734508512861642,0.027077655277512283,0.0015167682233914721,0.9999969181625508,1.1134779138469454e-05,2.1624336755475404e-06,0.019186562558044868,0.0003295474115135619,0.039255507338179875,0.0002864338569055213,0.000386727147824905,0.0007515623843069409,0.0003622103945306693,0.9999289097647892,0.0003007157669802673,0.014898400379368746,0.00032486433982944845,0.005804554963384363,0.6823815942258553,0.8584466416629585,0.5166676386028883,0.0002540981292937209,0.9999228830693383,6.468584130295025e-05,0.0071399033787533225,0.0007966711815143502,0.9552534466341288,0.07182795982059295,0.007191152708636027,0.12020524755256488,0.00013403780246586222,9.669358564726982e-05,8.713548030875012e-06,3.316680034561284e-05,0.00016728045493451217,0.00013913817024927122,3.356753044403329e-06,0.0002314134919332592,0.017118845949561156,9.632252866607065e-05,0.8746319595855611,0.7015101953965278,3.584771660250534e-05,0.0004353839200116198,8.951203177690563e-06,5.128738131846474e-05,0.0004106653374581085,0.011233653373848719,3.8009517330084236e-05,0.9984906289082713,3.901747830432921e-06,8.534528455271797e-05,0.9999430211801105,0.9711840123242671,0.5970756972836594,0.00014869436687364623,0.9997479996532262,0.9997152046919109,0.9999767336655349,0.9909620854028995,0.018652536535591697,9.823288238545454e-07,0.0003394813059878018,2.736412750571313e-05,0.0014149817316177833,0.0003296268911317125,0.0005910448976747427,0.16075380635117717,0.00022385520278750092,0.999938840379831,0.9547586582006126,0.9985198594267315,0.2800566990096584,1.9542003080301575e-05,0.0026968796219127614,0.011126485931109414,0.8258849034205349,0.06469263932038222,0.9449273711981985,0.9999857733084867,0.002477971504232042,0.014228533187468341,0.008753988959662931,0.6223932834828803,0.0011980003923079078,0.9725665703553849,5.5836102792107656e-05,2.877742999299612e-05,0.07209399144627705,0.0002365348987327128,0.9999948702988585,0.00027581918970865944,0.8588393684076621,0.00297113694210733,0.014469119635141638,0.001959940562325433,3.163444951062229e-05,0.0003552028809505305,0.9997072728027757,0.999589815201533,0.9999907107645296,0.9999957724020575,0.3273416620984205,0.13640829152376718,0.9468151905426614,0.9980030975011104,0.00025529031098207476,0.8479243560039517,2.961053643697399e-05,7.872108386182149e-05,0.9885650132926418,0.00046826170111089323,0.9298376438378367,3.891270233663088e-05,0.0010176029747948558,0.9948572879626482,0.013563394916908722,0.904331416432077,0.0013822095057388134,0.002699007735630371,5.867138488152927e-06,0.8270873761010217,0.033559666870308376,0.8167165277240283,0.0007359419311687631,0.8840079754007144,5.7834086894885234e-08,4.441516860406052e-05,0.00010723056574012603,0.04865308305255661,0.09676066133786905,0.0005309218499735873,9.332907993811658e-05,0.00028205173593532875,0.9886452283880881,0.0015736033297611952,2.683267494266263e-05,2.0844964317432315e-05,0.006716472458994323,0.8751212168387568,1.982392574941738e-06,0.04348478550567758,0.9904139466549424,0.003612354765378059,0.0003269767198343574,0.31044295064119903,0.0001893954545609574,0.9996364048051555,0.00047182520390092803,1.5726689021914717e-05,0.8515913970970421,0.00023141349193325756,5.042236567551872e-05,9.157967473418034e-05,0.9999231422873949,4.473761344493246e-05,0.0827506781124499,0.00010330839282077078,0.9996170494698583,0.006712162072451529,0.0001474289294242578 -rectangular,object,0.0002548930466960001,0.80417686444634,0.004590417298054961,0.19735217389948786,3.041601574436229e-05,0.9493922899465718,0.007933854947910117,0.007823640248377589,0.13590560095674625,0.005996436604146426,0.00015981036181290277,1.8979631812670742e-07,1.748034974680573e-05,0.8585671608557429,0.8661268177364487,0.6378730304147944,0.000617845055331842,4.895522491705683e-06,1.7281651929249322e-07,0.001488462459409322,0.004789846127793762,0.000616792460888144,0.9999435027820224,0.018569743276917093,0.9555856466049187,7.160522592887765e-05,0.00010307333396867278,0.3254893662449714,0.9993701182062209,0.9999618046518854,0.9996938424732482,6.677043259044549e-06,0.9999122986271399,0.00021926024547814997,0.9999978054223144,0.9999458836235887,0.010629796071018684,1.8226640442382542e-06,0.9587023349271541,0.00032671757313968575,0.9528661361192244,0.688424699990203,0.9999220648641156,0.9999739909307759,0.9995398100841947,4.669018603405949e-05,4.349221948005211e-05,0.2947210063892285,0.9620601122462609,7.00686868675714e-05,0.9999793422606943,0.9986028964797977,0.0010148523100355243,0.9534151298105813,0.00022117352068466264,0.9999993968368929,6.281284860047233e-05,9.539040858616514e-05,1.7390228698755624e-07,0.0034595557838784626,0.024445573653409703,1.4191539141369951e-05,0.9999936894779223,0.0009229250892689906,0.9995753454177638,0.006485303237211807,0.0004377704609798163,0.026990333568922328,0.014084836272536943,0.03786891841190905,0.9797556134261748,0.8927373802272234,0.001751230564104744,0.00581242775577272,0.7481018598709471,0.008081453430389225,0.0006427564840159643,0.030686884796051198,0.00027781887561920246,0.30102170666362155,0.0031615677562950683,0.00044476561677557274,6.311364470322179e-05,0.00032360178103367656,0.24559751580099135,0.00014448727575627803,0.999957842846509,4.630953012242559e-07,1.6926377454713715e-05,0.03149303619270463,0.012116978270103017,0.7888077144079002,0.00020171233577741048,0.00017917824756378878,0.0001515921474423522,3.861700089772298e-05,0.9999208002366549,0.0001770119497705721,0.00551257800055809,0.0002360049700772677,0.009914463409923895,0.06160359658429175,0.829758925325794,0.8855804674091661,0.00025809990850597544,0.9999494673367997,0.0002902373195967825,0.003396461234355837,0.00013707879530044877,0.9660160234017449,0.0026635413456945916,0.0411056228540397,0.94389049651589,1.9297948268892098e-05,3.1947370442064465e-05,1.6762692567975343e-05,0.00025534160151010173,0.0001353087437721272,8.118965283128839e-05,1.0016105831792824e-06,0.00012161739722848213,0.0017999776942682147,0.00013639668527453365,0.9792964178662653,0.00818298555830678,1.0228796371223977e-05,7.786330739292982e-05,0.00018461082459733094,2.1917466519404613e-05,9.395074961534459e-05,0.00016697759369031543,6.763861529038078e-05,0.9990389214505813,0.0001652033355585372,0.0002791915110350401,0.14189077669301764,0.009143656757019364,0.002808762306298061,8.3578749614783e-05,0.9998725648059378,0.9999206889343032,0.9999932808316147,0.9496404641053713,0.04873761352576013,1.1688056934462643e-07,2.3401026243566924e-06,5.680891280607203e-06,0.0005259770110825162,0.00012643492974396568,0.00017743616375350254,0.2097188083832408,1.569244704593683e-05,0.9998464878528667,0.024762591952428695,0.8777444724095255,0.0005036125744423389,2.0087823850943288e-07,0.7946416518612185,0.7993779950619713,0.00024182144756133988,0.9441132797980528,0.00022655995124212414,0.999941760324794,0.17895201443902972,0.8133332872989858,0.909306037797452,0.9981418117541322,1.6415958613815163e-05,0.020767990712513056,0.08210580076364182,4.014946740968036e-06,0.9242647375332793,5.344073073345388e-05,0.9999851060814551,0.00011157824698065245,0.6458776398589481,0.6289499847791759,0.8362671263080991,0.8599977322140008,0.059292438945741675,0.2170799448878811,0.9997965610180496,0.9998321192297057,0.9999875086691027,0.9999933188956656,0.7296838809668428,0.8613851693824692,0.9964328971479355,0.06702767029404869,1.030785209615362e-06,0.04812683918222296,0.0001323783258094594,0.00023318355807644775,0.03085462302952161,0.0003046320019132338,0.9560794527878879,0.00011210335594688202,7.589836432984061e-05,0.9997958470312375,0.0977499446666648,0.9914366043377604,0.00012489633242135644,0.4603526942195572,0.00020044278090090582,0.00315302951655121,0.26539704197116176,0.28813288854225083,0.07723441067448543,0.9863616760240375,2.121500496623991e-06,2.5326450959406385e-05,5.717709463428664e-06,0.9573809767081457,0.00036541902216354283,0.1917169340525659,6.621390954134975e-05,0.0001427965379515346,0.9998442209744134,0.00023776692699208125,2.265353483537561e-05,1.9636450806714898e-05,0.14765364311874177,0.9452376602373845,0.00010824618230328234,4.408831960331844e-06,0.000843603948518981,0.9534311125354173,1.0497733961817603e-07,0.940215235393859,0.00020816387948234972,0.9998459859351302,9.142783643583714e-05,0.0016003043566477071,0.7925295938724845,0.00013020748146898027,1.465402185779387e-05,0.00024209320492152368,0.9998993745063813,7.334303070698573e-05,0.003812806839525846,6.053396646422588e-06,0.9998883965998427,0.006989016105745532,5.408066224945409e-05 -redonda,rgb,1.0,1.8233528516282926e-24,0.9999580829674667,0.15032774396362092,0.99998768977348,3.7455114129310403e-06,1.0,0.9952126541502444,0.980634197696783,0.9995241227568371,0.99414479263735,0.9983428557690572,0.9984179581754232,1.2770124131559903e-24,0.002164713222820289,1.0,0.9999999999245499,0.9999999996485527,0.9999999999106892,0.9214544946019759,0.9999999999969176,1.0,1.8746421856057346e-05,1.0,7.606522103429822e-13,0.9999999999999976,1.0,2.536714713503666e-12,1.0,1.2087981088679112e-20,3.708999649996076e-06,0.9996426380538539,1.2649396514812956e-05,0.9999999988436266,4.0339485369534934e-10,1.0,0.9632492276163199,1.0,1.0180117874466899e-07,4.991898873840909e-05,0.016031797422942563,8.055183028260279e-18,3.279684269282988e-06,5.0185615134890124e-21,1.0,0.9720245750850985,0.9988794794892758,0.999961003764392,1.0,0.9986093073781499,4.928728674841256e-06,0.023108515098889885,0.9977192936642405,8.536627528818675e-05,1.0,1.3702017184165595e-05,2.9626893248291164e-10,1.0518550725787154e-09,0.9980132166480806,0.9981119241457018,0.9957112509031356,0.9999999999993616,1.0,9.824908963641508e-17,9.992320021102567e-20,1.0,1.0,0.9995384953424353,0.9967517698849538,0.9796722694070238,3.725603333570418e-05,0.11759652872524694,0.01879495817561582,0.9998975508104241,2.589120571133661e-23,1.6515944442383773e-17,0.9999999999999998,1.0,1.0,2.9254669321491124e-09,1.0,9.077797066717017e-10,0.9999999999975233,2.277042114228718e-08,0.9927078854925704,0.9999999999994296,1.0,1.0,1.0,1.0,0.997684522143731,1.0,6.265221096237645e-11,1.2834468303174453e-09,5.679527796115194e-09,1.4970498107163906e-08,1.0,2.4461396180064845e-08,5.595503394304798e-10,2.2600092862706657e-08,1.4846941187542595e-07,1.0,7.408492089082428e-05,0.041488592033605394,1.9249942414599805e-07,2.8126358287995673e-06,1.0,1.0,0.9999999999997908,0.00015653060520399116,0.9999999999999911,0.04965156686682906,0.03406764875000637,0.9792428897378411,0.9941683202200294,0.9892335549613765,0.9999988313479395,0.44967308584913884,0.9988837291791475,0.9999998812556165,0.9997854384056869,0.7850605054006189,0.9910763528724874,0.07171982763468458,0.9414848754576464,1.33608443896067e-07,0.773708205636699,0.9999947492200265,0.999358475890717,0.9999999963147543,0.019904931573439203,0.9999999990132451,3.416863737128348e-06,0.9998583631655301,0.9999994180413955,0.999999999895506,0.9999999999305411,0.9999999998471207,0.9981935226449223,1.7327955290256276e-20,9.110055687366397e-10,1.0,5.327297656895833e-05,0.040467884418765164,0.8125123241190443,0.9279559317381192,5.905349471373808e-05,1.0,1.0,1.0,0.07748761563578606,0.999999161833375,1.0,0.9936361534893677,1.0,0.9976799276267352,0.9969296128863787,7.877827857135189e-15,1.5975739068896384e-14,0.9999999999775488,1.176655180773037e-15,0.9999999999751794,1.0,1.1076351700330946e-13,2.0772769533708868e-13,5.871824705299482e-13,1.2818600539901127e-12,0.9967031803641219,0.9979403120178371,0.04431963712108909,0.9999982600260527,4.918441741885017e-06,0.9999992039984013,1.0,0.9999931160044838,1.0,1.0,0.0009691092620511666,1.602587459896678e-15,1.3381278018782378e-14,5.969740660007324e-14,1.0,2.809634694214428e-10,2.0314313207205897e-05,2.8000473892348883e-06,1.0,0.09806928104855743,4.860767083637373e-24,0.9979980456308097,0.9976411067726435,0.9951106829270127,0.9999999999963707,1.0,0.9510725246199027,0.9999999264284466,1.0,0.9999977376762854,0.9686017804469069,8.62292888470911e-06,0.00017964226823506034,0.05056705061957882,0.9999996673927385,9.701259637873777e-12,1.0,0.5749116520108264,0.00011668484898225696,1.0,0.05959768773950892,0.004854583077827381,1.0,0.9999999998987483,1.0,8.038116701350233e-13,0.9977119001532307,2.296645202892639e-12,0.9230579746872781,0.992267861462335,1.0,0.9991922118929395,0.999817848516641,0.9989176727225966,0.038323042609057424,5.3837508605494424e-05,3.660148658395234e-16,0.9999999994270818,0.9999999992162434,1.8451061862695245e-24,0.9999999992494293,1.0,0.9997871776118702,5.282109316483372e-10,0.9999999999999871,0.031750521477378835,9.410785760368314e-05,0.9995055877798915,0.944920672643011,0.9962267102027179,2.9710367860782617e-20,0.9999999487827911,0.9999996095007155,1.0,6.102757425154922e-10,0.9910955486627666,0.9722408683993694 -redonda,shape,0.0021291907612032185,1.4222183228465399e-06,0.9999748642928747,0.9999873841209568,0.9999961929514222,0.6135562586472701,0.9997671263585449,0.001585423429524678,1.2781233082916042e-06,0.2645869686276747,1.1957318994255197e-08,3.421588570539306e-08,7.265747550234765e-08,2.7481381882199758e-06,1.968385351947689e-05,1.5117123663671098e-05,7.146023704556033e-05,0.0003578407791160733,1.3346626035408543e-06,1.2933764387049848e-05,5.24612203650532e-10,0.9988822305065809,8.019383276734924e-06,0.9996009966203492,0.9905013595894417,0.9995501326002935,0.9999998002359681,0.999957000073007,0.7684041050900629,0.00029755362199532915,0.00024979913331918136,0.9999965714757972,3.7717188253216784e-06,0.9999456559120057,0.00012604218188797748,8.160802566291207e-05,0.9923068001922176,0.9999364674311882,8.820672648288094e-05,6.661234634333756e-05,0.0019426560255041494,0.006502411246360886,0.00040398568969215087,0.00042820287323162577,0.0003072181753785024,0.9999985781750468,0.9999991543955243,0.9997287380422971,0.9856591712280742,0.9998956469609908,0.00694540786134256,0.8401387886756028,0.999235365493141,2.0642481747026284e-05,0.26403014270604697,1.2021843019036998e-05,4.763501118564038e-08,9.290016918697164e-07,3.138507294367727e-08,2.3908017203827136e-06,0.00014177018995321794,1.526371638236635e-07,5.315781501172102e-07,0.001485890066624607,0.00022082028727178773,0.9997825920032808,0.9999029255045867,0.8311566640299325,0.9714226835388231,0.008442893246508557,2.3043915380975674e-07,3.927268533661866e-05,4.290214162639076e-05,0.9997568039731091,1.9057470943971299e-06,1.3238648401048928e-06,0.9995774088203705,0.9998581937262989,0.9999751193760007,0.0006085065178375691,0.9999887562129623,1.0433217746097332e-10,0.999422454223406,5.720607454513672e-08,0.9664695760722879,0.9994491519702685,1.4166288992657966e-05,0.9999848004450377,0.9996743135951753,0.9837676237671032,0.9910640977012855,0.0005986057967394862,5.1022222127707965e-09,1.4776126715582654e-11,1.006695555876412e-09,1.7614743974823746e-08,0.00029961039795588424,1.8192458450274715e-10,0.00011274959818371812,1.000247243817977e-06,0.0005663624224082664,0.00016635063039615024,1.5850052752287695e-05,0.00012544267418375455,0.000147256854022894,0.0002907152791286646,0.0006359489363514549,0.9999027109965971,0.9999260662968964,1.8446439209465193e-06,0.9847235357841192,2.1848913300049135e-05,2.1645285361700046e-05,1.508640563268435e-06,0.16189150646949702,0.1315528063448493,0.999991358113138,1.3823383626540026e-07,9.214198958095233e-06,0.996754592885067,0.999914926738665,1.3403114767975518e-07,0.999885262940323,0.0004369458528327915,5.5760699992972535e-06,0.00014303789941082416,1.467652322140541e-05,0.9999949220232532,0.9997267355343381,0.9997737479782939,0.0005557618167886567,0.9999949378686235,0.0010045999334776384,0.9997927358644036,0.99994285047348,7.0165232671687435e-09,3.092501502626449e-07,0.000420242506066761,0.9999677547182909,0.00028370357517185687,0.00016640228230340546,1.1652013924714779e-06,7.59305613956377e-08,0.0003561484112492923,7.599728258404347e-06,0.9984730610325785,7.43306352282282e-06,0.9998959727726883,0.9999869069052391,0.9998543915731046,0.0001948162221410711,0.00012560751476127025,0.000220473355135538,9.855697872080381e-08,0.00024104235305619603,4.9694153157479995e-06,3.42158857053933e-08,0.9999068819858966,0.9997236949318058,6.239357278906518e-06,0.9995321985458732,6.044686278686786e-11,0.004885203171831767,0.9995025815860387,0.9989776315510615,0.9994005572683938,0.9827649210033257,0.0014675756504047388,0.14609250813595057,0.99994389294165,1.8459054397549267e-06,0.9649752818540409,0.057147708632728736,1.5110536970197002e-05,0.8034113621883064,0.07810949244202521,5.203792771285415e-05,1.2494233744845088e-05,0.9993247492838719,0.9999921560772066,0.9999474922474132,0.0026738592664110757,0.0005499324987516444,1.1933254790390747e-05,0.00015808633162584892,0.9891934361431746,0.9637830264223747,5.844962318722507e-05,1.317439950424565e-05,1.1149415915763045e-08,0.210606343729604,0.9999303278864673,0.9982565990766598,2.963029382771536e-06,0.31187307371733325,0.1921600106359671,0.9999303961877923,1.2399936380143616e-06,0.10394633111401776,8.956663155024855e-07,0.23395914070237628,0.5069792590925936,0.9991635246647104,0.9999983421694604,0.005353944039973258,1.2339535769519563e-06,6.243596230033882e-06,9.383863246694353e-08,2.0914919187274036e-07,0.9999983716844247,0.9999906944888529,0.9992690678399827,0.9961343020811219,1.1368548416395032e-05,0.9999323664176761,7.868031074855123e-05,3.0414059709542873e-06,0.01540387875770426,0.9998741376903177,0.9999998662553921,0.9999977564677819,3.871028173603505e-05,8.454895525666115e-07,0.004267843329383679,4.594509021867555e-09,6.4039469854111325e-09,1.8471119099651158e-05,2.2623976641624023e-08,7.974311414270088e-08,0.9997676109100021,0.00010428297868166743,0.9999208077133241,2.7800631293701476e-05,2.9513073747320906e-05,0.999914926738665,0.9862114301042131,0.9999991505856723,0.00032142610028762487,0.8490481581051663,0.7128892536929919,0.9988847859844595,7.569578073097908e-05,0.09719959258556296,0.15005311447282996 -redonda,object,0.9999962524834433,1.6679463282036202e-10,0.999886460187644,0.9968184146541089,0.9999952753329904,0.014029082970153086,0.9999999997628026,0.007774623039120337,0.0003504238348869801,0.4657588655122985,0.000817983768205976,0.0008159732524086386,0.003081981838539816,4.480392951863154e-11,0.0009701650445724403,0.9999999801701069,0.6876215584647214,0.46934354076687324,0.1563576182959366,0.0010503314436316987,0.3667399479570862,0.9999969169878077,3.628614917945606e-05,0.9999998410155513,0.0006099330725260688,0.9999678747284395,0.9999999999927396,0.021948199628347567,0.9999999995436157,2.678437987594047e-07,0.00013660913595131533,0.9999943063130636,1.0604897229881544e-05,0.9999829035695046,0.0001348291752278738,0.9999995363821406,0.8629609705584941,0.9999996143188634,4.001965048272042e-06,4.0664974118232274e-05,0.03822237905388236,1.4490725331025848e-06,0.00030762201033181685,2.34150812007229e-07,0.9999999748754533,0.9999735506945199,0.9999920204276088,0.9998387558896097,0.9999999993587916,0.9996353751095259,0.0006615778114526212,0.4407292922888045,0.9705046242633082,4.6230400506464124e-05,0.9999999933587305,1.073709965073652e-05,5.837760555840026e-07,8.389457748384226e-07,0.00027166163299291,0.02211450784394686,0.04442541560069823,0.2638428091837606,0.9999997354259655,7.700697040072613e-07,4.888341940763433e-07,0.9999997876294668,0.9999996510445278,0.6750521848898174,0.7139406133128359,0.005684257127602543,1.5045573475866458e-06,0.0022601878054457733,0.0062173463750536204,0.9912882622911066,6.035710776515861e-10,6.813789269406163e-08,0.9999842567499299,0.9999999374063578,0.9999999120621119,0.00022455044923389494,0.9999999991590529,7.742932756272109e-08,0.999944760449635,4.256753456625925e-07,0.6010649162407342,0.999852270494607,0.999999989320561,0.9999999399560209,0.9999999516748542,0.9999999716318596,0.8599612727843888,0.9999999270554667,2.4326214701629414e-07,5.92450690923985e-08,6.829327686705533e-07,5.996844581291731e-07,0.999999982108562,3.093331442111325e-07,4.2107729834700205e-05,2.323864719728842e-06,0.00021597226814818428,0.999999105365374,1.5618652639492767e-05,0.002557009190084996,0.00017402109408169497,0.0001764072433745944,0.9999999397582272,0.999999855915369,0.9999973378013106,1.2423931595718007e-05,0.9999734815894554,0.020944985496104983,0.001214675778634308,0.013492101202393872,0.7651474400378285,0.646504995188304,0.9998270838878914,0.000616196845716246,0.005266330414203186,0.9999348485142397,0.9999296359951307,0.0005627449021535181,0.999599130148664,0.02041919676106759,0.013990529575394425,8.067027052678882e-05,0.004295676961260913,0.9998632553055645,0.9996476927139842,0.9999660013238056,0.00036375643654612826,0.9999949620026672,0.0002432458518145241,0.9881357920347291,0.9997292181996622,0.2912156123042153,0.4047586258790632,0.841476487195794,0.9998347869405708,4.890497845717165e-07,8.853149938916923e-05,0.9999956450764014,2.0933493723095838e-05,0.19641577734071725,0.0007906039995938086,0.9992315771482442,5.669530957215171e-05,0.9999998702878234,0.9999997011358644,0.9999999608929431,0.08253316587291744,0.16852480091096636,0.9999999949440681,0.0035616752511644376,0.9999999933313906,0.02101219712709449,0.0006749957202520632,0.0037067844615631105,0.0014049802581803216,0.7163758388652486,0.0011320215393676065,0.14655142517305134,0.9999999968738604,0.016397612945823804,0.003263196249378304,0.003296560083839956,0.0003997510071973706,0.06283067369038657,0.952388946516842,0.9936856441850118,0.02570463836627896,0.06666540337575277,0.7129841754229485,0.9999999846592194,0.8810663257443282,0.9999999897392379,0.9999994501745456,0.001777914188727131,0.0005410062958976357,0.02100787877439908,0.023672968254375933,0.9999999959274708,0.0001155809332663209,6.769529719934031e-05,0.00021185720065455553,0.9999999999108959,0.696366515179371,4.611439897064619e-09,0.09802855342319823,0.0012071035152649522,0.7876808179187271,0.9999677185167547,0.999999993019649,0.1050532068361055,0.8313401800328702,0.9999999933150061,0.9998227888697869,0.010207046400186397,0.003143054507530592,9.32599259200506e-06,0.36399817192983314,0.9629591040559232,0.006887123712695829,0.999999999965151,0.22743528407655164,7.867089894435304e-06,0.9999999199947271,0.00016252793376077615,0.00019801916194560134,0.9999999998857303,0.9999965771269016,0.9999980279464119,0.0013679219632546868,0.011437019284913126,0.039836864724703464,0.004534563829557327,0.00767946663413638,0.9999999968822362,0.9998993889680298,0.9999969552501025,0.9999865301719891,0.002779839224612611,4.3763711745071525e-06,1.716261586095787e-06,0.11237113799590762,0.3236527213849371,1.5085077083284028e-10,0.037946353679809634,0.9999995537477646,0.9998177845531473,6.554022954349165e-05,0.9999968648587351,0.008291324501419638,6.449414158618522e-05,0.9999114517801241,0.9985439328930236,0.999923732448741,1.4154043800642386e-06,0.9821727874259559,0.9796917239893079,0.9999994504693426,7.975382562493648e-05,0.543835626372217,0.7640979691961997 -redondo,rgb,0.9487291183890991,0.026659311887011386,0.8621085553407019,0.3796964876484786,0.8681146667261255,0.23757646184500358,0.9765251017581358,0.41234212552466115,0.4156531726888543,0.4832946609126155,0.8123106973174139,0.8308091121207631,0.8303818732730202,0.02620547774519366,0.2603082445752535,0.967039552155943,0.9226882988723247,0.9173148746333654,0.921289561482818,0.7038928720053611,0.9243099295663125,0.9656044607546947,0.2554450707343574,0.9767826162288178,0.14645369241715062,0.9583301347066641,0.9399038538538347,0.1597960018435649,0.9655609542606168,0.06729886888366918,0.23802854169717286,0.8442608161115013,0.2594698830316125,0.7136522820839952,0.16018669618722728,0.9682257610933497,0.731430917809657,0.9509748233129429,0.2615407017342855,0.3103670060031415,0.379335837872461,0.11851694191309005,0.24267292357210601,0.06205573358992619,0.9757942503785121,0.8040515711687833,0.8344122632899683,0.862653664400749,0.9735505807705456,0.6424487972514437,0.24090171240815342,0.3807721224728378,0.44557335243741436,0.29542752468497807,0.9725357085285296,0.28624578568829673,0.3519746510098178,0.38100515433756804,0.8288844883172946,0.8277367341198357,0.8153685737207155,0.9277498924776374,0.961975346429563,0.1453306465281943,0.08170836143599396,0.9735479332257293,0.9653991008677704,0.46827998512450864,0.4232463761925282,0.4087192269537751,0.28033620563240325,0.40420238029203504,0.3939678466336017,0.4892074061042629,0.031026435233638704,0.1251257077178198,0.9624258567120735,0.974354699977933,0.9675110713679114,0.4036655130224612,0.9415829471625595,0.3721104658007704,0.8845241384682495,0.44775696191963926,0.4122321349672375,0.8983205926390655,0.9659402575033754,0.9541676931242928,0.9436277970348806,0.9402801816319715,0.42215357342339915,0.9535056147938664,0.31843216709448796,0.38988724157177107,0.41870211432721194,0.4394880920230728,0.9676218736317328,0.4492956961074585,0.3627883919616634,0.4458718041873953,0.48574300378975094,0.9791624170438109,0.317717373346575,0.370198349933907,0.4939470571139297,0.23469648100745438,0.9776554481304496,0.9759236812617867,0.9490014035232432,0.32822732721237535,0.9542751330076799,0.3856546892711364,0.3353262449407122,0.8063119115387293,0.81558495781533,0.8073493365752079,0.6102487636251414,0.7465684152113315,0.8345086617282591,0.89938964139299,0.8484133459712777,0.7710142865538716,0.5999001886705145,0.417246747449984,0.7941684945721056,0.34330266346078986,0.7709444329821198,0.5911121229972328,0.7005927059535284,0.777944519293013,0.6267040617164946,0.7405775087171924,0.2342651343910144,0.48445770297298296,0.624222283146627,0.9168353863365594,0.921067146356797,0.9186736058327866,0.6616781115649072,0.06970544950917816,0.17320606301849223,0.9577669698057929,0.2847740967481978,0.4272574602028021,0.6741574664476288,0.7229580067484522,0.5045308719854344,0.9690491289473779,0.9652526985479576,0.9755855942615823,0.4229291198346988,0.7877780499458454,0.9678408662837924,0.8111535217809384,0.9723852590339754,0.8260488386737989,0.824626613322538,0.11382170575284307,0.13963094203812523,0.9234311989496439,0.08941053646895583,0.9238157616528264,0.976780058197434,0.13393919486026853,0.12983269152364535,0.12719852540387927,0.1449460788837037,0.8232700163430398,0.8267305241075447,0.37488771258536174,0.7872325552590468,0.2410671263118796,0.7616577899358437,0.9645514971569021,0.7759357259416775,0.9764161406512392,0.9511717944465033,0.27790587116632653,0.08403123691454835,0.11625818687248922,0.12881041604293966,0.967690307324811,0.15894138737745392,0.2596806188987163,0.23483368215167474,0.9720086158752878,0.4982708009402095,0.028684171558515926,0.8270264462421117,0.8270311210938748,0.8136401597296347,0.8099010251108377,0.9487352208728776,0.7345269473336551,0.7566886845722333,0.9724996313729521,0.6137815817041687,0.7998731625699373,0.2524855865408366,0.30569814235038145,0.41881164805628246,0.795228451851208,0.1635965285868614,0.9372860146079375,0.7548482865910653,0.311518227890925,0.972839755400531,0.4013498218216988,0.2772890539220235,0.9460105552861031,0.814366921643445,0.9493556347419863,0.14915605280456534,0.8268340193276479,0.13200292262329552,0.7875036281145948,0.8162551481146079,0.9566673705281745,0.8382493359745022,0.8490117692388023,0.833771156251367,0.4227909669299045,0.2852654100987975,0.16100444619329776,0.9152639937143183,0.9145201536674871,0.026686901414456846,0.9121011225581241,0.9562208268109974,0.8484940030253767,0.14261205746341538,0.8889075640803921,0.40727103476625065,0.3163163213431968,0.8414884291545781,0.7949169798027985,0.8238014958133704,0.07327803540646276,0.7429734412916003,0.7792850337904741,0.9550836192278543,0.17478769090684199,0.8031990173731927,0.7930319821117326 -redondo,shape,0.7105268716681838,0.00010646132899166165,0.9999971607618148,0.986916741798532,0.9999987143124888,0.2200341677057828,0.9980279254142359,0.07640868872236171,0.00013693689275430683,0.7430241993886824,3.417763294469123e-05,3.6691554630535264e-06,0.0009076278997585528,0.0007826033609585514,3.44355797740422e-05,0.0004805170756198227,0.0024505585535933563,0.2148987463324809,8.178639631990218e-07,8.062374536586926e-05,4.974674064386208e-10,0.999322102782971,8.570987098893959e-06,0.9974015179976943,0.9993808297850311,0.9973116744874275,0.9999885008051236,0.9999844659301852,0.5943696200563333,8.44529077356789e-05,0.0007492602430312877,0.9999991234475093,1.659569515390739e-07,0.9873060926777999,7.428202751444643e-05,0.00011648564706393177,0.0005401133418310504,0.9999908486749288,0.002229448267512902,4.635514449352816e-05,5.160325994970713e-06,2.0184278570649263e-05,0.0003512962518043577,0.00024440235381188464,4.802088393976627e-05,0.9999586394723365,0.9999989583042714,0.9997997633775081,0.9575796251248142,0.9872480751951861,0.023480281780441845,0.3684912102388456,0.98777187506429,3.1946705252349574e-08,0.4824093045957545,5.498204892821193e-09,2.4895627615217282e-05,0.0003586575739463077,0.00027533263150043684,0.08747863283390003,0.053795631601846874,1.3261190985755216e-05,1.9864858337332377e-08,0.38880966678841494,0.00041890401739823617,0.9998192705720932,0.9988897371124803,0.8346929574102221,0.8986296911490101,0.0074545602028961945,6.357703642447219e-08,0.0035000331199604036,0.017190116294321153,0.9086985562188746,0.00038118636632228755,0.01879881740304986,0.9902754773716967,0.9976321052201431,0.9999694757555763,2.8438541608355897e-06,0.9999942175373588,1.100960484299412e-07,0.9995860663809395,3.84491802685115e-05,0.12594283836304998,0.9997547526926193,2.1775117344818908e-05,0.9999853074858238,0.9998033515986842,0.9998419247012289,0.8239375699251579,0.003516249136301242,7.021252834435318e-07,3.6210208295921095e-07,2.405184228622319e-07,1.698829611766732e-05,5.567003931939561e-05,2.515910873104706e-06,0.000279007254110119,7.609374874201061e-06,2.4078863527618497e-06,0.00026706561122694095,4.258096172741096e-06,0.00010470963792924338,0.0001586463080676482,9.539282108342975e-05,0.035951447395879,0.9997283181258313,0.999284963356374,2.4982721441734875e-08,0.9992994711129728,9.384087419238387e-08,0.00029963116526432823,5.963019318803375e-08,1.4818323725110356e-07,0.004220686433852043,0.9978145431292107,1.3423819664309273e-07,9.97333611193992e-07,0.9999651025763205,0.9998383130861179,3.5383389266667414e-08,0.9864485441398095,7.8518428276016e-05,1.3241446962074816e-08,0.0002973654665061034,6.295382489989923e-07,0.9912193737467137,0.9907688259137599,0.9280703391147518,0.999780313840278,0.9994954315622421,0.0012471210944298972,0.9970701358257749,0.9948416301740745,1.983621080564125e-10,5.926504470095073e-07,3.2761213270096806e-07,0.998794835616956,0.00022974849609389458,0.00035523736535343517,6.568162601678156e-06,4.110212517001585e-07,0.002157403640023077,6.604436222339973e-05,0.0005898198373628869,8.767039475467138e-06,0.9999164333173975,0.9999765477490538,0.999293500052545,0.0002822136252615265,0.32449083781979654,0.00011053959989890154,0.004927675415261601,5.5239431736579766e-05,0.09590072616229665,3.6691554630535387e-06,0.9999590634375946,0.9998406833570278,1.3977419400747397e-06,0.9996943901125674,4.800928907412141e-10,0.0018452153809371393,0.9989083363569123,0.9996378583803264,0.9999464550392761,0.999429642736317,0.0014706420190309301,0.1434019841992056,0.9990669387898797,0.007512283726194895,0.7602003467248548,0.536201891406179,9.243149034051262e-06,0.07065381577991169,0.017973467017975264,0.0005601779742930928,0.001032208726579377,0.9997166872660956,0.9999898410450634,0.9999521494540682,0.0002190878699005628,0.0004531035161632256,2.889128919932364e-07,0.0001255609256977776,0.7552781632637244,0.9965726142090129,0.004157312296914989,0.014310873902662795,1.5738454467469938e-05,0.03043943748831059,0.9999216802201721,0.8637386359602963,3.843484772910745e-07,0.6864545856781845,0.03371969605384926,0.9910877642189889,1.893032093590056e-05,0.15637572813216233,3.435442406191605e-07,0.04339972128826804,0.9279533835412873,0.9998663042494841,0.999907171439194,9.892253083831779e-09,1.41421331701394e-05,0.0003028519503117025,1.5529272476366772e-06,0.002202810340502485,0.9999752534363445,0.9987050423065154,0.9998222298583631,0.9998975103466695,0.10236377553685017,0.9999140064010779,1.2146576313481024e-07,5.8278247884627104e-06,0.3793350278499364,0.9999088172133811,0.9999999462640896,0.9999957908756755,0.011992754184129255,1.5799367766858349e-07,0.007777508409440861,1.4272003649926253e-09,1.182759817223315e-08,8.937395820267689e-05,3.467570807867254e-07,4.866097256699927e-07,0.9998463377709786,1.4006827984028428e-06,0.9993736974956708,0.010026072805235896,1.2469218054174055e-07,0.9998383130861179,0.9998458615397234,0.9999998422173166,0.00010655002418311649,0.8411094909208737,0.007914705254619446,0.9999055737618768,0.00014231428296608057,0.10355559302894775,5.542219748184886e-07 -redondo,object,0.9991303933379518,1.4020605154672648e-06,0.999998863285156,0.9880531346148534,0.9999949585390256,0.143951915313659,0.9999997813205329,0.21741476221038655,0.00034159301384061334,0.7151722936843055,0.006122722113845806,0.00048653052429790174,0.12499063172318094,5.776819702603474e-06,0.0004546032792541189,0.9641890094878149,0.018491181141554597,0.1386517283007799,1.543787824858062e-05,6.521056925512064e-05,4.520746878731177e-09,0.999928392341094,2.2184571015181143e-05,0.9999972769688061,0.9918135913073955,0.999469937099697,0.9999999312223314,0.9998854232891075,0.999964147468294,3.273901633089578e-06,0.0005780411756275751,0.9999984640768259,3.7396814320070175e-07,0.9966331577265787,6.922973935922121e-05,0.9749108342078568,0.000470554760827378,0.9999952533188716,0.00019861696263040959,6.616914704218943e-05,8.03950678573916e-07,1.2734040193491497e-07,0.0006541851054757706,2.0594929017229342e-05,0.943873401889037,0.999968091468006,0.9999978049597232,0.9999658486224451,0.9999978342599771,0.9476189256765988,0.17156153121009862,0.8855710426881226,0.9513427460384459,6.988306768236325e-09,0.9999517039867899,3.7754990543048233e-07,0.00022734141754886958,0.00023835424419587885,0.004187790479661431,0.6961222138534637,0.5766144999381161,0.0001916462002076357,0.026331718067690944,0.03464652497829597,0.00010108501293381801,0.9999957358248257,0.999758087321081,0.7098443161817228,0.5812811210540606,0.020853716926822044,1.0631242404779015e-08,0.028488437069139706,0.03802517292196853,0.961394955503492,5.773164557665781e-06,0.0010476299885226548,0.9998211504555137,0.999998803270171,0.999999392493969,9.521827709575019e-07,0.9999994579183779,1.1867789690233559e-07,0.9995985909353022,2.279699207937654e-05,0.1974396626020524,0.9998457145662318,0.9162103368950331,0.9999906766991998,0.9999993795696519,0.9999979704407322,0.5864314828841293,0.9940068884521291,6.365849395392331e-06,6.843634333278672e-07,3.890324192949237e-06,0.00012134118202428753,0.9647681209471378,2.501374118526007e-05,2.1256349205761117e-05,2.6536427446904357e-05,7.551153321595311e-06,0.4513528179465982,5.231639919658435e-07,3.243652174433435e-05,1.3471784695133021e-05,0.0001337361739310299,0.9989144364210465,0.9999996650593286,0.9999949069897344,3.1467630195451465e-08,0.9996542011964097,2.158413718817755e-07,0.0017941782716254986,3.634024850068504e-08,4.320762526571301e-08,0.0003868367367021819,0.9993697435165426,1.1054588264905143e-07,2.1255222812320185e-06,0.999983080658563,0.9998723873906011,5.0721212248682424e-08,0.8839649853458814,1.1336085296486023e-05,1.1730586731111413e-08,6.041056367005812e-05,5.702071800023023e-08,0.9989489165240522,0.9561489045337552,0.9274865030007257,0.9905119749287224,0.9988932725638072,0.000989308295837534,0.9869888674268688,0.9961779630788934,1.078371851801692e-07,1.2936917918004125e-05,3.090979958828135e-06,0.995685826793511,6.274820018848756e-05,0.0002628401241047266,0.4934382327810428,1.8961856280600164e-07,0.003299916679888557,6.329088030208127e-05,0.0005082585239047387,0.0002811461435569814,0.9999958793593617,0.9999997872436286,0.9998932836059672,0.0007287803871092996,0.8545579696707358,0.9294913873783559,0.14491797883486957,0.1401221406212356,0.7795684196638555,0.00045092244537396024,0.9996089604389945,0.9994122402390269,3.0560453695822995e-05,0.9886244557360772,1.5520320352104154e-08,0.9958238688736045,0.9883645723342609,0.9987601284574958,0.9998371658123512,0.9991929376096672,0.028426305263891526,0.19098252453079473,0.997309649432763,0.1714975881304714,0.5592861223092255,0.8101938037711516,0.9358502607311388,0.27132896322332994,0.9913014021399459,0.9815663065325373,0.001983490389664795,0.9981367869208385,0.9999008095200926,0.9996592027211949,0.9793725253979864,0.00022444702052041988,1.2579190437480891e-06,0.0001993282182988284,0.9999178172323514,0.9976322993796619,9.814521019323425e-05,0.3814688362239373,0.004014976822271811,0.41397680389033586,0.9999008970448553,0.9998367301332487,8.705494001729277e-06,0.9341811351619262,0.9996148591064019,0.9895212616250905,1.1081915270219872e-05,0.567022277693822,1.8101848753681187e-06,0.04239920300993973,0.8876339887285687,0.9993871959158069,0.9999997067177201,3.367190723047106e-09,2.698639934997808e-06,0.663760234135849,1.1310982480309428e-06,0.06671496858626483,0.9999993190182209,0.99979400958054,0.9999648612202711,0.999210763806217,0.712066217820449,0.9996059049287048,1.2934918067924434e-07,2.2851458711175063e-06,0.9999887548939596,0.9999668432620639,0.9999997336642076,0.9999748527657639,0.06657471021949248,2.5162375116929045e-08,0.0005868677809366686,1.0753185596465843e-07,3.492120005156087e-08,3.4021481366561817e-07,1.779952213273754e-05,0.10505186214114323,0.9999870191957565,1.53531904572525e-06,0.9997124995236443,0.034381802962194195,6.423784627989156e-09,0.9998594127071248,0.9998888104021604,0.9999999064512016,8.487214480749886e-06,0.37329659131559184,0.09238823315677433,0.9999790767699819,0.00014364756858775346,0.0023628264743905496,1.3094331507493125e-07 -repollo,rgb,2.863005158163978e-08,2.260585098658833e-14,0.9998886684337644,0.7068665905679855,0.9999807627019347,3.6318019116284995e-14,0.00017051801523999696,4.9850749185141825e-14,1.565335152162271e-13,9.451548876052483e-13,0.9768783542006523,0.9983379921775443,0.9974889975341203,3.505597785899603e-14,0.05323179485068654,2.3011625458268998e-09,0.9986303105520371,0.9986026608440493,0.9981126840601146,0.0004726449362016431,0.9727950384907272,0.9955219311917175,5.129342090260262e-14,0.9997303285240717,5.850658791913891e-13,0.9999965672371789,5.584245462198436e-10,1.178986652257648e-12,3.305522951823354e-09,4.764640017318368e-10,3.80819467051407e-14,0.999881992814815,9.645871531038476e-14,1.0685177785191552e-09,0.0013637113378852932,4.738275731366763e-09,0.003460962299338599,0.9858416658174288,5.137256181312861e-12,2.0079913649586e-12,0.7402909709309555,3.074387455478964e-08,6.293055388602745e-14,6.851742555047463e-10,4.940274000905962e-06,0.9984215813712877,0.9998192481843767,0.99988966419284,1.9325335437620573e-06,8.458498581680051e-08,3.966690049717118e-14,0.7440772458265587,2.5016300334897534e-13,4.208834354888875e-13,2.062766390373382e-07,8.159785700278327e-13,1.220742208466024e-05,4.5066855408586736e-05,0.9979547894550808,0.9959474812262609,0.9790850882021782,0.9597634550989473,1.7151215733989462e-10,1.992895880833023e-07,2.958089597667218e-09,0.9960275377620167,0.9999910088838686,3.6252562520152816e-13,7.719716157804971e-14,1.0365800167756536e-13,2.3771442636184437e-13,0.8384846232368982,0.8129552299985763,4.993606943993105e-13,6.302209047776653e-15,3.507701075411236e-08,0.9999962907134229,0.9987408621407102,0.9970677655291103,0.00011285570580197049,1.452847585086039e-09,2.0187389516558427e-05,0.0026990310598727163,0.0005602431439516927,6.534010776959425e-14,0.012138785956299183,2.856411714679453e-09,0.9935416891250866,1.3310418027658907e-07,1.2098757802573224e-09,5.771589412940431e-14,6.964420480633045e-12,2.8084911259613512e-06,9.457747165108621e-05,0.00021058818758934304,0.00044585667855893626,1.1091658531071377e-08,0.000591902827331567,1.5184194867930519e-05,0.00044823398097402334,0.0017550104471653037,0.002791009791839488,2.600270321708023e-12,0.6684813261838434,0.003040725688991002,3.482464848561381e-14,2.770818230129824e-05,0.9997040029103655,0.9999970338195454,3.234232735767711e-12,0.999984576652285,0.7614236943379417,0.39949433224843195,0.9963687520001193,0.9904276104970005,0.9789352872403739,5.971262560794159e-11,0.6795351343907674,0.9986669659305244,0.9999602853373267,0.9999045106249058,0.92254647158683,1.5847806108229365e-08,0.887062008806663,0.9922919781026406,4.0047527200484715e-09,0.9318396831965019,4.545960935027199e-11,4.752625421449975e-06,6.155421043468558e-07,0.0002388123249016355,8.558737662676555e-09,2.896268676621572e-14,4.589457960114098e-13,9.64900004262271e-11,0.9925445182765552,0.9971970767175081,0.9974870780952008,4.5058407689361814e-07,8.68681179850217e-10,0.0026007710784725366,1.1233663320509984e-10,2.591731676435283e-13,0.9146822101178391,7.804180966484008e-05,0.002929588645672082,3.758372857174143e-06,0.9974642081996815,0.9999944788382342,0.9986606990943582,0.901812020670847,9.61588881507784e-05,6.359210082404011e-09,0.974269591580402,1.860580630368886e-07,0.9960037538116532,0.9973641380598661,2.692388842338547e-13,1.0460365751371953e-11,0.995461602148106,1.3929561106487665e-14,0.9964816022110039,2.405117311344997e-07,5.753215458947417e-13,1.6622204644464403e-13,4.2525143207987356e-14,2.9040457221096237e-13,0.9963374972126376,0.995503496477061,0.6987021569887759,0.0001632182531969645,4.0310423831310527e-14,6.35066045965129e-06,6.185567022548146e-10,0.000148447354232976,0.00015028812811826686,3.45099886584698e-12,0.10734470409140356,3.1446702519581534e-15,2.452762422290343e-13,4.668244618744711e-13,2.194469746347596e-09,0.0012718232885787983,6.895249557447763e-14,3.537383188087994e-14,3.672862614616493e-07,0.9851556415917693,2.0274498253458904e-14,0.9955991787809764,0.9975213592607234,0.9756650236505039,1.4784613639364467e-07,2.0353937188606488e-08,0.006599699162880305,6.844788976880935e-07,1.0661727016256537e-06,1.1718927971429195e-10,0.9900021903882349,7.11632619642611e-14,5.327168879168444e-13,0.8933845088055726,0.00010479100418474361,5.619972086748326e-13,4.69037904672118e-10,0.782840874320213,1.1481018995835608e-12,2.546434171055111e-07,0.8339513196623676,0.0916209781234729,4.320565107055937e-09,2.2509465927302584e-06,0.9655417194796223,8.142867551557263e-13,0.9969511925360541,2.6379048943678258e-14,0.9735590586786915,0.9972533583216912,1.9176948923895938e-11,0.9996453658511605,0.9999310318164436,0.9998719404596762,0.9047508040328373,2.673651722414109e-13,4.966356416159267e-07,0.9984528426970684,0.9986784116120951,2.2672044765814994e-14,0.9966728282778891,1.654361647666324e-11,0.9999041939914751,0.0005270889291744885,0.00013731312981007482,0.861018781164803,1.946732496638036e-12,0.9998689507730641,0.9926343610091741,0.9985685817940666,1.7155397686803089e-09,1.5402177122905877e-07,2.1459022184999415e-05,0.96761005871825,0.002769437798992745,0.9242492672213718,0.9254933596947772 -repollo,shape,3.798129567627352e-07,2.3416282436845563e-07,0.9999283069539704,2.8588315970311776e-05,0.9999999851396422,8.795659228157343e-05,0.00019819674453755258,8.85609016745379e-07,2.687159249514519e-08,4.831644578654687e-07,7.915085282962217e-06,0.00012549189951208071,6.457849723352247e-05,4.327163267296021e-08,2.3763034340873443e-06,4.1039624795764135e-05,0.00027198016070436806,0.00019652296500667833,0.00034699559431525,1.780476536581728e-05,9.959097533605182e-05,1.4236807797539218e-05,1.8542170258792002e-05,0.002693723906822585,8.265689125254787e-05,2.036466868730346e-05,8.352683418666164e-07,5.5860425158283414e-05,0.00044050145644001387,1.3964548420718944e-05,3.421776086630384e-07,0.9999996447728582,7.654744854139005e-05,5.4624648558686714e-08,0.0002639485233912127,5.9275152380736824e-05,9.718543654680105e-08,1.5801320080220178e-06,3.635496528149641e-07,1.261620193694103e-07,1.2788475656286911e-06,1.7720566640949324e-06,6.073800355304755e-05,0.0001058202043952218,2.7428927553744453e-05,0.9999540374870085,0.9999999513558729,0.9999424201969698,4.7151274544833844e-05,2.0527351293746823e-08,8.503143857972625e-05,1.2753214346528941e-05,6.15600316668309e-08,2.838172355006161e-08,2.0180934553232594e-07,1.2650909713527252e-05,2.8715764764903584e-05,8.563844390865701e-05,4.4752405314599125e-05,2.2343430753451615e-05,5.401066017472066e-06,0.00010412457784654533,6.000563534956166e-07,7.242959916516059e-07,9.99827383575153e-07,1.8756812841625952e-05,0.00024627763854108685,4.1963951721544075e-08,4.0582010684304494e-08,1.5267654340585798e-07,1.0868523044349476e-07,9.94135525124672e-08,8.069270531558342e-07,1.5394408553963139e-07,5.711056853401538e-07,6.576603341179335e-07,3.385447909989943e-05,6.960717708203275e-05,4.7785526687590125e-05,2.1917346593378852e-05,2.223629991381888e-07,2.9347890276223362e-06,9.126131018796777e-08,1.499682955489933e-05,9.359337333888465e-08,4.2828423398383276e-08,1.1205956246464516e-05,2.177339884242614e-06,3.7986842305417396e-05,5.908515886983569e-07,1.7555341949028936e-08,2.8422601397177257e-07,2.0539187465696843e-05,1.7509391705308978e-05,2.5657109639245076e-05,0.00011215519597465011,2.4691907098318576e-05,1.3109443341373429e-05,3.1394186068408156e-05,1.095772070095397e-05,4.647394256746645e-06,3.906074935364486e-05,1.4241647447456845e-06,4.4619992311756054e-05,1.2989097448761026e-05,2.9111921114408354e-06,1.2909588971736165e-07,0.0011578070366445837,7.747413945897263e-05,5.6989844613719045e-08,5.842241961056761e-06,1.1793007668127627e-07,9.762575739448393e-08,3.7837278767719243e-07,8.700253418430293e-07,0.000184032580049728,1.1894049277224183e-07,1.400506074659855e-07,2.158104257771144e-07,0.9997659168419141,0.999999872982431,3.042912531266149e-08,7.055438820942702e-08,4.329879643835347e-06,4.1857357800105774e-08,0.00010090051518563157,5.3045963165236675e-08,2.616025472797274e-07,2.8193726810549607e-08,1.7282589669873844e-08,0.0001125894426793265,6.134790633841398e-08,2.922245206487792e-06,9.65661447066212e-08,1.7879623726393046e-07,4.7409889258280374e-05,4.779936035038603e-06,9.045707930669952e-05,5.715454575237205e-08,2.8209670467287383e-06,9.138489110494335e-05,1.6311698994087946e-07,3.5206897857072427e-09,5.65427386277433e-08,0.00024907712711797413,9.756379448118132e-05,4.3301609026394106e-05,9.433665522935756e-06,3.761069629534956e-05,1.4042860356460178e-05,1.8723951762597484e-08,3.7692758669466237e-06,0.00018857741571272357,6.473331712126939e-06,5.98430485993978e-08,8.352948574625144e-05,0.0001254918995120814,0.0002590760252867505,7.3223243668406114e-06,0.00029203693766958284,6.931267399912878e-07,0.00011446749553470068,0.025703007410520003,1.2431349505364456e-06,7.96835494822815e-06,2.1919490469548542e-05,0.00015469594349679577,5.4584411516226116e-05,6.972254574490776e-06,0.00022876294041879,3.075755111629031e-06,0.000467085840312877,1.1122881416606112e-06,2.772029793433134e-06,6.75088001696451e-07,1.873499068280103e-06,9.151636247597762e-08,8.217039478776982e-08,7.130173755461379e-06,1.8382568139753228e-05,2.6411349890496735e-05,0.0006223459881631355,0.00010483179080079533,4.190326702868933e-05,2.2508964811148416e-05,2.9059520286061235e-06,2.7474191444427858e-05,1.9396602055184727e-05,3.757748831154778e-05,7.702219859302936e-05,0.00011493437547866103,2.9494103210524387e-08,6.467194610206468e-07,1.1025052347890622e-06,3.8967612898779046e-07,3.920311391010486e-06,2.468883724635195e-07,2.5431959701471157e-07,1.1644107775799357e-05,1.0283100293288449e-08,4.443983266893247e-06,4.6214054231799426e-07,2.8446472472454403e-06,7.225776186453102e-07,3.1255598026167443e-07,9.908562379097812e-09,5.083556202786899e-07,2.4804864519693375e-08,2.26046595848869e-06,4.129400249168523e-06,5.5735238781642803e-08,6.977814520726596e-07,1.3478276300288942e-05,1.7629595389683726e-05,1.4094621505706279e-05,1.3536087801147216e-07,1.3177673264100562e-08,0.8996521213660736,0.9999833927408792,0.9999999605946437,0.9999999924740178,2.6402785544617245e-07,1.5587413692845822e-07,3.2488955008920956e-07,5.5113344273421924e-05,0.00026014785111490627,5.349055205483125e-08,7.396065563057242e-05,3.142027783929843e-08,0.999992703805677,2.705830996660732e-07,5.3148257763951456e-08,2.645317730033593e-07,1.1520935403112515e-07,0.999999872982431,0.9998353023086302,0.9999246358920683,2.0156716178139242e-05,1.1084378013791178e-07,4.4453275476038677e-08,1.4031172788233935e-06,2.1639501791615882e-06,0.002063235085843515,1.88730684618089e-07 -repollo,object,1.0628669215414931e-05,1.4334403476829555e-08,0.9999454219986389,0.00042335032038369946,0.9999999708328762,5.217625358058661e-05,0.041569604951672764,3.234520234337719e-07,1.6616739213764953e-08,3.109705184988591e-07,3.109203343162033e-05,0.0004428666226111877,0.00024260478478657635,2.6803929594172774e-09,2.096492287214887e-05,0.003881968380370521,0.0006887557508967725,0.00038839781010716095,0.00141141541188447,1.278905703417014e-05,0.0006296430375889361,0.0008224267118466106,5.487322488640141e-06,0.13751546608614484,1.4663425804332037e-05,0.0011392614945572252,2.9552557406297783e-05,1.0969590345094689e-05,0.032594287793005376,3.515146924261338e-06,1.0579886057961364e-07,0.9999995131039648,7.18431059712602e-06,1.9304104437027335e-07,0.00022402666650194394,0.0018203251077300263,4.1283231487655676e-07,2.848089379131784e-05,4.9026094156637226e-08,4.5841989742853904e-08,7.208308240173242e-06,2.018024745113507e-07,1.7729296720458245e-05,2.9588019335085062e-05,0.00518557597650979,0.9999584415325051,0.9999998972146943,0.9999521784130124,0.005500160983498712,6.097591198906917e-08,3.524981964028182e-05,0.0003064549477100008,4.8925700419964263e-08,6.503234712137276e-09,2.830153434433611e-05,2.3632800051016983e-06,1.0244929520321723e-05,2.364100685088106e-05,0.0001452782819931508,0.00011174767930664585,2.3280096479155554e-05,0.0006482664912603544,6.504544734528813e-05,2.607887642404613e-07,2.984673421028752e-07,0.0014247251824526421,0.010669591045489807,3.386966952742853e-08,2.7002775578186336e-08,6.439508396409469e-08,1.7131315932242815e-08,2.322743524561848e-06,1.3622718500732089e-05,1.2644409752794775e-07,2.8226397572369847e-08,2.0233497596068574e-07,0.0028773732053922908,0.005147134184993914,0.0019511478323335843,2.222612468556147e-05,7.190919802562776e-06,2.258777545088974e-06,7.735595634827528e-07,6.6607735695139245e-06,5.6388219150978814e-08,4.692698980457159e-07,0.0010715973279444991,4.810020788858346e-05,0.0005197880536772211,1.5522871985638675e-05,1.3484066448621448e-08,2.3845101800696948e-05,7.10502761720652e-06,1.162248224763304e-05,1.437796669710171e-05,4.472105486733901e-05,0.004132351749621305,1.0627106229361072e-05,1.8217394237738665e-05,5.856244715494177e-06,4.745521204048103e-06,0.0003643140913537145,1.178233743335987e-07,0.00010040533847878845,1.6787212162706468e-05,9.888478407081226e-07,2.117098019291237e-05,0.07754773526356652,0.0030145245679537125,1.7653054788969398e-08,0.00028503969019266187,1.974691848919417e-06,2.438841629833732e-06,4.025226297120671e-06,1.1324413662568152e-05,0.0005537483761697679,2.899143661833473e-07,8.261254747227669e-07,1.9818007390705736e-06,0.9998053185285424,0.9999997663153604,2.6197979579402284e-07,1.3670781231292638e-07,3.142880777695055e-05,5.826268391472728e-07,2.5150003793531652e-05,3.5254825184399567e-07,5.554348845749397e-07,1.0786342051011047e-07,9.230612822756842e-08,7.580537984726093e-05,2.568024324438953e-07,9.918126483527125e-07,8.791294897476428e-08,3.7033024101515705e-07,0.00029163264330631214,3.974758180254824e-05,0.0012317379715345855,1.4328253410606123e-07,6.248845371229816e-07,0.00012014587783456507,1.56687595047804e-05,1.2670477263172346e-09,1.1744359742388383e-06,0.00010634924201532095,0.00016997088090973565,1.734801850330347e-05,0.00048749469128400464,0.0030394220808032477,0.0009171933922198132,5.164636893155787e-07,7.2651538538245355e-06,0.021082283991840298,2.7648897739161686e-05,6.580497960770827e-06,0.00038299262445639964,0.00041271422825298157,2.7852529413880878e-05,1.3042284341629572e-06,0.0016107181000694806,7.698951344513235e-08,0.0009728731055892729,0.3607444118124108,2.2773090331246456e-07,1.5084443841471227e-06,4.16168302936093e-06,2.7428631855729633e-05,0.00021635689133506133,5.213738187086551e-05,0.007369733717632953,6.143759135893958e-06,0.00023522009788390507,2.1779460053551366e-06,0.0003384105896864595,1.4528783223565543e-06,0.0003917956092281325,8.556143002215847e-06,1.3992894956658488e-06,7.054057764394637e-07,2.86808080836735e-06,4.301409059489118e-06,0.012228898596400856,0.00011542365894575993,1.9094257947245117e-05,7.699179914668316e-06,0.00044925111593791705,0.0006400966933787445,8.240965919882191e-07,0.0002333583424425341,0.00029833240338953993,0.000916505926426144,1.5282844428716965e-07,2.092791115807793e-05,2.9493924897039893e-06,7.666110036825471e-07,0.0007934980078175069,4.905235890786163e-07,2.3701121124029207e-06,5.991558678942674e-06,3.3934934319394182e-09,0.00012044860245062468,1.1567092934759533e-06,7.068886764950756e-07,2.3863882387251586e-05,1.5657231040844372e-06,5.040030934568862e-09,4.6081864257131086e-05,5.213919190198108e-07,2.111735172604924e-05,9.446872027061694e-05,4.065825888802822e-07,1.3362802610273505e-05,3.097820410135901e-06,7.606473326772731e-05,2.102548177612655e-06,1.1990076616819706e-06,1.941217200770717e-07,0.9960181172146515,0.9999821209788592,0.9999999102441738,0.9999999840818972,4.622508759226753e-06,2.230432002121265e-08,1.3086936907980966e-07,0.0003730751426279972,0.0014974541627749609,3.916842127336563e-09,0.00031565876322059346,5.25393035157754e-06,0.9999944232470485,7.980276490128073e-07,5.635784374793381e-07,5.372010952476552e-06,2.4414897908019006e-08,0.9999997515213916,0.9997933709066644,0.9999295529965095,4.349879357291131e-06,3.8932415046904594e-07,1.869351480490921e-07,3.215062779708842e-05,7.349304912859936e-06,0.006293668634848642,2.1064311915714343e-06 -roja,rgb,0.9999999999999909,3.4384740137796565e-19,0.01944540608572521,2.0640961869260994e-06,0.03293130383176606,6.977469489686007e-08,1.0,0.0029006402200071127,0.0012587570965209751,0.011389032556097576,0.0014263915426808065,0.0025744328021872764,0.0027411483902894567,2.6463319614859786e-19,1.2251388906751843e-07,1.0,0.9870642566778567,0.9680496942402159,0.9859107982342313,0.0004347574573059908,0.9982788178496982,0.999999963157981,1.8322300928810307e-07,0.9999999994816904,6.121171652457588e-12,0.9999635469498104,0.9999999999999982,1.266137151284888e-11,1.0,5.982530382162812e-17,6.935848027327313e-08,0.005107101299637375,1.4451035732817777e-07,0.9601375034861829,1.9859349030536227e-11,1.0,0.0006720246993696967,0.999996031360736,7.771152259619887e-09,3.2590026650568294e-07,5.814204458486548e-07,3.2457812780455173e-15,6.434276808621251e-08,3.1478844747520187e-17,1.0,0.0004284143777700963,0.0026088358593563217,0.020311247587075445,1.0,0.005803387836485109,8.2256718281239e-08,7.122485023614263e-07,0.0045156044567685235,4.523575319323747e-07,1.0,1.5052673606809041e-07,1.5851185427976838e-10,3.2971197859623833e-10,0.0023399820401571523,0.002548873898125556,0.0017180002519525807,0.999333250505154,1.0,1.4555362924792644e-14,2.1086714350684202e-16,0.9999999994166857,0.9999981702320778,0.011583716618493408,0.0036549949685318744,0.0012217139666536364,2.7559270518739335e-07,1.947611742672108e-06,6.705637357367847e-07,0.027818040689931253,2.042340970316462e-18,5.163011543334848e-15,0.9999914447950715,0.999999999151703,0.9999999796242756,5.982816963275327e-10,0.9999999999999967,3.1201179256695754e-10,0.9987756764658888,1.99336243453559e-09,0.0022590347151340414,0.9994737085217754,1.0,0.9999975424002063,0.9999999999996725,0.999999999999996,0.004463774382510621,1.0,6.3968999459228e-11,3.600678693123753e-10,8.785273349296331e-10,1.5511772901019102e-09,1.0,2.078828279416977e-09,2.3357067077150555e-10,2.0072961389103414e-09,6.068533227576909e-09,0.9999999999999998,4.1258051610456455e-07,9.419462387795408e-07,6.92601059193697e-09,5.875753814444699e-08,1.0,0.9999999991242714,0.9994488265255338,6.45743057513529e-07,0.999926482339936,1.1044988093316373e-06,7.379633014128432e-07,0.0005622922362505,0.0013480885864726973,0.0009713829301140372,0.2883898547948858,6.349046363074617e-05,0.0032304294173772724,0.4090035700335966,0.006864441018587993,0.0001445362772393919,0.0019398261448263048,1.5334218618638914e-06,0.00030598279292448724,8.471085097743834e-09,0.00013752415022970016,0.14276018212291966,0.00879269258786012,0.9220556167329234,9.438675327972683e-06,0.9634053036869249,6.606386239532716e-08,0.023069617572973603,0.3796394561269607,0.9854023843666649,0.9880659189490136,0.9808923393374642,0.0048874704578961235,7.216528453872424e-17,3.318593193698195e-11,1.0,3.4143345483621855e-07,1.157681517132375e-06,0.00024808656814242857,0.00043956041717663067,3.0087101258256696e-07,0.9999999895230695,0.9999975811122911,0.9999999996386961,1.6379708727323375e-06,0.30923740840005637,1.0,0.0013639433822122129,1.0,0.002241025698660824,0.0018220693390712016,3.7648248868889845e-13,5.461432081414903e-13,0.9940159876579544,1.2189389872125655e-13,0.9935824611972917,1.0,1.8842976704709226e-12,2.811684477414765e-12,5.375597623469802e-12,8.486040052065072e-12,0.0017896026320775526,0.0024339620868069354,9.94851892694899e-07,0.2232498057067342,8.215081556969732e-08,0.3232796068411859,1.0,0.11246252682342935,1.0,1.0,8.614183538152843e-08,1.4973791131258115e-13,5.218992045914686e-13,1.2940346162275892e-12,1.0,1.6306043656561813e-11,1.9214989297655732e-07,5.859748016915292e-08,1.0,2.521249879049949e-06,6.581718132710485e-19,0.0024732396848128287,0.002136397460587296,0.0015996702888718263,0.9985940828982004,0.999999999999994,0.0005511201781906874,0.6673514796378142,1.0,0.21500786421082796,0.0004687186267855132,1.1491345017248437e-07,7.06142539534881e-07,1.26731403786923e-06,0.4367090877464718,2.892368251580848e-11,0.9999999999999967,8.408372527057984e-05,5.437389411604544e-07,1.0,1.2992901494727619e-06,2.0312166806610756e-07,0.9999999999999973,0.9899161438003116,0.9999965789061074,6.3051111494666654e-12,0.0022136655274284014,1.2380356113773949e-11,0.0002801496130640288,0.0010256880812839087,1.0,0.003480207644255291,0.007278591560869454,0.002542139438899634,1.1042603699328646e-06,3.4356819171865753e-07,3.214034926656941e-14,0.9577891435104036,0.9490968752172256,3.4649072309984812e-19,0.9523538229012815,1.0,0.006903055436873566,2.0133967185472723e-11,0.9999468453757789,9.380944999775874e-07,4.769043608604376e-07,0.004212370448733663,0.000317298403115015,0.001519002962827124,9.736300078572946e-17,0.7153500785933551,0.4184234913958216,0.9999994447126729,2.723045505799637e-11,0.0011832317614191776,0.0005813481551125421 -roja,shape,0.9970348727296839,0.987778006193878,0.9999974963870675,0.9999966153166568,0.9966680759034736,0.9999744637299561,0.9997055783931078,0.9912798611520374,0.9992731183609591,0.9998298593465851,0.001786671910108622,4.1105205215177454e-07,0.00013458200557108977,0.6932295214430859,0.029137557414368635,0.9998962979937995,0.9183347416244899,0.38734469609040045,4.171367617634269e-06,3.53610211468403e-05,0.03799104614560883,0.9999919828960039,0.9912840932303364,0.9999999285725545,0.999995070906526,0.9999932052557752,0.9999761935293312,0.9999914214178167,0.999999240999854,0.9999999309223427,0.9985884608344512,0.9999268443033055,0.9999670973179041,0.9999955309925438,0.9999921271951704,0.9999345143441424,0.9999997830324545,0.9999723521797607,0.9605316890023327,0.00019204542718169026,0.9999921947045757,0.9999882548737316,0.9999902997657798,0.9999898107815338,0.9999686679460579,0.9995709982892612,0.999965822708998,0.9999508578980358,0.9999888000432485,0.9999982558821942,0.9999918090490384,0.9999633441526653,0.9999810709872679,0.9999849973835445,0.999981879550921,0.9999993404059752,1.1732940609833554e-05,4.999649600643762e-05,3.7888814049939623e-07,0.9264933081605112,0.9999041941884282,0.0012411714074000435,0.9997365850574418,0.9649601118475067,0.9999973804651362,0.9999999009600409,0.9999999590542447,0.9999880350396205,0.9999945971717948,0.9980489763562078,0.9998931950189626,0.9999600036675412,0.09106028093068981,0.9999886849994015,0.9948879319501286,0.40411869519634674,0.9999953641792522,0.999999822598492,0.9999990678272023,0.9999762790355516,0.999983429693421,4.427292472494139e-05,0.9999681522016356,1.0893677847043067e-05,0.9999727448634336,0.9999602058044079,0.9999989635992242,0.9999836791385206,0.9997947925649999,0.9999895927077691,0.9999745574468828,0.9997501303725395,3.3946822445288566e-05,0.00015691687616086416,4.669946173689776e-05,2.1773656237604556e-06,0.9999826505817039,0.00044579908707465134,0.045816122828752165,7.604693210324966e-05,0.9893308448591875,0.9998804291897904,0.9992006902668322,0.9994634015111654,8.794625157259117e-05,0.9999998784811287,0.9997707161796308,0.9999998767748067,0.9999994135742096,0.9999743517891901,0.9999989359173432,0.28474613513792285,0.9999841843977648,0.9987717898931017,0.9999993884305635,0.9961892039106642,0.9999972326498839,0.9998848613251741,0.9996943864770675,0.9953684468570767,0.9988682242452714,0.9999999555142816,0.9999967581535663,0.9999968645636566,0.9999994287383182,0.9990768706132523,0.9998283615814668,0.9999993448656608,0.9999928247892828,0.9999986767300351,0.9999073679586639,0.9999969263103603,0.9906700578961686,0.9999727201564442,0.9999988304470017,0.7507410499069327,0.9975291590579608,0.999931778996019,0.9999983315534258,0.9999989830262841,0.9998784454981746,0.9999957889560627,0.9840923039418861,0.9539877138272209,4.9532095278959614e-05,0.9999993504700626,1.1695030291449268e-06,0.9999999064878516,0.9999985217009932,0.9999997876001463,0.9919530845286877,0.7629277488750251,0.99999971543436,0.9625542052624979,0.9999335280459938,0.8206319118187221,4.110520521517759e-07,0.9999996419650073,0.9999678424083321,0.36608208593765995,0.9999987056638877,0.003932538243455613,0.9999938777308748,0.9999984853533566,0.9999949765767178,0.9999910951836611,0.9999942948507347,0.7765405653733658,0.9998495358125667,0.9999769542687483,0.0026126118091858498,0.9999846252913797,0.9939200531598197,0.9999983150115962,0.9972468736524246,0.9997933175394027,0.9997647730835968,0.999916599055818,0.9999698560700386,0.9999987268729383,0.9999988986867029,0.9999523275581,0.9998770879817637,0.9996790090406268,0.9999999439590113,0.9999942001858345,0.9998539015344986,0.9997963887979976,0.9994163627958231,6.8527771334141566e-06,0.9993291557322238,0.9999674558257833,0.9999460152825013,0.9216014288317136,0.9990167344553034,0.9992836374258318,0.9999986149017399,0.996401900401329,0.9999970258609426,0.09295418811411138,0.9998158693071945,0.9997182501585404,0.9999921028043771,0.9999975334219897,0.9979740406521157,0.8318449907929794,0.9998231776513823,0.27694357729491,0.07445678960685552,0.9998387846843095,0.9999986768663688,0.999993938908927,0.9999965064477021,0.9835603090365301,0.9999990012828508,0.9993688360796261,0.9999997449405991,0.9997179975100439,0.999737445529098,0.9998718775438254,0.9944631243464611,0.9975979521128157,0.9999523813400071,0.9173336995703685,0.0017599092303114145,0.00863254300061681,0.9997641650328811,0.0001639765692604893,0.9999104736096908,0.8105959618888192,0.9886923727676107,0.99994379683083,0.2767271769486358,0.9998453727437198,0.9988682242452714,0.9998857570825634,0.9998953969593587,0.9999984012104541,0.998974172137733,0.9999683499415463,0.9999729418077498,0.9980186194914936,0.9999913110944344,0.9999998243226356 -roja,object,0.9999856954243852,2.5660818255829394e-06,0.9674997560661672,0.9710819402783407,0.41064660282154014,0.8760352358878529,0.9999998303955867,0.8121015122139844,0.6856100119602272,0.9883297598944012,0.00042331028294997046,2.5309611280912645e-05,0.0002462557215457185,2.471650203019847e-06,3.2358054292019716e-05,0.9999991242031422,0.2679529864820681,0.23275320335276478,7.46521753979729e-05,5.74168746696658e-05,0.014631747660652512,0.9999802148732394,0.17304608153375492,0.9999989610604463,0.6786652493373595,0.9998419792484733,0.9999999945174498,0.7887909709683535,0.999999994218481,0.08496260673440535,0.5708235479529902,0.6425227076191545,0.2212464739441373,0.9999434314384432,0.0068717634606985075,0.99999990594418,0.9995368432661653,0.9999882477968608,0.007987080461427853,7.028625472047499e-05,0.4850190955746939,0.0294710246511152,0.7971104081874252,0.003895874574248262,0.9999997689591894,0.7360287901936622,0.7998875153538516,0.9008446399765164,0.9999999881199587,0.9993952793840106,0.950784220468964,0.9047508213376176,0.9990985005666675,0.8663744527043773,0.9999989813869734,0.8955431154428519,5.511766906378059e-06,2.709103381184668e-06,3.6716751383835575e-05,0.055720226979169694,0.3527674436690592,0.002150842030691022,0.9999787110845663,6.248557144055579e-05,0.010607918791102585,0.9999995591259409,0.9999853323112792,0.997526034912649,0.9991887740062187,0.7477177454421365,0.25865840455768824,0.0616465858148981,0.00016982786881199668,0.9997481816069967,9.104438716521605e-06,1.7343588085667755e-05,0.999916386399644,0.9999990825065455,0.9999936056314038,0.07112226782036443,0.9999999771222893,1.6246213845267093e-05,0.9998753428425289,1.8250414148767837e-06,0.9988086731938749,0.9997753610531163,0.9999999899507123,0.9999923136496806,0.999997584079297,0.9999998552105621,0.9986272058352774,0.9999983726739338,6.773780659003758e-06,2.0327580450351145e-05,1.0706200448806757e-05,1.282544602850935e-06,0.9999999301342803,3.803628804788219e-05,0.0008597594664986327,1.9777521216710844e-05,0.00713993120059981,0.9999446735808886,0.039550409078532384,0.006248923933352318,4.71866638939534e-05,0.9723873055567871,0.9999738934257711,0.9999991890403539,0.9999760684025379,0.5166851307965628,0.9998924298561052,4.4814430030404835e-05,0.04649886842115203,0.012712741329080571,0.6450260206681342,0.08310146275076222,0.9999416772308845,0.021764348611705377,0.020934220593103424,0.7681169991240605,0.6887876017233951,0.25587616217473613,0.9989396237493875,0.32393201364416097,0.13940093494437705,0.00266445578089723,0.08605690766536911,0.999956827297591,0.9985825018463528,0.9998999460252578,0.9834142021170639,0.9999671686398496,0.4386808747138254,0.9997392710182623,0.9999141913548858,0.021988286166749863,0.736686505272269,0.9668228754210096,0.9996153865421546,0.017028849837237934,0.22995577174962206,0.9999996395598736,0.0394040508174385,0.006546244949002248,3.1172498997990124e-05,0.989740435435045,4.589864061005428e-06,0.9999983517277259,0.9999856726874438,0.9999984449532969,0.0031506708147165607,0.23686632446179012,0.9999999937322372,0.035264114864739536,0.9999998478086388,0.030195364852332502,2.3701008152932216e-05,0.9015389770050514,0.3702600196570016,0.0884996866701844,0.6992944391367146,0.011750998567759997,0.9999999088146675,0.8020692041399611,0.7480141383720964,0.7541251095989125,0.8280639005381584,0.02510850943625197,0.9872225746097157,0.8822659796276956,0.011258305010854308,0.8996171638559498,0.9265362460375022,0.9999999881626139,0.9626529027618671,0.9999991991943071,0.9999982538791312,0.00408799212701295,0.34764934204205405,0.8887027864213434,0.8465420170763237,0.999999072711457,0.22057213218981217,0.6645789547594737,0.9685492475399665,0.9999999923747941,0.8162433153455487,0.0001629996599437479,0.3987671166600765,0.00011478852982088542,0.9610842711386465,0.9999388678298596,0.9999999449678428,0.005320247709836017,0.9891842197362168,0.9999997586164188,0.9998439708558277,0.015597992217209622,0.9749313456662413,0.0010521518735385567,0.5120994215896542,0.9971495032917498,0.8451651366369916,0.9999999954615935,0.03308991183306408,0.00307182653562449,0.9999966038993916,6.301090269306847e-05,0.0003062569720774377,0.9999999752642483,0.9999735672168552,0.9999742142515152,0.8531490320268635,0.07703308311492511,0.9592949545317402,0.011250103105789309,0.44744909458339405,0.9999993162252373,0.5464197822100452,0.7563734535325488,0.2747014053264285,0.0028070272519322053,0.30305066406193426,8.465079388429862e-05,0.0042499311715195305,0.0033346788771441713,3.136520547710934e-05,0.002560186609978826,0.9999960356456273,0.03264855933969375,6.174243686401326e-05,0.9999570706280304,0.00020954826914800517,0.6530337801955195,0.6631649517027506,0.4346321496238153,0.9142316410848829,0.04255287237956412,0.9979878793859034,0.9984070382399718,0.9999871244975316,0.00011005377737160879,0.5594098901345365,0.848013606489461 -rojo,rgb,1.0,2.6087093127889884e-53,3.62532378875424e-12,4.6171200407810267e-17,2.703546594716821e-11,3.4792094241375344e-24,1.0,1.9097502188678198e-11,1.294460444010864e-12,3.6181863987020517e-10,2.1847932661563513e-15,1.2388722512193688e-14,1.3770818297772918e-14,1.451754339598098e-53,1.7150182274829674e-19,1.0,0.008643663159948134,0.0007027131091208858,0.006950543105787242,2.7365266992394033e-16,0.7531843548111453,0.9999999999999714,4.4173670325434695e-23,1.0,2.0321235517452438e-35,0.9999890537069427,1.0,1.1748354676990357e-34,1.0,3.3796924279878444e-48,3.3761886344860294e-24,1.3071309218386329e-13,1.9222806583957042e-23,0.08813281886720929,1.0062861112664538e-30,1.0,6.373824791718338e-16,0.9999999854586894,2.3026466826074016e-27,7.549802719909637e-23,5.621778996949112e-19,3.233004144894013e-44,2.380152998548854e-24,9.765850053611564e-49,1.0,1.4168215963882472e-16,2.202954145273781e-14,4.058336475605301e-12,1.0,2.218571862001689e-12,5.318386168984441e-24,1.0899856269902692e-18,4.009189031111781e-11,2.867692063467109e-22,1.0,1.175587614448614e-23,5.485732710952514e-33,3.194177915225879e-32,9.440040863344015e-15,1.0869413732149711e-14,3.554031031613764e-15,0.9783074951306808,1.0,1.1173368447811075e-42,6.376066211531864e-47,1.0,0.9999999971004685,5.093713763691266e-10,3.1872071597383346e-11,1.3519482827524675e-12,8.687395265578196e-23,1.7008002446871987e-17,5.708825984486182e-19,5.632385464071498e-09,1.7833741724892424e-51,9.223546418132887e-44,0.9999997961742773,1.0,0.9999999999999944,1.3630065577464607e-31,1.0,2.919122834513223e-32,0.9772731090760136,2.631231659604862e-30,8.708686063215537e-12,0.9970194811088701,1.0,0.9999999958189374,1.0,1.0,6.120475479049634e-11,1.0,6.233938948517504e-34,3.856212115814762e-32,3.4842734199036917e-31,1.4130173986899063e-30,1.0,2.9187831066054758e-30,1.434506993381512e-32,2.6944963683255525e-30,4.1764464189042436e-29,1.0,1.339114152782014e-22,4.106269676315624e-18,5.777679334019261e-29,2.2019451964177905e-24,1.0,1.0,0.9830479289536374,4.291132849008809e-22,0.9999180043894387,4.296659131148916e-18,5.686474014965215e-18,2.3674630704198704e-16,1.9706579056488866e-15,8.097841239691368e-16,2.2569208029992022e-06,6.649098798638964e-19,2.278254592169215e-14,3.6948139600191574e-08,2.9010918774502343e-13,5.669233090072627e-18,1.6251788139116949e-13,4.836563648241876e-18,4.6062659273017084e-17,5.976985503912538e-28,5.015879487894372e-18,2.0134898593189986e-07,2.666927122445419e-12,0.002218719309037684,1.0279315696536792e-20,0.06384335498864127,3.1993585578269718e-24,3.3737469553835604e-09,6.2373636365532036e-06,0.006947947398898016,0.011237847957632914,0.0030418432480101686,9.099528230321066e-13,5.503222795735151e-48,2.949917199158869e-30,1.0,1.5236970202809301e-22,1.3057637571455527e-18,8.319513252337369e-17,2.0802688416522484e-16,2.1055942430287712e-24,0.9999999999999991,0.9999999937539947,1.0,5.07091005509371e-18,6.929150608117222e-08,1.0,1.9389867472082897e-15,1.0,7.820994404719145e-15,4.831672590516087e-15,1.6102754473202361e-38,1.968094655337058e-38,0.07386318456335146,1.6721401022387047e-39,0.06049618831396771,1.0,9.181671642575478e-37,3.51843147755436e-36,2.7295293869820256e-35,5.695182667496218e-35,4.437660117804899e-15,9.563179406941041e-15,4.253449211086631e-18,1.806053665189146e-08,5.275080548774224e-24,1.5579520933809584e-07,1.0,1.9125801046933914e-09,1.0,1.0,2.5565890615679727e-20,4.1110536096845747e-39,3.8585545236068886e-38,3.5931792405494524e-37,1.0,5.378947803807603e-31,4.618405045816147e-23,2.175744870110723e-24,1.0,2.021575911392724e-18,1.142377829209979e-52,9.984186341283287e-15,7.301449032651935e-15,2.939636622595412e-15,0.9971022194167614,1.0,3.3815016953036325e-16,1.4912466712971918e-05,1.0,6.156167591039547e-07,1.3156523048195342e-16,1.1209227394560989e-23,9.086672637024534e-22,2.3584722755668824e-18,3.1226251414119667e-07,1.2525276199407945e-33,1.0,1.373223635106427e-18,3.5756212985074186e-22,1.0,4.5371762038423614e-18,5.160264109758819e-19,1.0,0.37992849544127855,0.9999999916430841,2.0333693735760617e-35,7.79799575169024e-15,2.830126392860215e-34,3.268469251916669e-17,1.1209503335823116e-15,1.0,3.5954738703712805e-14,3.8278962828832966e-13,2.3863558250880167e-14,1.278870552362301e-18,1.5362248986467363e-22,7.288570319190916e-42,0.00032151909221663383,0.00018755654419024646,2.6537430562022003e-53,0.00023636621586532215,1.0,2.9369577903580904e-13,3.1129569106791793e-30,0.9999983984472874,1.1965352140727291e-18,2.1556665948502146e-22,7.888066549550383e-14,5.077368957251625e-17,3.3502200786354476e-15,1.1593826988126794e-47,4.1415627643565175e-05,3.6475394778852267e-07,0.999999999951491,1.3364800661669295e-30,1.3268966505317517e-15,2.0751379162905467e-16 -rojo,shape,0.9996515070204325,0.9987566193889631,0.9999908960970271,0.999966417708377,0.15458165154468229,0.9999703475013447,0.9996758214025999,0.9991093382591407,0.998599734293107,0.9999958344729198,0.0004471678322635597,1.4028975010093e-06,4.5248732848362635e-06,0.9991882762404656,0.020345150035013297,0.9994663199725011,0.0012520335284299253,0.000398039516625158,4.9079274410726356e-08,7.45852357062303e-09,1.0795835784754088e-07,0.9999955708667053,0.7243693715460983,0.9999980896769058,0.9999995149041987,0.9999899689201982,0.9999432492203975,0.9999998696742886,0.9999999889961612,0.9999782214111468,0.9646348296168124,0.9901365708945988,0.9992376834036824,0.9999822317729035,0.9999989084469194,0.9998987811956269,0.0011599159777275294,0.9998100830072931,0.0006301886486246895,0.5280230173662742,0.999870036455401,0.9998482056231922,0.9999990725488432,0.999998212066371,0.9999817732443907,0.39301625474229324,0.9975607948080202,0.5995313749559724,0.9998489557432938,0.9999921659551676,0.999964579352718,0.995490779356984,0.9999990061684587,0.9932124050337954,0.9995422973378914,0.9994652516005772,4.095884122944282e-05,2.3251183748764694e-06,1.0706400637541381e-06,1.5541398781212485e-05,0.0009845082501176762,8.200372004383218e-05,0.9987737549059845,0.9957188839298101,0.9990713392497153,0.99999995140403,0.9999999885928396,0.9999998585217591,0.9999998275361641,0.9995916821346421,0.9903588146142667,0.9998729337912846,0.9175002023438172,0.9999975509194955,0.998423665530007,0.9606951887945954,0.9999885311876787,0.9999998779242958,0.9999999891791177,0.0007933253111300007,0.9999742743038108,0.00012181274725089669,0.9999718005581977,0.00013438193010580847,0.9999828423278425,0.9999969117136785,0.9992932345137822,0.9998554441262077,0.9995777679487818,0.9998478527500206,0.9999995312415978,0.9995723040742077,0.00012354599845839224,1.532788954406115e-05,1.3474783888059217e-05,2.1676770994032347e-06,0.9999918707226759,5.140878195764865e-06,0.0005648218255993746,0.0002833080264138843,0.0004118000085713087,0.9996845910108249,0.7874787469605156,0.8641363585980757,0.0003918563039435278,0.9999299636172558,0.9998358463158733,0.9999995342679158,0.9999999964811563,0.8040873455545803,0.9999938773548064,0.27593562067546595,0.9999882854714097,0.0002782251646926243,0.0003682246258195746,0.8876442636964961,0.9999996533058387,0.4800100355378299,0.00022451522262919752,0.9991606464448325,0.008072749435224184,0.0018387966166583758,0.9999710025237418,0.9999333370259172,0.9407156963260788,1.0640333245506274e-08,0.0715585764799705,0.9999968061157205,0.9999940301538885,0.9999997202041296,0.00029237245172676634,0.9999908178717917,0.9977168703173402,0.9999970122834684,0.9999999864930733,1.7323883107931e-06,0.0001678908898766704,8.772269185598437e-07,0.9999962788391333,0.9998678306040882,0.9999971447556996,0.9997741955532915,0.999274549912158,0.9940337649321779,3.702379417166673e-09,0.00114347096203023,5.395088083532373e-07,0.9999999995873474,0.9999967795632543,0.9999954975216436,0.9175874237664285,0.6769543079046684,0.9992780513218112,0.000534710934827554,0.9998658638888805,2.107028964330738e-05,1.40289750100932e-06,0.9999999987725319,0.9999999772922442,3.4888046766339134e-09,0.999999999644545,1.7418232883557772e-09,0.9998622129566007,0.9999999994008337,0.9999999704262761,0.9999996420057371,0.9999916929475923,0.0008937157012039388,0.0009185627498204638,0.9999500163614825,0.4130594008581974,0.9999996443019035,0.9984860329742233,0.9988211874355192,0.9853033263356906,0.9995630045658299,0.9995670351112906,0.9949135940280551,0.9999999844520184,0.9999999957574335,0.9999999997850952,0.9998272254544736,0.9999979371605865,0.65567427107905,0.9999996381792863,0.9999202600839018,0.9999884460117735,0.014030038478746188,0.0010181988154365842,1.095137383225514e-05,0.001081770953977867,0.9999969990638764,0.9997353683055826,0.000894535174929353,0.9998627844565355,0.9994173086742713,0.9999999718822149,0.9755363874929909,0.999960953384436,0.46436406594367274,0.9990654091391963,0.9998376072672254,0.9999998656572736,0.9997093095841796,0.005307093130711954,0.9799267134674704,0.9996290779100901,0.9494939387845371,0.06309268999652874,0.9999911014475021,0.9999976969748772,0.9999942798862383,0.9999977478126325,5.793763276479477e-05,0.9999999878199116,0.6754059922975788,0.0007121793134445533,0.9996415320943751,0.9268394103552514,0.99815010747716,0.07516318864178634,0.9377804612458545,0.9789521729288575,0.9627223797431097,2.4107164167365217e-11,1.1636972508017895e-06,0.9989562215198737,2.0633748729707824e-09,0.9999133386469641,0.0012192566915655287,0.8745446190742525,0.9999830253596629,0.9481054258283949,0.7258239544625641,0.008072749435224071,0.9997324088963399,0.9929079226608395,0.9335447817577055,0.9983959910387761,0.9999810343032121,0.9999576177595291,0.41756199572407227,0.9715379958569804,4.611161678170569e-05 -rojo,object,0.9999999518020614,2.1230581919564133e-10,0.17379818394479526,0.13243006650743322,0.0004966831246899412,0.0821148359192591,0.9999999997787967,0.3152163774674542,0.10193688289211472,0.9209778288933361,6.240861892992027e-06,1.2428105867823644e-06,5.89493758609715e-06,7.556277388661183e-10,1.7791069898987001e-06,0.9999998650314081,0.00038737201143101193,0.00017705899237992036,3.7409791263309764e-05,2.0396934369118467e-06,0.00014206056494234129,0.9999955496818981,5.92601293673741e-06,0.9999982572370246,0.002449148159930901,0.9998165321674002,0.9999999997317299,0.036101080197480845,0.9999999999903515,1.5062872647445754e-09,0.0006049393811817564,0.008070155105833433,5.1843613756983855e-06,0.9994291054298708,5.55690629477446e-07,0.999999998182695,0.0004451106390155562,0.9999393675794019,9.81124389942536e-07,0.00010991812670455439,4.1574552140397116e-05,3.4130456767913216e-08,0.051235694366926425,6.646146970257479e-07,0.9999999999270337,0.009013182515396035,0.008328024355535315,0.0013843688774677224,0.999999999726408,0.9686819045982399,0.0022141782960737938,0.0033183189753790707,0.9807452536892142,0.00013145429268166407,0.9999999990532233,4.749795379724822e-05,6.8559365037133105e-09,7.678527845854718e-09,3.901482725043607e-06,4.9565517201760393e-05,0.00012047019329482965,0.0009364539467131316,0.9999961130866493,8.77968725177464e-08,2.3641342659934216e-09,0.9999997437941132,0.9999708622532795,0.9847639000522528,0.9377338880724517,0.3881050751128973,3.210171620533092e-06,0.00025971018411985626,4.7243538580218436e-05,0.980501512474231,6.195918558496896e-10,1.734892613179856e-08,0.9998678176573296,0.9999995781967105,0.9999995824047404,2.747842647134367e-08,0.9999999997035083,2.083244111799876e-08,0.9997658423700627,1.9268582208866077e-08,0.8339877233473036,0.9997859022338121,0.9999996548179647,0.9999139184654768,0.9999998897271158,0.9999999969502578,0.9645037079485597,0.9999999995785964,1.6681063936345714e-09,2.9155292628966022e-09,2.1758585787121057e-09,4.05873911820417e-09,0.9999999999866751,7.684464354065165e-09,1.545980532299289e-05,1.3706075964738647e-08,3.6531320340543145e-08,0.9999588856183911,2.960802234903748e-07,2.681944602433643e-07,2.2747048494298432e-05,4.2644122446717906e-05,0.9999999720771807,0.9999996290332984,0.9999071273276973,2.097927780890969e-06,0.9996688423038712,5.0984299980373964e-06,3.765237119076509e-05,4.3662202691387325e-06,1.3832660073637354e-05,0.010308316415443816,0.9994573789938829,6.46815858590453e-06,1.618652283514462e-05,0.36557116498950437,6.822763453697934e-05,1.692210344125103e-06,0.9210421204620214,0.0002796660964883842,8.817092101158201e-07,5.5740594643137445e-08,1.0445367237779336e-05,0.9967474669860239,0.9761728454640721,0.9989548247111831,0.00010776335647816421,0.9996827451017155,0.00930155540953097,0.9938854045168533,0.9996705373801171,4.188047234628405e-06,5.7862109653425794e-05,2.5137795336798973e-05,0.9654050127978065,5.879781867206799e-10,0.0017825826060429912,0.9999996501995883,0.0004954687417829473,0.0008852978031866742,3.3823804779024376e-06,0.0003003635193552336,2.1023098221623307e-07,0.9999996078091483,0.9999870109541935,0.9999995798372714,0.00013398311887415234,0.09523574426130556,0.9999998856338512,2.214670620859701e-05,0.999999999933842,1.3517092130321185e-05,1.086387378648058e-06,0.010868177370858864,0.0038694010416618413,1.06717571267965e-05,0.008000470054676058,1.8069496675780395e-05,0.99999999632517,0.019098806595356056,0.014597585363800791,0.016001206791551877,0.0015083967838933027,4.382244729931282e-05,0.00037011723070960663,0.12715111906843926,0.008718823928007317,0.11837735955218523,0.7651877162658987,0.9999998620385883,0.3987054544021641,0.9999999886369627,0.9999999996125981,3.802310181168324e-05,0.005456323913867687,0.02082474721655411,0.03480529476814435,0.9999999945966196,0.0021724008702516243,1.452163570698385e-05,0.00011601175178524275,0.9999999998556781,0.13801918845583122,6.383038155948861e-11,3.5589306713111636e-05,2.473128062339429e-06,0.00035193709418179027,0.9998582925032734,0.9999999834007254,3.072203891968027e-05,0.9350424300882981,0.9999999987257251,0.9989088456355558,2.3715799808287734e-05,0.0057270933515380165,0.0006156046606458934,0.0030187748689926375,0.9617126244619627,0.02093714521887644,0.9999999987809218,1.9336050527344657e-05,0.0001784232725972656,0.9999999989192294,3.2373484934339046e-05,2.817948859110719e-06,0.9999999996927422,0.9998013756197436,0.9999183740390001,0.0030236241028263632,6.110041743849665e-05,0.0401438946059426,4.805380263298744e-06,2.2637365332313264e-05,0.9999999982080567,0.0022541256044168695,0.02318498958435283,0.0008066700972657838,4.8849142361863196e-05,2.7987442250608168e-06,9.73660721850812e-08,4.397161330899594e-06,6.136971391673335e-05,9.648114969947533e-10,9.72134890695676e-06,0.9999999935358257,0.00014596785738750617,3.9198075423945544e-09,0.9999022348187943,7.664612696820994e-05,9.518799310326436e-06,5.521942476776916e-05,0.01771096242052506,0.023084230370867126,1.4852356789546553e-10,0.9960121309804268,0.8703990753044113,0.9999789006743555,4.845608248858996e-09,0.004001820721112015,1.1632664944039661e-05 -sabugo,rgb,1.2018879009170956e-28,0.9999999982935801,0.9999989682184641,1.0,0.999999995623374,4.7379765426942846e-15,2.78825180050251e-25,6.745497490834439e-21,5.856853467112285e-20,2.7808427221859326e-20,0.9864692056315892,0.999956478400462,0.9998377697520803,0.9999999997501177,1.0,2.7834958929847396e-31,0.0004047517098697506,0.00149382285774657,0.00023464368064168902,2.0124796075618876e-07,7.797733440119426e-08,1.7304319492634448e-11,1.757735003739003e-15,6.872592202731075e-11,4.7152011913524526e-07,0.10697260467407761,1.1770124614228876e-30,3.2051936351395856e-07,4.914886040757145e-31,0.9999999999953939,5.0370692434513546e-15,0.9999999633226351,4.9630802898604364e-15,1.0893213170863366e-20,1.0,5.903613219333184e-31,2.553656584277097e-06,2.319542514528081e-10,4.223249242801691e-11,4.929691323649432e-14,1.0,0.9999999998680782,9.825075189007218e-15,0.9999999999999047,1.7546967589592215e-27,0.9999995144006026,0.9999999711962012,0.9999988836442618,7.056319426619643e-28,2.940544817078411e-14,4.127406955507453e-15,1.0,2.081208560221967e-20,5.151746812028153e-15,4.0320307560403776e-29,5.2999446669242607e-14,0.9974559625540537,0.9990309112267796,0.9999361335658379,0.9994850671865949,0.984702818680298,1.1801402492206784e-08,2.053690711905715e-32,0.9999999998460136,0.9999999999966194,6.353083165542881e-13,0.00022769035647655274,1.0101375500611592e-20,8.011608060507896e-21,3.967786068195643e-20,5.451404198411507e-15,1.0,1.0,5.0461626930501e-21,0.9999940349808317,0.9999999995294555,0.013524256309265705,6.248819741974947e-12,2.1141642120145162e-11,0.9994272945171703,3.842044484572876e-30,0.9955863661440528,1.8237733589233936e-14,0.9996875474072775,1.1914150885828905e-20,6.09861587604504e-14,3.9640225468685005e-31,5.572441896093079e-10,3.368344511862859e-27,3.50563599151643e-30,4.722400171663274e-21,1.0028029335672662e-33,0.9942341809814126,0.9997522751926948,0.9996257050121298,0.9997163823227468,1.7653675863894347e-30,0.9996940161777598,0.9959791664752559,0.9994826552258983,0.9996501531215404,1.1526370130601933e-23,4.74457213585393e-14,1.0,0.9998616188417487,5.788723399252651e-15,1.414481809061551e-26,8.820114564629886e-11,0.914413919375218,3.2216609290221194e-14,0.006868142532238223,1.0,1.0,0.9999872964998268,0.9987013617228762,0.9950476301047991,3.914462196305506e-20,0.9724853653680886,0.9999617318092289,0.9998862221475483,0.999999963160936,0.9973333277558689,1.517573291673322e-14,1.0,0.9999728628525087,2.458101368331074e-07,0.9982886689895076,7.923588869660534e-20,3.282120878803145e-12,3.6168513440943335e-17,3.2213921042660304e-05,1.0038047046408322e-19,3.988084314171242e-15,5.7590411890958896e-21,4.1581258099266694e-20,1.5447205796616974e-05,8.207368835622736e-05,0.00020222247844216862,3.142584153205485e-13,0.999999999998324,1.0,1.734440302777577e-32,4.436723145008567e-15,1.0,2.9299181817417897e-08,3.787882952362726e-06,1.4466342811222208e-05,1.5097797673061067e-11,0.0010245002869924314,2.8623766382086808e-12,1.0,1.2328198343938935e-12,8.699014255080906e-31,0.9839236744647789,3.5973164124188937e-29,0.9996239554220572,0.9999248657841596,3.143840991670403e-05,0.0028937076202342773,1.1963753949161404e-05,5.05256653931537e-06,2.18072395481114e-05,3.1835625155917386e-29,4.087536073468525e-06,3.696100818327054e-07,1.98597190225383e-08,1.0384129461460143e-07,0.9998185030748012,0.999383039753945,1.0,4.538664554635717e-12,4.209479835532481e-15,2.930983729322278e-14,7.358018135657769e-32,1.148098471655271e-11,2.3559389276140095e-25,5.34156154130599e-34,1.0,4.915674418970657e-07,1.4693808863772561e-05,6.251537168359322e-06,2.5075709334268737e-31,1.0,2.2797133797980318e-15,5.913379631578689e-15,9.327793421373684e-29,1.0,0.9999999809776016,0.9993973745675145,0.9999099132615659,0.9807980913259557,8.68190466222632e-20,7.08895803813797e-29,1.0364483899816086e-05,3.102723448033809e-16,3.7021848744309964e-28,1.26365166933566e-19,0.9998518281013059,4.9014681707690564e-15,3.594568150020097e-15,1.0,6.967011149499128e-13,2.7875719314303477e-08,1.2852771089558547e-30,0.9853480510417559,1.244157131396269e-14,5.09303626222418e-29,1.0,1.0,1.0321168861276466e-29,1.7439371992194663e-17,4.2474965024967064e-11,6.945371937158718e-07,0.9998258243125173,2.5462838512808793e-09,0.999349698681533,0.9999771710672819,2.520909059216455e-33,0.9999992886566567,0.9999999882611391,0.9999999932724792,1.0,4.554492547262139e-15,0.9999999998062743,0.0018476776440449795,0.0034812568576414846,0.9999999982591012,0.0004448938873133408,2.2016496026213888e-33,0.9999999620869425,1.0,1.347156343396287e-17,1.0,2.7546693320889714e-14,0.9999999679356121,0.9999740689032259,0.9999917965653881,0.9999999999992726,3.8654397839414954e-17,8.876406619336791e-14,7.61458529869288e-12,1.0,0.851947541206624,0.9599631790941303 -sabugo,shape,0.005155715080129538,0.2843035944692873,3.802649162868207e-06,2.656719585904413e-07,0.007815488313139116,1.0284791462614309e-07,3.0947185512084453e-06,0.00039620889112726605,0.00027495356614509736,0.00027920632941723876,0.9999332722461336,0.9999839405938379,0.9999985877871181,0.10505771949381941,0.9943435648824577,0.685469582689004,1.8807664378189461e-06,1.460899591430048e-05,0.9736641351602574,0.4939797871497974,0.007344997599380711,9.282844283643533e-07,0.8255571700158946,1.1080907162933796e-05,2.2811868703274967e-06,5.983700983572548e-07,0.003526218625409571,2.252056559994216e-07,2.427617609219264e-06,0.028580699427618317,0.28889929189561003,0.00012755055268651497,6.002613716423646e-09,8.587068267212573e-06,8.544917331006329e-09,3.318062733512095e-08,4.668931714915377e-06,0.060084095732732934,0.00020898519526460791,0.010904458576530949,2.095125599407055e-07,2.9392882423683147e-08,3.445296367938415e-09,2.89169214823506e-09,2.167367314995186e-09,0.0002061970292459575,4.40592252680091e-05,0.23311970999452206,8.448427269445132e-05,3.1485870206970447e-06,0.00047518030077027984,0.00019423620432006993,0.0001289521058208991,1.5946622840969606e-07,0.015400561603240161,1.3856132770783032e-08,0.9997324654243345,0.9999863287102895,0.999949674067878,0.9999527825067673,0.9990129794414596,0.9934864809122554,0.8742219071198493,0.9047482331772698,0.8540521192016638,2.259600327935946e-07,2.8679497050770156e-07,5.633155648545416e-05,2.4926335645985396e-05,0.0001521215436070306,3.945349917549386e-06,0.17718125820333933,0.9015689851270154,8.353625090014873e-05,0.5483451922192225,0.9150208256455504,1.9742604236726714e-07,1.31821910246029e-07,4.3156538535574625e-07,0.044283317539653755,0.007373552721050866,0.5267987827285031,0.004211591707230546,0.9993352970161089,2.9224732907358785e-05,0.0018661872001781126,0.9584298580136655,0.2236827717696456,0.3861718646412357,0.02606722849890592,1.0674402352654295e-05,0.226064546998821,0.9976996847421221,0.9980368635741671,0.998822561870819,0.9999964823592706,2.1425949897908542e-09,0.9994608952587563,1.3449138093835354e-05,0.9992824127181864,0.8571450554468036,3.193230273848473e-07,3.4000880969922957e-07,6.263168539093433e-07,1.1836010103774096e-05,0.03759719402435266,0.11679868511429801,9.175439525188637e-07,5.224901446636995e-07,5.218162479631144e-07,1.5395800052340086e-05,0.00016308480367943634,0.059365279073284184,0.018237743475821067,0.00010183591010251805,5.403893495131456e-07,7.694239784931547e-07,0.04235726736654396,0.06033966773101412,0.00018790466086263832,0.21817448863193825,0.0015521760509133583,3.235927511587655e-05,1.239941641578426e-07,0.0007227347450864045,0.9999867534368961,0.007633733380384174,7.818556310948083e-06,6.948111746961387e-06,2.6760291630744295e-06,0.9155739737971783,5.040909006124015e-05,0.00011454119878063517,1.7385246881567616e-05,1.377894126021315e-07,0.05960627003095269,5.22384709798754e-06,0.001550626918658876,4.8564944689466666e-05,0.8454041270489354,1.6962545554607777e-07,0.009723506120842587,1.976042321345723e-05,0.0002603645601219387,0.9999844344251549,0.002944933565010277,0.993614305361141,3.5935220614067026e-07,1.1785629405677859e-07,1.1421417751954104e-06,0.016498236203733783,0.25618820720385693,0.309306016312415,0.9998021545460412,5.150315866410619e-06,0.9999982420401397,0.9999839405938379,2.1943424975136307e-07,5.609782313690979e-08,0.9263594022672946,2.9126170543044363e-08,0.7776326585756519,7.327931487560125e-09,4.751557409833751e-08,6.05803214540938e-08,6.830472593651068e-07,3.973251814440526e-05,0.999941901422065,0.999616898528277,3.3643083097691695e-06,0.7104280225559861,2.4989828146530367e-07,0.0015148640214775126,0.9814190496860941,0.004918750868757419,0.0003398068269738236,0.03848048421368313,0.1026069046079077,2.8360612422242407e-08,8.078846363122435e-08,4.2478933436846285e-08,2.1062110935209634e-09,2.818877565632728e-07,0.15315270777135837,0.009235067505839223,4.710737884630068e-05,1.9008899318123885e-05,0.9987817692777425,0.9998895811305744,0.9999850373177864,0.15254859748996774,0.0017388930000136844,1.8109556755115405e-05,0.0008742542267408731,0.0034542511641860426,0.0004975231732829837,1.6835271282044036e-07,0.08905406290293287,9.522437999068221e-05,0.00022061307879219075,0.000205902249330418,0.0003612846446814361,2.3450221406182666e-06,0.016316841817538903,0.00742071178134918,1.0544336189103192e-05,4.5492117272541556e-05,0.00019703510778934163,0.9926073824671449,0.0009735148582053202,1.5050683272877436e-06,0.03462162254186103,1.0214069929688582e-05,0.9999136224009755,3.0863412845143623e-06,0.034837742310479466,0.000521094906384295,0.02695887150129383,0.0004528281474297149,3.802666395430053e-05,0.00048292243120455784,0.8721752597845772,3.1938037837749484e-06,0.03836591681482233,0.9649852458667475,0.0035403484704506823,0.002594417016802997,0.8776733873009231,0.014615264615634576,0.288655724675851,0.001342838528804711,0.005230397359490823,0.7080870507045269,1.0670108556298283e-06,0.2181744886319401,0.00012788325909719725,0.014877759522021278,0.8919149168646306,9.537810354976361e-06,0.0005009002477759299,0.03562533226355341,0.9806572464200393,4.6787177124797433e-07,5.383535898756171e-05 -sabugo,object,2.3451804160919745e-05,0.9962618884058816,0.006211559935130205,0.9963682787758866,0.7722796407701622,1.6158063113549476e-07,1.3383901333469724e-07,0.00012482304228552787,4.340663102714394e-05,9.146419053292038e-05,0.9999329722675082,0.9999873643605033,0.9999961765648886,0.9944401701297005,0.9999999971428806,0.00019534598494401156,0.0005655242445302923,0.0017423548061987733,0.9888360304338543,0.8145672473109973,0.13630201536767972,1.0277046563440334e-05,0.00883207896864227,3.889052934979852e-05,1.2751965254170176e-05,0.00041465217062208666,2.384761817286215e-06,4.300785225868338e-06,7.597373220583213e-09,0.9831487038486878,0.004305703016193218,0.04645545964554367,5.2007414907526594e-08,1.574669094129789e-06,0.8288947724365386,2.0134301357825123e-10,0.0007414624481674684,0.15752316204143177,0.006056589254934967,0.006105663495409887,0.9871870137200919,0.0026114088040220004,1.3486755404807665e-08,0.00198654995295011,3.372457375361883e-10,0.1977463857141452,0.04758889602210206,0.9544466872339693,2.4163102090572764e-07,9.553875298262442e-06,1.5167198547421951e-05,0.9998464540150401,1.2758237125106724e-05,3.407428366929934e-07,2.5721676153364737e-05,5.6904121922549e-08,0.9996857782530738,0.9999731366308858,0.999978552532628,0.9999637436162779,0.9996908736129445,0.9677352720852818,0.00019303191794585095,0.9996645352832924,0.9996569557743703,1.4628881056150759e-06,8.001791902165576e-05,1.6068032065867468e-05,6.824403411034116e-06,6.263536208297648e-05,2.341932026432819e-06,0.9999997247993879,0.999999935577982,8.884010160672583e-06,0.990212380565947,0.9994256911642193,0.00024691214206090895,2.1517107878066654e-06,5.83689148009973e-06,0.8632116937093608,8.671795396903917e-06,0.9816726303703893,0.005749409558846977,0.9998636981161985,4.679553212370584e-06,0.005722370636252924,0.0005159335922803308,0.2530452786920675,0.0015324337858680654,3.246418295442826e-05,2.9901399477454328e-06,1.4101419767063283e-05,0.998976076632026,0.999481103495572,0.9995580368171725,0.9999844798858991,8.882284347383055e-11,0.999737631537117,0.02668719830590221,0.9998443548914971,0.997185691820675,2.918876515804881e-08,4.654689934694175e-07,0.9908226468675047,0.04570369770657705,0.0009676987346802311,0.00033974216933708914,8.572892287487521e-06,0.001346310440199203,6.808918477737242e-07,0.0008007540114979836,0.9999908532369047,0.999999588291243,0.9391860210453256,0.09890651375154683,0.001399722301791282,2.2801625713434874e-07,0.8785764671654496,0.981155732448521,0.07958072960847763,0.9562139992751643,0.48613945913472045,3.106110593015211e-05,0.9694574856189943,0.4226561957334375,0.9892935563264886,0.7134119255412981,1.2701612315646707e-06,4.021396621563415e-05,4.731491275610352e-06,0.8861843786109257,7.681817988869722e-06,2.082657767634617e-05,3.9918660772246225e-06,7.477293052665526e-08,0.5689566310624095,0.0011305777024262116,0.03422127466909676,0.00011075119886582519,0.9997369668306131,0.9668011797623682,3.6886852641725494e-07,3.29498831495274e-05,0.9999266756320708,0.9916901555975263,0.017429496278320404,0.9848410771475125,6.031136529496e-06,8.517932802597303e-05,4.927434529422839e-06,0.9999959849448082,0.17045489724586682,3.1374922385441526e-05,0.9998520089585042,1.0352732182061265e-07,0.9999951675928503,0.9999856405164091,7.308284039722304e-06,1.751492959165595e-05,0.9574613663489379,2.1035864512146552e-06,0.9343432233430573,2.0025127714295094e-10,4.455567587145207e-06,2.1303020165884493e-06,3.534226182255241e-06,5.081436512127143e-05,0.9999744531768557,0.9997162005339334,0.9987443466703418,0.4748988370013183,2.693949455223662e-07,0.006588211427110655,0.0004472466642395204,0.028536076400255177,4.4573290387821055e-06,7.517269471183387e-06,0.9999997572689531,1.1656707383768878e-06,5.376352261043614e-06,2.716801675086083e-06,7.500359489637089e-11,0.9790049961915285,0.001559490641379542,0.0002868389405616318,1.5541934868246365e-07,0.9980849887467214,0.9998338837039262,0.9999353950377425,0.9999850208807217,0.6774850459840657,0.00013676252617635863,5.7129312933752e-07,0.09515813495104258,0.004539984202244059,1.8947304646455655e-06,9.283261779644702e-08,0.958620547039442,7.889823899119171e-06,0.00030111540838095413,0.9998732842524453,0.004071912977456118,1.64797355916126e-05,6.589894856309447e-06,0.4506348017572691,7.01573085977979e-05,2.6702885894744284e-07,0.99998577848585,0.9999999984154695,4.808763371252137e-06,3.2030734861354025e-06,0.1003354527387148,3.3005132993725224e-05,0.9999600457413689,1.2876497218931484e-05,0.88497452846513,0.5659951728448148,2.505346690405742e-07,0.14135097435118613,0.04399084661878569,0.3297903278534117,0.9999998785032328,1.971073423713765e-06,0.9948273142476267,0.9883963229998096,0.36470524647382774,0.926072298278437,0.9691298216975389,3.83829032313798e-06,0.9393145428073614,0.9999986049733921,0.0007580014437522016,0.9999998541348376,1.3857993630338975e-06,0.9564361399294885,0.029841546319193467,0.7274049808228809,0.9997604244379384,1.1699457032608327e-05,0.0008622571529165069,0.07262264466720057,0.9999999806300371,0.0003239681922630591,0.028051679825674462 -ser,rgb,0.9684612185191731,0.07639783692810073,0.34390850474579165,0.26642181002515436,0.3424752859703704,0.42011789485587214,0.9722583705058869,0.6412173797520136,0.6146290289810495,0.6438752128577804,0.3327643602039882,0.3247838817043085,0.32883331704398117,0.07392301241430731,0.24832478942504818,0.9900751935476451,0.5334430106835321,0.5139052254121508,0.5342935733102464,0.399642482961192,0.601314898274588,0.7821256038065465,0.43730225030750397,0.8252543215450895,0.2283358503913731,0.6082329362016424,0.9761267282678269,0.2348368232199416,0.9885750118174682,0.08275534905588781,0.4195747285874158,0.31956260221317007,0.4267017110952154,0.730621650938143,0.1477264603271106,0.9896422585661795,0.39187458753044385,0.7134725867632413,0.3343898053628001,0.4169233044327593,0.24290243658719565,0.09794569917710112,0.4135932150542701,0.07819726715059931,0.9822152352526672,0.2926190671829448,0.31030325934544933,0.34467965821077795,0.9817735218079591,0.5303793166167096,0.42277440317257026,0.24620015837147044,0.6364964349057273,0.43760440650492105,0.9859717498812148,0.4087772869267619,0.17755701201522278,0.18002966879711685,0.3244754666632758,0.3308879293056163,0.3355028569723617,0.6240308759812295,0.9913227121460438,0.10342943499006627,0.08599566437614381,0.8368603841478943,0.6744955411384126,0.6521700729598044,0.6421518082606839,0.6175695807079947,0.43225076087697173,0.25881907985498465,0.24185033158383992,0.6668565239376877,0.09077402709342332,0.10090401032406948,0.6380205061055181,0.8267085780995371,0.7883296241707107,0.18280423614785168,0.9739815601804828,0.183383906676687,0.6841680705656582,0.18983753895771668,0.6339413036978792,0.6883507515310351,0.9890640858395123,0.7163385771293262,0.9549272042146082,0.9736722470243601,0.6485432635675558,0.9923139726811071,0.1738321993798053,0.17744551189945634,0.18445596917573753,0.18781268531919032,0.9877486232940903,0.1900919204171021,0.1812242664752862,0.1910786368189151,0.19835476907375496,0.9670586880512515,0.4195661244350575,0.2540769280004255,0.1971889735020577,0.4169078970262464,0.9802718066320104,0.8190336759298779,0.5506109613511435,0.4270071867469084,0.6055540805625632,0.25299594159766864,0.25910394469074916,0.302773626329012,0.32525610537433425,0.32493609786529526,0.6789674309003436,0.29762195692513027,0.3274262068821355,0.40587168339388724,0.32354973872028553,0.3001510346725642,0.5217880749519024,0.25111261934914364,0.2971614945884718,0.28524126929286125,0.29832909608590946,0.664204794509025,0.5034326044003743,0.6696877480416445,0.3297591991071421,0.7171018119561661,0.4209755210055272,0.6638483142477617,0.6829225966547269,0.545152431045019,0.5412074808918762,0.5301036734208918,0.511740723092271,0.08244217561523089,0.1501401925662541,0.9900574595376292,0.4359905629116087,0.24364933122554092,0.4033275322966515,0.3846586774956557,0.29800963981687323,0.7970113156897033,0.6656261323254629,0.8374113438759037,0.250935019077081,0.5606609586873409,0.9889011810230378,0.3327267668852455,0.9860463625478983,0.3283988411779093,0.3216624160322264,0.1937778313487483,0.17890125940228108,0.560043196394409,0.19539488407210845,0.5564101655585318,0.9896001414360416,0.2113607887162338,0.22466931280636968,0.24323402068949895,0.23774588172263042,0.3236351653589594,0.33077441598278157,0.25385667653874905,0.5466011811778039,0.42260524139302574,0.5857018743704887,0.9907148947608889,0.5299411091829908,0.9725136857619633,0.992445848502903,0.2363393237577884,0.20672372929682722,0.1986438345432258,0.20733841592548233,0.990524640092204,0.14578777241112345,0.43566820625377833,0.41671339032406685,0.984160266833476,0.24150776654886316,0.08044842386404166,0.33091807800423895,0.32414705779725345,0.3352976864333213,0.7526222753502619,0.9699009306567098,0.3825092294879988,0.6340689624004086,0.9820636510218551,0.6661262092062953,0.3064327095219811,0.42459608573521346,0.4449109096721019,0.24726918906958478,0.5715198047688919,0.2526081745608745,0.9749452970445669,0.2988773962977742,0.43256255378357383,0.9858178844564347,0.25200688215784567,0.25225441860990894,0.9734932377054136,0.69913447684832,0.7224762023032448,0.22670508049020577,0.32625446922130474,0.25977260446193057,0.3040776965956328,0.3115555710918457,0.9921177040140178,0.31978610964225945,0.32256091982643226,0.3077267263407614,0.2438543280238725,0.43584499609942423,0.10667003210908561,0.5085864734132514,0.5030694199679075,0.0764344241268197,0.5123381817906019,0.9921467806481413,0.3236723557338459,0.15338430036188236,0.759719810021982,0.2446319918390592,0.42514090793952913,0.316777770960608,0.29748970504552014,0.31418044420546526,0.08261558684948256,0.6508453028825325,0.5837189108405009,0.7525399484028645,0.14739607846526823,0.3384093902777144,0.3249880795103692 -ser,shape,2.6748884315770315e-05,3.163243695259165e-05,0.9675507003854923,0.9986916072860587,0.003152487320973997,0.8043947561578775,0.9984338176955329,1.6896391559858554e-06,1.058999153840035e-06,4.8235392776632346e-05,3.579411704583254e-08,9.464814727545718e-09,7.60395683909939e-09,3.975182579339394e-06,2.0754529770260063e-06,0.0002771430203431657,2.21509670998702e-06,9.90139103777179e-06,8.604080073441278e-08,4.205955569981057e-09,2.602916248133205e-11,0.9999056976642409,3.794155008104441e-05,0.9991274801638537,0.9993007043072302,0.9999663656224494,0.9190520168794122,0.9997330143401019,0.3678576877095954,0.00019739103736927455,0.00016846810688082083,0.8890406454154575,3.6080386777781578e-06,0.9746297691816427,0.00017518301471492357,0.0019546634869846476,0.42514432599538704,0.0019754108812073553,5.552856026284178e-07,5.878713177163888e-05,0.00031367275691338535,0.004301340701267354,0.0008648510639181003,0.0010966432557175509,0.003331871831993521,0.16075450625039922,0.4135295728774001,8.856546009890371e-05,0.996170042760165,0.9844863774673817,0.580667178639493,0.960455821766438,0.09013088701317411,2.867727921355317e-05,0.007190717882218794,1.0465588449447405e-05,5.7919363135353645e-08,3.0907540291721496e-08,3.304873939646951e-09,1.2079925800105633e-07,7.874318206925372e-07,3.137322212145646e-08,3.720966825864567e-06,6.481649286705882e-05,0.000497667208632988,0.9999950339841077,0.9998575754500675,0.0009119554414641771,0.0015593460932129255,2.9113368660889754e-06,4.3902948404599973e-07,3.264980224316837e-05,1.6502158181714582e-05,0.08086012300096403,1.278272630664384e-05,2.424320632556696e-06,0.999813109496047,0.999591669683908,0.9999663352021557,6.474626594636456e-05,0.004138477077109254,2.201293576523109e-09,0.00037437901260427097,6.004910930600781e-08,0.0027936910169660857,0.0006827027405885147,0.00018129088106981636,0.05838391890522238,6.794310309229365e-05,5.9105973903651956e-05,0.013417168048595078,9.920262860075434e-05,5.8117914806739905e-08,1.0755508260521391e-09,4.388090812462537e-08,9.832714214576742e-09,0.002855414057632931,6.970775065858196e-09,3.810430438197139e-06,2.0851076070820907e-07,4.552124024472837e-05,0.0044391659195240395,7.347634283928513e-05,0.0015990371089091907,1.6205358834312716e-05,0.0002787456209403157,0.0003255279860236442,0.9998712700669405,0.999777322163808,5.396768256160334e-05,0.9998136802215143,7.235286902184128e-05,0.00015612252909641148,0.00013765539429060557,0.5910023084601067,0.5791049973318585,0.999876780649898,2.9031834159642693e-05,6.535924701138043e-05,0.003257529253032906,7.655994478173579e-05,0.00022552437572960284,0.9415297538745857,0.00204939870263976,0.0015296055048719256,5.161194135844374e-05,0.0011543613055407036,0.9986223241651139,0.9449989616662465,0.932155344070667,0.00013152328875789429,0.9557341107679649,0.0008120338988467182,0.10155386713880495,0.9997123851920199,6.3057908060326405e-09,8.312269149264831e-08,2.361941161904675e-05,0.8707177899110223,0.0007084207909441922,0.00011989497425957464,0.0008246157411314087,3.088419221267565e-08,0.0027222630773886887,1.463245202988889e-07,0.9112936654711575,4.6886988676631145e-08,0.9999340568914187,0.999993727413359,0.9999704922984745,0.00025500835731006043,1.830066769937738e-07,8.18499209255602e-05,9.406256584941557e-08,2.4511074447590077e-05,8.40701247446624e-08,9.464814727545753e-09,0.9996286586282161,0.9982903051963071,6.612465092648573e-08,0.9998476498733282,2.6314818248376944e-11,0.0013557904432526205,0.9999028711701476,0.9998420313961339,0.999880642616313,0.9970598165885549,8.034537659780752e-07,0.00021163716930335796,0.9990805202151803,6.2660586218703826e-09,0.8205025942241777,4.052399659348062e-06,0.00019416774364598114,3.8333265912807954e-05,0.649884247998285,6.55241250727482e-05,0.00013904619840017195,0.9998312903257535,0.9999829934502568,0.9999516058600496,0.0028915827878878866,0.00027884511296066703,3.7042755199919034e-05,0.0001702016313249866,0.9969398752430622,0.9592636963837867,9.219430980236455e-06,1.6451747383632899e-06,7.092410011343544e-09,0.3590050697719511,0.04133021581089006,0.08643855317262358,4.500384415121814e-06,1.4349262294293576e-06,0.6339401068622758,0.9997834900982372,0.0015416540291852516,0.8393126392976327,1.1182993744072339e-07,0.5988498340321942,6.077442224521368e-06,0.9991346740818028,0.5893285184164483,0.009624939756305516,0.00030204539184061136,5.450641982257047e-05,3.0132789052565025e-05,2.425920724020933e-09,0.021932949635317424,0.9963599502965409,0.0021403993745317926,0.9998138696414901,4.666206625753106e-08,0.9973969080768341,0.005786388962423541,0.003527493088300305,0.0003253433072761336,0.06853600613746468,0.7671344669805881,0.004606552807377913,7.815570411078609e-05,2.1005174795933843e-06,0.0004297781942475316,5.904167662413751e-09,3.205928658611061e-11,0.0001735116483424662,1.170928871408452e-07,4.4930077904154195e-05,0.011483872853579264,4.728415837014928e-05,0.03572607849670493,2.7260671280705172e-05,4.035241324357453e-06,7.655994478173552e-05,0.04056012688749925,0.019738679442899594,0.0002683435467197821,0.020050326466989576,0.001537195373578744,0.001792447850739777,3.319456449196725e-05,0.871033547661892,0.6442049427436872 -ser,object,0.009305864195030739,2.8302107693136483e-06,0.9265025313047675,0.998574963184784,0.0009291315012472048,0.4583429446393526,0.9999466015361779,8.115506177468388e-06,5.837276904108633e-06,0.0001995590300327931,1.0110019137984946e-06,4.278884544425982e-07,3.7487069739932427e-07,9.463631934709588e-07,1.624602067240401e-05,0.031240628349962947,1.550022272199473e-05,2.2382884469020806e-05,6.006858525465121e-07,1.2962333978741942e-08,8.808464300437731e-10,0.9999684453441466,2.284732401179163e-05,0.9997911722070987,0.996616810281618,0.9999680200100353,0.9994978827188653,0.9991011320447387,0.9853714285849628,2.035977939009851e-05,0.00013296004799914923,0.7889892188031165,2.5560574638373017e-06,0.997100778332722,0.00013802830086128912,0.5148236755042642,0.5063447928879272,0.07175231653710533,4.196367322952666e-07,9.412382875505493e-05,0.00134612436423924,0.0007703755336257458,0.0008911221797408571,0.0002476435406880764,0.7358279365700645,0.09138946758255044,0.1485524881067841,0.0001752174935301713,0.9999465503632676,0.9940174492686931,0.272258565919772,0.9718128820009937,0.2566632687393619,1.734677986571698e-05,0.8074552957995195,1.4142883182602285e-05,6.22764398197357e-07,2.2959508454785082e-08,1.0328039461561175e-07,2.876222873858379e-06,1.2476752944611567e-05,1.1100034966674979e-07,0.003883845078055031,6.15467379353146e-05,5.496428753777847e-05,0.9999989917541572,0.9999048444908467,0.004418266067116575,0.005116479967747658,1.3616585794695468e-05,2.3141294424167525e-07,0.00031240659300844177,0.00034430888516106037,0.2121799056837774,1.3276811762174544e-06,5.234621530749045e-06,0.9998813177106827,0.9999820107706205,0.9999970418298638,1.221362254844932e-05,0.47676234804109924,7.550462365648663e-09,0.01064866924041489,6.923731768665716e-08,0.007531241085903475,0.01961658409566745,0.035762980087800565,0.5989498423874111,0.009107586196644396,0.021201415013604334,0.05656176347446656,0.09341733325351258,5.517400200533407e-07,4.9324102476048936e-09,5.544247498921555e-07,5.3487148964909336e-08,0.7398301388925064,5.230720281866097e-08,1.473513666343393e-06,1.3839827084870554e-07,6.296433819624746e-06,0.28828308556157883,2.920305756189559e-05,0.003468527730478448,8.738095432010528e-06,0.00018748764124108054,0.1934068740595341,0.9999700417838289,0.9999069390891344,4.350585310340003e-05,0.9999096369015019,0.00048701860204925944,0.0007093736926722933,0.00012078356239712071,0.17260435555283257,0.3138045317907827,0.999966514703809,2.0021736392903717e-05,8.861207901142987e-05,0.007019317822827142,2.7475800818881667e-05,0.00010366537649065716,0.9681447159074158,0.00478792254488575,0.0013929397967556612,1.6323754327824e-05,0.0002177963325757087,0.9994119158630755,0.9805024441257343,0.9933105192518047,0.00015056597268331274,0.9945189882887822,0.0007518530697948611,0.26297730302671113,0.9998797284018065,1.1740002035368766e-07,1.2059809216923657e-06,5.2344320040976e-05,0.963368065201205,5.6680645278466754e-05,0.00013911701832190968,0.5686387986538345,1.822837472005712e-07,0.021228030890284473,2.0028684456996388e-07,0.7398338299444834,3.5986595782091316e-07,0.9999923879280608,0.9999993339225346,0.9999915703473066,0.0032226099953217846,6.170016929801096e-06,0.03013967953470658,2.16761261053429e-06,0.012004519702421996,1.1252084023729256e-06,4.067002339276131e-07,0.9977537731614994,0.9936350916768403,1.7657916417898348e-07,0.9997668973726218,1.892631493201001e-09,0.31080682797303116,0.9998680376766592,0.9998166214813189,0.9996804043298602,0.98440497616087,2.646529117744755e-06,0.0002728441591118914,0.9984357873787667,3.059255777491294e-07,0.4174965475086539,3.269850191947755e-05,0.07166351042535647,0.0001076836673288193,0.9908585901238663,0.050650688075563076,0.0009926818840549532,0.9995969921628348,0.999953276717693,0.9998665980880754,0.4606710179375953,0.00021764836421616583,1.4979938320156275e-05,0.000128188678324197,0.9999517968766948,0.9800136648476183,8.906102453034499e-07,1.0447165362850676e-05,6.522725991146648e-07,0.5062345229354586,0.39071586115366036,0.9243077426534732,4.482629503975782e-05,2.2310903302738173e-05,0.9955349523890495,0.9999119430646694,0.0018017810108398179,0.6653198468894508,6.475319730481322e-07,0.7000392611919399,4.6455972278746556e-05,0.9990067033540831,0.9964132506478235,0.0017739744806547673,0.00010632264240871988,0.03388717216245275,5.053905631813878e-05,2.1891085525093806e-07,0.7090772492247502,0.9997532971431095,0.07197647862058386,0.9996219530499275,1.6159607080749381e-06,0.9950636574167526,0.0016987034198502934,0.0024509945693118227,0.08111169008830224,0.08274916787114765,0.5744041219316762,0.0010253556454317262,0.0009142793965765904,1.0176410996802366e-06,0.00015023880687761227,1.2099543349907553e-07,8.713992172173166e-10,6.585092998352263e-06,2.212019024650413e-06,0.03022075884253412,0.017576049429299516,5.1469925322881473e-05,0.48461289590432033,0.0007146643069087021,2.3717235233120473e-06,2.5962830322763612e-05,0.05272353198343322,0.009433226969502913,1.4155903230536159e-05,0.06452637820117842,0.01296132147889834,0.064622251691008,7.35955637818782e-05,0.3169429644754708,0.32460771119543347 -su,rgb,1.0,0.971246880933962,0.9970272854094594,0.999999988603879,0.9918791480807906,1.0,1.0,1.0,1.0,1.0,0.9998278995712552,0.9966995782085817,0.9984133636902512,0.9165033202502528,0.9999999994194055,1.0,0.9999999999974871,0.9999999999818845,0.9999999999982601,0.9999999999972398,0.9999999999999998,1.0,1.0,1.0,0.9999999999995937,0.9999999999998765,1.0,0.9999999999996347,1.0,0.0071429487217958745,1.0,0.9697184338852328,1.0,1.0,0.9964353717606269,1.0,0.9999999999530682,1.0,1.0,1.0,0.9999991276788716,0.003974362246176678,1.0,0.0019472843558385534,1.0,0.9087055364535549,0.9419680218746977,0.9972286850026708,1.0,1.0,1.0,0.9999995003638721,1.0,1.0,1.0,1.0,0.9581779931758885,0.9032087775370085,0.9970784862395825,0.9991178269322156,0.9998598886351234,1.0,1.0,0.0022053929586556636,0.0027117777285888827,1.0,1.0,1.0,1.0,1.0,1.0,0.9999998542345335,0.9999978521633792,1.0,0.9998256055529664,0.0064969652190410955,0.9999999999999956,1.0,1.0,0.854087920281131,1.0,0.9715413447155162,1.0,0.7830603629043502,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9821569407323554,0.7544327137254109,0.8049217399008978,0.7689601695337499,1.0,0.7805447503736911,0.9701619451990503,0.8423880361009656,0.8078844937434008,1.0,1.0,0.9999999315115888,0.6812410030300694,1.0,1.0,1.0,0.9999999999453617,1.0,0.9999999999999463,0.9999998232956949,0.999999995236883,0.9813979638592242,0.999196382175235,0.9995689610766615,1.0,0.9993890473002567,0.9970498631626591,0.9999864317690417,0.9768629302829708,0.9979449456840985,1.0,0.9999988837433486,0.9807334789180953,0.9999999999955809,0.9971741568596869,1.0,1.0,1.0,0.9999999973899689,1.0,1.0,1.0,1.0,0.9999999999998337,0.9999999999993976,0.9999999999979219,1.0,0.003845822003521795,0.9946861027795021,1.0,1.0,0.9999927534554828,0.9999999999997051,0.9999999999150118,0.9999999986162016,1.0,0.9999999999999998,1.0,0.9999984969219632,1.0,1.0,0.9998424704280702,1.0,0.998841110864364,0.9967590804922244,0.9999999999743423,0.9999999848053014,0.9999999999999447,0.9999999999992808,0.9999999999998983,1.0,0.9999999999956177,0.9999999999998348,0.9999999999999971,0.9999999999999485,0.9979516081624811,0.9991776035430981,0.9999999103830626,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999839704756,0.9999999999999756,0.9999999999889544,0.999999999993767,1.0,0.9945075076325397,1.0,1.0,1.0,0.9997245121977067,0.9910971839151063,0.9991760367345506,0.9973832983390795,0.9998743474489091,1.0,1.0,0.999999999758926,1.0,1.0,1.0,0.9941697084879072,1.0,1.0,0.999997531891087,1.0,0.9999999999999849,1.0,0.9991535909188519,1.0,1.0,0.9999995518230312,0.9999999992548985,1.0,1.0,1.0,0.9999999999992635,0.9982085481602285,0.9999999999999998,0.9965908462130615,0.9909209783174215,1.0,0.9841498996923036,0.9703890657442839,0.914017972982081,0.9999943331867349,1.0,0.0018381924789041984,0.9999999999715528,0.9999999999430249,0.9714322787907902,0.9999999999900588,1.0,0.9771669217737377,0.9998393184628261,1.0,0.9999976306155065,1.0,0.9626892238510852,0.9807463750403408,0.9889493730492687,0.002163816449099293,1.0,1.0,1.0,0.9872841779275755,0.9999676823785598,0.9998604830920077 -su,shape,0.9999998153770985,0.9999292546773467,0.9999995725158717,0.9999205377967918,0.9999871539072307,0.9905317374273763,0.999877486273256,0.9999963224955657,0.9995501462556499,0.9997494808318825,0.999998458574132,0.9999999549109055,0.9999999796471126,0.9999994890970937,0.9999995474731782,0.01949019149400167,0.9999995560559983,0.9999999943575033,0.9999999982279357,0.9999999999155931,0.9997698218250962,0.9999963916681592,0.951974046966417,0.9997955160038582,0.9999840089911495,0.9999996646340049,0.9998817670451756,0.9999972637583346,0.9975246410283438,2.797866932688443e-05,0.9999823791142529,0.9999891501676687,0.8496018883695055,0.9999822742005857,0.999983702869505,0.9999991544417113,0.9989770273080149,0.999979822607797,0.9999999948049652,0.9999999765749307,0.9982359361369112,0.9985894463977261,0.02189174035530908,0.00012066202589299594,0.005072404199933585,0.9996851642779119,0.999915246503093,0.9996905562302425,0.9999735536331004,0.9999630043617872,0.4568392927869471,0.9999523804382484,0.9999211300653997,0.9902453786379767,0.9999984288397216,0.600228484186386,0.9999994806088119,0.9999999728280816,0.9999999999547429,0.9999992694669994,0.9999983875246762,0.9999965151976018,0.8986613666236254,0.9999982903972771,0.00014601999999165356,0.9999463576165135,0.9997314112199226,0.9992576565858051,0.9990928732295941,0.9999836228352494,0.9864260958712505,0.9981884896377738,0.9999986817338636,0.9999508134744108,0.9998421145901261,0.9999826296410066,0.9998628311098408,0.9997556449148937,0.9999996836605755,0.0004529059154755895,0.9999868030477082,0.9999788620101128,0.9999319865285347,0.9999999906533085,0.9998251545855412,0.9999633423016276,4.198701123595084e-06,0.9994648965324215,0.9999988508817363,0.9999862924817013,0.9995279684815347,0.9999998681887741,0.9998664295649029,0.9997788433769008,0.9992576993463278,0.9999999895011743,0.001601025956367822,0.9999141491798001,0.99999998831899,0.9999948725993958,0.11384431501146222,0.9999736144596241,0.9999943029903525,0.9999749715056611,0.9999998417260381,0.0003551620418021103,0.9999652862128131,0.9999172198247066,0.9997278360075674,0.961791574562178,0.9999878649016021,0.9996462058624386,0.9685180342322112,0.965409179316703,0.006092577954771893,0.9999881020988722,0.999997881833588,0.8280916199918277,0.9999051043195222,0.9999160686451964,0.9980490562637919,0.004561196902612769,0.9999928003811728,0.9410582852190693,0.00778833122876122,0.9999992967132009,0.9982445265306364,0.9999433162579858,0.9999835090551699,0.9999733702954812,0.9999999988527903,0.9999691210167114,0.9999999269194262,0.9999423443074165,0.9999995387803189,0.7469786938577503,0.9998407199416247,0.0008611063189104091,0.9999726818739172,5.135812160893426e-05,0.9999992300496756,0.9907928404941441,0.9090720753088682,0.9999939037679886,0.9999999979007255,0.001374419257935393,0.99999998361419,0.9999914224846432,0.9998894863982418,0.9999991096714129,0.9999357869155319,0.999999955222153,8.273548977899232e-06,0.9999917658894473,0.9999371378063381,0.9999990149033836,0.9999999549109055,0.9999214110248686,0.9999998603670017,0.9958981469077228,0.9999998284548012,0.9998738288819068,0.9999978007753147,0.9999689623749253,0.999986438159703,0.9999963454116606,0.9999699771142334,0.9999995837164891,0.9999111134157377,0.9999335224471565,0.9999998264058393,0.9948169236440022,0.9999965451856576,6.584721770624745e-06,0.9998143502369093,0.9999434226159114,0.9999972417216281,0.9955274026586299,0.9999876426066004,0.999975323334267,0.9999405600881851,0.9999876907461304,0.9999998742109611,0.3141245944090185,7.414764389782614e-05,0.9999225430079942,0.9999983121613414,0.9997598809968837,0.9992195909439342,0.9999989964282525,0.9995310863460475,0.9999756384795027,0.9999982279012491,0.7150171842368319,0.9997940601731679,0.9999735194741273,0.9999843482212896,0.9882261750162267,0.9018495194106356,0.9998351059808308,0.9999917319863418,0.999812388058101,0.999981229691013,0.9999857289967398,0.9999764002382533,0.999982733902274,0.9999214955569985,0.9999946064346443,0.9999997937825337,0.9999789192241308,0.9999711591652949,0.999883463266197,0.9999844353711543,0.9999999598564052,0.9998190077663439,0.9640349698308287,0.010661352962645133,0.99978262530126,0.9999039767443624,0.9999989348687989,0.9999189945500914,0.9999919783061242,0.9525745282100058,0.9999998104441306,0.9999638913230404,0.9999882010012677,0.9999351849164644,0.9999999940665483,0.07269967768996483,0.9990037365819505,0.9997740973170822,0.999746028417091,0.9999987041279821,0.9963562452115706,0.9980490562637919,0.9996409810024958,0.9999997210289918,6.0455682961261454e-05,0.9999991550331878,0.9978423951417609,0.9994290996897123,0.9998913896286294,0.9995474792875557,0.00041570282713820385 -su,object,0.9999999999655065,0.9998716263358626,0.9999289402292935,0.9972480728400568,0.9994853233690777,0.6051939542499846,0.9999995866859891,0.9999973613919245,0.9999223263749017,0.9999498315501053,0.9999999761719008,0.9999999869275746,0.9999999941942046,0.9999768631741206,0.999999997469297,0.9999972786200565,0.9999991881663499,0.9999999075040874,0.9999999999912459,0.9999999998343208,0.9999711040581234,0.9999996118532374,0.34251561505690037,0.9999936579830235,0.9582577140174428,0.999999842405352,0.9999972391199962,0.9803188217968807,0.9999998124997226,1.7390393788652834e-05,0.9995837136995861,0.9990120005529987,0.7199844147551892,0.9999688183536236,0.9998148640846796,0.9999999986745844,0.9747010763782098,0.9999988533922719,0.999999245040488,0.9999999655151378,0.9992786138785412,0.7120133533555083,0.04286229219704687,7.507644815591923e-05,0.9999068994367175,0.9994736412531877,0.9982342670346277,0.9995985236963607,0.9999998506502049,0.9999162305586711,0.035613429938347936,0.9962686947861575,0.9997553796214462,0.965207201669105,0.9999999999886597,0.26709165494308235,0.9999725706890239,0.9999999977463672,0.999999999962595,0.9999999820614488,0.9999999644001477,0.99999999989829,0.9999999055882309,0.9999822632842851,9.305162990714606e-05,0.999996981378657,0.9999893735121161,0.9998827111578826,0.9977002989306125,0.9999983935494331,0.9447271704202199,0.9999937409872152,0.9999995806364721,0.9994754353452217,0.9998689304804818,0.9996895507009529,0.9999890548166135,0.9999878431838518,0.9999999438597855,0.01619263391609399,0.9999999414543922,0.9992899705267353,0.9999985344355014,0.9999999992297439,0.9979221498712636,0.9999964687082807,0.9807836646670083,0.9999828381153433,0.9999999774098661,0.9999999952069902,0.9980992502047004,0.9999999999994877,0.9978315363008365,0.9970276730696028,0.9975686259811445,0.9999999435885224,0.9998201898993595,0.9995115037786274,0.99994141720642,0.9999997896292033,0.9445509513375797,0.999999947375526,0.9986877637964631,0.9998212455993115,0.9998947141934076,0.0035038998816738446,0.999999999929746,0.9999927444177477,0.9999552560266256,0.7759183286086526,0.9999990212780536,0.999998480556659,0.9998704449628448,0.9998858511226894,0.8471756187531567,0.9999938067853577,0.99996897687245,0.9999324439075394,0.9999999609196597,0.9999851583728419,0.9938167199897361,0.9897757149918154,0.9999339254675814,0.9955750743264096,0.8199187577364557,0.999999983660008,0.9999869395038689,0.9996095660136889,0.9999591057915949,0.9999970371346819,0.9999996136131556,0.9999617331297356,0.9998827408828408,0.9993412047401264,0.9999916778977538,0.9986494108039979,0.9999849816829963,0.03084561144919953,0.9998829424569893,4.7635700178647355e-05,0.9998722350833785,0.9999996432242265,0.9801967383773049,0.9999959884153469,0.9999999999707871,0.2802760863475343,0.9999998747728348,0.9999995292785566,0.9999927549134339,0.999999966343674,0.9999989510022739,0.9999999976832417,0.9883211260222751,0.9999999429528231,0.9999999976296954,0.9999999911683445,0.9999999854022317,0.7494167024220441,0.9957198042806589,0.999997247050402,0.9952099451438211,0.9998234602482753,0.9999999994147,0.9817980237972008,0.9584316843571007,0.9678929613201946,0.8710072166142627,0.9999999970107938,0.9998644347693472,0.9971104355467684,0.999999954242326,0.5161650291618488,0.9999996420186543,0.9893431229931284,0.9999729332624246,0.9999999900837339,0.9999999999994338,0.9999977320362312,0.93699448950749,0.8904110745611357,0.9155254334801545,0.9999999994532152,0.9999473944922025,0.12472998427504575,0.00158657225104841,0.9999999175076709,0.9999534915923312,0.9992265782391828,0.9999570269538145,0.9999997019067659,0.999473397493938,0.9999587837677758,0.9999999676648327,0.9731143058438217,0.9999502165999274,0.9999999889914873,0.9999472860487613,0.9999939584415715,0.19154463088085566,0.9999856339575394,0.9999482093186363,0.9999339623491121,0.9843446253469903,0.9999997084367078,0.9999984966027076,0.9999953277070947,0.9999999984428396,0.9999999740111447,0.9999998430050006,0.9999997440369441,0.9999917650561467,0.9999993073224387,0.9321546757770344,0.9999999936901789,0.6768674492362433,0.9999257211789361,0.9937205930160308,0.999999893466194,0.9987941393194871,0.999795654538519,0.996554802610341,0.9999998578691098,0.8515451191114197,0.999999485603792,0.9999311259347569,0.9999898497686892,0.9996864504440676,0.999999971804458,0.9999997975351286,0.9991117711051684,0.999873693442743,0.9999551903857171,0.9999997903475852,0.9780732897537755,0.9930014048213258,0.9996338672816015,0.9999726197737836,3.006717391358411e-05,0.9999964880718968,0.999837213354182,0.9999917881449842,0.9999277788663771,0.9991711495606328,0.2611172211777643 -textura,rgb,2.8635762306088486e-14,1.0,1.0,1.0,1.0,0.0004626565074581105,4.407571396375931e-10,2.051776197550669e-09,1.8575481209961746e-08,1.3939213263973227e-08,0.9999999999999996,1.0,1.0,1.0,1.0,3.906057549412118e-16,0.9999999999851594,0.9999999999956082,0.9999999999725981,0.999999031655215,0.9999998930403576,0.9998988205209167,0.00019633360152139252,0.9999909089644672,0.9999671372731713,0.9999999999999916,2.30055951326347e-16,0.9999582583080915,5.556181278861025e-16,1.0,0.0004944430371256386,1.0,0.0005854869693664493,3.0772086272390285e-08,1.0,8.711583301248682e-16,0.9999999461013938,0.9999837480219235,0.8638965706975765,0.00909589151771209,1.0,1.0,0.0010182795352078335,1.0,3.324891211088523e-12,1.0,1.0,1.0,1.061113957628928e-12,0.05394686284282519,0.0004138282124316666,1.0,8.035131636796e-09,0.0008130242577038438,6.635188642876648e-14,0.00812821030071345,0.9999999999999976,0.9999999999999993,1.0,1.0,0.9999999999999996,0.9999993174486352,2.322503522105308e-17,1.0,1.0,0.9984404625391344,0.9999999999959746,4.5301315170452034e-09,2.6316153141906778e-09,1.1948212833836005e-08,0.0007643916999520841,1.0,1.0,2.5991578578929546e-09,0.9999999999999996,1.0,0.9999999999999345,0.9998614970492862,0.999928394156711,0.9999999999999996,7.603516025422589e-16,0.9999999999999962,0.3483754546928442,0.9999999999999998,3.6374968547957596e-09,0.7098066495293183,4.760819043074496e-16,0.9999943878941415,5.512867571220916e-13,6.565211203384469e-16,1.5334410437415423e-09,8.000559442109106e-19,0.9999999999999927,0.9999999999999998,0.9999999999999998,0.9999999999999998,2.1809474778965447e-15,0.9999999999999998,0.9999999999999964,0.9999999999999998,0.9999999999999998,2.2740878042961037e-08,0.009246636254415862,1.0,1.0,0.0005532726833167338,3.057357147934332e-11,0.9999922745017793,0.9999999999999998,0.006750409962720564,0.999999999999782,1.0,1.0,1.0,1.0,0.9999999999999998,4.826998458040729e-08,0.9999999999999984,1.0,1.0,1.0,1.0,0.020634921366641367,1.0,1.0,0.9999891826504749,1.0,8.539322719980241e-08,0.9198230905059149,0.00020909485772672518,0.9999999907626337,3.7021729943178546e-07,0.00037684437685527505,2.8737996287708886e-09,5.698227196541368e-08,0.9999999994637416,0.999999999917075,0.999999999965479,0.42828760528729654,1.0,1.0,1.3765716254722678e-17,0.0006418952353131191,1.0,0.9999908249179634,0.9999999613193727,0.9999999489629915,0.9999101839971865,0.9999999999991664,0.9997280823293884,1.0,0.9076079183877969,1.1799776186116124e-15,0.9999999999999996,5.86588207810743e-14,1.0,1.0,0.9999993413870735,0.9999999958807058,0.9999999994201774,0.9999933728214101,0.9999999996939843,9.945844406337459e-14,0.9999958865116543,0.999947464939847,0.9988793320126886,0.9998395713930097,1.0,1.0,1.0,0.9738277476815447,0.0004228370632733589,0.13908010792295072,9.225172487080687e-17,0.9884167463726611,3.6987026074899923e-10,3.8785351296895855e-19,1.0,0.9999177767146897,0.9999986008814041,0.9999971625472086,3.8330526439598727e-16,1.0,0.0002652346133538524,0.0005661230707472494,1.3454313674514207e-13,1.0,1.0,1.0,1.0,0.9999999999999996,6.796940100324016e-07,1.7305684460091017e-14,0.9999999878220244,0.0014851357350207223,5.123321658538603e-13,1.616930640719196e-07,1.0,0.0005449845615934284,0.0006098074780976992,1.0,0.8562258199363967,0.9995000672429138,2.2243012941428446e-16,0.9999999999999993,0.002261480743308262,8.539267587106773e-14,1.0,1.0,2.405459057417215e-15,0.00015268132939928687,0.9998990844797996,0.9999787239837937,1.0,0.9913154801730707,1.0,1.0,2.3045058079798177e-18,1.0,1.0,1.0,1.0,0.000661860463322136,1.0,0.9999999999962852,0.9999999999980558,1.0,0.999999999981958,1.9730588425045515e-18,1.0,1.0,0.0003824459566789368,1.0,0.005268295447190601,1.0,1.0,1.0,1.0,0.00015648927584982592,0.3765117026146438,0.9995538957022254,1.0,0.9999999999999944,0.9999999999999987 -textura,shape,0.9919200375358197,0.9327219545148026,0.978099781904784,0.2664598681782376,0.001055200016608162,0.4429505081194054,0.8850063200844117,0.9887573349981402,0.6816440101000265,0.5847640488604141,0.9993327906184827,0.9999802506844092,0.9998026850108025,0.9419922987367622,0.9110441789710425,0.02456001715782389,1.929492551330344e-06,1.3682208972928438e-05,0.8296087550979467,0.1341550731010474,2.8482064397444678e-08,0.9977906428825926,1.117046906559389e-05,0.9996245077990624,0.9987048747766534,0.9980563731261144,0.9984131336132895,0.9999655844234417,0.0007854251698272435,0.0002676228099554009,0.0007899028171416974,0.9204789670968957,0.00016956196680075023,0.9839524299085697,0.0001609505722550046,0.00027177102877214246,0.1277981002847865,0.9834655332340744,0.03551758526104419,0.9780217727565159,0.07057456567425746,0.8465963476919055,0.0009900717556600715,0.0002857899559539728,0.00013938481082882538,0.20098224892582506,0.4265408632799011,0.01936906278498435,0.6452471814607741,0.9483422786225048,0.021395172187855555,0.5524132977484892,0.9269176938031212,0.1112128383560828,0.9912158361981359,2.1974026464174287e-05,0.9999690972917964,0.9696051996332615,0.9996481674206333,0.9810810735571153,0.934494517151078,0.00025538557858368574,4.169226087006971e-05,0.9928613257352928,0.03980433789483036,0.999556582778354,0.9964649783903656,0.2322270596175837,0.6310620015851099,0.6567123873364346,0.00103561233173116,0.7284939972643807,0.9922977109598726,0.8866116643790268,0.9114683968146802,0.9793774217349321,0.9980676593633548,0.9995257276635197,0.9999564144420812,8.33763520651737e-05,0.1514022170566108,0.04320604796187754,0.26676828613992526,0.9312401953988824,0.23803798963397965,0.2804891054040679,0.00020296700012322865,0.984267242818989,0.9640528481477797,0.4557111161506451,0.5426129272050545,0.9708782873767242,0.9999757253066883,0.9412127411790805,0.9999527499598595,0.9998641630621841,0.00015167133007966963,0.9995743447755719,0.001061579202869859,0.12730102274067479,0.009332689833770063,0.0059610048124579445,0.0025110043765005385,0.04346959984236419,6.385303801354919e-05,0.0003971011347658807,0.9766403632187637,0.9998633342884454,0.9923541217203181,0.002761148640071533,0.9693868433074287,0.01540487816057136,0.16734134659124877,0.00019007293030466604,0.0014150049993847781,0.08955334617275486,0.9994649783372751,0.0004429364492771465,0.00812011975274179,0.9944957784114206,0.002219978177988216,1.9369872002243166e-05,0.9842599186961751,0.5148177460503075,3.528567035088794e-06,0.8081406270881213,7.858395775162062e-05,0.9997666728585889,0.7703153768076474,0.9137417675748155,0.980312576068577,0.969288072836089,0.0011477132321116275,0.9447334761686499,0.9986517650023481,2.8456513145884054e-05,0.00013523641054510673,4.2490263682384265e-06,0.9888495226063605,0.03564154410825622,0.01527400253729221,0.00021022075526628495,2.7476049548974586e-05,0.025173840828363235,0.8746102822903835,0.9922084739882534,0.9999873683309066,0.9996643923759033,0.999059502896987,0.9994029791633543,0.019254168238289966,0.9900801388038619,8.799381215530484e-05,0.942088831581966,5.7819454391962204e-05,0.994758817812824,0.9999802506844092,0.9997949537610301,0.9995762753924616,1.004403930732058e-05,0.9882590756770527,4.018023857355658e-06,0.00011509784305017627,0.9972045707260163,0.9990269801546157,0.9998687498359086,0.9992636764722715,0.831005915224192,0.038939874866775685,0.988805041109193,0.9989091837469294,0.2740280397402946,0.8407073599974976,0.00026866242334842296,0.7846021141372416,0.06291007079255877,0.9380101669533619,0.4525212038319375,0.9997519364459908,0.9999685144210263,0.9995511425329615,0.000242577234010222,0.08359486497627344,3.250845467213332e-07,5.440020282294628e-05,0.6755001059228829,0.959512579944777,0.8440726889962988,0.24879134207710135,0.9999897605754623,0.24960437061060523,0.9823276633244156,0.9576007204463772,0.0029319586395115883,0.40440720748303577,0.46886159273355416,0.9982300717385005,0.0017960553366294157,0.1322730150798405,0.05460112057378568,0.14350179128490637,0.09979810372455328,0.9998768359436805,0.999897302711425,0.0005989917061350426,0.0019147092697869934,0.0004934826590907587,0.04197159167238875,0.9315580515505949,0.976053838486976,0.9977214847943067,0.9715922785919849,0.9998002770112264,0.9983776875025464,0.9998372111858612,4.4599143509074054e-05,0.00018091468424822333,0.00581002701467361,0.5444417291889924,0.6778123690183545,0.001644745417898432,0.9575856168915656,0.0024449808620765233,0.9989528454401841,0.050517813188333566,4.5391147256526256e-09,0.536072692825194,0.998505029591465,0.004522879422870166,0.2475480869679749,0.004885963179875744,0.39335616133776236,0.9830121929402349,0.0011682285245308,0.002219978177988216,0.9890372279062973,0.6946117063819701,0.003222356309966521,0.7833367715129199,0.10224371660416108,0.9418992327293512,0.03949788979496414,0.0009385531192352124,0.000726297594684416 -textura,object,0.00010303373838352872,0.9999826466097408,0.9999999994760072,1.0,0.9999999931871604,0.031802257039939476,0.08206516340126781,0.0002509313743754989,7.499064338661768e-05,0.00043247225422326477,0.9999836345305203,0.9999990885529292,0.9999990818605445,0.9999956763474359,0.9999999999999918,1.063173587942572e-06,0.7975088095261004,0.977606981432401,0.9925156828149458,0.6278667089417449,0.005624272114395564,0.9996960845780914,3.9620970560191254e-05,0.9999744298666396,0.9994117898336109,0.9999998759418366,0.005435376409921609,0.9999191847781794,0.00012897617763152908,0.9999908056912329,0.0004044803991849134,0.9999999996890374,8.511592540227996e-06,0.10359270056330555,0.9999999999996956,1.2559919167420292e-05,0.9990064365867057,0.999379257093704,0.03010802889819742,0.03897761752000935,0.9999999999993949,0.9999963363573179,0.0005522278315716424,0.9999983700053746,1.801941739059463e-05,0.9999999923484707,0.9999999992635038,0.9999998900023795,0.009132557553560098,0.8868319669939292,0.014474780977670455,0.9999999999999998,0.010611516115944531,0.00014133764729737873,0.00042642705330744337,0.00011021191624830858,0.9999913502500721,0.9996770430412963,0.9999991116091954,0.9999978517010806,0.9999769596190577,0.13741772026344254,1.7892274925672178e-08,0.9999999086088355,0.9999995043184083,0.9998833652540663,0.9999990448114953,0.0005635810057324239,0.0009639132898785803,0.0001061405395045017,3.842761278271526e-06,0.999999999999978,0.9999999999999956,0.014337500641700628,0.9995989913059744,0.9999997559678442,0.99999971784283,0.9999173616366559,0.9999896181351635,0.9967349372268568,6.94707954531932e-05,0.9938248399042422,0.568884538831254,0.9998112972604862,0.0011559719608177327,0.7114492074315931,1.3165320143111272e-06,0.9999282915501299,0.0014145298446712402,2.319172855402622e-05,0.0011090502707642629,1.3626802591101045e-06,0.9999704174725422,0.9998273178996169,0.9999880923356255,0.9999850049104064,1.867362802318499e-06,0.9999874451352804,0.9974615502404658,0.9992877975557384,0.9996050917990457,4.3346819444892e-05,5.3747611660810365e-05,0.9999999999996734,0.9983931758037887,0.0003023326994309635,0.0009738333500220969,0.9999926767447884,0.999999995202489,0.00012172149082464037,0.9999985947944752,0.9999999999997276,0.999999999999988,0.9996269448439226,0.9997896939772601,0.9999896968089244,0.6511541632467092,0.9918109674621955,0.999932508528968,0.9999999272196518,0.9999999474562037,0.9965014290512888,0.7927604742611606,0.9999999999998055,0.9992452906697378,0.6924543601998355,0.9972666277555418,0.6645928582651749,0.9391718909999566,0.3796145007601162,0.9999379424961434,0.2164913513515632,0.0005586881776005665,0.011543539279740384,0.3998921200626401,0.4741315165957331,0.7522344065587505,0.7263840260464728,0.9637138483326889,0.9999996863005707,0.9999999999999971,1.8436032688660734e-07,1.8174873276545975e-05,0.9999999999999392,0.5326532266977263,0.9983992739020148,0.9941912391212823,0.9999579936525773,0.9999999736936267,0.9998350217279719,0.9999999999998876,0.5910326526523273,4.5808301673682694e-07,0.9999787014034501,1.092670598638455e-06,0.9999972632793793,0.9999988232195035,0.9999849298479632,0.9999720613780237,0.6889969567944915,0.9997818768536817,0.2720379458227622,1.9745824372293866e-05,0.9998581564141555,0.9997690127652239,0.9997008449701934,0.9995706088064407,0.9999889948225903,0.9999950151419464,1.0,0.5295843666515668,0.05594631453743077,0.12895160035927655,7.01701470288144e-07,0.7411593894997683,0.0007182681504827482,6.041035346641699e-07,0.9999999999999907,0.999681047970325,0.9999934197735519,0.9999737503610054,1.101490138810965e-06,0.9999999999999991,1.591876166827327e-05,0.0001783943336558617,0.0016671916082770162,0.9999999999999987,0.9999751997403244,0.9999861540462047,0.9999993098197618,0.9999966678847892,0.08928002253038421,0.0028923850914072033,0.8293038556767897,0.03273465634991002,0.0003604333018189224,0.34293602911400706,0.999889081176745,0.0612163210886008,0.00022227446538887938,0.9999999999999891,0.3033597709970228,0.9996872844559949,0.007060329362408613,0.9966433872477515,0.0009036985513633157,1.6825612630958335e-06,0.9999999999995872,0.9999999999999984,0.0011557402585285106,0.8997174666608209,0.9981148454862971,0.9998730398665945,0.9999990913840677,0.9995816449373912,0.9990329713188552,0.999936110865253,6.800684706454992e-07,0.999999982755477,0.9999999998690303,0.9999999856843431,0.9999999999999896,6.0564596961510335e-06,0.9999999050757803,0.9930372762957036,0.2273639144699399,0.9999780757914007,0.9996730168998679,2.8642637155179643e-08,0.999999986182817,0.9999999999998528,0.4701346902689924,0.9999999999999947,2.253644190882534e-05,0.999999946851532,0.9999999486439322,0.9999999951090073,0.9999993715293813,0.03470343385117027,0.4170377410172618,0.9954435350331579,0.9999999999997402,0.9999164569565551,0.9996725447515902 -tiene,rgb,0.9220423750116079,1.0,1.0,1.0,1.0,0.9999999999999107,0.9999999999979039,0.9938417569678915,0.9998950759852288,0.9998053896587538,1.0,1.0,1.0,1.0,1.0,0.9999585999704779,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999993874,1.0,1.0,1.0,0.010952695969813757,1.0,0.9998139782752523,1.0,0.9999999999999216,1.0,0.9999999999999303,0.9999805173754278,1.0,0.9999871083469134,1.0,1.0,1.0,0.9999999999999996,1.0,1.0,0.9999999999999811,1.0,0.9999999997306075,1.0,1.0,1.0,0.999999993846157,1.0,0.9999999999998839,1.0,0.9994744629738281,0.9999999999999509,0.9999999316642469,0.9999999999999996,1.0,1.0,1.0,1.0,1.0,1.0,0.996921672788608,1.0,1.0,1.0,1.0,0.9984581396417812,0.9960171690336758,0.9997645578706946,0.9999999999999509,1.0,1.0,0.9957302055628054,1.0,1.0,1.0,1.0,1.0,1.0,0.04595906866073339,1.0,1.0,1.0,0.997847259816692,1.0,0.9998697736684253,1.0,0.9884939401021643,0.02879030505991847,0.9893567714544415,0.525697989737558,1.0,1.0,1.0,1.0,0.9999761555178738,1.0,1.0,1.0,1.0,0.999999999999998,0.9999999999999996,1.0,1.0,0.99999999999994,0.9999999999933766,1.0,1.0,0.9999999999999991,1.0,1.0,1.0,1.0,1.0,1.0,0.9999840072571139,1.0,1.0,1.0,1.0,1.0,0.9999999999999998,1.0,1.0,1.0,1.0,0.999994109494521,1.0,0.9999999999993929,1.0,0.999999843958605,0.9999999999998697,0.9964415694900752,0.9999888469156333,1.0,1.0,1.0,1.0,1.0,1.0,0.9110656407926292,0.9999999999999272,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999800847107513,1.0,0.999999916017988,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999998277267,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9999999999998885,1.0,0.9996070118354036,1.0,0.999999999997216,0.22334388522925544,1.0,1.0,1.0,1.0,0.9999801244318293,1.0,0.9999999999996523,0.9999999999999427,0.9999999096905207,1.0,1.0,1.0,1.0,1.0,0.9999999815014892,0.8774837735775946,1.0,0.9999999999999836,0.9999999729159889,0.999998331224106,1.0,0.999999999999925,0.9999999999999047,1.0,1.0,1.0,0.005294237049793116,1.0,0.9999999999999931,0.9999999552222778,1.0,1.0,0.32675119247531503,0.999999999999361,1.0,1.0,1.0,1.0,1.0,1.0,0.8897037549230824,1.0,1.0,1.0,1.0,0.9999999999999314,1.0,1.0,1.0,1.0,1.0,0.8575873481342031,1.0,1.0,0.9999999999999873,1.0,0.9999999999999987,1.0,1.0,1.0,1.0,0.9999999999984401,1.0,1.0,1.0,1.0,1.0 -tiene,shape,0.9999997066594838,0.9999999999744129,0.9999925076676367,0.9999999649859005,0.9999997102830012,0.9999999646669574,0.9999882761262288,0.999999999047873,0.9999999999983069,0.9999996426068134,0.9999999974896856,0.9999999986276877,0.999999974028098,0.9999999999434617,0.9999999998271729,0.9999999796585739,0.9999995723756695,0.9999986675687197,0.9999999209067314,0.999979626719372,0.9999995049771108,0.999999961994034,0.9999999913166481,0.9999993037262237,0.999999825303643,0.9999997546422568,3.93599226500441e-05,0.9999975088476346,0.9999999981164376,0.9999911864616471,0.9999999974539946,0.9999411126764239,0.9999999478462844,0.9998362830447771,0.9999994144869941,0.9999971860293998,0.9999689802134285,0.9992863454417904,0.9999845306309633,0.9999999996525899,0.9999997666327908,0.9999959873765772,0.9999999850996804,0.9999999793458354,0.9999999694472703,0.9999940039851866,0.9999657815142226,0.999905634200356,0.9999993291042526,0.999995784028306,0.9999998577077542,0.999997303815131,0.9999953069234591,0.9999999622797301,0.9999999999181177,0.9996885763319526,0.9999999730271231,0.9999999997313598,0.9999999990231956,0.9999540584353622,0.9999992742306565,0.9999960521153662,0.9999475606489061,0.9999999131884567,0.9999998758628218,0.9999991711862509,0.9999997803153461,0.9999999979256899,0.9999999118555516,0.999999999971136,0.9999999968106064,0.9999999972577911,0.9999997815864008,0.9999813205522198,0.9999999995909257,0.9999988714738678,0.99999992729438,0.999994809695825,0.9999997849792435,0.9999999949659018,4.7916126512259565e-05,0.9999999906434812,0.9994726020718896,0.9999999989422039,0.9999991551895875,0.9992186132897023,0.9999992148640973,0.9990872809871499,0.9999812029729493,4.4894636464333115e-05,0.9999999989626402,0.9999999998515929,0.9999970963183659,0.9999997470568676,0.9999964546779222,0.9999999993307975,0.9999999656348922,0.9999997856289817,0.9999999954431571,0.9999999999969251,0.9999999999960538,0.9999999348308788,0.99999997493208,0.9999999828329419,0.9999999705315163,0.999997683819187,0.9999997636595946,0.9999950087465559,0.9999371229653896,0.9999961425445968,0.999999989357231,0.9999999999339904,0.9999999997193119,0.9999992877142825,0.9999999795537062,0.999999998464957,0.9999778682445862,0.9999999950654004,0.999999999976934,0.9999999994147946,0.9999988269772002,0.9999999801950292,0.9999990578148892,0.9999999992205062,0.9999996961787733,0.9999999986617019,0.999996328073605,0.9999797644461831,0.9999999732651614,0.9999773250333042,0.9996494989278338,0.9997615724011086,0.9999996833142769,0.99999920341171,0.9999904993471559,0.9998075818118997,0.9999986148454834,0.9999999998747422,0.9999128095187318,0.9999999301153608,0.9999997753353772,0.9999999003794023,0.9999999998119358,0.9999999950435097,0.9999999999136533,0.9995708648290913,0.9999999973432474,0.9999997290596575,0.9999996120557775,0.9999999176641162,0.999996111556524,0.9999999719543823,0.9999726251627307,0.9999817749884049,0.9999999996240954,0.9999352172841977,0.9999999986276877,0.9999978318861136,0.9999853043323254,0.9999993248777407,0.9999986666939746,0.9997601030911591,0.9999900730245552,0.9999980999987328,0.999998230026679,0.9999988942385337,0.9999991045602981,0.9999999999818348,0.9999606120218537,0.9999532756443402,0.9999982026943177,0.9999999676265429,0.9999999980515026,0.9999999088797414,0.9999999946147435,0.9999997510789156,0.9999999999816263,0.999999996594938,0.9999997868130758,0.999986014422874,0.9999988260799512,0.9999998088560728,0.9999997631583705,0.9999999221773742,0.999999549369,0.9999998406582892,0.9999998423660588,0.9999959064458863,0.9999965782161324,0.9999999874340529,0.9999996403224983,0.9996218625991667,0.9999997200024391,0.9999996195518981,0.9999999986866148,0.9999994302782795,0.9999992101614105,0.9999984768151122,0.9999995042041234,0.9999999999999476,0.999999854845375,0.9999999991798667,0.9999999134500827,3.627737748449813e-05,0.9997591856304932,0.999999999788109,0.9999999999014795,0.9999999999966327,0.9999969375082355,0.9999990318718446,0.9997786698533201,0.9999999209829482,0.9999992824557702,0.9999995160893841,0.9999692034239726,0.9999999997731079,0.999993547335837,0.9999998737110245,0.9999631988343455,0.9999980712765283,0.9999987399902126,0.9999998935465064,0.9999999940074855,0.9999999999896483,0.999723197473391,0.999991501883439,0.99999999972531,0.9999987626009145,0.9999999999465343,0.9999677072457419,0.9999988470100571,0.9985990597879579,0.999999951906532,0.9999999161694625,0.9999988269772002,0.9999999935458606,0.9999963828855325,0.9999854856333217,0.999999927579967,0.9999997683429996,0.9999987780481517,0.999481937661443,0.9999999990401207,0.9999999285993129 -tiene,object,0.9999048504365856,0.9999999999998797,0.999999999097702,0.9999999635144594,0.999999999962925,0.9999999998182125,0.9999575279267445,0.9999999972104414,0.9999999999938443,0.9999998462026897,0.9999999999768825,0.9999999999979423,0.999999998792571,0.9999999999966998,0.9999999971139895,0.9999901055989362,0.9999999999995741,0.9999999999982898,0.9999999999917846,0.9999999637476435,0.999999999977675,0.9999999985814587,0.9999999999854998,0.9999999311440316,0.9999999996882822,0.9999999989079178,3.565449583444415e-05,0.9999999954395484,0.9999916478237484,0.9999999998574978,0.9999999995389885,0.999999997574345,0.999999999999738,0.9999747112377383,0.9999999999772491,0.999949661866588,0.9999998517626922,0.999548494622817,0.9999999821961262,0.9999999999943341,0.9999999974997282,0.9999999999529285,0.9999999999797038,0.999999999998419,0.999998122954105,0.9999999958164754,0.9999999985747399,0.9999998796981089,0.999922030550325,0.9999998382602429,0.9999999998317213,0.9999997132942535,0.999999128537481,0.9999999999695888,0.9999963025273365,0.999999989725307,0.9999999999847775,0.999999999994142,0.9999999999789826,0.9999933945052921,0.9999999078107805,0.9999999997619626,0.9998167234328655,0.9999999996309681,0.9999999998842759,0.999999957796535,0.9999999983369923,0.9999999960392756,0.9999999859032735,0.9999999998025697,0.9999999999995948,0.9999999943234248,0.9999999131102053,0.9999942983325906,0.9999999999988838,0.9999999962266446,0.9999999997273936,0.9999995599579228,0.9999999713298725,0.9999999999998881,2.075751263145022e-05,0.9999999999954692,0.9995393027247963,0.9999999999968623,0.9999998646275331,0.9998570255139113,0.9999307374877249,0.9995381023562722,0.9997611855644016,1.574331802888877e-05,0.9999999986060999,0.9998840146347069,0.99999999994116,0.9999999999353038,0.9999999999507045,0.9999999999975528,0.9999894411443042,0.9999999997462765,0.9999999999969564,0.9999999999999325,0.9999999999999962,0.9999999997733473,0.9999999999999798,0.9999999999989921,0.9999999999978559,0.9999999986519177,0.9999588783581984,0.9999998131548462,0.9999996463328041,0.9999999998965918,0.9999999996805788,0.9999999999993996,0.9999999992357331,0.9999999999986329,0.9999999999999183,0.9999999999993778,0.999998738922,0.9999999999999627,0.9999999999998408,0.9999999999953553,0.9999999994401192,0.9999999999999587,0.9999999475818061,0.9999999999720588,0.999999999999508,0.9999999999787641,0.999999999997178,0.9999971310735916,0.9999999987531811,0.9999984485184273,0.9999586739886552,0.9999524854668874,0.9999999941610753,0.9999997309112254,0.9999996398695137,0.9999999998327445,0.9999999999851148,0.9999999999999876,0.9999969656826373,0.9999999999864175,0.9999998533150174,0.9999896869262098,0.9999999999981166,0.9999999979073828,0.9999999999940321,0.9999999973501144,0.9999999999918985,0.9999999732910645,0.9999999839532139,0.9999999809595562,0.9999992628123763,0.9999999870858562,0.9997791395733969,0.9999994266589735,0.9999967404451827,0.9999977550602663,0.9999999999980549,0.9999999961256594,0.999999997491569,0.9999999995472095,0.9999999943281579,0.9999999953036536,0.999990372255093,0.9999999913934338,0.9999999917949601,0.9999999955860628,0.9999999971894842,0.9999999999864182,0.9999994911826304,0.9999981665235477,0.9999999699555451,0.9999999999136173,0.9999999983320997,0.9999300618456821,0.9999999989769113,0.9999946609762899,0.999984629702132,0.9999999973707849,0.9999999989333699,0.9999999777761519,0.9999999973779055,0.9999997382842599,0.9999998274002353,0.9999999999355003,0.9999999997103026,0.9999696472971615,0.9999999536125114,0.9999999866249665,0.9999999643062399,0.9999999999752387,0.9999999992713076,0.9998950171368025,0.9999618459190733,0.9999999999886011,0.9999999980902785,0.9999379600512373,0.9999999735781631,0.9999999999930471,0.9999999989004913,0.9999999999998381,0.999999975247353,0.9999999993889352,0.9999999979533738,2.1093731043343546e-05,0.9999999976534297,0.9999999999989346,0.9999997784657686,0.9999999999996698,0.9998631125739073,0.9999012789302002,0.999973562211296,0.9999999064076625,0.9999999976782608,0.9999996863759637,0.9999998069217781,0.9999999999999933,0.9999999999936859,0.9998820294928262,0.9999999986127948,0.9999999997895377,0.9999999999169709,0.9999997818136462,0.9999999999996132,0.9999999999985116,0.9999999984517081,0.9999999999060609,0.9999999999985907,0.9999999999336961,0.9999999331552851,0.9999999978965599,0.999999998046901,0.999321435893901,0.9999999735879099,0.9999999999916482,0.9999999994746314,0.9999999999966998,0.9999999850010519,0.999999999493224,0.9999999844471184,0.9999999829219596,0.9999979928421631,0.9999996438142139,0.9999999999999813,0.9999999999997191 -tomate,rgb,0.9999999999996765,6.222554742203754e-16,0.002122603860488811,4.134043627838994e-09,0.0016088358825039563,5.056215761887382e-05,0.9999999999999796,0.33671776235708073,0.1797447310255575,0.5432737392056024,0.0009963333229929929,0.0007686892040054132,0.0009416554905699382,4.08930811589139e-16,3.072543065181769e-10,1.0,0.9136351428501795,0.8236686120578042,0.9137656030021754,0.004151607071879933,0.9919422163544827,0.9999986259196603,0.00011406554614896129,0.9999999234318103,7.134747386902254e-09,0.9972852828516799,0.9999999999999376,1.2691777718361339e-08,1.0,1.3701923024518875e-14,5.000889765278018e-05,0.0005358306423597798,8.569847072989592e-05,0.9970624748508432,1.0556381064149584e-12,1.0,0.004259139185414508,0.999947066814714,3.7587453494467084e-06,0.0001209888609111176,2.110940863723865e-09,3.823431686401021e-13,4.4031850216165645e-05,5.360468922201479e-15,0.9999999999999991,0.00012263524368448547,0.00032031207245813797,0.002212416249538304,0.9999999999999987,0.13826302337640076,5.7890850563253635e-05,2.3756984882236177e-09,0.3836022108042312,0.00019657137570044117,0.9999999999999998,6.825954013636506e-05,7.38279630696456e-09,1.1241770993428082e-08,0.0007512349740814328,0.00102571691520295,0.0011565319462781267,0.9967101980756219,1.0,1.167571400893472e-12,3.3257270744766327e-14,0.9999999514747272,0.9998479572423282,0.573030151457183,0.3711657117725043,0.18267862576129767,0.0001360069914528165,4.9571320859743546e-09,2.60087376256195e-09,0.7346145062022096,6.004912251910719e-15,6.251696664981088e-13,0.9992552736113147,0.9999999175196518,0.9999990795737826,1.631005171910189e-08,0.9999999999998912,1.2900239465423187e-08,0.9988834049977219,3.646405889394805e-08,0.28471439505720775,0.9993043166052515,1.0,0.9999584757780632,0.9999999999940403,0.9999999999998745,0.41952965879757514,1.0,4.192944383788132e-09,1.0212357131466462e-08,2.0520856789118842e-08,3.003847104921608e-08,0.9999999999999998,3.750222010085721e-08,1.0332798703160215e-08,3.8890218655623204e-08,8.302707803876814e-08,0.9999999999999432,0.00014433780013464238,2.50186831541698e-09,8.192529260043827e-08,4.36307632383054e-05,0.9999999999999984,0.9999998854101892,0.9684486911855683,0.00020883824946292946,0.9968067970367265,3.1215165413183068e-09,1.6164422511491625e-09,0.00022113065458819508,0.0007230602239372539,0.0006694087407481236,0.9385358235810638,0.00011451400984997009,0.0008917746709630864,0.04609232028326571,0.0006640034093756585,0.00015701461258264802,0.07204338221560791,4.9220045225072585e-09,0.0001561225466708903,1.5252562168494705e-06,0.00014368618501297908,0.8812011180929354,0.11405582438628772,0.9882121495834798,0.00014494387272010557,0.9964991273803819,4.949385964633753e-05,0.7035529707440858,0.9534101283269287,0.9341592678334961,0.9311416779308083,0.8961495434555758,0.09817963217133871,1.3924114822430946e-14,1.6586655535859216e-12,1.0,0.0001626564326898485,4.684934519088634e-09,0.0034420987369414876,0.0029963308125430413,1.2976049249636586e-05,0.999999449764421,0.9997781537018884,0.9999999590127234,5.363294410016993e-09,0.7110794688977669,1.0,0.0009848340197976529,0.9999999999999998,0.0009002194507004953,0.0006394124904887809,5.765970175656481e-10,4.551300368141482e-10,0.9654375324327472,3.0881763699954404e-10,0.9611792198146947,1.0,2.362399099285102e-09,4.142461822173021e-09,9.2183080741397e-09,1.0728466466299181e-08,0.0007014400434288,0.001013741871634359,2.6845192292896717e-09,0.6067686928379522,5.7713219453743305e-05,0.7965508070512073,1.0,0.4345440321405419,0.9999999999999807,1.0,2.9979258016445133e-10,4.6535832620751006e-10,7.979797972065163e-10,1.7098968979740789e-09,1.0,9.458463102049496e-13,0.00011482942470731891,4.344345484683955e-05,0.9999999999999996,1.3841702254057635e-08,1.3333601170469704e-15,0.001022658626395312,0.0007330416808525944,0.0011289344430842764,0.9996813696898144,0.9999999999997711,0.0031448216446048937,0.9482186256886164,0.9999999999999989,0.9101099981524493,0.0002602592497529778,7.25705636969e-05,0.00028300518639701405,4.530235611448516e-09,0.7960760207478313,3.051232865427829e-08,0.999999999999901,0.00013004853721038497,0.00020431005601543283,0.9999999999999998,3.911289410660021e-09,4.755805962324845e-10,0.9999999999998976,0.9976234963708075,0.9999608423769798,6.983345240999742e-09,0.0008138463226798302,2.1333121883513467e-08,0.00021411269762005666,0.00036610748324819055,1.0,0.0005821499842693926,0.0006025418038337251,0.00026326472360662474,4.385972376365154e-09,0.0001629355103275712,2.1415316141311652e-12,0.7872536270813844,0.74887168924674,6.272559417432202e-16,0.7996883878099892,1.0,0.0006690444046007992,7.795870893410458e-13,0.9999478712025868,3.4925084124902782e-09,0.00017025189071338413,0.0004586339090187535,0.00015939829529952945,0.0004298004324489029,1.5685383657044033e-14,0.964422498586947,0.8231800827656465,0.9999912708542797,1.5612836860999264e-12,0.0011750973466853707,0.0005942646027808339 -tomate,shape,0.9997249221690931,8.088404871010087e-07,5.156626056782069e-06,0.0812031827912537,1.1224182018287206e-06,1.276567781831187e-06,2.849845956868706e-05,0.8807478377515133,0.09129303782448023,0.9875405398783528,1.02544164561025e-06,1.0420913839795419e-06,2.9412036904470137e-05,0.00020097734664049143,2.6825027006657796e-07,3.6829312913985612e-06,6.5585777550162944e-06,4.859664882376206e-05,2.1226798622655176e-05,0.15074273464321053,2.2001759416458935e-06,2.8478827113168318e-05,7.038087730290255e-07,1.0033521490866849e-05,3.779695665156609e-05,1.0246693937236695e-05,0.9999718903880951,0.0014176450779572474,0.0006143636402084623,6.766618533486273e-05,0.0028747997781135904,1.657785947915809e-08,5.406628055420384e-07,0.9660331889993957,2.1203907331945203e-08,5.027341919699794e-07,0.9815517715187038,0.9999975719322121,0.9120370710052625,1.9735181534570813e-05,0.00013190508743016473,5.601932984885247e-05,9.925249507209526e-07,7.985788693321075e-07,6.793449737829216e-07,1.0444281905545909e-06,1.5154654679637976e-07,5.624715610279543e-06,0.0004834163498881784,0.8674976250830243,7.442325491456645e-07,0.001122117544414399,0.9993814797426173,4.386643620859434e-05,0.0014342463565883156,6.833410495034098e-07,1.0687830598528446e-05,2.2725623250572227e-06,0.0006782254092086604,0.0029946455415820754,0.007846281459419574,1.2596628654207008e-06,3.37311853354453e-07,0.0001241000040682071,0.0001597151469453262,0.0002596646144815408,4.59910066850911e-05,0.9963510318198552,0.9991961913210895,0.5675236828696505,1.2777115209584516e-05,0.0006006564203320128,3.193266323806269e-05,0.9990900528169222,2.643549103294592e-06,0.0001141976577680179,1.4081019371151928e-05,0.0025147886064243474,0.0002775839085071313,6.221983250238816e-06,0.9999945882963795,8.853396123961644e-06,0.9998508548324399,7.170485452048007e-06,0.9956312191905674,0.9999136790077378,0.00012337504323040128,0.9999901807494176,0.999989662832822,0.9999613312456216,0.9980658148838066,0.0007162823707572473,2.402063315094229e-06,4.1975117675856785e-06,4.067705658327194e-07,1.2220074726903347e-06,1.2765635647871525e-06,8.359267404229147e-06,6.894030949106196e-05,8.169963944027555e-07,5.472901647277262e-06,1.1103228632329027e-06,1.6508797056610606e-06,1.3137931586946447e-06,1.5601585746314685e-06,5.19266671018841e-05,3.334869510359913e-05,5.781548692236486e-05,0.034097747810587636,1.109483103785096e-06,8.233405840296232e-05,4.291684805381057e-07,2.87491402647053e-05,7.182022595613477e-08,1.5245596801179278e-07,5.333630618481233e-09,0.5473148314079054,1.6948183742885097e-08,1.1401324292822529e-06,8.404892999575293e-06,1.6004735403563174e-06,2.3154479809183095e-08,0.8691739181972342,9.43168035057514e-06,1.050182349664507e-07,8.527337593021375e-08,3.7966404433274456e-07,0.8697624888090116,0.9443787295019759,0.9307994404436478,0.9999985228100153,0.9966016254904111,0.00027184243556292883,0.999831002427215,0.42900286979710145,3.8831107522475606e-07,7.335280784858621e-07,1.3423103651325063e-05,0.9955505404768455,0.00013346418569228828,8.957463871691803e-05,1.2134356249514491e-05,0.0002499103496995908,0.00019181093801892986,4.943550224857055e-07,0.0006608858898476848,7.913319819747468e-06,0.003981719155012072,0.0008617726941963322,5.000536481485376e-05,2.3541724304641567e-05,0.3488627175467895,5.403966091336752e-05,0.0005900021988229392,0.030352561762193732,0.00013155697243511156,1.0420913839795344e-06,0.005377941037051054,0.009908985582353865,0.00017048859681034891,0.027083570911395106,3.101191591789365e-05,3.2182771187074296e-07,0.014389215989663147,0.0008211895682923809,0.000500899891002871,8.737151511812008e-05,0.00010490095539025701,0.341459650857689,0.0008241425854824205,0.011742580042116138,4.683732752684458e-06,0.986125130497468,5.425757531580515e-05,0.9478125950772579,1.5515648252874778e-06,0.00036463708514940636,1.1614644083283382e-05,0.0005687836031381614,0.025622915383642846,0.004431804725039514,1.5513921909281346e-08,0.00023163610907118862,1.0850447253786291e-06,8.086058418260452e-06,0.0007581303526308961,0.0003561216699290956,0.00012345870330812632,0.00013333662060093003,3.227660399704565e-06,9.182137978680885e-05,0.9999509371777606,0.9998779727039554,6.622672177041172e-06,0.9974990659759309,5.101165833210969e-06,0.10960714821099872,1.0504365136250206e-07,1.251428343064423e-05,3.9178278711199786e-05,4.1344461146805484e-05,0.9996771898236969,0.00449341679343577,0.9999807561466142,2.192449470779493e-07,3.5432181008101434e-05,0.0005650245716040869,7.338442462712124e-07,0.006280801946453419,0.9999971248089874,0.9730763373130719,0.9999442528243896,0.0010848834958773058,0.016434189523899717,0.17947079227390522,9.345645785856035e-09,6.374502134006658e-07,7.005040168034081e-09,2.7253415829244275e-08,1.73275346994603e-06,1.5840020886636491e-07,6.62031093305929e-06,1.2884606140710663e-05,9.810381449476717e-05,1.2293837494696601e-05,9.82153850178259e-07,0.00013735745752424904,5.465690628856685e-05,6.293415892771137e-08,7.794770821723043e-11,6.920866412813796e-05,0.9998119384907118,4.55536884990791e-05,7.828196608766896e-05,1.6004735403563202e-06,5.416198798484645e-07,0.0020490713211992672,0.00018009153452112214,0.9495291085000946,0.8952458595834958,0.9999779695338121,2.4404533828496743e-05,9.756590101418826e-10,1.3335245541796533e-06 -tomate,object,0.999990286370999,4.7465010005755766e-08,0.002118590935880677,0.010341085327390172,0.0014424849151228815,0.0001096512560767831,0.9995834755184727,0.6882893489678942,0.05432534670005934,0.9519888647265744,0.0006330382539479584,0.00016781094630259196,0.004254292424059307,3.533520066079252e-07,2.3143435725262978e-05,0.9999430893981608,0.000524179869591517,0.0015245915218379793,0.00196918609558736,0.018070977304109885,0.0008442209448652467,0.7175759757928338,0.00013055970012564,0.9237544596278562,5.384338395863362e-05,0.12258208260081006,0.9999999591543779,0.0002599420948713917,0.9999574959089335,3.5971055189866453e-06,0.012739854814497128,0.00013493891023388184,8.102933526791203e-07,0.9838531115564688,2.0422688396418646e-08,0.9979145294893106,0.593277880894834,0.9999948711840402,0.010723902847837488,6.527873458446161e-05,1.5882530671269976e-05,1.454383540351575e-07,2.412460466083474e-05,2.0440747565754213e-08,0.991686420649802,0.0012350641714297505,0.0004065314375215849,0.018342568140956073,0.9999466164185316,0.6999085225889512,0.00020327129947070272,0.0017829705590644627,0.9680009668059091,6.068238717315782e-05,0.9999822648578605,1.776457242426643e-05,1.472214698899194e-05,1.839554290753454e-05,0.002218855059577436,0.1069940993541063,0.16587554545798783,0.0077169696580345675,0.9989075447382414,1.4639516390421007e-05,2.4522923693351296e-05,0.9592240450950983,0.42532651189536586,0.9667933888700756,0.9454549916110543,0.3580673387236513,9.342606147478056e-06,0.0019926230419079183,0.00013504231397632154,0.9827057064227347,1.9067444045311925e-07,8.229657807901415e-06,0.2395493005310833,0.9830629094426091,0.9199240602585053,1.771650772524838e-05,0.9999999835924458,5.635306471159805e-06,0.99986901610668,1.8322012930684354e-05,0.8591686859510054,0.9998427218922019,0.9999932871245417,0.9999911514095987,0.9999998295269275,0.9999999435339378,0.9140844963320176,0.9999905294962818,5.389655638827997e-06,1.0000690329154549e-05,5.246666709625208e-06,1.1262812832922987e-05,0.9972609577068001,2.676036061647993e-05,1.4037132518657302e-05,2.0305335480305346e-05,6.032120253695607e-05,0.5282445160340862,5.208809834348053e-07,1.7579809455663264e-07,2.2040554386726087e-06,0.001864195601772074,0.9997031091271246,0.9453291619242294,0.8053554435796266,7.246075521951678e-06,0.3767717334350117,1.6768856392348995e-06,0.00036528456223136764,1.0237633864490862e-05,2.1556917515195498e-05,1.1363467540792582e-05,0.8437598002688196,1.357043121854723e-05,0.00011330282645886575,0.0030733203421803765,0.003932825121182081,9.9957966175762e-06,0.6810776697264472,1.0528359471555244e-05,7.894766844836092e-06,9.13872193219462e-05,2.5726961493330928e-05,0.9122309657365503,0.7249797798762296,0.9569142766699803,0.995745862474049,0.9973562821620088,0.0011103413757090402,0.98755412030496,0.7084054900169339,0.0005222692531839921,0.0004317873903238208,0.0044313119458908356,0.9515788712009271,1.7017944233757602e-05,8.072384682641264e-05,0.9992277345653927,0.00018939222702721236,0.00013483826048758652,0.0004264915217954748,0.010281069502513883,5.857547453598743e-05,0.9702136953039834,0.7909301541979628,0.946865924156285,7.021478994489692e-05,0.550043375978034,0.9999727945117532,0.029325118306709957,0.9999776329531389,0.06057116143509408,0.00015514614498101382,0.00025967340826719406,0.00010447620428810941,0.034344130564002526,0.0001915850330737986,0.0029826854293963667,0.9922232254856848,0.00032352922543169287,0.0001263107752994721,0.00017962598939494183,0.00017496893182097645,0.026541109327588505,0.5607232782613452,0.0013070356341584699,0.10226205660455533,0.0002108170932759104,0.9514450294868094,0.999992026196614,0.857686783795653,0.9982598579328255,0.9999818072400282,6.010845301231832e-05,3.2646291645752774e-05,0.0004691970747376656,0.00022150744843557163,0.9355762369961401,0.00013590857503286292,0.0001573198332491835,0.0006712983902452749,0.9999617033522814,0.0018297052721898692,5.198264275966684e-06,0.07359811268229774,0.0005729919438833208,0.009529024580394821,0.9998114562504254,0.9999978267023156,0.00027908827763100167,0.9900043816379925,0.9996485021013001,0.4704413362298529,5.7367365859286905e-05,0.0008114629116995593,0.00010813988490311648,0.00036499089347275367,0.9947113379294247,0.000919736222549612,0.9999999667702477,1.991060119237147e-05,5.201036341393015e-05,0.9996713399989735,2.790097880071863e-06,0.002697610014739245,0.9999999567640504,0.9888105665062596,0.9999629686967789,0.0003554397066577685,0.15841430126610734,0.0049107093123201264,1.0161200305899378e-05,5.5179831876733454e-05,0.9985185230917456,0.0002362868561657588,0.000922767185733838,0.0003324628585534704,0.0002780337126301741,8.712742483473918e-06,6.337246527255418e-06,0.0016417202191419396,0.00035554871883425153,2.1003958946543636e-07,0.00472000454518612,0.9980726130200054,5.9557447157403775e-05,5.4727462477268405e-06,0.9998535252623102,0.00014649206415196075,3.087886280239171e-05,0.003460295220209296,0.00015059852422936586,0.06683200423475948,1.8268555258775118e-05,0.8540466161037263,0.8480829074330266,0.9999923151011059,1.393424346754227e-05,3.945852553712825e-06,3.0190267166690315e-05 -triangular,rgb,0.3554694943691018,0.9999124926654753,0.001289434172661298,0.9999665488277661,0.0023113275421307532,0.8795527851803603,0.08077919587463457,0.7762645551164218,0.7033329085014199,0.5441016916513334,0.0012232581216231578,0.001358141193337407,0.0012445261962756948,0.9999270154156693,0.9999978112626431,0.9561062293138457,0.00018134068973700847,0.00020018870589505694,0.00018599410440163516,0.0048546553383917255,0.00020845403582716766,0.00016237619822061198,0.8559883708966489,0.00014589819566980536,0.9271460708691874,0.00011799960917299356,0.7546337886632206,0.9009124971394914,0.9284261915520899,0.997984550951237,0.8779552108036119,0.0022705297436161976,0.8316406171333416,0.09475525649084483,0.9999899636562664,0.9411236598699436,0.0031686369489236648,0.00016935301091924212,0.6693716809861446,0.6331884260241379,0.9999109512620881,0.9782068558617663,0.860134642613561,0.9989648288060101,0.38810521137052245,0.0026980432549736934,0.002598414351812316,0.0012710003507683484,0.42208688330343613,0.031246239623732776,0.874686137920412,0.9999198881201,0.659863585724828,0.7333522612970896,0.7220135689227348,0.7125450132649993,0.18634517224795608,0.14008317679351037,0.0013521364350000966,0.001194688912318116,0.0011707897388327315,0.00021214452121702196,0.9845245881737804,0.953480487278709,0.995954553005632,0.0002109808819678298,9.328009022020026e-05,0.6251372886018421,0.7470458459289516,0.7327709237053753,0.7760112717629399,0.999911820477254,0.9998606166834566,0.5947251713121839,0.999775651825966,0.9707436901310224,0.00010484250270390653,0.00017133559674661756,0.0001568994940400334,0.11180259930637845,0.6588107719971538,0.14860313114613857,0.001366205067641308,0.07169143123093305,0.7602569018437124,0.0009431891924272187,0.9387993255807543,0.0001511077313446993,0.1492676868592923,0.6646468106964338,0.7652952628095929,0.995387728774023,0.26095845882946,0.13266549493018284,0.09666161541016573,0.07843444705720996,0.886425461014025,0.07059958766993346,0.16451001147241984,0.07187458004218791,0.048086787137014364,0.03097175010054682,0.6086023731963994,0.9999571898900101,0.045814246404131495,0.8827843502253139,0.2454036037657682,0.00014147872816633764,0.0001661671157535784,0.5815963677503335,0.0001114069191776778,0.9999316934768617,0.9999867728016366,0.0019925164617993012,0.0013171218798517957,0.0013619644783181108,0.21473299887050587,0.0026142940349595575,0.0013107516229521991,0.000523572734766712,0.0021689330056880586,0.002166443546586086,0.05299968958702771,0.9998261552328024,0.0021674546585752907,0.25088875389083815,0.0022144756430304354,0.23234270169776564,0.010352567253872545,0.013845336997173097,0.009712364815676704,0.05029344147737811,0.8877627377357549,0.602561318809392,0.18827042059113586,0.00020661765178835815,0.0001876855725138909,0.00019495320263996372,0.020001593113025688,0.9978980283209375,0.9999846027836372,0.9791282128465825,0.7675575964569353,0.9996825657872469,0.007516466013085864,0.0034609112873262146,0.037617952844277526,0.00015936547963834628,9.58137207343743e-05,0.00018581582382259636,0.999795889939404,0.0038158357247131546,0.9232788004606832,0.0012319729438918018,0.7299250934975051,0.0012438173135751033,0.0014077517495029107,0.9668929704214361,0.9181485403337717,0.00018391603037152559,0.9880351642783546,0.00018100856907649933,0.8647632321183035,0.9428766148831356,0.9545416278671177,0.9641590337174426,0.9349860864241925,0.0013482907218385575,0.0011966890104470245,0.999950876719969,0.003428646693929205,0.8741187688809248,0.0077165741371641805,0.9738048476916396,0.003683371201930216,0.0846277171053298,0.9963833911524583,0.9999936939101207,0.9916239805438026,0.9650853819247768,0.9499230611007804,0.9622330916502485,0.9999890886359903,0.8429612933497703,0.8822800499073484,0.6145687203315695,0.997572698262581,0.9998677246609248,0.0011939527165381342,0.0013499312707201613,0.0011850509322741147,0.021931618784000295,0.40121383038811925,0.002921906682320452,0.013772812295806233,0.4669084931234057,0.17965079399254755,0.0018095309743032138,0.8479748817134636,0.7099736871155553,0.9997852683850673,0.0036376865012024634,0.9043209474129036,0.7437787927883547,0.0024317482209513072,0.6621380705214686,0.7054465260156053,0.9998910143418562,0.9999968244340659,0.5767258298097189,0.009422574481280735,0.00019677160515811689,0.9205546361807199,0.0012940709341767677,0.9635272566744029,0.0019185828432209035,0.001696638296620648,0.993470706723886,0.0017680643982547523,0.0024763200092739143,0.003116387625507741,0.9997213063858532,0.7656485058316979,0.9316198385181599,0.0002077216745205809,0.00021149633974385245,0.9999120373911476,0.0002185370473081978,0.993791875773151,0.002159705363204512,0.999997171677917,0.0031576021827450724,0.9998232576605273,0.6267081930980144,0.002377043644587988,0.0021558408012844706,0.001681404030690517,0.9976564728150115,0.021189600954797917,0.005488069214218367,0.00020302515066988544,0.999979757338943,0.0012502239129364766,0.0014873339798763163 -triangular,shape,0.05328778680018667,0.6409116602311404,3.053508609589776e-09,0.005318370895264305,7.228611200084455e-12,0.08575865721127354,4.026944592064679e-05,0.7053461331939699,0.9929985230195834,0.9092654815388893,0.04678648076665078,3.77798889983761e-06,0.019664769628625216,0.02907079417457014,0.9787842028838231,0.9848816311961323,0.1207712433435835,0.0038862361339681755,1.4823319282493063e-05,0.0009857092105322763,0.6319314025019691,0.005555578451224703,0.926688897395291,0.0001631597991765377,0.0002187054091318182,0.0011647875575135044,1.740623871695089e-05,0.00021926968168293643,9.366034577700446e-05,0.993545781860277,0.9879171424141997,1.0886846664285976e-09,0.8148096019370402,0.021955247953032105,0.02564265754247981,2.92005636693337e-06,1.916767695043884e-05,2.689873726796679e-06,0.00030288956511535705,0.06899305690770312,0.999888136963927,0.998983890729965,0.16594762362949766,0.13411227243174015,0.007701800495714236,2.8199883141282752e-09,5.524590190477175e-13,1.1590630720951889e-09,0.0008641604387863351,0.03985331050925908,0.34049130938580086,0.0003272524591254671,0.006442993097836129,0.9999910638605697,0.9993737101554456,7.455127101181032e-06,3.766176891532233e-05,2.969728417069756e-05,7.977823889421801e-08,0.9581183031591795,0.6508862903735021,0.3062603855802871,0.0012041464038287267,0.9291133464318049,0.9994517856994818,0.03985277034036249,0.1120922145303133,0.13275156471902988,0.23972620246267634,0.7252723580217783,0.9999998913119441,0.4145405738748925,0.14686449542582786,0.001745568678714559,0.946311014296879,0.9871826436633387,0.0019071076938838361,0.0014199785375954867,0.00013863126054171955,0.8520006519016566,9.322838524028253e-06,6.208257721290027e-05,0.00014689940184108114,5.945821874608982e-06,0.01590071372146129,0.0002252141770112801,0.9999715950679987,5.07664408068971e-05,1.0886618351220634e-06,3.930981643116808e-05,0.09814275527515348,0.007103730036540755,4.000880875599436e-05,0.00049395926866165,0.00020876578806752107,1.169053955581402e-05,0.00804524173792263,0.0001932390576189223,0.0043350840723671465,0.000390829377772667,0.0004119528180172537,0.999874219337263,0.9999601950529567,0.9999372251328178,0.00020825328380363073,0.9994530202579716,0.9997411168266297,2.6781938951908185e-05,3.108116391377507e-06,0.9999633943326548,0.9927534262902683,0.9996575084234564,0.029423179556351774,4.759025827554075e-06,3.33728559364995e-05,8.808631403883053e-06,5.9902417621371184e-05,0.00010668356885813248,0.00031111603320373106,0.0001753138551202165,1.2644455385700323e-10,0.00017937505460349028,0.0017266241474908168,0.9999925304574908,4.142867451005034e-06,0.0003276147701646803,3.61863884579915e-07,2.1142564194678344e-05,0.011229516350635894,0.0049101083117690635,5.7752689054154705e-09,0.0006544091490465651,0.012701843345968867,0.00462624831064656,4.097185244222754e-05,0.9997497900559966,0.2845747549107034,0.985796907339951,0.00044126056422161486,0.9996367505275017,7.442060256800531e-09,0.23232136273375012,0.9999684325175605,0.9988000781166628,0.003521723658688966,0.9994829082236804,0.0002719591734368524,0.0007074497508868333,0.0017857412219883782,0.028964868395971524,0.9999029678193309,0.256668225382137,0.9908906042850002,0.9883106088783332,0.9997695181581602,0.9828555628418371,3.7779888998375967e-06,0.00020918866491031194,0.0003199891033140869,0.9986583529725168,0.001108994987183638,0.34457025721952733,1.4121034349318722e-07,0.009183702275956525,0.01112684601595369,0.0038531137724384704,0.005129266470291437,0.07318466783929796,0.5537123802016014,8.135821640649952e-05,0.019148330098481995,0.0018372284939453022,0.629748316059838,0.9998729655767353,0.42790577938483176,0.30092480748111616,0.006404924642238589,0.8943297742156585,0.04594204573208717,0.0002770941840629644,0.00011807431547570582,0.3380072989471279,4.203686619105578e-10,0.563164187272227,0.9714956443103286,0.037850115565968734,0.0012549787014390602,0.9999230488461093,0.999841700037991,0.0003524769383971923,0.9021752870930448,0.0003625673527897152,0.0004595250964584659,0.9999481099153137,0.03398751553297867,0.025895831250777025,0.0006429810521268208,3.4874367615857824e-05,0.4150583697148101,0.9995376248811685,0.061184592754218774,0.215260754068439,0.17906443371587555,7.878509285448072e-07,0.00014485030531329951,0.9996512841865168,0.9998083676952996,0.9999827640649948,0.9757121713479838,7.437083877865798e-06,0.0001822633264608547,1.4134967303612444e-05,0.004190024553003473,0.06483476170163338,0.001174122098096587,2.118698743819382e-08,2.1428459040505218e-05,0.00028769645330942325,2.143610712954178e-07,7.116578335580169e-13,1.4594763557529122e-12,0.9999580553644817,0.9999999671127997,0.8816005188067781,0.004198823972502526,0.04738199619469902,0.0063316037103450995,4.13745959100207e-05,0.7642579256085008,1.2933746653238378e-07,0.020431507661520167,0.000580701254217251,0.1684672070579185,0.999984074498501,1.2644455385700323e-10,5.1573161565578884e-05,4.640237683579068e-12,0.9999779815464503,0.023485778036531228,0.5057471679183762,0.0005173055298407232,0.00018264987716201133,0.0002380451174674983,0.0001697508926196157 -triangular,object,0.1502253151834968,0.9871912006099638,3.539768067502715e-10,0.0015221062910815493,1.832053911304809e-12,0.477110816750974,0.00017390158332411984,0.9089170285561551,0.9992788049173975,0.9660773673978356,0.0016453561614234878,3.875765520998778e-07,0.0002417925402002881,0.5839574020132925,0.9908556892422132,0.9991781903879792,0.008638792532951207,0.00018852962047340296,1.5538318028333458e-06,7.424800840969479e-05,0.10436257697756662,0.0003659257593626454,0.9911801498698646,6.248333067696783e-06,0.003981379087387399,1.7292201526102243e-05,0.00012904442123696602,0.003012059402664998,0.004136761418839532,0.9897995640453372,0.997351228673089,1.617262772376265e-10,0.9481148700156844,0.014004085158761505,0.19505606092829678,0.00013966131587099718,1.8731565114794027e-07,2.570172830158718e-07,0.00030277945053585156,0.5780470614291501,0.9995639676188007,0.997191880547691,0.7883487336424198,0.48213033591972293,0.059560648957304556,2.9152798429008376e-10,3.4541108407786804e-13,1.657975343588651e-10,0.004498401336085005,0.008971721428758881,0.7820039872320937,0.00010411385980140555,0.04021352082991758,0.99999541190845,0.9995570853560249,3.120871742269334e-05,2.189562578108237e-05,3.427462779054339e-05,9.542838716060954e-09,0.07150146622895924,0.0202185276963289,0.02693837039749921,0.13277638919121892,0.7769511618328735,0.9995833988295436,0.0009367112538448194,0.002507585673498722,0.6634381565042304,0.5961179787724645,0.9604165890480837,0.9999999749764006,0.6826198226026994,0.1974410960312657,0.005851473194950536,0.9989490490107771,0.9738233929824219,3.434305704105367e-05,5.792856017996372e-05,1.5894108062376258e-05,0.43533188209015816,9.404836201357957e-05,0.0001047529436745314,4.1332485384804334e-05,4.238934570948997e-06,0.05251964800686464,5.3106819166429495e-05,0.9999892998839279,2.371955992626928e-06,8.315100607148713e-06,0.0002641376824252242,0.43963650439931357,0.7798518643130132,6.138841041447542e-05,0.000508239127770691,0.00014004944178809542,6.5933570561660315e-06,0.20537419804711976,0.00013194189121505935,0.002580308342990823,0.0002588262362226176,0.0004190360015799295,0.999879386828893,0.9999817932534737,0.9999348619492939,0.00020735411472653435,0.9996354942927183,0.9997556116628645,9.21602776283472e-07,1.9078970248350674e-08,0.9999736326590112,0.24423441201892857,0.9997038839504169,0.11234093426312328,1.4882112933058403e-06,1.2840382441042418e-05,3.5165363553505657e-06,7.647331582821557e-05,9.102444286678334e-05,0.00017803989751778693,8.460737564693631e-05,1.8475149253318316e-11,8.09358552911774e-05,0.0020595245104667865,0.9999885836198762,7.635692630932041e-07,0.00029093999153486614,1.9246645122480423e-07,4.135319792343946e-05,0.002910967482694462,0.0012723814981312571,4.814781134250175e-11,0.0005163286602016013,0.1697309151766945,0.013219499152698346,4.8042434724302365e-05,0.8987628536752992,0.00484648545290555,0.09824724179358262,0.0001649728478368816,0.99963695223502,4.828697265505891e-08,0.8736850685650519,0.9999925701466652,0.9927958942697664,0.0007008128282926766,0.9126790303710326,0.00018893834950454543,4.9794887324126174e-05,1.3202819013124549e-05,0.0009555134958310599,0.9998169563284658,0.043933641132967126,0.9971323911517878,0.3515637849482379,0.999833641863983,0.14631475913582406,4.0907315095226307e-07,0.0019190448800611376,0.0014942951788533612,0.43510088256628976,0.011696650426330831,0.022050188277692718,7.722723161258315e-06,0.04614900440481692,0.05641046376588006,0.03883366308515771,0.026756028215089333,0.0024232901570294682,0.00799343767613072,0.00011495096182150746,0.0040048640280715,0.044922424621666505,0.24060454074122561,0.9999910390485351,0.10736737328582704,0.30348159673008984,0.804080037905829,0.988558283279537,0.5039358242652742,0.00182609307328397,0.001251871725334448,0.9777362472937257,2.539994036371255e-09,0.8279011724074586,0.992054153183114,0.22556798093255,0.0007029957435991507,0.9999807705484769,0.9227301846198304,1.2530259133142548e-05,0.022918322995995246,0.0005483567957118893,0.000466819624579598,0.9965103771531904,0.03316715705436661,0.11265208834352826,0.0007676629778159216,1.4884865730848768e-05,0.7334669973084184,0.9997526104550766,0.029228835529177655,0.040425942623689565,0.4313707607226086,1.0790430314398218e-05,5.0465769062442716e-05,0.9997544983904245,0.9998796516991446,0.9999723552218449,0.9474469628432222,3.17217284912576e-05,4.188769992767695e-05,6.574105977361484e-06,0.023195498309469115,0.0004922442857353142,0.014024428178143427,1.5982554675084278e-08,3.5415995964554254e-06,0.17110561574762917,1.0898020261698792e-08,4.3519857998630864e-13,8.457456291792306e-13,0.9992725644863951,0.9999999933772794,0.8143084444031035,0.00018397534034148027,0.0016626965282042516,0.3769924171623271,9.429487390385311e-07,0.9997457911977033,1.9266299942674413e-08,0.03093541407675373,0.0002588343137723685,0.2477743132934411,0.9999886957004385,1.9272141915745965e-11,1.959782976804892e-05,2.5118631284625974e-12,0.9998294486635387,0.006440136162527734,0.07816500942550024,0.00012727191363329262,0.0005472096839876248,0.00019283827907662485,6.0568143443100836e-05 -triangulo,rgb,0.6094780675832586,0.9997232520943719,0.005803969591043041,0.9999728938424935,0.01065402756459078,0.8432783680871012,0.27675241452013294,0.7625111502983299,0.695215075238818,0.5654876874340736,0.004541301390181903,0.005456777374186921,0.004972198320797035,0.9997687889187278,0.9999976040154392,0.9830188626727296,0.0009738092317997393,0.0010521893900502421,0.000986925542806889,0.011816153627265954,0.0010550717885818716,0.00105124781908865,0.8196669064108311,0.0011055963048326194,0.8938269192837406,0.0008489491259974709,0.8793854386285614,0.8634678751283416,0.97218341124872,0.9962854801927976,0.8415604743104621,0.00964701706610249,0.7946095835619964,0.15302006840957438,0.9999869678752319,0.9777529923454626,0.008428355011091328,0.000978397122911444,0.6394077242596597,0.6125473632058016,0.9999303942393233,0.9708465384098333,0.8226681186463429,0.998020151156738,0.704971431484475,0.0101175153894695,0.010698211986156171,0.005731483309953615,0.7244637675689761,0.055161401420115636,0.8382640853714112,0.9999372732041028,0.6614402066709332,0.7026336856734291,0.8946058074912518,0.6817571059100708,0.24281003506716034,0.19619608164998756,0.0053935353339457535,0.004713893704269042,0.004383671827255943,0.001077501613502824,0.9933510555932582,0.9449140798881032,0.9933312816375558,0.0014485327619253772,0.0006954754929812326,0.6348496276127609,0.736988598004473,0.7211318404619076,0.7414974858924186,0.9999335674757908,0.9998951584008242,0.61210899143734,0.9993213282910136,0.9619921829270339,0.0007761570195619381,0.0012216889497013593,0.001040356159036526,0.16546373424738414,0.8268082330643628,0.2028271606399097,0.004787089975563801,0.11767819170809295,0.7474138297552259,0.0035728201518351443,0.9762422173938464,0.0009056980403777799,0.34182738923143297,0.829070259639734,0.7538359439268213,0.9976995315639378,0.31330957030410034,0.19041966547972392,0.14834776615234177,0.12637967842649456,0.956998919219376,0.11629759359954053,0.21966705903586514,0.11730184998234998,0.08587669694969248,0.1355528897246941,0.5915753187168362,0.9999651349508742,0.08353717891281182,0.8465699927049175,0.56949122622147,0.0010616740037125952,0.0011257205022221252,0.5690872726558528,0.0007613858068157577,0.9999465953387107,0.9999881101526001,0.007465099586748266,0.004989521336354309,0.005006630941513473,0.2782577022907811,0.008102657158559968,0.005330485189628209,0.002710374707054676,0.009342421119500115,0.007226509334873734,0.08429516275190986,0.9998746894084453,0.007829601277198941,0.28110762868768896,0.0073998730613513645,0.29322273350830935,0.022211847582100746,0.030967486134538712,0.020849124391252697,0.09151991553192945,0.852087482721312,0.6180831028646566,0.25192742982198524,0.0010475629997635878,0.0009870445395006062,0.0010181273766446664,0.038084089842840695,0.9962121516652322,0.9999809821132561,0.9907825165663782,0.7338811026120683,0.9997793685231434,0.01677647584296607,0.009050734691498212,0.06197846906246195,0.0010720997969525632,0.0007198996063400583,0.0013357642859702535,0.9998549432862243,0.010111645511140268,0.9710159880865393,0.004554227956184488,0.8978620199687051,0.004887844588511312,0.005538937125005156,0.9451925298815983,0.8861902439525434,0.0009663094002810151,0.9765225476295446,0.0009576643756312653,0.9549521608186483,0.9134302548507144,0.9279393487434411,0.9405880166533018,0.9030621461216215,0.005267161810337657,0.004703758247408052,0.9999604816923143,0.009212657041162368,0.8376594817622258,0.01816375093027929,0.9893410889336849,0.009695652859884982,0.28592380064671397,0.9981335765434516,0.9999935796709408,0.982535516594378,0.9425852953004151,0.9224151965670043,0.9854284080324257,0.99998582013728,0.8064094990388678,0.8460231230350448,0.8421065539604639,0.9985814384090401,0.9995940706017135,0.004697748670179987,0.005347807820639386,0.004409327272769917,0.048707116004377354,0.6516862687289142,0.007926987216438329,0.03002567453322207,0.7541200046501247,0.2403625811362863,0.006604296466605974,0.810830528906171,0.682193835618855,0.9998467522335533,0.009779505191884932,0.8669101454303489,0.8717290245795539,0.007719321224003291,0.6389573487452289,0.8876814084956538,0.999918189381783,0.999996677060348,0.7804319969222838,0.023218586017497732,0.0011014962951971332,0.8861120435566185,0.005111906854096508,0.9396472652489891,0.006728006163610531,0.006532960193161425,0.9968980893383564,0.007344952023845328,0.010688490583228604,0.012804775162948638,0.9998041107493537,0.7320987008744232,0.9237915926499677,0.001081169381620335,0.0011010404877259585,0.9997219489314255,0.0011074888710352266,0.9970297861055525,0.00930508062689966,0.9999959621118172,0.010205577109089311,0.9998707885959306,0.6076027664440276,0.010009461565494615,0.007804919438302391,0.006641829174783936,0.9959029586780553,0.04314735592837318,0.013746941312345504,0.001171877081265948,0.9999753240666678,0.004461463054597102,0.005195805716152268 -triangulo,shape,0.027002875899745094,0.2598414171745693,9.14195938931975e-11,4.0141103859056305e-05,2.962573269929587e-13,0.0009245499111411197,2.9169598734285927e-08,0.17724437167910825,0.9791061628913724,0.11407246076152987,0.00033935076383399414,1.2610312954453689e-06,0.00016943893561117195,0.04197079530748411,0.1965885038175416,1.1198927296415032e-05,0.9745113321447977,0.7226286669999293,0.00023873366738176225,0.00025147650521903223,0.3633793335923996,6.646574034332592e-07,1.1089645201351601e-07,1.2742340303914105e-08,1.5575838625756994e-07,1.0109912012767766e-06,2.5148409663164084e-07,2.4329838294449706e-05,4.9792983894322894e-05,5.8843236941749965e-06,9.114726468689664e-06,2.5533846739468696e-09,0.9935273504121049,0.0005553912841723106,0.9100612669545743,0.023799395662192916,8.33120433840221e-07,5.699715418317616e-08,0.00030695626101674115,0.8390839809002565,0.999887060317623,0.9994623224611525,0.717855611747946,0.6136694443073394,0.2434194197546223,3.619832706807898e-10,3.7151222146391785e-11,1.7578641935007084e-13,7.120762642895378e-10,0.0008466446634064834,1.1265067335816661e-07,6.107736599483102e-10,0.0004837658179283506,0.9999665062726201,0.999682236702489,0.08845399460127024,8.44676194263054e-06,1.2765128849756733e-05,2.5671718422758816e-07,0.0001652467030433785,0.00011957479494217652,0.06640204127009998,8.895484174396466e-09,0.8759071094524727,1.6433807620367141e-06,2.3230784436290644e-06,5.5437969292050315e-05,0.011520343525606156,0.03131005969139481,0.7275546368832632,0.9999990126145121,0.001220478764840645,0.27415875788457306,5.900974060323941e-05,0.2029639106405003,0.7613369011279268,4.690618955203089e-07,4.9851270008075625e-06,1.0691454899378095e-06,0.00015976048240633236,2.2210466588348586e-06,5.162806566802683e-06,6.75678863020502e-05,4.888621536658907e-06,0.0011261717346965007,0.00020117557485031123,3.031265631093683e-07,3.296095505267467e-08,2.6848249797013414e-06,7.27067905666588e-06,0.01971749870854998,1.4684666523127647e-05,8.992049221612617e-06,4.3203749931358586e-06,2.720030074600875e-05,3.1526861782868426e-07,0.1868522626492773,1.8713275915249224e-05,0.005312597964505184,0.00011603424139760557,4.54271999609397e-06,0.9999688279650922,0.9999910960757608,0.999977558238452,0.00027904847510154833,1.3735673284574906e-05,0.9998893923863984,6.866485589842184e-08,4.064563954079592e-06,0.9999902916049405,0.00021945470909760567,0.9999364004793051,0.00029514315826991653,2.729007800907416e-06,3.253777206295008e-06,3.602170907633089e-05,1.0413108367090488e-05,0.00013710712153429058,0.00026552955450423574,0.00015719010576674633,9.115010649844309e-14,0.0001707805246256508,8.582127659885423e-06,0.9999893452934331,1.0411374810333271e-06,0.0003181393173228564,7.187058844462828e-07,3.531775654622651e-07,0.0004553581519910753,0.00040773034113407723,1.3331627142728457e-12,3.477084992296625e-05,1.8599722506311398e-06,0.0010977765307329764,5.6184269917145387e-05,0.9812482814340521,0.9779718915357527,0.1832063826242547,1.452711525351696e-05,7.87777680929811e-06,1.72782029051982e-05,1.0209405679866383e-05,0.999957596982775,0.9935367074060022,0.1902797573535856,0.011837414821585797,0.00019256912396499644,4.192573205847659e-06,8.784809733797479e-06,3.131151243831756e-06,0.9998440123358641,0.16934052861763685,3.846370652846745e-07,0.0006300410422959311,0.9997790859348332,0.00017982968542392723,1.2610312954453576e-06,2.525236231151883e-05,0.00021691004060651526,0.08792860706101534,0.0013251111920898578,0.01520750150156943,0.0005433970972386646,0.009994920580429438,0.0031168694861734435,2.904804926784585e-05,9.496733571787287e-08,0.000137832149389891,3.7100544133258306e-09,8.232623232820658e-08,0.5173798087858043,2.5473242117620706e-05,0.1713469431833995,3.072160031941391e-07,0.06637653322889574,2.1722247803670286e-07,0.0004374364518498515,0.025195807971185355,0.040334207301793594,0.00010780992899852184,0.0002265964962262424,0.9884482673512307,1.4372887439478332e-06,4.159471473713192e-09,1.0225032554377955e-05,7.208688710813984e-08,1.6336694164273856e-07,0.0022376592360307695,9.452987427738737e-05,3.9525257030990545e-05,1.3713718627549686e-08,9.6021685432208e-05,0.0002831119489428037,0.9006724262426627,0.018476507965928604,1.7521848232048842e-08,0.00040752542766725474,6.728016267681425e-05,1.0337845035942423e-06,0.999995718203757,5.861035291381771e-08,0.013416037006281314,0.0012665827525367743,1.0930776650292937e-08,9.684536994723094e-05,0.9998535655298387,0.9998930734748577,0.9999968110344036,0.07606627498978019,2.2175807955269795e-06,2.5897603172857743e-05,5.289669788561049e-07,6.683243184747676e-07,2.216956465726696e-05,0.00012449094595523414,8.188349770714666e-09,6.83131817131555e-05,3.792741427387231e-09,5.940359068984182e-10,1.0191292030694807e-10,3.413292627726068e-12,0.9957131477840067,0.9999993614341308,0.9882916109008554,0.0022966401880923286,0.12086785242036942,0.00197745056399958,0.0020500064556941296,0.011874024221613872,2.0286873064176232e-11,0.0010428836367795459,0.00013510867996893217,0.6269080971382065,0.9999421964795326,9.115010649844212e-14,6.276146209763968e-05,1.7291079393523988e-12,8.751456254772454e-07,0.0009907011120424123,0.00971928157845346,1.5655975129778053e-06,2.266535729938733e-09,7.34591615448147e-05,1.9341290362819295e-05 -triangulo,object,0.10610454427827498,0.08056087516154341,4.2205845425235284e-10,0.0019135463820345023,1.5807431633756464e-12,0.0007114459657195348,1.5879916653287073e-05,0.027525677822687125,0.8080287623272343,0.010036869707950319,0.00047100457405367587,8.63663118277941e-06,0.0001029719710771888,0.024052542490351016,0.9867014948561273,0.003836345003642817,0.9539251221434436,0.34236743261681185,0.0008935174382190008,0.0005835097664492485,0.1169830595221611,7.873868507834817e-06,1.836509728554897e-07,1.6668611994063207e-07,2.9230742754764797e-07,6.024344153600017e-06,1.231417061849432e-05,1.6937616725839567e-05,0.01639140722555553,5.681489624924501e-06,3.4762427857872243e-06,3.9937532818603246e-09,0.9927929370891887,0.00032894757164660414,0.9978612978493709,0.9525053011264198,5.878515028347471e-07,4.375371862370084e-08,0.00029239052648509045,0.9325798805159387,0.9999954394900378,0.9986361178247763,0.530118937907757,0.459296678715007,0.9860945831194177,3.7343711606455656e-10,9.63458808940189e-11,1.6026764496412605e-12,1.0125820373292155e-06,0.00028157826762961426,3.0840075801296075e-07,2.7867645941301345e-07,0.0001606386432924352,0.9999344131249546,0.9998367377021012,0.13686361081300596,7.714682305349094e-06,7.260512480722957e-06,1.951476759168761e-06,1.5826794363790235e-05,1.5831396966775265e-05,0.24448818870545083,0.00021496279668292538,0.16488392386122466,7.733914738269724e-07,2.2052577321846675e-05,0.0002555053160009598,0.0026155518919752257,0.0070396680778653554,0.3747194856308972,0.9999939913307095,0.06301058246860511,0.8707008327174818,3.487185607264039e-05,0.03799882143311771,0.0636464783333442,8.877253452140387e-06,7.369962052023376e-05,1.2592686293270064e-05,0.00011127827625624017,5.5340099301957894e-05,1.5357862389962213e-06,2.3633507040922946e-05,1.679863633505414e-05,0.0006691072728490541,8.490448943230553e-05,0.00020564955227137793,2.8856882985142216e-08,7.517818468847737e-06,6.639183565064426e-05,0.0063325181273940845,0.018883527054768878,7.2667972966292565e-06,8.779497389724651e-07,1.9378827802671455e-05,1.1746651830169754e-06,0.9903898031978176,5.124285525831549e-06,0.00035785391084807133,9.203833410320074e-05,6.55955528899397e-06,0.9999983864984093,0.99997452138568,0.9999991197360244,0.0001629047672342476,2.005076954803981e-05,0.9999532090595384,5.686462524407061e-07,6.14434549757447e-06,0.9999861719863492,0.00023451405839441437,0.99999858011597,0.029000281115094853,5.082914135233464e-06,3.4570814518081483e-06,8.253996092499455e-05,9.465280839830971e-06,0.00010005577249888598,0.0002460218905412296,0.00014182793668199005,5.705481257104179e-13,0.00016393837950950198,4.350113841792656e-06,0.9999995538510121,1.7024250796493128e-06,1.5500335517104694e-05,1.1895671083937036e-06,5.712182693001528e-07,6.216265806955942e-05,0.00014332036860484958,1.4656175371712674e-14,1.894458727776754e-05,2.106918501102468e-06,0.0002542538537016338,3.4466656051487e-05,0.9363547644458534,0.9838846919885503,0.18131194524082062,4.948278118110648e-06,3.7738916499472595e-06,0.00020615330170050715,0.08469095070536962,0.9990939494433013,0.9963739032055127,0.00826773781811434,0.0006004816824805023,0.0002461292060308441,3.70787575818236e-05,7.477181442152307e-05,2.079465553908279e-05,0.9998967145594826,0.012458477335319145,0.00038763907425925684,5.819472677249048e-05,0.9998701108741443,1.8739504867453722e-05,8.210151658969431e-06,1.0722652721754452e-05,9.725960845209089e-05,0.04940945154832887,0.0003527088155629219,0.004886845766003739,0.46788550765872244,0.0021937336247099116,0.001048882230860691,1.7427729277810874e-05,1.2545627984440359e-07,5.640127251744985e-05,2.0407836781756196e-09,1.2199939336836114e-05,0.13320114018918522,2.9312101955850053e-05,0.01556572715501176,0.00032422650116818323,0.02009705165318809,7.235542248409424e-05,0.4077015210902517,0.5963325993923503,0.02184450843739964,4.087274809851833e-05,8.05209896037951e-05,0.9999893281247606,1.6576694828134718e-05,1.4438877416626314e-08,1.8041832440065822e-05,8.536541793581858e-05,1.1659116178517657e-05,0.00014201669017453638,1.1275620842701416e-05,5.498706330180128e-05,3.045809916517831e-08,7.806108535787708e-05,0.010953066773021214,0.5388379023700662,0.003587436420066992,3.182841229492642e-05,0.00032350314826166417,8.192691189449094e-05,2.0076883326256663e-06,0.9999638482189461,1.4394256748980091e-05,0.0012934632126343282,0.0005430835198192158,1.0277149345932867e-06,8.131718213693565e-05,0.9998392910686479,0.9999367346782528,0.9999999529902428,0.6851035920392792,5.571996186181037e-05,2.2389747673120002e-05,5.691103870450396e-07,6.143331089633255e-07,2.93612084653779e-06,3.341767122507328e-05,6.822868199401209e-08,6.438610413805544e-05,2.725129527243842e-05,1.199017580207051e-09,2.71076389973931e-10,9.190816190035844e-12,0.9984018360739416,0.9999957837678168,0.8146744428844295,0.0024456157882899463,0.021048594721010328,0.0013847922639746739,0.001725239876977026,0.9603814354397437,1.962412648575519e-10,0.18653254504695652,9.872745295340154e-05,0.9688665539402652,0.9997979034436196,5.497007916139451e-13,2.2347897626549663e-05,4.500681606475991e-12,5.212710180076821e-07,0.00020326915769093565,0.0028542232778342464,8.97386960086473e-07,4.773125443495825e-07,9.420424885865141e-05,2.5380371181025777e-05 -vegetal,rgb,2.6780559958948426e-31,0.999999919164602,0.9999468342049486,1.8665007354381877e-08,0.9997772419538357,0.0010758690744187536,2.5297471418784286e-31,5.279220355673034e-10,7.218197264325197e-09,2.3803746440812617e-09,0.9999925307659779,0.9999920912733959,0.9999915316656867,0.9999999319163946,6.417657579314776e-10,1.5227572156360893e-43,0.6388106757841987,0.8528516366901637,0.6257957437202991,0.99707206399267,0.016349004865252093,4.143721213444541e-09,0.00044836472461511854,2.3939648730415206e-11,0.9993887462077423,0.006425631479089305,9.109149636903974e-35,0.9993453530353088,5.3053019494658106e-42,0.9999999968872164,0.0011452372041202113,0.9999753894095754,0.0012702087665086826,8.295941209759377e-11,0.0028984562326859627,5.509769299558155e-43,0.9990399803734663,3.098850118630653e-06,0.8130855503298353,0.013470089050648048,1.2818524791202493e-06,0.999999998859276,0.0022488689597637244,0.9999999954763183,2.3397118874129636e-36,0.9999976737835591,0.9999858718816532,0.9999451063809728,3.211338187961586e-36,0.0025502865484629015,0.0009595829775469326,7.44858226411272e-07,1.9253725482724965e-09,0.001513810618432079,2.965134662689713e-39,0.013455397507189635,0.9999999897768367,0.9999999914698706,0.9999926394934405,0.9999915961208634,0.9999913664907603,0.0031373131110688153,2.3025463309794677e-45,0.9999999990974979,0.9999999979008807,4.129000305448465e-12,7.484240430000042e-05,7.344111118116927e-10,6.367736546026939e-10,4.592513626088416e-09,0.0015210638199828785,2.5031207257790995e-07,3.3724458610482723e-06,2.838338233765786e-10,0.9999997495161649,0.9999999988868309,0.0008823702952147808,1.8848855870027983e-11,2.1460644870658976e-09,0.9999999918401256,9.771868628390495e-34,0.9999999872664681,2.853064325713586e-06,0.9999999911019471,1.0624544023317574e-09,3.352867593822141e-06,1.745265888635413e-42,2.658569667696282e-06,1.6409435314764935e-27,1.1861227536227105e-33,3.319174576516419e-10,3.591070235686228e-47,0.9999999876644664,0.9999999937509898,0.999999992105285,0.9999999917182586,4.35054210560971e-41,0.9999999910612375,0.9999999879521034,0.9999999900828559,0.9999999882103593,2.972874632483086e-29,0.013207097668552244,1.0112443917097367e-07,0.9999999897277626,0.0012838775889806439,4.5581184945836843e-35,5.528966511289357e-11,0.17044703711681847,0.00938869654656691,0.011549908160116529,2.7503649738328104e-07,6.553889798355174e-09,0.9999974970335287,0.9999943926385486,0.9999949260645244,1.538401790382649e-09,0.9999988075182131,0.9999905441222026,0.9989395116770635,0.9999678776146375,0.9999986418520219,0.0019994726549128015,1.9886891247044536e-06,0.9999983783773425,0.9997077559352694,0.9999987503051165,4.2865611368153255e-09,0.08218102733802882,3.1515804927118404e-07,0.9999475188651692,7.931798914522293e-10,0.0008902772822831372,3.4206973929853245e-10,1.443184704162947e-09,0.4417505435124597,0.5181945800331533,0.6826576200333555,0.018293836155104364,0.9999999970493068,0.004513400508611736,5.4087731650616e-44,0.0012643870436024763,1.3584847029030234e-05,0.9930294304530117,0.9993456969011998,0.9999669863816707,7.915997453154559e-10,0.0001320852599857694,4.1225424271535e-12,2.754895113517722e-06,0.007165926760736685,3.2804261929325436e-42,0.9999925892021122,2.524167971552168e-39,0.9999924918277152,0.99999391022183,0.9999241025682524,0.9999965584548356,0.24062531331999912,0.9995256371334098,0.28899238823380025,2.000212890310283e-42,0.9998185175205373,0.99903824526823,0.9920839661697899,0.9982278512173619,0.999993849634672,0.9999917990048894,1.3440693859086579e-07,0.022082497330512253,0.0009792060321453478,0.00043185471038510416,1.9006808050911042e-44,0.06099061903691302,1.9648752473587038e-31,1.790194133753459e-47,1.6488190252710996e-08,0.9973004854247298,0.9998850141611737,0.9998479479778234,4.812565390686562e-44,0.004598472921002294,0.0005924437189641524,0.0013118858076817512,6.653017199161401e-38,0.000867626036567669,0.9999999099964246,0.9999917115437356,0.9999931015614485,0.9999915276956846,1.1288934551559261e-10,8.03648727343258e-32,0.9995484428135086,5.086430951158834e-06,1.8259348883229357e-36,6.11879552068631e-09,0.9999976896787283,0.0012113640330019423,0.0010951884070369957,4.4133293961774645e-06,0.0035721500098365227,0.9965647048343796,2.557235792436195e-34,0.9999987465909622,0.0036977389010531083,4.119919502902888e-39,7.425684054395877e-07,8.704046980105586e-10,2.344369453325492e-33,5.013541096308772e-08,1.209550588084329e-06,0.9995480577887244,0.9999927903640587,0.9675351152939601,0.999998205425791,0.9999960942248927,9.7905904436155e-47,0.9999878665072574,0.9999584373902977,0.9999821994675125,1.0354597291349489e-05,0.0012993597201539572,0.999999999167956,0.8885416309060127,0.9169451505296449,0.999999919259348,0.8630891402394945,8.459179158423303e-47,0.9999678657121552,0.00010982759290970379,1.0144010819772754e-09,3.984549578242041e-06,0.00793584810971158,0.9999788243623164,0.9999983375771396,0.9999946440228551,0.9999999972366242,7.242696985139425e-07,0.000823716218104697,7.084125349649713e-08,0.01157025885449789,0.9999902034599696,0.9999951672335265 -vegetal,shape,0.6406870447471,0.11490783338517159,0.9999750260307362,0.9129778021555296,0.9999947927122464,0.06816723862305932,0.956608406862809,0.9222546739461133,0.01870851670730859,0.05550397442566549,0.9979203435589855,0.9999992578395721,0.9999782169639343,0.06050204312999409,0.06042187749092397,0.014125225211198746,0.00012079613768888792,0.00010909372878278792,0.9993639589741293,0.8415149235057726,4.058167074851333e-09,0.9017056688548141,0.00019465773801551108,0.9829661222194884,0.993422124556805,0.8955785810370039,0.9990043083200216,0.9999572251917962,0.0008168608634526992,0.0007318988788287751,0.0002882333166025613,0.9999998113395195,1.4195858321554028e-05,0.9900372394294349,0.00024956110492428446,0.3405299299987501,0.42194835012558224,0.9930009410853347,6.984365224444251e-05,0.0008981094320715248,0.002846983066594037,0.20388662215323136,0.0013453022955125199,0.00012144305817513875,4.656392162130013e-05,0.9999578222125688,0.9999891765679371,0.9999088780358858,0.985347626536411,0.7706749710707083,0.32845433413819464,0.988984900038704,0.8939930320163493,0.00010280126871041834,0.00020831239718472805,4.1251768925367126e-05,0.9999719427179647,0.9999588151273562,0.9999988843672708,0.622364716627386,0.0874264659228576,0.00019766212655469964,3.9244495364015954e-06,0.5117457306849773,0.002863299425872,0.7784762414121054,0.6493121572401152,0.012486020652465237,0.18822755378411427,0.39649413874446005,7.142940670532545e-06,0.017549297966819172,0.5240786812432574,0.9039761610812004,0.029587777101313967,0.5144549120102617,0.8614037170807546,0.9217891728691887,0.9987511031253344,0.998885132710239,0.10485891416180193,0.23898028898868154,0.050249328118654596,0.9997214961900713,0.6332674654484423,0.012402575526688154,0.00044374765697470904,0.9877076229399785,0.9997233013709873,0.07224682391960045,0.26349316687192464,0.042373924589214434,0.9999450509972545,0.9996618610152318,0.999930246908774,0.9999990507737211,1.627601753959948e-05,0.999943622024275,0.999068560233014,0.9659147309335584,0.9995312731955501,1.163624759471144e-05,2.5443749796974048e-05,0.00019099950455346172,0.05697393769717555,0.00036668353395214414,0.00020982921892105156,0.9683473701889742,0.9990141824933771,4.627472666280263e-05,0.0864664643114657,1.1678777921179239e-07,0.008261254841131778,2.0831274262433334e-08,0.002980713026067865,0.0084818515542566,0.9967890803386524,3.023286645772498e-07,6.735241611598974e-07,0.9999974757062159,0.9999978494498308,2.829119785834899e-09,0.8727353890295046,0.00022835963610555983,5.929897084812434e-07,0.8285005836443204,3.604651738926862e-08,0.9985377524716962,0.6455536154306746,0.37967392434935976,0.9998612637446711,0.951068022323488,0.0015557141923723536,0.9774633981387173,0.9949090854741348,2.6185032969550657e-09,0.7030683713194353,3.5779523547974834e-05,0.9476856277790082,0.006014023690809661,0.000330023892458229,1.3938321291077596e-06,2.9655443951522694e-06,0.006370489211123259,0.9955826938272286,0.8451115291155858,0.9999763382324686,0.965945159837767,0.9936692068641301,0.4951129717156928,0.00010297124886161139,0.994100603677243,0.000542071728219237,0.13400627510680435,1.3361652850501246e-06,0.9746540191169715,0.9999992578395721,0.9999482757309549,0.9998464696405777,2.382422276259287e-05,0.9988550283858304,8.858793627715723e-07,0.17621898113035891,0.9996724045390192,0.9999280094256292,0.9998401822943543,0.999292354723728,0.9968460058770272,0.42593459722392296,0.986400443422486,0.9998753981968971,0.11859332615832331,0.9443702923727614,0.0003548317604212712,0.9131699820699024,0.005781640010876246,0.027576135334611715,9.094074827438746e-05,0.9999706562581004,0.9999967281355634,0.9998593703806087,0.1172771482957341,0.00031197892885323963,6.15539345070911e-05,0.00013991338948294527,0.8118906659478062,0.9830377439189665,0.008035866302903918,0.20177027261342245,0.9999991431889745,0.9963823024234767,0.4682745582686346,0.9926204982853326,4.6794407057885195e-08,0.40760133477276606,0.2921863710662817,0.9903515857848257,1.228669512163629e-06,0.4227396533902774,0.00033857175821857486,0.09518348527155147,0.21877699358399733,0.9999218595349265,0.9996087535992311,1.2111157241543124e-07,7.383839467225271e-10,9.674438745200804e-05,9.340069965345719e-09,0.531210751405316,0.9882300747274486,0.9986233959693076,0.8795960615299806,0.9996397233864519,0.9949877355681452,0.9999919888613027,1.8926257290090018e-06,1.2436518947061944e-08,0.9615767365516831,0.9999997943456594,0.9999987399081245,0.9999587486173693,0.0009247575257252361,1.7367327477416717e-05,0.747558603813197,7.216270985259447e-05,4.2665496205705635e-08,0.002155292363685732,0.9988234093736643,1.1836492916234533e-05,0.9999576896597846,1.4864742805525688e-05,0.15042973801757079,0.4548172530614031,0.00018123242500516792,0.9999978494498308,0.9999995156979352,0.9999981163609764,0.006046284670106905,0.38491512530795374,0.13546907446237927,0.7262977543420583,0.0002043313038764345,1.3046196681726239e-05,0.0029295654196428286 -vegetal,object,0.00022880372904346077,0.998322373333266,0.9999623772090462,0.9531960817323213,0.9999994110831572,0.13061694594995213,2.0667094186631514e-05,0.9056842000721935,0.07702123020552469,0.3685951266931642,0.980248039620737,0.9998776103945397,0.9998745386601926,0.9700922491981924,0.00511995340500975,2.117944674875853e-07,1.932206385452394e-05,8.570443598827214e-05,0.6216149581187222,0.1190328493257138,1.8619294980117454e-08,0.018988511927378358,0.000158611134046362,0.24653796293002503,0.996169207203748,0.12194866911831542,0.0039467572590162325,0.9999209021719718,1.3511280281306191e-06,0.5875665858971505,0.00041010173271882616,0.9999998667174987,9.485895900017756e-06,0.6149046476376338,0.00018420133752580125,8.660432596695825e-10,0.9010344134593229,0.939008697950427,0.0024233987232148597,0.0006931391471195953,0.0008020630491883678,0.8537049876245985,0.0008840449250471993,0.07569892682098789,5.6099468817635816e-11,0.9999990423350101,0.9999995808831819,0.9998569093591073,1.570949155765124e-06,0.672677371549306,0.1878720364924938,0.5693230489200063,0.8576427993904441,2.761416179535923e-05,9.342004841619206e-06,2.1099391483056156e-05,0.9999772895259048,0.9999760285804533,0.9997871103758516,0.997495105060768,0.979463923760334,0.00020799125606011832,1.5206322748605767e-14,0.9999626790622967,0.9838690244944217,0.02252068525276331,0.1519629671014649,0.044461165711342024,0.19188594058641856,0.23103326463170173,1.4102045834160416e-05,0.11773351843164817,0.7869894607676484,0.5267429836045581,0.9958273398355417,0.9998235653097093,0.06747097799563545,0.030616654104944137,0.3221109212359868,0.9995113936094203,4.971064465880978e-06,0.36300678905838174,0.014177575185506984,0.9996834062092906,0.1748451705342707,0.008537285977670436,9.970656324671424e-08,0.983695984084398,0.69622949774265,8.815140164210689e-06,0.14258067814844363,1.4670845639467332e-09,0.9999834575355194,0.9998414755297091,0.9999784611246894,0.999985453774041,6.973706904638587e-12,0.9999861132002855,0.9992791997101971,0.9954333809169441,0.9997766088171173,3.5333913455523146e-10,2.2765862724068023e-05,0.00014426606820255067,0.07675881878194533,0.000676183792236416,7.926760705638987e-06,0.2521166859112804,0.9967911429974424,1.86456157951128e-05,0.04102700468561401,6.613485697400124e-07,0.10127883137723294,7.744251569197709e-05,0.12499616407770987,0.012171256472850287,0.913401836272376,0.0017239140277816633,0.0016320208941951076,0.9999979061406352,0.9999993190114199,0.00021366879998857061,0.6759564248022198,0.00018758819832231748,0.00012080470383632054,0.9999505282393679,2.215600059787144e-05,0.9846986194240502,0.714506105064825,0.13751285308612432,0.9999999719614915,0.638613729978725,0.001173062034019507,0.9225659522640406,0.8854120171441909,6.881693636264069e-07,0.03769324570717674,0.0021326743977605808,0.9500348063903082,0.9993897046646475,0.0003056676857974216,1.805828853126358e-14,2.2400621468600142e-06,0.005435849959276672,0.9989611145982996,0.9997434814970347,0.9976274408214505,0.10464520862666922,0.7261429622170735,0.001964573560843886,0.00020582693102068694,0.9958511902323812,1.0569193008369847e-08,0.9862010408973648,5.544396119730855e-12,0.9996729717837964,0.9998858091542104,0.9999924423549861,0.9998621632704615,0.003845197797915499,0.999220102515127,1.3878898060494137e-05,4.264465744507368e-09,0.9998244841148205,0.9999141349670964,0.9998095204594095,0.9996032171444088,0.999517539892923,0.8821324656935094,0.9488913177346248,0.9937872227016452,0.3613354150562593,0.9641474907377195,1.4589090730644595e-08,0.9670159818189832,1.0038605336345101e-08,3.4707726031205504e-09,0.0058694848590535,0.9999273252970505,0.9999978550617568,0.9999610887927967,1.333704664772141e-10,0.0005787539740577878,0.00011063985803887493,0.0004830563039071337,2.447321665274909e-07,0.8565894433724194,0.9994519206475647,0.9873376721946059,0.9999789266406538,0.9843783679602456,0.06616289242756938,0.006304629518755003,8.664614001025117e-06,0.2794868441750399,3.222108407207565e-08,0.9044124144778075,0.002387158028220924,0.24348772386758155,0.0003676436472725133,0.01314584799119534,0.4916121008515065,0.999911459137258,0.00595510041810628,2.7546118853884163e-05,2.3460500956832e-06,6.886815270114584e-10,2.2920185351497497e-06,0.39570021911397596,0.002219942427303082,0.9241355338402079,0.8927306322243536,0.9997663472861947,0.9998581542401931,0.9999883277145892,0.00018132420007969076,0.00038888735550309927,2.689098978578789e-08,0.9999994333692166,0.9999998531258452,0.9999983750972634,0.47433463898110706,4.050570128180897e-05,0.9999347224206359,0.00199194940872885,1.2808597145873915e-07,0.9189840834794349,0.9674120407329214,5.600964774686313e-12,0.9999113176997493,7.634004591533209e-05,0.010708676957999364,0.6794651128324601,0.00016055657670979953,0.9999993858101395,0.9999998501592797,0.9999996905276604,0.9982862565722789,0.05917962741385462,0.20548463870945327,0.7563167693264878,0.0002930217850168914,0.0012216451991089426,0.16703828769672424 -verde,rgb,3.6032924807688704e-67,1.0,7.219222328585944e-05,8.15532197248784e-30,3.7144463213197696e-07,0.012745791979175558,4.737445471821861e-71,5.438021064789076e-16,4.653084062403214e-14,8.2675096382942e-16,0.6502335070460413,0.07529869998435522,0.10424807216277686,1.0,1.1685335750117217e-31,1.1609277240759651e-92,8.72465030748125e-12,1.0539708613781583e-10,1.094879311960426e-11,0.5009961426553865,1.1863439397240688e-14,1.753737135958733e-29,0.001510526254772803,1.4446861915049407e-35,0.9999999998242062,9.222096776626049e-20,5.711618490821163e-73,0.9999999996214017,1.8400581388577606e-89,1.0,0.013886155941527933,0.00030152337146309443,0.007385692883543251,8.417454173726164e-22,1.942856613395605e-15,9.178442472411067e-92,0.5873254631918121,7.741805139413398e-23,0.9997616896267709,0.05983141842623151,8.416714728726457e-26,1.0,0.03504098339057954,1.0,2.0541087663528977e-80,0.42637034794879625,0.001473467997702435,6.724510145786061e-05,1.069840250947114e-79,8.439565897609979e-08,0.009291093577852494,2.4779200221113957e-26,1.8428658088330904e-15,0.0027513836761941402,2.6222297326531753e-85,0.12734153862845737,0.9999999999997189,0.9999999999993014,0.10697181968175866,0.17074544502449218,0.5546503041629999,5.426038744219662e-16,1.7466822482862456e-95,0.9999999999999998,1.0,5.880229802497785e-36,2.3657689290115318e-23,1.6973271104528288e-16,5.364090981690113e-16,2.636465059038666e-14,0.004700328166736203,1.3470368486498895e-27,5.053082702193164e-25,1.6821801630751978e-17,1.0,1.0,1.5619348743141563e-21,4.495258650784912e-35,2.7520948593095843e-30,0.9999999999984346,3.750638234816393e-71,0.9999999999993103,1.984147622320025e-18,0.9999999999910965,1.848625717854326e-15,6.169611162700676e-19,1.8946753626759205e-90,2.441268745753715e-23,1.1924827942917568e-59,6.849897024884407e-71,1.7786366345136576e-16,5.143158635071143e-98,0.9999999999999001,0.9999999999991991,0.9999999999972913,0.9999999999937932,5.254063698571664e-88,0.9999999999905163,0.9999999999995273,0.9999999999912508,0.9999999999527358,8.270542491074594e-68,0.04584867584818494,4.0196690072152055e-28,0.9999999999363463,0.019032107405616956,2.234334638671431e-78,9.588763916099949e-35,1.0181634137766751e-16,0.018759716093032508,1.7710073699450068e-18,2.506436368918469e-27,2.4019254424795994e-30,0.6507249346327207,0.5485908800771169,0.7829175645632589,6.486353510695088e-18,0.9994377654539863,0.042450322641990994,6.1455798607455e-08,0.00013839477728261158,0.9953838324852874,2.506033364678177e-07,9.470496104695972e-26,0.9125830715623088,0.999999876514324,0.9954407199732376,7.353600185543869e-17,3.032433761948657e-06,7.082899323944966e-17,0.9998722952030749,1.3701665668742098e-20,0.010590654938847364,2.7028419567858914e-17,3.587464197211473e-18,9.915603181110624e-12,6.651996280092991e-12,2.5137991896744512e-11,1.0951090046315477e-06,1.0,2.9684755039459383e-15,2.602992293996654e-92,0.0029548866205834482,5.228920631661691e-24,0.48895849501706057,0.7876310916568894,0.9999990995557949,2.8043611210503935e-31,4.524113209017289e-23,1.8479707124953958e-36,1.7126194318798842e-25,8.216622477538789e-10,3.3195333029563807e-90,0.6803623307832409,2.0520700718464865e-85,0.20162557174585685,0.18906785448384228,0.9999999999986848,0.9999999999999301,8.631674629405959e-13,0.9999999999961373,1.1089267250415137e-12,2.7395901508550295e-92,0.999999999985143,0.99999999985661,0.9999999968758027,0.9999999991830637,0.25180336700026024,0.1957580297537313,6.709958799374191e-28,5.3794330860083306e-09,0.009547345420362991,3.104493242860516e-11,4.732136097003147e-94,5.426589308381675e-08,3.116114425642075e-71,2.2907561471356642e-98,8.044263353994359e-29,0.9999999999650391,0.9999999999972133,0.9999999999913611,9.889540428679628e-94,5.8327266831984e-15,0.002057431763723014,0.019613296558176337,1.2689624921449428e-82,1.207764133508218e-20,1.0,0.18869762498887022,0.14563929115584756,0.6049982926098519,1.3795987956861467e-23,3.747122180934082e-68,0.7805083416007527,2.2928986330100527e-14,5.754805119734656e-80,6.344040821532073e-17,0.8779460034827857,0.008835817676716939,0.001126580908698981,5.275939164725576e-25,1.732699309462897e-10,0.999999994293663,6.357701585150827e-72,0.9989100009035363,0.007013092980001577,4.327095749912984e-85,1.5486832186109432e-26,1.3861948461000147e-31,8.39398236616125e-71,4.077388247480697e-19,2.7062376303247335e-23,0.9999999998718903,0.1663878044227582,0.9999999617833023,0.9729615442976898,0.36425420924386476,1.6452540400919326e-97,0.0051552073459923,5.238904868897274e-05,0.0005646995734700114,3.1642761810827783e-24,0.003039399238103717,0.9999999999999998,2.2807213221402914e-10,3.782519919566127e-10,1.0,3.1834225188401474e-10,1.3890438184076375e-97,0.00013907767687172852,2.971982916888552e-18,1.804009005885264e-24,5.42448846393046e-25,0.021036013298348758,0.0004559749575184307,0.9041713218892022,0.12460155197218335,1.0,1.576404186506076e-15,3.699195216772139e-11,6.062899339009651e-26,2.3518747489581497e-14,0.8051138169118386,0.943442491898752 -verde,shape,0.0006698735151172358,0.9992040475044692,7.371223766881032e-07,0.0035470176665404816,0.9774491159648138,0.9998123277796663,0.9996031346987485,3.483581652464209e-05,5.383854130074534e-05,0.001305345934476241,0.40593440202128356,0.0007999984395004042,0.11026310542350932,0.9966393771791563,0.00408573841598793,0.0016000951110138734,0.13332845536387009,2.9778769920861188e-05,0.9999998892589659,0.9538827355052436,0.9999502246300945,0.7319297985983994,0.999461971089442,0.0015227033476097579,0.9993622295905166,0.981328870849002,0.9910406903638511,0.9997437601056769,0.172678401451223,0.9980639766417029,0.9926711542703157,0.9466186495602739,0.000390278892967999,0.0025367970051226817,0.12629553322320358,0.0012641127525831555,5.0452229920758394e-05,2.729195422782325e-05,0.9992014040779507,0.00216733874625218,0.9974022241235667,0.9998091136263039,0.9999794671140334,0.9994724046102773,0.9999467586597173,0.9999996562074779,0.9993536177245212,0.22399325950277396,0.949069723928155,8.315484302897428e-05,0.9999999767285165,0.9937879341275087,0.00022361957106263212,4.997024101739898e-05,0.9385872072074927,0.9997779480924256,0.9990201261746448,0.9999999927737089,0.0007711646693988962,0.20123422485789857,1.2967438194831733e-06,0.997593127467663,0.0010605197919090112,0.9988325272537903,0.9979473867554713,0.0022314944019312384,0.005669245649714491,0.00031643212840586684,4.773081961016957e-06,0.0019992265501341763,4.305762693697729e-05,0.0011990650083931248,0.9989473318091496,5.145424897450282e-06,0.9982686632378245,0.9998101043008577,0.23106699170377076,0.0022251614954932925,0.23291191719950705,0.999792755947582,2.0762343903678268e-06,0.9999999650900876,2.7298080090601222e-06,0.999762989348701,6.720228708347945e-05,5.676921760160248e-07,0.9999981967599402,0.03825271465510965,8.813829993596939e-08,0.0015511948638332032,7.599321623747232e-05,8.602270419340773e-05,0.9999751622731857,0.9999898371682828,0.9999967033214178,0.9995934339851066,0.9998006439244277,0.9989184537681384,0.9989623469908913,0.999526869499706,0.9999851580123312,0.9736949820407318,7.3725106632919855e-09,0.1600052336237703,0.9993993325134481,0.9820045308149568,0.9949889851600449,0.0006176318220244896,0.9998817814493574,0.958632774725193,0.9756731570504136,0.5316106772920134,0.0004859939503047392,0.999999999971249,0.9970756838291951,0.9999972007237632,0.4743744793067899,0.999999999965707,0.7448414896531717,0.9986898860226031,0.9807905623668964,0.9999999482333484,9.74779392555311e-05,0.9998038495413298,0.9640574227716887,0.9989474405673221,0.9999999999982883,0.0019340563531115322,0.00032269129447399283,0.0016903048093334188,0.9999103126299268,0.00037105921032098597,0.9541261881082578,0.00011837863987378632,0.05971578747983931,7.858005064969601e-05,0.9999998715090902,0.9656547353039949,1.770863067895651e-06,0.9998438826362737,0.9658239427553306,0.0008842412492644959,0.0010983857902968752,0.999636881044523,0.9999999991812676,0.9999999835410096,0.9988936028354511,0.0023827375280569387,0.999602348489757,0.0015292868913882,0.9998326777939655,0.10227400318278351,0.9990984724009857,0.18224829375246063,0.1488655026846451,0.9978327936006056,0.0007999984395003985,0.9996568712308266,0.9981750019626859,0.1286116971245555,0.9970114145491539,0.9999999958313837,0.0004926479191894018,0.9999991139117574,0.9999991780556227,0.9999968951572467,0.9999819975667725,3.3010971527505326e-05,0.9999936817622602,0.9999011426635129,0.3873090116015013,0.9234490361729996,0.00045419148833384277,0.9999985927207793,0.03756487223471408,0.9281115138498091,0.004839699690835742,0.002201362675142706,0.9999973448767825,0.9999878577306465,0.9996748180968422,0.0011460487649315614,0.5196649056089768,0.9999788526821356,0.9071677259979779,0.0830843891339647,0.9998804858597375,0.9978334545518269,0.6282029975364609,0.001831419874161163,0.9988380647778711,9.473656917182871e-07,6.703533772431154e-05,0.9999965462397269,3.3766862702445366e-07,0.9902390013801129,0.20842964232633654,0.9999999999999918,0.9999933835628753,0.9997610847529671,0.9988102685581248,2.250714419441488e-07,0.9993565071862576,4.9928756797139795e-05,0.9999997234730272,0.8366725783942196,0.9999999610757158,0.9997712601450628,0.003908869260868696,6.81802581744157e-06,0.000781793374641575,5.741063697541641e-06,0.9993076433479489,1.2168105221238313e-05,0.9988988210770735,0.9999463238812747,0.9989204228942489,0.002036279631710311,0.9993727802154823,0.9873648533045025,0.9999795040662964,0.9996966494398172,0.0003756648780818959,0.9996556760781526,0.9997760713451442,0.9934418789563811,0.9974506425285539,0.9999999252024461,0.0009625087476420965,0.9999999901016942,0.001481789297974509,0.003149835908378363,0.43085485148376995,1.8318595439436035e-06,0.9807905623668964,0.7701293210648574,0.00319713726179336,0.9996755054570866,0.5103381504004251,0.002555294509288635,2.10624811150698e-05,0.826540249363741,0.9983037771235664,0.999686115305713 -verde,object,5.144363426629496e-18,0.999999933601798,0.9999996365358514,0.01189804723247064,0.9999999997450688,0.9999859122275236,9.098779426622384e-12,3.1567871322542085e-06,1.9156528172378705e-06,4.563673520076101e-07,0.0010504263155734226,0.00035970652954910243,0.0016561561454047603,0.999999462877596,0.0003153078393425497,2.783315088564517e-18,7.876701676704585e-05,9.681122561722105e-05,0.055956277539966855,0.5113247354500184,0.005644659846571542,2.98463782527855e-07,0.9999778304487852,7.6204849573457695e-06,0.999999986747099,9.07529222866747e-05,5.854240811691871e-16,0.9999996187449304,3.864177748407002e-15,0.9999999975660281,0.9042858804014386,0.99999999804513,0.9998159195064636,1.0298462910032896e-06,0.999985859164984,1.433303953211055e-14,0.6209619104533969,2.846177615216369e-10,0.9998305577265528,0.0011422193916907403,3.7102136187765876e-05,0.9999756127733339,0.999921279284327,0.9999999994943782,1.3702801403691803e-14,0.999999995734153,0.9999999999570031,0.9999999143278571,8.158859467534163e-14,6.310895001918705e-05,0.9999989447175389,0.9844024506262626,1.631829775126065e-05,0.005323403491676844,3.2373621420634766e-19,0.9999997796163348,0.9996602631612772,0.9999926180007815,0.0002763920429825526,0.0005496507186335873,0.0003664555563445987,2.0318386651779906e-06,4.760895911186041e-14,0.9999622847876392,0.9999998936743384,1.9779567938204923e-08,1.7653102953929484e-06,5.766426330153103e-07,3.8846612217383655e-06,3.421209398337438e-06,0.0001426943427199713,1.535742450949849e-05,0.0004986832335088088,3.5781137048569984e-05,0.9999994753999685,0.999940405503795,6.413596838845292e-05,1.0812984673286686e-07,2.670591052166937e-07,0.9999603612779319,6.485095600623346e-18,0.9999919981732887,8.855975200079508e-10,0.9998078581112404,0.00014026552326232248,2.9468263840595517e-10,4.243737437243486e-17,7.303253276329082e-10,3.793818508540268e-15,5.745614652357783e-17,3.3957648957530106e-06,1.7801511256761473e-20,0.9999942940235138,0.9999957576919872,0.9999851461112659,0.999734917684484,2.105707978623102e-15,0.9998302260444026,0.9999382968070916,0.9998032045904405,0.9998210486292314,7.487350221454846e-15,0.3967017723471031,0.00483891745356913,0.999938762397369,0.9989794627872797,2.0254567487608078e-18,9.100639497370656e-06,0.0020377694133260752,0.1000076349482046,1.3425964462262504e-06,9.226115746060017e-05,0.00019987077082970808,0.9999917901143021,0.9970794458350258,0.9999408858424538,0.0004910346823500344,0.9998912976479897,0.08596095582954341,0.6899112051749356,0.999999999568429,0.9994350815246446,0.00036038141491091265,0.0012332685418916251,0.9998207844560455,0.9999214648108787,0.9999981164613373,0.006432474857506134,1.771473146704125e-05,2.9899104230349823e-07,0.9999816185244332,3.9065220183588113e-07,0.9988027466663897,5.081624661657404e-06,0.0006712204562455796,0.005378416282534442,6.97695836442904e-05,0.017364811254067015,5.2411947428364186e-05,0.9999998792772419,0.9999926799871471,5.029482116764185e-16,0.00018109899809441143,1.2710587472971906e-05,0.8772254045429501,0.9648586969588208,0.99933595167148,1.3483223814927142e-08,5.93127377282168e-06,5.444401071277254e-09,1.0783504003852608e-05,4.2328046969530803e-07,1.4012669626562275e-15,0.000758162322718035,6.145978927301175e-21,0.0071100881540730205,0.0004853393367790807,0.9999999848755339,0.9999996682028303,0.0002835375811122947,0.99999768878822,0.013488929102272059,7.702356130620727e-13,0.9999817845190798,0.9999986739557649,0.9999999039452244,0.9999999921490118,0.00026636697774979967,0.2278720049070799,0.9640961529721989,3.2128642763637322e-06,0.999997797867514,1.067854167009254e-07,1.2642853624295534e-17,1.0881289034643324e-06,6.036266858065052e-14,1.115611374779167e-20,0.00011421567959339259,0.999999380349671,0.9999996518824901,0.9999997403622422,8.603217049673415e-16,0.9999996766406078,0.9999989177780441,0.9998658331603005,1.3062872687883026e-16,0.6806133893603648,0.9999999755109924,0.001679342707170712,0.00031972842280071796,0.68446941039451,3.958921927637237e-09,4.0103859639411055e-16,0.8751295674189797,1.7834197864619253e-08,3.42586030551233e-14,0.0003147941824450049,0.9998016880486195,0.9999838670260891,0.0029187693386353098,0.5494501956874334,1.0342173742799877e-08,0.9998396281059181,2.198363538636211e-15,0.999927051388825,0.1796462441625992,2.1807634816409e-18,4.5619222052808986e-05,0.00013812256370050608,5.803580266475501e-17,1.2135015135916557e-06,1.0474279344165124e-10,0.9999996916853806,0.00024789775058826734,0.9999812778078275,0.9999452574433583,0.9927156759601757,1.7436022101171373e-11,0.9999999972664202,0.9999999990872273,0.9999999999858249,0.0004787521454369812,0.00017917575268759092,0.9995793660965825,0.17131460245486446,0.07884549579599986,0.9999999840345248,0.07957393290893759,1.067482112124614e-20,0.9999999986208901,0.9951552239615185,4.897047006862894e-10,2.265627353910983e-05,0.00020455747967248496,0.9999999996983477,0.9999308204543265,0.9999997729622527,0.9999999943201858,1.2015047897581709e-06,1.229591399772733e-06,9.303039638337149e-12,0.9999944209308274,0.9999081125204248,0.9920880884218217 -verdura,rgb,1.003526739350531e-17,0.21649685933381346,0.9994180164802786,3.933743284577855e-05,0.9991844201680465,8.72252162770675e-06,1.040348932379434e-16,8.326050913566706e-09,4.1650556944636776e-08,4.0914982532203235e-08,0.9991689748980821,0.9995508435642925,0.9994908986314152,0.2469121716207641,2.154779566442316e-06,3.464525651949848e-24,0.9252788995545274,0.9561191138064226,0.9173230805635912,0.7652980290651683,0.3698049505513626,0.0005505847795668088,6.336778230753256e-06,8.944665002911778e-05,0.01708210652095894,0.7854607915104855,6.171040180019599e-20,0.020371693186686933,2.296488909275537e-23,0.9586534958619037,9.11634877742372e-06,0.9995670044289111,1.2619298539168147e-05,5.991458277962357e-08,0.0018807719705818296,8.06990803434788e-24,0.9066296120637782,0.010429665336217307,0.00201848045686011,9.689961823334164e-05,0.00036590825373883086,0.9929700072378409,1.4645310830897387e-05,0.9512431101789148,1.1690431393119534e-19,0.9997358223401279,0.9996275098459814,0.9994111454413879,1.0646523031970997e-19,0.0009497024739369314,8.473548563447518e-06,0.0002783085388363028,2.5060700587609816e-08,2.1220948732970742e-05,1.714979157355385e-21,7.426376138339815e-05,0.9974807152062921,0.9983954047296713,0.999543766411161,0.999431681735573,0.9991347095427769,0.1898693238417787,2.0578687395886733e-25,0.9963897371170594,0.9795861407488832,1.8591588224322582e-05,0.2501455089248233,1.7436438150476835e-08,1.0365598505438103e-08,2.962260188724015e-08,1.7970416201463958e-05,0.00019037975267084236,0.0006878961298033394,1.202437346890358e-08,0.11461046922178558,0.993509827396377,0.5785460309846575,5.3318207203973746e-05,0.0004448415590280621,0.9987859151655486,2.642867379728817e-19,0.9976007882283838,0.0006413851992127373,0.9991953035471567,1.2676330748935656e-08,0.0010540014723568543,1.2591731233339145e-23,0.011911679021552591,1.2072236549576e-15,2.769054851545954e-19,6.9276376717094e-09,1.049220186342513e-26,0.9958256225188182,0.9988610542565647,0.9989954710442539,0.9991684689501418,9.227956585146972e-23,0.9992059420459463,0.9974589523295113,0.9991030436143852,0.9993377740895479,2.4226421757104117e-15,0.00010356148007180934,8.870954531759129e-05,0.9994629980017551,9.380206373562941e-06,8.307155672486874e-19,0.0001322225191135309,0.9520473354051805,9.352799835829663e-05,0.7726175893784155,0.00017151055098901368,1.5345081607977117e-05,0.9996753206930559,0.9994160714315665,0.9993197208347352,1.0964221168644448e-07,0.9992246673630232,0.9995377487588974,0.9982438336705763,0.9995343324215158,0.9994723893313291,0.0005220072178209526,0.0006310079363968718,0.9996803679794278,0.2542588868892158,0.9995091477267887,1.6733934875043544e-07,0.016527062761491622,2.0792850942498055e-05,0.9479841432954139,3.285404380360513e-07,7.445367062673827e-06,1.2854255957734845e-08,1.220059747488422e-07,0.843740251531778,0.8900358373514061,0.9208115751303236,0.00400146146515974,0.9652162800545215,0.002884115192115011,9.028464878369518e-25,1.6862199221833212e-05,0.0018747693576730109,0.563978386232882,0.9175396819147,0.8743102879191789,0.00028236664614129405,0.3313629619022637,2.4690221190844008e-05,0.0007841690010340206,0.01145607149020989,2.1519874152774176e-23,0.9991487388516604,1.5376651893742713e-21,0.9994614980185648,0.9995551328776835,0.03488505924727712,0.3130784263964029,0.7981858954031785,0.006218429802201795,0.8266533059817817,4.467936695188316e-23,0.029537588435397544,0.009515208473198493,0.0023564677951496706,0.008472456832023028,0.9995174806425792,0.9994236578101134,0.0001073060290700741,0.02286236961215049,8.597502653214457e-06,0.001367269988649905,8.474527900743235e-25,0.03664023063737365,8.855574404345385e-17,6.0915363782892376e-27,1.4472423641345926e-05,0.0017647296912351434,0.028186245682020484,0.030074656724275887,1.9110769238984415e-24,0.0023418273071696897,7.91090120681441e-06,9.522312615817908e-06,9.62712663046296e-21,0.027996257014472222,0.2113652126073854,0.9994238955531322,0.9995365754155425,0.9991079347331149,2.829697623045212e-07,4.996325642591451e-18,0.9433780463802722,8.347971136747795e-05,6.820520664578297e-20,2.6162898462250703e-07,0.9996029832837432,1.1272351019530118e-05,1.945670235431335e-05,0.0009714216290641432,0.008377837828634811,0.00757983703257496,9.870386516136126e-20,0.9993090832470098,4.390537614277044e-05,2.1432080681725553e-21,0.0003299095749677897,3.021248080387833e-06,5.537520750881032e-19,1.2185958177335656e-05,0.00518631136877553,0.02163488773444342,0.9995040218628597,0.0010393677286515874,0.999548941227454,0.999630353519487,2.2967237208724532e-26,0.9996098898051626,0.999504748489997,0.9996085401334673,0.00156884307301314,1.724327732429004e-05,0.9973600970857102,0.9611362354796243,0.9678454383270935,0.21682161490444915,0.9477112149570102,2.0489056825038367e-26,0.9995341030011357,0.00025723269030261334,5.670263925007465e-06,0.0008380153942517211,7.423813206076153e-05,0.9995849360513914,0.9996802963391566,0.9996331964373072,0.9717085156144012,2.108587527065245e-05,0.002637708591403429,0.0013115953685137345,0.004807738323470271,0.9987069739689731,0.9990701864681839 -verdura,shape,0.022107581576152044,0.5732233286755408,0.6506578576313407,9.388057967235205e-06,0.9999971156102362,9.510600734435617e-05,0.00028238578986552787,0.17920453925775887,0.3231379625398737,0.003060972435536249,0.9972352940408538,0.9999998249845086,0.9998919711047956,0.002371456197658171,0.14744703962625244,0.9931210459730884,0.00048822208279469733,0.00032498191241725027,0.9999429421302315,0.7981142939877055,0.016937116528723553,8.155373829550719e-05,0.00014596617906450582,0.006059202882915358,2.7569157589388892e-05,1.7860504300778832e-05,1.5599565534425656e-05,2.0546244313983652e-05,0.017208978033110743,0.005407488101741119,1.648015056261026e-05,0.9999415682549667,6.15812299072098e-05,2.441968336153123e-06,0.00021746149577477525,0.0017949039275084353,3.5710401956689095e-06,0.00098800860908702,1.6449292023688834e-06,0.0003315397545526316,0.0001980783020196867,0.00030284492313483537,0.0001536896967083256,3.319302322835834e-05,7.90155694991361e-06,0.9999383898269727,0.9999904891766801,0.9974792109288607,3.736165646024013e-05,8.709197946222332e-07,0.0002087239742490847,1.4369512914144275e-05,0.0003716833106686004,5.7768026732487385e-05,0.00015985032109686907,9.485086179034684e-06,0.9999682615608426,0.9999462292726731,0.999957830313952,0.49288525380274406,0.05091195994143371,0.9885197948398978,0.006807895205994172,0.019917612908429003,0.08025102520557813,3.706320908760633e-06,0.00032533820619964866,0.00024014612223881299,0.0001774124868412983,0.016920966597580567,8.042614763399722e-05,0.12880255812583372,0.20531486279059677,2.0497085036770815e-05,0.7700008389153445,0.09396670534351118,8.514879813382194e-05,1.6632719650266956e-06,1.9673628135770065e-05,0.9992603968877625,4.033549016039514e-06,0.9682606942982785,1.2719292281258591e-05,0.985847320127597,3.888025945615056e-05,1.4289715622913518e-06,0.1854491651051774,0.0006033459172261403,0.10952900918874896,0.00045038591723568604,1.1697763967821362e-05,0.02243928352090956,0.9999863288128011,0.999993349749206,0.9999858186025132,0.9999993328400772,3.865750284782617e-06,0.9999761604591141,0.9992221388311472,0.9202111704084984,0.9967578418041588,5.2322207467865024e-06,8.069591262682217e-06,3.480665192674603e-05,0.3274156020349428,0.00019036316919531556,0.0003002456504924866,0.00025168446769600623,4.8027182462735025e-05,6.031416052018012e-07,1.1914350364895435e-06,6.770967257922033e-06,0.31323629964366484,0.9979359739054511,0.967930908792084,0.45292822445188574,4.330047679402384e-07,0.9997987691041854,0.0014324288046048596,0.9999954399184896,0.9999998981634454,0.9998298520357427,9.73747173273927e-06,0.0002571756033461075,0.99978164603909,0.9999771902568162,0.9997566069586924,1.3760644967349777e-05,1.6963257443191071e-06,2.4825514900711204e-06,0.9029232608747917,3.1260331534354263e-06,8.079575953897592e-05,0.0001518372100939027,3.7574681491704095e-06,6.834914657278782e-05,0.995660931225593,0.0007031729842112469,4.786667802212622e-06,0.10947981880426493,0.00010583411413152731,1.4563372456614115e-09,8.89952675358577e-05,8.729437880184609e-05,0.9996252996933229,0.6383443452617173,0.9994597974137085,5.358664245369614e-06,5.314264837226683e-07,2.084585784687236e-05,2.3672700088326513e-05,0.5098208971168061,0.08075875723924782,0.2864809579749669,3.7363330956852724e-05,0.9962120256595982,0.9999998249845086,0.00010044452674218754,1.2435994493909318e-06,0.568177456779463,1.7718248273542047e-08,0.7741192613804064,0.2574507815312938,4.6325226014319533e-07,1.8038645289996773e-06,2.402756592177946e-06,4.528043111745294e-05,0.9906428359006917,0.015260049914053624,0.0006549090658092016,0.9706515027387355,0.00036697552189584226,0.08681461447348324,0.15630257551203808,0.04015320092849556,9.968220567583457e-05,0.03879110087349076,0.0102958828267401,1.415280757221144e-06,4.221900088196545e-06,4.121013132070673e-06,0.00657508901198578,0.0002456241647910451,0.0003964433360335293,0.0002993451262641039,3.379971869271387e-05,5.483736362327944e-05,0.7530259740343711,0.8910123307000188,0.9999996553918531,0.0014910303988841828,2.9012955638434315e-06,0.0015614814578599186,1.1059525844581767e-06,0.003001570212176404,0.00021742819617121282,8.49486694425954e-06,0.0955627389810692,9.981954282017364e-06,0.00041103715981079817,5.838245590006849e-05,0.0009867764398250145,3.325591944436588e-06,0.0005945218171087612,0.08182538172594363,1.263170725018378e-06,0.00020483056118120776,7.894512194356959e-05,0.007376334082902041,0.00029710429422176454,1.0700141558617649e-06,0.0036209412677426635,3.2398502179787028e-06,0.9894030388702294,3.58416135529971e-05,0.8901803586699363,0.8889501195276229,0.6678970117337018,0.9999532846891079,0.9999561555164583,0.999999184754859,0.0008247984342364816,9.918922602576889e-05,0.18094698263441503,0.9952330335891536,0.02392741306842845,0.09746336096234078,0.9999010209072894,0.8468898174371003,0.9999261717439958,4.449121936003398e-06,5.793233816634442e-07,0.1071938278831999,0.00034210979327470694,0.9999998981634454,0.9999826689789728,0.9984927394425517,0.13881416390127066,0.00021606645419114783,0.0004615726581445091,0.0003987742627107312,0.00037011609277673175,0.09878163703524152,0.7349328531999605 -verdura,object,0.0001404132832070354,0.6896229020701572,0.8686828861395216,4.012918230787209e-05,0.9999959148781524,9.631968032484348e-05,1.5482281377826402e-06,0.03133786315845135,0.0457767119307679,0.0018248426220900168,0.9984180828164013,0.9999995880587991,0.9999632711079356,0.004754661452356712,0.025927041048471548,0.004613952087320329,0.023584413646503422,0.03820147039538887,0.9999262168700854,0.7738536095770485,0.17667542392407934,9.467686584529173e-05,7.62421724263836e-05,0.003945526291249842,2.866179098949925e-05,0.000377060694172697,6.830072289872687e-08,4.1777831325200204e-05,1.6370563175468146e-06,0.07392492614833035,1.819461108368486e-05,0.9999464410741621,5.99735180391225e-05,2.691253114280311e-06,0.00018855919998751985,7.135999440736799e-08,0.00020742976087909464,0.006921298250139968,7.955604000521633e-06,0.00022942951940683407,0.00022936205382809407,0.003518450890767367,0.00013322871573282483,0.0011755527398798595,3.000268609874197e-08,0.9999775206529631,0.9999918916228394,0.9973240792430764,2.6690114745834145e-08,7.936469728897182e-06,8.827818817895777e-05,3.063845238162149e-05,0.0001070364091209638,2.5878975921753653e-05,5.552542798444741e-06,8.875873947573973e-06,0.9999592725011058,0.9999648318912043,0.9999511493725421,0.9855324562764994,0.8356366161943638,0.9825077280183773,3.734359970835607e-08,0.7488990065904675,0.31839446700910445,9.035004536563803e-06,0.0012240603725745666,8.111264148046291e-05,6.357476126564721e-05,0.003328346480341129,7.665242249939988e-05,0.062116046388898324,0.25346234419911057,8.622326610007951e-06,0.827248739667445,0.8301441083885992,0.0006973143351451449,7.3028899071122335e-06,1.6899909633359097e-05,0.9995379650106309,3.48941026792183e-08,0.99180818908897,0.000127696809413513,0.9935733096027263,1.554493971861924e-05,3.970321285624326e-05,1.539105675621778e-05,0.006829767464861919,0.004252818361424696,2.340561097896377e-06,4.575970409751203e-06,1.8254712456108677e-07,0.9999789297442866,0.9999935773214469,0.999988202673502,0.9999969201603535,3.2659058867691914e-09,0.9999850784667932,0.9993535295833709,0.9861576955200297,0.9984798479573702,2.47589790813193e-07,1.7168860315553307e-05,6.810909198710123e-05,0.7493141592299167,0.0001660442296742576,4.052376532342806e-05,0.000458229068963945,0.0077295953765605255,1.907660171018886e-06,9.225773064394358e-05,2.518765778565288e-05,0.1008952298949256,0.9996493884766051,0.995644976636819,0.6427465540554771,9.527815963371392e-07,0.9998634988203677,0.2553672942364625,0.9999916077795284,0.999999681505803,0.9999263553709798,2.410392846072114e-05,0.0002702066004809199,0.9998222411544188,0.9999987257284539,0.9997794702992303,2.0392803138024544e-05,3.1081629348057544e-05,8.756314257377547e-06,0.9988140195014148,6.838214000191696e-06,4.921271612196741e-05,8.406208296242818e-05,4.234866894808509e-06,0.025741355548991707,0.9968337303941585,0.0999770501450061,4.1862746105687764e-05,0.495319281185041,0.00014089693567562013,5.31918091526544e-13,9.724251505900447e-05,0.0014032717182485789,0.99997290045727,0.9953909486957989,0.9994227246678039,8.66209549138292e-06,2.2369702937288332e-05,2.765298000383346e-05,0.00010839852793578019,0.7980846199191711,1.0504584855787237e-05,0.9592838589223218,1.0751699021657903e-07,0.9998698288040575,0.9999995861132692,0.0004216764290929682,1.0646271007349521e-05,0.9522166904546049,1.5424671884539362e-07,0.9721243670973956,8.035904988455414e-06,5.954606140967985e-06,1.0661769058543879e-05,8.759332576506321e-06,8.185255691598375e-05,0.99957512592127,0.3625692875117943,0.0015847498587101766,0.9718608528734047,0.00019434260895442952,0.2222594976896446,4.970510993408703e-06,0.1012523176667838,5.126462539738142e-07,3.395770130623183e-07,0.007441802477681769,3.533057434094657e-06,3.6533377023114725e-05,2.9970098953492836e-05,8.040431775218295e-08,0.00027832394807694353,0.000274906809954154,0.00022488827975163976,2.046960274098541e-08,0.0002698734741099122,0.9550491328371513,0.9969793648289763,0.9999994190585804,0.07940770830712239,3.918499803767464e-06,9.50974529399272e-06,0.00033405528360170574,0.005498331266368314,1.477611015237946e-07,8.479429166315832e-06,0.7100749331880705,1.0627129453319062e-05,0.0003781770666893367,0.0001558101958024301,0.009108715035329706,1.4737355867885503e-05,8.006419292916139e-07,0.6371209060935401,2.1854080803765324e-06,1.1240831923592954e-05,0.00014515662714156838,0.010036208044667901,1.9637159448306625e-06,5.866126991086224e-06,0.02035582750731874,1.277502943661965e-05,0.9994774632793705,0.00012736733248021898,0.9595206773233813,0.9876867503305305,3.6125702950746463e-06,0.9999767066464039,0.9999597881877925,0.9999989118216588,0.02941200903019281,0.00012694615696674121,0.8853758797777277,0.9993349434321744,0.36701205929821024,0.06446733013134691,0.9999688137862119,1.517154403969608e-05,0.9999490876667853,6.237889087590584e-06,2.893255847965254e-06,0.13436365406342374,0.00026632397405530213,0.9999996873837045,0.9999907754999002,0.9991915093170924,0.6050102836188778,0.0002774084309276123,0.0013106746106351162,0.0044282920888447245,0.00035491002358372227,0.18274916237767616,0.9563967868814395 -zanahoria,rgb,9.490762296637025e-20,6.840110053693677e-15,0.03364269861672314,1.3179320665908595e-41,0.00010152595736594889,0.0004524402259526645,2.986738784231977e-20,7.444599506213756e-06,5.042876724771414e-05,0.00010717753743644782,0.9877543838196838,0.6514857804421152,0.8226744896463695,1.7469697632443087e-15,1.9878824719335113e-46,6.74375029325589e-33,0.9924048808221207,0.9933536039525331,0.9939511612268342,0.9996674301428704,0.9954327112690832,0.031881204667999964,0.0005411115639688157,0.00013253938978450866,0.0014736730981581517,0.044529968943319335,2.7720303057578713e-23,0.0033812712333612343,3.835683800754465e-31,1.9793375064903112e-12,0.0004763643952763033,0.003090065770937207,0.0011113439385481822,0.0009498772065730638,1.1451558191538198e-37,2.655951510859845e-32,0.9997668239512417,0.7678203973903499,0.05513253232884299,0.02026738382670963,1.409197665823709e-38,4.477698199857895e-09,0.0008193729674287797,3.515127508441237e-14,2.2531943464562584e-25,0.09051636197035369,0.0034571863035811716,0.03517292400018516,4.01297278832732e-25,0.9363193463317436,0.00048253818214847666,6.06199017572241e-39,4.0165135051618135e-05,0.004055064010899784,2.502587999802501e-28,0.009601301530107168,0.33461336023276583,0.39327870279869886,0.7183002442926558,0.9110202697782154,0.9880526019286351,0.9927691740633409,7.511722914044694e-35,2.8773551995697387e-08,9.43400278056282e-12,0.0002099440472814729,0.04679581581312032,3.3702560564416625e-05,1.0998796022820736e-05,3.126424141746023e-05,0.0025014088477899516,2.794053390097519e-39,1.3701488853739132e-37,2.6868390558672606e-05,2.1542781423223415e-12,1.8030419558772152e-08,0.03228418069671038,0.00033157697441167134,0.016439422861296474,0.4491338003653967,3.1988466752219576e-22,0.49407103228044114,0.9404358577156647,0.5761068455200558,1.2197059520323952e-05,0.9482274795363269,1.09527239112024e-31,0.6773214957663376,4.631856161590935e-16,3.8610605363907875e-22,6.733156840422892e-06,8.249861984983291e-37,0.2283009477227023,0.30032846984298966,0.4720031877692793,0.531069209799759,3.5198764784781095e-30,0.5798806128492153,0.4339576784500663,0.6238375484916581,0.7201186503439508,2.081607455874232e-18,0.024889676158916907,1.3774553589620515e-40,0.6480924038634388,0.00044569267712525515,3.9332441728337075e-24,0.00026744599671194296,0.03927901062437052,0.028232351030454676,0.3418934556121803,1.4360846150147827e-39,3.2096216692803583e-43,0.5523033465436348,0.9561121348852487,0.9806877353401547,0.0010472587798223652,0.9937686350754176,0.6101371371522816,0.17440961167504831,0.002635738581447525,0.9798198329625649,0.854984124671806,1.574078952613613e-37,0.7145709038113883,0.8511045629178193,0.9746059832291567,0.001473700383910122,0.9955269498921614,0.4686825122920358,0.9993619298036015,0.007935562411189818,0.00035875885709021156,2.7747396185588758e-05,0.001313771142045312,0.9971069215684711,0.9950600171752106,0.9952195607886982,0.9825283247459575,1.222196124195887e-12,5.845556538775485e-37,3.0246606014781484e-33,0.00261504163935603,6.284746069589919e-36,0.9994413911835021,0.9997546791113093,0.9961658336656385,0.007670810507793516,0.030924429056050577,0.0001076427679979409,3.4952081462228135e-37,0.9962912024578627,1.99091284560415e-31,0.9889069525054811,2.129379768706693e-28,0.8967829790613733,0.7567935501545637,0.00016087293614627218,0.0012625118731170058,0.995320530883226,1.1124832481372444e-05,0.9948398629701288,4.8306576383353416e-32,0.0007500207803922799,0.0004150695730189787,0.00020369016011066702,0.001060493520589445,0.8517242604425824,0.9210131972077823,2.717323675062895e-40,0.9977448791583823,0.0004910002387029192,0.9782587896859906,7.359174924109475e-34,0.9983194712612066,2.3567928390295068e-20,3.868691533811718e-37,9.350198923344457e-44,4.341740605619741e-06,0.00019217538397649412,0.0005207674933065369,1.770885791077333e-33,2.4237681333106163e-37,0.0007351986897958582,0.0004533717092778606,7.493204752843668e-27,1.9190107246175823e-31,6.055555255876971e-14,0.9195555320567989,0.7703454982119691,0.9895444130768719,0.0074242900301387605,2.8499634166516266e-20,0.9997719944210343,0.7707645255019632,2.4335151955436366e-25,0.0029352512837071496,0.8778639447305747,0.0008428908879184352,0.004667687936221602,6.451690934772649e-37,0.9953769653813314,0.0028739153174258997,7.833197783044932e-23,0.9916390319576786,0.010723414411441765,3.478509729971094e-28,1.501937405679806e-38,7.658793044687705e-46,7.982570393791948e-22,0.3414043333692335,0.7393415252666421,0.0018636731285552647,0.8393518907412315,0.00018900775689503833,0.9524638784319501,0.6135805967709664,2.424004813295767e-36,0.056982633335455946,0.0007933150699557845,0.0008018518124539664,3.255477759039089e-36,0.0026970464794159057,7.990401758959015e-08,0.9939806969651117,0.9932612254161414,7.002887555462214e-15,0.9965029320744923,2.0737041551731233e-36,0.002703815789032246,1.0446416607446529e-40,0.11593421403418601,3.266291534129825e-37,0.018416719402239053,0.0029994010216243183,0.706209820482184,0.39112909771962423,9.697090102289372e-13,0.44273332089681966,0.9881077003171613,0.34024400434530705,3.567035284526975e-36,0.9964482365679104,0.9939089327882998 -zanahoria,shape,1.739548720792155e-06,4.099506508175689e-06,0.006455196495054592,2.620226585876037e-05,0.9313430757176206,5.660381437050277e-06,8.555427806132975e-06,4.827620697714961e-06,1.6120806327509778e-06,5.05456926938527e-07,0.00029520403518956906,0.026764033291343137,0.0027008643282283337,8.29229188132372e-05,0.00023494316655484865,5.619888492434283e-05,0.9999739894781616,0.9999633366716096,0.9999821186705619,0.9999469412714362,0.9999854836729167,3.4114250752639538e-06,0.00105382129493125,5.051899503688293e-06,4.620956134891594e-06,4.04434499953658e-06,2.7608436335266537e-05,1.8996900878067455e-06,3.3593833456856246e-05,5.48203116254626e-06,1.259226092671578e-05,0.14797108822278676,0.24628498658541073,3.67722700636777e-07,0.4639239637065673,0.1879811532404707,0.000594981733088177,9.072245295605873e-06,0.9711674492407382,0.0004957351139174327,3.1977350875804305e-05,8.113117456498903e-05,8.637570770418284e-05,8.814528414217092e-05,0.00021253166567942458,0.013523046813945925,0.5997680486058337,0.07197425987350914,2.3572719766333405e-05,2.510718122743991e-07,4.383324683690909e-05,0.00014067251179189933,3.1255183736671976e-07,5.565624790544831e-05,6.978823817669031e-05,0.03331765450241519,0.009260701459568331,0.004534421414245757,0.0316227916753488,0.00018780480926550692,1.9571876554093293e-05,0.9999018754865906,0.18674725749661614,3.6861758704135106e-05,2.2738968982215014e-05,4.811143925196352e-07,1.1991749573015132e-06,3.8329532868440065e-07,2.0334958030230836e-06,4.3945440438631094e-06,0.0001868482558142473,2.1983867204305625e-05,0.00019513175264878455,4.385835087368153e-06,7.797843234756608e-07,3.422861420798265e-05,6.065926108761709e-06,7.74014347883304e-07,2.0147385368565773e-06,0.0014129896295230968,1.009491862383813e-05,0.014920744558505221,9.02869858055662e-07,0.0059757443389960715,6.387636716061652e-06,7.76584254816291e-06,6.56785674158965e-05,7.3323644018318425e-06,0.00024693490993341885,3.084429286798162e-06,2.1263219792808555e-06,3.050134938592594e-05,0.1733294750931393,0.09573786224408636,0.2822755673010506,0.008419476778621192,0.00011508549527892212,0.06756352290994531,6.217962438837029e-05,0.0028075889477883814,0.0002472680384199321,0.12071021442402147,0.46230019704834047,0.02465580154341988,0.0011444413349849445,5.069642427897388e-06,8.32089994921411e-05,5.501951142622697e-06,3.5499347863267534e-06,0.009498848872048313,4.101283359580581e-07,0.19475052241530677,6.005139652421638e-05,0.285672872466993,9.629780991484899e-05,0.007096332290948488,3.511858773278776e-07,0.008766404505219415,0.0011656044516646987,0.06064099810823532,0.8347334831447081,0.0708829515113994,7.044165385830916e-07,5.3480557590181034e-05,0.4015423011979337,1.2003404006618467e-05,0.02429054887995595,6.249072991516919e-07,4.56528026039867e-07,1.3589626921823297e-07,7.201532913040943e-05,7.953524290872225e-07,6.609371949481908e-06,1.4000821500801249e-06,2.535727155151932e-07,0.9999369832467215,0.9999166997181476,0.9999234929977938,3.807048224339506e-07,8.988960471266532e-06,0.00564397613476268,0.04121495125193331,2.697627917411583e-05,5.081662952970738e-07,0.0007367783732212246,1.8135234480125352e-07,0.09052405341488795,7.558764189909491e-07,3.0142379482803805e-06,4.4017440116940546e-07,3.4855988763280866e-06,4.839379956056181e-05,6.90059454360925e-05,4.746233552184164e-05,2.6661899309745534e-06,0.00016711682762570926,0.026764033291342953,1.4339823494023739e-06,2.9588068812274853e-06,0.9999805725126337,1.0725484987435211e-06,0.9999791225782565,0.947265733966459,1.7579237699310828e-07,6.365374852508597e-07,9.499509109355008e-07,6.112205521077629e-06,0.0001971400778395461,2.0150696215735106e-05,4.005081157332717e-06,0.001401604107888694,8.191541462661076e-06,2.3851572155884332e-05,6.371192836135529e-05,0.00011071419682789202,1.7593652157040362e-06,3.452248318830531e-06,1.9864807232496503e-06,8.031807579789933e-07,4.845018570137626e-07,1.2149283732592462e-06,0.588317117508616,0.004113980119381288,0.000675782681472379,8.44451585964777e-06,2.2570881445548012e-06,2.492363077959689e-06,2.950115333988433e-06,7.104917106829364e-05,0.00921756077565883,4.714049763424399e-05,6.613114594214672e-06,0.00017814207261143453,0.5212140064914741,3.820085034070543e-05,3.338145430687957e-06,2.8615799471416063e-07,0.0608819438632785,1.6229934494495986e-05,0.00043782791353700197,1.8976638564864796e-06,1.72316387018511e-05,3.526858923066913e-07,1.097248993866796e-05,0.0006309500961019008,0.49292856729539325,1.0999899988565063e-05,0.5606959499802935,0.0017904321039123945,2.138777115108993e-05,3.524362174930968e-07,3.6366589115654495e-06,1.7605378020641346e-06,7.956030996204372e-05,5.500307012075406e-07,0.07041736311660339,0.10281570281393909,0.00046099373824354527,0.03727543949943452,0.7731829802712561,0.911592341231435,2.9452798774704358e-05,0.00015377706435873697,4.5758967514306725e-06,0.9999845721364166,0.9999743087118519,3.8789077874898036e-05,0.9999377744642319,2.154651209276284e-05,0.22159460860827063,0.1189274496200184,1.2221583120807954e-05,0.00015745754061210324,0.000188620453244762,0.834733483144708,0.0021659103533536467,0.014749275917287306,1.605221300357622e-05,6.9257445942106395e-06,5.139900062870796e-06,4.9936116989120756e-06,0.003705664007540139,0.36080492412796544,0.00023040297589108492 -zanahoria,object,1.4637664964404111e-05,4.514473644941565e-06,0.06304438860146364,0.013749590196710258,0.9832036278617434,1.4123326232675283e-08,2.611576449471593e-06,7.424549925825681e-07,5.437898082456466e-07,1.1170385525352977e-07,0.1302975161108121,0.9538615343129623,0.5733258949742162,6.592473315757645e-05,0.8750558156846434,5.430620944449203e-05,0.9999803704821317,0.9999650993259247,0.9999851381137571,0.999391851300123,0.9999827899109607,1.5964956827622696e-05,1.737980943191203e-06,2.7150266486969938e-05,1.6507276295045268e-08,0.00012114629509043697,1.4453356119800625e-06,1.3543364498310245e-08,8.133020716532719e-06,3.4562673451187704e-06,6.59011790490975e-08,0.5983453970436163,0.0038311636857147817,3.103717552541587e-08,0.9890246060547181,0.036427202869852904,0.0004772300388875429,0.00022302286266768197,0.18246293661312982,0.00033167868397902166,0.6927765779552629,0.0005905894876725095,3.7623812892085803e-07,4.5066363793301885e-05,0.00014090555489437476,0.03269317417452037,0.7989189901876654,0.2565759389731721,2.2333588033500256e-06,5.9078827857731334e-08,2.100841313465946e-08,0.012910374241923374,1.5130169703545852e-08,1.1596126749518552e-05,0.00032629399738407834,0.0005323875957414874,0.11204509296332482,0.024955622781374386,0.9537439365827124,0.023979404226105873,0.0023537073592321996,0.9998890336105771,0.01875137598069672,0.0004269655952795269,1.3640739022836985e-05,4.06002924931245e-06,8.968669932456459e-05,4.43087609828768e-08,8.203858118250619e-08,8.056150761959503e-07,0.00019151079528411324,0.2679106011296176,0.8816024982386703,5.058096598347046e-08,7.151323870154261e-07,0.0004850027987267223,0.00013314708072281511,1.4099594565388866e-05,1.5826467275150486e-05,0.001990127486820711,4.167176217209007e-06,0.02944824529449043,6.469839397050692e-06,0.12411051116083367,8.042324781733228e-08,6.609416580402168e-05,1.8708735657843312e-05,0.000166004658516877,0.00017074984913345665,3.5152539094070163e-06,6.860362849284273e-08,2.263745850646431e-05,0.2939967211816609,0.20644888863403968,0.6033929005339498,0.17688577645507716,3.09489214686974e-05,0.28400111883621737,0.00016227488159824613,0.03236483375901022,0.0018023963689984275,0.6976754417278632,0.056807293279093465,0.9988551440503504,0.005576137021165433,4.444395513833717e-08,0.0019026484384340955,2.508003261215994e-05,0.00013748497466838634,0.0021674011915356513,3.446263028106837e-05,0.9996051623730728,0.3549860219323964,0.9003309691130219,0.004296711280112167,0.061912962612374105,4.817014111008224e-09,0.1209719719599522,0.16772617640005705,0.5791856443494393,0.9356338817040849,0.3485890100119473,6.715668593917026e-08,0.6347466301937146,0.8100280191499984,8.846591204910604e-06,0.1972947234337909,6.651749661482986e-09,2.4996851961415223e-07,8.407349207324261e-08,5.407128764139722e-05,5.5332903311616316e-08,2.7806623395382166e-08,3.089578131258024e-08,6.4650233804459205e-09,0.9999611103372713,0.9999505964838058,0.9999268936305636,1.1063341248741554e-07,8.067916946590521e-06,0.26407275820383086,0.0054496449126200655,8.937460980961285e-06,0.033941529210657684,0.005608552809094148,1.3590666197619576e-06,0.25872598380068357,1.213835189687415e-05,6.819644217989708e-05,7.71296645293934e-06,0.18807370154013542,0.0005057104824203802,2.8478988627863982e-05,0.007256769441340646,2.46434982257323e-05,0.02656177052729785,0.9472595647003078,7.822317339362578e-09,7.642851528306816e-08,0.9999791410398846,1.1238509792093265e-08,0.9999813096376274,0.6583703437458158,5.811248000706195e-09,6.759214630849935e-09,3.3379563325096336e-09,9.278250170207741e-09,0.032739179536258864,0.0003552355030273463,0.0017258281594356632,0.018924545787058943,1.7494709475351676e-08,7.434510650996283e-05,1.4811698286032949e-05,0.00035003420687683244,2.3633099348480787e-06,6.35272908317365e-06,0.0591747735937247,6.8574612152476944e-09,4.129240267850243e-09,8.936547797118395e-09,0.1497434567623473,0.1714645821321227,4.620357559359158e-07,6.57280841703485e-08,7.297207464778142e-07,0.0014227298677005394,9.52010839639831e-07,0.005167060320523524,0.8627656889026283,0.00010398951218500037,2.0749347700662824e-06,3.4039542036296134e-05,0.5943091027880694,5.404744559951402e-05,1.0367067040657591e-06,1.0320608153208493e-08,0.6483154232934814,1.4703127042592236e-08,0.00012699487776605877,0.0020340000904790654,5.2676751342562834e-05,7.2101107162175545e-09,8.263067488368611e-07,0.014561198841163208,0.014311717769292945,8.107194516989314e-05,0.9998359338537356,0.9722549888979974,6.340918229419585e-06,9.359849207991012e-08,0.00014853139678720572,7.437321773721166e-09,0.021136466687523104,3.2251474184711753e-09,0.3877659049400845,0.5844517544224699,5.6000681619135286e-05,0.1628897640694508,0.9256639707115015,0.9612960756226162,0.42950805009927484,0.00013396105679072868,0.00020593087081024295,0.9999908855996036,0.9999886665925638,1.179196703616415e-05,0.999965957865166,3.5188162064285e-05,0.6623134536966832,0.9867711617723726,1.123706206995657e-05,0.8824568823630513,0.00012739508077100445,0.9309762330261154,0.027001027444541654,0.043801088892172595,8.996717801152174e-06,1.6238183845924492e-06,7.557064120415622e-06,0.00016872979384720353,0.5753402804998585,0.275516625878233,0.003679197969272621 diff --git a/testResults/testing_spanish/NoOfDataPoints/6000/results.txt b/testResults/testing_spanish/NoOfDataPoints/6000/results.txt deleted file mode 100644 index 087a183..0000000 --- a/testResults/testing_spanish/NoOfDataPoints/6000/results.txt +++ /dev/null @@ -1,2 +0,0 @@ -Test Instances :: arch/arch_3 banana/banana_3 cabbage/cabbage_4 carrot/carrot_4 corn/corn_4 cube/cube_2 cuboid/cuboid_4 cucumber/cucumber_3 cylinder/cylinder_2 eggplant/eggplant_2 lemon/lemon_2 lime/lime_3 orange/orange_1 plum/plum_3 potato/potato_1 semicylinder/semicylinder_3 tomato/tomato_1 triangle/triangle_3 -Tokens :: zanahoria muy redonda uva bloque otro forma roja la rojo textura suave maiz cambur cuadrado veo cuadrada amarilla piel maíz queso cubo lado de marrón amarillo delgada delgado anaranjado más oscuro larga mandarina lisa largo el prisma en ser pieza madurar pepino es tubo raíz fruta manchas abierta fruto maduro hojas tiene banana sandía varias que púrpura rampa pálido o palida una cóncavo algo brillante col con claro alargada verdura color por alargado mantequilla limon lima granos triangulo limón agujero redondo manzana pero mitad barra arriba plátano capas posición curvatura triangular negro verde observa concavidad vegetal formado tallo berenjena geométrica triángulo recta casi cilíndrica limpia rectangular platano planta un del ciruela patata figura hortaliza lleno azul ovalada juntos espiga objeto medio media cilindro parece tubérculo circular marron papa madura naranja cuerpo mazorca abajo plano horizontal sabugo a morado paralelepipedo curva tomate blanco morada su y repollo se diff --git a/testResults/testing_spanish/negative_insts.csv b/testResults/testing_spanish/negative_insts.csv deleted file mode 100644 index b60e940..0000000 --- a/testResults/testing_spanish/negative_insts.csv +++ /dev/null @@ -1,12 +0,0 @@ -zanahoria,maduro,uva,bloque,otro,forma,roja,la,rojo,textura,suave,maiz,cambur,cuadrado,veo,cuadrada,amarilla,piel,maíz,queso,cubo,lado,de,marrón,amarillo,delgada,delgado,morado,anaranjado,más,oscuro,larga,mandarina,lisa,largo,el,prisma,en,ser,pieza,madurar,rectangular,es,tubo,raíz,fruta,manchas,cóncavo,fruto,muy,planta,triangulo,papa,varias,que,limón,rampa,pálido,o,palida,una,algo,brillante,col,con,claro,alargada,capas,verdura,color,por,alargado,mantequilla,púrpura,limon,lima,granos,tiene,redonda,agujero,redondo,manzana,pero,mitad,barra,arriba,plátano,banana,posición,curvatura,triangular,negro,verde,observa,concavidad,vegetal,formado,tallo,berenjena,geométrica,triángulo,recta,casi,azul,limpia,pepino,abierta,hojas,un,del,ciruela,patata,figura,hortaliza,lleno,cilíndrica,ovalada,juntos,espiga,objeto,medio,media,cilindro,parece,tubérculo,circular,marron,sandía,madura,naranja,cuerpo,mazorca,abajo,plano,horizontal,sabugo,a,platano,paralelepipedo,curva,tomate,blanco,morada,su,y,repollo,se, -cube/cube_4,eggplant/eggplant_1,banana/banana_4,orange/orange_3,orange/orange_3,,cucumber/cucumber_1,eggplant/eggplant_3,banana/banana_4,arch/arch_1,cabbage/cabbage_1,orange/orange_3,semicylinder/semicylinder_1,orange/orange_3,carrot/carrot_2,banana/banana_4,eggplant/eggplant_1,triangle/triangle_1,orange/orange_3,carrot/carrot_3,orange/orange_3,orange/orange_3,,cube/cube_3,eggplant/eggplant_1,cube/cube_4,cube/cube_4,cube/cube_1,cube/cube_4,semicylinder/semicylinder_2,banana/banana_4,cube/cube_4,triangle/triangle_4,banana/banana_4,cube/cube_4,cylinder/cylinder_1,orange/orange_3,lime/lime_4,banana/banana_4,orange/orange_3,semicylinder/semicylinder_1,orange/orange_3,,orange/orange_2,cube/cube_4,cube/cube_3,triangle/triangle_4,orange/orange_3,arch/arch_2,arch/arch_1,cube/cube_4,banana/banana_4,cube/cube_3,triangle/triangle_1,lemon/lemon_4,arch/arch_2,orange/orange_3,cube/cube_4,semicylinder/semicylinder_1,cube/cube_4,,tomato/tomato_3,cube/cube_4,orange/orange_3,orange/orange_4,cube/cube_4,cube/cube_4,triangle/triangle_1,triangle/triangle_1,,banana/banana_4,semicylinder/semicylinder_2,potato/potato_4,triangle/triangle_1,arch/arch_2,cuboid/cuboid_3,orange/orange_3,tomato/tomato_3,banana/banana_4,orange/orange_3,banana/banana_2,banana/banana_4,plum/plum_4,orange/orange_3,orange/orange_3,orange/orange_2,cabbage/cabbage_1,cabbage/cabbage_1,orange/orange_3,cube/cube_4,banana/banana_4,triangle/triangle_1,cylinder/cylinder_1,,orange/orange_3,triangle/triangle_1,triangle/triangle_1,triangle/triangle_1,triangle/triangle_1,orange/orange_3,banana/banana_4,cube/cube_4,orange/orange_2,orange/orange_3,cube/cube_4,triangle/triangle_1,orange/orange_3,orange/orange_2,,orange/orange_3,banana/banana_4,cube/cube_3,lemon/lemon_3,cube/cube_4,orange/orange_3,orange/orange_3,arch/arch_2,orange/orange_3,orange/orange_3,eggplant/eggplant_3,orange/orange_3,orange/orange_3,orange/orange_3,cylinder/cylinder_1,cube/cube_4,arch/arch_1,cube/cube_4,semicylinder/semicylinder_2,semicylinder/semicylinder_1,cube/cube_4,orange/orange_3,orange/orange_3,orange/orange_4,orange/orange_3,eggplant/eggplant_1,orange/orange_3,cylinder/cylinder_1,cabbage/cabbage_1,orange/orange_3,potato/potato_2,arch/arch_1,orange/orange_2,banana/banana_4,cuboid/cuboid_2,,triangle/triangle_1,, -tomato/tomato_3,cylinder/cylinder_3,banana/banana_2,potato/potato_4,orange/orange_2,,banana/banana_2,banana/banana_4,banana/banana_2,cuboid/cuboid_1,cube/cube_4,orange/orange_2,cabbage/cabbage_1,potato/potato_4,banana/banana_2,potato/potato_3,potato/potato_2,cube/cube_1,orange/orange_2,cucumber/cucumber_4,potato/potato_4,orange/orange_2,,banana/banana_1,eggplant/eggplant_3,tomato/tomato_3,lime/lime_4,banana/banana_1,tomato/tomato_3,arch/arch_1,banana/banana_2,lime/lime_4,arch/arch_2,banana/banana_2,potato/potato_2,,potato/potato_4,orange/orange_4,arch/arch_1,cucumber/cucumber_1,arch/arch_1,potato/potato_4,,orange/orange_4,lime/lime_4,arch/arch_2,arch/arch_2,orange/orange_2,eggplant/eggplant_3,cuboid/cuboid_1,lime/lime_2,potato/potato_2,cube/cube_1,orange/orange_2,cube/cube_4,carrot/carrot_3,orange/orange_2,tomato/tomato_3,potato/potato_2,tomato/tomato_3,,tomato/tomato_4,cube/cube_1,orange/orange_2,,cube/cube_3,potato/potato_2,orange/orange_2,orange/orange_2,,cube/cube_1,orange/orange_3,potato/potato_2,orange/orange_2,carrot/carrot_3,arch/arch_2,orange/orange_2,,arch/arch_1,orange/orange_2,banana/banana_1,banana/banana_2,orange/orange_2,banana/banana_4,orange/orange_2,orange/orange_4,cube/cube_4,cube/cube_4,potato/potato_4,potato/potato_2,potato/potato_2,cube/cube_4,orange/orange_3,,orange/orange_2,arch/arch_1,orange/orange_2,cube/cube_4,cube/cube_4,cucumber/cucumber_1,orange/orange_4,lime/lime_4,banana/banana_2,orange/orange_2,cube/cube_3,cube/cube_4,orange/orange_2,banana/banana_2,,orange/orange_2,banana/banana_2,cube/cube_1,,lime/lime_4,cube/cube_4,potato/potato_4,cylinder/cylinder_3,cube/cube_4,orange/orange_2,,orange/orange_2,orange/orange_2,orange/orange_2,arch/arch_2,cube/cube_3,arch/arch_2,cube/cube_3,semicylinder/semicylinder_1,cuboid/cuboid_1,arch/arch_1,cube/cube_4,orange/orange_2,carrot/carrot_3,orange/orange_2,orange/orange_3,orange/orange_2,cube/cube_3,cube/cube_4,potato/potato_4,tomato/tomato_2,arch/arch_2,lime/lime_2,banana/banana_1,,,orange/orange_2,, -lime/lime_4,eggplant/eggplant_4,banana/banana_1,orange/orange_4,orange/orange_4,,,orange/orange_4,banana/banana_1,arch/arch_4,potato/potato_2,lime/lime_2,potato/potato_2,potato/potato_3,corn/corn_3,banana/banana_2,cabbage/cabbage_3,tomato/tomato_2,lime/lime_2,cucumber/cucumber_1,potato/potato_3,potato/potato_2,,cube/cube_1,cabbage/cabbage_2,lime/lime_4,lime/lime_2,arch/arch_1,lime/lime_4,arch/arch_4,banana/banana_1,lime/lime_2,arch/arch_4,banana/banana_1,arch/arch_4,,potato/potato_2,,arch/arch_2,,arch/arch_2,orange/orange_4,,tomato/tomato_2,lime/lime_2,arch/arch_4,arch/arch_4,orange/orange_4,arch/arch_4,cuboid/cuboid_2,lime/lime_1,cucumber/cucumber_4,arch/arch_1,banana/banana_2,cucumber/cucumber_1,carrot/carrot_2,orange/orange_4,lime/lime_4,triangle/triangle_1,lime/lime_4,,cube/cube_1,triangle/triangle_1,banana/banana_2,,cube/cube_1,tomato/tomato_3,banana/banana_2,cube/cube_1,,banana/banana_1,potato/potato_4,orange/orange_4,banana/banana_2,carrot/carrot_2,carrot/carrot_3,lime/lime_2,,cuboid/cuboid_1,orange/orange_4,arch/arch_1,banana/banana_1,lemon/lemon_1,orange/orange_4,potato/potato_3,cucumber/cucumber_4,potato/potato_2,potato/potato_2,potato/potato_3,tomato/tomato_3,cucumber/cucumber_4,cube/cube_1,orange/orange_2,,orange/orange_4,arch/arch_2,banana/banana_2,cube/cube_1,cube/cube_1,,cucumber/cucumber_4,cuboid/cuboid_1,banana/banana_1,orange/orange_4,cuboid/cuboid_1,triangle/triangle_2,orange/orange_4,banana/banana_1,,potato/potato_2,banana/banana_1,arch/arch_1,,lime/lime_2,lime/lime_2,potato/potato_3,cuboid/cuboid_3,lime/lime_2,lime/lime_2,,orange/orange_4,orange/orange_4,potato/potato_3,triangle/triangle_4,cube/cube_1,arch/arch_4,cuboid/cuboid_1,arch/arch_1,cuboid/cuboid_3,arch/arch_4,lime/lime_4,lime/lime_2,cucumber/cucumber_4,orange/orange_4,orange/orange_2,orange/orange_4,cuboid/cuboid_3,potato/potato_2,potato/potato_3,cylinder/cylinder_3,cucumber/cucumber_1,lime/lime_1,cube/cube_1,,,banana/banana_2,, -lime/lime_2,arch/arch_2,arch/arch_1,lime/lime_2,tomato/tomato_3,,,,cucumber/cucumber_4,cuboid/cuboid_3,semicylinder/semicylinder_1,lime/lime_1,triangle/triangle_1,eggplant/eggplant_1,corn/corn_2,cucumber/cucumber_1,tomato/tomato_4,cuboid/cuboid_1,lime/lime_1,carrot/carrot_2,orange/orange_4,tomato/tomato_3,,arch/arch_1,potato/potato_2,lime/lime_2,lime/lime_1,arch/arch_2,lime/lime_2,semicylinder/semicylinder_1,arch/arch_2,lime/lime_1,cuboid/cuboid_3,cucumber/cucumber_4,semicylinder/semicylinder_2,,orange/orange_2,,cuboid/cuboid_1,,lime/lime_2,cucumber/cucumber_1,,cucumber/cucumber_1,lime/lime_1,cuboid/cuboid_3,cuboid/cuboid_3,tomato/tomato_3,triangle/triangle_1,cylinder/cylinder_1,lemon/lemon_4,tomato/tomato_3,cuboid/cuboid_1,banana/banana_1,potato/potato_2,cuboid/cuboid_3,tomato/tomato_3,lime/lime_2,eggplant/eggplant_3,cuboid/cuboid_1,,cylinder/cylinder_3,lemon/lemon_4,banana/banana_1,,tomato/tomato_3,arch/arch_4,banana/banana_1,arch/arch_1,,arch/arch_2,potato/potato_2,eggplant/eggplant_1,banana/banana_1,cuboid/cuboid_3,arch/arch_4,lime/lime_1,,arch/arch_2,cucumber/cucumber_4,arch/arch_2,arch/arch_1,lime/lime_2,cucumber/cucumber_1,potato/potato_2,cucumber/cucumber_1,semicylinder/semicylinder_1,semicylinder/semicylinder_1,orange/orange_4,tomato/tomato_2,tomato/tomato_3,tomato/tomato_2,tomato/tomato_2,,tomato/tomato_3,cuboid/cuboid_1,banana/banana_1,tomato/tomato_2,tomato/tomato_2,,tomato/tomato_3,lime/lime_2,arch/arch_2,tomato/tomato_3,cuboid/cuboid_3,arch/arch_1,cucumber/cucumber_4,arch/arch_2,,tomato/tomato_3,cucumber/cucumber_1,cucumber/cucumber_1,,lime/lime_1,lime/lime_1,orange/orange_4,eggplant/eggplant_3,lime/lime_1,lime/lime_1,,carrot/carrot_3,tomato/tomato_3,orange/orange_4,corn/corn_2,cuboid/cuboid_1,cuboid/cuboid_3,cuboid/cuboid_3,arch/arch_4,cuboid/cuboid_2,cuboid/cuboid_3,lime/lime_2,lime/lime_1,cucumber/cucumber_1,cucumber/cucumber_4,potato/potato_3,lime/lime_2,banana/banana_1,semicylinder/semicylinder_1,potato/potato_2,lime/lime_1,cuboid/cuboid_2,lemon/lemon_4,arch/arch_1,,,banana/banana_1,, -lime/lime_1,lime/lime_2,cucumber/cucumber_1,lime/lime_1,tomato/tomato_2,,,,cucumber/cucumber_1,,triangle/triangle_1,triangle/triangle_1,semicylinder/semicylinder_2,eggplant/eggplant_3,,carrot/carrot_3,cabbage/cabbage_1,cylinder/cylinder_1,triangle/triangle_1,carrot/carrot_1,carrot/carrot_3,tomato/tomato_2,,cuboid/cuboid_1,,lime/lime_1,semicylinder/semicylinder_2,cuboid/cuboid_1,lime/lime_1,triangle/triangle_2,carrot/carrot_3,semicylinder/semicylinder_1,cuboid/cuboid_2,cucumber/cucumber_1,semicylinder/semicylinder_4,,cucumber/cucumber_1,,carrot/carrot_2,,cuboid/cuboid_2,cabbage/cabbage_3,,tomato/tomato_4,cuboid/cuboid_2,cylinder/cylinder_3,cuboid/cuboid_2,tomato/tomato_2,cylinder/cylinder_3,semicylinder/semicylinder_4,orange/orange_2,cucumber/cucumber_1,cuboid/cuboid_3,arch/arch_2,,arch/arch_4,tomato/tomato_2,lime/lime_1,semicylinder/semicylinder_2,lime/lime_2,,,triangle/triangle_2,arch/arch_2,,tomato/tomato_2,cuboid/cuboid_3,arch/arch_2,arch/arch_2,,cuboid/cuboid_1,tomato/tomato_4,eggplant/eggplant_3,arch/arch_2,arch/arch_4,carrot/carrot_1,triangle/triangle_1,,cucumber/cucumber_1,tomato/tomato_2,cuboid/cuboid_1,cucumber/cucumber_1,,carrot/carrot_3,tomato/tomato_4,cucumber/cucumber_2,triangle/triangle_1,triangle/triangle_1,lime/lime_4,tomato/tomato_4,cucumber/cucumber_1,cuboid/cuboid_1,arch/arch_4,,tomato/tomato_2,cuboid/cuboid_3,arch/arch_2,cuboid/cuboid_1,cuboid/cuboid_1,,lime/lime_4,lime/lime_1,cuboid/cuboid_1,lime/lime_4,cuboid/cuboid_2,arch/arch_2,tomato/tomato_2,cuboid/cuboid_1,,tomato/tomato_2,cuboid/cuboid_1,cuboid/cuboid_1,,cuboid/cuboid_2,lemon/lemon_4,tomato/tomato_4,eggplant/eggplant_4,lemon/lemon_4,triangle/triangle_1,,cucumber/cucumber_1,tomato/tomato_2,carrot/carrot_1,,cuboid/cuboid_3,triangle/triangle_4,cuboid/cuboid_2,triangle/triangle_1,cylinder/cylinder_1,cuboid/cuboid_2,lime/lime_1,triangle/triangle_1,cucumber/cucumber_2,tomato/tomato_3,potato/potato_2,lime/lime_1,,triangle/triangle_1,tomato/tomato_3,lime/lime_2,cylinder/cylinder_1,cube/cube_4,arch/arch_2,,,arch/arch_2,, -cuboid/cuboid_2,semicylinder/semicylinder_1,arch/arch_2,lemon/lemon_4,tomato/tomato_4,,,,carrot/carrot_2,,triangle/triangle_4,lemon/lemon_4,triangle/triangle_4,orange/orange_2,,carrot/carrot_2,eggplant/eggplant_3,triangle/triangle_2,lemon/lemon_4,cucumber/cucumber_2,carrot/carrot_1,cucumber/cucumber_1,,cuboid/cuboid_3,,cuboid/cuboid_2,semicylinder/semicylinder_4,cylinder/cylinder_1,cuboid/cuboid_2,triangle/triangle_4,carrot/carrot_1,semicylinder/semicylinder_2,semicylinder/semicylinder_1,cucumber/cucumber_2,plum/plum_4,,cabbage/cabbage_3,,cylinder/cylinder_1,,cylinder/cylinder_1,eggplant/eggplant_3,,lime/lime_1,cylinder/cylinder_1,triangle/triangle_4,semicylinder/semicylinder_1,tomato/tomato_4,cabbage/cabbage_2,cylinder/cylinder_4,lemon/lemon_1,tomato/tomato_4,cuboid/cuboid_2,cuboid/cuboid_1,,eggplant/eggplant_3,cucumber/cucumber_1,semicylinder/semicylinder_2,eggplant/eggplant_1,lime/lime_1,,,triangle/triangle_4,cuboid/cuboid_1,,cucumber/cucumber_1,semicylinder/semicylinder_1,cuboid/cuboid_1,cuboid/cuboid_1,,cylinder/cylinder_1,orange/orange_2,cabbage/cabbage_2,cuboid/cuboid_1,eggplant/eggplant_3,carrot/carrot_2,lemon/lemon_4,,cuboid/cuboid_2,cucumber/cucumber_1,cuboid/cuboid_2,cuboid/cuboid_1,,carrot/carrot_1,potato/potato_4,eggplant/eggplant_3,semicylinder/semicylinder_2,semicylinder/semicylinder_2,lime/lime_2,cabbage/cabbage_1,tomato/tomato_4,cylinder/cylinder_1,semicylinder/semicylinder_1,,cucumber/cucumber_1,cylinder/cylinder_1,cuboid/cuboid_1,cylinder/cylinder_1,cylinder/cylinder_1,,cucumber/cucumber_1,cuboid/cuboid_2,triangle/triangle_2,tomato/tomato_4,cylinder/cylinder_1,arch/arch_4,cucumber/cucumber_1,cylinder/cylinder_1,,lemon/lemon_4,cuboid/cuboid_2,cuboid/cuboid_3,,cylinder/cylinder_1,orange/orange_2,eggplant/eggplant_3,corn/corn_3,orange/orange_2,lemon/lemon_4,,tomato/tomato_4,tomato/tomato_4,eggplant/eggplant_1,,cuboid/cuboid_2,corn/corn_3,cylinder/cylinder_1,triangle/triangle_2,cylinder/cylinder_3,semicylinder/semicylinder_1,orange/orange_2,lemon/lemon_4,eggplant/eggplant_1,tomato/tomato_2,potato/potato_4,lemon/lemon_4,,semicylinder/semicylinder_2,tomato/tomato_4,cabbage/cabbage_1,eggplant/eggplant_3,lemon/lemon_1,cuboid/cuboid_1,,,cuboid/cuboid_1,, -cylinder/cylinder_1,eggplant/eggplant_3,cuboid/cuboid_1,orange/orange_2,plum/plum_1,,,,cucumber/cucumber_2,,plum/plum_2,cube/cube_4,plum/plum_4,,,carrot/carrot_1,cabbage/cabbage_2,,cube/cube_4,eggplant/eggplant_1,eggplant/eggplant_1,tomato/tomato_4,,cuboid/cuboid_2,,semicylinder/semicylinder_2,plum/plum_2,lemon/lemon_4,semicylinder/semicylinder_2,plum/plum_1,cylinder/cylinder_1,semicylinder/semicylinder_4,cylinder/cylinder_3,,plum/plum_1,,eggplant/eggplant_1,,corn/corn_3,,triangle/triangle_4,orange/orange_2,,lime/lime_4,semicylinder/semicylinder_2,corn/corn_3,cylinder/cylinder_3,plum/plum_2,triangle/triangle_4,,plum/plum_4,eggplant/eggplant_1,cylinder/cylinder_1,cylinder/cylinder_1,,corn/corn_1,tomato/tomato_4,semicylinder/semicylinder_4,plum/plum_1,cuboid/cuboid_2,,,lemon/lemon_3,cylinder/cylinder_1,,tomato/tomato_4,semicylinder/semicylinder_2,cylinder/cylinder_1,cylinder/cylinder_1,,triangle/triangle_2,plum/plum_4,plum/plum_4,cylinder/cylinder_1,corn/corn_1,triangle/triangle_1,cube/cube_4,,cylinder/cylinder_1,tomato/tomato_4,cylinder/cylinder_1,cuboid/cuboid_2,,cucumber/cucumber_2,plum/plum_4,banana/banana_4,triangle/triangle_4,triangle/triangle_4,lime/lime_1,cabbage/cabbage_3,eggplant/eggplant_1,lemon/lemon_4,semicylinder/semicylinder_2,,tomato/tomato_4,triangle/triangle_2,cylinder/cylinder_1,lemon/lemon_4,lemon/lemon_4,,lime/lime_1,cylinder/cylinder_1,banana/banana_4,lime/lime_2,cylinder/cylinder_3,semicylinder/semicylinder_1,tomato/tomato_4,triangle/triangle_2,,plum/plum_2,cylinder/cylinder_1,cuboid/cuboid_2,,semicylinder/semicylinder_2,lemon/lemon_1,orange/orange_2,triangle/triangle_4,lemon/lemon_1,cube/cube_4,,eggplant/eggplant_3,plum/plum_2,eggplant/eggplant_3,,cylinder/cylinder_1,corn/corn_2,cylinder/cylinder_3,triangle/triangle_4,semicylinder/semicylinder_2,cylinder/cylinder_3,lemon/lemon_1,cube/cube_4,eggplant/eggplant_3,cucumber/cucumber_1,cabbage/cabbage_2,cube/cube_4,,triangle/triangle_4,orange/orange_2,cabbage/cabbage_3,triangle/triangle_2,plum/plum_4,cylinder/cylinder_1,,,cylinder/cylinder_1,, -semicylinder/semicylinder_2,cylinder/cylinder_4,cylinder/cylinder_1,,potato/potato_2,,,,eggplant/eggplant_3,,,lemon/lemon_1,plum/plum_1,,,eggplant/eggplant_3,eggplant/eggplant_4,,lemon/lemon_1,eggplant/eggplant_3,eggplant/eggplant_3,plum/plum_2,,cylinder/cylinder_1,,semicylinder/semicylinder_4,,triangle/triangle_2,semicylinder/semicylinder_4,,lemon/lemon_3,plum/plum_4,semicylinder/semicylinder_4,,plum/plum_2,,eggplant/eggplant_3,,corn/corn_2,,cylinder/cylinder_4,plum/plum_2,,cabbage/cabbage_2,semicylinder/semicylinder_4,,semicylinder/semicylinder_4,plum/plum_1,eggplant/eggplant_4,,plum/plum_1,eggplant/eggplant_3,cylinder/cylinder_3,triangle/triangle_2,,triangle/triangle_4,lemon/lemon_4,plum/plum_2,,cylinder/cylinder_1,,,,triangle/triangle_2,,cylinder/cylinder_1,semicylinder/semicylinder_4,triangle/triangle_2,triangle/triangle_2,,,plum/plum_1,plum/plum_1,triangle/triangle_2,triangle/triangle_4,triangle/triangle_4,lemon/lemon_1,,,lime/lime_1,,cylinder/cylinder_1,,eggplant/eggplant_3,plum/plum_2,,plum/plum_4,plum/plum_4,lemon/lemon_4,cabbage/cabbage_2,eggplant/eggplant_3,triangle/triangle_2,corn/corn_2,,cabbage/cabbage_2,triangle/triangle_4,triangle/triangle_2,triangle/triangle_2,triangle/triangle_2,,cucumber/cucumber_2,semicylinder/semicylinder_2,,lemon/lemon_4,semicylinder/semicylinder_2,semicylinder/semicylinder_2,cabbage/cabbage_2,cube/cube_1,,,cylinder/cylinder_4,cylinder/cylinder_1,,semicylinder/semicylinder_4,plum/plum_4,lemon/lemon_1,,plum/plum_4,lemon/lemon_1,,cabbage/cabbage_2,plum/plum_1,cabbage/cabbage_2,,cylinder/cylinder_3,,semicylinder/semicylinder_2,plum/plum_1,semicylinder/semicylinder_4,semicylinder/semicylinder_2,plum/plum_4,lemon/lemon_1,eggplant/eggplant_4,tomato/tomato_4,orange/orange_4,lemon/lemon_1,,plum/plum_4,plum/plum_1,cabbage/cabbage_2,triangle/triangle_4,plum/plum_1,lemon/lemon_4,,,triangle/triangle_2,, -semicylinder/semicylinder_4,semicylinder/semicylinder_4,,,,,,,corn/corn_1,,,plum/plum_4,plum/plum_2,,,,plum/plum_1,,plum/plum_4,eggplant/eggplant_4,orange/orange_2,orange/orange_4,,cylinder/cylinder_3,,plum/plum_2,,triangle/triangle_4,plum/plum_2,,,plum/plum_2,cylinder/cylinder_4,,,,cabbage/cabbage_2,,,,semicylinder/semicylinder_4,cabbage/cabbage_2,,,plum/plum_2,,cylinder/cylinder_4,potato/potato_2,,,,cabbage/cabbage_2,triangle/triangle_2,cube/cube_1,,corn/corn_3,cabbage/cabbage_2,,,semicylinder/semicylinder_2,,,,cube/cube_1,,cylinder/cylinder_3,plum/plum_4,cube/cube_1,triangle/triangle_4,,,plum/plum_2,plum/plum_2,cube/cube_1,corn/corn_3,corn/corn_3,plum/plum_4,,,cabbage/cabbage_2,,cylinder/cylinder_4,,eggplant/eggplant_4,plum/plum_1,,plum/plum_1,plum/plum_1,orange/orange_2,plum/plum_4,cabbage/cabbage_2,,plum/plum_1,,plum/plum_2,,cube/cube_1,triangle/triangle_4,triangle/triangle_4,,orange/orange_2,semicylinder/semicylinder_4,,eggplant/eggplant_3,cylinder/cylinder_4,triangle/triangle_4,plum/plum_2,banana/banana_4,,,cucumber/cucumber_4,cylinder/cylinder_3,,plum/plum_2,plum/plum_1,corn/corn_3,,plum/plum_1,plum/plum_4,,corn/corn_1,potato/potato_2,eggplant/eggplant_4,,cylinder/cylinder_4,,cylinder/cylinder_4,,cylinder/cylinder_4,semicylinder/semicylinder_4,,plum/plum_4,,eggplant/eggplant_3,,plum/plum_4,,plum/plum_1,orange/orange_4,plum/plum_4,cucumber/cucumber_2,,triangle/triangle_2,,,cube/cube_1,, -plum/plum_2,triangle/triangle_4,,,,,,,corn/corn_3,,,plum/plum_1,,,,,cylinder/cylinder_3,,plum/plum_1,,eggplant/eggplant_4,,,cylinder/cylinder_4,,,,cylinder/cylinder_4,,,,,,,,,plum/plum_2,,,,,potato/potato_2,,,,,,,,,,eggplant/eggplant_4,cylinder/cylinder_4,,,corn/corn_2,potato/potato_2,,,semicylinder/semicylinder_4,,,,banana/banana_4,,cabbage/cabbage_2,plum/plum_2,banana/banana_4,,,,,,banana/banana_4,corn/corn_2,,plum/plum_1,,,plum/plum_2,,cucumber/cucumber_4,,cucumber/cucumber_4,orange/orange_4,,plum/plum_2,plum/plum_2,,plum/plum_1,eggplant/eggplant_4,,,,potato/potato_2,,,,lemon/lemon_3,,,,,banana/banana_4,,plum/plum_1,potato/potato_2,,,,cucumber/cucumber_2,cylinder/cylinder_4,,,,triangle/triangle_2,,,plum/plum_1,,cabbage/cabbage_3,,,,,,,,,cylinder/cylinder_4,,plum/plum_1,,cabbage/cabbage_2,,plum/plum_1,,plum/plum_2,,eggplant/eggplant_3,semicylinder/semicylinder_4,,cylinder/cylinder_4,,,banana/banana_4,, -,,,,,,,,,,,,,,,,,,,,banana/banana_4,,,triangle/triangle_4,,,,banana/banana_2,,,,,,,,,orange/orange_4,,,,,,,,,,,,,,,orange/orange_4,triangle/triangle_4,,,eggplant/eggplant_4,,,,,,,,,,cabbage/cabbage_3,,,,,,,,,eggplant/eggplant_4,,,,,,,,,,,,,,,plum/plum_2,orange/orange_4,,,,,,,,,,,,,potato/potato_2,,,,,,,,triangle/triangle_4,,,,plum/plum_2,,,,,,,,,,,,,,,,,,potato/potato_2,,,,,,plum/plum_2,cylinder/cylinder_4,,banana/banana_2,,,,,